diff --git a/grammar.js b/grammar.js index 986e8bd19..736e41e44 100644 --- a/grammar.js +++ b/grammar.js @@ -63,7 +63,8 @@ module.exports = grammar({ $.text, $.displayed_equation, $.inline_formula, - $.math_set + $.math_set, + $.text_mode ) ), @@ -1019,5 +1020,11 @@ module.exports = grammar({ field('command', choice('\\usepgflibrary', '\\usetikzlibrary')), field('paths', $.curly_group_path_list) ), + + text_mode: $ => + seq( + field('command', choice('\\text', '\\intertext', 'shortintertext')), + field('content', $.curly_group) + ), }, }); diff --git a/src/grammar.json b/src/grammar.json index bee0f1ee8..52a9fe2df 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -183,6 +183,10 @@ { "type": "SYMBOL", "name": "math_set" + }, + { + "type": "SYMBOL", + "name": "text_mode" } ] } @@ -4714,6 +4718,40 @@ } } ] + }, + "text_mode": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "command", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\\text" + }, + { + "type": "STRING", + "value": "\\intertext" + }, + { + "type": "STRING", + "value": "shortintertext" + } + ] + } + }, + { + "type": "FIELD", + "name": "content", + "content": { + "type": "SYMBOL", + "name": "curly_group" + } + } + ] } }, "extras": [ diff --git a/src/node-types.json b/src/node-types.json index 342b0156e..89346b9f3 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -567,6 +567,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -887,6 +891,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -1596,6 +1604,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -1787,6 +1799,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -2084,6 +2100,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -2324,6 +2344,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -2632,6 +2656,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -3228,6 +3256,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -3779,6 +3811,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -3998,6 +4034,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -4365,6 +4405,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -4605,6 +4649,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -4873,6 +4921,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -5084,6 +5136,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -5292,6 +5348,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -5512,6 +5572,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -5728,6 +5792,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -5941,6 +6009,40 @@ ] } }, + { + "type": "text_mode", + "named": true, + "fields": { + "command": { + "multiple": false, + "required": true, + "types": [ + { + "type": "\\intertext", + "named": false + }, + { + "type": "\\text", + "named": false + }, + { + "type": "shortintertext", + "named": false + } + ] + }, + "content": { + "multiple": false, + "required": true, + "types": [ + { + "type": "curly_group", + "named": true + } + ] + } + } + }, { "type": "theorem_definition", "named": true, @@ -6175,6 +6277,10 @@ "type": "text", "named": true }, + { + "type": "text_mode", + "named": true + }, { "type": "theorem_definition", "named": true @@ -7056,6 +7162,10 @@ "type": "\\inputfrom", "named": false }, + { + "type": "\\intertext", + "named": false + }, { "type": "\\item", "named": false @@ -7256,6 +7366,10 @@ "type": "\\svolcite", "named": false }, + { + "type": "\\text", + "named": false + }, { "type": "\\textcite", "named": false @@ -7336,6 +7450,10 @@ "type": "placeholder", "named": true }, + { + "type": "shortintertext", + "named": false + }, { "type": "source_code", "named": true diff --git a/src/parser.c b/src/parser.c index ec71b71fd..18c4d9549 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,15 +14,15 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2465 -#define LARGE_STATE_COUNT 1570 -#define SYMBOL_COUNT 412 +#define STATE_COUNT 2479 +#define LARGE_STATE_COUNT 1577 +#define SYMBOL_COUNT 416 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 287 +#define TOKEN_COUNT 290 #define EXTERNAL_TOKEN_COUNT 6 -#define FIELD_COUNT 42 +#define FIELD_COUNT 43 #define MAX_ALIAS_SEQUENCE_LENGTH 6 -#define PRODUCTION_ID_COUNT 76 +#define PRODUCTION_ID_COUNT 77 enum { sym_command_name = 1, @@ -305,137 +305,141 @@ enum { anon_sym_BSLASHpagecolor = 278, anon_sym_BSLASHusepgflibrary = 279, anon_sym_BSLASHusetikzlibrary = 280, - sym__trivia_raw_fi = 281, - sym__trivia_raw_env_comment = 282, - sym__trivia_raw_env_verbatim = 283, - sym__trivia_raw_env_listing = 284, - sym__trivia_raw_env_minted = 285, - sym__trivia_raw_env_pycode = 286, - sym_source_file = 287, - sym_block_comment = 288, - sym__root_content = 289, - sym__flat_content = 290, - sym__text_with_env_content = 291, - sym__text_content = 292, - sym__section = 293, - sym__part_declaration = 294, - sym_part = 295, - sym__chapter_declaration = 296, - sym_chapter = 297, - sym__section_declaration = 298, - sym_section = 299, - sym__subsection_declaration = 300, - sym_subsection = 301, - sym__subsubsection_declaration = 302, - sym_subsubsection = 303, - sym__paragraph_declaration = 304, - sym_paragraph = 305, - sym__subparagraph_declaration = 306, - sym_subparagraph = 307, - sym__enum_itemdeclaration = 308, - sym_enum_item = 309, - sym_curly_group = 310, - sym_curly_group_text = 311, - sym_curly_group_text_list = 312, - sym_curly_group_path = 313, - sym_curly_group_path_list = 314, - sym_curly_group_command_name = 315, - sym_curly_group_key_value = 316, - sym_curly_group_glob_pattern = 317, - sym_curly_group_impl = 318, - sym_brack_group = 319, - sym_brack_group_text = 320, - sym_brack_group_argc = 321, - sym_brack_group_key_value = 322, - sym_mixed_group = 323, - sym_text = 324, - sym_glob_pattern = 325, - sym__glob_pattern_fragment = 326, - sym_operator = 327, - sym_key_value_pair = 328, - sym_value = 329, - sym_displayed_equation = 330, - sym_inline_formula = 331, - sym_math_set = 332, - sym_begin = 333, - sym_end = 334, - sym_generic_environment = 335, - sym_comment_environment = 336, - sym__trivia_begin_comment = 337, - sym__trivia_end_comment = 338, - sym__trivia_curly_group_comment = 339, - sym__trivia_text_comment = 340, - sym_verbatim_environment = 341, - sym__trivia_begin_verbatim = 342, - sym__trivia_end_verbatim = 343, - sym__trivia_curly_group_verbatim = 344, - sym__trivia_text_verbatim = 345, - sym_listing_environment = 346, - sym__trivia_begin_listing = 347, - sym__trivia_end_listing = 348, - sym__trivia_curly_group_listing = 349, - sym__trivia_text_listing = 350, - sym_minted_environment = 351, - sym__trivia_begin_minted = 352, - sym__trivia_end_minted = 353, - sym__trivia_curly_group_minted = 354, - sym__trivia_text_minted = 355, - sym_pycode_environment = 356, - sym__trivia_begin_pycode = 357, - sym__trivia_end_pycode = 358, - sym__trivia_curly_group_pycode = 359, - sym__trivia_text_pycode = 360, - sym__command = 361, - sym_generic_command = 362, - sym_package_include = 363, - sym_class_include = 364, - sym_latex_include = 365, - sym_biblatex_include = 366, - sym_bibtex_include = 367, - sym_graphics_include = 368, - sym_svg_include = 369, - sym_inkscape_include = 370, - sym_verbatim_include = 371, - sym_import_include = 372, - sym_caption = 373, - sym_citation = 374, - sym_label_definition = 375, - sym_label_reference = 376, - sym_label_reference_range = 377, - sym_label_number = 378, - sym_new_command_definition = 379, - sym_old_command_definition = 380, - sym_let_command_definition = 381, - sym_environment_definition = 382, - sym_glossary_entry_definition = 383, - sym_glossary_entry_reference = 384, - sym_acronym_definition = 385, - sym_acronym_reference = 386, - sym_theorem_definition = 387, - sym_color_definition = 388, - sym_color_set_definition = 389, - sym_color_reference = 390, - sym_tikz_library_import = 391, - aux_sym_source_file_repeat1 = 392, - aux_sym__section_repeat1 = 393, - aux_sym__section_repeat2 = 394, - aux_sym__section_repeat3 = 395, - aux_sym__section_repeat4 = 396, - aux_sym__section_repeat5 = 397, - aux_sym__section_repeat6 = 398, - aux_sym__section_repeat7 = 399, - aux_sym__section_repeat8 = 400, - aux_sym_part_repeat1 = 401, - aux_sym_curly_group_text_list_repeat1 = 402, - aux_sym_curly_group_path_list_repeat1 = 403, - aux_sym_curly_group_key_value_repeat1 = 404, - aux_sym_curly_group_impl_repeat1 = 405, - aux_sym_brack_group_repeat1 = 406, - aux_sym_mixed_group_repeat1 = 407, - aux_sym_text_repeat1 = 408, - aux_sym_glob_pattern_repeat1 = 409, - aux_sym_value_repeat1 = 410, - aux_sym_generic_command_repeat1 = 411, + anon_sym_BSLASHtext = 281, + anon_sym_BSLASHintertext = 282, + anon_sym_shortintertext = 283, + sym__trivia_raw_fi = 284, + sym__trivia_raw_env_comment = 285, + sym__trivia_raw_env_verbatim = 286, + sym__trivia_raw_env_listing = 287, + sym__trivia_raw_env_minted = 288, + sym__trivia_raw_env_pycode = 289, + sym_source_file = 290, + sym_block_comment = 291, + sym__root_content = 292, + sym__flat_content = 293, + sym__text_with_env_content = 294, + sym__text_content = 295, + sym__section = 296, + sym__part_declaration = 297, + sym_part = 298, + sym__chapter_declaration = 299, + sym_chapter = 300, + sym__section_declaration = 301, + sym_section = 302, + sym__subsection_declaration = 303, + sym_subsection = 304, + sym__subsubsection_declaration = 305, + sym_subsubsection = 306, + sym__paragraph_declaration = 307, + sym_paragraph = 308, + sym__subparagraph_declaration = 309, + sym_subparagraph = 310, + sym__enum_itemdeclaration = 311, + sym_enum_item = 312, + sym_curly_group = 313, + sym_curly_group_text = 314, + sym_curly_group_text_list = 315, + sym_curly_group_path = 316, + sym_curly_group_path_list = 317, + sym_curly_group_command_name = 318, + sym_curly_group_key_value = 319, + sym_curly_group_glob_pattern = 320, + sym_curly_group_impl = 321, + sym_brack_group = 322, + sym_brack_group_text = 323, + sym_brack_group_argc = 324, + sym_brack_group_key_value = 325, + sym_mixed_group = 326, + sym_text = 327, + sym_glob_pattern = 328, + sym__glob_pattern_fragment = 329, + sym_operator = 330, + sym_key_value_pair = 331, + sym_value = 332, + sym_displayed_equation = 333, + sym_inline_formula = 334, + sym_math_set = 335, + sym_begin = 336, + sym_end = 337, + sym_generic_environment = 338, + sym_comment_environment = 339, + sym__trivia_begin_comment = 340, + sym__trivia_end_comment = 341, + sym__trivia_curly_group_comment = 342, + sym__trivia_text_comment = 343, + sym_verbatim_environment = 344, + sym__trivia_begin_verbatim = 345, + sym__trivia_end_verbatim = 346, + sym__trivia_curly_group_verbatim = 347, + sym__trivia_text_verbatim = 348, + sym_listing_environment = 349, + sym__trivia_begin_listing = 350, + sym__trivia_end_listing = 351, + sym__trivia_curly_group_listing = 352, + sym__trivia_text_listing = 353, + sym_minted_environment = 354, + sym__trivia_begin_minted = 355, + sym__trivia_end_minted = 356, + sym__trivia_curly_group_minted = 357, + sym__trivia_text_minted = 358, + sym_pycode_environment = 359, + sym__trivia_begin_pycode = 360, + sym__trivia_end_pycode = 361, + sym__trivia_curly_group_pycode = 362, + sym__trivia_text_pycode = 363, + sym__command = 364, + sym_generic_command = 365, + sym_package_include = 366, + sym_class_include = 367, + sym_latex_include = 368, + sym_biblatex_include = 369, + sym_bibtex_include = 370, + sym_graphics_include = 371, + sym_svg_include = 372, + sym_inkscape_include = 373, + sym_verbatim_include = 374, + sym_import_include = 375, + sym_caption = 376, + sym_citation = 377, + sym_label_definition = 378, + sym_label_reference = 379, + sym_label_reference_range = 380, + sym_label_number = 381, + sym_new_command_definition = 382, + sym_old_command_definition = 383, + sym_let_command_definition = 384, + sym_environment_definition = 385, + sym_glossary_entry_definition = 386, + sym_glossary_entry_reference = 387, + sym_acronym_definition = 388, + sym_acronym_reference = 389, + sym_theorem_definition = 390, + sym_color_definition = 391, + sym_color_set_definition = 392, + sym_color_reference = 393, + sym_tikz_library_import = 394, + sym_text_mode = 395, + aux_sym_source_file_repeat1 = 396, + aux_sym__section_repeat1 = 397, + aux_sym__section_repeat2 = 398, + aux_sym__section_repeat3 = 399, + aux_sym__section_repeat4 = 400, + aux_sym__section_repeat5 = 401, + aux_sym__section_repeat6 = 402, + aux_sym__section_repeat7 = 403, + aux_sym__section_repeat8 = 404, + aux_sym_part_repeat1 = 405, + aux_sym_curly_group_text_list_repeat1 = 406, + aux_sym_curly_group_path_list_repeat1 = 407, + aux_sym_curly_group_key_value_repeat1 = 408, + aux_sym_curly_group_impl_repeat1 = 409, + aux_sym_brack_group_repeat1 = 410, + aux_sym_mixed_group_repeat1 = 411, + aux_sym_text_repeat1 = 412, + aux_sym_glob_pattern_repeat1 = 413, + aux_sym_value_repeat1 = 414, + aux_sym_generic_command_repeat1 = 415, }; static const char * const ts_symbol_names[] = { @@ -720,6 +724,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_BSLASHpagecolor] = "\\pagecolor", [anon_sym_BSLASHusepgflibrary] = "\\usepgflibrary", [anon_sym_BSLASHusetikzlibrary] = "\\usetikzlibrary", + [anon_sym_BSLASHtext] = "\\text", + [anon_sym_BSLASHintertext] = "\\intertext", + [anon_sym_shortintertext] = "shortintertext", [sym__trivia_raw_fi] = "comment", [sym__trivia_raw_env_comment] = "comment", [sym__trivia_raw_env_verbatim] = "comment", @@ -831,6 +838,7 @@ static const char * const ts_symbol_names[] = { [sym_color_set_definition] = "color_set_definition", [sym_color_reference] = "color_reference", [sym_tikz_library_import] = "tikz_library_import", + [sym_text_mode] = "text_mode", [aux_sym_source_file_repeat1] = "source_file_repeat1", [aux_sym__section_repeat1] = "_section_repeat1", [aux_sym__section_repeat2] = "_section_repeat2", @@ -1135,6 +1143,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_BSLASHpagecolor] = anon_sym_BSLASHpagecolor, [anon_sym_BSLASHusepgflibrary] = anon_sym_BSLASHusepgflibrary, [anon_sym_BSLASHusetikzlibrary] = anon_sym_BSLASHusetikzlibrary, + [anon_sym_BSLASHtext] = anon_sym_BSLASHtext, + [anon_sym_BSLASHintertext] = anon_sym_BSLASHintertext, + [anon_sym_shortintertext] = anon_sym_shortintertext, [sym__trivia_raw_fi] = sym__trivia_raw_fi, [sym__trivia_raw_env_comment] = sym__trivia_raw_fi, [sym__trivia_raw_env_verbatim] = sym__trivia_raw_fi, @@ -1246,6 +1257,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_color_set_definition] = sym_color_set_definition, [sym_color_reference] = sym_color_reference, [sym_tikz_library_import] = sym_tikz_library_import, + [sym_text_mode] = sym_text_mode, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, [aux_sym__section_repeat1] = aux_sym__section_repeat1, [aux_sym__section_repeat2] = aux_sym__section_repeat2, @@ -2393,6 +2405,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_BSLASHtext] = { + .visible = true, + .named = false, + }, + [anon_sym_BSLASHintertext] = { + .visible = true, + .named = false, + }, + [anon_sym_shortintertext] = { + .visible = true, + .named = false, + }, [sym__trivia_raw_fi] = { .visible = true, .named = true, @@ -2837,6 +2861,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_text_mode] = { + .visible = true, + .named = true, + }, [aux_sym_source_file_repeat1] = { .visible = false, .named = false, @@ -2926,42 +2954,43 @@ enum { field_code = 4, field_command = 5, field_comment = 6, - field_counter = 7, - field_declaration = 8, - field_default = 9, - field_directory = 10, - field_end = 11, - field_file = 12, - field_from = 13, - field_glob = 14, - field_head = 15, - field_implementation = 16, - field_key = 17, - field_keys = 18, - field_label = 19, - field_language = 20, - field_long = 21, - field_model = 22, - field_name = 23, - field_names = 24, - field_number = 25, - field_options = 26, - field_pair = 27, - field_path = 28, - field_paths = 29, - field_pattern = 30, - field_postnote = 31, - field_prenote = 32, - field_short = 33, - field_spec = 34, - field_tail = 35, - field_text = 36, - field_title = 37, - field_to = 38, - field_ty = 39, - field_value = 40, - field_verbatim = 41, - field_word = 42, + field_content = 7, + field_counter = 8, + field_declaration = 9, + field_default = 10, + field_directory = 11, + field_end = 12, + field_file = 13, + field_from = 14, + field_glob = 15, + field_head = 16, + field_implementation = 17, + field_key = 18, + field_keys = 19, + field_label = 20, + field_language = 21, + field_long = 22, + field_model = 23, + field_name = 24, + field_names = 25, + field_number = 26, + field_options = 27, + field_pair = 28, + field_path = 29, + field_paths = 30, + field_pattern = 31, + field_postnote = 32, + field_prenote = 33, + field_short = 34, + field_spec = 35, + field_tail = 36, + field_text = 37, + field_title = 38, + field_to = 39, + field_ty = 40, + field_value = 41, + field_verbatim = 42, + field_word = 43, }; static const char * const ts_field_names[] = { @@ -2972,6 +3001,7 @@ static const char * const ts_field_names[] = { [field_code] = "code", [field_command] = "command", [field_comment] = "comment", + [field_content] = "content", [field_counter] = "counter", [field_declaration] = "declaration", [field_default] = "default", @@ -3033,59 +3063,60 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [20] = {.index = 33, .length = 2}, [21] = {.index = 35, .length = 2}, [22] = {.index = 37, .length = 2}, - [23] = {.index = 39, .length = 3}, - [24] = {.index = 42, .length = 3}, - [25] = {.index = 45, .length = 4}, - [26] = {.index = 49, .length = 2}, - [27] = {.index = 51, .length = 1}, - [28] = {.index = 52, .length = 3}, - [29] = {.index = 55, .length = 3}, - [30] = {.index = 58, .length = 2}, - [31] = {.index = 60, .length = 3}, - [32] = {.index = 63, .length = 3}, - [33] = {.index = 66, .length = 3}, - [34] = {.index = 69, .length = 3}, - [35] = {.index = 72, .length = 3}, - [36] = {.index = 75, .length = 3}, - [37] = {.index = 78, .length = 3}, - [38] = {.index = 81, .length = 3}, - [39] = {.index = 84, .length = 2}, - [40] = {.index = 86, .length = 7}, - [41] = {.index = 93, .length = 7}, - [42] = {.index = 100, .length = 7}, - [43] = {.index = 107, .length = 8}, - [44] = {.index = 115, .length = 3}, - [45] = {.index = 118, .length = 1}, - [46] = {.index = 119, .length = 2}, - [47] = {.index = 121, .length = 1}, - [48] = {.index = 122, .length = 1}, - [49] = {.index = 123, .length = 1}, - [50] = {.index = 124, .length = 4}, - [51] = {.index = 128, .length = 1}, - [52] = {.index = 129, .length = 4}, - [53] = {.index = 133, .length = 3}, - [54] = {.index = 136, .length = 3}, - [55] = {.index = 139, .length = 4}, - [56] = {.index = 143, .length = 4}, - [57] = {.index = 147, .length = 4}, - [58] = {.index = 151, .length = 4}, - [59] = {.index = 155, .length = 4}, - [60] = {.index = 159, .length = 2}, + [23] = {.index = 39, .length = 2}, + [24] = {.index = 41, .length = 3}, + [25] = {.index = 44, .length = 3}, + [26] = {.index = 47, .length = 4}, + [27] = {.index = 51, .length = 2}, + [28] = {.index = 53, .length = 1}, + [29] = {.index = 54, .length = 3}, + [30] = {.index = 57, .length = 3}, + [31] = {.index = 60, .length = 2}, + [32] = {.index = 62, .length = 3}, + [33] = {.index = 65, .length = 3}, + [34] = {.index = 68, .length = 3}, + [35] = {.index = 71, .length = 3}, + [36] = {.index = 74, .length = 3}, + [37] = {.index = 77, .length = 3}, + [38] = {.index = 80, .length = 3}, + [39] = {.index = 83, .length = 3}, + [40] = {.index = 86, .length = 2}, + [41] = {.index = 88, .length = 7}, + [42] = {.index = 95, .length = 7}, + [43] = {.index = 102, .length = 7}, + [44] = {.index = 109, .length = 8}, + [45] = {.index = 117, .length = 3}, + [46] = {.index = 120, .length = 1}, + [47] = {.index = 121, .length = 2}, + [48] = {.index = 123, .length = 1}, + [49] = {.index = 124, .length = 1}, + [50] = {.index = 125, .length = 1}, + [51] = {.index = 126, .length = 4}, + [52] = {.index = 130, .length = 1}, + [53] = {.index = 131, .length = 4}, + [54] = {.index = 135, .length = 3}, + [55] = {.index = 138, .length = 3}, + [56] = {.index = 141, .length = 4}, + [57] = {.index = 145, .length = 4}, + [58] = {.index = 149, .length = 4}, + [59] = {.index = 153, .length = 4}, + [60] = {.index = 157, .length = 4}, [61] = {.index = 161, .length = 2}, [62] = {.index = 163, .length = 2}, [63] = {.index = 165, .length = 2}, [64] = {.index = 167, .length = 2}, [65] = {.index = 169, .length = 2}, [66] = {.index = 171, .length = 2}, - [67] = {.index = 173, .length = 1}, - [68] = {.index = 174, .length = 5}, - [69] = {.index = 179, .length = 4}, - [70] = {.index = 183, .length = 5}, - [71] = {.index = 188, .length = 5}, - [72] = {.index = 193, .length = 5}, - [73] = {.index = 198, .length = 4}, - [74] = {.index = 202, .length = 5}, - [75] = {.index = 207, .length = 6}, + [67] = {.index = 173, .length = 2}, + [68] = {.index = 175, .length = 1}, + [69] = {.index = 176, .length = 5}, + [70] = {.index = 181, .length = 4}, + [71] = {.index = 185, .length = 5}, + [72] = {.index = 190, .length = 5}, + [73] = {.index = 195, .length = 5}, + [74] = {.index = 200, .length = 4}, + [75] = {.index = 204, .length = 5}, + [76] = {.index = 209, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3148,73 +3179,76 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_command, 0}, {field_declaration, 1}, [37] = + {field_command, 0}, + {field_content, 1}, + [39] = {field_word, 0, .inherited = true}, {field_word, 1, .inherited = true}, - [39] = + [41] = {field_begin, 0}, {field_comment, 1}, {field_end, 2}, - [42] = + [44] = {field_command, 0}, {field_name, 1}, {field_options, 2}, - [45] = + [47] = {field_command, 0}, {field_language, 2}, {field_name, 1}, {field_text, 1, .inherited = true}, - [49] = + [51] = {field_arg, 0, .inherited = true}, {field_arg, 1, .inherited = true}, - [51] = + [53] = {field_key, 0}, - [52] = + [54] = {field_command, 0}, {field_options, 1}, {field_paths, 2}, - [55] = + [57] = {field_command, 0}, {field_options, 1}, {field_path, 2}, - [58] = + [60] = {field_glob, 2}, {field_options, 1}, - [60] = + [62] = {field_command, 0}, {field_directory, 1}, {field_file, 2}, - [63] = + [65] = {field_command, 0}, {field_long, 2}, {field_short, 1}, - [66] = + [68] = {field_command, 0}, {field_keys, 2}, {field_prenote, 1}, - [69] = + [71] = {field_command, 0}, {field_from, 1}, {field_to, 2}, - [72] = + [74] = {field_command, 0}, {field_name, 1}, {field_number, 2}, - [75] = + [77] = {field_command, 0}, {field_declaration, 1}, {field_implementation, 2}, - [78] = + [80] = {field_command, 0}, {field_name, 2}, {field_options, 1}, - [81] = + [83] = {field_command, 0}, {field_name, 1}, {field_title, 2}, - [84] = + [86] = {field_begin, 0}, {field_end, 2}, - [86] = + [88] = {field_begin, 0}, {field_command, 0, .inherited = true}, {field_command, 2, .inherited = true}, @@ -3222,7 +3256,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_end, 2}, {field_name, 0, .inherited = true}, {field_name, 2, .inherited = true}, - [93] = + [95] = {field_begin, 0}, {field_command, 0, .inherited = true}, {field_command, 2, .inherited = true}, @@ -3230,7 +3264,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 0, .inherited = true}, {field_name, 2, .inherited = true}, {field_verbatim, 1}, - [100] = + [102] = {field_begin, 0}, {field_code, 1}, {field_command, 0, .inherited = true}, @@ -3238,7 +3272,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_end, 2}, {field_name, 0, .inherited = true}, {field_name, 2, .inherited = true}, - [107] = + [109] = {field_begin, 0}, {field_code, 1}, {field_command, 0, .inherited = true}, @@ -3247,130 +3281,130 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_language, 0, .inherited = true}, {field_name, 0, .inherited = true}, {field_name, 2, .inherited = true}, - [115] = + [117] = {field_begin, 0}, {field_code, 1}, {field_end, 2}, - [118] = + [120] = {field_text, 1}, - [119] = + [121] = {field_text, 1}, {field_word, 1, .inherited = true}, - [121] = + [123] = {field_pair, 1}, - [122] = + [124] = {field_path, 1}, - [123] = + [125] = {field_pattern, 1}, - [124] = + [126] = {field_command, 0}, {field_keys, 3}, {field_postnote, 2}, {field_prenote, 1}, - [128] = + [130] = {field_command, 1}, - [129] = + [131] = {field_argc, 2}, {field_command, 0}, {field_declaration, 1}, {field_implementation, 3}, - [133] = + [135] = {field_command, 0}, {field_declaration, 1}, {field_implementation, 3}, - [136] = + [138] = {field_begin, 2}, {field_end, 3}, {field_name, 1}, - [139] = + [141] = {field_command, 0}, {field_long, 3}, {field_name, 1}, {field_short, 2}, - [143] = + [145] = {field_command, 0}, {field_counter, 3}, {field_name, 1}, {field_title, 2}, - [147] = + [149] = {field_command, 0}, {field_counter, 2}, {field_name, 1}, {field_title, 3}, - [151] = + [153] = {field_command, 0}, {field_name, 2}, {field_options, 1}, {field_title, 3}, - [155] = + [157] = {field_command, 0}, {field_model, 2}, {field_name, 1}, {field_spec, 3}, - [159] = + [161] = {field_key, 0}, {field_value, 2}, - [161] = + [163] = {field_pair, 1}, {field_pair, 2, .inherited = true}, - [163] = + [165] = {field_pair, 0, .inherited = true}, {field_pair, 1, .inherited = true}, - [165] = + [167] = {field_path, 1}, {field_path, 2, .inherited = true}, - [167] = + [169] = {field_path, 0, .inherited = true}, {field_path, 1, .inherited = true}, - [169] = + [171] = {field_text, 1}, {field_text, 2, .inherited = true}, - [171] = + [173] = {field_text, 0, .inherited = true}, {field_text, 1, .inherited = true}, - [173] = + [175] = {field_value, 1}, - [174] = + [176] = {field_argc, 2}, {field_command, 0}, {field_declaration, 1}, {field_default, 3}, {field_implementation, 4}, - [179] = + [181] = {field_argc, 2}, {field_begin, 3}, {field_end, 4}, {field_name, 1}, - [183] = + [185] = {field_command, 0}, {field_long, 4}, {field_name, 2}, {field_options, 1}, {field_short, 3}, - [188] = + [190] = {field_command, 0}, {field_counter, 4}, {field_name, 2}, {field_options, 1}, {field_title, 3}, - [193] = + [195] = {field_command, 0}, {field_counter, 3}, {field_name, 2}, {field_options, 1}, {field_title, 4}, - [198] = + [200] = {field_command, 0}, {field_model, 3}, {field_name, 2}, {field_spec, 4}, - [202] = + [204] = {field_command, 0}, {field_head, 2}, {field_model, 1}, {field_spec, 4}, {field_tail, 3}, - [207] = + [209] = {field_command, 0}, {field_head, 3}, {field_model, 2}, @@ -3387,2474 +3421,6 @@ static const uint16_t ts_non_terminal_alias_map[] = { 0, }; -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 3, - [4] = 4, - [5] = 5, - [6] = 3, - [7] = 2, - [8] = 4, - [9] = 9, - [10] = 3, - [11] = 5, - [12] = 4, - [13] = 3, - [14] = 2, - [15] = 9, - [16] = 16, - [17] = 2, - [18] = 3, - [19] = 4, - [20] = 9, - [21] = 16, - [22] = 2, - [23] = 5, - [24] = 24, - [25] = 16, - [26] = 9, - [27] = 5, - [28] = 16, - [29] = 9, - [30] = 5, - [31] = 16, - [32] = 16, - [33] = 3, - [34] = 2, - [35] = 4, - [36] = 4, - [37] = 9, - [38] = 5, - [39] = 39, - [40] = 39, - [41] = 41, - [42] = 39, - [43] = 43, - [44] = 44, - [45] = 45, - [46] = 41, - [47] = 47, - [48] = 48, - [49] = 44, - [50] = 4, - [51] = 48, - [52] = 47, - [53] = 41, - [54] = 39, - [55] = 55, - [56] = 43, - [57] = 44, - [58] = 45, - [59] = 45, - [60] = 2, - [61] = 45, - [62] = 43, - [63] = 41, - [64] = 55, - [65] = 48, - [66] = 47, - [67] = 44, - [68] = 43, - [69] = 3, - [70] = 41, - [71] = 71, - [72] = 5, - [73] = 2, - [74] = 45, - [75] = 44, - [76] = 43, - [77] = 39, - [78] = 47, - [79] = 55, - [80] = 43, - [81] = 44, - [82] = 2, - [83] = 45, - [84] = 24, - [85] = 55, - [86] = 5, - [87] = 24, - [88] = 44, - [89] = 39, - [90] = 48, - [91] = 47, - [92] = 39, - [93] = 41, - [94] = 41, - [95] = 47, - [96] = 47, - [97] = 48, - [98] = 48, - [99] = 43, - [100] = 41, - [101] = 48, - [102] = 47, - [103] = 41, - [104] = 39, - [105] = 5, - [106] = 55, - [107] = 4, - [108] = 55, - [109] = 55, - [110] = 45, - [111] = 43, - [112] = 44, - [113] = 24, - [114] = 45, - [115] = 47, - [116] = 43, - [117] = 3, - [118] = 3, - [119] = 4, - [120] = 24, - [121] = 44, - [122] = 122, - [123] = 123, - [124] = 123, - [125] = 123, - [126] = 122, - [127] = 122, - [128] = 122, - [129] = 123, - [130] = 123, - [131] = 122, - [132] = 132, - [133] = 133, - [134] = 132, - [135] = 133, - [136] = 133, - [137] = 133, - [138] = 132, - [139] = 132, - [140] = 133, - [141] = 132, - [142] = 142, - [143] = 143, - [144] = 143, - [145] = 142, - [146] = 143, - [147] = 143, - [148] = 143, - [149] = 142, - [150] = 142, - [151] = 142, - [152] = 152, - [153] = 153, - [154] = 152, - [155] = 152, - [156] = 153, - [157] = 153, - [158] = 153, - [159] = 152, - [160] = 153, - [161] = 152, - [162] = 162, - [163] = 163, - [164] = 163, - [165] = 162, - [166] = 163, - [167] = 162, - [168] = 163, - [169] = 162, - [170] = 162, - [171] = 163, - [172] = 172, - [173] = 173, - [174] = 173, - [175] = 173, - [176] = 173, - [177] = 173, - [178] = 172, - [179] = 172, - [180] = 172, - [181] = 172, - [182] = 182, - [183] = 183, - [184] = 182, - [185] = 182, - [186] = 183, - [187] = 182, - [188] = 182, - [189] = 183, - [190] = 183, - [191] = 183, - [192] = 192, - [193] = 193, - [194] = 194, - [195] = 193, - [196] = 193, - [197] = 193, - [198] = 194, - [199] = 193, - [200] = 192, - [201] = 194, - [202] = 192, - [203] = 192, - [204] = 194, - [205] = 192, - [206] = 194, - [207] = 207, - [208] = 208, - [209] = 208, - [210] = 208, - [211] = 208, - [212] = 207, - [213] = 207, - [214] = 208, - [215] = 207, - [216] = 207, - [217] = 217, - [218] = 218, - [219] = 218, - [220] = 220, - [221] = 221, - [222] = 217, - [223] = 218, - [224] = 217, - [225] = 218, - [226] = 218, - [227] = 227, - [228] = 228, - [229] = 217, - [230] = 217, - [231] = 228, - [232] = 218, - [233] = 218, - [234] = 217, - [235] = 228, - [236] = 218, - [237] = 217, - [238] = 217, - [239] = 221, - [240] = 221, - [241] = 241, - [242] = 241, - [243] = 243, - [244] = 243, - [245] = 245, - [246] = 245, - [247] = 247, - [248] = 247, - [249] = 247, - [250] = 247, - [251] = 251, - [252] = 252, - [253] = 251, - [254] = 251, - [255] = 247, - [256] = 251, - [257] = 251, - [258] = 247, - [259] = 247, - [260] = 251, - [261] = 247, - [262] = 251, - [263] = 251, - [264] = 208, - [265] = 207, - [266] = 208, - [267] = 207, - [268] = 268, - [269] = 269, - [270] = 270, - [271] = 271, - [272] = 272, - [273] = 273, - [274] = 274, - [275] = 275, - [276] = 276, - [277] = 277, - [278] = 278, - [279] = 279, - [280] = 280, - [281] = 281, - [282] = 282, - [283] = 283, - [284] = 284, - [285] = 285, - [286] = 286, - [287] = 287, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, - [296] = 296, - [297] = 297, - [298] = 298, - [299] = 299, - [300] = 300, - [301] = 301, - [302] = 302, - [303] = 303, - [304] = 304, - [305] = 305, - [306] = 306, - [307] = 307, - [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 312, - [313] = 313, - [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, - [318] = 318, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 330, - [331] = 331, - [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, - [337] = 337, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 319, - [345] = 320, - [346] = 307, - [347] = 270, - [348] = 311, - [349] = 305, - [350] = 333, - [351] = 304, - [352] = 303, - [353] = 332, - [354] = 302, - [355] = 331, - [356] = 328, - [357] = 330, - [358] = 301, - [359] = 326, - [360] = 300, - [361] = 325, - [362] = 299, - [363] = 324, - [364] = 318, - [365] = 308, - [366] = 298, - [367] = 307, - [368] = 297, - [369] = 269, - [370] = 295, - [371] = 294, - [372] = 270, - [373] = 293, - [374] = 305, - [375] = 292, - [376] = 304, - [377] = 291, - [378] = 303, - [379] = 290, - [380] = 302, - [381] = 289, - [382] = 288, - [383] = 286, - [384] = 285, - [385] = 301, - [386] = 284, - [387] = 283, - [388] = 282, - [389] = 300, - [390] = 309, - [391] = 313, - [392] = 299, - [393] = 298, - [394] = 297, - [395] = 269, - [396] = 295, - [397] = 294, - [398] = 293, - [399] = 292, - [400] = 291, - [401] = 290, - [402] = 289, - [403] = 288, - [404] = 286, - [405] = 285, - [406] = 284, - [407] = 283, - [408] = 282, - [409] = 309, - [410] = 313, - [411] = 279, - [412] = 278, - [413] = 277, - [414] = 276, - [415] = 275, - [416] = 274, - [417] = 273, - [418] = 311, - [419] = 272, - [420] = 271, - [421] = 306, - [422] = 314, - [423] = 315, - [424] = 317, - [425] = 320, - [426] = 323, - [427] = 333, - [428] = 332, - [429] = 331, - [430] = 328, - [431] = 330, - [432] = 326, - [433] = 325, - [434] = 324, - [435] = 327, - [436] = 334, - [437] = 319, - [438] = 312, - [439] = 316, - [440] = 322, - [441] = 281, - [442] = 280, - [443] = 287, - [444] = 343, - [445] = 339, - [446] = 338, - [447] = 335, - [448] = 336, - [449] = 337, - [450] = 450, - [451] = 340, - [452] = 329, - [453] = 318, - [454] = 316, - [455] = 321, - [456] = 310, - [457] = 322, - [458] = 296, - [459] = 342, - [460] = 341, - [461] = 281, - [462] = 340, - [463] = 337, - [464] = 336, - [465] = 335, - [466] = 280, - [467] = 312, - [468] = 334, - [469] = 327, - [470] = 287, - [471] = 323, - [472] = 320, - [473] = 279, - [474] = 278, - [475] = 277, - [476] = 276, - [477] = 275, - [478] = 274, - [479] = 273, - [480] = 343, - [481] = 272, - [482] = 271, - [483] = 306, - [484] = 314, - [485] = 315, - [486] = 317, - [487] = 339, - [488] = 320, - [489] = 323, - [490] = 327, - [491] = 334, - [492] = 312, - [493] = 338, - [494] = 335, - [495] = 336, - [496] = 337, - [497] = 340, - [498] = 329, - [499] = 341, - [500] = 342, - [501] = 296, - [502] = 321, - [503] = 310, - [504] = 321, - [505] = 310, - [506] = 329, - [507] = 296, - [508] = 342, - [509] = 341, - [510] = 340, - [511] = 338, - [512] = 339, - [513] = 343, - [514] = 287, - [515] = 280, - [516] = 281, - [517] = 322, - [518] = 316, - [519] = 337, - [520] = 317, - [521] = 315, - [522] = 336, - [523] = 314, - [524] = 335, - [525] = 306, - [526] = 271, - [527] = 272, - [528] = 319, - [529] = 312, - [530] = 273, - [531] = 274, - [532] = 275, - [533] = 276, - [534] = 277, - [535] = 278, - [536] = 279, - [537] = 334, - [538] = 318, - [539] = 327, - [540] = 323, - [541] = 308, - [542] = 317, - [543] = 324, - [544] = 325, - [545] = 326, - [546] = 330, - [547] = 328, - [548] = 315, - [549] = 314, - [550] = 313, - [551] = 309, - [552] = 282, - [553] = 283, - [554] = 284, - [555] = 285, - [556] = 286, - [557] = 306, - [558] = 288, - [559] = 289, - [560] = 290, - [561] = 291, - [562] = 292, - [563] = 293, - [564] = 294, - [565] = 295, - [566] = 269, - [567] = 297, - [568] = 298, - [569] = 299, - [570] = 300, - [571] = 301, - [572] = 302, - [573] = 303, - [574] = 304, - [575] = 305, - [576] = 270, - [577] = 307, - [578] = 308, - [579] = 331, - [580] = 332, - [581] = 333, - [582] = 271, - [583] = 272, - [584] = 584, - [585] = 273, - [586] = 274, - [587] = 275, - [588] = 276, - [589] = 277, - [590] = 278, - [591] = 279, - [592] = 341, - [593] = 342, - [594] = 296, - [595] = 311, - [596] = 310, - [597] = 321, - [598] = 329, - [599] = 338, - [600] = 339, - [601] = 343, - [602] = 287, - [603] = 280, - [604] = 281, - [605] = 322, - [606] = 308, - [607] = 307, - [608] = 318, - [609] = 270, - [610] = 305, - [611] = 304, - [612] = 303, - [613] = 302, - [614] = 301, - [615] = 300, - [616] = 616, - [617] = 299, - [618] = 298, - [619] = 297, - [620] = 269, - [621] = 295, - [622] = 294, - [623] = 293, - [624] = 292, - [625] = 291, - [626] = 290, - [627] = 289, - [628] = 316, - [629] = 319, - [630] = 313, - [631] = 309, - [632] = 282, - [633] = 283, - [634] = 284, - [635] = 285, - [636] = 286, - [637] = 288, - [638] = 324, - [639] = 311, - [640] = 325, - [641] = 326, - [642] = 330, - [643] = 328, - [644] = 331, - [645] = 332, - [646] = 333, - [647] = 616, - [648] = 648, - [649] = 649, - [650] = 650, - [651] = 651, - [652] = 652, - [653] = 653, - [654] = 654, - [655] = 655, - [656] = 616, - [657] = 657, - [658] = 450, - [659] = 584, - [660] = 450, - [661] = 584, - [662] = 207, - [663] = 208, - [664] = 664, - [665] = 450, - [666] = 666, - [667] = 616, - [668] = 584, - [669] = 450, - [670] = 616, - [671] = 584, - [672] = 672, - [673] = 673, - [674] = 674, - [675] = 675, - [676] = 676, - [677] = 677, - [678] = 657, - [679] = 657, - [680] = 648, - [681] = 649, - [682] = 650, - [683] = 651, - [684] = 652, - [685] = 685, - [686] = 686, - [687] = 687, - [688] = 653, - [689] = 689, - [690] = 654, - [691] = 655, - [692] = 692, - [693] = 693, - [694] = 694, - [695] = 695, - [696] = 696, - [697] = 697, - [698] = 698, - [699] = 699, - [700] = 700, - [701] = 676, - [702] = 702, - [703] = 703, - [704] = 704, - [705] = 705, - [706] = 706, - [707] = 666, - [708] = 708, - [709] = 709, - [710] = 664, - [711] = 676, - [712] = 712, - [713] = 713, - [714] = 714, - [715] = 715, - [716] = 716, - [717] = 717, - [718] = 718, - [719] = 719, - [720] = 720, - [721] = 721, - [722] = 722, - [723] = 723, - [724] = 724, - [725] = 725, - [726] = 726, - [727] = 727, - [728] = 728, - [729] = 729, - [730] = 730, - [731] = 731, - [732] = 732, - [733] = 733, - [734] = 734, - [735] = 735, - [736] = 676, - [737] = 737, - [738] = 738, - [739] = 739, - [740] = 740, - [741] = 648, - [742] = 742, - [743] = 743, - [744] = 744, - [745] = 745, - [746] = 746, - [747] = 747, - [748] = 748, - [749] = 749, - [750] = 664, - [751] = 751, - [752] = 752, - [753] = 753, - [754] = 666, - [755] = 755, - [756] = 756, - [757] = 649, - [758] = 758, - [759] = 759, - [760] = 650, - [761] = 676, - [762] = 657, - [763] = 651, - [764] = 655, - [765] = 654, - [766] = 653, - [767] = 652, - [768] = 651, - [769] = 666, - [770] = 652, - [771] = 650, - [772] = 649, - [773] = 648, - [774] = 653, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 676, - [779] = 666, - [780] = 780, - [781] = 781, - [782] = 782, - [783] = 783, - [784] = 784, - [785] = 654, - [786] = 786, - [787] = 787, - [788] = 788, - [789] = 789, - [790] = 790, - [791] = 791, - [792] = 792, - [793] = 793, - [794] = 794, - [795] = 795, - [796] = 796, - [797] = 797, - [798] = 798, - [799] = 655, - [800] = 664, - [801] = 801, - [802] = 676, - [803] = 803, - [804] = 664, - [805] = 805, - [806] = 806, - [807] = 807, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 811, - [812] = 812, - [813] = 813, - [814] = 814, - [815] = 815, - [816] = 816, - [817] = 676, - [818] = 818, - [819] = 819, - [820] = 820, - [821] = 821, - [822] = 822, - [823] = 655, - [824] = 654, - [825] = 653, - [826] = 652, - [827] = 651, - [828] = 650, - [829] = 657, - [830] = 649, - [831] = 648, - [832] = 791, - [833] = 675, - [834] = 794, - [835] = 793, - [836] = 792, - [837] = 791, - [838] = 790, - [839] = 789, - [840] = 787, - [841] = 786, - [842] = 784, - [843] = 783, - [844] = 782, - [845] = 781, - [846] = 780, - [847] = 776, - [848] = 775, - [849] = 742, - [850] = 796, - [851] = 797, - [852] = 798, - [853] = 801, - [854] = 806, - [855] = 807, - [856] = 808, - [857] = 809, - [858] = 805, - [859] = 803, - [860] = 810, - [861] = 811, - [862] = 812, - [863] = 813, - [864] = 822, - [865] = 865, - [866] = 777, - [867] = 759, - [868] = 758, - [869] = 756, - [870] = 695, - [871] = 755, - [872] = 697, - [873] = 698, - [874] = 699, - [875] = 700, - [876] = 753, - [877] = 752, - [878] = 673, - [879] = 747, - [880] = 745, - [881] = 743, - [882] = 740, - [883] = 731, - [884] = 730, - [885] = 729, - [886] = 728, - [887] = 726, - [888] = 723, - [889] = 749, - [890] = 719, - [891] = 788, - [892] = 714, - [893] = 709, - [894] = 692, - [895] = 746, - [896] = 687, - [897] = 686, - [898] = 685, - [899] = 677, - [900] = 675, - [901] = 674, - [902] = 751, - [903] = 814, - [904] = 739, - [905] = 735, - [906] = 821, - [907] = 705, - [908] = 819, - [909] = 818, - [910] = 816, - [911] = 815, - [912] = 744, - [913] = 693, - [914] = 694, - [915] = 723, - [916] = 672, - [917] = 738, - [918] = 737, - [919] = 734, - [920] = 748, - [921] = 732, - [922] = 727, - [923] = 725, - [924] = 724, - [925] = 722, - [926] = 700, - [927] = 721, - [928] = 720, - [929] = 718, - [930] = 717, - [931] = 716, - [932] = 715, - [933] = 713, - [934] = 712, - [935] = 708, - [936] = 706, - [937] = 733, - [938] = 704, - [939] = 703, - [940] = 702, - [941] = 696, - [942] = 694, - [943] = 693, - [944] = 815, - [945] = 816, - [946] = 818, - [947] = 819, - [948] = 705, - [949] = 821, - [950] = 735, - [951] = 696, - [952] = 739, - [953] = 814, - [954] = 751, - [955] = 674, - [956] = 675, - [957] = 677, - [958] = 685, - [959] = 686, - [960] = 687, - [961] = 692, - [962] = 702, - [963] = 703, - [964] = 709, - [965] = 704, - [966] = 714, - [967] = 733, - [968] = 706, - [969] = 708, - [970] = 719, - [971] = 712, - [972] = 713, - [973] = 715, - [974] = 716, - [975] = 717, - [976] = 718, - [977] = 720, - [978] = 721, - [979] = 722, - [980] = 724, - [981] = 725, - [982] = 727, - [983] = 732, - [984] = 748, - [985] = 734, - [986] = 737, - [987] = 738, - [988] = 672, - [989] = 747, - [990] = 726, - [991] = 728, - [992] = 729, - [993] = 730, - [994] = 731, - [995] = 740, - [996] = 743, - [997] = 745, - [998] = 727, - [999] = 803, - [1000] = 805, - [1001] = 775, - [1002] = 776, - [1003] = 780, - [1004] = 781, - [1005] = 782, - [1006] = 783, - [1007] = 784, - [1008] = 786, - [1009] = 787, - [1010] = 789, - [1011] = 790, - [1012] = 792, - [1013] = 793, - [1014] = 794, - [1015] = 795, - [1016] = 796, - [1017] = 797, - [1018] = 798, - [1019] = 801, - [1020] = 742, - [1021] = 744, - [1022] = 746, - [1023] = 788, - [1024] = 749, - [1025] = 673, - [1026] = 752, - [1027] = 753, - [1028] = 700, - [1029] = 699, - [1030] = 698, - [1031] = 697, - [1032] = 755, - [1033] = 695, - [1034] = 756, - [1035] = 758, - [1036] = 759, - [1037] = 777, - [1038] = 822, - [1039] = 813, - [1040] = 812, - [1041] = 811, - [1042] = 810, - [1043] = 809, - [1044] = 808, - [1045] = 807, - [1046] = 806, - [1047] = 801, - [1048] = 806, - [1049] = 798, - [1050] = 797, - [1051] = 796, - [1052] = 795, - [1053] = 794, - [1054] = 793, - [1055] = 792, - [1056] = 791, - [1057] = 790, - [1058] = 789, - [1059] = 787, - [1060] = 786, - [1061] = 784, - [1062] = 783, - [1063] = 782, - [1064] = 781, - [1065] = 780, - [1066] = 776, - [1067] = 775, - [1068] = 807, - [1069] = 808, - [1070] = 809, - [1071] = 810, - [1072] = 811, - [1073] = 812, - [1074] = 813, - [1075] = 822, - [1076] = 756, - [1077] = 805, - [1078] = 803, - [1079] = 777, - [1080] = 759, - [1081] = 758, - [1082] = 756, - [1083] = 755, - [1084] = 753, - [1085] = 752, - [1086] = 673, - [1087] = 749, - [1088] = 788, - [1089] = 746, - [1090] = 744, - [1091] = 742, - [1092] = 672, - [1093] = 738, - [1094] = 737, - [1095] = 734, - [1096] = 748, - [1097] = 732, - [1098] = 747, - [1099] = 745, - [1100] = 743, - [1101] = 740, - [1102] = 731, - [1103] = 730, - [1104] = 729, - [1105] = 728, - [1106] = 726, - [1107] = 723, - [1108] = 712, - [1109] = 719, - [1110] = 725, - [1111] = 714, - [1112] = 709, - [1113] = 692, - [1114] = 724, - [1115] = 687, - [1116] = 686, - [1117] = 685, - [1118] = 677, - [1119] = 695, - [1120] = 674, - [1121] = 751, - [1122] = 814, - [1123] = 739, - [1124] = 735, - [1125] = 821, - [1126] = 705, - [1127] = 819, - [1128] = 818, - [1129] = 816, - [1130] = 815, - [1131] = 722, - [1132] = 693, - [1133] = 694, - [1134] = 697, - [1135] = 721, - [1136] = 720, - [1137] = 718, - [1138] = 717, - [1139] = 716, - [1140] = 715, - [1141] = 713, - [1142] = 865, - [1143] = 708, - [1144] = 706, - [1145] = 733, - [1146] = 704, - [1147] = 703, - [1148] = 702, - [1149] = 696, - [1150] = 694, - [1151] = 693, - [1152] = 815, - [1153] = 816, - [1154] = 818, - [1155] = 819, - [1156] = 705, - [1157] = 821, - [1158] = 735, - [1159] = 739, - [1160] = 814, - [1161] = 751, - [1162] = 674, - [1163] = 675, - [1164] = 677, - [1165] = 685, - [1166] = 686, - [1167] = 687, - [1168] = 692, - [1169] = 709, - [1170] = 696, - [1171] = 714, - [1172] = 719, - [1173] = 723, - [1174] = 726, - [1175] = 728, - [1176] = 729, - [1177] = 730, - [1178] = 731, - [1179] = 740, - [1180] = 743, - [1181] = 702, - [1182] = 703, - [1183] = 745, - [1184] = 704, - [1185] = 747, - [1186] = 733, - [1187] = 706, - [1188] = 698, - [1189] = 803, - [1190] = 712, - [1191] = 713, - [1192] = 715, - [1193] = 716, - [1194] = 717, - [1195] = 718, - [1196] = 720, - [1197] = 721, - [1198] = 722, - [1199] = 724, - [1200] = 725, - [1201] = 727, - [1202] = 732, - [1203] = 748, - [1204] = 734, - [1205] = 737, - [1206] = 738, - [1207] = 672, - [1208] = 805, - [1209] = 865, - [1210] = 865, - [1211] = 865, - [1212] = 699, - [1213] = 795, - [1214] = 1214, - [1215] = 865, - [1216] = 865, - [1217] = 865, - [1218] = 1218, - [1219] = 708, - [1220] = 1220, - [1221] = 1220, - [1222] = 775, - [1223] = 776, - [1224] = 780, - [1225] = 781, - [1226] = 782, - [1227] = 783, - [1228] = 784, - [1229] = 786, - [1230] = 787, - [1231] = 789, - [1232] = 790, - [1233] = 791, - [1234] = 792, - [1235] = 793, - [1236] = 794, - [1237] = 795, - [1238] = 1238, - [1239] = 742, - [1240] = 744, - [1241] = 746, - [1242] = 788, - [1243] = 749, - [1244] = 673, - [1245] = 752, - [1246] = 753, - [1247] = 700, - [1248] = 699, - [1249] = 698, - [1250] = 697, - [1251] = 755, - [1252] = 695, - [1253] = 796, - [1254] = 758, - [1255] = 759, - [1256] = 777, - [1257] = 822, - [1258] = 813, - [1259] = 812, - [1260] = 811, - [1261] = 810, - [1262] = 809, - [1263] = 808, - [1264] = 807, - [1265] = 806, - [1266] = 801, - [1267] = 797, - [1268] = 798, - [1269] = 1269, - [1270] = 1270, - [1271] = 1271, - [1272] = 1270, - [1273] = 1270, - [1274] = 1269, - [1275] = 1269, - [1276] = 1270, - [1277] = 1269, - [1278] = 1269, - [1279] = 1270, - [1280] = 1270, - [1281] = 1269, - [1282] = 1270, - [1283] = 1269, - [1284] = 1270, - [1285] = 1269, - [1286] = 1270, - [1287] = 311, - [1288] = 318, - [1289] = 319, - [1290] = 311, - [1291] = 616, - [1292] = 318, - [1293] = 450, - [1294] = 584, - [1295] = 319, - [1296] = 666, - [1297] = 657, - [1298] = 616, - [1299] = 664, - [1300] = 450, - [1301] = 584, - [1302] = 717, - [1303] = 704, - [1304] = 783, - [1305] = 784, - [1306] = 786, - [1307] = 787, - [1308] = 789, - [1309] = 742, - [1310] = 791, - [1311] = 792, - [1312] = 798, - [1313] = 801, - [1314] = 806, - [1315] = 807, - [1316] = 808, - [1317] = 809, - [1318] = 810, - [1319] = 811, - [1320] = 812, - [1321] = 813, - [1322] = 822, - [1323] = 777, - [1324] = 696, - [1325] = 759, - [1326] = 703, - [1327] = 758, - [1328] = 746, - [1329] = 733, - [1330] = 706, - [1331] = 695, - [1332] = 697, - [1333] = 698, - [1334] = 699, - [1335] = 753, - [1336] = 756, - [1337] = 780, - [1338] = 672, - [1339] = 738, - [1340] = 737, - [1341] = 734, - [1342] = 748, - [1343] = 732, - [1344] = 727, - [1345] = 725, - [1346] = 724, - [1347] = 722, - [1348] = 721, - [1349] = 720, - [1350] = 718, - [1351] = 723, - [1352] = 790, - [1353] = 709, - [1354] = 744, - [1355] = 788, - [1356] = 749, - [1357] = 673, - [1358] = 752, - [1359] = 716, - [1360] = 715, - [1361] = 776, - [1362] = 708, - [1363] = 1218, - [1364] = 755, - [1365] = 674, - [1366] = 1238, - [1367] = 713, - [1368] = 712, - [1369] = 775, - [1370] = 781, - [1371] = 664, - [1372] = 702, - [1373] = 694, - [1374] = 693, - [1375] = 657, - [1376] = 815, - [1377] = 816, - [1378] = 818, - [1379] = 819, - [1380] = 705, - [1381] = 821, - [1382] = 797, - [1383] = 796, - [1384] = 795, - [1385] = 794, - [1386] = 793, - [1387] = 735, - [1388] = 739, - [1389] = 814, - [1390] = 751, - [1391] = 700, - [1392] = 805, - [1393] = 803, - [1394] = 714, - [1395] = 782, - [1396] = 747, - [1397] = 666, - [1398] = 692, - [1399] = 719, - [1400] = 687, - [1401] = 686, - [1402] = 685, - [1403] = 677, - [1404] = 675, - [1405] = 725, - [1406] = 727, - [1407] = 709, - [1408] = 775, - [1409] = 776, - [1410] = 780, - [1411] = 781, - [1412] = 782, - [1413] = 783, - [1414] = 784, - [1415] = 786, - [1416] = 787, - [1417] = 789, - [1418] = 1218, - [1419] = 790, - [1420] = 791, - [1421] = 792, - [1422] = 798, - [1423] = 801, - [1424] = 806, - [1425] = 807, - [1426] = 808, - [1427] = 809, - [1428] = 810, - [1429] = 811, - [1430] = 812, - [1431] = 813, - [1432] = 1238, - [1433] = 822, - [1434] = 777, - [1435] = 759, - [1436] = 758, - [1437] = 704, - [1438] = 756, - [1439] = 733, - [1440] = 706, - [1441] = 753, - [1442] = 672, - [1443] = 738, - [1444] = 737, - [1445] = 734, - [1446] = 748, - [1447] = 732, - [1448] = 714, - [1449] = 724, - [1450] = 722, - [1451] = 721, - [1452] = 720, - [1453] = 718, - [1454] = 717, - [1455] = 716, - [1456] = 715, - [1457] = 713, - [1458] = 712, - [1459] = 700, - [1460] = 708, - [1461] = 703, - [1462] = 702, - [1463] = 719, - [1464] = 694, - [1465] = 693, - [1466] = 815, - [1467] = 816, - [1468] = 818, - [1469] = 819, - [1470] = 705, - [1471] = 821, - [1472] = 735, - [1473] = 805, - [1474] = 803, - [1475] = 747, - [1476] = 723, - [1477] = 739, - [1478] = 814, - [1479] = 751, - [1480] = 674, - [1481] = 675, - [1482] = 677, - [1483] = 685, - [1484] = 686, - [1485] = 687, - [1486] = 692, - [1487] = 311, - [1488] = 319, - [1489] = 318, - [1490] = 616, - [1491] = 450, - [1492] = 692, - [1493] = 703, - [1494] = 708, - [1495] = 723, - [1496] = 756, - [1497] = 584, - [1498] = 657, - [1499] = 666, - [1500] = 700, - [1501] = 664, - [1502] = 721, - [1503] = 808, - [1504] = 685, - [1505] = 781, - [1506] = 803, - [1507] = 677, - [1508] = 675, - [1509] = 805, - [1510] = 780, - [1511] = 674, - [1512] = 751, - [1513] = 814, - [1514] = 739, - [1515] = 735, - [1516] = 821, - [1517] = 705, - [1518] = 819, - [1519] = 818, - [1520] = 816, - [1521] = 815, - [1522] = 748, - [1523] = 694, - [1524] = 702, - [1525] = 776, - [1526] = 712, - [1527] = 775, - [1528] = 713, - [1529] = 715, - [1530] = 716, - [1531] = 787, - [1532] = 717, - [1533] = 786, - [1534] = 732, - [1535] = 718, - [1536] = 720, - [1537] = 687, - [1538] = 722, - [1539] = 724, - [1540] = 725, - [1541] = 727, - [1542] = 784, - [1543] = 693, - [1544] = 783, - [1545] = 737, - [1546] = 738, - [1547] = 672, - [1548] = 782, - [1549] = 753, - [1550] = 807, - [1551] = 758, - [1552] = 759, - [1553] = 777, - [1554] = 822, - [1555] = 747, - [1556] = 813, - [1557] = 812, - [1558] = 789, - [1559] = 811, - [1560] = 790, - [1561] = 810, - [1562] = 809, - [1563] = 686, - [1564] = 791, - [1565] = 806, - [1566] = 801, - [1567] = 734, - [1568] = 798, - [1569] = 792, - [1570] = 1570, - [1571] = 1571, - [1572] = 1572, - [1573] = 1572, - [1574] = 1574, - [1575] = 1575, - [1576] = 1572, - [1577] = 1572, - [1578] = 1572, - [1579] = 1572, - [1580] = 1580, - [1581] = 1572, - [1582] = 1572, - [1583] = 1583, - [1584] = 1584, - [1585] = 1585, - [1586] = 1583, - [1587] = 1587, - [1588] = 1588, - [1589] = 1587, - [1590] = 1583, - [1591] = 1583, - [1592] = 1592, - [1593] = 1588, - [1594] = 1587, - [1595] = 1587, - [1596] = 1596, - [1597] = 1597, - [1598] = 1596, - [1599] = 1588, - [1600] = 1592, - [1601] = 1587, - [1602] = 1585, - [1603] = 1603, - [1604] = 1604, - [1605] = 1597, - [1606] = 1606, - [1607] = 1607, - [1608] = 1583, - [1609] = 1588, - [1610] = 1587, - [1611] = 1584, - [1612] = 1612, - [1613] = 1613, - [1614] = 1614, - [1615] = 1583, - [1616] = 1597, - [1617] = 1617, - [1618] = 1596, - [1619] = 1588, - [1620] = 1614, - [1621] = 1604, - [1622] = 1588, - [1623] = 1606, - [1624] = 1592, - [1625] = 1585, - [1626] = 1603, - [1627] = 1607, - [1628] = 1584, - [1629] = 1604, - [1630] = 1612, - [1631] = 1613, - [1632] = 1614, - [1633] = 1633, - [1634] = 1583, - [1635] = 1617, - [1636] = 1636, - [1637] = 1633, - [1638] = 1636, - [1639] = 1606, - [1640] = 1636, - [1641] = 1633, - [1642] = 1588, - [1643] = 1617, - [1644] = 1607, - [1645] = 1613, - [1646] = 1612, - [1647] = 1584, - [1648] = 1607, - [1649] = 1606, - [1650] = 1604, - [1651] = 1603, - [1652] = 1585, - [1653] = 1592, - [1654] = 1596, - [1655] = 1597, - [1656] = 1636, - [1657] = 1597, - [1658] = 1617, - [1659] = 1596, - [1660] = 1587, - [1661] = 1592, - [1662] = 1585, - [1663] = 1617, - [1664] = 1603, - [1665] = 1617, - [1666] = 1604, - [1667] = 1606, - [1668] = 1607, - [1669] = 1584, - [1670] = 1636, - [1671] = 1633, - [1672] = 1614, - [1673] = 1587, - [1674] = 1612, - [1675] = 1613, - [1676] = 1584, - [1677] = 1612, - [1678] = 1583, - [1679] = 1613, - [1680] = 1614, - [1681] = 1588, - [1682] = 1613, - [1683] = 1612, - [1684] = 1603, - [1685] = 1607, - [1686] = 1606, - [1687] = 1633, - [1688] = 1604, - [1689] = 1614, - [1690] = 1603, - [1691] = 1585, - [1692] = 1633, - [1693] = 1597, - [1694] = 1596, - [1695] = 1592, - [1696] = 1592, - [1697] = 1596, - [1698] = 1585, - [1699] = 1603, - [1700] = 1604, - [1701] = 1597, - [1702] = 1606, - [1703] = 1607, - [1704] = 1636, - [1705] = 1617, - [1706] = 1636, - [1707] = 1584, - [1708] = 1612, - [1709] = 1613, - [1710] = 1597, - [1711] = 1596, - [1712] = 1617, - [1713] = 1633, - [1714] = 1614, - [1715] = 1614, - [1716] = 1636, - [1717] = 1633, - [1718] = 1592, - [1719] = 1613, - [1720] = 1612, - [1721] = 1584, - [1722] = 1607, - [1723] = 1606, - [1724] = 1604, - [1725] = 1603, - [1726] = 1585, - [1727] = 1727, - [1728] = 1728, - [1729] = 1727, - [1730] = 1728, - [1731] = 1728, - [1732] = 1732, - [1733] = 1733, - [1734] = 1734, - [1735] = 1735, - [1736] = 1736, - [1737] = 1728, - [1738] = 1735, - [1739] = 1727, - [1740] = 1740, - [1741] = 1734, - [1742] = 1742, - [1743] = 1734, - [1744] = 1733, - [1745] = 1734, - [1746] = 1735, - [1747] = 1747, - [1748] = 1736, - [1749] = 1727, - [1750] = 1740, - [1751] = 1740, - [1752] = 1727, - [1753] = 1740, - [1754] = 1754, - [1755] = 1736, - [1756] = 1740, - [1757] = 1734, - [1758] = 1736, - [1759] = 1735, - [1760] = 1740, - [1761] = 1734, - [1762] = 1762, - [1763] = 1735, - [1764] = 1736, - [1765] = 1728, - [1766] = 1766, - [1767] = 1727, - [1768] = 1740, - [1769] = 1769, - [1770] = 1740, - [1771] = 1727, - [1772] = 1728, - [1773] = 1736, - [1774] = 1728, - [1775] = 1736, - [1776] = 1776, - [1777] = 1735, - [1778] = 1735, - [1779] = 1734, - [1780] = 1780, - [1781] = 1727, - [1782] = 1734, - [1783] = 1736, - [1784] = 1769, - [1785] = 1728, - [1786] = 1735, - [1787] = 1787, - [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1791, - [1792] = 1792, - [1793] = 1793, - [1794] = 1794, - [1795] = 1795, - [1796] = 1796, - [1797] = 1797, - [1798] = 1798, - [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 1802, - [1803] = 1803, - [1804] = 1787, - [1805] = 1805, - [1806] = 1806, - [1807] = 1807, - [1808] = 1808, - [1809] = 1809, - [1810] = 1810, - [1811] = 1811, - [1812] = 1812, - [1813] = 1813, - [1814] = 1814, - [1815] = 1815, - [1816] = 1816, - [1817] = 1817, - [1818] = 1818, - [1819] = 1819, - [1820] = 1820, - [1821] = 1821, - [1822] = 1822, - [1823] = 1807, - [1824] = 1824, - [1825] = 1825, - [1826] = 1826, - [1827] = 1827, - [1828] = 1828, - [1829] = 1829, - [1830] = 1830, - [1831] = 1812, - [1832] = 1807, - [1833] = 1833, - [1834] = 1834, - [1835] = 1795, - [1836] = 1794, - [1837] = 1792, - [1838] = 1822, - [1839] = 1839, - [1840] = 1840, - [1841] = 1841, - [1842] = 1842, - [1843] = 1808, - [1844] = 1803, - [1845] = 1808, - [1846] = 1846, - [1847] = 1808, - [1848] = 1848, - [1849] = 1808, - [1850] = 1850, - [1851] = 1851, - [1852] = 1808, - [1853] = 1808, - [1854] = 1854, - [1855] = 1855, - [1856] = 1788, - [1857] = 1829, - [1858] = 1858, - [1859] = 1859, - [1860] = 1860, - [1861] = 1851, - [1862] = 1841, - [1863] = 1840, - [1864] = 1833, - [1865] = 1826, - [1866] = 1860, - [1867] = 1859, - [1868] = 1796, - [1869] = 1828, - [1870] = 1787, - [1871] = 1858, - [1872] = 1803, - [1873] = 1802, - [1874] = 1799, - [1875] = 1798, - [1876] = 1789, - [1877] = 1808, - [1878] = 1790, - [1879] = 1879, - [1880] = 1827, - [1881] = 1788, - [1882] = 1789, - [1883] = 1883, - [1884] = 1809, - [1885] = 1791, - [1886] = 1842, - [1887] = 1793, - [1888] = 1810, - [1889] = 1839, - [1890] = 1890, - [1891] = 1797, - [1892] = 1830, - [1893] = 1893, - [1894] = 1800, - [1895] = 1801, - [1896] = 1896, - [1897] = 1883, - [1898] = 1809, - [1899] = 1810, - [1900] = 1805, - [1901] = 1806, - [1902] = 1825, - [1903] = 1824, - [1904] = 1839, - [1905] = 1905, - [1906] = 1906, - [1907] = 1821, - [1908] = 1813, - [1909] = 1814, - [1910] = 1815, - [1911] = 1816, - [1912] = 1817, - [1913] = 1818, - [1914] = 1819, - [1915] = 1820, - [1916] = 1821, - [1917] = 1822, - [1918] = 1792, - [1919] = 1824, - [1920] = 1825, - [1921] = 1794, - [1922] = 1827, - [1923] = 1828, - [1924] = 1829, - [1925] = 1830, - [1926] = 1812, - [1927] = 1807, - [1928] = 1820, - [1929] = 1834, - [1930] = 1795, - [1931] = 1794, - [1932] = 1792, - [1933] = 1822, - [1934] = 1896, - [1935] = 1883, - [1936] = 1809, - [1937] = 1810, - [1938] = 1839, - [1939] = 1798, - [1940] = 1799, - [1941] = 1819, - [1942] = 1795, - [1943] = 1896, - [1944] = 1883, - [1945] = 1834, - [1946] = 1842, - [1947] = 1809, - [1948] = 1810, - [1949] = 1818, - [1950] = 1788, - [1951] = 1817, - [1952] = 1858, - [1953] = 1859, - [1954] = 1860, - [1955] = 1851, - [1956] = 1841, - [1957] = 1840, - [1958] = 1833, - [1959] = 1826, - [1960] = 1790, - [1961] = 1812, - [1962] = 1796, - [1963] = 1816, - [1964] = 1787, - [1965] = 1830, - [1966] = 1803, - [1967] = 1802, - [1968] = 1799, - [1969] = 1798, - [1970] = 1789, - [1971] = 1829, - [1972] = 1790, - [1973] = 1828, - [1974] = 1815, - [1975] = 1839, - [1976] = 1814, - [1977] = 1827, - [1978] = 1825, - [1979] = 1791, - [1980] = 1824, - [1981] = 1793, - [1982] = 1821, - [1983] = 1802, - [1984] = 1820, - [1985] = 1797, - [1986] = 1819, - [1987] = 1818, - [1988] = 1800, - [1989] = 1801, - [1990] = 1896, - [1991] = 1817, - [1992] = 1816, - [1993] = 1815, - [1994] = 1805, - [1995] = 1806, - [1996] = 1813, - [1997] = 1883, - [1998] = 1998, - [1999] = 1809, - [2000] = 1810, - [2001] = 1839, - [2002] = 1813, - [2003] = 1814, - [2004] = 1815, - [2005] = 1816, - [2006] = 1817, - [2007] = 1818, - [2008] = 1819, - [2009] = 1820, - [2010] = 1821, - [2011] = 1814, - [2012] = 1813, - [2013] = 1824, - [2014] = 1825, - [2015] = 1787, - [2016] = 1827, - [2017] = 1828, - [2018] = 1829, - [2019] = 1830, - [2020] = 1812, - [2021] = 1807, - [2022] = 1796, - [2023] = 1834, - [2024] = 1795, - [2025] = 1794, - [2026] = 1792, - [2027] = 1822, - [2028] = 1896, - [2029] = 1883, - [2030] = 1809, - [2031] = 1810, - [2032] = 1839, - [2033] = 2033, - [2034] = 1896, - [2035] = 1790, - [2036] = 1883, - [2037] = 1809, - [2038] = 1810, - [2039] = 1839, - [2040] = 1842, - [2041] = 1896, - [2042] = 1906, - [2043] = 2043, - [2044] = 1788, - [2045] = 2045, - [2046] = 1858, - [2047] = 1859, - [2048] = 1860, - [2049] = 1851, - [2050] = 1841, - [2051] = 1840, - [2052] = 1833, - [2053] = 1826, - [2054] = 2054, - [2055] = 1806, - [2056] = 1796, - [2057] = 2057, - [2058] = 1805, - [2059] = 1811, - [2060] = 1803, - [2061] = 1802, - [2062] = 1799, - [2063] = 1798, - [2064] = 1789, - [2065] = 1801, - [2066] = 1790, - [2067] = 1855, - [2068] = 1859, - [2069] = 1806, - [2070] = 1805, - [2071] = 1800, - [2072] = 1797, - [2073] = 1791, - [2074] = 1793, - [2075] = 1793, - [2076] = 1791, - [2077] = 1833, - [2078] = 1840, - [2079] = 1797, - [2080] = 1998, - [2081] = 1789, - [2082] = 1800, - [2083] = 1801, - [2084] = 2084, - [2085] = 1798, - [2086] = 1799, - [2087] = 1802, - [2088] = 1805, - [2089] = 1806, - [2090] = 1803, - [2091] = 1787, - [2092] = 1796, - [2093] = 1826, - [2094] = 1833, - [2095] = 1813, - [2096] = 1814, - [2097] = 1815, - [2098] = 1816, - [2099] = 1817, - [2100] = 1818, - [2101] = 1819, - [2102] = 1820, - [2103] = 1821, - [2104] = 1840, - [2105] = 1841, - [2106] = 1824, - [2107] = 1825, - [2108] = 1851, - [2109] = 1827, - [2110] = 1828, - [2111] = 1829, - [2112] = 1830, - [2113] = 1812, - [2114] = 2114, - [2115] = 2115, - [2116] = 2116, - [2117] = 1906, - [2118] = 2043, - [2119] = 2045, - [2120] = 1860, - [2121] = 1859, - [2122] = 2054, - [2123] = 2057, - [2124] = 1858, - [2125] = 1842, - [2126] = 1834, - [2127] = 1811, - [2128] = 1855, - [2129] = 1788, - [2130] = 1896, - [2131] = 1858, - [2132] = 1859, - [2133] = 1860, - [2134] = 1826, - [2135] = 1842, - [2136] = 1796, - [2137] = 1851, - [2138] = 1787, - [2139] = 1883, - [2140] = 1803, - [2141] = 1802, - [2142] = 1799, - [2143] = 1798, - [2144] = 2043, - [2145] = 1790, - [2146] = 1998, - [2147] = 2084, - [2148] = 2114, - [2149] = 2084, - [2150] = 2114, - [2151] = 1791, - [2152] = 1824, - [2153] = 1793, - [2154] = 2115, - [2155] = 2116, - [2156] = 1854, - [2157] = 1797, - [2158] = 1890, - [2159] = 1893, - [2160] = 1800, - [2161] = 1801, - [2162] = 1905, - [2163] = 1822, - [2164] = 1792, - [2165] = 1794, - [2166] = 1805, - [2167] = 1806, - [2168] = 2115, - [2169] = 1801, - [2170] = 1800, - [2171] = 1795, - [2172] = 1813, - [2173] = 1814, - [2174] = 1815, - [2175] = 1816, - [2176] = 1817, - [2177] = 1818, - [2178] = 1819, - [2179] = 1820, - [2180] = 1821, - [2181] = 1834, - [2182] = 1807, - [2183] = 1824, - [2184] = 1825, - [2185] = 1812, - [2186] = 1827, - [2187] = 1828, - [2188] = 1829, - [2189] = 1830, - [2190] = 1812, - [2191] = 1906, - [2192] = 2043, - [2193] = 1830, - [2194] = 1829, - [2195] = 2045, - [2196] = 2054, - [2197] = 1828, - [2198] = 1842, - [2199] = 1827, - [2200] = 2057, - [2201] = 2116, - [2202] = 1788, - [2203] = 1797, - [2204] = 1858, - [2205] = 1859, - [2206] = 1860, - [2207] = 1825, - [2208] = 2054, - [2209] = 1796, - [2210] = 1821, - [2211] = 1787, - [2212] = 1820, - [2213] = 1803, - [2214] = 1802, - [2215] = 1799, - [2216] = 1798, - [2217] = 1819, - [2218] = 1790, - [2219] = 1818, - [2220] = 1817, - [2221] = 1793, - [2222] = 1816, - [2223] = 1811, - [2224] = 2116, - [2225] = 2115, - [2226] = 2114, - [2227] = 2084, - [2228] = 1855, - [2229] = 1998, - [2230] = 2045, - [2231] = 1860, - [2232] = 1841, - [2233] = 1998, - [2234] = 2084, - [2235] = 1815, - [2236] = 2114, - [2237] = 1814, - [2238] = 1813, - [2239] = 1842, - [2240] = 1855, - [2241] = 1811, - [2242] = 2057, - [2243] = 2054, - [2244] = 2045, - [2245] = 2043, - [2246] = 1791, - [2247] = 1906, - [2248] = 1905, - [2249] = 1893, - [2250] = 1890, - [2251] = 1854, - [2252] = 2115, - [2253] = 2116, - [2254] = 2116, - [2255] = 2115, - [2256] = 2114, - [2257] = 2084, - [2258] = 1854, - [2259] = 1998, - [2260] = 1890, - [2261] = 1893, - [2262] = 1905, - [2263] = 1906, - [2264] = 2043, - [2265] = 2045, - [2266] = 2054, - [2267] = 1806, - [2268] = 1805, - [2269] = 2057, - [2270] = 1855, - [2271] = 1811, - [2272] = 2057, - [2273] = 2054, - [2274] = 2045, - [2275] = 2043, - [2276] = 1906, - [2277] = 1905, - [2278] = 1893, - [2279] = 1890, - [2280] = 1854, - [2281] = 2116, - [2282] = 2115, - [2283] = 2114, - [2284] = 2084, - [2285] = 1811, - [2286] = 1998, - [2287] = 1855, - [2288] = 1858, - [2289] = 2057, - [2290] = 1788, - [2291] = 1791, - [2292] = 1801, - [2293] = 1998, - [2294] = 1800, - [2295] = 1797, - [2296] = 1793, - [2297] = 1855, - [2298] = 1811, - [2299] = 2057, - [2300] = 2054, - [2301] = 2045, - [2302] = 2043, - [2303] = 1906, - [2304] = 1905, - [2305] = 1893, - [2306] = 1890, - [2307] = 1854, - [2308] = 2116, - [2309] = 2115, - [2310] = 2114, - [2311] = 2084, - [2312] = 2312, - [2313] = 2313, - [2314] = 2314, - [2315] = 2315, - [2316] = 2316, - [2317] = 2317, - [2318] = 2318, - [2319] = 2318, - [2320] = 2313, - [2321] = 2317, - [2322] = 2316, - [2323] = 2315, - [2324] = 2314, - [2325] = 2312, - [2326] = 2326, - [2327] = 2313, - [2328] = 2328, - [2329] = 2318, - [2330] = 2317, - [2331] = 2316, - [2332] = 2315, - [2333] = 2314, - [2334] = 2312, - [2335] = 2335, - [2336] = 2336, - [2337] = 2313, - [2338] = 2318, - [2339] = 2312, - [2340] = 2317, - [2341] = 2314, - [2342] = 2315, - [2343] = 2316, - [2344] = 2317, - [2345] = 2318, - [2346] = 2316, - [2347] = 2313, - [2348] = 2348, - [2349] = 2315, - [2350] = 2314, - [2351] = 2312, - [2352] = 2352, - [2353] = 2348, - [2354] = 2354, - [2355] = 2355, - [2356] = 2352, - [2357] = 2357, - [2358] = 2326, - [2359] = 2357, - [2360] = 2352, - [2361] = 2361, - [2362] = 2362, - [2363] = 2363, - [2364] = 2364, - [2365] = 2354, - [2366] = 2312, - [2367] = 2326, - [2368] = 2355, - [2369] = 2313, - [2370] = 2354, - [2371] = 2312, - [2372] = 2348, - [2373] = 2355, - [2374] = 2348, - [2375] = 2354, - [2376] = 2355, - [2377] = 2364, - [2378] = 2363, - [2379] = 2362, - [2380] = 2361, - [2381] = 2352, - [2382] = 2357, - [2383] = 2326, - [2384] = 2312, - [2385] = 2385, - [2386] = 2386, - [2387] = 2313, - [2388] = 2388, - [2389] = 2389, - [2390] = 699, - [2391] = 2314, - [2392] = 2326, - [2393] = 2315, - [2394] = 2364, - [2395] = 2316, - [2396] = 2317, - [2397] = 2348, - [2398] = 698, - [2399] = 2385, - [2400] = 697, - [2401] = 695, - [2402] = 2363, - [2403] = 2354, - [2404] = 2355, - [2405] = 2405, - [2406] = 2362, - [2407] = 700, - [2408] = 2318, - [2409] = 2364, - [2410] = 2385, - [2411] = 2411, - [2412] = 2363, - [2413] = 2362, - [2414] = 2361, - [2415] = 2352, - [2416] = 2357, - [2417] = 2361, - [2418] = 2352, - [2419] = 2419, - [2420] = 2420, - [2421] = 2421, - [2422] = 2422, - [2423] = 2326, - [2424] = 2424, - [2425] = 2425, - [2426] = 2313, - [2427] = 2348, - [2428] = 2428, - [2429] = 2354, - [2430] = 2355, - [2431] = 2364, - [2432] = 2385, - [2433] = 2363, - [2434] = 2362, - [2435] = 2361, - [2436] = 2352, - [2437] = 2357, - [2438] = 2357, - [2439] = 2352, - [2440] = 2361, - [2441] = 2362, - [2442] = 2363, - [2443] = 2385, - [2444] = 2326, - [2445] = 2364, - [2446] = 2355, - [2447] = 2354, - [2448] = 2448, - [2449] = 2348, - [2450] = 2450, - [2451] = 2451, - [2452] = 2357, - [2453] = 2348, - [2454] = 2354, - [2455] = 2455, - [2456] = 2355, - [2457] = 2364, - [2458] = 2385, - [2459] = 2363, - [2460] = 2362, - [2461] = 2361, - [2462] = 2352, - [2463] = 2357, - [2464] = 2326, -}; - static inline bool sym_word_character_set_1(int32_t c) { return (c < '(' ? (c < '\r' @@ -5907,529 +3473,545 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(27); - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(131); + if (lookahead == '\\') ADVANCE(144); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); - if (lookahead == 'c') ADVANCE(87); - if (lookahead == 'l') ADVANCE(90); - if (lookahead == 'm') ADVANCE(76); - if (lookahead == 'p') ADVANCE(97); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 'c') ADVANCE(92); + if (lookahead == 'l') ADVANCE(98); + if (lookahead == 'm') ADVANCE(79); + if (lookahead == 'p') ADVANCE(110); + if (lookahead == 's') ADVANCE(78); if (lookahead == 'v') ADVANCE(71); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(98); - if (lookahead != 0) ADVANCE(98); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(111); + if (lookahead != 0) ADVANCE(111); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(132); + if (lookahead == '\\') ADVANCE(145); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(139); + if (lookahead == '\\') ADVANCE(152); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(135); + if (lookahead == '\\') ADVANCE(148); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(145); + if (lookahead == '\\') ADVANCE(158); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(142); + if (lookahead == '\\') ADVANCE(155); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(133); + if (lookahead == '\\') ADVANCE(150); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(137); + if (lookahead == '\\') ADVANCE(146); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(143); + if (lookahead == '\\') ADVANCE(156); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(148); + if (lookahead == '\\') ADVANCE(161); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(134); + if (lookahead == '\\') ADVANCE(151); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(138); + if (lookahead == '\\') ADVANCE(147); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(141); + if (lookahead == '\\') ADVANCE(154); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(147); + if (lookahead == '\\') ADVANCE(160); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '}') ADVANCE(98); + lookahead != '}') ADVANCE(111); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(150); + if (lookahead == '\\') ADVANCE(163); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '=') ADVANCE(98); + lookahead != '=') ADVANCE(111); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(149); + if (lookahead == '\\') ADVANCE(162); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); if (lookahead != 0 && - lookahead != '=') ADVANCE(98); + lookahead != '=') ADVANCE(111); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(975); + if (lookahead == '\\') ADVANCE(999); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || @@ -6437,27 +4019,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') ADVANCE(28); if (lookahead != 0 && lookahead != '$' && - lookahead != ')') ADVANCE(98); + lookahead != ')') ADVANCE(111); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '\'') ADVANCE(127); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); - if (lookahead == '\\') ADVANCE(974); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '\\') ADVANCE(998); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == '|') ADVANCE(125); if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || @@ -6468,29 +4050,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != '[' && - lookahead != '{') ADVANCE(98); + lookahead != '{') ADVANCE(111); END_STATE(); case 18: - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); - if (lookahead == '>') ADVANCE(110); - if (lookahead == '\\') ADVANCE(975); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); - if (lookahead == 'c') ADVANCE(87); - if (lookahead == 'l') ADVANCE(90); - if (lookahead == 'm') ADVANCE(76); - if (lookahead == 'p') ADVANCE(97); + if (lookahead == '\'') ADVANCE(127); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); + if (lookahead == '>') ADVANCE(123); + if (lookahead == '\\') ADVANCE(999); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 'c') ADVANCE(92); + if (lookahead == 'l') ADVANCE(98); + if (lookahead == 'm') ADVANCE(79); + if (lookahead == 'p') ADVANCE(110); if (lookahead == 'v') ADVANCE(71); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6500,17 +4082,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '(' || ',' < lookahead) && lookahead != '=' && (lookahead < '[' || ']' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(98); + (lookahead < '{' || '}' < lookahead)) ADVANCE(111); END_STATE(); case 19: if (lookahead == '%') ADVANCE(33); if (lookahead == '=') ADVANCE(41); - if (lookahead == '\\') ADVANCE(976); + if (lookahead == '\\') ADVANCE(1000); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(101); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(114); END_STATE(); case 20: if (lookahead == '%') ADVANCE(31); @@ -6526,7 +4108,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && lookahead != '[' && lookahead != ']' && - lookahead != '|') ADVANCE(102); + lookahead != '|') ADVANCE(115); END_STATE(); case 21: if (lookahead == '%') ADVANCE(32); @@ -6535,138 +4117,142 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(30); - if (!sym_path_character_set_1(lookahead)) ADVANCE(100); + if (!sym_path_character_set_1(lookahead)) ADVANCE(113); END_STATE(); case 22: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(112); END_STATE(); case 23: if (eof) ADVANCE(27); - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(146); + if (lookahead == '\\') ADVANCE(159); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); - if (lookahead != 0) ADVANCE(98); + if (lookahead != 0) ADVANCE(111); END_STATE(); case 24: if (eof) ADVANCE(27); - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(136); + if (lookahead == '\\') ADVANCE(153); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); - if (lookahead != 0) ADVANCE(98); + if (lookahead != 0) ADVANCE(111); END_STATE(); case 25: if (eof) ADVANCE(27); - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(140); + if (lookahead == '\\') ADVANCE(149); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); - if (lookahead != 0) ADVANCE(98); + if (lookahead != 0) ADVANCE(111); END_STATE(); case 26: if (eof) ADVANCE(27); - if (lookahead == '!') ADVANCE(111); + if (lookahead == '!') ADVANCE(124); if (lookahead == '#') ADVANCE(22); - if (lookahead == '$') ADVANCE(118); + if (lookahead == '$') ADVANCE(131); if (lookahead == '%') ADVANCE(33); - if (lookahead == '\'') ADVANCE(114); + if (lookahead == '\'') ADVANCE(127); if (lookahead == '(') ADVANCE(36); if (lookahead == ')') ADVANCE(37); - if (lookahead == '*') ADVANCE(105); - if (lookahead == '+') ADVANCE(103); + if (lookahead == '*') ADVANCE(118); + if (lookahead == '+') ADVANCE(116); if (lookahead == ',') ADVANCE(40); - if (lookahead == '-') ADVANCE(104); - if (lookahead == '/') ADVANCE(106); - if (lookahead == ':') ADVANCE(113); - if (lookahead == '<') ADVANCE(109); + if (lookahead == '-') ADVANCE(117); + if (lookahead == '/') ADVANCE(119); + if (lookahead == ':') ADVANCE(126); + if (lookahead == '<') ADVANCE(122); if (lookahead == '=') ADVANCE(41); - if (lookahead == '>') ADVANCE(110); + if (lookahead == '>') ADVANCE(123); if (lookahead == '[') ADVANCE(38); - if (lookahead == '\\') ADVANCE(144); + if (lookahead == '\\') ADVANCE(157); if (lookahead == ']') ADVANCE(39); - if (lookahead == '^') ADVANCE(107); - if (lookahead == '_') ADVANCE(108); + if (lookahead == '^') ADVANCE(120); + if (lookahead == '_') ADVANCE(121); + if (lookahead == 's') ADVANCE(78); if (lookahead == '{') ADVANCE(64); - if (lookahead == '|') ADVANCE(112); + if (lookahead == '|') ADVANCE(125); if (lookahead == '}') ADVANCE(65); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(28); - if (lookahead != 0) ADVANCE(98); + if (lookahead != 0) ADVANCE(111); END_STATE(); case 27: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -6690,7 +4276,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '>' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(102); + (lookahead < '{' || '}' < lookahead)) ADVANCE(115); END_STATE(); case 30: ACCEPT_TOKEN(sym__whitespace); @@ -6698,12 +4284,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(30); - if (!sym_path_character_set_2(lookahead)) ADVANCE(100); + if (!sym_path_character_set_2(lookahead)) ADVANCE(113); END_STATE(); case 31: ACCEPT_TOKEN(sym_line_comment); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(102); + lookahead == '\r') ADVANCE(115); if (lookahead == '"' || (':' <= lookahead && lookahead <= '<') || lookahead == '>' || @@ -6715,7 +4301,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 32: ACCEPT_TOKEN(sym_line_comment); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(100); + lookahead == '\r') ADVANCE(113); if (lookahead == '"' || lookahead == '*' || lookahead == ',' || @@ -6734,19 +4320,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 34: ACCEPT_TOKEN(anon_sym_BSLASHiffalse); - if (lookahead == '*') ADVANCE(130); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 35: ACCEPT_TOKEN(anon_sym_BSLASHfi); - if (lookahead == '*') ADVANCE(130); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 36: ACCEPT_TOKEN(anon_sym_LPAREN); @@ -6772,7 +4358,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 43: ACCEPT_TOKEN(anon_sym_BSLASHpart_STAR); @@ -6783,7 +4369,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 45: ACCEPT_TOKEN(anon_sym_BSLASHaddpart_STAR); @@ -6794,7 +4380,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 47: ACCEPT_TOKEN(anon_sym_BSLASHchapter_STAR); @@ -6805,7 +4391,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 49: ACCEPT_TOKEN(anon_sym_BSLASHaddchap_STAR); @@ -6816,7 +4402,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 51: ACCEPT_TOKEN(anon_sym_BSLASHsection_STAR); @@ -6827,7 +4413,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 53: ACCEPT_TOKEN(anon_sym_BSLASHaddsec_STAR); @@ -6838,7 +4424,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 55: ACCEPT_TOKEN(anon_sym_BSLASHsubsection_STAR); @@ -6849,7 +4435,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 57: ACCEPT_TOKEN(anon_sym_BSLASHsubsubsection_STAR); @@ -6860,7 +4446,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 59: ACCEPT_TOKEN(anon_sym_BSLASHparagraph_STAR); @@ -6871,7 +4457,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 61: ACCEPT_TOKEN(anon_sym_BSLASHsubparagraph_STAR); @@ -6882,7 +4468,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 63: ACCEPT_TOKEN(anon_sym_BSLASHitem_STAR); @@ -6895,10395 +4481,10585 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 66: ACCEPT_TOKEN(sym_word); - if (lookahead == 'a') ADVANCE(94); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'a') ADVANCE(103); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 67: ACCEPT_TOKEN(sym_word); if (lookahead == 'b') ADVANCE(66); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 68: ACCEPT_TOKEN(sym_word); - if (lookahead == 'c') ADVANCE(88); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'c') ADVANCE(93); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 69: ACCEPT_TOKEN(sym_word); - if (lookahead == 'd') ADVANCE(128); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'd') ADVANCE(141); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 70: ACCEPT_TOKEN(sym_word); if (lookahead == 'd') ADVANCE(72); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 71: ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(89); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'e') ADVANCE(95); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 72: ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(129); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'e') ADVANCE(142); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 73: ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(69); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'e') ADVANCE(109); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 74: ACCEPT_TOKEN(sym_word); - if (lookahead == 'e') ADVANCE(86); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'e') ADVANCE(69); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 75: ACCEPT_TOKEN(sym_word); - if (lookahead == 'g') ADVANCE(127); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'e') ADVANCE(97); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 76: ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(85); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'e') ADVANCE(90); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 77: ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(84); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'g') ADVANCE(140); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 78: ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(81); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'h') ADVANCE(94); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 79: ACCEPT_TOKEN(sym_word); - if (lookahead == 'i') ADVANCE(91); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'i') ADVANCE(89); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 80: ACCEPT_TOKEN(sym_word); - if (lookahead == 'l') ADVANCE(79); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'i') ADVANCE(88); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 81: ACCEPT_TOKEN(sym_word); - if (lookahead == 'm') ADVANCE(126); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'i') ADVANCE(85); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 82: ACCEPT_TOKEN(sym_word); - if (lookahead == 'm') ADVANCE(74); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'i') ADVANCE(99); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 83: ACCEPT_TOKEN(sym_word); - if (lookahead == 'm') ADVANCE(82); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'i') ADVANCE(91); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 84: ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(75); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'l') ADVANCE(82); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 85: ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(95); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'm') ADVANCE(139); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 86: ACCEPT_TOKEN(sym_word); - if (lookahead == 'n') ADVANCE(93); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'm') ADVANCE(76); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 87: ACCEPT_TOKEN(sym_word); - if (lookahead == 'o') ADVANCE(83); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'm') ADVANCE(86); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 88: ACCEPT_TOKEN(sym_word); - if (lookahead == 'o') ADVANCE(70); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'n') ADVANCE(77); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 89: ACCEPT_TOKEN(sym_word); - if (lookahead == 'r') ADVANCE(67); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'n') ADVANCE(104); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 90: ACCEPT_TOKEN(sym_word); - if (lookahead == 's') ADVANCE(92); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'n') ADVANCE(101); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 91: ACCEPT_TOKEN(sym_word); - if (lookahead == 's') ADVANCE(96); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'n') ADVANCE(107); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 92: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(80); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'o') ADVANCE(87); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 93: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(125); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'o') ADVANCE(70); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 94: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(78); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'o') ADVANCE(96); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 95: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(73); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'r') ADVANCE(67); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 96: ACCEPT_TOKEN(sym_word); - if (lookahead == 't') ADVANCE(77); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'r') ADVANCE(108); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 97: ACCEPT_TOKEN(sym_word); - if (lookahead == 'y') ADVANCE(68); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 'r') ADVANCE(105); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 98: ACCEPT_TOKEN(sym_word); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + if (lookahead == 's') ADVANCE(100); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 99: - ACCEPT_TOKEN(sym_placeholder); + ACCEPT_TOKEN(sym_word); + if (lookahead == 's') ADVANCE(106); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 100: - ACCEPT_TOKEN(sym_path); - if (!sym_path_character_set_2(lookahead)) ADVANCE(100); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(84); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 101: - ACCEPT_TOKEN(sym_argc); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(138); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 102: - ACCEPT_TOKEN(aux_sym__glob_pattern_fragment_token1); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < ':' || '<' < lookahead) && - lookahead != '>' && - lookahead != '[' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(102); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(1216); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 103: - ACCEPT_TOKEN(anon_sym_PLUS); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(81); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 104: - ACCEPT_TOKEN(anon_sym_DASH); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(74); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 105: - ACCEPT_TOKEN(anon_sym_STAR); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(73); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_SLASH); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(80); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 107: - ACCEPT_TOKEN(anon_sym_CARET); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(75); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 108: - ACCEPT_TOKEN(anon_sym__); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(sym_word); + if (lookahead == 't') ADVANCE(83); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 109: - ACCEPT_TOKEN(anon_sym_LT); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(sym_word); + if (lookahead == 'x') ADVANCE(102); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_GT); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(sym_word); + if (lookahead == 'y') ADVANCE(68); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 111: - ACCEPT_TOKEN(anon_sym_BANG); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(sym_word); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_PIPE); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(sym_placeholder); END_STATE(); case 113: - ACCEPT_TOKEN(anon_sym_COLON); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(sym_path); + if (!sym_path_character_set_2(lookahead)) ADVANCE(113); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_SQUOTE); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(sym_argc); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); + ACCEPT_TOKEN(aux_sym__glob_pattern_fragment_token1); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < ':' || '<' < lookahead) && + lookahead != '>' && + lookahead != '[' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(115); END_STATE(); case 116: - ACCEPT_TOKEN(anon_sym_BSLASH_LBRACK); + ACCEPT_TOKEN(anon_sym_PLUS); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 117: - ACCEPT_TOKEN(anon_sym_BSLASH_RBRACK); + ACCEPT_TOKEN(anon_sym_DASH); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '$') ADVANCE(115); + ACCEPT_TOKEN(anon_sym_STAR); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_BSLASH_LPAREN); + ACCEPT_TOKEN(anon_sym_SLASH); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 120: - ACCEPT_TOKEN(anon_sym_BSLASH_RPAREN); + ACCEPT_TOKEN(anon_sym_CARET); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 121: - ACCEPT_TOKEN(anon_sym_BSLASH_LBRACE); + ACCEPT_TOKEN(anon_sym__); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 122: - ACCEPT_TOKEN(anon_sym_BSLASH_RBRACE); + ACCEPT_TOKEN(anon_sym_LT); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 123: - ACCEPT_TOKEN(anon_sym_BSLASHbegin); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_GT); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 124: - ACCEPT_TOKEN(anon_sym_BSLASHend); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BANG); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_comment); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(anon_sym_PIPE); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 126: - ACCEPT_TOKEN(anon_sym_verbatim); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(anon_sym_COLON); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 127: - ACCEPT_TOKEN(anon_sym_lstlisting); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 128: - ACCEPT_TOKEN(anon_sym_minted); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); END_STATE(); case 129: - ACCEPT_TOKEN(anon_sym_pycode); - if (!sym_word_character_set_1(lookahead)) ADVANCE(98); + ACCEPT_TOKEN(anon_sym_BSLASH_LBRACK); END_STATE(); case 130: - ACCEPT_TOKEN(sym_command_name); + ACCEPT_TOKEN(anon_sym_BSLASH_RBRACK); END_STATE(); case 131: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == ')') ADVANCE(120); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == ']') ADVANCE(117); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(643); - if (lookahead == 'f') ADVANCE(472); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '}') ADVANCE(122); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '$') ADVANCE(128); END_STATE(); case 132: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == ')') ADVANCE(120); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == ']') ADVANCE(117); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASH_LPAREN); END_STATE(); case 133: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == ')') ADVANCE(120); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(643); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASH_RPAREN); END_STATE(); case 134: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == ')') ADVANCE(120); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(472); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASH_LBRACE); END_STATE(); case 135: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == ')') ADVANCE(120); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '}') ADVANCE(122); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASH_RBRACE); END_STATE(); case 136: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == ')') ADVANCE(120); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHbegin); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 137: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == ']') ADVANCE(117); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(643); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHend); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 138: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == ']') ADVANCE(117); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(472); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_comment); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 139: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == ']') ADVANCE(117); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '}') ADVANCE(122); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_verbatim); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 140: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == ']') ADVANCE(117); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_lstlisting); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 141: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(643); - if (lookahead == 'f') ADVANCE(472); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_minted); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 142: - ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(643); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_pycode); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); case 143: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(472); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '}') ADVANCE(122); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); END_STATE(); case 144: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(472); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); + if (lookahead == '(') ADVANCE(132); + if (lookahead == ')') ADVANCE(133); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == ']') ADVANCE(130); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(661); + if (lookahead == 'f') ADVANCE(490); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '}') ADVANCE(135); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + lookahead != '\r') ADVANCE(143); END_STATE(); case 145: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == '}') ADVANCE(122); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); + if (lookahead == '(') ADVANCE(132); + if (lookahead == ')') ADVANCE(133); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == ']') ADVANCE(130); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + lookahead != '\r') ADVANCE(143); END_STATE(); case 146: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(162); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(414); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(165); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(360); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); + if (lookahead == '(') ADVANCE(132); + if (lookahead == ')') ADVANCE(133); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(661); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + lookahead != '\r') ADVANCE(143); END_STATE(); case 147: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(234); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(163); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(472); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(415); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(168); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(637); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); + if (lookahead == '(') ADVANCE(132); + if (lookahead == ')') ADVANCE(133); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(490); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + lookahead != '\r') ADVANCE(143); END_STATE(); case 148: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(234); - if (lookahead == 'b') ADVANCE(301); - if (lookahead == 'c') ADVANCE(163); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(415); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(168); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(637); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); + if (lookahead == '(') ADVANCE(132); + if (lookahead == ')') ADVANCE(133); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '}') ADVANCE(135); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + lookahead != '\r') ADVANCE(143); END_STATE(); case 149: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(234); - if (lookahead == 'b') ADVANCE(471); - if (lookahead == 'c') ADVANCE(163); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(472); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(415); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(168); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(637); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); + if (lookahead == '(') ADVANCE(132); + if (lookahead == ')') ADVANCE(133); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + lookahead != '\r') ADVANCE(143); END_STATE(); case 150: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '(') ADVANCE(119); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == '[') ADVANCE(116); - if (lookahead == 'a') ADVANCE(234); - if (lookahead == 'b') ADVANCE(471); - if (lookahead == 'c') ADVANCE(163); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(415); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(168); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(637); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == '{') ADVANCE(121); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == ']') ADVANCE(130); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(661); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + lookahead != '\r') ADVANCE(143); END_STATE(); case 151: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'C') ADVANCE(159); - if (lookahead == 'c') ADVANCE(1168); - if (lookahead == 'u') ADVANCE(869); - if (lookahead == 'v') ADVANCE(719); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == ']') ADVANCE(130); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(490); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 152: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'C') ADVANCE(797); - if (lookahead == 'c') ADVANCE(798); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == ']') ADVANCE(130); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '}') ADVANCE(135); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 153: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'C') ADVANCE(718); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == ']') ADVANCE(130); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 154: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'I') ADVANCE(655); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(661); + if (lookahead == 'f') ADVANCE(490); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 155: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'L') ADVANCE(160); - if (lookahead == 'l') ADVANCE(822); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(661); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 156: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'M') ADVANCE(186); - if (lookahead == 'R') ADVANCE(680); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(490); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '}') ADVANCE(135); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 157: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'O') ADVANCE(745); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(490); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 158: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'P') ADVANCE(215); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); + if (lookahead == '}') ADVANCE(135); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 159: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'R') ADVANCE(430); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(246); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(175); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(431); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(178); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(374); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 160: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'S') ADVANCE(1092); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(176); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(490); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(432); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(181); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(655); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 161: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(773); - if (lookahead == 'n') ADVANCE(729); - if (lookahead == 'v') ADVANCE(720); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(176); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(432); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(181); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(655); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 162: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(738); - if (lookahead == 'h') ADVANCE(193); - if (lookahead == 'i') ADVANCE(877); - if (lookahead == 'o') ADVANCE(568); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == 'b') ADVANCE(489); + if (lookahead == 'c') ADVANCE(176); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(490); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(432); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(181); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(655); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 163: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(738); - if (lookahead == 'i') ADVANCE(877); - if (lookahead == 'o') ADVANCE(568); - if (lookahead == 'r') ADVANCE(364); + if (lookahead == '(') ADVANCE(132); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == '[') ADVANCE(129); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == 'b') ADVANCE(489); + if (lookahead == 'c') ADVANCE(176); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(432); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(181); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(655); + if (lookahead == 't') ADVANCE(406); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == '{') ADVANCE(134); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 164: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(622); - if (lookahead == 'e') ADVANCE(952); - if (lookahead == 'o') ADVANCE(241); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'C') ADVANCE(172); + if (lookahead == 'c') ADVANCE(1192); + if (lookahead == 'u') ADVANCE(890); + if (lookahead == 'v') ADVANCE(737); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 165: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(447); - if (lookahead == 'n') ADVANCE(731); - if (lookahead == 'v') ADVANCE(725); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'C') ADVANCE(815); + if (lookahead == 'c') ADVANCE(816); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 166: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(446); - if (lookahead == 'e') ADVANCE(669); - if (lookahead == 't') ADVANCE(42); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'C') ADVANCE(736); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 167: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(225); - if (lookahead == 'c') ADVANCE(647); - if (lookahead == 'e') ADVANCE(845); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'I') ADVANCE(673); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 168: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(448); - if (lookahead == 'n') ADVANCE(731); - if (lookahead == 'v') ADVANCE(725); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'L') ADVANCE(173); + if (lookahead == 'l') ADVANCE(841); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 169: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(820); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'M') ADVANCE(199); + if (lookahead == 'R') ADVANCE(698); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 170: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(733); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'O') ADVANCE(763); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 171: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(631); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'P') ADVANCE(228); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 172: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(245); - if (lookahead == 'c') ADVANCE(676); - if (lookahead == 'e') ADVANCE(644); - if (lookahead == 'g') ADVANCE(574); - if (lookahead == 'l') ADVANCE(194); - if (lookahead == 't') ADVANCE(462); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'R') ADVANCE(448); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 173: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(736); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'S') ADVANCE(1116); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 174: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(739); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(791); + if (lookahead == 'n') ADVANCE(747); + if (lookahead == 'v') ADVANCE(738); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 175: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(242); - if (lookahead == 'g') ADVANCE(434); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(756); + if (lookahead == 'h') ADVANCE(206); + if (lookahead == 'i') ADVANCE(896); + if (lookahead == 'o') ADVANCE(586); + if (lookahead == 'r') ADVANCE(378); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 176: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(654); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(756); + if (lookahead == 'i') ADVANCE(896); + if (lookahead == 'o') ADVANCE(586); + if (lookahead == 'r') ADVANCE(378); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 177: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(756); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(640); + if (lookahead == 'e') ADVANCE(974); + if (lookahead == 'o') ADVANCE(254); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 178: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(648); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(465); + if (lookahead == 'n') ADVANCE(749); + if (lookahead == 'v') ADVANCE(743); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 179: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(767); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(464); + if (lookahead == 'e') ADVANCE(687); + if (lookahead == 't') ADVANCE(42); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 180: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(546); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(238); + if (lookahead == 'c') ADVANCE(665); + if (lookahead == 'e') ADVANCE(864); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 181: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(651); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(466); + if (lookahead == 'n') ADVANCE(749); + if (lookahead == 'v') ADVANCE(743); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 182: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(547); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(839); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 183: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(761); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(751); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 184: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(653); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(649); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 185: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(551); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(259); + if (lookahead == 'c') ADVANCE(694); + if (lookahead == 'e') ADVANCE(662); + if (lookahead == 'g') ADVANCE(592); + if (lookahead == 'l') ADVANCE(207); + if (lookahead == 't') ADVANCE(480); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 186: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(871); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(754); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 187: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(769); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(757); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 188: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(771); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(255); + if (lookahead == 'g') ADVANCE(452); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 189: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(556); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(672); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 190: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(559); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(666); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 191: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(562); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(774); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 192: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(589); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(564); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 193: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(747); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(785); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 194: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(227); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(669); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 195: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(873); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(565); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 196: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(740); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(779); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 197: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(830); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(671); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 198: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(746); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(569); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 199: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(778); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(892); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 200: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(662); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(787); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 201: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(915); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(789); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 202: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(792); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(574); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 203: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(624); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(577); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 204: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(780); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(580); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 205: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(875); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(607); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 206: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(451); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(765); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 207: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(741); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(240); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 208: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(625); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(893); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 209: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(452); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(758); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 210: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(796); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(850); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 211: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(626); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(764); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 212: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(453); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(796); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 213: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(892); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(680); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 214: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(455); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(936); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 215: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(283); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(810); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 216: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(821); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(642); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 217: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(431); - if (lookahead == 'p') ADVANCE(365); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(798); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 218: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(432); - if (lookahead == 'p') ADVANCE(365); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(895); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 219: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(478); - if (lookahead == 'c') ADVANCE(460); - if (lookahead == 'p') ADVANCE(204); - if (lookahead == 's') ADVANCE(368); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(469); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 220: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(478); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(759); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 221: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(571); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(643); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 222: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(195); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(470); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 223: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(942); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(814); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 224: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(844); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(644); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 225: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(374); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(471); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 226: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(812); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(913); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 227: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(388); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(473); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 228: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(699); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(297); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 229: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(701); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(840); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 230: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(799); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(449); + if (lookahead == 'p') ADVANCE(382); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 231: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(205); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(450); + if (lookahead == 'p') ADVANCE(382); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 232: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(815); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(496); + if (lookahead == 'c') ADVANCE(478); + if (lookahead == 'p') ADVANCE(217); + if (lookahead == 's') ADVANCE(381); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 233: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(1167); - if (lookahead == 'd') ADVANCE(289); - if (lookahead == 'u') ADVANCE(870); - if (lookahead == 'v') ADVANCE(723); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(496); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 234: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(1167); - if (lookahead == 'd') ADVANCE(294); - if (lookahead == 'u') ADVANCE(870); - if (lookahead == 'v') ADVANCE(723); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(589); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 235: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(513); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(208); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 236: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(52); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(964); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 237: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(1117); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(863); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 238: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(1116); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(388); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 239: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(1115); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(830); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 240: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(937); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(403); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 241: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(491); - if (lookahead == 't') ADVANCE(406); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(717); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 242: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(531); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(719); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 243: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(569); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(817); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 244: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(570); - if (lookahead == 'p') ADVANCE(931); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(218); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 245: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(813); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(834); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 246: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(825); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(1191); + if (lookahead == 'd') ADVANCE(303); + if (lookahead == 'u') ADVANCE(891); + if (lookahead == 'v') ADVANCE(741); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 247: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(198); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(1191); + if (lookahead == 'd') ADVANCE(308); + if (lookahead == 'u') ADVANCE(891); + if (lookahead == 'v') ADVANCE(741); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 248: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(352); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(531); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 249: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(705); - if (lookahead == 'r') ADVANCE(370); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(52); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 250: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(580); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(1141); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 251: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(584); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(1140); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 252: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(588); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(1139); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 253: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(800); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(959); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 254: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(493); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(509); + if (lookahead == 't') ADVANCE(423); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 255: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(707); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(549); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 256: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(495); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(587); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 257: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(496); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(588); + if (lookahead == 'p') ADVANCE(953); + if (lookahead == 't') ADVANCE(379); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 258: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(497); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(588); + if (lookahead == 'p') ADVANCE(953); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 259: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(499); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(832); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 260: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(500); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(844); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 261: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(501); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(211); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 262: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(503); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(366); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 263: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(504); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(723); + if (lookahead == 'r') ADVANCE(385); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 264: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(505); - if (lookahead == 'r') ADVANCE(369); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(598); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 265: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(506); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(602); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 266: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(507); - if (lookahead == 'f') ADVANCE(948); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(606); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 267: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(508); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(818); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 268: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(509); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(511); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 269: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(510); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(725); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 270: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(511); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(513); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 271: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(512); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(514); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 272: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(514); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(516); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 273: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(515); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(517); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 274: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(516); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(518); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 275: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(517); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(520); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 276: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(518); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(521); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 277: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(519); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(522); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 278: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(520); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(523); + if (lookahead == 'r') ADVANCE(384); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 279: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(521); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(524); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 280: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(522); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(525); + if (lookahead == 'f') ADVANCE(970); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 281: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(523); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(526); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 282: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(524); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(527); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 283: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(532); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(528); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 284: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(591); - if (lookahead == 'f') ADVANCE(1086); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(529); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 285: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(918); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(530); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 286: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(716); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(532); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 287: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(919); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(533); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 288: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(920); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(534); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 289: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'd') ADVANCE(219); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(535); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 290: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'd') ADVANCE(124); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(536); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 291: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'd') ADVANCE(1078); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(537); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 292: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'd') ADVANCE(1080); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(538); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 293: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'd') ADVANCE(1082); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(539); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 294: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'd') ADVANCE(220); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(540); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 295: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'd') ADVANCE(316); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(541); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 296: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'd') ADVANCE(385); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(542); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 297: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'd') ADVANCE(353); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(550); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 298: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(243); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(609); + if (lookahead == 'f') ADVANCE(1110); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 299: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(751); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(939); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 300: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(955); - if (lookahead == 'v') ADVANCE(722); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(734); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 301: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(439); - if (lookahead == 'i') ADVANCE(221); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(940); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 302: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(284); - if (lookahead == 'o') ADVANCE(240); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(942); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 303: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(416); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'd') ADVANCE(232); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 304: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(732); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'd') ADVANCE(137); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 305: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1000); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'd') ADVANCE(1102); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 306: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(998); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'd') ADVANCE(1104); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 307: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(152); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'd') ADVANCE(1106); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 308: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1001); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'd') ADVANCE(233); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 309: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(156); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'd') ADVANCE(330); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 310: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1112); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'd') ADVANCE(399); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 311: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1111); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'd') ADVANCE(367); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 312: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(158); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(256); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 313: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1038); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(769); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 314: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1110); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(977); + if (lookahead == 'v') ADVANCE(740); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 315: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(34); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(457); + if (lookahead == 'i') ADVANCE(234); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 316: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(980); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(298); + if (lookahead == 'o') ADVANCE(253); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 317: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(983); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(434); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 318: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1037); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(750); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 319: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1034); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1024); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 320: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1048); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1022); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 321: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1050); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(165); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 322: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1040); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1025); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 323: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1044); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(169); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 324: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1029); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1136); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 325: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1046); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1135); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 326: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1033); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(171); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 327: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1047); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1062); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 328: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1014); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1134); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 329: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1025); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(34); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 330: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1017); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1004); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 331: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1041); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1007); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 332: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1049); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1061); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 333: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1039); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1058); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 334: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1043); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1072); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 335: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1028); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1074); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 336: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1045); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1064); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 337: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1075); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1068); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 338: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1024); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1053); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 339: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1052); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1070); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 340: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1031); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1057); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 341: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1010); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1071); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 342: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1073); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1038); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 343: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1053); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1049); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 344: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1042); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1041); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 345: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1022); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1065); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 346: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1051); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1073); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 347: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1030); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1063); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 348: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1032); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1067); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 349: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(977); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1052); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 350: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(1026); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1069); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 351: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(978); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1099); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 352: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(984); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1048); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 353: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(981); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1076); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 354: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(988); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1055); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 355: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(766); - if (lookahead == 'o') ADVANCE(567); - if (lookahead == 'r') ADVANCE(361); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1034); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 356: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(417); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1097); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 357: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(611); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1077); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 358: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(953); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1066); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 359: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(249); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1046); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 360: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(285); - if (lookahead == 'm') ADVANCE(216); - if (lookahead == 'u') ADVANCE(217); - if (lookahead == 'v') ADVANCE(726); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1075); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 361: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(418); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1054); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 362: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(668); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1056); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 363: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(829); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1001); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 364: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(419); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1050); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 365: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(819); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1002); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 366: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(420); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1008); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 367: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(421); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1005); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 368: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(236); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(1012); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 369: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(422); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(784); + if (lookahead == 'o') ADVANCE(585); + if (lookahead == 'r') ADVANCE(375); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 370: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(423); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(435); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 371: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(834); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(629); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 372: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(754); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(975); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 373: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(424); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(263); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 374: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(536); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(299); + if (lookahead == 'm') ADVANCE(229); + if (lookahead == 'u') ADVANCE(230); + if (lookahead == 'v') ADVANCE(744); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 375: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(425); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(436); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 376: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(615); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(686); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 377: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(713); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(848); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 378: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(255); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(437); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 379: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(765); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(831); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 380: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(426); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(438); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 381: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(755); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(249); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 382: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(427); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(838); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 383: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(253); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(439); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 384: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(768); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(440); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 385: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(433); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(441); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 386: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(618); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(853); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 387: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(428); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(442); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 388: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(541); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(554); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 389: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(921); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(269); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 390: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(866); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(772); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 391: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(956); - if (lookahead == 'v') ADVANCE(727); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(443); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 392: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(659); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(633); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 393: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(831); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(731); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 394: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(177); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(444); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 395: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(957); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(267); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 396: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(660); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(783); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 397: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(832); - if (lookahead == 'i') ADVANCE(826); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(445); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 398: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(958); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(773); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 399: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(959); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(451); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 400: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(961); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(636); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 401: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(802); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(786); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 402: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(789); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(446); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 403: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(663); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(559); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 404: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(714); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(943); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 405: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(259); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(887); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 406: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(269); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(978); + if (lookahead == 'v') ADVANCE(745); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 407: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(274); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(677); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 408: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(276); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(849); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 409: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(279); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(191); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 410: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(818); - if (lookahead == 'o') ADVANCE(594); - if (lookahead == 'r') ADVANCE(366); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(979); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 411: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(287); - if (lookahead == 'u') ADVANCE(224); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(678); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 412: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(669); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(851); + if (lookahead == 'i') ADVANCE(845); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 413: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'e') ADVANCE(288); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(980); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 414: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(429); - if (lookahead == 'm') ADVANCE(737); - if (lookahead == 'n') ADVANCE(244); - if (lookahead == 't') ADVANCE(357); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(981); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 415: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(429); - if (lookahead == 'm') ADVANCE(737); - if (lookahead == 'n') ADVANCE(244); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(983); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 416: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1055); - if (lookahead == 'n') ADVANCE(358); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(984); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 417: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1062); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(985); + if (lookahead == 'v') ADVANCE(745); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 418: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1058); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(820); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 419: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1061); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(807); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 420: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1057); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(681); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 421: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1056); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(732); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 422: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1059); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(273); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 423: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1060); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(283); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 424: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1066); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(288); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 425: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1065); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(290); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 426: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1071); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(293); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 427: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1067); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(837); + if (lookahead == 'o') ADVANCE(612); + if (lookahead == 'r') ADVANCE(380); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 428: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1072); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(301); + if (lookahead == 'u') ADVANCE(237); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 429: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(192); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(687); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 430: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(932); - if (lookahead == 'l') ADVANCE(679); - if (lookahead == 's') ADVANCE(465); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'e') ADVANCE(302); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 431: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(486); - if (lookahead == 'i') ADVANCE(636); - if (lookahead == 'p') ADVANCE(199); - if (lookahead == 's') ADVANCE(411); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(447); + if (lookahead == 'm') ADVANCE(755); + if (lookahead == 'n') ADVANCE(257); + if (lookahead == 't') ADVANCE(371); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 432: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(486); - if (lookahead == 'i') ADVANCE(636); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(447); + if (lookahead == 'm') ADVANCE(755); + if (lookahead == 'n') ADVANCE(257); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 433: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(787); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(447); + if (lookahead == 'm') ADVANCE(755); + if (lookahead == 'n') ADVANCE(258); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 434: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(575); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1079); + if (lookahead == 'n') ADVANCE(372); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 435: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(939); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 's') ADVANCE(467); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1086); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 436: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(941); - if (lookahead == 'l') ADVANCE(682); - if (lookahead == 's') ADVANCE(468); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1082); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 437: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(943); - if (lookahead == 'l') ADVANCE(696); - if (lookahead == 's') ADVANCE(469); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1085); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 438: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(944); - if (lookahead == 'l') ADVANCE(697); - if (lookahead == 's') ADVANCE(470); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1081); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 439: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(479); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1080); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 440: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(1145); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1083); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 441: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(1144); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1084); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 442: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(1143); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1090); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 443: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(987); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1089); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 444: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(1171); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1095); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 445: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(1170); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1091); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 446: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(775); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1096); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 447: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(359); - if (lookahead == 'r') ADVANCE(166); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(205); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 448: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(359); - if (lookahead == 'r') ADVANCE(412); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(954); + if (lookahead == 'l') ADVANCE(697); + if (lookahead == 's') ADVANCE(483); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 449: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(337); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(504); + if (lookahead == 'i') ADVANCE(654); + if (lookahead == 'p') ADVANCE(212); + if (lookahead == 's') ADVANCE(428); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 450: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(342); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(504); + if (lookahead == 'i') ADVANCE(654); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 451: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(401); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(805); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 452: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(349); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(593); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 453: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(351); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(961); + if (lookahead == 'l') ADVANCE(699); + if (lookahead == 's') ADVANCE(485); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 454: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(786); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(963); + if (lookahead == 'l') ADVANCE(700); + if (lookahead == 's') ADVANCE(486); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 455: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'g') ADVANCE(809); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(965); + if (lookahead == 'l') ADVANCE(713); + if (lookahead == 's') ADVANCE(487); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 456: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(58); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(966); + if (lookahead == 'l') ADVANCE(715); + if (lookahead == 's') ADVANCE(488); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 457: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(157); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(497); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 458: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(60); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(1169); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 459: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(962); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(1168); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 460: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(170); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(1167); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 461: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(487); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(1011); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 462: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(377); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(1195); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 463: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(693); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(1194); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 464: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(695); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(793); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 465: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(706); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(373); + if (lookahead == 'r') ADVANCE(179); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 466: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(404); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(373); + if (lookahead == 'r') ADVANCE(429); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 467: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(708); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(351); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 468: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(709); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(356); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 469: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(711); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(418); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 470: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'h') ADVANCE(712); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(363); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 471: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(221); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(365); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 472: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(35); - if (lookahead == 'n') ADVANCE(730); - if (lookahead == 'o') ADVANCE(678); - if (lookahead == 't') ADVANCE(951); - if (lookahead == 'u') ADVANCE(608); - if (lookahead == 'v') ADVANCE(724); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(804); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 473: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(528); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'g') ADVANCE(827); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 474: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(1120); - if (lookahead == 'v') ADVANCE(1132); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(58); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 475: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(1119); - if (lookahead == 'v') ADVANCE(1131); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(170); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 476: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(1118); - if (lookahead == 'v') ADVANCE(1130); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(60); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 477: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(874); - if (lookahead == 'r') ADVANCE(356); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(986); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 478: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(230); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(183); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 479: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(638); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(505); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 480: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(770); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(393); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 481: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(226); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(712); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 482: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(612); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(714); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 483: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(628); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(724); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 484: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(715); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(421); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 485: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(645); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(726); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 486: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(582); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(727); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 487: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(246); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(729); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 488: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(804); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'h') ADVANCE(730); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 489: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(807); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(234); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 490: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(795); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(35); + if (lookahead == 'n') ADVANCE(748); + if (lookahead == 'o') ADVANCE(696); + if (lookahead == 't') ADVANCE(973); + if (lookahead == 'u') ADVANCE(626); + if (lookahead == 'v') ADVANCE(742); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 491: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(879); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(546); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 492: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(684); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(1144); + if (lookahead == 'v') ADVANCE(1156); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 493: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(881); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(1143); + if (lookahead == 'v') ADVANCE(1155); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 494: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(686); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(1142); + if (lookahead == 'v') ADVANCE(1154); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 495: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(882); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(894); + if (lookahead == 'r') ADVANCE(370); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 496: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(883); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(243); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 497: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(884); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(656); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 498: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(694); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(788); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 499: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(885); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(239); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 500: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(886); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(630); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 501: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(887); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(646); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 502: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(698); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(733); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 503: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(888); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(663); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 504: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(889); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(600); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 505: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(890); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(260); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 506: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(891); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(822); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 507: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(893); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(825); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 508: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(894); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(813); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 509: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(895); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(900); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 510: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(896); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(702); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 511: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(897); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(902); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 512: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(898); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(704); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 513: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(899); - if (lookahead == 'o') ADVANCE(586); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(903); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 514: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(900); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(904); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 515: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(901); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(711); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 516: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(902); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(905); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 517: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(903); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(906); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 518: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(904); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(907); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 519: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(905); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(716); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 520: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(906); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(908); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 521: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(907); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(909); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 522: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(908); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(910); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 523: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(909); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(911); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 524: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(910); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(912); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 525: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(816); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(914); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 526: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(665); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(915); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 527: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(232); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(916); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 528: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'k') ADVANCE(972); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(917); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 529: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'k') ADVANCE(1097); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(918); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 530: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'k') ADVANCE(833); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(919); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 531: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'k') ADVANCE(209); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(920); + if (lookahead == 'o') ADVANCE(604); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 532: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'k') ADVANCE(212); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(921); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 533: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1095); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(922); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 534: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1094); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(923); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 535: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1093); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(924); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 536: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1054); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(925); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 537: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1151); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(926); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 538: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1150); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(927); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 539: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1149); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(928); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 540: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1016); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(929); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 541: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1077); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(930); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 542: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1154); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(931); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 543: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1148); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(835); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 544: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1153); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(683); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 545: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1147); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(245); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 546: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1106); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'k') ADVANCE(996); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 547: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1105); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'k') ADVANCE(1121); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 548: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1114); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'k') ADVANCE(852); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 549: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1152); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'k') ADVANCE(222); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 550: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1146); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'k') ADVANCE(225); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 551: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1104); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1119); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 552: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1113); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1118); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 553: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1142); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1117); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 554: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1141); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1078); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 555: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1140); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1175); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 556: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1109); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1174); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 557: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1179); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1173); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 558: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1173); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1040); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 559: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1108); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1101); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 560: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); + if (lookahead == '*') ADVANCE(143); if (lookahead == 'l') ADVANCE(1178); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 561: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); + if (lookahead == '*') ADVANCE(143); if (lookahead == 'l') ADVANCE(1172); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 562: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1107); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1177); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 563: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1177); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1171); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 564: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(1176); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1130); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 565: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(734); - if (lookahead == 'u') ADVANCE(917); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1129); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 566: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(823); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1138); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 567: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(254); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1176); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 568: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(675); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1170); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 569: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(202); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1128); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 570: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(929); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1137); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 571: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(484); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1166); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 572: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(945); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1165); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 573: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(743); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1164); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 574: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(677); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1133); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 575: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(481); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1203); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 576: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(690); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1197); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 577: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(537); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1132); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 578: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(538); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1202); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 579: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(539); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1196); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 580: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(197); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1131); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 581: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(573); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1201); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 582: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(317); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(1200); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 583: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(341); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(752); + if (lookahead == 'u') ADVANCE(938); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 584: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(938); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(842); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 585: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(744); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(268); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 586: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(691); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(693); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 587: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(585); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(215); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 588: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(940); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(951); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 589: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(842); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(502); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 590: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(700); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(967); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 591: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(210); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(761); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 592: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(946); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(695); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 593: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(947); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(499); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 594: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(256); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(708); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 595: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(527); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(555); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 596: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(258); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(556); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 597: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(260); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(557); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 598: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(261); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(210); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 599: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(263); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(591); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 600: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(265); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(331); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 601: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(267); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(355); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 602: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(268); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(960); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 603: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(270); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(762); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 604: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(271); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(710); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 605: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(272); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(603); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 606: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(277); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(962); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 607: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(282); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(861); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 608: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(601); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(718); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 609: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'l') ADVANCE(607); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(223); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 610: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(169); - if (lookahead == 'v') ADVANCE(721); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(968); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 611: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(62); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(969); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 612: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(154); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(270); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 613: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(993); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(545); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 614: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(1136); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(272); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 615: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(1180); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(274); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 616: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(995); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(275); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 617: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(994); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(277); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 618: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(1181); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(279); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 619: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(996); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(281); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 620: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(228); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(282); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 621: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(627); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(284); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 622: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(307); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(285); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 623: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(392); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(286); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 624: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(310); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(291); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 625: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(311); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(296); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 626: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(314); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(619); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 627: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(178); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'l') ADVANCE(625); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 628: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(526); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(182); + if (lookahead == 'v') ADVANCE(739); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 629: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(181); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(62); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 630: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(184); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(167); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 631: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(383); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(1017); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 632: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(229); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(1160); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 633: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(629); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(1204); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 634: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(396); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(1019); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 635: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(630); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(1018); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 636: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(750); - if (lookahead == 'n') ADVANCE(251); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(1205); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 637: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'm') ADVANCE(216); - if (lookahead == 'u') ADVANCE(218); - if (lookahead == 'v') ADVANCE(726); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(1020); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 638: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(123); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(241); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 639: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(997); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(645); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 640: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(50); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(321); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 641: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(54); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(407); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 642: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(56); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(324); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 643: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(290); - if (lookahead == 'q') ADVANCE(776); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(325); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 644: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(950); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(328); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 645: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(529); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(190); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 646: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(440); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(544); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 647: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(171); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(194); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 648: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(291); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(197); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 649: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(441); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(395); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 650: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(530); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(242); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 651: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(292); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(647); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 652: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(442); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(411); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 653: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(293); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(648); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 654: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(449); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(768); + if (lookahead == 'n') ADVANCE(265); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 655: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(748); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'm') ADVANCE(229); + if (lookahead == 'u') ADVANCE(231); + if (lookahead == 'v') ADVANCE(744); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 656: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(444); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(136); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 657: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(445); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(1021); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 658: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(876); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(50); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 659: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(916); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(54); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 660: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(867); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(56); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 661: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(967); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(304); + if (lookahead == 'q') ADVANCE(794); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 662: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(450); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(972); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 663: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(880); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(547); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 664: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(378); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(458); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 665: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(749); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(184); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 666: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(252); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(305); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 667: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(634); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(459); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 668: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(273); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(548); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 669: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(278); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(306); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 670: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(922); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(460); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 671: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'n') ADVANCE(730); - if (lookahead == 'o') ADVANCE(678); - if (lookahead == 't') ADVANCE(951); - if (lookahead == 'u') ADVANCE(608); - if (lookahead == 'v') ADVANCE(724); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(307); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 672: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(264); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(467); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 673: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(954); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(766); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 674: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(911); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(462); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 675: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(753); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(463); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 676: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(621); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(897); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 677: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(828); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(937); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 678: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(868); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(888); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 679: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(646); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(991); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 680: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(223); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(468); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 681: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(649); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(901); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 682: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(652); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(389); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 683: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(613); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(767); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 684: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(639); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(266); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 685: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(616); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(652); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 686: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(640); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(287); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 687: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(617); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(292); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 688: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(661); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(944); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 689: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(619); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'n') ADVANCE(748); + if (lookahead == 'o') ADVANCE(696); + if (lookahead == 't') ADVANCE(973); + if (lookahead == 'u') ADVANCE(626); + if (lookahead == 'v') ADVANCE(742); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 690: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(757); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(278); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 691: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(758); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(976); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 692: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(667); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(932); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 693: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(759); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(771); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 694: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(641); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(639); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 695: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(760); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(847); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 696: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(656); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(889); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 697: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(657); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(664); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 698: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(642); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(236); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 699: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(548); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(667); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 700: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(762); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(670); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 701: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(552); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(631); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 702: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(763); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(657); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 703: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(774); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(634); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 704: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(934); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(658); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 705: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(576); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(635); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 706: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(785); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(679); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 707: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(590); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(637); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 708: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(788); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(775); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 709: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(790); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(685); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 710: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(791); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(776); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 711: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(793); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(659); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 712: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(794); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(777); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 713: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(801); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(674); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 714: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(803); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(778); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 715: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(454); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(675); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 716: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(633); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(660); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 717: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(257); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(566); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 718: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(635); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(780); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 719: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(596); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(570); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 720: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(597); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(781); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 721: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(598); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(792); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 722: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(599); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(956); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 723: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(600); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(594); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 724: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(602); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(803); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 725: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(603); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(608); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 726: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(604); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(806); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 727: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(605); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(808); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 728: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(606); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(809); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 729: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(926); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(811); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 730: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(927); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(812); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 731: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'o') ADVANCE(928); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(819); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 732: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(175); - if (lookahead == 't') ADVANCE(473); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(821); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 733: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(48); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(472); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 734: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(1020); - if (lookahead == 't') ADVANCE(1019); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(651); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 735: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(1096); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(271); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 736: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(456); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(653); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 737: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(703); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(614); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 738: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(913); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(615); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 739: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(459); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(616); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 740: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(461); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(617); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 741: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(458); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(618); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 742: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(206); - if (lookahead == 'r') ADVANCE(380); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(620); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 743: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(557); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(621); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 744: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(560); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(622); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 745: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(402); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(623); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 746: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(354); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(624); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 747: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(878); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(948); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 748: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(935); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(949); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 749: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(936); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'o') ADVANCE(950); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 750: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(710); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(188); + if (lookahead == 't') ADVANCE(491); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 751: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'q') ADVANCE(930); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(48); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 752: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'q') ADVANCE(776); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(1044); + if (lookahead == 't') ADVANCE(1043); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 753: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(1184); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(1120); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 754: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(474); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(474); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 755: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(46); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(721); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 756: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(1012); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(934); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 757: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(1187); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(477); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 758: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(1186); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(479); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 759: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(1008); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(476); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 760: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(1006); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(219); + if (lookahead == 'r') ADVANCE(394); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 761: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(1018); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(575); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 762: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(1182); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(578); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 763: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(1084); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(419); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 764: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(969); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(368); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 765: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(475); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(899); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 766: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(222); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(957); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 767: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(968); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(958); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 768: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(476); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(728); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 769: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(963); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'q') ADVANCE(952); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 770: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(835); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'q') ADVANCE(794); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 771: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(964); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(1208); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 772: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(965); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(492); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 773: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(362); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(46); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 774: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(847); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(1036); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 775: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(173); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(1211); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 776: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(367); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(1210); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 777: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(683); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(1032); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 778: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(214); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(1030); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 779: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(180); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(1042); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 780: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(850); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(1206); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 781: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(248); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(1108); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 782: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(685); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(993); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 783: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(540); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(493); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 784: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(687); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(235); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 785: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(852); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(992); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 786: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(174); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(494); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 787: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(689); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(987); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 788: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(853); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(854); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 789: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(201); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(988); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 790: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(856); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(989); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 791: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(859); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(376); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 792: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(309); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(867); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 793: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(862); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(186); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 794: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(864); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(383); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 795: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(312); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(701); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 796: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(389); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(227); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 797: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(373); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(192); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 798: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(375); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(870); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 799: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(371); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(262); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 800: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(382); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(703); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 801: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(376); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(558); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 802: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(387); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(705); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 803: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(386); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(872); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 804: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(837); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(187); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 805: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(182); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(707); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 806: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(196); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(873); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 807: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(839); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(214); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 808: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(185); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(876); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 809: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(207); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(880); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 810: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(189); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(323); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 811: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(190); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(883); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 812: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(187); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(885); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 813: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(688); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(326); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 814: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(191); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(404); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 815: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(188); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(387); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 816: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(692); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(391); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 817: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(970); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(386); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 818: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(231); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(397); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 819: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(281); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(392); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 820: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(924); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(402); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 821: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'r') ADVANCE(925); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(400); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 822: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(1091); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(855); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 823: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(1090); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(195); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 824: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(979); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(209); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 825: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(986); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(858); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 826: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(735); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(198); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 827: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(304); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(220); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 828: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(843); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(202); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 829: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(237); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(203); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 830: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(824); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(200); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 831: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(238); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(941); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 832: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(239); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(706); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 833: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(247); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(204); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 834: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(704); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(201); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 835: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(854); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(709); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 836: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(372); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(994); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 837: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(855); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(244); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 838: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(379); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(295); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 839: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(858); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(946); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 840: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(384); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'r') ADVANCE(947); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 841: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(861); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(1115); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 842: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(315); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(1114); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 843: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(179); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(1003); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 844: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(413); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(1010); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 845: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1087); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(753); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 846: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(982); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(318); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 847: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(991); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(862); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 848: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1100); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(250); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 849: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1099); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(251); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 850: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(44); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(843); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 851: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1098); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(252); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 852: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1139); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(261); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 853: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1138); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(722); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 854: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1103); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(874); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 855: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1102); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(875); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 856: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1137); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(390); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 857: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1021); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(396); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 858: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1101); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(878); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 859: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(992); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(401); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 860: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1027); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(882); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 861: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(153); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(329); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 862: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1175); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(193); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 863: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(990); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(430); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 864: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1174); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1111); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 865: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(989); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1214); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 866: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1183); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1006); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 867: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(1088); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1015); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 868: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(266); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1124); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 869: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(717); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1123); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 870: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(672); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(44); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 871: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(457); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1122); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 872: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(235); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1163); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 873: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(482); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1162); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 874: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(305); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1127); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 875: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(483); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1126); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 876: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(764); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1161); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 877: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(306); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1045); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 878: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(381); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1125); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 879: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(308); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1215); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 880: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(772); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1016); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 881: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(313); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1051); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 882: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(318); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(166); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 883: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(319); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1199); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 884: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(320); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1014); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 885: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(321); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1198); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 886: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(322); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1013); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 887: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(323); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1207); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 888: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(324); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(1112); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 889: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(325); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(280); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 890: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(326); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(735); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 891: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(327); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(690); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 892: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(328); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(475); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 893: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(329); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(500); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 894: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(330); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(319); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 895: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(331); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(501); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 896: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(332); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(320); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 897: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(333); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(782); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 898: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(334); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(248); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 899: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(335); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(398); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 900: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(336); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(322); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 901: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(338); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(790); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 902: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(339); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(327); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 903: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(340); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(332); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 904: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(343); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(333); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 905: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(344); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(334); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 906: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(345); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(335); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 907: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(346); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(336); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 908: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(347); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(337); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 909: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(348); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(338); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 910: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(350); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(339); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 911: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(405); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(340); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 912: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(463); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(341); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 913: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(492); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(342); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 914: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(583); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(343); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 915: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(702); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(344); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 916: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(250); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(345); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 917: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(464); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(346); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 918: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(494); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(347); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 919: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(498); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(348); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 920: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(502); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(349); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 921: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(466); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(350); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 922: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(817); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(352); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 923: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(262); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(353); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 924: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(275); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(354); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 925: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(280); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(357); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 926: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(407); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(358); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 927: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(408); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(359); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 928: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(409); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(360); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 929: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(295); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(361); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 930: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(490); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(362); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 931: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(846); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(364); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 932: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(577); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(422); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 933: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(912); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(481); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 934: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(781); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(510); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 935: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(863); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(601); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 936: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(865); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(720); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 937: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(623); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(264); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 938: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(296); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(482); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 939: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(578); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(512); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 940: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(297); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(515); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 941: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(579); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(415); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 942: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(841); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(519); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 943: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(581); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(484); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 944: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(587); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(836); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 945: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(810); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(276); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 946: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(811); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(289); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 947: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(814); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(294); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 948: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(609); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(424); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 949: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'v') ADVANCE(443); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(425); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 950: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'v') ADVANCE(525); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(426); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 951: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'v') ADVANCE(728); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(309); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 952: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'w') ADVANCE(172); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(508); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 953: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'w') ADVANCE(286); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(866); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 954: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'x') ADVANCE(1185); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(595); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 955: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'x') ADVANCE(923); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(933); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 956: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'x') ADVANCE(872); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(799); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 957: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'x') ADVANCE(848); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(884); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 958: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'x') ADVANCE(849); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(886); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 959: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'x') ADVANCE(851); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(641); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 960: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'x') ADVANCE(857); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(310); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 961: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'x') ADVANCE(860); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(596); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 962: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'y') ADVANCE(985); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(311); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 963: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'y') ADVANCE(1188); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(597); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 964: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'y') ADVANCE(1189); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(860); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 965: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'y') ADVANCE(1089); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(599); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 966: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'y') ADVANCE(620); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(605); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 967: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'y') ADVANCE(614); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(828); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 968: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'y') ADVANCE(403); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(829); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 969: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'y') ADVANCE(437); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(833); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 970: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'y') ADVANCE(438); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(627); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 971: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'y') ADVANCE(632); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'v') ADVANCE(461); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 972: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'z') ADVANCE(595); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'v') ADVANCE(543); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 973: ACCEPT_TOKEN(sym_command_name); - if (lookahead == '*') ADVANCE(130); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'v') ADVANCE(746); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 974: ACCEPT_TOKEN(sym_command_name); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == 'a') ADVANCE(234); - if (lookahead == 'b') ADVANCE(471); - if (lookahead == 'c') ADVANCE(163); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(472); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(415); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(168); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(637); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'w') ADVANCE(185); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 975: ACCEPT_TOKEN(sym_command_name); - if (lookahead == 'A') ADVANCE(151); - if (lookahead == 'C') ADVANCE(477); - if (lookahead == 'D') ADVANCE(298); - if (lookahead == 'G') ADVANCE(155); - if (lookahead == 'N') ADVANCE(674); - if (lookahead == 'P') ADVANCE(161); - if (lookahead == 'R') ADVANCE(299); - if (lookahead == 'S') ADVANCE(610); - if (lookahead == 'T') ADVANCE(300); - if (lookahead == 'V') ADVANCE(355); - if (lookahead == 'a') ADVANCE(234); - if (lookahead == 'b') ADVANCE(471); - if (lookahead == 'c') ADVANCE(163); - if (lookahead == 'd') ADVANCE(302); - if (lookahead == 'e') ADVANCE(752); - if (lookahead == 'f') ADVANCE(671); - if (lookahead == 'g') ADVANCE(566); - if (lookahead == 'i') ADVANCE(415); - if (lookahead == 'l') ADVANCE(167); - if (lookahead == 'n') ADVANCE(164); - if (lookahead == 'p') ADVANCE(168); - if (lookahead == 'r') ADVANCE(303); - if (lookahead == 's') ADVANCE(637); - if (lookahead == 't') ADVANCE(391); - if (lookahead == 'u') ADVANCE(827); - if (lookahead == 'v') ADVANCE(410); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('h' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'w') ADVANCE(300); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 976: ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'x') ADVANCE(1209); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(130); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 977: - ACCEPT_TOKEN(anon_sym_BSLASHusepackage); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'x') ADVANCE(945); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 978: - ACCEPT_TOKEN(anon_sym_BSLASHRequirePackage); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'x') ADVANCE(865); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 979: - ACCEPT_TOKEN(anon_sym_BSLASHdocumentclass); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'x') ADVANCE(868); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 980: - ACCEPT_TOKEN(anon_sym_BSLASHinclude); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(782); - if (lookahead == 'g') ADVANCE(806); - if (lookahead == 'i') ADVANCE(650); - if (lookahead == 's') ADVANCE(949); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'x') ADVANCE(869); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 981: - ACCEPT_TOKEN(anon_sym_BSLASHsubfileinclude); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'x') ADVANCE(871); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 982: - ACCEPT_TOKEN(anon_sym_BSLASHinput); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(777); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'x') ADVANCE(877); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 983: - ACCEPT_TOKEN(anon_sym_BSLASHsubfile); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(666); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'x') ADVANCE(879); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 984: - ACCEPT_TOKEN(anon_sym_BSLASHaddbibresource); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'x') ADVANCE(881); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 985: - ACCEPT_TOKEN(anon_sym_BSLASHbibliography); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'x') ADVANCE(898); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 986: - ACCEPT_TOKEN(anon_sym_BSLASHincludegraphics); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'y') ADVANCE(1009); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 987: - ACCEPT_TOKEN(anon_sym_BSLASHincludesvg); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'y') ADVANCE(1212); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 988: - ACCEPT_TOKEN(anon_sym_BSLASHincludeinkscape); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'y') ADVANCE(1213); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 989: - ACCEPT_TOKEN(anon_sym_BSLASHverbatiminput); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'y') ADVANCE(1113); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 990: - ACCEPT_TOKEN(anon_sym_BSLASHVerbatimInput); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'y') ADVANCE(638); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 991: - ACCEPT_TOKEN(anon_sym_BSLASHimport); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'y') ADVANCE(632); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 992: - ACCEPT_TOKEN(anon_sym_BSLASHsubimport); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(784); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'y') ADVANCE(420); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 993: - ACCEPT_TOKEN(anon_sym_BSLASHinputfrom); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'y') ADVANCE(455); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 994: - ACCEPT_TOKEN(anon_sym_BSLASHsubimportfrom); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'y') ADVANCE(456); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 995: - ACCEPT_TOKEN(anon_sym_BSLASHincludefrom); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'y') ADVANCE(650); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 996: - ACCEPT_TOKEN(anon_sym_BSLASHsubincludefrom); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'z') ADVANCE(613); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(997); END_STATE(); case 997: - ACCEPT_TOKEN(anon_sym_BSLASHcaption); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 998: - ACCEPT_TOKEN(anon_sym_BSLASHcite); - if (lookahead == '*') ADVANCE(999); - if (lookahead == 'a') ADVANCE(565); - if (lookahead == 'd') ADVANCE(213); - if (lookahead == 'p') ADVANCE(1003); - if (lookahead == 't') ADVANCE(1002); - if (lookahead == 'u') ADVANCE(783); - if (lookahead == 'y') ADVANCE(394); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == 'b') ADVANCE(489); + if (lookahead == 'c') ADVANCE(176); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(490); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(433); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(181); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(655); + if (lookahead == 't') ADVANCE(417); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 999: - ACCEPT_TOKEN(anon_sym_BSLASHcite_STAR); + ACCEPT_TOKEN(sym_command_name); + if (lookahead == 'A') ADVANCE(164); + if (lookahead == 'C') ADVANCE(495); + if (lookahead == 'D') ADVANCE(312); + if (lookahead == 'G') ADVANCE(168); + if (lookahead == 'N') ADVANCE(692); + if (lookahead == 'P') ADVANCE(174); + if (lookahead == 'R') ADVANCE(313); + if (lookahead == 'S') ADVANCE(628); + if (lookahead == 'T') ADVANCE(314); + if (lookahead == 'V') ADVANCE(369); + if (lookahead == 'a') ADVANCE(247); + if (lookahead == 'b') ADVANCE(489); + if (lookahead == 'c') ADVANCE(176); + if (lookahead == 'd') ADVANCE(316); + if (lookahead == 'e') ADVANCE(770); + if (lookahead == 'f') ADVANCE(689); + if (lookahead == 'g') ADVANCE(584); + if (lookahead == 'i') ADVANCE(433); + if (lookahead == 'l') ADVANCE(180); + if (lookahead == 'n') ADVANCE(177); + if (lookahead == 'p') ADVANCE(181); + if (lookahead == 'r') ADVANCE(317); + if (lookahead == 's') ADVANCE(655); + if (lookahead == 't') ADVANCE(417); + if (lookahead == 'u') ADVANCE(846); + if (lookahead == 'v') ADVANCE(427); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('h' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 1000: - ACCEPT_TOKEN(anon_sym_BSLASHCite); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'a') ADVANCE(933); + ACCEPT_TOKEN(sym_command_name); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r') ADVANCE(143); END_STATE(); case 1001: - ACCEPT_TOKEN(anon_sym_BSLASHnocite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHusepackage); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1002: - ACCEPT_TOKEN(anon_sym_BSLASHcitet); - if (lookahead == '*') ADVANCE(1004); - if (lookahead == 'e') ADVANCE(960); - if (lookahead == 'i') ADVANCE(914); + ACCEPT_TOKEN(anon_sym_BSLASHRequirePackage); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1003: - ACCEPT_TOKEN(anon_sym_BSLASHcitep); - if (lookahead == '*') ADVANCE(1005); + ACCEPT_TOKEN(anon_sym_BSLASHdocumentclass); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1004: - ACCEPT_TOKEN(anon_sym_BSLASHcitet_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHinclude); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(800); + if (lookahead == 'g') ADVANCE(824); + if (lookahead == 'i') ADVANCE(668); + if (lookahead == 's') ADVANCE(971); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1005: - ACCEPT_TOKEN(anon_sym_BSLASHcitep_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHsubfileinclude); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1006: - ACCEPT_TOKEN(anon_sym_BSLASHciteauthor); - if (lookahead == '*') ADVANCE(1007); + ACCEPT_TOKEN(anon_sym_BSLASHinput); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(795); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1007: - ACCEPT_TOKEN(anon_sym_BSLASHciteauthor_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHsubfile); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(684); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1008: - ACCEPT_TOKEN(anon_sym_BSLASHCiteauthor); - if (lookahead == '*') ADVANCE(1009); + ACCEPT_TOKEN(anon_sym_BSLASHaddbibresource); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1009: - ACCEPT_TOKEN(anon_sym_BSLASHCiteauthor_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHbibliography); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1010: - ACCEPT_TOKEN(anon_sym_BSLASHcitetitle); - if (lookahead == '*') ADVANCE(1011); + ACCEPT_TOKEN(anon_sym_BSLASHincludegraphics); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1011: - ACCEPT_TOKEN(anon_sym_BSLASHcitetitle_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHincludesvg); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1012: - ACCEPT_TOKEN(anon_sym_BSLASHciteyear); - if (lookahead == '*') ADVANCE(1013); - if (lookahead == 'p') ADVANCE(183); + ACCEPT_TOKEN(anon_sym_BSLASHincludeinkscape); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1013: - ACCEPT_TOKEN(anon_sym_BSLASHciteyear_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHverbatiminput); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1014: - ACCEPT_TOKEN(anon_sym_BSLASHcitedate); - if (lookahead == '*') ADVANCE(1015); + ACCEPT_TOKEN(anon_sym_BSLASHVerbatimInput); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1015: - ACCEPT_TOKEN(anon_sym_BSLASHcitedate_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHimport); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1016: - ACCEPT_TOKEN(anon_sym_BSLASHciteurl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHsubimport); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(802); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1017: - ACCEPT_TOKEN(anon_sym_BSLASHfullcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHinputfrom); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1018: - ACCEPT_TOKEN(anon_sym_BSLASHciteyearpar); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHsubimportfrom); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1019: - ACCEPT_TOKEN(anon_sym_BSLASHcitealt); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHincludefrom); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1020: - ACCEPT_TOKEN(anon_sym_BSLASHcitealp); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHsubincludefrom); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1021: - ACCEPT_TOKEN(anon_sym_BSLASHcitetext); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHcaption); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1022: - ACCEPT_TOKEN(anon_sym_BSLASHparencite); + ACCEPT_TOKEN(anon_sym_BSLASHcite); if (lookahead == '*') ADVANCE(1023); + if (lookahead == 'a') ADVANCE(583); + if (lookahead == 'd') ADVANCE(226); + if (lookahead == 'p') ADVANCE(1027); + if (lookahead == 't') ADVANCE(1026); + if (lookahead == 'u') ADVANCE(801); + if (lookahead == 'y') ADVANCE(409); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1023: - ACCEPT_TOKEN(anon_sym_BSLASHparencite_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHcite_STAR); END_STATE(); case 1024: - ACCEPT_TOKEN(anon_sym_BSLASHParencite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHCite); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'a') ADVANCE(955); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1025: - ACCEPT_TOKEN(anon_sym_BSLASHfootcite); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 't') ADVANCE(400); + ACCEPT_TOKEN(anon_sym_BSLASHnocite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1026: - ACCEPT_TOKEN(anon_sym_BSLASHfootfullcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHcitet); + if (lookahead == '*') ADVANCE(1028); + if (lookahead == 'e') ADVANCE(982); + if (lookahead == 'i') ADVANCE(935); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1027: - ACCEPT_TOKEN(anon_sym_BSLASHfootcitetext); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHcitep); + if (lookahead == '*') ADVANCE(1029); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1028: - ACCEPT_TOKEN(anon_sym_BSLASHtextcite); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHcitet_STAR); END_STATE(); case 1029: - ACCEPT_TOKEN(anon_sym_BSLASHTextcite); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHcitep_STAR); END_STATE(); case 1030: - ACCEPT_TOKEN(anon_sym_BSLASHsmartcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHciteauthor); + if (lookahead == '*') ADVANCE(1031); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1031: - ACCEPT_TOKEN(anon_sym_BSLASHSmartcite); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHciteauthor_STAR); END_STATE(); case 1032: - ACCEPT_TOKEN(anon_sym_BSLASHsupercite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHCiteauthor); + if (lookahead == '*') ADVANCE(1033); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1033: - ACCEPT_TOKEN(anon_sym_BSLASHautocite); - if (lookahead == '*') ADVANCE(1035); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHCiteauthor_STAR); END_STATE(); case 1034: - ACCEPT_TOKEN(anon_sym_BSLASHAutocite); - if (lookahead == '*') ADVANCE(1036); + ACCEPT_TOKEN(anon_sym_BSLASHcitetitle); + if (lookahead == '*') ADVANCE(1035); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1035: - ACCEPT_TOKEN(anon_sym_BSLASHautocite_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHcitetitle_STAR); END_STATE(); case 1036: - ACCEPT_TOKEN(anon_sym_BSLASHAutocite_STAR); - END_STATE(); - case 1037: - ACCEPT_TOKEN(anon_sym_BSLASHvolcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHciteyear); + if (lookahead == '*') ADVANCE(1037); + if (lookahead == 'p') ADVANCE(196); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1037: + ACCEPT_TOKEN(anon_sym_BSLASHciteyear_STAR); END_STATE(); case 1038: - ACCEPT_TOKEN(anon_sym_BSLASHVolcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHcitedate); + if (lookahead == '*') ADVANCE(1039); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1039: - ACCEPT_TOKEN(anon_sym_BSLASHpvolcite); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHcitedate_STAR); END_STATE(); case 1040: - ACCEPT_TOKEN(anon_sym_BSLASHPvolcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHciteurl); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1041: - ACCEPT_TOKEN(anon_sym_BSLASHfvolcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHfullcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1042: - ACCEPT_TOKEN(anon_sym_BSLASHftvolcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHciteyearpar); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1043: - ACCEPT_TOKEN(anon_sym_BSLASHsvolcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHcitealt); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1044: - ACCEPT_TOKEN(anon_sym_BSLASHSvolcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHcitealp); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1045: - ACCEPT_TOKEN(anon_sym_BSLASHtvolcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHcitetext); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1046: - ACCEPT_TOKEN(anon_sym_BSLASHTvolcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHparencite); + if (lookahead == '*') ADVANCE(1047); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1047: - ACCEPT_TOKEN(anon_sym_BSLASHavolcite); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHparencite_STAR); END_STATE(); case 1048: - ACCEPT_TOKEN(anon_sym_BSLASHAvolcite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHParencite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1049: - ACCEPT_TOKEN(anon_sym_BSLASHnotecite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHfootcite); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 't') ADVANCE(416); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1050: - ACCEPT_TOKEN(anon_sym_BSLASHNotecite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHfootfullcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1051: - ACCEPT_TOKEN(anon_sym_BSLASHpnotecite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHfootcitetext); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1052: - ACCEPT_TOKEN(anon_sym_BSLASHPnotecite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHtextcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1053: - ACCEPT_TOKEN(anon_sym_BSLASHfnotecite); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHTextcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1054: - ACCEPT_TOKEN(anon_sym_BSLASHlabel); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'c') ADVANCE(742); + ACCEPT_TOKEN(anon_sym_BSLASHsmartcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1055: - ACCEPT_TOKEN(anon_sym_BSLASHref); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHSmartcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1056: - ACCEPT_TOKEN(anon_sym_BSLASHeqref); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHsupercite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1057: - ACCEPT_TOKEN(anon_sym_BSLASHvref); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHautocite); + if (lookahead == '*') ADVANCE(1059); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1058: - ACCEPT_TOKEN(anon_sym_BSLASHVref); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHAutocite); + if (lookahead == '*') ADVANCE(1060); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1059: - ACCEPT_TOKEN(anon_sym_BSLASHautoref); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHautocite_STAR); END_STATE(); case 1060: - ACCEPT_TOKEN(anon_sym_BSLASHpageref); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHAutocite_STAR); END_STATE(); case 1061: - ACCEPT_TOKEN(anon_sym_BSLASHcref); - if (lookahead == '*') ADVANCE(1063); - if (lookahead == 'r') ADVANCE(200); + ACCEPT_TOKEN(anon_sym_BSLASHvolcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1062: - ACCEPT_TOKEN(anon_sym_BSLASHCref); - if (lookahead == '*') ADVANCE(1064); - if (lookahead == 'r') ADVANCE(176); + ACCEPT_TOKEN(anon_sym_BSLASHVolcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1063: - ACCEPT_TOKEN(anon_sym_BSLASHcref_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHpvolcite); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1064: - ACCEPT_TOKEN(anon_sym_BSLASHCref_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHPvolcite); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1065: - ACCEPT_TOKEN(anon_sym_BSLASHnamecref); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(1068); + ACCEPT_TOKEN(anon_sym_BSLASHfvolcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1066: - ACCEPT_TOKEN(anon_sym_BSLASHnameCref); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(1069); + ACCEPT_TOKEN(anon_sym_BSLASHftvolcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1067: - ACCEPT_TOKEN(anon_sym_BSLASHlcnamecref); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(1070); + ACCEPT_TOKEN(anon_sym_BSLASHsvolcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1068: - ACCEPT_TOKEN(anon_sym_BSLASHnamecrefs); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHSvolcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1069: - ACCEPT_TOKEN(anon_sym_BSLASHnameCrefs); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHtvolcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1070: - ACCEPT_TOKEN(anon_sym_BSLASHlcnamecrefs); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHTvolcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1071: - ACCEPT_TOKEN(anon_sym_BSLASHlabelcref); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHavolcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1072: - ACCEPT_TOKEN(anon_sym_BSLASHlabelcpageref); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHAvolcite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1073: - ACCEPT_TOKEN(anon_sym_BSLASHcrefrange); - if (lookahead == '*') ADVANCE(1074); + ACCEPT_TOKEN(anon_sym_BSLASHnotecite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1074: - ACCEPT_TOKEN(anon_sym_BSLASHcrefrange_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHNotecite); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1075: - ACCEPT_TOKEN(anon_sym_BSLASHCrefrange); - if (lookahead == '*') ADVANCE(1076); + ACCEPT_TOKEN(anon_sym_BSLASHpnotecite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1076: - ACCEPT_TOKEN(anon_sym_BSLASHCrefrange_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHPnotecite); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1077: - ACCEPT_TOKEN(anon_sym_BSLASHnewlabel); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHfnotecite); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1078: - ACCEPT_TOKEN(anon_sym_BSLASHnewcommand); - if (lookahead == '*') ADVANCE(1079); + ACCEPT_TOKEN(anon_sym_BSLASHlabel); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(760); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1079: - ACCEPT_TOKEN(anon_sym_BSLASHnewcommand_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHref); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1080: - ACCEPT_TOKEN(anon_sym_BSLASHrenewcommand); - if (lookahead == '*') ADVANCE(1081); + ACCEPT_TOKEN(anon_sym_BSLASHeqref); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1081: - ACCEPT_TOKEN(anon_sym_BSLASHrenewcommand_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHvref); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1082: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareRobustCommand); - if (lookahead == '*') ADVANCE(1083); + ACCEPT_TOKEN(anon_sym_BSLASHVref); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1083: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareRobustCommand_STAR); + ACCEPT_TOKEN(anon_sym_BSLASHautoref); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1084: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareMathOperator); - if (lookahead == '*') ADVANCE(1085); + ACCEPT_TOKEN(anon_sym_BSLASHpageref); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1085: - ACCEPT_TOKEN(anon_sym_BSLASHDeclareMathOperator_STAR); - END_STATE(); - case 1086: - ACCEPT_TOKEN(anon_sym_BSLASHdef); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(664); + ACCEPT_TOKEN(anon_sym_BSLASHcref); + if (lookahead == '*') ADVANCE(1087); + if (lookahead == 'r') ADVANCE(213); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); - case 1087: - ACCEPT_TOKEN(anon_sym_BSLASHlet); - if (lookahead == '*') ADVANCE(130); + case 1086: + ACCEPT_TOKEN(anon_sym_BSLASHCref); + if (lookahead == '*') ADVANCE(1088); + if (lookahead == 'r') ADVANCE(189); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1087: + ACCEPT_TOKEN(anon_sym_BSLASHcref_STAR); END_STATE(); case 1088: - ACCEPT_TOKEN(anon_sym_BSLASHnewenvironment); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHCref_STAR); END_STATE(); case 1089: - ACCEPT_TOKEN(anon_sym_BSLASHnewglossaryentry); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHnamecref); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(1092); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1090: - ACCEPT_TOKEN(anon_sym_BSLASHgls); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'd') ADVANCE(397); - if (lookahead == 'e') ADVANCE(670); - if (lookahead == 'f') ADVANCE(489); - if (lookahead == 'l') ADVANCE(485); - if (lookahead == 'n') ADVANCE(211); - if (lookahead == 'p') ADVANCE(535); - if (lookahead == 's') ADVANCE(971); - if (lookahead == 't') ADVANCE(399); - if (lookahead == 'u') ADVANCE(840); + ACCEPT_TOKEN(anon_sym_BSLASHnameCref); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(1093); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1091: - ACCEPT_TOKEN(anon_sym_BSLASHGls); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'd') ADVANCE(393); - if (lookahead == 'e') ADVANCE(658); - if (lookahead == 'f') ADVANCE(488); - if (lookahead == 'n') ADVANCE(208); - if (lookahead == 'p') ADVANCE(534); - if (lookahead == 's') ADVANCE(966); - if (lookahead == 't') ADVANCE(398); - if (lookahead == 'u') ADVANCE(838); + ACCEPT_TOKEN(anon_sym_BSLASHlcnamecref); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(1094); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1092: - ACCEPT_TOKEN(anon_sym_BSLASHGLS); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'd') ADVANCE(363); - if (lookahead == 'f') ADVANCE(480); - if (lookahead == 'n') ADVANCE(203); - if (lookahead == 'p') ADVANCE(533); - if (lookahead == 't') ADVANCE(395); - if (lookahead == 'u') ADVANCE(836); + ACCEPT_TOKEN(anon_sym_BSLASHnamecrefs); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1093: - ACCEPT_TOKEN(anon_sym_BSLASHglspl); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(808); + ACCEPT_TOKEN(anon_sym_BSLASHnameCrefs); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1094: - ACCEPT_TOKEN(anon_sym_BSLASHGlspl); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(805); + ACCEPT_TOKEN(anon_sym_BSLASHlcnamecrefs); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1095: - ACCEPT_TOKEN(anon_sym_BSLASHGLSpl); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'u') ADVANCE(779); + ACCEPT_TOKEN(anon_sym_BSLASHlabelcref); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1096: - ACCEPT_TOKEN(anon_sym_BSLASHglsdisp); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHlabelcpageref); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1097: - ACCEPT_TOKEN(anon_sym_BSLASHglslink); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHcrefrange); + if (lookahead == '*') ADVANCE(1098); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1098: - ACCEPT_TOKEN(anon_sym_BSLASHglstext); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHcrefrange_STAR); END_STATE(); case 1099: - ACCEPT_TOKEN(anon_sym_BSLASHGlstext); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHCrefrange); + if (lookahead == '*') ADVANCE(1100); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1100: - ACCEPT_TOKEN(anon_sym_BSLASHGLStext); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHCrefrange_STAR); END_STATE(); case 1101: - ACCEPT_TOKEN(anon_sym_BSLASHglsfirst); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(593); + ACCEPT_TOKEN(anon_sym_BSLASHnewlabel); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1102: - ACCEPT_TOKEN(anon_sym_BSLASHGlsfirst); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(592); + ACCEPT_TOKEN(anon_sym_BSLASHnewcommand); + if (lookahead == '*') ADVANCE(1103); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1103: - ACCEPT_TOKEN(anon_sym_BSLASHGLSfirst); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(572); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHnewcommand_STAR); END_STATE(); case 1104: - ACCEPT_TOKEN(anon_sym_BSLASHglsplural); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHrenewcommand); + if (lookahead == '*') ADVANCE(1105); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1105: - ACCEPT_TOKEN(anon_sym_BSLASHGlsplural); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHrenewcommand_STAR); END_STATE(); case 1106: - ACCEPT_TOKEN(anon_sym_BSLASHGLSplural); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHDeclareRobustCommand); + if (lookahead == '*') ADVANCE(1107); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1107: - ACCEPT_TOKEN(anon_sym_BSLASHglsfirstplural); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHDeclareRobustCommand_STAR); END_STATE(); case 1108: - ACCEPT_TOKEN(anon_sym_BSLASHGlsfirstplural); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHDeclareMathOperator); + if (lookahead == '*') ADVANCE(1109); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1109: - ACCEPT_TOKEN(anon_sym_BSLASHGLSfirstplural); - if (lookahead == '*') ADVANCE(130); - if (lookahead == ':' || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ACCEPT_TOKEN(anon_sym_BSLASHDeclareMathOperator_STAR); END_STATE(); case 1110: - ACCEPT_TOKEN(anon_sym_BSLASHglsname); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHdef); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(682); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1111: - ACCEPT_TOKEN(anon_sym_BSLASHGlsname); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHlet); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1112: - ACCEPT_TOKEN(anon_sym_BSLASHGLSname); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHnewenvironment); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1113: - ACCEPT_TOKEN(anon_sym_BSLASHglssymbol); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHnewglossaryentry); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1114: - ACCEPT_TOKEN(anon_sym_BSLASHGlssymbol); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHgls); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'd') ADVANCE(412); + if (lookahead == 'e') ADVANCE(688); + if (lookahead == 'f') ADVANCE(507); + if (lookahead == 'l') ADVANCE(503); + if (lookahead == 'n') ADVANCE(224); + if (lookahead == 'p') ADVANCE(553); + if (lookahead == 's') ADVANCE(995); + if (lookahead == 't') ADVANCE(414); + if (lookahead == 'u') ADVANCE(859); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1115: - ACCEPT_TOKEN(anon_sym_BSLASHglsdesc); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGls); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'd') ADVANCE(408); + if (lookahead == 'e') ADVANCE(676); + if (lookahead == 'f') ADVANCE(506); + if (lookahead == 'n') ADVANCE(221); + if (lookahead == 'p') ADVANCE(552); + if (lookahead == 's') ADVANCE(990); + if (lookahead == 't') ADVANCE(413); + if (lookahead == 'u') ADVANCE(857); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1116: - ACCEPT_TOKEN(anon_sym_BSLASHGlsdesc); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGLS); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'd') ADVANCE(377); + if (lookahead == 'f') ADVANCE(498); + if (lookahead == 'n') ADVANCE(216); + if (lookahead == 'p') ADVANCE(551); + if (lookahead == 't') ADVANCE(410); + if (lookahead == 'u') ADVANCE(856); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1117: - ACCEPT_TOKEN(anon_sym_BSLASHGLSdesc); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHglspl); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(826); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1118: - ACCEPT_TOKEN(anon_sym_BSLASHglsuseri); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(1121); - if (lookahead == 'v') ADVANCE(1127); + ACCEPT_TOKEN(anon_sym_BSLASHGlspl); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(823); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1119: - ACCEPT_TOKEN(anon_sym_BSLASHGlsuseri); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(1122); - if (lookahead == 'v') ADVANCE(1128); + ACCEPT_TOKEN(anon_sym_BSLASHGLSpl); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'u') ADVANCE(797); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1120: - ACCEPT_TOKEN(anon_sym_BSLASHGLSuseri); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(1123); - if (lookahead == 'v') ADVANCE(1129); + ACCEPT_TOKEN(anon_sym_BSLASHglsdisp); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1121: - ACCEPT_TOKEN(anon_sym_BSLASHglsuserii); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(1124); + ACCEPT_TOKEN(anon_sym_BSLASHglslink); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1122: - ACCEPT_TOKEN(anon_sym_BSLASHGlsuserii); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(1125); + ACCEPT_TOKEN(anon_sym_BSLASHglstext); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1123: - ACCEPT_TOKEN(anon_sym_BSLASHGLSuserii); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(1126); + ACCEPT_TOKEN(anon_sym_BSLASHGlstext); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1124: - ACCEPT_TOKEN(anon_sym_BSLASHglsuseriii); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGLStext); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1125: - ACCEPT_TOKEN(anon_sym_BSLASHGlsuseriii); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHglsfirst); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(611); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1126: - ACCEPT_TOKEN(anon_sym_BSLASHGLSuseriii); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGlsfirst); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(610); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1127: - ACCEPT_TOKEN(anon_sym_BSLASHglsuseriv); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGLSfirst); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(590); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1128: - ACCEPT_TOKEN(anon_sym_BSLASHGlsuseriv); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHglsplural); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1129: - ACCEPT_TOKEN(anon_sym_BSLASHGLSuseriv); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGlsplural); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1130: - ACCEPT_TOKEN(anon_sym_BSLASHglsuserv); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(1133); + ACCEPT_TOKEN(anon_sym_BSLASHGLSplural); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1131: - ACCEPT_TOKEN(anon_sym_BSLASHGlsuserv); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(1134); + ACCEPT_TOKEN(anon_sym_BSLASHglsfirstplural); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1132: - ACCEPT_TOKEN(anon_sym_BSLASHGLSuserv); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'i') ADVANCE(1135); + ACCEPT_TOKEN(anon_sym_BSLASHGlsfirstplural); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1133: - ACCEPT_TOKEN(anon_sym_BSLASHglsuservi); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGLSfirstplural); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1134: - ACCEPT_TOKEN(anon_sym_BSLASHGlsuservi); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHglsname); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1135: - ACCEPT_TOKEN(anon_sym_BSLASHGLSuservi); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGlsname); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1136: - ACCEPT_TOKEN(anon_sym_BSLASHnewacronym); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGLSname); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1137: - ACCEPT_TOKEN(anon_sym_BSLASHacrshort); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(555); + ACCEPT_TOKEN(anon_sym_BSLASHglssymbol); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1138: - ACCEPT_TOKEN(anon_sym_BSLASHAcrshort); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(554); + ACCEPT_TOKEN(anon_sym_BSLASHGlssymbol); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1139: - ACCEPT_TOKEN(anon_sym_BSLASHACRshort); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(553); + ACCEPT_TOKEN(anon_sym_BSLASHglsdesc); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1140: - ACCEPT_TOKEN(anon_sym_BSLASHacrshortpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGlsdesc); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1141: - ACCEPT_TOKEN(anon_sym_BSLASHAcrshortpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGLSdesc); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1142: - ACCEPT_TOKEN(anon_sym_BSLASHACRshortpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHglsuseri); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(1145); + if (lookahead == 'v') ADVANCE(1151); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1143: - ACCEPT_TOKEN(anon_sym_BSLASHacrlong); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(550); + ACCEPT_TOKEN(anon_sym_BSLASHGlsuseri); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(1146); + if (lookahead == 'v') ADVANCE(1152); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1144: - ACCEPT_TOKEN(anon_sym_BSLASHAcrlong); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(545); + ACCEPT_TOKEN(anon_sym_BSLASHGLSuseri); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(1147); + if (lookahead == 'v') ADVANCE(1153); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1145: - ACCEPT_TOKEN(anon_sym_BSLASHACRlong); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(543); + ACCEPT_TOKEN(anon_sym_BSLASHglsuserii); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(1148); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1146: - ACCEPT_TOKEN(anon_sym_BSLASHacrlongpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGlsuserii); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(1149); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1147: - ACCEPT_TOKEN(anon_sym_BSLASHAcrlongpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGLSuserii); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(1150); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1148: - ACCEPT_TOKEN(anon_sym_BSLASHACRlongpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHglsuseriii); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1149: - ACCEPT_TOKEN(anon_sym_BSLASHacrfull); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(549); + ACCEPT_TOKEN(anon_sym_BSLASHGlsuseriii); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1150: - ACCEPT_TOKEN(anon_sym_BSLASHAcrfull); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(544); + ACCEPT_TOKEN(anon_sym_BSLASHGLSuseriii); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1151: - ACCEPT_TOKEN(anon_sym_BSLASHACRfull); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(542); + ACCEPT_TOKEN(anon_sym_BSLASHglsuseriv); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1152: - ACCEPT_TOKEN(anon_sym_BSLASHacrfullpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGlsuseriv); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1153: - ACCEPT_TOKEN(anon_sym_BSLASHAcrfullpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGLSuseriv); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1154: - ACCEPT_TOKEN(anon_sym_BSLASHACRfullpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHglsuserv); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(1157); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1155: - ACCEPT_TOKEN(anon_sym_BSLASHacs); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(1157); + ACCEPT_TOKEN(anon_sym_BSLASHGlsuserv); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(1158); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1156: - ACCEPT_TOKEN(anon_sym_BSLASHAcs); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(1158); + ACCEPT_TOKEN(anon_sym_BSLASHGLSuserv); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'i') ADVANCE(1159); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1157: - ACCEPT_TOKEN(anon_sym_BSLASHacsp); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHglsuservi); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1158: - ACCEPT_TOKEN(anon_sym_BSLASHAcsp); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHGlsuservi); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1159: - ACCEPT_TOKEN(anon_sym_BSLASHacl); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(1161); + ACCEPT_TOKEN(anon_sym_BSLASHGLSuservi); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1160: - ACCEPT_TOKEN(anon_sym_BSLASHAcl); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(1162); + ACCEPT_TOKEN(anon_sym_BSLASHnewacronym); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1161: - ACCEPT_TOKEN(anon_sym_BSLASHaclp); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHacrshort); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(573); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1162: - ACCEPT_TOKEN(anon_sym_BSLASHAclp); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHAcrshort); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(572); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1163: - ACCEPT_TOKEN(anon_sym_BSLASHacf); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(1165); + ACCEPT_TOKEN(anon_sym_BSLASHACRshort); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(571); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1164: - ACCEPT_TOKEN(anon_sym_BSLASHAcf); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(1166); + ACCEPT_TOKEN(anon_sym_BSLASHacrshortpl); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1165: - ACCEPT_TOKEN(anon_sym_BSLASHacfp); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHAcrshortpl); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1166: - ACCEPT_TOKEN(anon_sym_BSLASHAcfp); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHACRshortpl); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1167: - ACCEPT_TOKEN(anon_sym_BSLASHac); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1163); - if (lookahead == 'l') ADVANCE(1159); - if (lookahead == 'p') ADVANCE(1169); - if (lookahead == 'r') ADVANCE(436); - if (lookahead == 's') ADVANCE(1155); + ACCEPT_TOKEN(anon_sym_BSLASHacrlong); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(568); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1168: - ACCEPT_TOKEN(anon_sym_BSLASHAc); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'f') ADVANCE(1164); - if (lookahead == 'l') ADVANCE(1160); - if (lookahead == 'r') ADVANCE(435); - if (lookahead == 's') ADVANCE(1156); + ACCEPT_TOKEN(anon_sym_BSLASHAcrlong); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(563); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1169: - ACCEPT_TOKEN(anon_sym_BSLASHacp); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHACRlong); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(561); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1170: - ACCEPT_TOKEN(anon_sym_BSLASHglsentrylong); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(561); + ACCEPT_TOKEN(anon_sym_BSLASHacrlongpl); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1171: - ACCEPT_TOKEN(anon_sym_BSLASHGlsentrylong); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(558); + ACCEPT_TOKEN(anon_sym_BSLASHAcrlongpl); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1172: - ACCEPT_TOKEN(anon_sym_BSLASHglsentrylongpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHACRlongpl); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1173: - ACCEPT_TOKEN(anon_sym_BSLASHGlsentrylongpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHacrfull); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(567); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1174: - ACCEPT_TOKEN(anon_sym_BSLASHglsentryshort); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(564); + ACCEPT_TOKEN(anon_sym_BSLASHAcrfull); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(562); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1175: - ACCEPT_TOKEN(anon_sym_BSLASHGlsentryshort); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'p') ADVANCE(563); + ACCEPT_TOKEN(anon_sym_BSLASHACRfull); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(560); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1176: - ACCEPT_TOKEN(anon_sym_BSLASHglsentryshortpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHacrfullpl); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1177: - ACCEPT_TOKEN(anon_sym_BSLASHGlsentryshortpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHAcrfullpl); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1178: - ACCEPT_TOKEN(anon_sym_BSLASHglsentryfullpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHACRfullpl); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1179: - ACCEPT_TOKEN(anon_sym_BSLASHGlsentryfullpl); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHacs); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(1181); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1180: - ACCEPT_TOKEN(anon_sym_BSLASHnewtheorem); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHAcs); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(1182); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1181: - ACCEPT_TOKEN(anon_sym_BSLASHdeclaretheorem); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHacsp); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1182: - ACCEPT_TOKEN(anon_sym_BSLASHdefinecolor); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 's') ADVANCE(390); + ACCEPT_TOKEN(anon_sym_BSLASHAcsp); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1183: - ACCEPT_TOKEN(anon_sym_BSLASHdefinecolorset); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHacl); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(1185); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1184: - ACCEPT_TOKEN(anon_sym_BSLASHcolor); - if (lookahead == '*') ADVANCE(130); - if (lookahead == 'b') ADVANCE(673); + ACCEPT_TOKEN(anon_sym_BSLASHAcl); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(1186); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1185: - ACCEPT_TOKEN(anon_sym_BSLASHcolorbox); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHaclp); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1186: - ACCEPT_TOKEN(anon_sym_BSLASHtextcolor); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHAclp); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1187: - ACCEPT_TOKEN(anon_sym_BSLASHpagecolor); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHacf); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(1189); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1188: - ACCEPT_TOKEN(anon_sym_BSLASHusepgflibrary); - if (lookahead == '*') ADVANCE(130); + ACCEPT_TOKEN(anon_sym_BSLASHAcf); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(1190); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); END_STATE(); case 1189: + ACCEPT_TOKEN(anon_sym_BSLASHacfp); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1190: + ACCEPT_TOKEN(anon_sym_BSLASHAcfp); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1191: + ACCEPT_TOKEN(anon_sym_BSLASHac); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1187); + if (lookahead == 'l') ADVANCE(1183); + if (lookahead == 'p') ADVANCE(1193); + if (lookahead == 'r') ADVANCE(454); + if (lookahead == 's') ADVANCE(1179); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1192: + ACCEPT_TOKEN(anon_sym_BSLASHAc); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'f') ADVANCE(1188); + if (lookahead == 'l') ADVANCE(1184); + if (lookahead == 'r') ADVANCE(453); + if (lookahead == 's') ADVANCE(1180); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1193: + ACCEPT_TOKEN(anon_sym_BSLASHacp); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1194: + ACCEPT_TOKEN(anon_sym_BSLASHglsentrylong); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(579); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1195: + ACCEPT_TOKEN(anon_sym_BSLASHGlsentrylong); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(576); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1196: + ACCEPT_TOKEN(anon_sym_BSLASHglsentrylongpl); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1197: + ACCEPT_TOKEN(anon_sym_BSLASHGlsentrylongpl); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1198: + ACCEPT_TOKEN(anon_sym_BSLASHglsentryshort); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(582); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1199: + ACCEPT_TOKEN(anon_sym_BSLASHGlsentryshort); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'p') ADVANCE(581); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1200: + ACCEPT_TOKEN(anon_sym_BSLASHglsentryshortpl); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1201: + ACCEPT_TOKEN(anon_sym_BSLASHGlsentryshortpl); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1202: + ACCEPT_TOKEN(anon_sym_BSLASHglsentryfullpl); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1203: + ACCEPT_TOKEN(anon_sym_BSLASHGlsentryfullpl); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1204: + ACCEPT_TOKEN(anon_sym_BSLASHnewtheorem); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1205: + ACCEPT_TOKEN(anon_sym_BSLASHdeclaretheorem); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1206: + ACCEPT_TOKEN(anon_sym_BSLASHdefinecolor); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 's') ADVANCE(405); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1207: + ACCEPT_TOKEN(anon_sym_BSLASHdefinecolorset); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1208: + ACCEPT_TOKEN(anon_sym_BSLASHcolor); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'b') ADVANCE(691); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1209: + ACCEPT_TOKEN(anon_sym_BSLASHcolorbox); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1210: + ACCEPT_TOKEN(anon_sym_BSLASHtextcolor); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1211: + ACCEPT_TOKEN(anon_sym_BSLASHpagecolor); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1212: + ACCEPT_TOKEN(anon_sym_BSLASHusepgflibrary); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1213: ACCEPT_TOKEN(anon_sym_BSLASHusetikzlibrary); - if (lookahead == '*') ADVANCE(130); + if (lookahead == '*') ADVANCE(143); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1214: + ACCEPT_TOKEN(anon_sym_BSLASHtext); + if (lookahead == '*') ADVANCE(143); + if (lookahead == 'c') ADVANCE(531); + if (lookahead == ':' || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1215: + ACCEPT_TOKEN(anon_sym_BSLASHintertext); + if (lookahead == '*') ADVANCE(143); if (lookahead == ':' || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(973); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(997); + END_STATE(); + case 1216: + ACCEPT_TOKEN(anon_sym_shortintertext); + if (!sym_word_character_set_1(lookahead)) ADVANCE(111); END_STATE(); default: return false; @@ -17309,217 +15085,217 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3] = {.lex_state = 24}, [4] = {.lex_state = 25}, [5] = {.lex_state = 25}, - [6] = {.lex_state = 24}, - [7] = {.lex_state = 24}, - [8] = {.lex_state = 25}, - [9] = {.lex_state = 5}, - [10] = {.lex_state = 1}, - [11] = {.lex_state = 25}, - [12] = {.lex_state = 2}, - [13] = {.lex_state = 3}, - [14] = {.lex_state = 24}, + [6] = {.lex_state = 25}, + [7] = {.lex_state = 1}, + [8] = {.lex_state = 5}, + [9] = {.lex_state = 6}, + [10] = {.lex_state = 7}, + [11] = {.lex_state = 5}, + [12] = {.lex_state = 1}, + [13] = {.lex_state = 2}, + [14] = {.lex_state = 25}, [15] = {.lex_state = 5}, - [16] = {.lex_state = 5}, - [17] = {.lex_state = 1}, - [18] = {.lex_state = 6}, - [19] = {.lex_state = 7}, - [20] = {.lex_state = 5}, + [16] = {.lex_state = 24}, + [17] = {.lex_state = 6}, + [18] = {.lex_state = 2}, + [19] = {.lex_state = 5}, + [20] = {.lex_state = 24}, [21] = {.lex_state = 5}, - [22] = {.lex_state = 6}, - [23] = {.lex_state = 7}, - [24] = {.lex_state = 23}, + [22] = {.lex_state = 23}, + [23] = {.lex_state = 5}, + [24] = {.lex_state = 7}, [25] = {.lex_state = 5}, [26] = {.lex_state = 5}, - [27] = {.lex_state = 25}, - [28] = {.lex_state = 5}, + [27] = {.lex_state = 1}, + [28] = {.lex_state = 3}, [29] = {.lex_state = 5}, - [30] = {.lex_state = 2}, - [31] = {.lex_state = 5}, - [32] = {.lex_state = 5}, - [33] = {.lex_state = 24}, - [34] = {.lex_state = 3}, - [35] = {.lex_state = 1}, - [36] = {.lex_state = 25}, + [30] = {.lex_state = 25}, + [31] = {.lex_state = 24}, + [32] = {.lex_state = 25}, + [33] = {.lex_state = 1}, + [34] = {.lex_state = 24}, + [35] = {.lex_state = 5}, + [36] = {.lex_state = 5}, [37] = {.lex_state = 5}, - [38] = {.lex_state = 1}, - [39] = {.lex_state = 23}, - [40] = {.lex_state = 23}, - [41] = {.lex_state = 25}, + [38] = {.lex_state = 3}, + [39] = {.lex_state = 25}, + [40] = {.lex_state = 4}, + [41] = {.lex_state = 23}, [42] = {.lex_state = 23}, - [43] = {.lex_state = 24}, - [44] = {.lex_state = 25}, - [45] = {.lex_state = 23}, - [46] = {.lex_state = 25}, - [47] = {.lex_state = 24}, - [48] = {.lex_state = 4}, - [49] = {.lex_state = 25}, - [50] = {.lex_state = 25}, - [51] = {.lex_state = 4}, + [43] = {.lex_state = 25}, + [44] = {.lex_state = 24}, + [45] = {.lex_state = 24}, + [46] = {.lex_state = 4}, + [47] = {.lex_state = 25}, + [48] = {.lex_state = 24}, + [49] = {.lex_state = 23}, + [50] = {.lex_state = 4}, + [51] = {.lex_state = 25}, [52] = {.lex_state = 24}, - [53] = {.lex_state = 25}, - [54] = {.lex_state = 23}, - [55] = {.lex_state = 4}, - [56] = {.lex_state = 24}, + [53] = {.lex_state = 23}, + [54] = {.lex_state = 25}, + [55] = {.lex_state = 24}, + [56] = {.lex_state = 4}, [57] = {.lex_state = 25}, - [58] = {.lex_state = 23}, + [58] = {.lex_state = 24}, [59] = {.lex_state = 23}, - [60] = {.lex_state = 24}, - [61] = {.lex_state = 23}, - [62] = {.lex_state = 24}, - [63] = {.lex_state = 25}, - [64] = {.lex_state = 4}, - [65] = {.lex_state = 4}, + [60] = {.lex_state = 23}, + [61] = {.lex_state = 4}, + [62] = {.lex_state = 23}, + [63] = {.lex_state = 24}, + [64] = {.lex_state = 23}, + [65] = {.lex_state = 25}, [66] = {.lex_state = 24}, [67] = {.lex_state = 25}, - [68] = {.lex_state = 24}, - [69] = {.lex_state = 24}, - [70] = {.lex_state = 25}, - [71] = {.lex_state = 23}, - [72] = {.lex_state = 25}, + [68] = {.lex_state = 25}, + [69] = {.lex_state = 4}, + [70] = {.lex_state = 23}, + [71] = {.lex_state = 24}, + [72] = {.lex_state = 23}, [73] = {.lex_state = 24}, - [74] = {.lex_state = 23}, - [75] = {.lex_state = 25}, - [76] = {.lex_state = 24}, - [77] = {.lex_state = 23}, - [78] = {.lex_state = 24}, - [79] = {.lex_state = 4}, - [80] = {.lex_state = 24}, - [81] = {.lex_state = 25}, + [74] = {.lex_state = 25}, + [75] = {.lex_state = 24}, + [76] = {.lex_state = 25}, + [77] = {.lex_state = 24}, + [78] = {.lex_state = 25}, + [79] = {.lex_state = 25}, + [80] = {.lex_state = 25}, + [81] = {.lex_state = 24}, [82] = {.lex_state = 24}, [83] = {.lex_state = 23}, [84] = {.lex_state = 24}, - [85] = {.lex_state = 4}, - [86] = {.lex_state = 25}, - [87] = {.lex_state = 25}, - [88] = {.lex_state = 25}, - [89] = {.lex_state = 23}, - [90] = {.lex_state = 4}, - [91] = {.lex_state = 24}, - [92] = {.lex_state = 23}, + [85] = {.lex_state = 25}, + [86] = {.lex_state = 23}, + [87] = {.lex_state = 4}, + [88] = {.lex_state = 4}, + [89] = {.lex_state = 24}, + [90] = {.lex_state = 24}, + [91] = {.lex_state = 25}, + [92] = {.lex_state = 25}, [93] = {.lex_state = 25}, - [94] = {.lex_state = 25}, - [95] = {.lex_state = 24}, + [94] = {.lex_state = 4}, + [95] = {.lex_state = 25}, [96] = {.lex_state = 24}, [97] = {.lex_state = 4}, - [98] = {.lex_state = 4}, + [98] = {.lex_state = 25}, [99] = {.lex_state = 24}, - [100] = {.lex_state = 25}, - [101] = {.lex_state = 4}, + [100] = {.lex_state = 23}, + [101] = {.lex_state = 25}, [102] = {.lex_state = 24}, - [103] = {.lex_state = 25}, - [104] = {.lex_state = 23}, - [105] = {.lex_state = 25}, - [106] = {.lex_state = 4}, - [107] = {.lex_state = 25}, - [108] = {.lex_state = 4}, - [109] = {.lex_state = 4}, - [110] = {.lex_state = 23}, + [103] = {.lex_state = 23}, + [104] = {.lex_state = 24}, + [105] = {.lex_state = 4}, + [106] = {.lex_state = 25}, + [107] = {.lex_state = 4}, + [108] = {.lex_state = 25}, + [109] = {.lex_state = 25}, + [110] = {.lex_state = 24}, [111] = {.lex_state = 24}, - [112] = {.lex_state = 25}, - [113] = {.lex_state = 4}, + [112] = {.lex_state = 24}, + [113] = {.lex_state = 23}, [114] = {.lex_state = 23}, - [115] = {.lex_state = 24}, - [116] = {.lex_state = 24}, - [117] = {.lex_state = 24}, - [118] = {.lex_state = 24}, - [119] = {.lex_state = 25}, - [120] = {.lex_state = 5}, + [115] = {.lex_state = 4}, + [116] = {.lex_state = 23}, + [117] = {.lex_state = 5}, + [118] = {.lex_state = 4}, + [119] = {.lex_state = 24}, + [120] = {.lex_state = 4}, [121] = {.lex_state = 25}, [122] = {.lex_state = 23}, [123] = {.lex_state = 23}, - [124] = {.lex_state = 24}, - [125] = {.lex_state = 4}, - [126] = {.lex_state = 25}, - [127] = {.lex_state = 4}, + [124] = {.lex_state = 25}, + [125] = {.lex_state = 24}, + [126] = {.lex_state = 5}, + [127] = {.lex_state = 5}, [128] = {.lex_state = 24}, - [129] = {.lex_state = 5}, - [130] = {.lex_state = 25}, - [131] = {.lex_state = 5}, + [129] = {.lex_state = 25}, + [130] = {.lex_state = 4}, + [131] = {.lex_state = 4}, [132] = {.lex_state = 23}, [133] = {.lex_state = 23}, [134] = {.lex_state = 24}, - [135] = {.lex_state = 25}, - [136] = {.lex_state = 24}, - [137] = {.lex_state = 5}, - [138] = {.lex_state = 4}, - [139] = {.lex_state = 5}, - [140] = {.lex_state = 4}, - [141] = {.lex_state = 25}, + [135] = {.lex_state = 4}, + [136] = {.lex_state = 4}, + [137] = {.lex_state = 24}, + [138] = {.lex_state = 25}, + [139] = {.lex_state = 25}, + [140] = {.lex_state = 5}, + [141] = {.lex_state = 5}, [142] = {.lex_state = 23}, [143] = {.lex_state = 23}, [144] = {.lex_state = 4}, - [145] = {.lex_state = 4}, - [146] = {.lex_state = 24}, - [147] = {.lex_state = 25}, - [148] = {.lex_state = 5}, - [149] = {.lex_state = 25}, - [150] = {.lex_state = 24}, - [151] = {.lex_state = 5}, + [145] = {.lex_state = 5}, + [146] = {.lex_state = 4}, + [147] = {.lex_state = 5}, + [148] = {.lex_state = 25}, + [149] = {.lex_state = 24}, + [150] = {.lex_state = 25}, + [151] = {.lex_state = 24}, [152] = {.lex_state = 23}, [153] = {.lex_state = 23}, - [154] = {.lex_state = 24}, - [155] = {.lex_state = 4}, - [156] = {.lex_state = 4}, + [154] = {.lex_state = 25}, + [155] = {.lex_state = 25}, + [156] = {.lex_state = 5}, [157] = {.lex_state = 24}, - [158] = {.lex_state = 25}, - [159] = {.lex_state = 25}, - [160] = {.lex_state = 5}, - [161] = {.lex_state = 5}, + [158] = {.lex_state = 4}, + [159] = {.lex_state = 5}, + [160] = {.lex_state = 24}, + [161] = {.lex_state = 4}, [162] = {.lex_state = 23}, [163] = {.lex_state = 23}, [164] = {.lex_state = 25}, - [165] = {.lex_state = 4}, - [166] = {.lex_state = 4}, + [165] = {.lex_state = 24}, + [166] = {.lex_state = 5}, [167] = {.lex_state = 5}, - [168] = {.lex_state = 5}, - [169] = {.lex_state = 25}, - [170] = {.lex_state = 24}, - [171] = {.lex_state = 24}, + [168] = {.lex_state = 24}, + [169] = {.lex_state = 4}, + [170] = {.lex_state = 25}, + [171] = {.lex_state = 4}, [172] = {.lex_state = 23}, [173] = {.lex_state = 23}, - [174] = {.lex_state = 4}, - [175] = {.lex_state = 5}, - [176] = {.lex_state = 25}, - [177] = {.lex_state = 24}, + [174] = {.lex_state = 5}, + [175] = {.lex_state = 24}, + [176] = {.lex_state = 24}, + [177] = {.lex_state = 25}, [178] = {.lex_state = 4}, - [179] = {.lex_state = 24}, + [179] = {.lex_state = 5}, [180] = {.lex_state = 25}, - [181] = {.lex_state = 5}, + [181] = {.lex_state = 4}, [182] = {.lex_state = 23}, [183] = {.lex_state = 23}, - [184] = {.lex_state = 4}, - [185] = {.lex_state = 24}, - [186] = {.lex_state = 24}, - [187] = {.lex_state = 5}, - [188] = {.lex_state = 25}, - [189] = {.lex_state = 25}, - [190] = {.lex_state = 5}, + [184] = {.lex_state = 24}, + [185] = {.lex_state = 25}, + [186] = {.lex_state = 5}, + [187] = {.lex_state = 24}, + [188] = {.lex_state = 4}, + [189] = {.lex_state = 5}, + [190] = {.lex_state = 25}, [191] = {.lex_state = 4}, [192] = {.lex_state = 23}, [193] = {.lex_state = 23}, [194] = {.lex_state = 23}, - [195] = {.lex_state = 5}, - [196] = {.lex_state = 4}, - [197] = {.lex_state = 25}, + [195] = {.lex_state = 25}, + [196] = {.lex_state = 24}, + [197] = {.lex_state = 5}, [198] = {.lex_state = 24}, - [199] = {.lex_state = 24}, - [200] = {.lex_state = 24}, + [199] = {.lex_state = 4}, + [200] = {.lex_state = 4}, [201] = {.lex_state = 25}, - [202] = {.lex_state = 5}, - [203] = {.lex_state = 25}, - [204] = {.lex_state = 4}, - [205] = {.lex_state = 4}, - [206] = {.lex_state = 5}, + [202] = {.lex_state = 24}, + [203] = {.lex_state = 4}, + [204] = {.lex_state = 5}, + [205] = {.lex_state = 5}, + [206] = {.lex_state = 25}, [207] = {.lex_state = 23}, [208] = {.lex_state = 23}, [209] = {.lex_state = 4}, - [210] = {.lex_state = 25}, + [210] = {.lex_state = 24}, [211] = {.lex_state = 24}, - [212] = {.lex_state = 25}, - [213] = {.lex_state = 24}, - [214] = {.lex_state = 5}, - [215] = {.lex_state = 4}, - [216] = {.lex_state = 5}, + [212] = {.lex_state = 5}, + [213] = {.lex_state = 25}, + [214] = {.lex_state = 4}, + [215] = {.lex_state = 5}, + [216] = {.lex_state = 25}, [217] = {.lex_state = 9}, [218] = {.lex_state = 9}, [219] = {.lex_state = 9}, @@ -17647,258 +15423,258 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [341] = {.lex_state = 23}, [342] = {.lex_state = 23}, [343] = {.lex_state = 23}, - [344] = {.lex_state = 5}, - [345] = {.lex_state = 24}, - [346] = {.lex_state = 5}, + [344] = {.lex_state = 4}, + [345] = {.lex_state = 25}, + [346] = {.lex_state = 4}, [347] = {.lex_state = 5}, - [348] = {.lex_state = 4}, - [349] = {.lex_state = 5}, - [350] = {.lex_state = 4}, + [348] = {.lex_state = 5}, + [349] = {.lex_state = 25}, + [350] = {.lex_state = 5}, [351] = {.lex_state = 5}, [352] = {.lex_state = 5}, - [353] = {.lex_state = 4}, + [353] = {.lex_state = 25}, [354] = {.lex_state = 5}, - [355] = {.lex_state = 4}, - [356] = {.lex_state = 4}, - [357] = {.lex_state = 4}, - [358] = {.lex_state = 5}, - [359] = {.lex_state = 4}, - [360] = {.lex_state = 5}, - [361] = {.lex_state = 4}, - [362] = {.lex_state = 5}, - [363] = {.lex_state = 4}, - [364] = {.lex_state = 4}, - [365] = {.lex_state = 24}, - [366] = {.lex_state = 5}, - [367] = {.lex_state = 24}, - [368] = {.lex_state = 5}, - [369] = {.lex_state = 5}, + [355] = {.lex_state = 25}, + [356] = {.lex_state = 5}, + [357] = {.lex_state = 5}, + [358] = {.lex_state = 25}, + [359] = {.lex_state = 5}, + [360] = {.lex_state = 25}, + [361] = {.lex_state = 25}, + [362] = {.lex_state = 25}, + [363] = {.lex_state = 5}, + [364] = {.lex_state = 25}, + [365] = {.lex_state = 5}, + [366] = {.lex_state = 25}, + [367] = {.lex_state = 25}, + [368] = {.lex_state = 25}, + [369] = {.lex_state = 25}, [370] = {.lex_state = 5}, - [371] = {.lex_state = 5}, - [372] = {.lex_state = 24}, + [371] = {.lex_state = 25}, + [372] = {.lex_state = 5}, [373] = {.lex_state = 5}, - [374] = {.lex_state = 24}, + [374] = {.lex_state = 5}, [375] = {.lex_state = 5}, - [376] = {.lex_state = 24}, + [376] = {.lex_state = 25}, [377] = {.lex_state = 5}, - [378] = {.lex_state = 24}, + [378] = {.lex_state = 25}, [379] = {.lex_state = 5}, - [380] = {.lex_state = 24}, - [381] = {.lex_state = 5}, - [382] = {.lex_state = 5}, - [383] = {.lex_state = 5}, - [384] = {.lex_state = 5}, - [385] = {.lex_state = 24}, + [380] = {.lex_state = 25}, + [381] = {.lex_state = 25}, + [382] = {.lex_state = 25}, + [383] = {.lex_state = 25}, + [384] = {.lex_state = 25}, + [385] = {.lex_state = 5}, [386] = {.lex_state = 5}, - [387] = {.lex_state = 5}, + [387] = {.lex_state = 25}, [388] = {.lex_state = 5}, - [389] = {.lex_state = 24}, + [389] = {.lex_state = 5}, [390] = {.lex_state = 5}, - [391] = {.lex_state = 5}, - [392] = {.lex_state = 24}, - [393] = {.lex_state = 24}, - [394] = {.lex_state = 24}, - [395] = {.lex_state = 24}, - [396] = {.lex_state = 24}, - [397] = {.lex_state = 24}, - [398] = {.lex_state = 24}, - [399] = {.lex_state = 24}, - [400] = {.lex_state = 24}, - [401] = {.lex_state = 24}, - [402] = {.lex_state = 24}, - [403] = {.lex_state = 24}, - [404] = {.lex_state = 24}, - [405] = {.lex_state = 24}, - [406] = {.lex_state = 24}, - [407] = {.lex_state = 24}, - [408] = {.lex_state = 24}, - [409] = {.lex_state = 24}, - [410] = {.lex_state = 24}, + [391] = {.lex_state = 25}, + [392] = {.lex_state = 5}, + [393] = {.lex_state = 5}, + [394] = {.lex_state = 25}, + [395] = {.lex_state = 25}, + [396] = {.lex_state = 5}, + [397] = {.lex_state = 25}, + [398] = {.lex_state = 25}, + [399] = {.lex_state = 5}, + [400] = {.lex_state = 25}, + [401] = {.lex_state = 25}, + [402] = {.lex_state = 4}, + [403] = {.lex_state = 4}, + [404] = {.lex_state = 4}, + [405] = {.lex_state = 5}, + [406] = {.lex_state = 4}, + [407] = {.lex_state = 4}, + [408] = {.lex_state = 4}, + [409] = {.lex_state = 4}, + [410] = {.lex_state = 4}, [411] = {.lex_state = 4}, [412] = {.lex_state = 4}, [413] = {.lex_state = 4}, [414] = {.lex_state = 4}, [415] = {.lex_state = 4}, [416] = {.lex_state = 4}, - [417] = {.lex_state = 4}, - [418] = {.lex_state = 25}, - [419] = {.lex_state = 4}, - [420] = {.lex_state = 4}, - [421] = {.lex_state = 4}, - [422] = {.lex_state = 4}, + [417] = {.lex_state = 25}, + [418] = {.lex_state = 5}, + [419] = {.lex_state = 5}, + [420] = {.lex_state = 24}, + [421] = {.lex_state = 5}, + [422] = {.lex_state = 5}, [423] = {.lex_state = 4}, - [424] = {.lex_state = 4}, + [424] = {.lex_state = 5}, [425] = {.lex_state = 4}, - [426] = {.lex_state = 4}, - [427] = {.lex_state = 25}, - [428] = {.lex_state = 25}, - [429] = {.lex_state = 25}, - [430] = {.lex_state = 25}, - [431] = {.lex_state = 25}, - [432] = {.lex_state = 25}, - [433] = {.lex_state = 25}, - [434] = {.lex_state = 25}, - [435] = {.lex_state = 4}, - [436] = {.lex_state = 4}, - [437] = {.lex_state = 24}, + [426] = {.lex_state = 5}, + [427] = {.lex_state = 5}, + [428] = {.lex_state = 4}, + [429] = {.lex_state = 24}, + [430] = {.lex_state = 24}, + [431] = {.lex_state = 24}, + [432] = {.lex_state = 24}, + [433] = {.lex_state = 24}, + [434] = {.lex_state = 24}, + [435] = {.lex_state = 24}, + [436] = {.lex_state = 24}, + [437] = {.lex_state = 5}, [438] = {.lex_state = 4}, - [439] = {.lex_state = 5}, + [439] = {.lex_state = 4}, [440] = {.lex_state = 5}, - [441] = {.lex_state = 5}, + [441] = {.lex_state = 25}, [442] = {.lex_state = 5}, [443] = {.lex_state = 5}, - [444] = {.lex_state = 5}, + [444] = {.lex_state = 25}, [445] = {.lex_state = 5}, [446] = {.lex_state = 5}, - [447] = {.lex_state = 4}, - [448] = {.lex_state = 4}, - [449] = {.lex_state = 4}, - [450] = {.lex_state = 23}, - [451] = {.lex_state = 4}, + [447] = {.lex_state = 5}, + [448] = {.lex_state = 25}, + [449] = {.lex_state = 25}, + [450] = {.lex_state = 5}, + [451] = {.lex_state = 25}, [452] = {.lex_state = 5}, - [453] = {.lex_state = 25}, - [454] = {.lex_state = 24}, - [455] = {.lex_state = 5}, - [456] = {.lex_state = 5}, - [457] = {.lex_state = 24}, + [453] = {.lex_state = 5}, + [454] = {.lex_state = 5}, + [455] = {.lex_state = 24}, + [456] = {.lex_state = 25}, + [457] = {.lex_state = 5}, [458] = {.lex_state = 5}, [459] = {.lex_state = 5}, [460] = {.lex_state = 5}, - [461] = {.lex_state = 24}, - [462] = {.lex_state = 5}, + [461] = {.lex_state = 5}, + [462] = {.lex_state = 25}, [463] = {.lex_state = 5}, [464] = {.lex_state = 5}, [465] = {.lex_state = 5}, - [466] = {.lex_state = 24}, + [466] = {.lex_state = 5}, [467] = {.lex_state = 5}, [468] = {.lex_state = 5}, - [469] = {.lex_state = 5}, - [470] = {.lex_state = 24}, + [469] = {.lex_state = 25}, + [470] = {.lex_state = 5}, [471] = {.lex_state = 5}, - [472] = {.lex_state = 5}, - [473] = {.lex_state = 25}, - [474] = {.lex_state = 25}, - [475] = {.lex_state = 25}, - [476] = {.lex_state = 25}, - [477] = {.lex_state = 25}, - [478] = {.lex_state = 25}, - [479] = {.lex_state = 25}, + [472] = {.lex_state = 4}, + [473] = {.lex_state = 5}, + [474] = {.lex_state = 5}, + [475] = {.lex_state = 5}, + [476] = {.lex_state = 24}, + [477] = {.lex_state = 24}, + [478] = {.lex_state = 24}, + [479] = {.lex_state = 24}, [480] = {.lex_state = 24}, - [481] = {.lex_state = 25}, - [482] = {.lex_state = 25}, - [483] = {.lex_state = 25}, - [484] = {.lex_state = 25}, - [485] = {.lex_state = 25}, - [486] = {.lex_state = 25}, + [481] = {.lex_state = 24}, + [482] = {.lex_state = 24}, + [483] = {.lex_state = 23}, + [484] = {.lex_state = 24}, + [485] = {.lex_state = 24}, + [486] = {.lex_state = 24}, [487] = {.lex_state = 24}, - [488] = {.lex_state = 25}, - [489] = {.lex_state = 25}, + [488] = {.lex_state = 24}, + [489] = {.lex_state = 24}, [490] = {.lex_state = 25}, - [491] = {.lex_state = 25}, - [492] = {.lex_state = 25}, + [491] = {.lex_state = 24}, + [492] = {.lex_state = 24}, [493] = {.lex_state = 24}, - [494] = {.lex_state = 25}, - [495] = {.lex_state = 25}, + [494] = {.lex_state = 24}, + [495] = {.lex_state = 24}, [496] = {.lex_state = 25}, - [497] = {.lex_state = 25}, + [497] = {.lex_state = 24}, [498] = {.lex_state = 24}, - [499] = {.lex_state = 25}, - [500] = {.lex_state = 25}, + [499] = {.lex_state = 24}, + [500] = {.lex_state = 24}, [501] = {.lex_state = 25}, [502] = {.lex_state = 24}, - [503] = {.lex_state = 25}, - [504] = {.lex_state = 25}, - [505] = {.lex_state = 24}, - [506] = {.lex_state = 25}, + [503] = {.lex_state = 24}, + [504] = {.lex_state = 24}, + [505] = {.lex_state = 25}, + [506] = {.lex_state = 24}, [507] = {.lex_state = 24}, - [508] = {.lex_state = 24}, + [508] = {.lex_state = 25}, [509] = {.lex_state = 24}, - [510] = {.lex_state = 24}, + [510] = {.lex_state = 25}, [511] = {.lex_state = 25}, - [512] = {.lex_state = 25}, + [512] = {.lex_state = 5}, [513] = {.lex_state = 25}, - [514] = {.lex_state = 25}, - [515] = {.lex_state = 25}, - [516] = {.lex_state = 25}, - [517] = {.lex_state = 25}, - [518] = {.lex_state = 25}, + [514] = {.lex_state = 24}, + [515] = {.lex_state = 24}, + [516] = {.lex_state = 24}, + [517] = {.lex_state = 24}, + [518] = {.lex_state = 24}, [519] = {.lex_state = 24}, - [520] = {.lex_state = 5}, - [521] = {.lex_state = 5}, - [522] = {.lex_state = 24}, + [520] = {.lex_state = 24}, + [521] = {.lex_state = 24}, + [522] = {.lex_state = 25}, [523] = {.lex_state = 5}, - [524] = {.lex_state = 24}, - [525] = {.lex_state = 5}, + [524] = {.lex_state = 25}, + [525] = {.lex_state = 25}, [526] = {.lex_state = 5}, - [527] = {.lex_state = 5}, + [527] = {.lex_state = 25}, [528] = {.lex_state = 25}, - [529] = {.lex_state = 24}, - [530] = {.lex_state = 5}, - [531] = {.lex_state = 5}, - [532] = {.lex_state = 5}, + [529] = {.lex_state = 25}, + [530] = {.lex_state = 25}, + [531] = {.lex_state = 24}, + [532] = {.lex_state = 25}, [533] = {.lex_state = 5}, [534] = {.lex_state = 5}, [535] = {.lex_state = 5}, [536] = {.lex_state = 5}, - [537] = {.lex_state = 24}, + [537] = {.lex_state = 5}, [538] = {.lex_state = 5}, - [539] = {.lex_state = 24}, - [540] = {.lex_state = 24}, - [541] = {.lex_state = 5}, - [542] = {.lex_state = 24}, - [543] = {.lex_state = 5}, - [544] = {.lex_state = 5}, - [545] = {.lex_state = 5}, - [546] = {.lex_state = 5}, - [547] = {.lex_state = 5}, - [548] = {.lex_state = 24}, - [549] = {.lex_state = 24}, + [539] = {.lex_state = 5}, + [540] = {.lex_state = 5}, + [541] = {.lex_state = 25}, + [542] = {.lex_state = 25}, + [543] = {.lex_state = 25}, + [544] = {.lex_state = 25}, + [545] = {.lex_state = 25}, + [546] = {.lex_state = 25}, + [547] = {.lex_state = 25}, + [548] = {.lex_state = 5}, + [549] = {.lex_state = 5}, [550] = {.lex_state = 25}, [551] = {.lex_state = 25}, [552] = {.lex_state = 25}, - [553] = {.lex_state = 25}, - [554] = {.lex_state = 25}, - [555] = {.lex_state = 25}, - [556] = {.lex_state = 25}, + [553] = {.lex_state = 24}, + [554] = {.lex_state = 24}, + [555] = {.lex_state = 24}, + [556] = {.lex_state = 24}, [557] = {.lex_state = 24}, - [558] = {.lex_state = 25}, - [559] = {.lex_state = 25}, + [558] = {.lex_state = 24}, + [559] = {.lex_state = 24}, [560] = {.lex_state = 25}, - [561] = {.lex_state = 25}, - [562] = {.lex_state = 25}, - [563] = {.lex_state = 25}, - [564] = {.lex_state = 25}, - [565] = {.lex_state = 25}, - [566] = {.lex_state = 25}, - [567] = {.lex_state = 25}, - [568] = {.lex_state = 25}, - [569] = {.lex_state = 25}, - [570] = {.lex_state = 25}, - [571] = {.lex_state = 25}, - [572] = {.lex_state = 25}, - [573] = {.lex_state = 25}, - [574] = {.lex_state = 25}, - [575] = {.lex_state = 25}, - [576] = {.lex_state = 25}, - [577] = {.lex_state = 25}, - [578] = {.lex_state = 25}, - [579] = {.lex_state = 5}, - [580] = {.lex_state = 5}, - [581] = {.lex_state = 5}, - [582] = {.lex_state = 24}, - [583] = {.lex_state = 24}, - [584] = {.lex_state = 26, .external_lex_state = 2}, - [585] = {.lex_state = 24}, - [586] = {.lex_state = 24}, - [587] = {.lex_state = 24}, - [588] = {.lex_state = 24}, - [589] = {.lex_state = 24}, - [590] = {.lex_state = 24}, - [591] = {.lex_state = 24}, + [561] = {.lex_state = 24}, + [562] = {.lex_state = 24}, + [563] = {.lex_state = 24}, + [564] = {.lex_state = 24}, + [565] = {.lex_state = 24}, + [566] = {.lex_state = 24}, + [567] = {.lex_state = 24}, + [568] = {.lex_state = 24}, + [569] = {.lex_state = 24}, + [570] = {.lex_state = 24}, + [571] = {.lex_state = 24}, + [572] = {.lex_state = 24}, + [573] = {.lex_state = 24}, + [574] = {.lex_state = 24}, + [575] = {.lex_state = 24}, + [576] = {.lex_state = 24}, + [577] = {.lex_state = 24}, + [578] = {.lex_state = 24}, + [579] = {.lex_state = 24}, + [580] = {.lex_state = 24}, + [581] = {.lex_state = 24}, + [582] = {.lex_state = 4}, + [583] = {.lex_state = 4}, + [584] = {.lex_state = 4}, + [585] = {.lex_state = 4}, + [586] = {.lex_state = 4}, + [587] = {.lex_state = 4}, + [588] = {.lex_state = 4}, + [589] = {.lex_state = 26, .external_lex_state = 2}, + [590] = {.lex_state = 4}, + [591] = {.lex_state = 4}, [592] = {.lex_state = 4}, [593] = {.lex_state = 4}, [594] = {.lex_state = 4}, - [595] = {.lex_state = 5}, + [595] = {.lex_state = 4}, [596] = {.lex_state = 4}, [597] = {.lex_state = 4}, [598] = {.lex_state = 4}, @@ -17911,7 +15687,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [605] = {.lex_state = 4}, [606] = {.lex_state = 4}, [607] = {.lex_state = 4}, - [608] = {.lex_state = 24}, + [608] = {.lex_state = 4}, [609] = {.lex_state = 4}, [610] = {.lex_state = 4}, [611] = {.lex_state = 4}, @@ -17919,9 +15695,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [613] = {.lex_state = 4}, [614] = {.lex_state = 4}, [615] = {.lex_state = 4}, - [616] = {.lex_state = 23}, + [616] = {.lex_state = 4}, [617] = {.lex_state = 4}, - [618] = {.lex_state = 4}, + [618] = {.lex_state = 25}, [619] = {.lex_state = 4}, [620] = {.lex_state = 4}, [621] = {.lex_state = 4}, @@ -17940,18 +15716,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [634] = {.lex_state = 4}, [635] = {.lex_state = 4}, [636] = {.lex_state = 4}, - [637] = {.lex_state = 4}, - [638] = {.lex_state = 24}, - [639] = {.lex_state = 24}, - [640] = {.lex_state = 24}, - [641] = {.lex_state = 24}, - [642] = {.lex_state = 24}, - [643] = {.lex_state = 24}, - [644] = {.lex_state = 24}, - [645] = {.lex_state = 24}, - [646] = {.lex_state = 24}, + [637] = {.lex_state = 25}, + [638] = {.lex_state = 25}, + [639] = {.lex_state = 25}, + [640] = {.lex_state = 25}, + [641] = {.lex_state = 25}, + [642] = {.lex_state = 25}, + [643] = {.lex_state = 25}, + [644] = {.lex_state = 23}, + [645] = {.lex_state = 25}, + [646] = {.lex_state = 25}, [647] = {.lex_state = 5}, - [648] = {.lex_state = 23}, + [648] = {.lex_state = 8, .external_lex_state = 2}, [649] = {.lex_state = 23}, [650] = {.lex_state = 23}, [651] = {.lex_state = 23}, @@ -17959,66 +15735,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [653] = {.lex_state = 23}, [654] = {.lex_state = 23}, [655] = {.lex_state = 23}, - [656] = {.lex_state = 4}, + [656] = {.lex_state = 23}, [657] = {.lex_state = 23}, [658] = {.lex_state = 5}, - [659] = {.lex_state = 11, .external_lex_state = 2}, - [660] = {.lex_state = 24}, - [661] = {.lex_state = 8, .external_lex_state = 2}, - [662] = {.lex_state = 16}, - [663] = {.lex_state = 16}, - [664] = {.lex_state = 26}, - [665] = {.lex_state = 4}, - [666] = {.lex_state = 23}, - [667] = {.lex_state = 25}, - [668] = {.lex_state = 10, .external_lex_state = 2}, + [659] = {.lex_state = 25}, + [660] = {.lex_state = 10, .external_lex_state = 2}, + [661] = {.lex_state = 26}, + [662] = {.lex_state = 4}, + [663] = {.lex_state = 24}, + [664] = {.lex_state = 24}, + [665] = {.lex_state = 12, .external_lex_state = 2}, + [666] = {.lex_state = 11, .external_lex_state = 2}, + [667] = {.lex_state = 23}, + [668] = {.lex_state = 4}, [669] = {.lex_state = 25}, - [670] = {.lex_state = 24}, - [671] = {.lex_state = 12, .external_lex_state = 2}, - [672] = {.lex_state = 23}, + [670] = {.lex_state = 23}, + [671] = {.lex_state = 23}, + [672] = {.lex_state = 25}, [673] = {.lex_state = 23}, - [674] = {.lex_state = 23}, + [674] = {.lex_state = 4}, [675] = {.lex_state = 23}, - [676] = {.lex_state = 16}, + [676] = {.lex_state = 23}, [677] = {.lex_state = 23}, - [678] = {.lex_state = 25}, - [679] = {.lex_state = 4}, - [680] = {.lex_state = 5}, - [681] = {.lex_state = 5}, - [682] = {.lex_state = 5}, - [683] = {.lex_state = 5}, - [684] = {.lex_state = 5}, - [685] = {.lex_state = 23}, + [678] = {.lex_state = 23}, + [679] = {.lex_state = 23}, + [680] = {.lex_state = 23}, + [681] = {.lex_state = 23}, + [682] = {.lex_state = 23}, + [683] = {.lex_state = 4}, + [684] = {.lex_state = 23}, + [685] = {.lex_state = 24}, [686] = {.lex_state = 23}, - [687] = {.lex_state = 23}, - [688] = {.lex_state = 5}, - [689] = {.lex_state = 16}, - [690] = {.lex_state = 5}, - [691] = {.lex_state = 5}, + [687] = {.lex_state = 4}, + [688] = {.lex_state = 23}, + [689] = {.lex_state = 23}, + [690] = {.lex_state = 23}, + [691] = {.lex_state = 23}, [692] = {.lex_state = 23}, - [693] = {.lex_state = 23}, - [694] = {.lex_state = 23}, - [695] = {.lex_state = 23}, - [696] = {.lex_state = 23}, - [697] = {.lex_state = 23}, + [693] = {.lex_state = 5}, + [694] = {.lex_state = 5}, + [695] = {.lex_state = 5}, + [696] = {.lex_state = 5}, + [697] = {.lex_state = 5}, [698] = {.lex_state = 23}, - [699] = {.lex_state = 23}, - [700] = {.lex_state = 23}, - [701] = {.lex_state = 16}, - [702] = {.lex_state = 23}, - [703] = {.lex_state = 23}, + [699] = {.lex_state = 5}, + [700] = {.lex_state = 5}, + [701] = {.lex_state = 23}, + [702] = {.lex_state = 24}, + [703] = {.lex_state = 5}, [704] = {.lex_state = 23}, [705] = {.lex_state = 23}, [706] = {.lex_state = 23}, - [707] = {.lex_state = 25}, + [707] = {.lex_state = 5}, [708] = {.lex_state = 23}, [709] = {.lex_state = 23}, - [710] = {.lex_state = 12}, - [711] = {.lex_state = 16}, + [710] = {.lex_state = 23}, + [711] = {.lex_state = 23}, [712] = {.lex_state = 23}, [713] = {.lex_state = 23}, [714] = {.lex_state = 23}, - [715] = {.lex_state = 23}, + [715] = {.lex_state = 12}, [716] = {.lex_state = 23}, [717] = {.lex_state = 23}, [718] = {.lex_state = 23}, @@ -18039,76 +15815,76 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [733] = {.lex_state = 23}, [734] = {.lex_state = 23}, [735] = {.lex_state = 23}, - [736] = {.lex_state = 16}, + [736] = {.lex_state = 23}, [737] = {.lex_state = 23}, [738] = {.lex_state = 23}, [739] = {.lex_state = 23}, [740] = {.lex_state = 23}, - [741] = {.lex_state = 24}, - [742] = {.lex_state = 23}, + [741] = {.lex_state = 23}, + [742] = {.lex_state = 5}, [743] = {.lex_state = 23}, [744] = {.lex_state = 23}, - [745] = {.lex_state = 23}, - [746] = {.lex_state = 23}, + [745] = {.lex_state = 25}, + [746] = {.lex_state = 10}, [747] = {.lex_state = 23}, [748] = {.lex_state = 23}, [749] = {.lex_state = 23}, - [750] = {.lex_state = 11}, + [750] = {.lex_state = 23}, [751] = {.lex_state = 23}, [752] = {.lex_state = 23}, - [753] = {.lex_state = 23}, - [754] = {.lex_state = 4}, - [755] = {.lex_state = 23}, - [756] = {.lex_state = 23}, + [753] = {.lex_state = 24}, + [754] = {.lex_state = 24}, + [755] = {.lex_state = 24}, + [756] = {.lex_state = 24}, [757] = {.lex_state = 24}, - [758] = {.lex_state = 23}, - [759] = {.lex_state = 23}, + [758] = {.lex_state = 24}, + [759] = {.lex_state = 25}, [760] = {.lex_state = 24}, - [761] = {.lex_state = 16}, - [762] = {.lex_state = 5}, - [763] = {.lex_state = 24}, - [764] = {.lex_state = 25}, - [765] = {.lex_state = 25}, + [761] = {.lex_state = 23}, + [762] = {.lex_state = 25}, + [763] = {.lex_state = 8}, + [764] = {.lex_state = 23}, + [765] = {.lex_state = 24}, [766] = {.lex_state = 25}, - [767] = {.lex_state = 25}, - [768] = {.lex_state = 25}, - [769] = {.lex_state = 24}, - [770] = {.lex_state = 24}, - [771] = {.lex_state = 25}, - [772] = {.lex_state = 25}, + [767] = {.lex_state = 23}, + [768] = {.lex_state = 23}, + [769] = {.lex_state = 23}, + [770] = {.lex_state = 23}, + [771] = {.lex_state = 23}, + [772] = {.lex_state = 23}, [773] = {.lex_state = 25}, - [774] = {.lex_state = 24}, + [774] = {.lex_state = 11}, [775] = {.lex_state = 23}, [776] = {.lex_state = 23}, [777] = {.lex_state = 23}, - [778] = {.lex_state = 16}, - [779] = {.lex_state = 5}, + [778] = {.lex_state = 23}, + [779] = {.lex_state = 23}, [780] = {.lex_state = 23}, [781] = {.lex_state = 23}, [782] = {.lex_state = 23}, [783] = {.lex_state = 23}, [784] = {.lex_state = 23}, - [785] = {.lex_state = 24}, + [785] = {.lex_state = 5}, [786] = {.lex_state = 23}, [787] = {.lex_state = 23}, [788] = {.lex_state = 23}, [789] = {.lex_state = 23}, [790] = {.lex_state = 23}, [791] = {.lex_state = 23}, - [792] = {.lex_state = 23}, + [792] = {.lex_state = 25}, [793] = {.lex_state = 23}, [794] = {.lex_state = 23}, [795] = {.lex_state = 23}, [796] = {.lex_state = 23}, [797] = {.lex_state = 23}, [798] = {.lex_state = 23}, - [799] = {.lex_state = 24}, - [800] = {.lex_state = 10}, + [799] = {.lex_state = 23}, + [800] = {.lex_state = 23}, [801] = {.lex_state = 23}, - [802] = {.lex_state = 16}, + [802] = {.lex_state = 23}, [803] = {.lex_state = 23}, - [804] = {.lex_state = 8}, - [805] = {.lex_state = 23}, + [804] = {.lex_state = 25}, + [805] = {.lex_state = 25}, [806] = {.lex_state = 23}, [807] = {.lex_state = 23}, [808] = {.lex_state = 23}, @@ -18116,93 +15892,93 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [810] = {.lex_state = 23}, [811] = {.lex_state = 23}, [812] = {.lex_state = 23}, - [813] = {.lex_state = 23}, - [814] = {.lex_state = 23}, + [813] = {.lex_state = 4}, + [814] = {.lex_state = 4}, [815] = {.lex_state = 23}, - [816] = {.lex_state = 23}, - [817] = {.lex_state = 16}, - [818] = {.lex_state = 23}, - [819] = {.lex_state = 23}, - [820] = {.lex_state = 5}, - [821] = {.lex_state = 23}, - [822] = {.lex_state = 23}, - [823] = {.lex_state = 4}, - [824] = {.lex_state = 4}, - [825] = {.lex_state = 4}, - [826] = {.lex_state = 4}, - [827] = {.lex_state = 4}, - [828] = {.lex_state = 4}, - [829] = {.lex_state = 24}, - [830] = {.lex_state = 4}, - [831] = {.lex_state = 4}, + [816] = {.lex_state = 4}, + [817] = {.lex_state = 25}, + [818] = {.lex_state = 4}, + [819] = {.lex_state = 4}, + [820] = {.lex_state = 4}, + [821] = {.lex_state = 4}, + [822] = {.lex_state = 24}, + [823] = {.lex_state = 5}, + [824] = {.lex_state = 25}, + [825] = {.lex_state = 24}, + [826] = {.lex_state = 25}, + [827] = {.lex_state = 25}, + [828] = {.lex_state = 25}, + [829] = {.lex_state = 25}, + [830] = {.lex_state = 5}, + [831] = {.lex_state = 25}, [832] = {.lex_state = 25}, - [833] = {.lex_state = 5}, - [834] = {.lex_state = 24}, - [835] = {.lex_state = 24}, - [836] = {.lex_state = 24}, - [837] = {.lex_state = 24}, - [838] = {.lex_state = 24}, - [839] = {.lex_state = 24}, - [840] = {.lex_state = 24}, - [841] = {.lex_state = 24}, - [842] = {.lex_state = 24}, - [843] = {.lex_state = 24}, - [844] = {.lex_state = 24}, - [845] = {.lex_state = 24}, - [846] = {.lex_state = 24}, - [847] = {.lex_state = 24}, - [848] = {.lex_state = 24}, - [849] = {.lex_state = 24}, - [850] = {.lex_state = 24}, - [851] = {.lex_state = 24}, - [852] = {.lex_state = 24}, - [853] = {.lex_state = 24}, - [854] = {.lex_state = 24}, - [855] = {.lex_state = 24}, - [856] = {.lex_state = 24}, - [857] = {.lex_state = 24}, - [858] = {.lex_state = 4}, - [859] = {.lex_state = 4}, - [860] = {.lex_state = 24}, + [833] = {.lex_state = 25}, + [834] = {.lex_state = 25}, + [835] = {.lex_state = 25}, + [836] = {.lex_state = 25}, + [837] = {.lex_state = 25}, + [838] = {.lex_state = 25}, + [839] = {.lex_state = 25}, + [840] = {.lex_state = 25}, + [841] = {.lex_state = 25}, + [842] = {.lex_state = 25}, + [843] = {.lex_state = 25}, + [844] = {.lex_state = 25}, + [845] = {.lex_state = 25}, + [846] = {.lex_state = 25}, + [847] = {.lex_state = 25}, + [848] = {.lex_state = 25}, + [849] = {.lex_state = 25}, + [850] = {.lex_state = 25}, + [851] = {.lex_state = 25}, + [852] = {.lex_state = 25}, + [853] = {.lex_state = 25}, + [854] = {.lex_state = 25}, + [855] = {.lex_state = 25}, + [856] = {.lex_state = 25}, + [857] = {.lex_state = 25}, + [858] = {.lex_state = 25}, + [859] = {.lex_state = 25}, + [860] = {.lex_state = 25}, [861] = {.lex_state = 24}, - [862] = {.lex_state = 24}, - [863] = {.lex_state = 24}, + [862] = {.lex_state = 4}, + [863] = {.lex_state = 4}, [864] = {.lex_state = 24}, - [865] = {.lex_state = 16}, - [866] = {.lex_state = 24}, - [867] = {.lex_state = 24}, - [868] = {.lex_state = 24}, - [869] = {.lex_state = 24}, + [865] = {.lex_state = 24}, + [866] = {.lex_state = 25}, + [867] = {.lex_state = 25}, + [868] = {.lex_state = 25}, + [869] = {.lex_state = 25}, [870] = {.lex_state = 25}, - [871] = {.lex_state = 24}, + [871] = {.lex_state = 25}, [872] = {.lex_state = 25}, [873] = {.lex_state = 25}, [874] = {.lex_state = 25}, [875] = {.lex_state = 25}, - [876] = {.lex_state = 24}, - [877] = {.lex_state = 24}, - [878] = {.lex_state = 24}, - [879] = {.lex_state = 4}, - [880] = {.lex_state = 4}, - [881] = {.lex_state = 4}, - [882] = {.lex_state = 4}, + [876] = {.lex_state = 25}, + [877] = {.lex_state = 25}, + [878] = {.lex_state = 25}, + [879] = {.lex_state = 25}, + [880] = {.lex_state = 25}, + [881] = {.lex_state = 25}, + [882] = {.lex_state = 25}, [883] = {.lex_state = 4}, [884] = {.lex_state = 4}, [885] = {.lex_state = 4}, [886] = {.lex_state = 4}, [887] = {.lex_state = 4}, [888] = {.lex_state = 4}, - [889] = {.lex_state = 24}, + [889] = {.lex_state = 4}, [890] = {.lex_state = 4}, - [891] = {.lex_state = 24}, + [891] = {.lex_state = 4}, [892] = {.lex_state = 4}, - [893] = {.lex_state = 4}, + [893] = {.lex_state = 25}, [894] = {.lex_state = 4}, - [895] = {.lex_state = 24}, + [895] = {.lex_state = 5}, [896] = {.lex_state = 4}, [897] = {.lex_state = 4}, [898] = {.lex_state = 4}, - [899] = {.lex_state = 4}, + [899] = {.lex_state = 25}, [900] = {.lex_state = 4}, [901] = {.lex_state = 4}, [902] = {.lex_state = 4}, @@ -18215,70 +15991,70 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [909] = {.lex_state = 4}, [910] = {.lex_state = 4}, [911] = {.lex_state = 4}, - [912] = {.lex_state = 24}, + [912] = {.lex_state = 4}, [913] = {.lex_state = 4}, [914] = {.lex_state = 4}, - [915] = {.lex_state = 24}, - [916] = {.lex_state = 24}, - [917] = {.lex_state = 24}, - [918] = {.lex_state = 24}, - [919] = {.lex_state = 24}, - [920] = {.lex_state = 24}, - [921] = {.lex_state = 24}, - [922] = {.lex_state = 24}, - [923] = {.lex_state = 24}, - [924] = {.lex_state = 24}, - [925] = {.lex_state = 24}, - [926] = {.lex_state = 5}, - [927] = {.lex_state = 24}, - [928] = {.lex_state = 24}, - [929] = {.lex_state = 24}, - [930] = {.lex_state = 24}, - [931] = {.lex_state = 24}, - [932] = {.lex_state = 24}, - [933] = {.lex_state = 24}, - [934] = {.lex_state = 24}, - [935] = {.lex_state = 24}, - [936] = {.lex_state = 24}, - [937] = {.lex_state = 24}, - [938] = {.lex_state = 24}, - [939] = {.lex_state = 24}, - [940] = {.lex_state = 24}, - [941] = {.lex_state = 24}, - [942] = {.lex_state = 24}, - [943] = {.lex_state = 24}, - [944] = {.lex_state = 24}, - [945] = {.lex_state = 24}, - [946] = {.lex_state = 24}, - [947] = {.lex_state = 24}, - [948] = {.lex_state = 24}, - [949] = {.lex_state = 24}, - [950] = {.lex_state = 24}, - [951] = {.lex_state = 4}, - [952] = {.lex_state = 24}, - [953] = {.lex_state = 24}, - [954] = {.lex_state = 24}, - [955] = {.lex_state = 24}, - [956] = {.lex_state = 24}, - [957] = {.lex_state = 24}, - [958] = {.lex_state = 24}, - [959] = {.lex_state = 24}, - [960] = {.lex_state = 24}, - [961] = {.lex_state = 24}, - [962] = {.lex_state = 4}, - [963] = {.lex_state = 4}, - [964] = {.lex_state = 24}, - [965] = {.lex_state = 4}, + [915] = {.lex_state = 4}, + [916] = {.lex_state = 25}, + [917] = {.lex_state = 4}, + [918] = {.lex_state = 4}, + [919] = {.lex_state = 4}, + [920] = {.lex_state = 25}, + [921] = {.lex_state = 25}, + [922] = {.lex_state = 25}, + [923] = {.lex_state = 25}, + [924] = {.lex_state = 25}, + [925] = {.lex_state = 25}, + [926] = {.lex_state = 25}, + [927] = {.lex_state = 25}, + [928] = {.lex_state = 25}, + [929] = {.lex_state = 25}, + [930] = {.lex_state = 25}, + [931] = {.lex_state = 25}, + [932] = {.lex_state = 25}, + [933] = {.lex_state = 25}, + [934] = {.lex_state = 25}, + [935] = {.lex_state = 25}, + [936] = {.lex_state = 25}, + [937] = {.lex_state = 25}, + [938] = {.lex_state = 25}, + [939] = {.lex_state = 25}, + [940] = {.lex_state = 25}, + [941] = {.lex_state = 25}, + [942] = {.lex_state = 25}, + [943] = {.lex_state = 25}, + [944] = {.lex_state = 25}, + [945] = {.lex_state = 25}, + [946] = {.lex_state = 25}, + [947] = {.lex_state = 25}, + [948] = {.lex_state = 25}, + [949] = {.lex_state = 25}, + [950] = {.lex_state = 25}, + [951] = {.lex_state = 25}, + [952] = {.lex_state = 25}, + [953] = {.lex_state = 25}, + [954] = {.lex_state = 25}, + [955] = {.lex_state = 25}, + [956] = {.lex_state = 4}, + [957] = {.lex_state = 25}, + [958] = {.lex_state = 25}, + [959] = {.lex_state = 25}, + [960] = {.lex_state = 25}, + [961] = {.lex_state = 25}, + [962] = {.lex_state = 25}, + [963] = {.lex_state = 25}, + [964] = {.lex_state = 25}, + [965] = {.lex_state = 25}, [966] = {.lex_state = 24}, [967] = {.lex_state = 4}, [968] = {.lex_state = 4}, - [969] = {.lex_state = 4}, - [970] = {.lex_state = 24}, - [971] = {.lex_state = 4}, + [969] = {.lex_state = 25}, + [970] = {.lex_state = 4}, + [971] = {.lex_state = 25}, [972] = {.lex_state = 4}, [973] = {.lex_state = 4}, [974] = {.lex_state = 4}, - [975] = {.lex_state = 4}, + [975] = {.lex_state = 24}, [976] = {.lex_state = 4}, [977] = {.lex_state = 4}, [978] = {.lex_state = 4}, @@ -18292,56 +16068,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [986] = {.lex_state = 4}, [987] = {.lex_state = 4}, [988] = {.lex_state = 4}, - [989] = {.lex_state = 24}, - [990] = {.lex_state = 24}, - [991] = {.lex_state = 24}, - [992] = {.lex_state = 24}, - [993] = {.lex_state = 24}, + [989] = {.lex_state = 4}, + [990] = {.lex_state = 4}, + [991] = {.lex_state = 4}, + [992] = {.lex_state = 4}, + [993] = {.lex_state = 4}, [994] = {.lex_state = 24}, [995] = {.lex_state = 24}, [996] = {.lex_state = 24}, [997] = {.lex_state = 24}, - [998] = {.lex_state = 25}, + [998] = {.lex_state = 24}, [999] = {.lex_state = 24}, [1000] = {.lex_state = 24}, - [1001] = {.lex_state = 25}, - [1002] = {.lex_state = 25}, - [1003] = {.lex_state = 25}, - [1004] = {.lex_state = 25}, - [1005] = {.lex_state = 25}, - [1006] = {.lex_state = 25}, - [1007] = {.lex_state = 25}, - [1008] = {.lex_state = 25}, - [1009] = {.lex_state = 25}, - [1010] = {.lex_state = 25}, - [1011] = {.lex_state = 25}, - [1012] = {.lex_state = 25}, - [1013] = {.lex_state = 25}, - [1014] = {.lex_state = 25}, - [1015] = {.lex_state = 25}, - [1016] = {.lex_state = 25}, - [1017] = {.lex_state = 25}, - [1018] = {.lex_state = 25}, - [1019] = {.lex_state = 25}, - [1020] = {.lex_state = 4}, - [1021] = {.lex_state = 4}, - [1022] = {.lex_state = 4}, - [1023] = {.lex_state = 4}, - [1024] = {.lex_state = 4}, + [1001] = {.lex_state = 24}, + [1002] = {.lex_state = 24}, + [1003] = {.lex_state = 24}, + [1004] = {.lex_state = 24}, + [1005] = {.lex_state = 24}, + [1006] = {.lex_state = 24}, + [1007] = {.lex_state = 24}, + [1008] = {.lex_state = 24}, + [1009] = {.lex_state = 24}, + [1010] = {.lex_state = 24}, + [1011] = {.lex_state = 24}, + [1012] = {.lex_state = 24}, + [1013] = {.lex_state = 24}, + [1014] = {.lex_state = 24}, + [1015] = {.lex_state = 24}, + [1016] = {.lex_state = 24}, + [1017] = {.lex_state = 24}, + [1018] = {.lex_state = 24}, + [1019] = {.lex_state = 24}, + [1020] = {.lex_state = 24}, + [1021] = {.lex_state = 5}, + [1022] = {.lex_state = 24}, + [1023] = {.lex_state = 24}, + [1024] = {.lex_state = 24}, [1025] = {.lex_state = 4}, [1026] = {.lex_state = 4}, [1027] = {.lex_state = 4}, - [1028] = {.lex_state = 24}, - [1029] = {.lex_state = 24}, - [1030] = {.lex_state = 24}, - [1031] = {.lex_state = 24}, + [1028] = {.lex_state = 4}, + [1029] = {.lex_state = 4}, + [1030] = {.lex_state = 4}, + [1031] = {.lex_state = 4}, [1032] = {.lex_state = 4}, - [1033] = {.lex_state = 24}, - [1034] = {.lex_state = 4}, - [1035] = {.lex_state = 4}, - [1036] = {.lex_state = 4}, + [1033] = {.lex_state = 25}, + [1034] = {.lex_state = 25}, + [1035] = {.lex_state = 25}, + [1036] = {.lex_state = 25}, [1037] = {.lex_state = 4}, - [1038] = {.lex_state = 4}, + [1038] = {.lex_state = 25}, [1039] = {.lex_state = 4}, [1040] = {.lex_state = 4}, [1041] = {.lex_state = 4}, @@ -18351,12 +16127,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1045] = {.lex_state = 4}, [1046] = {.lex_state = 4}, [1047] = {.lex_state = 4}, - [1048] = {.lex_state = 25}, + [1048] = {.lex_state = 4}, [1049] = {.lex_state = 4}, [1050] = {.lex_state = 4}, [1051] = {.lex_state = 4}, [1052] = {.lex_state = 4}, - [1053] = {.lex_state = 4}, + [1053] = {.lex_state = 24}, [1054] = {.lex_state = 4}, [1055] = {.lex_state = 4}, [1056] = {.lex_state = 4}, @@ -18371,54 +16147,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1065] = {.lex_state = 4}, [1066] = {.lex_state = 4}, [1067] = {.lex_state = 4}, - [1068] = {.lex_state = 25}, - [1069] = {.lex_state = 25}, - [1070] = {.lex_state = 25}, - [1071] = {.lex_state = 25}, - [1072] = {.lex_state = 25}, - [1073] = {.lex_state = 25}, - [1074] = {.lex_state = 25}, - [1075] = {.lex_state = 25}, - [1076] = {.lex_state = 5}, - [1077] = {.lex_state = 5}, - [1078] = {.lex_state = 5}, - [1079] = {.lex_state = 25}, - [1080] = {.lex_state = 25}, - [1081] = {.lex_state = 25}, - [1082] = {.lex_state = 25}, - [1083] = {.lex_state = 25}, - [1084] = {.lex_state = 25}, - [1085] = {.lex_state = 25}, - [1086] = {.lex_state = 25}, - [1087] = {.lex_state = 25}, - [1088] = {.lex_state = 25}, - [1089] = {.lex_state = 25}, - [1090] = {.lex_state = 25}, - [1091] = {.lex_state = 25}, - [1092] = {.lex_state = 25}, - [1093] = {.lex_state = 25}, - [1094] = {.lex_state = 25}, - [1095] = {.lex_state = 25}, - [1096] = {.lex_state = 25}, - [1097] = {.lex_state = 25}, - [1098] = {.lex_state = 5}, - [1099] = {.lex_state = 5}, - [1100] = {.lex_state = 5}, - [1101] = {.lex_state = 5}, - [1102] = {.lex_state = 5}, + [1068] = {.lex_state = 4}, + [1069] = {.lex_state = 4}, + [1070] = {.lex_state = 4}, + [1071] = {.lex_state = 4}, + [1072] = {.lex_state = 4}, + [1073] = {.lex_state = 24}, + [1074] = {.lex_state = 24}, + [1075] = {.lex_state = 24}, + [1076] = {.lex_state = 24}, + [1077] = {.lex_state = 24}, + [1078] = {.lex_state = 24}, + [1079] = {.lex_state = 24}, + [1080] = {.lex_state = 24}, + [1081] = {.lex_state = 24}, + [1082] = {.lex_state = 5}, + [1083] = {.lex_state = 5}, + [1084] = {.lex_state = 24}, + [1085] = {.lex_state = 24}, + [1086] = {.lex_state = 24}, + [1087] = {.lex_state = 24}, + [1088] = {.lex_state = 24}, + [1089] = {.lex_state = 24}, + [1090] = {.lex_state = 24}, + [1091] = {.lex_state = 24}, + [1092] = {.lex_state = 24}, + [1093] = {.lex_state = 24}, + [1094] = {.lex_state = 5}, + [1095] = {.lex_state = 24}, + [1096] = {.lex_state = 24}, + [1097] = {.lex_state = 24}, + [1098] = {.lex_state = 24}, + [1099] = {.lex_state = 24}, + [1100] = {.lex_state = 24}, + [1101] = {.lex_state = 24}, + [1102] = {.lex_state = 24}, [1103] = {.lex_state = 5}, [1104] = {.lex_state = 5}, [1105] = {.lex_state = 5}, [1106] = {.lex_state = 5}, [1107] = {.lex_state = 5}, - [1108] = {.lex_state = 25}, + [1108] = {.lex_state = 5}, [1109] = {.lex_state = 5}, - [1110] = {.lex_state = 25}, + [1110] = {.lex_state = 5}, [1111] = {.lex_state = 5}, [1112] = {.lex_state = 5}, - [1113] = {.lex_state = 5}, - [1114] = {.lex_state = 25}, - [1115] = {.lex_state = 5}, + [1113] = {.lex_state = 24}, + [1114] = {.lex_state = 5}, + [1115] = {.lex_state = 24}, [1116] = {.lex_state = 5}, [1117] = {.lex_state = 5}, [1118] = {.lex_state = 5}, @@ -18434,65 +16210,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1128] = {.lex_state = 5}, [1129] = {.lex_state = 5}, [1130] = {.lex_state = 5}, - [1131] = {.lex_state = 25}, + [1131] = {.lex_state = 5}, [1132] = {.lex_state = 5}, [1133] = {.lex_state = 5}, [1134] = {.lex_state = 5}, - [1135] = {.lex_state = 25}, - [1136] = {.lex_state = 25}, - [1137] = {.lex_state = 25}, - [1138] = {.lex_state = 25}, - [1139] = {.lex_state = 25}, - [1140] = {.lex_state = 25}, - [1141] = {.lex_state = 25}, - [1142] = {.lex_state = 16}, - [1143] = {.lex_state = 25}, - [1144] = {.lex_state = 25}, - [1145] = {.lex_state = 25}, - [1146] = {.lex_state = 25}, - [1147] = {.lex_state = 25}, - [1148] = {.lex_state = 25}, - [1149] = {.lex_state = 25}, - [1150] = {.lex_state = 25}, - [1151] = {.lex_state = 25}, - [1152] = {.lex_state = 25}, - [1153] = {.lex_state = 25}, - [1154] = {.lex_state = 25}, - [1155] = {.lex_state = 25}, - [1156] = {.lex_state = 25}, - [1157] = {.lex_state = 25}, - [1158] = {.lex_state = 25}, - [1159] = {.lex_state = 25}, - [1160] = {.lex_state = 25}, - [1161] = {.lex_state = 25}, - [1162] = {.lex_state = 25}, - [1163] = {.lex_state = 25}, - [1164] = {.lex_state = 25}, - [1165] = {.lex_state = 25}, - [1166] = {.lex_state = 25}, - [1167] = {.lex_state = 25}, - [1168] = {.lex_state = 25}, - [1169] = {.lex_state = 25}, - [1170] = {.lex_state = 5}, - [1171] = {.lex_state = 25}, - [1172] = {.lex_state = 25}, - [1173] = {.lex_state = 25}, - [1174] = {.lex_state = 25}, - [1175] = {.lex_state = 25}, - [1176] = {.lex_state = 25}, - [1177] = {.lex_state = 25}, - [1178] = {.lex_state = 25}, - [1179] = {.lex_state = 25}, - [1180] = {.lex_state = 25}, + [1135] = {.lex_state = 5}, + [1136] = {.lex_state = 24}, + [1137] = {.lex_state = 5}, + [1138] = {.lex_state = 5}, + [1139] = {.lex_state = 5}, + [1140] = {.lex_state = 24}, + [1141] = {.lex_state = 24}, + [1142] = {.lex_state = 24}, + [1143] = {.lex_state = 24}, + [1144] = {.lex_state = 24}, + [1145] = {.lex_state = 24}, + [1146] = {.lex_state = 24}, + [1147] = {.lex_state = 24}, + [1148] = {.lex_state = 24}, + [1149] = {.lex_state = 24}, + [1150] = {.lex_state = 24}, + [1151] = {.lex_state = 24}, + [1152] = {.lex_state = 24}, + [1153] = {.lex_state = 24}, + [1154] = {.lex_state = 24}, + [1155] = {.lex_state = 24}, + [1156] = {.lex_state = 24}, + [1157] = {.lex_state = 24}, + [1158] = {.lex_state = 24}, + [1159] = {.lex_state = 24}, + [1160] = {.lex_state = 24}, + [1161] = {.lex_state = 24}, + [1162] = {.lex_state = 24}, + [1163] = {.lex_state = 24}, + [1164] = {.lex_state = 24}, + [1165] = {.lex_state = 24}, + [1166] = {.lex_state = 24}, + [1167] = {.lex_state = 24}, + [1168] = {.lex_state = 24}, + [1169] = {.lex_state = 24}, + [1170] = {.lex_state = 24}, + [1171] = {.lex_state = 24}, + [1172] = {.lex_state = 24}, + [1173] = {.lex_state = 24}, + [1174] = {.lex_state = 24}, + [1175] = {.lex_state = 24}, + [1176] = {.lex_state = 5}, + [1177] = {.lex_state = 24}, + [1178] = {.lex_state = 24}, + [1179] = {.lex_state = 5}, + [1180] = {.lex_state = 5}, [1181] = {.lex_state = 5}, [1182] = {.lex_state = 5}, - [1183] = {.lex_state = 25}, + [1183] = {.lex_state = 5}, [1184] = {.lex_state = 5}, - [1185] = {.lex_state = 25}, + [1185] = {.lex_state = 5}, [1186] = {.lex_state = 5}, [1187] = {.lex_state = 5}, [1188] = {.lex_state = 5}, - [1189] = {.lex_state = 25}, + [1189] = {.lex_state = 5}, [1190] = {.lex_state = 5}, [1191] = {.lex_state = 5}, [1192] = {.lex_state = 5}, @@ -18511,20 +16287,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1205] = {.lex_state = 5}, [1206] = {.lex_state = 5}, [1207] = {.lex_state = 5}, - [1208] = {.lex_state = 25}, - [1209] = {.lex_state = 16}, - [1210] = {.lex_state = 16}, - [1211] = {.lex_state = 16}, + [1208] = {.lex_state = 5}, + [1209] = {.lex_state = 5}, + [1210] = {.lex_state = 5}, + [1211] = {.lex_state = 5}, [1212] = {.lex_state = 5}, - [1213] = {.lex_state = 24}, + [1213] = {.lex_state = 5}, [1214] = {.lex_state = 5}, - [1215] = {.lex_state = 16}, - [1216] = {.lex_state = 16}, - [1217] = {.lex_state = 16}, + [1215] = {.lex_state = 5}, + [1216] = {.lex_state = 24}, + [1217] = {.lex_state = 5}, [1218] = {.lex_state = 5}, [1219] = {.lex_state = 5}, - [1220] = {.lex_state = 16}, - [1221] = {.lex_state = 16}, + [1220] = {.lex_state = 5}, + [1221] = {.lex_state = 5}, [1222] = {.lex_state = 5}, [1223] = {.lex_state = 5}, [1224] = {.lex_state = 5}, @@ -18542,36 +16318,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1236] = {.lex_state = 5}, [1237] = {.lex_state = 5}, [1238] = {.lex_state = 5}, - [1239] = {.lex_state = 5}, + [1239] = {.lex_state = 4}, [1240] = {.lex_state = 5}, - [1241] = {.lex_state = 5}, - [1242] = {.lex_state = 5}, - [1243] = {.lex_state = 5}, - [1244] = {.lex_state = 5}, + [1241] = {.lex_state = 4}, + [1242] = {.lex_state = 4}, + [1243] = {.lex_state = 4}, + [1244] = {.lex_state = 4}, [1245] = {.lex_state = 5}, [1246] = {.lex_state = 5}, - [1247] = {.lex_state = 4}, - [1248] = {.lex_state = 4}, - [1249] = {.lex_state = 4}, - [1250] = {.lex_state = 4}, + [1247] = {.lex_state = 5}, + [1248] = {.lex_state = 5}, + [1249] = {.lex_state = 5}, + [1250] = {.lex_state = 5}, [1251] = {.lex_state = 5}, - [1252] = {.lex_state = 4}, - [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}, + [1252] = {.lex_state = 5}, + [1253] = {.lex_state = 16}, + [1254] = {.lex_state = 16}, + [1255] = {.lex_state = 16}, + [1256] = {.lex_state = 16}, + [1257] = {.lex_state = 16}, + [1258] = {.lex_state = 16}, + [1259] = {.lex_state = 16}, + [1260] = {.lex_state = 16}, + [1261] = {.lex_state = 16}, + [1262] = {.lex_state = 16}, + [1263] = {.lex_state = 16}, + [1264] = {.lex_state = 16}, + [1265] = {.lex_state = 16}, + [1266] = {.lex_state = 16}, + [1267] = {.lex_state = 16}, + [1268] = {.lex_state = 16}, [1269] = {.lex_state = 16}, [1270] = {.lex_state = 16}, [1271] = {.lex_state = 16}, @@ -18590,26 +16366,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1284] = {.lex_state = 16}, [1285] = {.lex_state = 16}, [1286] = {.lex_state = 16}, - [1287] = {.lex_state = 9}, - [1288] = {.lex_state = 9}, - [1289] = {.lex_state = 9}, - [1290] = {.lex_state = 14}, - [1291] = {.lex_state = 9}, - [1292] = {.lex_state = 14}, + [1287] = {.lex_state = 16}, + [1288] = {.lex_state = 16}, + [1289] = {.lex_state = 16}, + [1290] = {.lex_state = 16}, + [1291] = {.lex_state = 16}, + [1292] = {.lex_state = 9}, [1293] = {.lex_state = 9}, - [1294] = {.lex_state = 13, .external_lex_state = 2}, + [1294] = {.lex_state = 9}, [1295] = {.lex_state = 14}, [1296] = {.lex_state = 9}, - [1297] = {.lex_state = 9}, - [1298] = {.lex_state = 14}, - [1299] = {.lex_state = 13}, + [1297] = {.lex_state = 14}, + [1298] = {.lex_state = 9}, + [1299] = {.lex_state = 13, .external_lex_state = 2}, [1300] = {.lex_state = 14}, - [1301] = {.lex_state = 15, .external_lex_state = 2}, + [1301] = {.lex_state = 13}, [1302] = {.lex_state = 9}, - [1303] = {.lex_state = 9}, + [1303] = {.lex_state = 14}, [1304] = {.lex_state = 9}, - [1305] = {.lex_state = 9}, - [1306] = {.lex_state = 9}, + [1305] = {.lex_state = 14}, + [1306] = {.lex_state = 15, .external_lex_state = 2}, [1307] = {.lex_state = 9}, [1308] = {.lex_state = 9}, [1309] = {.lex_state = 9}, @@ -18633,7 +16409,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1327] = {.lex_state = 9}, [1328] = {.lex_state = 9}, [1329] = {.lex_state = 9}, - [1330] = {.lex_state = 9}, + [1330] = {.lex_state = 15}, [1331] = {.lex_state = 9}, [1332] = {.lex_state = 9}, [1333] = {.lex_state = 9}, @@ -18674,11 +16450,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1368] = {.lex_state = 9}, [1369] = {.lex_state = 9}, [1370] = {.lex_state = 9}, - [1371] = {.lex_state = 15}, + [1371] = {.lex_state = 9}, [1372] = {.lex_state = 9}, [1373] = {.lex_state = 9}, [1374] = {.lex_state = 9}, - [1375] = {.lex_state = 14}, + [1375] = {.lex_state = 9}, [1376] = {.lex_state = 9}, [1377] = {.lex_state = 9}, [1378] = {.lex_state = 9}, @@ -18700,20 +16476,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1394] = {.lex_state = 9}, [1395] = {.lex_state = 9}, [1396] = {.lex_state = 9}, - [1397] = {.lex_state = 14}, - [1398] = {.lex_state = 9}, + [1397] = {.lex_state = 9}, + [1398] = {.lex_state = 14}, [1399] = {.lex_state = 9}, [1400] = {.lex_state = 9}, - [1401] = {.lex_state = 9}, + [1401] = {.lex_state = 14}, [1402] = {.lex_state = 9}, [1403] = {.lex_state = 9}, [1404] = {.lex_state = 9}, - [1405] = {.lex_state = 14}, - [1406] = {.lex_state = 14}, - [1407] = {.lex_state = 14}, - [1408] = {.lex_state = 14}, - [1409] = {.lex_state = 14}, - [1410] = {.lex_state = 14}, + [1405] = {.lex_state = 9}, + [1406] = {.lex_state = 9}, + [1407] = {.lex_state = 9}, + [1408] = {.lex_state = 9}, + [1409] = {.lex_state = 9}, + [1410] = {.lex_state = 9}, [1411] = {.lex_state = 14}, [1412] = {.lex_state = 14}, [1413] = {.lex_state = 14}, @@ -18790,28 +16566,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1484] = {.lex_state = 14}, [1485] = {.lex_state = 14}, [1486] = {.lex_state = 14}, - [1487] = {.lex_state = 16}, - [1488] = {.lex_state = 16}, - [1489] = {.lex_state = 16}, - [1490] = {.lex_state = 16}, - [1491] = {.lex_state = 16}, - [1492] = {.lex_state = 16}, - [1493] = {.lex_state = 16}, + [1487] = {.lex_state = 14}, + [1488] = {.lex_state = 14}, + [1489] = {.lex_state = 14}, + [1490] = {.lex_state = 14}, + [1491] = {.lex_state = 14}, + [1492] = {.lex_state = 14}, + [1493] = {.lex_state = 14}, [1494] = {.lex_state = 16}, [1495] = {.lex_state = 16}, [1496] = {.lex_state = 16}, - [1497] = {.lex_state = 17, .external_lex_state = 2}, + [1497] = {.lex_state = 16}, [1498] = {.lex_state = 16}, [1499] = {.lex_state = 16}, [1500] = {.lex_state = 16}, - [1501] = {.lex_state = 17}, + [1501] = {.lex_state = 16}, [1502] = {.lex_state = 16}, [1503] = {.lex_state = 16}, [1504] = {.lex_state = 16}, [1505] = {.lex_state = 16}, [1506] = {.lex_state = 16}, - [1507] = {.lex_state = 16}, - [1508] = {.lex_state = 16}, + [1507] = {.lex_state = 17, .external_lex_state = 2}, + [1508] = {.lex_state = 17}, [1509] = {.lex_state = 16}, [1510] = {.lex_state = 16}, [1511] = {.lex_state = 16}, @@ -18873,26 +16649,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1567] = {.lex_state = 16}, [1568] = {.lex_state = 16}, [1569] = {.lex_state = 16}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 20}, - [1572] = {.lex_state = 20}, - [1573] = {.lex_state = 20}, - [1574] = {.lex_state = 20}, - [1575] = {.lex_state = 20}, - [1576] = {.lex_state = 20}, - [1577] = {.lex_state = 20}, + [1570] = {.lex_state = 16}, + [1571] = {.lex_state = 16}, + [1572] = {.lex_state = 16}, + [1573] = {.lex_state = 16}, + [1574] = {.lex_state = 16}, + [1575] = {.lex_state = 16}, + [1576] = {.lex_state = 16}, + [1577] = {.lex_state = 0}, [1578] = {.lex_state = 20}, [1579] = {.lex_state = 20}, [1580] = {.lex_state = 20}, [1581] = {.lex_state = 20}, [1582] = {.lex_state = 20}, - [1583] = {.lex_state = 0}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 0}, - [1586] = {.lex_state = 0}, - [1587] = {.lex_state = 0}, - [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 0}, + [1583] = {.lex_state = 20}, + [1584] = {.lex_state = 20}, + [1585] = {.lex_state = 20}, + [1586] = {.lex_state = 20}, + [1587] = {.lex_state = 20}, + [1588] = {.lex_state = 20}, + [1589] = {.lex_state = 20}, [1590] = {.lex_state = 0}, [1591] = {.lex_state = 0}, [1592] = {.lex_state = 0}, @@ -19035,7 +16811,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1729] = {.lex_state = 0}, [1730] = {.lex_state = 0}, [1731] = {.lex_state = 0}, - [1732] = {.lex_state = 20}, + [1732] = {.lex_state = 0}, [1733] = {.lex_state = 0}, [1734] = {.lex_state = 0}, [1735] = {.lex_state = 0}, @@ -19065,11 +16841,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1759] = {.lex_state = 0}, [1760] = {.lex_state = 0}, [1761] = {.lex_state = 0}, - [1762] = {.lex_state = 0}, + [1762] = {.lex_state = 20}, [1763] = {.lex_state = 0}, [1764] = {.lex_state = 0}, [1765] = {.lex_state = 0}, - [1766] = {.lex_state = 20}, + [1766] = {.lex_state = 0}, [1767] = {.lex_state = 0}, [1768] = {.lex_state = 0}, [1769] = {.lex_state = 0}, @@ -19093,7 +16869,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1787] = {.lex_state = 0}, [1788] = {.lex_state = 0}, [1789] = {.lex_state = 0}, - [1790] = {.lex_state = 0}, + [1790] = {.lex_state = 20}, [1791] = {.lex_state = 0}, [1792] = {.lex_state = 0}, [1793] = {.lex_state = 0}, @@ -19116,7 +16892,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1810] = {.lex_state = 0}, [1811] = {.lex_state = 0}, [1812] = {.lex_state = 0}, - [1813] = {.lex_state = 21}, + [1813] = {.lex_state = 0}, [1814] = {.lex_state = 0}, [1815] = {.lex_state = 0}, [1816] = {.lex_state = 0}, @@ -19129,8 +16905,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1823] = {.lex_state = 0}, [1824] = {.lex_state = 0}, [1825] = {.lex_state = 0}, - [1826] = {.lex_state = 0}, - [1827] = {.lex_state = 19}, + [1826] = {.lex_state = 19}, + [1827] = {.lex_state = 21}, [1828] = {.lex_state = 0}, [1829] = {.lex_state = 0}, [1830] = {.lex_state = 0}, @@ -19142,7 +16918,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1836] = {.lex_state = 0}, [1837] = {.lex_state = 0}, [1838] = {.lex_state = 0}, - [1839] = {.lex_state = 0}, + [1839] = {.lex_state = 19}, [1840] = {.lex_state = 0}, [1841] = {.lex_state = 0}, [1842] = {.lex_state = 0}, @@ -19183,7 +16959,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1877] = {.lex_state = 0}, [1878] = {.lex_state = 0}, [1879] = {.lex_state = 0}, - [1880] = {.lex_state = 19}, + [1880] = {.lex_state = 0}, [1881] = {.lex_state = 0}, [1882] = {.lex_state = 0}, [1883] = {.lex_state = 0}, @@ -19211,7 +16987,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1905] = {.lex_state = 0}, [1906] = {.lex_state = 0}, [1907] = {.lex_state = 0}, - [1908] = {.lex_state = 21}, + [1908] = {.lex_state = 0}, [1909] = {.lex_state = 0}, [1910] = {.lex_state = 0}, [1911] = {.lex_state = 0}, @@ -19223,9 +16999,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1917] = {.lex_state = 0}, [1918] = {.lex_state = 0}, [1919] = {.lex_state = 0}, - [1920] = {.lex_state = 0}, + [1920] = {.lex_state = 21}, [1921] = {.lex_state = 0}, - [1922] = {.lex_state = 19}, + [1922] = {.lex_state = 0}, [1923] = {.lex_state = 0}, [1924] = {.lex_state = 0}, [1925] = {.lex_state = 0}, @@ -19237,7 +17013,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1931] = {.lex_state = 0}, [1932] = {.lex_state = 0}, [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 0}, + [1934] = {.lex_state = 19}, [1935] = {.lex_state = 0}, [1936] = {.lex_state = 0}, [1937] = {.lex_state = 0}, @@ -19262,7 +17038,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1956] = {.lex_state = 0}, [1957] = {.lex_state = 0}, [1958] = {.lex_state = 0}, - [1959] = {.lex_state = 0}, + [1959] = {.lex_state = 19}, [1960] = {.lex_state = 0}, [1961] = {.lex_state = 0}, [1962] = {.lex_state = 0}, @@ -19278,9 +17054,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1972] = {.lex_state = 0}, [1973] = {.lex_state = 0}, [1974] = {.lex_state = 0}, - [1975] = {.lex_state = 0}, + [1975] = {.lex_state = 21}, [1976] = {.lex_state = 0}, - [1977] = {.lex_state = 19}, + [1977] = {.lex_state = 0}, [1978] = {.lex_state = 0}, [1979] = {.lex_state = 0}, [1980] = {.lex_state = 0}, @@ -19305,7 +17081,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1999] = {.lex_state = 0}, [2000] = {.lex_state = 0}, [2001] = {.lex_state = 0}, - [2002] = {.lex_state = 21}, + [2002] = {.lex_state = 0}, [2003] = {.lex_state = 0}, [2004] = {.lex_state = 0}, [2005] = {.lex_state = 0}, @@ -19315,11 +17091,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2009] = {.lex_state = 0}, [2010] = {.lex_state = 0}, [2011] = {.lex_state = 0}, - [2012] = {.lex_state = 21}, + [2012] = {.lex_state = 0}, [2013] = {.lex_state = 0}, [2014] = {.lex_state = 0}, - [2015] = {.lex_state = 0}, - [2016] = {.lex_state = 19}, + [2015] = {.lex_state = 21}, + [2016] = {.lex_state = 0}, [2017] = {.lex_state = 0}, [2018] = {.lex_state = 0}, [2019] = {.lex_state = 0}, @@ -19332,7 +17108,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2026] = {.lex_state = 0}, [2027] = {.lex_state = 0}, [2028] = {.lex_state = 0}, - [2029] = {.lex_state = 0}, + [2029] = {.lex_state = 19}, [2030] = {.lex_state = 0}, [2031] = {.lex_state = 0}, [2032] = {.lex_state = 0}, @@ -19398,7 +17174,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2092] = {.lex_state = 0}, [2093] = {.lex_state = 0}, [2094] = {.lex_state = 0}, - [2095] = {.lex_state = 21}, + [2095] = {.lex_state = 0}, [2096] = {.lex_state = 0}, [2097] = {.lex_state = 0}, [2098] = {.lex_state = 0}, @@ -19412,7 +17188,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2106] = {.lex_state = 0}, [2107] = {.lex_state = 0}, [2108] = {.lex_state = 0}, - [2109] = {.lex_state = 19}, + [2109] = {.lex_state = 21}, [2110] = {.lex_state = 0}, [2111] = {.lex_state = 0}, [2112] = {.lex_state = 0}, @@ -19426,7 +17202,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2120] = {.lex_state = 0}, [2121] = {.lex_state = 0}, [2122] = {.lex_state = 0}, - [2123] = {.lex_state = 0}, + [2123] = {.lex_state = 19}, [2124] = {.lex_state = 0}, [2125] = {.lex_state = 0}, [2126] = {.lex_state = 0}, @@ -19475,7 +17251,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2169] = {.lex_state = 0}, [2170] = {.lex_state = 0}, [2171] = {.lex_state = 0}, - [2172] = {.lex_state = 21}, + [2172] = {.lex_state = 0}, [2173] = {.lex_state = 0}, [2174] = {.lex_state = 0}, [2175] = {.lex_state = 0}, @@ -19489,7 +17265,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2183] = {.lex_state = 0}, [2184] = {.lex_state = 0}, [2185] = {.lex_state = 0}, - [2186] = {.lex_state = 19}, + [2186] = {.lex_state = 21}, [2187] = {.lex_state = 0}, [2188] = {.lex_state = 0}, [2189] = {.lex_state = 0}, @@ -19499,11 +17275,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2193] = {.lex_state = 0}, [2194] = {.lex_state = 0}, [2195] = {.lex_state = 0}, - [2196] = {.lex_state = 0}, + [2196] = {.lex_state = 19}, [2197] = {.lex_state = 0}, [2198] = {.lex_state = 0}, - [2199] = {.lex_state = 19}, - [2200] = {.lex_state = 0}, + [2199] = {.lex_state = 0}, + [2200] = {.lex_state = 19}, [2201] = {.lex_state = 0}, [2202] = {.lex_state = 0}, [2203] = {.lex_state = 0}, @@ -19525,7 +17301,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2219] = {.lex_state = 0}, [2220] = {.lex_state = 0}, [2221] = {.lex_state = 0}, - [2222] = {.lex_state = 0}, + [2222] = {.lex_state = 21}, [2223] = {.lex_state = 0}, [2224] = {.lex_state = 0}, [2225] = {.lex_state = 0}, @@ -19541,7 +17317,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2235] = {.lex_state = 0}, [2236] = {.lex_state = 0}, [2237] = {.lex_state = 0}, - [2238] = {.lex_state = 21}, + [2238] = {.lex_state = 0}, [2239] = {.lex_state = 0}, [2240] = {.lex_state = 0}, [2241] = {.lex_state = 0}, @@ -19615,159 +17391,173 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2309] = {.lex_state = 0}, [2310] = {.lex_state = 0}, [2311] = {.lex_state = 0}, - [2312] = {.lex_state = 19}, - [2313] = {.lex_state = 21}, - [2314] = {.lex_state = 0, .external_lex_state = 3}, - [2315] = {.lex_state = 0, .external_lex_state = 4}, - [2316] = {.lex_state = 0, .external_lex_state = 5}, - [2317] = {.lex_state = 0, .external_lex_state = 6}, - [2318] = {.lex_state = 0, .external_lex_state = 7}, - [2319] = {.lex_state = 0, .external_lex_state = 7}, - [2320] = {.lex_state = 21}, - [2321] = {.lex_state = 0, .external_lex_state = 6}, - [2322] = {.lex_state = 0, .external_lex_state = 5}, - [2323] = {.lex_state = 0, .external_lex_state = 4}, - [2324] = {.lex_state = 0, .external_lex_state = 3}, - [2325] = {.lex_state = 19}, - [2326] = {.lex_state = 19}, - [2327] = {.lex_state = 21}, - [2328] = {.lex_state = 0}, - [2329] = {.lex_state = 0, .external_lex_state = 7}, - [2330] = {.lex_state = 0, .external_lex_state = 6}, - [2331] = {.lex_state = 0, .external_lex_state = 5}, - [2332] = {.lex_state = 0, .external_lex_state = 4}, - [2333] = {.lex_state = 0, .external_lex_state = 3}, - [2334] = {.lex_state = 19}, + [2312] = {.lex_state = 0}, + [2313] = {.lex_state = 0}, + [2314] = {.lex_state = 0}, + [2315] = {.lex_state = 0}, + [2316] = {.lex_state = 0}, + [2317] = {.lex_state = 0}, + [2318] = {.lex_state = 0}, + [2319] = {.lex_state = 0}, + [2320] = {.lex_state = 0}, + [2321] = {.lex_state = 0}, + [2322] = {.lex_state = 0}, + [2323] = {.lex_state = 0}, + [2324] = {.lex_state = 0}, + [2325] = {.lex_state = 0}, + [2326] = {.lex_state = 0}, + [2327] = {.lex_state = 19}, + [2328] = {.lex_state = 0, .external_lex_state = 3}, + [2329] = {.lex_state = 0, .external_lex_state = 4}, + [2330] = {.lex_state = 0, .external_lex_state = 5}, + [2331] = {.lex_state = 0, .external_lex_state = 6}, + [2332] = {.lex_state = 0, .external_lex_state = 7}, + [2333] = {.lex_state = 19}, + [2334] = {.lex_state = 21}, [2335] = {.lex_state = 19}, - [2336] = {.lex_state = 0}, - [2337] = {.lex_state = 21}, - [2338] = {.lex_state = 0, .external_lex_state = 7}, - [2339] = {.lex_state = 19}, - [2340] = {.lex_state = 0, .external_lex_state = 6}, - [2341] = {.lex_state = 0, .external_lex_state = 3}, - [2342] = {.lex_state = 0, .external_lex_state = 4}, - [2343] = {.lex_state = 0, .external_lex_state = 5}, - [2344] = {.lex_state = 0, .external_lex_state = 6}, - [2345] = {.lex_state = 0, .external_lex_state = 7}, - [2346] = {.lex_state = 0, .external_lex_state = 5}, - [2347] = {.lex_state = 21}, - [2348] = {.lex_state = 19}, - [2349] = {.lex_state = 0, .external_lex_state = 4}, - [2350] = {.lex_state = 0, .external_lex_state = 3}, - [2351] = {.lex_state = 19}, - [2352] = {.lex_state = 0}, + [2336] = {.lex_state = 0, .external_lex_state = 3}, + [2337] = {.lex_state = 0}, + [2338] = {.lex_state = 0}, + [2339] = {.lex_state = 21}, + [2340] = {.lex_state = 0, .external_lex_state = 7}, + [2341] = {.lex_state = 0, .external_lex_state = 6}, + [2342] = {.lex_state = 0, .external_lex_state = 5}, + [2343] = {.lex_state = 0, .external_lex_state = 4}, + [2344] = {.lex_state = 0, .external_lex_state = 3}, + [2345] = {.lex_state = 19}, + [2346] = {.lex_state = 21}, + [2347] = {.lex_state = 0, .external_lex_state = 7}, + [2348] = {.lex_state = 0, .external_lex_state = 6}, + [2349] = {.lex_state = 0, .external_lex_state = 5}, + [2350] = {.lex_state = 0, .external_lex_state = 4}, + [2351] = {.lex_state = 0}, + [2352] = {.lex_state = 19}, [2353] = {.lex_state = 19}, - [2354] = {.lex_state = 0}, - [2355] = {.lex_state = 0}, - [2356] = {.lex_state = 0}, - [2357] = {.lex_state = 0}, - [2358] = {.lex_state = 19}, - [2359] = {.lex_state = 0}, + [2354] = {.lex_state = 19}, + [2355] = {.lex_state = 0, .external_lex_state = 3}, + [2356] = {.lex_state = 0, .external_lex_state = 4}, + [2357] = {.lex_state = 0, .external_lex_state = 5}, + [2358] = {.lex_state = 0, .external_lex_state = 6}, + [2359] = {.lex_state = 0, .external_lex_state = 7}, [2360] = {.lex_state = 0}, - [2361] = {.lex_state = 0}, - [2362] = {.lex_state = 0}, - [2363] = {.lex_state = 0}, - [2364] = {.lex_state = 0}, - [2365] = {.lex_state = 0}, - [2366] = {.lex_state = 19}, - [2367] = {.lex_state = 19}, - [2368] = {.lex_state = 0}, - [2369] = {.lex_state = 21}, + [2361] = {.lex_state = 21}, + [2362] = {.lex_state = 21}, + [2363] = {.lex_state = 0, .external_lex_state = 7}, + [2364] = {.lex_state = 0, .external_lex_state = 6}, + [2365] = {.lex_state = 0, .external_lex_state = 5}, + [2366] = {.lex_state = 0, .external_lex_state = 4}, + [2367] = {.lex_state = 0, .external_lex_state = 3}, + [2368] = {.lex_state = 19}, + [2369] = {.lex_state = 0}, [2370] = {.lex_state = 0}, [2371] = {.lex_state = 19}, - [2372] = {.lex_state = 19}, + [2372] = {.lex_state = 0, .external_lex_state = 6}, [2373] = {.lex_state = 0}, - [2374] = {.lex_state = 19}, + [2374] = {.lex_state = 0}, [2375] = {.lex_state = 0}, [2376] = {.lex_state = 0}, - [2377] = {.lex_state = 0}, + [2377] = {.lex_state = 19}, [2378] = {.lex_state = 0}, [2379] = {.lex_state = 0}, - [2380] = {.lex_state = 0}, + [2380] = {.lex_state = 19}, [2381] = {.lex_state = 0}, [2382] = {.lex_state = 0}, - [2383] = {.lex_state = 19}, - [2384] = {.lex_state = 19}, + [2383] = {.lex_state = 21}, + [2384] = {.lex_state = 0}, [2385] = {.lex_state = 0}, - [2386] = {.lex_state = 0}, - [2387] = {.lex_state = 21}, - [2388] = {.lex_state = 0, .external_lex_state = 6}, + [2386] = {.lex_state = 0, .external_lex_state = 6}, + [2387] = {.lex_state = 0}, + [2388] = {.lex_state = 19}, [2389] = {.lex_state = 0}, - [2390] = {.lex_state = 0, .external_lex_state = 3}, - [2391] = {.lex_state = 0, .external_lex_state = 3}, - [2392] = {.lex_state = 19}, - [2393] = {.lex_state = 0, .external_lex_state = 4}, - [2394] = {.lex_state = 0}, - [2395] = {.lex_state = 0, .external_lex_state = 5}, - [2396] = {.lex_state = 0, .external_lex_state = 6}, - [2397] = {.lex_state = 19}, - [2398] = {.lex_state = 0, .external_lex_state = 4}, + [2390] = {.lex_state = 0}, + [2391] = {.lex_state = 0}, + [2392] = {.lex_state = 0}, + [2393] = {.lex_state = 19}, + [2394] = {.lex_state = 19}, + [2395] = {.lex_state = 0}, + [2396] = {.lex_state = 0}, + [2397] = {.lex_state = 0}, + [2398] = {.lex_state = 19}, [2399] = {.lex_state = 0}, - [2400] = {.lex_state = 0, .external_lex_state = 5}, - [2401] = {.lex_state = 0, .external_lex_state = 7}, + [2400] = {.lex_state = 0}, + [2401] = {.lex_state = 21}, [2402] = {.lex_state = 0}, [2403] = {.lex_state = 0}, [2404] = {.lex_state = 0}, - [2405] = {.lex_state = 21}, + [2405] = {.lex_state = 19}, [2406] = {.lex_state = 0}, - [2407] = {.lex_state = 0, .external_lex_state = 6}, - [2408] = {.lex_state = 0, .external_lex_state = 7}, + [2407] = {.lex_state = 0}, + [2408] = {.lex_state = 0}, [2409] = {.lex_state = 0}, [2410] = {.lex_state = 0}, - [2411] = {.lex_state = 0}, + [2411] = {.lex_state = 19}, [2412] = {.lex_state = 0}, [2413] = {.lex_state = 0}, - [2414] = {.lex_state = 0}, - [2415] = {.lex_state = 0}, - [2416] = {.lex_state = 0}, - [2417] = {.lex_state = 0}, + [2414] = {.lex_state = 0, .external_lex_state = 4}, + [2415] = {.lex_state = 0, .external_lex_state = 5}, + [2416] = {.lex_state = 19}, + [2417] = {.lex_state = 0, .external_lex_state = 3}, [2418] = {.lex_state = 0}, - [2419] = {.lex_state = 0, .external_lex_state = 3}, - [2420] = {.lex_state = 0, .external_lex_state = 4}, - [2421] = {.lex_state = 0, .external_lex_state = 5}, - [2422] = {.lex_state = 0, .external_lex_state = 7}, - [2423] = {.lex_state = 19}, + [2419] = {.lex_state = 0, .external_lex_state = 7}, + [2420] = {.lex_state = 0}, + [2421] = {.lex_state = 0}, + [2422] = {.lex_state = 21}, + [2423] = {.lex_state = 0}, [2424] = {.lex_state = 0}, [2425] = {.lex_state = 0}, - [2426] = {.lex_state = 21}, - [2427] = {.lex_state = 19}, + [2426] = {.lex_state = 0}, + [2427] = {.lex_state = 0}, [2428] = {.lex_state = 0}, - [2429] = {.lex_state = 0}, - [2430] = {.lex_state = 0}, - [2431] = {.lex_state = 0}, - [2432] = {.lex_state = 0}, + [2429] = {.lex_state = 0, .external_lex_state = 4}, + [2430] = {.lex_state = 0, .external_lex_state = 5}, + [2431] = {.lex_state = 0, .external_lex_state = 6}, + [2432] = {.lex_state = 19}, [2433] = {.lex_state = 0}, - [2434] = {.lex_state = 0}, - [2435] = {.lex_state = 0}, + [2434] = {.lex_state = 0, .external_lex_state = 3}, + [2435] = {.lex_state = 0, .external_lex_state = 4}, [2436] = {.lex_state = 0}, [2437] = {.lex_state = 0}, [2438] = {.lex_state = 0}, - [2439] = {.lex_state = 0}, - [2440] = {.lex_state = 0}, - [2441] = {.lex_state = 0}, + [2439] = {.lex_state = 19}, + [2440] = {.lex_state = 0, .external_lex_state = 5}, + [2441] = {.lex_state = 0, .external_lex_state = 7}, [2442] = {.lex_state = 0}, - [2443] = {.lex_state = 0}, - [2444] = {.lex_state = 19}, + [2443] = {.lex_state = 19}, + [2444] = {.lex_state = 0}, [2445] = {.lex_state = 0}, - [2446] = {.lex_state = 0}, + [2446] = {.lex_state = 21}, [2447] = {.lex_state = 0}, [2448] = {.lex_state = 0}, - [2449] = {.lex_state = 19}, + [2449] = {.lex_state = 0}, [2450] = {.lex_state = 0}, - [2451] = {.lex_state = 19}, - [2452] = {.lex_state = 0}, - [2453] = {.lex_state = 19}, - [2454] = {.lex_state = 0}, + [2451] = {.lex_state = 0}, + [2452] = {.lex_state = 19}, + [2453] = {.lex_state = 0}, + [2454] = {.lex_state = 19}, [2455] = {.lex_state = 0}, [2456] = {.lex_state = 0}, [2457] = {.lex_state = 0}, [2458] = {.lex_state = 0}, [2459] = {.lex_state = 0}, [2460] = {.lex_state = 0}, - [2461] = {.lex_state = 0}, + [2461] = {.lex_state = 0, .external_lex_state = 7}, [2462] = {.lex_state = 0}, [2463] = {.lex_state = 0}, [2464] = {.lex_state = 19}, + [2465] = {.lex_state = 19}, + [2466] = {.lex_state = 0}, + [2467] = {.lex_state = 0}, + [2468] = {.lex_state = 19}, + [2469] = {.lex_state = 0}, + [2470] = {.lex_state = 0}, + [2471] = {.lex_state = 0}, + [2472] = {.lex_state = 0}, + [2473] = {.lex_state = 0}, + [2474] = {.lex_state = 0}, + [2475] = {.lex_state = 0}, + [2476] = {.lex_state = 0}, + [2477] = {.lex_state = 0, .external_lex_state = 3}, + [2478] = {.lex_state = 0}, }; enum { @@ -20098,6 +17888,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(1), [anon_sym_BSLASHusepgflibrary] = ACTIONS(1), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1), + [anon_sym_BSLASHtext] = ACTIONS(1), + [anon_sym_BSLASHintertext] = ACTIONS(1), + [anon_sym_shortintertext] = ACTIONS(1), [sym__trivia_raw_fi] = ACTIONS(1), [sym__trivia_raw_env_comment] = ACTIONS(1), [sym__trivia_raw_env_verbatim] = ACTIONS(1), @@ -20106,87 +17899,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__trivia_raw_env_pycode] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(2389), - [sym_block_comment] = STATE(71), - [sym__root_content] = STATE(71), - [sym__flat_content] = STATE(71), - [sym__text_with_env_content] = STATE(71), - [sym__text_content] = STATE(71), - [sym__section] = STATE(71), + [sym_source_file] = STATE(2410), + [sym_block_comment] = STATE(64), + [sym__root_content] = STATE(64), + [sym__flat_content] = STATE(64), + [sym__text_with_env_content] = STATE(64), + [sym__text_content] = STATE(64), + [sym__section] = STATE(64), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(71), - [sym_text] = STATE(71), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(71), - [sym_inline_formula] = STATE(71), - [sym_math_set] = STATE(71), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(71), - [sym_comment_environment] = STATE(71), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(71), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(71), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(71), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(71), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(71), - [sym_generic_command] = STATE(71), - [sym_package_include] = STATE(71), - [sym_class_include] = STATE(71), - [sym_latex_include] = STATE(71), - [sym_biblatex_include] = STATE(71), - [sym_bibtex_include] = STATE(71), - [sym_graphics_include] = STATE(71), - [sym_svg_include] = STATE(71), - [sym_inkscape_include] = STATE(71), - [sym_verbatim_include] = STATE(71), - [sym_import_include] = STATE(71), - [sym_caption] = STATE(71), - [sym_citation] = STATE(71), - [sym_label_definition] = STATE(71), - [sym_label_reference] = STATE(71), - [sym_label_reference_range] = STATE(71), - [sym_label_number] = STATE(71), - [sym_new_command_definition] = STATE(71), - [sym_old_command_definition] = STATE(71), - [sym_let_command_definition] = STATE(71), - [sym_environment_definition] = STATE(71), - [sym_glossary_entry_definition] = STATE(71), - [sym_glossary_entry_reference] = STATE(71), - [sym_acronym_definition] = STATE(71), - [sym_acronym_reference] = STATE(71), - [sym_theorem_definition] = STATE(71), - [sym_color_definition] = STATE(71), - [sym_color_set_definition] = STATE(71), - [sym_color_reference] = STATE(71), - [sym_tikz_library_import] = STATE(71), - [aux_sym_source_file_repeat1] = STATE(71), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(64), + [sym_text] = STATE(64), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(64), + [sym_inline_formula] = STATE(64), + [sym_math_set] = STATE(64), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(64), + [sym_comment_environment] = STATE(64), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(64), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(64), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(64), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(64), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(64), + [sym_generic_command] = STATE(64), + [sym_package_include] = STATE(64), + [sym_class_include] = STATE(64), + [sym_latex_include] = STATE(64), + [sym_biblatex_include] = STATE(64), + [sym_bibtex_include] = STATE(64), + [sym_graphics_include] = STATE(64), + [sym_svg_include] = STATE(64), + [sym_inkscape_include] = STATE(64), + [sym_verbatim_include] = STATE(64), + [sym_import_include] = STATE(64), + [sym_caption] = STATE(64), + [sym_citation] = STATE(64), + [sym_label_definition] = STATE(64), + [sym_label_reference] = STATE(64), + [sym_label_reference_range] = STATE(64), + [sym_label_number] = STATE(64), + [sym_new_command_definition] = STATE(64), + [sym_old_command_definition] = STATE(64), + [sym_let_command_definition] = STATE(64), + [sym_environment_definition] = STATE(64), + [sym_glossary_entry_definition] = STATE(64), + [sym_glossary_entry_reference] = STATE(64), + [sym_acronym_definition] = STATE(64), + [sym_acronym_reference] = STATE(64), + [sym_theorem_definition] = STATE(64), + [sym_color_definition] = STATE(64), + [sym_color_set_definition] = STATE(64), + [sym_color_reference] = STATE(64), + [sym_tikz_library_import] = STATE(64), + [sym_text_mode] = STATE(64), + [aux_sym_source_file_repeat1] = STATE(64), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [ts_builtin_sym_end] = ACTIONS(5), [sym_command_name] = ACTIONS(7), @@ -20455,13142 +18249,14002 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [2] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(131), + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_BSLASHpart] = ACTIONS(133), + [anon_sym_BSLASHpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddpart] = ACTIONS(133), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHchapter] = ACTIONS(133), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddchap] = ACTIONS(133), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), + [anon_sym_BSLASHsection] = ACTIONS(133), + [anon_sym_BSLASHsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddsec] = ACTIONS(133), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHparagraph] = ACTIONS(133), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubparagraph] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHitem] = ACTIONS(133), + [anon_sym_BSLASHitem_STAR] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), + }, + [3] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(137), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(137), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [4] = { + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [ts_builtin_sym_end] = ACTIONS(129), - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_BSLASHpart] = ACTIONS(131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddpart] = ACTIONS(131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHchapter] = ACTIONS(131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddchap] = ACTIONS(131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(129), - [anon_sym_BSLASHsection] = ACTIONS(131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddsec] = ACTIONS(131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHparagraph] = ACTIONS(131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHitem] = ACTIONS(131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [ts_builtin_sym_end] = ACTIONS(141), + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHchapter] = ACTIONS(143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddchap] = ACTIONS(143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), + [anon_sym_BSLASHsection] = ACTIONS(143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddsec] = ACTIONS(143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHparagraph] = ACTIONS(143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHitem] = ACTIONS(143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_RBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), }, - [3] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), + [5] = { + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [ts_builtin_sym_end] = ACTIONS(135), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - }, - [4] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [ts_builtin_sym_end] = ACTIONS(139), - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_BSLASHpart] = ACTIONS(141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddpart] = ACTIONS(141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHchapter] = ACTIONS(141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddchap] = ACTIONS(141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), - [anon_sym_BSLASHsection] = ACTIONS(141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddsec] = ACTIONS(141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHparagraph] = ACTIONS(141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHitem] = ACTIONS(141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - }, - [5] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [ts_builtin_sym_end] = ACTIONS(145), - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_BSLASHpart] = ACTIONS(147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddpart] = ACTIONS(147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHchapter] = ACTIONS(147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddchap] = ACTIONS(147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(145), - [anon_sym_BSLASHsection] = ACTIONS(147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddsec] = ACTIONS(147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHparagraph] = ACTIONS(147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHitem] = ACTIONS(147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), + [ts_builtin_sym_end] = ACTIONS(147), + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_BSLASHpart] = ACTIONS(149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddpart] = ACTIONS(149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHchapter] = ACTIONS(149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddchap] = ACTIONS(149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), + [anon_sym_BSLASHsection] = ACTIONS(149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddsec] = ACTIONS(149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHparagraph] = ACTIONS(149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHitem] = ACTIONS(149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), }, [6] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(151), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_RBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), }, [7] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_BSLASHpart] = ACTIONS(149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddpart] = ACTIONS(149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHchapter] = ACTIONS(149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddchap] = ACTIONS(149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), + [anon_sym_BSLASHsection] = ACTIONS(149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddsec] = ACTIONS(149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHparagraph] = ACTIONS(149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHitem] = ACTIONS(149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_BSLASH_RBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), }, [8] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), + [sym_block_comment] = STATE(117), + [sym__root_content] = STATE(117), + [sym__flat_content] = STATE(117), + [sym__text_with_env_content] = STATE(117), + [sym__text_content] = STATE(117), + [sym__section] = STATE(117), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(117), + [sym_text] = STATE(117), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(117), + [sym_inline_formula] = STATE(117), + [sym_math_set] = STATE(117), + [sym_begin] = STATE(11), + [sym_end] = STATE(737), + [sym_generic_environment] = STATE(117), + [sym_comment_environment] = STATE(117), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(117), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(117), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(117), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(117), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(117), + [sym_generic_command] = STATE(117), + [sym_package_include] = STATE(117), + [sym_class_include] = STATE(117), + [sym_latex_include] = STATE(117), + [sym_biblatex_include] = STATE(117), + [sym_bibtex_include] = STATE(117), + [sym_graphics_include] = STATE(117), + [sym_svg_include] = STATE(117), + [sym_inkscape_include] = STATE(117), + [sym_verbatim_include] = STATE(117), + [sym_import_include] = STATE(117), + [sym_caption] = STATE(117), + [sym_citation] = STATE(117), + [sym_label_definition] = STATE(117), + [sym_label_reference] = STATE(117), + [sym_label_reference_range] = STATE(117), + [sym_label_number] = STATE(117), + [sym_new_command_definition] = STATE(117), + [sym_old_command_definition] = STATE(117), + [sym_let_command_definition] = STATE(117), + [sym_environment_definition] = STATE(117), + [sym_glossary_entry_definition] = STATE(117), + [sym_glossary_entry_reference] = STATE(117), + [sym_acronym_definition] = STATE(117), + [sym_acronym_reference] = STATE(117), + [sym_theorem_definition] = STATE(117), + [sym_color_definition] = STATE(117), + [sym_color_set_definition] = STATE(117), + [sym_color_reference] = STATE(117), + [sym_tikz_library_import] = STATE(117), + [sym_text_mode] = STATE(117), + [aux_sym_source_file_repeat1] = STATE(117), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(183), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(183), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHend] = ACTIONS(239), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [9] = { - [sym_block_comment] = STATE(32), - [sym__root_content] = STATE(32), - [sym__flat_content] = STATE(32), - [sym__text_with_env_content] = STATE(32), - [sym__text_content] = STATE(32), - [sym__section] = STATE(32), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), + [sym_chapter] = STATE(430), [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(32), - [sym_text] = STATE(32), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(32), - [sym_inline_formula] = STATE(32), - [sym_math_set] = STATE(32), - [sym_begin] = STATE(29), - [sym_end] = STATE(1324), - [sym_generic_environment] = STATE(32), - [sym_comment_environment] = STATE(32), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(32), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(32), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(32), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(32), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(32), - [sym_generic_command] = STATE(32), - [sym_package_include] = STATE(32), - [sym_class_include] = STATE(32), - [sym_latex_include] = STATE(32), - [sym_biblatex_include] = STATE(32), - [sym_bibtex_include] = STATE(32), - [sym_graphics_include] = STATE(32), - [sym_svg_include] = STATE(32), - [sym_inkscape_include] = STATE(32), - [sym_verbatim_include] = STATE(32), - [sym_import_include] = STATE(32), - [sym_caption] = STATE(32), - [sym_citation] = STATE(32), - [sym_label_definition] = STATE(32), - [sym_label_reference] = STATE(32), - [sym_label_reference_range] = STATE(32), - [sym_label_number] = STATE(32), - [sym_new_command_definition] = STATE(32), - [sym_old_command_definition] = STATE(32), - [sym_let_command_definition] = STATE(32), - [sym_environment_definition] = STATE(32), - [sym_glossary_entry_definition] = STATE(32), - [sym_glossary_entry_reference] = STATE(32), - [sym_acronym_definition] = STATE(32), - [sym_acronym_reference] = STATE(32), - [sym_theorem_definition] = STATE(32), - [sym_color_definition] = STATE(32), - [sym_color_set_definition] = STATE(32), - [sym_color_reference] = STATE(32), - [sym_tikz_library_import] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(32), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(221), - [anon_sym_RPAREN] = ACTIONS(221), - [anon_sym_LBRACK] = ACTIONS(221), - [anon_sym_RBRACK] = ACTIONS(221), - [anon_sym_COMMA] = ACTIONS(221), - [anon_sym_EQ] = ACTIONS(221), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(271), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_BSLASHpart] = ACTIONS(133), + [anon_sym_BSLASHpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddpart] = ACTIONS(133), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHchapter] = ACTIONS(133), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddchap] = ACTIONS(133), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), + [anon_sym_BSLASHsection] = ACTIONS(133), + [anon_sym_BSLASHsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddsec] = ACTIONS(133), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHparagraph] = ACTIONS(133), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubparagraph] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHitem] = ACTIONS(133), + [anon_sym_BSLASHitem_STAR] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(133), + [anon_sym_BSLASHend] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), }, [10] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - }, - [11] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_BSLASHpart] = ACTIONS(149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddpart] = ACTIONS(149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHchapter] = ACTIONS(149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddchap] = ACTIONS(149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), + [anon_sym_BSLASHsection] = ACTIONS(149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddsec] = ACTIONS(149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHparagraph] = ACTIONS(149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHitem] = ACTIONS(149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(149), + [anon_sym_BSLASHend] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), + }, + [11] = { + [sym_block_comment] = STATE(15), + [sym__root_content] = STATE(15), + [sym__flat_content] = STATE(15), + [sym__text_with_env_content] = STATE(15), + [sym__text_content] = STATE(15), + [sym__section] = STATE(15), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(15), + [sym_text] = STATE(15), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(15), + [sym_inline_formula] = STATE(15), + [sym_math_set] = STATE(15), + [sym_begin] = STATE(11), + [sym_end] = STATE(1176), + [sym_generic_environment] = STATE(15), + [sym_comment_environment] = STATE(15), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(15), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(15), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(15), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(15), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(15), + [sym_generic_command] = STATE(15), + [sym_package_include] = STATE(15), + [sym_class_include] = STATE(15), + [sym_latex_include] = STATE(15), + [sym_biblatex_include] = STATE(15), + [sym_bibtex_include] = STATE(15), + [sym_graphics_include] = STATE(15), + [sym_svg_include] = STATE(15), + [sym_inkscape_include] = STATE(15), + [sym_verbatim_include] = STATE(15), + [sym_import_include] = STATE(15), + [sym_caption] = STATE(15), + [sym_citation] = STATE(15), + [sym_label_definition] = STATE(15), + [sym_label_reference] = STATE(15), + [sym_label_reference_range] = STATE(15), + [sym_label_number] = STATE(15), + [sym_new_command_definition] = STATE(15), + [sym_old_command_definition] = STATE(15), + [sym_let_command_definition] = STATE(15), + [sym_environment_definition] = STATE(15), + [sym_glossary_entry_definition] = STATE(15), + [sym_glossary_entry_reference] = STATE(15), + [sym_acronym_definition] = STATE(15), + [sym_acronym_reference] = STATE(15), + [sym_theorem_definition] = STATE(15), + [sym_color_definition] = STATE(15), + [sym_color_set_definition] = STATE(15), + [sym_color_reference] = STATE(15), + [sym_tikz_library_import] = STATE(15), + [sym_text_mode] = STATE(15), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(183), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(183), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(309), + [anon_sym_RPAREN] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(309), + [anon_sym_RBRACK] = ACTIONS(309), + [anon_sym_COMMA] = ACTIONS(309), + [anon_sym_EQ] = ACTIONS(309), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), + [anon_sym_BSLASHend] = ACTIONS(311), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [12] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_BSLASHpart] = ACTIONS(141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddpart] = ACTIONS(141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHchapter] = ACTIONS(141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddchap] = ACTIONS(141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), - [anon_sym_BSLASHsection] = ACTIONS(141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddsec] = ACTIONS(141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHparagraph] = ACTIONS(141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHitem] = ACTIONS(141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASH_RBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(137), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_RPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, [13] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASH_RBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(137), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASH_RBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, [14] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(151), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), }, [15] = { - [sym_block_comment] = STATE(16), - [sym__root_content] = STATE(16), - [sym__flat_content] = STATE(16), - [sym__text_with_env_content] = STATE(16), - [sym__text_content] = STATE(16), - [sym__section] = STATE(16), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(16), - [sym_text] = STATE(16), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(16), - [sym_inline_formula] = STATE(16), - [sym_math_set] = STATE(16), - [sym_begin] = STATE(29), - [sym_end] = STATE(1149), - [sym_generic_environment] = STATE(16), - [sym_comment_environment] = STATE(16), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(16), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(16), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(16), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(16), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(16), - [sym_generic_command] = STATE(16), - [sym_package_include] = STATE(16), - [sym_class_include] = STATE(16), - [sym_latex_include] = STATE(16), - [sym_biblatex_include] = STATE(16), - [sym_bibtex_include] = STATE(16), - [sym_graphics_include] = STATE(16), - [sym_svg_include] = STATE(16), - [sym_inkscape_include] = STATE(16), - [sym_verbatim_include] = STATE(16), - [sym_import_include] = STATE(16), - [sym_caption] = STATE(16), - [sym_citation] = STATE(16), - [sym_label_definition] = STATE(16), - [sym_label_reference] = STATE(16), - [sym_label_reference_range] = STATE(16), - [sym_label_number] = STATE(16), - [sym_new_command_definition] = STATE(16), - [sym_old_command_definition] = STATE(16), - [sym_let_command_definition] = STATE(16), - [sym_environment_definition] = STATE(16), - [sym_glossary_entry_definition] = STATE(16), - [sym_glossary_entry_reference] = STATE(16), - [sym_acronym_definition] = STATE(16), - [sym_acronym_reference] = STATE(16), - [sym_theorem_definition] = STATE(16), - [sym_color_definition] = STATE(16), - [sym_color_set_definition] = STATE(16), - [sym_color_reference] = STATE(16), - [sym_tikz_library_import] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(339), - [anon_sym_RPAREN] = ACTIONS(339), - [anon_sym_LBRACK] = ACTIONS(339), - [anon_sym_RBRACK] = ACTIONS(339), - [anon_sym_COMMA] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(339), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_block_comment] = STATE(117), + [sym__root_content] = STATE(117), + [sym__flat_content] = STATE(117), + [sym__text_with_env_content] = STATE(117), + [sym__text_content] = STATE(117), + [sym__section] = STATE(117), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(117), + [sym_text] = STATE(117), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(117), + [sym_inline_formula] = STATE(117), + [sym_math_set] = STATE(117), + [sym_begin] = STATE(11), + [sym_end] = STATE(1246), + [sym_generic_environment] = STATE(117), + [sym_comment_environment] = STATE(117), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(117), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(117), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(117), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(117), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(117), + [sym_generic_command] = STATE(117), + [sym_package_include] = STATE(117), + [sym_class_include] = STATE(117), + [sym_latex_include] = STATE(117), + [sym_biblatex_include] = STATE(117), + [sym_bibtex_include] = STATE(117), + [sym_graphics_include] = STATE(117), + [sym_svg_include] = STATE(117), + [sym_inkscape_include] = STATE(117), + [sym_verbatim_include] = STATE(117), + [sym_import_include] = STATE(117), + [sym_caption] = STATE(117), + [sym_citation] = STATE(117), + [sym_label_definition] = STATE(117), + [sym_label_reference] = STATE(117), + [sym_label_reference_range] = STATE(117), + [sym_label_number] = STATE(117), + [sym_new_command_definition] = STATE(117), + [sym_old_command_definition] = STATE(117), + [sym_let_command_definition] = STATE(117), + [sym_environment_definition] = STATE(117), + [sym_glossary_entry_definition] = STATE(117), + [sym_glossary_entry_reference] = STATE(117), + [sym_acronym_definition] = STATE(117), + [sym_acronym_reference] = STATE(117), + [sym_theorem_definition] = STATE(117), + [sym_color_definition] = STATE(117), + [sym_color_set_definition] = STATE(117), + [sym_color_reference] = STATE(117), + [sym_tikz_library_import] = STATE(117), + [sym_text_mode] = STATE(117), + [aux_sym_source_file_repeat1] = STATE(117), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(341), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHend] = ACTIONS(311), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [16] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), + [sym_chapter] = STATE(430), [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(29), - [sym_end] = STATE(1090), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(341), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), }, [17] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_BSLASHpart] = ACTIONS(131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddpart] = ACTIONS(131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHchapter] = ACTIONS(131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddchap] = ACTIONS(131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(129), - [anon_sym_BSLASHsection] = ACTIONS(131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddsec] = ACTIONS(131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHparagraph] = ACTIONS(131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHitem] = ACTIONS(131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_BSLASH_RBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(137), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHend] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, [18] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHend] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_BSLASHpart] = ACTIONS(133), + [anon_sym_BSLASHpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddpart] = ACTIONS(133), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHchapter] = ACTIONS(133), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddchap] = ACTIONS(133), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), + [anon_sym_BSLASHsection] = ACTIONS(133), + [anon_sym_BSLASHsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddsec] = ACTIONS(133), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHparagraph] = ACTIONS(133), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubparagraph] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHitem] = ACTIONS(133), + [anon_sym_BSLASHitem_STAR] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASH_RBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), }, [19] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), + [sym_block_comment] = STATE(23), + [sym__root_content] = STATE(23), + [sym__flat_content] = STATE(23), + [sym__text_with_env_content] = STATE(23), + [sym__text_content] = STATE(23), + [sym__section] = STATE(23), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(23), + [sym_text] = STATE(23), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(23), + [sym_inline_formula] = STATE(23), + [sym_math_set] = STATE(23), + [sym_begin] = STATE(11), + [sym_end] = STATE(932), + [sym_generic_environment] = STATE(23), + [sym_comment_environment] = STATE(23), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(23), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(23), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(23), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(23), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(23), + [sym_generic_command] = STATE(23), + [sym_package_include] = STATE(23), + [sym_class_include] = STATE(23), + [sym_latex_include] = STATE(23), + [sym_biblatex_include] = STATE(23), + [sym_bibtex_include] = STATE(23), + [sym_graphics_include] = STATE(23), + [sym_svg_include] = STATE(23), + [sym_inkscape_include] = STATE(23), + [sym_verbatim_include] = STATE(23), + [sym_import_include] = STATE(23), + [sym_caption] = STATE(23), + [sym_citation] = STATE(23), + [sym_label_definition] = STATE(23), + [sym_label_reference] = STATE(23), + [sym_label_reference_range] = STATE(23), + [sym_label_number] = STATE(23), + [sym_new_command_definition] = STATE(23), + [sym_old_command_definition] = STATE(23), + [sym_let_command_definition] = STATE(23), + [sym_environment_definition] = STATE(23), + [sym_glossary_entry_definition] = STATE(23), + [sym_glossary_entry_reference] = STATE(23), + [sym_acronym_definition] = STATE(23), + [sym_acronym_reference] = STATE(23), + [sym_theorem_definition] = STATE(23), + [sym_color_definition] = STATE(23), + [sym_color_set_definition] = STATE(23), + [sym_color_reference] = STATE(23), + [sym_tikz_library_import] = STATE(23), + [sym_text_mode] = STATE(23), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_BSLASHpart] = ACTIONS(141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddpart] = ACTIONS(141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHchapter] = ACTIONS(141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddchap] = ACTIONS(141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), - [anon_sym_BSLASHsection] = ACTIONS(141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddsec] = ACTIONS(141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHparagraph] = ACTIONS(141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHitem] = ACTIONS(141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(141), - [anon_sym_BSLASHend] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(347), + [anon_sym_RPAREN] = ACTIONS(347), + [anon_sym_LBRACK] = ACTIONS(347), + [anon_sym_RBRACK] = ACTIONS(347), + [anon_sym_COMMA] = ACTIONS(347), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(349), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [20] = { - [sym_block_comment] = STATE(21), - [sym__root_content] = STATE(21), - [sym__flat_content] = STATE(21), - [sym__text_with_env_content] = STATE(21), - [sym__text_content] = STATE(21), - [sym__section] = STATE(21), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), + [sym_chapter] = STATE(430), [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(21), - [sym_text] = STATE(21), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(21), - [sym_inline_formula] = STATE(21), - [sym_math_set] = STATE(21), - [sym_begin] = STATE(29), - [sym_end] = STATE(941), - [sym_generic_environment] = STATE(21), - [sym_comment_environment] = STATE(21), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(21), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(21), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(21), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(21), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(21), - [sym_generic_command] = STATE(21), - [sym_package_include] = STATE(21), - [sym_class_include] = STATE(21), - [sym_latex_include] = STATE(21), - [sym_biblatex_include] = STATE(21), - [sym_bibtex_include] = STATE(21), - [sym_graphics_include] = STATE(21), - [sym_svg_include] = STATE(21), - [sym_inkscape_include] = STATE(21), - [sym_verbatim_include] = STATE(21), - [sym_import_include] = STATE(21), - [sym_caption] = STATE(21), - [sym_citation] = STATE(21), - [sym_label_definition] = STATE(21), - [sym_label_reference] = STATE(21), - [sym_label_reference_range] = STATE(21), - [sym_label_number] = STATE(21), - [sym_new_command_definition] = STATE(21), - [sym_old_command_definition] = STATE(21), - [sym_let_command_definition] = STATE(21), - [sym_environment_definition] = STATE(21), - [sym_glossary_entry_definition] = STATE(21), - [sym_glossary_entry_reference] = STATE(21), - [sym_acronym_definition] = STATE(21), - [sym_acronym_reference] = STATE(21), - [sym_theorem_definition] = STATE(21), - [sym_color_definition] = STATE(21), - [sym_color_set_definition] = STATE(21), - [sym_color_reference] = STATE(21), - [sym_tikz_library_import] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(345), - [anon_sym_RPAREN] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(345), - [anon_sym_RBRACK] = ACTIONS(345), - [anon_sym_COMMA] = ACTIONS(345), - [anon_sym_EQ] = ACTIONS(345), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(347), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, [21] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(29), - [sym_end] = STATE(912), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(347), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), - }, - [22] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), + [sym_block_comment] = STATE(37), + [sym__root_content] = STATE(37), + [sym__flat_content] = STATE(37), + [sym__text_with_env_content] = STATE(37), + [sym__text_content] = STATE(37), + [sym__section] = STATE(37), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_BSLASHpart] = ACTIONS(131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddpart] = ACTIONS(131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHchapter] = ACTIONS(131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddchap] = ACTIONS(131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(129), - [anon_sym_BSLASHsection] = ACTIONS(131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddsec] = ACTIONS(131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHparagraph] = ACTIONS(131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHitem] = ACTIONS(131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(131), - [anon_sym_BSLASHend] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - }, - [23] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(37), + [sym_text] = STATE(37), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(37), + [sym_inline_formula] = STATE(37), + [sym_math_set] = STATE(37), + [sym_begin] = STATE(11), + [sym_end] = STATE(1329), + [sym_generic_environment] = STATE(37), + [sym_comment_environment] = STATE(37), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(37), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(37), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(37), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(37), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(37), + [sym_generic_command] = STATE(37), + [sym_package_include] = STATE(37), + [sym_class_include] = STATE(37), + [sym_latex_include] = STATE(37), + [sym_biblatex_include] = STATE(37), + [sym_bibtex_include] = STATE(37), + [sym_graphics_include] = STATE(37), + [sym_svg_include] = STATE(37), + [sym_inkscape_include] = STATE(37), + [sym_verbatim_include] = STATE(37), + [sym_import_include] = STATE(37), + [sym_caption] = STATE(37), + [sym_citation] = STATE(37), + [sym_label_definition] = STATE(37), + [sym_label_reference] = STATE(37), + [sym_label_reference_range] = STATE(37), + [sym_label_number] = STATE(37), + [sym_new_command_definition] = STATE(37), + [sym_old_command_definition] = STATE(37), + [sym_let_command_definition] = STATE(37), + [sym_environment_definition] = STATE(37), + [sym_glossary_entry_definition] = STATE(37), + [sym_glossary_entry_reference] = STATE(37), + [sym_acronym_definition] = STATE(37), + [sym_acronym_reference] = STATE(37), + [sym_theorem_definition] = STATE(37), + [sym_color_definition] = STATE(37), + [sym_color_set_definition] = STATE(37), + [sym_color_reference] = STATE(37), + [sym_tikz_library_import] = STATE(37), + [sym_text_mode] = STATE(37), + [aux_sym_source_file_repeat1] = STATE(37), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_BSLASHpart] = ACTIONS(147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddpart] = ACTIONS(147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHchapter] = ACTIONS(147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddchap] = ACTIONS(147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(145), - [anon_sym_BSLASHsection] = ACTIONS(147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddsec] = ACTIONS(147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHparagraph] = ACTIONS(147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHitem] = ACTIONS(147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(147), - [anon_sym_BSLASHend] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(351), + [anon_sym_RPAREN] = ACTIONS(351), + [anon_sym_LBRACK] = ACTIONS(351), + [anon_sym_RBRACK] = ACTIONS(351), + [anon_sym_COMMA] = ACTIONS(351), + [anon_sym_EQ] = ACTIONS(351), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(353), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, - [24] = { - [sym_block_comment] = STATE(24), - [sym__root_content] = STATE(24), - [sym__flat_content] = STATE(24), - [sym__text_with_env_content] = STATE(24), - [sym__text_content] = STATE(24), - [sym__section] = STATE(24), + [22] = { + [sym_block_comment] = STATE(22), + [sym__root_content] = STATE(22), + [sym__flat_content] = STATE(22), + [sym__text_with_env_content] = STATE(22), + [sym__text_content] = STATE(22), + [sym__section] = STATE(22), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(24), - [sym_text] = STATE(24), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(24), - [sym_inline_formula] = STATE(24), - [sym_math_set] = STATE(24), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(24), - [sym_comment_environment] = STATE(24), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(24), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(24), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(24), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(24), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(24), - [sym_generic_command] = STATE(24), - [sym_package_include] = STATE(24), - [sym_class_include] = STATE(24), - [sym_latex_include] = STATE(24), - [sym_biblatex_include] = STATE(24), - [sym_bibtex_include] = STATE(24), - [sym_graphics_include] = STATE(24), - [sym_svg_include] = STATE(24), - [sym_inkscape_include] = STATE(24), - [sym_verbatim_include] = STATE(24), - [sym_import_include] = STATE(24), - [sym_caption] = STATE(24), - [sym_citation] = STATE(24), - [sym_label_definition] = STATE(24), - [sym_label_reference] = STATE(24), - [sym_label_reference_range] = STATE(24), - [sym_label_number] = STATE(24), - [sym_new_command_definition] = STATE(24), - [sym_old_command_definition] = STATE(24), - [sym_let_command_definition] = STATE(24), - [sym_environment_definition] = STATE(24), - [sym_glossary_entry_definition] = STATE(24), - [sym_glossary_entry_reference] = STATE(24), - [sym_acronym_definition] = STATE(24), - [sym_acronym_reference] = STATE(24), - [sym_theorem_definition] = STATE(24), - [sym_color_definition] = STATE(24), - [sym_color_set_definition] = STATE(24), - [sym_color_reference] = STATE(24), - [sym_tikz_library_import] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(22), + [sym_text] = STATE(22), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(22), + [sym_inline_formula] = STATE(22), + [sym_math_set] = STATE(22), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(22), + [sym_comment_environment] = STATE(22), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(22), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(22), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(22), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(22), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(22), + [sym_generic_command] = STATE(22), + [sym_package_include] = STATE(22), + [sym_class_include] = STATE(22), + [sym_latex_include] = STATE(22), + [sym_biblatex_include] = STATE(22), + [sym_bibtex_include] = STATE(22), + [sym_graphics_include] = STATE(22), + [sym_svg_include] = STATE(22), + [sym_inkscape_include] = STATE(22), + [sym_verbatim_include] = STATE(22), + [sym_import_include] = STATE(22), + [sym_caption] = STATE(22), + [sym_citation] = STATE(22), + [sym_label_definition] = STATE(22), + [sym_label_reference] = STATE(22), + [sym_label_reference_range] = STATE(22), + [sym_label_number] = STATE(22), + [sym_new_command_definition] = STATE(22), + [sym_old_command_definition] = STATE(22), + [sym_let_command_definition] = STATE(22), + [sym_environment_definition] = STATE(22), + [sym_glossary_entry_definition] = STATE(22), + [sym_glossary_entry_reference] = STATE(22), + [sym_acronym_definition] = STATE(22), + [sym_acronym_reference] = STATE(22), + [sym_theorem_definition] = STATE(22), + [sym_color_definition] = STATE(22), + [sym_color_set_definition] = STATE(22), + [sym_color_reference] = STATE(22), + [sym_tikz_library_import] = STATE(22), + [sym_text_mode] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(349), - [sym_command_name] = ACTIONS(351), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(354), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(357), - [anon_sym_LBRACK] = ACTIONS(357), - [anon_sym_RBRACK] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(357), - [anon_sym_EQ] = ACTIONS(357), - [anon_sym_BSLASHpart] = ACTIONS(360), - [anon_sym_BSLASHpart_STAR] = ACTIONS(363), - [anon_sym_BSLASHaddpart] = ACTIONS(360), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(363), - [anon_sym_BSLASHchapter] = ACTIONS(366), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(369), - [anon_sym_BSLASHaddchap] = ACTIONS(366), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(369), - [anon_sym_BSLASHsection] = ACTIONS(372), - [anon_sym_BSLASHsection_STAR] = ACTIONS(375), - [anon_sym_BSLASHaddsec] = ACTIONS(372), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(375), - [anon_sym_BSLASHsubsection] = ACTIONS(378), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(381), - [anon_sym_BSLASHsubsubsection] = ACTIONS(384), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(387), - [anon_sym_BSLASHparagraph] = ACTIONS(390), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(396), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(399), - [anon_sym_BSLASHitem] = ACTIONS(402), - [anon_sym_BSLASHitem_STAR] = ACTIONS(405), - [anon_sym_LBRACE] = ACTIONS(408), - [anon_sym_RBRACE] = ACTIONS(349), - [sym_word] = ACTIONS(411), - [sym_placeholder] = ACTIONS(414), - [anon_sym_PLUS] = ACTIONS(417), - [anon_sym_DASH] = ACTIONS(417), - [anon_sym_STAR] = ACTIONS(417), - [anon_sym_SLASH] = ACTIONS(417), - [anon_sym_CARET] = ACTIONS(417), - [anon_sym__] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_BANG] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_COLON] = ACTIONS(417), - [anon_sym_SQUOTE] = ACTIONS(417), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(420), - [anon_sym_BSLASH_LBRACK] = ACTIONS(420), - [anon_sym_DOLLAR] = ACTIONS(423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(426), - [anon_sym_BSLASH_LBRACE] = ACTIONS(429), - [anon_sym_BSLASHbegin] = ACTIONS(432), - [anon_sym_BSLASHusepackage] = ACTIONS(435), - [anon_sym_BSLASHRequirePackage] = ACTIONS(435), - [anon_sym_BSLASHdocumentclass] = ACTIONS(438), - [anon_sym_BSLASHinclude] = ACTIONS(441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(441), - [anon_sym_BSLASHinput] = ACTIONS(441), - [anon_sym_BSLASHsubfile] = ACTIONS(441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(444), - [anon_sym_BSLASHbibliography] = ACTIONS(447), - [anon_sym_BSLASHincludegraphics] = ACTIONS(450), - [anon_sym_BSLASHincludesvg] = ACTIONS(453), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(456), - [anon_sym_BSLASHverbatiminput] = ACTIONS(459), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(459), - [anon_sym_BSLASHimport] = ACTIONS(462), - [anon_sym_BSLASHsubimport] = ACTIONS(462), - [anon_sym_BSLASHinputfrom] = ACTIONS(462), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(462), - [anon_sym_BSLASHincludefrom] = ACTIONS(462), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(462), - [anon_sym_BSLASHcaption] = ACTIONS(465), - [anon_sym_BSLASHcite] = ACTIONS(468), - [anon_sym_BSLASHcite_STAR] = ACTIONS(471), - [anon_sym_BSLASHCite] = ACTIONS(468), - [anon_sym_BSLASHnocite] = ACTIONS(468), - [anon_sym_BSLASHcitet] = ACTIONS(468), - [anon_sym_BSLASHcitep] = ACTIONS(468), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(471), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(471), - [anon_sym_BSLASHciteauthor] = ACTIONS(468), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(471), - [anon_sym_BSLASHCiteauthor] = ACTIONS(468), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(471), - [anon_sym_BSLASHcitetitle] = ACTIONS(468), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(471), - [anon_sym_BSLASHciteyear] = ACTIONS(468), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(471), - [anon_sym_BSLASHcitedate] = ACTIONS(468), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(471), - [anon_sym_BSLASHciteurl] = ACTIONS(468), - [anon_sym_BSLASHfullcite] = ACTIONS(468), - [anon_sym_BSLASHciteyearpar] = ACTIONS(468), - [anon_sym_BSLASHcitealt] = ACTIONS(468), - [anon_sym_BSLASHcitealp] = ACTIONS(468), - [anon_sym_BSLASHcitetext] = ACTIONS(468), - [anon_sym_BSLASHparencite] = ACTIONS(468), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(471), - [anon_sym_BSLASHParencite] = ACTIONS(468), - [anon_sym_BSLASHfootcite] = ACTIONS(468), - [anon_sym_BSLASHfootfullcite] = ACTIONS(468), - [anon_sym_BSLASHfootcitetext] = ACTIONS(468), - [anon_sym_BSLASHtextcite] = ACTIONS(468), - [anon_sym_BSLASHTextcite] = ACTIONS(468), - [anon_sym_BSLASHsmartcite] = ACTIONS(468), - [anon_sym_BSLASHSmartcite] = ACTIONS(468), - [anon_sym_BSLASHsupercite] = ACTIONS(468), - [anon_sym_BSLASHautocite] = ACTIONS(468), - [anon_sym_BSLASHAutocite] = ACTIONS(468), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(471), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(471), - [anon_sym_BSLASHvolcite] = ACTIONS(468), - [anon_sym_BSLASHVolcite] = ACTIONS(468), - [anon_sym_BSLASHpvolcite] = ACTIONS(468), - [anon_sym_BSLASHPvolcite] = ACTIONS(468), - [anon_sym_BSLASHfvolcite] = ACTIONS(468), - [anon_sym_BSLASHftvolcite] = ACTIONS(468), - [anon_sym_BSLASHsvolcite] = ACTIONS(468), - [anon_sym_BSLASHSvolcite] = ACTIONS(468), - [anon_sym_BSLASHtvolcite] = ACTIONS(468), - [anon_sym_BSLASHTvolcite] = ACTIONS(468), - [anon_sym_BSLASHavolcite] = ACTIONS(468), - [anon_sym_BSLASHAvolcite] = ACTIONS(468), - [anon_sym_BSLASHnotecite] = ACTIONS(468), - [anon_sym_BSLASHNotecite] = ACTIONS(468), - [anon_sym_BSLASHpnotecite] = ACTIONS(468), - [anon_sym_BSLASHPnotecite] = ACTIONS(468), - [anon_sym_BSLASHfnotecite] = ACTIONS(468), - [anon_sym_BSLASHlabel] = ACTIONS(474), - [anon_sym_BSLASHref] = ACTIONS(477), - [anon_sym_BSLASHeqref] = ACTIONS(477), - [anon_sym_BSLASHvref] = ACTIONS(477), - [anon_sym_BSLASHVref] = ACTIONS(477), - [anon_sym_BSLASHautoref] = ACTIONS(477), - [anon_sym_BSLASHpageref] = ACTIONS(477), - [anon_sym_BSLASHcref] = ACTIONS(477), - [anon_sym_BSLASHCref] = ACTIONS(477), - [anon_sym_BSLASHcref_STAR] = ACTIONS(480), - [anon_sym_BSLASHCref_STAR] = ACTIONS(480), - [anon_sym_BSLASHnamecref] = ACTIONS(477), - [anon_sym_BSLASHnameCref] = ACTIONS(477), - [anon_sym_BSLASHlcnamecref] = ACTIONS(477), - [anon_sym_BSLASHnamecrefs] = ACTIONS(477), - [anon_sym_BSLASHnameCrefs] = ACTIONS(477), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(477), - [anon_sym_BSLASHlabelcref] = ACTIONS(477), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(477), - [anon_sym_BSLASHcrefrange] = ACTIONS(483), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(486), - [anon_sym_BSLASHCrefrange] = ACTIONS(483), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(486), - [anon_sym_BSLASHnewlabel] = ACTIONS(489), - [anon_sym_BSLASHnewcommand] = ACTIONS(492), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(495), - [anon_sym_BSLASHrenewcommand] = ACTIONS(492), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(495), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(492), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(495), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(492), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(495), - [anon_sym_BSLASHdef] = ACTIONS(498), - [anon_sym_BSLASHlet] = ACTIONS(501), - [anon_sym_BSLASHnewenvironment] = ACTIONS(504), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(507), - [anon_sym_BSLASHgls] = ACTIONS(510), - [anon_sym_BSLASHGls] = ACTIONS(510), - [anon_sym_BSLASHGLS] = ACTIONS(510), - [anon_sym_BSLASHglspl] = ACTIONS(510), - [anon_sym_BSLASHGlspl] = ACTIONS(510), - [anon_sym_BSLASHGLSpl] = ACTIONS(510), - [anon_sym_BSLASHglsdisp] = ACTIONS(510), - [anon_sym_BSLASHglslink] = ACTIONS(510), - [anon_sym_BSLASHglstext] = ACTIONS(510), - [anon_sym_BSLASHGlstext] = ACTIONS(510), - [anon_sym_BSLASHGLStext] = ACTIONS(510), - [anon_sym_BSLASHglsfirst] = ACTIONS(510), - [anon_sym_BSLASHGlsfirst] = ACTIONS(510), - [anon_sym_BSLASHGLSfirst] = ACTIONS(510), - [anon_sym_BSLASHglsplural] = ACTIONS(510), - [anon_sym_BSLASHGlsplural] = ACTIONS(510), - [anon_sym_BSLASHGLSplural] = ACTIONS(510), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(510), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(510), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(510), - [anon_sym_BSLASHglsname] = ACTIONS(510), - [anon_sym_BSLASHGlsname] = ACTIONS(510), - [anon_sym_BSLASHGLSname] = ACTIONS(510), - [anon_sym_BSLASHglssymbol] = ACTIONS(510), - [anon_sym_BSLASHGlssymbol] = ACTIONS(510), - [anon_sym_BSLASHglsdesc] = ACTIONS(510), - [anon_sym_BSLASHGlsdesc] = ACTIONS(510), - [anon_sym_BSLASHGLSdesc] = ACTIONS(510), - [anon_sym_BSLASHglsuseri] = ACTIONS(510), - [anon_sym_BSLASHGlsuseri] = ACTIONS(510), - [anon_sym_BSLASHGLSuseri] = ACTIONS(510), - [anon_sym_BSLASHglsuserii] = ACTIONS(510), - [anon_sym_BSLASHGlsuserii] = ACTIONS(510), - [anon_sym_BSLASHGLSuserii] = ACTIONS(510), - [anon_sym_BSLASHglsuseriii] = ACTIONS(510), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(510), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(510), - [anon_sym_BSLASHglsuseriv] = ACTIONS(510), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(510), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(510), - [anon_sym_BSLASHglsuserv] = ACTIONS(510), - [anon_sym_BSLASHGlsuserv] = ACTIONS(510), - [anon_sym_BSLASHGLSuserv] = ACTIONS(510), - [anon_sym_BSLASHglsuservi] = ACTIONS(510), - [anon_sym_BSLASHGlsuservi] = ACTIONS(510), - [anon_sym_BSLASHGLSuservi] = ACTIONS(510), - [anon_sym_BSLASHnewacronym] = ACTIONS(513), - [anon_sym_BSLASHacrshort] = ACTIONS(516), - [anon_sym_BSLASHAcrshort] = ACTIONS(516), - [anon_sym_BSLASHACRshort] = ACTIONS(516), - [anon_sym_BSLASHacrshortpl] = ACTIONS(516), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(516), - [anon_sym_BSLASHACRshortpl] = ACTIONS(516), - [anon_sym_BSLASHacrlong] = ACTIONS(516), - [anon_sym_BSLASHAcrlong] = ACTIONS(516), - [anon_sym_BSLASHACRlong] = ACTIONS(516), - [anon_sym_BSLASHacrlongpl] = ACTIONS(516), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(516), - [anon_sym_BSLASHACRlongpl] = ACTIONS(516), - [anon_sym_BSLASHacrfull] = ACTIONS(516), - [anon_sym_BSLASHAcrfull] = ACTIONS(516), - [anon_sym_BSLASHACRfull] = ACTIONS(516), - [anon_sym_BSLASHacrfullpl] = ACTIONS(516), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(516), - [anon_sym_BSLASHACRfullpl] = ACTIONS(516), - [anon_sym_BSLASHacs] = ACTIONS(516), - [anon_sym_BSLASHAcs] = ACTIONS(516), - [anon_sym_BSLASHacsp] = ACTIONS(516), - [anon_sym_BSLASHAcsp] = ACTIONS(516), - [anon_sym_BSLASHacl] = ACTIONS(516), - [anon_sym_BSLASHAcl] = ACTIONS(516), - [anon_sym_BSLASHaclp] = ACTIONS(516), - [anon_sym_BSLASHAclp] = ACTIONS(516), - [anon_sym_BSLASHacf] = ACTIONS(516), - [anon_sym_BSLASHAcf] = ACTIONS(516), - [anon_sym_BSLASHacfp] = ACTIONS(516), - [anon_sym_BSLASHAcfp] = ACTIONS(516), - [anon_sym_BSLASHac] = ACTIONS(516), - [anon_sym_BSLASHAc] = ACTIONS(516), - [anon_sym_BSLASHacp] = ACTIONS(516), - [anon_sym_BSLASHglsentrylong] = ACTIONS(516), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(516), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(516), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(516), - [anon_sym_BSLASHglsentryshort] = ACTIONS(516), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(516), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(516), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(516), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(516), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(516), - [anon_sym_BSLASHnewtheorem] = ACTIONS(519), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(519), - [anon_sym_BSLASHdefinecolor] = ACTIONS(522), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(525), - [anon_sym_BSLASHcolor] = ACTIONS(528), - [anon_sym_BSLASHcolorbox] = ACTIONS(528), - [anon_sym_BSLASHtextcolor] = ACTIONS(528), - [anon_sym_BSLASHpagecolor] = ACTIONS(528), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(531), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(531), + [ts_builtin_sym_end] = ACTIONS(355), + [sym_command_name] = ACTIONS(357), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(360), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_RPAREN] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(363), + [anon_sym_COMMA] = ACTIONS(363), + [anon_sym_EQ] = ACTIONS(363), + [anon_sym_BSLASHpart] = ACTIONS(366), + [anon_sym_BSLASHpart_STAR] = ACTIONS(369), + [anon_sym_BSLASHaddpart] = ACTIONS(366), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(369), + [anon_sym_BSLASHchapter] = ACTIONS(372), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(375), + [anon_sym_BSLASHaddchap] = ACTIONS(372), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(375), + [anon_sym_BSLASHsection] = ACTIONS(378), + [anon_sym_BSLASHsection_STAR] = ACTIONS(381), + [anon_sym_BSLASHaddsec] = ACTIONS(378), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(381), + [anon_sym_BSLASHsubsection] = ACTIONS(384), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(387), + [anon_sym_BSLASHsubsubsection] = ACTIONS(390), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(393), + [anon_sym_BSLASHparagraph] = ACTIONS(396), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(399), + [anon_sym_BSLASHsubparagraph] = ACTIONS(402), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(405), + [anon_sym_BSLASHitem] = ACTIONS(408), + [anon_sym_BSLASHitem_STAR] = ACTIONS(411), + [anon_sym_LBRACE] = ACTIONS(414), + [anon_sym_RBRACE] = ACTIONS(355), + [sym_word] = ACTIONS(417), + [sym_placeholder] = ACTIONS(420), + [anon_sym_PLUS] = ACTIONS(423), + [anon_sym_DASH] = ACTIONS(423), + [anon_sym_STAR] = ACTIONS(423), + [anon_sym_SLASH] = ACTIONS(423), + [anon_sym_CARET] = ACTIONS(423), + [anon_sym__] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_BANG] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_COLON] = ACTIONS(423), + [anon_sym_SQUOTE] = ACTIONS(423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(426), + [anon_sym_BSLASH_LBRACK] = ACTIONS(426), + [anon_sym_DOLLAR] = ACTIONS(429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(432), + [anon_sym_BSLASH_LBRACE] = ACTIONS(435), + [anon_sym_BSLASHbegin] = ACTIONS(438), + [anon_sym_BSLASHusepackage] = ACTIONS(441), + [anon_sym_BSLASHRequirePackage] = ACTIONS(441), + [anon_sym_BSLASHdocumentclass] = ACTIONS(444), + [anon_sym_BSLASHinclude] = ACTIONS(447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(447), + [anon_sym_BSLASHinput] = ACTIONS(447), + [anon_sym_BSLASHsubfile] = ACTIONS(447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(450), + [anon_sym_BSLASHbibliography] = ACTIONS(453), + [anon_sym_BSLASHincludegraphics] = ACTIONS(456), + [anon_sym_BSLASHincludesvg] = ACTIONS(459), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(462), + [anon_sym_BSLASHverbatiminput] = ACTIONS(465), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(465), + [anon_sym_BSLASHimport] = ACTIONS(468), + [anon_sym_BSLASHsubimport] = ACTIONS(468), + [anon_sym_BSLASHinputfrom] = ACTIONS(468), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(468), + [anon_sym_BSLASHincludefrom] = ACTIONS(468), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(468), + [anon_sym_BSLASHcaption] = ACTIONS(471), + [anon_sym_BSLASHcite] = ACTIONS(474), + [anon_sym_BSLASHcite_STAR] = ACTIONS(477), + [anon_sym_BSLASHCite] = ACTIONS(474), + [anon_sym_BSLASHnocite] = ACTIONS(474), + [anon_sym_BSLASHcitet] = ACTIONS(474), + [anon_sym_BSLASHcitep] = ACTIONS(474), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(477), + [anon_sym_BSLASHciteauthor] = ACTIONS(474), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(474), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(477), + [anon_sym_BSLASHcitetitle] = ACTIONS(474), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(477), + [anon_sym_BSLASHciteyear] = ACTIONS(474), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(477), + [anon_sym_BSLASHcitedate] = ACTIONS(474), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(477), + [anon_sym_BSLASHciteurl] = ACTIONS(474), + [anon_sym_BSLASHfullcite] = ACTIONS(474), + [anon_sym_BSLASHciteyearpar] = ACTIONS(474), + [anon_sym_BSLASHcitealt] = ACTIONS(474), + [anon_sym_BSLASHcitealp] = ACTIONS(474), + [anon_sym_BSLASHcitetext] = ACTIONS(474), + [anon_sym_BSLASHparencite] = ACTIONS(474), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(477), + [anon_sym_BSLASHParencite] = ACTIONS(474), + [anon_sym_BSLASHfootcite] = ACTIONS(474), + [anon_sym_BSLASHfootfullcite] = ACTIONS(474), + [anon_sym_BSLASHfootcitetext] = ACTIONS(474), + [anon_sym_BSLASHtextcite] = ACTIONS(474), + [anon_sym_BSLASHTextcite] = ACTIONS(474), + [anon_sym_BSLASHsmartcite] = ACTIONS(474), + [anon_sym_BSLASHSmartcite] = ACTIONS(474), + [anon_sym_BSLASHsupercite] = ACTIONS(474), + [anon_sym_BSLASHautocite] = ACTIONS(474), + [anon_sym_BSLASHAutocite] = ACTIONS(474), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(477), + [anon_sym_BSLASHvolcite] = ACTIONS(474), + [anon_sym_BSLASHVolcite] = ACTIONS(474), + [anon_sym_BSLASHpvolcite] = ACTIONS(474), + [anon_sym_BSLASHPvolcite] = ACTIONS(474), + [anon_sym_BSLASHfvolcite] = ACTIONS(474), + [anon_sym_BSLASHftvolcite] = ACTIONS(474), + [anon_sym_BSLASHsvolcite] = ACTIONS(474), + [anon_sym_BSLASHSvolcite] = ACTIONS(474), + [anon_sym_BSLASHtvolcite] = ACTIONS(474), + [anon_sym_BSLASHTvolcite] = ACTIONS(474), + [anon_sym_BSLASHavolcite] = ACTIONS(474), + [anon_sym_BSLASHAvolcite] = ACTIONS(474), + [anon_sym_BSLASHnotecite] = ACTIONS(474), + [anon_sym_BSLASHNotecite] = ACTIONS(474), + [anon_sym_BSLASHpnotecite] = ACTIONS(474), + [anon_sym_BSLASHPnotecite] = ACTIONS(474), + [anon_sym_BSLASHfnotecite] = ACTIONS(474), + [anon_sym_BSLASHlabel] = ACTIONS(480), + [anon_sym_BSLASHref] = ACTIONS(483), + [anon_sym_BSLASHeqref] = ACTIONS(483), + [anon_sym_BSLASHvref] = ACTIONS(483), + [anon_sym_BSLASHVref] = ACTIONS(483), + [anon_sym_BSLASHautoref] = ACTIONS(483), + [anon_sym_BSLASHpageref] = ACTIONS(483), + [anon_sym_BSLASHcref] = ACTIONS(483), + [anon_sym_BSLASHCref] = ACTIONS(483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(486), + [anon_sym_BSLASHCref_STAR] = ACTIONS(486), + [anon_sym_BSLASHnamecref] = ACTIONS(483), + [anon_sym_BSLASHnameCref] = ACTIONS(483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(483), + [anon_sym_BSLASHlabelcref] = ACTIONS(483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(483), + [anon_sym_BSLASHcrefrange] = ACTIONS(489), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(492), + [anon_sym_BSLASHCrefrange] = ACTIONS(489), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(492), + [anon_sym_BSLASHnewlabel] = ACTIONS(495), + [anon_sym_BSLASHnewcommand] = ACTIONS(498), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(501), + [anon_sym_BSLASHrenewcommand] = ACTIONS(498), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(501), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(498), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(501), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(498), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(501), + [anon_sym_BSLASHdef] = ACTIONS(504), + [anon_sym_BSLASHlet] = ACTIONS(507), + [anon_sym_BSLASHnewenvironment] = ACTIONS(510), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(513), + [anon_sym_BSLASHgls] = ACTIONS(516), + [anon_sym_BSLASHGls] = ACTIONS(516), + [anon_sym_BSLASHGLS] = ACTIONS(516), + [anon_sym_BSLASHglspl] = ACTIONS(516), + [anon_sym_BSLASHGlspl] = ACTIONS(516), + [anon_sym_BSLASHGLSpl] = ACTIONS(516), + [anon_sym_BSLASHglsdisp] = ACTIONS(516), + [anon_sym_BSLASHglslink] = ACTIONS(516), + [anon_sym_BSLASHglstext] = ACTIONS(516), + [anon_sym_BSLASHGlstext] = ACTIONS(516), + [anon_sym_BSLASHGLStext] = ACTIONS(516), + [anon_sym_BSLASHglsfirst] = ACTIONS(516), + [anon_sym_BSLASHGlsfirst] = ACTIONS(516), + [anon_sym_BSLASHGLSfirst] = ACTIONS(516), + [anon_sym_BSLASHglsplural] = ACTIONS(516), + [anon_sym_BSLASHGlsplural] = ACTIONS(516), + [anon_sym_BSLASHGLSplural] = ACTIONS(516), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(516), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(516), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(516), + [anon_sym_BSLASHglsname] = ACTIONS(516), + [anon_sym_BSLASHGlsname] = ACTIONS(516), + [anon_sym_BSLASHGLSname] = ACTIONS(516), + [anon_sym_BSLASHglssymbol] = ACTIONS(516), + [anon_sym_BSLASHGlssymbol] = ACTIONS(516), + [anon_sym_BSLASHglsdesc] = ACTIONS(516), + [anon_sym_BSLASHGlsdesc] = ACTIONS(516), + [anon_sym_BSLASHGLSdesc] = ACTIONS(516), + [anon_sym_BSLASHglsuseri] = ACTIONS(516), + [anon_sym_BSLASHGlsuseri] = ACTIONS(516), + [anon_sym_BSLASHGLSuseri] = ACTIONS(516), + [anon_sym_BSLASHglsuserii] = ACTIONS(516), + [anon_sym_BSLASHGlsuserii] = ACTIONS(516), + [anon_sym_BSLASHGLSuserii] = ACTIONS(516), + [anon_sym_BSLASHglsuseriii] = ACTIONS(516), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(516), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(516), + [anon_sym_BSLASHglsuseriv] = ACTIONS(516), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(516), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(516), + [anon_sym_BSLASHglsuserv] = ACTIONS(516), + [anon_sym_BSLASHGlsuserv] = ACTIONS(516), + [anon_sym_BSLASHGLSuserv] = ACTIONS(516), + [anon_sym_BSLASHglsuservi] = ACTIONS(516), + [anon_sym_BSLASHGlsuservi] = ACTIONS(516), + [anon_sym_BSLASHGLSuservi] = ACTIONS(516), + [anon_sym_BSLASHnewacronym] = ACTIONS(519), + [anon_sym_BSLASHacrshort] = ACTIONS(522), + [anon_sym_BSLASHAcrshort] = ACTIONS(522), + [anon_sym_BSLASHACRshort] = ACTIONS(522), + [anon_sym_BSLASHacrshortpl] = ACTIONS(522), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(522), + [anon_sym_BSLASHACRshortpl] = ACTIONS(522), + [anon_sym_BSLASHacrlong] = ACTIONS(522), + [anon_sym_BSLASHAcrlong] = ACTIONS(522), + [anon_sym_BSLASHACRlong] = ACTIONS(522), + [anon_sym_BSLASHacrlongpl] = ACTIONS(522), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(522), + [anon_sym_BSLASHACRlongpl] = ACTIONS(522), + [anon_sym_BSLASHacrfull] = ACTIONS(522), + [anon_sym_BSLASHAcrfull] = ACTIONS(522), + [anon_sym_BSLASHACRfull] = ACTIONS(522), + [anon_sym_BSLASHacrfullpl] = ACTIONS(522), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(522), + [anon_sym_BSLASHACRfullpl] = ACTIONS(522), + [anon_sym_BSLASHacs] = ACTIONS(522), + [anon_sym_BSLASHAcs] = ACTIONS(522), + [anon_sym_BSLASHacsp] = ACTIONS(522), + [anon_sym_BSLASHAcsp] = ACTIONS(522), + [anon_sym_BSLASHacl] = ACTIONS(522), + [anon_sym_BSLASHAcl] = ACTIONS(522), + [anon_sym_BSLASHaclp] = ACTIONS(522), + [anon_sym_BSLASHAclp] = ACTIONS(522), + [anon_sym_BSLASHacf] = ACTIONS(522), + [anon_sym_BSLASHAcf] = ACTIONS(522), + [anon_sym_BSLASHacfp] = ACTIONS(522), + [anon_sym_BSLASHAcfp] = ACTIONS(522), + [anon_sym_BSLASHac] = ACTIONS(522), + [anon_sym_BSLASHAc] = ACTIONS(522), + [anon_sym_BSLASHacp] = ACTIONS(522), + [anon_sym_BSLASHglsentrylong] = ACTIONS(522), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(522), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(522), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(522), + [anon_sym_BSLASHglsentryshort] = ACTIONS(522), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(522), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(522), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(522), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(522), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(522), + [anon_sym_BSLASHnewtheorem] = ACTIONS(525), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(525), + [anon_sym_BSLASHdefinecolor] = ACTIONS(528), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(531), + [anon_sym_BSLASHcolor] = ACTIONS(534), + [anon_sym_BSLASHcolorbox] = ACTIONS(534), + [anon_sym_BSLASHtextcolor] = ACTIONS(534), + [anon_sym_BSLASHpagecolor] = ACTIONS(534), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(537), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(537), + [anon_sym_BSLASHtext] = ACTIONS(540), + [anon_sym_BSLASHintertext] = ACTIONS(540), + [anon_sym_shortintertext] = ACTIONS(540), }, - [25] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(29), - [sym_end] = STATE(744), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [23] = { + [sym_block_comment] = STATE(117), + [sym__root_content] = STATE(117), + [sym__flat_content] = STATE(117), + [sym__text_with_env_content] = STATE(117), + [sym__text_content] = STATE(117), + [sym__section] = STATE(117), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(117), + [sym_text] = STATE(117), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(117), + [sym_inline_formula] = STATE(117), + [sym_math_set] = STATE(117), + [sym_begin] = STATE(11), + [sym_end] = STATE(872), + [sym_generic_environment] = STATE(117), + [sym_comment_environment] = STATE(117), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(117), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(117), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(117), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(117), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(117), + [sym_generic_command] = STATE(117), + [sym_package_include] = STATE(117), + [sym_class_include] = STATE(117), + [sym_latex_include] = STATE(117), + [sym_biblatex_include] = STATE(117), + [sym_bibtex_include] = STATE(117), + [sym_graphics_include] = STATE(117), + [sym_svg_include] = STATE(117), + [sym_inkscape_include] = STATE(117), + [sym_verbatim_include] = STATE(117), + [sym_import_include] = STATE(117), + [sym_caption] = STATE(117), + [sym_citation] = STATE(117), + [sym_label_definition] = STATE(117), + [sym_label_reference] = STATE(117), + [sym_label_reference_range] = STATE(117), + [sym_label_number] = STATE(117), + [sym_new_command_definition] = STATE(117), + [sym_old_command_definition] = STATE(117), + [sym_let_command_definition] = STATE(117), + [sym_environment_definition] = STATE(117), + [sym_glossary_entry_definition] = STATE(117), + [sym_glossary_entry_reference] = STATE(117), + [sym_acronym_definition] = STATE(117), + [sym_acronym_reference] = STATE(117), + [sym_theorem_definition] = STATE(117), + [sym_color_definition] = STATE(117), + [sym_color_set_definition] = STATE(117), + [sym_color_reference] = STATE(117), + [sym_tikz_library_import] = STATE(117), + [sym_text_mode] = STATE(117), + [aux_sym_source_file_repeat1] = STATE(117), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(534), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHend] = ACTIONS(349), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, - [26] = { - [sym_block_comment] = STATE(28), - [sym__root_content] = STATE(28), - [sym__flat_content] = STATE(28), - [sym__text_with_env_content] = STATE(28), - [sym__text_content] = STATE(28), - [sym__section] = STATE(28), + [24] = { + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(28), - [sym_text] = STATE(28), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(28), - [sym_inline_formula] = STATE(28), - [sym_math_set] = STATE(28), - [sym_begin] = STATE(29), - [sym_end] = STATE(951), - [sym_generic_environment] = STATE(28), - [sym_comment_environment] = STATE(28), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(28), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(28), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(28), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(28), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(28), - [sym_generic_command] = STATE(28), - [sym_package_include] = STATE(28), - [sym_class_include] = STATE(28), - [sym_latex_include] = STATE(28), - [sym_biblatex_include] = STATE(28), - [sym_bibtex_include] = STATE(28), - [sym_graphics_include] = STATE(28), - [sym_svg_include] = STATE(28), - [sym_inkscape_include] = STATE(28), - [sym_verbatim_include] = STATE(28), - [sym_import_include] = STATE(28), - [sym_caption] = STATE(28), - [sym_citation] = STATE(28), - [sym_label_definition] = STATE(28), - [sym_label_reference] = STATE(28), - [sym_label_reference_range] = STATE(28), - [sym_label_number] = STATE(28), - [sym_new_command_definition] = STATE(28), - [sym_old_command_definition] = STATE(28), - [sym_let_command_definition] = STATE(28), - [sym_environment_definition] = STATE(28), - [sym_glossary_entry_definition] = STATE(28), - [sym_glossary_entry_reference] = STATE(28), - [sym_acronym_definition] = STATE(28), - [sym_acronym_reference] = STATE(28), - [sym_theorem_definition] = STATE(28), - [sym_color_definition] = STATE(28), - [sym_color_set_definition] = STATE(28), - [sym_color_reference] = STATE(28), - [sym_tikz_library_import] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_RPAREN] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_RBRACK] = ACTIONS(536), - [anon_sym_COMMA] = ACTIONS(536), - [anon_sym_EQ] = ACTIONS(536), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(538), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), - }, - [27] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHchapter] = ACTIONS(143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddchap] = ACTIONS(143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), + [anon_sym_BSLASHsection] = ACTIONS(143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddsec] = ACTIONS(143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHparagraph] = ACTIONS(143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHitem] = ACTIONS(143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(143), + [anon_sym_BSLASHend] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), + }, + [25] = { + [sym_block_comment] = STATE(35), + [sym__root_content] = STATE(35), + [sym__flat_content] = STATE(35), + [sym__text_with_env_content] = STATE(35), + [sym__text_content] = STATE(35), + [sym__section] = STATE(35), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(35), + [sym_text] = STATE(35), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(35), + [sym_inline_formula] = STATE(35), + [sym_math_set] = STATE(35), + [sym_begin] = STATE(11), + [sym_end] = STATE(1142), + [sym_generic_environment] = STATE(35), + [sym_comment_environment] = STATE(35), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(35), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(35), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(35), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(35), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(35), + [sym_generic_command] = STATE(35), + [sym_package_include] = STATE(35), + [sym_class_include] = STATE(35), + [sym_latex_include] = STATE(35), + [sym_biblatex_include] = STATE(35), + [sym_bibtex_include] = STATE(35), + [sym_graphics_include] = STATE(35), + [sym_svg_include] = STATE(35), + [sym_inkscape_include] = STATE(35), + [sym_verbatim_include] = STATE(35), + [sym_import_include] = STATE(35), + [sym_caption] = STATE(35), + [sym_citation] = STATE(35), + [sym_label_definition] = STATE(35), + [sym_label_reference] = STATE(35), + [sym_label_reference_range] = STATE(35), + [sym_label_number] = STATE(35), + [sym_new_command_definition] = STATE(35), + [sym_old_command_definition] = STATE(35), + [sym_let_command_definition] = STATE(35), + [sym_environment_definition] = STATE(35), + [sym_glossary_entry_definition] = STATE(35), + [sym_glossary_entry_reference] = STATE(35), + [sym_acronym_definition] = STATE(35), + [sym_acronym_reference] = STATE(35), + [sym_theorem_definition] = STATE(35), + [sym_color_definition] = STATE(35), + [sym_color_set_definition] = STATE(35), + [sym_color_reference] = STATE(35), + [sym_tikz_library_import] = STATE(35), + [sym_text_mode] = STATE(35), + [aux_sym_source_file_repeat1] = STATE(35), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(183), - [anon_sym_RPAREN] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(183), - [anon_sym_RBRACK] = ACTIONS(183), - [anon_sym_COMMA] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(183), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(543), + [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_LBRACK] = ACTIONS(543), + [anon_sym_RBRACK] = ACTIONS(543), + [anon_sym_COMMA] = ACTIONS(543), + [anon_sym_EQ] = ACTIONS(543), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), + [anon_sym_BSLASHend] = ACTIONS(545), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, - [28] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(29), - [sym_end] = STATE(1021), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [26] = { + [sym_block_comment] = STATE(117), + [sym__root_content] = STATE(117), + [sym__flat_content] = STATE(117), + [sym__text_with_env_content] = STATE(117), + [sym__text_content] = STATE(117), + [sym__section] = STATE(117), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(117), + [sym_text] = STATE(117), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(117), + [sym_inline_formula] = STATE(117), + [sym_math_set] = STATE(117), + [sym_begin] = STATE(11), + [sym_end] = STATE(1026), + [sym_generic_environment] = STATE(117), + [sym_comment_environment] = STATE(117), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(117), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(117), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(117), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(117), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(117), + [sym_generic_command] = STATE(117), + [sym_package_include] = STATE(117), + [sym_class_include] = STATE(117), + [sym_latex_include] = STATE(117), + [sym_biblatex_include] = STATE(117), + [sym_bibtex_include] = STATE(117), + [sym_graphics_include] = STATE(117), + [sym_svg_include] = STATE(117), + [sym_inkscape_include] = STATE(117), + [sym_verbatim_include] = STATE(117), + [sym_import_include] = STATE(117), + [sym_caption] = STATE(117), + [sym_citation] = STATE(117), + [sym_label_definition] = STATE(117), + [sym_label_reference] = STATE(117), + [sym_label_reference_range] = STATE(117), + [sym_label_number] = STATE(117), + [sym_new_command_definition] = STATE(117), + [sym_old_command_definition] = STATE(117), + [sym_let_command_definition] = STATE(117), + [sym_environment_definition] = STATE(117), + [sym_glossary_entry_definition] = STATE(117), + [sym_glossary_entry_reference] = STATE(117), + [sym_acronym_definition] = STATE(117), + [sym_acronym_reference] = STATE(117), + [sym_theorem_definition] = STATE(117), + [sym_color_definition] = STATE(117), + [sym_color_set_definition] = STATE(117), + [sym_color_reference] = STATE(117), + [sym_tikz_library_import] = STATE(117), + [sym_text_mode] = STATE(117), + [aux_sym_source_file_repeat1] = STATE(117), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(538), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHend] = ACTIONS(547), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, - [29] = { - [sym_block_comment] = STATE(31), - [sym__root_content] = STATE(31), - [sym__flat_content] = STATE(31), - [sym__text_with_env_content] = STATE(31), - [sym__text_content] = STATE(31), - [sym__section] = STATE(31), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), + [27] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), + [sym_chapter] = STATE(430), [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(31), - [sym_text] = STATE(31), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(31), - [sym_inline_formula] = STATE(31), - [sym_math_set] = STATE(31), - [sym_begin] = STATE(29), - [sym_end] = STATE(1170), - [sym_generic_environment] = STATE(31), - [sym_comment_environment] = STATE(31), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(31), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(31), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(31), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(31), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(31), - [sym_generic_command] = STATE(31), - [sym_package_include] = STATE(31), - [sym_class_include] = STATE(31), - [sym_latex_include] = STATE(31), - [sym_biblatex_include] = STATE(31), - [sym_bibtex_include] = STATE(31), - [sym_graphics_include] = STATE(31), - [sym_svg_include] = STATE(31), - [sym_inkscape_include] = STATE(31), - [sym_verbatim_include] = STATE(31), - [sym_import_include] = STATE(31), - [sym_caption] = STATE(31), - [sym_citation] = STATE(31), - [sym_label_definition] = STATE(31), - [sym_label_reference] = STATE(31), - [sym_label_reference_range] = STATE(31), - [sym_label_number] = STATE(31), - [sym_new_command_definition] = STATE(31), - [sym_old_command_definition] = STATE(31), - [sym_let_command_definition] = STATE(31), - [sym_environment_definition] = STATE(31), - [sym_glossary_entry_definition] = STATE(31), - [sym_glossary_entry_reference] = STATE(31), - [sym_acronym_definition] = STATE(31), - [sym_acronym_reference] = STATE(31), - [sym_theorem_definition] = STATE(31), - [sym_color_definition] = STATE(31), - [sym_color_set_definition] = STATE(31), - [sym_color_reference] = STATE(31), - [sym_tikz_library_import] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_RPAREN] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(540), - [anon_sym_RBRACK] = ACTIONS(540), - [anon_sym_COMMA] = ACTIONS(540), - [anon_sym_EQ] = ACTIONS(540), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(542), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), - }, - [30] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_BSLASHpart] = ACTIONS(133), + [anon_sym_BSLASHpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddpart] = ACTIONS(133), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHchapter] = ACTIONS(133), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddchap] = ACTIONS(133), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), + [anon_sym_BSLASHsection] = ACTIONS(133), + [anon_sym_BSLASHsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddsec] = ACTIONS(133), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHparagraph] = ACTIONS(133), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubparagraph] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHitem] = ACTIONS(133), + [anon_sym_BSLASHitem_STAR] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_RPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), + }, + [28] = { + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHchapter] = ACTIONS(143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddchap] = ACTIONS(143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), + [anon_sym_BSLASHsection] = ACTIONS(143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddsec] = ACTIONS(143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHparagraph] = ACTIONS(143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHitem] = ACTIONS(143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASH_RBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), + }, + [29] = { + [sym_block_comment] = STATE(26), + [sym__root_content] = STATE(26), + [sym__flat_content] = STATE(26), + [sym__text_with_env_content] = STATE(26), + [sym__text_content] = STATE(26), + [sym__section] = STATE(26), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(26), + [sym_text] = STATE(26), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(26), + [sym_inline_formula] = STATE(26), + [sym_math_set] = STATE(26), + [sym_begin] = STATE(11), + [sym_end] = STATE(956), + [sym_generic_environment] = STATE(26), + [sym_comment_environment] = STATE(26), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(26), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(26), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(26), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(26), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(26), + [sym_generic_command] = STATE(26), + [sym_package_include] = STATE(26), + [sym_class_include] = STATE(26), + [sym_latex_include] = STATE(26), + [sym_biblatex_include] = STATE(26), + [sym_bibtex_include] = STATE(26), + [sym_graphics_include] = STATE(26), + [sym_svg_include] = STATE(26), + [sym_inkscape_include] = STATE(26), + [sym_verbatim_include] = STATE(26), + [sym_import_include] = STATE(26), + [sym_caption] = STATE(26), + [sym_citation] = STATE(26), + [sym_label_definition] = STATE(26), + [sym_label_reference] = STATE(26), + [sym_label_reference_range] = STATE(26), + [sym_label_number] = STATE(26), + [sym_new_command_definition] = STATE(26), + [sym_old_command_definition] = STATE(26), + [sym_let_command_definition] = STATE(26), + [sym_environment_definition] = STATE(26), + [sym_glossary_entry_definition] = STATE(26), + [sym_glossary_entry_reference] = STATE(26), + [sym_acronym_definition] = STATE(26), + [sym_acronym_reference] = STATE(26), + [sym_theorem_definition] = STATE(26), + [sym_color_definition] = STATE(26), + [sym_color_set_definition] = STATE(26), + [sym_color_reference] = STATE(26), + [sym_tikz_library_import] = STATE(26), + [sym_text_mode] = STATE(26), + [aux_sym_source_file_repeat1] = STATE(26), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_BSLASHpart] = ACTIONS(147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddpart] = ACTIONS(147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHchapter] = ACTIONS(147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddchap] = ACTIONS(147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(145), - [anon_sym_BSLASHsection] = ACTIONS(147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddsec] = ACTIONS(147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHparagraph] = ACTIONS(147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHitem] = ACTIONS(147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASH_RBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(549), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_LBRACK] = ACTIONS(549), + [anon_sym_RBRACK] = ACTIONS(549), + [anon_sym_COMMA] = ACTIONS(549), + [anon_sym_EQ] = ACTIONS(549), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(547), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, - [31] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), + [30] = { + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(29), - [sym_end] = STATE(1240), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(151), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(542), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), }, - [32] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), + [31] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), + [sym_chapter] = STATE(430), [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), - [sym_begin] = STATE(29), - [sym_end] = STATE(1354), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(343), - [anon_sym_RPAREN] = ACTIONS(343), - [anon_sym_LBRACK] = ACTIONS(343), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_COMMA] = ACTIONS(343), - [anon_sym_EQ] = ACTIONS(343), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_RBRACK] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(313), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(271), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), }, - [33] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), + [32] = { + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(151), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_RBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), }, - [34] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), + [33] = { + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_BSLASHpart] = ACTIONS(131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddpart] = ACTIONS(131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHchapter] = ACTIONS(131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddchap] = ACTIONS(131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(129), - [anon_sym_BSLASHsection] = ACTIONS(131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddsec] = ACTIONS(131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHparagraph] = ACTIONS(131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHitem] = ACTIONS(131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASH_RBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHchapter] = ACTIONS(143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddchap] = ACTIONS(143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), + [anon_sym_BSLASHsection] = ACTIONS(143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddsec] = ACTIONS(143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHparagraph] = ACTIONS(143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHitem] = ACTIONS(143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_BSLASH_RBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), + }, + [34] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_RBRACK] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(313), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, [35] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), + [sym_block_comment] = STATE(117), + [sym__root_content] = STATE(117), + [sym__flat_content] = STATE(117), + [sym__text_with_env_content] = STATE(117), + [sym__text_content] = STATE(117), + [sym__section] = STATE(117), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(117), + [sym_text] = STATE(117), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(117), + [sym_inline_formula] = STATE(117), + [sym_math_set] = STATE(117), + [sym_begin] = STATE(11), + [sym_end] = STATE(1080), + [sym_generic_environment] = STATE(117), + [sym_comment_environment] = STATE(117), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(117), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(117), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(117), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(117), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(117), + [sym_generic_command] = STATE(117), + [sym_package_include] = STATE(117), + [sym_class_include] = STATE(117), + [sym_latex_include] = STATE(117), + [sym_biblatex_include] = STATE(117), + [sym_bibtex_include] = STATE(117), + [sym_graphics_include] = STATE(117), + [sym_svg_include] = STATE(117), + [sym_inkscape_include] = STATE(117), + [sym_verbatim_include] = STATE(117), + [sym_import_include] = STATE(117), + [sym_caption] = STATE(117), + [sym_citation] = STATE(117), + [sym_label_definition] = STATE(117), + [sym_label_reference] = STATE(117), + [sym_label_reference_range] = STATE(117), + [sym_label_number] = STATE(117), + [sym_new_command_definition] = STATE(117), + [sym_old_command_definition] = STATE(117), + [sym_let_command_definition] = STATE(117), + [sym_environment_definition] = STATE(117), + [sym_glossary_entry_definition] = STATE(117), + [sym_glossary_entry_reference] = STATE(117), + [sym_acronym_definition] = STATE(117), + [sym_acronym_reference] = STATE(117), + [sym_theorem_definition] = STATE(117), + [sym_color_definition] = STATE(117), + [sym_color_set_definition] = STATE(117), + [sym_color_reference] = STATE(117), + [sym_tikz_library_import] = STATE(117), + [sym_text_mode] = STATE(117), + [aux_sym_source_file_repeat1] = STATE(117), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_BSLASHpart] = ACTIONS(141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddpart] = ACTIONS(141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHchapter] = ACTIONS(141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddchap] = ACTIONS(141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), - [anon_sym_BSLASHsection] = ACTIONS(141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddsec] = ACTIONS(141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHparagraph] = ACTIONS(141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHitem] = ACTIONS(141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_RPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(545), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [36] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), + [sym_block_comment] = STATE(8), + [sym__root_content] = STATE(8), + [sym__flat_content] = STATE(8), + [sym__text_with_env_content] = STATE(8), + [sym__text_content] = STATE(8), + [sym__section] = STATE(8), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(8), + [sym_text] = STATE(8), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(8), + [sym_inline_formula] = STATE(8), + [sym_math_set] = STATE(8), + [sym_begin] = STATE(11), + [sym_end] = STATE(673), + [sym_generic_environment] = STATE(8), + [sym_comment_environment] = STATE(8), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(8), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(8), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(8), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(8), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(8), + [sym_generic_command] = STATE(8), + [sym_package_include] = STATE(8), + [sym_class_include] = STATE(8), + [sym_latex_include] = STATE(8), + [sym_biblatex_include] = STATE(8), + [sym_bibtex_include] = STATE(8), + [sym_graphics_include] = STATE(8), + [sym_svg_include] = STATE(8), + [sym_inkscape_include] = STATE(8), + [sym_verbatim_include] = STATE(8), + [sym_import_include] = STATE(8), + [sym_caption] = STATE(8), + [sym_citation] = STATE(8), + [sym_label_definition] = STATE(8), + [sym_label_reference] = STATE(8), + [sym_label_reference_range] = STATE(8), + [sym_label_number] = STATE(8), + [sym_new_command_definition] = STATE(8), + [sym_old_command_definition] = STATE(8), + [sym_let_command_definition] = STATE(8), + [sym_environment_definition] = STATE(8), + [sym_glossary_entry_definition] = STATE(8), + [sym_glossary_entry_reference] = STATE(8), + [sym_acronym_definition] = STATE(8), + [sym_acronym_reference] = STATE(8), + [sym_theorem_definition] = STATE(8), + [sym_color_definition] = STATE(8), + [sym_color_set_definition] = STATE(8), + [sym_color_reference] = STATE(8), + [sym_tikz_library_import] = STATE(8), + [sym_text_mode] = STATE(8), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(183), - [anon_sym_RPAREN] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(183), - [anon_sym_RBRACK] = ACTIONS(183), - [anon_sym_COMMA] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(183), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(551), + [anon_sym_RPAREN] = ACTIONS(551), + [anon_sym_LBRACK] = ACTIONS(551), + [anon_sym_RBRACK] = ACTIONS(551), + [anon_sym_COMMA] = ACTIONS(551), + [anon_sym_EQ] = ACTIONS(551), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHend] = ACTIONS(239), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [37] = { - [sym_block_comment] = STATE(25), - [sym__root_content] = STATE(25), - [sym__flat_content] = STATE(25), - [sym__text_with_env_content] = STATE(25), - [sym__text_content] = STATE(25), - [sym__section] = STATE(25), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(25), - [sym_text] = STATE(25), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(25), - [sym_inline_formula] = STATE(25), - [sym_math_set] = STATE(25), - [sym_begin] = STATE(29), - [sym_end] = STATE(696), - [sym_generic_environment] = STATE(25), - [sym_comment_environment] = STATE(25), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(25), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(25), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(25), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(25), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(25), - [sym_generic_command] = STATE(25), - [sym_package_include] = STATE(25), - [sym_class_include] = STATE(25), - [sym_latex_include] = STATE(25), - [sym_biblatex_include] = STATE(25), - [sym_bibtex_include] = STATE(25), - [sym_graphics_include] = STATE(25), - [sym_svg_include] = STATE(25), - [sym_inkscape_include] = STATE(25), - [sym_verbatim_include] = STATE(25), - [sym_import_include] = STATE(25), - [sym_caption] = STATE(25), - [sym_citation] = STATE(25), - [sym_label_definition] = STATE(25), - [sym_label_reference] = STATE(25), - [sym_label_reference_range] = STATE(25), - [sym_label_number] = STATE(25), - [sym_new_command_definition] = STATE(25), - [sym_old_command_definition] = STATE(25), - [sym_let_command_definition] = STATE(25), - [sym_environment_definition] = STATE(25), - [sym_glossary_entry_definition] = STATE(25), - [sym_glossary_entry_reference] = STATE(25), - [sym_acronym_definition] = STATE(25), - [sym_acronym_reference] = STATE(25), - [sym_theorem_definition] = STATE(25), - [sym_color_definition] = STATE(25), - [sym_color_set_definition] = STATE(25), - [sym_color_reference] = STATE(25), - [sym_tikz_library_import] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(25), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(544), - [anon_sym_RPAREN] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(544), - [anon_sym_RBRACK] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(544), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_block_comment] = STATE(117), + [sym__root_content] = STATE(117), + [sym__flat_content] = STATE(117), + [sym__text_with_env_content] = STATE(117), + [sym__text_content] = STATE(117), + [sym__section] = STATE(117), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(117), + [sym_text] = STATE(117), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(117), + [sym_inline_formula] = STATE(117), + [sym_math_set] = STATE(117), + [sym_begin] = STATE(11), + [sym_end] = STATE(1360), + [sym_generic_environment] = STATE(117), + [sym_comment_environment] = STATE(117), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(117), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(117), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(117), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(117), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(117), + [sym_generic_command] = STATE(117), + [sym_package_include] = STATE(117), + [sym_class_include] = STATE(117), + [sym_latex_include] = STATE(117), + [sym_biblatex_include] = STATE(117), + [sym_bibtex_include] = STATE(117), + [sym_graphics_include] = STATE(117), + [sym_svg_include] = STATE(117), + [sym_inkscape_include] = STATE(117), + [sym_verbatim_include] = STATE(117), + [sym_import_include] = STATE(117), + [sym_caption] = STATE(117), + [sym_citation] = STATE(117), + [sym_label_definition] = STATE(117), + [sym_label_reference] = STATE(117), + [sym_label_reference_range] = STATE(117), + [sym_label_number] = STATE(117), + [sym_new_command_definition] = STATE(117), + [sym_old_command_definition] = STATE(117), + [sym_let_command_definition] = STATE(117), + [sym_environment_definition] = STATE(117), + [sym_glossary_entry_definition] = STATE(117), + [sym_glossary_entry_reference] = STATE(117), + [sym_acronym_definition] = STATE(117), + [sym_acronym_reference] = STATE(117), + [sym_theorem_definition] = STATE(117), + [sym_color_definition] = STATE(117), + [sym_color_set_definition] = STATE(117), + [sym_color_reference] = STATE(117), + [sym_tikz_library_import] = STATE(117), + [sym_text_mode] = STATE(117), + [aux_sym_source_file_repeat1] = STATE(117), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(189), + [anon_sym_RPAREN] = ACTIONS(189), + [anon_sym_LBRACK] = ACTIONS(189), + [anon_sym_RBRACK] = ACTIONS(189), + [anon_sym_COMMA] = ACTIONS(189), + [anon_sym_EQ] = ACTIONS(189), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(534), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHend] = ACTIONS(353), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [38] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_BSLASHpart] = ACTIONS(147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddpart] = ACTIONS(147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHchapter] = ACTIONS(147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddchap] = ACTIONS(147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(145), - [anon_sym_BSLASHsection] = ACTIONS(147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddsec] = ACTIONS(147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHparagraph] = ACTIONS(147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHitem] = ACTIONS(147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_BSLASHpart] = ACTIONS(149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddpart] = ACTIONS(149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHchapter] = ACTIONS(149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddchap] = ACTIONS(149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), + [anon_sym_BSLASHsection] = ACTIONS(149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddsec] = ACTIONS(149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHparagraph] = ACTIONS(149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHitem] = ACTIONS(149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASH_RBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), }, [39] = { - [sym_block_comment] = STATE(24), - [sym__root_content] = STATE(24), - [sym__flat_content] = STATE(24), - [sym__text_with_env_content] = STATE(24), - [sym__text_content] = STATE(24), - [sym__section] = STATE(24), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), - [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(24), - [sym_text] = STATE(24), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(24), - [sym_inline_formula] = STATE(24), - [sym_math_set] = STATE(24), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(24), - [sym_comment_environment] = STATE(24), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(24), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(24), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(24), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(24), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(24), - [sym_generic_command] = STATE(24), - [sym_package_include] = STATE(24), - [sym_class_include] = STATE(24), - [sym_latex_include] = STATE(24), - [sym_biblatex_include] = STATE(24), - [sym_bibtex_include] = STATE(24), - [sym_graphics_include] = STATE(24), - [sym_svg_include] = STATE(24), - [sym_inkscape_include] = STATE(24), - [sym_verbatim_include] = STATE(24), - [sym_import_include] = STATE(24), - [sym_caption] = STATE(24), - [sym_citation] = STATE(24), - [sym_label_definition] = STATE(24), - [sym_label_reference] = STATE(24), - [sym_label_reference_range] = STATE(24), - [sym_label_number] = STATE(24), - [sym_new_command_definition] = STATE(24), - [sym_old_command_definition] = STATE(24), - [sym_let_command_definition] = STATE(24), - [sym_environment_definition] = STATE(24), - [sym_glossary_entry_definition] = STATE(24), - [sym_glossary_entry_reference] = STATE(24), - [sym_acronym_definition] = STATE(24), - [sym_acronym_reference] = STATE(24), - [sym_theorem_definition] = STATE(24), - [sym_color_definition] = STATE(24), - [sym_color_set_definition] = STATE(24), - [sym_color_reference] = STATE(24), - [sym_tikz_library_import] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), - [aux_sym_text_repeat1] = STATE(207), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(546), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(548), - [sym_word] = ACTIONS(47), - [sym_placeholder] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(51), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_STAR] = ACTIONS(51), - [anon_sym_SLASH] = ACTIONS(51), - [anon_sym_CARET] = ACTIONS(51), - [anon_sym__] = ACTIONS(51), - [anon_sym_LT] = ACTIONS(51), - [anon_sym_GT] = ACTIONS(51), - [anon_sym_BANG] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(51), - [anon_sym_COLON] = ACTIONS(51), - [anon_sym_SQUOTE] = ACTIONS(51), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(53), - [anon_sym_BSLASH_LBRACK] = ACTIONS(53), - [anon_sym_DOLLAR] = ACTIONS(55), - [anon_sym_BSLASH_LPAREN] = ACTIONS(57), - [anon_sym_BSLASH_LBRACE] = ACTIONS(59), + [sym_block_comment] = STATE(79), + [sym__root_content] = STATE(79), + [sym__flat_content] = STATE(79), + [sym__text_with_env_content] = STATE(79), + [sym__text_content] = STATE(79), + [sym__section] = STATE(79), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(79), + [sym_text] = STATE(79), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(79), + [sym_inline_formula] = STATE(79), + [sym_math_set] = STATE(79), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(79), + [sym_comment_environment] = STATE(79), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(79), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(79), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(79), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(79), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(79), + [sym_generic_command] = STATE(79), + [sym_package_include] = STATE(79), + [sym_class_include] = STATE(79), + [sym_latex_include] = STATE(79), + [sym_biblatex_include] = STATE(79), + [sym_bibtex_include] = STATE(79), + [sym_graphics_include] = STATE(79), + [sym_svg_include] = STATE(79), + [sym_inkscape_include] = STATE(79), + [sym_verbatim_include] = STATE(79), + [sym_import_include] = STATE(79), + [sym_caption] = STATE(79), + [sym_citation] = STATE(79), + [sym_label_definition] = STATE(79), + [sym_label_reference] = STATE(79), + [sym_label_reference_range] = STATE(79), + [sym_label_number] = STATE(79), + [sym_new_command_definition] = STATE(79), + [sym_old_command_definition] = STATE(79), + [sym_let_command_definition] = STATE(79), + [sym_environment_definition] = STATE(79), + [sym_glossary_entry_definition] = STATE(79), + [sym_glossary_entry_reference] = STATE(79), + [sym_acronym_definition] = STATE(79), + [sym_acronym_reference] = STATE(79), + [sym_theorem_definition] = STATE(79), + [sym_color_definition] = STATE(79), + [sym_color_set_definition] = STATE(79), + [sym_color_reference] = STATE(79), + [sym_tikz_library_import] = STATE(79), + [sym_text_mode] = STATE(79), + [aux_sym_source_file_repeat1] = STATE(79), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(569), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(573), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(63), - [anon_sym_BSLASHRequirePackage] = ACTIONS(63), - [anon_sym_BSLASHdocumentclass] = ACTIONS(65), - [anon_sym_BSLASHinclude] = ACTIONS(67), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), - [anon_sym_BSLASHinput] = ACTIONS(67), - [anon_sym_BSLASHsubfile] = ACTIONS(67), - [anon_sym_BSLASHaddbibresource] = ACTIONS(69), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), + }, + [40] = { + [sym_block_comment] = STATE(115), + [sym__root_content] = STATE(115), + [sym__flat_content] = STATE(115), + [sym__text_with_env_content] = STATE(115), + [sym__text_content] = STATE(115), + [sym__section] = STATE(115), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(115), + [sym_text] = STATE(115), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(115), + [sym_inline_formula] = STATE(115), + [sym_math_set] = STATE(115), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(115), + [sym_comment_environment] = STATE(115), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(115), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(115), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(115), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(115), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(115), + [sym_generic_command] = STATE(115), + [sym_package_include] = STATE(115), + [sym_class_include] = STATE(115), + [sym_latex_include] = STATE(115), + [sym_biblatex_include] = STATE(115), + [sym_bibtex_include] = STATE(115), + [sym_graphics_include] = STATE(115), + [sym_svg_include] = STATE(115), + [sym_inkscape_include] = STATE(115), + [sym_verbatim_include] = STATE(115), + [sym_import_include] = STATE(115), + [sym_caption] = STATE(115), + [sym_citation] = STATE(115), + [sym_label_definition] = STATE(115), + [sym_label_reference] = STATE(115), + [sym_label_reference_range] = STATE(115), + [sym_label_number] = STATE(115), + [sym_new_command_definition] = STATE(115), + [sym_old_command_definition] = STATE(115), + [sym_let_command_definition] = STATE(115), + [sym_environment_definition] = STATE(115), + [sym_glossary_entry_definition] = STATE(115), + [sym_glossary_entry_reference] = STATE(115), + [sym_acronym_definition] = STATE(115), + [sym_acronym_reference] = STATE(115), + [sym_theorem_definition] = STATE(115), + [sym_color_definition] = STATE(115), + [sym_color_set_definition] = STATE(115), + [sym_color_reference] = STATE(115), + [sym_tikz_library_import] = STATE(115), + [sym_text_mode] = STATE(115), + [aux_sym_source_file_repeat1] = STATE(115), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(649), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_EQ] = ACTIONS(649), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(699), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), + }, + [41] = { + [sym_block_comment] = STATE(70), + [sym__root_content] = STATE(70), + [sym__flat_content] = STATE(70), + [sym__text_with_env_content] = STATE(70), + [sym__text_content] = STATE(70), + [sym__section] = STATE(70), + [sym__part_declaration] = STATE(123), + [sym_part] = STATE(280), + [sym__chapter_declaration] = STATE(133), + [sym_chapter] = STATE(279), + [sym__section_declaration] = STATE(142), + [sym_section] = STATE(277), + [sym__subsection_declaration] = STATE(152), + [sym_subsection] = STATE(276), + [sym__subsubsection_declaration] = STATE(163), + [sym_subsubsection] = STATE(275), + [sym__paragraph_declaration] = STATE(172), + [sym_paragraph] = STATE(274), + [sym__subparagraph_declaration] = STATE(182), + [sym_subparagraph] = STATE(273), + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(70), + [sym_text] = STATE(70), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(70), + [sym_inline_formula] = STATE(70), + [sym_math_set] = STATE(70), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(70), + [sym_comment_environment] = STATE(70), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(70), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(70), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(70), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(70), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(70), + [sym_generic_command] = STATE(70), + [sym_package_include] = STATE(70), + [sym_class_include] = STATE(70), + [sym_latex_include] = STATE(70), + [sym_biblatex_include] = STATE(70), + [sym_bibtex_include] = STATE(70), + [sym_graphics_include] = STATE(70), + [sym_svg_include] = STATE(70), + [sym_inkscape_include] = STATE(70), + [sym_verbatim_include] = STATE(70), + [sym_import_include] = STATE(70), + [sym_caption] = STATE(70), + [sym_citation] = STATE(70), + [sym_label_definition] = STATE(70), + [sym_label_reference] = STATE(70), + [sym_label_reference_range] = STATE(70), + [sym_label_number] = STATE(70), + [sym_new_command_definition] = STATE(70), + [sym_old_command_definition] = STATE(70), + [sym_let_command_definition] = STATE(70), + [sym_environment_definition] = STATE(70), + [sym_glossary_entry_definition] = STATE(70), + [sym_glossary_entry_reference] = STATE(70), + [sym_acronym_definition] = STATE(70), + [sym_acronym_reference] = STATE(70), + [sym_theorem_definition] = STATE(70), + [sym_color_definition] = STATE(70), + [sym_color_set_definition] = STATE(70), + [sym_color_reference] = STATE(70), + [sym_tikz_library_import] = STATE(70), + [sym_text_mode] = STATE(70), + [aux_sym_source_file_repeat1] = STATE(70), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), + [aux_sym_text_repeat1] = STATE(207), + [sym_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_RBRACK] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(769), + [anon_sym_BSLASHpart] = ACTIONS(13), + [anon_sym_BSLASHpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHaddpart] = ACTIONS(13), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHchapter] = ACTIONS(17), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), + [anon_sym_BSLASHaddchap] = ACTIONS(17), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(771), + [sym_word] = ACTIONS(47), + [sym_placeholder] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(51), + [anon_sym_DASH] = ACTIONS(51), + [anon_sym_STAR] = ACTIONS(51), + [anon_sym_SLASH] = ACTIONS(51), + [anon_sym_CARET] = ACTIONS(51), + [anon_sym__] = ACTIONS(51), + [anon_sym_LT] = ACTIONS(51), + [anon_sym_GT] = ACTIONS(51), + [anon_sym_BANG] = ACTIONS(51), + [anon_sym_PIPE] = ACTIONS(51), + [anon_sym_COLON] = ACTIONS(51), + [anon_sym_SQUOTE] = ACTIONS(51), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(53), + [anon_sym_BSLASH_LBRACK] = ACTIONS(53), + [anon_sym_DOLLAR] = ACTIONS(55), + [anon_sym_BSLASH_LPAREN] = ACTIONS(57), + [anon_sym_BSLASH_LBRACE] = ACTIONS(59), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(63), + [anon_sym_BSLASHRequirePackage] = ACTIONS(63), + [anon_sym_BSLASHdocumentclass] = ACTIONS(65), + [anon_sym_BSLASHinclude] = ACTIONS(67), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(67), + [anon_sym_BSLASHinput] = ACTIONS(67), + [anon_sym_BSLASHsubfile] = ACTIONS(67), + [anon_sym_BSLASHaddbibresource] = ACTIONS(69), [anon_sym_BSLASHbibliography] = ACTIONS(71), [anon_sym_BSLASHincludegraphics] = ACTIONS(73), [anon_sym_BSLASHincludesvg] = ACTIONS(75), @@ -33796,99 +32450,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [40] = { - [sym_block_comment] = STATE(24), - [sym__root_content] = STATE(24), - [sym__flat_content] = STATE(24), - [sym__text_with_env_content] = STATE(24), - [sym__text_content] = STATE(24), - [sym__section] = STATE(24), + [42] = { + [sym_block_comment] = STATE(103), + [sym__root_content] = STATE(103), + [sym__flat_content] = STATE(103), + [sym__text_with_env_content] = STATE(103), + [sym__text_content] = STATE(103), + [sym__section] = STATE(103), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(24), - [sym_text] = STATE(24), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(24), - [sym_inline_formula] = STATE(24), - [sym_math_set] = STATE(24), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(24), - [sym_comment_environment] = STATE(24), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(24), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(24), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(24), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(24), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(24), - [sym_generic_command] = STATE(24), - [sym_package_include] = STATE(24), - [sym_class_include] = STATE(24), - [sym_latex_include] = STATE(24), - [sym_biblatex_include] = STATE(24), - [sym_bibtex_include] = STATE(24), - [sym_graphics_include] = STATE(24), - [sym_svg_include] = STATE(24), - [sym_inkscape_include] = STATE(24), - [sym_verbatim_include] = STATE(24), - [sym_import_include] = STATE(24), - [sym_caption] = STATE(24), - [sym_citation] = STATE(24), - [sym_label_definition] = STATE(24), - [sym_label_reference] = STATE(24), - [sym_label_reference_range] = STATE(24), - [sym_label_number] = STATE(24), - [sym_new_command_definition] = STATE(24), - [sym_old_command_definition] = STATE(24), - [sym_let_command_definition] = STATE(24), - [sym_environment_definition] = STATE(24), - [sym_glossary_entry_definition] = STATE(24), - [sym_glossary_entry_reference] = STATE(24), - [sym_acronym_definition] = STATE(24), - [sym_acronym_reference] = STATE(24), - [sym_theorem_definition] = STATE(24), - [sym_color_definition] = STATE(24), - [sym_color_set_definition] = STATE(24), - [sym_color_reference] = STATE(24), - [sym_tikz_library_import] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(103), + [sym_text] = STATE(103), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(103), + [sym_inline_formula] = STATE(103), + [sym_math_set] = STATE(103), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(103), + [sym_comment_environment] = STATE(103), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(103), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(103), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(103), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(103), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(103), + [sym_generic_command] = STATE(103), + [sym_package_include] = STATE(103), + [sym_class_include] = STATE(103), + [sym_latex_include] = STATE(103), + [sym_biblatex_include] = STATE(103), + [sym_bibtex_include] = STATE(103), + [sym_graphics_include] = STATE(103), + [sym_svg_include] = STATE(103), + [sym_inkscape_include] = STATE(103), + [sym_verbatim_include] = STATE(103), + [sym_import_include] = STATE(103), + [sym_caption] = STATE(103), + [sym_citation] = STATE(103), + [sym_label_definition] = STATE(103), + [sym_label_reference] = STATE(103), + [sym_label_reference_range] = STATE(103), + [sym_label_number] = STATE(103), + [sym_new_command_definition] = STATE(103), + [sym_old_command_definition] = STATE(103), + [sym_let_command_definition] = STATE(103), + [sym_environment_definition] = STATE(103), + [sym_glossary_entry_definition] = STATE(103), + [sym_glossary_entry_reference] = STATE(103), + [sym_acronym_definition] = STATE(103), + [sym_acronym_reference] = STATE(103), + [sym_theorem_definition] = STATE(103), + [sym_color_definition] = STATE(103), + [sym_color_set_definition] = STATE(103), + [sym_color_reference] = STATE(103), + [sym_tikz_library_import] = STATE(103), + [sym_text_mode] = STATE(103), + [aux_sym_source_file_repeat1] = STATE(103), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_RBRACK] = ACTIONS(773), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(773), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -33912,7 +32570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(550), + [anon_sym_RBRACE] = ACTIONS(775), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -34146,449 +32804,2227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [41] = { - [sym_block_comment] = STATE(87), - [sym__root_content] = STATE(87), - [sym__flat_content] = STATE(87), - [sym__text_with_env_content] = STATE(87), - [sym__text_content] = STATE(87), - [sym__section] = STATE(87), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), + [43] = { + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), + }, + [44] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(137), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [45] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), + }, + [46] = { + [sym_block_comment] = STATE(115), + [sym__root_content] = STATE(115), + [sym__flat_content] = STATE(115), + [sym__text_with_env_content] = STATE(115), + [sym__text_content] = STATE(115), + [sym__section] = STATE(115), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(87), - [sym_text] = STATE(87), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(87), - [sym_inline_formula] = STATE(87), - [sym_math_set] = STATE(87), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(87), - [sym_comment_environment] = STATE(87), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(87), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(87), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(87), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(87), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(87), - [sym_generic_command] = STATE(87), - [sym_package_include] = STATE(87), - [sym_class_include] = STATE(87), - [sym_latex_include] = STATE(87), - [sym_biblatex_include] = STATE(87), - [sym_bibtex_include] = STATE(87), - [sym_graphics_include] = STATE(87), - [sym_svg_include] = STATE(87), - [sym_inkscape_include] = STATE(87), - [sym_verbatim_include] = STATE(87), - [sym_import_include] = STATE(87), - [sym_caption] = STATE(87), - [sym_citation] = STATE(87), - [sym_label_definition] = STATE(87), - [sym_label_reference] = STATE(87), - [sym_label_reference_range] = STATE(87), - [sym_label_number] = STATE(87), - [sym_new_command_definition] = STATE(87), - [sym_old_command_definition] = STATE(87), - [sym_let_command_definition] = STATE(87), - [sym_environment_definition] = STATE(87), - [sym_glossary_entry_definition] = STATE(87), - [sym_glossary_entry_reference] = STATE(87), - [sym_acronym_definition] = STATE(87), - [sym_acronym_reference] = STATE(87), - [sym_theorem_definition] = STATE(87), - [sym_color_definition] = STATE(87), - [sym_color_set_definition] = STATE(87), - [sym_color_reference] = STATE(87), - [sym_tikz_library_import] = STATE(87), - [aux_sym_source_file_repeat1] = STATE(87), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_RBRACK] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(566), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(570), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(115), + [sym_text] = STATE(115), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(115), + [sym_inline_formula] = STATE(115), + [sym_math_set] = STATE(115), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(115), + [sym_comment_environment] = STATE(115), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(115), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(115), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(115), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(115), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(115), + [sym_generic_command] = STATE(115), + [sym_package_include] = STATE(115), + [sym_class_include] = STATE(115), + [sym_latex_include] = STATE(115), + [sym_biblatex_include] = STATE(115), + [sym_bibtex_include] = STATE(115), + [sym_graphics_include] = STATE(115), + [sym_svg_include] = STATE(115), + [sym_inkscape_include] = STATE(115), + [sym_verbatim_include] = STATE(115), + [sym_import_include] = STATE(115), + [sym_caption] = STATE(115), + [sym_citation] = STATE(115), + [sym_label_definition] = STATE(115), + [sym_label_reference] = STATE(115), + [sym_label_reference_range] = STATE(115), + [sym_label_number] = STATE(115), + [sym_new_command_definition] = STATE(115), + [sym_old_command_definition] = STATE(115), + [sym_let_command_definition] = STATE(115), + [sym_environment_definition] = STATE(115), + [sym_glossary_entry_definition] = STATE(115), + [sym_glossary_entry_reference] = STATE(115), + [sym_acronym_definition] = STATE(115), + [sym_acronym_reference] = STATE(115), + [sym_theorem_definition] = STATE(115), + [sym_color_definition] = STATE(115), + [sym_color_set_definition] = STATE(115), + [sym_color_reference] = STATE(115), + [sym_tikz_library_import] = STATE(115), + [sym_text_mode] = STATE(115), + [aux_sym_source_file_repeat1] = STATE(115), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(649), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_EQ] = ACTIONS(649), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(777), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, - [42] = { - [sym_block_comment] = STATE(24), - [sym__root_content] = STATE(24), - [sym__flat_content] = STATE(24), - [sym__text_with_env_content] = STATE(24), - [sym__text_content] = STATE(24), - [sym__section] = STATE(24), + [47] = { + [sym_block_comment] = STATE(79), + [sym__root_content] = STATE(79), + [sym__flat_content] = STATE(79), + [sym__text_with_env_content] = STATE(79), + [sym__text_content] = STATE(79), + [sym__section] = STATE(79), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(79), + [sym_text] = STATE(79), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(79), + [sym_inline_formula] = STATE(79), + [sym_math_set] = STATE(79), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(79), + [sym_comment_environment] = STATE(79), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(79), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(79), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(79), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(79), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(79), + [sym_generic_command] = STATE(79), + [sym_package_include] = STATE(79), + [sym_class_include] = STATE(79), + [sym_latex_include] = STATE(79), + [sym_biblatex_include] = STATE(79), + [sym_bibtex_include] = STATE(79), + [sym_graphics_include] = STATE(79), + [sym_svg_include] = STATE(79), + [sym_inkscape_include] = STATE(79), + [sym_verbatim_include] = STATE(79), + [sym_import_include] = STATE(79), + [sym_caption] = STATE(79), + [sym_citation] = STATE(79), + [sym_label_definition] = STATE(79), + [sym_label_reference] = STATE(79), + [sym_label_reference_range] = STATE(79), + [sym_label_number] = STATE(79), + [sym_new_command_definition] = STATE(79), + [sym_old_command_definition] = STATE(79), + [sym_let_command_definition] = STATE(79), + [sym_environment_definition] = STATE(79), + [sym_glossary_entry_definition] = STATE(79), + [sym_glossary_entry_reference] = STATE(79), + [sym_acronym_definition] = STATE(79), + [sym_acronym_reference] = STATE(79), + [sym_theorem_definition] = STATE(79), + [sym_color_definition] = STATE(79), + [sym_color_set_definition] = STATE(79), + [sym_color_reference] = STATE(79), + [sym_tikz_library_import] = STATE(79), + [sym_text_mode] = STATE(79), + [aux_sym_source_file_repeat1] = STATE(79), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(781), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), + }, + [48] = { + [sym_block_comment] = STATE(104), + [sym__root_content] = STATE(104), + [sym__flat_content] = STATE(104), + [sym__text_with_env_content] = STATE(104), + [sym__text_content] = STATE(104), + [sym__section] = STATE(104), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(104), + [sym_text] = STATE(104), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(104), + [sym_inline_formula] = STATE(104), + [sym_math_set] = STATE(104), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(104), + [sym_comment_environment] = STATE(104), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(104), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(104), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(104), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(104), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(104), + [sym_generic_command] = STATE(104), + [sym_package_include] = STATE(104), + [sym_class_include] = STATE(104), + [sym_latex_include] = STATE(104), + [sym_biblatex_include] = STATE(104), + [sym_bibtex_include] = STATE(104), + [sym_graphics_include] = STATE(104), + [sym_svg_include] = STATE(104), + [sym_inkscape_include] = STATE(104), + [sym_verbatim_include] = STATE(104), + [sym_import_include] = STATE(104), + [sym_caption] = STATE(104), + [sym_citation] = STATE(104), + [sym_label_definition] = STATE(104), + [sym_label_reference] = STATE(104), + [sym_label_reference_range] = STATE(104), + [sym_label_number] = STATE(104), + [sym_new_command_definition] = STATE(104), + [sym_old_command_definition] = STATE(104), + [sym_let_command_definition] = STATE(104), + [sym_environment_definition] = STATE(104), + [sym_glossary_entry_definition] = STATE(104), + [sym_glossary_entry_reference] = STATE(104), + [sym_acronym_definition] = STATE(104), + [sym_acronym_reference] = STATE(104), + [sym_theorem_definition] = STATE(104), + [sym_color_definition] = STATE(104), + [sym_color_set_definition] = STATE(104), + [sym_color_reference] = STATE(104), + [sym_tikz_library_import] = STATE(104), + [sym_text_mode] = STATE(104), + [aux_sym_source_file_repeat1] = STATE(104), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(787), + [anon_sym_COMMA] = ACTIONS(787), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(797), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [49] = { + [sym_block_comment] = STATE(22), + [sym__root_content] = STATE(22), + [sym__flat_content] = STATE(22), + [sym__text_with_env_content] = STATE(22), + [sym__text_content] = STATE(22), + [sym__section] = STATE(22), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(24), - [sym_text] = STATE(24), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(24), - [sym_inline_formula] = STATE(24), - [sym_math_set] = STATE(24), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(24), - [sym_comment_environment] = STATE(24), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(24), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(24), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(24), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(24), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(24), - [sym_generic_command] = STATE(24), - [sym_package_include] = STATE(24), - [sym_class_include] = STATE(24), - [sym_latex_include] = STATE(24), - [sym_biblatex_include] = STATE(24), - [sym_bibtex_include] = STATE(24), - [sym_graphics_include] = STATE(24), - [sym_svg_include] = STATE(24), - [sym_inkscape_include] = STATE(24), - [sym_verbatim_include] = STATE(24), - [sym_import_include] = STATE(24), - [sym_caption] = STATE(24), - [sym_citation] = STATE(24), - [sym_label_definition] = STATE(24), - [sym_label_reference] = STATE(24), - [sym_label_reference_range] = STATE(24), - [sym_label_number] = STATE(24), - [sym_new_command_definition] = STATE(24), - [sym_old_command_definition] = STATE(24), - [sym_let_command_definition] = STATE(24), - [sym_environment_definition] = STATE(24), - [sym_glossary_entry_definition] = STATE(24), - [sym_glossary_entry_reference] = STATE(24), - [sym_acronym_definition] = STATE(24), - [sym_acronym_reference] = STATE(24), - [sym_theorem_definition] = STATE(24), - [sym_color_definition] = STATE(24), - [sym_color_set_definition] = STATE(24), - [sym_color_reference] = STATE(24), - [sym_tikz_library_import] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(22), + [sym_text] = STATE(22), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(22), + [sym_inline_formula] = STATE(22), + [sym_math_set] = STATE(22), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(22), + [sym_comment_environment] = STATE(22), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(22), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(22), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(22), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(22), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(22), + [sym_generic_command] = STATE(22), + [sym_package_include] = STATE(22), + [sym_class_include] = STATE(22), + [sym_latex_include] = STATE(22), + [sym_biblatex_include] = STATE(22), + [sym_bibtex_include] = STATE(22), + [sym_graphics_include] = STATE(22), + [sym_svg_include] = STATE(22), + [sym_inkscape_include] = STATE(22), + [sym_verbatim_include] = STATE(22), + [sym_import_include] = STATE(22), + [sym_caption] = STATE(22), + [sym_citation] = STATE(22), + [sym_label_definition] = STATE(22), + [sym_label_reference] = STATE(22), + [sym_label_reference_range] = STATE(22), + [sym_label_number] = STATE(22), + [sym_new_command_definition] = STATE(22), + [sym_old_command_definition] = STATE(22), + [sym_let_command_definition] = STATE(22), + [sym_environment_definition] = STATE(22), + [sym_glossary_entry_definition] = STATE(22), + [sym_glossary_entry_reference] = STATE(22), + [sym_acronym_definition] = STATE(22), + [sym_acronym_reference] = STATE(22), + [sym_theorem_definition] = STATE(22), + [sym_color_definition] = STATE(22), + [sym_color_set_definition] = STATE(22), + [sym_color_reference] = STATE(22), + [sym_tikz_library_import] = STATE(22), + [sym_text_mode] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -34612,7 +35048,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(644), + [anon_sym_RBRACE] = ACTIONS(879), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -34846,799 +35282,1165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [43] = { - [sym_block_comment] = STATE(115), - [sym__root_content] = STATE(115), - [sym__flat_content] = STATE(115), - [sym__text_with_env_content] = STATE(115), - [sym__text_content] = STATE(115), - [sym__section] = STATE(115), - [sym__part_declaration] = STATE(124), + [50] = { + [sym_block_comment] = STATE(46), + [sym__root_content] = STATE(46), + [sym__flat_content] = STATE(46), + [sym__text_with_env_content] = STATE(46), + [sym__text_content] = STATE(46), + [sym__section] = STATE(46), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(46), + [sym_text] = STATE(46), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(46), + [sym_inline_formula] = STATE(46), + [sym_math_set] = STATE(46), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(46), + [sym_comment_environment] = STATE(46), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(46), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(46), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(46), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(46), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(46), + [sym_generic_command] = STATE(46), + [sym_package_include] = STATE(46), + [sym_class_include] = STATE(46), + [sym_latex_include] = STATE(46), + [sym_biblatex_include] = STATE(46), + [sym_bibtex_include] = STATE(46), + [sym_graphics_include] = STATE(46), + [sym_svg_include] = STATE(46), + [sym_inkscape_include] = STATE(46), + [sym_verbatim_include] = STATE(46), + [sym_import_include] = STATE(46), + [sym_caption] = STATE(46), + [sym_citation] = STATE(46), + [sym_label_definition] = STATE(46), + [sym_label_reference] = STATE(46), + [sym_label_reference_range] = STATE(46), + [sym_label_number] = STATE(46), + [sym_new_command_definition] = STATE(46), + [sym_old_command_definition] = STATE(46), + [sym_let_command_definition] = STATE(46), + [sym_environment_definition] = STATE(46), + [sym_glossary_entry_definition] = STATE(46), + [sym_glossary_entry_reference] = STATE(46), + [sym_acronym_definition] = STATE(46), + [sym_acronym_reference] = STATE(46), + [sym_theorem_definition] = STATE(46), + [sym_color_definition] = STATE(46), + [sym_color_set_definition] = STATE(46), + [sym_color_reference] = STATE(46), + [sym_tikz_library_import] = STATE(46), + [sym_text_mode] = STATE(46), + [aux_sym_source_file_repeat1] = STATE(46), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(881), + [anon_sym_RPAREN] = ACTIONS(881), + [anon_sym_LBRACK] = ACTIONS(881), + [anon_sym_RBRACK] = ACTIONS(881), + [anon_sym_COMMA] = ACTIONS(881), + [anon_sym_EQ] = ACTIONS(881), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(883), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), + }, + [51] = { + [sym_block_comment] = STATE(47), + [sym__root_content] = STATE(47), + [sym__flat_content] = STATE(47), + [sym__text_with_env_content] = STATE(47), + [sym__text_content] = STATE(47), + [sym__section] = STATE(47), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(115), - [sym_text] = STATE(115), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(115), - [sym_inline_formula] = STATE(115), - [sym_math_set] = STATE(115), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(115), - [sym_comment_environment] = STATE(115), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(115), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(115), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(115), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(115), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(115), - [sym_generic_command] = STATE(115), - [sym_package_include] = STATE(115), - [sym_class_include] = STATE(115), - [sym_latex_include] = STATE(115), - [sym_biblatex_include] = STATE(115), - [sym_bibtex_include] = STATE(115), - [sym_graphics_include] = STATE(115), - [sym_svg_include] = STATE(115), - [sym_inkscape_include] = STATE(115), - [sym_verbatim_include] = STATE(115), - [sym_import_include] = STATE(115), - [sym_caption] = STATE(115), - [sym_citation] = STATE(115), - [sym_label_definition] = STATE(115), - [sym_label_reference] = STATE(115), - [sym_label_reference_range] = STATE(115), - [sym_label_number] = STATE(115), - [sym_new_command_definition] = STATE(115), - [sym_old_command_definition] = STATE(115), - [sym_let_command_definition] = STATE(115), - [sym_environment_definition] = STATE(115), - [sym_glossary_entry_definition] = STATE(115), - [sym_glossary_entry_reference] = STATE(115), - [sym_acronym_definition] = STATE(115), - [sym_acronym_reference] = STATE(115), - [sym_theorem_definition] = STATE(115), - [sym_color_definition] = STATE(115), - [sym_color_set_definition] = STATE(115), - [sym_color_reference] = STATE(115), - [sym_tikz_library_import] = STATE(115), - [aux_sym_source_file_repeat1] = STATE(115), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(47), + [sym_text] = STATE(47), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(47), + [sym_inline_formula] = STATE(47), + [sym_math_set] = STATE(47), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(47), + [sym_comment_environment] = STATE(47), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(47), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(47), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(47), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(47), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(47), + [sym_generic_command] = STATE(47), + [sym_package_include] = STATE(47), + [sym_class_include] = STATE(47), + [sym_latex_include] = STATE(47), + [sym_biblatex_include] = STATE(47), + [sym_bibtex_include] = STATE(47), + [sym_graphics_include] = STATE(47), + [sym_svg_include] = STATE(47), + [sym_inkscape_include] = STATE(47), + [sym_verbatim_include] = STATE(47), + [sym_import_include] = STATE(47), + [sym_caption] = STATE(47), + [sym_citation] = STATE(47), + [sym_label_definition] = STATE(47), + [sym_label_reference] = STATE(47), + [sym_label_reference_range] = STATE(47), + [sym_label_number] = STATE(47), + [sym_new_command_definition] = STATE(47), + [sym_old_command_definition] = STATE(47), + [sym_let_command_definition] = STATE(47), + [sym_environment_definition] = STATE(47), + [sym_glossary_entry_definition] = STATE(47), + [sym_glossary_entry_reference] = STATE(47), + [sym_acronym_definition] = STATE(47), + [sym_acronym_reference] = STATE(47), + [sym_theorem_definition] = STATE(47), + [sym_color_definition] = STATE(47), + [sym_color_set_definition] = STATE(47), + [sym_color_reference] = STATE(47), + [sym_tikz_library_import] = STATE(47), + [sym_text_mode] = STATE(47), + [aux_sym_source_file_repeat1] = STATE(47), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(650), - [anon_sym_RPAREN] = ACTIONS(650), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_RBRACK] = ACTIONS(650), - [anon_sym_COMMA] = ACTIONS(650), - [anon_sym_EQ] = ACTIONS(650), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(662), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(666), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(885), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(889), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [44] = { - [sym_block_comment] = STATE(41), - [sym__root_content] = STATE(41), - [sym__flat_content] = STATE(41), - [sym__text_with_env_content] = STATE(41), - [sym__text_content] = STATE(41), - [sym__section] = STATE(41), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(41), - [sym_text] = STATE(41), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(41), - [sym_inline_formula] = STATE(41), - [sym_math_set] = STATE(41), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(41), - [sym_comment_environment] = STATE(41), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(41), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(41), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(41), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(41), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(41), - [sym_generic_command] = STATE(41), - [sym_package_include] = STATE(41), - [sym_class_include] = STATE(41), - [sym_latex_include] = STATE(41), - [sym_biblatex_include] = STATE(41), - [sym_bibtex_include] = STATE(41), - [sym_graphics_include] = STATE(41), - [sym_svg_include] = STATE(41), - [sym_inkscape_include] = STATE(41), - [sym_verbatim_include] = STATE(41), - [sym_import_include] = STATE(41), - [sym_caption] = STATE(41), - [sym_citation] = STATE(41), - [sym_label_definition] = STATE(41), - [sym_label_reference] = STATE(41), - [sym_label_reference_range] = STATE(41), - [sym_label_number] = STATE(41), - [sym_new_command_definition] = STATE(41), - [sym_old_command_definition] = STATE(41), - [sym_let_command_definition] = STATE(41), - [sym_environment_definition] = STATE(41), - [sym_glossary_entry_definition] = STATE(41), - [sym_glossary_entry_reference] = STATE(41), - [sym_acronym_definition] = STATE(41), - [sym_acronym_reference] = STATE(41), - [sym_theorem_definition] = STATE(41), - [sym_color_definition] = STATE(41), - [sym_color_set_definition] = STATE(41), - [sym_color_reference] = STATE(41), - [sym_tikz_library_import] = STATE(41), - [aux_sym_source_file_repeat1] = STATE(41), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(736), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(736), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_COMMA] = ACTIONS(736), - [anon_sym_EQ] = ACTIONS(736), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(738), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [52] = { + [sym_block_comment] = STATE(48), + [sym__root_content] = STATE(48), + [sym__flat_content] = STATE(48), + [sym__text_with_env_content] = STATE(48), + [sym__text_content] = STATE(48), + [sym__section] = STATE(48), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(48), + [sym_text] = STATE(48), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(48), + [sym_inline_formula] = STATE(48), + [sym_math_set] = STATE(48), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(48), + [sym_comment_environment] = STATE(48), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(48), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(48), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(48), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(48), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(48), + [sym_generic_command] = STATE(48), + [sym_package_include] = STATE(48), + [sym_class_include] = STATE(48), + [sym_latex_include] = STATE(48), + [sym_biblatex_include] = STATE(48), + [sym_bibtex_include] = STATE(48), + [sym_graphics_include] = STATE(48), + [sym_svg_include] = STATE(48), + [sym_inkscape_include] = STATE(48), + [sym_verbatim_include] = STATE(48), + [sym_import_include] = STATE(48), + [sym_caption] = STATE(48), + [sym_citation] = STATE(48), + [sym_label_definition] = STATE(48), + [sym_label_reference] = STATE(48), + [sym_label_reference_range] = STATE(48), + [sym_label_number] = STATE(48), + [sym_new_command_definition] = STATE(48), + [sym_old_command_definition] = STATE(48), + [sym_let_command_definition] = STATE(48), + [sym_environment_definition] = STATE(48), + [sym_glossary_entry_definition] = STATE(48), + [sym_glossary_entry_reference] = STATE(48), + [sym_acronym_definition] = STATE(48), + [sym_acronym_reference] = STATE(48), + [sym_theorem_definition] = STATE(48), + [sym_color_definition] = STATE(48), + [sym_color_set_definition] = STATE(48), + [sym_color_reference] = STATE(48), + [sym_tikz_library_import] = STATE(48), + [sym_text_mode] = STATE(48), + [aux_sym_source_file_repeat1] = STATE(48), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(891), + [anon_sym_RPAREN] = ACTIONS(891), + [anon_sym_LBRACK] = ACTIONS(891), + [anon_sym_RBRACK] = ACTIONS(891), + [anon_sym_COMMA] = ACTIONS(891), + [anon_sym_EQ] = ACTIONS(891), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(893), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, - [45] = { - [sym_block_comment] = STATE(42), - [sym__root_content] = STATE(42), - [sym__flat_content] = STATE(42), - [sym__text_with_env_content] = STATE(42), - [sym__text_content] = STATE(42), - [sym__section] = STATE(42), + [53] = { + [sym_block_comment] = STATE(49), + [sym__root_content] = STATE(49), + [sym__flat_content] = STATE(49), + [sym__text_with_env_content] = STATE(49), + [sym__text_content] = STATE(49), + [sym__section] = STATE(49), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(42), - [sym_text] = STATE(42), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(42), - [sym_inline_formula] = STATE(42), - [sym_math_set] = STATE(42), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(42), - [sym_comment_environment] = STATE(42), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(42), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(42), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(42), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(42), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(42), - [sym_generic_command] = STATE(42), - [sym_package_include] = STATE(42), - [sym_class_include] = STATE(42), - [sym_latex_include] = STATE(42), - [sym_biblatex_include] = STATE(42), - [sym_bibtex_include] = STATE(42), - [sym_graphics_include] = STATE(42), - [sym_svg_include] = STATE(42), - [sym_inkscape_include] = STATE(42), - [sym_verbatim_include] = STATE(42), - [sym_import_include] = STATE(42), - [sym_caption] = STATE(42), - [sym_citation] = STATE(42), - [sym_label_definition] = STATE(42), - [sym_label_reference] = STATE(42), - [sym_label_reference_range] = STATE(42), - [sym_label_number] = STATE(42), - [sym_new_command_definition] = STATE(42), - [sym_old_command_definition] = STATE(42), - [sym_let_command_definition] = STATE(42), - [sym_environment_definition] = STATE(42), - [sym_glossary_entry_definition] = STATE(42), - [sym_glossary_entry_reference] = STATE(42), - [sym_acronym_definition] = STATE(42), - [sym_acronym_reference] = STATE(42), - [sym_theorem_definition] = STATE(42), - [sym_color_definition] = STATE(42), - [sym_color_set_definition] = STATE(42), - [sym_color_reference] = STATE(42), - [sym_tikz_library_import] = STATE(42), - [aux_sym_source_file_repeat1] = STATE(42), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(49), + [sym_text] = STATE(49), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(49), + [sym_inline_formula] = STATE(49), + [sym_math_set] = STATE(49), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(49), + [sym_comment_environment] = STATE(49), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(49), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(49), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(49), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(49), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(49), + [sym_generic_command] = STATE(49), + [sym_package_include] = STATE(49), + [sym_class_include] = STATE(49), + [sym_latex_include] = STATE(49), + [sym_biblatex_include] = STATE(49), + [sym_bibtex_include] = STATE(49), + [sym_graphics_include] = STATE(49), + [sym_svg_include] = STATE(49), + [sym_inkscape_include] = STATE(49), + [sym_verbatim_include] = STATE(49), + [sym_import_include] = STATE(49), + [sym_caption] = STATE(49), + [sym_citation] = STATE(49), + [sym_label_definition] = STATE(49), + [sym_label_reference] = STATE(49), + [sym_label_reference_range] = STATE(49), + [sym_label_number] = STATE(49), + [sym_new_command_definition] = STATE(49), + [sym_old_command_definition] = STATE(49), + [sym_let_command_definition] = STATE(49), + [sym_environment_definition] = STATE(49), + [sym_glossary_entry_definition] = STATE(49), + [sym_glossary_entry_reference] = STATE(49), + [sym_acronym_definition] = STATE(49), + [sym_acronym_reference] = STATE(49), + [sym_theorem_definition] = STATE(49), + [sym_color_definition] = STATE(49), + [sym_color_set_definition] = STATE(49), + [sym_color_reference] = STATE(49), + [sym_tikz_library_import] = STATE(49), + [sym_text_mode] = STATE(49), + [aux_sym_source_file_repeat1] = STATE(49), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(742), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(742), - [anon_sym_RBRACK] = ACTIONS(742), - [anon_sym_COMMA] = ACTIONS(742), - [anon_sym_EQ] = ACTIONS(742), + [anon_sym_LPAREN] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_LBRACK] = ACTIONS(897), + [anon_sym_RBRACK] = ACTIONS(897), + [anon_sym_COMMA] = ACTIONS(897), + [anon_sym_EQ] = ACTIONS(897), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -35662,7 +36464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(899), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -35896,2899 +36698,1873 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [46] = { - [sym_block_comment] = STATE(87), - [sym__root_content] = STATE(87), - [sym__flat_content] = STATE(87), - [sym__text_with_env_content] = STATE(87), - [sym__text_content] = STATE(87), - [sym__section] = STATE(87), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(87), - [sym_text] = STATE(87), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(87), - [sym_inline_formula] = STATE(87), - [sym_math_set] = STATE(87), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(87), - [sym_comment_environment] = STATE(87), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(87), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(87), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(87), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(87), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(87), - [sym_generic_command] = STATE(87), - [sym_package_include] = STATE(87), - [sym_class_include] = STATE(87), - [sym_latex_include] = STATE(87), - [sym_biblatex_include] = STATE(87), - [sym_bibtex_include] = STATE(87), - [sym_graphics_include] = STATE(87), - [sym_svg_include] = STATE(87), - [sym_inkscape_include] = STATE(87), - [sym_verbatim_include] = STATE(87), - [sym_import_include] = STATE(87), - [sym_caption] = STATE(87), - [sym_citation] = STATE(87), - [sym_label_definition] = STATE(87), - [sym_label_reference] = STATE(87), - [sym_label_reference_range] = STATE(87), - [sym_label_number] = STATE(87), - [sym_new_command_definition] = STATE(87), - [sym_old_command_definition] = STATE(87), - [sym_let_command_definition] = STATE(87), - [sym_environment_definition] = STATE(87), - [sym_glossary_entry_definition] = STATE(87), - [sym_glossary_entry_reference] = STATE(87), - [sym_acronym_definition] = STATE(87), - [sym_acronym_reference] = STATE(87), - [sym_theorem_definition] = STATE(87), - [sym_color_definition] = STATE(87), - [sym_color_set_definition] = STATE(87), - [sym_color_reference] = STATE(87), - [sym_tikz_library_import] = STATE(87), - [aux_sym_source_file_repeat1] = STATE(87), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_RBRACK] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(746), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(748), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [47] = { - [sym_block_comment] = STATE(84), - [sym__root_content] = STATE(84), - [sym__flat_content] = STATE(84), - [sym__text_with_env_content] = STATE(84), - [sym__text_content] = STATE(84), - [sym__section] = STATE(84), - [sym__part_declaration] = STATE(124), + [54] = { + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(84), - [sym_text] = STATE(84), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(84), - [sym_inline_formula] = STATE(84), - [sym_math_set] = STATE(84), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(84), - [sym_comment_environment] = STATE(84), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(84), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(84), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(84), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(84), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(84), - [sym_generic_command] = STATE(84), - [sym_package_include] = STATE(84), - [sym_class_include] = STATE(84), - [sym_latex_include] = STATE(84), - [sym_biblatex_include] = STATE(84), - [sym_bibtex_include] = STATE(84), - [sym_graphics_include] = STATE(84), - [sym_svg_include] = STATE(84), - [sym_inkscape_include] = STATE(84), - [sym_verbatim_include] = STATE(84), - [sym_import_include] = STATE(84), - [sym_caption] = STATE(84), - [sym_citation] = STATE(84), - [sym_label_definition] = STATE(84), - [sym_label_reference] = STATE(84), - [sym_label_reference_range] = STATE(84), - [sym_label_number] = STATE(84), - [sym_new_command_definition] = STATE(84), - [sym_old_command_definition] = STATE(84), - [sym_let_command_definition] = STATE(84), - [sym_environment_definition] = STATE(84), - [sym_glossary_entry_definition] = STATE(84), - [sym_glossary_entry_reference] = STATE(84), - [sym_acronym_definition] = STATE(84), - [sym_acronym_reference] = STATE(84), - [sym_theorem_definition] = STATE(84), - [sym_color_definition] = STATE(84), - [sym_color_set_definition] = STATE(84), - [sym_color_reference] = STATE(84), - [sym_tikz_library_import] = STATE(84), - [aux_sym_source_file_repeat1] = STATE(84), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(752), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(754), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), }, - [48] = { - [sym_block_comment] = STATE(113), - [sym__root_content] = STATE(113), - [sym__flat_content] = STATE(113), - [sym__text_with_env_content] = STATE(113), - [sym__text_content] = STATE(113), - [sym__section] = STATE(113), + [55] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(113), - [sym_text] = STATE(113), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(113), - [sym_inline_formula] = STATE(113), - [sym_math_set] = STATE(113), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(113), - [sym_comment_environment] = STATE(113), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(113), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(113), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(113), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(113), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(113), - [sym_generic_command] = STATE(113), - [sym_package_include] = STATE(113), - [sym_class_include] = STATE(113), - [sym_latex_include] = STATE(113), - [sym_biblatex_include] = STATE(113), - [sym_bibtex_include] = STATE(113), - [sym_graphics_include] = STATE(113), - [sym_svg_include] = STATE(113), - [sym_inkscape_include] = STATE(113), - [sym_verbatim_include] = STATE(113), - [sym_import_include] = STATE(113), - [sym_caption] = STATE(113), - [sym_citation] = STATE(113), - [sym_label_definition] = STATE(113), - [sym_label_reference] = STATE(113), - [sym_label_reference_range] = STATE(113), - [sym_label_number] = STATE(113), - [sym_new_command_definition] = STATE(113), - [sym_old_command_definition] = STATE(113), - [sym_let_command_definition] = STATE(113), - [sym_environment_definition] = STATE(113), - [sym_glossary_entry_definition] = STATE(113), - [sym_glossary_entry_reference] = STATE(113), - [sym_acronym_definition] = STATE(113), - [sym_acronym_reference] = STATE(113), - [sym_theorem_definition] = STATE(113), - [sym_color_definition] = STATE(113), - [sym_color_set_definition] = STATE(113), - [sym_color_reference] = STATE(113), - [sym_tikz_library_import] = STATE(113), - [aux_sym_source_file_repeat1] = STATE(113), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_RBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(760), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(810), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [49] = { - [sym_block_comment] = STATE(94), - [sym__root_content] = STATE(94), - [sym__flat_content] = STATE(94), - [sym__text_with_env_content] = STATE(94), - [sym__text_content] = STATE(94), - [sym__section] = STATE(94), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(94), - [sym_text] = STATE(94), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(94), - [sym_inline_formula] = STATE(94), - [sym_math_set] = STATE(94), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(94), - [sym_comment_environment] = STATE(94), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(94), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(94), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(94), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(94), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(94), - [sym_generic_command] = STATE(94), - [sym_package_include] = STATE(94), - [sym_class_include] = STATE(94), - [sym_latex_include] = STATE(94), - [sym_biblatex_include] = STATE(94), - [sym_bibtex_include] = STATE(94), - [sym_graphics_include] = STATE(94), - [sym_svg_include] = STATE(94), - [sym_inkscape_include] = STATE(94), - [sym_verbatim_include] = STATE(94), - [sym_import_include] = STATE(94), - [sym_caption] = STATE(94), - [sym_citation] = STATE(94), - [sym_label_definition] = STATE(94), - [sym_label_reference] = STATE(94), - [sym_label_reference_range] = STATE(94), - [sym_label_number] = STATE(94), - [sym_new_command_definition] = STATE(94), - [sym_old_command_definition] = STATE(94), - [sym_let_command_definition] = STATE(94), - [sym_environment_definition] = STATE(94), - [sym_glossary_entry_definition] = STATE(94), - [sym_glossary_entry_reference] = STATE(94), - [sym_acronym_definition] = STATE(94), - [sym_acronym_reference] = STATE(94), - [sym_theorem_definition] = STATE(94), - [sym_color_definition] = STATE(94), - [sym_color_set_definition] = STATE(94), - [sym_color_reference] = STATE(94), - [sym_tikz_library_import] = STATE(94), - [aux_sym_source_file_repeat1] = STATE(94), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(878), - [anon_sym_RPAREN] = ACTIONS(878), - [anon_sym_LBRACK] = ACTIONS(878), - [anon_sym_RBRACK] = ACTIONS(878), - [anon_sym_COMMA] = ACTIONS(878), - [anon_sym_EQ] = ACTIONS(878), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(880), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(882), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_LBRACK] = ACTIONS(313), + [anon_sym_RBRACK] = ACTIONS(313), + [anon_sym_COMMA] = ACTIONS(313), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(901), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, - [50] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), + [56] = { + [sym_block_comment] = STATE(115), + [sym__root_content] = STATE(115), + [sym__flat_content] = STATE(115), + [sym__text_with_env_content] = STATE(115), + [sym__text_content] = STATE(115), + [sym__section] = STATE(115), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - }, - [51] = { - [sym_block_comment] = STATE(113), - [sym__root_content] = STATE(113), - [sym__flat_content] = STATE(113), - [sym__text_with_env_content] = STATE(113), - [sym__text_content] = STATE(113), - [sym__section] = STATE(113), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(113), - [sym_text] = STATE(113), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(113), - [sym_inline_formula] = STATE(113), - [sym_math_set] = STATE(113), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(113), - [sym_comment_environment] = STATE(113), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(113), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(113), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(113), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(113), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(113), - [sym_generic_command] = STATE(113), - [sym_package_include] = STATE(113), - [sym_class_include] = STATE(113), - [sym_latex_include] = STATE(113), - [sym_biblatex_include] = STATE(113), - [sym_bibtex_include] = STATE(113), - [sym_graphics_include] = STATE(113), - [sym_svg_include] = STATE(113), - [sym_inkscape_include] = STATE(113), - [sym_verbatim_include] = STATE(113), - [sym_import_include] = STATE(113), - [sym_caption] = STATE(113), - [sym_citation] = STATE(113), - [sym_label_definition] = STATE(113), - [sym_label_reference] = STATE(113), - [sym_label_reference_range] = STATE(113), - [sym_label_number] = STATE(113), - [sym_new_command_definition] = STATE(113), - [sym_old_command_definition] = STATE(113), - [sym_let_command_definition] = STATE(113), - [sym_environment_definition] = STATE(113), - [sym_glossary_entry_definition] = STATE(113), - [sym_glossary_entry_reference] = STATE(113), - [sym_acronym_definition] = STATE(113), - [sym_acronym_reference] = STATE(113), - [sym_theorem_definition] = STATE(113), - [sym_color_definition] = STATE(113), - [sym_color_set_definition] = STATE(113), - [sym_color_reference] = STATE(113), - [sym_tikz_library_import] = STATE(113), - [aux_sym_source_file_repeat1] = STATE(113), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_RBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(760), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(884), + [sym_paragraph] = STATE(408), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(115), + [sym_text] = STATE(115), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(115), + [sym_inline_formula] = STATE(115), + [sym_math_set] = STATE(115), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(115), + [sym_comment_environment] = STATE(115), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(115), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(115), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(115), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(115), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(115), + [sym_generic_command] = STATE(115), + [sym_package_include] = STATE(115), + [sym_class_include] = STATE(115), + [sym_latex_include] = STATE(115), + [sym_biblatex_include] = STATE(115), + [sym_bibtex_include] = STATE(115), + [sym_graphics_include] = STATE(115), + [sym_svg_include] = STATE(115), + [sym_inkscape_include] = STATE(115), + [sym_verbatim_include] = STATE(115), + [sym_import_include] = STATE(115), + [sym_caption] = STATE(115), + [sym_citation] = STATE(115), + [sym_label_definition] = STATE(115), + [sym_label_reference] = STATE(115), + [sym_label_reference_range] = STATE(115), + [sym_label_number] = STATE(115), + [sym_new_command_definition] = STATE(115), + [sym_old_command_definition] = STATE(115), + [sym_let_command_definition] = STATE(115), + [sym_environment_definition] = STATE(115), + [sym_glossary_entry_definition] = STATE(115), + [sym_glossary_entry_reference] = STATE(115), + [sym_acronym_definition] = STATE(115), + [sym_acronym_reference] = STATE(115), + [sym_theorem_definition] = STATE(115), + [sym_color_definition] = STATE(115), + [sym_color_set_definition] = STATE(115), + [sym_color_reference] = STATE(115), + [sym_tikz_library_import] = STATE(115), + [sym_text_mode] = STATE(115), + [aux_sym_source_file_repeat1] = STATE(115), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(649), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_EQ] = ACTIONS(649), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(903), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, - [52] = { - [sym_block_comment] = STATE(84), - [sym__root_content] = STATE(84), - [sym__flat_content] = STATE(84), - [sym__text_with_env_content] = STATE(84), - [sym__text_content] = STATE(84), - [sym__section] = STATE(84), - [sym__part_declaration] = STATE(124), + [57] = { + [sym_block_comment] = STATE(79), + [sym__root_content] = STATE(79), + [sym__flat_content] = STATE(79), + [sym__text_with_env_content] = STATE(79), + [sym__text_content] = STATE(79), + [sym__section] = STATE(79), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(84), - [sym_text] = STATE(84), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(84), - [sym_inline_formula] = STATE(84), - [sym_math_set] = STATE(84), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(84), - [sym_comment_environment] = STATE(84), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(84), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(84), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(84), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(84), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(84), - [sym_generic_command] = STATE(84), - [sym_package_include] = STATE(84), - [sym_class_include] = STATE(84), - [sym_latex_include] = STATE(84), - [sym_biblatex_include] = STATE(84), - [sym_bibtex_include] = STATE(84), - [sym_graphics_include] = STATE(84), - [sym_svg_include] = STATE(84), - [sym_inkscape_include] = STATE(84), - [sym_verbatim_include] = STATE(84), - [sym_import_include] = STATE(84), - [sym_caption] = STATE(84), - [sym_citation] = STATE(84), - [sym_label_definition] = STATE(84), - [sym_label_reference] = STATE(84), - [sym_label_reference_range] = STATE(84), - [sym_label_number] = STATE(84), - [sym_new_command_definition] = STATE(84), - [sym_old_command_definition] = STATE(84), - [sym_let_command_definition] = STATE(84), - [sym_environment_definition] = STATE(84), - [sym_glossary_entry_definition] = STATE(84), - [sym_glossary_entry_reference] = STATE(84), - [sym_acronym_definition] = STATE(84), - [sym_acronym_reference] = STATE(84), - [sym_theorem_definition] = STATE(84), - [sym_color_definition] = STATE(84), - [sym_color_set_definition] = STATE(84), - [sym_color_reference] = STATE(84), - [sym_tikz_library_import] = STATE(84), - [aux_sym_source_file_repeat1] = STATE(84), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(79), + [sym_text] = STATE(79), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(79), + [sym_inline_formula] = STATE(79), + [sym_math_set] = STATE(79), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(79), + [sym_comment_environment] = STATE(79), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(79), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(79), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(79), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(79), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(79), + [sym_generic_command] = STATE(79), + [sym_package_include] = STATE(79), + [sym_class_include] = STATE(79), + [sym_latex_include] = STATE(79), + [sym_biblatex_include] = STATE(79), + [sym_bibtex_include] = STATE(79), + [sym_graphics_include] = STATE(79), + [sym_svg_include] = STATE(79), + [sym_inkscape_include] = STATE(79), + [sym_verbatim_include] = STATE(79), + [sym_import_include] = STATE(79), + [sym_caption] = STATE(79), + [sym_citation] = STATE(79), + [sym_label_definition] = STATE(79), + [sym_label_reference] = STATE(79), + [sym_label_reference_range] = STATE(79), + [sym_label_number] = STATE(79), + [sym_new_command_definition] = STATE(79), + [sym_old_command_definition] = STATE(79), + [sym_let_command_definition] = STATE(79), + [sym_environment_definition] = STATE(79), + [sym_glossary_entry_definition] = STATE(79), + [sym_glossary_entry_reference] = STATE(79), + [sym_acronym_definition] = STATE(79), + [sym_acronym_reference] = STATE(79), + [sym_theorem_definition] = STATE(79), + [sym_color_definition] = STATE(79), + [sym_color_set_definition] = STATE(79), + [sym_color_reference] = STATE(79), + [sym_tikz_library_import] = STATE(79), + [sym_text_mode] = STATE(79), + [aux_sym_source_file_repeat1] = STATE(79), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(888), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(907), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [53] = { - [sym_block_comment] = STATE(87), - [sym__root_content] = STATE(87), - [sym__flat_content] = STATE(87), - [sym__text_with_env_content] = STATE(87), - [sym__text_content] = STATE(87), - [sym__section] = STATE(87), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(87), - [sym_text] = STATE(87), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(87), - [sym_inline_formula] = STATE(87), - [sym_math_set] = STATE(87), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(87), - [sym_comment_environment] = STATE(87), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(87), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(87), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(87), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(87), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(87), - [sym_generic_command] = STATE(87), - [sym_package_include] = STATE(87), - [sym_class_include] = STATE(87), - [sym_latex_include] = STATE(87), - [sym_biblatex_include] = STATE(87), - [sym_bibtex_include] = STATE(87), - [sym_graphics_include] = STATE(87), - [sym_svg_include] = STATE(87), - [sym_inkscape_include] = STATE(87), - [sym_verbatim_include] = STATE(87), - [sym_import_include] = STATE(87), - [sym_caption] = STATE(87), - [sym_citation] = STATE(87), - [sym_label_definition] = STATE(87), - [sym_label_reference] = STATE(87), - [sym_label_reference_range] = STATE(87), - [sym_label_number] = STATE(87), - [sym_new_command_definition] = STATE(87), - [sym_old_command_definition] = STATE(87), - [sym_let_command_definition] = STATE(87), - [sym_environment_definition] = STATE(87), - [sym_glossary_entry_definition] = STATE(87), - [sym_glossary_entry_reference] = STATE(87), - [sym_acronym_definition] = STATE(87), - [sym_acronym_reference] = STATE(87), - [sym_theorem_definition] = STATE(87), - [sym_color_definition] = STATE(87), - [sym_color_set_definition] = STATE(87), - [sym_color_reference] = STATE(87), - [sym_tikz_library_import] = STATE(87), - [aux_sym_source_file_repeat1] = STATE(87), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_RBRACK] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(890), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(570), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [58] = { + [sym_block_comment] = STATE(104), + [sym__root_content] = STATE(104), + [sym__flat_content] = STATE(104), + [sym__text_with_env_content] = STATE(104), + [sym__text_content] = STATE(104), + [sym__section] = STATE(104), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(104), + [sym_text] = STATE(104), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(104), + [sym_inline_formula] = STATE(104), + [sym_math_set] = STATE(104), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(104), + [sym_comment_environment] = STATE(104), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(104), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(104), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(104), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(104), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(104), + [sym_generic_command] = STATE(104), + [sym_package_include] = STATE(104), + [sym_class_include] = STATE(104), + [sym_latex_include] = STATE(104), + [sym_biblatex_include] = STATE(104), + [sym_bibtex_include] = STATE(104), + [sym_graphics_include] = STATE(104), + [sym_svg_include] = STATE(104), + [sym_inkscape_include] = STATE(104), + [sym_verbatim_include] = STATE(104), + [sym_import_include] = STATE(104), + [sym_caption] = STATE(104), + [sym_citation] = STATE(104), + [sym_label_definition] = STATE(104), + [sym_label_reference] = STATE(104), + [sym_label_reference_range] = STATE(104), + [sym_label_number] = STATE(104), + [sym_new_command_definition] = STATE(104), + [sym_old_command_definition] = STATE(104), + [sym_let_command_definition] = STATE(104), + [sym_environment_definition] = STATE(104), + [sym_glossary_entry_definition] = STATE(104), + [sym_glossary_entry_reference] = STATE(104), + [sym_acronym_definition] = STATE(104), + [sym_acronym_reference] = STATE(104), + [sym_theorem_definition] = STATE(104), + [sym_color_definition] = STATE(104), + [sym_color_set_definition] = STATE(104), + [sym_color_reference] = STATE(104), + [sym_tikz_library_import] = STATE(104), + [sym_text_mode] = STATE(104), + [aux_sym_source_file_repeat1] = STATE(104), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(787), + [anon_sym_COMMA] = ACTIONS(787), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(911), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, - [54] = { - [sym_block_comment] = STATE(24), - [sym__root_content] = STATE(24), - [sym__flat_content] = STATE(24), - [sym__text_with_env_content] = STATE(24), - [sym__text_content] = STATE(24), - [sym__section] = STATE(24), + [59] = { + [sym_block_comment] = STATE(22), + [sym__root_content] = STATE(22), + [sym__flat_content] = STATE(22), + [sym__text_with_env_content] = STATE(22), + [sym__text_content] = STATE(22), + [sym__section] = STATE(22), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(24), - [sym_text] = STATE(24), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(24), - [sym_inline_formula] = STATE(24), - [sym_math_set] = STATE(24), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(24), - [sym_comment_environment] = STATE(24), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(24), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(24), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(24), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(24), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(24), - [sym_generic_command] = STATE(24), - [sym_package_include] = STATE(24), - [sym_class_include] = STATE(24), - [sym_latex_include] = STATE(24), - [sym_biblatex_include] = STATE(24), - [sym_bibtex_include] = STATE(24), - [sym_graphics_include] = STATE(24), - [sym_svg_include] = STATE(24), - [sym_inkscape_include] = STATE(24), - [sym_verbatim_include] = STATE(24), - [sym_import_include] = STATE(24), - [sym_caption] = STATE(24), - [sym_citation] = STATE(24), - [sym_label_definition] = STATE(24), - [sym_label_reference] = STATE(24), - [sym_label_reference_range] = STATE(24), - [sym_label_number] = STATE(24), - [sym_new_command_definition] = STATE(24), - [sym_old_command_definition] = STATE(24), - [sym_let_command_definition] = STATE(24), - [sym_environment_definition] = STATE(24), - [sym_glossary_entry_definition] = STATE(24), - [sym_glossary_entry_reference] = STATE(24), - [sym_acronym_definition] = STATE(24), - [sym_acronym_reference] = STATE(24), - [sym_theorem_definition] = STATE(24), - [sym_color_definition] = STATE(24), - [sym_color_set_definition] = STATE(24), - [sym_color_reference] = STATE(24), - [sym_tikz_library_import] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(22), + [sym_text] = STATE(22), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(22), + [sym_inline_formula] = STATE(22), + [sym_math_set] = STATE(22), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(22), + [sym_comment_environment] = STATE(22), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(22), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(22), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(22), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(22), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(22), + [sym_generic_command] = STATE(22), + [sym_package_include] = STATE(22), + [sym_class_include] = STATE(22), + [sym_latex_include] = STATE(22), + [sym_biblatex_include] = STATE(22), + [sym_bibtex_include] = STATE(22), + [sym_graphics_include] = STATE(22), + [sym_svg_include] = STATE(22), + [sym_inkscape_include] = STATE(22), + [sym_verbatim_include] = STATE(22), + [sym_import_include] = STATE(22), + [sym_caption] = STATE(22), + [sym_citation] = STATE(22), + [sym_label_definition] = STATE(22), + [sym_label_reference] = STATE(22), + [sym_label_reference_range] = STATE(22), + [sym_label_number] = STATE(22), + [sym_new_command_definition] = STATE(22), + [sym_old_command_definition] = STATE(22), + [sym_let_command_definition] = STATE(22), + [sym_environment_definition] = STATE(22), + [sym_glossary_entry_definition] = STATE(22), + [sym_glossary_entry_reference] = STATE(22), + [sym_acronym_definition] = STATE(22), + [sym_acronym_reference] = STATE(22), + [sym_theorem_definition] = STATE(22), + [sym_color_definition] = STATE(22), + [sym_color_set_definition] = STATE(22), + [sym_color_reference] = STATE(22), + [sym_tikz_library_import] = STATE(22), + [sym_text_mode] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -38812,7 +38588,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(913), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -39046,1149 +38822,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [55] = { - [sym_block_comment] = STATE(51), - [sym__root_content] = STATE(51), - [sym__flat_content] = STATE(51), - [sym__text_with_env_content] = STATE(51), - [sym__text_content] = STATE(51), - [sym__section] = STATE(51), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(51), - [sym_text] = STATE(51), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(51), - [sym_inline_formula] = STATE(51), - [sym_math_set] = STATE(51), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(51), - [sym_comment_environment] = STATE(51), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(51), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(51), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(51), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(51), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(51), - [sym_generic_command] = STATE(51), - [sym_package_include] = STATE(51), - [sym_class_include] = STATE(51), - [sym_latex_include] = STATE(51), - [sym_biblatex_include] = STATE(51), - [sym_bibtex_include] = STATE(51), - [sym_graphics_include] = STATE(51), - [sym_svg_include] = STATE(51), - [sym_inkscape_include] = STATE(51), - [sym_verbatim_include] = STATE(51), - [sym_import_include] = STATE(51), - [sym_caption] = STATE(51), - [sym_citation] = STATE(51), - [sym_label_definition] = STATE(51), - [sym_label_reference] = STATE(51), - [sym_label_reference_range] = STATE(51), - [sym_label_number] = STATE(51), - [sym_new_command_definition] = STATE(51), - [sym_old_command_definition] = STATE(51), - [sym_let_command_definition] = STATE(51), - [sym_environment_definition] = STATE(51), - [sym_glossary_entry_definition] = STATE(51), - [sym_glossary_entry_reference] = STATE(51), - [sym_acronym_definition] = STATE(51), - [sym_acronym_reference] = STATE(51), - [sym_theorem_definition] = STATE(51), - [sym_color_definition] = STATE(51), - [sym_color_set_definition] = STATE(51), - [sym_color_reference] = STATE(51), - [sym_tikz_library_import] = STATE(51), - [aux_sym_source_file_repeat1] = STATE(51), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(894), - [anon_sym_RPAREN] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(894), - [anon_sym_RBRACK] = ACTIONS(894), - [anon_sym_COMMA] = ACTIONS(894), - [anon_sym_EQ] = ACTIONS(894), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(896), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [56] = { - [sym_block_comment] = STATE(52), - [sym__root_content] = STATE(52), - [sym__flat_content] = STATE(52), - [sym__text_with_env_content] = STATE(52), - [sym__text_content] = STATE(52), - [sym__section] = STATE(52), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(52), - [sym_text] = STATE(52), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(52), - [sym_inline_formula] = STATE(52), - [sym_math_set] = STATE(52), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(52), - [sym_comment_environment] = STATE(52), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(52), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(52), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(52), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(52), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(52), - [sym_generic_command] = STATE(52), - [sym_package_include] = STATE(52), - [sym_class_include] = STATE(52), - [sym_latex_include] = STATE(52), - [sym_biblatex_include] = STATE(52), - [sym_bibtex_include] = STATE(52), - [sym_graphics_include] = STATE(52), - [sym_svg_include] = STATE(52), - [sym_inkscape_include] = STATE(52), - [sym_verbatim_include] = STATE(52), - [sym_import_include] = STATE(52), - [sym_caption] = STATE(52), - [sym_citation] = STATE(52), - [sym_label_definition] = STATE(52), - [sym_label_reference] = STATE(52), - [sym_label_reference_range] = STATE(52), - [sym_label_number] = STATE(52), - [sym_new_command_definition] = STATE(52), - [sym_old_command_definition] = STATE(52), - [sym_let_command_definition] = STATE(52), - [sym_environment_definition] = STATE(52), - [sym_glossary_entry_definition] = STATE(52), - [sym_glossary_entry_reference] = STATE(52), - [sym_acronym_definition] = STATE(52), - [sym_acronym_reference] = STATE(52), - [sym_theorem_definition] = STATE(52), - [sym_color_definition] = STATE(52), - [sym_color_set_definition] = STATE(52), - [sym_color_reference] = STATE(52), - [sym_tikz_library_import] = STATE(52), - [aux_sym_source_file_repeat1] = STATE(52), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(898), - [anon_sym_RPAREN] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(898), - [anon_sym_RBRACK] = ACTIONS(898), - [anon_sym_COMMA] = ACTIONS(898), - [anon_sym_EQ] = ACTIONS(898), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(900), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(666), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [57] = { - [sym_block_comment] = STATE(53), - [sym__root_content] = STATE(53), - [sym__flat_content] = STATE(53), - [sym__text_with_env_content] = STATE(53), - [sym__text_content] = STATE(53), - [sym__section] = STATE(53), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(53), - [sym_text] = STATE(53), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(53), - [sym_inline_formula] = STATE(53), - [sym_math_set] = STATE(53), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(53), - [sym_comment_environment] = STATE(53), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(53), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(53), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(53), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(53), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(53), - [sym_generic_command] = STATE(53), - [sym_package_include] = STATE(53), - [sym_class_include] = STATE(53), - [sym_latex_include] = STATE(53), - [sym_biblatex_include] = STATE(53), - [sym_bibtex_include] = STATE(53), - [sym_graphics_include] = STATE(53), - [sym_svg_include] = STATE(53), - [sym_inkscape_include] = STATE(53), - [sym_verbatim_include] = STATE(53), - [sym_import_include] = STATE(53), - [sym_caption] = STATE(53), - [sym_citation] = STATE(53), - [sym_label_definition] = STATE(53), - [sym_label_reference] = STATE(53), - [sym_label_reference_range] = STATE(53), - [sym_label_number] = STATE(53), - [sym_new_command_definition] = STATE(53), - [sym_old_command_definition] = STATE(53), - [sym_let_command_definition] = STATE(53), - [sym_environment_definition] = STATE(53), - [sym_glossary_entry_definition] = STATE(53), - [sym_glossary_entry_reference] = STATE(53), - [sym_acronym_definition] = STATE(53), - [sym_acronym_reference] = STATE(53), - [sym_theorem_definition] = STATE(53), - [sym_color_definition] = STATE(53), - [sym_color_set_definition] = STATE(53), - [sym_color_reference] = STATE(53), - [sym_tikz_library_import] = STATE(53), - [aux_sym_source_file_repeat1] = STATE(53), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(902), - [anon_sym_RPAREN] = ACTIONS(902), - [anon_sym_LBRACK] = ACTIONS(902), - [anon_sym_RBRACK] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(902), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(904), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [58] = { - [sym_block_comment] = STATE(54), - [sym__root_content] = STATE(54), - [sym__flat_content] = STATE(54), - [sym__text_with_env_content] = STATE(54), - [sym__text_content] = STATE(54), - [sym__section] = STATE(54), + [60] = { + [sym_block_comment] = STATE(72), + [sym__root_content] = STATE(72), + [sym__flat_content] = STATE(72), + [sym__text_with_env_content] = STATE(72), + [sym__text_content] = STATE(72), + [sym__section] = STATE(72), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(54), - [sym_text] = STATE(54), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(54), - [sym_inline_formula] = STATE(54), - [sym_math_set] = STATE(54), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(54), - [sym_comment_environment] = STATE(54), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(54), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(54), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(54), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(54), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(54), - [sym_generic_command] = STATE(54), - [sym_package_include] = STATE(54), - [sym_class_include] = STATE(54), - [sym_latex_include] = STATE(54), - [sym_biblatex_include] = STATE(54), - [sym_bibtex_include] = STATE(54), - [sym_graphics_include] = STATE(54), - [sym_svg_include] = STATE(54), - [sym_inkscape_include] = STATE(54), - [sym_verbatim_include] = STATE(54), - [sym_import_include] = STATE(54), - [sym_caption] = STATE(54), - [sym_citation] = STATE(54), - [sym_label_definition] = STATE(54), - [sym_label_reference] = STATE(54), - [sym_label_reference_range] = STATE(54), - [sym_label_number] = STATE(54), - [sym_new_command_definition] = STATE(54), - [sym_old_command_definition] = STATE(54), - [sym_let_command_definition] = STATE(54), - [sym_environment_definition] = STATE(54), - [sym_glossary_entry_definition] = STATE(54), - [sym_glossary_entry_reference] = STATE(54), - [sym_acronym_definition] = STATE(54), - [sym_acronym_reference] = STATE(54), - [sym_theorem_definition] = STATE(54), - [sym_color_definition] = STATE(54), - [sym_color_set_definition] = STATE(54), - [sym_color_reference] = STATE(54), - [sym_tikz_library_import] = STATE(54), - [aux_sym_source_file_repeat1] = STATE(54), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(72), + [sym_text] = STATE(72), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(72), + [sym_inline_formula] = STATE(72), + [sym_math_set] = STATE(72), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(72), + [sym_comment_environment] = STATE(72), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(72), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(72), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(72), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(72), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(72), + [sym_generic_command] = STATE(72), + [sym_package_include] = STATE(72), + [sym_class_include] = STATE(72), + [sym_latex_include] = STATE(72), + [sym_biblatex_include] = STATE(72), + [sym_bibtex_include] = STATE(72), + [sym_graphics_include] = STATE(72), + [sym_svg_include] = STATE(72), + [sym_inkscape_include] = STATE(72), + [sym_verbatim_include] = STATE(72), + [sym_import_include] = STATE(72), + [sym_caption] = STATE(72), + [sym_citation] = STATE(72), + [sym_label_definition] = STATE(72), + [sym_label_reference] = STATE(72), + [sym_label_reference_range] = STATE(72), + [sym_label_number] = STATE(72), + [sym_new_command_definition] = STATE(72), + [sym_old_command_definition] = STATE(72), + [sym_let_command_definition] = STATE(72), + [sym_environment_definition] = STATE(72), + [sym_glossary_entry_definition] = STATE(72), + [sym_glossary_entry_reference] = STATE(72), + [sym_acronym_definition] = STATE(72), + [sym_acronym_reference] = STATE(72), + [sym_theorem_definition] = STATE(72), + [sym_color_definition] = STATE(72), + [sym_color_set_definition] = STATE(72), + [sym_color_reference] = STATE(72), + [sym_tikz_library_import] = STATE(72), + [sym_text_mode] = STATE(72), + [aux_sym_source_file_repeat1] = STATE(72), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(906), - [anon_sym_RPAREN] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(906), - [anon_sym_RBRACK] = ACTIONS(906), - [anon_sym_COMMA] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), + [anon_sym_LPAREN] = ACTIONS(915), + [anon_sym_RPAREN] = ACTIONS(915), + [anon_sym_LBRACK] = ACTIONS(915), + [anon_sym_RBRACK] = ACTIONS(915), + [anon_sym_COMMA] = ACTIONS(915), + [anon_sym_EQ] = ACTIONS(915), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -40212,7 +38942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(917), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -40446,99 +39176,457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [59] = { - [sym_block_comment] = STATE(40), - [sym__root_content] = STATE(40), - [sym__flat_content] = STATE(40), - [sym__text_with_env_content] = STATE(40), - [sym__text_content] = STATE(40), - [sym__section] = STATE(40), + [61] = { + [sym_block_comment] = STATE(115), + [sym__root_content] = STATE(115), + [sym__flat_content] = STATE(115), + [sym__text_with_env_content] = STATE(115), + [sym__text_content] = STATE(115), + [sym__section] = STATE(115), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(115), + [sym_text] = STATE(115), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(115), + [sym_inline_formula] = STATE(115), + [sym_math_set] = STATE(115), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(115), + [sym_comment_environment] = STATE(115), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(115), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(115), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(115), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(115), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(115), + [sym_generic_command] = STATE(115), + [sym_package_include] = STATE(115), + [sym_class_include] = STATE(115), + [sym_latex_include] = STATE(115), + [sym_biblatex_include] = STATE(115), + [sym_bibtex_include] = STATE(115), + [sym_graphics_include] = STATE(115), + [sym_svg_include] = STATE(115), + [sym_inkscape_include] = STATE(115), + [sym_verbatim_include] = STATE(115), + [sym_import_include] = STATE(115), + [sym_caption] = STATE(115), + [sym_citation] = STATE(115), + [sym_label_definition] = STATE(115), + [sym_label_reference] = STATE(115), + [sym_label_reference_range] = STATE(115), + [sym_label_number] = STATE(115), + [sym_new_command_definition] = STATE(115), + [sym_old_command_definition] = STATE(115), + [sym_let_command_definition] = STATE(115), + [sym_environment_definition] = STATE(115), + [sym_glossary_entry_definition] = STATE(115), + [sym_glossary_entry_reference] = STATE(115), + [sym_acronym_definition] = STATE(115), + [sym_acronym_reference] = STATE(115), + [sym_theorem_definition] = STATE(115), + [sym_color_definition] = STATE(115), + [sym_color_set_definition] = STATE(115), + [sym_color_reference] = STATE(115), + [sym_tikz_library_import] = STATE(115), + [sym_text_mode] = STATE(115), + [aux_sym_source_file_repeat1] = STATE(115), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(649), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_EQ] = ACTIONS(649), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(919), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), + }, + [62] = { + [sym_block_comment] = STATE(114), + [sym__root_content] = STATE(114), + [sym__flat_content] = STATE(114), + [sym__text_with_env_content] = STATE(114), + [sym__text_content] = STATE(114), + [sym__section] = STATE(114), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(40), - [sym_text] = STATE(40), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(40), - [sym_inline_formula] = STATE(40), - [sym_math_set] = STATE(40), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(40), - [sym_comment_environment] = STATE(40), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(40), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(40), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(40), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(40), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(40), - [sym_generic_command] = STATE(40), - [sym_package_include] = STATE(40), - [sym_class_include] = STATE(40), - [sym_latex_include] = STATE(40), - [sym_biblatex_include] = STATE(40), - [sym_bibtex_include] = STATE(40), - [sym_graphics_include] = STATE(40), - [sym_svg_include] = STATE(40), - [sym_inkscape_include] = STATE(40), - [sym_verbatim_include] = STATE(40), - [sym_import_include] = STATE(40), - [sym_caption] = STATE(40), - [sym_citation] = STATE(40), - [sym_label_definition] = STATE(40), - [sym_label_reference] = STATE(40), - [sym_label_reference_range] = STATE(40), - [sym_label_number] = STATE(40), - [sym_new_command_definition] = STATE(40), - [sym_old_command_definition] = STATE(40), - [sym_let_command_definition] = STATE(40), - [sym_environment_definition] = STATE(40), - [sym_glossary_entry_definition] = STATE(40), - [sym_glossary_entry_reference] = STATE(40), - [sym_acronym_definition] = STATE(40), - [sym_acronym_reference] = STATE(40), - [sym_theorem_definition] = STATE(40), - [sym_color_definition] = STATE(40), - [sym_color_set_definition] = STATE(40), - [sym_color_reference] = STATE(40), - [sym_tikz_library_import] = STATE(40), - [aux_sym_source_file_repeat1] = STATE(40), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(114), + [sym_text] = STATE(114), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(114), + [sym_inline_formula] = STATE(114), + [sym_math_set] = STATE(114), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(114), + [sym_comment_environment] = STATE(114), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(114), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(114), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(114), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(114), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(114), + [sym_generic_command] = STATE(114), + [sym_package_include] = STATE(114), + [sym_class_include] = STATE(114), + [sym_latex_include] = STATE(114), + [sym_biblatex_include] = STATE(114), + [sym_bibtex_include] = STATE(114), + [sym_graphics_include] = STATE(114), + [sym_svg_include] = STATE(114), + [sym_inkscape_include] = STATE(114), + [sym_verbatim_include] = STATE(114), + [sym_import_include] = STATE(114), + [sym_caption] = STATE(114), + [sym_citation] = STATE(114), + [sym_label_definition] = STATE(114), + [sym_label_reference] = STATE(114), + [sym_label_reference_range] = STATE(114), + [sym_label_number] = STATE(114), + [sym_new_command_definition] = STATE(114), + [sym_old_command_definition] = STATE(114), + [sym_let_command_definition] = STATE(114), + [sym_environment_definition] = STATE(114), + [sym_glossary_entry_definition] = STATE(114), + [sym_glossary_entry_reference] = STATE(114), + [sym_acronym_definition] = STATE(114), + [sym_acronym_reference] = STATE(114), + [sym_theorem_definition] = STATE(114), + [sym_color_definition] = STATE(114), + [sym_color_set_definition] = STATE(114), + [sym_color_reference] = STATE(114), + [sym_tikz_library_import] = STATE(114), + [sym_text_mode] = STATE(114), + [aux_sym_source_file_repeat1] = STATE(114), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(910), - [anon_sym_RPAREN] = ACTIONS(910), - [anon_sym_LBRACK] = ACTIONS(910), - [anon_sym_RBRACK] = ACTIONS(910), - [anon_sym_COMMA] = ACTIONS(910), - [anon_sym_EQ] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(921), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -40562,7 +39650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(923), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -40796,449 +39884,458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [60] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), + [63] = { + [sym_block_comment] = STATE(104), + [sym__root_content] = STATE(104), + [sym__flat_content] = STATE(104), + [sym__text_with_env_content] = STATE(104), + [sym__text_content] = STATE(104), + [sym__section] = STATE(104), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(104), + [sym_text] = STATE(104), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(104), + [sym_inline_formula] = STATE(104), + [sym_math_set] = STATE(104), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(104), + [sym_comment_environment] = STATE(104), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(104), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(104), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(104), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(104), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(104), + [sym_generic_command] = STATE(104), + [sym_package_include] = STATE(104), + [sym_class_include] = STATE(104), + [sym_latex_include] = STATE(104), + [sym_biblatex_include] = STATE(104), + [sym_bibtex_include] = STATE(104), + [sym_graphics_include] = STATE(104), + [sym_svg_include] = STATE(104), + [sym_inkscape_include] = STATE(104), + [sym_verbatim_include] = STATE(104), + [sym_import_include] = STATE(104), + [sym_caption] = STATE(104), + [sym_citation] = STATE(104), + [sym_label_definition] = STATE(104), + [sym_label_reference] = STATE(104), + [sym_label_reference_range] = STATE(104), + [sym_label_number] = STATE(104), + [sym_new_command_definition] = STATE(104), + [sym_old_command_definition] = STATE(104), + [sym_let_command_definition] = STATE(104), + [sym_environment_definition] = STATE(104), + [sym_glossary_entry_definition] = STATE(104), + [sym_glossary_entry_reference] = STATE(104), + [sym_acronym_definition] = STATE(104), + [sym_acronym_reference] = STATE(104), + [sym_theorem_definition] = STATE(104), + [sym_color_definition] = STATE(104), + [sym_color_set_definition] = STATE(104), + [sym_color_reference] = STATE(104), + [sym_tikz_library_import] = STATE(104), + [sym_text_mode] = STATE(104), + [aux_sym_source_file_repeat1] = STATE(104), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(787), + [anon_sym_COMMA] = ACTIONS(787), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(925), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, - [61] = { - [sym_block_comment] = STATE(89), - [sym__root_content] = STATE(89), - [sym__flat_content] = STATE(89), - [sym__text_with_env_content] = STATE(89), - [sym__text_content] = STATE(89), - [sym__section] = STATE(89), + [64] = { + [sym_block_comment] = STATE(22), + [sym__root_content] = STATE(22), + [sym__flat_content] = STATE(22), + [sym__text_with_env_content] = STATE(22), + [sym__text_content] = STATE(22), + [sym__section] = STATE(22), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(89), - [sym_text] = STATE(89), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(89), - [sym_inline_formula] = STATE(89), - [sym_math_set] = STATE(89), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(89), - [sym_comment_environment] = STATE(89), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(89), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(89), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(89), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(89), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(89), - [sym_generic_command] = STATE(89), - [sym_package_include] = STATE(89), - [sym_class_include] = STATE(89), - [sym_latex_include] = STATE(89), - [sym_biblatex_include] = STATE(89), - [sym_bibtex_include] = STATE(89), - [sym_graphics_include] = STATE(89), - [sym_svg_include] = STATE(89), - [sym_inkscape_include] = STATE(89), - [sym_verbatim_include] = STATE(89), - [sym_import_include] = STATE(89), - [sym_caption] = STATE(89), - [sym_citation] = STATE(89), - [sym_label_definition] = STATE(89), - [sym_label_reference] = STATE(89), - [sym_label_reference_range] = STATE(89), - [sym_label_number] = STATE(89), - [sym_new_command_definition] = STATE(89), - [sym_old_command_definition] = STATE(89), - [sym_let_command_definition] = STATE(89), - [sym_environment_definition] = STATE(89), - [sym_glossary_entry_definition] = STATE(89), - [sym_glossary_entry_reference] = STATE(89), - [sym_acronym_definition] = STATE(89), - [sym_acronym_reference] = STATE(89), - [sym_theorem_definition] = STATE(89), - [sym_color_definition] = STATE(89), - [sym_color_set_definition] = STATE(89), - [sym_color_reference] = STATE(89), - [sym_tikz_library_import] = STATE(89), - [aux_sym_source_file_repeat1] = STATE(89), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(22), + [sym_text] = STATE(22), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(22), + [sym_inline_formula] = STATE(22), + [sym_math_set] = STATE(22), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(22), + [sym_comment_environment] = STATE(22), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(22), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(22), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(22), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(22), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(22), + [sym_generic_command] = STATE(22), + [sym_package_include] = STATE(22), + [sym_class_include] = STATE(22), + [sym_latex_include] = STATE(22), + [sym_biblatex_include] = STATE(22), + [sym_bibtex_include] = STATE(22), + [sym_graphics_include] = STATE(22), + [sym_svg_include] = STATE(22), + [sym_inkscape_include] = STATE(22), + [sym_verbatim_include] = STATE(22), + [sym_import_include] = STATE(22), + [sym_caption] = STATE(22), + [sym_citation] = STATE(22), + [sym_label_definition] = STATE(22), + [sym_label_reference] = STATE(22), + [sym_label_reference_range] = STATE(22), + [sym_label_number] = STATE(22), + [sym_new_command_definition] = STATE(22), + [sym_old_command_definition] = STATE(22), + [sym_let_command_definition] = STATE(22), + [sym_environment_definition] = STATE(22), + [sym_glossary_entry_definition] = STATE(22), + [sym_glossary_entry_reference] = STATE(22), + [sym_acronym_definition] = STATE(22), + [sym_acronym_reference] = STATE(22), + [sym_theorem_definition] = STATE(22), + [sym_color_definition] = STATE(22), + [sym_color_set_definition] = STATE(22), + [sym_color_reference] = STATE(22), + [sym_tikz_library_import] = STATE(22), + [sym_text_mode] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), + [ts_builtin_sym_end] = ACTIONS(929), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(914), - [anon_sym_RPAREN] = ACTIONS(914), - [anon_sym_LBRACK] = ACTIONS(914), - [anon_sym_RBRACK] = ACTIONS(914), - [anon_sym_COMMA] = ACTIONS(914), - [anon_sym_EQ] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -41262,7 +40359,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(916), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -41496,3250 +40592,1873 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [62] = { - [sym_block_comment] = STATE(78), - [sym__root_content] = STATE(78), - [sym__flat_content] = STATE(78), - [sym__text_with_env_content] = STATE(78), - [sym__text_content] = STATE(78), - [sym__section] = STATE(78), - [sym__part_declaration] = STATE(124), + [65] = { + [sym_block_comment] = STATE(79), + [sym__root_content] = STATE(79), + [sym__flat_content] = STATE(79), + [sym__text_with_env_content] = STATE(79), + [sym__text_content] = STATE(79), + [sym__section] = STATE(79), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(78), - [sym_text] = STATE(78), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(78), - [sym_inline_formula] = STATE(78), - [sym_math_set] = STATE(78), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(78), - [sym_comment_environment] = STATE(78), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(78), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(78), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(78), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(78), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(78), - [sym_generic_command] = STATE(78), - [sym_package_include] = STATE(78), - [sym_class_include] = STATE(78), - [sym_latex_include] = STATE(78), - [sym_biblatex_include] = STATE(78), - [sym_bibtex_include] = STATE(78), - [sym_graphics_include] = STATE(78), - [sym_svg_include] = STATE(78), - [sym_inkscape_include] = STATE(78), - [sym_verbatim_include] = STATE(78), - [sym_import_include] = STATE(78), - [sym_caption] = STATE(78), - [sym_citation] = STATE(78), - [sym_label_definition] = STATE(78), - [sym_label_reference] = STATE(78), - [sym_label_reference_range] = STATE(78), - [sym_label_number] = STATE(78), - [sym_new_command_definition] = STATE(78), - [sym_old_command_definition] = STATE(78), - [sym_let_command_definition] = STATE(78), - [sym_environment_definition] = STATE(78), - [sym_glossary_entry_definition] = STATE(78), - [sym_glossary_entry_reference] = STATE(78), - [sym_acronym_definition] = STATE(78), - [sym_acronym_reference] = STATE(78), - [sym_theorem_definition] = STATE(78), - [sym_color_definition] = STATE(78), - [sym_color_set_definition] = STATE(78), - [sym_color_reference] = STATE(78), - [sym_tikz_library_import] = STATE(78), - [aux_sym_source_file_repeat1] = STATE(78), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(79), + [sym_text] = STATE(79), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(79), + [sym_inline_formula] = STATE(79), + [sym_math_set] = STATE(79), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(79), + [sym_comment_environment] = STATE(79), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(79), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(79), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(79), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(79), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(79), + [sym_generic_command] = STATE(79), + [sym_package_include] = STATE(79), + [sym_class_include] = STATE(79), + [sym_latex_include] = STATE(79), + [sym_biblatex_include] = STATE(79), + [sym_bibtex_include] = STATE(79), + [sym_graphics_include] = STATE(79), + [sym_svg_include] = STATE(79), + [sym_inkscape_include] = STATE(79), + [sym_verbatim_include] = STATE(79), + [sym_import_include] = STATE(79), + [sym_caption] = STATE(79), + [sym_citation] = STATE(79), + [sym_label_definition] = STATE(79), + [sym_label_reference] = STATE(79), + [sym_label_reference_range] = STATE(79), + [sym_label_number] = STATE(79), + [sym_new_command_definition] = STATE(79), + [sym_old_command_definition] = STATE(79), + [sym_let_command_definition] = STATE(79), + [sym_environment_definition] = STATE(79), + [sym_glossary_entry_definition] = STATE(79), + [sym_glossary_entry_reference] = STATE(79), + [sym_acronym_definition] = STATE(79), + [sym_acronym_reference] = STATE(79), + [sym_theorem_definition] = STATE(79), + [sym_color_definition] = STATE(79), + [sym_color_set_definition] = STATE(79), + [sym_color_reference] = STATE(79), + [sym_tikz_library_import] = STATE(79), + [sym_text_mode] = STATE(79), + [aux_sym_source_file_repeat1] = STATE(79), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(918), - [anon_sym_RPAREN] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(918), - [anon_sym_RBRACK] = ACTIONS(918), - [anon_sym_COMMA] = ACTIONS(918), - [anon_sym_EQ] = ACTIONS(918), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(920), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(666), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(931), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(933), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [63] = { - [sym_block_comment] = STATE(87), - [sym__root_content] = STATE(87), - [sym__flat_content] = STATE(87), - [sym__text_with_env_content] = STATE(87), - [sym__text_content] = STATE(87), - [sym__section] = STATE(87), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(87), - [sym_text] = STATE(87), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(87), - [sym_inline_formula] = STATE(87), - [sym_math_set] = STATE(87), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(87), - [sym_comment_environment] = STATE(87), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(87), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(87), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(87), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(87), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(87), - [sym_generic_command] = STATE(87), - [sym_package_include] = STATE(87), - [sym_class_include] = STATE(87), - [sym_latex_include] = STATE(87), - [sym_biblatex_include] = STATE(87), - [sym_bibtex_include] = STATE(87), - [sym_graphics_include] = STATE(87), - [sym_svg_include] = STATE(87), - [sym_inkscape_include] = STATE(87), - [sym_verbatim_include] = STATE(87), - [sym_import_include] = STATE(87), - [sym_caption] = STATE(87), - [sym_citation] = STATE(87), - [sym_label_definition] = STATE(87), - [sym_label_reference] = STATE(87), - [sym_label_reference_range] = STATE(87), - [sym_label_number] = STATE(87), - [sym_new_command_definition] = STATE(87), - [sym_old_command_definition] = STATE(87), - [sym_let_command_definition] = STATE(87), - [sym_environment_definition] = STATE(87), - [sym_glossary_entry_definition] = STATE(87), - [sym_glossary_entry_reference] = STATE(87), - [sym_acronym_definition] = STATE(87), - [sym_acronym_reference] = STATE(87), - [sym_theorem_definition] = STATE(87), - [sym_color_definition] = STATE(87), - [sym_color_set_definition] = STATE(87), - [sym_color_reference] = STATE(87), - [sym_tikz_library_import] = STATE(87), - [aux_sym_source_file_repeat1] = STATE(87), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_RBRACK] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(922), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(570), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [64] = { - [sym_block_comment] = STATE(48), - [sym__root_content] = STATE(48), - [sym__flat_content] = STATE(48), - [sym__text_with_env_content] = STATE(48), - [sym__text_content] = STATE(48), - [sym__section] = STATE(48), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(48), - [sym_text] = STATE(48), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(48), - [sym_inline_formula] = STATE(48), - [sym_math_set] = STATE(48), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(48), - [sym_comment_environment] = STATE(48), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(48), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(48), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(48), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(48), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(48), - [sym_generic_command] = STATE(48), - [sym_package_include] = STATE(48), - [sym_class_include] = STATE(48), - [sym_latex_include] = STATE(48), - [sym_biblatex_include] = STATE(48), - [sym_bibtex_include] = STATE(48), - [sym_graphics_include] = STATE(48), - [sym_svg_include] = STATE(48), - [sym_inkscape_include] = STATE(48), - [sym_verbatim_include] = STATE(48), - [sym_import_include] = STATE(48), - [sym_caption] = STATE(48), - [sym_citation] = STATE(48), - [sym_label_definition] = STATE(48), - [sym_label_reference] = STATE(48), - [sym_label_reference_range] = STATE(48), - [sym_label_number] = STATE(48), - [sym_new_command_definition] = STATE(48), - [sym_old_command_definition] = STATE(48), - [sym_let_command_definition] = STATE(48), - [sym_environment_definition] = STATE(48), - [sym_glossary_entry_definition] = STATE(48), - [sym_glossary_entry_reference] = STATE(48), - [sym_acronym_definition] = STATE(48), - [sym_acronym_reference] = STATE(48), - [sym_theorem_definition] = STATE(48), - [sym_color_definition] = STATE(48), - [sym_color_set_definition] = STATE(48), - [sym_color_reference] = STATE(48), - [sym_tikz_library_import] = STATE(48), - [aux_sym_source_file_repeat1] = STATE(48), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(924), - [anon_sym_RPAREN] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(924), - [anon_sym_RBRACK] = ACTIONS(924), - [anon_sym_COMMA] = ACTIONS(924), - [anon_sym_EQ] = ACTIONS(924), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(926), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [65] = { - [sym_block_comment] = STATE(113), - [sym__root_content] = STATE(113), - [sym__flat_content] = STATE(113), - [sym__text_with_env_content] = STATE(113), - [sym__text_content] = STATE(113), - [sym__section] = STATE(113), + [66] = { + [sym_block_comment] = STATE(75), + [sym__root_content] = STATE(75), + [sym__flat_content] = STATE(75), + [sym__text_with_env_content] = STATE(75), + [sym__text_content] = STATE(75), + [sym__section] = STATE(75), [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(113), - [sym_text] = STATE(113), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(113), - [sym_inline_formula] = STATE(113), - [sym_math_set] = STATE(113), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(113), - [sym_comment_environment] = STATE(113), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(113), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(113), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(113), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(113), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(113), - [sym_generic_command] = STATE(113), - [sym_package_include] = STATE(113), - [sym_class_include] = STATE(113), - [sym_latex_include] = STATE(113), - [sym_biblatex_include] = STATE(113), - [sym_bibtex_include] = STATE(113), - [sym_graphics_include] = STATE(113), - [sym_svg_include] = STATE(113), - [sym_inkscape_include] = STATE(113), - [sym_verbatim_include] = STATE(113), - [sym_import_include] = STATE(113), - [sym_caption] = STATE(113), - [sym_citation] = STATE(113), - [sym_label_definition] = STATE(113), - [sym_label_reference] = STATE(113), - [sym_label_reference_range] = STATE(113), - [sym_label_number] = STATE(113), - [sym_new_command_definition] = STATE(113), - [sym_old_command_definition] = STATE(113), - [sym_let_command_definition] = STATE(113), - [sym_environment_definition] = STATE(113), - [sym_glossary_entry_definition] = STATE(113), - [sym_glossary_entry_reference] = STATE(113), - [sym_acronym_definition] = STATE(113), - [sym_acronym_reference] = STATE(113), - [sym_theorem_definition] = STATE(113), - [sym_color_definition] = STATE(113), - [sym_color_set_definition] = STATE(113), - [sym_color_reference] = STATE(113), - [sym_tikz_library_import] = STATE(113), - [aux_sym_source_file_repeat1] = STATE(113), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_RBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(760), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(928), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(75), + [sym_text] = STATE(75), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(75), + [sym_inline_formula] = STATE(75), + [sym_math_set] = STATE(75), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(75), + [sym_comment_environment] = STATE(75), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(75), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(75), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(75), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(75), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(75), + [sym_generic_command] = STATE(75), + [sym_package_include] = STATE(75), + [sym_class_include] = STATE(75), + [sym_latex_include] = STATE(75), + [sym_biblatex_include] = STATE(75), + [sym_bibtex_include] = STATE(75), + [sym_graphics_include] = STATE(75), + [sym_svg_include] = STATE(75), + [sym_inkscape_include] = STATE(75), + [sym_verbatim_include] = STATE(75), + [sym_import_include] = STATE(75), + [sym_caption] = STATE(75), + [sym_citation] = STATE(75), + [sym_label_definition] = STATE(75), + [sym_label_reference] = STATE(75), + [sym_label_reference_range] = STATE(75), + [sym_label_number] = STATE(75), + [sym_new_command_definition] = STATE(75), + [sym_old_command_definition] = STATE(75), + [sym_let_command_definition] = STATE(75), + [sym_environment_definition] = STATE(75), + [sym_glossary_entry_definition] = STATE(75), + [sym_glossary_entry_reference] = STATE(75), + [sym_acronym_definition] = STATE(75), + [sym_acronym_reference] = STATE(75), + [sym_theorem_definition] = STATE(75), + [sym_color_definition] = STATE(75), + [sym_color_set_definition] = STATE(75), + [sym_color_reference] = STATE(75), + [sym_tikz_library_import] = STATE(75), + [sym_text_mode] = STATE(75), + [aux_sym_source_file_repeat1] = STATE(75), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_RPAREN] = ACTIONS(935), + [anon_sym_LBRACK] = ACTIONS(935), + [anon_sym_RBRACK] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(937), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, - [66] = { - [sym_block_comment] = STATE(84), - [sym__root_content] = STATE(84), - [sym__flat_content] = STATE(84), - [sym__text_with_env_content] = STATE(84), - [sym__text_content] = STATE(84), - [sym__section] = STATE(84), - [sym__part_declaration] = STATE(124), + [67] = { + [sym_block_comment] = STATE(74), + [sym__root_content] = STATE(74), + [sym__flat_content] = STATE(74), + [sym__text_with_env_content] = STATE(74), + [sym__text_content] = STATE(74), + [sym__section] = STATE(74), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(84), - [sym_text] = STATE(84), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(84), - [sym_inline_formula] = STATE(84), - [sym_math_set] = STATE(84), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(84), - [sym_comment_environment] = STATE(84), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(84), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(84), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(84), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(84), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(84), - [sym_generic_command] = STATE(84), - [sym_package_include] = STATE(84), - [sym_class_include] = STATE(84), - [sym_latex_include] = STATE(84), - [sym_biblatex_include] = STATE(84), - [sym_bibtex_include] = STATE(84), - [sym_graphics_include] = STATE(84), - [sym_svg_include] = STATE(84), - [sym_inkscape_include] = STATE(84), - [sym_verbatim_include] = STATE(84), - [sym_import_include] = STATE(84), - [sym_caption] = STATE(84), - [sym_citation] = STATE(84), - [sym_label_definition] = STATE(84), - [sym_label_reference] = STATE(84), - [sym_label_reference_range] = STATE(84), - [sym_label_number] = STATE(84), - [sym_new_command_definition] = STATE(84), - [sym_old_command_definition] = STATE(84), - [sym_let_command_definition] = STATE(84), - [sym_environment_definition] = STATE(84), - [sym_glossary_entry_definition] = STATE(84), - [sym_glossary_entry_reference] = STATE(84), - [sym_acronym_definition] = STATE(84), - [sym_acronym_reference] = STATE(84), - [sym_theorem_definition] = STATE(84), - [sym_color_definition] = STATE(84), - [sym_color_set_definition] = STATE(84), - [sym_color_reference] = STATE(84), - [sym_tikz_library_import] = STATE(84), - [aux_sym_source_file_repeat1] = STATE(84), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(74), + [sym_text] = STATE(74), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(74), + [sym_inline_formula] = STATE(74), + [sym_math_set] = STATE(74), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(74), + [sym_comment_environment] = STATE(74), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(74), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(74), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(74), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(74), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(74), + [sym_generic_command] = STATE(74), + [sym_package_include] = STATE(74), + [sym_class_include] = STATE(74), + [sym_latex_include] = STATE(74), + [sym_biblatex_include] = STATE(74), + [sym_bibtex_include] = STATE(74), + [sym_graphics_include] = STATE(74), + [sym_svg_include] = STATE(74), + [sym_inkscape_include] = STATE(74), + [sym_verbatim_include] = STATE(74), + [sym_import_include] = STATE(74), + [sym_caption] = STATE(74), + [sym_citation] = STATE(74), + [sym_label_definition] = STATE(74), + [sym_label_reference] = STATE(74), + [sym_label_reference_range] = STATE(74), + [sym_label_number] = STATE(74), + [sym_new_command_definition] = STATE(74), + [sym_old_command_definition] = STATE(74), + [sym_let_command_definition] = STATE(74), + [sym_environment_definition] = STATE(74), + [sym_glossary_entry_definition] = STATE(74), + [sym_glossary_entry_reference] = STATE(74), + [sym_acronym_definition] = STATE(74), + [sym_acronym_reference] = STATE(74), + [sym_theorem_definition] = STATE(74), + [sym_color_definition] = STATE(74), + [sym_color_set_definition] = STATE(74), + [sym_color_reference] = STATE(74), + [sym_tikz_library_import] = STATE(74), + [sym_text_mode] = STATE(74), + [aux_sym_source_file_repeat1] = STATE(74), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(930), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(932), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [67] = { - [sym_block_comment] = STATE(93), - [sym__root_content] = STATE(93), - [sym__flat_content] = STATE(93), - [sym__text_with_env_content] = STATE(93), - [sym__text_content] = STATE(93), - [sym__section] = STATE(93), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(93), - [sym_text] = STATE(93), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(93), - [sym_inline_formula] = STATE(93), - [sym_math_set] = STATE(93), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(93), - [sym_comment_environment] = STATE(93), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(93), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(93), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(93), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(93), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(93), - [sym_generic_command] = STATE(93), - [sym_package_include] = STATE(93), - [sym_class_include] = STATE(93), - [sym_latex_include] = STATE(93), - [sym_biblatex_include] = STATE(93), - [sym_bibtex_include] = STATE(93), - [sym_graphics_include] = STATE(93), - [sym_svg_include] = STATE(93), - [sym_inkscape_include] = STATE(93), - [sym_verbatim_include] = STATE(93), - [sym_import_include] = STATE(93), - [sym_caption] = STATE(93), - [sym_citation] = STATE(93), - [sym_label_definition] = STATE(93), - [sym_label_reference] = STATE(93), - [sym_label_reference_range] = STATE(93), - [sym_label_number] = STATE(93), - [sym_new_command_definition] = STATE(93), - [sym_old_command_definition] = STATE(93), - [sym_let_command_definition] = STATE(93), - [sym_environment_definition] = STATE(93), - [sym_glossary_entry_definition] = STATE(93), - [sym_glossary_entry_reference] = STATE(93), - [sym_acronym_definition] = STATE(93), - [sym_acronym_reference] = STATE(93), - [sym_theorem_definition] = STATE(93), - [sym_color_definition] = STATE(93), - [sym_color_set_definition] = STATE(93), - [sym_color_reference] = STATE(93), - [sym_tikz_library_import] = STATE(93), - [aux_sym_source_file_repeat1] = STATE(93), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(934), - [anon_sym_RPAREN] = ACTIONS(934), - [anon_sym_LBRACK] = ACTIONS(934), - [anon_sym_RBRACK] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(934), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(936), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(938), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_LBRACK] = ACTIONS(941), + [anon_sym_RBRACK] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(889), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, [68] = { - [sym_block_comment] = STATE(95), - [sym__root_content] = STATE(95), - [sym__flat_content] = STATE(95), - [sym__text_with_env_content] = STATE(95), - [sym__text_content] = STATE(95), - [sym__section] = STATE(95), - [sym__part_declaration] = STATE(124), + [sym_block_comment] = STATE(80), + [sym__root_content] = STATE(80), + [sym__flat_content] = STATE(80), + [sym__text_with_env_content] = STATE(80), + [sym__text_content] = STATE(80), + [sym__section] = STATE(80), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(95), - [sym_text] = STATE(95), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(95), - [sym_inline_formula] = STATE(95), - [sym_math_set] = STATE(95), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(95), - [sym_comment_environment] = STATE(95), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(95), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(95), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(95), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(95), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(95), - [sym_generic_command] = STATE(95), - [sym_package_include] = STATE(95), - [sym_class_include] = STATE(95), - [sym_latex_include] = STATE(95), - [sym_biblatex_include] = STATE(95), - [sym_bibtex_include] = STATE(95), - [sym_graphics_include] = STATE(95), - [sym_svg_include] = STATE(95), - [sym_inkscape_include] = STATE(95), - [sym_verbatim_include] = STATE(95), - [sym_import_include] = STATE(95), - [sym_caption] = STATE(95), - [sym_citation] = STATE(95), - [sym_label_definition] = STATE(95), - [sym_label_reference] = STATE(95), - [sym_label_reference_range] = STATE(95), - [sym_label_number] = STATE(95), - [sym_new_command_definition] = STATE(95), - [sym_old_command_definition] = STATE(95), - [sym_let_command_definition] = STATE(95), - [sym_environment_definition] = STATE(95), - [sym_glossary_entry_definition] = STATE(95), - [sym_glossary_entry_reference] = STATE(95), - [sym_acronym_definition] = STATE(95), - [sym_acronym_reference] = STATE(95), - [sym_theorem_definition] = STATE(95), - [sym_color_definition] = STATE(95), - [sym_color_set_definition] = STATE(95), - [sym_color_reference] = STATE(95), - [sym_tikz_library_import] = STATE(95), - [aux_sym_source_file_repeat1] = STATE(95), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(80), + [sym_text] = STATE(80), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(80), + [sym_inline_formula] = STATE(80), + [sym_math_set] = STATE(80), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(80), + [sym_comment_environment] = STATE(80), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(80), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(80), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(80), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(80), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(80), + [sym_generic_command] = STATE(80), + [sym_package_include] = STATE(80), + [sym_class_include] = STATE(80), + [sym_latex_include] = STATE(80), + [sym_biblatex_include] = STATE(80), + [sym_bibtex_include] = STATE(80), + [sym_graphics_include] = STATE(80), + [sym_svg_include] = STATE(80), + [sym_inkscape_include] = STATE(80), + [sym_verbatim_include] = STATE(80), + [sym_import_include] = STATE(80), + [sym_caption] = STATE(80), + [sym_citation] = STATE(80), + [sym_label_definition] = STATE(80), + [sym_label_reference] = STATE(80), + [sym_label_reference_range] = STATE(80), + [sym_label_number] = STATE(80), + [sym_new_command_definition] = STATE(80), + [sym_old_command_definition] = STATE(80), + [sym_let_command_definition] = STATE(80), + [sym_environment_definition] = STATE(80), + [sym_glossary_entry_definition] = STATE(80), + [sym_glossary_entry_reference] = STATE(80), + [sym_acronym_definition] = STATE(80), + [sym_acronym_reference] = STATE(80), + [sym_theorem_definition] = STATE(80), + [sym_color_definition] = STATE(80), + [sym_color_set_definition] = STATE(80), + [sym_color_reference] = STATE(80), + [sym_tikz_library_import] = STATE(80), + [sym_text_mode] = STATE(80), + [aux_sym_source_file_repeat1] = STATE(80), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(940), - [anon_sym_RPAREN] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(940), - [anon_sym_RBRACK] = ACTIONS(940), - [anon_sym_COMMA] = ACTIONS(940), - [anon_sym_EQ] = ACTIONS(940), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(942), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(944), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_RPAREN] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_EQ] = ACTIONS(945), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(949), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, [69] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - }, - [70] = { - [sym_block_comment] = STATE(87), - [sym__root_content] = STATE(87), - [sym__flat_content] = STATE(87), - [sym__text_with_env_content] = STATE(87), - [sym__text_content] = STATE(87), - [sym__section] = STATE(87), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), + [sym_block_comment] = STATE(40), + [sym__root_content] = STATE(40), + [sym__flat_content] = STATE(40), + [sym__text_with_env_content] = STATE(40), + [sym__text_content] = STATE(40), + [sym__section] = STATE(40), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(87), - [sym_text] = STATE(87), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(87), - [sym_inline_formula] = STATE(87), - [sym_math_set] = STATE(87), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(87), - [sym_comment_environment] = STATE(87), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(87), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(87), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(87), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(87), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(87), - [sym_generic_command] = STATE(87), - [sym_package_include] = STATE(87), - [sym_class_include] = STATE(87), - [sym_latex_include] = STATE(87), - [sym_biblatex_include] = STATE(87), - [sym_bibtex_include] = STATE(87), - [sym_graphics_include] = STATE(87), - [sym_svg_include] = STATE(87), - [sym_inkscape_include] = STATE(87), - [sym_verbatim_include] = STATE(87), - [sym_import_include] = STATE(87), - [sym_caption] = STATE(87), - [sym_citation] = STATE(87), - [sym_label_definition] = STATE(87), - [sym_label_reference] = STATE(87), - [sym_label_reference_range] = STATE(87), - [sym_label_number] = STATE(87), - [sym_new_command_definition] = STATE(87), - [sym_old_command_definition] = STATE(87), - [sym_let_command_definition] = STATE(87), - [sym_environment_definition] = STATE(87), - [sym_glossary_entry_definition] = STATE(87), - [sym_glossary_entry_reference] = STATE(87), - [sym_acronym_definition] = STATE(87), - [sym_acronym_reference] = STATE(87), - [sym_theorem_definition] = STATE(87), - [sym_color_definition] = STATE(87), - [sym_color_set_definition] = STATE(87), - [sym_color_reference] = STATE(87), - [sym_tikz_library_import] = STATE(87), - [aux_sym_source_file_repeat1] = STATE(87), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_RBRACK] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(946), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(948), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(40), + [sym_text] = STATE(40), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(40), + [sym_inline_formula] = STATE(40), + [sym_math_set] = STATE(40), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(40), + [sym_comment_environment] = STATE(40), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(40), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(40), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(40), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(40), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(40), + [sym_generic_command] = STATE(40), + [sym_package_include] = STATE(40), + [sym_class_include] = STATE(40), + [sym_latex_include] = STATE(40), + [sym_biblatex_include] = STATE(40), + [sym_bibtex_include] = STATE(40), + [sym_graphics_include] = STATE(40), + [sym_svg_include] = STATE(40), + [sym_inkscape_include] = STATE(40), + [sym_verbatim_include] = STATE(40), + [sym_import_include] = STATE(40), + [sym_caption] = STATE(40), + [sym_citation] = STATE(40), + [sym_label_definition] = STATE(40), + [sym_label_reference] = STATE(40), + [sym_label_reference_range] = STATE(40), + [sym_label_number] = STATE(40), + [sym_new_command_definition] = STATE(40), + [sym_old_command_definition] = STATE(40), + [sym_let_command_definition] = STATE(40), + [sym_environment_definition] = STATE(40), + [sym_glossary_entry_definition] = STATE(40), + [sym_glossary_entry_reference] = STATE(40), + [sym_acronym_definition] = STATE(40), + [sym_acronym_reference] = STATE(40), + [sym_theorem_definition] = STATE(40), + [sym_color_definition] = STATE(40), + [sym_color_set_definition] = STATE(40), + [sym_color_reference] = STATE(40), + [sym_tikz_library_import] = STATE(40), + [sym_text_mode] = STATE(40), + [aux_sym_source_file_repeat1] = STATE(40), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(951), + [anon_sym_RPAREN] = ACTIONS(951), + [anon_sym_LBRACK] = ACTIONS(951), + [anon_sym_RBRACK] = ACTIONS(951), + [anon_sym_COMMA] = ACTIONS(951), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(953), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, - [71] = { - [sym_block_comment] = STATE(24), - [sym__root_content] = STATE(24), - [sym__flat_content] = STATE(24), - [sym__text_with_env_content] = STATE(24), - [sym__text_content] = STATE(24), - [sym__section] = STATE(24), + [70] = { + [sym_block_comment] = STATE(22), + [sym__root_content] = STATE(22), + [sym__flat_content] = STATE(22), + [sym__text_with_env_content] = STATE(22), + [sym__text_content] = STATE(22), + [sym__section] = STATE(22), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(24), - [sym_text] = STATE(24), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(24), - [sym_inline_formula] = STATE(24), - [sym_math_set] = STATE(24), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(24), - [sym_comment_environment] = STATE(24), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(24), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(24), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(24), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(24), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(24), - [sym_generic_command] = STATE(24), - [sym_package_include] = STATE(24), - [sym_class_include] = STATE(24), - [sym_latex_include] = STATE(24), - [sym_biblatex_include] = STATE(24), - [sym_bibtex_include] = STATE(24), - [sym_graphics_include] = STATE(24), - [sym_svg_include] = STATE(24), - [sym_inkscape_include] = STATE(24), - [sym_verbatim_include] = STATE(24), - [sym_import_include] = STATE(24), - [sym_caption] = STATE(24), - [sym_citation] = STATE(24), - [sym_label_definition] = STATE(24), - [sym_label_reference] = STATE(24), - [sym_label_reference_range] = STATE(24), - [sym_label_number] = STATE(24), - [sym_new_command_definition] = STATE(24), - [sym_old_command_definition] = STATE(24), - [sym_let_command_definition] = STATE(24), - [sym_environment_definition] = STATE(24), - [sym_glossary_entry_definition] = STATE(24), - [sym_glossary_entry_reference] = STATE(24), - [sym_acronym_definition] = STATE(24), - [sym_acronym_reference] = STATE(24), - [sym_theorem_definition] = STATE(24), - [sym_color_definition] = STATE(24), - [sym_color_set_definition] = STATE(24), - [sym_color_reference] = STATE(24), - [sym_tikz_library_import] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(22), + [sym_text] = STATE(22), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(22), + [sym_inline_formula] = STATE(22), + [sym_math_set] = STATE(22), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(22), + [sym_comment_environment] = STATE(22), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(22), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(22), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(22), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(22), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(22), + [sym_generic_command] = STATE(22), + [sym_package_include] = STATE(22), + [sym_class_include] = STATE(22), + [sym_latex_include] = STATE(22), + [sym_biblatex_include] = STATE(22), + [sym_bibtex_include] = STATE(22), + [sym_graphics_include] = STATE(22), + [sym_svg_include] = STATE(22), + [sym_inkscape_include] = STATE(22), + [sym_verbatim_include] = STATE(22), + [sym_import_include] = STATE(22), + [sym_caption] = STATE(22), + [sym_citation] = STATE(22), + [sym_label_definition] = STATE(22), + [sym_label_reference] = STATE(22), + [sym_label_reference_range] = STATE(22), + [sym_label_number] = STATE(22), + [sym_new_command_definition] = STATE(22), + [sym_old_command_definition] = STATE(22), + [sym_let_command_definition] = STATE(22), + [sym_environment_definition] = STATE(22), + [sym_glossary_entry_definition] = STATE(22), + [sym_glossary_entry_reference] = STATE(22), + [sym_acronym_definition] = STATE(22), + [sym_acronym_reference] = STATE(22), + [sym_theorem_definition] = STATE(22), + [sym_color_definition] = STATE(22), + [sym_color_set_definition] = STATE(22), + [sym_color_reference] = STATE(22), + [sym_tikz_library_import] = STATE(22), + [sym_text_mode] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(950), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -44763,6 +42482,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(955), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -44996,799 +42716,457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [72] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), - }, - [73] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [71] = { + [sym_block_comment] = STATE(104), + [sym__root_content] = STATE(104), + [sym__flat_content] = STATE(104), + [sym__text_with_env_content] = STATE(104), + [sym__text_content] = STATE(104), + [sym__section] = STATE(104), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(104), + [sym_text] = STATE(104), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(104), + [sym_inline_formula] = STATE(104), + [sym_math_set] = STATE(104), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(104), + [sym_comment_environment] = STATE(104), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(104), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(104), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(104), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(104), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(104), + [sym_generic_command] = STATE(104), + [sym_package_include] = STATE(104), + [sym_class_include] = STATE(104), + [sym_latex_include] = STATE(104), + [sym_biblatex_include] = STATE(104), + [sym_bibtex_include] = STATE(104), + [sym_graphics_include] = STATE(104), + [sym_svg_include] = STATE(104), + [sym_inkscape_include] = STATE(104), + [sym_verbatim_include] = STATE(104), + [sym_import_include] = STATE(104), + [sym_caption] = STATE(104), + [sym_citation] = STATE(104), + [sym_label_definition] = STATE(104), + [sym_label_reference] = STATE(104), + [sym_label_reference_range] = STATE(104), + [sym_label_number] = STATE(104), + [sym_new_command_definition] = STATE(104), + [sym_old_command_definition] = STATE(104), + [sym_let_command_definition] = STATE(104), + [sym_environment_definition] = STATE(104), + [sym_glossary_entry_definition] = STATE(104), + [sym_glossary_entry_reference] = STATE(104), + [sym_acronym_definition] = STATE(104), + [sym_acronym_reference] = STATE(104), + [sym_theorem_definition] = STATE(104), + [sym_color_definition] = STATE(104), + [sym_color_set_definition] = STATE(104), + [sym_color_reference] = STATE(104), + [sym_tikz_library_import] = STATE(104), + [sym_text_mode] = STATE(104), + [aux_sym_source_file_repeat1] = STATE(104), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(787), + [anon_sym_COMMA] = ACTIONS(787), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(957), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, - [74] = { - [sym_block_comment] = STATE(92), - [sym__root_content] = STATE(92), - [sym__flat_content] = STATE(92), - [sym__text_with_env_content] = STATE(92), - [sym__text_content] = STATE(92), - [sym__section] = STATE(92), + [72] = { + [sym_block_comment] = STATE(22), + [sym__root_content] = STATE(22), + [sym__flat_content] = STATE(22), + [sym__text_with_env_content] = STATE(22), + [sym__text_content] = STATE(22), + [sym__section] = STATE(22), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(92), - [sym_text] = STATE(92), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(92), - [sym_inline_formula] = STATE(92), - [sym_math_set] = STATE(92), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(92), - [sym_comment_environment] = STATE(92), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(92), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(92), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(92), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(92), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(92), - [sym_generic_command] = STATE(92), - [sym_package_include] = STATE(92), - [sym_class_include] = STATE(92), - [sym_latex_include] = STATE(92), - [sym_biblatex_include] = STATE(92), - [sym_bibtex_include] = STATE(92), - [sym_graphics_include] = STATE(92), - [sym_svg_include] = STATE(92), - [sym_inkscape_include] = STATE(92), - [sym_verbatim_include] = STATE(92), - [sym_import_include] = STATE(92), - [sym_caption] = STATE(92), - [sym_citation] = STATE(92), - [sym_label_definition] = STATE(92), - [sym_label_reference] = STATE(92), - [sym_label_reference_range] = STATE(92), - [sym_label_number] = STATE(92), - [sym_new_command_definition] = STATE(92), - [sym_old_command_definition] = STATE(92), - [sym_let_command_definition] = STATE(92), - [sym_environment_definition] = STATE(92), - [sym_glossary_entry_definition] = STATE(92), - [sym_glossary_entry_reference] = STATE(92), - [sym_acronym_definition] = STATE(92), - [sym_acronym_reference] = STATE(92), - [sym_theorem_definition] = STATE(92), - [sym_color_definition] = STATE(92), - [sym_color_set_definition] = STATE(92), - [sym_color_reference] = STATE(92), - [sym_tikz_library_import] = STATE(92), - [aux_sym_source_file_repeat1] = STATE(92), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(22), + [sym_text] = STATE(22), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(22), + [sym_inline_formula] = STATE(22), + [sym_math_set] = STATE(22), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(22), + [sym_comment_environment] = STATE(22), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(22), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(22), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(22), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(22), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(22), + [sym_generic_command] = STATE(22), + [sym_package_include] = STATE(22), + [sym_class_include] = STATE(22), + [sym_latex_include] = STATE(22), + [sym_biblatex_include] = STATE(22), + [sym_bibtex_include] = STATE(22), + [sym_graphics_include] = STATE(22), + [sym_svg_include] = STATE(22), + [sym_inkscape_include] = STATE(22), + [sym_verbatim_include] = STATE(22), + [sym_import_include] = STATE(22), + [sym_caption] = STATE(22), + [sym_citation] = STATE(22), + [sym_label_definition] = STATE(22), + [sym_label_reference] = STATE(22), + [sym_label_reference_range] = STATE(22), + [sym_label_number] = STATE(22), + [sym_new_command_definition] = STATE(22), + [sym_old_command_definition] = STATE(22), + [sym_let_command_definition] = STATE(22), + [sym_environment_definition] = STATE(22), + [sym_glossary_entry_definition] = STATE(22), + [sym_glossary_entry_reference] = STATE(22), + [sym_acronym_definition] = STATE(22), + [sym_acronym_reference] = STATE(22), + [sym_theorem_definition] = STATE(22), + [sym_color_definition] = STATE(22), + [sym_color_set_definition] = STATE(22), + [sym_color_reference] = STATE(22), + [sym_tikz_library_import] = STATE(22), + [sym_text_mode] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_RPAREN] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(952), - [anon_sym_RBRACK] = ACTIONS(952), - [anon_sym_COMMA] = ACTIONS(952), - [anon_sym_EQ] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -45812,7 +43190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(959), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -46046,799 +43424,3643 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [75] = { - [sym_block_comment] = STATE(46), - [sym__root_content] = STATE(46), - [sym__flat_content] = STATE(46), - [sym__text_with_env_content] = STATE(46), - [sym__text_content] = STATE(46), - [sym__section] = STATE(46), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), + [73] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [74] = { + [sym_block_comment] = STATE(79), + [sym__root_content] = STATE(79), + [sym__flat_content] = STATE(79), + [sym__text_with_env_content] = STATE(79), + [sym__text_content] = STATE(79), + [sym__section] = STATE(79), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(46), - [sym_text] = STATE(46), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(46), - [sym_inline_formula] = STATE(46), - [sym_math_set] = STATE(46), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(46), - [sym_comment_environment] = STATE(46), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(46), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(46), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(46), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(46), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(46), - [sym_generic_command] = STATE(46), - [sym_package_include] = STATE(46), - [sym_class_include] = STATE(46), - [sym_latex_include] = STATE(46), - [sym_biblatex_include] = STATE(46), - [sym_bibtex_include] = STATE(46), - [sym_graphics_include] = STATE(46), - [sym_svg_include] = STATE(46), - [sym_inkscape_include] = STATE(46), - [sym_verbatim_include] = STATE(46), - [sym_import_include] = STATE(46), - [sym_caption] = STATE(46), - [sym_citation] = STATE(46), - [sym_label_definition] = STATE(46), - [sym_label_reference] = STATE(46), - [sym_label_reference_range] = STATE(46), - [sym_label_number] = STATE(46), - [sym_new_command_definition] = STATE(46), - [sym_old_command_definition] = STATE(46), - [sym_let_command_definition] = STATE(46), - [sym_environment_definition] = STATE(46), - [sym_glossary_entry_definition] = STATE(46), - [sym_glossary_entry_reference] = STATE(46), - [sym_acronym_definition] = STATE(46), - [sym_acronym_reference] = STATE(46), - [sym_theorem_definition] = STATE(46), - [sym_color_definition] = STATE(46), - [sym_color_set_definition] = STATE(46), - [sym_color_reference] = STATE(46), - [sym_tikz_library_import] = STATE(46), - [aux_sym_source_file_repeat1] = STATE(46), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(956), - [anon_sym_RPAREN] = ACTIONS(956), - [anon_sym_LBRACK] = ACTIONS(956), - [anon_sym_RBRACK] = ACTIONS(956), - [anon_sym_COMMA] = ACTIONS(956), - [anon_sym_EQ] = ACTIONS(956), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(958), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(79), + [sym_text] = STATE(79), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(79), + [sym_inline_formula] = STATE(79), + [sym_math_set] = STATE(79), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(79), + [sym_comment_environment] = STATE(79), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(79), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(79), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(79), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(79), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(79), + [sym_generic_command] = STATE(79), + [sym_package_include] = STATE(79), + [sym_class_include] = STATE(79), + [sym_latex_include] = STATE(79), + [sym_biblatex_include] = STATE(79), + [sym_bibtex_include] = STATE(79), + [sym_graphics_include] = STATE(79), + [sym_svg_include] = STATE(79), + [sym_inkscape_include] = STATE(79), + [sym_verbatim_include] = STATE(79), + [sym_import_include] = STATE(79), + [sym_caption] = STATE(79), + [sym_citation] = STATE(79), + [sym_label_definition] = STATE(79), + [sym_label_reference] = STATE(79), + [sym_label_reference_range] = STATE(79), + [sym_label_number] = STATE(79), + [sym_new_command_definition] = STATE(79), + [sym_old_command_definition] = STATE(79), + [sym_let_command_definition] = STATE(79), + [sym_environment_definition] = STATE(79), + [sym_glossary_entry_definition] = STATE(79), + [sym_glossary_entry_reference] = STATE(79), + [sym_acronym_definition] = STATE(79), + [sym_acronym_reference] = STATE(79), + [sym_theorem_definition] = STATE(79), + [sym_color_definition] = STATE(79), + [sym_color_set_definition] = STATE(79), + [sym_color_reference] = STATE(79), + [sym_tikz_library_import] = STATE(79), + [sym_text_mode] = STATE(79), + [aux_sym_source_file_repeat1] = STATE(79), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(781), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), + }, + [75] = { + [sym_block_comment] = STATE(104), + [sym__root_content] = STATE(104), + [sym__flat_content] = STATE(104), + [sym__text_with_env_content] = STATE(104), + [sym__text_content] = STATE(104), + [sym__section] = STATE(104), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(104), + [sym_text] = STATE(104), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(104), + [sym_inline_formula] = STATE(104), + [sym_math_set] = STATE(104), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(104), + [sym_comment_environment] = STATE(104), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(104), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(104), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(104), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(104), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(104), + [sym_generic_command] = STATE(104), + [sym_package_include] = STATE(104), + [sym_class_include] = STATE(104), + [sym_latex_include] = STATE(104), + [sym_biblatex_include] = STATE(104), + [sym_bibtex_include] = STATE(104), + [sym_graphics_include] = STATE(104), + [sym_svg_include] = STATE(104), + [sym_inkscape_include] = STATE(104), + [sym_verbatim_include] = STATE(104), + [sym_import_include] = STATE(104), + [sym_caption] = STATE(104), + [sym_citation] = STATE(104), + [sym_label_definition] = STATE(104), + [sym_label_reference] = STATE(104), + [sym_label_reference_range] = STATE(104), + [sym_label_number] = STATE(104), + [sym_new_command_definition] = STATE(104), + [sym_old_command_definition] = STATE(104), + [sym_let_command_definition] = STATE(104), + [sym_environment_definition] = STATE(104), + [sym_glossary_entry_definition] = STATE(104), + [sym_glossary_entry_reference] = STATE(104), + [sym_acronym_definition] = STATE(104), + [sym_acronym_reference] = STATE(104), + [sym_theorem_definition] = STATE(104), + [sym_color_definition] = STATE(104), + [sym_color_set_definition] = STATE(104), + [sym_color_reference] = STATE(104), + [sym_tikz_library_import] = STATE(104), + [sym_text_mode] = STATE(104), + [aux_sym_source_file_repeat1] = STATE(104), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(787), + [anon_sym_COMMA] = ACTIONS(787), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(965), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, [76] = { - [sym_block_comment] = STATE(47), - [sym__root_content] = STATE(47), - [sym__flat_content] = STATE(47), - [sym__text_with_env_content] = STATE(47), - [sym__text_content] = STATE(47), - [sym__section] = STATE(47), - [sym__part_declaration] = STATE(124), + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(47), - [sym_text] = STATE(47), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(47), - [sym_inline_formula] = STATE(47), - [sym_math_set] = STATE(47), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(47), - [sym_comment_environment] = STATE(47), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(47), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(47), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(47), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(47), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(47), - [sym_generic_command] = STATE(47), - [sym_package_include] = STATE(47), - [sym_class_include] = STATE(47), - [sym_latex_include] = STATE(47), - [sym_biblatex_include] = STATE(47), - [sym_bibtex_include] = STATE(47), - [sym_graphics_include] = STATE(47), - [sym_svg_include] = STATE(47), - [sym_inkscape_include] = STATE(47), - [sym_verbatim_include] = STATE(47), - [sym_import_include] = STATE(47), - [sym_caption] = STATE(47), - [sym_citation] = STATE(47), - [sym_label_definition] = STATE(47), - [sym_label_reference] = STATE(47), - [sym_label_reference_range] = STATE(47), - [sym_label_number] = STATE(47), - [sym_new_command_definition] = STATE(47), - [sym_old_command_definition] = STATE(47), - [sym_let_command_definition] = STATE(47), - [sym_environment_definition] = STATE(47), - [sym_glossary_entry_definition] = STATE(47), - [sym_glossary_entry_reference] = STATE(47), - [sym_acronym_definition] = STATE(47), - [sym_acronym_reference] = STATE(47), - [sym_theorem_definition] = STATE(47), - [sym_color_definition] = STATE(47), - [sym_color_set_definition] = STATE(47), - [sym_color_reference] = STATE(47), - [sym_tikz_library_import] = STATE(47), - [aux_sym_source_file_repeat1] = STATE(47), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(962), - [anon_sym_RPAREN] = ACTIONS(962), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_RBRACK] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(966), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_BSLASHpart] = ACTIONS(149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddpart] = ACTIONS(149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHchapter] = ACTIONS(149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddchap] = ACTIONS(149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), + [anon_sym_BSLASHsection] = ACTIONS(149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddsec] = ACTIONS(149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHparagraph] = ACTIONS(149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHitem] = ACTIONS(149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), }, [77] = { - [sym_block_comment] = STATE(24), - [sym__root_content] = STATE(24), - [sym__flat_content] = STATE(24), - [sym__text_with_env_content] = STATE(24), - [sym__text_content] = STATE(24), - [sym__section] = STATE(24), + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(137), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [78] = { + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(151), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), + }, + [79] = { + [sym_block_comment] = STATE(79), + [sym__root_content] = STATE(79), + [sym__flat_content] = STATE(79), + [sym__text_with_env_content] = STATE(79), + [sym__text_content] = STATE(79), + [sym__section] = STATE(79), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(79), + [sym_text] = STATE(79), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(79), + [sym_inline_formula] = STATE(79), + [sym_math_set] = STATE(79), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(79), + [sym_comment_environment] = STATE(79), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(79), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(79), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(79), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(79), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(79), + [sym_generic_command] = STATE(79), + [sym_package_include] = STATE(79), + [sym_class_include] = STATE(79), + [sym_latex_include] = STATE(79), + [sym_biblatex_include] = STATE(79), + [sym_bibtex_include] = STATE(79), + [sym_graphics_include] = STATE(79), + [sym_svg_include] = STATE(79), + [sym_inkscape_include] = STATE(79), + [sym_verbatim_include] = STATE(79), + [sym_import_include] = STATE(79), + [sym_caption] = STATE(79), + [sym_citation] = STATE(79), + [sym_label_definition] = STATE(79), + [sym_label_reference] = STATE(79), + [sym_label_reference_range] = STATE(79), + [sym_label_number] = STATE(79), + [sym_new_command_definition] = STATE(79), + [sym_old_command_definition] = STATE(79), + [sym_let_command_definition] = STATE(79), + [sym_environment_definition] = STATE(79), + [sym_glossary_entry_definition] = STATE(79), + [sym_glossary_entry_reference] = STATE(79), + [sym_acronym_definition] = STATE(79), + [sym_acronym_reference] = STATE(79), + [sym_theorem_definition] = STATE(79), + [sym_color_definition] = STATE(79), + [sym_color_set_definition] = STATE(79), + [sym_color_reference] = STATE(79), + [sym_tikz_library_import] = STATE(79), + [sym_text_mode] = STATE(79), + [aux_sym_source_file_repeat1] = STATE(79), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(967), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(973), + [anon_sym_RPAREN] = ACTIONS(973), + [anon_sym_LBRACK] = ACTIONS(973), + [anon_sym_RBRACK] = ACTIONS(973), + [anon_sym_COMMA] = ACTIONS(973), + [anon_sym_EQ] = ACTIONS(973), + [anon_sym_BSLASHpart] = ACTIONS(976), + [anon_sym_BSLASHpart_STAR] = ACTIONS(979), + [anon_sym_BSLASHaddpart] = ACTIONS(976), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(979), + [anon_sym_BSLASHchapter] = ACTIONS(982), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(985), + [anon_sym_BSLASHaddchap] = ACTIONS(982), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(985), + [anon_sym_BSLASHsection] = ACTIONS(988), + [anon_sym_BSLASHsection_STAR] = ACTIONS(991), + [anon_sym_BSLASHaddsec] = ACTIONS(988), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(991), + [anon_sym_BSLASHsubsection] = ACTIONS(994), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1000), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1003), + [anon_sym_BSLASHparagraph] = ACTIONS(1006), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1009), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1012), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1015), + [anon_sym_BSLASHitem] = ACTIONS(1018), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1024), + [sym_word] = ACTIONS(1027), + [sym_placeholder] = ACTIONS(1030), + [anon_sym_PLUS] = ACTIONS(1033), + [anon_sym_DASH] = ACTIONS(1033), + [anon_sym_STAR] = ACTIONS(1033), + [anon_sym_SLASH] = ACTIONS(1033), + [anon_sym_CARET] = ACTIONS(1033), + [anon_sym__] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(1033), + [anon_sym_GT] = ACTIONS(1033), + [anon_sym_BANG] = ACTIONS(1033), + [anon_sym_PIPE] = ACTIONS(1033), + [anon_sym_COLON] = ACTIONS(1033), + [anon_sym_SQUOTE] = ACTIONS(1033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1036), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1042), + [anon_sym_BSLASH_RPAREN] = ACTIONS(355), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1045), + [anon_sym_BSLASHbegin] = ACTIONS(438), + [anon_sym_BSLASHusepackage] = ACTIONS(1048), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1048), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1051), + [anon_sym_BSLASHinclude] = ACTIONS(1054), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1054), + [anon_sym_BSLASHinput] = ACTIONS(1054), + [anon_sym_BSLASHsubfile] = ACTIONS(1054), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1057), + [anon_sym_BSLASHbibliography] = ACTIONS(1060), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1063), + [anon_sym_BSLASHincludesvg] = ACTIONS(1066), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1072), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1072), + [anon_sym_BSLASHimport] = ACTIONS(1075), + [anon_sym_BSLASHsubimport] = ACTIONS(1075), + [anon_sym_BSLASHinputfrom] = ACTIONS(1075), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1075), + [anon_sym_BSLASHincludefrom] = ACTIONS(1075), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1075), + [anon_sym_BSLASHcaption] = ACTIONS(1078), + [anon_sym_BSLASHcite] = ACTIONS(1081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1084), + [anon_sym_BSLASHCite] = ACTIONS(1081), + [anon_sym_BSLASHnocite] = ACTIONS(1081), + [anon_sym_BSLASHcitet] = ACTIONS(1081), + [anon_sym_BSLASHcitep] = ACTIONS(1081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1084), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1084), + [anon_sym_BSLASHciteauthor] = ACTIONS(1081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1084), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1084), + [anon_sym_BSLASHcitetitle] = ACTIONS(1081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1084), + [anon_sym_BSLASHciteyear] = ACTIONS(1081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1084), + [anon_sym_BSLASHcitedate] = ACTIONS(1081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1084), + [anon_sym_BSLASHciteurl] = ACTIONS(1081), + [anon_sym_BSLASHfullcite] = ACTIONS(1081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1081), + [anon_sym_BSLASHcitealt] = ACTIONS(1081), + [anon_sym_BSLASHcitealp] = ACTIONS(1081), + [anon_sym_BSLASHcitetext] = ACTIONS(1081), + [anon_sym_BSLASHparencite] = ACTIONS(1081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1084), + [anon_sym_BSLASHParencite] = ACTIONS(1081), + [anon_sym_BSLASHfootcite] = ACTIONS(1081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1081), + [anon_sym_BSLASHtextcite] = ACTIONS(1081), + [anon_sym_BSLASHTextcite] = ACTIONS(1081), + [anon_sym_BSLASHsmartcite] = ACTIONS(1081), + [anon_sym_BSLASHSmartcite] = ACTIONS(1081), + [anon_sym_BSLASHsupercite] = ACTIONS(1081), + [anon_sym_BSLASHautocite] = ACTIONS(1081), + [anon_sym_BSLASHAutocite] = ACTIONS(1081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1084), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1084), + [anon_sym_BSLASHvolcite] = ACTIONS(1081), + [anon_sym_BSLASHVolcite] = ACTIONS(1081), + [anon_sym_BSLASHpvolcite] = ACTIONS(1081), + [anon_sym_BSLASHPvolcite] = ACTIONS(1081), + [anon_sym_BSLASHfvolcite] = ACTIONS(1081), + [anon_sym_BSLASHftvolcite] = ACTIONS(1081), + [anon_sym_BSLASHsvolcite] = ACTIONS(1081), + [anon_sym_BSLASHSvolcite] = ACTIONS(1081), + [anon_sym_BSLASHtvolcite] = ACTIONS(1081), + [anon_sym_BSLASHTvolcite] = ACTIONS(1081), + [anon_sym_BSLASHavolcite] = ACTIONS(1081), + [anon_sym_BSLASHAvolcite] = ACTIONS(1081), + [anon_sym_BSLASHnotecite] = ACTIONS(1081), + [anon_sym_BSLASHNotecite] = ACTIONS(1081), + [anon_sym_BSLASHpnotecite] = ACTIONS(1081), + [anon_sym_BSLASHPnotecite] = ACTIONS(1081), + [anon_sym_BSLASHfnotecite] = ACTIONS(1081), + [anon_sym_BSLASHlabel] = ACTIONS(1087), + [anon_sym_BSLASHref] = ACTIONS(1090), + [anon_sym_BSLASHeqref] = ACTIONS(1090), + [anon_sym_BSLASHvref] = ACTIONS(1090), + [anon_sym_BSLASHVref] = ACTIONS(1090), + [anon_sym_BSLASHautoref] = ACTIONS(1090), + [anon_sym_BSLASHpageref] = ACTIONS(1090), + [anon_sym_BSLASHcref] = ACTIONS(1090), + [anon_sym_BSLASHCref] = ACTIONS(1090), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1093), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1093), + [anon_sym_BSLASHnamecref] = ACTIONS(1090), + [anon_sym_BSLASHnameCref] = ACTIONS(1090), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1090), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1090), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1090), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1090), + [anon_sym_BSLASHlabelcref] = ACTIONS(1090), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1090), + [anon_sym_BSLASHcrefrange] = ACTIONS(1096), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1099), + [anon_sym_BSLASHCrefrange] = ACTIONS(1096), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1099), + [anon_sym_BSLASHnewlabel] = ACTIONS(1102), + [anon_sym_BSLASHnewcommand] = ACTIONS(1105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1108), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1108), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1108), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1108), + [anon_sym_BSLASHdef] = ACTIONS(1111), + [anon_sym_BSLASHlet] = ACTIONS(1114), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1117), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1120), + [anon_sym_BSLASHgls] = ACTIONS(1123), + [anon_sym_BSLASHGls] = ACTIONS(1123), + [anon_sym_BSLASHGLS] = ACTIONS(1123), + [anon_sym_BSLASHglspl] = ACTIONS(1123), + [anon_sym_BSLASHGlspl] = ACTIONS(1123), + [anon_sym_BSLASHGLSpl] = ACTIONS(1123), + [anon_sym_BSLASHglsdisp] = ACTIONS(1123), + [anon_sym_BSLASHglslink] = ACTIONS(1123), + [anon_sym_BSLASHglstext] = ACTIONS(1123), + [anon_sym_BSLASHGlstext] = ACTIONS(1123), + [anon_sym_BSLASHGLStext] = ACTIONS(1123), + [anon_sym_BSLASHglsfirst] = ACTIONS(1123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1123), + [anon_sym_BSLASHglsplural] = ACTIONS(1123), + [anon_sym_BSLASHGlsplural] = ACTIONS(1123), + [anon_sym_BSLASHGLSplural] = ACTIONS(1123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1123), + [anon_sym_BSLASHglsname] = ACTIONS(1123), + [anon_sym_BSLASHGlsname] = ACTIONS(1123), + [anon_sym_BSLASHGLSname] = ACTIONS(1123), + [anon_sym_BSLASHglssymbol] = ACTIONS(1123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1123), + [anon_sym_BSLASHglsdesc] = ACTIONS(1123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1123), + [anon_sym_BSLASHglsuseri] = ACTIONS(1123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1123), + [anon_sym_BSLASHglsuserii] = ACTIONS(1123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1123), + [anon_sym_BSLASHglsuserv] = ACTIONS(1123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1123), + [anon_sym_BSLASHglsuservi] = ACTIONS(1123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1123), + [anon_sym_BSLASHnewacronym] = ACTIONS(1126), + [anon_sym_BSLASHacrshort] = ACTIONS(1129), + [anon_sym_BSLASHAcrshort] = ACTIONS(1129), + [anon_sym_BSLASHACRshort] = ACTIONS(1129), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1129), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1129), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1129), + [anon_sym_BSLASHacrlong] = ACTIONS(1129), + [anon_sym_BSLASHAcrlong] = ACTIONS(1129), + [anon_sym_BSLASHACRlong] = ACTIONS(1129), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1129), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1129), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1129), + [anon_sym_BSLASHacrfull] = ACTIONS(1129), + [anon_sym_BSLASHAcrfull] = ACTIONS(1129), + [anon_sym_BSLASHACRfull] = ACTIONS(1129), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1129), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1129), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1129), + [anon_sym_BSLASHacs] = ACTIONS(1129), + [anon_sym_BSLASHAcs] = ACTIONS(1129), + [anon_sym_BSLASHacsp] = ACTIONS(1129), + [anon_sym_BSLASHAcsp] = ACTIONS(1129), + [anon_sym_BSLASHacl] = ACTIONS(1129), + [anon_sym_BSLASHAcl] = ACTIONS(1129), + [anon_sym_BSLASHaclp] = ACTIONS(1129), + [anon_sym_BSLASHAclp] = ACTIONS(1129), + [anon_sym_BSLASHacf] = ACTIONS(1129), + [anon_sym_BSLASHAcf] = ACTIONS(1129), + [anon_sym_BSLASHacfp] = ACTIONS(1129), + [anon_sym_BSLASHAcfp] = ACTIONS(1129), + [anon_sym_BSLASHac] = ACTIONS(1129), + [anon_sym_BSLASHAc] = ACTIONS(1129), + [anon_sym_BSLASHacp] = ACTIONS(1129), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1129), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1129), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1129), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1129), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1129), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1129), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1129), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1129), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1129), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1129), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1132), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1132), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1138), + [anon_sym_BSLASHcolor] = ACTIONS(1141), + [anon_sym_BSLASHcolorbox] = ACTIONS(1141), + [anon_sym_BSLASHtextcolor] = ACTIONS(1141), + [anon_sym_BSLASHpagecolor] = ACTIONS(1141), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1144), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1144), + [anon_sym_BSLASHtext] = ACTIONS(1147), + [anon_sym_BSLASHintertext] = ACTIONS(1147), + [anon_sym_shortintertext] = ACTIONS(1147), + }, + [80] = { + [sym_block_comment] = STATE(79), + [sym__root_content] = STATE(79), + [sym__flat_content] = STATE(79), + [sym__text_with_env_content] = STATE(79), + [sym__text_content] = STATE(79), + [sym__section] = STATE(79), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(79), + [sym_text] = STATE(79), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(79), + [sym_inline_formula] = STATE(79), + [sym_math_set] = STATE(79), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(79), + [sym_comment_environment] = STATE(79), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(79), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(79), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(79), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(79), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(79), + [sym_generic_command] = STATE(79), + [sym_package_include] = STATE(79), + [sym_class_include] = STATE(79), + [sym_latex_include] = STATE(79), + [sym_biblatex_include] = STATE(79), + [sym_bibtex_include] = STATE(79), + [sym_graphics_include] = STATE(79), + [sym_svg_include] = STATE(79), + [sym_inkscape_include] = STATE(79), + [sym_verbatim_include] = STATE(79), + [sym_import_include] = STATE(79), + [sym_caption] = STATE(79), + [sym_citation] = STATE(79), + [sym_label_definition] = STATE(79), + [sym_label_reference] = STATE(79), + [sym_label_reference_range] = STATE(79), + [sym_label_number] = STATE(79), + [sym_new_command_definition] = STATE(79), + [sym_old_command_definition] = STATE(79), + [sym_let_command_definition] = STATE(79), + [sym_environment_definition] = STATE(79), + [sym_glossary_entry_definition] = STATE(79), + [sym_glossary_entry_reference] = STATE(79), + [sym_acronym_definition] = STATE(79), + [sym_acronym_reference] = STATE(79), + [sym_theorem_definition] = STATE(79), + [sym_color_definition] = STATE(79), + [sym_color_set_definition] = STATE(79), + [sym_color_reference] = STATE(79), + [sym_tikz_library_import] = STATE(79), + [sym_text_mode] = STATE(79), + [aux_sym_source_file_repeat1] = STATE(79), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1150), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1152), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), + }, + [81] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(313), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_BSLASH_RBRACK] = ACTIONS(135), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), + }, + [82] = { + [sym_block_comment] = STATE(71), + [sym__root_content] = STATE(71), + [sym__flat_content] = STATE(71), + [sym__text_with_env_content] = STATE(71), + [sym__text_content] = STATE(71), + [sym__section] = STATE(71), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(71), + [sym_text] = STATE(71), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(71), + [sym_inline_formula] = STATE(71), + [sym_math_set] = STATE(71), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(71), + [sym_comment_environment] = STATE(71), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(71), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(71), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(71), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(71), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(71), + [sym_generic_command] = STATE(71), + [sym_package_include] = STATE(71), + [sym_class_include] = STATE(71), + [sym_latex_include] = STATE(71), + [sym_biblatex_include] = STATE(71), + [sym_bibtex_include] = STATE(71), + [sym_graphics_include] = STATE(71), + [sym_svg_include] = STATE(71), + [sym_inkscape_include] = STATE(71), + [sym_verbatim_include] = STATE(71), + [sym_import_include] = STATE(71), + [sym_caption] = STATE(71), + [sym_citation] = STATE(71), + [sym_label_definition] = STATE(71), + [sym_label_reference] = STATE(71), + [sym_label_reference_range] = STATE(71), + [sym_label_number] = STATE(71), + [sym_new_command_definition] = STATE(71), + [sym_old_command_definition] = STATE(71), + [sym_let_command_definition] = STATE(71), + [sym_environment_definition] = STATE(71), + [sym_glossary_entry_definition] = STATE(71), + [sym_glossary_entry_reference] = STATE(71), + [sym_acronym_definition] = STATE(71), + [sym_acronym_reference] = STATE(71), + [sym_theorem_definition] = STATE(71), + [sym_color_definition] = STATE(71), + [sym_color_set_definition] = STATE(71), + [sym_color_reference] = STATE(71), + [sym_tikz_library_import] = STATE(71), + [sym_text_mode] = STATE(71), + [aux_sym_source_file_repeat1] = STATE(71), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1154), + [anon_sym_RPAREN] = ACTIONS(1154), + [anon_sym_LBRACK] = ACTIONS(1154), + [anon_sym_RBRACK] = ACTIONS(1154), + [anon_sym_COMMA] = ACTIONS(1154), + [anon_sym_EQ] = ACTIONS(1154), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1156), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [83] = { + [sym_block_comment] = STATE(22), + [sym__root_content] = STATE(22), + [sym__flat_content] = STATE(22), + [sym__text_with_env_content] = STATE(22), + [sym__text_content] = STATE(22), + [sym__section] = STATE(22), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(24), - [sym_text] = STATE(24), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(24), - [sym_inline_formula] = STATE(24), - [sym_math_set] = STATE(24), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(24), - [sym_comment_environment] = STATE(24), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(24), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(24), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(24), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(24), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(24), - [sym_generic_command] = STATE(24), - [sym_package_include] = STATE(24), - [sym_class_include] = STATE(24), - [sym_latex_include] = STATE(24), - [sym_biblatex_include] = STATE(24), - [sym_bibtex_include] = STATE(24), - [sym_graphics_include] = STATE(24), - [sym_svg_include] = STATE(24), - [sym_inkscape_include] = STATE(24), - [sym_verbatim_include] = STATE(24), - [sym_import_include] = STATE(24), - [sym_caption] = STATE(24), - [sym_citation] = STATE(24), - [sym_label_definition] = STATE(24), - [sym_label_reference] = STATE(24), - [sym_label_reference_range] = STATE(24), - [sym_label_number] = STATE(24), - [sym_new_command_definition] = STATE(24), - [sym_old_command_definition] = STATE(24), - [sym_let_command_definition] = STATE(24), - [sym_environment_definition] = STATE(24), - [sym_glossary_entry_definition] = STATE(24), - [sym_glossary_entry_reference] = STATE(24), - [sym_acronym_definition] = STATE(24), - [sym_acronym_reference] = STATE(24), - [sym_theorem_definition] = STATE(24), - [sym_color_definition] = STATE(24), - [sym_color_set_definition] = STATE(24), - [sym_color_reference] = STATE(24), - [sym_tikz_library_import] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(22), + [sym_text] = STATE(22), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(22), + [sym_inline_formula] = STATE(22), + [sym_math_set] = STATE(22), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(22), + [sym_comment_environment] = STATE(22), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(22), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(22), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(22), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(22), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(22), + [sym_generic_command] = STATE(22), + [sym_package_include] = STATE(22), + [sym_class_include] = STATE(22), + [sym_latex_include] = STATE(22), + [sym_biblatex_include] = STATE(22), + [sym_bibtex_include] = STATE(22), + [sym_graphics_include] = STATE(22), + [sym_svg_include] = STATE(22), + [sym_inkscape_include] = STATE(22), + [sym_verbatim_include] = STATE(22), + [sym_import_include] = STATE(22), + [sym_caption] = STATE(22), + [sym_citation] = STATE(22), + [sym_label_definition] = STATE(22), + [sym_label_reference] = STATE(22), + [sym_label_reference_range] = STATE(22), + [sym_label_number] = STATE(22), + [sym_new_command_definition] = STATE(22), + [sym_old_command_definition] = STATE(22), + [sym_let_command_definition] = STATE(22), + [sym_environment_definition] = STATE(22), + [sym_glossary_entry_definition] = STATE(22), + [sym_glossary_entry_reference] = STATE(22), + [sym_acronym_definition] = STATE(22), + [sym_acronym_reference] = STATE(22), + [sym_theorem_definition] = STATE(22), + [sym_color_definition] = STATE(22), + [sym_color_set_definition] = STATE(22), + [sym_color_reference] = STATE(22), + [sym_tikz_library_import] = STATE(22), + [sym_text_mode] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -46862,7 +47084,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(1158), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -47096,398 +47318,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [78] = { - [sym_block_comment] = STATE(84), - [sym__root_content] = STATE(84), - [sym__flat_content] = STATE(84), - [sym__text_with_env_content] = STATE(84), - [sym__text_content] = STATE(84), - [sym__section] = STATE(84), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(84), - [sym_text] = STATE(84), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(84), - [sym_inline_formula] = STATE(84), - [sym_math_set] = STATE(84), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(84), - [sym_comment_environment] = STATE(84), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(84), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(84), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(84), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(84), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(84), - [sym_generic_command] = STATE(84), - [sym_package_include] = STATE(84), - [sym_class_include] = STATE(84), - [sym_latex_include] = STATE(84), - [sym_biblatex_include] = STATE(84), - [sym_bibtex_include] = STATE(84), - [sym_graphics_include] = STATE(84), - [sym_svg_include] = STATE(84), - [sym_inkscape_include] = STATE(84), - [sym_verbatim_include] = STATE(84), - [sym_import_include] = STATE(84), - [sym_caption] = STATE(84), - [sym_citation] = STATE(84), - [sym_label_definition] = STATE(84), - [sym_label_reference] = STATE(84), - [sym_label_reference_range] = STATE(84), - [sym_label_number] = STATE(84), - [sym_new_command_definition] = STATE(84), - [sym_old_command_definition] = STATE(84), - [sym_let_command_definition] = STATE(84), - [sym_environment_definition] = STATE(84), - [sym_glossary_entry_definition] = STATE(84), - [sym_glossary_entry_reference] = STATE(84), - [sym_acronym_definition] = STATE(84), - [sym_acronym_reference] = STATE(84), - [sym_theorem_definition] = STATE(84), - [sym_color_definition] = STATE(84), - [sym_color_set_definition] = STATE(84), - [sym_color_reference] = STATE(84), - [sym_tikz_library_import] = STATE(84), - [aux_sym_source_file_repeat1] = STATE(84), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(888), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [84] = { + [sym_block_comment] = STATE(119), + [sym__root_content] = STATE(119), + [sym__flat_content] = STATE(119), + [sym__text_with_env_content] = STATE(119), + [sym__text_content] = STATE(119), + [sym__section] = STATE(119), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(119), + [sym_text] = STATE(119), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(119), + [sym_inline_formula] = STATE(119), + [sym_math_set] = STATE(119), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(119), + [sym_comment_environment] = STATE(119), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(119), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(119), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(119), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(119), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(119), + [sym_generic_command] = STATE(119), + [sym_package_include] = STATE(119), + [sym_class_include] = STATE(119), + [sym_latex_include] = STATE(119), + [sym_biblatex_include] = STATE(119), + [sym_bibtex_include] = STATE(119), + [sym_graphics_include] = STATE(119), + [sym_svg_include] = STATE(119), + [sym_inkscape_include] = STATE(119), + [sym_verbatim_include] = STATE(119), + [sym_import_include] = STATE(119), + [sym_caption] = STATE(119), + [sym_citation] = STATE(119), + [sym_label_definition] = STATE(119), + [sym_label_reference] = STATE(119), + [sym_label_reference_range] = STATE(119), + [sym_label_number] = STATE(119), + [sym_new_command_definition] = STATE(119), + [sym_old_command_definition] = STATE(119), + [sym_let_command_definition] = STATE(119), + [sym_environment_definition] = STATE(119), + [sym_glossary_entry_definition] = STATE(119), + [sym_glossary_entry_reference] = STATE(119), + [sym_acronym_definition] = STATE(119), + [sym_acronym_reference] = STATE(119), + [sym_theorem_definition] = STATE(119), + [sym_color_definition] = STATE(119), + [sym_color_set_definition] = STATE(119), + [sym_color_reference] = STATE(119), + [sym_tikz_library_import] = STATE(119), + [sym_text_mode] = STATE(119), + [aux_sym_source_file_repeat1] = STATE(119), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1160), + [anon_sym_RPAREN] = ACTIONS(1160), + [anon_sym_LBRACK] = ACTIONS(1160), + [anon_sym_RBRACK] = ACTIONS(1160), + [anon_sym_COMMA] = ACTIONS(1160), + [anon_sym_EQ] = ACTIONS(1160), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1162), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, - [79] = { + [85] = { [sym_block_comment] = STATE(65), [sym__root_content] = STATE(65), [sym__flat_content] = STATE(65), [sym__text_with_env_content] = STATE(65), [sym__text_content] = STATE(65), [sym__section] = STATE(65), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), [sym_curly_group] = STATE(65), [sym_text] = STATE(65), - [sym_operator] = STATE(858), + [sym_operator] = STATE(971), [sym_displayed_equation] = STATE(65), [sym_inline_formula] = STATE(65), [sym_math_set] = STATE(65), - [sym_begin] = STATE(26), + [sym_begin] = STATE(19), [sym_generic_environment] = STATE(65), [sym_comment_environment] = STATE(65), - [sym__trivia_begin_comment] = STATE(2324), + [sym__trivia_begin_comment] = STATE(2336), [sym_verbatim_environment] = STATE(65), - [sym__trivia_begin_verbatim] = STATE(2323), + [sym__trivia_begin_verbatim] = STATE(2350), [sym_listing_environment] = STATE(65), - [sym__trivia_begin_listing] = STATE(2322), + [sym__trivia_begin_listing] = STATE(2349), [sym_minted_environment] = STATE(65), - [sym__trivia_begin_minted] = STATE(2321), + [sym__trivia_begin_minted] = STATE(2348), [sym_pycode_environment] = STATE(65), - [sym__trivia_begin_pycode] = STATE(2319), + [sym__trivia_begin_pycode] = STATE(2347), [sym__command] = STATE(65), [sym_generic_command] = STATE(65), [sym_package_include] = STATE(65), @@ -47519,1426 +47748,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(65), [sym_color_reference] = STATE(65), [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), [aux_sym_source_file_repeat1] = STATE(65), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(972), - [anon_sym_EQ] = ACTIONS(972), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(974), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [80] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym_RPAREN] = ACTIONS(149), - [anon_sym_LBRACK] = ACTIONS(149), - [anon_sym_RBRACK] = ACTIONS(149), - [anon_sym_COMMA] = ACTIONS(149), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [81] = { - [sym_block_comment] = STATE(70), - [sym__root_content] = STATE(70), - [sym__flat_content] = STATE(70), - [sym__text_with_env_content] = STATE(70), - [sym__text_content] = STATE(70), - [sym__section] = STATE(70), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(70), - [sym_text] = STATE(70), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(70), - [sym_inline_formula] = STATE(70), - [sym_math_set] = STATE(70), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(70), - [sym_comment_environment] = STATE(70), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(70), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(70), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(70), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(70), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(70), - [sym_generic_command] = STATE(70), - [sym_package_include] = STATE(70), - [sym_class_include] = STATE(70), - [sym_latex_include] = STATE(70), - [sym_biblatex_include] = STATE(70), - [sym_bibtex_include] = STATE(70), - [sym_graphics_include] = STATE(70), - [sym_svg_include] = STATE(70), - [sym_inkscape_include] = STATE(70), - [sym_verbatim_include] = STATE(70), - [sym_import_include] = STATE(70), - [sym_caption] = STATE(70), - [sym_citation] = STATE(70), - [sym_label_definition] = STATE(70), - [sym_label_reference] = STATE(70), - [sym_label_reference_range] = STATE(70), - [sym_label_number] = STATE(70), - [sym_new_command_definition] = STATE(70), - [sym_old_command_definition] = STATE(70), - [sym_let_command_definition] = STATE(70), - [sym_environment_definition] = STATE(70), - [sym_glossary_entry_definition] = STATE(70), - [sym_glossary_entry_reference] = STATE(70), - [sym_acronym_definition] = STATE(70), - [sym_acronym_reference] = STATE(70), - [sym_theorem_definition] = STATE(70), - [sym_color_definition] = STATE(70), - [sym_color_set_definition] = STATE(70), - [sym_color_reference] = STATE(70), - [sym_tikz_library_import] = STATE(70), - [aux_sym_source_file_repeat1] = STATE(70), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_RBRACK] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(980), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(151), + [anon_sym_RPAREN] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_RBRACK] = ACTIONS(151), + [anon_sym_COMMA] = ACTIONS(151), + [anon_sym_EQ] = ACTIONS(151), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1166), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [82] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_BSLASHpart] = ACTIONS(131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddpart] = ACTIONS(131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHchapter] = ACTIONS(131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddchap] = ACTIONS(131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(129), - [anon_sym_BSLASHsection] = ACTIONS(131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddsec] = ACTIONS(131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHparagraph] = ACTIONS(131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHitem] = ACTIONS(131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_RPAREN] = ACTIONS(129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [83] = { - [sym_block_comment] = STATE(77), - [sym__root_content] = STATE(77), - [sym__flat_content] = STATE(77), - [sym__text_with_env_content] = STATE(77), - [sym__text_content] = STATE(77), - [sym__section] = STATE(77), + [86] = { + [sym_block_comment] = STATE(22), + [sym__root_content] = STATE(22), + [sym__flat_content] = STATE(22), + [sym__text_with_env_content] = STATE(22), + [sym__text_content] = STATE(22), + [sym__section] = STATE(22), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(77), - [sym_text] = STATE(77), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(77), - [sym_inline_formula] = STATE(77), - [sym_math_set] = STATE(77), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(77), - [sym_comment_environment] = STATE(77), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(77), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(77), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(77), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(77), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(77), - [sym_generic_command] = STATE(77), - [sym_package_include] = STATE(77), - [sym_class_include] = STATE(77), - [sym_latex_include] = STATE(77), - [sym_biblatex_include] = STATE(77), - [sym_bibtex_include] = STATE(77), - [sym_graphics_include] = STATE(77), - [sym_svg_include] = STATE(77), - [sym_inkscape_include] = STATE(77), - [sym_verbatim_include] = STATE(77), - [sym_import_include] = STATE(77), - [sym_caption] = STATE(77), - [sym_citation] = STATE(77), - [sym_label_definition] = STATE(77), - [sym_label_reference] = STATE(77), - [sym_label_reference_range] = STATE(77), - [sym_label_number] = STATE(77), - [sym_new_command_definition] = STATE(77), - [sym_old_command_definition] = STATE(77), - [sym_let_command_definition] = STATE(77), - [sym_environment_definition] = STATE(77), - [sym_glossary_entry_definition] = STATE(77), - [sym_glossary_entry_reference] = STATE(77), - [sym_acronym_definition] = STATE(77), - [sym_acronym_reference] = STATE(77), - [sym_theorem_definition] = STATE(77), - [sym_color_definition] = STATE(77), - [sym_color_set_definition] = STATE(77), - [sym_color_reference] = STATE(77), - [sym_tikz_library_import] = STATE(77), - [aux_sym_source_file_repeat1] = STATE(77), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(22), + [sym_text] = STATE(22), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(22), + [sym_inline_formula] = STATE(22), + [sym_math_set] = STATE(22), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(22), + [sym_comment_environment] = STATE(22), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(22), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(22), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(22), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(22), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(22), + [sym_generic_command] = STATE(22), + [sym_package_include] = STATE(22), + [sym_class_include] = STATE(22), + [sym_latex_include] = STATE(22), + [sym_biblatex_include] = STATE(22), + [sym_bibtex_include] = STATE(22), + [sym_graphics_include] = STATE(22), + [sym_svg_include] = STATE(22), + [sym_inkscape_include] = STATE(22), + [sym_verbatim_include] = STATE(22), + [sym_import_include] = STATE(22), + [sym_caption] = STATE(22), + [sym_citation] = STATE(22), + [sym_label_definition] = STATE(22), + [sym_label_reference] = STATE(22), + [sym_label_reference_range] = STATE(22), + [sym_label_number] = STATE(22), + [sym_new_command_definition] = STATE(22), + [sym_old_command_definition] = STATE(22), + [sym_let_command_definition] = STATE(22), + [sym_environment_definition] = STATE(22), + [sym_glossary_entry_definition] = STATE(22), + [sym_glossary_entry_reference] = STATE(22), + [sym_acronym_definition] = STATE(22), + [sym_acronym_reference] = STATE(22), + [sym_theorem_definition] = STATE(22), + [sym_color_definition] = STATE(22), + [sym_color_set_definition] = STATE(22), + [sym_color_reference] = STATE(22), + [sym_tikz_library_import] = STATE(22), + [sym_text_mode] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_RPAREN] = ACTIONS(984), - [anon_sym_LBRACK] = ACTIONS(984), - [anon_sym_RBRACK] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(984), - [anon_sym_EQ] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -48962,7 +48146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(1168), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -49196,1873 +48380,4729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [84] = { - [sym_block_comment] = STATE(84), - [sym__root_content] = STATE(84), - [sym__flat_content] = STATE(84), - [sym__text_with_env_content] = STATE(84), - [sym__text_content] = STATE(84), - [sym__section] = STATE(84), - [sym__part_declaration] = STATE(124), + [87] = { + [sym_block_comment] = STATE(120), + [sym__root_content] = STATE(120), + [sym__flat_content] = STATE(120), + [sym__text_with_env_content] = STATE(120), + [sym__text_content] = STATE(120), + [sym__section] = STATE(120), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(120), + [sym_text] = STATE(120), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(120), + [sym_inline_formula] = STATE(120), + [sym_math_set] = STATE(120), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(120), + [sym_comment_environment] = STATE(120), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(120), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(120), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(120), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(120), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(120), + [sym_generic_command] = STATE(120), + [sym_package_include] = STATE(120), + [sym_class_include] = STATE(120), + [sym_latex_include] = STATE(120), + [sym_biblatex_include] = STATE(120), + [sym_bibtex_include] = STATE(120), + [sym_graphics_include] = STATE(120), + [sym_svg_include] = STATE(120), + [sym_inkscape_include] = STATE(120), + [sym_verbatim_include] = STATE(120), + [sym_import_include] = STATE(120), + [sym_caption] = STATE(120), + [sym_citation] = STATE(120), + [sym_label_definition] = STATE(120), + [sym_label_reference] = STATE(120), + [sym_label_reference_range] = STATE(120), + [sym_label_number] = STATE(120), + [sym_new_command_definition] = STATE(120), + [sym_old_command_definition] = STATE(120), + [sym_let_command_definition] = STATE(120), + [sym_environment_definition] = STATE(120), + [sym_glossary_entry_definition] = STATE(120), + [sym_glossary_entry_reference] = STATE(120), + [sym_acronym_definition] = STATE(120), + [sym_acronym_reference] = STATE(120), + [sym_theorem_definition] = STATE(120), + [sym_color_definition] = STATE(120), + [sym_color_set_definition] = STATE(120), + [sym_color_reference] = STATE(120), + [sym_tikz_library_import] = STATE(120), + [sym_text_mode] = STATE(120), + [aux_sym_source_file_repeat1] = STATE(120), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1170), + [anon_sym_RPAREN] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1170), + [anon_sym_RBRACK] = ACTIONS(1170), + [anon_sym_COMMA] = ACTIONS(1170), + [anon_sym_EQ] = ACTIONS(1170), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1172), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), + }, + [88] = { + [sym_block_comment] = STATE(56), + [sym__root_content] = STATE(56), + [sym__flat_content] = STATE(56), + [sym__text_with_env_content] = STATE(56), + [sym__text_content] = STATE(56), + [sym__section] = STATE(56), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(56), + [sym_text] = STATE(56), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(56), + [sym_inline_formula] = STATE(56), + [sym_math_set] = STATE(56), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(56), + [sym_comment_environment] = STATE(56), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(56), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(56), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(56), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(56), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(56), + [sym_generic_command] = STATE(56), + [sym_package_include] = STATE(56), + [sym_class_include] = STATE(56), + [sym_latex_include] = STATE(56), + [sym_biblatex_include] = STATE(56), + [sym_bibtex_include] = STATE(56), + [sym_graphics_include] = STATE(56), + [sym_svg_include] = STATE(56), + [sym_inkscape_include] = STATE(56), + [sym_verbatim_include] = STATE(56), + [sym_import_include] = STATE(56), + [sym_caption] = STATE(56), + [sym_citation] = STATE(56), + [sym_label_definition] = STATE(56), + [sym_label_reference] = STATE(56), + [sym_label_reference_range] = STATE(56), + [sym_label_number] = STATE(56), + [sym_new_command_definition] = STATE(56), + [sym_old_command_definition] = STATE(56), + [sym_let_command_definition] = STATE(56), + [sym_environment_definition] = STATE(56), + [sym_glossary_entry_definition] = STATE(56), + [sym_glossary_entry_reference] = STATE(56), + [sym_acronym_definition] = STATE(56), + [sym_acronym_reference] = STATE(56), + [sym_theorem_definition] = STATE(56), + [sym_color_definition] = STATE(56), + [sym_color_set_definition] = STATE(56), + [sym_color_reference] = STATE(56), + [sym_tikz_library_import] = STATE(56), + [sym_text_mode] = STATE(56), + [aux_sym_source_file_repeat1] = STATE(56), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1174), + [anon_sym_RPAREN] = ACTIONS(1174), + [anon_sym_LBRACK] = ACTIONS(1174), + [anon_sym_RBRACK] = ACTIONS(1174), + [anon_sym_COMMA] = ACTIONS(1174), + [anon_sym_EQ] = ACTIONS(1174), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1176), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), + }, + [89] = { + [sym_block_comment] = STATE(104), + [sym__root_content] = STATE(104), + [sym__flat_content] = STATE(104), + [sym__text_with_env_content] = STATE(104), + [sym__text_content] = STATE(104), + [sym__section] = STATE(104), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(104), + [sym_text] = STATE(104), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(104), + [sym_inline_formula] = STATE(104), + [sym_math_set] = STATE(104), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(104), + [sym_comment_environment] = STATE(104), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(104), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(104), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(104), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(104), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(104), + [sym_generic_command] = STATE(104), + [sym_package_include] = STATE(104), + [sym_class_include] = STATE(104), + [sym_latex_include] = STATE(104), + [sym_biblatex_include] = STATE(104), + [sym_bibtex_include] = STATE(104), + [sym_graphics_include] = STATE(104), + [sym_svg_include] = STATE(104), + [sym_inkscape_include] = STATE(104), + [sym_verbatim_include] = STATE(104), + [sym_import_include] = STATE(104), + [sym_caption] = STATE(104), + [sym_citation] = STATE(104), + [sym_label_definition] = STATE(104), + [sym_label_reference] = STATE(104), + [sym_label_reference_range] = STATE(104), + [sym_label_number] = STATE(104), + [sym_new_command_definition] = STATE(104), + [sym_old_command_definition] = STATE(104), + [sym_let_command_definition] = STATE(104), + [sym_environment_definition] = STATE(104), + [sym_glossary_entry_definition] = STATE(104), + [sym_glossary_entry_reference] = STATE(104), + [sym_acronym_definition] = STATE(104), + [sym_acronym_reference] = STATE(104), + [sym_theorem_definition] = STATE(104), + [sym_color_definition] = STATE(104), + [sym_color_set_definition] = STATE(104), + [sym_color_reference] = STATE(104), + [sym_tikz_library_import] = STATE(104), + [sym_text_mode] = STATE(104), + [aux_sym_source_file_repeat1] = STATE(104), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(787), + [anon_sym_COMMA] = ACTIONS(787), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1178), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1180), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [90] = { + [sym_block_comment] = STATE(96), + [sym__root_content] = STATE(96), + [sym__flat_content] = STATE(96), + [sym__text_with_env_content] = STATE(96), + [sym__text_content] = STATE(96), + [sym__section] = STATE(96), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(96), + [sym_text] = STATE(96), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(96), + [sym_inline_formula] = STATE(96), + [sym_math_set] = STATE(96), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(96), + [sym_comment_environment] = STATE(96), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(96), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(96), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(96), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(96), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(96), + [sym_generic_command] = STATE(96), + [sym_package_include] = STATE(96), + [sym_class_include] = STATE(96), + [sym_latex_include] = STATE(96), + [sym_biblatex_include] = STATE(96), + [sym_bibtex_include] = STATE(96), + [sym_graphics_include] = STATE(96), + [sym_svg_include] = STATE(96), + [sym_inkscape_include] = STATE(96), + [sym_verbatim_include] = STATE(96), + [sym_import_include] = STATE(96), + [sym_caption] = STATE(96), + [sym_citation] = STATE(96), + [sym_label_definition] = STATE(96), + [sym_label_reference] = STATE(96), + [sym_label_reference_range] = STATE(96), + [sym_label_number] = STATE(96), + [sym_new_command_definition] = STATE(96), + [sym_old_command_definition] = STATE(96), + [sym_let_command_definition] = STATE(96), + [sym_environment_definition] = STATE(96), + [sym_glossary_entry_definition] = STATE(96), + [sym_glossary_entry_reference] = STATE(96), + [sym_acronym_definition] = STATE(96), + [sym_acronym_reference] = STATE(96), + [sym_theorem_definition] = STATE(96), + [sym_color_definition] = STATE(96), + [sym_color_set_definition] = STATE(96), + [sym_color_reference] = STATE(96), + [sym_tikz_library_import] = STATE(96), + [sym_text_mode] = STATE(96), + [aux_sym_source_file_repeat1] = STATE(96), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1182), + [anon_sym_RPAREN] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1182), + [anon_sym_RBRACK] = ACTIONS(1182), + [anon_sym_COMMA] = ACTIONS(1182), + [anon_sym_EQ] = ACTIONS(1182), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1184), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [91] = { + [sym_block_comment] = STATE(57), + [sym__root_content] = STATE(57), + [sym__flat_content] = STATE(57), + [sym__text_with_env_content] = STATE(57), + [sym__text_content] = STATE(57), + [sym__section] = STATE(57), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(84), - [sym_text] = STATE(84), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(84), - [sym_inline_formula] = STATE(84), - [sym_math_set] = STATE(84), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(84), - [sym_comment_environment] = STATE(84), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(84), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(84), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(84), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(84), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(84), - [sym_generic_command] = STATE(84), - [sym_package_include] = STATE(84), - [sym_class_include] = STATE(84), - [sym_latex_include] = STATE(84), - [sym_biblatex_include] = STATE(84), - [sym_bibtex_include] = STATE(84), - [sym_graphics_include] = STATE(84), - [sym_svg_include] = STATE(84), - [sym_inkscape_include] = STATE(84), - [sym_verbatim_include] = STATE(84), - [sym_import_include] = STATE(84), - [sym_caption] = STATE(84), - [sym_citation] = STATE(84), - [sym_label_definition] = STATE(84), - [sym_label_reference] = STATE(84), - [sym_label_reference_range] = STATE(84), - [sym_label_number] = STATE(84), - [sym_new_command_definition] = STATE(84), - [sym_old_command_definition] = STATE(84), - [sym_let_command_definition] = STATE(84), - [sym_environment_definition] = STATE(84), - [sym_glossary_entry_definition] = STATE(84), - [sym_glossary_entry_reference] = STATE(84), - [sym_acronym_definition] = STATE(84), - [sym_acronym_reference] = STATE(84), - [sym_theorem_definition] = STATE(84), - [sym_color_definition] = STATE(84), - [sym_color_set_definition] = STATE(84), - [sym_color_reference] = STATE(84), - [sym_tikz_library_import] = STATE(84), - [aux_sym_source_file_repeat1] = STATE(84), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(57), + [sym_text] = STATE(57), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(57), + [sym_inline_formula] = STATE(57), + [sym_math_set] = STATE(57), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(57), + [sym_comment_environment] = STATE(57), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(57), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(57), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(57), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(57), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(57), + [sym_generic_command] = STATE(57), + [sym_package_include] = STATE(57), + [sym_class_include] = STATE(57), + [sym_latex_include] = STATE(57), + [sym_biblatex_include] = STATE(57), + [sym_bibtex_include] = STATE(57), + [sym_graphics_include] = STATE(57), + [sym_svg_include] = STATE(57), + [sym_inkscape_include] = STATE(57), + [sym_verbatim_include] = STATE(57), + [sym_import_include] = STATE(57), + [sym_caption] = STATE(57), + [sym_citation] = STATE(57), + [sym_label_definition] = STATE(57), + [sym_label_reference] = STATE(57), + [sym_label_reference_range] = STATE(57), + [sym_label_number] = STATE(57), + [sym_new_command_definition] = STATE(57), + [sym_old_command_definition] = STATE(57), + [sym_let_command_definition] = STATE(57), + [sym_environment_definition] = STATE(57), + [sym_glossary_entry_definition] = STATE(57), + [sym_glossary_entry_reference] = STATE(57), + [sym_acronym_definition] = STATE(57), + [sym_acronym_reference] = STATE(57), + [sym_theorem_definition] = STATE(57), + [sym_color_definition] = STATE(57), + [sym_color_set_definition] = STATE(57), + [sym_color_reference] = STATE(57), + [sym_tikz_library_import] = STATE(57), + [sym_text_mode] = STATE(57), + [aux_sym_source_file_repeat1] = STATE(57), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(988), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(991), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_RPAREN] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_RBRACK] = ACTIONS(994), - [anon_sym_COMMA] = ACTIONS(994), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_BSLASHpart] = ACTIONS(997), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1000), - [anon_sym_BSLASHaddpart] = ACTIONS(997), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1000), - [anon_sym_BSLASHchapter] = ACTIONS(1003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1006), - [anon_sym_BSLASHaddchap] = ACTIONS(1003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1006), - [anon_sym_BSLASHsection] = ACTIONS(1009), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1012), - [anon_sym_BSLASHaddsec] = ACTIONS(1009), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1012), - [anon_sym_BSLASHsubsection] = ACTIONS(1015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1018), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1024), - [anon_sym_BSLASHparagraph] = ACTIONS(1027), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1030), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1036), - [anon_sym_BSLASHitem] = ACTIONS(1039), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1042), - [anon_sym_LBRACE] = ACTIONS(1045), - [sym_word] = ACTIONS(1048), - [sym_placeholder] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1054), - [anon_sym_DASH] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1054), - [anon_sym_SLASH] = ACTIONS(1054), - [anon_sym_CARET] = ACTIONS(1054), - [anon_sym__] = ACTIONS(1054), - [anon_sym_LT] = ACTIONS(1054), - [anon_sym_GT] = ACTIONS(1054), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_PIPE] = ACTIONS(1054), - [anon_sym_COLON] = ACTIONS(1054), - [anon_sym_SQUOTE] = ACTIONS(1054), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1057), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1063), - [anon_sym_BSLASH_RPAREN] = ACTIONS(349), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1066), - [anon_sym_BSLASHbegin] = ACTIONS(432), - [anon_sym_BSLASHusepackage] = ACTIONS(1069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1072), - [anon_sym_BSLASHinclude] = ACTIONS(1075), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1075), - [anon_sym_BSLASHinput] = ACTIONS(1075), - [anon_sym_BSLASHsubfile] = ACTIONS(1075), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1078), - [anon_sym_BSLASHbibliography] = ACTIONS(1081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1084), - [anon_sym_BSLASHincludesvg] = ACTIONS(1087), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1090), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1093), - [anon_sym_BSLASHimport] = ACTIONS(1096), - [anon_sym_BSLASHsubimport] = ACTIONS(1096), - [anon_sym_BSLASHinputfrom] = ACTIONS(1096), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1096), - [anon_sym_BSLASHincludefrom] = ACTIONS(1096), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1096), - [anon_sym_BSLASHcaption] = ACTIONS(1099), - [anon_sym_BSLASHcite] = ACTIONS(1102), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1105), - [anon_sym_BSLASHCite] = ACTIONS(1102), - [anon_sym_BSLASHnocite] = ACTIONS(1102), - [anon_sym_BSLASHcitet] = ACTIONS(1102), - [anon_sym_BSLASHcitep] = ACTIONS(1102), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1105), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1105), - [anon_sym_BSLASHciteauthor] = ACTIONS(1102), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1105), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1102), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1105), - [anon_sym_BSLASHcitetitle] = ACTIONS(1102), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1105), - [anon_sym_BSLASHciteyear] = ACTIONS(1102), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1105), - [anon_sym_BSLASHcitedate] = ACTIONS(1102), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1105), - [anon_sym_BSLASHciteurl] = ACTIONS(1102), - [anon_sym_BSLASHfullcite] = ACTIONS(1102), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1102), - [anon_sym_BSLASHcitealt] = ACTIONS(1102), - [anon_sym_BSLASHcitealp] = ACTIONS(1102), - [anon_sym_BSLASHcitetext] = ACTIONS(1102), - [anon_sym_BSLASHparencite] = ACTIONS(1102), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1105), - [anon_sym_BSLASHParencite] = ACTIONS(1102), - [anon_sym_BSLASHfootcite] = ACTIONS(1102), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1102), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1102), - [anon_sym_BSLASHtextcite] = ACTIONS(1102), - [anon_sym_BSLASHTextcite] = ACTIONS(1102), - [anon_sym_BSLASHsmartcite] = ACTIONS(1102), - [anon_sym_BSLASHSmartcite] = ACTIONS(1102), - [anon_sym_BSLASHsupercite] = ACTIONS(1102), - [anon_sym_BSLASHautocite] = ACTIONS(1102), - [anon_sym_BSLASHAutocite] = ACTIONS(1102), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1105), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1105), - [anon_sym_BSLASHvolcite] = ACTIONS(1102), - [anon_sym_BSLASHVolcite] = ACTIONS(1102), - [anon_sym_BSLASHpvolcite] = ACTIONS(1102), - [anon_sym_BSLASHPvolcite] = ACTIONS(1102), - [anon_sym_BSLASHfvolcite] = ACTIONS(1102), - [anon_sym_BSLASHftvolcite] = ACTIONS(1102), - [anon_sym_BSLASHsvolcite] = ACTIONS(1102), - [anon_sym_BSLASHSvolcite] = ACTIONS(1102), - [anon_sym_BSLASHtvolcite] = ACTIONS(1102), - [anon_sym_BSLASHTvolcite] = ACTIONS(1102), - [anon_sym_BSLASHavolcite] = ACTIONS(1102), - [anon_sym_BSLASHAvolcite] = ACTIONS(1102), - [anon_sym_BSLASHnotecite] = ACTIONS(1102), - [anon_sym_BSLASHNotecite] = ACTIONS(1102), - [anon_sym_BSLASHpnotecite] = ACTIONS(1102), - [anon_sym_BSLASHPnotecite] = ACTIONS(1102), - [anon_sym_BSLASHfnotecite] = ACTIONS(1102), - [anon_sym_BSLASHlabel] = ACTIONS(1108), - [anon_sym_BSLASHref] = ACTIONS(1111), - [anon_sym_BSLASHeqref] = ACTIONS(1111), - [anon_sym_BSLASHvref] = ACTIONS(1111), - [anon_sym_BSLASHVref] = ACTIONS(1111), - [anon_sym_BSLASHautoref] = ACTIONS(1111), - [anon_sym_BSLASHpageref] = ACTIONS(1111), - [anon_sym_BSLASHcref] = ACTIONS(1111), - [anon_sym_BSLASHCref] = ACTIONS(1111), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1114), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1114), - [anon_sym_BSLASHnamecref] = ACTIONS(1111), - [anon_sym_BSLASHnameCref] = ACTIONS(1111), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1111), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1111), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1111), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1111), - [anon_sym_BSLASHlabelcref] = ACTIONS(1111), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1111), - [anon_sym_BSLASHcrefrange] = ACTIONS(1117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1120), - [anon_sym_BSLASHCrefrange] = ACTIONS(1117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1120), - [anon_sym_BSLASHnewlabel] = ACTIONS(1123), - [anon_sym_BSLASHnewcommand] = ACTIONS(1126), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1126), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1126), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1126), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1129), - [anon_sym_BSLASHdef] = ACTIONS(1132), - [anon_sym_BSLASHlet] = ACTIONS(1135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1138), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1141), - [anon_sym_BSLASHgls] = ACTIONS(1144), - [anon_sym_BSLASHGls] = ACTIONS(1144), - [anon_sym_BSLASHGLS] = ACTIONS(1144), - [anon_sym_BSLASHglspl] = ACTIONS(1144), - [anon_sym_BSLASHGlspl] = ACTIONS(1144), - [anon_sym_BSLASHGLSpl] = ACTIONS(1144), - [anon_sym_BSLASHglsdisp] = ACTIONS(1144), - [anon_sym_BSLASHglslink] = ACTIONS(1144), - [anon_sym_BSLASHglstext] = ACTIONS(1144), - [anon_sym_BSLASHGlstext] = ACTIONS(1144), - [anon_sym_BSLASHGLStext] = ACTIONS(1144), - [anon_sym_BSLASHglsfirst] = ACTIONS(1144), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1144), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1144), - [anon_sym_BSLASHglsplural] = ACTIONS(1144), - [anon_sym_BSLASHGlsplural] = ACTIONS(1144), - [anon_sym_BSLASHGLSplural] = ACTIONS(1144), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1144), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1144), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1144), - [anon_sym_BSLASHglsname] = ACTIONS(1144), - [anon_sym_BSLASHGlsname] = ACTIONS(1144), - [anon_sym_BSLASHGLSname] = ACTIONS(1144), - [anon_sym_BSLASHglssymbol] = ACTIONS(1144), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1144), - [anon_sym_BSLASHglsdesc] = ACTIONS(1144), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1144), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1144), - [anon_sym_BSLASHglsuseri] = ACTIONS(1144), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1144), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1144), - [anon_sym_BSLASHglsuserii] = ACTIONS(1144), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1144), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1144), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1144), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1144), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1144), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1144), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1144), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1144), - [anon_sym_BSLASHglsuserv] = ACTIONS(1144), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1144), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1144), - [anon_sym_BSLASHglsuservi] = ACTIONS(1144), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1144), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1144), - [anon_sym_BSLASHnewacronym] = ACTIONS(1147), - [anon_sym_BSLASHacrshort] = ACTIONS(1150), - [anon_sym_BSLASHAcrshort] = ACTIONS(1150), - [anon_sym_BSLASHACRshort] = ACTIONS(1150), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1150), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1150), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1150), - [anon_sym_BSLASHacrlong] = ACTIONS(1150), - [anon_sym_BSLASHAcrlong] = ACTIONS(1150), - [anon_sym_BSLASHACRlong] = ACTIONS(1150), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1150), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1150), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1150), - [anon_sym_BSLASHacrfull] = ACTIONS(1150), - [anon_sym_BSLASHAcrfull] = ACTIONS(1150), - [anon_sym_BSLASHACRfull] = ACTIONS(1150), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1150), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1150), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1150), - [anon_sym_BSLASHacs] = ACTIONS(1150), - [anon_sym_BSLASHAcs] = ACTIONS(1150), - [anon_sym_BSLASHacsp] = ACTIONS(1150), - [anon_sym_BSLASHAcsp] = ACTIONS(1150), - [anon_sym_BSLASHacl] = ACTIONS(1150), - [anon_sym_BSLASHAcl] = ACTIONS(1150), - [anon_sym_BSLASHaclp] = ACTIONS(1150), - [anon_sym_BSLASHAclp] = ACTIONS(1150), - [anon_sym_BSLASHacf] = ACTIONS(1150), - [anon_sym_BSLASHAcf] = ACTIONS(1150), - [anon_sym_BSLASHacfp] = ACTIONS(1150), - [anon_sym_BSLASHAcfp] = ACTIONS(1150), - [anon_sym_BSLASHac] = ACTIONS(1150), - [anon_sym_BSLASHAc] = ACTIONS(1150), - [anon_sym_BSLASHacp] = ACTIONS(1150), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1150), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1150), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1150), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1150), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1150), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1150), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1150), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1150), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1150), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1150), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1153), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1153), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1156), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1159), - [anon_sym_BSLASHcolor] = ACTIONS(1162), - [anon_sym_BSLASHcolorbox] = ACTIONS(1162), - [anon_sym_BSLASHtextcolor] = ACTIONS(1162), - [anon_sym_BSLASHpagecolor] = ACTIONS(1162), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1165), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1165), - }, - [85] = { - [sym_block_comment] = STATE(97), - [sym__root_content] = STATE(97), - [sym__flat_content] = STATE(97), - [sym__text_with_env_content] = STATE(97), - [sym__text_content] = STATE(97), - [sym__section] = STATE(97), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(97), - [sym_text] = STATE(97), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(97), - [sym_inline_formula] = STATE(97), - [sym_math_set] = STATE(97), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(97), - [sym_comment_environment] = STATE(97), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(97), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(97), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(97), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(97), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(97), - [sym_generic_command] = STATE(97), - [sym_package_include] = STATE(97), - [sym_class_include] = STATE(97), - [sym_latex_include] = STATE(97), - [sym_biblatex_include] = STATE(97), - [sym_bibtex_include] = STATE(97), - [sym_graphics_include] = STATE(97), - [sym_svg_include] = STATE(97), - [sym_inkscape_include] = STATE(97), - [sym_verbatim_include] = STATE(97), - [sym_import_include] = STATE(97), - [sym_caption] = STATE(97), - [sym_citation] = STATE(97), - [sym_label_definition] = STATE(97), - [sym_label_reference] = STATE(97), - [sym_label_reference_range] = STATE(97), - [sym_label_number] = STATE(97), - [sym_new_command_definition] = STATE(97), - [sym_old_command_definition] = STATE(97), - [sym_let_command_definition] = STATE(97), - [sym_environment_definition] = STATE(97), - [sym_glossary_entry_definition] = STATE(97), - [sym_glossary_entry_reference] = STATE(97), - [sym_acronym_definition] = STATE(97), - [sym_acronym_reference] = STATE(97), - [sym_theorem_definition] = STATE(97), - [sym_color_definition] = STATE(97), - [sym_color_set_definition] = STATE(97), - [sym_color_reference] = STATE(97), - [sym_tikz_library_import] = STATE(97), - [aux_sym_source_file_repeat1] = STATE(97), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1168), - [anon_sym_RPAREN] = ACTIONS(1168), - [anon_sym_LBRACK] = ACTIONS(1168), - [anon_sym_RBRACK] = ACTIONS(1168), - [anon_sym_COMMA] = ACTIONS(1168), - [anon_sym_EQ] = ACTIONS(1168), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1170), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1186), + [anon_sym_RPAREN] = ACTIONS(1186), + [anon_sym_LBRACK] = ACTIONS(1186), + [anon_sym_RBRACK] = ACTIONS(1186), + [anon_sym_COMMA] = ACTIONS(1186), + [anon_sym_EQ] = ACTIONS(1186), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1188), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1190), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [86] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), + [92] = { + [sym_block_comment] = STATE(79), + [sym__root_content] = STATE(79), + [sym__flat_content] = STATE(79), + [sym__text_with_env_content] = STATE(79), + [sym__text_content] = STATE(79), + [sym__section] = STATE(79), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_BSLASHpart] = ACTIONS(147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddpart] = ACTIONS(147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHchapter] = ACTIONS(147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddchap] = ACTIONS(147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(145), - [anon_sym_BSLASHsection] = ACTIONS(147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddsec] = ACTIONS(147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHparagraph] = ACTIONS(147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHitem] = ACTIONS(147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_BSLASH_RBRACK] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(79), + [sym_text] = STATE(79), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(79), + [sym_inline_formula] = STATE(79), + [sym_math_set] = STATE(79), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(79), + [sym_comment_environment] = STATE(79), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(79), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(79), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(79), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(79), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(79), + [sym_generic_command] = STATE(79), + [sym_package_include] = STATE(79), + [sym_class_include] = STATE(79), + [sym_latex_include] = STATE(79), + [sym_biblatex_include] = STATE(79), + [sym_bibtex_include] = STATE(79), + [sym_graphics_include] = STATE(79), + [sym_svg_include] = STATE(79), + [sym_inkscape_include] = STATE(79), + [sym_verbatim_include] = STATE(79), + [sym_import_include] = STATE(79), + [sym_caption] = STATE(79), + [sym_citation] = STATE(79), + [sym_label_definition] = STATE(79), + [sym_label_reference] = STATE(79), + [sym_label_reference_range] = STATE(79), + [sym_label_number] = STATE(79), + [sym_new_command_definition] = STATE(79), + [sym_old_command_definition] = STATE(79), + [sym_let_command_definition] = STATE(79), + [sym_environment_definition] = STATE(79), + [sym_glossary_entry_definition] = STATE(79), + [sym_glossary_entry_reference] = STATE(79), + [sym_acronym_definition] = STATE(79), + [sym_acronym_reference] = STATE(79), + [sym_theorem_definition] = STATE(79), + [sym_color_definition] = STATE(79), + [sym_color_set_definition] = STATE(79), + [sym_color_reference] = STATE(79), + [sym_tikz_library_import] = STATE(79), + [sym_text_mode] = STATE(79), + [aux_sym_source_file_repeat1] = STATE(79), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1192), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1194), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [87] = { - [sym_block_comment] = STATE(87), - [sym__root_content] = STATE(87), - [sym__flat_content] = STATE(87), - [sym__text_with_env_content] = STATE(87), - [sym__text_content] = STATE(87), - [sym__section] = STATE(87), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), + [93] = { + [sym_block_comment] = STATE(101), + [sym__root_content] = STATE(101), + [sym__flat_content] = STATE(101), + [sym__text_with_env_content] = STATE(101), + [sym__text_content] = STATE(101), + [sym__section] = STATE(101), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(87), - [sym_text] = STATE(87), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(87), - [sym_inline_formula] = STATE(87), - [sym_math_set] = STATE(87), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(87), - [sym_comment_environment] = STATE(87), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(87), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(87), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(87), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(87), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(87), - [sym_generic_command] = STATE(87), - [sym_package_include] = STATE(87), - [sym_class_include] = STATE(87), - [sym_latex_include] = STATE(87), - [sym_biblatex_include] = STATE(87), - [sym_bibtex_include] = STATE(87), - [sym_graphics_include] = STATE(87), - [sym_svg_include] = STATE(87), - [sym_inkscape_include] = STATE(87), - [sym_verbatim_include] = STATE(87), - [sym_import_include] = STATE(87), - [sym_caption] = STATE(87), - [sym_citation] = STATE(87), - [sym_label_definition] = STATE(87), - [sym_label_reference] = STATE(87), - [sym_label_reference_range] = STATE(87), - [sym_label_number] = STATE(87), - [sym_new_command_definition] = STATE(87), - [sym_old_command_definition] = STATE(87), - [sym_let_command_definition] = STATE(87), - [sym_environment_definition] = STATE(87), - [sym_glossary_entry_definition] = STATE(87), - [sym_glossary_entry_reference] = STATE(87), - [sym_acronym_definition] = STATE(87), - [sym_acronym_reference] = STATE(87), - [sym_theorem_definition] = STATE(87), - [sym_color_definition] = STATE(87), - [sym_color_set_definition] = STATE(87), - [sym_color_reference] = STATE(87), - [sym_tikz_library_import] = STATE(87), - [aux_sym_source_file_repeat1] = STATE(87), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(1172), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1175), - [anon_sym_LPAREN] = ACTIONS(1178), - [anon_sym_RPAREN] = ACTIONS(1178), - [anon_sym_LBRACK] = ACTIONS(1178), - [anon_sym_RBRACK] = ACTIONS(1178), - [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_EQ] = ACTIONS(1178), - [anon_sym_BSLASHpart] = ACTIONS(1181), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1184), - [anon_sym_BSLASHaddpart] = ACTIONS(1181), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1184), - [anon_sym_BSLASHchapter] = ACTIONS(1187), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1190), - [anon_sym_BSLASHaddchap] = ACTIONS(1187), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1190), - [anon_sym_BSLASHsection] = ACTIONS(1193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1196), - [anon_sym_BSLASHaddsec] = ACTIONS(1193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1196), - [anon_sym_BSLASHsubsection] = ACTIONS(1199), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1202), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1208), - [anon_sym_BSLASHparagraph] = ACTIONS(1211), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1214), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1220), - [anon_sym_BSLASHitem] = ACTIONS(1223), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1229), - [sym_word] = ACTIONS(1232), - [sym_placeholder] = ACTIONS(1235), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym__] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1241), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1241), - [anon_sym_BSLASH_RBRACK] = ACTIONS(349), - [anon_sym_DOLLAR] = ACTIONS(1244), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1247), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1250), - [anon_sym_BSLASHbegin] = ACTIONS(432), - [anon_sym_BSLASHusepackage] = ACTIONS(1253), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1253), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1256), - [anon_sym_BSLASHinclude] = ACTIONS(1259), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1259), - [anon_sym_BSLASHinput] = ACTIONS(1259), - [anon_sym_BSLASHsubfile] = ACTIONS(1259), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1262), - [anon_sym_BSLASHbibliography] = ACTIONS(1265), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1268), - [anon_sym_BSLASHincludesvg] = ACTIONS(1271), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1274), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1277), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1277), - [anon_sym_BSLASHimport] = ACTIONS(1280), - [anon_sym_BSLASHsubimport] = ACTIONS(1280), - [anon_sym_BSLASHinputfrom] = ACTIONS(1280), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1280), - [anon_sym_BSLASHincludefrom] = ACTIONS(1280), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1280), - [anon_sym_BSLASHcaption] = ACTIONS(1283), - [anon_sym_BSLASHcite] = ACTIONS(1286), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1289), - [anon_sym_BSLASHCite] = ACTIONS(1286), - [anon_sym_BSLASHnocite] = ACTIONS(1286), - [anon_sym_BSLASHcitet] = ACTIONS(1286), - [anon_sym_BSLASHcitep] = ACTIONS(1286), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1289), - [anon_sym_BSLASHciteauthor] = ACTIONS(1286), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1286), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1289), - [anon_sym_BSLASHcitetitle] = ACTIONS(1286), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1289), - [anon_sym_BSLASHciteyear] = ACTIONS(1286), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1289), - [anon_sym_BSLASHcitedate] = ACTIONS(1286), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1289), - [anon_sym_BSLASHciteurl] = ACTIONS(1286), - [anon_sym_BSLASHfullcite] = ACTIONS(1286), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1286), - [anon_sym_BSLASHcitealt] = ACTIONS(1286), - [anon_sym_BSLASHcitealp] = ACTIONS(1286), - [anon_sym_BSLASHcitetext] = ACTIONS(1286), - [anon_sym_BSLASHparencite] = ACTIONS(1286), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1289), - [anon_sym_BSLASHParencite] = ACTIONS(1286), - [anon_sym_BSLASHfootcite] = ACTIONS(1286), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1286), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1286), - [anon_sym_BSLASHtextcite] = ACTIONS(1286), - [anon_sym_BSLASHTextcite] = ACTIONS(1286), - [anon_sym_BSLASHsmartcite] = ACTIONS(1286), - [anon_sym_BSLASHSmartcite] = ACTIONS(1286), - [anon_sym_BSLASHsupercite] = ACTIONS(1286), - [anon_sym_BSLASHautocite] = ACTIONS(1286), - [anon_sym_BSLASHAutocite] = ACTIONS(1286), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1289), - [anon_sym_BSLASHvolcite] = ACTIONS(1286), - [anon_sym_BSLASHVolcite] = ACTIONS(1286), - [anon_sym_BSLASHpvolcite] = ACTIONS(1286), - [anon_sym_BSLASHPvolcite] = ACTIONS(1286), - [anon_sym_BSLASHfvolcite] = ACTIONS(1286), - [anon_sym_BSLASHftvolcite] = ACTIONS(1286), - [anon_sym_BSLASHsvolcite] = ACTIONS(1286), - [anon_sym_BSLASHSvolcite] = ACTIONS(1286), - [anon_sym_BSLASHtvolcite] = ACTIONS(1286), - [anon_sym_BSLASHTvolcite] = ACTIONS(1286), - [anon_sym_BSLASHavolcite] = ACTIONS(1286), - [anon_sym_BSLASHAvolcite] = ACTIONS(1286), - [anon_sym_BSLASHnotecite] = ACTIONS(1286), - [anon_sym_BSLASHNotecite] = ACTIONS(1286), - [anon_sym_BSLASHpnotecite] = ACTIONS(1286), - [anon_sym_BSLASHPnotecite] = ACTIONS(1286), - [anon_sym_BSLASHfnotecite] = ACTIONS(1286), - [anon_sym_BSLASHlabel] = ACTIONS(1292), - [anon_sym_BSLASHref] = ACTIONS(1295), - [anon_sym_BSLASHeqref] = ACTIONS(1295), - [anon_sym_BSLASHvref] = ACTIONS(1295), - [anon_sym_BSLASHVref] = ACTIONS(1295), - [anon_sym_BSLASHautoref] = ACTIONS(1295), - [anon_sym_BSLASHpageref] = ACTIONS(1295), - [anon_sym_BSLASHcref] = ACTIONS(1295), - [anon_sym_BSLASHCref] = ACTIONS(1295), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1298), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1298), - [anon_sym_BSLASHnamecref] = ACTIONS(1295), - [anon_sym_BSLASHnameCref] = ACTIONS(1295), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1295), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1295), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1295), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1295), - [anon_sym_BSLASHlabelcref] = ACTIONS(1295), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1295), - [anon_sym_BSLASHcrefrange] = ACTIONS(1301), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1304), - [anon_sym_BSLASHCrefrange] = ACTIONS(1301), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1304), - [anon_sym_BSLASHnewlabel] = ACTIONS(1307), - [anon_sym_BSLASHnewcommand] = ACTIONS(1310), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1310), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1310), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1310), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1313), - [anon_sym_BSLASHdef] = ACTIONS(1316), - [anon_sym_BSLASHlet] = ACTIONS(1319), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1322), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1325), - [anon_sym_BSLASHgls] = ACTIONS(1328), - [anon_sym_BSLASHGls] = ACTIONS(1328), - [anon_sym_BSLASHGLS] = ACTIONS(1328), - [anon_sym_BSLASHglspl] = ACTIONS(1328), - [anon_sym_BSLASHGlspl] = ACTIONS(1328), - [anon_sym_BSLASHGLSpl] = ACTIONS(1328), - [anon_sym_BSLASHglsdisp] = ACTIONS(1328), - [anon_sym_BSLASHglslink] = ACTIONS(1328), - [anon_sym_BSLASHglstext] = ACTIONS(1328), - [anon_sym_BSLASHGlstext] = ACTIONS(1328), - [anon_sym_BSLASHGLStext] = ACTIONS(1328), - [anon_sym_BSLASHglsfirst] = ACTIONS(1328), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1328), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1328), - [anon_sym_BSLASHglsplural] = ACTIONS(1328), - [anon_sym_BSLASHGlsplural] = ACTIONS(1328), - [anon_sym_BSLASHGLSplural] = ACTIONS(1328), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1328), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1328), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1328), - [anon_sym_BSLASHglsname] = ACTIONS(1328), - [anon_sym_BSLASHGlsname] = ACTIONS(1328), - [anon_sym_BSLASHGLSname] = ACTIONS(1328), - [anon_sym_BSLASHglssymbol] = ACTIONS(1328), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1328), - [anon_sym_BSLASHglsdesc] = ACTIONS(1328), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1328), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1328), - [anon_sym_BSLASHglsuseri] = ACTIONS(1328), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1328), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1328), - [anon_sym_BSLASHglsuserii] = ACTIONS(1328), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1328), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1328), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1328), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1328), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1328), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1328), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1328), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1328), - [anon_sym_BSLASHglsuserv] = ACTIONS(1328), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1328), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1328), - [anon_sym_BSLASHglsuservi] = ACTIONS(1328), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1328), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1328), - [anon_sym_BSLASHnewacronym] = ACTIONS(1331), - [anon_sym_BSLASHacrshort] = ACTIONS(1334), - [anon_sym_BSLASHAcrshort] = ACTIONS(1334), - [anon_sym_BSLASHACRshort] = ACTIONS(1334), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1334), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1334), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1334), - [anon_sym_BSLASHacrlong] = ACTIONS(1334), - [anon_sym_BSLASHAcrlong] = ACTIONS(1334), - [anon_sym_BSLASHACRlong] = ACTIONS(1334), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1334), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1334), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1334), - [anon_sym_BSLASHacrfull] = ACTIONS(1334), - [anon_sym_BSLASHAcrfull] = ACTIONS(1334), - [anon_sym_BSLASHACRfull] = ACTIONS(1334), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1334), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1334), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1334), - [anon_sym_BSLASHacs] = ACTIONS(1334), - [anon_sym_BSLASHAcs] = ACTIONS(1334), - [anon_sym_BSLASHacsp] = ACTIONS(1334), - [anon_sym_BSLASHAcsp] = ACTIONS(1334), - [anon_sym_BSLASHacl] = ACTIONS(1334), - [anon_sym_BSLASHAcl] = ACTIONS(1334), - [anon_sym_BSLASHaclp] = ACTIONS(1334), - [anon_sym_BSLASHAclp] = ACTIONS(1334), - [anon_sym_BSLASHacf] = ACTIONS(1334), - [anon_sym_BSLASHAcf] = ACTIONS(1334), - [anon_sym_BSLASHacfp] = ACTIONS(1334), - [anon_sym_BSLASHAcfp] = ACTIONS(1334), - [anon_sym_BSLASHac] = ACTIONS(1334), - [anon_sym_BSLASHAc] = ACTIONS(1334), - [anon_sym_BSLASHacp] = ACTIONS(1334), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1334), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1334), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1334), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1334), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1334), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1334), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1334), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1334), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1334), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1334), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1337), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1337), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1340), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1343), - [anon_sym_BSLASHcolor] = ACTIONS(1346), - [anon_sym_BSLASHcolorbox] = ACTIONS(1346), - [anon_sym_BSLASHtextcolor] = ACTIONS(1346), - [anon_sym_BSLASHpagecolor] = ACTIONS(1346), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1349), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(101), + [sym_text] = STATE(101), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(101), + [sym_inline_formula] = STATE(101), + [sym_math_set] = STATE(101), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(101), + [sym_comment_environment] = STATE(101), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(101), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(101), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(101), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(101), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(101), + [sym_generic_command] = STATE(101), + [sym_package_include] = STATE(101), + [sym_class_include] = STATE(101), + [sym_latex_include] = STATE(101), + [sym_biblatex_include] = STATE(101), + [sym_bibtex_include] = STATE(101), + [sym_graphics_include] = STATE(101), + [sym_svg_include] = STATE(101), + [sym_inkscape_include] = STATE(101), + [sym_verbatim_include] = STATE(101), + [sym_import_include] = STATE(101), + [sym_caption] = STATE(101), + [sym_citation] = STATE(101), + [sym_label_definition] = STATE(101), + [sym_label_reference] = STATE(101), + [sym_label_reference_range] = STATE(101), + [sym_label_number] = STATE(101), + [sym_new_command_definition] = STATE(101), + [sym_old_command_definition] = STATE(101), + [sym_let_command_definition] = STATE(101), + [sym_environment_definition] = STATE(101), + [sym_glossary_entry_definition] = STATE(101), + [sym_glossary_entry_reference] = STATE(101), + [sym_acronym_definition] = STATE(101), + [sym_acronym_reference] = STATE(101), + [sym_theorem_definition] = STATE(101), + [sym_color_definition] = STATE(101), + [sym_color_set_definition] = STATE(101), + [sym_color_reference] = STATE(101), + [sym_tikz_library_import] = STATE(101), + [sym_text_mode] = STATE(101), + [aux_sym_source_file_repeat1] = STATE(101), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1196), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1196), + [anon_sym_RBRACK] = ACTIONS(1196), + [anon_sym_COMMA] = ACTIONS(1196), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1198), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(889), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [88] = { - [sym_block_comment] = STATE(63), - [sym__root_content] = STATE(63), - [sym__flat_content] = STATE(63), - [sym__text_with_env_content] = STATE(63), - [sym__text_content] = STATE(63), - [sym__section] = STATE(63), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), + [94] = { + [sym_block_comment] = STATE(115), + [sym__root_content] = STATE(115), + [sym__flat_content] = STATE(115), + [sym__text_with_env_content] = STATE(115), + [sym__text_content] = STATE(115), + [sym__section] = STATE(115), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(63), - [sym_text] = STATE(63), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(63), - [sym_inline_formula] = STATE(63), - [sym_math_set] = STATE(63), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(63), - [sym_comment_environment] = STATE(63), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(63), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(63), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(63), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(63), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(63), - [sym_generic_command] = STATE(63), - [sym_package_include] = STATE(63), - [sym_class_include] = STATE(63), - [sym_latex_include] = STATE(63), - [sym_biblatex_include] = STATE(63), - [sym_bibtex_include] = STATE(63), - [sym_graphics_include] = STATE(63), - [sym_svg_include] = STATE(63), - [sym_inkscape_include] = STATE(63), - [sym_verbatim_include] = STATE(63), - [sym_import_include] = STATE(63), - [sym_caption] = STATE(63), - [sym_citation] = STATE(63), - [sym_label_definition] = STATE(63), - [sym_label_reference] = STATE(63), - [sym_label_reference_range] = STATE(63), - [sym_label_number] = STATE(63), - [sym_new_command_definition] = STATE(63), - [sym_old_command_definition] = STATE(63), - [sym_let_command_definition] = STATE(63), - [sym_environment_definition] = STATE(63), - [sym_glossary_entry_definition] = STATE(63), - [sym_glossary_entry_reference] = STATE(63), - [sym_acronym_definition] = STATE(63), - [sym_acronym_reference] = STATE(63), - [sym_theorem_definition] = STATE(63), - [sym_color_definition] = STATE(63), - [sym_color_set_definition] = STATE(63), - [sym_color_reference] = STATE(63), - [sym_tikz_library_import] = STATE(63), - [aux_sym_source_file_repeat1] = STATE(63), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_RPAREN] = ACTIONS(1352), - [anon_sym_LBRACK] = ACTIONS(1352), - [anon_sym_RBRACK] = ACTIONS(1352), - [anon_sym_COMMA] = ACTIONS(1352), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1354), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(115), + [sym_text] = STATE(115), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(115), + [sym_inline_formula] = STATE(115), + [sym_math_set] = STATE(115), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(115), + [sym_comment_environment] = STATE(115), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(115), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(115), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(115), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(115), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(115), + [sym_generic_command] = STATE(115), + [sym_package_include] = STATE(115), + [sym_class_include] = STATE(115), + [sym_latex_include] = STATE(115), + [sym_biblatex_include] = STATE(115), + [sym_bibtex_include] = STATE(115), + [sym_graphics_include] = STATE(115), + [sym_svg_include] = STATE(115), + [sym_inkscape_include] = STATE(115), + [sym_verbatim_include] = STATE(115), + [sym_import_include] = STATE(115), + [sym_caption] = STATE(115), + [sym_citation] = STATE(115), + [sym_label_definition] = STATE(115), + [sym_label_reference] = STATE(115), + [sym_label_reference_range] = STATE(115), + [sym_label_number] = STATE(115), + [sym_new_command_definition] = STATE(115), + [sym_old_command_definition] = STATE(115), + [sym_let_command_definition] = STATE(115), + [sym_environment_definition] = STATE(115), + [sym_glossary_entry_definition] = STATE(115), + [sym_glossary_entry_reference] = STATE(115), + [sym_acronym_definition] = STATE(115), + [sym_acronym_reference] = STATE(115), + [sym_theorem_definition] = STATE(115), + [sym_color_definition] = STATE(115), + [sym_color_set_definition] = STATE(115), + [sym_color_reference] = STATE(115), + [sym_tikz_library_import] = STATE(115), + [sym_text_mode] = STATE(115), + [aux_sym_source_file_repeat1] = STATE(115), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(649), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_EQ] = ACTIONS(649), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1200), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, - [89] = { - [sym_block_comment] = STATE(24), - [sym__root_content] = STATE(24), - [sym__flat_content] = STATE(24), - [sym__text_with_env_content] = STATE(24), - [sym__text_content] = STATE(24), - [sym__section] = STATE(24), - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), - [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(24), - [sym_text] = STATE(24), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(24), - [sym_inline_formula] = STATE(24), - [sym_math_set] = STATE(24), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(24), - [sym_comment_environment] = STATE(24), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(24), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(24), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(24), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(24), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(24), - [sym_generic_command] = STATE(24), - [sym_package_include] = STATE(24), - [sym_class_include] = STATE(24), - [sym_latex_include] = STATE(24), - [sym_biblatex_include] = STATE(24), - [sym_bibtex_include] = STATE(24), - [sym_graphics_include] = STATE(24), - [sym_svg_include] = STATE(24), - [sym_inkscape_include] = STATE(24), - [sym_verbatim_include] = STATE(24), - [sym_import_include] = STATE(24), - [sym_caption] = STATE(24), - [sym_citation] = STATE(24), - [sym_label_definition] = STATE(24), - [sym_label_reference] = STATE(24), - [sym_label_reference_range] = STATE(24), - [sym_label_number] = STATE(24), - [sym_new_command_definition] = STATE(24), - [sym_old_command_definition] = STATE(24), - [sym_let_command_definition] = STATE(24), - [sym_environment_definition] = STATE(24), - [sym_glossary_entry_definition] = STATE(24), - [sym_glossary_entry_reference] = STATE(24), - [sym_acronym_definition] = STATE(24), - [sym_acronym_reference] = STATE(24), - [sym_theorem_definition] = STATE(24), - [sym_color_definition] = STATE(24), - [sym_color_set_definition] = STATE(24), - [sym_color_reference] = STATE(24), - [sym_tikz_library_import] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), - [aux_sym_text_repeat1] = STATE(207), - [sym_command_name] = ACTIONS(7), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(546), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [95] = { + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(151), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_RPAREN] = ACTIONS(145), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), + }, + [96] = { + [sym_block_comment] = STATE(104), + [sym__root_content] = STATE(104), + [sym__flat_content] = STATE(104), + [sym__text_with_env_content] = STATE(104), + [sym__text_content] = STATE(104), + [sym__section] = STATE(104), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(104), + [sym_text] = STATE(104), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(104), + [sym_inline_formula] = STATE(104), + [sym_math_set] = STATE(104), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(104), + [sym_comment_environment] = STATE(104), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(104), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(104), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(104), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(104), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(104), + [sym_generic_command] = STATE(104), + [sym_package_include] = STATE(104), + [sym_class_include] = STATE(104), + [sym_latex_include] = STATE(104), + [sym_biblatex_include] = STATE(104), + [sym_bibtex_include] = STATE(104), + [sym_graphics_include] = STATE(104), + [sym_svg_include] = STATE(104), + [sym_inkscape_include] = STATE(104), + [sym_verbatim_include] = STATE(104), + [sym_import_include] = STATE(104), + [sym_caption] = STATE(104), + [sym_citation] = STATE(104), + [sym_label_definition] = STATE(104), + [sym_label_reference] = STATE(104), + [sym_label_reference_range] = STATE(104), + [sym_label_number] = STATE(104), + [sym_new_command_definition] = STATE(104), + [sym_old_command_definition] = STATE(104), + [sym_let_command_definition] = STATE(104), + [sym_environment_definition] = STATE(104), + [sym_glossary_entry_definition] = STATE(104), + [sym_glossary_entry_reference] = STATE(104), + [sym_acronym_definition] = STATE(104), + [sym_acronym_reference] = STATE(104), + [sym_theorem_definition] = STATE(104), + [sym_color_definition] = STATE(104), + [sym_color_set_definition] = STATE(104), + [sym_color_reference] = STATE(104), + [sym_tikz_library_import] = STATE(104), + [sym_text_mode] = STATE(104), + [aux_sym_source_file_repeat1] = STATE(104), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(787), + [anon_sym_COMMA] = ACTIONS(787), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1202), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(801), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [97] = { + [sym_block_comment] = STATE(61), + [sym__root_content] = STATE(61), + [sym__flat_content] = STATE(61), + [sym__text_with_env_content] = STATE(61), + [sym__text_content] = STATE(61), + [sym__section] = STATE(61), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(61), + [sym_text] = STATE(61), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(61), + [sym_inline_formula] = STATE(61), + [sym_math_set] = STATE(61), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(61), + [sym_comment_environment] = STATE(61), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(61), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(61), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(61), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(61), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(61), + [sym_generic_command] = STATE(61), + [sym_package_include] = STATE(61), + [sym_class_include] = STATE(61), + [sym_latex_include] = STATE(61), + [sym_biblatex_include] = STATE(61), + [sym_bibtex_include] = STATE(61), + [sym_graphics_include] = STATE(61), + [sym_svg_include] = STATE(61), + [sym_inkscape_include] = STATE(61), + [sym_verbatim_include] = STATE(61), + [sym_import_include] = STATE(61), + [sym_caption] = STATE(61), + [sym_citation] = STATE(61), + [sym_label_definition] = STATE(61), + [sym_label_reference] = STATE(61), + [sym_label_reference_range] = STATE(61), + [sym_label_number] = STATE(61), + [sym_new_command_definition] = STATE(61), + [sym_old_command_definition] = STATE(61), + [sym_let_command_definition] = STATE(61), + [sym_environment_definition] = STATE(61), + [sym_glossary_entry_definition] = STATE(61), + [sym_glossary_entry_reference] = STATE(61), + [sym_acronym_definition] = STATE(61), + [sym_acronym_reference] = STATE(61), + [sym_theorem_definition] = STATE(61), + [sym_color_definition] = STATE(61), + [sym_color_set_definition] = STATE(61), + [sym_color_reference] = STATE(61), + [sym_tikz_library_import] = STATE(61), + [sym_text_mode] = STATE(61), + [aux_sym_source_file_repeat1] = STATE(61), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_RBRACK] = ACTIONS(1204), + [anon_sym_COMMA] = ACTIONS(1204), + [anon_sym_EQ] = ACTIONS(1204), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1206), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), + }, + [98] = { + [sym_block_comment] = STATE(39), + [sym__root_content] = STATE(39), + [sym__flat_content] = STATE(39), + [sym__text_with_env_content] = STATE(39), + [sym__text_content] = STATE(39), + [sym__section] = STATE(39), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(39), + [sym_text] = STATE(39), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(39), + [sym_inline_formula] = STATE(39), + [sym_math_set] = STATE(39), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(39), + [sym_comment_environment] = STATE(39), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(39), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(39), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(39), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(39), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(39), + [sym_generic_command] = STATE(39), + [sym_package_include] = STATE(39), + [sym_class_include] = STATE(39), + [sym_latex_include] = STATE(39), + [sym_biblatex_include] = STATE(39), + [sym_bibtex_include] = STATE(39), + [sym_graphics_include] = STATE(39), + [sym_svg_include] = STATE(39), + [sym_inkscape_include] = STATE(39), + [sym_verbatim_include] = STATE(39), + [sym_import_include] = STATE(39), + [sym_caption] = STATE(39), + [sym_citation] = STATE(39), + [sym_label_definition] = STATE(39), + [sym_label_reference] = STATE(39), + [sym_label_reference_range] = STATE(39), + [sym_label_number] = STATE(39), + [sym_new_command_definition] = STATE(39), + [sym_old_command_definition] = STATE(39), + [sym_let_command_definition] = STATE(39), + [sym_environment_definition] = STATE(39), + [sym_glossary_entry_definition] = STATE(39), + [sym_glossary_entry_reference] = STATE(39), + [sym_acronym_definition] = STATE(39), + [sym_acronym_reference] = STATE(39), + [sym_theorem_definition] = STATE(39), + [sym_color_definition] = STATE(39), + [sym_color_set_definition] = STATE(39), + [sym_color_reference] = STATE(39), + [sym_tikz_library_import] = STATE(39), + [sym_text_mode] = STATE(39), + [aux_sym_source_file_repeat1] = STATE(39), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1208), + [anon_sym_RPAREN] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(1208), + [anon_sym_RBRACK] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1210), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1212), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), + }, + [99] = { + [sym_block_comment] = STATE(63), + [sym__root_content] = STATE(63), + [sym__flat_content] = STATE(63), + [sym__text_with_env_content] = STATE(63), + [sym__text_content] = STATE(63), + [sym__section] = STATE(63), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(63), + [sym_text] = STATE(63), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(63), + [sym_inline_formula] = STATE(63), + [sym_math_set] = STATE(63), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(63), + [sym_comment_environment] = STATE(63), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(63), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(63), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(63), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(63), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(63), + [sym_generic_command] = STATE(63), + [sym_package_include] = STATE(63), + [sym_class_include] = STATE(63), + [sym_latex_include] = STATE(63), + [sym_biblatex_include] = STATE(63), + [sym_bibtex_include] = STATE(63), + [sym_graphics_include] = STATE(63), + [sym_svg_include] = STATE(63), + [sym_inkscape_include] = STATE(63), + [sym_verbatim_include] = STATE(63), + [sym_import_include] = STATE(63), + [sym_caption] = STATE(63), + [sym_citation] = STATE(63), + [sym_label_definition] = STATE(63), + [sym_label_reference] = STATE(63), + [sym_label_reference_range] = STATE(63), + [sym_label_number] = STATE(63), + [sym_new_command_definition] = STATE(63), + [sym_old_command_definition] = STATE(63), + [sym_let_command_definition] = STATE(63), + [sym_environment_definition] = STATE(63), + [sym_glossary_entry_definition] = STATE(63), + [sym_glossary_entry_reference] = STATE(63), + [sym_acronym_definition] = STATE(63), + [sym_acronym_reference] = STATE(63), + [sym_theorem_definition] = STATE(63), + [sym_color_definition] = STATE(63), + [sym_color_set_definition] = STATE(63), + [sym_color_reference] = STATE(63), + [sym_tikz_library_import] = STATE(63), + [sym_text_mode] = STATE(63), + [aux_sym_source_file_repeat1] = STATE(63), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1214), + [anon_sym_RPAREN] = ACTIONS(1214), + [anon_sym_LBRACK] = ACTIONS(1214), + [anon_sym_RBRACK] = ACTIONS(1214), + [anon_sym_COMMA] = ACTIONS(1214), + [anon_sym_EQ] = ACTIONS(1214), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1216), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1218), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [100] = { + [sym_block_comment] = STATE(83), + [sym__root_content] = STATE(83), + [sym__flat_content] = STATE(83), + [sym__text_with_env_content] = STATE(83), + [sym__text_content] = STATE(83), + [sym__section] = STATE(83), + [sym__part_declaration] = STATE(123), + [sym_part] = STATE(280), + [sym__chapter_declaration] = STATE(133), + [sym_chapter] = STATE(279), + [sym__section_declaration] = STATE(142), + [sym_section] = STATE(277), + [sym__subsection_declaration] = STATE(152), + [sym_subsection] = STATE(276), + [sym__subsubsection_declaration] = STATE(163), + [sym_subsubsection] = STATE(275), + [sym__paragraph_declaration] = STATE(172), + [sym_paragraph] = STATE(274), + [sym__subparagraph_declaration] = STATE(182), + [sym_subparagraph] = STATE(273), + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(83), + [sym_text] = STATE(83), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(83), + [sym_inline_formula] = STATE(83), + [sym_math_set] = STATE(83), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(83), + [sym_comment_environment] = STATE(83), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(83), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(83), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(83), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(83), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(83), + [sym_generic_command] = STATE(83), + [sym_package_include] = STATE(83), + [sym_class_include] = STATE(83), + [sym_latex_include] = STATE(83), + [sym_biblatex_include] = STATE(83), + [sym_bibtex_include] = STATE(83), + [sym_graphics_include] = STATE(83), + [sym_svg_include] = STATE(83), + [sym_inkscape_include] = STATE(83), + [sym_verbatim_include] = STATE(83), + [sym_import_include] = STATE(83), + [sym_caption] = STATE(83), + [sym_citation] = STATE(83), + [sym_label_definition] = STATE(83), + [sym_label_reference] = STATE(83), + [sym_label_reference_range] = STATE(83), + [sym_label_number] = STATE(83), + [sym_new_command_definition] = STATE(83), + [sym_old_command_definition] = STATE(83), + [sym_let_command_definition] = STATE(83), + [sym_environment_definition] = STATE(83), + [sym_glossary_entry_definition] = STATE(83), + [sym_glossary_entry_reference] = STATE(83), + [sym_acronym_definition] = STATE(83), + [sym_acronym_reference] = STATE(83), + [sym_theorem_definition] = STATE(83), + [sym_color_definition] = STATE(83), + [sym_color_set_definition] = STATE(83), + [sym_color_reference] = STATE(83), + [sym_tikz_library_import] = STATE(83), + [sym_text_mode] = STATE(83), + [aux_sym_source_file_repeat1] = STATE(83), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), + [aux_sym_text_repeat1] = STATE(207), + [sym_command_name] = ACTIONS(7), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(1220), + [anon_sym_RPAREN] = ACTIONS(1220), + [anon_sym_LBRACK] = ACTIONS(1220), + [anon_sym_RBRACK] = ACTIONS(1220), + [anon_sym_COMMA] = ACTIONS(1220), + [anon_sym_EQ] = ACTIONS(1220), + [anon_sym_BSLASHpart] = ACTIONS(13), + [anon_sym_BSLASHpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHaddpart] = ACTIONS(13), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHchapter] = ACTIONS(17), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), + [anon_sym_BSLASHaddchap] = ACTIONS(17), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_RBRACE] = ACTIONS(1222), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -51296,799 +53336,811 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [90] = { - [sym_block_comment] = STATE(113), - [sym__root_content] = STATE(113), - [sym__flat_content] = STATE(113), - [sym__text_with_env_content] = STATE(113), - [sym__text_content] = STATE(113), - [sym__section] = STATE(113), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(113), - [sym_text] = STATE(113), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(113), - [sym_inline_formula] = STATE(113), - [sym_math_set] = STATE(113), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(113), - [sym_comment_environment] = STATE(113), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(113), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(113), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(113), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(113), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(113), - [sym_generic_command] = STATE(113), - [sym_package_include] = STATE(113), - [sym_class_include] = STATE(113), - [sym_latex_include] = STATE(113), - [sym_biblatex_include] = STATE(113), - [sym_bibtex_include] = STATE(113), - [sym_graphics_include] = STATE(113), - [sym_svg_include] = STATE(113), - [sym_inkscape_include] = STATE(113), - [sym_verbatim_include] = STATE(113), - [sym_import_include] = STATE(113), - [sym_caption] = STATE(113), - [sym_citation] = STATE(113), - [sym_label_definition] = STATE(113), - [sym_label_reference] = STATE(113), - [sym_label_reference_range] = STATE(113), - [sym_label_number] = STATE(113), - [sym_new_command_definition] = STATE(113), - [sym_old_command_definition] = STATE(113), - [sym_let_command_definition] = STATE(113), - [sym_environment_definition] = STATE(113), - [sym_glossary_entry_definition] = STATE(113), - [sym_glossary_entry_reference] = STATE(113), - [sym_acronym_definition] = STATE(113), - [sym_acronym_reference] = STATE(113), - [sym_theorem_definition] = STATE(113), - [sym_color_definition] = STATE(113), - [sym_color_set_definition] = STATE(113), - [sym_color_reference] = STATE(113), - [sym_tikz_library_import] = STATE(113), - [aux_sym_source_file_repeat1] = STATE(113), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_RBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(760), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1358), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [91] = { - [sym_block_comment] = STATE(84), - [sym__root_content] = STATE(84), - [sym__flat_content] = STATE(84), - [sym__text_with_env_content] = STATE(84), - [sym__text_content] = STATE(84), - [sym__section] = STATE(84), - [sym__part_declaration] = STATE(124), + [101] = { + [sym_block_comment] = STATE(79), + [sym__root_content] = STATE(79), + [sym__flat_content] = STATE(79), + [sym__text_with_env_content] = STATE(79), + [sym__text_content] = STATE(79), + [sym__section] = STATE(79), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(84), - [sym_text] = STATE(84), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(84), - [sym_inline_formula] = STATE(84), - [sym_math_set] = STATE(84), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(84), - [sym_comment_environment] = STATE(84), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(84), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(84), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(84), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(84), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(84), - [sym_generic_command] = STATE(84), - [sym_package_include] = STATE(84), - [sym_class_include] = STATE(84), - [sym_latex_include] = STATE(84), - [sym_biblatex_include] = STATE(84), - [sym_bibtex_include] = STATE(84), - [sym_graphics_include] = STATE(84), - [sym_svg_include] = STATE(84), - [sym_inkscape_include] = STATE(84), - [sym_verbatim_include] = STATE(84), - [sym_import_include] = STATE(84), - [sym_caption] = STATE(84), - [sym_citation] = STATE(84), - [sym_label_definition] = STATE(84), - [sym_label_reference] = STATE(84), - [sym_label_reference_range] = STATE(84), - [sym_label_number] = STATE(84), - [sym_new_command_definition] = STATE(84), - [sym_old_command_definition] = STATE(84), - [sym_let_command_definition] = STATE(84), - [sym_environment_definition] = STATE(84), - [sym_glossary_entry_definition] = STATE(84), - [sym_glossary_entry_reference] = STATE(84), - [sym_acronym_definition] = STATE(84), - [sym_acronym_reference] = STATE(84), - [sym_theorem_definition] = STATE(84), - [sym_color_definition] = STATE(84), - [sym_color_set_definition] = STATE(84), - [sym_color_reference] = STATE(84), - [sym_tikz_library_import] = STATE(84), - [aux_sym_source_file_repeat1] = STATE(84), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(79), + [sym_text] = STATE(79), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(79), + [sym_inline_formula] = STATE(79), + [sym_math_set] = STATE(79), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(79), + [sym_comment_environment] = STATE(79), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(79), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(79), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(79), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(79), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(79), + [sym_generic_command] = STATE(79), + [sym_package_include] = STATE(79), + [sym_class_include] = STATE(79), + [sym_latex_include] = STATE(79), + [sym_biblatex_include] = STATE(79), + [sym_bibtex_include] = STATE(79), + [sym_graphics_include] = STATE(79), + [sym_svg_include] = STATE(79), + [sym_inkscape_include] = STATE(79), + [sym_verbatim_include] = STATE(79), + [sym_import_include] = STATE(79), + [sym_caption] = STATE(79), + [sym_citation] = STATE(79), + [sym_label_definition] = STATE(79), + [sym_label_reference] = STATE(79), + [sym_label_reference_range] = STATE(79), + [sym_label_number] = STATE(79), + [sym_new_command_definition] = STATE(79), + [sym_old_command_definition] = STATE(79), + [sym_let_command_definition] = STATE(79), + [sym_environment_definition] = STATE(79), + [sym_glossary_entry_definition] = STATE(79), + [sym_glossary_entry_reference] = STATE(79), + [sym_acronym_definition] = STATE(79), + [sym_acronym_reference] = STATE(79), + [sym_theorem_definition] = STATE(79), + [sym_color_definition] = STATE(79), + [sym_color_set_definition] = STATE(79), + [sym_color_reference] = STATE(79), + [sym_tikz_library_import] = STATE(79), + [sym_text_mode] = STATE(79), + [aux_sym_source_file_repeat1] = STATE(79), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1360), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1362), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1224), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(781), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [92] = { - [sym_block_comment] = STATE(24), - [sym__root_content] = STATE(24), - [sym__flat_content] = STATE(24), - [sym__text_with_env_content] = STATE(24), - [sym__text_content] = STATE(24), - [sym__section] = STATE(24), + [102] = { + [sym_block_comment] = STATE(112), + [sym__root_content] = STATE(112), + [sym__flat_content] = STATE(112), + [sym__text_with_env_content] = STATE(112), + [sym__text_content] = STATE(112), + [sym__section] = STATE(112), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(112), + [sym_text] = STATE(112), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(112), + [sym_inline_formula] = STATE(112), + [sym_math_set] = STATE(112), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(112), + [sym_comment_environment] = STATE(112), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(112), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(112), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(112), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(112), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(112), + [sym_generic_command] = STATE(112), + [sym_package_include] = STATE(112), + [sym_class_include] = STATE(112), + [sym_latex_include] = STATE(112), + [sym_biblatex_include] = STATE(112), + [sym_bibtex_include] = STATE(112), + [sym_graphics_include] = STATE(112), + [sym_svg_include] = STATE(112), + [sym_inkscape_include] = STATE(112), + [sym_verbatim_include] = STATE(112), + [sym_import_include] = STATE(112), + [sym_caption] = STATE(112), + [sym_citation] = STATE(112), + [sym_label_definition] = STATE(112), + [sym_label_reference] = STATE(112), + [sym_label_reference_range] = STATE(112), + [sym_label_number] = STATE(112), + [sym_new_command_definition] = STATE(112), + [sym_old_command_definition] = STATE(112), + [sym_let_command_definition] = STATE(112), + [sym_environment_definition] = STATE(112), + [sym_glossary_entry_definition] = STATE(112), + [sym_glossary_entry_reference] = STATE(112), + [sym_acronym_definition] = STATE(112), + [sym_acronym_reference] = STATE(112), + [sym_theorem_definition] = STATE(112), + [sym_color_definition] = STATE(112), + [sym_color_set_definition] = STATE(112), + [sym_color_reference] = STATE(112), + [sym_tikz_library_import] = STATE(112), + [sym_text_mode] = STATE(112), + [aux_sym_source_file_repeat1] = STATE(112), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1226), + [anon_sym_RPAREN] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1226), + [anon_sym_RBRACK] = ACTIONS(1226), + [anon_sym_COMMA] = ACTIONS(1226), + [anon_sym_EQ] = ACTIONS(1226), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1228), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1230), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [103] = { + [sym_block_comment] = STATE(22), + [sym__root_content] = STATE(22), + [sym__flat_content] = STATE(22), + [sym__text_with_env_content] = STATE(22), + [sym__text_content] = STATE(22), + [sym__section] = STATE(22), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(24), - [sym_text] = STATE(24), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(24), - [sym_inline_formula] = STATE(24), - [sym_math_set] = STATE(24), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(24), - [sym_comment_environment] = STATE(24), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(24), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(24), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(24), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(24), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(24), - [sym_generic_command] = STATE(24), - [sym_package_include] = STATE(24), - [sym_class_include] = STATE(24), - [sym_latex_include] = STATE(24), - [sym_biblatex_include] = STATE(24), - [sym_bibtex_include] = STATE(24), - [sym_graphics_include] = STATE(24), - [sym_svg_include] = STATE(24), - [sym_inkscape_include] = STATE(24), - [sym_verbatim_include] = STATE(24), - [sym_import_include] = STATE(24), - [sym_caption] = STATE(24), - [sym_citation] = STATE(24), - [sym_label_definition] = STATE(24), - [sym_label_reference] = STATE(24), - [sym_label_reference_range] = STATE(24), - [sym_label_number] = STATE(24), - [sym_new_command_definition] = STATE(24), - [sym_old_command_definition] = STATE(24), - [sym_let_command_definition] = STATE(24), - [sym_environment_definition] = STATE(24), - [sym_glossary_entry_definition] = STATE(24), - [sym_glossary_entry_reference] = STATE(24), - [sym_acronym_definition] = STATE(24), - [sym_acronym_reference] = STATE(24), - [sym_theorem_definition] = STATE(24), - [sym_color_definition] = STATE(24), - [sym_color_set_definition] = STATE(24), - [sym_color_reference] = STATE(24), - [sym_tikz_library_import] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(22), + [sym_text] = STATE(22), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(22), + [sym_inline_formula] = STATE(22), + [sym_math_set] = STATE(22), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(22), + [sym_comment_environment] = STATE(22), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(22), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(22), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(22), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(22), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(22), + [sym_generic_command] = STATE(22), + [sym_package_include] = STATE(22), + [sym_class_include] = STATE(22), + [sym_latex_include] = STATE(22), + [sym_biblatex_include] = STATE(22), + [sym_bibtex_include] = STATE(22), + [sym_graphics_include] = STATE(22), + [sym_svg_include] = STATE(22), + [sym_inkscape_include] = STATE(22), + [sym_verbatim_include] = STATE(22), + [sym_import_include] = STATE(22), + [sym_caption] = STATE(22), + [sym_citation] = STATE(22), + [sym_label_definition] = STATE(22), + [sym_label_reference] = STATE(22), + [sym_label_reference_range] = STATE(22), + [sym_label_number] = STATE(22), + [sym_new_command_definition] = STATE(22), + [sym_old_command_definition] = STATE(22), + [sym_let_command_definition] = STATE(22), + [sym_environment_definition] = STATE(22), + [sym_glossary_entry_definition] = STATE(22), + [sym_glossary_entry_reference] = STATE(22), + [sym_acronym_definition] = STATE(22), + [sym_acronym_reference] = STATE(22), + [sym_theorem_definition] = STATE(22), + [sym_color_definition] = STATE(22), + [sym_color_set_definition] = STATE(22), + [sym_color_reference] = STATE(22), + [sym_tikz_library_import] = STATE(22), + [sym_text_mode] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -52112,7 +54164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_RBRACE] = ACTIONS(1232), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -52346,3949 +54398,3289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [93] = { - [sym_block_comment] = STATE(87), - [sym__root_content] = STATE(87), - [sym__flat_content] = STATE(87), - [sym__text_with_env_content] = STATE(87), - [sym__text_content] = STATE(87), - [sym__section] = STATE(87), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(87), - [sym_text] = STATE(87), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(87), - [sym_inline_formula] = STATE(87), - [sym_math_set] = STATE(87), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(87), - [sym_comment_environment] = STATE(87), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(87), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(87), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(87), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(87), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(87), - [sym_generic_command] = STATE(87), - [sym_package_include] = STATE(87), - [sym_class_include] = STATE(87), - [sym_latex_include] = STATE(87), - [sym_biblatex_include] = STATE(87), - [sym_bibtex_include] = STATE(87), - [sym_graphics_include] = STATE(87), - [sym_svg_include] = STATE(87), - [sym_inkscape_include] = STATE(87), - [sym_verbatim_include] = STATE(87), - [sym_import_include] = STATE(87), - [sym_caption] = STATE(87), - [sym_citation] = STATE(87), - [sym_label_definition] = STATE(87), - [sym_label_reference] = STATE(87), - [sym_label_reference_range] = STATE(87), - [sym_label_number] = STATE(87), - [sym_new_command_definition] = STATE(87), - [sym_old_command_definition] = STATE(87), - [sym_let_command_definition] = STATE(87), - [sym_environment_definition] = STATE(87), - [sym_glossary_entry_definition] = STATE(87), - [sym_glossary_entry_reference] = STATE(87), - [sym_acronym_definition] = STATE(87), - [sym_acronym_reference] = STATE(87), - [sym_theorem_definition] = STATE(87), - [sym_color_definition] = STATE(87), - [sym_color_set_definition] = STATE(87), - [sym_color_reference] = STATE(87), - [sym_tikz_library_import] = STATE(87), - [aux_sym_source_file_repeat1] = STATE(87), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_RBRACK] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1366), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1368), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [104] = { + [sym_block_comment] = STATE(104), + [sym__root_content] = STATE(104), + [sym__flat_content] = STATE(104), + [sym__text_with_env_content] = STATE(104), + [sym__text_content] = STATE(104), + [sym__section] = STATE(104), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(104), + [sym_text] = STATE(104), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(104), + [sym_inline_formula] = STATE(104), + [sym_math_set] = STATE(104), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(104), + [sym_comment_environment] = STATE(104), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(104), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(104), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(104), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(104), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(104), + [sym_generic_command] = STATE(104), + [sym_package_include] = STATE(104), + [sym_class_include] = STATE(104), + [sym_latex_include] = STATE(104), + [sym_biblatex_include] = STATE(104), + [sym_bibtex_include] = STATE(104), + [sym_graphics_include] = STATE(104), + [sym_svg_include] = STATE(104), + [sym_inkscape_include] = STATE(104), + [sym_verbatim_include] = STATE(104), + [sym_import_include] = STATE(104), + [sym_caption] = STATE(104), + [sym_citation] = STATE(104), + [sym_label_definition] = STATE(104), + [sym_label_reference] = STATE(104), + [sym_label_reference_range] = STATE(104), + [sym_label_number] = STATE(104), + [sym_new_command_definition] = STATE(104), + [sym_old_command_definition] = STATE(104), + [sym_let_command_definition] = STATE(104), + [sym_environment_definition] = STATE(104), + [sym_glossary_entry_definition] = STATE(104), + [sym_glossary_entry_reference] = STATE(104), + [sym_acronym_definition] = STATE(104), + [sym_acronym_reference] = STATE(104), + [sym_theorem_definition] = STATE(104), + [sym_color_definition] = STATE(104), + [sym_color_set_definition] = STATE(104), + [sym_color_reference] = STATE(104), + [sym_tikz_library_import] = STATE(104), + [sym_text_mode] = STATE(104), + [aux_sym_source_file_repeat1] = STATE(104), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(1234), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1237), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_RPAREN] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_RBRACK] = ACTIONS(1240), + [anon_sym_COMMA] = ACTIONS(1240), + [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_BSLASHpart] = ACTIONS(1243), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1246), + [anon_sym_BSLASHaddpart] = ACTIONS(1243), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1246), + [anon_sym_BSLASHchapter] = ACTIONS(1249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1252), + [anon_sym_BSLASHaddchap] = ACTIONS(1249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1252), + [anon_sym_BSLASHsection] = ACTIONS(1255), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1258), + [anon_sym_BSLASHaddsec] = ACTIONS(1255), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1258), + [anon_sym_BSLASHsubsection] = ACTIONS(1261), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1264), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1267), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1270), + [anon_sym_BSLASHparagraph] = ACTIONS(1273), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1276), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1279), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1282), + [anon_sym_BSLASHitem] = ACTIONS(1285), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1288), + [anon_sym_LBRACE] = ACTIONS(1291), + [sym_word] = ACTIONS(1294), + [sym_placeholder] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1300), + [anon_sym__] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_BANG] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_COLON] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1303), + [anon_sym_BSLASH_RBRACK] = ACTIONS(355), + [anon_sym_DOLLAR] = ACTIONS(1306), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1309), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1312), + [anon_sym_BSLASHbegin] = ACTIONS(438), + [anon_sym_BSLASHusepackage] = ACTIONS(1315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1318), + [anon_sym_BSLASHinclude] = ACTIONS(1321), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1321), + [anon_sym_BSLASHinput] = ACTIONS(1321), + [anon_sym_BSLASHsubfile] = ACTIONS(1321), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1324), + [anon_sym_BSLASHbibliography] = ACTIONS(1327), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1330), + [anon_sym_BSLASHincludesvg] = ACTIONS(1333), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1336), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1339), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1339), + [anon_sym_BSLASHimport] = ACTIONS(1342), + [anon_sym_BSLASHsubimport] = ACTIONS(1342), + [anon_sym_BSLASHinputfrom] = ACTIONS(1342), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1342), + [anon_sym_BSLASHincludefrom] = ACTIONS(1342), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1342), + [anon_sym_BSLASHcaption] = ACTIONS(1345), + [anon_sym_BSLASHcite] = ACTIONS(1348), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1351), + [anon_sym_BSLASHCite] = ACTIONS(1348), + [anon_sym_BSLASHnocite] = ACTIONS(1348), + [anon_sym_BSLASHcitet] = ACTIONS(1348), + [anon_sym_BSLASHcitep] = ACTIONS(1348), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1351), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1351), + [anon_sym_BSLASHciteauthor] = ACTIONS(1348), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1351), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1348), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1351), + [anon_sym_BSLASHcitetitle] = ACTIONS(1348), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1351), + [anon_sym_BSLASHciteyear] = ACTIONS(1348), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1351), + [anon_sym_BSLASHcitedate] = ACTIONS(1348), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1351), + [anon_sym_BSLASHciteurl] = ACTIONS(1348), + [anon_sym_BSLASHfullcite] = ACTIONS(1348), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1348), + [anon_sym_BSLASHcitealt] = ACTIONS(1348), + [anon_sym_BSLASHcitealp] = ACTIONS(1348), + [anon_sym_BSLASHcitetext] = ACTIONS(1348), + [anon_sym_BSLASHparencite] = ACTIONS(1348), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1351), + [anon_sym_BSLASHParencite] = ACTIONS(1348), + [anon_sym_BSLASHfootcite] = ACTIONS(1348), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1348), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1348), + [anon_sym_BSLASHtextcite] = ACTIONS(1348), + [anon_sym_BSLASHTextcite] = ACTIONS(1348), + [anon_sym_BSLASHsmartcite] = ACTIONS(1348), + [anon_sym_BSLASHSmartcite] = ACTIONS(1348), + [anon_sym_BSLASHsupercite] = ACTIONS(1348), + [anon_sym_BSLASHautocite] = ACTIONS(1348), + [anon_sym_BSLASHAutocite] = ACTIONS(1348), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1351), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1351), + [anon_sym_BSLASHvolcite] = ACTIONS(1348), + [anon_sym_BSLASHVolcite] = ACTIONS(1348), + [anon_sym_BSLASHpvolcite] = ACTIONS(1348), + [anon_sym_BSLASHPvolcite] = ACTIONS(1348), + [anon_sym_BSLASHfvolcite] = ACTIONS(1348), + [anon_sym_BSLASHftvolcite] = ACTIONS(1348), + [anon_sym_BSLASHsvolcite] = ACTIONS(1348), + [anon_sym_BSLASHSvolcite] = ACTIONS(1348), + [anon_sym_BSLASHtvolcite] = ACTIONS(1348), + [anon_sym_BSLASHTvolcite] = ACTIONS(1348), + [anon_sym_BSLASHavolcite] = ACTIONS(1348), + [anon_sym_BSLASHAvolcite] = ACTIONS(1348), + [anon_sym_BSLASHnotecite] = ACTIONS(1348), + [anon_sym_BSLASHNotecite] = ACTIONS(1348), + [anon_sym_BSLASHpnotecite] = ACTIONS(1348), + [anon_sym_BSLASHPnotecite] = ACTIONS(1348), + [anon_sym_BSLASHfnotecite] = ACTIONS(1348), + [anon_sym_BSLASHlabel] = ACTIONS(1354), + [anon_sym_BSLASHref] = ACTIONS(1357), + [anon_sym_BSLASHeqref] = ACTIONS(1357), + [anon_sym_BSLASHvref] = ACTIONS(1357), + [anon_sym_BSLASHVref] = ACTIONS(1357), + [anon_sym_BSLASHautoref] = ACTIONS(1357), + [anon_sym_BSLASHpageref] = ACTIONS(1357), + [anon_sym_BSLASHcref] = ACTIONS(1357), + [anon_sym_BSLASHCref] = ACTIONS(1357), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1360), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1360), + [anon_sym_BSLASHnamecref] = ACTIONS(1357), + [anon_sym_BSLASHnameCref] = ACTIONS(1357), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1357), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1357), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1357), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1357), + [anon_sym_BSLASHlabelcref] = ACTIONS(1357), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1357), + [anon_sym_BSLASHcrefrange] = ACTIONS(1363), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1366), + [anon_sym_BSLASHCrefrange] = ACTIONS(1363), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1366), + [anon_sym_BSLASHnewlabel] = ACTIONS(1369), + [anon_sym_BSLASHnewcommand] = ACTIONS(1372), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1375), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1372), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1375), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1372), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1375), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1372), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1375), + [anon_sym_BSLASHdef] = ACTIONS(1378), + [anon_sym_BSLASHlet] = ACTIONS(1381), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1384), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1387), + [anon_sym_BSLASHgls] = ACTIONS(1390), + [anon_sym_BSLASHGls] = ACTIONS(1390), + [anon_sym_BSLASHGLS] = ACTIONS(1390), + [anon_sym_BSLASHglspl] = ACTIONS(1390), + [anon_sym_BSLASHGlspl] = ACTIONS(1390), + [anon_sym_BSLASHGLSpl] = ACTIONS(1390), + [anon_sym_BSLASHglsdisp] = ACTIONS(1390), + [anon_sym_BSLASHglslink] = ACTIONS(1390), + [anon_sym_BSLASHglstext] = ACTIONS(1390), + [anon_sym_BSLASHGlstext] = ACTIONS(1390), + [anon_sym_BSLASHGLStext] = ACTIONS(1390), + [anon_sym_BSLASHglsfirst] = ACTIONS(1390), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1390), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1390), + [anon_sym_BSLASHglsplural] = ACTIONS(1390), + [anon_sym_BSLASHGlsplural] = ACTIONS(1390), + [anon_sym_BSLASHGLSplural] = ACTIONS(1390), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1390), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1390), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1390), + [anon_sym_BSLASHglsname] = ACTIONS(1390), + [anon_sym_BSLASHGlsname] = ACTIONS(1390), + [anon_sym_BSLASHGLSname] = ACTIONS(1390), + [anon_sym_BSLASHglssymbol] = ACTIONS(1390), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1390), + [anon_sym_BSLASHglsdesc] = ACTIONS(1390), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1390), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1390), + [anon_sym_BSLASHglsuseri] = ACTIONS(1390), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1390), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1390), + [anon_sym_BSLASHglsuserii] = ACTIONS(1390), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1390), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1390), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1390), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1390), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1390), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1390), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1390), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1390), + [anon_sym_BSLASHglsuserv] = ACTIONS(1390), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1390), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1390), + [anon_sym_BSLASHglsuservi] = ACTIONS(1390), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1390), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1390), + [anon_sym_BSLASHnewacronym] = ACTIONS(1393), + [anon_sym_BSLASHacrshort] = ACTIONS(1396), + [anon_sym_BSLASHAcrshort] = ACTIONS(1396), + [anon_sym_BSLASHACRshort] = ACTIONS(1396), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1396), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1396), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1396), + [anon_sym_BSLASHacrlong] = ACTIONS(1396), + [anon_sym_BSLASHAcrlong] = ACTIONS(1396), + [anon_sym_BSLASHACRlong] = ACTIONS(1396), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1396), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1396), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1396), + [anon_sym_BSLASHacrfull] = ACTIONS(1396), + [anon_sym_BSLASHAcrfull] = ACTIONS(1396), + [anon_sym_BSLASHACRfull] = ACTIONS(1396), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1396), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1396), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1396), + [anon_sym_BSLASHacs] = ACTIONS(1396), + [anon_sym_BSLASHAcs] = ACTIONS(1396), + [anon_sym_BSLASHacsp] = ACTIONS(1396), + [anon_sym_BSLASHAcsp] = ACTIONS(1396), + [anon_sym_BSLASHacl] = ACTIONS(1396), + [anon_sym_BSLASHAcl] = ACTIONS(1396), + [anon_sym_BSLASHaclp] = ACTIONS(1396), + [anon_sym_BSLASHAclp] = ACTIONS(1396), + [anon_sym_BSLASHacf] = ACTIONS(1396), + [anon_sym_BSLASHAcf] = ACTIONS(1396), + [anon_sym_BSLASHacfp] = ACTIONS(1396), + [anon_sym_BSLASHAcfp] = ACTIONS(1396), + [anon_sym_BSLASHac] = ACTIONS(1396), + [anon_sym_BSLASHAc] = ACTIONS(1396), + [anon_sym_BSLASHacp] = ACTIONS(1396), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1396), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1396), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1396), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1396), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1396), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1396), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1396), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1396), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1396), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1396), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1399), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1399), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1402), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1405), + [anon_sym_BSLASHcolor] = ACTIONS(1408), + [anon_sym_BSLASHcolorbox] = ACTIONS(1408), + [anon_sym_BSLASHtextcolor] = ACTIONS(1408), + [anon_sym_BSLASHpagecolor] = ACTIONS(1408), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1411), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1411), + [anon_sym_BSLASHtext] = ACTIONS(1414), + [anon_sym_BSLASHintertext] = ACTIONS(1414), + [anon_sym_shortintertext] = ACTIONS(1414), }, - [94] = { - [sym_block_comment] = STATE(87), - [sym__root_content] = STATE(87), - [sym__flat_content] = STATE(87), - [sym__text_with_env_content] = STATE(87), - [sym__text_content] = STATE(87), - [sym__section] = STATE(87), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), + [105] = { + [sym_block_comment] = STATE(94), + [sym__root_content] = STATE(94), + [sym__flat_content] = STATE(94), + [sym__text_with_env_content] = STATE(94), + [sym__text_content] = STATE(94), + [sym__section] = STATE(94), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(87), - [sym_text] = STATE(87), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(87), - [sym_inline_formula] = STATE(87), - [sym_math_set] = STATE(87), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(87), - [sym_comment_environment] = STATE(87), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(87), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(87), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(87), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(87), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(87), - [sym_generic_command] = STATE(87), - [sym_package_include] = STATE(87), - [sym_class_include] = STATE(87), - [sym_latex_include] = STATE(87), - [sym_biblatex_include] = STATE(87), - [sym_bibtex_include] = STATE(87), - [sym_graphics_include] = STATE(87), - [sym_svg_include] = STATE(87), - [sym_inkscape_include] = STATE(87), - [sym_verbatim_include] = STATE(87), - [sym_import_include] = STATE(87), - [sym_caption] = STATE(87), - [sym_citation] = STATE(87), - [sym_label_definition] = STATE(87), - [sym_label_reference] = STATE(87), - [sym_label_reference_range] = STATE(87), - [sym_label_number] = STATE(87), - [sym_new_command_definition] = STATE(87), - [sym_old_command_definition] = STATE(87), - [sym_let_command_definition] = STATE(87), - [sym_environment_definition] = STATE(87), - [sym_glossary_entry_definition] = STATE(87), - [sym_glossary_entry_reference] = STATE(87), - [sym_acronym_definition] = STATE(87), - [sym_acronym_reference] = STATE(87), - [sym_theorem_definition] = STATE(87), - [sym_color_definition] = STATE(87), - [sym_color_set_definition] = STATE(87), - [sym_color_reference] = STATE(87), - [sym_tikz_library_import] = STATE(87), - [aux_sym_source_file_repeat1] = STATE(87), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_RBRACK] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1370), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1372), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [95] = { - [sym_block_comment] = STATE(84), - [sym__root_content] = STATE(84), - [sym__flat_content] = STATE(84), - [sym__text_with_env_content] = STATE(84), - [sym__text_content] = STATE(84), - [sym__section] = STATE(84), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(84), - [sym_text] = STATE(84), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(84), - [sym_inline_formula] = STATE(84), - [sym_math_set] = STATE(84), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(84), - [sym_comment_environment] = STATE(84), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(84), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(84), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(84), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(84), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(84), - [sym_generic_command] = STATE(84), - [sym_package_include] = STATE(84), - [sym_class_include] = STATE(84), - [sym_latex_include] = STATE(84), - [sym_biblatex_include] = STATE(84), - [sym_bibtex_include] = STATE(84), - [sym_graphics_include] = STATE(84), - [sym_svg_include] = STATE(84), - [sym_inkscape_include] = STATE(84), - [sym_verbatim_include] = STATE(84), - [sym_import_include] = STATE(84), - [sym_caption] = STATE(84), - [sym_citation] = STATE(84), - [sym_label_definition] = STATE(84), - [sym_label_reference] = STATE(84), - [sym_label_reference_range] = STATE(84), - [sym_label_number] = STATE(84), - [sym_new_command_definition] = STATE(84), - [sym_old_command_definition] = STATE(84), - [sym_let_command_definition] = STATE(84), - [sym_environment_definition] = STATE(84), - [sym_glossary_entry_definition] = STATE(84), - [sym_glossary_entry_reference] = STATE(84), - [sym_acronym_definition] = STATE(84), - [sym_acronym_reference] = STATE(84), - [sym_theorem_definition] = STATE(84), - [sym_color_definition] = STATE(84), - [sym_color_set_definition] = STATE(84), - [sym_color_reference] = STATE(84), - [sym_tikz_library_import] = STATE(84), - [aux_sym_source_file_repeat1] = STATE(84), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1374), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1376), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(94), + [sym_text] = STATE(94), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(94), + [sym_inline_formula] = STATE(94), + [sym_math_set] = STATE(94), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(94), + [sym_comment_environment] = STATE(94), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(94), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(94), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(94), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(94), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(94), + [sym_generic_command] = STATE(94), + [sym_package_include] = STATE(94), + [sym_class_include] = STATE(94), + [sym_latex_include] = STATE(94), + [sym_biblatex_include] = STATE(94), + [sym_bibtex_include] = STATE(94), + [sym_graphics_include] = STATE(94), + [sym_svg_include] = STATE(94), + [sym_inkscape_include] = STATE(94), + [sym_verbatim_include] = STATE(94), + [sym_import_include] = STATE(94), + [sym_caption] = STATE(94), + [sym_citation] = STATE(94), + [sym_label_definition] = STATE(94), + [sym_label_reference] = STATE(94), + [sym_label_reference_range] = STATE(94), + [sym_label_number] = STATE(94), + [sym_new_command_definition] = STATE(94), + [sym_old_command_definition] = STATE(94), + [sym_let_command_definition] = STATE(94), + [sym_environment_definition] = STATE(94), + [sym_glossary_entry_definition] = STATE(94), + [sym_glossary_entry_reference] = STATE(94), + [sym_acronym_definition] = STATE(94), + [sym_acronym_reference] = STATE(94), + [sym_theorem_definition] = STATE(94), + [sym_color_definition] = STATE(94), + [sym_color_set_definition] = STATE(94), + [sym_color_reference] = STATE(94), + [sym_tikz_library_import] = STATE(94), + [sym_text_mode] = STATE(94), + [aux_sym_source_file_repeat1] = STATE(94), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1417), + [anon_sym_RPAREN] = ACTIONS(1417), + [anon_sym_LBRACK] = ACTIONS(1417), + [anon_sym_RBRACK] = ACTIONS(1417), + [anon_sym_COMMA] = ACTIONS(1417), + [anon_sym_EQ] = ACTIONS(1417), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1419), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, - [96] = { - [sym_block_comment] = STATE(84), - [sym__root_content] = STATE(84), - [sym__flat_content] = STATE(84), - [sym__text_with_env_content] = STATE(84), - [sym__text_content] = STATE(84), - [sym__section] = STATE(84), - [sym__part_declaration] = STATE(124), + [106] = { + [sym_block_comment] = STATE(92), + [sym__root_content] = STATE(92), + [sym__flat_content] = STATE(92), + [sym__text_with_env_content] = STATE(92), + [sym__text_content] = STATE(92), + [sym__section] = STATE(92), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(84), - [sym_text] = STATE(84), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(84), - [sym_inline_formula] = STATE(84), - [sym_math_set] = STATE(84), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(84), - [sym_comment_environment] = STATE(84), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(84), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(84), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(84), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(84), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(84), - [sym_generic_command] = STATE(84), - [sym_package_include] = STATE(84), - [sym_class_include] = STATE(84), - [sym_latex_include] = STATE(84), - [sym_biblatex_include] = STATE(84), - [sym_bibtex_include] = STATE(84), - [sym_graphics_include] = STATE(84), - [sym_svg_include] = STATE(84), - [sym_inkscape_include] = STATE(84), - [sym_verbatim_include] = STATE(84), - [sym_import_include] = STATE(84), - [sym_caption] = STATE(84), - [sym_citation] = STATE(84), - [sym_label_definition] = STATE(84), - [sym_label_reference] = STATE(84), - [sym_label_reference_range] = STATE(84), - [sym_label_number] = STATE(84), - [sym_new_command_definition] = STATE(84), - [sym_old_command_definition] = STATE(84), - [sym_let_command_definition] = STATE(84), - [sym_environment_definition] = STATE(84), - [sym_glossary_entry_definition] = STATE(84), - [sym_glossary_entry_reference] = STATE(84), - [sym_acronym_definition] = STATE(84), - [sym_acronym_reference] = STATE(84), - [sym_theorem_definition] = STATE(84), - [sym_color_definition] = STATE(84), - [sym_color_set_definition] = STATE(84), - [sym_color_reference] = STATE(84), - [sym_tikz_library_import] = STATE(84), - [aux_sym_source_file_repeat1] = STATE(84), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(92), + [sym_text] = STATE(92), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(92), + [sym_inline_formula] = STATE(92), + [sym_math_set] = STATE(92), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(92), + [sym_comment_environment] = STATE(92), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(92), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(92), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(92), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(92), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(92), + [sym_generic_command] = STATE(92), + [sym_package_include] = STATE(92), + [sym_class_include] = STATE(92), + [sym_latex_include] = STATE(92), + [sym_biblatex_include] = STATE(92), + [sym_bibtex_include] = STATE(92), + [sym_graphics_include] = STATE(92), + [sym_svg_include] = STATE(92), + [sym_inkscape_include] = STATE(92), + [sym_verbatim_include] = STATE(92), + [sym_import_include] = STATE(92), + [sym_caption] = STATE(92), + [sym_citation] = STATE(92), + [sym_label_definition] = STATE(92), + [sym_label_reference] = STATE(92), + [sym_label_reference_range] = STATE(92), + [sym_label_number] = STATE(92), + [sym_new_command_definition] = STATE(92), + [sym_old_command_definition] = STATE(92), + [sym_let_command_definition] = STATE(92), + [sym_environment_definition] = STATE(92), + [sym_glossary_entry_definition] = STATE(92), + [sym_glossary_entry_reference] = STATE(92), + [sym_acronym_definition] = STATE(92), + [sym_acronym_reference] = STATE(92), + [sym_theorem_definition] = STATE(92), + [sym_color_definition] = STATE(92), + [sym_color_set_definition] = STATE(92), + [sym_color_reference] = STATE(92), + [sym_tikz_library_import] = STATE(92), + [sym_text_mode] = STATE(92), + [aux_sym_source_file_repeat1] = STATE(92), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1378), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1380), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [97] = { - [sym_block_comment] = STATE(113), - [sym__root_content] = STATE(113), - [sym__flat_content] = STATE(113), - [sym__text_with_env_content] = STATE(113), - [sym__text_content] = STATE(113), - [sym__section] = STATE(113), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(113), - [sym_text] = STATE(113), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(113), - [sym_inline_formula] = STATE(113), - [sym_math_set] = STATE(113), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(113), - [sym_comment_environment] = STATE(113), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(113), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(113), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(113), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(113), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(113), - [sym_generic_command] = STATE(113), - [sym_package_include] = STATE(113), - [sym_class_include] = STATE(113), - [sym_latex_include] = STATE(113), - [sym_biblatex_include] = STATE(113), - [sym_bibtex_include] = STATE(113), - [sym_graphics_include] = STATE(113), - [sym_svg_include] = STATE(113), - [sym_inkscape_include] = STATE(113), - [sym_verbatim_include] = STATE(113), - [sym_import_include] = STATE(113), - [sym_caption] = STATE(113), - [sym_citation] = STATE(113), - [sym_label_definition] = STATE(113), - [sym_label_reference] = STATE(113), - [sym_label_reference_range] = STATE(113), - [sym_label_number] = STATE(113), - [sym_new_command_definition] = STATE(113), - [sym_old_command_definition] = STATE(113), - [sym_let_command_definition] = STATE(113), - [sym_environment_definition] = STATE(113), - [sym_glossary_entry_definition] = STATE(113), - [sym_glossary_entry_reference] = STATE(113), - [sym_acronym_definition] = STATE(113), - [sym_acronym_reference] = STATE(113), - [sym_theorem_definition] = STATE(113), - [sym_color_definition] = STATE(113), - [sym_color_set_definition] = STATE(113), - [sym_color_reference] = STATE(113), - [sym_tikz_library_import] = STATE(113), - [aux_sym_source_file_repeat1] = STATE(113), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_RBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(760), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1382), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_RBRACK] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1421), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1423), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1425), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [98] = { - [sym_block_comment] = STATE(113), - [sym__root_content] = STATE(113), - [sym__flat_content] = STATE(113), - [sym__text_with_env_content] = STATE(113), - [sym__text_content] = STATE(113), - [sym__section] = STATE(113), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), + [107] = { + [sym_block_comment] = STATE(115), + [sym__root_content] = STATE(115), + [sym__flat_content] = STATE(115), + [sym__text_with_env_content] = STATE(115), + [sym__text_content] = STATE(115), + [sym__section] = STATE(115), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(113), - [sym_text] = STATE(113), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(113), - [sym_inline_formula] = STATE(113), - [sym_math_set] = STATE(113), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(113), - [sym_comment_environment] = STATE(113), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(113), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(113), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(113), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(113), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(113), - [sym_generic_command] = STATE(113), - [sym_package_include] = STATE(113), - [sym_class_include] = STATE(113), - [sym_latex_include] = STATE(113), - [sym_biblatex_include] = STATE(113), - [sym_bibtex_include] = STATE(113), - [sym_graphics_include] = STATE(113), - [sym_svg_include] = STATE(113), - [sym_inkscape_include] = STATE(113), - [sym_verbatim_include] = STATE(113), - [sym_import_include] = STATE(113), - [sym_caption] = STATE(113), - [sym_citation] = STATE(113), - [sym_label_definition] = STATE(113), - [sym_label_reference] = STATE(113), - [sym_label_reference_range] = STATE(113), - [sym_label_number] = STATE(113), - [sym_new_command_definition] = STATE(113), - [sym_old_command_definition] = STATE(113), - [sym_let_command_definition] = STATE(113), - [sym_environment_definition] = STATE(113), - [sym_glossary_entry_definition] = STATE(113), - [sym_glossary_entry_reference] = STATE(113), - [sym_acronym_definition] = STATE(113), - [sym_acronym_reference] = STATE(113), - [sym_theorem_definition] = STATE(113), - [sym_color_definition] = STATE(113), - [sym_color_set_definition] = STATE(113), - [sym_color_reference] = STATE(113), - [sym_tikz_library_import] = STATE(113), - [aux_sym_source_file_repeat1] = STATE(113), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_RBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(760), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1384), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [sym_paragraph] = STATE(408), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(115), + [sym_text] = STATE(115), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(115), + [sym_inline_formula] = STATE(115), + [sym_math_set] = STATE(115), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(115), + [sym_comment_environment] = STATE(115), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(115), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(115), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(115), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(115), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(115), + [sym_generic_command] = STATE(115), + [sym_package_include] = STATE(115), + [sym_class_include] = STATE(115), + [sym_latex_include] = STATE(115), + [sym_biblatex_include] = STATE(115), + [sym_bibtex_include] = STATE(115), + [sym_graphics_include] = STATE(115), + [sym_svg_include] = STATE(115), + [sym_inkscape_include] = STATE(115), + [sym_verbatim_include] = STATE(115), + [sym_import_include] = STATE(115), + [sym_caption] = STATE(115), + [sym_citation] = STATE(115), + [sym_label_definition] = STATE(115), + [sym_label_reference] = STATE(115), + [sym_label_reference_range] = STATE(115), + [sym_label_number] = STATE(115), + [sym_new_command_definition] = STATE(115), + [sym_old_command_definition] = STATE(115), + [sym_let_command_definition] = STATE(115), + [sym_environment_definition] = STATE(115), + [sym_glossary_entry_definition] = STATE(115), + [sym_glossary_entry_reference] = STATE(115), + [sym_acronym_definition] = STATE(115), + [sym_acronym_reference] = STATE(115), + [sym_theorem_definition] = STATE(115), + [sym_color_definition] = STATE(115), + [sym_color_set_definition] = STATE(115), + [sym_color_reference] = STATE(115), + [sym_tikz_library_import] = STATE(115), + [sym_text_mode] = STATE(115), + [aux_sym_source_file_repeat1] = STATE(115), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(649), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_EQ] = ACTIONS(649), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1427), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, - [99] = { - [sym_block_comment] = STATE(96), - [sym__root_content] = STATE(96), - [sym__flat_content] = STATE(96), - [sym__text_with_env_content] = STATE(96), - [sym__text_content] = STATE(96), - [sym__section] = STATE(96), - [sym__part_declaration] = STATE(124), + [108] = { + [sym_block_comment] = STATE(65), + [sym__root_content] = STATE(65), + [sym__flat_content] = STATE(65), + [sym__text_with_env_content] = STATE(65), + [sym__text_content] = STATE(65), + [sym__section] = STATE(65), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(96), - [sym_text] = STATE(96), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(96), - [sym_inline_formula] = STATE(96), - [sym_math_set] = STATE(96), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(96), - [sym_comment_environment] = STATE(96), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(96), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(96), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(96), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(96), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(96), - [sym_generic_command] = STATE(96), - [sym_package_include] = STATE(96), - [sym_class_include] = STATE(96), - [sym_latex_include] = STATE(96), - [sym_biblatex_include] = STATE(96), - [sym_bibtex_include] = STATE(96), - [sym_graphics_include] = STATE(96), - [sym_svg_include] = STATE(96), - [sym_inkscape_include] = STATE(96), - [sym_verbatim_include] = STATE(96), - [sym_import_include] = STATE(96), - [sym_caption] = STATE(96), - [sym_citation] = STATE(96), - [sym_label_definition] = STATE(96), - [sym_label_reference] = STATE(96), - [sym_label_reference_range] = STATE(96), - [sym_label_number] = STATE(96), - [sym_new_command_definition] = STATE(96), - [sym_old_command_definition] = STATE(96), - [sym_let_command_definition] = STATE(96), - [sym_environment_definition] = STATE(96), - [sym_glossary_entry_definition] = STATE(96), - [sym_glossary_entry_reference] = STATE(96), - [sym_acronym_definition] = STATE(96), - [sym_acronym_reference] = STATE(96), - [sym_theorem_definition] = STATE(96), - [sym_color_definition] = STATE(96), - [sym_color_set_definition] = STATE(96), - [sym_color_reference] = STATE(96), - [sym_tikz_library_import] = STATE(96), - [aux_sym_source_file_repeat1] = STATE(96), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(65), + [sym_text] = STATE(65), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(65), + [sym_inline_formula] = STATE(65), + [sym_math_set] = STATE(65), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(65), + [sym_comment_environment] = STATE(65), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(65), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(65), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(65), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(65), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(65), + [sym_generic_command] = STATE(65), + [sym_package_include] = STATE(65), + [sym_class_include] = STATE(65), + [sym_latex_include] = STATE(65), + [sym_biblatex_include] = STATE(65), + [sym_bibtex_include] = STATE(65), + [sym_graphics_include] = STATE(65), + [sym_svg_include] = STATE(65), + [sym_inkscape_include] = STATE(65), + [sym_verbatim_include] = STATE(65), + [sym_import_include] = STATE(65), + [sym_caption] = STATE(65), + [sym_citation] = STATE(65), + [sym_label_definition] = STATE(65), + [sym_label_reference] = STATE(65), + [sym_label_reference_range] = STATE(65), + [sym_label_number] = STATE(65), + [sym_new_command_definition] = STATE(65), + [sym_old_command_definition] = STATE(65), + [sym_let_command_definition] = STATE(65), + [sym_environment_definition] = STATE(65), + [sym_glossary_entry_definition] = STATE(65), + [sym_glossary_entry_reference] = STATE(65), + [sym_acronym_definition] = STATE(65), + [sym_acronym_reference] = STATE(65), + [sym_theorem_definition] = STATE(65), + [sym_color_definition] = STATE(65), + [sym_color_set_definition] = STATE(65), + [sym_color_reference] = STATE(65), + [sym_tikz_library_import] = STATE(65), + [sym_text_mode] = STATE(65), + [aux_sym_source_file_repeat1] = STATE(65), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1386), - [anon_sym_RPAREN] = ACTIONS(1386), - [anon_sym_LBRACK] = ACTIONS(1386), - [anon_sym_RBRACK] = ACTIONS(1386), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_EQ] = ACTIONS(1386), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1388), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1390), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [100] = { - [sym_block_comment] = STATE(87), - [sym__root_content] = STATE(87), - [sym__flat_content] = STATE(87), - [sym__text_with_env_content] = STATE(87), - [sym__text_content] = STATE(87), - [sym__section] = STATE(87), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(87), - [sym_text] = STATE(87), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(87), - [sym_inline_formula] = STATE(87), - [sym_math_set] = STATE(87), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(87), - [sym_comment_environment] = STATE(87), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(87), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(87), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(87), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(87), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(87), - [sym_generic_command] = STATE(87), - [sym_package_include] = STATE(87), - [sym_class_include] = STATE(87), - [sym_latex_include] = STATE(87), - [sym_biblatex_include] = STATE(87), - [sym_bibtex_include] = STATE(87), - [sym_graphics_include] = STATE(87), - [sym_svg_include] = STATE(87), - [sym_inkscape_include] = STATE(87), - [sym_verbatim_include] = STATE(87), - [sym_import_include] = STATE(87), - [sym_caption] = STATE(87), - [sym_citation] = STATE(87), - [sym_label_definition] = STATE(87), - [sym_label_reference] = STATE(87), - [sym_label_reference_range] = STATE(87), - [sym_label_number] = STATE(87), - [sym_new_command_definition] = STATE(87), - [sym_old_command_definition] = STATE(87), - [sym_let_command_definition] = STATE(87), - [sym_environment_definition] = STATE(87), - [sym_glossary_entry_definition] = STATE(87), - [sym_glossary_entry_reference] = STATE(87), - [sym_acronym_definition] = STATE(87), - [sym_acronym_reference] = STATE(87), - [sym_theorem_definition] = STATE(87), - [sym_color_definition] = STATE(87), - [sym_color_set_definition] = STATE(87), - [sym_color_reference] = STATE(87), - [sym_tikz_library_import] = STATE(87), - [aux_sym_source_file_repeat1] = STATE(87), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_RBRACK] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1392), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [101] = { - [sym_block_comment] = STATE(113), - [sym__root_content] = STATE(113), - [sym__flat_content] = STATE(113), - [sym__text_with_env_content] = STATE(113), - [sym__text_content] = STATE(113), - [sym__section] = STATE(113), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(113), - [sym_text] = STATE(113), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(113), - [sym_inline_formula] = STATE(113), - [sym_math_set] = STATE(113), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(113), - [sym_comment_environment] = STATE(113), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(113), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(113), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(113), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(113), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(113), - [sym_generic_command] = STATE(113), - [sym_package_include] = STATE(113), - [sym_class_include] = STATE(113), - [sym_latex_include] = STATE(113), - [sym_biblatex_include] = STATE(113), - [sym_bibtex_include] = STATE(113), - [sym_graphics_include] = STATE(113), - [sym_svg_include] = STATE(113), - [sym_inkscape_include] = STATE(113), - [sym_verbatim_include] = STATE(113), - [sym_import_include] = STATE(113), - [sym_caption] = STATE(113), - [sym_citation] = STATE(113), - [sym_label_definition] = STATE(113), - [sym_label_reference] = STATE(113), - [sym_label_reference_range] = STATE(113), - [sym_label_number] = STATE(113), - [sym_new_command_definition] = STATE(113), - [sym_old_command_definition] = STATE(113), - [sym_let_command_definition] = STATE(113), - [sym_environment_definition] = STATE(113), - [sym_glossary_entry_definition] = STATE(113), - [sym_glossary_entry_reference] = STATE(113), - [sym_acronym_definition] = STATE(113), - [sym_acronym_reference] = STATE(113), - [sym_theorem_definition] = STATE(113), - [sym_color_definition] = STATE(113), - [sym_color_set_definition] = STATE(113), - [sym_color_reference] = STATE(113), - [sym_tikz_library_import] = STATE(113), - [aux_sym_source_file_repeat1] = STATE(113), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(760), - [anon_sym_RPAREN] = ACTIONS(760), - [anon_sym_LBRACK] = ACTIONS(760), - [anon_sym_RBRACK] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(760), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1396), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHchapter] = ACTIONS(143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddchap] = ACTIONS(143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), + [anon_sym_BSLASHsection] = ACTIONS(143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddsec] = ACTIONS(143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHparagraph] = ACTIONS(143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHitem] = ACTIONS(143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_RPAREN] = ACTIONS(141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), }, - [102] = { - [sym_block_comment] = STATE(84), - [sym__root_content] = STATE(84), - [sym__flat_content] = STATE(84), - [sym__text_with_env_content] = STATE(84), - [sym__text_content] = STATE(84), - [sym__section] = STATE(84), - [sym__part_declaration] = STATE(124), + [109] = { + [sym_block_comment] = STATE(79), + [sym__root_content] = STATE(79), + [sym__flat_content] = STATE(79), + [sym__text_with_env_content] = STATE(79), + [sym__text_content] = STATE(79), + [sym__section] = STATE(79), + [sym__part_declaration] = STATE(129), [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), + [sym__chapter_declaration] = STATE(139), [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(84), - [sym_text] = STATE(84), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(84), - [sym_inline_formula] = STATE(84), - [sym_math_set] = STATE(84), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(84), - [sym_comment_environment] = STATE(84), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(84), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(84), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(84), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(84), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(84), - [sym_generic_command] = STATE(84), - [sym_package_include] = STATE(84), - [sym_class_include] = STATE(84), - [sym_latex_include] = STATE(84), - [sym_biblatex_include] = STATE(84), - [sym_bibtex_include] = STATE(84), - [sym_graphics_include] = STATE(84), - [sym_svg_include] = STATE(84), - [sym_inkscape_include] = STATE(84), - [sym_verbatim_include] = STATE(84), - [sym_import_include] = STATE(84), - [sym_caption] = STATE(84), - [sym_citation] = STATE(84), - [sym_label_definition] = STATE(84), - [sym_label_reference] = STATE(84), - [sym_label_reference_range] = STATE(84), - [sym_label_number] = STATE(84), - [sym_new_command_definition] = STATE(84), - [sym_old_command_definition] = STATE(84), - [sym_let_command_definition] = STATE(84), - [sym_environment_definition] = STATE(84), - [sym_glossary_entry_definition] = STATE(84), - [sym_glossary_entry_reference] = STATE(84), - [sym_acronym_definition] = STATE(84), - [sym_acronym_reference] = STATE(84), - [sym_theorem_definition] = STATE(84), - [sym_color_definition] = STATE(84), - [sym_color_set_definition] = STATE(84), - [sym_color_reference] = STATE(84), - [sym_tikz_library_import] = STATE(84), - [aux_sym_source_file_repeat1] = STATE(84), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(79), + [sym_text] = STATE(79), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(79), + [sym_inline_formula] = STATE(79), + [sym_math_set] = STATE(79), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(79), + [sym_comment_environment] = STATE(79), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(79), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(79), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(79), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(79), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(79), + [sym_generic_command] = STATE(79), + [sym_package_include] = STATE(79), + [sym_class_include] = STATE(79), + [sym_latex_include] = STATE(79), + [sym_biblatex_include] = STATE(79), + [sym_bibtex_include] = STATE(79), + [sym_graphics_include] = STATE(79), + [sym_svg_include] = STATE(79), + [sym_inkscape_include] = STATE(79), + [sym_verbatim_include] = STATE(79), + [sym_import_include] = STATE(79), + [sym_caption] = STATE(79), + [sym_citation] = STATE(79), + [sym_label_definition] = STATE(79), + [sym_label_reference] = STATE(79), + [sym_label_reference_range] = STATE(79), + [sym_label_number] = STATE(79), + [sym_new_command_definition] = STATE(79), + [sym_old_command_definition] = STATE(79), + [sym_let_command_definition] = STATE(79), + [sym_environment_definition] = STATE(79), + [sym_glossary_entry_definition] = STATE(79), + [sym_glossary_entry_reference] = STATE(79), + [sym_acronym_definition] = STATE(79), + [sym_acronym_reference] = STATE(79), + [sym_theorem_definition] = STATE(79), + [sym_color_definition] = STATE(79), + [sym_color_set_definition] = STATE(79), + [sym_color_reference] = STATE(79), + [sym_tikz_library_import] = STATE(79), + [sym_text_mode] = STATE(79), + [aux_sym_source_file_repeat1] = STATE(79), [aux_sym__section_repeat1] = STATE(646), [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1398), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1400), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_LBRACK] = ACTIONS(557), + [anon_sym_RBRACK] = ACTIONS(557), + [anon_sym_COMMA] = ACTIONS(557), + [anon_sym_EQ] = ACTIONS(557), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1431), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [103] = { - [sym_block_comment] = STATE(87), - [sym__root_content] = STATE(87), - [sym__flat_content] = STATE(87), - [sym__text_with_env_content] = STATE(87), - [sym__text_content] = STATE(87), - [sym__section] = STATE(87), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(87), - [sym_text] = STATE(87), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(87), - [sym_inline_formula] = STATE(87), - [sym_math_set] = STATE(87), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(87), - [sym_comment_environment] = STATE(87), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(87), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(87), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(87), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(87), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(87), - [sym_generic_command] = STATE(87), - [sym_package_include] = STATE(87), - [sym_class_include] = STATE(87), - [sym_latex_include] = STATE(87), - [sym_biblatex_include] = STATE(87), - [sym_bibtex_include] = STATE(87), - [sym_graphics_include] = STATE(87), - [sym_svg_include] = STATE(87), - [sym_inkscape_include] = STATE(87), - [sym_verbatim_include] = STATE(87), - [sym_import_include] = STATE(87), - [sym_caption] = STATE(87), - [sym_citation] = STATE(87), - [sym_label_definition] = STATE(87), - [sym_label_reference] = STATE(87), - [sym_label_reference_range] = STATE(87), - [sym_label_number] = STATE(87), - [sym_new_command_definition] = STATE(87), - [sym_old_command_definition] = STATE(87), - [sym_let_command_definition] = STATE(87), - [sym_environment_definition] = STATE(87), - [sym_glossary_entry_definition] = STATE(87), - [sym_glossary_entry_reference] = STATE(87), - [sym_acronym_definition] = STATE(87), - [sym_acronym_reference] = STATE(87), - [sym_theorem_definition] = STATE(87), - [sym_color_definition] = STATE(87), - [sym_color_set_definition] = STATE(87), - [sym_color_reference] = STATE(87), - [sym_tikz_library_import] = STATE(87), - [aux_sym_source_file_repeat1] = STATE(87), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(556), - [anon_sym_RPAREN] = ACTIONS(556), - [anon_sym_LBRACK] = ACTIONS(556), - [anon_sym_RBRACK] = ACTIONS(556), - [anon_sym_COMMA] = ACTIONS(556), - [anon_sym_EQ] = ACTIONS(556), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1402), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1404), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [110] = { + [sym_block_comment] = STATE(58), + [sym__root_content] = STATE(58), + [sym__flat_content] = STATE(58), + [sym__text_with_env_content] = STATE(58), + [sym__text_content] = STATE(58), + [sym__section] = STATE(58), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(58), + [sym_text] = STATE(58), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(58), + [sym_inline_formula] = STATE(58), + [sym_math_set] = STATE(58), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(58), + [sym_comment_environment] = STATE(58), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(58), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(58), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(58), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(58), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(58), + [sym_generic_command] = STATE(58), + [sym_package_include] = STATE(58), + [sym_class_include] = STATE(58), + [sym_latex_include] = STATE(58), + [sym_biblatex_include] = STATE(58), + [sym_bibtex_include] = STATE(58), + [sym_graphics_include] = STATE(58), + [sym_svg_include] = STATE(58), + [sym_inkscape_include] = STATE(58), + [sym_verbatim_include] = STATE(58), + [sym_import_include] = STATE(58), + [sym_caption] = STATE(58), + [sym_citation] = STATE(58), + [sym_label_definition] = STATE(58), + [sym_label_reference] = STATE(58), + [sym_label_reference_range] = STATE(58), + [sym_label_number] = STATE(58), + [sym_new_command_definition] = STATE(58), + [sym_old_command_definition] = STATE(58), + [sym_let_command_definition] = STATE(58), + [sym_environment_definition] = STATE(58), + [sym_glossary_entry_definition] = STATE(58), + [sym_glossary_entry_reference] = STATE(58), + [sym_acronym_definition] = STATE(58), + [sym_acronym_reference] = STATE(58), + [sym_theorem_definition] = STATE(58), + [sym_color_definition] = STATE(58), + [sym_color_set_definition] = STATE(58), + [sym_color_reference] = STATE(58), + [sym_tikz_library_import] = STATE(58), + [sym_text_mode] = STATE(58), + [aux_sym_source_file_repeat1] = STATE(58), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_BSLASHpart] = ACTIONS(133), + [anon_sym_BSLASHpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddpart] = ACTIONS(133), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHchapter] = ACTIONS(133), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddchap] = ACTIONS(133), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), + [anon_sym_BSLASHsection] = ACTIONS(133), + [anon_sym_BSLASHsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddsec] = ACTIONS(133), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHparagraph] = ACTIONS(133), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubparagraph] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHitem] = ACTIONS(133), + [anon_sym_BSLASHitem_STAR] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_BSLASH_RBRACK] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), + }, + [111] = { + [sym_block_comment] = STATE(89), + [sym__root_content] = STATE(89), + [sym__flat_content] = STATE(89), + [sym__text_with_env_content] = STATE(89), + [sym__text_content] = STATE(89), + [sym__section] = STATE(89), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(89), + [sym_text] = STATE(89), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(89), + [sym_inline_formula] = STATE(89), + [sym_math_set] = STATE(89), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(89), + [sym_comment_environment] = STATE(89), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(89), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(89), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(89), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(89), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(89), + [sym_generic_command] = STATE(89), + [sym_package_include] = STATE(89), + [sym_class_include] = STATE(89), + [sym_latex_include] = STATE(89), + [sym_biblatex_include] = STATE(89), + [sym_bibtex_include] = STATE(89), + [sym_graphics_include] = STATE(89), + [sym_svg_include] = STATE(89), + [sym_inkscape_include] = STATE(89), + [sym_verbatim_include] = STATE(89), + [sym_import_include] = STATE(89), + [sym_caption] = STATE(89), + [sym_citation] = STATE(89), + [sym_label_definition] = STATE(89), + [sym_label_reference] = STATE(89), + [sym_label_reference_range] = STATE(89), + [sym_label_number] = STATE(89), + [sym_new_command_definition] = STATE(89), + [sym_old_command_definition] = STATE(89), + [sym_let_command_definition] = STATE(89), + [sym_environment_definition] = STATE(89), + [sym_glossary_entry_definition] = STATE(89), + [sym_glossary_entry_reference] = STATE(89), + [sym_acronym_definition] = STATE(89), + [sym_acronym_reference] = STATE(89), + [sym_theorem_definition] = STATE(89), + [sym_color_definition] = STATE(89), + [sym_color_set_definition] = STATE(89), + [sym_color_reference] = STATE(89), + [sym_tikz_library_import] = STATE(89), + [sym_text_mode] = STATE(89), + [aux_sym_source_file_repeat1] = STATE(89), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_RPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_RBRACK] = ACTIONS(1433), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1433), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1435), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, - [104] = { - [sym_block_comment] = STATE(24), - [sym__root_content] = STATE(24), - [sym__flat_content] = STATE(24), - [sym__text_with_env_content] = STATE(24), - [sym__text_content] = STATE(24), - [sym__section] = STATE(24), + [112] = { + [sym_block_comment] = STATE(104), + [sym__root_content] = STATE(104), + [sym__flat_content] = STATE(104), + [sym__text_with_env_content] = STATE(104), + [sym__text_content] = STATE(104), + [sym__section] = STATE(104), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(430), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(104), + [sym_text] = STATE(104), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(104), + [sym_inline_formula] = STATE(104), + [sym_math_set] = STATE(104), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(104), + [sym_comment_environment] = STATE(104), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(104), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(104), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(104), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(104), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(104), + [sym_generic_command] = STATE(104), + [sym_package_include] = STATE(104), + [sym_class_include] = STATE(104), + [sym_latex_include] = STATE(104), + [sym_biblatex_include] = STATE(104), + [sym_bibtex_include] = STATE(104), + [sym_graphics_include] = STATE(104), + [sym_svg_include] = STATE(104), + [sym_inkscape_include] = STATE(104), + [sym_verbatim_include] = STATE(104), + [sym_import_include] = STATE(104), + [sym_caption] = STATE(104), + [sym_citation] = STATE(104), + [sym_label_definition] = STATE(104), + [sym_label_reference] = STATE(104), + [sym_label_reference_range] = STATE(104), + [sym_label_number] = STATE(104), + [sym_new_command_definition] = STATE(104), + [sym_old_command_definition] = STATE(104), + [sym_let_command_definition] = STATE(104), + [sym_environment_definition] = STATE(104), + [sym_glossary_entry_definition] = STATE(104), + [sym_glossary_entry_reference] = STATE(104), + [sym_acronym_definition] = STATE(104), + [sym_acronym_reference] = STATE(104), + [sym_theorem_definition] = STATE(104), + [sym_color_definition] = STATE(104), + [sym_color_set_definition] = STATE(104), + [sym_color_reference] = STATE(104), + [sym_tikz_library_import] = STATE(104), + [sym_text_mode] = STATE(104), + [aux_sym_source_file_repeat1] = STATE(104), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(787), + [anon_sym_COMMA] = ACTIONS(787), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1439), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [113] = { + [sym_block_comment] = STATE(59), + [sym__root_content] = STATE(59), + [sym__flat_content] = STATE(59), + [sym__text_with_env_content] = STATE(59), + [sym__text_content] = STATE(59), + [sym__section] = STATE(59), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(24), - [sym_text] = STATE(24), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(24), - [sym_inline_formula] = STATE(24), - [sym_math_set] = STATE(24), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(24), - [sym_comment_environment] = STATE(24), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(24), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(24), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(24), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(24), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(24), - [sym_generic_command] = STATE(24), - [sym_package_include] = STATE(24), - [sym_class_include] = STATE(24), - [sym_latex_include] = STATE(24), - [sym_biblatex_include] = STATE(24), - [sym_bibtex_include] = STATE(24), - [sym_graphics_include] = STATE(24), - [sym_svg_include] = STATE(24), - [sym_inkscape_include] = STATE(24), - [sym_verbatim_include] = STATE(24), - [sym_import_include] = STATE(24), - [sym_caption] = STATE(24), - [sym_citation] = STATE(24), - [sym_label_definition] = STATE(24), - [sym_label_reference] = STATE(24), - [sym_label_reference_range] = STATE(24), - [sym_label_number] = STATE(24), - [sym_new_command_definition] = STATE(24), - [sym_old_command_definition] = STATE(24), - [sym_let_command_definition] = STATE(24), - [sym_environment_definition] = STATE(24), - [sym_glossary_entry_definition] = STATE(24), - [sym_glossary_entry_reference] = STATE(24), - [sym_acronym_definition] = STATE(24), - [sym_acronym_reference] = STATE(24), - [sym_theorem_definition] = STATE(24), - [sym_color_definition] = STATE(24), - [sym_color_set_definition] = STATE(24), - [sym_color_reference] = STATE(24), - [sym_tikz_library_import] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(59), + [sym_text] = STATE(59), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(59), + [sym_inline_formula] = STATE(59), + [sym_math_set] = STATE(59), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(59), + [sym_comment_environment] = STATE(59), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(59), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(59), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(59), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(59), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(59), + [sym_generic_command] = STATE(59), + [sym_package_include] = STATE(59), + [sym_class_include] = STATE(59), + [sym_latex_include] = STATE(59), + [sym_biblatex_include] = STATE(59), + [sym_bibtex_include] = STATE(59), + [sym_graphics_include] = STATE(59), + [sym_svg_include] = STATE(59), + [sym_inkscape_include] = STATE(59), + [sym_verbatim_include] = STATE(59), + [sym_import_include] = STATE(59), + [sym_caption] = STATE(59), + [sym_citation] = STATE(59), + [sym_label_definition] = STATE(59), + [sym_label_reference] = STATE(59), + [sym_label_reference_range] = STATE(59), + [sym_label_number] = STATE(59), + [sym_new_command_definition] = STATE(59), + [sym_old_command_definition] = STATE(59), + [sym_let_command_definition] = STATE(59), + [sym_environment_definition] = STATE(59), + [sym_glossary_entry_definition] = STATE(59), + [sym_glossary_entry_reference] = STATE(59), + [sym_acronym_definition] = STATE(59), + [sym_acronym_reference] = STATE(59), + [sym_theorem_definition] = STATE(59), + [sym_color_definition] = STATE(59), + [sym_color_set_definition] = STATE(59), + [sym_color_reference] = STATE(59), + [sym_tikz_library_import] = STATE(59), + [sym_text_mode] = STATE(59), + [aux_sym_source_file_repeat1] = STATE(59), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_EQ] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_RBRACK] = ACTIONS(1443), + [anon_sym_COMMA] = ACTIONS(1443), + [anon_sym_EQ] = ACTIONS(1443), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -56312,7 +57704,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_RBRACE] = ACTIONS(1445), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -56546,1849 +57938,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [105] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(183), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), - }, - [106] = { - [sym_block_comment] = STATE(98), - [sym__root_content] = STATE(98), - [sym__flat_content] = STATE(98), - [sym__text_with_env_content] = STATE(98), - [sym__text_content] = STATE(98), - [sym__section] = STATE(98), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(98), - [sym_text] = STATE(98), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(98), - [sym_inline_formula] = STATE(98), - [sym_math_set] = STATE(98), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(98), - [sym_comment_environment] = STATE(98), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(98), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(98), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(98), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(98), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(98), - [sym_generic_command] = STATE(98), - [sym_package_include] = STATE(98), - [sym_class_include] = STATE(98), - [sym_latex_include] = STATE(98), - [sym_biblatex_include] = STATE(98), - [sym_bibtex_include] = STATE(98), - [sym_graphics_include] = STATE(98), - [sym_svg_include] = STATE(98), - [sym_inkscape_include] = STATE(98), - [sym_verbatim_include] = STATE(98), - [sym_import_include] = STATE(98), - [sym_caption] = STATE(98), - [sym_citation] = STATE(98), - [sym_label_definition] = STATE(98), - [sym_label_reference] = STATE(98), - [sym_label_reference_range] = STATE(98), - [sym_label_number] = STATE(98), - [sym_new_command_definition] = STATE(98), - [sym_old_command_definition] = STATE(98), - [sym_let_command_definition] = STATE(98), - [sym_environment_definition] = STATE(98), - [sym_glossary_entry_definition] = STATE(98), - [sym_glossary_entry_reference] = STATE(98), - [sym_acronym_definition] = STATE(98), - [sym_acronym_reference] = STATE(98), - [sym_theorem_definition] = STATE(98), - [sym_color_definition] = STATE(98), - [sym_color_set_definition] = STATE(98), - [sym_color_reference] = STATE(98), - [sym_tikz_library_import] = STATE(98), - [aux_sym_source_file_repeat1] = STATE(98), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_RPAREN] = ACTIONS(1408), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_RBRACK] = ACTIONS(1408), - [anon_sym_COMMA] = ACTIONS(1408), - [anon_sym_EQ] = ACTIONS(1408), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1410), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [107] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(183), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - }, - [108] = { - [sym_block_comment] = STATE(90), - [sym__root_content] = STATE(90), - [sym__flat_content] = STATE(90), - [sym__text_with_env_content] = STATE(90), - [sym__text_content] = STATE(90), - [sym__section] = STATE(90), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(90), - [sym_text] = STATE(90), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(90), - [sym_inline_formula] = STATE(90), - [sym_math_set] = STATE(90), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(90), - [sym_comment_environment] = STATE(90), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(90), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(90), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(90), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(90), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(90), - [sym_generic_command] = STATE(90), - [sym_package_include] = STATE(90), - [sym_class_include] = STATE(90), - [sym_latex_include] = STATE(90), - [sym_biblatex_include] = STATE(90), - [sym_bibtex_include] = STATE(90), - [sym_graphics_include] = STATE(90), - [sym_svg_include] = STATE(90), - [sym_inkscape_include] = STATE(90), - [sym_verbatim_include] = STATE(90), - [sym_import_include] = STATE(90), - [sym_caption] = STATE(90), - [sym_citation] = STATE(90), - [sym_label_definition] = STATE(90), - [sym_label_reference] = STATE(90), - [sym_label_reference_range] = STATE(90), - [sym_label_number] = STATE(90), - [sym_new_command_definition] = STATE(90), - [sym_old_command_definition] = STATE(90), - [sym_let_command_definition] = STATE(90), - [sym_environment_definition] = STATE(90), - [sym_glossary_entry_definition] = STATE(90), - [sym_glossary_entry_reference] = STATE(90), - [sym_acronym_definition] = STATE(90), - [sym_acronym_reference] = STATE(90), - [sym_theorem_definition] = STATE(90), - [sym_color_definition] = STATE(90), - [sym_color_set_definition] = STATE(90), - [sym_color_reference] = STATE(90), - [sym_tikz_library_import] = STATE(90), - [aux_sym_source_file_repeat1] = STATE(90), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_RPAREN] = ACTIONS(1412), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_RBRACK] = ACTIONS(1412), - [anon_sym_COMMA] = ACTIONS(1412), - [anon_sym_EQ] = ACTIONS(1412), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1414), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [109] = { - [sym_block_comment] = STATE(101), - [sym__root_content] = STATE(101), - [sym__flat_content] = STATE(101), - [sym__text_with_env_content] = STATE(101), - [sym__text_content] = STATE(101), - [sym__section] = STATE(101), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(101), - [sym_text] = STATE(101), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(101), - [sym_inline_formula] = STATE(101), - [sym_math_set] = STATE(101), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(101), - [sym_comment_environment] = STATE(101), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(101), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(101), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(101), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(101), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(101), - [sym_generic_command] = STATE(101), - [sym_package_include] = STATE(101), - [sym_class_include] = STATE(101), - [sym_latex_include] = STATE(101), - [sym_biblatex_include] = STATE(101), - [sym_bibtex_include] = STATE(101), - [sym_graphics_include] = STATE(101), - [sym_svg_include] = STATE(101), - [sym_inkscape_include] = STATE(101), - [sym_verbatim_include] = STATE(101), - [sym_import_include] = STATE(101), - [sym_caption] = STATE(101), - [sym_citation] = STATE(101), - [sym_label_definition] = STATE(101), - [sym_label_reference] = STATE(101), - [sym_label_reference_range] = STATE(101), - [sym_label_number] = STATE(101), - [sym_new_command_definition] = STATE(101), - [sym_old_command_definition] = STATE(101), - [sym_let_command_definition] = STATE(101), - [sym_environment_definition] = STATE(101), - [sym_glossary_entry_definition] = STATE(101), - [sym_glossary_entry_reference] = STATE(101), - [sym_acronym_definition] = STATE(101), - [sym_acronym_reference] = STATE(101), - [sym_theorem_definition] = STATE(101), - [sym_color_definition] = STATE(101), - [sym_color_set_definition] = STATE(101), - [sym_color_reference] = STATE(101), - [sym_tikz_library_import] = STATE(101), - [aux_sym_source_file_repeat1] = STATE(101), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_RBRACK] = ACTIONS(1416), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1418), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [110] = { - [sym_block_comment] = STATE(39), - [sym__root_content] = STATE(39), - [sym__flat_content] = STATE(39), - [sym__text_with_env_content] = STATE(39), - [sym__text_content] = STATE(39), - [sym__section] = STATE(39), + [114] = { + [sym_block_comment] = STATE(22), + [sym__root_content] = STATE(22), + [sym__flat_content] = STATE(22), + [sym__text_with_env_content] = STATE(22), + [sym__text_content] = STATE(22), + [sym__section] = STATE(22), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(39), - [sym_text] = STATE(39), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(39), - [sym_inline_formula] = STATE(39), - [sym_math_set] = STATE(39), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(39), - [sym_comment_environment] = STATE(39), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(39), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(39), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(39), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(39), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(39), - [sym_generic_command] = STATE(39), - [sym_package_include] = STATE(39), - [sym_class_include] = STATE(39), - [sym_latex_include] = STATE(39), - [sym_biblatex_include] = STATE(39), - [sym_bibtex_include] = STATE(39), - [sym_graphics_include] = STATE(39), - [sym_svg_include] = STATE(39), - [sym_inkscape_include] = STATE(39), - [sym_verbatim_include] = STATE(39), - [sym_import_include] = STATE(39), - [sym_caption] = STATE(39), - [sym_citation] = STATE(39), - [sym_label_definition] = STATE(39), - [sym_label_reference] = STATE(39), - [sym_label_reference_range] = STATE(39), - [sym_label_number] = STATE(39), - [sym_new_command_definition] = STATE(39), - [sym_old_command_definition] = STATE(39), - [sym_let_command_definition] = STATE(39), - [sym_environment_definition] = STATE(39), - [sym_glossary_entry_definition] = STATE(39), - [sym_glossary_entry_reference] = STATE(39), - [sym_acronym_definition] = STATE(39), - [sym_acronym_reference] = STATE(39), - [sym_theorem_definition] = STATE(39), - [sym_color_definition] = STATE(39), - [sym_color_set_definition] = STATE(39), - [sym_color_reference] = STATE(39), - [sym_tikz_library_import] = STATE(39), - [aux_sym_source_file_repeat1] = STATE(39), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(22), + [sym_text] = STATE(22), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(22), + [sym_inline_formula] = STATE(22), + [sym_math_set] = STATE(22), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(22), + [sym_comment_environment] = STATE(22), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(22), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(22), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(22), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(22), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(22), + [sym_generic_command] = STATE(22), + [sym_package_include] = STATE(22), + [sym_class_include] = STATE(22), + [sym_latex_include] = STATE(22), + [sym_biblatex_include] = STATE(22), + [sym_bibtex_include] = STATE(22), + [sym_graphics_include] = STATE(22), + [sym_svg_include] = STATE(22), + [sym_inkscape_include] = STATE(22), + [sym_verbatim_include] = STATE(22), + [sym_import_include] = STATE(22), + [sym_caption] = STATE(22), + [sym_citation] = STATE(22), + [sym_label_definition] = STATE(22), + [sym_label_reference] = STATE(22), + [sym_label_reference_range] = STATE(22), + [sym_label_number] = STATE(22), + [sym_new_command_definition] = STATE(22), + [sym_old_command_definition] = STATE(22), + [sym_let_command_definition] = STATE(22), + [sym_environment_definition] = STATE(22), + [sym_glossary_entry_definition] = STATE(22), + [sym_glossary_entry_reference] = STATE(22), + [sym_acronym_definition] = STATE(22), + [sym_acronym_reference] = STATE(22), + [sym_theorem_definition] = STATE(22), + [sym_color_definition] = STATE(22), + [sym_color_set_definition] = STATE(22), + [sym_color_reference] = STATE(22), + [sym_tikz_library_import] = STATE(22), + [sym_text_mode] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(1420), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(877), + [anon_sym_RPAREN] = ACTIONS(877), + [anon_sym_LBRACK] = ACTIONS(877), + [anon_sym_RBRACK] = ACTIONS(877), + [anon_sym_COMMA] = ACTIONS(877), + [anon_sym_EQ] = ACTIONS(877), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -58412,7 +58058,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1422), + [anon_sym_RBRACE] = ACTIONS(1447), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -58646,1149 +58292,457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [111] = { - [sym_block_comment] = STATE(102), - [sym__root_content] = STATE(102), - [sym__flat_content] = STATE(102), - [sym__text_with_env_content] = STATE(102), - [sym__text_content] = STATE(102), - [sym__section] = STATE(102), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(102), - [sym_text] = STATE(102), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(102), - [sym_inline_formula] = STATE(102), - [sym_math_set] = STATE(102), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(102), - [sym_comment_environment] = STATE(102), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(102), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(102), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(102), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(102), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(102), - [sym_generic_command] = STATE(102), - [sym_package_include] = STATE(102), - [sym_class_include] = STATE(102), - [sym_latex_include] = STATE(102), - [sym_biblatex_include] = STATE(102), - [sym_bibtex_include] = STATE(102), - [sym_graphics_include] = STATE(102), - [sym_svg_include] = STATE(102), - [sym_inkscape_include] = STATE(102), - [sym_verbatim_include] = STATE(102), - [sym_import_include] = STATE(102), - [sym_caption] = STATE(102), - [sym_citation] = STATE(102), - [sym_label_definition] = STATE(102), - [sym_label_reference] = STATE(102), - [sym_label_reference_range] = STATE(102), - [sym_label_number] = STATE(102), - [sym_new_command_definition] = STATE(102), - [sym_old_command_definition] = STATE(102), - [sym_let_command_definition] = STATE(102), - [sym_environment_definition] = STATE(102), - [sym_glossary_entry_definition] = STATE(102), - [sym_glossary_entry_reference] = STATE(102), - [sym_acronym_definition] = STATE(102), - [sym_acronym_reference] = STATE(102), - [sym_theorem_definition] = STATE(102), - [sym_color_definition] = STATE(102), - [sym_color_set_definition] = STATE(102), - [sym_color_reference] = STATE(102), - [sym_tikz_library_import] = STATE(102), - [aux_sym_source_file_repeat1] = STATE(102), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_RPAREN] = ACTIONS(1424), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_RBRACK] = ACTIONS(1424), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_EQ] = ACTIONS(1424), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1426), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1428), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [112] = { - [sym_block_comment] = STATE(103), - [sym__root_content] = STATE(103), - [sym__flat_content] = STATE(103), - [sym__text_with_env_content] = STATE(103), - [sym__text_content] = STATE(103), - [sym__section] = STATE(103), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), + [115] = { + [sym_block_comment] = STATE(115), + [sym__root_content] = STATE(115), + [sym__flat_content] = STATE(115), + [sym__text_with_env_content] = STATE(115), + [sym__text_content] = STATE(115), + [sym__section] = STATE(115), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(103), - [sym_text] = STATE(103), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(103), - [sym_inline_formula] = STATE(103), - [sym_math_set] = STATE(103), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(103), - [sym_comment_environment] = STATE(103), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(103), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(103), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(103), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(103), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(103), - [sym_generic_command] = STATE(103), - [sym_package_include] = STATE(103), - [sym_class_include] = STATE(103), - [sym_latex_include] = STATE(103), - [sym_biblatex_include] = STATE(103), - [sym_bibtex_include] = STATE(103), - [sym_graphics_include] = STATE(103), - [sym_svg_include] = STATE(103), - [sym_inkscape_include] = STATE(103), - [sym_verbatim_include] = STATE(103), - [sym_import_include] = STATE(103), - [sym_caption] = STATE(103), - [sym_citation] = STATE(103), - [sym_label_definition] = STATE(103), - [sym_label_reference] = STATE(103), - [sym_label_reference_range] = STATE(103), - [sym_label_number] = STATE(103), - [sym_new_command_definition] = STATE(103), - [sym_old_command_definition] = STATE(103), - [sym_let_command_definition] = STATE(103), - [sym_environment_definition] = STATE(103), - [sym_glossary_entry_definition] = STATE(103), - [sym_glossary_entry_reference] = STATE(103), - [sym_acronym_definition] = STATE(103), - [sym_acronym_reference] = STATE(103), - [sym_theorem_definition] = STATE(103), - [sym_color_definition] = STATE(103), - [sym_color_set_definition] = STATE(103), - [sym_color_reference] = STATE(103), - [sym_tikz_library_import] = STATE(103), - [aux_sym_source_file_repeat1] = STATE(103), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_RBRACK] = ACTIONS(1430), - [anon_sym_COMMA] = ACTIONS(1430), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1432), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1434), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [113] = { - [sym_block_comment] = STATE(113), - [sym__root_content] = STATE(113), - [sym__flat_content] = STATE(113), - [sym__text_with_env_content] = STATE(113), - [sym__text_content] = STATE(113), - [sym__section] = STATE(113), - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(350), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(353), - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(355), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(356), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(357), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(359), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(361), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(363), - [sym_curly_group] = STATE(113), - [sym_text] = STATE(113), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(113), - [sym_inline_formula] = STATE(113), - [sym_math_set] = STATE(113), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(113), - [sym_comment_environment] = STATE(113), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(113), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(113), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(113), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(113), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(113), - [sym_generic_command] = STATE(113), - [sym_package_include] = STATE(113), - [sym_class_include] = STATE(113), - [sym_latex_include] = STATE(113), - [sym_biblatex_include] = STATE(113), - [sym_bibtex_include] = STATE(113), - [sym_graphics_include] = STATE(113), - [sym_svg_include] = STATE(113), - [sym_inkscape_include] = STATE(113), - [sym_verbatim_include] = STATE(113), - [sym_import_include] = STATE(113), - [sym_caption] = STATE(113), - [sym_citation] = STATE(113), - [sym_label_definition] = STATE(113), - [sym_label_reference] = STATE(113), - [sym_label_reference_range] = STATE(113), - [sym_label_number] = STATE(113), - [sym_new_command_definition] = STATE(113), - [sym_old_command_definition] = STATE(113), - [sym_let_command_definition] = STATE(113), - [sym_environment_definition] = STATE(113), - [sym_glossary_entry_definition] = STATE(113), - [sym_glossary_entry_reference] = STATE(113), - [sym_acronym_definition] = STATE(113), - [sym_acronym_reference] = STATE(113), - [sym_theorem_definition] = STATE(113), - [sym_color_definition] = STATE(113), - [sym_color_set_definition] = STATE(113), - [sym_color_reference] = STATE(113), - [sym_tikz_library_import] = STATE(113), - [aux_sym_source_file_repeat1] = STATE(113), - [aux_sym__section_repeat1] = STATE(350), - [aux_sym__section_repeat2] = STATE(353), - [aux_sym__section_repeat3] = STATE(355), - [aux_sym__section_repeat4] = STATE(356), - [aux_sym__section_repeat5] = STATE(357), - [aux_sym__section_repeat6] = STATE(359), - [aux_sym__section_repeat7] = STATE(361), - [aux_sym__section_repeat8] = STATE(363), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(1436), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_RPAREN] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_RBRACK] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(1442), - [anon_sym_EQ] = ACTIONS(1442), - [anon_sym_BSLASHpart] = ACTIONS(1445), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1448), - [anon_sym_BSLASHaddpart] = ACTIONS(1445), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1448), - [anon_sym_BSLASHchapter] = ACTIONS(1451), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1454), - [anon_sym_BSLASHaddchap] = ACTIONS(1451), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1454), - [anon_sym_BSLASHsection] = ACTIONS(1457), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1460), - [anon_sym_BSLASHaddsec] = ACTIONS(1457), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1460), - [anon_sym_BSLASHsubsection] = ACTIONS(1463), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1466), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1469), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1472), - [anon_sym_BSLASHparagraph] = ACTIONS(1475), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1478), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1481), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1484), - [anon_sym_BSLASHitem] = ACTIONS(1487), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1493), - [sym_word] = ACTIONS(1496), - [sym_placeholder] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1502), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym__] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1502), - [anon_sym_PIPE] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1502), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1505), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1505), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1511), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1514), - [anon_sym_BSLASH_RBRACE] = ACTIONS(349), - [anon_sym_BSLASHbegin] = ACTIONS(432), - [anon_sym_BSLASHusepackage] = ACTIONS(1517), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1517), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1520), - [anon_sym_BSLASHinclude] = ACTIONS(1523), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1523), - [anon_sym_BSLASHinput] = ACTIONS(1523), - [anon_sym_BSLASHsubfile] = ACTIONS(1523), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1526), - [anon_sym_BSLASHbibliography] = ACTIONS(1529), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1532), - [anon_sym_BSLASHincludesvg] = ACTIONS(1535), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1538), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1541), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1541), - [anon_sym_BSLASHimport] = ACTIONS(1544), - [anon_sym_BSLASHsubimport] = ACTIONS(1544), - [anon_sym_BSLASHinputfrom] = ACTIONS(1544), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1544), - [anon_sym_BSLASHincludefrom] = ACTIONS(1544), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1544), - [anon_sym_BSLASHcaption] = ACTIONS(1547), - [anon_sym_BSLASHcite] = ACTIONS(1550), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1553), - [anon_sym_BSLASHCite] = ACTIONS(1550), - [anon_sym_BSLASHnocite] = ACTIONS(1550), - [anon_sym_BSLASHcitet] = ACTIONS(1550), - [anon_sym_BSLASHcitep] = ACTIONS(1550), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1553), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1553), - [anon_sym_BSLASHciteauthor] = ACTIONS(1550), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1553), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1550), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1553), - [anon_sym_BSLASHcitetitle] = ACTIONS(1550), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1553), - [anon_sym_BSLASHciteyear] = ACTIONS(1550), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1553), - [anon_sym_BSLASHcitedate] = ACTIONS(1550), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1553), - [anon_sym_BSLASHciteurl] = ACTIONS(1550), - [anon_sym_BSLASHfullcite] = ACTIONS(1550), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1550), - [anon_sym_BSLASHcitealt] = ACTIONS(1550), - [anon_sym_BSLASHcitealp] = ACTIONS(1550), - [anon_sym_BSLASHcitetext] = ACTIONS(1550), - [anon_sym_BSLASHparencite] = ACTIONS(1550), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1553), - [anon_sym_BSLASHParencite] = ACTIONS(1550), - [anon_sym_BSLASHfootcite] = ACTIONS(1550), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1550), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1550), - [anon_sym_BSLASHtextcite] = ACTIONS(1550), - [anon_sym_BSLASHTextcite] = ACTIONS(1550), - [anon_sym_BSLASHsmartcite] = ACTIONS(1550), - [anon_sym_BSLASHSmartcite] = ACTIONS(1550), - [anon_sym_BSLASHsupercite] = ACTIONS(1550), - [anon_sym_BSLASHautocite] = ACTIONS(1550), - [anon_sym_BSLASHAutocite] = ACTIONS(1550), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1553), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1553), - [anon_sym_BSLASHvolcite] = ACTIONS(1550), - [anon_sym_BSLASHVolcite] = ACTIONS(1550), - [anon_sym_BSLASHpvolcite] = ACTIONS(1550), - [anon_sym_BSLASHPvolcite] = ACTIONS(1550), - [anon_sym_BSLASHfvolcite] = ACTIONS(1550), - [anon_sym_BSLASHftvolcite] = ACTIONS(1550), - [anon_sym_BSLASHsvolcite] = ACTIONS(1550), - [anon_sym_BSLASHSvolcite] = ACTIONS(1550), - [anon_sym_BSLASHtvolcite] = ACTIONS(1550), - [anon_sym_BSLASHTvolcite] = ACTIONS(1550), - [anon_sym_BSLASHavolcite] = ACTIONS(1550), - [anon_sym_BSLASHAvolcite] = ACTIONS(1550), - [anon_sym_BSLASHnotecite] = ACTIONS(1550), - [anon_sym_BSLASHNotecite] = ACTIONS(1550), - [anon_sym_BSLASHpnotecite] = ACTIONS(1550), - [anon_sym_BSLASHPnotecite] = ACTIONS(1550), - [anon_sym_BSLASHfnotecite] = ACTIONS(1550), - [anon_sym_BSLASHlabel] = ACTIONS(1556), - [anon_sym_BSLASHref] = ACTIONS(1559), - [anon_sym_BSLASHeqref] = ACTIONS(1559), - [anon_sym_BSLASHvref] = ACTIONS(1559), - [anon_sym_BSLASHVref] = ACTIONS(1559), - [anon_sym_BSLASHautoref] = ACTIONS(1559), - [anon_sym_BSLASHpageref] = ACTIONS(1559), - [anon_sym_BSLASHcref] = ACTIONS(1559), - [anon_sym_BSLASHCref] = ACTIONS(1559), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1562), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1562), - [anon_sym_BSLASHnamecref] = ACTIONS(1559), - [anon_sym_BSLASHnameCref] = ACTIONS(1559), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1559), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1559), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1559), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1559), - [anon_sym_BSLASHlabelcref] = ACTIONS(1559), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1559), - [anon_sym_BSLASHcrefrange] = ACTIONS(1565), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1568), - [anon_sym_BSLASHCrefrange] = ACTIONS(1565), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1568), - [anon_sym_BSLASHnewlabel] = ACTIONS(1571), - [anon_sym_BSLASHnewcommand] = ACTIONS(1574), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1577), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1574), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1577), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1574), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1577), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1574), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1577), - [anon_sym_BSLASHdef] = ACTIONS(1580), - [anon_sym_BSLASHlet] = ACTIONS(1583), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1586), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1589), - [anon_sym_BSLASHgls] = ACTIONS(1592), - [anon_sym_BSLASHGls] = ACTIONS(1592), - [anon_sym_BSLASHGLS] = ACTIONS(1592), - [anon_sym_BSLASHglspl] = ACTIONS(1592), - [anon_sym_BSLASHGlspl] = ACTIONS(1592), - [anon_sym_BSLASHGLSpl] = ACTIONS(1592), - [anon_sym_BSLASHglsdisp] = ACTIONS(1592), - [anon_sym_BSLASHglslink] = ACTIONS(1592), - [anon_sym_BSLASHglstext] = ACTIONS(1592), - [anon_sym_BSLASHGlstext] = ACTIONS(1592), - [anon_sym_BSLASHGLStext] = ACTIONS(1592), - [anon_sym_BSLASHglsfirst] = ACTIONS(1592), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1592), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1592), - [anon_sym_BSLASHglsplural] = ACTIONS(1592), - [anon_sym_BSLASHGlsplural] = ACTIONS(1592), - [anon_sym_BSLASHGLSplural] = ACTIONS(1592), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1592), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1592), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1592), - [anon_sym_BSLASHglsname] = ACTIONS(1592), - [anon_sym_BSLASHGlsname] = ACTIONS(1592), - [anon_sym_BSLASHGLSname] = ACTIONS(1592), - [anon_sym_BSLASHglssymbol] = ACTIONS(1592), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1592), - [anon_sym_BSLASHglsdesc] = ACTIONS(1592), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1592), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1592), - [anon_sym_BSLASHglsuseri] = ACTIONS(1592), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1592), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1592), - [anon_sym_BSLASHglsuserii] = ACTIONS(1592), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1592), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1592), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1592), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1592), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1592), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1592), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1592), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1592), - [anon_sym_BSLASHglsuserv] = ACTIONS(1592), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1592), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1592), - [anon_sym_BSLASHglsuservi] = ACTIONS(1592), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1592), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1592), - [anon_sym_BSLASHnewacronym] = ACTIONS(1595), - [anon_sym_BSLASHacrshort] = ACTIONS(1598), - [anon_sym_BSLASHAcrshort] = ACTIONS(1598), - [anon_sym_BSLASHACRshort] = ACTIONS(1598), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1598), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1598), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1598), - [anon_sym_BSLASHacrlong] = ACTIONS(1598), - [anon_sym_BSLASHAcrlong] = ACTIONS(1598), - [anon_sym_BSLASHACRlong] = ACTIONS(1598), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1598), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1598), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1598), - [anon_sym_BSLASHacrfull] = ACTIONS(1598), - [anon_sym_BSLASHAcrfull] = ACTIONS(1598), - [anon_sym_BSLASHACRfull] = ACTIONS(1598), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1598), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1598), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1598), - [anon_sym_BSLASHacs] = ACTIONS(1598), - [anon_sym_BSLASHAcs] = ACTIONS(1598), - [anon_sym_BSLASHacsp] = ACTIONS(1598), - [anon_sym_BSLASHAcsp] = ACTIONS(1598), - [anon_sym_BSLASHacl] = ACTIONS(1598), - [anon_sym_BSLASHAcl] = ACTIONS(1598), - [anon_sym_BSLASHaclp] = ACTIONS(1598), - [anon_sym_BSLASHAclp] = ACTIONS(1598), - [anon_sym_BSLASHacf] = ACTIONS(1598), - [anon_sym_BSLASHAcf] = ACTIONS(1598), - [anon_sym_BSLASHacfp] = ACTIONS(1598), - [anon_sym_BSLASHAcfp] = ACTIONS(1598), - [anon_sym_BSLASHac] = ACTIONS(1598), - [anon_sym_BSLASHAc] = ACTIONS(1598), - [anon_sym_BSLASHacp] = ACTIONS(1598), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1598), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1598), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1598), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1598), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1598), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1598), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1598), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1598), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1598), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1598), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1601), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1601), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1604), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1607), - [anon_sym_BSLASHcolor] = ACTIONS(1610), - [anon_sym_BSLASHcolorbox] = ACTIONS(1610), - [anon_sym_BSLASHtextcolor] = ACTIONS(1610), - [anon_sym_BSLASHpagecolor] = ACTIONS(1610), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1613), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1613), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(115), + [sym_text] = STATE(115), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(115), + [sym_inline_formula] = STATE(115), + [sym_math_set] = STATE(115), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(115), + [sym_comment_environment] = STATE(115), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(115), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(115), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(115), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(115), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(115), + [sym_generic_command] = STATE(115), + [sym_package_include] = STATE(115), + [sym_class_include] = STATE(115), + [sym_latex_include] = STATE(115), + [sym_biblatex_include] = STATE(115), + [sym_bibtex_include] = STATE(115), + [sym_graphics_include] = STATE(115), + [sym_svg_include] = STATE(115), + [sym_inkscape_include] = STATE(115), + [sym_verbatim_include] = STATE(115), + [sym_import_include] = STATE(115), + [sym_caption] = STATE(115), + [sym_citation] = STATE(115), + [sym_label_definition] = STATE(115), + [sym_label_reference] = STATE(115), + [sym_label_reference_range] = STATE(115), + [sym_label_number] = STATE(115), + [sym_new_command_definition] = STATE(115), + [sym_old_command_definition] = STATE(115), + [sym_let_command_definition] = STATE(115), + [sym_environment_definition] = STATE(115), + [sym_glossary_entry_definition] = STATE(115), + [sym_glossary_entry_reference] = STATE(115), + [sym_acronym_definition] = STATE(115), + [sym_acronym_reference] = STATE(115), + [sym_theorem_definition] = STATE(115), + [sym_color_definition] = STATE(115), + [sym_color_set_definition] = STATE(115), + [sym_color_reference] = STATE(115), + [sym_tikz_library_import] = STATE(115), + [sym_text_mode] = STATE(115), + [aux_sym_source_file_repeat1] = STATE(115), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(1449), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_RBRACK] = ACTIONS(1455), + [anon_sym_COMMA] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1455), + [anon_sym_BSLASHpart] = ACTIONS(1458), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1461), + [anon_sym_BSLASHaddpart] = ACTIONS(1458), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1461), + [anon_sym_BSLASHchapter] = ACTIONS(1464), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1467), + [anon_sym_BSLASHaddchap] = ACTIONS(1464), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1467), + [anon_sym_BSLASHsection] = ACTIONS(1470), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1473), + [anon_sym_BSLASHaddsec] = ACTIONS(1470), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1473), + [anon_sym_BSLASHsubsection] = ACTIONS(1476), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1479), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1482), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1485), + [anon_sym_BSLASHparagraph] = ACTIONS(1488), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1491), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1494), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1497), + [anon_sym_BSLASHitem] = ACTIONS(1500), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1506), + [sym_word] = ACTIONS(1509), + [sym_placeholder] = ACTIONS(1512), + [anon_sym_PLUS] = ACTIONS(1515), + [anon_sym_DASH] = ACTIONS(1515), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_SLASH] = ACTIONS(1515), + [anon_sym_CARET] = ACTIONS(1515), + [anon_sym__] = ACTIONS(1515), + [anon_sym_LT] = ACTIONS(1515), + [anon_sym_GT] = ACTIONS(1515), + [anon_sym_BANG] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_COLON] = ACTIONS(1515), + [anon_sym_SQUOTE] = ACTIONS(1515), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1518), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1521), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1524), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1527), + [anon_sym_BSLASH_RBRACE] = ACTIONS(355), + [anon_sym_BSLASHbegin] = ACTIONS(438), + [anon_sym_BSLASHusepackage] = ACTIONS(1530), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1530), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1533), + [anon_sym_BSLASHinclude] = ACTIONS(1536), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1536), + [anon_sym_BSLASHinput] = ACTIONS(1536), + [anon_sym_BSLASHsubfile] = ACTIONS(1536), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1539), + [anon_sym_BSLASHbibliography] = ACTIONS(1542), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1545), + [anon_sym_BSLASHincludesvg] = ACTIONS(1548), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1551), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1554), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1554), + [anon_sym_BSLASHimport] = ACTIONS(1557), + [anon_sym_BSLASHsubimport] = ACTIONS(1557), + [anon_sym_BSLASHinputfrom] = ACTIONS(1557), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1557), + [anon_sym_BSLASHincludefrom] = ACTIONS(1557), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1557), + [anon_sym_BSLASHcaption] = ACTIONS(1560), + [anon_sym_BSLASHcite] = ACTIONS(1563), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1566), + [anon_sym_BSLASHCite] = ACTIONS(1563), + [anon_sym_BSLASHnocite] = ACTIONS(1563), + [anon_sym_BSLASHcitet] = ACTIONS(1563), + [anon_sym_BSLASHcitep] = ACTIONS(1563), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1566), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1566), + [anon_sym_BSLASHciteauthor] = ACTIONS(1563), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1566), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1563), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1566), + [anon_sym_BSLASHcitetitle] = ACTIONS(1563), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1566), + [anon_sym_BSLASHciteyear] = ACTIONS(1563), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1566), + [anon_sym_BSLASHcitedate] = ACTIONS(1563), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1566), + [anon_sym_BSLASHciteurl] = ACTIONS(1563), + [anon_sym_BSLASHfullcite] = ACTIONS(1563), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1563), + [anon_sym_BSLASHcitealt] = ACTIONS(1563), + [anon_sym_BSLASHcitealp] = ACTIONS(1563), + [anon_sym_BSLASHcitetext] = ACTIONS(1563), + [anon_sym_BSLASHparencite] = ACTIONS(1563), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1566), + [anon_sym_BSLASHParencite] = ACTIONS(1563), + [anon_sym_BSLASHfootcite] = ACTIONS(1563), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1563), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1563), + [anon_sym_BSLASHtextcite] = ACTIONS(1563), + [anon_sym_BSLASHTextcite] = ACTIONS(1563), + [anon_sym_BSLASHsmartcite] = ACTIONS(1563), + [anon_sym_BSLASHSmartcite] = ACTIONS(1563), + [anon_sym_BSLASHsupercite] = ACTIONS(1563), + [anon_sym_BSLASHautocite] = ACTIONS(1563), + [anon_sym_BSLASHAutocite] = ACTIONS(1563), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1566), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1566), + [anon_sym_BSLASHvolcite] = ACTIONS(1563), + [anon_sym_BSLASHVolcite] = ACTIONS(1563), + [anon_sym_BSLASHpvolcite] = ACTIONS(1563), + [anon_sym_BSLASHPvolcite] = ACTIONS(1563), + [anon_sym_BSLASHfvolcite] = ACTIONS(1563), + [anon_sym_BSLASHftvolcite] = ACTIONS(1563), + [anon_sym_BSLASHsvolcite] = ACTIONS(1563), + [anon_sym_BSLASHSvolcite] = ACTIONS(1563), + [anon_sym_BSLASHtvolcite] = ACTIONS(1563), + [anon_sym_BSLASHTvolcite] = ACTIONS(1563), + [anon_sym_BSLASHavolcite] = ACTIONS(1563), + [anon_sym_BSLASHAvolcite] = ACTIONS(1563), + [anon_sym_BSLASHnotecite] = ACTIONS(1563), + [anon_sym_BSLASHNotecite] = ACTIONS(1563), + [anon_sym_BSLASHpnotecite] = ACTIONS(1563), + [anon_sym_BSLASHPnotecite] = ACTIONS(1563), + [anon_sym_BSLASHfnotecite] = ACTIONS(1563), + [anon_sym_BSLASHlabel] = ACTIONS(1569), + [anon_sym_BSLASHref] = ACTIONS(1572), + [anon_sym_BSLASHeqref] = ACTIONS(1572), + [anon_sym_BSLASHvref] = ACTIONS(1572), + [anon_sym_BSLASHVref] = ACTIONS(1572), + [anon_sym_BSLASHautoref] = ACTIONS(1572), + [anon_sym_BSLASHpageref] = ACTIONS(1572), + [anon_sym_BSLASHcref] = ACTIONS(1572), + [anon_sym_BSLASHCref] = ACTIONS(1572), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1575), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1575), + [anon_sym_BSLASHnamecref] = ACTIONS(1572), + [anon_sym_BSLASHnameCref] = ACTIONS(1572), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1572), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1572), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1572), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1572), + [anon_sym_BSLASHlabelcref] = ACTIONS(1572), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1572), + [anon_sym_BSLASHcrefrange] = ACTIONS(1578), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1581), + [anon_sym_BSLASHCrefrange] = ACTIONS(1578), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1581), + [anon_sym_BSLASHnewlabel] = ACTIONS(1584), + [anon_sym_BSLASHnewcommand] = ACTIONS(1587), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1590), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1587), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1590), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1587), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1590), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1587), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1590), + [anon_sym_BSLASHdef] = ACTIONS(1593), + [anon_sym_BSLASHlet] = ACTIONS(1596), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1599), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1602), + [anon_sym_BSLASHgls] = ACTIONS(1605), + [anon_sym_BSLASHGls] = ACTIONS(1605), + [anon_sym_BSLASHGLS] = ACTIONS(1605), + [anon_sym_BSLASHglspl] = ACTIONS(1605), + [anon_sym_BSLASHGlspl] = ACTIONS(1605), + [anon_sym_BSLASHGLSpl] = ACTIONS(1605), + [anon_sym_BSLASHglsdisp] = ACTIONS(1605), + [anon_sym_BSLASHglslink] = ACTIONS(1605), + [anon_sym_BSLASHglstext] = ACTIONS(1605), + [anon_sym_BSLASHGlstext] = ACTIONS(1605), + [anon_sym_BSLASHGLStext] = ACTIONS(1605), + [anon_sym_BSLASHglsfirst] = ACTIONS(1605), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1605), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1605), + [anon_sym_BSLASHglsplural] = ACTIONS(1605), + [anon_sym_BSLASHGlsplural] = ACTIONS(1605), + [anon_sym_BSLASHGLSplural] = ACTIONS(1605), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1605), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1605), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1605), + [anon_sym_BSLASHglsname] = ACTIONS(1605), + [anon_sym_BSLASHGlsname] = ACTIONS(1605), + [anon_sym_BSLASHGLSname] = ACTIONS(1605), + [anon_sym_BSLASHglssymbol] = ACTIONS(1605), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1605), + [anon_sym_BSLASHglsdesc] = ACTIONS(1605), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1605), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1605), + [anon_sym_BSLASHglsuseri] = ACTIONS(1605), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1605), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1605), + [anon_sym_BSLASHglsuserii] = ACTIONS(1605), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1605), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1605), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1605), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1605), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1605), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1605), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1605), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1605), + [anon_sym_BSLASHglsuserv] = ACTIONS(1605), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1605), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1605), + [anon_sym_BSLASHglsuservi] = ACTIONS(1605), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1605), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1605), + [anon_sym_BSLASHnewacronym] = ACTIONS(1608), + [anon_sym_BSLASHacrshort] = ACTIONS(1611), + [anon_sym_BSLASHAcrshort] = ACTIONS(1611), + [anon_sym_BSLASHACRshort] = ACTIONS(1611), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1611), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1611), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1611), + [anon_sym_BSLASHacrlong] = ACTIONS(1611), + [anon_sym_BSLASHAcrlong] = ACTIONS(1611), + [anon_sym_BSLASHACRlong] = ACTIONS(1611), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1611), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1611), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1611), + [anon_sym_BSLASHacrfull] = ACTIONS(1611), + [anon_sym_BSLASHAcrfull] = ACTIONS(1611), + [anon_sym_BSLASHACRfull] = ACTIONS(1611), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1611), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1611), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1611), + [anon_sym_BSLASHacs] = ACTIONS(1611), + [anon_sym_BSLASHAcs] = ACTIONS(1611), + [anon_sym_BSLASHacsp] = ACTIONS(1611), + [anon_sym_BSLASHAcsp] = ACTIONS(1611), + [anon_sym_BSLASHacl] = ACTIONS(1611), + [anon_sym_BSLASHAcl] = ACTIONS(1611), + [anon_sym_BSLASHaclp] = ACTIONS(1611), + [anon_sym_BSLASHAclp] = ACTIONS(1611), + [anon_sym_BSLASHacf] = ACTIONS(1611), + [anon_sym_BSLASHAcf] = ACTIONS(1611), + [anon_sym_BSLASHacfp] = ACTIONS(1611), + [anon_sym_BSLASHAcfp] = ACTIONS(1611), + [anon_sym_BSLASHac] = ACTIONS(1611), + [anon_sym_BSLASHAc] = ACTIONS(1611), + [anon_sym_BSLASHacp] = ACTIONS(1611), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1611), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1611), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1611), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1611), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1611), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1611), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1611), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1611), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1611), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1611), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1614), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1614), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1617), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1620), + [anon_sym_BSLASHcolor] = ACTIONS(1623), + [anon_sym_BSLASHcolorbox] = ACTIONS(1623), + [anon_sym_BSLASHtextcolor] = ACTIONS(1623), + [anon_sym_BSLASHpagecolor] = ACTIONS(1623), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1626), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1626), + [anon_sym_BSLASHtext] = ACTIONS(1629), + [anon_sym_BSLASHintertext] = ACTIONS(1629), + [anon_sym_shortintertext] = ACTIONS(1629), }, - [114] = { - [sym_block_comment] = STATE(104), - [sym__root_content] = STATE(104), - [sym__flat_content] = STATE(104), - [sym__text_with_env_content] = STATE(104), - [sym__text_content] = STATE(104), - [sym__section] = STATE(104), + [116] = { + [sym_block_comment] = STATE(86), + [sym__root_content] = STATE(86), + [sym__flat_content] = STATE(86), + [sym__text_with_env_content] = STATE(86), + [sym__text_content] = STATE(86), + [sym__section] = STATE(86), [sym__part_declaration] = STATE(123), - [sym_part] = STATE(333), + [sym_part] = STATE(280), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(332), + [sym_chapter] = STATE(279), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(331), + [sym_section] = STATE(277), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(328), + [sym_subsection] = STATE(276), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(330), + [sym_subsubsection] = STATE(275), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(326), + [sym_paragraph] = STATE(274), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(325), + [sym_subparagraph] = STATE(273), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(324), - [sym_curly_group] = STATE(104), - [sym_text] = STATE(104), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(104), - [sym_inline_formula] = STATE(104), - [sym_math_set] = STATE(104), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(104), - [sym_comment_environment] = STATE(104), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(104), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(104), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(104), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(104), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(104), - [sym_generic_command] = STATE(104), - [sym_package_include] = STATE(104), - [sym_class_include] = STATE(104), - [sym_latex_include] = STATE(104), - [sym_biblatex_include] = STATE(104), - [sym_bibtex_include] = STATE(104), - [sym_graphics_include] = STATE(104), - [sym_svg_include] = STATE(104), - [sym_inkscape_include] = STATE(104), - [sym_verbatim_include] = STATE(104), - [sym_import_include] = STATE(104), - [sym_caption] = STATE(104), - [sym_citation] = STATE(104), - [sym_label_definition] = STATE(104), - [sym_label_reference] = STATE(104), - [sym_label_reference_range] = STATE(104), - [sym_label_number] = STATE(104), - [sym_new_command_definition] = STATE(104), - [sym_old_command_definition] = STATE(104), - [sym_let_command_definition] = STATE(104), - [sym_environment_definition] = STATE(104), - [sym_glossary_entry_definition] = STATE(104), - [sym_glossary_entry_reference] = STATE(104), - [sym_acronym_definition] = STATE(104), - [sym_acronym_reference] = STATE(104), - [sym_theorem_definition] = STATE(104), - [sym_color_definition] = STATE(104), - [sym_color_set_definition] = STATE(104), - [sym_color_reference] = STATE(104), - [sym_tikz_library_import] = STATE(104), - [aux_sym_source_file_repeat1] = STATE(104), - [aux_sym__section_repeat1] = STATE(333), - [aux_sym__section_repeat2] = STATE(332), - [aux_sym__section_repeat3] = STATE(331), - [aux_sym__section_repeat4] = STATE(328), - [aux_sym__section_repeat5] = STATE(330), - [aux_sym__section_repeat6] = STATE(326), - [aux_sym__section_repeat7] = STATE(325), - [aux_sym__section_repeat8] = STATE(324), + [sym_enum_item] = STATE(271), + [sym_curly_group] = STATE(86), + [sym_text] = STATE(86), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(86), + [sym_inline_formula] = STATE(86), + [sym_math_set] = STATE(86), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(86), + [sym_comment_environment] = STATE(86), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(86), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(86), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(86), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(86), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(86), + [sym_generic_command] = STATE(86), + [sym_package_include] = STATE(86), + [sym_class_include] = STATE(86), + [sym_latex_include] = STATE(86), + [sym_biblatex_include] = STATE(86), + [sym_bibtex_include] = STATE(86), + [sym_graphics_include] = STATE(86), + [sym_svg_include] = STATE(86), + [sym_inkscape_include] = STATE(86), + [sym_verbatim_include] = STATE(86), + [sym_import_include] = STATE(86), + [sym_caption] = STATE(86), + [sym_citation] = STATE(86), + [sym_label_definition] = STATE(86), + [sym_label_reference] = STATE(86), + [sym_label_reference_range] = STATE(86), + [sym_label_number] = STATE(86), + [sym_new_command_definition] = STATE(86), + [sym_old_command_definition] = STATE(86), + [sym_let_command_definition] = STATE(86), + [sym_environment_definition] = STATE(86), + [sym_glossary_entry_definition] = STATE(86), + [sym_glossary_entry_reference] = STATE(86), + [sym_acronym_definition] = STATE(86), + [sym_acronym_reference] = STATE(86), + [sym_theorem_definition] = STATE(86), + [sym_color_definition] = STATE(86), + [sym_color_set_definition] = STATE(86), + [sym_color_reference] = STATE(86), + [sym_tikz_library_import] = STATE(86), + [sym_text_mode] = STATE(86), + [aux_sym_source_file_repeat1] = STATE(86), + [aux_sym__section_repeat1] = STATE(280), + [aux_sym__section_repeat2] = STATE(279), + [aux_sym__section_repeat3] = STATE(277), + [aux_sym__section_repeat4] = STATE(276), + [aux_sym__section_repeat5] = STATE(275), + [aux_sym__section_repeat6] = STATE(274), + [aux_sym__section_repeat7] = STATE(273), + [aux_sym__section_repeat8] = STATE(271), [aux_sym_text_repeat1] = STATE(207), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_RPAREN] = ACTIONS(1616), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_RBRACK] = ACTIONS(1616), - [anon_sym_COMMA] = ACTIONS(1616), - [anon_sym_EQ] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_RPAREN] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_RBRACK] = ACTIONS(1632), + [anon_sym_COMMA] = ACTIONS(1632), + [anon_sym_EQ] = ACTIONS(1632), [anon_sym_BSLASHpart] = ACTIONS(13), [anon_sym_BSLASHpart_STAR] = ACTIONS(15), [anon_sym_BSLASHaddpart] = ACTIONS(13), @@ -59812,7 +58766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1618), + [anon_sym_RBRACE] = ACTIONS(1634), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -60046,2549 +59000,1873 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), - }, - [115] = { - [sym_block_comment] = STATE(84), - [sym__root_content] = STATE(84), - [sym__flat_content] = STATE(84), - [sym__text_with_env_content] = STATE(84), - [sym__text_content] = STATE(84), - [sym__section] = STATE(84), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(84), - [sym_text] = STATE(84), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(84), - [sym_inline_formula] = STATE(84), - [sym_math_set] = STATE(84), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(84), - [sym_comment_environment] = STATE(84), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(84), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(84), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(84), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(84), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(84), - [sym_generic_command] = STATE(84), - [sym_package_include] = STATE(84), - [sym_class_include] = STATE(84), - [sym_latex_include] = STATE(84), - [sym_biblatex_include] = STATE(84), - [sym_bibtex_include] = STATE(84), - [sym_graphics_include] = STATE(84), - [sym_svg_include] = STATE(84), - [sym_inkscape_include] = STATE(84), - [sym_verbatim_include] = STATE(84), - [sym_import_include] = STATE(84), - [sym_caption] = STATE(84), - [sym_citation] = STATE(84), - [sym_label_definition] = STATE(84), - [sym_label_reference] = STATE(84), - [sym_label_reference_range] = STATE(84), - [sym_label_number] = STATE(84), - [sym_new_command_definition] = STATE(84), - [sym_old_command_definition] = STATE(84), - [sym_let_command_definition] = STATE(84), - [sym_environment_definition] = STATE(84), - [sym_glossary_entry_definition] = STATE(84), - [sym_glossary_entry_reference] = STATE(84), - [sym_acronym_definition] = STATE(84), - [sym_acronym_reference] = STATE(84), - [sym_theorem_definition] = STATE(84), - [sym_color_definition] = STATE(84), - [sym_color_set_definition] = STATE(84), - [sym_color_reference] = STATE(84), - [sym_tikz_library_import] = STATE(84), - [aux_sym_source_file_repeat1] = STATE(84), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_LBRACK] = ACTIONS(750), - [anon_sym_RBRACK] = ACTIONS(750), - [anon_sym_COMMA] = ACTIONS(750), - [anon_sym_EQ] = ACTIONS(750), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1620), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(888), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [116] = { - [sym_block_comment] = STATE(91), - [sym__root_content] = STATE(91), - [sym__flat_content] = STATE(91), - [sym__text_with_env_content] = STATE(91), - [sym__text_content] = STATE(91), - [sym__section] = STATE(91), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(91), - [sym_text] = STATE(91), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(91), - [sym_inline_formula] = STATE(91), - [sym_math_set] = STATE(91), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(91), - [sym_comment_environment] = STATE(91), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(91), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(91), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(91), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(91), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(91), - [sym_generic_command] = STATE(91), - [sym_package_include] = STATE(91), - [sym_class_include] = STATE(91), - [sym_latex_include] = STATE(91), - [sym_biblatex_include] = STATE(91), - [sym_bibtex_include] = STATE(91), - [sym_graphics_include] = STATE(91), - [sym_svg_include] = STATE(91), - [sym_inkscape_include] = STATE(91), - [sym_verbatim_include] = STATE(91), - [sym_import_include] = STATE(91), - [sym_caption] = STATE(91), - [sym_citation] = STATE(91), - [sym_label_definition] = STATE(91), - [sym_label_reference] = STATE(91), - [sym_label_reference_range] = STATE(91), - [sym_label_number] = STATE(91), - [sym_new_command_definition] = STATE(91), - [sym_old_command_definition] = STATE(91), - [sym_let_command_definition] = STATE(91), - [sym_environment_definition] = STATE(91), - [sym_glossary_entry_definition] = STATE(91), - [sym_glossary_entry_reference] = STATE(91), - [sym_acronym_definition] = STATE(91), - [sym_acronym_reference] = STATE(91), - [sym_theorem_definition] = STATE(91), - [sym_color_definition] = STATE(91), - [sym_color_set_definition] = STATE(91), - [sym_color_reference] = STATE(91), - [sym_tikz_library_import] = STATE(91), - [aux_sym_source_file_repeat1] = STATE(91), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_RPAREN] = ACTIONS(1622), - [anon_sym_LBRACK] = ACTIONS(1622), - [anon_sym_RBRACK] = ACTIONS(1622), - [anon_sym_COMMA] = ACTIONS(1622), - [anon_sym_EQ] = ACTIONS(1622), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1624), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1626), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [117] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), + [sym_block_comment] = STATE(117), + [sym__root_content] = STATE(117), + [sym__flat_content] = STATE(117), + [sym__text_with_env_content] = STATE(117), + [sym__text_content] = STATE(117), + [sym__section] = STATE(117), + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(540), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(539), + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(538), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(537), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(536), [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), + [sym_paragraph] = STATE(535), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(534), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(533), + [sym_curly_group] = STATE(117), + [sym_text] = STATE(117), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(117), + [sym_inline_formula] = STATE(117), + [sym_math_set] = STATE(117), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(117), + [sym_comment_environment] = STATE(117), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(117), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(117), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(117), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(117), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(117), + [sym_generic_command] = STATE(117), + [sym_package_include] = STATE(117), + [sym_class_include] = STATE(117), + [sym_latex_include] = STATE(117), + [sym_biblatex_include] = STATE(117), + [sym_bibtex_include] = STATE(117), + [sym_graphics_include] = STATE(117), + [sym_svg_include] = STATE(117), + [sym_inkscape_include] = STATE(117), + [sym_verbatim_include] = STATE(117), + [sym_import_include] = STATE(117), + [sym_caption] = STATE(117), + [sym_citation] = STATE(117), + [sym_label_definition] = STATE(117), + [sym_label_reference] = STATE(117), + [sym_label_reference_range] = STATE(117), + [sym_label_number] = STATE(117), + [sym_new_command_definition] = STATE(117), + [sym_old_command_definition] = STATE(117), + [sym_let_command_definition] = STATE(117), + [sym_environment_definition] = STATE(117), + [sym_glossary_entry_definition] = STATE(117), + [sym_glossary_entry_reference] = STATE(117), + [sym_acronym_definition] = STATE(117), + [sym_acronym_reference] = STATE(117), + [sym_theorem_definition] = STATE(117), + [sym_color_definition] = STATE(117), + [sym_color_set_definition] = STATE(117), + [sym_color_reference] = STATE(117), + [sym_tikz_library_import] = STATE(117), + [sym_text_mode] = STATE(117), + [aux_sym_source_file_repeat1] = STATE(117), + [aux_sym__section_repeat1] = STATE(540), + [aux_sym__section_repeat2] = STATE(539), + [aux_sym__section_repeat3] = STATE(538), + [aux_sym__section_repeat4] = STATE(537), + [aux_sym__section_repeat5] = STATE(536), + [aux_sym__section_repeat6] = STATE(535), + [aux_sym__section_repeat7] = STATE(534), + [aux_sym__section_repeat8] = STATE(533), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(1636), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1639), + [anon_sym_LPAREN] = ACTIONS(1642), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_LBRACK] = ACTIONS(1642), + [anon_sym_RBRACK] = ACTIONS(1642), + [anon_sym_COMMA] = ACTIONS(1642), + [anon_sym_EQ] = ACTIONS(1642), + [anon_sym_BSLASHpart] = ACTIONS(1645), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1648), + [anon_sym_BSLASHaddpart] = ACTIONS(1645), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1648), + [anon_sym_BSLASHchapter] = ACTIONS(1651), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1654), + [anon_sym_BSLASHaddchap] = ACTIONS(1651), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1654), + [anon_sym_BSLASHsection] = ACTIONS(1657), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1660), + [anon_sym_BSLASHaddsec] = ACTIONS(1657), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1660), + [anon_sym_BSLASHsubsection] = ACTIONS(1663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1666), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1669), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1672), + [anon_sym_BSLASHparagraph] = ACTIONS(1675), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1678), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1681), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1684), + [anon_sym_BSLASHitem] = ACTIONS(1687), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1693), + [sym_word] = ACTIONS(1696), + [sym_placeholder] = ACTIONS(1699), + [anon_sym_PLUS] = ACTIONS(1702), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_SLASH] = ACTIONS(1702), + [anon_sym_CARET] = ACTIONS(1702), + [anon_sym__] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_GT] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_COLON] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1702), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1705), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1708), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1711), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1714), + [anon_sym_BSLASHbegin] = ACTIONS(438), + [anon_sym_BSLASHend] = ACTIONS(1717), + [anon_sym_BSLASHusepackage] = ACTIONS(1719), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1719), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1722), + [anon_sym_BSLASHinclude] = ACTIONS(1725), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1725), + [anon_sym_BSLASHinput] = ACTIONS(1725), + [anon_sym_BSLASHsubfile] = ACTIONS(1725), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1728), + [anon_sym_BSLASHbibliography] = ACTIONS(1731), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1734), + [anon_sym_BSLASHincludesvg] = ACTIONS(1737), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1740), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1743), + [anon_sym_BSLASHimport] = ACTIONS(1746), + [anon_sym_BSLASHsubimport] = ACTIONS(1746), + [anon_sym_BSLASHinputfrom] = ACTIONS(1746), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1746), + [anon_sym_BSLASHincludefrom] = ACTIONS(1746), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1746), + [anon_sym_BSLASHcaption] = ACTIONS(1749), + [anon_sym_BSLASHcite] = ACTIONS(1752), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1755), + [anon_sym_BSLASHCite] = ACTIONS(1752), + [anon_sym_BSLASHnocite] = ACTIONS(1752), + [anon_sym_BSLASHcitet] = ACTIONS(1752), + [anon_sym_BSLASHcitep] = ACTIONS(1752), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1755), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1755), + [anon_sym_BSLASHciteauthor] = ACTIONS(1752), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1755), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1752), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1755), + [anon_sym_BSLASHcitetitle] = ACTIONS(1752), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1755), + [anon_sym_BSLASHciteyear] = ACTIONS(1752), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1755), + [anon_sym_BSLASHcitedate] = ACTIONS(1752), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1755), + [anon_sym_BSLASHciteurl] = ACTIONS(1752), + [anon_sym_BSLASHfullcite] = ACTIONS(1752), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1752), + [anon_sym_BSLASHcitealt] = ACTIONS(1752), + [anon_sym_BSLASHcitealp] = ACTIONS(1752), + [anon_sym_BSLASHcitetext] = ACTIONS(1752), + [anon_sym_BSLASHparencite] = ACTIONS(1752), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1755), + [anon_sym_BSLASHParencite] = ACTIONS(1752), + [anon_sym_BSLASHfootcite] = ACTIONS(1752), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1752), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1752), + [anon_sym_BSLASHtextcite] = ACTIONS(1752), + [anon_sym_BSLASHTextcite] = ACTIONS(1752), + [anon_sym_BSLASHsmartcite] = ACTIONS(1752), + [anon_sym_BSLASHSmartcite] = ACTIONS(1752), + [anon_sym_BSLASHsupercite] = ACTIONS(1752), + [anon_sym_BSLASHautocite] = ACTIONS(1752), + [anon_sym_BSLASHAutocite] = ACTIONS(1752), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1755), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1755), + [anon_sym_BSLASHvolcite] = ACTIONS(1752), + [anon_sym_BSLASHVolcite] = ACTIONS(1752), + [anon_sym_BSLASHpvolcite] = ACTIONS(1752), + [anon_sym_BSLASHPvolcite] = ACTIONS(1752), + [anon_sym_BSLASHfvolcite] = ACTIONS(1752), + [anon_sym_BSLASHftvolcite] = ACTIONS(1752), + [anon_sym_BSLASHsvolcite] = ACTIONS(1752), + [anon_sym_BSLASHSvolcite] = ACTIONS(1752), + [anon_sym_BSLASHtvolcite] = ACTIONS(1752), + [anon_sym_BSLASHTvolcite] = ACTIONS(1752), + [anon_sym_BSLASHavolcite] = ACTIONS(1752), + [anon_sym_BSLASHAvolcite] = ACTIONS(1752), + [anon_sym_BSLASHnotecite] = ACTIONS(1752), + [anon_sym_BSLASHNotecite] = ACTIONS(1752), + [anon_sym_BSLASHpnotecite] = ACTIONS(1752), + [anon_sym_BSLASHPnotecite] = ACTIONS(1752), + [anon_sym_BSLASHfnotecite] = ACTIONS(1752), + [anon_sym_BSLASHlabel] = ACTIONS(1758), + [anon_sym_BSLASHref] = ACTIONS(1761), + [anon_sym_BSLASHeqref] = ACTIONS(1761), + [anon_sym_BSLASHvref] = ACTIONS(1761), + [anon_sym_BSLASHVref] = ACTIONS(1761), + [anon_sym_BSLASHautoref] = ACTIONS(1761), + [anon_sym_BSLASHpageref] = ACTIONS(1761), + [anon_sym_BSLASHcref] = ACTIONS(1761), + [anon_sym_BSLASHCref] = ACTIONS(1761), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1764), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1764), + [anon_sym_BSLASHnamecref] = ACTIONS(1761), + [anon_sym_BSLASHnameCref] = ACTIONS(1761), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1761), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1761), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1761), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1761), + [anon_sym_BSLASHlabelcref] = ACTIONS(1761), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1761), + [anon_sym_BSLASHcrefrange] = ACTIONS(1767), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1770), + [anon_sym_BSLASHCrefrange] = ACTIONS(1767), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1770), + [anon_sym_BSLASHnewlabel] = ACTIONS(1773), + [anon_sym_BSLASHnewcommand] = ACTIONS(1776), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1779), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1776), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1779), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1776), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1779), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1776), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1779), + [anon_sym_BSLASHdef] = ACTIONS(1782), + [anon_sym_BSLASHlet] = ACTIONS(1785), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1788), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1791), + [anon_sym_BSLASHgls] = ACTIONS(1794), + [anon_sym_BSLASHGls] = ACTIONS(1794), + [anon_sym_BSLASHGLS] = ACTIONS(1794), + [anon_sym_BSLASHglspl] = ACTIONS(1794), + [anon_sym_BSLASHGlspl] = ACTIONS(1794), + [anon_sym_BSLASHGLSpl] = ACTIONS(1794), + [anon_sym_BSLASHglsdisp] = ACTIONS(1794), + [anon_sym_BSLASHglslink] = ACTIONS(1794), + [anon_sym_BSLASHglstext] = ACTIONS(1794), + [anon_sym_BSLASHGlstext] = ACTIONS(1794), + [anon_sym_BSLASHGLStext] = ACTIONS(1794), + [anon_sym_BSLASHglsfirst] = ACTIONS(1794), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1794), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1794), + [anon_sym_BSLASHglsplural] = ACTIONS(1794), + [anon_sym_BSLASHGlsplural] = ACTIONS(1794), + [anon_sym_BSLASHGLSplural] = ACTIONS(1794), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1794), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1794), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1794), + [anon_sym_BSLASHglsname] = ACTIONS(1794), + [anon_sym_BSLASHGlsname] = ACTIONS(1794), + [anon_sym_BSLASHGLSname] = ACTIONS(1794), + [anon_sym_BSLASHglssymbol] = ACTIONS(1794), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1794), + [anon_sym_BSLASHglsdesc] = ACTIONS(1794), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1794), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1794), + [anon_sym_BSLASHglsuseri] = ACTIONS(1794), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1794), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1794), + [anon_sym_BSLASHglsuserii] = ACTIONS(1794), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1794), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1794), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1794), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1794), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1794), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1794), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1794), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1794), + [anon_sym_BSLASHglsuserv] = ACTIONS(1794), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1794), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1794), + [anon_sym_BSLASHglsuservi] = ACTIONS(1794), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1794), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1794), + [anon_sym_BSLASHnewacronym] = ACTIONS(1797), + [anon_sym_BSLASHacrshort] = ACTIONS(1800), + [anon_sym_BSLASHAcrshort] = ACTIONS(1800), + [anon_sym_BSLASHACRshort] = ACTIONS(1800), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1800), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1800), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1800), + [anon_sym_BSLASHacrlong] = ACTIONS(1800), + [anon_sym_BSLASHAcrlong] = ACTIONS(1800), + [anon_sym_BSLASHACRlong] = ACTIONS(1800), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1800), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1800), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1800), + [anon_sym_BSLASHacrfull] = ACTIONS(1800), + [anon_sym_BSLASHAcrfull] = ACTIONS(1800), + [anon_sym_BSLASHACRfull] = ACTIONS(1800), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1800), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1800), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1800), + [anon_sym_BSLASHacs] = ACTIONS(1800), + [anon_sym_BSLASHAcs] = ACTIONS(1800), + [anon_sym_BSLASHacsp] = ACTIONS(1800), + [anon_sym_BSLASHAcsp] = ACTIONS(1800), + [anon_sym_BSLASHacl] = ACTIONS(1800), + [anon_sym_BSLASHAcl] = ACTIONS(1800), + [anon_sym_BSLASHaclp] = ACTIONS(1800), + [anon_sym_BSLASHAclp] = ACTIONS(1800), + [anon_sym_BSLASHacf] = ACTIONS(1800), + [anon_sym_BSLASHAcf] = ACTIONS(1800), + [anon_sym_BSLASHacfp] = ACTIONS(1800), + [anon_sym_BSLASHAcfp] = ACTIONS(1800), + [anon_sym_BSLASHac] = ACTIONS(1800), + [anon_sym_BSLASHAc] = ACTIONS(1800), + [anon_sym_BSLASHacp] = ACTIONS(1800), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1800), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1800), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1800), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1800), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1800), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1800), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1800), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1800), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1800), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1800), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1803), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1803), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1806), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1809), + [anon_sym_BSLASHcolor] = ACTIONS(1812), + [anon_sym_BSLASHcolorbox] = ACTIONS(1812), + [anon_sym_BSLASHtextcolor] = ACTIONS(1812), + [anon_sym_BSLASHpagecolor] = ACTIONS(1812), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1815), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1815), + [anon_sym_BSLASHtext] = ACTIONS(1818), + [anon_sym_BSLASHintertext] = ACTIONS(1818), + [anon_sym_shortintertext] = ACTIONS(1818), }, [118] = { - [sym_block_comment] = STATE(66), - [sym__root_content] = STATE(66), - [sym__flat_content] = STATE(66), - [sym__text_with_env_content] = STATE(66), - [sym__text_content] = STATE(66), - [sym__section] = STATE(66), - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(646), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(645), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(644), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(643), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(642), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(641), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(640), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(638), - [sym_curly_group] = STATE(66), - [sym_text] = STATE(66), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(66), - [sym_inline_formula] = STATE(66), - [sym_math_set] = STATE(66), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(66), - [sym_comment_environment] = STATE(66), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(66), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(66), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(66), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(66), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(66), - [sym_generic_command] = STATE(66), - [sym_package_include] = STATE(66), - [sym_class_include] = STATE(66), - [sym_latex_include] = STATE(66), - [sym_biblatex_include] = STATE(66), - [sym_bibtex_include] = STATE(66), - [sym_graphics_include] = STATE(66), - [sym_svg_include] = STATE(66), - [sym_inkscape_include] = STATE(66), - [sym_verbatim_include] = STATE(66), - [sym_import_include] = STATE(66), - [sym_caption] = STATE(66), - [sym_citation] = STATE(66), - [sym_label_definition] = STATE(66), - [sym_label_reference] = STATE(66), - [sym_label_reference_range] = STATE(66), - [sym_label_number] = STATE(66), - [sym_new_command_definition] = STATE(66), - [sym_old_command_definition] = STATE(66), - [sym_let_command_definition] = STATE(66), - [sym_environment_definition] = STATE(66), - [sym_glossary_entry_definition] = STATE(66), - [sym_glossary_entry_reference] = STATE(66), - [sym_acronym_definition] = STATE(66), - [sym_acronym_reference] = STATE(66), - [sym_theorem_definition] = STATE(66), - [sym_color_definition] = STATE(66), - [sym_color_set_definition] = STATE(66), - [sym_color_reference] = STATE(66), - [sym_tikz_library_import] = STATE(66), - [aux_sym_source_file_repeat1] = STATE(66), - [aux_sym__section_repeat1] = STATE(646), - [aux_sym__section_repeat2] = STATE(645), - [aux_sym__section_repeat3] = STATE(644), - [aux_sym__section_repeat4] = STATE(643), - [aux_sym__section_repeat5] = STATE(642), - [aux_sym__section_repeat6] = STATE(641), - [aux_sym__section_repeat7] = STATE(640), - [aux_sym__section_repeat8] = STATE(638), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(149), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - }, - [119] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), + [sym_block_comment] = STATE(107), + [sym__root_content] = STATE(107), + [sym__flat_content] = STATE(107), + [sym__text_with_env_content] = STATE(107), + [sym__text_content] = STATE(107), + [sym__section] = STATE(107), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_BSLASHpart] = ACTIONS(141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddpart] = ACTIONS(141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHchapter] = ACTIONS(141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddchap] = ACTIONS(141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), - [anon_sym_BSLASHsection] = ACTIONS(141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddsec] = ACTIONS(141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHparagraph] = ACTIONS(141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHitem] = ACTIONS(141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(107), + [sym_text] = STATE(107), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(107), + [sym_inline_formula] = STATE(107), + [sym_math_set] = STATE(107), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(107), + [sym_comment_environment] = STATE(107), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(107), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(107), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(107), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(107), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(107), + [sym_generic_command] = STATE(107), + [sym_package_include] = STATE(107), + [sym_class_include] = STATE(107), + [sym_latex_include] = STATE(107), + [sym_biblatex_include] = STATE(107), + [sym_bibtex_include] = STATE(107), + [sym_graphics_include] = STATE(107), + [sym_svg_include] = STATE(107), + [sym_inkscape_include] = STATE(107), + [sym_verbatim_include] = STATE(107), + [sym_import_include] = STATE(107), + [sym_caption] = STATE(107), + [sym_citation] = STATE(107), + [sym_label_definition] = STATE(107), + [sym_label_reference] = STATE(107), + [sym_label_reference_range] = STATE(107), + [sym_label_number] = STATE(107), + [sym_new_command_definition] = STATE(107), + [sym_old_command_definition] = STATE(107), + [sym_let_command_definition] = STATE(107), + [sym_environment_definition] = STATE(107), + [sym_glossary_entry_definition] = STATE(107), + [sym_glossary_entry_reference] = STATE(107), + [sym_acronym_definition] = STATE(107), + [sym_acronym_reference] = STATE(107), + [sym_theorem_definition] = STATE(107), + [sym_color_definition] = STATE(107), + [sym_color_set_definition] = STATE(107), + [sym_color_reference] = STATE(107), + [sym_tikz_library_import] = STATE(107), + [sym_text_mode] = STATE(107), + [aux_sym_source_file_repeat1] = STATE(107), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_RPAREN] = ACTIONS(1821), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_RBRACK] = ACTIONS(1821), + [anon_sym_COMMA] = ACTIONS(1821), + [anon_sym_EQ] = ACTIONS(1821), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1823), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, - [120] = { - [sym_block_comment] = STATE(120), - [sym__root_content] = STATE(120), - [sym__flat_content] = STATE(120), - [sym__text_with_env_content] = STATE(120), - [sym__text_content] = STATE(120), - [sym__section] = STATE(120), - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(581), + [119] = { + [sym_block_comment] = STATE(104), + [sym__root_content] = STATE(104), + [sym__flat_content] = STATE(104), + [sym__text_with_env_content] = STATE(104), + [sym__text_content] = STATE(104), + [sym__section] = STATE(104), + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(429), [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(580), + [sym_chapter] = STATE(430), [sym__section_declaration] = STATE(151), - [sym_section] = STATE(579), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(547), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(546), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(545), + [sym_section] = STATE(431), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(432), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(433), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(434), [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(544), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(543), - [sym_curly_group] = STATE(120), - [sym_text] = STATE(120), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(120), - [sym_inline_formula] = STATE(120), - [sym_math_set] = STATE(120), + [sym_subparagraph] = STATE(435), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(436), + [sym_curly_group] = STATE(104), + [sym_text] = STATE(104), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(104), + [sym_inline_formula] = STATE(104), + [sym_math_set] = STATE(104), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(104), + [sym_comment_environment] = STATE(104), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(104), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(104), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(104), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(104), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(104), + [sym_generic_command] = STATE(104), + [sym_package_include] = STATE(104), + [sym_class_include] = STATE(104), + [sym_latex_include] = STATE(104), + [sym_biblatex_include] = STATE(104), + [sym_bibtex_include] = STATE(104), + [sym_graphics_include] = STATE(104), + [sym_svg_include] = STATE(104), + [sym_inkscape_include] = STATE(104), + [sym_verbatim_include] = STATE(104), + [sym_import_include] = STATE(104), + [sym_caption] = STATE(104), + [sym_citation] = STATE(104), + [sym_label_definition] = STATE(104), + [sym_label_reference] = STATE(104), + [sym_label_reference_range] = STATE(104), + [sym_label_number] = STATE(104), + [sym_new_command_definition] = STATE(104), + [sym_old_command_definition] = STATE(104), + [sym_let_command_definition] = STATE(104), + [sym_environment_definition] = STATE(104), + [sym_glossary_entry_definition] = STATE(104), + [sym_glossary_entry_reference] = STATE(104), + [sym_acronym_definition] = STATE(104), + [sym_acronym_reference] = STATE(104), + [sym_theorem_definition] = STATE(104), + [sym_color_definition] = STATE(104), + [sym_color_set_definition] = STATE(104), + [sym_color_reference] = STATE(104), + [sym_tikz_library_import] = STATE(104), + [sym_text_mode] = STATE(104), + [aux_sym_source_file_repeat1] = STATE(104), + [aux_sym__section_repeat1] = STATE(429), + [aux_sym__section_repeat2] = STATE(430), + [aux_sym__section_repeat3] = STATE(431), + [aux_sym__section_repeat4] = STATE(432), + [aux_sym__section_repeat5] = STATE(433), + [aux_sym__section_repeat6] = STATE(434), + [aux_sym__section_repeat7] = STATE(435), + [aux_sym__section_repeat8] = STATE(436), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(787), + [anon_sym_RBRACK] = ACTIONS(787), + [anon_sym_COMMA] = ACTIONS(787), + [anon_sym_EQ] = ACTIONS(787), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1825), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [120] = { + [sym_block_comment] = STATE(115), + [sym__root_content] = STATE(115), + [sym__flat_content] = STATE(115), + [sym__text_with_env_content] = STATE(115), + [sym__text_content] = STATE(115), + [sym__section] = STATE(115), + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(402), + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(403), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(404), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(406), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(407), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(408), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(409), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(410), + [sym_curly_group] = STATE(115), + [sym_text] = STATE(115), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(115), + [sym_inline_formula] = STATE(115), + [sym_math_set] = STATE(115), [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(120), - [sym_comment_environment] = STATE(120), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(120), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(120), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(120), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(120), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(120), - [sym_generic_command] = STATE(120), - [sym_package_include] = STATE(120), - [sym_class_include] = STATE(120), - [sym_latex_include] = STATE(120), - [sym_biblatex_include] = STATE(120), - [sym_bibtex_include] = STATE(120), - [sym_graphics_include] = STATE(120), - [sym_svg_include] = STATE(120), - [sym_inkscape_include] = STATE(120), - [sym_verbatim_include] = STATE(120), - [sym_import_include] = STATE(120), - [sym_caption] = STATE(120), - [sym_citation] = STATE(120), - [sym_label_definition] = STATE(120), - [sym_label_reference] = STATE(120), - [sym_label_reference_range] = STATE(120), - [sym_label_number] = STATE(120), - [sym_new_command_definition] = STATE(120), - [sym_old_command_definition] = STATE(120), - [sym_let_command_definition] = STATE(120), - [sym_environment_definition] = STATE(120), - [sym_glossary_entry_definition] = STATE(120), - [sym_glossary_entry_reference] = STATE(120), - [sym_acronym_definition] = STATE(120), - [sym_acronym_reference] = STATE(120), - [sym_theorem_definition] = STATE(120), - [sym_color_definition] = STATE(120), - [sym_color_set_definition] = STATE(120), - [sym_color_reference] = STATE(120), - [sym_tikz_library_import] = STATE(120), - [aux_sym_source_file_repeat1] = STATE(120), - [aux_sym__section_repeat1] = STATE(581), - [aux_sym__section_repeat2] = STATE(580), - [aux_sym__section_repeat3] = STATE(579), - [aux_sym__section_repeat4] = STATE(547), - [aux_sym__section_repeat5] = STATE(546), - [aux_sym__section_repeat6] = STATE(545), - [aux_sym__section_repeat7] = STATE(544), - [aux_sym__section_repeat8] = STATE(543), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(1628), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1631), - [anon_sym_LPAREN] = ACTIONS(1634), - [anon_sym_RPAREN] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(1634), - [anon_sym_RBRACK] = ACTIONS(1634), - [anon_sym_COMMA] = ACTIONS(1634), - [anon_sym_EQ] = ACTIONS(1634), - [anon_sym_BSLASHpart] = ACTIONS(1637), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1640), - [anon_sym_BSLASHaddpart] = ACTIONS(1637), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1640), - [anon_sym_BSLASHchapter] = ACTIONS(1643), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1646), - [anon_sym_BSLASHaddchap] = ACTIONS(1643), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1646), - [anon_sym_BSLASHsection] = ACTIONS(1649), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1652), - [anon_sym_BSLASHaddsec] = ACTIONS(1649), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1652), - [anon_sym_BSLASHsubsection] = ACTIONS(1655), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1658), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1661), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1664), - [anon_sym_BSLASHparagraph] = ACTIONS(1667), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1670), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1673), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1676), - [anon_sym_BSLASHitem] = ACTIONS(1679), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1685), - [sym_word] = ACTIONS(1688), - [sym_placeholder] = ACTIONS(1691), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1694), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym__] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_COLON] = ACTIONS(1694), - [anon_sym_SQUOTE] = ACTIONS(1694), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1697), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1697), - [anon_sym_DOLLAR] = ACTIONS(1700), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1703), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1706), - [anon_sym_BSLASHbegin] = ACTIONS(432), - [anon_sym_BSLASHend] = ACTIONS(1709), - [anon_sym_BSLASHusepackage] = ACTIONS(1711), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1711), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1714), - [anon_sym_BSLASHinclude] = ACTIONS(1717), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1717), - [anon_sym_BSLASHinput] = ACTIONS(1717), - [anon_sym_BSLASHsubfile] = ACTIONS(1717), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1720), - [anon_sym_BSLASHbibliography] = ACTIONS(1723), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1726), - [anon_sym_BSLASHincludesvg] = ACTIONS(1729), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1732), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1735), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1735), - [anon_sym_BSLASHimport] = ACTIONS(1738), - [anon_sym_BSLASHsubimport] = ACTIONS(1738), - [anon_sym_BSLASHinputfrom] = ACTIONS(1738), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1738), - [anon_sym_BSLASHincludefrom] = ACTIONS(1738), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1738), - [anon_sym_BSLASHcaption] = ACTIONS(1741), - [anon_sym_BSLASHcite] = ACTIONS(1744), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1747), - [anon_sym_BSLASHCite] = ACTIONS(1744), - [anon_sym_BSLASHnocite] = ACTIONS(1744), - [anon_sym_BSLASHcitet] = ACTIONS(1744), - [anon_sym_BSLASHcitep] = ACTIONS(1744), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1747), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1747), - [anon_sym_BSLASHciteauthor] = ACTIONS(1744), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1747), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1744), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1747), - [anon_sym_BSLASHcitetitle] = ACTIONS(1744), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1747), - [anon_sym_BSLASHciteyear] = ACTIONS(1744), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1747), - [anon_sym_BSLASHcitedate] = ACTIONS(1744), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1747), - [anon_sym_BSLASHciteurl] = ACTIONS(1744), - [anon_sym_BSLASHfullcite] = ACTIONS(1744), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1744), - [anon_sym_BSLASHcitealt] = ACTIONS(1744), - [anon_sym_BSLASHcitealp] = ACTIONS(1744), - [anon_sym_BSLASHcitetext] = ACTIONS(1744), - [anon_sym_BSLASHparencite] = ACTIONS(1744), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1747), - [anon_sym_BSLASHParencite] = ACTIONS(1744), - [anon_sym_BSLASHfootcite] = ACTIONS(1744), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1744), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1744), - [anon_sym_BSLASHtextcite] = ACTIONS(1744), - [anon_sym_BSLASHTextcite] = ACTIONS(1744), - [anon_sym_BSLASHsmartcite] = ACTIONS(1744), - [anon_sym_BSLASHSmartcite] = ACTIONS(1744), - [anon_sym_BSLASHsupercite] = ACTIONS(1744), - [anon_sym_BSLASHautocite] = ACTIONS(1744), - [anon_sym_BSLASHAutocite] = ACTIONS(1744), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1747), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1747), - [anon_sym_BSLASHvolcite] = ACTIONS(1744), - [anon_sym_BSLASHVolcite] = ACTIONS(1744), - [anon_sym_BSLASHpvolcite] = ACTIONS(1744), - [anon_sym_BSLASHPvolcite] = ACTIONS(1744), - [anon_sym_BSLASHfvolcite] = ACTIONS(1744), - [anon_sym_BSLASHftvolcite] = ACTIONS(1744), - [anon_sym_BSLASHsvolcite] = ACTIONS(1744), - [anon_sym_BSLASHSvolcite] = ACTIONS(1744), - [anon_sym_BSLASHtvolcite] = ACTIONS(1744), - [anon_sym_BSLASHTvolcite] = ACTIONS(1744), - [anon_sym_BSLASHavolcite] = ACTIONS(1744), - [anon_sym_BSLASHAvolcite] = ACTIONS(1744), - [anon_sym_BSLASHnotecite] = ACTIONS(1744), - [anon_sym_BSLASHNotecite] = ACTIONS(1744), - [anon_sym_BSLASHpnotecite] = ACTIONS(1744), - [anon_sym_BSLASHPnotecite] = ACTIONS(1744), - [anon_sym_BSLASHfnotecite] = ACTIONS(1744), - [anon_sym_BSLASHlabel] = ACTIONS(1750), - [anon_sym_BSLASHref] = ACTIONS(1753), - [anon_sym_BSLASHeqref] = ACTIONS(1753), - [anon_sym_BSLASHvref] = ACTIONS(1753), - [anon_sym_BSLASHVref] = ACTIONS(1753), - [anon_sym_BSLASHautoref] = ACTIONS(1753), - [anon_sym_BSLASHpageref] = ACTIONS(1753), - [anon_sym_BSLASHcref] = ACTIONS(1753), - [anon_sym_BSLASHCref] = ACTIONS(1753), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1756), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1756), - [anon_sym_BSLASHnamecref] = ACTIONS(1753), - [anon_sym_BSLASHnameCref] = ACTIONS(1753), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1753), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1753), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1753), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1753), - [anon_sym_BSLASHlabelcref] = ACTIONS(1753), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1753), - [anon_sym_BSLASHcrefrange] = ACTIONS(1759), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1762), - [anon_sym_BSLASHCrefrange] = ACTIONS(1759), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1762), - [anon_sym_BSLASHnewlabel] = ACTIONS(1765), - [anon_sym_BSLASHnewcommand] = ACTIONS(1768), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1771), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1768), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1771), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1768), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1771), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1768), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1771), - [anon_sym_BSLASHdef] = ACTIONS(1774), - [anon_sym_BSLASHlet] = ACTIONS(1777), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1780), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1783), - [anon_sym_BSLASHgls] = ACTIONS(1786), - [anon_sym_BSLASHGls] = ACTIONS(1786), - [anon_sym_BSLASHGLS] = ACTIONS(1786), - [anon_sym_BSLASHglspl] = ACTIONS(1786), - [anon_sym_BSLASHGlspl] = ACTIONS(1786), - [anon_sym_BSLASHGLSpl] = ACTIONS(1786), - [anon_sym_BSLASHglsdisp] = ACTIONS(1786), - [anon_sym_BSLASHglslink] = ACTIONS(1786), - [anon_sym_BSLASHglstext] = ACTIONS(1786), - [anon_sym_BSLASHGlstext] = ACTIONS(1786), - [anon_sym_BSLASHGLStext] = ACTIONS(1786), - [anon_sym_BSLASHglsfirst] = ACTIONS(1786), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1786), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1786), - [anon_sym_BSLASHglsplural] = ACTIONS(1786), - [anon_sym_BSLASHGlsplural] = ACTIONS(1786), - [anon_sym_BSLASHGLSplural] = ACTIONS(1786), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1786), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1786), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1786), - [anon_sym_BSLASHglsname] = ACTIONS(1786), - [anon_sym_BSLASHGlsname] = ACTIONS(1786), - [anon_sym_BSLASHGLSname] = ACTIONS(1786), - [anon_sym_BSLASHglssymbol] = ACTIONS(1786), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1786), - [anon_sym_BSLASHglsdesc] = ACTIONS(1786), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1786), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1786), - [anon_sym_BSLASHglsuseri] = ACTIONS(1786), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1786), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1786), - [anon_sym_BSLASHglsuserii] = ACTIONS(1786), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1786), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1786), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1786), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1786), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1786), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1786), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1786), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1786), - [anon_sym_BSLASHglsuserv] = ACTIONS(1786), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1786), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1786), - [anon_sym_BSLASHglsuservi] = ACTIONS(1786), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1786), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1786), - [anon_sym_BSLASHnewacronym] = ACTIONS(1789), - [anon_sym_BSLASHacrshort] = ACTIONS(1792), - [anon_sym_BSLASHAcrshort] = ACTIONS(1792), - [anon_sym_BSLASHACRshort] = ACTIONS(1792), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1792), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1792), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1792), - [anon_sym_BSLASHacrlong] = ACTIONS(1792), - [anon_sym_BSLASHAcrlong] = ACTIONS(1792), - [anon_sym_BSLASHACRlong] = ACTIONS(1792), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1792), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1792), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1792), - [anon_sym_BSLASHacrfull] = ACTIONS(1792), - [anon_sym_BSLASHAcrfull] = ACTIONS(1792), - [anon_sym_BSLASHACRfull] = ACTIONS(1792), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1792), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1792), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1792), - [anon_sym_BSLASHacs] = ACTIONS(1792), - [anon_sym_BSLASHAcs] = ACTIONS(1792), - [anon_sym_BSLASHacsp] = ACTIONS(1792), - [anon_sym_BSLASHAcsp] = ACTIONS(1792), - [anon_sym_BSLASHacl] = ACTIONS(1792), - [anon_sym_BSLASHAcl] = ACTIONS(1792), - [anon_sym_BSLASHaclp] = ACTIONS(1792), - [anon_sym_BSLASHAclp] = ACTIONS(1792), - [anon_sym_BSLASHacf] = ACTIONS(1792), - [anon_sym_BSLASHAcf] = ACTIONS(1792), - [anon_sym_BSLASHacfp] = ACTIONS(1792), - [anon_sym_BSLASHAcfp] = ACTIONS(1792), - [anon_sym_BSLASHac] = ACTIONS(1792), - [anon_sym_BSLASHAc] = ACTIONS(1792), - [anon_sym_BSLASHacp] = ACTIONS(1792), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1792), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1792), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1792), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1792), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1792), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1792), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1792), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1792), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1792), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1792), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1795), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1795), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1798), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1801), - [anon_sym_BSLASHcolor] = ACTIONS(1804), - [anon_sym_BSLASHcolorbox] = ACTIONS(1804), - [anon_sym_BSLASHtextcolor] = ACTIONS(1804), - [anon_sym_BSLASHpagecolor] = ACTIONS(1804), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1807), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1807), + [sym_generic_environment] = STATE(115), + [sym_comment_environment] = STATE(115), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(115), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(115), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(115), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(115), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(115), + [sym_generic_command] = STATE(115), + [sym_package_include] = STATE(115), + [sym_class_include] = STATE(115), + [sym_latex_include] = STATE(115), + [sym_biblatex_include] = STATE(115), + [sym_bibtex_include] = STATE(115), + [sym_graphics_include] = STATE(115), + [sym_svg_include] = STATE(115), + [sym_inkscape_include] = STATE(115), + [sym_verbatim_include] = STATE(115), + [sym_import_include] = STATE(115), + [sym_caption] = STATE(115), + [sym_citation] = STATE(115), + [sym_label_definition] = STATE(115), + [sym_label_reference] = STATE(115), + [sym_label_reference_range] = STATE(115), + [sym_label_number] = STATE(115), + [sym_new_command_definition] = STATE(115), + [sym_old_command_definition] = STATE(115), + [sym_let_command_definition] = STATE(115), + [sym_environment_definition] = STATE(115), + [sym_glossary_entry_definition] = STATE(115), + [sym_glossary_entry_reference] = STATE(115), + [sym_acronym_definition] = STATE(115), + [sym_acronym_reference] = STATE(115), + [sym_theorem_definition] = STATE(115), + [sym_color_definition] = STATE(115), + [sym_color_set_definition] = STATE(115), + [sym_color_reference] = STATE(115), + [sym_tikz_library_import] = STATE(115), + [sym_text_mode] = STATE(115), + [aux_sym_source_file_repeat1] = STATE(115), + [aux_sym__section_repeat1] = STATE(402), + [aux_sym__section_repeat2] = STATE(403), + [aux_sym__section_repeat3] = STATE(404), + [aux_sym__section_repeat4] = STATE(406), + [aux_sym__section_repeat5] = STATE(407), + [aux_sym__section_repeat6] = STATE(408), + [aux_sym__section_repeat7] = STATE(409), + [aux_sym__section_repeat8] = STATE(410), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(649), + [anon_sym_RPAREN] = ACTIONS(649), + [anon_sym_LBRACK] = ACTIONS(649), + [anon_sym_RBRACK] = ACTIONS(649), + [anon_sym_COMMA] = ACTIONS(649), + [anon_sym_EQ] = ACTIONS(649), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1829), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, [121] = { - [sym_block_comment] = STATE(100), - [sym__root_content] = STATE(100), - [sym__flat_content] = STATE(100), - [sym__text_with_env_content] = STATE(100), - [sym__text_content] = STATE(100), - [sym__section] = STATE(100), - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(427), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(428), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(429), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(430), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(431), + [sym_block_comment] = STATE(109), + [sym__root_content] = STATE(109), + [sym__flat_content] = STATE(109), + [sym__text_with_env_content] = STATE(109), + [sym__text_content] = STATE(109), + [sym__section] = STATE(109), + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(646), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(645), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(643), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(641), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(640), [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(432), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(433), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(434), - [sym_curly_group] = STATE(100), - [sym_text] = STATE(100), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(100), - [sym_inline_formula] = STATE(100), - [sym_math_set] = STATE(100), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(100), - [sym_comment_environment] = STATE(100), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(100), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(100), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(100), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(100), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(100), - [sym_generic_command] = STATE(100), - [sym_package_include] = STATE(100), - [sym_class_include] = STATE(100), - [sym_latex_include] = STATE(100), - [sym_biblatex_include] = STATE(100), - [sym_bibtex_include] = STATE(100), - [sym_graphics_include] = STATE(100), - [sym_svg_include] = STATE(100), - [sym_inkscape_include] = STATE(100), - [sym_verbatim_include] = STATE(100), - [sym_import_include] = STATE(100), - [sym_caption] = STATE(100), - [sym_citation] = STATE(100), - [sym_label_definition] = STATE(100), - [sym_label_reference] = STATE(100), - [sym_label_reference_range] = STATE(100), - [sym_label_number] = STATE(100), - [sym_new_command_definition] = STATE(100), - [sym_old_command_definition] = STATE(100), - [sym_let_command_definition] = STATE(100), - [sym_environment_definition] = STATE(100), - [sym_glossary_entry_definition] = STATE(100), - [sym_glossary_entry_reference] = STATE(100), - [sym_acronym_definition] = STATE(100), - [sym_acronym_reference] = STATE(100), - [sym_theorem_definition] = STATE(100), - [sym_color_definition] = STATE(100), - [sym_color_set_definition] = STATE(100), - [sym_color_reference] = STATE(100), - [sym_tikz_library_import] = STATE(100), - [aux_sym_source_file_repeat1] = STATE(100), - [aux_sym__section_repeat1] = STATE(427), - [aux_sym__section_repeat2] = STATE(428), - [aux_sym__section_repeat3] = STATE(429), - [aux_sym__section_repeat4] = STATE(430), - [aux_sym__section_repeat5] = STATE(431), - [aux_sym__section_repeat6] = STATE(432), - [aux_sym__section_repeat7] = STATE(433), - [aux_sym__section_repeat8] = STATE(434), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(183), - [anon_sym_RPAREN] = ACTIONS(183), - [anon_sym_LBRACK] = ACTIONS(183), - [anon_sym_RBRACK] = ACTIONS(183), - [anon_sym_COMMA] = ACTIONS(183), - [anon_sym_EQ] = ACTIONS(183), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1810), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(143), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_paragraph] = STATE(639), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(638), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(637), + [sym_curly_group] = STATE(109), + [sym_text] = STATE(109), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(109), + [sym_inline_formula] = STATE(109), + [sym_math_set] = STATE(109), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(109), + [sym_comment_environment] = STATE(109), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(109), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(109), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(109), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(109), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(109), + [sym_generic_command] = STATE(109), + [sym_package_include] = STATE(109), + [sym_class_include] = STATE(109), + [sym_latex_include] = STATE(109), + [sym_biblatex_include] = STATE(109), + [sym_bibtex_include] = STATE(109), + [sym_graphics_include] = STATE(109), + [sym_svg_include] = STATE(109), + [sym_inkscape_include] = STATE(109), + [sym_verbatim_include] = STATE(109), + [sym_import_include] = STATE(109), + [sym_caption] = STATE(109), + [sym_citation] = STATE(109), + [sym_label_definition] = STATE(109), + [sym_label_reference] = STATE(109), + [sym_label_reference_range] = STATE(109), + [sym_label_number] = STATE(109), + [sym_new_command_definition] = STATE(109), + [sym_old_command_definition] = STATE(109), + [sym_let_command_definition] = STATE(109), + [sym_environment_definition] = STATE(109), + [sym_glossary_entry_definition] = STATE(109), + [sym_glossary_entry_reference] = STATE(109), + [sym_acronym_definition] = STATE(109), + [sym_acronym_reference] = STATE(109), + [sym_theorem_definition] = STATE(109), + [sym_color_definition] = STATE(109), + [sym_color_set_definition] = STATE(109), + [sym_color_reference] = STATE(109), + [sym_tikz_library_import] = STATE(109), + [sym_text_mode] = STATE(109), + [aux_sym_source_file_repeat1] = STATE(109), + [aux_sym__section_repeat1] = STATE(646), + [aux_sym__section_repeat2] = STATE(645), + [aux_sym__section_repeat3] = STATE(643), + [aux_sym__section_repeat4] = STATE(641), + [aux_sym__section_repeat5] = STATE(640), + [aux_sym__section_repeat6] = STATE(639), + [aux_sym__section_repeat7] = STATE(638), + [aux_sym__section_repeat8] = STATE(637), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_RPAREN] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1831), + [anon_sym_RBRACK] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1831), + [anon_sym_EQ] = ACTIONS(1831), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, [122] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), + [sym_block_comment] = STATE(193), + [sym__flat_content] = STATE(193), + [sym__text_with_env_content] = STATE(193), + [sym__text_content] = STATE(193), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(313), + [sym_chapter] = STATE(282), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(309), + [sym_section] = STATE(283), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(282), + [sym_subsection] = STATE(284), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(283), + [sym_subsubsection] = STATE(285), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(284), + [sym_paragraph] = STATE(286), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(285), + [sym_subparagraph] = STATE(287), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(286), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [aux_sym__section_repeat2] = STATE(313), - [aux_sym__section_repeat3] = STATE(309), - [aux_sym__section_repeat4] = STATE(282), - [aux_sym__section_repeat5] = STATE(283), - [aux_sym__section_repeat6] = STATE(284), - [aux_sym__section_repeat7] = STATE(285), - [aux_sym__section_repeat8] = STATE(286), - [aux_sym_part_repeat1] = STATE(192), + [sym_enum_item] = STATE(288), + [sym_curly_group] = STATE(193), + [sym_text] = STATE(193), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(193), + [sym_inline_formula] = STATE(193), + [sym_math_set] = STATE(193), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(193), + [sym_comment_environment] = STATE(193), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(193), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(193), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(193), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(193), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(193), + [sym_generic_command] = STATE(193), + [sym_package_include] = STATE(193), + [sym_class_include] = STATE(193), + [sym_latex_include] = STATE(193), + [sym_biblatex_include] = STATE(193), + [sym_bibtex_include] = STATE(193), + [sym_graphics_include] = STATE(193), + [sym_svg_include] = STATE(193), + [sym_inkscape_include] = STATE(193), + [sym_verbatim_include] = STATE(193), + [sym_import_include] = STATE(193), + [sym_caption] = STATE(193), + [sym_citation] = STATE(193), + [sym_label_definition] = STATE(193), + [sym_label_reference] = STATE(193), + [sym_label_reference_range] = STATE(193), + [sym_label_number] = STATE(193), + [sym_new_command_definition] = STATE(193), + [sym_old_command_definition] = STATE(193), + [sym_let_command_definition] = STATE(193), + [sym_environment_definition] = STATE(193), + [sym_glossary_entry_definition] = STATE(193), + [sym_glossary_entry_reference] = STATE(193), + [sym_acronym_definition] = STATE(193), + [sym_acronym_reference] = STATE(193), + [sym_theorem_definition] = STATE(193), + [sym_color_definition] = STATE(193), + [sym_color_set_definition] = STATE(193), + [sym_color_reference] = STATE(193), + [sym_tikz_library_import] = STATE(193), + [sym_text_mode] = STATE(193), + [aux_sym__section_repeat2] = STATE(282), + [aux_sym__section_repeat3] = STATE(283), + [aux_sym__section_repeat4] = STATE(284), + [aux_sym__section_repeat5] = STATE(285), + [aux_sym__section_repeat6] = STATE(286), + [aux_sym__section_repeat7] = STATE(287), + [aux_sym__section_repeat8] = STATE(288), + [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1812), + [ts_builtin_sym_end] = ACTIONS(1837), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_RBRACK] = ACTIONS(1814), - [anon_sym_COMMA] = ACTIONS(1814), - [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_RBRACK] = ACTIONS(1839), + [anon_sym_COMMA] = ACTIONS(1839), + [anon_sym_EQ] = ACTIONS(1839), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), [anon_sym_BSLASHchapter] = ACTIONS(17), [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), [anon_sym_BSLASHaddchap] = ACTIONS(17), @@ -62608,7 +60886,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1812), + [anon_sym_RBRACE] = ACTIONS(1837), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -62842,6 +61120,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [123] = { [sym_block_comment] = STATE(122), @@ -62849,37 +61130,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__text_with_env_content] = STATE(122), [sym__text_content] = STATE(122), [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(279), + [sym_chapter] = STATE(278), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(278), + [sym_section] = STATE(281), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(277), + [sym_subsection] = STATE(311), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(276), + [sym_subsubsection] = STATE(312), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(275), + [sym_paragraph] = STATE(313), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(274), + [sym_subparagraph] = STATE(269), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(273), + [sym_enum_item] = STATE(315), [sym_curly_group] = STATE(122), [sym_text] = STATE(122), - [sym_operator] = STATE(805), + [sym_operator] = STATE(782), [sym_displayed_equation] = STATE(122), [sym_inline_formula] = STATE(122), [sym_math_set] = STATE(122), - [sym_begin] = STATE(37), + [sym_begin] = STATE(36), [sym_generic_environment] = STATE(122), [sym_comment_environment] = STATE(122), - [sym__trivia_begin_comment] = STATE(2391), + [sym__trivia_begin_comment] = STATE(2417), [sym_verbatim_environment] = STATE(122), - [sym__trivia_begin_verbatim] = STATE(2393), + [sym__trivia_begin_verbatim] = STATE(2429), [sym_listing_environment] = STATE(122), - [sym__trivia_begin_listing] = STATE(2395), + [sym__trivia_begin_listing] = STATE(2430), [sym_minted_environment] = STATE(122), - [sym__trivia_begin_minted] = STATE(2396), + [sym__trivia_begin_minted] = STATE(2431), [sym_pycode_environment] = STATE(122), - [sym__trivia_begin_pycode] = STATE(2408), + [sym__trivia_begin_pycode] = STATE(2461), [sym__command] = STATE(122), [sym_generic_command] = STATE(122), [sym_package_include] = STATE(122), @@ -62911,30 +61192,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(122), [sym_color_reference] = STATE(122), [sym_tikz_library_import] = STATE(122), - [aux_sym__section_repeat2] = STATE(279), - [aux_sym__section_repeat3] = STATE(278), - [aux_sym__section_repeat4] = STATE(277), - [aux_sym__section_repeat5] = STATE(276), - [aux_sym__section_repeat6] = STATE(275), - [aux_sym__section_repeat7] = STATE(274), - [aux_sym__section_repeat8] = STATE(273), + [sym_text_mode] = STATE(122), + [aux_sym__section_repeat2] = STATE(278), + [aux_sym__section_repeat3] = STATE(281), + [aux_sym__section_repeat4] = STATE(311), + [aux_sym__section_repeat5] = STATE(312), + [aux_sym__section_repeat6] = STATE(313), + [aux_sym__section_repeat7] = STATE(269), + [aux_sym__section_repeat8] = STATE(315), [aux_sym_part_repeat1] = STATE(122), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(1843), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1820), - [anon_sym_RPAREN] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1820), - [anon_sym_RBRACK] = ACTIONS(1820), - [anon_sym_COMMA] = ACTIONS(1820), - [anon_sym_EQ] = ACTIONS(1820), - [anon_sym_BSLASHpart] = ACTIONS(1822), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1818), - [anon_sym_BSLASHaddpart] = ACTIONS(1822), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_RPAREN] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_RBRACK] = ACTIONS(1845), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_EQ] = ACTIONS(1845), + [anon_sym_BSLASHpart] = ACTIONS(1847), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1843), + [anon_sym_BSLASHaddpart] = ACTIONS(1847), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1843), [anon_sym_BSLASHchapter] = ACTIONS(17), [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), [anon_sym_BSLASHaddchap] = ACTIONS(17), @@ -62954,7 +61236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1843), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -63188,44 +61470,396 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [124] = { + [sym_block_comment] = STATE(206), + [sym__flat_content] = STATE(206), + [sym__text_with_env_content] = STATE(206), + [sym__text_content] = STATE(206), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(401), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(400), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(398), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(397), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(395), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(394), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(391), + [sym_curly_group] = STATE(206), + [sym_text] = STATE(206), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(206), + [sym_inline_formula] = STATE(206), + [sym_math_set] = STATE(206), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(206), + [sym_comment_environment] = STATE(206), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(206), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(206), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(206), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(206), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(206), + [sym_generic_command] = STATE(206), + [sym_package_include] = STATE(206), + [sym_class_include] = STATE(206), + [sym_latex_include] = STATE(206), + [sym_biblatex_include] = STATE(206), + [sym_bibtex_include] = STATE(206), + [sym_graphics_include] = STATE(206), + [sym_svg_include] = STATE(206), + [sym_inkscape_include] = STATE(206), + [sym_verbatim_include] = STATE(206), + [sym_import_include] = STATE(206), + [sym_caption] = STATE(206), + [sym_citation] = STATE(206), + [sym_label_definition] = STATE(206), + [sym_label_reference] = STATE(206), + [sym_label_reference_range] = STATE(206), + [sym_label_number] = STATE(206), + [sym_new_command_definition] = STATE(206), + [sym_old_command_definition] = STATE(206), + [sym_let_command_definition] = STATE(206), + [sym_environment_definition] = STATE(206), + [sym_glossary_entry_definition] = STATE(206), + [sym_glossary_entry_reference] = STATE(206), + [sym_acronym_definition] = STATE(206), + [sym_acronym_reference] = STATE(206), + [sym_theorem_definition] = STATE(206), + [sym_color_definition] = STATE(206), + [sym_color_set_definition] = STATE(206), + [sym_color_reference] = STATE(206), + [sym_tikz_library_import] = STATE(206), + [sym_text_mode] = STATE(206), + [aux_sym__section_repeat2] = STATE(401), + [aux_sym__section_repeat3] = STATE(400), + [aux_sym__section_repeat4] = STATE(398), + [aux_sym__section_repeat5] = STATE(397), + [aux_sym__section_repeat6] = STATE(395), + [aux_sym__section_repeat7] = STATE(394), + [aux_sym__section_repeat8] = STATE(391), + [aux_sym_part_repeat1] = STATE(206), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_RBRACK] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), + }, + [125] = { [sym_block_comment] = STATE(128), [sym__flat_content] = STATE(128), [sym__text_with_env_content] = STATE(128), [sym__text_content] = STATE(128), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(591), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(590), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(589), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(588), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(587), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(586), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(585), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(476), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(477), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(478), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(479), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(480), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(481), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(482), [sym_curly_group] = STATE(128), [sym_text] = STATE(128), - [sym_operator] = STATE(1000), + [sym_operator] = STATE(1178), [sym_displayed_equation] = STATE(128), [sym_inline_formula] = STATE(128), [sym_math_set] = STATE(128), - [sym_begin] = STATE(20), + [sym_begin] = STATE(25), [sym_generic_environment] = STATE(128), [sym_comment_environment] = STATE(128), - [sym__trivia_begin_comment] = STATE(2333), + [sym__trivia_begin_comment] = STATE(2367), [sym_verbatim_environment] = STATE(128), - [sym__trivia_begin_verbatim] = STATE(2332), + [sym__trivia_begin_verbatim] = STATE(2366), [sym_listing_environment] = STATE(128), - [sym__trivia_begin_listing] = STATE(2331), + [sym__trivia_begin_listing] = STATE(2365), [sym_minted_environment] = STATE(128), - [sym__trivia_begin_minted] = STATE(2330), + [sym__trivia_begin_minted] = STATE(2364), [sym_pycode_environment] = STATE(128), - [sym__trivia_begin_pycode] = STATE(2329), + [sym__trivia_begin_pycode] = STATE(2363), [sym__command] = STATE(128), [sym_generic_command] = STATE(128), [sym_package_include] = STATE(128), @@ -63257,320 +61891,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(128), [sym_color_reference] = STATE(128), [sym_tikz_library_import] = STATE(128), - [aux_sym__section_repeat2] = STATE(591), - [aux_sym__section_repeat3] = STATE(590), - [aux_sym__section_repeat4] = STATE(589), - [aux_sym__section_repeat5] = STATE(588), - [aux_sym__section_repeat6] = STATE(587), - [aux_sym__section_repeat7] = STATE(586), - [aux_sym__section_repeat8] = STATE(585), + [sym_text_mode] = STATE(128), + [aux_sym__section_repeat2] = STATE(476), + [aux_sym__section_repeat3] = STATE(477), + [aux_sym__section_repeat4] = STATE(478), + [aux_sym__section_repeat5] = STATE(479), + [aux_sym__section_repeat6] = STATE(480), + [aux_sym__section_repeat7] = STATE(481), + [aux_sym__section_repeat8] = STATE(482), [aux_sym_part_repeat1] = STATE(128), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1824), - [anon_sym_RPAREN] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1824), - [anon_sym_RBRACK] = ACTIONS(1824), - [anon_sym_COMMA] = ACTIONS(1824), - [anon_sym_EQ] = ACTIONS(1824), - [anon_sym_BSLASHpart] = ACTIONS(1822), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1818), - [anon_sym_BSLASHaddpart] = ACTIONS(1822), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1818), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1818), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_RPAREN] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_RBRACK] = ACTIONS(1853), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_EQ] = ACTIONS(1853), + [anon_sym_BSLASHpart] = ACTIONS(1847), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1843), + [anon_sym_BSLASHaddpart] = ACTIONS(1847), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1843), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1843), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, - [125] = { + [126] = { [sym_block_comment] = STATE(127), [sym__flat_content] = STATE(127), [sym__text_with_env_content] = STATE(127), [sym__text_content] = STATE(127), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(411), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(523), [sym__section_declaration] = STATE(145), - [sym_section] = STATE(412), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(413), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(414), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(415), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(416), + [sym_section] = STATE(512), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(475), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(474), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(473), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(471), [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(417), + [sym_enum_item] = STATE(470), [sym_curly_group] = STATE(127), [sym_text] = STATE(127), - [sym_operator] = STATE(858), + [sym_operator] = STATE(1082), [sym_displayed_equation] = STATE(127), [sym_inline_formula] = STATE(127), [sym_math_set] = STATE(127), - [sym_begin] = STATE(26), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(127), [sym_comment_environment] = STATE(127), - [sym__trivia_begin_comment] = STATE(2324), + [sym__trivia_begin_comment] = STATE(2328), [sym_verbatim_environment] = STATE(127), - [sym__trivia_begin_verbatim] = STATE(2323), + [sym__trivia_begin_verbatim] = STATE(2329), [sym_listing_environment] = STATE(127), - [sym__trivia_begin_listing] = STATE(2322), + [sym__trivia_begin_listing] = STATE(2330), [sym_minted_environment] = STATE(127), - [sym__trivia_begin_minted] = STATE(2321), + [sym__trivia_begin_minted] = STATE(2331), [sym_pycode_environment] = STATE(127), - [sym__trivia_begin_pycode] = STATE(2319), + [sym__trivia_begin_pycode] = STATE(2332), [sym__command] = STATE(127), [sym_generic_command] = STATE(127), [sym_package_include] = STATE(127), @@ -63602,665 +62240,324 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(127), [sym_color_reference] = STATE(127), [sym_tikz_library_import] = STATE(127), - [aux_sym__section_repeat2] = STATE(411), - [aux_sym__section_repeat3] = STATE(412), - [aux_sym__section_repeat4] = STATE(413), - [aux_sym__section_repeat5] = STATE(414), - [aux_sym__section_repeat6] = STATE(415), - [aux_sym__section_repeat7] = STATE(416), - [aux_sym__section_repeat8] = STATE(417), + [sym_text_mode] = STATE(127), + [aux_sym__section_repeat2] = STATE(523), + [aux_sym__section_repeat3] = STATE(512), + [aux_sym__section_repeat4] = STATE(475), + [aux_sym__section_repeat5] = STATE(474), + [aux_sym__section_repeat6] = STATE(473), + [aux_sym__section_repeat7] = STATE(471), + [aux_sym__section_repeat8] = STATE(470), [aux_sym_part_repeat1] = STATE(127), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1828), - [anon_sym_RPAREN] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1828), - [anon_sym_RBRACK] = ACTIONS(1828), - [anon_sym_COMMA] = ACTIONS(1828), - [anon_sym_EQ] = ACTIONS(1828), - [anon_sym_BSLASHpart] = ACTIONS(1822), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1818), - [anon_sym_BSLASHaddpart] = ACTIONS(1822), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1818), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1818), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [126] = { - [sym_block_comment] = STATE(203), - [sym__flat_content] = STATE(203), - [sym__text_with_env_content] = STATE(203), - [sym__text_content] = STATE(203), - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(550), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(551), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(552), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(553), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(554), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(555), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(556), - [sym_curly_group] = STATE(203), - [sym_text] = STATE(203), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(203), - [sym_inline_formula] = STATE(203), - [sym_math_set] = STATE(203), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(203), - [sym_comment_environment] = STATE(203), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(203), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(203), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(203), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(203), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(203), - [sym_generic_command] = STATE(203), - [sym_package_include] = STATE(203), - [sym_class_include] = STATE(203), - [sym_latex_include] = STATE(203), - [sym_biblatex_include] = STATE(203), - [sym_bibtex_include] = STATE(203), - [sym_graphics_include] = STATE(203), - [sym_svg_include] = STATE(203), - [sym_inkscape_include] = STATE(203), - [sym_verbatim_include] = STATE(203), - [sym_import_include] = STATE(203), - [sym_caption] = STATE(203), - [sym_citation] = STATE(203), - [sym_label_definition] = STATE(203), - [sym_label_reference] = STATE(203), - [sym_label_reference_range] = STATE(203), - [sym_label_number] = STATE(203), - [sym_new_command_definition] = STATE(203), - [sym_old_command_definition] = STATE(203), - [sym_let_command_definition] = STATE(203), - [sym_environment_definition] = STATE(203), - [sym_glossary_entry_definition] = STATE(203), - [sym_glossary_entry_reference] = STATE(203), - [sym_acronym_definition] = STATE(203), - [sym_acronym_reference] = STATE(203), - [sym_theorem_definition] = STATE(203), - [sym_color_definition] = STATE(203), - [sym_color_set_definition] = STATE(203), - [sym_color_reference] = STATE(203), - [sym_tikz_library_import] = STATE(203), - [aux_sym__section_repeat2] = STATE(550), - [aux_sym__section_repeat3] = STATE(551), - [aux_sym__section_repeat4] = STATE(552), - [aux_sym__section_repeat5] = STATE(553), - [aux_sym__section_repeat6] = STATE(554), - [aux_sym__section_repeat7] = STATE(555), - [aux_sym__section_repeat8] = STATE(556), - [aux_sym_part_repeat1] = STATE(203), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_RBRACK] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_RPAREN] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1855), + [anon_sym_RBRACK] = ACTIONS(1855), + [anon_sym_COMMA] = ACTIONS(1855), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_BSLASHpart] = ACTIONS(1847), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1843), + [anon_sym_BSLASHaddpart] = ACTIONS(1847), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1843), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHend] = ACTIONS(1847), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [127] = { [sym_block_comment] = STATE(205), [sym__flat_content] = STATE(205), [sym__text_with_env_content] = STATE(205), [sym__text_content] = STATE(205), - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(630), + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(379), [sym__section_declaration] = STATE(145), - [sym_section] = STATE(631), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(632), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(633), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(634), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(635), + [sym_section] = STATE(377), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(375), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(374), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(373), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(372), [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(636), + [sym_enum_item] = STATE(370), [sym_curly_group] = STATE(205), [sym_text] = STATE(205), - [sym_operator] = STATE(858), + [sym_operator] = STATE(1082), [sym_displayed_equation] = STATE(205), [sym_inline_formula] = STATE(205), [sym_math_set] = STATE(205), - [sym_begin] = STATE(26), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(205), [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2324), + [sym__trivia_begin_comment] = STATE(2328), [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2323), + [sym__trivia_begin_verbatim] = STATE(2329), [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2322), + [sym__trivia_begin_listing] = STATE(2330), [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2321), + [sym__trivia_begin_minted] = STATE(2331), [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2319), + [sym__trivia_begin_pycode] = STATE(2332), [sym__command] = STATE(205), [sym_generic_command] = STATE(205), [sym_package_include] = STATE(205), @@ -64292,320 +62589,1022 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(205), [sym_color_reference] = STATE(205), [sym_tikz_library_import] = STATE(205), - [aux_sym__section_repeat2] = STATE(630), - [aux_sym__section_repeat3] = STATE(631), - [aux_sym__section_repeat4] = STATE(632), - [aux_sym__section_repeat5] = STATE(633), - [aux_sym__section_repeat6] = STATE(634), - [aux_sym__section_repeat7] = STATE(635), - [aux_sym__section_repeat8] = STATE(636), + [sym_text_mode] = STATE(205), + [aux_sym__section_repeat2] = STATE(379), + [aux_sym__section_repeat3] = STATE(377), + [aux_sym__section_repeat4] = STATE(375), + [aux_sym__section_repeat5] = STATE(374), + [aux_sym__section_repeat6] = STATE(373), + [aux_sym__section_repeat7] = STATE(372), + [aux_sym__section_repeat8] = STATE(370), [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_COMMA] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1832), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1812), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_RBRACK] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1857), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHend] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [128] = { + [sym_block_comment] = STATE(198), + [sym__flat_content] = STATE(198), + [sym__text_with_env_content] = STATE(198), + [sym__text_content] = STATE(198), + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(553), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(554), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(555), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(556), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(557), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(558), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(559), + [sym_curly_group] = STATE(198), + [sym_text] = STATE(198), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(198), + [sym_inline_formula] = STATE(198), + [sym_math_set] = STATE(198), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(198), + [sym_comment_environment] = STATE(198), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(198), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(198), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(198), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(198), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(198), + [sym_generic_command] = STATE(198), + [sym_package_include] = STATE(198), + [sym_class_include] = STATE(198), + [sym_latex_include] = STATE(198), + [sym_biblatex_include] = STATE(198), + [sym_bibtex_include] = STATE(198), + [sym_graphics_include] = STATE(198), + [sym_svg_include] = STATE(198), + [sym_inkscape_include] = STATE(198), + [sym_verbatim_include] = STATE(198), + [sym_import_include] = STATE(198), + [sym_caption] = STATE(198), + [sym_citation] = STATE(198), + [sym_label_definition] = STATE(198), + [sym_label_reference] = STATE(198), + [sym_label_reference_range] = STATE(198), + [sym_label_number] = STATE(198), + [sym_new_command_definition] = STATE(198), + [sym_old_command_definition] = STATE(198), + [sym_let_command_definition] = STATE(198), + [sym_environment_definition] = STATE(198), + [sym_glossary_entry_definition] = STATE(198), + [sym_glossary_entry_reference] = STATE(198), + [sym_acronym_definition] = STATE(198), + [sym_acronym_reference] = STATE(198), + [sym_theorem_definition] = STATE(198), + [sym_color_definition] = STATE(198), + [sym_color_set_definition] = STATE(198), + [sym_color_reference] = STATE(198), + [sym_tikz_library_import] = STATE(198), + [sym_text_mode] = STATE(198), + [aux_sym__section_repeat2] = STATE(553), + [aux_sym__section_repeat3] = STATE(554), + [aux_sym__section_repeat4] = STATE(555), + [aux_sym__section_repeat5] = STATE(556), + [aux_sym__section_repeat6] = STATE(557), + [aux_sym__section_repeat7] = STATE(558), + [aux_sym__section_repeat8] = STATE(559), + [aux_sym_part_repeat1] = STATE(198), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_RBRACK] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [129] = { + [sym_block_comment] = STATE(124), + [sym__flat_content] = STATE(124), + [sym__text_with_env_content] = STATE(124), + [sym__text_content] = STATE(124), + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(560), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(552), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(551), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(550), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(345), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(547), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(546), + [sym_curly_group] = STATE(124), + [sym_text] = STATE(124), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(124), + [sym_inline_formula] = STATE(124), + [sym_math_set] = STATE(124), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(124), + [sym_comment_environment] = STATE(124), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(124), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(124), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(124), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(124), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(124), + [sym_generic_command] = STATE(124), + [sym_package_include] = STATE(124), + [sym_class_include] = STATE(124), + [sym_latex_include] = STATE(124), + [sym_biblatex_include] = STATE(124), + [sym_bibtex_include] = STATE(124), + [sym_graphics_include] = STATE(124), + [sym_svg_include] = STATE(124), + [sym_inkscape_include] = STATE(124), + [sym_verbatim_include] = STATE(124), + [sym_import_include] = STATE(124), + [sym_caption] = STATE(124), + [sym_citation] = STATE(124), + [sym_label_definition] = STATE(124), + [sym_label_reference] = STATE(124), + [sym_label_reference_range] = STATE(124), + [sym_label_number] = STATE(124), + [sym_new_command_definition] = STATE(124), + [sym_old_command_definition] = STATE(124), + [sym_let_command_definition] = STATE(124), + [sym_environment_definition] = STATE(124), + [sym_glossary_entry_definition] = STATE(124), + [sym_glossary_entry_reference] = STATE(124), + [sym_acronym_definition] = STATE(124), + [sym_acronym_reference] = STATE(124), + [sym_theorem_definition] = STATE(124), + [sym_color_definition] = STATE(124), + [sym_color_set_definition] = STATE(124), + [sym_color_reference] = STATE(124), + [sym_tikz_library_import] = STATE(124), + [sym_text_mode] = STATE(124), + [aux_sym__section_repeat2] = STATE(560), + [aux_sym__section_repeat3] = STATE(552), + [aux_sym__section_repeat4] = STATE(551), + [aux_sym__section_repeat5] = STATE(550), + [aux_sym__section_repeat6] = STATE(345), + [aux_sym__section_repeat7] = STATE(547), + [aux_sym__section_repeat8] = STATE(546), + [aux_sym_part_repeat1] = STATE(124), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_RPAREN] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_RBRACK] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(1861), + [anon_sym_EQ] = ACTIONS(1861), + [anon_sym_BSLASHpart] = ACTIONS(1847), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1843), + [anon_sym_BSLASHaddpart] = ACTIONS(1847), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1843), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), + }, + [130] = { [sym_block_comment] = STATE(200), [sym__flat_content] = STATE(200), [sym__text_with_env_content] = STATE(200), [sym__text_content] = STATE(200), - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(410), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(409), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(408), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(407), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(406), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(405), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(404), + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(626), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(625), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(624), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(623), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(622), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(621), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(620), [sym_curly_group] = STATE(200), [sym_text] = STATE(200), - [sym_operator] = STATE(1000), + [sym_operator] = STATE(862), [sym_displayed_equation] = STATE(200), [sym_inline_formula] = STATE(200), [sym_math_set] = STATE(200), - [sym_begin] = STATE(20), + [sym_begin] = STATE(29), [sym_generic_environment] = STATE(200), [sym_comment_environment] = STATE(200), - [sym__trivia_begin_comment] = STATE(2333), + [sym__trivia_begin_comment] = STATE(2344), [sym_verbatim_environment] = STATE(200), - [sym__trivia_begin_verbatim] = STATE(2332), + [sym__trivia_begin_verbatim] = STATE(2343), [sym_listing_environment] = STATE(200), - [sym__trivia_begin_listing] = STATE(2331), + [sym__trivia_begin_listing] = STATE(2342), [sym_minted_environment] = STATE(200), - [sym__trivia_begin_minted] = STATE(2330), + [sym__trivia_begin_minted] = STATE(2341), [sym_pycode_environment] = STATE(200), - [sym__trivia_begin_pycode] = STATE(2329), + [sym__trivia_begin_pycode] = STATE(2340), [sym__command] = STATE(200), [sym_generic_command] = STATE(200), [sym_package_include] = STATE(200), @@ -64637,1411 +63636,730 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(200), [sym_color_reference] = STATE(200), [sym_tikz_library_import] = STATE(200), - [aux_sym__section_repeat2] = STATE(410), - [aux_sym__section_repeat3] = STATE(409), - [aux_sym__section_repeat4] = STATE(408), - [aux_sym__section_repeat5] = STATE(407), - [aux_sym__section_repeat6] = STATE(406), - [aux_sym__section_repeat7] = STATE(405), - [aux_sym__section_repeat8] = STATE(404), + [sym_text_mode] = STATE(200), + [aux_sym__section_repeat2] = STATE(626), + [aux_sym__section_repeat3] = STATE(625), + [aux_sym__section_repeat4] = STATE(624), + [aux_sym__section_repeat5] = STATE(623), + [aux_sym__section_repeat6] = STATE(622), + [aux_sym__section_repeat7] = STATE(621), + [aux_sym__section_repeat8] = STATE(620), [aux_sym_part_repeat1] = STATE(200), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [129] = { - [sym_block_comment] = STATE(131), - [sym__flat_content] = STATE(131), - [sym__text_with_env_content] = STATE(131), - [sym__text_content] = STATE(131), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(536), - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(535), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(534), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(533), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(532), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(531), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(530), - [sym_curly_group] = STATE(131), - [sym_text] = STATE(131), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(131), - [sym_inline_formula] = STATE(131), - [sym_math_set] = STATE(131), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(131), - [sym_comment_environment] = STATE(131), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(131), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(131), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(131), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(131), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(131), - [sym_generic_command] = STATE(131), - [sym_package_include] = STATE(131), - [sym_class_include] = STATE(131), - [sym_latex_include] = STATE(131), - [sym_biblatex_include] = STATE(131), - [sym_bibtex_include] = STATE(131), - [sym_graphics_include] = STATE(131), - [sym_svg_include] = STATE(131), - [sym_inkscape_include] = STATE(131), - [sym_verbatim_include] = STATE(131), - [sym_import_include] = STATE(131), - [sym_caption] = STATE(131), - [sym_citation] = STATE(131), - [sym_label_definition] = STATE(131), - [sym_label_reference] = STATE(131), - [sym_label_reference_range] = STATE(131), - [sym_label_number] = STATE(131), - [sym_new_command_definition] = STATE(131), - [sym_old_command_definition] = STATE(131), - [sym_let_command_definition] = STATE(131), - [sym_environment_definition] = STATE(131), - [sym_glossary_entry_definition] = STATE(131), - [sym_glossary_entry_reference] = STATE(131), - [sym_acronym_definition] = STATE(131), - [sym_acronym_reference] = STATE(131), - [sym_theorem_definition] = STATE(131), - [sym_color_definition] = STATE(131), - [sym_color_set_definition] = STATE(131), - [sym_color_reference] = STATE(131), - [sym_tikz_library_import] = STATE(131), - [aux_sym__section_repeat2] = STATE(536), - [aux_sym__section_repeat3] = STATE(535), - [aux_sym__section_repeat4] = STATE(534), - [aux_sym__section_repeat5] = STATE(533), - [aux_sym__section_repeat6] = STATE(532), - [aux_sym__section_repeat7] = STATE(531), - [aux_sym__section_repeat8] = STATE(530), - [aux_sym_part_repeat1] = STATE(131), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1836), - [anon_sym_RPAREN] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1836), - [anon_sym_RBRACK] = ACTIONS(1836), - [anon_sym_COMMA] = ACTIONS(1836), - [anon_sym_EQ] = ACTIONS(1836), - [anon_sym_BSLASHpart] = ACTIONS(1822), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1818), - [anon_sym_BSLASHaddpart] = ACTIONS(1822), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1818), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1822), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, - [130] = { - [sym_block_comment] = STATE(126), - [sym__flat_content] = STATE(126), - [sym__text_with_env_content] = STATE(126), - [sym__text_content] = STATE(126), + [131] = { + [sym_block_comment] = STATE(130), + [sym__flat_content] = STATE(130), + [sym__text_with_env_content] = STATE(130), + [sym__text_content] = STATE(130), [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(473), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(474), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(475), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(476), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(477), + [sym_chapter] = STATE(412), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(413), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(414), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(415), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(416), [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(478), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(479), - [sym_curly_group] = STATE(126), - [sym_text] = STATE(126), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(126), - [sym_inline_formula] = STATE(126), - [sym_math_set] = STATE(126), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(126), - [sym_comment_environment] = STATE(126), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(126), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(126), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(126), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(126), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(126), - [sym_generic_command] = STATE(126), - [sym_package_include] = STATE(126), - [sym_class_include] = STATE(126), - [sym_latex_include] = STATE(126), - [sym_biblatex_include] = STATE(126), - [sym_bibtex_include] = STATE(126), - [sym_graphics_include] = STATE(126), - [sym_svg_include] = STATE(126), - [sym_inkscape_include] = STATE(126), - [sym_verbatim_include] = STATE(126), - [sym_import_include] = STATE(126), - [sym_caption] = STATE(126), - [sym_citation] = STATE(126), - [sym_label_definition] = STATE(126), - [sym_label_reference] = STATE(126), - [sym_label_reference_range] = STATE(126), - [sym_label_number] = STATE(126), - [sym_new_command_definition] = STATE(126), - [sym_old_command_definition] = STATE(126), - [sym_let_command_definition] = STATE(126), - [sym_environment_definition] = STATE(126), - [sym_glossary_entry_definition] = STATE(126), - [sym_glossary_entry_reference] = STATE(126), - [sym_acronym_definition] = STATE(126), - [sym_acronym_reference] = STATE(126), - [sym_theorem_definition] = STATE(126), - [sym_color_definition] = STATE(126), - [sym_color_set_definition] = STATE(126), - [sym_color_reference] = STATE(126), - [sym_tikz_library_import] = STATE(126), - [aux_sym__section_repeat2] = STATE(473), - [aux_sym__section_repeat3] = STATE(474), - [aux_sym__section_repeat4] = STATE(475), - [aux_sym__section_repeat5] = STATE(476), - [aux_sym__section_repeat6] = STATE(477), - [aux_sym__section_repeat7] = STATE(478), - [aux_sym__section_repeat8] = STATE(479), - [aux_sym_part_repeat1] = STATE(126), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_RPAREN] = ACTIONS(1838), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_RBRACK] = ACTIONS(1838), - [anon_sym_COMMA] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1838), - [anon_sym_BSLASHpart] = ACTIONS(1822), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1818), - [anon_sym_BSLASHaddpart] = ACTIONS(1822), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1818), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1818), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [131] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(391), - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(390), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(388), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(387), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(386), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(384), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(383), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), + [sym_subparagraph] = STATE(423), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(425), + [sym_curly_group] = STATE(130), + [sym_text] = STATE(130), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(130), + [sym_inline_formula] = STATE(130), + [sym_math_set] = STATE(130), [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [aux_sym__section_repeat2] = STATE(391), - [aux_sym__section_repeat3] = STATE(390), - [aux_sym__section_repeat4] = STATE(388), - [aux_sym__section_repeat5] = STATE(387), - [aux_sym__section_repeat6] = STATE(386), - [aux_sym__section_repeat7] = STATE(384), - [aux_sym__section_repeat8] = STATE(383), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_COMMA] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_generic_environment] = STATE(130), + [sym_comment_environment] = STATE(130), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(130), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(130), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(130), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(130), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(130), + [sym_generic_command] = STATE(130), + [sym_package_include] = STATE(130), + [sym_class_include] = STATE(130), + [sym_latex_include] = STATE(130), + [sym_biblatex_include] = STATE(130), + [sym_bibtex_include] = STATE(130), + [sym_graphics_include] = STATE(130), + [sym_svg_include] = STATE(130), + [sym_inkscape_include] = STATE(130), + [sym_verbatim_include] = STATE(130), + [sym_import_include] = STATE(130), + [sym_caption] = STATE(130), + [sym_citation] = STATE(130), + [sym_label_definition] = STATE(130), + [sym_label_reference] = STATE(130), + [sym_label_reference_range] = STATE(130), + [sym_label_number] = STATE(130), + [sym_new_command_definition] = STATE(130), + [sym_old_command_definition] = STATE(130), + [sym_let_command_definition] = STATE(130), + [sym_environment_definition] = STATE(130), + [sym_glossary_entry_definition] = STATE(130), + [sym_glossary_entry_reference] = STATE(130), + [sym_acronym_definition] = STATE(130), + [sym_acronym_reference] = STATE(130), + [sym_theorem_definition] = STATE(130), + [sym_color_definition] = STATE(130), + [sym_color_set_definition] = STATE(130), + [sym_color_reference] = STATE(130), + [sym_tikz_library_import] = STATE(130), + [sym_text_mode] = STATE(130), + [aux_sym__section_repeat2] = STATE(412), + [aux_sym__section_repeat3] = STATE(413), + [aux_sym__section_repeat4] = STATE(414), + [aux_sym__section_repeat5] = STATE(415), + [aux_sym__section_repeat6] = STATE(416), + [aux_sym__section_repeat7] = STATE(423), + [aux_sym__section_repeat8] = STATE(425), + [aux_sym_part_repeat1] = STATE(130), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_RPAREN] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_RBRACK] = ACTIONS(1865), + [anon_sym_COMMA] = ACTIONS(1865), + [anon_sym_EQ] = ACTIONS(1865), + [anon_sym_BSLASHpart] = ACTIONS(1847), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1843), + [anon_sym_BSLASHaddpart] = ACTIONS(1847), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1843), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1843), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, [132] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), + [sym_block_comment] = STATE(193), + [sym__flat_content] = STATE(193), + [sym__text_with_env_content] = STATE(193), + [sym__text_content] = STATE(193), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(288), + [sym_section] = STATE(290), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(289), + [sym_subsection] = STATE(291), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(290), + [sym_subsubsection] = STATE(292), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(291), + [sym_paragraph] = STATE(293), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(292), + [sym_subparagraph] = STATE(294), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(293), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [aux_sym__section_repeat3] = STATE(288), - [aux_sym__section_repeat4] = STATE(289), - [aux_sym__section_repeat5] = STATE(290), - [aux_sym__section_repeat6] = STATE(291), - [aux_sym__section_repeat7] = STATE(292), - [aux_sym__section_repeat8] = STATE(293), - [aux_sym_part_repeat1] = STATE(192), + [sym_enum_item] = STATE(295), + [sym_curly_group] = STATE(193), + [sym_text] = STATE(193), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(193), + [sym_inline_formula] = STATE(193), + [sym_math_set] = STATE(193), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(193), + [sym_comment_environment] = STATE(193), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(193), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(193), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(193), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(193), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(193), + [sym_generic_command] = STATE(193), + [sym_package_include] = STATE(193), + [sym_class_include] = STATE(193), + [sym_latex_include] = STATE(193), + [sym_biblatex_include] = STATE(193), + [sym_bibtex_include] = STATE(193), + [sym_graphics_include] = STATE(193), + [sym_svg_include] = STATE(193), + [sym_inkscape_include] = STATE(193), + [sym_verbatim_include] = STATE(193), + [sym_import_include] = STATE(193), + [sym_caption] = STATE(193), + [sym_citation] = STATE(193), + [sym_label_definition] = STATE(193), + [sym_label_reference] = STATE(193), + [sym_label_reference_range] = STATE(193), + [sym_label_number] = STATE(193), + [sym_new_command_definition] = STATE(193), + [sym_old_command_definition] = STATE(193), + [sym_let_command_definition] = STATE(193), + [sym_environment_definition] = STATE(193), + [sym_glossary_entry_definition] = STATE(193), + [sym_glossary_entry_reference] = STATE(193), + [sym_acronym_definition] = STATE(193), + [sym_acronym_reference] = STATE(193), + [sym_theorem_definition] = STATE(193), + [sym_color_definition] = STATE(193), + [sym_color_set_definition] = STATE(193), + [sym_color_reference] = STATE(193), + [sym_tikz_library_import] = STATE(193), + [sym_text_mode] = STATE(193), + [aux_sym__section_repeat3] = STATE(290), + [aux_sym__section_repeat4] = STATE(291), + [aux_sym__section_repeat5] = STATE(292), + [aux_sym__section_repeat6] = STATE(293), + [aux_sym__section_repeat7] = STATE(294), + [aux_sym__section_repeat8] = STATE(295), + [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1867), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_RBRACK] = ACTIONS(1814), - [anon_sym_COMMA] = ACTIONS(1814), - [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_RBRACK] = ACTIONS(1839), + [anon_sym_COMMA] = ACTIONS(1839), + [anon_sym_EQ] = ACTIONS(1839), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), [anon_sym_BSLASHsection] = ACTIONS(21), [anon_sym_BSLASHsection_STAR] = ACTIONS(23), [anon_sym_BSLASHaddsec] = ACTIONS(21), @@ -66057,7 +64375,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1867), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -66291,6 +64609,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [133] = { [sym_block_comment] = STATE(132), @@ -66298,35 +64619,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__text_with_env_content] = STATE(132), [sym__text_content] = STATE(132), [sym__section_declaration] = STATE(142), - [sym_section] = STATE(272), + [sym_section] = STATE(316), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(271), + [sym_subsection] = STATE(317), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(306), + [sym_subsubsection] = STATE(318), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(314), + [sym_paragraph] = STATE(319), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(315), + [sym_subparagraph] = STATE(320), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(317), + [sym_enum_item] = STATE(321), [sym_curly_group] = STATE(132), [sym_text] = STATE(132), - [sym_operator] = STATE(805), + [sym_operator] = STATE(782), [sym_displayed_equation] = STATE(132), [sym_inline_formula] = STATE(132), [sym_math_set] = STATE(132), - [sym_begin] = STATE(37), + [sym_begin] = STATE(36), [sym_generic_environment] = STATE(132), [sym_comment_environment] = STATE(132), - [sym__trivia_begin_comment] = STATE(2391), + [sym__trivia_begin_comment] = STATE(2417), [sym_verbatim_environment] = STATE(132), - [sym__trivia_begin_verbatim] = STATE(2393), + [sym__trivia_begin_verbatim] = STATE(2429), [sym_listing_environment] = STATE(132), - [sym__trivia_begin_listing] = STATE(2395), + [sym__trivia_begin_listing] = STATE(2430), [sym_minted_environment] = STATE(132), - [sym__trivia_begin_minted] = STATE(2396), + [sym__trivia_begin_minted] = STATE(2431), [sym_pycode_environment] = STATE(132), - [sym__trivia_begin_pycode] = STATE(2408), + [sym__trivia_begin_pycode] = STATE(2461), [sym__command] = STATE(132), [sym_generic_command] = STATE(132), [sym_package_include] = STATE(132), @@ -66358,33 +64679,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(132), [sym_color_reference] = STATE(132), [sym_tikz_library_import] = STATE(132), - [aux_sym__section_repeat3] = STATE(272), - [aux_sym__section_repeat4] = STATE(271), - [aux_sym__section_repeat5] = STATE(306), - [aux_sym__section_repeat6] = STATE(314), - [aux_sym__section_repeat7] = STATE(315), - [aux_sym__section_repeat8] = STATE(317), + [sym_text_mode] = STATE(132), + [aux_sym__section_repeat3] = STATE(316), + [aux_sym__section_repeat4] = STATE(317), + [aux_sym__section_repeat5] = STATE(318), + [aux_sym__section_repeat6] = STATE(319), + [aux_sym__section_repeat7] = STATE(320), + [aux_sym__section_repeat8] = STATE(321), [aux_sym_part_repeat1] = STATE(132), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1846), + [ts_builtin_sym_end] = ACTIONS(1871), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1848), - [anon_sym_RPAREN] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1848), - [anon_sym_RBRACK] = ACTIONS(1848), - [anon_sym_COMMA] = ACTIONS(1848), - [anon_sym_EQ] = ACTIONS(1848), - [anon_sym_BSLASHpart] = ACTIONS(1850), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1846), - [anon_sym_BSLASHaddpart] = ACTIONS(1850), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1846), - [anon_sym_BSLASHchapter] = ACTIONS(1850), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1846), - [anon_sym_BSLASHaddchap] = ACTIONS(1850), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_RBRACK] = ACTIONS(1873), + [anon_sym_COMMA] = ACTIONS(1873), + [anon_sym_EQ] = ACTIONS(1873), + [anon_sym_BSLASHpart] = ACTIONS(1875), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1871), + [anon_sym_BSLASHaddpart] = ACTIONS(1875), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1871), + [anon_sym_BSLASHchapter] = ACTIONS(1875), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1871), + [anon_sym_BSLASHaddchap] = ACTIONS(1875), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1871), [anon_sym_BSLASHsection] = ACTIONS(21), [anon_sym_BSLASHsection_STAR] = ACTIONS(23), [anon_sym_BSLASHaddsec] = ACTIONS(21), @@ -66400,7 +64722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1871), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -66634,42 +64956,737 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [134] = { + [sym_block_comment] = STATE(198), + [sym__flat_content] = STATE(198), + [sym__text_with_env_content] = STATE(198), + [sym__text_content] = STATE(198), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(561), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(562), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(563), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(564), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(565), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(566), + [sym_curly_group] = STATE(198), + [sym_text] = STATE(198), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(198), + [sym_inline_formula] = STATE(198), + [sym_math_set] = STATE(198), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(198), + [sym_comment_environment] = STATE(198), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(198), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(198), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(198), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(198), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(198), + [sym_generic_command] = STATE(198), + [sym_package_include] = STATE(198), + [sym_class_include] = STATE(198), + [sym_latex_include] = STATE(198), + [sym_biblatex_include] = STATE(198), + [sym_bibtex_include] = STATE(198), + [sym_graphics_include] = STATE(198), + [sym_svg_include] = STATE(198), + [sym_inkscape_include] = STATE(198), + [sym_verbatim_include] = STATE(198), + [sym_import_include] = STATE(198), + [sym_caption] = STATE(198), + [sym_citation] = STATE(198), + [sym_label_definition] = STATE(198), + [sym_label_reference] = STATE(198), + [sym_label_reference_range] = STATE(198), + [sym_label_number] = STATE(198), + [sym_new_command_definition] = STATE(198), + [sym_old_command_definition] = STATE(198), + [sym_let_command_definition] = STATE(198), + [sym_environment_definition] = STATE(198), + [sym_glossary_entry_definition] = STATE(198), + [sym_glossary_entry_reference] = STATE(198), + [sym_acronym_definition] = STATE(198), + [sym_acronym_reference] = STATE(198), + [sym_theorem_definition] = STATE(198), + [sym_color_definition] = STATE(198), + [sym_color_set_definition] = STATE(198), + [sym_color_reference] = STATE(198), + [sym_tikz_library_import] = STATE(198), + [sym_text_mode] = STATE(198), + [aux_sym__section_repeat3] = STATE(561), + [aux_sym__section_repeat4] = STATE(562), + [aux_sym__section_repeat5] = STATE(563), + [aux_sym__section_repeat6] = STATE(564), + [aux_sym__section_repeat7] = STATE(565), + [aux_sym__section_repeat8] = STATE(566), + [aux_sym_part_repeat1] = STATE(198), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_RBRACK] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [135] = { + [sym_block_comment] = STATE(136), + [sym__flat_content] = STATE(136), + [sym__text_with_env_content] = STATE(136), + [sym__text_content] = STATE(136), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(428), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(438), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(439), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(472), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(582), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(583), + [sym_curly_group] = STATE(136), + [sym_text] = STATE(136), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(136), + [sym_inline_formula] = STATE(136), + [sym_math_set] = STATE(136), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(136), + [sym_comment_environment] = STATE(136), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(136), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(136), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(136), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(136), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(136), + [sym_generic_command] = STATE(136), + [sym_package_include] = STATE(136), + [sym_class_include] = STATE(136), + [sym_latex_include] = STATE(136), + [sym_biblatex_include] = STATE(136), + [sym_bibtex_include] = STATE(136), + [sym_graphics_include] = STATE(136), + [sym_svg_include] = STATE(136), + [sym_inkscape_include] = STATE(136), + [sym_verbatim_include] = STATE(136), + [sym_import_include] = STATE(136), + [sym_caption] = STATE(136), + [sym_citation] = STATE(136), + [sym_label_definition] = STATE(136), + [sym_label_reference] = STATE(136), + [sym_label_reference_range] = STATE(136), + [sym_label_number] = STATE(136), + [sym_new_command_definition] = STATE(136), + [sym_old_command_definition] = STATE(136), + [sym_let_command_definition] = STATE(136), + [sym_environment_definition] = STATE(136), + [sym_glossary_entry_definition] = STATE(136), + [sym_glossary_entry_reference] = STATE(136), + [sym_acronym_definition] = STATE(136), + [sym_acronym_reference] = STATE(136), + [sym_theorem_definition] = STATE(136), + [sym_color_definition] = STATE(136), + [sym_color_set_definition] = STATE(136), + [sym_color_reference] = STATE(136), + [sym_tikz_library_import] = STATE(136), + [sym_text_mode] = STATE(136), + [aux_sym__section_repeat3] = STATE(428), + [aux_sym__section_repeat4] = STATE(438), + [aux_sym__section_repeat5] = STATE(439), + [aux_sym__section_repeat6] = STATE(472), + [aux_sym__section_repeat7] = STATE(582), + [aux_sym__section_repeat8] = STATE(583), + [aux_sym_part_repeat1] = STATE(136), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_RBRACK] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1877), + [anon_sym_BSLASHpart] = ACTIONS(1875), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1871), + [anon_sym_BSLASHaddpart] = ACTIONS(1875), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1871), + [anon_sym_BSLASHchapter] = ACTIONS(1875), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1871), + [anon_sym_BSLASHaddchap] = ACTIONS(1875), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1871), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1871), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), + }, + [136] = { [sym_block_comment] = STATE(200), [sym__flat_content] = STATE(200), [sym__text_with_env_content] = STATE(200), [sym__text_content] = STATE(200), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(403), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(402), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(401), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(400), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(399), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(398), + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(617), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(616), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(344), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(614), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(613), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(612), [sym_curly_group] = STATE(200), [sym_text] = STATE(200), - [sym_operator] = STATE(1000), + [sym_operator] = STATE(862), [sym_displayed_equation] = STATE(200), [sym_inline_formula] = STATE(200), [sym_math_set] = STATE(200), - [sym_begin] = STATE(20), + [sym_begin] = STATE(29), [sym_generic_environment] = STATE(200), [sym_comment_environment] = STATE(200), - [sym__trivia_begin_comment] = STATE(2333), + [sym__trivia_begin_comment] = STATE(2344), [sym_verbatim_environment] = STATE(200), - [sym__trivia_begin_verbatim] = STATE(2332), + [sym__trivia_begin_verbatim] = STATE(2343), [sym_listing_environment] = STATE(200), - [sym__trivia_begin_listing] = STATE(2331), + [sym__trivia_begin_listing] = STATE(2342), [sym_minted_environment] = STATE(200), - [sym__trivia_begin_minted] = STATE(2330), + [sym__trivia_begin_minted] = STATE(2341), [sym_pycode_environment] = STATE(200), - [sym__trivia_begin_pycode] = STATE(2329), + [sym__trivia_begin_pycode] = STATE(2340), [sym__command] = STATE(200), [sym_generic_command] = STATE(200), [sym_package_include] = STATE(200), @@ -66701,659 +65718,321 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(200), [sym_color_reference] = STATE(200), [sym_tikz_library_import] = STATE(200), - [aux_sym__section_repeat3] = STATE(403), - [aux_sym__section_repeat4] = STATE(402), - [aux_sym__section_repeat5] = STATE(401), - [aux_sym__section_repeat6] = STATE(400), - [aux_sym__section_repeat7] = STATE(399), - [aux_sym__section_repeat8] = STATE(398), + [sym_text_mode] = STATE(200), + [aux_sym__section_repeat3] = STATE(617), + [aux_sym__section_repeat4] = STATE(616), + [aux_sym__section_repeat5] = STATE(344), + [aux_sym__section_repeat6] = STATE(614), + [aux_sym__section_repeat7] = STATE(613), + [aux_sym__section_repeat8] = STATE(612), [aux_sym_part_repeat1] = STATE(200), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [135] = { - [sym_block_comment] = STATE(141), - [sym__flat_content] = STATE(141), - [sym__text_with_env_content] = STATE(141), - [sym__text_content] = STATE(141), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(481), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(482), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(483), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(484), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(485), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(486), - [sym_curly_group] = STATE(141), - [sym_text] = STATE(141), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(141), - [sym_inline_formula] = STATE(141), - [sym_math_set] = STATE(141), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(141), - [sym_comment_environment] = STATE(141), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(141), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(141), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(141), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(141), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(141), - [sym_generic_command] = STATE(141), - [sym_package_include] = STATE(141), - [sym_class_include] = STATE(141), - [sym_latex_include] = STATE(141), - [sym_biblatex_include] = STATE(141), - [sym_bibtex_include] = STATE(141), - [sym_graphics_include] = STATE(141), - [sym_svg_include] = STATE(141), - [sym_inkscape_include] = STATE(141), - [sym_verbatim_include] = STATE(141), - [sym_import_include] = STATE(141), - [sym_caption] = STATE(141), - [sym_citation] = STATE(141), - [sym_label_definition] = STATE(141), - [sym_label_reference] = STATE(141), - [sym_label_reference_range] = STATE(141), - [sym_label_number] = STATE(141), - [sym_new_command_definition] = STATE(141), - [sym_old_command_definition] = STATE(141), - [sym_let_command_definition] = STATE(141), - [sym_environment_definition] = STATE(141), - [sym_glossary_entry_definition] = STATE(141), - [sym_glossary_entry_reference] = STATE(141), - [sym_acronym_definition] = STATE(141), - [sym_acronym_reference] = STATE(141), - [sym_theorem_definition] = STATE(141), - [sym_color_definition] = STATE(141), - [sym_color_set_definition] = STATE(141), - [sym_color_reference] = STATE(141), - [sym_tikz_library_import] = STATE(141), - [aux_sym__section_repeat3] = STATE(481), - [aux_sym__section_repeat4] = STATE(482), - [aux_sym__section_repeat5] = STATE(483), - [aux_sym__section_repeat6] = STATE(484), - [aux_sym__section_repeat7] = STATE(485), - [aux_sym__section_repeat8] = STATE(486), - [aux_sym_part_repeat1] = STATE(141), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1852), - [anon_sym_RPAREN] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1852), - [anon_sym_RBRACK] = ACTIONS(1852), - [anon_sym_COMMA] = ACTIONS(1852), - [anon_sym_EQ] = ACTIONS(1852), - [anon_sym_BSLASHpart] = ACTIONS(1850), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1846), - [anon_sym_BSLASHaddpart] = ACTIONS(1850), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1846), - [anon_sym_BSLASHchapter] = ACTIONS(1850), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1846), - [anon_sym_BSLASHaddchap] = ACTIONS(1850), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1846), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1846), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, - [136] = { + [137] = { [sym_block_comment] = STATE(134), [sym__flat_content] = STATE(134), [sym__text_with_env_content] = STATE(134), [sym__text_content] = STATE(134), - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(583), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(582), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(557), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(549), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(548), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(542), + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(484), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(485), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(486), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(487), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(488), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(489), [sym_curly_group] = STATE(134), [sym_text] = STATE(134), - [sym_operator] = STATE(1000), + [sym_operator] = STATE(1178), [sym_displayed_equation] = STATE(134), [sym_inline_formula] = STATE(134), [sym_math_set] = STATE(134), - [sym_begin] = STATE(20), + [sym_begin] = STATE(25), [sym_generic_environment] = STATE(134), [sym_comment_environment] = STATE(134), - [sym__trivia_begin_comment] = STATE(2333), + [sym__trivia_begin_comment] = STATE(2367), [sym_verbatim_environment] = STATE(134), - [sym__trivia_begin_verbatim] = STATE(2332), + [sym__trivia_begin_verbatim] = STATE(2366), [sym_listing_environment] = STATE(134), - [sym__trivia_begin_listing] = STATE(2331), + [sym__trivia_begin_listing] = STATE(2365), [sym_minted_environment] = STATE(134), - [sym__trivia_begin_minted] = STATE(2330), + [sym__trivia_begin_minted] = STATE(2364), [sym_pycode_environment] = STATE(134), - [sym__trivia_begin_pycode] = STATE(2329), + [sym__trivia_begin_pycode] = STATE(2363), [sym__command] = STATE(134), [sym_generic_command] = STATE(134), [sym_package_include] = STATE(134), @@ -67385,659 +66064,1013 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(134), [sym_color_reference] = STATE(134), [sym_tikz_library_import] = STATE(134), - [aux_sym__section_repeat3] = STATE(583), - [aux_sym__section_repeat4] = STATE(582), - [aux_sym__section_repeat5] = STATE(557), - [aux_sym__section_repeat6] = STATE(549), - [aux_sym__section_repeat7] = STATE(548), - [aux_sym__section_repeat8] = STATE(542), + [sym_text_mode] = STATE(134), + [aux_sym__section_repeat3] = STATE(484), + [aux_sym__section_repeat4] = STATE(485), + [aux_sym__section_repeat5] = STATE(486), + [aux_sym__section_repeat6] = STATE(487), + [aux_sym__section_repeat7] = STATE(488), + [aux_sym__section_repeat8] = STATE(489), [aux_sym_part_repeat1] = STATE(134), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_RPAREN] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1879), + [anon_sym_RBRACK] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_EQ] = ACTIONS(1879), + [anon_sym_BSLASHpart] = ACTIONS(1875), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1871), + [anon_sym_BSLASHaddpart] = ACTIONS(1875), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1871), + [anon_sym_BSLASHchapter] = ACTIONS(1875), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1871), + [anon_sym_BSLASHaddchap] = ACTIONS(1875), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1871), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [138] = { + [sym_block_comment] = STATE(206), + [sym__flat_content] = STATE(206), + [sym__text_with_env_content] = STATE(206), + [sym__text_content] = STATE(206), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(387), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(384), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(383), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(382), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(381), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(380), + [sym_curly_group] = STATE(206), + [sym_text] = STATE(206), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(206), + [sym_inline_formula] = STATE(206), + [sym_math_set] = STATE(206), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(206), + [sym_comment_environment] = STATE(206), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(206), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(206), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(206), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(206), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(206), + [sym_generic_command] = STATE(206), + [sym_package_include] = STATE(206), + [sym_class_include] = STATE(206), + [sym_latex_include] = STATE(206), + [sym_biblatex_include] = STATE(206), + [sym_bibtex_include] = STATE(206), + [sym_graphics_include] = STATE(206), + [sym_svg_include] = STATE(206), + [sym_inkscape_include] = STATE(206), + [sym_verbatim_include] = STATE(206), + [sym_import_include] = STATE(206), + [sym_caption] = STATE(206), + [sym_citation] = STATE(206), + [sym_label_definition] = STATE(206), + [sym_label_reference] = STATE(206), + [sym_label_reference_range] = STATE(206), + [sym_label_number] = STATE(206), + [sym_new_command_definition] = STATE(206), + [sym_old_command_definition] = STATE(206), + [sym_let_command_definition] = STATE(206), + [sym_environment_definition] = STATE(206), + [sym_glossary_entry_definition] = STATE(206), + [sym_glossary_entry_reference] = STATE(206), + [sym_acronym_definition] = STATE(206), + [sym_acronym_reference] = STATE(206), + [sym_theorem_definition] = STATE(206), + [sym_color_definition] = STATE(206), + [sym_color_set_definition] = STATE(206), + [sym_color_reference] = STATE(206), + [sym_tikz_library_import] = STATE(206), + [sym_text_mode] = STATE(206), + [aux_sym__section_repeat3] = STATE(387), + [aux_sym__section_repeat4] = STATE(384), + [aux_sym__section_repeat5] = STATE(383), + [aux_sym__section_repeat6] = STATE(382), + [aux_sym__section_repeat7] = STATE(381), + [aux_sym__section_repeat8] = STATE(380), + [aux_sym_part_repeat1] = STATE(206), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_RPAREN] = ACTIONS(1854), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_RBRACK] = ACTIONS(1854), - [anon_sym_COMMA] = ACTIONS(1854), - [anon_sym_EQ] = ACTIONS(1854), - [anon_sym_BSLASHpart] = ACTIONS(1850), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1846), - [anon_sym_BSLASHaddpart] = ACTIONS(1850), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1846), - [anon_sym_BSLASHchapter] = ACTIONS(1850), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1846), - [anon_sym_BSLASHaddchap] = ACTIONS(1850), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1846), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1846), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_RBRACK] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [137] = { - [sym_block_comment] = STATE(139), - [sym__flat_content] = STATE(139), - [sym__text_with_env_content] = STATE(139), - [sym__text_content] = STATE(139), - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(527), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(526), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(525), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(523), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(521), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(520), - [sym_curly_group] = STATE(139), - [sym_text] = STATE(139), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(139), - [sym_inline_formula] = STATE(139), - [sym_math_set] = STATE(139), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(139), - [sym_comment_environment] = STATE(139), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(139), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(139), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(139), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(139), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(139), - [sym_generic_command] = STATE(139), - [sym_package_include] = STATE(139), - [sym_class_include] = STATE(139), - [sym_latex_include] = STATE(139), - [sym_biblatex_include] = STATE(139), - [sym_bibtex_include] = STATE(139), - [sym_graphics_include] = STATE(139), - [sym_svg_include] = STATE(139), - [sym_inkscape_include] = STATE(139), - [sym_verbatim_include] = STATE(139), - [sym_import_include] = STATE(139), - [sym_caption] = STATE(139), - [sym_citation] = STATE(139), - [sym_label_definition] = STATE(139), - [sym_label_reference] = STATE(139), - [sym_label_reference_range] = STATE(139), - [sym_label_number] = STATE(139), - [sym_new_command_definition] = STATE(139), - [sym_old_command_definition] = STATE(139), - [sym_let_command_definition] = STATE(139), - [sym_environment_definition] = STATE(139), - [sym_glossary_entry_definition] = STATE(139), - [sym_glossary_entry_reference] = STATE(139), - [sym_acronym_definition] = STATE(139), - [sym_acronym_reference] = STATE(139), - [sym_theorem_definition] = STATE(139), - [sym_color_definition] = STATE(139), - [sym_color_set_definition] = STATE(139), - [sym_color_reference] = STATE(139), - [sym_tikz_library_import] = STATE(139), - [aux_sym__section_repeat3] = STATE(527), - [aux_sym__section_repeat4] = STATE(526), - [aux_sym__section_repeat5] = STATE(525), - [aux_sym__section_repeat6] = STATE(523), - [aux_sym__section_repeat7] = STATE(521), - [aux_sym__section_repeat8] = STATE(520), - [aux_sym_part_repeat1] = STATE(139), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1856), - [anon_sym_RPAREN] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1856), - [anon_sym_RBRACK] = ACTIONS(1856), - [anon_sym_COMMA] = ACTIONS(1856), - [anon_sym_EQ] = ACTIONS(1856), - [anon_sym_BSLASHpart] = ACTIONS(1850), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1846), - [anon_sym_BSLASHaddpart] = ACTIONS(1850), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1846), - [anon_sym_BSLASHchapter] = ACTIONS(1850), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1846), - [anon_sym_BSLASHaddchap] = ACTIONS(1850), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1846), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [139] = { + [sym_block_comment] = STATE(138), + [sym__flat_content] = STATE(138), + [sym__text_with_env_content] = STATE(138), + [sym__text_content] = STATE(138), + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(545), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(544), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(543), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(542), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(541), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(532), + [sym_curly_group] = STATE(138), + [sym_text] = STATE(138), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(138), + [sym_inline_formula] = STATE(138), + [sym_math_set] = STATE(138), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(138), + [sym_comment_environment] = STATE(138), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(138), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(138), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(138), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(138), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(138), + [sym_generic_command] = STATE(138), + [sym_package_include] = STATE(138), + [sym_class_include] = STATE(138), + [sym_latex_include] = STATE(138), + [sym_biblatex_include] = STATE(138), + [sym_bibtex_include] = STATE(138), + [sym_graphics_include] = STATE(138), + [sym_svg_include] = STATE(138), + [sym_inkscape_include] = STATE(138), + [sym_verbatim_include] = STATE(138), + [sym_import_include] = STATE(138), + [sym_caption] = STATE(138), + [sym_citation] = STATE(138), + [sym_label_definition] = STATE(138), + [sym_label_reference] = STATE(138), + [sym_label_reference_range] = STATE(138), + [sym_label_number] = STATE(138), + [sym_new_command_definition] = STATE(138), + [sym_old_command_definition] = STATE(138), + [sym_let_command_definition] = STATE(138), + [sym_environment_definition] = STATE(138), + [sym_glossary_entry_definition] = STATE(138), + [sym_glossary_entry_reference] = STATE(138), + [sym_acronym_definition] = STATE(138), + [sym_acronym_reference] = STATE(138), + [sym_theorem_definition] = STATE(138), + [sym_color_definition] = STATE(138), + [sym_color_set_definition] = STATE(138), + [sym_color_reference] = STATE(138), + [sym_tikz_library_import] = STATE(138), + [sym_text_mode] = STATE(138), + [aux_sym__section_repeat3] = STATE(545), + [aux_sym__section_repeat4] = STATE(544), + [aux_sym__section_repeat5] = STATE(543), + [aux_sym__section_repeat6] = STATE(542), + [aux_sym__section_repeat7] = STATE(541), + [aux_sym__section_repeat8] = STATE(532), + [aux_sym_part_repeat1] = STATE(138), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_RBRACK] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_EQ] = ACTIONS(1881), + [anon_sym_BSLASHpart] = ACTIONS(1875), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1871), + [anon_sym_BSLASHaddpart] = ACTIONS(1875), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1871), + [anon_sym_BSLASHchapter] = ACTIONS(1875), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1871), + [anon_sym_BSLASHaddchap] = ACTIONS(1875), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1871), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1871), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1850), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [138] = { + [140] = { [sym_block_comment] = STATE(205), [sym__flat_content] = STATE(205), [sym__text_with_env_content] = STATE(205), [sym__text_content] = STATE(205), [sym__section_declaration] = STATE(145), - [sym_section] = STATE(637), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(627), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(626), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(625), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(624), + [sym_section] = STATE(365), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(363), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(359), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(357), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(356), [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(623), + [sym_enum_item] = STATE(354), [sym_curly_group] = STATE(205), [sym_text] = STATE(205), - [sym_operator] = STATE(858), + [sym_operator] = STATE(1082), [sym_displayed_equation] = STATE(205), [sym_inline_formula] = STATE(205), [sym_math_set] = STATE(205), - [sym_begin] = STATE(26), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(205), [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2324), + [sym__trivia_begin_comment] = STATE(2328), [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2323), + [sym__trivia_begin_verbatim] = STATE(2329), [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2322), + [sym__trivia_begin_listing] = STATE(2330), [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2321), + [sym__trivia_begin_minted] = STATE(2331), [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2319), + [sym__trivia_begin_pycode] = STATE(2332), [sym__command] = STATE(205), [sym_generic_command] = STATE(205), [sym_package_include] = STATE(205), @@ -68069,1307 +67102,631 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(205), [sym_color_reference] = STATE(205), [sym_tikz_library_import] = STATE(205), - [aux_sym__section_repeat3] = STATE(637), - [aux_sym__section_repeat4] = STATE(627), - [aux_sym__section_repeat5] = STATE(626), - [aux_sym__section_repeat6] = STATE(625), - [aux_sym__section_repeat7] = STATE(624), - [aux_sym__section_repeat8] = STATE(623), + [sym_text_mode] = STATE(205), + [aux_sym__section_repeat3] = STATE(365), + [aux_sym__section_repeat4] = STATE(363), + [aux_sym__section_repeat5] = STATE(359), + [aux_sym__section_repeat6] = STATE(357), + [aux_sym__section_repeat7] = STATE(356), + [aux_sym__section_repeat8] = STATE(354), [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_COMMA] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1832), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [139] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(382), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(381), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(379), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(377), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(375), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(373), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [aux_sym__section_repeat3] = STATE(382), - [aux_sym__section_repeat4] = STATE(381), - [aux_sym__section_repeat5] = STATE(379), - [aux_sym__section_repeat6] = STATE(377), - [aux_sym__section_repeat7] = STATE(375), - [aux_sym__section_repeat8] = STATE(373), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_COMMA] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_RBRACK] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1857), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHend] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, - [140] = { - [sym_block_comment] = STATE(138), - [sym__flat_content] = STATE(138), - [sym__text_with_env_content] = STATE(138), - [sym__text_content] = STATE(138), + [141] = { + [sym_block_comment] = STATE(140), + [sym__flat_content] = STATE(140), + [sym__text_with_env_content] = STATE(140), + [sym__text_content] = STATE(140), [sym__section_declaration] = STATE(145), - [sym_section] = STATE(419), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(420), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(421), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(422), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(423), + [sym_section] = STATE(468), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(467), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(466), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(465), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(464), [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(424), - [sym_curly_group] = STATE(138), - [sym_text] = STATE(138), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(138), - [sym_inline_formula] = STATE(138), - [sym_math_set] = STATE(138), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(138), - [sym_comment_environment] = STATE(138), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(138), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(138), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(138), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(138), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(138), - [sym_generic_command] = STATE(138), - [sym_package_include] = STATE(138), - [sym_class_include] = STATE(138), - [sym_latex_include] = STATE(138), - [sym_biblatex_include] = STATE(138), - [sym_bibtex_include] = STATE(138), - [sym_graphics_include] = STATE(138), - [sym_svg_include] = STATE(138), - [sym_inkscape_include] = STATE(138), - [sym_verbatim_include] = STATE(138), - [sym_import_include] = STATE(138), - [sym_caption] = STATE(138), - [sym_citation] = STATE(138), - [sym_label_definition] = STATE(138), - [sym_label_reference] = STATE(138), - [sym_label_reference_range] = STATE(138), - [sym_label_number] = STATE(138), - [sym_new_command_definition] = STATE(138), - [sym_old_command_definition] = STATE(138), - [sym_let_command_definition] = STATE(138), - [sym_environment_definition] = STATE(138), - [sym_glossary_entry_definition] = STATE(138), - [sym_glossary_entry_reference] = STATE(138), - [sym_acronym_definition] = STATE(138), - [sym_acronym_reference] = STATE(138), - [sym_theorem_definition] = STATE(138), - [sym_color_definition] = STATE(138), - [sym_color_set_definition] = STATE(138), - [sym_color_reference] = STATE(138), - [sym_tikz_library_import] = STATE(138), - [aux_sym__section_repeat3] = STATE(419), - [aux_sym__section_repeat4] = STATE(420), - [aux_sym__section_repeat5] = STATE(421), - [aux_sym__section_repeat6] = STATE(422), - [aux_sym__section_repeat7] = STATE(423), - [aux_sym__section_repeat8] = STATE(424), - [aux_sym_part_repeat1] = STATE(138), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_RPAREN] = ACTIONS(1858), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_RBRACK] = ACTIONS(1858), - [anon_sym_COMMA] = ACTIONS(1858), - [anon_sym_EQ] = ACTIONS(1858), - [anon_sym_BSLASHpart] = ACTIONS(1850), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1846), - [anon_sym_BSLASHaddpart] = ACTIONS(1850), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1846), - [anon_sym_BSLASHchapter] = ACTIONS(1850), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1846), - [anon_sym_BSLASHaddchap] = ACTIONS(1850), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1846), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1846), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [141] = { - [sym_block_comment] = STATE(203), - [sym__flat_content] = STATE(203), - [sym__text_with_env_content] = STATE(203), - [sym__text_content] = STATE(203), - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(558), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(559), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(560), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(561), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(562), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(563), - [sym_curly_group] = STATE(203), - [sym_text] = STATE(203), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(203), - [sym_inline_formula] = STATE(203), - [sym_math_set] = STATE(203), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(203), - [sym_comment_environment] = STATE(203), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(203), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(203), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(203), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(203), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(203), - [sym_generic_command] = STATE(203), - [sym_package_include] = STATE(203), - [sym_class_include] = STATE(203), - [sym_latex_include] = STATE(203), - [sym_biblatex_include] = STATE(203), - [sym_bibtex_include] = STATE(203), - [sym_graphics_include] = STATE(203), - [sym_svg_include] = STATE(203), - [sym_inkscape_include] = STATE(203), - [sym_verbatim_include] = STATE(203), - [sym_import_include] = STATE(203), - [sym_caption] = STATE(203), - [sym_citation] = STATE(203), - [sym_label_definition] = STATE(203), - [sym_label_reference] = STATE(203), - [sym_label_reference_range] = STATE(203), - [sym_label_number] = STATE(203), - [sym_new_command_definition] = STATE(203), - [sym_old_command_definition] = STATE(203), - [sym_let_command_definition] = STATE(203), - [sym_environment_definition] = STATE(203), - [sym_glossary_entry_definition] = STATE(203), - [sym_glossary_entry_reference] = STATE(203), - [sym_acronym_definition] = STATE(203), - [sym_acronym_reference] = STATE(203), - [sym_theorem_definition] = STATE(203), - [sym_color_definition] = STATE(203), - [sym_color_set_definition] = STATE(203), - [sym_color_reference] = STATE(203), - [sym_tikz_library_import] = STATE(203), - [aux_sym__section_repeat3] = STATE(558), - [aux_sym__section_repeat4] = STATE(559), - [aux_sym__section_repeat5] = STATE(560), - [aux_sym__section_repeat6] = STATE(561), - [aux_sym__section_repeat7] = STATE(562), - [aux_sym__section_repeat8] = STATE(563), - [aux_sym_part_repeat1] = STATE(203), + [sym_enum_item] = STATE(463), + [sym_curly_group] = STATE(140), + [sym_text] = STATE(140), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(140), + [sym_inline_formula] = STATE(140), + [sym_math_set] = STATE(140), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(140), + [sym_comment_environment] = STATE(140), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(140), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(140), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(140), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(140), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(140), + [sym_generic_command] = STATE(140), + [sym_package_include] = STATE(140), + [sym_class_include] = STATE(140), + [sym_latex_include] = STATE(140), + [sym_biblatex_include] = STATE(140), + [sym_bibtex_include] = STATE(140), + [sym_graphics_include] = STATE(140), + [sym_svg_include] = STATE(140), + [sym_inkscape_include] = STATE(140), + [sym_verbatim_include] = STATE(140), + [sym_import_include] = STATE(140), + [sym_caption] = STATE(140), + [sym_citation] = STATE(140), + [sym_label_definition] = STATE(140), + [sym_label_reference] = STATE(140), + [sym_label_reference_range] = STATE(140), + [sym_label_number] = STATE(140), + [sym_new_command_definition] = STATE(140), + [sym_old_command_definition] = STATE(140), + [sym_let_command_definition] = STATE(140), + [sym_environment_definition] = STATE(140), + [sym_glossary_entry_definition] = STATE(140), + [sym_glossary_entry_reference] = STATE(140), + [sym_acronym_definition] = STATE(140), + [sym_acronym_reference] = STATE(140), + [sym_theorem_definition] = STATE(140), + [sym_color_definition] = STATE(140), + [sym_color_set_definition] = STATE(140), + [sym_color_reference] = STATE(140), + [sym_tikz_library_import] = STATE(140), + [sym_text_mode] = STATE(140), + [aux_sym__section_repeat3] = STATE(468), + [aux_sym__section_repeat4] = STATE(467), + [aux_sym__section_repeat5] = STATE(466), + [aux_sym__section_repeat6] = STATE(465), + [aux_sym__section_repeat7] = STATE(464), + [aux_sym__section_repeat8] = STATE(463), + [aux_sym_part_repeat1] = STATE(140), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_RBRACK] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1883), + [anon_sym_RPAREN] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1883), + [anon_sym_RBRACK] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(1883), + [anon_sym_EQ] = ACTIONS(1883), + [anon_sym_BSLASHpart] = ACTIONS(1875), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1871), + [anon_sym_BSLASHaddpart] = ACTIONS(1875), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1871), + [anon_sym_BSLASHchapter] = ACTIONS(1875), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1871), + [anon_sym_BSLASHaddchap] = ACTIONS(1875), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1871), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHend] = ACTIONS(1875), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [142] = { [sym_block_comment] = STATE(143), @@ -69377,33 +67734,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__text_with_env_content] = STATE(143), [sym__text_content] = STATE(143), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(320), + [sym_subsection] = STATE(322), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(323), + [sym_subsubsection] = STATE(314), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(327), + [sym_paragraph] = STATE(270), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(334), + [sym_subparagraph] = STATE(343), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(312), + [sym_enum_item] = STATE(342), [sym_curly_group] = STATE(143), [sym_text] = STATE(143), - [sym_operator] = STATE(805), + [sym_operator] = STATE(782), [sym_displayed_equation] = STATE(143), [sym_inline_formula] = STATE(143), [sym_math_set] = STATE(143), - [sym_begin] = STATE(37), + [sym_begin] = STATE(36), [sym_generic_environment] = STATE(143), [sym_comment_environment] = STATE(143), - [sym__trivia_begin_comment] = STATE(2391), + [sym__trivia_begin_comment] = STATE(2417), [sym_verbatim_environment] = STATE(143), - [sym__trivia_begin_verbatim] = STATE(2393), + [sym__trivia_begin_verbatim] = STATE(2429), [sym_listing_environment] = STATE(143), - [sym__trivia_begin_listing] = STATE(2395), + [sym__trivia_begin_listing] = STATE(2430), [sym_minted_environment] = STATE(143), - [sym__trivia_begin_minted] = STATE(2396), + [sym__trivia_begin_minted] = STATE(2431), [sym_pycode_environment] = STATE(143), - [sym__trivia_begin_pycode] = STATE(2408), + [sym__trivia_begin_pycode] = STATE(2461), [sym__command] = STATE(143), [sym_generic_command] = STATE(143), [sym_package_include] = STATE(143), @@ -69435,36 +67792,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(143), [sym_color_reference] = STATE(143), [sym_tikz_library_import] = STATE(143), - [aux_sym__section_repeat4] = STATE(320), - [aux_sym__section_repeat5] = STATE(323), - [aux_sym__section_repeat6] = STATE(327), - [aux_sym__section_repeat7] = STATE(334), - [aux_sym__section_repeat8] = STATE(312), + [sym_text_mode] = STATE(143), + [aux_sym__section_repeat4] = STATE(322), + [aux_sym__section_repeat5] = STATE(314), + [aux_sym__section_repeat6] = STATE(270), + [aux_sym__section_repeat7] = STATE(343), + [aux_sym__section_repeat8] = STATE(342), [aux_sym_part_repeat1] = STATE(143), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1860), + [ts_builtin_sym_end] = ACTIONS(1885), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_RPAREN] = ACTIONS(1862), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_RBRACK] = ACTIONS(1862), - [anon_sym_COMMA] = ACTIONS(1862), - [anon_sym_EQ] = ACTIONS(1862), - [anon_sym_BSLASHpart] = ACTIONS(1864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddpart] = ACTIONS(1864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1860), - [anon_sym_BSLASHchapter] = ACTIONS(1864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddchap] = ACTIONS(1864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1860), - [anon_sym_BSLASHsection] = ACTIONS(1864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddsec] = ACTIONS(1864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1860), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_RBRACK] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_EQ] = ACTIONS(1887), + [anon_sym_BSLASHpart] = ACTIONS(1889), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddpart] = ACTIONS(1889), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1885), + [anon_sym_BSLASHchapter] = ACTIONS(1889), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddchap] = ACTIONS(1889), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1885), + [anon_sym_BSLASHsection] = ACTIONS(1889), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddsec] = ACTIONS(1889), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1885), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), @@ -69476,7 +67834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1860), + [anon_sym_RBRACE] = ACTIONS(1885), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -69710,101 +68068,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [143] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), + [sym_block_comment] = STATE(193), + [sym__flat_content] = STATE(193), + [sym__text_with_env_content] = STATE(193), + [sym__text_content] = STATE(193), [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(294), + [sym_subsection] = STATE(296), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(295), + [sym_subsubsection] = STATE(297), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(269), + [sym_paragraph] = STATE(298), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(297), + [sym_subparagraph] = STATE(299), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(298), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [aux_sym__section_repeat4] = STATE(294), - [aux_sym__section_repeat5] = STATE(295), - [aux_sym__section_repeat6] = STATE(269), - [aux_sym__section_repeat7] = STATE(297), - [aux_sym__section_repeat8] = STATE(298), - [aux_sym_part_repeat1] = STATE(192), + [sym_enum_item] = STATE(300), + [sym_curly_group] = STATE(193), + [sym_text] = STATE(193), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(193), + [sym_inline_formula] = STATE(193), + [sym_math_set] = STATE(193), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(193), + [sym_comment_environment] = STATE(193), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(193), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(193), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(193), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(193), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(193), + [sym_generic_command] = STATE(193), + [sym_package_include] = STATE(193), + [sym_class_include] = STATE(193), + [sym_latex_include] = STATE(193), + [sym_biblatex_include] = STATE(193), + [sym_bibtex_include] = STATE(193), + [sym_graphics_include] = STATE(193), + [sym_svg_include] = STATE(193), + [sym_inkscape_include] = STATE(193), + [sym_verbatim_include] = STATE(193), + [sym_import_include] = STATE(193), + [sym_caption] = STATE(193), + [sym_citation] = STATE(193), + [sym_label_definition] = STATE(193), + [sym_label_reference] = STATE(193), + [sym_label_reference_range] = STATE(193), + [sym_label_number] = STATE(193), + [sym_new_command_definition] = STATE(193), + [sym_old_command_definition] = STATE(193), + [sym_let_command_definition] = STATE(193), + [sym_environment_definition] = STATE(193), + [sym_glossary_entry_definition] = STATE(193), + [sym_glossary_entry_reference] = STATE(193), + [sym_acronym_definition] = STATE(193), + [sym_acronym_reference] = STATE(193), + [sym_theorem_definition] = STATE(193), + [sym_color_definition] = STATE(193), + [sym_color_set_definition] = STATE(193), + [sym_color_reference] = STATE(193), + [sym_tikz_library_import] = STATE(193), + [sym_text_mode] = STATE(193), + [aux_sym__section_repeat4] = STATE(296), + [aux_sym__section_repeat5] = STATE(297), + [aux_sym__section_repeat6] = STATE(298), + [aux_sym__section_repeat7] = STATE(299), + [aux_sym__section_repeat8] = STATE(300), + [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1866), + [ts_builtin_sym_end] = ACTIONS(1891), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_RBRACK] = ACTIONS(1814), - [anon_sym_COMMA] = ACTIONS(1814), - [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_RBRACK] = ACTIONS(1839), + [anon_sym_COMMA] = ACTIONS(1839), + [anon_sym_EQ] = ACTIONS(1839), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), @@ -69816,7 +68178,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1891), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -70050,718 +68412,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [144] = { - [sym_block_comment] = STATE(205), - [sym__flat_content] = STATE(205), - [sym__text_with_env_content] = STATE(205), - [sym__text_content] = STATE(205), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(622), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(621), + [sym_block_comment] = STATE(146), + [sym__flat_content] = STATE(146), + [sym__text_with_env_content] = STATE(146), + [sym__text_content] = STATE(146), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(584), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(585), [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(620), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(619), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(618), - [sym_curly_group] = STATE(205), - [sym_text] = STATE(205), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(205), - [sym_inline_formula] = STATE(205), - [sym_math_set] = STATE(205), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(205), - [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(205), - [sym_generic_command] = STATE(205), - [sym_package_include] = STATE(205), - [sym_class_include] = STATE(205), - [sym_latex_include] = STATE(205), - [sym_biblatex_include] = STATE(205), - [sym_bibtex_include] = STATE(205), - [sym_graphics_include] = STATE(205), - [sym_svg_include] = STATE(205), - [sym_inkscape_include] = STATE(205), - [sym_verbatim_include] = STATE(205), - [sym_import_include] = STATE(205), - [sym_caption] = STATE(205), - [sym_citation] = STATE(205), - [sym_label_definition] = STATE(205), - [sym_label_reference] = STATE(205), - [sym_label_reference_range] = STATE(205), - [sym_label_number] = STATE(205), - [sym_new_command_definition] = STATE(205), - [sym_old_command_definition] = STATE(205), - [sym_let_command_definition] = STATE(205), - [sym_environment_definition] = STATE(205), - [sym_glossary_entry_definition] = STATE(205), - [sym_glossary_entry_reference] = STATE(205), - [sym_acronym_definition] = STATE(205), - [sym_acronym_reference] = STATE(205), - [sym_theorem_definition] = STATE(205), - [sym_color_definition] = STATE(205), - [sym_color_set_definition] = STATE(205), - [sym_color_reference] = STATE(205), - [sym_tikz_library_import] = STATE(205), - [aux_sym__section_repeat4] = STATE(622), - [aux_sym__section_repeat5] = STATE(621), - [aux_sym__section_repeat6] = STATE(620), - [aux_sym__section_repeat7] = STATE(619), - [aux_sym__section_repeat8] = STATE(618), - [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_COMMA] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1832), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1866), + [sym_paragraph] = STATE(586), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(587), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(588), + [sym_curly_group] = STATE(146), + [sym_text] = STATE(146), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(146), + [sym_inline_formula] = STATE(146), + [sym_math_set] = STATE(146), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(146), + [sym_comment_environment] = STATE(146), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(146), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(146), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(146), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(146), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(146), + [sym_generic_command] = STATE(146), + [sym_package_include] = STATE(146), + [sym_class_include] = STATE(146), + [sym_latex_include] = STATE(146), + [sym_biblatex_include] = STATE(146), + [sym_bibtex_include] = STATE(146), + [sym_graphics_include] = STATE(146), + [sym_svg_include] = STATE(146), + [sym_inkscape_include] = STATE(146), + [sym_verbatim_include] = STATE(146), + [sym_import_include] = STATE(146), + [sym_caption] = STATE(146), + [sym_citation] = STATE(146), + [sym_label_definition] = STATE(146), + [sym_label_reference] = STATE(146), + [sym_label_reference_range] = STATE(146), + [sym_label_number] = STATE(146), + [sym_new_command_definition] = STATE(146), + [sym_old_command_definition] = STATE(146), + [sym_let_command_definition] = STATE(146), + [sym_environment_definition] = STATE(146), + [sym_glossary_entry_definition] = STATE(146), + [sym_glossary_entry_reference] = STATE(146), + [sym_acronym_definition] = STATE(146), + [sym_acronym_reference] = STATE(146), + [sym_theorem_definition] = STATE(146), + [sym_color_definition] = STATE(146), + [sym_color_set_definition] = STATE(146), + [sym_color_reference] = STATE(146), + [sym_tikz_library_import] = STATE(146), + [sym_text_mode] = STATE(146), + [aux_sym__section_repeat4] = STATE(584), + [aux_sym__section_repeat5] = STATE(585), + [aux_sym__section_repeat6] = STATE(586), + [aux_sym__section_repeat7] = STATE(587), + [aux_sym__section_repeat8] = STATE(588), + [aux_sym_part_repeat1] = STATE(146), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_RBRACK] = ACTIONS(1895), + [anon_sym_COMMA] = ACTIONS(1895), + [anon_sym_EQ] = ACTIONS(1895), + [anon_sym_BSLASHpart] = ACTIONS(1889), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddpart] = ACTIONS(1889), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1885), + [anon_sym_BSLASHchapter] = ACTIONS(1889), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddchap] = ACTIONS(1889), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1885), + [anon_sym_BSLASHsection] = ACTIONS(1889), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddsec] = ACTIONS(1889), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1885), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1885), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, [145] = { - [sym_block_comment] = STATE(144), - [sym__flat_content] = STATE(144), - [sym__text_with_env_content] = STATE(144), - [sym__text_content] = STATE(144), - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(425), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(426), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(435), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(436), + [sym_block_comment] = STATE(147), + [sym__flat_content] = STATE(147), + [sym__text_with_env_content] = STATE(147), + [sym__text_content] = STATE(147), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(461), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(460), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(459), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(458), [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(438), - [sym_curly_group] = STATE(144), - [sym_text] = STATE(144), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(144), - [sym_inline_formula] = STATE(144), - [sym_math_set] = STATE(144), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(144), - [sym_comment_environment] = STATE(144), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(144), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(144), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(144), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(144), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(144), - [sym_generic_command] = STATE(144), - [sym_package_include] = STATE(144), - [sym_class_include] = STATE(144), - [sym_latex_include] = STATE(144), - [sym_biblatex_include] = STATE(144), - [sym_bibtex_include] = STATE(144), - [sym_graphics_include] = STATE(144), - [sym_svg_include] = STATE(144), - [sym_inkscape_include] = STATE(144), - [sym_verbatim_include] = STATE(144), - [sym_import_include] = STATE(144), - [sym_caption] = STATE(144), - [sym_citation] = STATE(144), - [sym_label_definition] = STATE(144), - [sym_label_reference] = STATE(144), - [sym_label_reference_range] = STATE(144), - [sym_label_number] = STATE(144), - [sym_new_command_definition] = STATE(144), - [sym_old_command_definition] = STATE(144), - [sym_let_command_definition] = STATE(144), - [sym_environment_definition] = STATE(144), - [sym_glossary_entry_definition] = STATE(144), - [sym_glossary_entry_reference] = STATE(144), - [sym_acronym_definition] = STATE(144), - [sym_acronym_reference] = STATE(144), - [sym_theorem_definition] = STATE(144), - [sym_color_definition] = STATE(144), - [sym_color_set_definition] = STATE(144), - [sym_color_reference] = STATE(144), - [sym_tikz_library_import] = STATE(144), - [aux_sym__section_repeat4] = STATE(425), - [aux_sym__section_repeat5] = STATE(426), - [aux_sym__section_repeat6] = STATE(435), - [aux_sym__section_repeat7] = STATE(436), - [aux_sym__section_repeat8] = STATE(438), - [aux_sym_part_repeat1] = STATE(144), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_RPAREN] = ACTIONS(1870), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_RBRACK] = ACTIONS(1870), - [anon_sym_COMMA] = ACTIONS(1870), - [anon_sym_EQ] = ACTIONS(1870), - [anon_sym_BSLASHpart] = ACTIONS(1864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddpart] = ACTIONS(1864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1860), - [anon_sym_BSLASHchapter] = ACTIONS(1864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddchap] = ACTIONS(1864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1860), - [anon_sym_BSLASHsection] = ACTIONS(1864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddsec] = ACTIONS(1864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1860), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1860), + [sym_enum_item] = STATE(457), + [sym_curly_group] = STATE(147), + [sym_text] = STATE(147), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(147), + [sym_inline_formula] = STATE(147), + [sym_math_set] = STATE(147), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(147), + [sym_comment_environment] = STATE(147), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(147), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(147), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(147), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(147), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(147), + [sym_generic_command] = STATE(147), + [sym_package_include] = STATE(147), + [sym_class_include] = STATE(147), + [sym_latex_include] = STATE(147), + [sym_biblatex_include] = STATE(147), + [sym_bibtex_include] = STATE(147), + [sym_graphics_include] = STATE(147), + [sym_svg_include] = STATE(147), + [sym_inkscape_include] = STATE(147), + [sym_verbatim_include] = STATE(147), + [sym_import_include] = STATE(147), + [sym_caption] = STATE(147), + [sym_citation] = STATE(147), + [sym_label_definition] = STATE(147), + [sym_label_reference] = STATE(147), + [sym_label_reference_range] = STATE(147), + [sym_label_number] = STATE(147), + [sym_new_command_definition] = STATE(147), + [sym_old_command_definition] = STATE(147), + [sym_let_command_definition] = STATE(147), + [sym_environment_definition] = STATE(147), + [sym_glossary_entry_definition] = STATE(147), + [sym_glossary_entry_reference] = STATE(147), + [sym_acronym_definition] = STATE(147), + [sym_acronym_reference] = STATE(147), + [sym_theorem_definition] = STATE(147), + [sym_color_definition] = STATE(147), + [sym_color_set_definition] = STATE(147), + [sym_color_reference] = STATE(147), + [sym_tikz_library_import] = STATE(147), + [sym_text_mode] = STATE(147), + [aux_sym__section_repeat4] = STATE(461), + [aux_sym__section_repeat5] = STATE(460), + [aux_sym__section_repeat6] = STATE(459), + [aux_sym__section_repeat7] = STATE(458), + [aux_sym__section_repeat8] = STATE(457), + [aux_sym_part_repeat1] = STATE(147), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_RBRACK] = ACTIONS(1897), + [anon_sym_COMMA] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(1897), + [anon_sym_BSLASHpart] = ACTIONS(1889), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddpart] = ACTIONS(1889), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1885), + [anon_sym_BSLASHchapter] = ACTIONS(1889), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddchap] = ACTIONS(1889), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1885), + [anon_sym_BSLASHsection] = ACTIONS(1889), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddsec] = ACTIONS(1889), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1885), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHend] = ACTIONS(1889), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [146] = { [sym_block_comment] = STATE(200), [sym__flat_content] = STATE(200), [sym__text_with_env_content] = STATE(200), [sym__text_content] = STATE(200), - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(397), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(396), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(395), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(394), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(393), + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(610), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(609), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(608), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(607), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(606), [sym_curly_group] = STATE(200), [sym_text] = STATE(200), - [sym_operator] = STATE(1000), + [sym_operator] = STATE(862), [sym_displayed_equation] = STATE(200), [sym_inline_formula] = STATE(200), [sym_math_set] = STATE(200), - [sym_begin] = STATE(20), + [sym_begin] = STATE(29), [sym_generic_environment] = STATE(200), [sym_comment_environment] = STATE(200), - [sym__trivia_begin_comment] = STATE(2333), + [sym__trivia_begin_comment] = STATE(2344), [sym_verbatim_environment] = STATE(200), - [sym__trivia_begin_verbatim] = STATE(2332), + [sym__trivia_begin_verbatim] = STATE(2343), [sym_listing_environment] = STATE(200), - [sym__trivia_begin_listing] = STATE(2331), + [sym__trivia_begin_listing] = STATE(2342), [sym_minted_environment] = STATE(200), - [sym__trivia_begin_minted] = STATE(2330), + [sym__trivia_begin_minted] = STATE(2341), [sym_pycode_environment] = STATE(200), - [sym__trivia_begin_pycode] = STATE(2329), + [sym__trivia_begin_pycode] = STATE(2340), [sym__command] = STATE(200), [sym_generic_command] = STATE(200), [sym_package_include] = STATE(200), @@ -70793,1975 +69166,1999 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(200), [sym_color_reference] = STATE(200), [sym_tikz_library_import] = STATE(200), - [aux_sym__section_repeat4] = STATE(397), - [aux_sym__section_repeat5] = STATE(396), - [aux_sym__section_repeat6] = STATE(395), - [aux_sym__section_repeat7] = STATE(394), - [aux_sym__section_repeat8] = STATE(393), + [sym_text_mode] = STATE(200), + [aux_sym__section_repeat4] = STATE(610), + [aux_sym__section_repeat5] = STATE(609), + [aux_sym__section_repeat6] = STATE(608), + [aux_sym__section_repeat7] = STATE(607), + [aux_sym__section_repeat8] = STATE(606), [aux_sym_part_repeat1] = STATE(200), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1891), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, [147] = { - [sym_block_comment] = STATE(203), - [sym__flat_content] = STATE(203), - [sym__text_with_env_content] = STATE(203), - [sym__text_content] = STATE(203), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(564), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(565), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(566), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(567), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(568), - [sym_curly_group] = STATE(203), - [sym_text] = STATE(203), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(203), - [sym_inline_formula] = STATE(203), - [sym_math_set] = STATE(203), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(203), - [sym_comment_environment] = STATE(203), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(203), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(203), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(203), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(203), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(203), - [sym_generic_command] = STATE(203), - [sym_package_include] = STATE(203), - [sym_class_include] = STATE(203), - [sym_latex_include] = STATE(203), - [sym_biblatex_include] = STATE(203), - [sym_bibtex_include] = STATE(203), - [sym_graphics_include] = STATE(203), - [sym_svg_include] = STATE(203), - [sym_inkscape_include] = STATE(203), - [sym_verbatim_include] = STATE(203), - [sym_import_include] = STATE(203), - [sym_caption] = STATE(203), - [sym_citation] = STATE(203), - [sym_label_definition] = STATE(203), - [sym_label_reference] = STATE(203), - [sym_label_reference_range] = STATE(203), - [sym_label_number] = STATE(203), - [sym_new_command_definition] = STATE(203), - [sym_old_command_definition] = STATE(203), - [sym_let_command_definition] = STATE(203), - [sym_environment_definition] = STATE(203), - [sym_glossary_entry_definition] = STATE(203), - [sym_glossary_entry_reference] = STATE(203), - [sym_acronym_definition] = STATE(203), - [sym_acronym_reference] = STATE(203), - [sym_theorem_definition] = STATE(203), - [sym_color_definition] = STATE(203), - [sym_color_set_definition] = STATE(203), - [sym_color_reference] = STATE(203), - [sym_tikz_library_import] = STATE(203), - [aux_sym__section_repeat4] = STATE(564), - [aux_sym__section_repeat5] = STATE(565), - [aux_sym__section_repeat6] = STATE(566), - [aux_sym__section_repeat7] = STATE(567), - [aux_sym__section_repeat8] = STATE(568), - [aux_sym_part_repeat1] = STATE(203), + [sym_block_comment] = STATE(205), + [sym__flat_content] = STATE(205), + [sym__text_with_env_content] = STATE(205), + [sym__text_content] = STATE(205), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(352), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(351), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(350), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(348), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(347), + [sym_curly_group] = STATE(205), + [sym_text] = STATE(205), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(205), + [sym_inline_formula] = STATE(205), + [sym_math_set] = STATE(205), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(205), + [sym_comment_environment] = STATE(205), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(205), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(205), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(205), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(205), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(205), + [sym_generic_command] = STATE(205), + [sym_package_include] = STATE(205), + [sym_class_include] = STATE(205), + [sym_latex_include] = STATE(205), + [sym_biblatex_include] = STATE(205), + [sym_bibtex_include] = STATE(205), + [sym_graphics_include] = STATE(205), + [sym_svg_include] = STATE(205), + [sym_inkscape_include] = STATE(205), + [sym_verbatim_include] = STATE(205), + [sym_import_include] = STATE(205), + [sym_caption] = STATE(205), + [sym_citation] = STATE(205), + [sym_label_definition] = STATE(205), + [sym_label_reference] = STATE(205), + [sym_label_reference_range] = STATE(205), + [sym_label_number] = STATE(205), + [sym_new_command_definition] = STATE(205), + [sym_old_command_definition] = STATE(205), + [sym_let_command_definition] = STATE(205), + [sym_environment_definition] = STATE(205), + [sym_glossary_entry_definition] = STATE(205), + [sym_glossary_entry_reference] = STATE(205), + [sym_acronym_definition] = STATE(205), + [sym_acronym_reference] = STATE(205), + [sym_theorem_definition] = STATE(205), + [sym_color_definition] = STATE(205), + [sym_color_set_definition] = STATE(205), + [sym_color_reference] = STATE(205), + [sym_tikz_library_import] = STATE(205), + [sym_text_mode] = STATE(205), + [aux_sym__section_repeat4] = STATE(352), + [aux_sym__section_repeat5] = STATE(351), + [aux_sym__section_repeat6] = STATE(350), + [aux_sym__section_repeat7] = STATE(348), + [aux_sym__section_repeat8] = STATE(347), + [aux_sym_part_repeat1] = STATE(205), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_RBRACK] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_RBRACK] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1857), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHend] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [148] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(371), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(370), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(369), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(368), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(366), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [aux_sym__section_repeat4] = STATE(371), - [aux_sym__section_repeat5] = STATE(370), - [aux_sym__section_repeat6] = STATE(369), - [aux_sym__section_repeat7] = STATE(368), - [aux_sym__section_repeat8] = STATE(366), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_COMMA] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_block_comment] = STATE(150), + [sym__flat_content] = STATE(150), + [sym__text_with_env_content] = STATE(150), + [sym__text_content] = STATE(150), + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(530), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(529), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(528), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(527), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(525), + [sym_curly_group] = STATE(150), + [sym_text] = STATE(150), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(150), + [sym_inline_formula] = STATE(150), + [sym_math_set] = STATE(150), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(150), + [sym_comment_environment] = STATE(150), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(150), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(150), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(150), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(150), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(150), + [sym_generic_command] = STATE(150), + [sym_package_include] = STATE(150), + [sym_class_include] = STATE(150), + [sym_latex_include] = STATE(150), + [sym_biblatex_include] = STATE(150), + [sym_bibtex_include] = STATE(150), + [sym_graphics_include] = STATE(150), + [sym_svg_include] = STATE(150), + [sym_inkscape_include] = STATE(150), + [sym_verbatim_include] = STATE(150), + [sym_import_include] = STATE(150), + [sym_caption] = STATE(150), + [sym_citation] = STATE(150), + [sym_label_definition] = STATE(150), + [sym_label_reference] = STATE(150), + [sym_label_reference_range] = STATE(150), + [sym_label_number] = STATE(150), + [sym_new_command_definition] = STATE(150), + [sym_old_command_definition] = STATE(150), + [sym_let_command_definition] = STATE(150), + [sym_environment_definition] = STATE(150), + [sym_glossary_entry_definition] = STATE(150), + [sym_glossary_entry_reference] = STATE(150), + [sym_acronym_definition] = STATE(150), + [sym_acronym_reference] = STATE(150), + [sym_theorem_definition] = STATE(150), + [sym_color_definition] = STATE(150), + [sym_color_set_definition] = STATE(150), + [sym_color_reference] = STATE(150), + [sym_tikz_library_import] = STATE(150), + [sym_text_mode] = STATE(150), + [aux_sym__section_repeat4] = STATE(530), + [aux_sym__section_repeat5] = STATE(529), + [aux_sym__section_repeat6] = STATE(528), + [aux_sym__section_repeat7] = STATE(527), + [aux_sym__section_repeat8] = STATE(525), + [aux_sym_part_repeat1] = STATE(150), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1899), + [anon_sym_RPAREN] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1899), + [anon_sym_RBRACK] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1899), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_BSLASHpart] = ACTIONS(1889), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddpart] = ACTIONS(1889), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1885), + [anon_sym_BSLASHchapter] = ACTIONS(1889), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddchap] = ACTIONS(1889), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1885), + [anon_sym_BSLASHsection] = ACTIONS(1889), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddsec] = ACTIONS(1889), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1885), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1885), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, [149] = { - [sym_block_comment] = STATE(147), - [sym__flat_content] = STATE(147), - [sym__text_with_env_content] = STATE(147), - [sym__text_content] = STATE(147), - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(488), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(489), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(490), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(491), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(492), - [sym_curly_group] = STATE(147), - [sym_text] = STATE(147), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(147), - [sym_inline_formula] = STATE(147), - [sym_math_set] = STATE(147), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(147), - [sym_comment_environment] = STATE(147), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(147), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(147), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(147), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(147), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(147), - [sym_generic_command] = STATE(147), - [sym_package_include] = STATE(147), - [sym_class_include] = STATE(147), - [sym_latex_include] = STATE(147), - [sym_biblatex_include] = STATE(147), - [sym_bibtex_include] = STATE(147), - [sym_graphics_include] = STATE(147), - [sym_svg_include] = STATE(147), - [sym_inkscape_include] = STATE(147), - [sym_verbatim_include] = STATE(147), - [sym_import_include] = STATE(147), - [sym_caption] = STATE(147), - [sym_citation] = STATE(147), - [sym_label_definition] = STATE(147), - [sym_label_reference] = STATE(147), - [sym_label_reference_range] = STATE(147), - [sym_label_number] = STATE(147), - [sym_new_command_definition] = STATE(147), - [sym_old_command_definition] = STATE(147), - [sym_let_command_definition] = STATE(147), - [sym_environment_definition] = STATE(147), - [sym_glossary_entry_definition] = STATE(147), - [sym_glossary_entry_reference] = STATE(147), - [sym_acronym_definition] = STATE(147), - [sym_acronym_reference] = STATE(147), - [sym_theorem_definition] = STATE(147), - [sym_color_definition] = STATE(147), - [sym_color_set_definition] = STATE(147), - [sym_color_reference] = STATE(147), - [sym_tikz_library_import] = STATE(147), - [aux_sym__section_repeat4] = STATE(488), - [aux_sym__section_repeat5] = STATE(489), - [aux_sym__section_repeat6] = STATE(490), - [aux_sym__section_repeat7] = STATE(491), - [aux_sym__section_repeat8] = STATE(492), - [aux_sym_part_repeat1] = STATE(147), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1872), - [anon_sym_RPAREN] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1872), - [anon_sym_RBRACK] = ACTIONS(1872), - [anon_sym_COMMA] = ACTIONS(1872), - [anon_sym_EQ] = ACTIONS(1872), - [anon_sym_BSLASHpart] = ACTIONS(1864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddpart] = ACTIONS(1864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1860), - [anon_sym_BSLASHchapter] = ACTIONS(1864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddchap] = ACTIONS(1864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1860), - [anon_sym_BSLASHsection] = ACTIONS(1864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddsec] = ACTIONS(1864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1860), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1860), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_block_comment] = STATE(198), + [sym__flat_content] = STATE(198), + [sym__text_with_env_content] = STATE(198), + [sym__text_content] = STATE(198), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(567), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(568), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(569), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(570), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(571), + [sym_curly_group] = STATE(198), + [sym_text] = STATE(198), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(198), + [sym_inline_formula] = STATE(198), + [sym_math_set] = STATE(198), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(198), + [sym_comment_environment] = STATE(198), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(198), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(198), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(198), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(198), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(198), + [sym_generic_command] = STATE(198), + [sym_package_include] = STATE(198), + [sym_class_include] = STATE(198), + [sym_latex_include] = STATE(198), + [sym_biblatex_include] = STATE(198), + [sym_bibtex_include] = STATE(198), + [sym_graphics_include] = STATE(198), + [sym_svg_include] = STATE(198), + [sym_inkscape_include] = STATE(198), + [sym_verbatim_include] = STATE(198), + [sym_import_include] = STATE(198), + [sym_caption] = STATE(198), + [sym_citation] = STATE(198), + [sym_label_definition] = STATE(198), + [sym_label_reference] = STATE(198), + [sym_label_reference_range] = STATE(198), + [sym_label_number] = STATE(198), + [sym_new_command_definition] = STATE(198), + [sym_old_command_definition] = STATE(198), + [sym_let_command_definition] = STATE(198), + [sym_environment_definition] = STATE(198), + [sym_glossary_entry_definition] = STATE(198), + [sym_glossary_entry_reference] = STATE(198), + [sym_acronym_definition] = STATE(198), + [sym_acronym_reference] = STATE(198), + [sym_theorem_definition] = STATE(198), + [sym_color_definition] = STATE(198), + [sym_color_set_definition] = STATE(198), + [sym_color_reference] = STATE(198), + [sym_tikz_library_import] = STATE(198), + [sym_text_mode] = STATE(198), + [aux_sym__section_repeat4] = STATE(567), + [aux_sym__section_repeat5] = STATE(568), + [aux_sym__section_repeat6] = STATE(569), + [aux_sym__section_repeat7] = STATE(570), + [aux_sym__section_repeat8] = STATE(571), + [aux_sym_part_repeat1] = STATE(198), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_RBRACK] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, [150] = { - [sym_block_comment] = STATE(146), - [sym__flat_content] = STATE(146), - [sym__text_with_env_content] = STATE(146), - [sym__text_content] = STATE(146), + [sym_block_comment] = STATE(206), + [sym__flat_content] = STATE(206), + [sym__text_with_env_content] = STATE(206), + [sym__text_content] = STATE(206), [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(345), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(540), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(539), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(537), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(529), - [sym_curly_group] = STATE(146), - [sym_text] = STATE(146), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(146), - [sym_inline_formula] = STATE(146), - [sym_math_set] = STATE(146), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(146), - [sym_comment_environment] = STATE(146), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(146), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(146), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(146), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(146), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(146), - [sym_generic_command] = STATE(146), - [sym_package_include] = STATE(146), - [sym_class_include] = STATE(146), - [sym_latex_include] = STATE(146), - [sym_biblatex_include] = STATE(146), - [sym_bibtex_include] = STATE(146), - [sym_graphics_include] = STATE(146), - [sym_svg_include] = STATE(146), - [sym_inkscape_include] = STATE(146), - [sym_verbatim_include] = STATE(146), - [sym_import_include] = STATE(146), - [sym_caption] = STATE(146), - [sym_citation] = STATE(146), - [sym_label_definition] = STATE(146), - [sym_label_reference] = STATE(146), - [sym_label_reference_range] = STATE(146), - [sym_label_number] = STATE(146), - [sym_new_command_definition] = STATE(146), - [sym_old_command_definition] = STATE(146), - [sym_let_command_definition] = STATE(146), - [sym_environment_definition] = STATE(146), - [sym_glossary_entry_definition] = STATE(146), - [sym_glossary_entry_reference] = STATE(146), - [sym_acronym_definition] = STATE(146), - [sym_acronym_reference] = STATE(146), - [sym_theorem_definition] = STATE(146), - [sym_color_definition] = STATE(146), - [sym_color_set_definition] = STATE(146), - [sym_color_reference] = STATE(146), - [sym_tikz_library_import] = STATE(146), - [aux_sym__section_repeat4] = STATE(345), - [aux_sym__section_repeat5] = STATE(540), - [aux_sym__section_repeat6] = STATE(539), - [aux_sym__section_repeat7] = STATE(537), - [aux_sym__section_repeat8] = STATE(529), - [aux_sym_part_repeat1] = STATE(146), + [sym_subsection] = STATE(378), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(376), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(371), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(369), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(368), + [sym_curly_group] = STATE(206), + [sym_text] = STATE(206), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(206), + [sym_inline_formula] = STATE(206), + [sym_math_set] = STATE(206), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(206), + [sym_comment_environment] = STATE(206), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(206), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(206), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(206), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(206), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(206), + [sym_generic_command] = STATE(206), + [sym_package_include] = STATE(206), + [sym_class_include] = STATE(206), + [sym_latex_include] = STATE(206), + [sym_biblatex_include] = STATE(206), + [sym_bibtex_include] = STATE(206), + [sym_graphics_include] = STATE(206), + [sym_svg_include] = STATE(206), + [sym_inkscape_include] = STATE(206), + [sym_verbatim_include] = STATE(206), + [sym_import_include] = STATE(206), + [sym_caption] = STATE(206), + [sym_citation] = STATE(206), + [sym_label_definition] = STATE(206), + [sym_label_reference] = STATE(206), + [sym_label_reference_range] = STATE(206), + [sym_label_number] = STATE(206), + [sym_new_command_definition] = STATE(206), + [sym_old_command_definition] = STATE(206), + [sym_let_command_definition] = STATE(206), + [sym_environment_definition] = STATE(206), + [sym_glossary_entry_definition] = STATE(206), + [sym_glossary_entry_reference] = STATE(206), + [sym_acronym_definition] = STATE(206), + [sym_acronym_reference] = STATE(206), + [sym_theorem_definition] = STATE(206), + [sym_color_definition] = STATE(206), + [sym_color_set_definition] = STATE(206), + [sym_color_reference] = STATE(206), + [sym_tikz_library_import] = STATE(206), + [sym_text_mode] = STATE(206), + [aux_sym__section_repeat4] = STATE(378), + [aux_sym__section_repeat5] = STATE(376), + [aux_sym__section_repeat6] = STATE(371), + [aux_sym__section_repeat7] = STATE(369), + [aux_sym__section_repeat8] = STATE(368), + [aux_sym_part_repeat1] = STATE(206), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_RPAREN] = ACTIONS(1874), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_RBRACK] = ACTIONS(1874), - [anon_sym_COMMA] = ACTIONS(1874), - [anon_sym_EQ] = ACTIONS(1874), - [anon_sym_BSLASHpart] = ACTIONS(1864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddpart] = ACTIONS(1864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1860), - [anon_sym_BSLASHchapter] = ACTIONS(1864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddchap] = ACTIONS(1864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1860), - [anon_sym_BSLASHsection] = ACTIONS(1864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddsec] = ACTIONS(1864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1860), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1860), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_RBRACK] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, [151] = { - [sym_block_comment] = STATE(148), - [sym__flat_content] = STATE(148), - [sym__text_with_env_content] = STATE(148), - [sym__text_content] = STATE(148), - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(472), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(471), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(469), + [sym_block_comment] = STATE(149), + [sym__flat_content] = STATE(149), + [sym__text_with_env_content] = STATE(149), + [sym__text_content] = STATE(149), + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(491), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(492), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(493), [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(468), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(467), - [sym_curly_group] = STATE(148), - [sym_text] = STATE(148), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(148), - [sym_inline_formula] = STATE(148), - [sym_math_set] = STATE(148), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(148), - [sym_comment_environment] = STATE(148), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(148), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(148), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(148), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(148), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(148), - [sym_generic_command] = STATE(148), - [sym_package_include] = STATE(148), - [sym_class_include] = STATE(148), - [sym_latex_include] = STATE(148), - [sym_biblatex_include] = STATE(148), - [sym_bibtex_include] = STATE(148), - [sym_graphics_include] = STATE(148), - [sym_svg_include] = STATE(148), - [sym_inkscape_include] = STATE(148), - [sym_verbatim_include] = STATE(148), - [sym_import_include] = STATE(148), - [sym_caption] = STATE(148), - [sym_citation] = STATE(148), - [sym_label_definition] = STATE(148), - [sym_label_reference] = STATE(148), - [sym_label_reference_range] = STATE(148), - [sym_label_number] = STATE(148), - [sym_new_command_definition] = STATE(148), - [sym_old_command_definition] = STATE(148), - [sym_let_command_definition] = STATE(148), - [sym_environment_definition] = STATE(148), - [sym_glossary_entry_definition] = STATE(148), - [sym_glossary_entry_reference] = STATE(148), - [sym_acronym_definition] = STATE(148), - [sym_acronym_reference] = STATE(148), - [sym_theorem_definition] = STATE(148), - [sym_color_definition] = STATE(148), - [sym_color_set_definition] = STATE(148), - [sym_color_reference] = STATE(148), - [sym_tikz_library_import] = STATE(148), - [aux_sym__section_repeat4] = STATE(472), - [aux_sym__section_repeat5] = STATE(471), - [aux_sym__section_repeat6] = STATE(469), - [aux_sym__section_repeat7] = STATE(468), - [aux_sym__section_repeat8] = STATE(467), - [aux_sym_part_repeat1] = STATE(148), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1876), - [anon_sym_RPAREN] = ACTIONS(1876), - [anon_sym_LBRACK] = ACTIONS(1876), - [anon_sym_RBRACK] = ACTIONS(1876), - [anon_sym_COMMA] = ACTIONS(1876), - [anon_sym_EQ] = ACTIONS(1876), - [anon_sym_BSLASHpart] = ACTIONS(1864), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddpart] = ACTIONS(1864), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1860), - [anon_sym_BSLASHchapter] = ACTIONS(1864), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddchap] = ACTIONS(1864), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1860), - [anon_sym_BSLASHsection] = ACTIONS(1864), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1860), - [anon_sym_BSLASHaddsec] = ACTIONS(1864), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1860), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_subparagraph] = STATE(494), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(495), + [sym_curly_group] = STATE(149), + [sym_text] = STATE(149), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(149), + [sym_inline_formula] = STATE(149), + [sym_math_set] = STATE(149), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(149), + [sym_comment_environment] = STATE(149), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(149), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(149), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(149), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(149), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(149), + [sym_generic_command] = STATE(149), + [sym_package_include] = STATE(149), + [sym_class_include] = STATE(149), + [sym_latex_include] = STATE(149), + [sym_biblatex_include] = STATE(149), + [sym_bibtex_include] = STATE(149), + [sym_graphics_include] = STATE(149), + [sym_svg_include] = STATE(149), + [sym_inkscape_include] = STATE(149), + [sym_verbatim_include] = STATE(149), + [sym_import_include] = STATE(149), + [sym_caption] = STATE(149), + [sym_citation] = STATE(149), + [sym_label_definition] = STATE(149), + [sym_label_reference] = STATE(149), + [sym_label_reference_range] = STATE(149), + [sym_label_number] = STATE(149), + [sym_new_command_definition] = STATE(149), + [sym_old_command_definition] = STATE(149), + [sym_let_command_definition] = STATE(149), + [sym_environment_definition] = STATE(149), + [sym_glossary_entry_definition] = STATE(149), + [sym_glossary_entry_reference] = STATE(149), + [sym_acronym_definition] = STATE(149), + [sym_acronym_reference] = STATE(149), + [sym_theorem_definition] = STATE(149), + [sym_color_definition] = STATE(149), + [sym_color_set_definition] = STATE(149), + [sym_color_reference] = STATE(149), + [sym_tikz_library_import] = STATE(149), + [sym_text_mode] = STATE(149), + [aux_sym__section_repeat4] = STATE(491), + [aux_sym__section_repeat5] = STATE(492), + [aux_sym__section_repeat6] = STATE(493), + [aux_sym__section_repeat7] = STATE(494), + [aux_sym__section_repeat8] = STATE(495), + [aux_sym_part_repeat1] = STATE(149), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_RPAREN] = ACTIONS(1901), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_RBRACK] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(1901), + [anon_sym_EQ] = ACTIONS(1901), + [anon_sym_BSLASHpart] = ACTIONS(1889), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddpart] = ACTIONS(1889), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1885), + [anon_sym_BSLASHchapter] = ACTIONS(1889), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddchap] = ACTIONS(1889), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1885), + [anon_sym_BSLASHsection] = ACTIONS(1889), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1885), + [anon_sym_BSLASHaddsec] = ACTIONS(1889), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1885), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1864), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, [152] = { [sym_block_comment] = STATE(153), @@ -72769,31 +71166,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__text_with_env_content] = STATE(153), [sym__text_content] = STATE(153), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(335), + [sym_subsubsection] = STATE(341), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(336), + [sym_paragraph] = STATE(340), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(337), + [sym_subparagraph] = STATE(339), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(340), + [sym_enum_item] = STATE(338), [sym_curly_group] = STATE(153), [sym_text] = STATE(153), - [sym_operator] = STATE(805), + [sym_operator] = STATE(782), [sym_displayed_equation] = STATE(153), [sym_inline_formula] = STATE(153), [sym_math_set] = STATE(153), - [sym_begin] = STATE(37), + [sym_begin] = STATE(36), [sym_generic_environment] = STATE(153), [sym_comment_environment] = STATE(153), - [sym__trivia_begin_comment] = STATE(2391), + [sym__trivia_begin_comment] = STATE(2417), [sym_verbatim_environment] = STATE(153), - [sym__trivia_begin_verbatim] = STATE(2393), + [sym__trivia_begin_verbatim] = STATE(2429), [sym_listing_environment] = STATE(153), - [sym__trivia_begin_listing] = STATE(2395), + [sym__trivia_begin_listing] = STATE(2430), [sym_minted_environment] = STATE(153), - [sym__trivia_begin_minted] = STATE(2396), + [sym__trivia_begin_minted] = STATE(2431), [sym_pycode_environment] = STATE(153), - [sym__trivia_begin_pycode] = STATE(2408), + [sym__trivia_begin_pycode] = STATE(2461), [sym__command] = STATE(153), [sym_generic_command] = STATE(153), [sym_package_include] = STATE(153), @@ -72825,37 +71222,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(153), [sym_color_reference] = STATE(153), [sym_tikz_library_import] = STATE(153), - [aux_sym__section_repeat5] = STATE(335), - [aux_sym__section_repeat6] = STATE(336), - [aux_sym__section_repeat7] = STATE(337), - [aux_sym__section_repeat8] = STATE(340), + [sym_text_mode] = STATE(153), + [aux_sym__section_repeat5] = STATE(341), + [aux_sym__section_repeat6] = STATE(340), + [aux_sym__section_repeat7] = STATE(339), + [aux_sym__section_repeat8] = STATE(338), [aux_sym_part_repeat1] = STATE(153), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1878), + [ts_builtin_sym_end] = ACTIONS(1903), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1880), - [anon_sym_RPAREN] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1880), - [anon_sym_RBRACK] = ACTIONS(1880), - [anon_sym_COMMA] = ACTIONS(1880), - [anon_sym_EQ] = ACTIONS(1880), - [anon_sym_BSLASHpart] = ACTIONS(1882), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddpart] = ACTIONS(1882), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1878), - [anon_sym_BSLASHchapter] = ACTIONS(1882), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddchap] = ACTIONS(1882), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsection] = ACTIONS(1882), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddsec] = ACTIONS(1882), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsubsection] = ACTIONS(1882), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_RPAREN] = ACTIONS(1905), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_RBRACK] = ACTIONS(1905), + [anon_sym_COMMA] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1905), + [anon_sym_BSLASHpart] = ACTIONS(1907), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddpart] = ACTIONS(1907), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1903), + [anon_sym_BSLASHchapter] = ACTIONS(1907), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddchap] = ACTIONS(1907), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsection] = ACTIONS(1907), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddsec] = ACTIONS(1907), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsubsection] = ACTIONS(1907), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1903), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), [anon_sym_BSLASHparagraph] = ACTIONS(33), @@ -72865,7 +71263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1903), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -73099,100 +71497,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [153] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), + [sym_block_comment] = STATE(193), + [sym__flat_content] = STATE(193), + [sym__text_with_env_content] = STATE(193), + [sym__text_content] = STATE(193), [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(299), + [sym_subsubsection] = STATE(301), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(300), + [sym_paragraph] = STATE(302), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(301), + [sym_subparagraph] = STATE(303), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(302), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [aux_sym__section_repeat5] = STATE(299), - [aux_sym__section_repeat6] = STATE(300), - [aux_sym__section_repeat7] = STATE(301), - [aux_sym__section_repeat8] = STATE(302), - [aux_sym_part_repeat1] = STATE(192), + [sym_enum_item] = STATE(304), + [sym_curly_group] = STATE(193), + [sym_text] = STATE(193), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(193), + [sym_inline_formula] = STATE(193), + [sym_math_set] = STATE(193), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(193), + [sym_comment_environment] = STATE(193), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(193), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(193), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(193), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(193), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(193), + [sym_generic_command] = STATE(193), + [sym_package_include] = STATE(193), + [sym_class_include] = STATE(193), + [sym_latex_include] = STATE(193), + [sym_biblatex_include] = STATE(193), + [sym_bibtex_include] = STATE(193), + [sym_graphics_include] = STATE(193), + [sym_svg_include] = STATE(193), + [sym_inkscape_include] = STATE(193), + [sym_verbatim_include] = STATE(193), + [sym_import_include] = STATE(193), + [sym_caption] = STATE(193), + [sym_citation] = STATE(193), + [sym_label_definition] = STATE(193), + [sym_label_reference] = STATE(193), + [sym_label_reference_range] = STATE(193), + [sym_label_number] = STATE(193), + [sym_new_command_definition] = STATE(193), + [sym_old_command_definition] = STATE(193), + [sym_let_command_definition] = STATE(193), + [sym_environment_definition] = STATE(193), + [sym_glossary_entry_definition] = STATE(193), + [sym_glossary_entry_reference] = STATE(193), + [sym_acronym_definition] = STATE(193), + [sym_acronym_reference] = STATE(193), + [sym_theorem_definition] = STATE(193), + [sym_color_definition] = STATE(193), + [sym_color_set_definition] = STATE(193), + [sym_color_reference] = STATE(193), + [sym_tikz_library_import] = STATE(193), + [sym_text_mode] = STATE(193), + [aux_sym__section_repeat5] = STATE(301), + [aux_sym__section_repeat6] = STATE(302), + [aux_sym__section_repeat7] = STATE(303), + [aux_sym__section_repeat8] = STATE(304), + [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1884), + [ts_builtin_sym_end] = ACTIONS(1909), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_RBRACK] = ACTIONS(1814), - [anon_sym_COMMA] = ACTIONS(1814), - [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_RBRACK] = ACTIONS(1839), + [anon_sym_COMMA] = ACTIONS(1839), + [anon_sym_EQ] = ACTIONS(1839), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), [anon_sym_BSLASHparagraph] = ACTIONS(33), @@ -73202,7 +71604,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1909), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -73436,710 +71838,1741 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [154] = { - [sym_block_comment] = STATE(157), - [sym__flat_content] = STATE(157), - [sym__text_with_env_content] = STATE(157), - [sym__text_content] = STATE(157), - [sym__subsubsection_declaration] = STATE(171), + [sym_block_comment] = STATE(155), + [sym__flat_content] = STATE(155), + [sym__text_with_env_content] = STATE(155), + [sym__text_content] = STATE(155), + [sym__subsubsection_declaration] = STATE(170), [sym_subsubsection] = STATE(524), - [sym__paragraph_declaration] = STATE(179), + [sym__paragraph_declaration] = STATE(180), [sym_paragraph] = STATE(522), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(519), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(510), - [sym_curly_group] = STATE(157), - [sym_text] = STATE(157), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(157), - [sym_inline_formula] = STATE(157), - [sym_math_set] = STATE(157), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(157), - [sym_comment_environment] = STATE(157), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(157), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(157), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(157), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(157), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(157), - [sym_generic_command] = STATE(157), - [sym_package_include] = STATE(157), - [sym_class_include] = STATE(157), - [sym_latex_include] = STATE(157), - [sym_biblatex_include] = STATE(157), - [sym_bibtex_include] = STATE(157), - [sym_graphics_include] = STATE(157), - [sym_svg_include] = STATE(157), - [sym_inkscape_include] = STATE(157), - [sym_verbatim_include] = STATE(157), - [sym_import_include] = STATE(157), - [sym_caption] = STATE(157), - [sym_citation] = STATE(157), - [sym_label_definition] = STATE(157), - [sym_label_reference] = STATE(157), - [sym_label_reference_range] = STATE(157), - [sym_label_number] = STATE(157), - [sym_new_command_definition] = STATE(157), - [sym_old_command_definition] = STATE(157), - [sym_let_command_definition] = STATE(157), - [sym_environment_definition] = STATE(157), - [sym_glossary_entry_definition] = STATE(157), - [sym_glossary_entry_reference] = STATE(157), - [sym_acronym_definition] = STATE(157), - [sym_acronym_reference] = STATE(157), - [sym_theorem_definition] = STATE(157), - [sym_color_definition] = STATE(157), - [sym_color_set_definition] = STATE(157), - [sym_color_reference] = STATE(157), - [sym_tikz_library_import] = STATE(157), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(513), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(511), + [sym_curly_group] = STATE(155), + [sym_text] = STATE(155), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(155), + [sym_inline_formula] = STATE(155), + [sym_math_set] = STATE(155), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(155), + [sym_comment_environment] = STATE(155), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(155), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(155), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(155), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(155), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(155), + [sym_generic_command] = STATE(155), + [sym_package_include] = STATE(155), + [sym_class_include] = STATE(155), + [sym_latex_include] = STATE(155), + [sym_biblatex_include] = STATE(155), + [sym_bibtex_include] = STATE(155), + [sym_graphics_include] = STATE(155), + [sym_svg_include] = STATE(155), + [sym_inkscape_include] = STATE(155), + [sym_verbatim_include] = STATE(155), + [sym_import_include] = STATE(155), + [sym_caption] = STATE(155), + [sym_citation] = STATE(155), + [sym_label_definition] = STATE(155), + [sym_label_reference] = STATE(155), + [sym_label_reference_range] = STATE(155), + [sym_label_number] = STATE(155), + [sym_new_command_definition] = STATE(155), + [sym_old_command_definition] = STATE(155), + [sym_let_command_definition] = STATE(155), + [sym_environment_definition] = STATE(155), + [sym_glossary_entry_definition] = STATE(155), + [sym_glossary_entry_reference] = STATE(155), + [sym_acronym_definition] = STATE(155), + [sym_acronym_reference] = STATE(155), + [sym_theorem_definition] = STATE(155), + [sym_color_definition] = STATE(155), + [sym_color_set_definition] = STATE(155), + [sym_color_reference] = STATE(155), + [sym_tikz_library_import] = STATE(155), + [sym_text_mode] = STATE(155), [aux_sym__section_repeat5] = STATE(524), [aux_sym__section_repeat6] = STATE(522), - [aux_sym__section_repeat7] = STATE(519), - [aux_sym__section_repeat8] = STATE(510), - [aux_sym_part_repeat1] = STATE(157), + [aux_sym__section_repeat7] = STATE(513), + [aux_sym__section_repeat8] = STATE(511), + [aux_sym_part_repeat1] = STATE(155), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1888), - [anon_sym_RBRACK] = ACTIONS(1888), - [anon_sym_COMMA] = ACTIONS(1888), - [anon_sym_EQ] = ACTIONS(1888), - [anon_sym_BSLASHpart] = ACTIONS(1882), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddpart] = ACTIONS(1882), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1878), - [anon_sym_BSLASHchapter] = ACTIONS(1882), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddchap] = ACTIONS(1882), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsection] = ACTIONS(1882), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddsec] = ACTIONS(1882), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsubsection] = ACTIONS(1882), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1878), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_RBRACK] = ACTIONS(1913), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_EQ] = ACTIONS(1913), + [anon_sym_BSLASHpart] = ACTIONS(1907), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddpart] = ACTIONS(1907), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1903), + [anon_sym_BSLASHchapter] = ACTIONS(1907), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddchap] = ACTIONS(1907), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsection] = ACTIONS(1907), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddsec] = ACTIONS(1907), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsubsection] = ACTIONS(1907), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1903), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, [155] = { - [sym_block_comment] = STATE(156), - [sym__flat_content] = STATE(156), - [sym__text_with_env_content] = STATE(156), - [sym__text_content] = STATE(156), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(447), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(448), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(449), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(451), - [sym_curly_group] = STATE(156), - [sym_text] = STATE(156), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(156), - [sym_inline_formula] = STATE(156), - [sym_math_set] = STATE(156), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(156), - [sym_comment_environment] = STATE(156), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(156), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(156), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(156), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(156), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(156), - [sym_generic_command] = STATE(156), - [sym_package_include] = STATE(156), - [sym_class_include] = STATE(156), - [sym_latex_include] = STATE(156), - [sym_biblatex_include] = STATE(156), - [sym_bibtex_include] = STATE(156), - [sym_graphics_include] = STATE(156), - [sym_svg_include] = STATE(156), - [sym_inkscape_include] = STATE(156), - [sym_verbatim_include] = STATE(156), - [sym_import_include] = STATE(156), - [sym_caption] = STATE(156), - [sym_citation] = STATE(156), - [sym_label_definition] = STATE(156), - [sym_label_reference] = STATE(156), - [sym_label_reference_range] = STATE(156), - [sym_label_number] = STATE(156), - [sym_new_command_definition] = STATE(156), - [sym_old_command_definition] = STATE(156), - [sym_let_command_definition] = STATE(156), - [sym_environment_definition] = STATE(156), - [sym_glossary_entry_definition] = STATE(156), - [sym_glossary_entry_reference] = STATE(156), - [sym_acronym_definition] = STATE(156), - [sym_acronym_reference] = STATE(156), - [sym_theorem_definition] = STATE(156), - [sym_color_definition] = STATE(156), - [sym_color_set_definition] = STATE(156), - [sym_color_reference] = STATE(156), - [sym_tikz_library_import] = STATE(156), - [aux_sym__section_repeat5] = STATE(447), - [aux_sym__section_repeat6] = STATE(448), - [aux_sym__section_repeat7] = STATE(449), - [aux_sym__section_repeat8] = STATE(451), - [aux_sym_part_repeat1] = STATE(156), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_RBRACK] = ACTIONS(1890), - [anon_sym_COMMA] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1890), - [anon_sym_BSLASHpart] = ACTIONS(1882), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddpart] = ACTIONS(1882), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1878), - [anon_sym_BSLASHchapter] = ACTIONS(1882), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddchap] = ACTIONS(1882), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsection] = ACTIONS(1882), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddsec] = ACTIONS(1882), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsubsection] = ACTIONS(1882), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1878), + [sym_block_comment] = STATE(206), + [sym__flat_content] = STATE(206), + [sym__text_with_env_content] = STATE(206), + [sym__text_content] = STATE(206), + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(367), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(366), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(364), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(362), + [sym_curly_group] = STATE(206), + [sym_text] = STATE(206), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(206), + [sym_inline_formula] = STATE(206), + [sym_math_set] = STATE(206), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(206), + [sym_comment_environment] = STATE(206), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(206), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(206), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(206), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(206), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(206), + [sym_generic_command] = STATE(206), + [sym_package_include] = STATE(206), + [sym_class_include] = STATE(206), + [sym_latex_include] = STATE(206), + [sym_biblatex_include] = STATE(206), + [sym_bibtex_include] = STATE(206), + [sym_graphics_include] = STATE(206), + [sym_svg_include] = STATE(206), + [sym_inkscape_include] = STATE(206), + [sym_verbatim_include] = STATE(206), + [sym_import_include] = STATE(206), + [sym_caption] = STATE(206), + [sym_citation] = STATE(206), + [sym_label_definition] = STATE(206), + [sym_label_reference] = STATE(206), + [sym_label_reference_range] = STATE(206), + [sym_label_number] = STATE(206), + [sym_new_command_definition] = STATE(206), + [sym_old_command_definition] = STATE(206), + [sym_let_command_definition] = STATE(206), + [sym_environment_definition] = STATE(206), + [sym_glossary_entry_definition] = STATE(206), + [sym_glossary_entry_reference] = STATE(206), + [sym_acronym_definition] = STATE(206), + [sym_acronym_reference] = STATE(206), + [sym_theorem_definition] = STATE(206), + [sym_color_definition] = STATE(206), + [sym_color_set_definition] = STATE(206), + [sym_color_reference] = STATE(206), + [sym_tikz_library_import] = STATE(206), + [sym_text_mode] = STATE(206), + [aux_sym__section_repeat5] = STATE(367), + [aux_sym__section_repeat6] = STATE(366), + [aux_sym__section_repeat7] = STATE(364), + [aux_sym__section_repeat8] = STATE(362), + [aux_sym_part_repeat1] = STATE(206), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_RBRACK] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, [156] = { + [sym_block_comment] = STATE(159), + [sym__flat_content] = STATE(159), + [sym__text_with_env_content] = STATE(159), + [sym__text_content] = STATE(159), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(454), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(453), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(452), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(450), + [sym_curly_group] = STATE(159), + [sym_text] = STATE(159), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(159), + [sym_inline_formula] = STATE(159), + [sym_math_set] = STATE(159), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(159), + [sym_comment_environment] = STATE(159), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(159), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(159), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(159), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(159), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(159), + [sym_generic_command] = STATE(159), + [sym_package_include] = STATE(159), + [sym_class_include] = STATE(159), + [sym_latex_include] = STATE(159), + [sym_biblatex_include] = STATE(159), + [sym_bibtex_include] = STATE(159), + [sym_graphics_include] = STATE(159), + [sym_svg_include] = STATE(159), + [sym_inkscape_include] = STATE(159), + [sym_verbatim_include] = STATE(159), + [sym_import_include] = STATE(159), + [sym_caption] = STATE(159), + [sym_citation] = STATE(159), + [sym_label_definition] = STATE(159), + [sym_label_reference] = STATE(159), + [sym_label_reference_range] = STATE(159), + [sym_label_number] = STATE(159), + [sym_new_command_definition] = STATE(159), + [sym_old_command_definition] = STATE(159), + [sym_let_command_definition] = STATE(159), + [sym_environment_definition] = STATE(159), + [sym_glossary_entry_definition] = STATE(159), + [sym_glossary_entry_reference] = STATE(159), + [sym_acronym_definition] = STATE(159), + [sym_acronym_reference] = STATE(159), + [sym_theorem_definition] = STATE(159), + [sym_color_definition] = STATE(159), + [sym_color_set_definition] = STATE(159), + [sym_color_reference] = STATE(159), + [sym_tikz_library_import] = STATE(159), + [sym_text_mode] = STATE(159), + [aux_sym__section_repeat5] = STATE(454), + [aux_sym__section_repeat6] = STATE(453), + [aux_sym__section_repeat7] = STATE(452), + [aux_sym__section_repeat8] = STATE(450), + [aux_sym_part_repeat1] = STATE(159), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1915), + [anon_sym_RPAREN] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1915), + [anon_sym_RBRACK] = ACTIONS(1915), + [anon_sym_COMMA] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_BSLASHpart] = ACTIONS(1907), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddpart] = ACTIONS(1907), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1903), + [anon_sym_BSLASHchapter] = ACTIONS(1907), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddchap] = ACTIONS(1907), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsection] = ACTIONS(1907), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddsec] = ACTIONS(1907), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsubsection] = ACTIONS(1907), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(1907), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), + }, + [157] = { + [sym_block_comment] = STATE(198), + [sym__flat_content] = STATE(198), + [sym__text_with_env_content] = STATE(198), + [sym__text_content] = STATE(198), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(572), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(573), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(574), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(575), + [sym_curly_group] = STATE(198), + [sym_text] = STATE(198), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(198), + [sym_inline_formula] = STATE(198), + [sym_math_set] = STATE(198), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(198), + [sym_comment_environment] = STATE(198), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(198), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(198), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(198), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(198), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(198), + [sym_generic_command] = STATE(198), + [sym_package_include] = STATE(198), + [sym_class_include] = STATE(198), + [sym_latex_include] = STATE(198), + [sym_biblatex_include] = STATE(198), + [sym_bibtex_include] = STATE(198), + [sym_graphics_include] = STATE(198), + [sym_svg_include] = STATE(198), + [sym_inkscape_include] = STATE(198), + [sym_verbatim_include] = STATE(198), + [sym_import_include] = STATE(198), + [sym_caption] = STATE(198), + [sym_citation] = STATE(198), + [sym_label_definition] = STATE(198), + [sym_label_reference] = STATE(198), + [sym_label_reference_range] = STATE(198), + [sym_label_number] = STATE(198), + [sym_new_command_definition] = STATE(198), + [sym_old_command_definition] = STATE(198), + [sym_let_command_definition] = STATE(198), + [sym_environment_definition] = STATE(198), + [sym_glossary_entry_definition] = STATE(198), + [sym_glossary_entry_reference] = STATE(198), + [sym_acronym_definition] = STATE(198), + [sym_acronym_reference] = STATE(198), + [sym_theorem_definition] = STATE(198), + [sym_color_definition] = STATE(198), + [sym_color_set_definition] = STATE(198), + [sym_color_reference] = STATE(198), + [sym_tikz_library_import] = STATE(198), + [sym_text_mode] = STATE(198), + [aux_sym__section_repeat5] = STATE(572), + [aux_sym__section_repeat6] = STATE(573), + [aux_sym__section_repeat7] = STATE(574), + [aux_sym__section_repeat8] = STATE(575), + [aux_sym_part_repeat1] = STATE(198), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_RBRACK] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [158] = { + [sym_block_comment] = STATE(161), + [sym__flat_content] = STATE(161), + [sym__text_with_env_content] = STATE(161), + [sym__text_content] = STATE(161), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(590), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(591), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(592), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(593), + [sym_curly_group] = STATE(161), + [sym_text] = STATE(161), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(161), + [sym_inline_formula] = STATE(161), + [sym_math_set] = STATE(161), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(161), + [sym_comment_environment] = STATE(161), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(161), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(161), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(161), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(161), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(161), + [sym_generic_command] = STATE(161), + [sym_package_include] = STATE(161), + [sym_class_include] = STATE(161), + [sym_latex_include] = STATE(161), + [sym_biblatex_include] = STATE(161), + [sym_bibtex_include] = STATE(161), + [sym_graphics_include] = STATE(161), + [sym_svg_include] = STATE(161), + [sym_inkscape_include] = STATE(161), + [sym_verbatim_include] = STATE(161), + [sym_import_include] = STATE(161), + [sym_caption] = STATE(161), + [sym_citation] = STATE(161), + [sym_label_definition] = STATE(161), + [sym_label_reference] = STATE(161), + [sym_label_reference_range] = STATE(161), + [sym_label_number] = STATE(161), + [sym_new_command_definition] = STATE(161), + [sym_old_command_definition] = STATE(161), + [sym_let_command_definition] = STATE(161), + [sym_environment_definition] = STATE(161), + [sym_glossary_entry_definition] = STATE(161), + [sym_glossary_entry_reference] = STATE(161), + [sym_acronym_definition] = STATE(161), + [sym_acronym_reference] = STATE(161), + [sym_theorem_definition] = STATE(161), + [sym_color_definition] = STATE(161), + [sym_color_set_definition] = STATE(161), + [sym_color_reference] = STATE(161), + [sym_tikz_library_import] = STATE(161), + [sym_text_mode] = STATE(161), + [aux_sym__section_repeat5] = STATE(590), + [aux_sym__section_repeat6] = STATE(591), + [aux_sym__section_repeat7] = STATE(592), + [aux_sym__section_repeat8] = STATE(593), + [aux_sym_part_repeat1] = STATE(161), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_RPAREN] = ACTIONS(1917), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_RBRACK] = ACTIONS(1917), + [anon_sym_COMMA] = ACTIONS(1917), + [anon_sym_EQ] = ACTIONS(1917), + [anon_sym_BSLASHpart] = ACTIONS(1907), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddpart] = ACTIONS(1907), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1903), + [anon_sym_BSLASHchapter] = ACTIONS(1907), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddchap] = ACTIONS(1907), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsection] = ACTIONS(1907), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddsec] = ACTIONS(1907), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsubsection] = ACTIONS(1907), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1903), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), + }, + [159] = { [sym_block_comment] = STATE(205), [sym__flat_content] = STATE(205), [sym__text_with_env_content] = STATE(205), [sym__text_content] = STATE(205), - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(617), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(615), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(614), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(548), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(418), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(419), [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(613), + [sym_enum_item] = STATE(421), [sym_curly_group] = STATE(205), [sym_text] = STATE(205), - [sym_operator] = STATE(858), + [sym_operator] = STATE(1082), [sym_displayed_equation] = STATE(205), [sym_inline_formula] = STATE(205), [sym_math_set] = STATE(205), - [sym_begin] = STATE(26), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(205), [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2324), + [sym__trivia_begin_comment] = STATE(2328), [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2323), + [sym__trivia_begin_verbatim] = STATE(2329), [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2322), + [sym__trivia_begin_listing] = STATE(2330), [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2321), + [sym__trivia_begin_minted] = STATE(2331), [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2319), + [sym__trivia_begin_pycode] = STATE(2332), [sym__command] = STATE(205), [sym_generic_command] = STATE(205), [sym_package_include] = STATE(205), @@ -74171,311 +73604,655 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(205), [sym_color_reference] = STATE(205), [sym_tikz_library_import] = STATE(205), - [aux_sym__section_repeat5] = STATE(617), - [aux_sym__section_repeat6] = STATE(615), - [aux_sym__section_repeat7] = STATE(614), - [aux_sym__section_repeat8] = STATE(613), + [sym_text_mode] = STATE(205), + [aux_sym__section_repeat5] = STATE(548), + [aux_sym__section_repeat6] = STATE(418), + [aux_sym__section_repeat7] = STATE(419), + [aux_sym__section_repeat8] = STATE(421), [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_COMMA] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1832), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1884), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_RBRACK] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1857), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHend] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, - [157] = { + [160] = { + [sym_block_comment] = STATE(157), + [sym__flat_content] = STATE(157), + [sym__text_with_env_content] = STATE(157), + [sym__text_content] = STATE(157), + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(497), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(498), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(499), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(500), + [sym_curly_group] = STATE(157), + [sym_text] = STATE(157), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(157), + [sym_inline_formula] = STATE(157), + [sym_math_set] = STATE(157), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(157), + [sym_comment_environment] = STATE(157), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(157), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(157), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(157), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(157), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(157), + [sym_generic_command] = STATE(157), + [sym_package_include] = STATE(157), + [sym_class_include] = STATE(157), + [sym_latex_include] = STATE(157), + [sym_biblatex_include] = STATE(157), + [sym_bibtex_include] = STATE(157), + [sym_graphics_include] = STATE(157), + [sym_svg_include] = STATE(157), + [sym_inkscape_include] = STATE(157), + [sym_verbatim_include] = STATE(157), + [sym_import_include] = STATE(157), + [sym_caption] = STATE(157), + [sym_citation] = STATE(157), + [sym_label_definition] = STATE(157), + [sym_label_reference] = STATE(157), + [sym_label_reference_range] = STATE(157), + [sym_label_number] = STATE(157), + [sym_new_command_definition] = STATE(157), + [sym_old_command_definition] = STATE(157), + [sym_let_command_definition] = STATE(157), + [sym_environment_definition] = STATE(157), + [sym_glossary_entry_definition] = STATE(157), + [sym_glossary_entry_reference] = STATE(157), + [sym_acronym_definition] = STATE(157), + [sym_acronym_reference] = STATE(157), + [sym_theorem_definition] = STATE(157), + [sym_color_definition] = STATE(157), + [sym_color_set_definition] = STATE(157), + [sym_color_reference] = STATE(157), + [sym_tikz_library_import] = STATE(157), + [sym_text_mode] = STATE(157), + [aux_sym__section_repeat5] = STATE(497), + [aux_sym__section_repeat6] = STATE(498), + [aux_sym__section_repeat7] = STATE(499), + [aux_sym__section_repeat8] = STATE(500), + [aux_sym_part_repeat1] = STATE(157), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1919), + [anon_sym_RPAREN] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1919), + [anon_sym_RBRACK] = ACTIONS(1919), + [anon_sym_COMMA] = ACTIONS(1919), + [anon_sym_EQ] = ACTIONS(1919), + [anon_sym_BSLASHpart] = ACTIONS(1907), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddpart] = ACTIONS(1907), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1903), + [anon_sym_BSLASHchapter] = ACTIONS(1907), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddchap] = ACTIONS(1907), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsection] = ACTIONS(1907), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1903), + [anon_sym_BSLASHaddsec] = ACTIONS(1907), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsubsection] = ACTIONS(1907), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1903), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [161] = { [sym_block_comment] = STATE(200), [sym__flat_content] = STATE(200), [sym__text_with_env_content] = STATE(200), [sym__text_content] = STATE(200), - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(392), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(389), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(385), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(380), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(605), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(604), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(603), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(602), [sym_curly_group] = STATE(200), [sym_text] = STATE(200), - [sym_operator] = STATE(1000), + [sym_operator] = STATE(862), [sym_displayed_equation] = STATE(200), [sym_inline_formula] = STATE(200), [sym_math_set] = STATE(200), - [sym_begin] = STATE(20), + [sym_begin] = STATE(29), [sym_generic_environment] = STATE(200), [sym_comment_environment] = STATE(200), - [sym__trivia_begin_comment] = STATE(2333), + [sym__trivia_begin_comment] = STATE(2344), [sym_verbatim_environment] = STATE(200), - [sym__trivia_begin_verbatim] = STATE(2332), + [sym__trivia_begin_verbatim] = STATE(2343), [sym_listing_environment] = STATE(200), - [sym__trivia_begin_listing] = STATE(2331), + [sym__trivia_begin_listing] = STATE(2342), [sym_minted_environment] = STATE(200), - [sym__trivia_begin_minted] = STATE(2330), + [sym__trivia_begin_minted] = STATE(2341), [sym_pycode_environment] = STATE(200), - [sym__trivia_begin_pycode] = STATE(2329), + [sym__trivia_begin_pycode] = STATE(2340), [sym__command] = STATE(200), [sym_generic_command] = STATE(200), [sym_package_include] = STATE(200), @@ -74507,1716 +74284,377 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(200), [sym_color_reference] = STATE(200), [sym_tikz_library_import] = STATE(200), - [aux_sym__section_repeat5] = STATE(392), - [aux_sym__section_repeat6] = STATE(389), - [aux_sym__section_repeat7] = STATE(385), - [aux_sym__section_repeat8] = STATE(380), + [sym_text_mode] = STATE(200), + [aux_sym__section_repeat5] = STATE(605), + [aux_sym__section_repeat6] = STATE(604), + [aux_sym__section_repeat7] = STATE(603), + [aux_sym__section_repeat8] = STATE(602), [aux_sym_part_repeat1] = STATE(200), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [158] = { - [sym_block_comment] = STATE(203), - [sym__flat_content] = STATE(203), - [sym__text_with_env_content] = STATE(203), - [sym__text_content] = STATE(203), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(569), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(570), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(571), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(572), - [sym_curly_group] = STATE(203), - [sym_text] = STATE(203), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(203), - [sym_inline_formula] = STATE(203), - [sym_math_set] = STATE(203), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(203), - [sym_comment_environment] = STATE(203), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(203), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(203), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(203), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(203), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(203), - [sym_generic_command] = STATE(203), - [sym_package_include] = STATE(203), - [sym_class_include] = STATE(203), - [sym_latex_include] = STATE(203), - [sym_biblatex_include] = STATE(203), - [sym_bibtex_include] = STATE(203), - [sym_graphics_include] = STATE(203), - [sym_svg_include] = STATE(203), - [sym_inkscape_include] = STATE(203), - [sym_verbatim_include] = STATE(203), - [sym_import_include] = STATE(203), - [sym_caption] = STATE(203), - [sym_citation] = STATE(203), - [sym_label_definition] = STATE(203), - [sym_label_reference] = STATE(203), - [sym_label_reference_range] = STATE(203), - [sym_label_number] = STATE(203), - [sym_new_command_definition] = STATE(203), - [sym_old_command_definition] = STATE(203), - [sym_let_command_definition] = STATE(203), - [sym_environment_definition] = STATE(203), - [sym_glossary_entry_definition] = STATE(203), - [sym_glossary_entry_reference] = STATE(203), - [sym_acronym_definition] = STATE(203), - [sym_acronym_reference] = STATE(203), - [sym_theorem_definition] = STATE(203), - [sym_color_definition] = STATE(203), - [sym_color_set_definition] = STATE(203), - [sym_color_reference] = STATE(203), - [sym_tikz_library_import] = STATE(203), - [aux_sym__section_repeat5] = STATE(569), - [aux_sym__section_repeat6] = STATE(570), - [aux_sym__section_repeat7] = STATE(571), - [aux_sym__section_repeat8] = STATE(572), - [aux_sym_part_repeat1] = STATE(203), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_RBRACK] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [159] = { - [sym_block_comment] = STATE(158), - [sym__flat_content] = STATE(158), - [sym__text_with_env_content] = STATE(158), - [sym__text_content] = STATE(158), - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(494), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(495), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(496), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(497), - [sym_curly_group] = STATE(158), - [sym_text] = STATE(158), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(158), - [sym_inline_formula] = STATE(158), - [sym_math_set] = STATE(158), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(158), - [sym_comment_environment] = STATE(158), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(158), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(158), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(158), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(158), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(158), - [sym_generic_command] = STATE(158), - [sym_package_include] = STATE(158), - [sym_class_include] = STATE(158), - [sym_latex_include] = STATE(158), - [sym_biblatex_include] = STATE(158), - [sym_bibtex_include] = STATE(158), - [sym_graphics_include] = STATE(158), - [sym_svg_include] = STATE(158), - [sym_inkscape_include] = STATE(158), - [sym_verbatim_include] = STATE(158), - [sym_import_include] = STATE(158), - [sym_caption] = STATE(158), - [sym_citation] = STATE(158), - [sym_label_definition] = STATE(158), - [sym_label_reference] = STATE(158), - [sym_label_reference_range] = STATE(158), - [sym_label_number] = STATE(158), - [sym_new_command_definition] = STATE(158), - [sym_old_command_definition] = STATE(158), - [sym_let_command_definition] = STATE(158), - [sym_environment_definition] = STATE(158), - [sym_glossary_entry_definition] = STATE(158), - [sym_glossary_entry_reference] = STATE(158), - [sym_acronym_definition] = STATE(158), - [sym_acronym_reference] = STATE(158), - [sym_theorem_definition] = STATE(158), - [sym_color_definition] = STATE(158), - [sym_color_set_definition] = STATE(158), - [sym_color_reference] = STATE(158), - [sym_tikz_library_import] = STATE(158), - [aux_sym__section_repeat5] = STATE(494), - [aux_sym__section_repeat6] = STATE(495), - [aux_sym__section_repeat7] = STATE(496), - [aux_sym__section_repeat8] = STATE(497), - [aux_sym_part_repeat1] = STATE(158), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1892), - [anon_sym_RPAREN] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(1892), - [anon_sym_COMMA] = ACTIONS(1892), - [anon_sym_EQ] = ACTIONS(1892), - [anon_sym_BSLASHpart] = ACTIONS(1882), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddpart] = ACTIONS(1882), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1878), - [anon_sym_BSLASHchapter] = ACTIONS(1882), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddchap] = ACTIONS(1882), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsection] = ACTIONS(1882), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddsec] = ACTIONS(1882), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsubsection] = ACTIONS(1882), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1878), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [160] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(362), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(360), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(358), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(354), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [aux_sym__section_repeat5] = STATE(362), - [aux_sym__section_repeat6] = STATE(360), - [aux_sym__section_repeat7] = STATE(358), - [aux_sym__section_repeat8] = STATE(354), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_COMMA] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), - }, - [161] = { - [sym_block_comment] = STATE(160), - [sym__flat_content] = STATE(160), - [sym__text_with_env_content] = STATE(160), - [sym__text_content] = STATE(160), - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(465), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(464), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(463), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(462), - [sym_curly_group] = STATE(160), - [sym_text] = STATE(160), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(160), - [sym_inline_formula] = STATE(160), - [sym_math_set] = STATE(160), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(160), - [sym_comment_environment] = STATE(160), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(160), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(160), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(160), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(160), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(160), - [sym_generic_command] = STATE(160), - [sym_package_include] = STATE(160), - [sym_class_include] = STATE(160), - [sym_latex_include] = STATE(160), - [sym_biblatex_include] = STATE(160), - [sym_bibtex_include] = STATE(160), - [sym_graphics_include] = STATE(160), - [sym_svg_include] = STATE(160), - [sym_inkscape_include] = STATE(160), - [sym_verbatim_include] = STATE(160), - [sym_import_include] = STATE(160), - [sym_caption] = STATE(160), - [sym_citation] = STATE(160), - [sym_label_definition] = STATE(160), - [sym_label_reference] = STATE(160), - [sym_label_reference_range] = STATE(160), - [sym_label_number] = STATE(160), - [sym_new_command_definition] = STATE(160), - [sym_old_command_definition] = STATE(160), - [sym_let_command_definition] = STATE(160), - [sym_environment_definition] = STATE(160), - [sym_glossary_entry_definition] = STATE(160), - [sym_glossary_entry_reference] = STATE(160), - [sym_acronym_definition] = STATE(160), - [sym_acronym_reference] = STATE(160), - [sym_theorem_definition] = STATE(160), - [sym_color_definition] = STATE(160), - [sym_color_set_definition] = STATE(160), - [sym_color_reference] = STATE(160), - [sym_tikz_library_import] = STATE(160), - [aux_sym__section_repeat5] = STATE(465), - [aux_sym__section_repeat6] = STATE(464), - [aux_sym__section_repeat7] = STATE(463), - [aux_sym__section_repeat8] = STATE(462), - [aux_sym_part_repeat1] = STATE(160), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_RPAREN] = ACTIONS(1894), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_RBRACK] = ACTIONS(1894), - [anon_sym_COMMA] = ACTIONS(1894), - [anon_sym_EQ] = ACTIONS(1894), - [anon_sym_BSLASHpart] = ACTIONS(1882), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddpart] = ACTIONS(1882), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1878), - [anon_sym_BSLASHchapter] = ACTIONS(1882), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddchap] = ACTIONS(1882), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsection] = ACTIONS(1882), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1878), - [anon_sym_BSLASHaddsec] = ACTIONS(1882), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsubsection] = ACTIONS(1882), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1878), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1909), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1882), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, [162] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), + [sym_block_comment] = STATE(193), + [sym__flat_content] = STATE(193), + [sym__text_with_env_content] = STATE(193), + [sym__text_content] = STATE(193), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(303), + [sym_paragraph] = STATE(305), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(304), + [sym_subparagraph] = STATE(306), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(305), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [aux_sym__section_repeat6] = STATE(303), - [aux_sym__section_repeat7] = STATE(304), - [aux_sym__section_repeat8] = STATE(305), - [aux_sym_part_repeat1] = STATE(192), + [sym_enum_item] = STATE(307), + [sym_curly_group] = STATE(193), + [sym_text] = STATE(193), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(193), + [sym_inline_formula] = STATE(193), + [sym_math_set] = STATE(193), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(193), + [sym_comment_environment] = STATE(193), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(193), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(193), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(193), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(193), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(193), + [sym_generic_command] = STATE(193), + [sym_package_include] = STATE(193), + [sym_class_include] = STATE(193), + [sym_latex_include] = STATE(193), + [sym_biblatex_include] = STATE(193), + [sym_bibtex_include] = STATE(193), + [sym_graphics_include] = STATE(193), + [sym_svg_include] = STATE(193), + [sym_inkscape_include] = STATE(193), + [sym_verbatim_include] = STATE(193), + [sym_import_include] = STATE(193), + [sym_caption] = STATE(193), + [sym_citation] = STATE(193), + [sym_label_definition] = STATE(193), + [sym_label_reference] = STATE(193), + [sym_label_reference_range] = STATE(193), + [sym_label_number] = STATE(193), + [sym_new_command_definition] = STATE(193), + [sym_old_command_definition] = STATE(193), + [sym_let_command_definition] = STATE(193), + [sym_environment_definition] = STATE(193), + [sym_glossary_entry_definition] = STATE(193), + [sym_glossary_entry_reference] = STATE(193), + [sym_acronym_definition] = STATE(193), + [sym_acronym_reference] = STATE(193), + [sym_theorem_definition] = STATE(193), + [sym_color_definition] = STATE(193), + [sym_color_set_definition] = STATE(193), + [sym_color_reference] = STATE(193), + [sym_tikz_library_import] = STATE(193), + [sym_text_mode] = STATE(193), + [aux_sym__section_repeat6] = STATE(305), + [aux_sym__section_repeat7] = STATE(306), + [aux_sym__section_repeat8] = STATE(307), + [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1896), + [ts_builtin_sym_end] = ACTIONS(1921), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_RBRACK] = ACTIONS(1814), - [anon_sym_COMMA] = ACTIONS(1814), - [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_RBRACK] = ACTIONS(1839), + [anon_sym_COMMA] = ACTIONS(1839), + [anon_sym_EQ] = ACTIONS(1839), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), @@ -76224,7 +74662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1921), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -76458,6 +74896,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [163] = { [sym_block_comment] = STATE(162), @@ -76465,29 +74906,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__text_with_env_content] = STATE(162), [sym__text_content] = STATE(162), [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(341), + [sym_paragraph] = STATE(337), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(342), + [sym_subparagraph] = STATE(336), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(296), + [sym_enum_item] = STATE(335), [sym_curly_group] = STATE(162), [sym_text] = STATE(162), - [sym_operator] = STATE(805), + [sym_operator] = STATE(782), [sym_displayed_equation] = STATE(162), [sym_inline_formula] = STATE(162), [sym_math_set] = STATE(162), - [sym_begin] = STATE(37), + [sym_begin] = STATE(36), [sym_generic_environment] = STATE(162), [sym_comment_environment] = STATE(162), - [sym__trivia_begin_comment] = STATE(2391), + [sym__trivia_begin_comment] = STATE(2417), [sym_verbatim_environment] = STATE(162), - [sym__trivia_begin_verbatim] = STATE(2393), + [sym__trivia_begin_verbatim] = STATE(2429), [sym_listing_environment] = STATE(162), - [sym__trivia_begin_listing] = STATE(2395), + [sym__trivia_begin_listing] = STATE(2430), [sym_minted_environment] = STATE(162), - [sym__trivia_begin_minted] = STATE(2396), + [sym__trivia_begin_minted] = STATE(2431), [sym_pycode_environment] = STATE(162), - [sym__trivia_begin_pycode] = STATE(2408), + [sym__trivia_begin_pycode] = STATE(2461), [sym__command] = STATE(162), [sym_generic_command] = STATE(162), [sym_package_include] = STATE(162), @@ -76519,38 +74960,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(162), [sym_color_reference] = STATE(162), [sym_tikz_library_import] = STATE(162), - [aux_sym__section_repeat6] = STATE(341), - [aux_sym__section_repeat7] = STATE(342), - [aux_sym__section_repeat8] = STATE(296), + [sym_text_mode] = STATE(162), + [aux_sym__section_repeat6] = STATE(337), + [aux_sym__section_repeat7] = STATE(336), + [aux_sym__section_repeat8] = STATE(335), [aux_sym_part_repeat1] = STATE(162), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1900), + [ts_builtin_sym_end] = ACTIONS(1925), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_RPAREN] = ACTIONS(1902), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_RBRACK] = ACTIONS(1902), - [anon_sym_COMMA] = ACTIONS(1902), - [anon_sym_EQ] = ACTIONS(1902), - [anon_sym_BSLASHpart] = ACTIONS(1904), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddpart] = ACTIONS(1904), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1900), - [anon_sym_BSLASHchapter] = ACTIONS(1904), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddchap] = ACTIONS(1904), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsection] = ACTIONS(1904), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddsec] = ACTIONS(1904), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsubsection] = ACTIONS(1904), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1904), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1927), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1927), + [anon_sym_RBRACK] = ACTIONS(1927), + [anon_sym_COMMA] = ACTIONS(1927), + [anon_sym_EQ] = ACTIONS(1927), + [anon_sym_BSLASHpart] = ACTIONS(1929), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddpart] = ACTIONS(1929), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1925), + [anon_sym_BSLASHchapter] = ACTIONS(1929), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddchap] = ACTIONS(1929), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsection] = ACTIONS(1929), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddsec] = ACTIONS(1929), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsubsection] = ACTIONS(1929), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1929), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1925), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), @@ -76558,7 +75000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1925), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -76792,369 +75234,713 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [164] = { - [sym_block_comment] = STATE(169), - [sym__flat_content] = STATE(169), - [sym__text_with_env_content] = STATE(169), - [sym__text_content] = STATE(169), + [sym_block_comment] = STATE(206), + [sym__flat_content] = STATE(206), + [sym__text_with_env_content] = STATE(206), + [sym__text_content] = STATE(206), [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(499), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(500), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(501), - [sym_curly_group] = STATE(169), - [sym_text] = STATE(169), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(169), - [sym_inline_formula] = STATE(169), - [sym_math_set] = STATE(169), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(169), - [sym_comment_environment] = STATE(169), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(169), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(169), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(169), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(169), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(169), - [sym_generic_command] = STATE(169), - [sym_package_include] = STATE(169), - [sym_class_include] = STATE(169), - [sym_latex_include] = STATE(169), - [sym_biblatex_include] = STATE(169), - [sym_bibtex_include] = STATE(169), - [sym_graphics_include] = STATE(169), - [sym_svg_include] = STATE(169), - [sym_inkscape_include] = STATE(169), - [sym_verbatim_include] = STATE(169), - [sym_import_include] = STATE(169), - [sym_caption] = STATE(169), - [sym_citation] = STATE(169), - [sym_label_definition] = STATE(169), - [sym_label_reference] = STATE(169), - [sym_label_reference_range] = STATE(169), - [sym_label_number] = STATE(169), - [sym_new_command_definition] = STATE(169), - [sym_old_command_definition] = STATE(169), - [sym_let_command_definition] = STATE(169), - [sym_environment_definition] = STATE(169), - [sym_glossary_entry_definition] = STATE(169), - [sym_glossary_entry_reference] = STATE(169), - [sym_acronym_definition] = STATE(169), - [sym_acronym_reference] = STATE(169), - [sym_theorem_definition] = STATE(169), - [sym_color_definition] = STATE(169), - [sym_color_set_definition] = STATE(169), - [sym_color_reference] = STATE(169), - [sym_tikz_library_import] = STATE(169), - [aux_sym__section_repeat6] = STATE(499), - [aux_sym__section_repeat7] = STATE(500), - [aux_sym__section_repeat8] = STATE(501), - [aux_sym_part_repeat1] = STATE(169), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_RPAREN] = ACTIONS(1906), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_RBRACK] = ACTIONS(1906), - [anon_sym_COMMA] = ACTIONS(1906), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_BSLASHpart] = ACTIONS(1904), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddpart] = ACTIONS(1904), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1900), - [anon_sym_BSLASHchapter] = ACTIONS(1904), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddchap] = ACTIONS(1904), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsection] = ACTIONS(1904), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddsec] = ACTIONS(1904), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsubsection] = ACTIONS(1904), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1904), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1900), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_paragraph] = STATE(361), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(360), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(358), + [sym_curly_group] = STATE(206), + [sym_text] = STATE(206), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(206), + [sym_inline_formula] = STATE(206), + [sym_math_set] = STATE(206), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(206), + [sym_comment_environment] = STATE(206), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(206), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(206), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(206), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(206), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(206), + [sym_generic_command] = STATE(206), + [sym_package_include] = STATE(206), + [sym_class_include] = STATE(206), + [sym_latex_include] = STATE(206), + [sym_biblatex_include] = STATE(206), + [sym_bibtex_include] = STATE(206), + [sym_graphics_include] = STATE(206), + [sym_svg_include] = STATE(206), + [sym_inkscape_include] = STATE(206), + [sym_verbatim_include] = STATE(206), + [sym_import_include] = STATE(206), + [sym_caption] = STATE(206), + [sym_citation] = STATE(206), + [sym_label_definition] = STATE(206), + [sym_label_reference] = STATE(206), + [sym_label_reference_range] = STATE(206), + [sym_label_number] = STATE(206), + [sym_new_command_definition] = STATE(206), + [sym_old_command_definition] = STATE(206), + [sym_let_command_definition] = STATE(206), + [sym_environment_definition] = STATE(206), + [sym_glossary_entry_definition] = STATE(206), + [sym_glossary_entry_reference] = STATE(206), + [sym_acronym_definition] = STATE(206), + [sym_acronym_reference] = STATE(206), + [sym_theorem_definition] = STATE(206), + [sym_color_definition] = STATE(206), + [sym_color_set_definition] = STATE(206), + [sym_color_reference] = STATE(206), + [sym_tikz_library_import] = STATE(206), + [sym_text_mode] = STATE(206), + [aux_sym__section_repeat6] = STATE(361), + [aux_sym__section_repeat7] = STATE(360), + [aux_sym__section_repeat8] = STATE(358), + [aux_sym_part_repeat1] = STATE(206), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_RBRACK] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, [165] = { + [sym_block_comment] = STATE(168), + [sym__flat_content] = STATE(168), + [sym__text_with_env_content] = STATE(168), + [sym__text_content] = STATE(168), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(502), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(503), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(504), + [sym_curly_group] = STATE(168), + [sym_text] = STATE(168), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(168), + [sym_inline_formula] = STATE(168), + [sym_math_set] = STATE(168), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(168), + [sym_comment_environment] = STATE(168), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(168), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(168), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(168), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(168), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(168), + [sym_generic_command] = STATE(168), + [sym_package_include] = STATE(168), + [sym_class_include] = STATE(168), + [sym_latex_include] = STATE(168), + [sym_biblatex_include] = STATE(168), + [sym_bibtex_include] = STATE(168), + [sym_graphics_include] = STATE(168), + [sym_svg_include] = STATE(168), + [sym_inkscape_include] = STATE(168), + [sym_verbatim_include] = STATE(168), + [sym_import_include] = STATE(168), + [sym_caption] = STATE(168), + [sym_citation] = STATE(168), + [sym_label_definition] = STATE(168), + [sym_label_reference] = STATE(168), + [sym_label_reference_range] = STATE(168), + [sym_label_number] = STATE(168), + [sym_new_command_definition] = STATE(168), + [sym_old_command_definition] = STATE(168), + [sym_let_command_definition] = STATE(168), + [sym_environment_definition] = STATE(168), + [sym_glossary_entry_definition] = STATE(168), + [sym_glossary_entry_reference] = STATE(168), + [sym_acronym_definition] = STATE(168), + [sym_acronym_reference] = STATE(168), + [sym_theorem_definition] = STATE(168), + [sym_color_definition] = STATE(168), + [sym_color_set_definition] = STATE(168), + [sym_color_reference] = STATE(168), + [sym_tikz_library_import] = STATE(168), + [sym_text_mode] = STATE(168), + [aux_sym__section_repeat6] = STATE(502), + [aux_sym__section_repeat7] = STATE(503), + [aux_sym__section_repeat8] = STATE(504), + [aux_sym_part_repeat1] = STATE(168), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1931), + [anon_sym_RPAREN] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1931), + [anon_sym_RBRACK] = ACTIONS(1931), + [anon_sym_COMMA] = ACTIONS(1931), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_BSLASHpart] = ACTIONS(1929), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddpart] = ACTIONS(1929), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1925), + [anon_sym_BSLASHchapter] = ACTIONS(1929), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddchap] = ACTIONS(1929), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsection] = ACTIONS(1929), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddsec] = ACTIONS(1929), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsubsection] = ACTIONS(1929), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1929), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1925), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [166] = { [sym_block_comment] = STATE(205), [sym__flat_content] = STATE(205), [sym__text_with_env_content] = STATE(205), [sym__text_content] = STATE(205), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(612), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(611), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(422), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(424), [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(610), + [sym_enum_item] = STATE(426), [sym_curly_group] = STATE(205), [sym_text] = STATE(205), - [sym_operator] = STATE(858), + [sym_operator] = STATE(1082), [sym_displayed_equation] = STATE(205), [sym_inline_formula] = STATE(205), [sym_math_set] = STATE(205), - [sym_begin] = STATE(26), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(205), [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2324), + [sym__trivia_begin_comment] = STATE(2328), [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2323), + [sym__trivia_begin_verbatim] = STATE(2329), [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2322), + [sym__trivia_begin_listing] = STATE(2330), [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2321), + [sym__trivia_begin_minted] = STATE(2331), [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2319), + [sym__trivia_begin_pycode] = STATE(2332), [sym__command] = STATE(205), [sym_generic_command] = STATE(205), [sym_package_include] = STATE(205), @@ -77186,1640 +75972,1660 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(205), [sym_color_reference] = STATE(205), [sym_tikz_library_import] = STATE(205), - [aux_sym__section_repeat6] = STATE(612), - [aux_sym__section_repeat7] = STATE(611), - [aux_sym__section_repeat8] = STATE(610), + [sym_text_mode] = STATE(205), + [aux_sym__section_repeat6] = STATE(422), + [aux_sym__section_repeat7] = STATE(424), + [aux_sym__section_repeat8] = STATE(426), [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_COMMA] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1832), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [166] = { - [sym_block_comment] = STATE(165), - [sym__flat_content] = STATE(165), - [sym__text_with_env_content] = STATE(165), - [sym__text_content] = STATE(165), - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(592), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(593), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(594), - [sym_curly_group] = STATE(165), - [sym_text] = STATE(165), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(165), - [sym_inline_formula] = STATE(165), - [sym_math_set] = STATE(165), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(165), - [sym_comment_environment] = STATE(165), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(165), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(165), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(165), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(165), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(165), - [sym_generic_command] = STATE(165), - [sym_package_include] = STATE(165), - [sym_class_include] = STATE(165), - [sym_latex_include] = STATE(165), - [sym_biblatex_include] = STATE(165), - [sym_bibtex_include] = STATE(165), - [sym_graphics_include] = STATE(165), - [sym_svg_include] = STATE(165), - [sym_inkscape_include] = STATE(165), - [sym_verbatim_include] = STATE(165), - [sym_import_include] = STATE(165), - [sym_caption] = STATE(165), - [sym_citation] = STATE(165), - [sym_label_definition] = STATE(165), - [sym_label_reference] = STATE(165), - [sym_label_reference_range] = STATE(165), - [sym_label_number] = STATE(165), - [sym_new_command_definition] = STATE(165), - [sym_old_command_definition] = STATE(165), - [sym_let_command_definition] = STATE(165), - [sym_environment_definition] = STATE(165), - [sym_glossary_entry_definition] = STATE(165), - [sym_glossary_entry_reference] = STATE(165), - [sym_acronym_definition] = STATE(165), - [sym_acronym_reference] = STATE(165), - [sym_theorem_definition] = STATE(165), - [sym_color_definition] = STATE(165), - [sym_color_set_definition] = STATE(165), - [sym_color_reference] = STATE(165), - [sym_tikz_library_import] = STATE(165), - [aux_sym__section_repeat6] = STATE(592), - [aux_sym__section_repeat7] = STATE(593), - [aux_sym__section_repeat8] = STATE(594), - [aux_sym_part_repeat1] = STATE(165), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1908), - [anon_sym_RPAREN] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1908), - [anon_sym_RBRACK] = ACTIONS(1908), - [anon_sym_COMMA] = ACTIONS(1908), - [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_BSLASHpart] = ACTIONS(1904), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddpart] = ACTIONS(1904), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1900), - [anon_sym_BSLASHchapter] = ACTIONS(1904), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddchap] = ACTIONS(1904), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsection] = ACTIONS(1904), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddsec] = ACTIONS(1904), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsubsection] = ACTIONS(1904), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1904), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1900), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_RBRACK] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1857), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHend] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [167] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(352), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(351), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(349), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [aux_sym__section_repeat6] = STATE(352), - [aux_sym__section_repeat7] = STATE(351), - [aux_sym__section_repeat8] = STATE(349), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_COMMA] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_block_comment] = STATE(166), + [sym__flat_content] = STATE(166), + [sym__text_with_env_content] = STATE(166), + [sym__text_content] = STATE(166), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(447), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(446), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(445), + [sym_curly_group] = STATE(166), + [sym_text] = STATE(166), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(166), + [sym_inline_formula] = STATE(166), + [sym_math_set] = STATE(166), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(166), + [sym_comment_environment] = STATE(166), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(166), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(166), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(166), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(166), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(166), + [sym_generic_command] = STATE(166), + [sym_package_include] = STATE(166), + [sym_class_include] = STATE(166), + [sym_latex_include] = STATE(166), + [sym_biblatex_include] = STATE(166), + [sym_bibtex_include] = STATE(166), + [sym_graphics_include] = STATE(166), + [sym_svg_include] = STATE(166), + [sym_inkscape_include] = STATE(166), + [sym_verbatim_include] = STATE(166), + [sym_import_include] = STATE(166), + [sym_caption] = STATE(166), + [sym_citation] = STATE(166), + [sym_label_definition] = STATE(166), + [sym_label_reference] = STATE(166), + [sym_label_reference_range] = STATE(166), + [sym_label_number] = STATE(166), + [sym_new_command_definition] = STATE(166), + [sym_old_command_definition] = STATE(166), + [sym_let_command_definition] = STATE(166), + [sym_environment_definition] = STATE(166), + [sym_glossary_entry_definition] = STATE(166), + [sym_glossary_entry_reference] = STATE(166), + [sym_acronym_definition] = STATE(166), + [sym_acronym_reference] = STATE(166), + [sym_theorem_definition] = STATE(166), + [sym_color_definition] = STATE(166), + [sym_color_set_definition] = STATE(166), + [sym_color_reference] = STATE(166), + [sym_tikz_library_import] = STATE(166), + [sym_text_mode] = STATE(166), + [aux_sym__section_repeat6] = STATE(447), + [aux_sym__section_repeat7] = STATE(446), + [aux_sym__section_repeat8] = STATE(445), + [aux_sym_part_repeat1] = STATE(166), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_RPAREN] = ACTIONS(1933), + [anon_sym_LBRACK] = ACTIONS(1933), + [anon_sym_RBRACK] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_EQ] = ACTIONS(1933), + [anon_sym_BSLASHpart] = ACTIONS(1929), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddpart] = ACTIONS(1929), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1925), + [anon_sym_BSLASHchapter] = ACTIONS(1929), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddchap] = ACTIONS(1929), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsection] = ACTIONS(1929), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddsec] = ACTIONS(1929), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsubsection] = ACTIONS(1929), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1929), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHend] = ACTIONS(1929), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [168] = { - [sym_block_comment] = STATE(167), - [sym__flat_content] = STATE(167), - [sym__text_with_env_content] = STATE(167), - [sym__text_content] = STATE(167), - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(460), + [sym_block_comment] = STATE(198), + [sym__flat_content] = STATE(198), + [sym__text_with_env_content] = STATE(198), + [sym__text_content] = STATE(198), + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(576), [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(459), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(458), - [sym_curly_group] = STATE(167), - [sym_text] = STATE(167), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(167), - [sym_inline_formula] = STATE(167), - [sym_math_set] = STATE(167), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(167), - [sym_comment_environment] = STATE(167), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(167), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(167), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(167), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(167), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(167), - [sym_generic_command] = STATE(167), - [sym_package_include] = STATE(167), - [sym_class_include] = STATE(167), - [sym_latex_include] = STATE(167), - [sym_biblatex_include] = STATE(167), - [sym_bibtex_include] = STATE(167), - [sym_graphics_include] = STATE(167), - [sym_svg_include] = STATE(167), - [sym_inkscape_include] = STATE(167), - [sym_verbatim_include] = STATE(167), - [sym_import_include] = STATE(167), - [sym_caption] = STATE(167), - [sym_citation] = STATE(167), - [sym_label_definition] = STATE(167), - [sym_label_reference] = STATE(167), - [sym_label_reference_range] = STATE(167), - [sym_label_number] = STATE(167), - [sym_new_command_definition] = STATE(167), - [sym_old_command_definition] = STATE(167), - [sym_let_command_definition] = STATE(167), - [sym_environment_definition] = STATE(167), - [sym_glossary_entry_definition] = STATE(167), - [sym_glossary_entry_reference] = STATE(167), - [sym_acronym_definition] = STATE(167), - [sym_acronym_reference] = STATE(167), - [sym_theorem_definition] = STATE(167), - [sym_color_definition] = STATE(167), - [sym_color_set_definition] = STATE(167), - [sym_color_reference] = STATE(167), - [sym_tikz_library_import] = STATE(167), - [aux_sym__section_repeat6] = STATE(460), - [aux_sym__section_repeat7] = STATE(459), - [aux_sym__section_repeat8] = STATE(458), - [aux_sym_part_repeat1] = STATE(167), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_RPAREN] = ACTIONS(1910), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_RBRACK] = ACTIONS(1910), - [anon_sym_COMMA] = ACTIONS(1910), - [anon_sym_EQ] = ACTIONS(1910), - [anon_sym_BSLASHpart] = ACTIONS(1904), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddpart] = ACTIONS(1904), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1900), - [anon_sym_BSLASHchapter] = ACTIONS(1904), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddchap] = ACTIONS(1904), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsection] = ACTIONS(1904), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddsec] = ACTIONS(1904), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsubsection] = ACTIONS(1904), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1904), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_subparagraph] = STATE(577), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(578), + [sym_curly_group] = STATE(198), + [sym_text] = STATE(198), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(198), + [sym_inline_formula] = STATE(198), + [sym_math_set] = STATE(198), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(198), + [sym_comment_environment] = STATE(198), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(198), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(198), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(198), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(198), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(198), + [sym_generic_command] = STATE(198), + [sym_package_include] = STATE(198), + [sym_class_include] = STATE(198), + [sym_latex_include] = STATE(198), + [sym_biblatex_include] = STATE(198), + [sym_bibtex_include] = STATE(198), + [sym_graphics_include] = STATE(198), + [sym_svg_include] = STATE(198), + [sym_inkscape_include] = STATE(198), + [sym_verbatim_include] = STATE(198), + [sym_import_include] = STATE(198), + [sym_caption] = STATE(198), + [sym_citation] = STATE(198), + [sym_label_definition] = STATE(198), + [sym_label_reference] = STATE(198), + [sym_label_reference_range] = STATE(198), + [sym_label_number] = STATE(198), + [sym_new_command_definition] = STATE(198), + [sym_old_command_definition] = STATE(198), + [sym_let_command_definition] = STATE(198), + [sym_environment_definition] = STATE(198), + [sym_glossary_entry_definition] = STATE(198), + [sym_glossary_entry_reference] = STATE(198), + [sym_acronym_definition] = STATE(198), + [sym_acronym_reference] = STATE(198), + [sym_theorem_definition] = STATE(198), + [sym_color_definition] = STATE(198), + [sym_color_set_definition] = STATE(198), + [sym_color_reference] = STATE(198), + [sym_tikz_library_import] = STATE(198), + [sym_text_mode] = STATE(198), + [aux_sym__section_repeat6] = STATE(576), + [aux_sym__section_repeat7] = STATE(577), + [aux_sym__section_repeat8] = STATE(578), + [aux_sym_part_repeat1] = STATE(198), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_RBRACK] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1904), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, [169] = { - [sym_block_comment] = STATE(203), - [sym__flat_content] = STATE(203), - [sym__text_with_env_content] = STATE(203), - [sym__text_content] = STATE(203), - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(573), + [sym_block_comment] = STATE(171), + [sym__flat_content] = STATE(171), + [sym__text_with_env_content] = STATE(171), + [sym__text_content] = STATE(171), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(594), [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(574), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(575), - [sym_curly_group] = STATE(203), - [sym_text] = STATE(203), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(203), - [sym_inline_formula] = STATE(203), - [sym_math_set] = STATE(203), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(203), - [sym_comment_environment] = STATE(203), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(203), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(203), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(203), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(203), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(203), - [sym_generic_command] = STATE(203), - [sym_package_include] = STATE(203), - [sym_class_include] = STATE(203), - [sym_latex_include] = STATE(203), - [sym_biblatex_include] = STATE(203), - [sym_bibtex_include] = STATE(203), - [sym_graphics_include] = STATE(203), - [sym_svg_include] = STATE(203), - [sym_inkscape_include] = STATE(203), - [sym_verbatim_include] = STATE(203), - [sym_import_include] = STATE(203), - [sym_caption] = STATE(203), - [sym_citation] = STATE(203), - [sym_label_definition] = STATE(203), - [sym_label_reference] = STATE(203), - [sym_label_reference_range] = STATE(203), - [sym_label_number] = STATE(203), - [sym_new_command_definition] = STATE(203), - [sym_old_command_definition] = STATE(203), - [sym_let_command_definition] = STATE(203), - [sym_environment_definition] = STATE(203), - [sym_glossary_entry_definition] = STATE(203), - [sym_glossary_entry_reference] = STATE(203), - [sym_acronym_definition] = STATE(203), - [sym_acronym_reference] = STATE(203), - [sym_theorem_definition] = STATE(203), - [sym_color_definition] = STATE(203), - [sym_color_set_definition] = STATE(203), - [sym_color_reference] = STATE(203), - [sym_tikz_library_import] = STATE(203), - [aux_sym__section_repeat6] = STATE(573), - [aux_sym__section_repeat7] = STATE(574), - [aux_sym__section_repeat8] = STATE(575), - [aux_sym_part_repeat1] = STATE(203), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_RBRACK] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_subparagraph] = STATE(595), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(611), + [sym_curly_group] = STATE(171), + [sym_text] = STATE(171), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(171), + [sym_inline_formula] = STATE(171), + [sym_math_set] = STATE(171), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(171), + [sym_comment_environment] = STATE(171), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(171), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(171), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(171), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(171), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(171), + [sym_generic_command] = STATE(171), + [sym_package_include] = STATE(171), + [sym_class_include] = STATE(171), + [sym_latex_include] = STATE(171), + [sym_biblatex_include] = STATE(171), + [sym_bibtex_include] = STATE(171), + [sym_graphics_include] = STATE(171), + [sym_svg_include] = STATE(171), + [sym_inkscape_include] = STATE(171), + [sym_verbatim_include] = STATE(171), + [sym_import_include] = STATE(171), + [sym_caption] = STATE(171), + [sym_citation] = STATE(171), + [sym_label_definition] = STATE(171), + [sym_label_reference] = STATE(171), + [sym_label_reference_range] = STATE(171), + [sym_label_number] = STATE(171), + [sym_new_command_definition] = STATE(171), + [sym_old_command_definition] = STATE(171), + [sym_let_command_definition] = STATE(171), + [sym_environment_definition] = STATE(171), + [sym_glossary_entry_definition] = STATE(171), + [sym_glossary_entry_reference] = STATE(171), + [sym_acronym_definition] = STATE(171), + [sym_acronym_reference] = STATE(171), + [sym_theorem_definition] = STATE(171), + [sym_color_definition] = STATE(171), + [sym_color_set_definition] = STATE(171), + [sym_color_reference] = STATE(171), + [sym_tikz_library_import] = STATE(171), + [sym_text_mode] = STATE(171), + [aux_sym__section_repeat6] = STATE(594), + [aux_sym__section_repeat7] = STATE(595), + [aux_sym__section_repeat8] = STATE(611), + [aux_sym_part_repeat1] = STATE(171), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1935), + [anon_sym_RPAREN] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1935), + [anon_sym_RBRACK] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1935), + [anon_sym_EQ] = ACTIONS(1935), + [anon_sym_BSLASHpart] = ACTIONS(1929), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddpart] = ACTIONS(1929), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1925), + [anon_sym_BSLASHchapter] = ACTIONS(1929), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddchap] = ACTIONS(1929), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsection] = ACTIONS(1929), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddsec] = ACTIONS(1929), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsubsection] = ACTIONS(1929), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1929), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1925), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, [170] = { + [sym_block_comment] = STATE(164), + [sym__flat_content] = STATE(164), + [sym__text_with_env_content] = STATE(164), + [sym__text_content] = STATE(164), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(510), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(508), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(505), + [sym_curly_group] = STATE(164), + [sym_text] = STATE(164), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(164), + [sym_inline_formula] = STATE(164), + [sym_math_set] = STATE(164), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(164), + [sym_comment_environment] = STATE(164), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(164), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(164), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(164), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(164), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(164), + [sym_generic_command] = STATE(164), + [sym_package_include] = STATE(164), + [sym_class_include] = STATE(164), + [sym_latex_include] = STATE(164), + [sym_biblatex_include] = STATE(164), + [sym_bibtex_include] = STATE(164), + [sym_graphics_include] = STATE(164), + [sym_svg_include] = STATE(164), + [sym_inkscape_include] = STATE(164), + [sym_verbatim_include] = STATE(164), + [sym_import_include] = STATE(164), + [sym_caption] = STATE(164), + [sym_citation] = STATE(164), + [sym_label_definition] = STATE(164), + [sym_label_reference] = STATE(164), + [sym_label_reference_range] = STATE(164), + [sym_label_number] = STATE(164), + [sym_new_command_definition] = STATE(164), + [sym_old_command_definition] = STATE(164), + [sym_let_command_definition] = STATE(164), + [sym_environment_definition] = STATE(164), + [sym_glossary_entry_definition] = STATE(164), + [sym_glossary_entry_reference] = STATE(164), + [sym_acronym_definition] = STATE(164), + [sym_acronym_reference] = STATE(164), + [sym_theorem_definition] = STATE(164), + [sym_color_definition] = STATE(164), + [sym_color_set_definition] = STATE(164), + [sym_color_reference] = STATE(164), + [sym_tikz_library_import] = STATE(164), + [sym_text_mode] = STATE(164), + [aux_sym__section_repeat6] = STATE(510), + [aux_sym__section_repeat7] = STATE(508), + [aux_sym__section_repeat8] = STATE(505), + [aux_sym_part_repeat1] = STATE(164), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_RPAREN] = ACTIONS(1937), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(1937), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1937), + [anon_sym_BSLASHpart] = ACTIONS(1929), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddpart] = ACTIONS(1929), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1925), + [anon_sym_BSLASHchapter] = ACTIONS(1929), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddchap] = ACTIONS(1929), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsection] = ACTIONS(1929), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHaddsec] = ACTIONS(1929), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsubsection] = ACTIONS(1929), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1929), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1925), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1925), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), + }, + [171] = { [sym_block_comment] = STATE(200), [sym__flat_content] = STATE(200), [sym__text_with_env_content] = STATE(200), [sym__text_content] = STATE(200), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(378), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(376), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(374), + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(601), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(600), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(599), [sym_curly_group] = STATE(200), [sym_text] = STATE(200), - [sym_operator] = STATE(1000), + [sym_operator] = STATE(862), [sym_displayed_equation] = STATE(200), [sym_inline_formula] = STATE(200), [sym_math_set] = STATE(200), - [sym_begin] = STATE(20), + [sym_begin] = STATE(29), [sym_generic_environment] = STATE(200), [sym_comment_environment] = STATE(200), - [sym__trivia_begin_comment] = STATE(2333), + [sym__trivia_begin_comment] = STATE(2344), [sym_verbatim_environment] = STATE(200), - [sym__trivia_begin_verbatim] = STATE(2332), + [sym__trivia_begin_verbatim] = STATE(2343), [sym_listing_environment] = STATE(200), - [sym__trivia_begin_listing] = STATE(2331), + [sym__trivia_begin_listing] = STATE(2342), [sym_minted_environment] = STATE(200), - [sym__trivia_begin_minted] = STATE(2330), + [sym__trivia_begin_minted] = STATE(2341), [sym_pycode_environment] = STATE(200), - [sym__trivia_begin_pycode] = STATE(2329), + [sym__trivia_begin_pycode] = STATE(2340), [sym__command] = STATE(200), [sym_generic_command] = STATE(200), [sym_package_include] = STATE(200), @@ -78851,611 +77657,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(200), [sym_color_reference] = STATE(200), [sym_tikz_library_import] = STATE(200), - [aux_sym__section_repeat6] = STATE(378), - [aux_sym__section_repeat7] = STATE(376), - [aux_sym__section_repeat8] = STATE(374), + [sym_text_mode] = STATE(200), + [aux_sym__section_repeat6] = STATE(601), + [aux_sym__section_repeat7] = STATE(600), + [aux_sym__section_repeat8] = STATE(599), [aux_sym_part_repeat1] = STATE(200), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [171] = { - [sym_block_comment] = STATE(170), - [sym__flat_content] = STATE(170), - [sym__text_with_env_content] = STATE(170), - [sym__text_content] = STATE(170), - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(509), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(508), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(507), - [sym_curly_group] = STATE(170), - [sym_text] = STATE(170), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(170), - [sym_inline_formula] = STATE(170), - [sym_math_set] = STATE(170), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(170), - [sym_comment_environment] = STATE(170), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(170), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(170), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(170), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(170), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(170), - [sym_generic_command] = STATE(170), - [sym_package_include] = STATE(170), - [sym_class_include] = STATE(170), - [sym_latex_include] = STATE(170), - [sym_biblatex_include] = STATE(170), - [sym_bibtex_include] = STATE(170), - [sym_graphics_include] = STATE(170), - [sym_svg_include] = STATE(170), - [sym_inkscape_include] = STATE(170), - [sym_verbatim_include] = STATE(170), - [sym_import_include] = STATE(170), - [sym_caption] = STATE(170), - [sym_citation] = STATE(170), - [sym_label_definition] = STATE(170), - [sym_label_reference] = STATE(170), - [sym_label_reference_range] = STATE(170), - [sym_label_number] = STATE(170), - [sym_new_command_definition] = STATE(170), - [sym_old_command_definition] = STATE(170), - [sym_let_command_definition] = STATE(170), - [sym_environment_definition] = STATE(170), - [sym_glossary_entry_definition] = STATE(170), - [sym_glossary_entry_reference] = STATE(170), - [sym_acronym_definition] = STATE(170), - [sym_acronym_reference] = STATE(170), - [sym_theorem_definition] = STATE(170), - [sym_color_definition] = STATE(170), - [sym_color_set_definition] = STATE(170), - [sym_color_reference] = STATE(170), - [sym_tikz_library_import] = STATE(170), - [aux_sym__section_repeat6] = STATE(509), - [aux_sym__section_repeat7] = STATE(508), - [aux_sym__section_repeat8] = STATE(507), - [aux_sym_part_repeat1] = STATE(170), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1912), - [anon_sym_RPAREN] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1912), - [anon_sym_RBRACK] = ACTIONS(1912), - [anon_sym_COMMA] = ACTIONS(1912), - [anon_sym_EQ] = ACTIONS(1912), - [anon_sym_BSLASHpart] = ACTIONS(1904), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddpart] = ACTIONS(1904), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1900), - [anon_sym_BSLASHchapter] = ACTIONS(1904), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddchap] = ACTIONS(1904), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsection] = ACTIONS(1904), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHaddsec] = ACTIONS(1904), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsubsection] = ACTIONS(1904), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1904), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1900), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1900), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1921), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, [172] = { [sym_block_comment] = STATE(173), @@ -79463,27 +77940,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__text_with_env_content] = STATE(173), [sym__text_content] = STATE(173), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(310), + [sym_subparagraph] = STATE(334), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(321), + [sym_enum_item] = STATE(333), [sym_curly_group] = STATE(173), [sym_text] = STATE(173), - [sym_operator] = STATE(805), + [sym_operator] = STATE(782), [sym_displayed_equation] = STATE(173), [sym_inline_formula] = STATE(173), [sym_math_set] = STATE(173), - [sym_begin] = STATE(37), + [sym_begin] = STATE(36), [sym_generic_environment] = STATE(173), [sym_comment_environment] = STATE(173), - [sym__trivia_begin_comment] = STATE(2391), + [sym__trivia_begin_comment] = STATE(2417), [sym_verbatim_environment] = STATE(173), - [sym__trivia_begin_verbatim] = STATE(2393), + [sym__trivia_begin_verbatim] = STATE(2429), [sym_listing_environment] = STATE(173), - [sym__trivia_begin_listing] = STATE(2395), + [sym__trivia_begin_listing] = STATE(2430), [sym_minted_environment] = STATE(173), - [sym__trivia_begin_minted] = STATE(2396), + [sym__trivia_begin_minted] = STATE(2431), [sym_pycode_environment] = STATE(173), - [sym__trivia_begin_pycode] = STATE(2408), + [sym__trivia_begin_pycode] = STATE(2461), [sym__command] = STATE(173), [sym_generic_command] = STATE(173), [sym_package_include] = STATE(173), @@ -79515,45 +77992,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(173), [sym_color_reference] = STATE(173), [sym_tikz_library_import] = STATE(173), - [aux_sym__section_repeat7] = STATE(310), - [aux_sym__section_repeat8] = STATE(321), + [sym_text_mode] = STATE(173), + [aux_sym__section_repeat7] = STATE(334), + [aux_sym__section_repeat8] = STATE(333), [aux_sym_part_repeat1] = STATE(173), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1914), + [ts_builtin_sym_end] = ACTIONS(1939), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_RPAREN] = ACTIONS(1916), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_RBRACK] = ACTIONS(1916), - [anon_sym_COMMA] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_BSLASHpart] = ACTIONS(1918), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddpart] = ACTIONS(1918), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1914), - [anon_sym_BSLASHchapter] = ACTIONS(1918), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddchap] = ACTIONS(1918), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsection] = ACTIONS(1918), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddsec] = ACTIONS(1918), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubsection] = ACTIONS(1918), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHparagraph] = ACTIONS(1918), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_RPAREN] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(1941), + [anon_sym_RBRACK] = ACTIONS(1941), + [anon_sym_COMMA] = ACTIONS(1941), + [anon_sym_EQ] = ACTIONS(1941), + [anon_sym_BSLASHpart] = ACTIONS(1943), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddpart] = ACTIONS(1943), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1939), + [anon_sym_BSLASHchapter] = ACTIONS(1943), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddchap] = ACTIONS(1943), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsection] = ACTIONS(1943), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddsec] = ACTIONS(1943), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubsection] = ACTIONS(1943), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHparagraph] = ACTIONS(1943), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1939), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1939), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -79787,104 +78265,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [173] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), + [sym_block_comment] = STATE(193), + [sym__flat_content] = STATE(193), + [sym__text_with_env_content] = STATE(193), + [sym__text_content] = STATE(193), [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(270), + [sym_subparagraph] = STATE(308), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(307), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [aux_sym__section_repeat7] = STATE(270), - [aux_sym__section_repeat8] = STATE(307), - [aux_sym_part_repeat1] = STATE(192), + [sym_enum_item] = STATE(309), + [sym_curly_group] = STATE(193), + [sym_text] = STATE(193), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(193), + [sym_inline_formula] = STATE(193), + [sym_math_set] = STATE(193), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(193), + [sym_comment_environment] = STATE(193), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(193), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(193), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(193), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(193), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(193), + [sym_generic_command] = STATE(193), + [sym_package_include] = STATE(193), + [sym_class_include] = STATE(193), + [sym_latex_include] = STATE(193), + [sym_biblatex_include] = STATE(193), + [sym_bibtex_include] = STATE(193), + [sym_graphics_include] = STATE(193), + [sym_svg_include] = STATE(193), + [sym_inkscape_include] = STATE(193), + [sym_verbatim_include] = STATE(193), + [sym_import_include] = STATE(193), + [sym_caption] = STATE(193), + [sym_citation] = STATE(193), + [sym_label_definition] = STATE(193), + [sym_label_reference] = STATE(193), + [sym_label_reference_range] = STATE(193), + [sym_label_number] = STATE(193), + [sym_new_command_definition] = STATE(193), + [sym_old_command_definition] = STATE(193), + [sym_let_command_definition] = STATE(193), + [sym_environment_definition] = STATE(193), + [sym_glossary_entry_definition] = STATE(193), + [sym_glossary_entry_reference] = STATE(193), + [sym_acronym_definition] = STATE(193), + [sym_acronym_reference] = STATE(193), + [sym_theorem_definition] = STATE(193), + [sym_color_definition] = STATE(193), + [sym_color_set_definition] = STATE(193), + [sym_color_reference] = STATE(193), + [sym_tikz_library_import] = STATE(193), + [sym_text_mode] = STATE(193), + [aux_sym__section_repeat7] = STATE(308), + [aux_sym__section_repeat8] = STATE(309), + [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1920), + [ts_builtin_sym_end] = ACTIONS(1945), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_RBRACK] = ACTIONS(1814), - [anon_sym_COMMA] = ACTIONS(1814), - [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_RBRACK] = ACTIONS(1839), + [anon_sym_COMMA] = ACTIONS(1839), + [anon_sym_EQ] = ACTIONS(1839), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1945), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -80118,34 +78600,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [174] = { [sym_block_comment] = STATE(205), [sym__flat_content] = STATE(205), [sym__text_with_env_content] = STATE(205), [sym__text_content] = STATE(205), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(609), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(427), [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(607), + [sym_enum_item] = STATE(396), [sym_curly_group] = STATE(205), [sym_text] = STATE(205), - [sym_operator] = STATE(858), + [sym_operator] = STATE(1082), [sym_displayed_equation] = STATE(205), [sym_inline_formula] = STATE(205), [sym_math_set] = STATE(205), - [sym_begin] = STATE(26), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(205), [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2324), + [sym__trivia_begin_comment] = STATE(2328), [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2323), + [sym__trivia_begin_verbatim] = STATE(2329), [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2322), + [sym__trivia_begin_listing] = STATE(2330), [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2321), + [sym__trivia_begin_minted] = STATE(2331), [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2319), + [sym__trivia_begin_pycode] = STATE(2332), [sym__command] = STATE(205), [sym_generic_command] = STATE(205), [sym_package_include] = STATE(205), @@ -80177,1295 +78662,1645 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(205), [sym_color_reference] = STATE(205), [sym_tikz_library_import] = STATE(205), - [aux_sym__section_repeat7] = STATE(609), - [aux_sym__section_repeat8] = STATE(607), + [sym_text_mode] = STATE(205), + [aux_sym__section_repeat7] = STATE(427), + [aux_sym__section_repeat8] = STATE(396), [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_COMMA] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1832), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1920), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_RBRACK] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1857), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHend] = ACTIONS(1947), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [175] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), + [sym_block_comment] = STATE(176), + [sym__flat_content] = STATE(176), + [sym__text_with_env_content] = STATE(176), + [sym__text_content] = STATE(176), [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(347), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(346), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [aux_sym__section_repeat7] = STATE(347), - [aux_sym__section_repeat8] = STATE(346), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_COMMA] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_subparagraph] = STATE(506), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(507), + [sym_curly_group] = STATE(176), + [sym_text] = STATE(176), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(176), + [sym_inline_formula] = STATE(176), + [sym_math_set] = STATE(176), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(176), + [sym_comment_environment] = STATE(176), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(176), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(176), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(176), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(176), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(176), + [sym_generic_command] = STATE(176), + [sym_package_include] = STATE(176), + [sym_class_include] = STATE(176), + [sym_latex_include] = STATE(176), + [sym_biblatex_include] = STATE(176), + [sym_bibtex_include] = STATE(176), + [sym_graphics_include] = STATE(176), + [sym_svg_include] = STATE(176), + [sym_inkscape_include] = STATE(176), + [sym_verbatim_include] = STATE(176), + [sym_import_include] = STATE(176), + [sym_caption] = STATE(176), + [sym_citation] = STATE(176), + [sym_label_definition] = STATE(176), + [sym_label_reference] = STATE(176), + [sym_label_reference_range] = STATE(176), + [sym_label_number] = STATE(176), + [sym_new_command_definition] = STATE(176), + [sym_old_command_definition] = STATE(176), + [sym_let_command_definition] = STATE(176), + [sym_environment_definition] = STATE(176), + [sym_glossary_entry_definition] = STATE(176), + [sym_glossary_entry_reference] = STATE(176), + [sym_acronym_definition] = STATE(176), + [sym_acronym_reference] = STATE(176), + [sym_theorem_definition] = STATE(176), + [sym_color_definition] = STATE(176), + [sym_color_set_definition] = STATE(176), + [sym_color_reference] = STATE(176), + [sym_tikz_library_import] = STATE(176), + [sym_text_mode] = STATE(176), + [aux_sym__section_repeat7] = STATE(506), + [aux_sym__section_repeat8] = STATE(507), + [aux_sym_part_repeat1] = STATE(176), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_RPAREN] = ACTIONS(1949), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(1949), + [anon_sym_COMMA] = ACTIONS(1949), + [anon_sym_EQ] = ACTIONS(1949), + [anon_sym_BSLASHpart] = ACTIONS(1943), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddpart] = ACTIONS(1943), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1939), + [anon_sym_BSLASHchapter] = ACTIONS(1943), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddchap] = ACTIONS(1943), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsection] = ACTIONS(1943), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddsec] = ACTIONS(1943), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubsection] = ACTIONS(1943), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHparagraph] = ACTIONS(1943), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1939), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1922), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, [176] = { - [sym_block_comment] = STATE(203), - [sym__flat_content] = STATE(203), - [sym__text_with_env_content] = STATE(203), - [sym__text_content] = STATE(203), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(576), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(577), - [sym_curly_group] = STATE(203), - [sym_text] = STATE(203), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(203), - [sym_inline_formula] = STATE(203), - [sym_math_set] = STATE(203), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(203), - [sym_comment_environment] = STATE(203), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(203), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(203), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(203), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(203), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(203), - [sym_generic_command] = STATE(203), - [sym_package_include] = STATE(203), - [sym_class_include] = STATE(203), - [sym_latex_include] = STATE(203), - [sym_biblatex_include] = STATE(203), - [sym_bibtex_include] = STATE(203), - [sym_graphics_include] = STATE(203), - [sym_svg_include] = STATE(203), - [sym_inkscape_include] = STATE(203), - [sym_verbatim_include] = STATE(203), - [sym_import_include] = STATE(203), - [sym_caption] = STATE(203), - [sym_citation] = STATE(203), - [sym_label_definition] = STATE(203), - [sym_label_reference] = STATE(203), - [sym_label_reference_range] = STATE(203), - [sym_label_number] = STATE(203), - [sym_new_command_definition] = STATE(203), - [sym_old_command_definition] = STATE(203), - [sym_let_command_definition] = STATE(203), - [sym_environment_definition] = STATE(203), - [sym_glossary_entry_definition] = STATE(203), - [sym_glossary_entry_reference] = STATE(203), - [sym_acronym_definition] = STATE(203), - [sym_acronym_reference] = STATE(203), - [sym_theorem_definition] = STATE(203), - [sym_color_definition] = STATE(203), - [sym_color_set_definition] = STATE(203), - [sym_color_reference] = STATE(203), - [sym_tikz_library_import] = STATE(203), - [aux_sym__section_repeat7] = STATE(576), - [aux_sym__section_repeat8] = STATE(577), - [aux_sym_part_repeat1] = STATE(203), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_RBRACK] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_block_comment] = STATE(198), + [sym__flat_content] = STATE(198), + [sym__text_with_env_content] = STATE(198), + [sym__text_content] = STATE(198), + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(579), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(580), + [sym_curly_group] = STATE(198), + [sym_text] = STATE(198), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(198), + [sym_inline_formula] = STATE(198), + [sym_math_set] = STATE(198), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(198), + [sym_comment_environment] = STATE(198), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(198), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(198), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(198), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(198), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(198), + [sym_generic_command] = STATE(198), + [sym_package_include] = STATE(198), + [sym_class_include] = STATE(198), + [sym_latex_include] = STATE(198), + [sym_biblatex_include] = STATE(198), + [sym_bibtex_include] = STATE(198), + [sym_graphics_include] = STATE(198), + [sym_svg_include] = STATE(198), + [sym_inkscape_include] = STATE(198), + [sym_verbatim_include] = STATE(198), + [sym_import_include] = STATE(198), + [sym_caption] = STATE(198), + [sym_citation] = STATE(198), + [sym_label_definition] = STATE(198), + [sym_label_reference] = STATE(198), + [sym_label_reference_range] = STATE(198), + [sym_label_number] = STATE(198), + [sym_new_command_definition] = STATE(198), + [sym_old_command_definition] = STATE(198), + [sym_let_command_definition] = STATE(198), + [sym_environment_definition] = STATE(198), + [sym_glossary_entry_definition] = STATE(198), + [sym_glossary_entry_reference] = STATE(198), + [sym_acronym_definition] = STATE(198), + [sym_acronym_reference] = STATE(198), + [sym_theorem_definition] = STATE(198), + [sym_color_definition] = STATE(198), + [sym_color_set_definition] = STATE(198), + [sym_color_reference] = STATE(198), + [sym_tikz_library_import] = STATE(198), + [sym_text_mode] = STATE(198), + [aux_sym__section_repeat7] = STATE(579), + [aux_sym__section_repeat8] = STATE(580), + [aux_sym_part_repeat1] = STATE(198), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_RBRACK] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, [177] = { - [sym_block_comment] = STATE(200), - [sym__flat_content] = STATE(200), - [sym__text_with_env_content] = STATE(200), - [sym__text_content] = STATE(200), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(372), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(367), - [sym_curly_group] = STATE(200), - [sym_text] = STATE(200), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(200), - [sym_inline_formula] = STATE(200), - [sym_math_set] = STATE(200), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(200), - [sym_comment_environment] = STATE(200), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(200), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(200), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(200), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(200), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(200), - [sym_generic_command] = STATE(200), - [sym_package_include] = STATE(200), - [sym_class_include] = STATE(200), - [sym_latex_include] = STATE(200), - [sym_biblatex_include] = STATE(200), - [sym_bibtex_include] = STATE(200), - [sym_graphics_include] = STATE(200), - [sym_svg_include] = STATE(200), - [sym_inkscape_include] = STATE(200), - [sym_verbatim_include] = STATE(200), - [sym_import_include] = STATE(200), - [sym_caption] = STATE(200), - [sym_citation] = STATE(200), - [sym_label_definition] = STATE(200), - [sym_label_reference] = STATE(200), - [sym_label_reference_range] = STATE(200), - [sym_label_number] = STATE(200), - [sym_new_command_definition] = STATE(200), - [sym_old_command_definition] = STATE(200), - [sym_let_command_definition] = STATE(200), - [sym_environment_definition] = STATE(200), - [sym_glossary_entry_definition] = STATE(200), - [sym_glossary_entry_reference] = STATE(200), - [sym_acronym_definition] = STATE(200), - [sym_acronym_reference] = STATE(200), - [sym_theorem_definition] = STATE(200), - [sym_color_definition] = STATE(200), - [sym_color_set_definition] = STATE(200), - [sym_color_reference] = STATE(200), - [sym_tikz_library_import] = STATE(200), - [aux_sym__section_repeat7] = STATE(372), - [aux_sym__section_repeat8] = STATE(367), - [aux_sym_part_repeat1] = STATE(200), + [sym_block_comment] = STATE(206), + [sym__flat_content] = STATE(206), + [sym__text_with_env_content] = STATE(206), + [sym__text_content] = STATE(206), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(355), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(353), + [sym_curly_group] = STATE(206), + [sym_text] = STATE(206), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(206), + [sym_inline_formula] = STATE(206), + [sym_math_set] = STATE(206), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(206), + [sym_comment_environment] = STATE(206), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(206), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(206), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(206), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(206), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(206), + [sym_generic_command] = STATE(206), + [sym_package_include] = STATE(206), + [sym_class_include] = STATE(206), + [sym_latex_include] = STATE(206), + [sym_biblatex_include] = STATE(206), + [sym_bibtex_include] = STATE(206), + [sym_graphics_include] = STATE(206), + [sym_svg_include] = STATE(206), + [sym_inkscape_include] = STATE(206), + [sym_verbatim_include] = STATE(206), + [sym_import_include] = STATE(206), + [sym_caption] = STATE(206), + [sym_citation] = STATE(206), + [sym_label_definition] = STATE(206), + [sym_label_reference] = STATE(206), + [sym_label_reference_range] = STATE(206), + [sym_label_number] = STATE(206), + [sym_new_command_definition] = STATE(206), + [sym_old_command_definition] = STATE(206), + [sym_let_command_definition] = STATE(206), + [sym_environment_definition] = STATE(206), + [sym_glossary_entry_definition] = STATE(206), + [sym_glossary_entry_reference] = STATE(206), + [sym_acronym_definition] = STATE(206), + [sym_acronym_reference] = STATE(206), + [sym_theorem_definition] = STATE(206), + [sym_color_definition] = STATE(206), + [sym_color_set_definition] = STATE(206), + [sym_color_reference] = STATE(206), + [sym_tikz_library_import] = STATE(206), + [sym_text_mode] = STATE(206), + [aux_sym__section_repeat7] = STATE(355), + [aux_sym__section_repeat8] = STATE(353), + [aux_sym_part_repeat1] = STATE(206), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_RBRACK] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, [178] = { + [sym_block_comment] = STATE(181), + [sym__flat_content] = STATE(181), + [sym__text_with_env_content] = STATE(181), + [sym__text_content] = STATE(181), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(615), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(619), + [sym_curly_group] = STATE(181), + [sym_text] = STATE(181), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(181), + [sym_inline_formula] = STATE(181), + [sym_math_set] = STATE(181), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(181), + [sym_comment_environment] = STATE(181), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(181), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(181), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(181), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(181), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(181), + [sym_generic_command] = STATE(181), + [sym_package_include] = STATE(181), + [sym_class_include] = STATE(181), + [sym_latex_include] = STATE(181), + [sym_biblatex_include] = STATE(181), + [sym_bibtex_include] = STATE(181), + [sym_graphics_include] = STATE(181), + [sym_svg_include] = STATE(181), + [sym_inkscape_include] = STATE(181), + [sym_verbatim_include] = STATE(181), + [sym_import_include] = STATE(181), + [sym_caption] = STATE(181), + [sym_citation] = STATE(181), + [sym_label_definition] = STATE(181), + [sym_label_reference] = STATE(181), + [sym_label_reference_range] = STATE(181), + [sym_label_number] = STATE(181), + [sym_new_command_definition] = STATE(181), + [sym_old_command_definition] = STATE(181), + [sym_let_command_definition] = STATE(181), + [sym_environment_definition] = STATE(181), + [sym_glossary_entry_definition] = STATE(181), + [sym_glossary_entry_reference] = STATE(181), + [sym_acronym_definition] = STATE(181), + [sym_acronym_reference] = STATE(181), + [sym_theorem_definition] = STATE(181), + [sym_color_definition] = STATE(181), + [sym_color_set_definition] = STATE(181), + [sym_color_reference] = STATE(181), + [sym_tikz_library_import] = STATE(181), + [sym_text_mode] = STATE(181), + [aux_sym__section_repeat7] = STATE(615), + [aux_sym__section_repeat8] = STATE(619), + [aux_sym_part_repeat1] = STATE(181), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1951), + [anon_sym_RPAREN] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1951), + [anon_sym_RBRACK] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1951), + [anon_sym_EQ] = ACTIONS(1951), + [anon_sym_BSLASHpart] = ACTIONS(1943), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddpart] = ACTIONS(1943), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1939), + [anon_sym_BSLASHchapter] = ACTIONS(1943), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddchap] = ACTIONS(1943), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsection] = ACTIONS(1943), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddsec] = ACTIONS(1943), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubsection] = ACTIONS(1943), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHparagraph] = ACTIONS(1943), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1939), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), + }, + [179] = { [sym_block_comment] = STATE(174), [sym__flat_content] = STATE(174), [sym__text_with_env_content] = STATE(174), [sym__text_content] = STATE(174), - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(596), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(443), [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(597), + [sym_enum_item] = STATE(442), [sym_curly_group] = STATE(174), [sym_text] = STATE(174), - [sym_operator] = STATE(858), + [sym_operator] = STATE(1082), [sym_displayed_equation] = STATE(174), [sym_inline_formula] = STATE(174), [sym_math_set] = STATE(174), - [sym_begin] = STATE(26), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(174), [sym_comment_environment] = STATE(174), - [sym__trivia_begin_comment] = STATE(2324), + [sym__trivia_begin_comment] = STATE(2328), [sym_verbatim_environment] = STATE(174), - [sym__trivia_begin_verbatim] = STATE(2323), + [sym__trivia_begin_verbatim] = STATE(2329), [sym_listing_environment] = STATE(174), - [sym__trivia_begin_listing] = STATE(2322), + [sym__trivia_begin_listing] = STATE(2330), [sym_minted_environment] = STATE(174), - [sym__trivia_begin_minted] = STATE(2321), + [sym__trivia_begin_minted] = STATE(2331), [sym_pycode_environment] = STATE(174), - [sym__trivia_begin_pycode] = STATE(2319), + [sym__trivia_begin_pycode] = STATE(2332), [sym__command] = STATE(174), [sym_generic_command] = STATE(174), [sym_package_include] = STATE(174), @@ -81497,305 +80332,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(174), [sym_color_reference] = STATE(174), [sym_tikz_library_import] = STATE(174), - [aux_sym__section_repeat7] = STATE(596), - [aux_sym__section_repeat8] = STATE(597), + [sym_text_mode] = STATE(174), + [aux_sym__section_repeat7] = STATE(443), + [aux_sym__section_repeat8] = STATE(442), [aux_sym_part_repeat1] = STATE(174), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1924), - [anon_sym_RPAREN] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1924), - [anon_sym_RBRACK] = ACTIONS(1924), - [anon_sym_COMMA] = ACTIONS(1924), - [anon_sym_EQ] = ACTIONS(1924), - [anon_sym_BSLASHpart] = ACTIONS(1918), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddpart] = ACTIONS(1918), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1914), - [anon_sym_BSLASHchapter] = ACTIONS(1918), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddchap] = ACTIONS(1918), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsection] = ACTIONS(1918), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddsec] = ACTIONS(1918), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubsection] = ACTIONS(1918), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHparagraph] = ACTIONS(1918), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1914), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1953), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_RBRACK] = ACTIONS(1953), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_EQ] = ACTIONS(1953), + [anon_sym_BSLASHpart] = ACTIONS(1943), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddpart] = ACTIONS(1943), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1939), + [anon_sym_BSLASHchapter] = ACTIONS(1943), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddchap] = ACTIONS(1943), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsection] = ACTIONS(1943), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddsec] = ACTIONS(1943), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubsection] = ACTIONS(1943), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHparagraph] = ACTIONS(1943), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHend] = ACTIONS(1943), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, - [179] = { + [180] = { [sym_block_comment] = STATE(177), [sym__flat_content] = STATE(177), [sym__text_with_env_content] = STATE(177), [sym__text_content] = STATE(177), - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(505), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(502), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(501), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(496), [sym_curly_group] = STATE(177), [sym_text] = STATE(177), - [sym_operator] = STATE(1000), + [sym_operator] = STATE(971), [sym_displayed_equation] = STATE(177), [sym_inline_formula] = STATE(177), [sym_math_set] = STATE(177), - [sym_begin] = STATE(20), + [sym_begin] = STATE(19), [sym_generic_environment] = STATE(177), [sym_comment_environment] = STATE(177), - [sym__trivia_begin_comment] = STATE(2333), + [sym__trivia_begin_comment] = STATE(2336), [sym_verbatim_environment] = STATE(177), - [sym__trivia_begin_verbatim] = STATE(2332), + [sym__trivia_begin_verbatim] = STATE(2350), [sym_listing_environment] = STATE(177), - [sym__trivia_begin_listing] = STATE(2331), + [sym__trivia_begin_listing] = STATE(2349), [sym_minted_environment] = STATE(177), - [sym__trivia_begin_minted] = STATE(2330), + [sym__trivia_begin_minted] = STATE(2348), [sym_pycode_environment] = STATE(177), - [sym__trivia_begin_pycode] = STATE(2329), + [sym__trivia_begin_pycode] = STATE(2347), [sym__command] = STATE(177), [sym_generic_command] = STATE(177), [sym_package_include] = STATE(177), @@ -81827,937 +80666,615 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(177), [sym_color_reference] = STATE(177), [sym_tikz_library_import] = STATE(177), - [aux_sym__section_repeat7] = STATE(505), - [aux_sym__section_repeat8] = STATE(502), + [sym_text_mode] = STATE(177), + [aux_sym__section_repeat7] = STATE(501), + [aux_sym__section_repeat8] = STATE(496), [aux_sym_part_repeat1] = STATE(177), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_RPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_RBRACK] = ACTIONS(1926), - [anon_sym_COMMA] = ACTIONS(1926), - [anon_sym_EQ] = ACTIONS(1926), - [anon_sym_BSLASHpart] = ACTIONS(1918), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddpart] = ACTIONS(1918), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1914), - [anon_sym_BSLASHchapter] = ACTIONS(1918), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddchap] = ACTIONS(1918), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsection] = ACTIONS(1918), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddsec] = ACTIONS(1918), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubsection] = ACTIONS(1918), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHparagraph] = ACTIONS(1918), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1914), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1955), + [anon_sym_RPAREN] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1955), + [anon_sym_RBRACK] = ACTIONS(1955), + [anon_sym_COMMA] = ACTIONS(1955), + [anon_sym_EQ] = ACTIONS(1955), + [anon_sym_BSLASHpart] = ACTIONS(1943), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddpart] = ACTIONS(1943), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1939), + [anon_sym_BSLASHchapter] = ACTIONS(1943), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddchap] = ACTIONS(1943), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsection] = ACTIONS(1943), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHaddsec] = ACTIONS(1943), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubsection] = ACTIONS(1943), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1943), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1939), + [anon_sym_BSLASHparagraph] = ACTIONS(1943), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1939), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1939), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [180] = { - [sym_block_comment] = STATE(176), - [sym__flat_content] = STATE(176), - [sym__text_with_env_content] = STATE(176), - [sym__text_content] = STATE(176), - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(503), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(504), - [sym_curly_group] = STATE(176), - [sym_text] = STATE(176), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(176), - [sym_inline_formula] = STATE(176), - [sym_math_set] = STATE(176), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(176), - [sym_comment_environment] = STATE(176), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(176), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(176), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(176), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(176), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(176), - [sym_generic_command] = STATE(176), - [sym_package_include] = STATE(176), - [sym_class_include] = STATE(176), - [sym_latex_include] = STATE(176), - [sym_biblatex_include] = STATE(176), - [sym_bibtex_include] = STATE(176), - [sym_graphics_include] = STATE(176), - [sym_svg_include] = STATE(176), - [sym_inkscape_include] = STATE(176), - [sym_verbatim_include] = STATE(176), - [sym_import_include] = STATE(176), - [sym_caption] = STATE(176), - [sym_citation] = STATE(176), - [sym_label_definition] = STATE(176), - [sym_label_reference] = STATE(176), - [sym_label_reference_range] = STATE(176), - [sym_label_number] = STATE(176), - [sym_new_command_definition] = STATE(176), - [sym_old_command_definition] = STATE(176), - [sym_let_command_definition] = STATE(176), - [sym_environment_definition] = STATE(176), - [sym_glossary_entry_definition] = STATE(176), - [sym_glossary_entry_reference] = STATE(176), - [sym_acronym_definition] = STATE(176), - [sym_acronym_reference] = STATE(176), - [sym_theorem_definition] = STATE(176), - [sym_color_definition] = STATE(176), - [sym_color_set_definition] = STATE(176), - [sym_color_reference] = STATE(176), - [sym_tikz_library_import] = STATE(176), - [aux_sym__section_repeat7] = STATE(503), - [aux_sym__section_repeat8] = STATE(504), - [aux_sym_part_repeat1] = STATE(176), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1928), - [anon_sym_RPAREN] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_RBRACK] = ACTIONS(1928), - [anon_sym_COMMA] = ACTIONS(1928), - [anon_sym_EQ] = ACTIONS(1928), - [anon_sym_BSLASHpart] = ACTIONS(1918), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddpart] = ACTIONS(1918), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1914), - [anon_sym_BSLASHchapter] = ACTIONS(1918), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddchap] = ACTIONS(1918), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsection] = ACTIONS(1918), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddsec] = ACTIONS(1918), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubsection] = ACTIONS(1918), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHparagraph] = ACTIONS(1918), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1914), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, [181] = { - [sym_block_comment] = STATE(175), - [sym__flat_content] = STATE(175), - [sym__text_with_env_content] = STATE(175), - [sym__text_content] = STATE(175), - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(456), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(455), - [sym_curly_group] = STATE(175), - [sym_text] = STATE(175), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(175), - [sym_inline_formula] = STATE(175), - [sym_math_set] = STATE(175), + [sym_block_comment] = STATE(200), + [sym__flat_content] = STATE(200), + [sym__text_with_env_content] = STATE(200), + [sym__text_content] = STATE(200), + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(598), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(597), + [sym_curly_group] = STATE(200), + [sym_text] = STATE(200), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(200), + [sym_inline_formula] = STATE(200), + [sym_math_set] = STATE(200), [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(175), - [sym_comment_environment] = STATE(175), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(175), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(175), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(175), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(175), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(175), - [sym_generic_command] = STATE(175), - [sym_package_include] = STATE(175), - [sym_class_include] = STATE(175), - [sym_latex_include] = STATE(175), - [sym_biblatex_include] = STATE(175), - [sym_bibtex_include] = STATE(175), - [sym_graphics_include] = STATE(175), - [sym_svg_include] = STATE(175), - [sym_inkscape_include] = STATE(175), - [sym_verbatim_include] = STATE(175), - [sym_import_include] = STATE(175), - [sym_caption] = STATE(175), - [sym_citation] = STATE(175), - [sym_label_definition] = STATE(175), - [sym_label_reference] = STATE(175), - [sym_label_reference_range] = STATE(175), - [sym_label_number] = STATE(175), - [sym_new_command_definition] = STATE(175), - [sym_old_command_definition] = STATE(175), - [sym_let_command_definition] = STATE(175), - [sym_environment_definition] = STATE(175), - [sym_glossary_entry_definition] = STATE(175), - [sym_glossary_entry_reference] = STATE(175), - [sym_acronym_definition] = STATE(175), - [sym_acronym_reference] = STATE(175), - [sym_theorem_definition] = STATE(175), - [sym_color_definition] = STATE(175), - [sym_color_set_definition] = STATE(175), - [sym_color_reference] = STATE(175), - [sym_tikz_library_import] = STATE(175), - [aux_sym__section_repeat7] = STATE(456), - [aux_sym__section_repeat8] = STATE(455), - [aux_sym_part_repeat1] = STATE(175), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_RPAREN] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_RBRACK] = ACTIONS(1930), - [anon_sym_COMMA] = ACTIONS(1930), - [anon_sym_EQ] = ACTIONS(1930), - [anon_sym_BSLASHpart] = ACTIONS(1918), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddpart] = ACTIONS(1918), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1914), - [anon_sym_BSLASHchapter] = ACTIONS(1918), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddchap] = ACTIONS(1918), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsection] = ACTIONS(1918), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHaddsec] = ACTIONS(1918), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubsection] = ACTIONS(1918), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1918), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1914), - [anon_sym_BSLASHparagraph] = ACTIONS(1918), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1914), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [sym_generic_environment] = STATE(200), + [sym_comment_environment] = STATE(200), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(200), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(200), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(200), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(200), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(200), + [sym_generic_command] = STATE(200), + [sym_package_include] = STATE(200), + [sym_class_include] = STATE(200), + [sym_latex_include] = STATE(200), + [sym_biblatex_include] = STATE(200), + [sym_bibtex_include] = STATE(200), + [sym_graphics_include] = STATE(200), + [sym_svg_include] = STATE(200), + [sym_inkscape_include] = STATE(200), + [sym_verbatim_include] = STATE(200), + [sym_import_include] = STATE(200), + [sym_caption] = STATE(200), + [sym_citation] = STATE(200), + [sym_label_definition] = STATE(200), + [sym_label_reference] = STATE(200), + [sym_label_reference_range] = STATE(200), + [sym_label_number] = STATE(200), + [sym_new_command_definition] = STATE(200), + [sym_old_command_definition] = STATE(200), + [sym_let_command_definition] = STATE(200), + [sym_environment_definition] = STATE(200), + [sym_glossary_entry_definition] = STATE(200), + [sym_glossary_entry_reference] = STATE(200), + [sym_acronym_definition] = STATE(200), + [sym_acronym_reference] = STATE(200), + [sym_theorem_definition] = STATE(200), + [sym_color_definition] = STATE(200), + [sym_color_set_definition] = STATE(200), + [sym_color_reference] = STATE(200), + [sym_tikz_library_import] = STATE(200), + [sym_text_mode] = STATE(200), + [aux_sym__section_repeat7] = STATE(598), + [aux_sym__section_repeat8] = STATE(597), + [aux_sym_part_repeat1] = STATE(200), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1945), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1918), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, [182] = { [sym_block_comment] = STATE(183), @@ -82765,25 +81282,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__text_with_env_content] = STATE(183), [sym__text_content] = STATE(183), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(329), + [sym_enum_item] = STATE(332), [sym_curly_group] = STATE(183), [sym_text] = STATE(183), - [sym_operator] = STATE(805), + [sym_operator] = STATE(782), [sym_displayed_equation] = STATE(183), [sym_inline_formula] = STATE(183), [sym_math_set] = STATE(183), - [sym_begin] = STATE(37), + [sym_begin] = STATE(36), [sym_generic_environment] = STATE(183), [sym_comment_environment] = STATE(183), - [sym__trivia_begin_comment] = STATE(2391), + [sym__trivia_begin_comment] = STATE(2417), [sym_verbatim_environment] = STATE(183), - [sym__trivia_begin_verbatim] = STATE(2393), + [sym__trivia_begin_verbatim] = STATE(2429), [sym_listing_environment] = STATE(183), - [sym__trivia_begin_listing] = STATE(2395), + [sym__trivia_begin_listing] = STATE(2430), [sym_minted_environment] = STATE(183), - [sym__trivia_begin_minted] = STATE(2396), + [sym__trivia_begin_minted] = STATE(2431), [sym_pycode_environment] = STATE(183), - [sym__trivia_begin_pycode] = STATE(2408), + [sym__trivia_begin_pycode] = STATE(2461), [sym__command] = STATE(183), [sym_generic_command] = STATE(183), [sym_package_include] = STATE(183), @@ -82815,44 +81332,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(183), [sym_color_reference] = STATE(183), [sym_tikz_library_import] = STATE(183), - [aux_sym__section_repeat8] = STATE(329), + [sym_text_mode] = STATE(183), + [aux_sym__section_repeat8] = STATE(332), [aux_sym_part_repeat1] = STATE(183), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1932), + [ts_builtin_sym_end] = ACTIONS(1957), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_RPAREN] = ACTIONS(1934), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_RBRACK] = ACTIONS(1934), - [anon_sym_COMMA] = ACTIONS(1934), - [anon_sym_EQ] = ACTIONS(1934), - [anon_sym_BSLASHpart] = ACTIONS(1936), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddpart] = ACTIONS(1936), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1932), - [anon_sym_BSLASHchapter] = ACTIONS(1936), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddchap] = ACTIONS(1936), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsection] = ACTIONS(1936), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddsec] = ACTIONS(1936), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubsection] = ACTIONS(1936), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHparagraph] = ACTIONS(1936), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1959), + [anon_sym_RPAREN] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1959), + [anon_sym_RBRACK] = ACTIONS(1959), + [anon_sym_COMMA] = ACTIONS(1959), + [anon_sym_EQ] = ACTIONS(1959), + [anon_sym_BSLASHpart] = ACTIONS(1961), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddpart] = ACTIONS(1961), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1957), + [anon_sym_BSLASHchapter] = ACTIONS(1961), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddchap] = ACTIONS(1961), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsection] = ACTIONS(1961), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddsec] = ACTIONS(1961), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubsection] = ACTIONS(1961), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHparagraph] = ACTIONS(1961), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1957), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1932), + [anon_sym_RBRACE] = ACTIONS(1957), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -83086,101 +81604,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [183] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), + [sym_block_comment] = STATE(193), + [sym__flat_content] = STATE(193), + [sym__text_with_env_content] = STATE(193), + [sym__text_content] = STATE(193), [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(308), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [aux_sym__section_repeat8] = STATE(308), - [aux_sym_part_repeat1] = STATE(192), + [sym_enum_item] = STATE(310), + [sym_curly_group] = STATE(193), + [sym_text] = STATE(193), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(193), + [sym_inline_formula] = STATE(193), + [sym_math_set] = STATE(193), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(193), + [sym_comment_environment] = STATE(193), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(193), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(193), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(193), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(193), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(193), + [sym_generic_command] = STATE(193), + [sym_package_include] = STATE(193), + [sym_class_include] = STATE(193), + [sym_latex_include] = STATE(193), + [sym_biblatex_include] = STATE(193), + [sym_bibtex_include] = STATE(193), + [sym_graphics_include] = STATE(193), + [sym_svg_include] = STATE(193), + [sym_inkscape_include] = STATE(193), + [sym_verbatim_include] = STATE(193), + [sym_import_include] = STATE(193), + [sym_caption] = STATE(193), + [sym_citation] = STATE(193), + [sym_label_definition] = STATE(193), + [sym_label_reference] = STATE(193), + [sym_label_reference_range] = STATE(193), + [sym_label_number] = STATE(193), + [sym_new_command_definition] = STATE(193), + [sym_old_command_definition] = STATE(193), + [sym_let_command_definition] = STATE(193), + [sym_environment_definition] = STATE(193), + [sym_glossary_entry_definition] = STATE(193), + [sym_glossary_entry_reference] = STATE(193), + [sym_acronym_definition] = STATE(193), + [sym_acronym_reference] = STATE(193), + [sym_theorem_definition] = STATE(193), + [sym_color_definition] = STATE(193), + [sym_color_set_definition] = STATE(193), + [sym_color_reference] = STATE(193), + [sym_tikz_library_import] = STATE(193), + [sym_text_mode] = STATE(193), + [aux_sym__section_repeat8] = STATE(310), + [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1938), + [ts_builtin_sym_end] = ACTIONS(1963), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_RBRACK] = ACTIONS(1814), - [anon_sym_COMMA] = ACTIONS(1814), - [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_BSLASHpart] = ACTIONS(1940), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddpart] = ACTIONS(1940), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHchapter] = ACTIONS(1940), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddchap] = ACTIONS(1940), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsection] = ACTIONS(1940), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddsec] = ACTIONS(1940), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHparagraph] = ACTIONS(1940), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1940), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_RBRACK] = ACTIONS(1839), + [anon_sym_COMMA] = ACTIONS(1839), + [anon_sym_EQ] = ACTIONS(1839), + [anon_sym_BSLASHpart] = ACTIONS(1965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddpart] = ACTIONS(1965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHchapter] = ACTIONS(1965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddchap] = ACTIONS(1965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsection] = ACTIONS(1965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddsec] = ACTIONS(1965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHparagraph] = ACTIONS(1965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1963), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -83414,32 +81936,1359 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [184] = { + [sym_block_comment] = STATE(198), + [sym__flat_content] = STATE(198), + [sym__text_with_env_content] = STATE(198), + [sym__text_content] = STATE(198), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(581), + [sym_curly_group] = STATE(198), + [sym_text] = STATE(198), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(198), + [sym_inline_formula] = STATE(198), + [sym_math_set] = STATE(198), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(198), + [sym_comment_environment] = STATE(198), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(198), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(198), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(198), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(198), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(198), + [sym_generic_command] = STATE(198), + [sym_package_include] = STATE(198), + [sym_class_include] = STATE(198), + [sym_latex_include] = STATE(198), + [sym_biblatex_include] = STATE(198), + [sym_bibtex_include] = STATE(198), + [sym_graphics_include] = STATE(198), + [sym_svg_include] = STATE(198), + [sym_inkscape_include] = STATE(198), + [sym_verbatim_include] = STATE(198), + [sym_import_include] = STATE(198), + [sym_caption] = STATE(198), + [sym_citation] = STATE(198), + [sym_label_definition] = STATE(198), + [sym_label_reference] = STATE(198), + [sym_label_reference_range] = STATE(198), + [sym_label_number] = STATE(198), + [sym_new_command_definition] = STATE(198), + [sym_old_command_definition] = STATE(198), + [sym_let_command_definition] = STATE(198), + [sym_environment_definition] = STATE(198), + [sym_glossary_entry_definition] = STATE(198), + [sym_glossary_entry_reference] = STATE(198), + [sym_acronym_definition] = STATE(198), + [sym_acronym_reference] = STATE(198), + [sym_theorem_definition] = STATE(198), + [sym_color_definition] = STATE(198), + [sym_color_set_definition] = STATE(198), + [sym_color_reference] = STATE(198), + [sym_tikz_library_import] = STATE(198), + [sym_text_mode] = STATE(198), + [aux_sym__section_repeat8] = STATE(581), + [aux_sym_part_repeat1] = STATE(198), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_RBRACK] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_BSLASHpart] = ACTIONS(1965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddpart] = ACTIONS(1965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHchapter] = ACTIONS(1965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddchap] = ACTIONS(1965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsection] = ACTIONS(1965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddsec] = ACTIONS(1965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHparagraph] = ACTIONS(1965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [185] = { + [sym_block_comment] = STATE(206), + [sym__flat_content] = STATE(206), + [sym__text_with_env_content] = STATE(206), + [sym__text_content] = STATE(206), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(349), + [sym_curly_group] = STATE(206), + [sym_text] = STATE(206), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(206), + [sym_inline_formula] = STATE(206), + [sym_math_set] = STATE(206), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(206), + [sym_comment_environment] = STATE(206), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(206), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(206), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(206), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(206), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(206), + [sym_generic_command] = STATE(206), + [sym_package_include] = STATE(206), + [sym_class_include] = STATE(206), + [sym_latex_include] = STATE(206), + [sym_biblatex_include] = STATE(206), + [sym_bibtex_include] = STATE(206), + [sym_graphics_include] = STATE(206), + [sym_svg_include] = STATE(206), + [sym_inkscape_include] = STATE(206), + [sym_verbatim_include] = STATE(206), + [sym_import_include] = STATE(206), + [sym_caption] = STATE(206), + [sym_citation] = STATE(206), + [sym_label_definition] = STATE(206), + [sym_label_reference] = STATE(206), + [sym_label_reference_range] = STATE(206), + [sym_label_number] = STATE(206), + [sym_new_command_definition] = STATE(206), + [sym_old_command_definition] = STATE(206), + [sym_let_command_definition] = STATE(206), + [sym_environment_definition] = STATE(206), + [sym_glossary_entry_definition] = STATE(206), + [sym_glossary_entry_reference] = STATE(206), + [sym_acronym_definition] = STATE(206), + [sym_acronym_reference] = STATE(206), + [sym_theorem_definition] = STATE(206), + [sym_color_definition] = STATE(206), + [sym_color_set_definition] = STATE(206), + [sym_color_reference] = STATE(206), + [sym_tikz_library_import] = STATE(206), + [sym_text_mode] = STATE(206), + [aux_sym__section_repeat8] = STATE(349), + [aux_sym_part_repeat1] = STATE(206), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_RBRACK] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_BSLASHpart] = ACTIONS(1965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddpart] = ACTIONS(1965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHchapter] = ACTIONS(1965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddchap] = ACTIONS(1965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsection] = ACTIONS(1965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddsec] = ACTIONS(1965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHparagraph] = ACTIONS(1965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), + }, + [186] = { + [sym_block_comment] = STATE(205), + [sym__flat_content] = STATE(205), + [sym__text_with_env_content] = STATE(205), + [sym__text_content] = STATE(205), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(437), + [sym_curly_group] = STATE(205), + [sym_text] = STATE(205), + [sym_operator] = STATE(1082), + [sym_displayed_equation] = STATE(205), + [sym_inline_formula] = STATE(205), + [sym_math_set] = STATE(205), + [sym_begin] = STATE(11), + [sym_generic_environment] = STATE(205), + [sym_comment_environment] = STATE(205), + [sym__trivia_begin_comment] = STATE(2328), + [sym_verbatim_environment] = STATE(205), + [sym__trivia_begin_verbatim] = STATE(2329), + [sym_listing_environment] = STATE(205), + [sym__trivia_begin_listing] = STATE(2330), + [sym_minted_environment] = STATE(205), + [sym__trivia_begin_minted] = STATE(2331), + [sym_pycode_environment] = STATE(205), + [sym__trivia_begin_pycode] = STATE(2332), + [sym__command] = STATE(205), + [sym_generic_command] = STATE(205), + [sym_package_include] = STATE(205), + [sym_class_include] = STATE(205), + [sym_latex_include] = STATE(205), + [sym_biblatex_include] = STATE(205), + [sym_bibtex_include] = STATE(205), + [sym_graphics_include] = STATE(205), + [sym_svg_include] = STATE(205), + [sym_inkscape_include] = STATE(205), + [sym_verbatim_include] = STATE(205), + [sym_import_include] = STATE(205), + [sym_caption] = STATE(205), + [sym_citation] = STATE(205), + [sym_label_definition] = STATE(205), + [sym_label_reference] = STATE(205), + [sym_label_reference_range] = STATE(205), + [sym_label_number] = STATE(205), + [sym_new_command_definition] = STATE(205), + [sym_old_command_definition] = STATE(205), + [sym_let_command_definition] = STATE(205), + [sym_environment_definition] = STATE(205), + [sym_glossary_entry_definition] = STATE(205), + [sym_glossary_entry_reference] = STATE(205), + [sym_acronym_definition] = STATE(205), + [sym_acronym_reference] = STATE(205), + [sym_theorem_definition] = STATE(205), + [sym_color_definition] = STATE(205), + [sym_color_set_definition] = STATE(205), + [sym_color_reference] = STATE(205), + [sym_tikz_library_import] = STATE(205), + [sym_text_mode] = STATE(205), + [aux_sym__section_repeat8] = STATE(437), + [aux_sym_part_repeat1] = STATE(205), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_RBRACK] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1857), + [anon_sym_BSLASHpart] = ACTIONS(1965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddpart] = ACTIONS(1965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHchapter] = ACTIONS(1965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddchap] = ACTIONS(1965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsection] = ACTIONS(1965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddsec] = ACTIONS(1965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHparagraph] = ACTIONS(1965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(1965), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), + }, + [187] = { + [sym_block_comment] = STATE(184), + [sym__flat_content] = STATE(184), + [sym__text_with_env_content] = STATE(184), + [sym__text_content] = STATE(184), + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(509), + [sym_curly_group] = STATE(184), + [sym_text] = STATE(184), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(184), + [sym_inline_formula] = STATE(184), + [sym_math_set] = STATE(184), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(184), + [sym_comment_environment] = STATE(184), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(184), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(184), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(184), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(184), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(184), + [sym_generic_command] = STATE(184), + [sym_package_include] = STATE(184), + [sym_class_include] = STATE(184), + [sym_latex_include] = STATE(184), + [sym_biblatex_include] = STATE(184), + [sym_bibtex_include] = STATE(184), + [sym_graphics_include] = STATE(184), + [sym_svg_include] = STATE(184), + [sym_inkscape_include] = STATE(184), + [sym_verbatim_include] = STATE(184), + [sym_import_include] = STATE(184), + [sym_caption] = STATE(184), + [sym_citation] = STATE(184), + [sym_label_definition] = STATE(184), + [sym_label_reference] = STATE(184), + [sym_label_reference_range] = STATE(184), + [sym_label_number] = STATE(184), + [sym_new_command_definition] = STATE(184), + [sym_old_command_definition] = STATE(184), + [sym_let_command_definition] = STATE(184), + [sym_environment_definition] = STATE(184), + [sym_glossary_entry_definition] = STATE(184), + [sym_glossary_entry_reference] = STATE(184), + [sym_acronym_definition] = STATE(184), + [sym_acronym_reference] = STATE(184), + [sym_theorem_definition] = STATE(184), + [sym_color_definition] = STATE(184), + [sym_color_set_definition] = STATE(184), + [sym_color_reference] = STATE(184), + [sym_tikz_library_import] = STATE(184), + [sym_text_mode] = STATE(184), + [aux_sym__section_repeat8] = STATE(509), + [aux_sym_part_repeat1] = STATE(184), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_RPAREN] = ACTIONS(1967), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_RBRACK] = ACTIONS(1967), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_EQ] = ACTIONS(1967), + [anon_sym_BSLASHpart] = ACTIONS(1961), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddpart] = ACTIONS(1961), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1957), + [anon_sym_BSLASHchapter] = ACTIONS(1961), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddchap] = ACTIONS(1961), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsection] = ACTIONS(1961), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddsec] = ACTIONS(1961), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubsection] = ACTIONS(1961), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHparagraph] = ACTIONS(1961), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1957), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1957), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [188] = { [sym_block_comment] = STATE(191), [sym__flat_content] = STATE(191), [sym__text_with_env_content] = STATE(191), [sym__text_content] = STATE(191), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(598), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(627), [sym_curly_group] = STATE(191), [sym_text] = STATE(191), - [sym_operator] = STATE(858), + [sym_operator] = STATE(862), [sym_displayed_equation] = STATE(191), [sym_inline_formula] = STATE(191), [sym_math_set] = STATE(191), - [sym_begin] = STATE(26), + [sym_begin] = STATE(29), [sym_generic_environment] = STATE(191), [sym_comment_environment] = STATE(191), - [sym__trivia_begin_comment] = STATE(2324), + [sym__trivia_begin_comment] = STATE(2344), [sym_verbatim_environment] = STATE(191), - [sym__trivia_begin_verbatim] = STATE(2323), + [sym__trivia_begin_verbatim] = STATE(2343), [sym_listing_environment] = STATE(191), - [sym__trivia_begin_listing] = STATE(2322), + [sym__trivia_begin_listing] = STATE(2342), [sym_minted_environment] = STATE(191), - [sym__trivia_begin_minted] = STATE(2321), + [sym__trivia_begin_minted] = STATE(2341), [sym_pycode_environment] = STATE(191), - [sym__trivia_begin_pycode] = STATE(2319), + [sym__trivia_begin_pycode] = STATE(2340), [sym__command] = STATE(191), [sym_generic_command] = STATE(191), [sym_package_include] = STATE(191), @@ -83471,302 +83320,306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(191), [sym_color_reference] = STATE(191), [sym_tikz_library_import] = STATE(191), - [aux_sym__section_repeat8] = STATE(598), + [sym_text_mode] = STATE(191), + [aux_sym__section_repeat8] = STATE(627), [aux_sym_part_repeat1] = STATE(191), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_RPAREN] = ACTIONS(1942), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_RBRACK] = ACTIONS(1942), - [anon_sym_COMMA] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1942), - [anon_sym_BSLASHpart] = ACTIONS(1936), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddpart] = ACTIONS(1936), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1932), - [anon_sym_BSLASHchapter] = ACTIONS(1936), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddchap] = ACTIONS(1936), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsection] = ACTIONS(1936), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddsec] = ACTIONS(1936), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubsection] = ACTIONS(1936), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHparagraph] = ACTIONS(1936), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1932), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1932), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1969), + [anon_sym_RPAREN] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1969), + [anon_sym_RBRACK] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(1969), + [anon_sym_EQ] = ACTIONS(1969), + [anon_sym_BSLASHpart] = ACTIONS(1961), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddpart] = ACTIONS(1961), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1957), + [anon_sym_BSLASHchapter] = ACTIONS(1961), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddchap] = ACTIONS(1961), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsection] = ACTIONS(1961), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddsec] = ACTIONS(1961), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubsection] = ACTIONS(1961), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHparagraph] = ACTIONS(1961), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1957), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1957), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, - [185] = { + [189] = { [sym_block_comment] = STATE(186), [sym__flat_content] = STATE(186), [sym__text_with_env_content] = STATE(186), [sym__text_content] = STATE(186), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(498), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(440), [sym_curly_group] = STATE(186), [sym_text] = STATE(186), - [sym_operator] = STATE(1000), + [sym_operator] = STATE(1082), [sym_displayed_equation] = STATE(186), [sym_inline_formula] = STATE(186), [sym_math_set] = STATE(186), - [sym_begin] = STATE(20), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(186), [sym_comment_environment] = STATE(186), - [sym__trivia_begin_comment] = STATE(2333), + [sym__trivia_begin_comment] = STATE(2328), [sym_verbatim_environment] = STATE(186), - [sym__trivia_begin_verbatim] = STATE(2332), + [sym__trivia_begin_verbatim] = STATE(2329), [sym_listing_environment] = STATE(186), - [sym__trivia_begin_listing] = STATE(2331), + [sym__trivia_begin_listing] = STATE(2330), [sym_minted_environment] = STATE(186), - [sym__trivia_begin_minted] = STATE(2330), + [sym__trivia_begin_minted] = STATE(2331), [sym_pycode_environment] = STATE(186), - [sym__trivia_begin_pycode] = STATE(2329), + [sym__trivia_begin_pycode] = STATE(2332), [sym__command] = STATE(186), [sym_generic_command] = STATE(186), [sym_package_include] = STATE(186), @@ -83798,302 +83651,637 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(186), [sym_color_reference] = STATE(186), [sym_tikz_library_import] = STATE(186), - [aux_sym__section_repeat8] = STATE(498), + [sym_text_mode] = STATE(186), + [aux_sym__section_repeat8] = STATE(440), [aux_sym_part_repeat1] = STATE(186), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_RBRACK] = ACTIONS(1971), + [anon_sym_COMMA] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1971), + [anon_sym_BSLASHpart] = ACTIONS(1961), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddpart] = ACTIONS(1961), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1957), + [anon_sym_BSLASHchapter] = ACTIONS(1961), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddchap] = ACTIONS(1961), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsection] = ACTIONS(1961), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddsec] = ACTIONS(1961), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubsection] = ACTIONS(1961), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHparagraph] = ACTIONS(1961), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1957), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHend] = ACTIONS(1961), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), + }, + [190] = { + [sym_block_comment] = STATE(185), + [sym__flat_content] = STATE(185), + [sym__text_with_env_content] = STATE(185), + [sym__text_content] = STATE(185), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(490), + [sym_curly_group] = STATE(185), + [sym_text] = STATE(185), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(185), + [sym_inline_formula] = STATE(185), + [sym_math_set] = STATE(185), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(185), + [sym_comment_environment] = STATE(185), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(185), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(185), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(185), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(185), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(185), + [sym_generic_command] = STATE(185), + [sym_package_include] = STATE(185), + [sym_class_include] = STATE(185), + [sym_latex_include] = STATE(185), + [sym_biblatex_include] = STATE(185), + [sym_bibtex_include] = STATE(185), + [sym_graphics_include] = STATE(185), + [sym_svg_include] = STATE(185), + [sym_inkscape_include] = STATE(185), + [sym_verbatim_include] = STATE(185), + [sym_import_include] = STATE(185), + [sym_caption] = STATE(185), + [sym_citation] = STATE(185), + [sym_label_definition] = STATE(185), + [sym_label_reference] = STATE(185), + [sym_label_reference_range] = STATE(185), + [sym_label_number] = STATE(185), + [sym_new_command_definition] = STATE(185), + [sym_old_command_definition] = STATE(185), + [sym_let_command_definition] = STATE(185), + [sym_environment_definition] = STATE(185), + [sym_glossary_entry_definition] = STATE(185), + [sym_glossary_entry_reference] = STATE(185), + [sym_acronym_definition] = STATE(185), + [sym_acronym_reference] = STATE(185), + [sym_theorem_definition] = STATE(185), + [sym_color_definition] = STATE(185), + [sym_color_set_definition] = STATE(185), + [sym_color_reference] = STATE(185), + [sym_tikz_library_import] = STATE(185), + [sym_text_mode] = STATE(185), + [aux_sym__section_repeat8] = STATE(490), + [aux_sym_part_repeat1] = STATE(185), [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1944), - [anon_sym_RPAREN] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1944), - [anon_sym_RBRACK] = ACTIONS(1944), - [anon_sym_COMMA] = ACTIONS(1944), - [anon_sym_EQ] = ACTIONS(1944), - [anon_sym_BSLASHpart] = ACTIONS(1936), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddpart] = ACTIONS(1936), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1932), - [anon_sym_BSLASHchapter] = ACTIONS(1936), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddchap] = ACTIONS(1936), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsection] = ACTIONS(1936), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddsec] = ACTIONS(1936), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubsection] = ACTIONS(1936), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHparagraph] = ACTIONS(1936), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1932), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1932), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1973), + [anon_sym_RPAREN] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1973), + [anon_sym_RBRACK] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(1973), + [anon_sym_EQ] = ACTIONS(1973), + [anon_sym_BSLASHpart] = ACTIONS(1961), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddpart] = ACTIONS(1961), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1957), + [anon_sym_BSLASHchapter] = ACTIONS(1961), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddchap] = ACTIONS(1961), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsection] = ACTIONS(1961), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHaddsec] = ACTIONS(1961), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubsection] = ACTIONS(1961), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1957), + [anon_sym_BSLASHparagraph] = ACTIONS(1961), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1957), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1957), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1957), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), }, - [186] = { + [191] = { [sym_block_comment] = STATE(200), [sym__flat_content] = STATE(200), [sym__text_with_env_content] = STATE(200), [sym__text_content] = STATE(200), - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(365), + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(596), [sym_curly_group] = STATE(200), [sym_text] = STATE(200), - [sym_operator] = STATE(1000), + [sym_operator] = STATE(862), [sym_displayed_equation] = STATE(200), [sym_inline_formula] = STATE(200), [sym_math_set] = STATE(200), - [sym_begin] = STATE(20), + [sym_begin] = STATE(29), [sym_generic_environment] = STATE(200), [sym_comment_environment] = STATE(200), - [sym__trivia_begin_comment] = STATE(2333), + [sym__trivia_begin_comment] = STATE(2344), [sym_verbatim_environment] = STATE(200), - [sym__trivia_begin_verbatim] = STATE(2332), + [sym__trivia_begin_verbatim] = STATE(2343), [sym_listing_environment] = STATE(200), - [sym__trivia_begin_listing] = STATE(2331), + [sym__trivia_begin_listing] = STATE(2342), [sym_minted_environment] = STATE(200), - [sym__trivia_begin_minted] = STATE(2330), + [sym__trivia_begin_minted] = STATE(2341), [sym_pycode_environment] = STATE(200), - [sym__trivia_begin_pycode] = STATE(2329), + [sym__trivia_begin_pycode] = STATE(2340), [sym__command] = STATE(200), [sym_generic_command] = STATE(200), [sym_package_include] = STATE(200), @@ -84125,2328 +84313,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(200), [sym_color_reference] = STATE(200), [sym_tikz_library_import] = STATE(200), - [aux_sym__section_repeat8] = STATE(365), + [sym_text_mode] = STATE(200), + [aux_sym__section_repeat8] = STATE(596), [aux_sym_part_repeat1] = STATE(200), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_BSLASHpart] = ACTIONS(1940), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddpart] = ACTIONS(1940), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHchapter] = ACTIONS(1940), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddchap] = ACTIONS(1940), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsection] = ACTIONS(1940), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddsec] = ACTIONS(1940), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHparagraph] = ACTIONS(1940), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1940), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1938), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), - }, - [187] = { - [sym_block_comment] = STATE(190), - [sym__flat_content] = STATE(190), - [sym__text_with_env_content] = STATE(190), - [sym__text_content] = STATE(190), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(452), - [sym_curly_group] = STATE(190), - [sym_text] = STATE(190), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(190), - [sym_inline_formula] = STATE(190), - [sym_math_set] = STATE(190), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(190), - [sym_comment_environment] = STATE(190), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(190), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(190), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(190), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(190), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(190), - [sym_generic_command] = STATE(190), - [sym_package_include] = STATE(190), - [sym_class_include] = STATE(190), - [sym_latex_include] = STATE(190), - [sym_biblatex_include] = STATE(190), - [sym_bibtex_include] = STATE(190), - [sym_graphics_include] = STATE(190), - [sym_svg_include] = STATE(190), - [sym_inkscape_include] = STATE(190), - [sym_verbatim_include] = STATE(190), - [sym_import_include] = STATE(190), - [sym_caption] = STATE(190), - [sym_citation] = STATE(190), - [sym_label_definition] = STATE(190), - [sym_label_reference] = STATE(190), - [sym_label_reference_range] = STATE(190), - [sym_label_number] = STATE(190), - [sym_new_command_definition] = STATE(190), - [sym_old_command_definition] = STATE(190), - [sym_let_command_definition] = STATE(190), - [sym_environment_definition] = STATE(190), - [sym_glossary_entry_definition] = STATE(190), - [sym_glossary_entry_reference] = STATE(190), - [sym_acronym_definition] = STATE(190), - [sym_acronym_reference] = STATE(190), - [sym_theorem_definition] = STATE(190), - [sym_color_definition] = STATE(190), - [sym_color_set_definition] = STATE(190), - [sym_color_reference] = STATE(190), - [sym_tikz_library_import] = STATE(190), - [aux_sym__section_repeat8] = STATE(452), - [aux_sym_part_repeat1] = STATE(190), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_RPAREN] = ACTIONS(1946), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_RBRACK] = ACTIONS(1946), - [anon_sym_COMMA] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1946), - [anon_sym_BSLASHpart] = ACTIONS(1936), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddpart] = ACTIONS(1936), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1932), - [anon_sym_BSLASHchapter] = ACTIONS(1936), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddchap] = ACTIONS(1936), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsection] = ACTIONS(1936), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddsec] = ACTIONS(1936), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubsection] = ACTIONS(1936), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHparagraph] = ACTIONS(1936), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1932), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1936), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), - }, - [188] = { - [sym_block_comment] = STATE(189), - [sym__flat_content] = STATE(189), - [sym__text_with_env_content] = STATE(189), - [sym__text_content] = STATE(189), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(506), - [sym_curly_group] = STATE(189), - [sym_text] = STATE(189), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(189), - [sym_inline_formula] = STATE(189), - [sym_math_set] = STATE(189), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(189), - [sym_comment_environment] = STATE(189), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(189), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(189), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(189), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(189), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(189), - [sym_generic_command] = STATE(189), - [sym_package_include] = STATE(189), - [sym_class_include] = STATE(189), - [sym_latex_include] = STATE(189), - [sym_biblatex_include] = STATE(189), - [sym_bibtex_include] = STATE(189), - [sym_graphics_include] = STATE(189), - [sym_svg_include] = STATE(189), - [sym_inkscape_include] = STATE(189), - [sym_verbatim_include] = STATE(189), - [sym_import_include] = STATE(189), - [sym_caption] = STATE(189), - [sym_citation] = STATE(189), - [sym_label_definition] = STATE(189), - [sym_label_reference] = STATE(189), - [sym_label_reference_range] = STATE(189), - [sym_label_number] = STATE(189), - [sym_new_command_definition] = STATE(189), - [sym_old_command_definition] = STATE(189), - [sym_let_command_definition] = STATE(189), - [sym_environment_definition] = STATE(189), - [sym_glossary_entry_definition] = STATE(189), - [sym_glossary_entry_reference] = STATE(189), - [sym_acronym_definition] = STATE(189), - [sym_acronym_reference] = STATE(189), - [sym_theorem_definition] = STATE(189), - [sym_color_definition] = STATE(189), - [sym_color_set_definition] = STATE(189), - [sym_color_reference] = STATE(189), - [sym_tikz_library_import] = STATE(189), - [aux_sym__section_repeat8] = STATE(506), - [aux_sym_part_repeat1] = STATE(189), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1948), - [anon_sym_RPAREN] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_RBRACK] = ACTIONS(1948), - [anon_sym_COMMA] = ACTIONS(1948), - [anon_sym_EQ] = ACTIONS(1948), - [anon_sym_BSLASHpart] = ACTIONS(1936), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddpart] = ACTIONS(1936), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1932), - [anon_sym_BSLASHchapter] = ACTIONS(1936), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddchap] = ACTIONS(1936), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsection] = ACTIONS(1936), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHaddsec] = ACTIONS(1936), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubsection] = ACTIONS(1936), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1936), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1932), - [anon_sym_BSLASHparagraph] = ACTIONS(1936), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1932), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1936), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1932), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1932), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [189] = { - [sym_block_comment] = STATE(203), - [sym__flat_content] = STATE(203), - [sym__text_with_env_content] = STATE(203), - [sym__text_content] = STATE(203), - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(578), - [sym_curly_group] = STATE(203), - [sym_text] = STATE(203), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(203), - [sym_inline_formula] = STATE(203), - [sym_math_set] = STATE(203), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(203), - [sym_comment_environment] = STATE(203), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(203), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(203), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(203), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(203), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(203), - [sym_generic_command] = STATE(203), - [sym_package_include] = STATE(203), - [sym_class_include] = STATE(203), - [sym_latex_include] = STATE(203), - [sym_biblatex_include] = STATE(203), - [sym_bibtex_include] = STATE(203), - [sym_graphics_include] = STATE(203), - [sym_svg_include] = STATE(203), - [sym_inkscape_include] = STATE(203), - [sym_verbatim_include] = STATE(203), - [sym_import_include] = STATE(203), - [sym_caption] = STATE(203), - [sym_citation] = STATE(203), - [sym_label_definition] = STATE(203), - [sym_label_reference] = STATE(203), - [sym_label_reference_range] = STATE(203), - [sym_label_number] = STATE(203), - [sym_new_command_definition] = STATE(203), - [sym_old_command_definition] = STATE(203), - [sym_let_command_definition] = STATE(203), - [sym_environment_definition] = STATE(203), - [sym_glossary_entry_definition] = STATE(203), - [sym_glossary_entry_reference] = STATE(203), - [sym_acronym_definition] = STATE(203), - [sym_acronym_reference] = STATE(203), - [sym_theorem_definition] = STATE(203), - [sym_color_definition] = STATE(203), - [sym_color_set_definition] = STATE(203), - [sym_color_reference] = STATE(203), - [sym_tikz_library_import] = STATE(203), - [aux_sym__section_repeat8] = STATE(578), - [aux_sym_part_repeat1] = STATE(203), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_RBRACK] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_BSLASHpart] = ACTIONS(1940), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddpart] = ACTIONS(1940), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHchapter] = ACTIONS(1940), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddchap] = ACTIONS(1940), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsection] = ACTIONS(1940), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddsec] = ACTIONS(1940), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHparagraph] = ACTIONS(1940), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1940), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1938), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [190] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(541), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [aux_sym__section_repeat8] = STATE(541), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_COMMA] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_BSLASHpart] = ACTIONS(1940), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddpart] = ACTIONS(1940), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHchapter] = ACTIONS(1940), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddchap] = ACTIONS(1940), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsection] = ACTIONS(1940), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddsec] = ACTIONS(1940), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHparagraph] = ACTIONS(1940), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1940), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(1940), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), - }, - [191] = { - [sym_block_comment] = STATE(205), - [sym__flat_content] = STATE(205), - [sym__text_with_env_content] = STATE(205), - [sym__text_content] = STATE(205), - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(606), - [sym_curly_group] = STATE(205), - [sym_text] = STATE(205), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(205), - [sym_inline_formula] = STATE(205), - [sym_math_set] = STATE(205), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(205), - [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(205), - [sym_generic_command] = STATE(205), - [sym_package_include] = STATE(205), - [sym_class_include] = STATE(205), - [sym_latex_include] = STATE(205), - [sym_biblatex_include] = STATE(205), - [sym_bibtex_include] = STATE(205), - [sym_graphics_include] = STATE(205), - [sym_svg_include] = STATE(205), - [sym_inkscape_include] = STATE(205), - [sym_verbatim_include] = STATE(205), - [sym_import_include] = STATE(205), - [sym_caption] = STATE(205), - [sym_citation] = STATE(205), - [sym_label_definition] = STATE(205), - [sym_label_reference] = STATE(205), - [sym_label_reference_range] = STATE(205), - [sym_label_number] = STATE(205), - [sym_new_command_definition] = STATE(205), - [sym_old_command_definition] = STATE(205), - [sym_let_command_definition] = STATE(205), - [sym_environment_definition] = STATE(205), - [sym_glossary_entry_definition] = STATE(205), - [sym_glossary_entry_reference] = STATE(205), - [sym_acronym_definition] = STATE(205), - [sym_acronym_reference] = STATE(205), - [sym_theorem_definition] = STATE(205), - [sym_color_definition] = STATE(205), - [sym_color_set_definition] = STATE(205), - [sym_color_reference] = STATE(205), - [sym_tikz_library_import] = STATE(205), - [aux_sym__section_repeat8] = STATE(606), - [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_COMMA] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1832), - [anon_sym_BSLASHpart] = ACTIONS(1940), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddpart] = ACTIONS(1940), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHchapter] = ACTIONS(1940), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddchap] = ACTIONS(1940), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsection] = ACTIONS(1940), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddsec] = ACTIONS(1940), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHparagraph] = ACTIONS(1940), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1940), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1938), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_BSLASHpart] = ACTIONS(1965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddpart] = ACTIONS(1965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHchapter] = ACTIONS(1965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddchap] = ACTIONS(1965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsection] = ACTIONS(1965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddsec] = ACTIONS(1965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHparagraph] = ACTIONS(1965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1963), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, [192] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [aux_sym_part_repeat1] = STATE(192), - [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(1950), - [sym_command_name] = ACTIONS(1952), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_RPAREN] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_RBRACK] = ACTIONS(1958), - [anon_sym_COMMA] = ACTIONS(1958), - [anon_sym_EQ] = ACTIONS(1958), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1950), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1950), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1950), - [sym_word] = ACTIONS(1966), - [sym_placeholder] = ACTIONS(1969), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_CARET] = ACTIONS(1972), - [anon_sym__] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1972), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_COLON] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1975), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1975), - [anon_sym_DOLLAR] = ACTIONS(1978), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1984), - [anon_sym_BSLASHbegin] = ACTIONS(1987), - [anon_sym_BSLASHusepackage] = ACTIONS(1990), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1990), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1993), - [anon_sym_BSLASHinclude] = ACTIONS(1996), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1996), - [anon_sym_BSLASHinput] = ACTIONS(1996), - [anon_sym_BSLASHsubfile] = ACTIONS(1996), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1999), - [anon_sym_BSLASHbibliography] = ACTIONS(2002), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2005), - [anon_sym_BSLASHincludesvg] = ACTIONS(2008), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2014), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2014), - [anon_sym_BSLASHimport] = ACTIONS(2017), - [anon_sym_BSLASHsubimport] = ACTIONS(2017), - [anon_sym_BSLASHinputfrom] = ACTIONS(2017), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2017), - [anon_sym_BSLASHincludefrom] = ACTIONS(2017), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2017), - [anon_sym_BSLASHcaption] = ACTIONS(2020), - [anon_sym_BSLASHcite] = ACTIONS(2023), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2026), - [anon_sym_BSLASHCite] = ACTIONS(2023), - [anon_sym_BSLASHnocite] = ACTIONS(2023), - [anon_sym_BSLASHcitet] = ACTIONS(2023), - [anon_sym_BSLASHcitep] = ACTIONS(2023), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2026), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2026), - [anon_sym_BSLASHciteauthor] = ACTIONS(2023), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2026), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2023), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2026), - [anon_sym_BSLASHcitetitle] = ACTIONS(2023), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2026), - [anon_sym_BSLASHciteyear] = ACTIONS(2023), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2026), - [anon_sym_BSLASHcitedate] = ACTIONS(2023), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2026), - [anon_sym_BSLASHciteurl] = ACTIONS(2023), - [anon_sym_BSLASHfullcite] = ACTIONS(2023), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2023), - [anon_sym_BSLASHcitealt] = ACTIONS(2023), - [anon_sym_BSLASHcitealp] = ACTIONS(2023), - [anon_sym_BSLASHcitetext] = ACTIONS(2023), - [anon_sym_BSLASHparencite] = ACTIONS(2023), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2026), - [anon_sym_BSLASHParencite] = ACTIONS(2023), - [anon_sym_BSLASHfootcite] = ACTIONS(2023), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2023), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2023), - [anon_sym_BSLASHtextcite] = ACTIONS(2023), - [anon_sym_BSLASHTextcite] = ACTIONS(2023), - [anon_sym_BSLASHsmartcite] = ACTIONS(2023), - [anon_sym_BSLASHSmartcite] = ACTIONS(2023), - [anon_sym_BSLASHsupercite] = ACTIONS(2023), - [anon_sym_BSLASHautocite] = ACTIONS(2023), - [anon_sym_BSLASHAutocite] = ACTIONS(2023), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2026), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2026), - [anon_sym_BSLASHvolcite] = ACTIONS(2023), - [anon_sym_BSLASHVolcite] = ACTIONS(2023), - [anon_sym_BSLASHpvolcite] = ACTIONS(2023), - [anon_sym_BSLASHPvolcite] = ACTIONS(2023), - [anon_sym_BSLASHfvolcite] = ACTIONS(2023), - [anon_sym_BSLASHftvolcite] = ACTIONS(2023), - [anon_sym_BSLASHsvolcite] = ACTIONS(2023), - [anon_sym_BSLASHSvolcite] = ACTIONS(2023), - [anon_sym_BSLASHtvolcite] = ACTIONS(2023), - [anon_sym_BSLASHTvolcite] = ACTIONS(2023), - [anon_sym_BSLASHavolcite] = ACTIONS(2023), - [anon_sym_BSLASHAvolcite] = ACTIONS(2023), - [anon_sym_BSLASHnotecite] = ACTIONS(2023), - [anon_sym_BSLASHNotecite] = ACTIONS(2023), - [anon_sym_BSLASHpnotecite] = ACTIONS(2023), - [anon_sym_BSLASHPnotecite] = ACTIONS(2023), - [anon_sym_BSLASHfnotecite] = ACTIONS(2023), - [anon_sym_BSLASHlabel] = ACTIONS(2029), - [anon_sym_BSLASHref] = ACTIONS(2032), - [anon_sym_BSLASHeqref] = ACTIONS(2032), - [anon_sym_BSLASHvref] = ACTIONS(2032), - [anon_sym_BSLASHVref] = ACTIONS(2032), - [anon_sym_BSLASHautoref] = ACTIONS(2032), - [anon_sym_BSLASHpageref] = ACTIONS(2032), - [anon_sym_BSLASHcref] = ACTIONS(2032), - [anon_sym_BSLASHCref] = ACTIONS(2032), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2035), - [anon_sym_BSLASHnamecref] = ACTIONS(2032), - [anon_sym_BSLASHnameCref] = ACTIONS(2032), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2032), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2032), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2032), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2032), - [anon_sym_BSLASHlabelcref] = ACTIONS(2032), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2032), - [anon_sym_BSLASHcrefrange] = ACTIONS(2038), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2041), - [anon_sym_BSLASHCrefrange] = ACTIONS(2038), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2041), - [anon_sym_BSLASHnewlabel] = ACTIONS(2044), - [anon_sym_BSLASHnewcommand] = ACTIONS(2047), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2050), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2047), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2050), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2047), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2050), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2047), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2050), - [anon_sym_BSLASHdef] = ACTIONS(2053), - [anon_sym_BSLASHlet] = ACTIONS(2056), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2059), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2062), - [anon_sym_BSLASHgls] = ACTIONS(2065), - [anon_sym_BSLASHGls] = ACTIONS(2065), - [anon_sym_BSLASHGLS] = ACTIONS(2065), - [anon_sym_BSLASHglspl] = ACTIONS(2065), - [anon_sym_BSLASHGlspl] = ACTIONS(2065), - [anon_sym_BSLASHGLSpl] = ACTIONS(2065), - [anon_sym_BSLASHglsdisp] = ACTIONS(2065), - [anon_sym_BSLASHglslink] = ACTIONS(2065), - [anon_sym_BSLASHglstext] = ACTIONS(2065), - [anon_sym_BSLASHGlstext] = ACTIONS(2065), - [anon_sym_BSLASHGLStext] = ACTIONS(2065), - [anon_sym_BSLASHglsfirst] = ACTIONS(2065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2065), - [anon_sym_BSLASHglsplural] = ACTIONS(2065), - [anon_sym_BSLASHGlsplural] = ACTIONS(2065), - [anon_sym_BSLASHGLSplural] = ACTIONS(2065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2065), - [anon_sym_BSLASHglsname] = ACTIONS(2065), - [anon_sym_BSLASHGlsname] = ACTIONS(2065), - [anon_sym_BSLASHGLSname] = ACTIONS(2065), - [anon_sym_BSLASHglssymbol] = ACTIONS(2065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2065), - [anon_sym_BSLASHglsdesc] = ACTIONS(2065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2065), - [anon_sym_BSLASHglsuseri] = ACTIONS(2065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2065), - [anon_sym_BSLASHglsuserii] = ACTIONS(2065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2065), - [anon_sym_BSLASHglsuserv] = ACTIONS(2065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2065), - [anon_sym_BSLASHglsuservi] = ACTIONS(2065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2065), - [anon_sym_BSLASHnewacronym] = ACTIONS(2068), - [anon_sym_BSLASHacrshort] = ACTIONS(2071), - [anon_sym_BSLASHAcrshort] = ACTIONS(2071), - [anon_sym_BSLASHACRshort] = ACTIONS(2071), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2071), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2071), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2071), - [anon_sym_BSLASHacrlong] = ACTIONS(2071), - [anon_sym_BSLASHAcrlong] = ACTIONS(2071), - [anon_sym_BSLASHACRlong] = ACTIONS(2071), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2071), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2071), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2071), - [anon_sym_BSLASHacrfull] = ACTIONS(2071), - [anon_sym_BSLASHAcrfull] = ACTIONS(2071), - [anon_sym_BSLASHACRfull] = ACTIONS(2071), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2071), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2071), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2071), - [anon_sym_BSLASHacs] = ACTIONS(2071), - [anon_sym_BSLASHAcs] = ACTIONS(2071), - [anon_sym_BSLASHacsp] = ACTIONS(2071), - [anon_sym_BSLASHAcsp] = ACTIONS(2071), - [anon_sym_BSLASHacl] = ACTIONS(2071), - [anon_sym_BSLASHAcl] = ACTIONS(2071), - [anon_sym_BSLASHaclp] = ACTIONS(2071), - [anon_sym_BSLASHAclp] = ACTIONS(2071), - [anon_sym_BSLASHacf] = ACTIONS(2071), - [anon_sym_BSLASHAcf] = ACTIONS(2071), - [anon_sym_BSLASHacfp] = ACTIONS(2071), - [anon_sym_BSLASHAcfp] = ACTIONS(2071), - [anon_sym_BSLASHac] = ACTIONS(2071), - [anon_sym_BSLASHAc] = ACTIONS(2071), - [anon_sym_BSLASHacp] = ACTIONS(2071), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2071), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2071), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2071), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2071), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2071), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2071), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2071), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2071), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2071), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2071), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2074), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2074), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2080), - [anon_sym_BSLASHcolor] = ACTIONS(2083), - [anon_sym_BSLASHcolorbox] = ACTIONS(2083), - [anon_sym_BSLASHtextcolor] = ACTIONS(2083), - [anon_sym_BSLASHpagecolor] = ACTIONS(2083), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2086), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2086), - }, - [193] = { - [sym_block_comment] = STATE(192), - [sym__flat_content] = STATE(192), - [sym__text_with_env_content] = STATE(192), - [sym__text_content] = STATE(192), - [sym_curly_group] = STATE(192), - [sym_text] = STATE(192), - [sym_operator] = STATE(805), - [sym_displayed_equation] = STATE(192), - [sym_inline_formula] = STATE(192), - [sym_math_set] = STATE(192), - [sym_begin] = STATE(37), - [sym_generic_environment] = STATE(192), - [sym_comment_environment] = STATE(192), - [sym__trivia_begin_comment] = STATE(2391), - [sym_verbatim_environment] = STATE(192), - [sym__trivia_begin_verbatim] = STATE(2393), - [sym_listing_environment] = STATE(192), - [sym__trivia_begin_listing] = STATE(2395), - [sym_minted_environment] = STATE(192), - [sym__trivia_begin_minted] = STATE(2396), - [sym_pycode_environment] = STATE(192), - [sym__trivia_begin_pycode] = STATE(2408), - [sym__command] = STATE(192), - [sym_generic_command] = STATE(192), - [sym_package_include] = STATE(192), - [sym_class_include] = STATE(192), - [sym_latex_include] = STATE(192), - [sym_biblatex_include] = STATE(192), - [sym_bibtex_include] = STATE(192), - [sym_graphics_include] = STATE(192), - [sym_svg_include] = STATE(192), - [sym_inkscape_include] = STATE(192), - [sym_verbatim_include] = STATE(192), - [sym_import_include] = STATE(192), - [sym_caption] = STATE(192), - [sym_citation] = STATE(192), - [sym_label_definition] = STATE(192), - [sym_label_reference] = STATE(192), - [sym_label_reference_range] = STATE(192), - [sym_label_number] = STATE(192), - [sym_new_command_definition] = STATE(192), - [sym_old_command_definition] = STATE(192), - [sym_let_command_definition] = STATE(192), - [sym_environment_definition] = STATE(192), - [sym_glossary_entry_definition] = STATE(192), - [sym_glossary_entry_reference] = STATE(192), - [sym_acronym_definition] = STATE(192), - [sym_acronym_reference] = STATE(192), - [sym_theorem_definition] = STATE(192), - [sym_color_definition] = STATE(192), - [sym_color_set_definition] = STATE(192), - [sym_color_reference] = STATE(192), - [sym_tikz_library_import] = STATE(192), - [aux_sym_part_repeat1] = STATE(192), + [sym_block_comment] = STATE(193), + [sym__flat_content] = STATE(193), + [sym__text_with_env_content] = STATE(193), + [sym__text_content] = STATE(193), + [sym_curly_group] = STATE(193), + [sym_text] = STATE(193), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(193), + [sym_inline_formula] = STATE(193), + [sym_math_set] = STATE(193), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(193), + [sym_comment_environment] = STATE(193), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(193), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(193), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(193), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(193), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(193), + [sym_generic_command] = STATE(193), + [sym_package_include] = STATE(193), + [sym_class_include] = STATE(193), + [sym_latex_include] = STATE(193), + [sym_biblatex_include] = STATE(193), + [sym_bibtex_include] = STATE(193), + [sym_graphics_include] = STATE(193), + [sym_svg_include] = STATE(193), + [sym_inkscape_include] = STATE(193), + [sym_verbatim_include] = STATE(193), + [sym_import_include] = STATE(193), + [sym_caption] = STATE(193), + [sym_citation] = STATE(193), + [sym_label_definition] = STATE(193), + [sym_label_reference] = STATE(193), + [sym_label_reference_range] = STATE(193), + [sym_label_number] = STATE(193), + [sym_new_command_definition] = STATE(193), + [sym_old_command_definition] = STATE(193), + [sym_let_command_definition] = STATE(193), + [sym_environment_definition] = STATE(193), + [sym_glossary_entry_definition] = STATE(193), + [sym_glossary_entry_reference] = STATE(193), + [sym_acronym_definition] = STATE(193), + [sym_acronym_reference] = STATE(193), + [sym_theorem_definition] = STATE(193), + [sym_color_definition] = STATE(193), + [sym_color_set_definition] = STATE(193), + [sym_color_reference] = STATE(193), + [sym_tikz_library_import] = STATE(193), + [sym_text_mode] = STATE(193), + [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(2089), + [ts_builtin_sym_end] = ACTIONS(1975), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_RPAREN] = ACTIONS(1814), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_RBRACK] = ACTIONS(1814), - [anon_sym_COMMA] = ACTIONS(1814), - [anon_sym_EQ] = ACTIONS(1814), - [anon_sym_BSLASHpart] = ACTIONS(2091), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddpart] = ACTIONS(2091), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2089), - [anon_sym_BSLASHchapter] = ACTIONS(2091), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddchap] = ACTIONS(2091), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsection] = ACTIONS(2091), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddsec] = ACTIONS(2091), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubsection] = ACTIONS(2091), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2091), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHparagraph] = ACTIONS(2091), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2091), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2089), - [anon_sym_BSLASHitem] = ACTIONS(2091), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_RPAREN] = ACTIONS(1839), + [anon_sym_LBRACK] = ACTIONS(1839), + [anon_sym_RBRACK] = ACTIONS(1839), + [anon_sym_COMMA] = ACTIONS(1839), + [anon_sym_EQ] = ACTIONS(1839), + [anon_sym_BSLASHpart] = ACTIONS(1977), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1977), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1977), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1977), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1977), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1977), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1977), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1977), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1977), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1977), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1977), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(1975), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -86680,30 +84913,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, - [194] = { + [193] = { [sym_block_comment] = STATE(193), [sym__flat_content] = STATE(193), [sym__text_with_env_content] = STATE(193), [sym__text_content] = STATE(193), [sym_curly_group] = STATE(193), [sym_text] = STATE(193), - [sym_operator] = STATE(805), + [sym_operator] = STATE(782), [sym_displayed_equation] = STATE(193), [sym_inline_formula] = STATE(193), [sym_math_set] = STATE(193), - [sym_begin] = STATE(37), + [sym_begin] = STATE(36), [sym_generic_environment] = STATE(193), [sym_comment_environment] = STATE(193), - [sym__trivia_begin_comment] = STATE(2391), + [sym__trivia_begin_comment] = STATE(2417), [sym_verbatim_environment] = STATE(193), - [sym__trivia_begin_verbatim] = STATE(2393), + [sym__trivia_begin_verbatim] = STATE(2429), [sym_listing_environment] = STATE(193), - [sym__trivia_begin_listing] = STATE(2395), + [sym__trivia_begin_listing] = STATE(2430), [sym_minted_environment] = STATE(193), - [sym__trivia_begin_minted] = STATE(2396), + [sym__trivia_begin_minted] = STATE(2431), [sym_pycode_environment] = STATE(193), - [sym__trivia_begin_pycode] = STATE(2408), + [sym__trivia_begin_pycode] = STATE(2461), [sym__command] = STATE(193), [sym_generic_command] = STATE(193), [sym_package_include] = STATE(193), @@ -86735,43 +84971,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(193), [sym_color_reference] = STATE(193), [sym_tikz_library_import] = STATE(193), + [sym_text_mode] = STATE(193), [aux_sym_part_repeat1] = STATE(193), [aux_sym_text_repeat1] = STATE(207), - [ts_builtin_sym_end] = ACTIONS(2093), + [ts_builtin_sym_end] = ACTIONS(1979), + [sym_command_name] = ACTIONS(1981), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_RPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_RBRACK] = ACTIONS(1987), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_EQ] = ACTIONS(1987), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1979), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1979), + [anon_sym_BSLASHitem] = ACTIONS(1990), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1979), + [sym_word] = ACTIONS(1995), + [sym_placeholder] = ACTIONS(1998), + [anon_sym_PLUS] = ACTIONS(2001), + [anon_sym_DASH] = ACTIONS(2001), + [anon_sym_STAR] = ACTIONS(2001), + [anon_sym_SLASH] = ACTIONS(2001), + [anon_sym_CARET] = ACTIONS(2001), + [anon_sym__] = ACTIONS(2001), + [anon_sym_LT] = ACTIONS(2001), + [anon_sym_GT] = ACTIONS(2001), + [anon_sym_BANG] = ACTIONS(2001), + [anon_sym_PIPE] = ACTIONS(2001), + [anon_sym_COLON] = ACTIONS(2001), + [anon_sym_SQUOTE] = ACTIONS(2001), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2004), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2004), + [anon_sym_DOLLAR] = ACTIONS(2007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2010), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2013), + [anon_sym_BSLASHbegin] = ACTIONS(2016), + [anon_sym_BSLASHusepackage] = ACTIONS(2019), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2019), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2022), + [anon_sym_BSLASHinclude] = ACTIONS(2025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2025), + [anon_sym_BSLASHinput] = ACTIONS(2025), + [anon_sym_BSLASHsubfile] = ACTIONS(2025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2028), + [anon_sym_BSLASHbibliography] = ACTIONS(2031), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2034), + [anon_sym_BSLASHincludesvg] = ACTIONS(2037), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2040), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2043), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2043), + [anon_sym_BSLASHimport] = ACTIONS(2046), + [anon_sym_BSLASHsubimport] = ACTIONS(2046), + [anon_sym_BSLASHinputfrom] = ACTIONS(2046), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2046), + [anon_sym_BSLASHincludefrom] = ACTIONS(2046), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2046), + [anon_sym_BSLASHcaption] = ACTIONS(2049), + [anon_sym_BSLASHcite] = ACTIONS(2052), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2055), + [anon_sym_BSLASHCite] = ACTIONS(2052), + [anon_sym_BSLASHnocite] = ACTIONS(2052), + [anon_sym_BSLASHcitet] = ACTIONS(2052), + [anon_sym_BSLASHcitep] = ACTIONS(2052), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2055), + [anon_sym_BSLASHciteauthor] = ACTIONS(2052), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2052), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2055), + [anon_sym_BSLASHcitetitle] = ACTIONS(2052), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2055), + [anon_sym_BSLASHciteyear] = ACTIONS(2052), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2055), + [anon_sym_BSLASHcitedate] = ACTIONS(2052), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2055), + [anon_sym_BSLASHciteurl] = ACTIONS(2052), + [anon_sym_BSLASHfullcite] = ACTIONS(2052), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2052), + [anon_sym_BSLASHcitealt] = ACTIONS(2052), + [anon_sym_BSLASHcitealp] = ACTIONS(2052), + [anon_sym_BSLASHcitetext] = ACTIONS(2052), + [anon_sym_BSLASHparencite] = ACTIONS(2052), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2055), + [anon_sym_BSLASHParencite] = ACTIONS(2052), + [anon_sym_BSLASHfootcite] = ACTIONS(2052), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2052), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2052), + [anon_sym_BSLASHtextcite] = ACTIONS(2052), + [anon_sym_BSLASHTextcite] = ACTIONS(2052), + [anon_sym_BSLASHsmartcite] = ACTIONS(2052), + [anon_sym_BSLASHSmartcite] = ACTIONS(2052), + [anon_sym_BSLASHsupercite] = ACTIONS(2052), + [anon_sym_BSLASHautocite] = ACTIONS(2052), + [anon_sym_BSLASHAutocite] = ACTIONS(2052), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2055), + [anon_sym_BSLASHvolcite] = ACTIONS(2052), + [anon_sym_BSLASHVolcite] = ACTIONS(2052), + [anon_sym_BSLASHpvolcite] = ACTIONS(2052), + [anon_sym_BSLASHPvolcite] = ACTIONS(2052), + [anon_sym_BSLASHfvolcite] = ACTIONS(2052), + [anon_sym_BSLASHftvolcite] = ACTIONS(2052), + [anon_sym_BSLASHsvolcite] = ACTIONS(2052), + [anon_sym_BSLASHSvolcite] = ACTIONS(2052), + [anon_sym_BSLASHtvolcite] = ACTIONS(2052), + [anon_sym_BSLASHTvolcite] = ACTIONS(2052), + [anon_sym_BSLASHavolcite] = ACTIONS(2052), + [anon_sym_BSLASHAvolcite] = ACTIONS(2052), + [anon_sym_BSLASHnotecite] = ACTIONS(2052), + [anon_sym_BSLASHNotecite] = ACTIONS(2052), + [anon_sym_BSLASHpnotecite] = ACTIONS(2052), + [anon_sym_BSLASHPnotecite] = ACTIONS(2052), + [anon_sym_BSLASHfnotecite] = ACTIONS(2052), + [anon_sym_BSLASHlabel] = ACTIONS(2058), + [anon_sym_BSLASHref] = ACTIONS(2061), + [anon_sym_BSLASHeqref] = ACTIONS(2061), + [anon_sym_BSLASHvref] = ACTIONS(2061), + [anon_sym_BSLASHVref] = ACTIONS(2061), + [anon_sym_BSLASHautoref] = ACTIONS(2061), + [anon_sym_BSLASHpageref] = ACTIONS(2061), + [anon_sym_BSLASHcref] = ACTIONS(2061), + [anon_sym_BSLASHCref] = ACTIONS(2061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2064), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2064), + [anon_sym_BSLASHnamecref] = ACTIONS(2061), + [anon_sym_BSLASHnameCref] = ACTIONS(2061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2061), + [anon_sym_BSLASHlabelcref] = ACTIONS(2061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2061), + [anon_sym_BSLASHcrefrange] = ACTIONS(2067), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2070), + [anon_sym_BSLASHCrefrange] = ACTIONS(2067), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2070), + [anon_sym_BSLASHnewlabel] = ACTIONS(2073), + [anon_sym_BSLASHnewcommand] = ACTIONS(2076), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2076), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2076), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2076), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2079), + [anon_sym_BSLASHdef] = ACTIONS(2082), + [anon_sym_BSLASHlet] = ACTIONS(2085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2088), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2091), + [anon_sym_BSLASHgls] = ACTIONS(2094), + [anon_sym_BSLASHGls] = ACTIONS(2094), + [anon_sym_BSLASHGLS] = ACTIONS(2094), + [anon_sym_BSLASHglspl] = ACTIONS(2094), + [anon_sym_BSLASHGlspl] = ACTIONS(2094), + [anon_sym_BSLASHGLSpl] = ACTIONS(2094), + [anon_sym_BSLASHglsdisp] = ACTIONS(2094), + [anon_sym_BSLASHglslink] = ACTIONS(2094), + [anon_sym_BSLASHglstext] = ACTIONS(2094), + [anon_sym_BSLASHGlstext] = ACTIONS(2094), + [anon_sym_BSLASHGLStext] = ACTIONS(2094), + [anon_sym_BSLASHglsfirst] = ACTIONS(2094), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2094), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2094), + [anon_sym_BSLASHglsplural] = ACTIONS(2094), + [anon_sym_BSLASHGlsplural] = ACTIONS(2094), + [anon_sym_BSLASHGLSplural] = ACTIONS(2094), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2094), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2094), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2094), + [anon_sym_BSLASHglsname] = ACTIONS(2094), + [anon_sym_BSLASHGlsname] = ACTIONS(2094), + [anon_sym_BSLASHGLSname] = ACTIONS(2094), + [anon_sym_BSLASHglssymbol] = ACTIONS(2094), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2094), + [anon_sym_BSLASHglsdesc] = ACTIONS(2094), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2094), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2094), + [anon_sym_BSLASHglsuseri] = ACTIONS(2094), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2094), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2094), + [anon_sym_BSLASHglsuserii] = ACTIONS(2094), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2094), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2094), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2094), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2094), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2094), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2094), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2094), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2094), + [anon_sym_BSLASHglsuserv] = ACTIONS(2094), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2094), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2094), + [anon_sym_BSLASHglsuservi] = ACTIONS(2094), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2094), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2094), + [anon_sym_BSLASHnewacronym] = ACTIONS(2097), + [anon_sym_BSLASHacrshort] = ACTIONS(2100), + [anon_sym_BSLASHAcrshort] = ACTIONS(2100), + [anon_sym_BSLASHACRshort] = ACTIONS(2100), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2100), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2100), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2100), + [anon_sym_BSLASHacrlong] = ACTIONS(2100), + [anon_sym_BSLASHAcrlong] = ACTIONS(2100), + [anon_sym_BSLASHACRlong] = ACTIONS(2100), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2100), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2100), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2100), + [anon_sym_BSLASHacrfull] = ACTIONS(2100), + [anon_sym_BSLASHAcrfull] = ACTIONS(2100), + [anon_sym_BSLASHACRfull] = ACTIONS(2100), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2100), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2100), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2100), + [anon_sym_BSLASHacs] = ACTIONS(2100), + [anon_sym_BSLASHAcs] = ACTIONS(2100), + [anon_sym_BSLASHacsp] = ACTIONS(2100), + [anon_sym_BSLASHAcsp] = ACTIONS(2100), + [anon_sym_BSLASHacl] = ACTIONS(2100), + [anon_sym_BSLASHAcl] = ACTIONS(2100), + [anon_sym_BSLASHaclp] = ACTIONS(2100), + [anon_sym_BSLASHAclp] = ACTIONS(2100), + [anon_sym_BSLASHacf] = ACTIONS(2100), + [anon_sym_BSLASHAcf] = ACTIONS(2100), + [anon_sym_BSLASHacfp] = ACTIONS(2100), + [anon_sym_BSLASHAcfp] = ACTIONS(2100), + [anon_sym_BSLASHac] = ACTIONS(2100), + [anon_sym_BSLASHAc] = ACTIONS(2100), + [anon_sym_BSLASHacp] = ACTIONS(2100), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2100), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2100), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2100), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2100), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2100), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2100), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2100), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2100), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2100), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2100), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2103), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2103), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2106), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2109), + [anon_sym_BSLASHcolor] = ACTIONS(2112), + [anon_sym_BSLASHcolorbox] = ACTIONS(2112), + [anon_sym_BSLASHtextcolor] = ACTIONS(2112), + [anon_sym_BSLASHpagecolor] = ACTIONS(2112), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2115), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2115), + [anon_sym_BSLASHtext] = ACTIONS(2118), + [anon_sym_BSLASHintertext] = ACTIONS(2118), + [anon_sym_shortintertext] = ACTIONS(2118), + }, + [194] = { + [sym_block_comment] = STATE(192), + [sym__flat_content] = STATE(192), + [sym__text_with_env_content] = STATE(192), + [sym__text_content] = STATE(192), + [sym_curly_group] = STATE(192), + [sym_text] = STATE(192), + [sym_operator] = STATE(782), + [sym_displayed_equation] = STATE(192), + [sym_inline_formula] = STATE(192), + [sym_math_set] = STATE(192), + [sym_begin] = STATE(36), + [sym_generic_environment] = STATE(192), + [sym_comment_environment] = STATE(192), + [sym__trivia_begin_comment] = STATE(2417), + [sym_verbatim_environment] = STATE(192), + [sym__trivia_begin_verbatim] = STATE(2429), + [sym_listing_environment] = STATE(192), + [sym__trivia_begin_listing] = STATE(2430), + [sym_minted_environment] = STATE(192), + [sym__trivia_begin_minted] = STATE(2431), + [sym_pycode_environment] = STATE(192), + [sym__trivia_begin_pycode] = STATE(2461), + [sym__command] = STATE(192), + [sym_generic_command] = STATE(192), + [sym_package_include] = STATE(192), + [sym_class_include] = STATE(192), + [sym_latex_include] = STATE(192), + [sym_biblatex_include] = STATE(192), + [sym_bibtex_include] = STATE(192), + [sym_graphics_include] = STATE(192), + [sym_svg_include] = STATE(192), + [sym_inkscape_include] = STATE(192), + [sym_verbatim_include] = STATE(192), + [sym_import_include] = STATE(192), + [sym_caption] = STATE(192), + [sym_citation] = STATE(192), + [sym_label_definition] = STATE(192), + [sym_label_reference] = STATE(192), + [sym_label_reference_range] = STATE(192), + [sym_label_number] = STATE(192), + [sym_new_command_definition] = STATE(192), + [sym_old_command_definition] = STATE(192), + [sym_let_command_definition] = STATE(192), + [sym_environment_definition] = STATE(192), + [sym_glossary_entry_definition] = STATE(192), + [sym_glossary_entry_reference] = STATE(192), + [sym_acronym_definition] = STATE(192), + [sym_acronym_reference] = STATE(192), + [sym_theorem_definition] = STATE(192), + [sym_color_definition] = STATE(192), + [sym_color_set_definition] = STATE(192), + [sym_color_reference] = STATE(192), + [sym_tikz_library_import] = STATE(192), + [sym_text_mode] = STATE(192), + [aux_sym_part_repeat1] = STATE(192), + [aux_sym_text_repeat1] = STATE(207), + [ts_builtin_sym_end] = ACTIONS(2121), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_RPAREN] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_RBRACK] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2095), - [anon_sym_EQ] = ACTIONS(2095), - [anon_sym_BSLASHpart] = ACTIONS(2097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddpart] = ACTIONS(2097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2093), - [anon_sym_BSLASHchapter] = ACTIONS(2097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddchap] = ACTIONS(2097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsection] = ACTIONS(2097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddsec] = ACTIONS(2097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubsection] = ACTIONS(2097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHparagraph] = ACTIONS(2097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2093), - [anon_sym_BSLASHitem] = ACTIONS(2097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2123), + [anon_sym_RPAREN] = ACTIONS(2123), + [anon_sym_LBRACK] = ACTIONS(2123), + [anon_sym_RBRACK] = ACTIONS(2123), + [anon_sym_COMMA] = ACTIONS(2123), + [anon_sym_EQ] = ACTIONS(2123), + [anon_sym_BSLASHpart] = ACTIONS(2125), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddpart] = ACTIONS(2125), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2121), + [anon_sym_BSLASHchapter] = ACTIONS(2125), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddchap] = ACTIONS(2125), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsection] = ACTIONS(2125), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddsec] = ACTIONS(2125), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubsection] = ACTIONS(2125), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2125), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHparagraph] = ACTIONS(2125), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2125), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2121), + [anon_sym_BSLASHitem] = ACTIONS(2125), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2121), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2121), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -87005,30 +85571,361 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(129), + [anon_sym_BSLASHintertext] = ACTIONS(129), + [anon_sym_shortintertext] = ACTIONS(129), }, [195] = { + [sym_block_comment] = STATE(201), + [sym__flat_content] = STATE(201), + [sym__text_with_env_content] = STATE(201), + [sym__text_content] = STATE(201), + [sym_curly_group] = STATE(201), + [sym_text] = STATE(201), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(201), + [sym_inline_formula] = STATE(201), + [sym_math_set] = STATE(201), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(201), + [sym_comment_environment] = STATE(201), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(201), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(201), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(201), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(201), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(201), + [sym_generic_command] = STATE(201), + [sym_package_include] = STATE(201), + [sym_class_include] = STATE(201), + [sym_latex_include] = STATE(201), + [sym_biblatex_include] = STATE(201), + [sym_bibtex_include] = STATE(201), + [sym_graphics_include] = STATE(201), + [sym_svg_include] = STATE(201), + [sym_inkscape_include] = STATE(201), + [sym_verbatim_include] = STATE(201), + [sym_import_include] = STATE(201), + [sym_caption] = STATE(201), + [sym_citation] = STATE(201), + [sym_label_definition] = STATE(201), + [sym_label_reference] = STATE(201), + [sym_label_reference_range] = STATE(201), + [sym_label_number] = STATE(201), + [sym_new_command_definition] = STATE(201), + [sym_old_command_definition] = STATE(201), + [sym_let_command_definition] = STATE(201), + [sym_environment_definition] = STATE(201), + [sym_glossary_entry_definition] = STATE(201), + [sym_glossary_entry_reference] = STATE(201), + [sym_acronym_definition] = STATE(201), + [sym_acronym_reference] = STATE(201), + [sym_theorem_definition] = STATE(201), + [sym_color_definition] = STATE(201), + [sym_color_set_definition] = STATE(201), + [sym_color_reference] = STATE(201), + [sym_tikz_library_import] = STATE(201), + [sym_text_mode] = STATE(201), + [aux_sym_part_repeat1] = STATE(201), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(2127), + [anon_sym_RPAREN] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(2127), + [anon_sym_RBRACK] = ACTIONS(2127), + [anon_sym_COMMA] = ACTIONS(2127), + [anon_sym_EQ] = ACTIONS(2127), + [anon_sym_BSLASHpart] = ACTIONS(2125), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddpart] = ACTIONS(2125), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2121), + [anon_sym_BSLASHchapter] = ACTIONS(2125), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddchap] = ACTIONS(2125), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsection] = ACTIONS(2125), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddsec] = ACTIONS(2125), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubsection] = ACTIONS(2125), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2125), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHparagraph] = ACTIONS(2125), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2125), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2121), + [anon_sym_BSLASHitem] = ACTIONS(2125), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), + }, + [196] = { [sym_block_comment] = STATE(202), [sym__flat_content] = STATE(202), [sym__text_with_env_content] = STATE(202), [sym__text_content] = STATE(202), [sym_curly_group] = STATE(202), [sym_text] = STATE(202), - [sym_operator] = STATE(1077), + [sym_operator] = STATE(1178), [sym_displayed_equation] = STATE(202), [sym_inline_formula] = STATE(202), [sym_math_set] = STATE(202), - [sym_begin] = STATE(29), + [sym_begin] = STATE(25), [sym_generic_environment] = STATE(202), [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2314), + [sym__trivia_begin_comment] = STATE(2367), [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2315), + [sym__trivia_begin_verbatim] = STATE(2366), [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2316), + [sym__trivia_begin_listing] = STATE(2365), [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2317), + [sym__trivia_begin_minted] = STATE(2364), [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2318), + [sym__trivia_begin_pycode] = STATE(2363), [sym__command] = STATE(202), [sym_generic_command] = STATE(202), [sym_package_include] = STATE(202), @@ -87060,299 +85957,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(202), [sym_color_reference] = STATE(202), [sym_tikz_library_import] = STATE(202), + [sym_text_mode] = STATE(202), [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(1840), - [anon_sym_RPAREN] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1840), - [anon_sym_RBRACK] = ACTIONS(1840), - [anon_sym_COMMA] = ACTIONS(1840), - [anon_sym_EQ] = ACTIONS(1840), - [anon_sym_BSLASHpart] = ACTIONS(2091), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddpart] = ACTIONS(2091), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2089), - [anon_sym_BSLASHchapter] = ACTIONS(2091), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddchap] = ACTIONS(2091), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsection] = ACTIONS(2091), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddsec] = ACTIONS(2091), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubsection] = ACTIONS(2091), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2091), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHparagraph] = ACTIONS(2091), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2091), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2089), - [anon_sym_BSLASHitem] = ACTIONS(2091), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_RPAREN] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_RBRACK] = ACTIONS(2129), + [anon_sym_COMMA] = ACTIONS(2129), + [anon_sym_EQ] = ACTIONS(2129), + [anon_sym_BSLASHpart] = ACTIONS(2125), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddpart] = ACTIONS(2125), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2121), + [anon_sym_BSLASHchapter] = ACTIONS(2125), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddchap] = ACTIONS(2125), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsection] = ACTIONS(2125), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddsec] = ACTIONS(2125), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubsection] = ACTIONS(2125), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2125), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHparagraph] = ACTIONS(2125), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2125), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2121), + [anon_sym_BSLASHitem] = ACTIONS(2125), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2121), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(2091), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), }, - [196] = { + [197] = { [sym_block_comment] = STATE(205), [sym__flat_content] = STATE(205), [sym__text_with_env_content] = STATE(205), [sym__text_content] = STATE(205), [sym_curly_group] = STATE(205), [sym_text] = STATE(205), - [sym_operator] = STATE(858), + [sym_operator] = STATE(1082), [sym_displayed_equation] = STATE(205), [sym_inline_formula] = STATE(205), [sym_math_set] = STATE(205), - [sym_begin] = STATE(26), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(205), [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2324), + [sym__trivia_begin_comment] = STATE(2328), [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2323), + [sym__trivia_begin_verbatim] = STATE(2329), [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2322), + [sym__trivia_begin_listing] = STATE(2330), [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2321), + [sym__trivia_begin_minted] = STATE(2331), [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2319), + [sym__trivia_begin_pycode] = STATE(2332), [sym__command] = STATE(205), [sym_generic_command] = STATE(205), [sym_package_include] = STATE(205), @@ -87384,923 +86285,607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(205), [sym_color_reference] = STATE(205), [sym_tikz_library_import] = STATE(205), + [sym_text_mode] = STATE(205), [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(1832), - [anon_sym_RPAREN] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1832), - [anon_sym_RBRACK] = ACTIONS(1832), - [anon_sym_COMMA] = ACTIONS(1832), - [anon_sym_EQ] = ACTIONS(1832), - [anon_sym_BSLASHpart] = ACTIONS(2091), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddpart] = ACTIONS(2091), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2089), - [anon_sym_BSLASHchapter] = ACTIONS(2091), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddchap] = ACTIONS(2091), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsection] = ACTIONS(2091), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddsec] = ACTIONS(2091), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubsection] = ACTIONS(2091), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2091), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHparagraph] = ACTIONS(2091), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2091), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2089), - [anon_sym_BSLASHitem] = ACTIONS(2091), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2089), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), - }, - [197] = { - [sym_block_comment] = STATE(203), - [sym__flat_content] = STATE(203), - [sym__text_with_env_content] = STATE(203), - [sym__text_content] = STATE(203), - [sym_curly_group] = STATE(203), - [sym_text] = STATE(203), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(203), - [sym_inline_formula] = STATE(203), - [sym_math_set] = STATE(203), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(203), - [sym_comment_environment] = STATE(203), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(203), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(203), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(203), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(203), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(203), - [sym_generic_command] = STATE(203), - [sym_package_include] = STATE(203), - [sym_class_include] = STATE(203), - [sym_latex_include] = STATE(203), - [sym_biblatex_include] = STATE(203), - [sym_bibtex_include] = STATE(203), - [sym_graphics_include] = STATE(203), - [sym_svg_include] = STATE(203), - [sym_inkscape_include] = STATE(203), - [sym_verbatim_include] = STATE(203), - [sym_import_include] = STATE(203), - [sym_caption] = STATE(203), - [sym_citation] = STATE(203), - [sym_label_definition] = STATE(203), - [sym_label_reference] = STATE(203), - [sym_label_reference_range] = STATE(203), - [sym_label_number] = STATE(203), - [sym_new_command_definition] = STATE(203), - [sym_old_command_definition] = STATE(203), - [sym_let_command_definition] = STATE(203), - [sym_environment_definition] = STATE(203), - [sym_glossary_entry_definition] = STATE(203), - [sym_glossary_entry_reference] = STATE(203), - [sym_acronym_definition] = STATE(203), - [sym_acronym_reference] = STATE(203), - [sym_theorem_definition] = STATE(203), - [sym_color_definition] = STATE(203), - [sym_color_set_definition] = STATE(203), - [sym_color_reference] = STATE(203), - [sym_tikz_library_import] = STATE(203), - [aux_sym_part_repeat1] = STATE(203), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_RPAREN] = ACTIONS(1830), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_RBRACK] = ACTIONS(1830), - [anon_sym_COMMA] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1830), - [anon_sym_BSLASHpart] = ACTIONS(2091), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddpart] = ACTIONS(2091), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2089), - [anon_sym_BSLASHchapter] = ACTIONS(2091), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddchap] = ACTIONS(2091), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsection] = ACTIONS(2091), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddsec] = ACTIONS(2091), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubsection] = ACTIONS(2091), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2091), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHparagraph] = ACTIONS(2091), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2091), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2089), - [anon_sym_BSLASHitem] = ACTIONS(2091), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_RBRACK] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1857), + [anon_sym_BSLASHpart] = ACTIONS(1977), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1977), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1977), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1977), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1977), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1977), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1977), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1977), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1977), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1977), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1977), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [anon_sym_BSLASHend] = ACTIONS(1977), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [198] = { - [sym_block_comment] = STATE(199), - [sym__flat_content] = STATE(199), - [sym__text_with_env_content] = STATE(199), - [sym__text_content] = STATE(199), - [sym_curly_group] = STATE(199), - [sym_text] = STATE(199), - [sym_operator] = STATE(1000), - [sym_displayed_equation] = STATE(199), - [sym_inline_formula] = STATE(199), - [sym_math_set] = STATE(199), - [sym_begin] = STATE(20), - [sym_generic_environment] = STATE(199), - [sym_comment_environment] = STATE(199), - [sym__trivia_begin_comment] = STATE(2333), - [sym_verbatim_environment] = STATE(199), - [sym__trivia_begin_verbatim] = STATE(2332), - [sym_listing_environment] = STATE(199), - [sym__trivia_begin_listing] = STATE(2331), - [sym_minted_environment] = STATE(199), - [sym__trivia_begin_minted] = STATE(2330), - [sym_pycode_environment] = STATE(199), - [sym__trivia_begin_pycode] = STATE(2329), - [sym__command] = STATE(199), - [sym_generic_command] = STATE(199), - [sym_package_include] = STATE(199), - [sym_class_include] = STATE(199), - [sym_latex_include] = STATE(199), - [sym_biblatex_include] = STATE(199), - [sym_bibtex_include] = STATE(199), - [sym_graphics_include] = STATE(199), - [sym_svg_include] = STATE(199), - [sym_inkscape_include] = STATE(199), - [sym_verbatim_include] = STATE(199), - [sym_import_include] = STATE(199), - [sym_caption] = STATE(199), - [sym_citation] = STATE(199), - [sym_label_definition] = STATE(199), - [sym_label_reference] = STATE(199), - [sym_label_reference_range] = STATE(199), - [sym_label_number] = STATE(199), - [sym_new_command_definition] = STATE(199), - [sym_old_command_definition] = STATE(199), - [sym_let_command_definition] = STATE(199), - [sym_environment_definition] = STATE(199), - [sym_glossary_entry_definition] = STATE(199), - [sym_glossary_entry_reference] = STATE(199), - [sym_acronym_definition] = STATE(199), - [sym_acronym_reference] = STATE(199), - [sym_theorem_definition] = STATE(199), - [sym_color_definition] = STATE(199), - [sym_color_set_definition] = STATE(199), - [sym_color_reference] = STATE(199), - [sym_tikz_library_import] = STATE(199), - [aux_sym_part_repeat1] = STATE(199), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_RPAREN] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_RBRACK] = ACTIONS(2099), - [anon_sym_COMMA] = ACTIONS(2099), - [anon_sym_EQ] = ACTIONS(2099), - [anon_sym_BSLASHpart] = ACTIONS(2097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddpart] = ACTIONS(2097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2093), - [anon_sym_BSLASHchapter] = ACTIONS(2097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddchap] = ACTIONS(2097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsection] = ACTIONS(2097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddsec] = ACTIONS(2097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubsection] = ACTIONS(2097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHparagraph] = ACTIONS(2097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2093), - [anon_sym_BSLASHitem] = ACTIONS(2097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2093), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [sym_block_comment] = STATE(198), + [sym__flat_content] = STATE(198), + [sym__text_with_env_content] = STATE(198), + [sym__text_content] = STATE(198), + [sym_curly_group] = STATE(198), + [sym_text] = STATE(198), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(198), + [sym_inline_formula] = STATE(198), + [sym_math_set] = STATE(198), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(198), + [sym_comment_environment] = STATE(198), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(198), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(198), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(198), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(198), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(198), + [sym_generic_command] = STATE(198), + [sym_package_include] = STATE(198), + [sym_class_include] = STATE(198), + [sym_latex_include] = STATE(198), + [sym_biblatex_include] = STATE(198), + [sym_bibtex_include] = STATE(198), + [sym_graphics_include] = STATE(198), + [sym_svg_include] = STATE(198), + [sym_inkscape_include] = STATE(198), + [sym_verbatim_include] = STATE(198), + [sym_import_include] = STATE(198), + [sym_caption] = STATE(198), + [sym_citation] = STATE(198), + [sym_label_definition] = STATE(198), + [sym_label_reference] = STATE(198), + [sym_label_reference_range] = STATE(198), + [sym_label_number] = STATE(198), + [sym_new_command_definition] = STATE(198), + [sym_old_command_definition] = STATE(198), + [sym_let_command_definition] = STATE(198), + [sym_environment_definition] = STATE(198), + [sym_glossary_entry_definition] = STATE(198), + [sym_glossary_entry_reference] = STATE(198), + [sym_acronym_definition] = STATE(198), + [sym_acronym_reference] = STATE(198), + [sym_theorem_definition] = STATE(198), + [sym_color_definition] = STATE(198), + [sym_color_set_definition] = STATE(198), + [sym_color_reference] = STATE(198), + [sym_tikz_library_import] = STATE(198), + [sym_text_mode] = STATE(198), + [aux_sym_part_repeat1] = STATE(198), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(2131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_RPAREN] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_RBRACK] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(2137), + [anon_sym_EQ] = ACTIONS(2137), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1979), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1979), + [anon_sym_BSLASHitem] = ACTIONS(1990), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(2140), + [sym_word] = ACTIONS(2143), + [sym_placeholder] = ACTIONS(2146), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_CARET] = ACTIONS(2149), + [anon_sym__] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_GT] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_COLON] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2152), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2152), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1979), + [anon_sym_DOLLAR] = ACTIONS(2155), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2158), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2161), + [anon_sym_BSLASHbegin] = ACTIONS(2016), + [anon_sym_BSLASHusepackage] = ACTIONS(2164), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2164), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2167), + [anon_sym_BSLASHinclude] = ACTIONS(2170), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2170), + [anon_sym_BSLASHinput] = ACTIONS(2170), + [anon_sym_BSLASHsubfile] = ACTIONS(2170), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2173), + [anon_sym_BSLASHbibliography] = ACTIONS(2176), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2179), + [anon_sym_BSLASHincludesvg] = ACTIONS(2182), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2188), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2188), + [anon_sym_BSLASHimport] = ACTIONS(2191), + [anon_sym_BSLASHsubimport] = ACTIONS(2191), + [anon_sym_BSLASHinputfrom] = ACTIONS(2191), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2191), + [anon_sym_BSLASHincludefrom] = ACTIONS(2191), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2191), + [anon_sym_BSLASHcaption] = ACTIONS(2194), + [anon_sym_BSLASHcite] = ACTIONS(2197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2200), + [anon_sym_BSLASHCite] = ACTIONS(2197), + [anon_sym_BSLASHnocite] = ACTIONS(2197), + [anon_sym_BSLASHcitet] = ACTIONS(2197), + [anon_sym_BSLASHcitep] = ACTIONS(2197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2200), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2200), + [anon_sym_BSLASHciteauthor] = ACTIONS(2197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2200), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2200), + [anon_sym_BSLASHcitetitle] = ACTIONS(2197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2200), + [anon_sym_BSLASHciteyear] = ACTIONS(2197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2200), + [anon_sym_BSLASHcitedate] = ACTIONS(2197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2200), + [anon_sym_BSLASHciteurl] = ACTIONS(2197), + [anon_sym_BSLASHfullcite] = ACTIONS(2197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2197), + [anon_sym_BSLASHcitealt] = ACTIONS(2197), + [anon_sym_BSLASHcitealp] = ACTIONS(2197), + [anon_sym_BSLASHcitetext] = ACTIONS(2197), + [anon_sym_BSLASHparencite] = ACTIONS(2197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2200), + [anon_sym_BSLASHParencite] = ACTIONS(2197), + [anon_sym_BSLASHfootcite] = ACTIONS(2197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2197), + [anon_sym_BSLASHtextcite] = ACTIONS(2197), + [anon_sym_BSLASHTextcite] = ACTIONS(2197), + [anon_sym_BSLASHsmartcite] = ACTIONS(2197), + [anon_sym_BSLASHSmartcite] = ACTIONS(2197), + [anon_sym_BSLASHsupercite] = ACTIONS(2197), + [anon_sym_BSLASHautocite] = ACTIONS(2197), + [anon_sym_BSLASHAutocite] = ACTIONS(2197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2200), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2200), + [anon_sym_BSLASHvolcite] = ACTIONS(2197), + [anon_sym_BSLASHVolcite] = ACTIONS(2197), + [anon_sym_BSLASHpvolcite] = ACTIONS(2197), + [anon_sym_BSLASHPvolcite] = ACTIONS(2197), + [anon_sym_BSLASHfvolcite] = ACTIONS(2197), + [anon_sym_BSLASHftvolcite] = ACTIONS(2197), + [anon_sym_BSLASHsvolcite] = ACTIONS(2197), + [anon_sym_BSLASHSvolcite] = ACTIONS(2197), + [anon_sym_BSLASHtvolcite] = ACTIONS(2197), + [anon_sym_BSLASHTvolcite] = ACTIONS(2197), + [anon_sym_BSLASHavolcite] = ACTIONS(2197), + [anon_sym_BSLASHAvolcite] = ACTIONS(2197), + [anon_sym_BSLASHnotecite] = ACTIONS(2197), + [anon_sym_BSLASHNotecite] = ACTIONS(2197), + [anon_sym_BSLASHpnotecite] = ACTIONS(2197), + [anon_sym_BSLASHPnotecite] = ACTIONS(2197), + [anon_sym_BSLASHfnotecite] = ACTIONS(2197), + [anon_sym_BSLASHlabel] = ACTIONS(2203), + [anon_sym_BSLASHref] = ACTIONS(2206), + [anon_sym_BSLASHeqref] = ACTIONS(2206), + [anon_sym_BSLASHvref] = ACTIONS(2206), + [anon_sym_BSLASHVref] = ACTIONS(2206), + [anon_sym_BSLASHautoref] = ACTIONS(2206), + [anon_sym_BSLASHpageref] = ACTIONS(2206), + [anon_sym_BSLASHcref] = ACTIONS(2206), + [anon_sym_BSLASHCref] = ACTIONS(2206), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2209), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2209), + [anon_sym_BSLASHnamecref] = ACTIONS(2206), + [anon_sym_BSLASHnameCref] = ACTIONS(2206), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2206), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2206), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2206), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2206), + [anon_sym_BSLASHlabelcref] = ACTIONS(2206), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2206), + [anon_sym_BSLASHcrefrange] = ACTIONS(2212), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2215), + [anon_sym_BSLASHCrefrange] = ACTIONS(2212), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2215), + [anon_sym_BSLASHnewlabel] = ACTIONS(2218), + [anon_sym_BSLASHnewcommand] = ACTIONS(2221), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2224), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2221), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2224), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2221), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2224), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2224), + [anon_sym_BSLASHdef] = ACTIONS(2227), + [anon_sym_BSLASHlet] = ACTIONS(2230), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2236), + [anon_sym_BSLASHgls] = ACTIONS(2239), + [anon_sym_BSLASHGls] = ACTIONS(2239), + [anon_sym_BSLASHGLS] = ACTIONS(2239), + [anon_sym_BSLASHglspl] = ACTIONS(2239), + [anon_sym_BSLASHGlspl] = ACTIONS(2239), + [anon_sym_BSLASHGLSpl] = ACTIONS(2239), + [anon_sym_BSLASHglsdisp] = ACTIONS(2239), + [anon_sym_BSLASHglslink] = ACTIONS(2239), + [anon_sym_BSLASHglstext] = ACTIONS(2239), + [anon_sym_BSLASHGlstext] = ACTIONS(2239), + [anon_sym_BSLASHGLStext] = ACTIONS(2239), + [anon_sym_BSLASHglsfirst] = ACTIONS(2239), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2239), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2239), + [anon_sym_BSLASHglsplural] = ACTIONS(2239), + [anon_sym_BSLASHGlsplural] = ACTIONS(2239), + [anon_sym_BSLASHGLSplural] = ACTIONS(2239), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2239), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2239), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2239), + [anon_sym_BSLASHglsname] = ACTIONS(2239), + [anon_sym_BSLASHGlsname] = ACTIONS(2239), + [anon_sym_BSLASHGLSname] = ACTIONS(2239), + [anon_sym_BSLASHglssymbol] = ACTIONS(2239), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2239), + [anon_sym_BSLASHglsdesc] = ACTIONS(2239), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2239), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2239), + [anon_sym_BSLASHglsuseri] = ACTIONS(2239), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2239), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2239), + [anon_sym_BSLASHglsuserii] = ACTIONS(2239), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2239), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2239), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2239), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2239), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2239), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2239), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2239), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2239), + [anon_sym_BSLASHglsuserv] = ACTIONS(2239), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2239), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2239), + [anon_sym_BSLASHglsuservi] = ACTIONS(2239), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2239), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2239), + [anon_sym_BSLASHnewacronym] = ACTIONS(2242), + [anon_sym_BSLASHacrshort] = ACTIONS(2245), + [anon_sym_BSLASHAcrshort] = ACTIONS(2245), + [anon_sym_BSLASHACRshort] = ACTIONS(2245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2245), + [anon_sym_BSLASHacrlong] = ACTIONS(2245), + [anon_sym_BSLASHAcrlong] = ACTIONS(2245), + [anon_sym_BSLASHACRlong] = ACTIONS(2245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2245), + [anon_sym_BSLASHacrfull] = ACTIONS(2245), + [anon_sym_BSLASHAcrfull] = ACTIONS(2245), + [anon_sym_BSLASHACRfull] = ACTIONS(2245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2245), + [anon_sym_BSLASHacs] = ACTIONS(2245), + [anon_sym_BSLASHAcs] = ACTIONS(2245), + [anon_sym_BSLASHacsp] = ACTIONS(2245), + [anon_sym_BSLASHAcsp] = ACTIONS(2245), + [anon_sym_BSLASHacl] = ACTIONS(2245), + [anon_sym_BSLASHAcl] = ACTIONS(2245), + [anon_sym_BSLASHaclp] = ACTIONS(2245), + [anon_sym_BSLASHAclp] = ACTIONS(2245), + [anon_sym_BSLASHacf] = ACTIONS(2245), + [anon_sym_BSLASHAcf] = ACTIONS(2245), + [anon_sym_BSLASHacfp] = ACTIONS(2245), + [anon_sym_BSLASHAcfp] = ACTIONS(2245), + [anon_sym_BSLASHac] = ACTIONS(2245), + [anon_sym_BSLASHAc] = ACTIONS(2245), + [anon_sym_BSLASHacp] = ACTIONS(2245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2248), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2248), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2251), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2254), + [anon_sym_BSLASHcolor] = ACTIONS(2257), + [anon_sym_BSLASHcolorbox] = ACTIONS(2257), + [anon_sym_BSLASHtextcolor] = ACTIONS(2257), + [anon_sym_BSLASHpagecolor] = ACTIONS(2257), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2260), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2260), + [anon_sym_BSLASHtext] = ACTIONS(2263), + [anon_sym_BSLASHintertext] = ACTIONS(2263), + [anon_sym_shortintertext] = ACTIONS(2263), }, [199] = { [sym_block_comment] = STATE(200), @@ -88309,22 +86894,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__text_content] = STATE(200), [sym_curly_group] = STATE(200), [sym_text] = STATE(200), - [sym_operator] = STATE(1000), + [sym_operator] = STATE(862), [sym_displayed_equation] = STATE(200), [sym_inline_formula] = STATE(200), [sym_math_set] = STATE(200), - [sym_begin] = STATE(20), + [sym_begin] = STATE(29), [sym_generic_environment] = STATE(200), [sym_comment_environment] = STATE(200), - [sym__trivia_begin_comment] = STATE(2333), + [sym__trivia_begin_comment] = STATE(2344), [sym_verbatim_environment] = STATE(200), - [sym__trivia_begin_verbatim] = STATE(2332), + [sym__trivia_begin_verbatim] = STATE(2343), [sym_listing_environment] = STATE(200), - [sym__trivia_begin_listing] = STATE(2331), + [sym__trivia_begin_listing] = STATE(2342), [sym_minted_environment] = STATE(200), - [sym__trivia_begin_minted] = STATE(2330), + [sym__trivia_begin_minted] = STATE(2341), [sym_pycode_environment] = STATE(200), - [sym__trivia_begin_pycode] = STATE(2329), + [sym__trivia_begin_pycode] = STATE(2340), [sym__command] = STATE(200), [sym_generic_command] = STATE(200), [sym_package_include] = STATE(200), @@ -88356,275 +86941,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(200), [sym_color_reference] = STATE(200), [sym_tikz_library_import] = STATE(200), + [sym_text_mode] = STATE(200), [aux_sym_part_repeat1] = STATE(200), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_RPAREN] = ACTIONS(1834), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_RBRACK] = ACTIONS(1834), - [anon_sym_COMMA] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1834), - [anon_sym_BSLASHpart] = ACTIONS(2091), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddpart] = ACTIONS(2091), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2089), - [anon_sym_BSLASHchapter] = ACTIONS(2091), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddchap] = ACTIONS(2091), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsection] = ACTIONS(2091), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHaddsec] = ACTIONS(2091), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubsection] = ACTIONS(2091), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2091), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2089), - [anon_sym_BSLASHparagraph] = ACTIONS(2091), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2089), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2091), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2089), - [anon_sym_BSLASHitem] = ACTIONS(2091), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(660), - [anon_sym_BSLASH_LBRACK] = ACTIONS(660), - [anon_sym_DOLLAR] = ACTIONS(1826), - [anon_sym_BSLASH_LPAREN] = ACTIONS(664), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2089), - [anon_sym_BSLASH_LBRACE] = ACTIONS(668), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_RPAREN] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1863), + [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_BSLASHpart] = ACTIONS(1977), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1977), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1977), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1977), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1977), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1977), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1977), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1977), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1977), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1977), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1977), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1975), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), }, [200] = { [sym_block_comment] = STATE(200), @@ -88633,22 +87222,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__text_content] = STATE(200), [sym_curly_group] = STATE(200), [sym_text] = STATE(200), - [sym_operator] = STATE(1000), + [sym_operator] = STATE(862), [sym_displayed_equation] = STATE(200), [sym_inline_formula] = STATE(200), [sym_math_set] = STATE(200), - [sym_begin] = STATE(20), + [sym_begin] = STATE(29), [sym_generic_environment] = STATE(200), [sym_comment_environment] = STATE(200), - [sym__trivia_begin_comment] = STATE(2333), + [sym__trivia_begin_comment] = STATE(2344), [sym_verbatim_environment] = STATE(200), - [sym__trivia_begin_verbatim] = STATE(2332), + [sym__trivia_begin_verbatim] = STATE(2343), [sym_listing_environment] = STATE(200), - [sym__trivia_begin_listing] = STATE(2331), + [sym__trivia_begin_listing] = STATE(2342), [sym_minted_environment] = STATE(200), - [sym__trivia_begin_minted] = STATE(2330), + [sym__trivia_begin_minted] = STATE(2341), [sym_pycode_environment] = STATE(200), - [sym__trivia_begin_pycode] = STATE(2329), + [sym__trivia_begin_pycode] = STATE(2340), [sym__command] = STATE(200), [sym_generic_command] = STATE(200), [sym_package_include] = STATE(200), @@ -88680,299 +87269,1287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(200), [sym_color_reference] = STATE(200), [sym_tikz_library_import] = STATE(200), + [sym_text_mode] = STATE(200), [aux_sym_part_repeat1] = STATE(200), - [aux_sym_text_repeat1] = STATE(213), - [sym_command_name] = ACTIONS(2101), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_RPAREN] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_RBRACK] = ACTIONS(2107), - [anon_sym_COMMA] = ACTIONS(2107), - [anon_sym_EQ] = ACTIONS(2107), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1950), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1950), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(2110), - [sym_word] = ACTIONS(2113), - [sym_placeholder] = ACTIONS(2116), - [anon_sym_PLUS] = ACTIONS(2119), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_SLASH] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym__] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2119), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_COLON] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2119), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2122), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2128), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1950), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2131), - [anon_sym_BSLASHbegin] = ACTIONS(1987), - [anon_sym_BSLASHusepackage] = ACTIONS(2134), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2134), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2137), - [anon_sym_BSLASHinclude] = ACTIONS(2140), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2140), - [anon_sym_BSLASHinput] = ACTIONS(2140), - [anon_sym_BSLASHsubfile] = ACTIONS(2140), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2143), - [anon_sym_BSLASHbibliography] = ACTIONS(2146), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2149), - [anon_sym_BSLASHincludesvg] = ACTIONS(2152), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2158), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2158), - [anon_sym_BSLASHimport] = ACTIONS(2161), - [anon_sym_BSLASHsubimport] = ACTIONS(2161), - [anon_sym_BSLASHinputfrom] = ACTIONS(2161), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2161), - [anon_sym_BSLASHincludefrom] = ACTIONS(2161), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2161), - [anon_sym_BSLASHcaption] = ACTIONS(2164), - [anon_sym_BSLASHcite] = ACTIONS(2167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2170), - [anon_sym_BSLASHCite] = ACTIONS(2167), - [anon_sym_BSLASHnocite] = ACTIONS(2167), - [anon_sym_BSLASHcitet] = ACTIONS(2167), - [anon_sym_BSLASHcitep] = ACTIONS(2167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2170), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2170), - [anon_sym_BSLASHciteauthor] = ACTIONS(2167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2170), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2170), - [anon_sym_BSLASHcitetitle] = ACTIONS(2167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2170), - [anon_sym_BSLASHciteyear] = ACTIONS(2167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2170), - [anon_sym_BSLASHcitedate] = ACTIONS(2167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2170), - [anon_sym_BSLASHciteurl] = ACTIONS(2167), - [anon_sym_BSLASHfullcite] = ACTIONS(2167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2167), - [anon_sym_BSLASHcitealt] = ACTIONS(2167), - [anon_sym_BSLASHcitealp] = ACTIONS(2167), - [anon_sym_BSLASHcitetext] = ACTIONS(2167), - [anon_sym_BSLASHparencite] = ACTIONS(2167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2170), - [anon_sym_BSLASHParencite] = ACTIONS(2167), - [anon_sym_BSLASHfootcite] = ACTIONS(2167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2167), - [anon_sym_BSLASHtextcite] = ACTIONS(2167), - [anon_sym_BSLASHTextcite] = ACTIONS(2167), - [anon_sym_BSLASHsmartcite] = ACTIONS(2167), - [anon_sym_BSLASHSmartcite] = ACTIONS(2167), - [anon_sym_BSLASHsupercite] = ACTIONS(2167), - [anon_sym_BSLASHautocite] = ACTIONS(2167), - [anon_sym_BSLASHAutocite] = ACTIONS(2167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2170), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2170), - [anon_sym_BSLASHvolcite] = ACTIONS(2167), - [anon_sym_BSLASHVolcite] = ACTIONS(2167), - [anon_sym_BSLASHpvolcite] = ACTIONS(2167), - [anon_sym_BSLASHPvolcite] = ACTIONS(2167), - [anon_sym_BSLASHfvolcite] = ACTIONS(2167), - [anon_sym_BSLASHftvolcite] = ACTIONS(2167), - [anon_sym_BSLASHsvolcite] = ACTIONS(2167), - [anon_sym_BSLASHSvolcite] = ACTIONS(2167), - [anon_sym_BSLASHtvolcite] = ACTIONS(2167), - [anon_sym_BSLASHTvolcite] = ACTIONS(2167), - [anon_sym_BSLASHavolcite] = ACTIONS(2167), - [anon_sym_BSLASHAvolcite] = ACTIONS(2167), - [anon_sym_BSLASHnotecite] = ACTIONS(2167), - [anon_sym_BSLASHNotecite] = ACTIONS(2167), - [anon_sym_BSLASHpnotecite] = ACTIONS(2167), - [anon_sym_BSLASHPnotecite] = ACTIONS(2167), - [anon_sym_BSLASHfnotecite] = ACTIONS(2167), - [anon_sym_BSLASHlabel] = ACTIONS(2173), - [anon_sym_BSLASHref] = ACTIONS(2176), - [anon_sym_BSLASHeqref] = ACTIONS(2176), - [anon_sym_BSLASHvref] = ACTIONS(2176), - [anon_sym_BSLASHVref] = ACTIONS(2176), - [anon_sym_BSLASHautoref] = ACTIONS(2176), - [anon_sym_BSLASHpageref] = ACTIONS(2176), - [anon_sym_BSLASHcref] = ACTIONS(2176), - [anon_sym_BSLASHCref] = ACTIONS(2176), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2179), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2179), - [anon_sym_BSLASHnamecref] = ACTIONS(2176), - [anon_sym_BSLASHnameCref] = ACTIONS(2176), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2176), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2176), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2176), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2176), - [anon_sym_BSLASHlabelcref] = ACTIONS(2176), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2176), - [anon_sym_BSLASHcrefrange] = ACTIONS(2182), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2185), - [anon_sym_BSLASHCrefrange] = ACTIONS(2182), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2185), - [anon_sym_BSLASHnewlabel] = ACTIONS(2188), - [anon_sym_BSLASHnewcommand] = ACTIONS(2191), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2194), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2191), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2194), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2191), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2194), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2191), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2194), - [anon_sym_BSLASHdef] = ACTIONS(2197), - [anon_sym_BSLASHlet] = ACTIONS(2200), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2203), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2206), - [anon_sym_BSLASHgls] = ACTIONS(2209), - [anon_sym_BSLASHGls] = ACTIONS(2209), - [anon_sym_BSLASHGLS] = ACTIONS(2209), - [anon_sym_BSLASHglspl] = ACTIONS(2209), - [anon_sym_BSLASHGlspl] = ACTIONS(2209), - [anon_sym_BSLASHGLSpl] = ACTIONS(2209), - [anon_sym_BSLASHglsdisp] = ACTIONS(2209), - [anon_sym_BSLASHglslink] = ACTIONS(2209), - [anon_sym_BSLASHglstext] = ACTIONS(2209), - [anon_sym_BSLASHGlstext] = ACTIONS(2209), - [anon_sym_BSLASHGLStext] = ACTIONS(2209), - [anon_sym_BSLASHglsfirst] = ACTIONS(2209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2209), - [anon_sym_BSLASHglsplural] = ACTIONS(2209), - [anon_sym_BSLASHGlsplural] = ACTIONS(2209), - [anon_sym_BSLASHGLSplural] = ACTIONS(2209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2209), - [anon_sym_BSLASHglsname] = ACTIONS(2209), - [anon_sym_BSLASHGlsname] = ACTIONS(2209), - [anon_sym_BSLASHGLSname] = ACTIONS(2209), - [anon_sym_BSLASHglssymbol] = ACTIONS(2209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2209), - [anon_sym_BSLASHglsdesc] = ACTIONS(2209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2209), - [anon_sym_BSLASHglsuseri] = ACTIONS(2209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2209), - [anon_sym_BSLASHglsuserii] = ACTIONS(2209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2209), - [anon_sym_BSLASHglsuserv] = ACTIONS(2209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2209), - [anon_sym_BSLASHglsuservi] = ACTIONS(2209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2209), - [anon_sym_BSLASHnewacronym] = ACTIONS(2212), - [anon_sym_BSLASHacrshort] = ACTIONS(2215), - [anon_sym_BSLASHAcrshort] = ACTIONS(2215), - [anon_sym_BSLASHACRshort] = ACTIONS(2215), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2215), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2215), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2215), - [anon_sym_BSLASHacrlong] = ACTIONS(2215), - [anon_sym_BSLASHAcrlong] = ACTIONS(2215), - [anon_sym_BSLASHACRlong] = ACTIONS(2215), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2215), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2215), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2215), - [anon_sym_BSLASHacrfull] = ACTIONS(2215), - [anon_sym_BSLASHAcrfull] = ACTIONS(2215), - [anon_sym_BSLASHACRfull] = ACTIONS(2215), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2215), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2215), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2215), - [anon_sym_BSLASHacs] = ACTIONS(2215), - [anon_sym_BSLASHAcs] = ACTIONS(2215), - [anon_sym_BSLASHacsp] = ACTIONS(2215), - [anon_sym_BSLASHAcsp] = ACTIONS(2215), - [anon_sym_BSLASHacl] = ACTIONS(2215), - [anon_sym_BSLASHAcl] = ACTIONS(2215), - [anon_sym_BSLASHaclp] = ACTIONS(2215), - [anon_sym_BSLASHAclp] = ACTIONS(2215), - [anon_sym_BSLASHacf] = ACTIONS(2215), - [anon_sym_BSLASHAcf] = ACTIONS(2215), - [anon_sym_BSLASHacfp] = ACTIONS(2215), - [anon_sym_BSLASHAcfp] = ACTIONS(2215), - [anon_sym_BSLASHac] = ACTIONS(2215), - [anon_sym_BSLASHAc] = ACTIONS(2215), - [anon_sym_BSLASHacp] = ACTIONS(2215), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2215), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2215), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2215), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2215), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2215), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2215), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2215), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2215), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2215), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2215), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2218), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2218), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2224), - [anon_sym_BSLASHcolor] = ACTIONS(2227), - [anon_sym_BSLASHcolorbox] = ACTIONS(2227), - [anon_sym_BSLASHtextcolor] = ACTIONS(2227), - [anon_sym_BSLASHpagecolor] = ACTIONS(2227), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2230), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2230), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(2266), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_RPAREN] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_RBRACK] = ACTIONS(2272), + [anon_sym_COMMA] = ACTIONS(2272), + [anon_sym_EQ] = ACTIONS(2272), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1979), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1979), + [anon_sym_BSLASHitem] = ACTIONS(1990), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(2275), + [sym_word] = ACTIONS(2278), + [sym_placeholder] = ACTIONS(2281), + [anon_sym_PLUS] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_SLASH] = ACTIONS(2284), + [anon_sym_CARET] = ACTIONS(2284), + [anon_sym__] = ACTIONS(2284), + [anon_sym_LT] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2284), + [anon_sym_BANG] = ACTIONS(2284), + [anon_sym_PIPE] = ACTIONS(2284), + [anon_sym_COLON] = ACTIONS(2284), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2287), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2287), + [anon_sym_DOLLAR] = ACTIONS(2290), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2293), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2296), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1979), + [anon_sym_BSLASHbegin] = ACTIONS(2016), + [anon_sym_BSLASHusepackage] = ACTIONS(2299), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2299), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2302), + [anon_sym_BSLASHinclude] = ACTIONS(2305), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2305), + [anon_sym_BSLASHinput] = ACTIONS(2305), + [anon_sym_BSLASHsubfile] = ACTIONS(2305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2308), + [anon_sym_BSLASHbibliography] = ACTIONS(2311), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2314), + [anon_sym_BSLASHincludesvg] = ACTIONS(2317), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2320), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2323), + [anon_sym_BSLASHimport] = ACTIONS(2326), + [anon_sym_BSLASHsubimport] = ACTIONS(2326), + [anon_sym_BSLASHinputfrom] = ACTIONS(2326), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2326), + [anon_sym_BSLASHincludefrom] = ACTIONS(2326), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2326), + [anon_sym_BSLASHcaption] = ACTIONS(2329), + [anon_sym_BSLASHcite] = ACTIONS(2332), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2335), + [anon_sym_BSLASHCite] = ACTIONS(2332), + [anon_sym_BSLASHnocite] = ACTIONS(2332), + [anon_sym_BSLASHcitet] = ACTIONS(2332), + [anon_sym_BSLASHcitep] = ACTIONS(2332), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2335), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2335), + [anon_sym_BSLASHciteauthor] = ACTIONS(2332), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2335), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2332), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2335), + [anon_sym_BSLASHcitetitle] = ACTIONS(2332), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2335), + [anon_sym_BSLASHciteyear] = ACTIONS(2332), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2335), + [anon_sym_BSLASHcitedate] = ACTIONS(2332), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2335), + [anon_sym_BSLASHciteurl] = ACTIONS(2332), + [anon_sym_BSLASHfullcite] = ACTIONS(2332), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2332), + [anon_sym_BSLASHcitealt] = ACTIONS(2332), + [anon_sym_BSLASHcitealp] = ACTIONS(2332), + [anon_sym_BSLASHcitetext] = ACTIONS(2332), + [anon_sym_BSLASHparencite] = ACTIONS(2332), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2335), + [anon_sym_BSLASHParencite] = ACTIONS(2332), + [anon_sym_BSLASHfootcite] = ACTIONS(2332), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2332), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2332), + [anon_sym_BSLASHtextcite] = ACTIONS(2332), + [anon_sym_BSLASHTextcite] = ACTIONS(2332), + [anon_sym_BSLASHsmartcite] = ACTIONS(2332), + [anon_sym_BSLASHSmartcite] = ACTIONS(2332), + [anon_sym_BSLASHsupercite] = ACTIONS(2332), + [anon_sym_BSLASHautocite] = ACTIONS(2332), + [anon_sym_BSLASHAutocite] = ACTIONS(2332), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2335), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2335), + [anon_sym_BSLASHvolcite] = ACTIONS(2332), + [anon_sym_BSLASHVolcite] = ACTIONS(2332), + [anon_sym_BSLASHpvolcite] = ACTIONS(2332), + [anon_sym_BSLASHPvolcite] = ACTIONS(2332), + [anon_sym_BSLASHfvolcite] = ACTIONS(2332), + [anon_sym_BSLASHftvolcite] = ACTIONS(2332), + [anon_sym_BSLASHsvolcite] = ACTIONS(2332), + [anon_sym_BSLASHSvolcite] = ACTIONS(2332), + [anon_sym_BSLASHtvolcite] = ACTIONS(2332), + [anon_sym_BSLASHTvolcite] = ACTIONS(2332), + [anon_sym_BSLASHavolcite] = ACTIONS(2332), + [anon_sym_BSLASHAvolcite] = ACTIONS(2332), + [anon_sym_BSLASHnotecite] = ACTIONS(2332), + [anon_sym_BSLASHNotecite] = ACTIONS(2332), + [anon_sym_BSLASHpnotecite] = ACTIONS(2332), + [anon_sym_BSLASHPnotecite] = ACTIONS(2332), + [anon_sym_BSLASHfnotecite] = ACTIONS(2332), + [anon_sym_BSLASHlabel] = ACTIONS(2338), + [anon_sym_BSLASHref] = ACTIONS(2341), + [anon_sym_BSLASHeqref] = ACTIONS(2341), + [anon_sym_BSLASHvref] = ACTIONS(2341), + [anon_sym_BSLASHVref] = ACTIONS(2341), + [anon_sym_BSLASHautoref] = ACTIONS(2341), + [anon_sym_BSLASHpageref] = ACTIONS(2341), + [anon_sym_BSLASHcref] = ACTIONS(2341), + [anon_sym_BSLASHCref] = ACTIONS(2341), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2344), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2344), + [anon_sym_BSLASHnamecref] = ACTIONS(2341), + [anon_sym_BSLASHnameCref] = ACTIONS(2341), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2341), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2341), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2341), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2341), + [anon_sym_BSLASHlabelcref] = ACTIONS(2341), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2341), + [anon_sym_BSLASHcrefrange] = ACTIONS(2347), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2350), + [anon_sym_BSLASHCrefrange] = ACTIONS(2347), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2350), + [anon_sym_BSLASHnewlabel] = ACTIONS(2353), + [anon_sym_BSLASHnewcommand] = ACTIONS(2356), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2359), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2356), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2359), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2356), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2359), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2356), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2359), + [anon_sym_BSLASHdef] = ACTIONS(2362), + [anon_sym_BSLASHlet] = ACTIONS(2365), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2368), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2371), + [anon_sym_BSLASHgls] = ACTIONS(2374), + [anon_sym_BSLASHGls] = ACTIONS(2374), + [anon_sym_BSLASHGLS] = ACTIONS(2374), + [anon_sym_BSLASHglspl] = ACTIONS(2374), + [anon_sym_BSLASHGlspl] = ACTIONS(2374), + [anon_sym_BSLASHGLSpl] = ACTIONS(2374), + [anon_sym_BSLASHglsdisp] = ACTIONS(2374), + [anon_sym_BSLASHglslink] = ACTIONS(2374), + [anon_sym_BSLASHglstext] = ACTIONS(2374), + [anon_sym_BSLASHGlstext] = ACTIONS(2374), + [anon_sym_BSLASHGLStext] = ACTIONS(2374), + [anon_sym_BSLASHglsfirst] = ACTIONS(2374), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2374), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2374), + [anon_sym_BSLASHglsplural] = ACTIONS(2374), + [anon_sym_BSLASHGlsplural] = ACTIONS(2374), + [anon_sym_BSLASHGLSplural] = ACTIONS(2374), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2374), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2374), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2374), + [anon_sym_BSLASHglsname] = ACTIONS(2374), + [anon_sym_BSLASHGlsname] = ACTIONS(2374), + [anon_sym_BSLASHGLSname] = ACTIONS(2374), + [anon_sym_BSLASHglssymbol] = ACTIONS(2374), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2374), + [anon_sym_BSLASHglsdesc] = ACTIONS(2374), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2374), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2374), + [anon_sym_BSLASHglsuseri] = ACTIONS(2374), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2374), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2374), + [anon_sym_BSLASHglsuserii] = ACTIONS(2374), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2374), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2374), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2374), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2374), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2374), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2374), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2374), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2374), + [anon_sym_BSLASHglsuserv] = ACTIONS(2374), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2374), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2374), + [anon_sym_BSLASHglsuservi] = ACTIONS(2374), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2374), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2374), + [anon_sym_BSLASHnewacronym] = ACTIONS(2377), + [anon_sym_BSLASHacrshort] = ACTIONS(2380), + [anon_sym_BSLASHAcrshort] = ACTIONS(2380), + [anon_sym_BSLASHACRshort] = ACTIONS(2380), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2380), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2380), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2380), + [anon_sym_BSLASHacrlong] = ACTIONS(2380), + [anon_sym_BSLASHAcrlong] = ACTIONS(2380), + [anon_sym_BSLASHACRlong] = ACTIONS(2380), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2380), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2380), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2380), + [anon_sym_BSLASHacrfull] = ACTIONS(2380), + [anon_sym_BSLASHAcrfull] = ACTIONS(2380), + [anon_sym_BSLASHACRfull] = ACTIONS(2380), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2380), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2380), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2380), + [anon_sym_BSLASHacs] = ACTIONS(2380), + [anon_sym_BSLASHAcs] = ACTIONS(2380), + [anon_sym_BSLASHacsp] = ACTIONS(2380), + [anon_sym_BSLASHAcsp] = ACTIONS(2380), + [anon_sym_BSLASHacl] = ACTIONS(2380), + [anon_sym_BSLASHAcl] = ACTIONS(2380), + [anon_sym_BSLASHaclp] = ACTIONS(2380), + [anon_sym_BSLASHAclp] = ACTIONS(2380), + [anon_sym_BSLASHacf] = ACTIONS(2380), + [anon_sym_BSLASHAcf] = ACTIONS(2380), + [anon_sym_BSLASHacfp] = ACTIONS(2380), + [anon_sym_BSLASHAcfp] = ACTIONS(2380), + [anon_sym_BSLASHac] = ACTIONS(2380), + [anon_sym_BSLASHAc] = ACTIONS(2380), + [anon_sym_BSLASHacp] = ACTIONS(2380), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2380), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2380), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2380), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2380), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2380), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2380), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2380), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2380), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2380), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2380), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2383), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2383), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2386), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2389), + [anon_sym_BSLASHcolor] = ACTIONS(2392), + [anon_sym_BSLASHcolorbox] = ACTIONS(2392), + [anon_sym_BSLASHtextcolor] = ACTIONS(2392), + [anon_sym_BSLASHpagecolor] = ACTIONS(2392), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2395), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2395), + [anon_sym_BSLASHtext] = ACTIONS(2398), + [anon_sym_BSLASHintertext] = ACTIONS(2398), + [anon_sym_shortintertext] = ACTIONS(2398), }, [201] = { + [sym_block_comment] = STATE(206), + [sym__flat_content] = STATE(206), + [sym__text_with_env_content] = STATE(206), + [sym__text_content] = STATE(206), + [sym_curly_group] = STATE(206), + [sym_text] = STATE(206), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(206), + [sym_inline_formula] = STATE(206), + [sym_math_set] = STATE(206), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(206), + [sym_comment_environment] = STATE(206), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(206), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(206), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(206), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(206), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(206), + [sym_generic_command] = STATE(206), + [sym_package_include] = STATE(206), + [sym_class_include] = STATE(206), + [sym_latex_include] = STATE(206), + [sym_biblatex_include] = STATE(206), + [sym_bibtex_include] = STATE(206), + [sym_graphics_include] = STATE(206), + [sym_svg_include] = STATE(206), + [sym_inkscape_include] = STATE(206), + [sym_verbatim_include] = STATE(206), + [sym_import_include] = STATE(206), + [sym_caption] = STATE(206), + [sym_citation] = STATE(206), + [sym_label_definition] = STATE(206), + [sym_label_reference] = STATE(206), + [sym_label_reference_range] = STATE(206), + [sym_label_number] = STATE(206), + [sym_new_command_definition] = STATE(206), + [sym_old_command_definition] = STATE(206), + [sym_let_command_definition] = STATE(206), + [sym_environment_definition] = STATE(206), + [sym_glossary_entry_definition] = STATE(206), + [sym_glossary_entry_reference] = STATE(206), + [sym_acronym_definition] = STATE(206), + [sym_acronym_reference] = STATE(206), + [sym_theorem_definition] = STATE(206), + [sym_color_definition] = STATE(206), + [sym_color_set_definition] = STATE(206), + [sym_color_reference] = STATE(206), + [sym_tikz_library_import] = STATE(206), + [sym_text_mode] = STATE(206), + [aux_sym_part_repeat1] = STATE(206), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_RBRACK] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym_BSLASHpart] = ACTIONS(1977), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1977), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1977), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1977), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1977), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1977), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1977), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1977), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1977), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1977), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1977), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(567), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_BSLASH_LPAREN] = ACTIONS(571), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1975), + [anon_sym_BSLASH_LBRACE] = ACTIONS(575), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(643), + [anon_sym_BSLASHintertext] = ACTIONS(643), + [anon_sym_shortintertext] = ACTIONS(643), + }, + [202] = { + [sym_block_comment] = STATE(198), + [sym__flat_content] = STATE(198), + [sym__text_with_env_content] = STATE(198), + [sym__text_content] = STATE(198), + [sym_curly_group] = STATE(198), + [sym_text] = STATE(198), + [sym_operator] = STATE(1178), + [sym_displayed_equation] = STATE(198), + [sym_inline_formula] = STATE(198), + [sym_math_set] = STATE(198), + [sym_begin] = STATE(25), + [sym_generic_environment] = STATE(198), + [sym_comment_environment] = STATE(198), + [sym__trivia_begin_comment] = STATE(2367), + [sym_verbatim_environment] = STATE(198), + [sym__trivia_begin_verbatim] = STATE(2366), + [sym_listing_environment] = STATE(198), + [sym__trivia_begin_listing] = STATE(2365), + [sym_minted_environment] = STATE(198), + [sym__trivia_begin_minted] = STATE(2364), + [sym_pycode_environment] = STATE(198), + [sym__trivia_begin_pycode] = STATE(2363), + [sym__command] = STATE(198), + [sym_generic_command] = STATE(198), + [sym_package_include] = STATE(198), + [sym_class_include] = STATE(198), + [sym_latex_include] = STATE(198), + [sym_biblatex_include] = STATE(198), + [sym_bibtex_include] = STATE(198), + [sym_graphics_include] = STATE(198), + [sym_svg_include] = STATE(198), + [sym_inkscape_include] = STATE(198), + [sym_verbatim_include] = STATE(198), + [sym_import_include] = STATE(198), + [sym_caption] = STATE(198), + [sym_citation] = STATE(198), + [sym_label_definition] = STATE(198), + [sym_label_reference] = STATE(198), + [sym_label_reference_range] = STATE(198), + [sym_label_number] = STATE(198), + [sym_new_command_definition] = STATE(198), + [sym_old_command_definition] = STATE(198), + [sym_let_command_definition] = STATE(198), + [sym_environment_definition] = STATE(198), + [sym_glossary_entry_definition] = STATE(198), + [sym_glossary_entry_reference] = STATE(198), + [sym_acronym_definition] = STATE(198), + [sym_acronym_reference] = STATE(198), + [sym_theorem_definition] = STATE(198), + [sym_color_definition] = STATE(198), + [sym_color_set_definition] = STATE(198), + [sym_color_reference] = STATE(198), + [sym_tikz_library_import] = STATE(198), + [sym_text_mode] = STATE(198), + [aux_sym_part_repeat1] = STATE(198), + [aux_sym_text_repeat1] = STATE(210), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_RPAREN] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1859), + [anon_sym_RBRACK] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_BSLASHpart] = ACTIONS(1977), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddpart] = ACTIONS(1977), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1975), + [anon_sym_BSLASHchapter] = ACTIONS(1977), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddchap] = ACTIONS(1977), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsection] = ACTIONS(1977), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHaddsec] = ACTIONS(1977), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsection] = ACTIONS(1977), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1977), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1975), + [anon_sym_BSLASHparagraph] = ACTIONS(1977), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1977), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1975), + [anon_sym_BSLASHitem] = ACTIONS(1977), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(799), + [anon_sym_BSLASH_LBRACK] = ACTIONS(799), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1975), + [anon_sym_DOLLAR] = ACTIONS(803), + [anon_sym_BSLASH_LPAREN] = ACTIONS(805), + [anon_sym_BSLASH_LBRACE] = ACTIONS(807), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(875), + [anon_sym_BSLASHintertext] = ACTIONS(875), + [anon_sym_shortintertext] = ACTIONS(875), + }, + [203] = { + [sym_block_comment] = STATE(199), + [sym__flat_content] = STATE(199), + [sym__text_with_env_content] = STATE(199), + [sym__text_content] = STATE(199), + [sym_curly_group] = STATE(199), + [sym_text] = STATE(199), + [sym_operator] = STATE(862), + [sym_displayed_equation] = STATE(199), + [sym_inline_formula] = STATE(199), + [sym_math_set] = STATE(199), + [sym_begin] = STATE(29), + [sym_generic_environment] = STATE(199), + [sym_comment_environment] = STATE(199), + [sym__trivia_begin_comment] = STATE(2344), + [sym_verbatim_environment] = STATE(199), + [sym__trivia_begin_verbatim] = STATE(2343), + [sym_listing_environment] = STATE(199), + [sym__trivia_begin_listing] = STATE(2342), + [sym_minted_environment] = STATE(199), + [sym__trivia_begin_minted] = STATE(2341), + [sym_pycode_environment] = STATE(199), + [sym__trivia_begin_pycode] = STATE(2340), + [sym__command] = STATE(199), + [sym_generic_command] = STATE(199), + [sym_package_include] = STATE(199), + [sym_class_include] = STATE(199), + [sym_latex_include] = STATE(199), + [sym_biblatex_include] = STATE(199), + [sym_bibtex_include] = STATE(199), + [sym_graphics_include] = STATE(199), + [sym_svg_include] = STATE(199), + [sym_inkscape_include] = STATE(199), + [sym_verbatim_include] = STATE(199), + [sym_import_include] = STATE(199), + [sym_caption] = STATE(199), + [sym_citation] = STATE(199), + [sym_label_definition] = STATE(199), + [sym_label_reference] = STATE(199), + [sym_label_reference_range] = STATE(199), + [sym_label_number] = STATE(199), + [sym_new_command_definition] = STATE(199), + [sym_old_command_definition] = STATE(199), + [sym_let_command_definition] = STATE(199), + [sym_environment_definition] = STATE(199), + [sym_glossary_entry_definition] = STATE(199), + [sym_glossary_entry_reference] = STATE(199), + [sym_acronym_definition] = STATE(199), + [sym_acronym_reference] = STATE(199), + [sym_theorem_definition] = STATE(199), + [sym_color_definition] = STATE(199), + [sym_color_set_definition] = STATE(199), + [sym_color_reference] = STATE(199), + [sym_tikz_library_import] = STATE(199), + [sym_text_mode] = STATE(199), + [aux_sym_part_repeat1] = STATE(199), + [aux_sym_text_repeat1] = STATE(209), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(2401), + [anon_sym_RPAREN] = ACTIONS(2401), + [anon_sym_LBRACK] = ACTIONS(2401), + [anon_sym_RBRACK] = ACTIONS(2401), + [anon_sym_COMMA] = ACTIONS(2401), + [anon_sym_EQ] = ACTIONS(2401), + [anon_sym_BSLASHpart] = ACTIONS(2125), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddpart] = ACTIONS(2125), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2121), + [anon_sym_BSLASHchapter] = ACTIONS(2125), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddchap] = ACTIONS(2125), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsection] = ACTIONS(2125), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddsec] = ACTIONS(2125), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubsection] = ACTIONS(2125), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2125), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHparagraph] = ACTIONS(2125), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2125), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2121), + [anon_sym_BSLASHitem] = ACTIONS(2125), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(691), + [anon_sym_BSLASH_LBRACK] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(693), + [anon_sym_BSLASH_LPAREN] = ACTIONS(695), + [anon_sym_BSLASH_LBRACE] = ACTIONS(697), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2121), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(767), + [anon_sym_BSLASHintertext] = ACTIONS(767), + [anon_sym_shortintertext] = ACTIONS(767), + }, + [204] = { [sym_block_comment] = STATE(197), [sym__flat_content] = STATE(197), [sym__text_with_env_content] = STATE(197), [sym__text_content] = STATE(197), [sym_curly_group] = STATE(197), [sym_text] = STATE(197), - [sym_operator] = STATE(1208), + [sym_operator] = STATE(1082), [sym_displayed_equation] = STATE(197), [sym_inline_formula] = STATE(197), [sym_math_set] = STATE(197), - [sym_begin] = STATE(15), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(197), [sym_comment_environment] = STATE(197), - [sym__trivia_begin_comment] = STATE(2350), + [sym__trivia_begin_comment] = STATE(2328), [sym_verbatim_environment] = STATE(197), - [sym__trivia_begin_verbatim] = STATE(2349), + [sym__trivia_begin_verbatim] = STATE(2329), [sym_listing_environment] = STATE(197), - [sym__trivia_begin_listing] = STATE(2346), + [sym__trivia_begin_listing] = STATE(2330), [sym_minted_environment] = STATE(197), - [sym__trivia_begin_minted] = STATE(2340), + [sym__trivia_begin_minted] = STATE(2331), [sym_pycode_environment] = STATE(197), - [sym__trivia_begin_pycode] = STATE(2338), + [sym__trivia_begin_pycode] = STATE(2332), [sym__command] = STATE(197), [sym_generic_command] = STATE(197), [sym_package_include] = STATE(197), @@ -89004,1247 +88581,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(197), [sym_color_reference] = STATE(197), [sym_tikz_library_import] = STATE(197), + [sym_text_mode] = STATE(197), [aux_sym_part_repeat1] = STATE(197), [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_RBRACK] = ACTIONS(2233), - [anon_sym_COMMA] = ACTIONS(2233), - [anon_sym_EQ] = ACTIONS(2233), - [anon_sym_BSLASHpart] = ACTIONS(2097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddpart] = ACTIONS(2097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2093), - [anon_sym_BSLASHchapter] = ACTIONS(2097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddchap] = ACTIONS(2097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsection] = ACTIONS(2097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddsec] = ACTIONS(2097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubsection] = ACTIONS(2097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHparagraph] = ACTIONS(2097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2093), - [anon_sym_BSLASHitem] = ACTIONS(2097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(568), - [anon_sym_BSLASH_LBRACK] = ACTIONS(568), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2093), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_BSLASH_LPAREN] = ACTIONS(574), - [anon_sym_BSLASH_LBRACE] = ACTIONS(576), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), - }, - [202] = { - [sym_block_comment] = STATE(202), - [sym__flat_content] = STATE(202), - [sym__text_with_env_content] = STATE(202), - [sym__text_content] = STATE(202), - [sym_curly_group] = STATE(202), - [sym_text] = STATE(202), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(202), - [sym_inline_formula] = STATE(202), - [sym_math_set] = STATE(202), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(202), - [sym_comment_environment] = STATE(202), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(202), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(202), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(202), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(202), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(202), - [sym_generic_command] = STATE(202), - [sym_package_include] = STATE(202), - [sym_class_include] = STATE(202), - [sym_latex_include] = STATE(202), - [sym_biblatex_include] = STATE(202), - [sym_bibtex_include] = STATE(202), - [sym_graphics_include] = STATE(202), - [sym_svg_include] = STATE(202), - [sym_inkscape_include] = STATE(202), - [sym_verbatim_include] = STATE(202), - [sym_import_include] = STATE(202), - [sym_caption] = STATE(202), - [sym_citation] = STATE(202), - [sym_label_definition] = STATE(202), - [sym_label_reference] = STATE(202), - [sym_label_reference_range] = STATE(202), - [sym_label_number] = STATE(202), - [sym_new_command_definition] = STATE(202), - [sym_old_command_definition] = STATE(202), - [sym_let_command_definition] = STATE(202), - [sym_environment_definition] = STATE(202), - [sym_glossary_entry_definition] = STATE(202), - [sym_glossary_entry_reference] = STATE(202), - [sym_acronym_definition] = STATE(202), - [sym_acronym_reference] = STATE(202), - [sym_theorem_definition] = STATE(202), - [sym_color_definition] = STATE(202), - [sym_color_set_definition] = STATE(202), - [sym_color_reference] = STATE(202), - [sym_tikz_library_import] = STATE(202), - [aux_sym_part_repeat1] = STATE(202), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(2235), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_RBRACK] = ACTIONS(2241), - [anon_sym_COMMA] = ACTIONS(2241), - [anon_sym_EQ] = ACTIONS(2241), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1950), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1950), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(2244), - [sym_word] = ACTIONS(2247), - [sym_placeholder] = ACTIONS(2250), - [anon_sym_PLUS] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2253), - [anon_sym_STAR] = ACTIONS(2253), - [anon_sym_SLASH] = ACTIONS(2253), - [anon_sym_CARET] = ACTIONS(2253), - [anon_sym__] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2253), - [anon_sym_GT] = ACTIONS(2253), - [anon_sym_BANG] = ACTIONS(2253), - [anon_sym_PIPE] = ACTIONS(2253), - [anon_sym_COLON] = ACTIONS(2253), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2256), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2256), - [anon_sym_DOLLAR] = ACTIONS(2259), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2262), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2265), - [anon_sym_BSLASHbegin] = ACTIONS(1987), - [anon_sym_BSLASHend] = ACTIONS(1961), - [anon_sym_BSLASHusepackage] = ACTIONS(2268), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2268), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2271), - [anon_sym_BSLASHinclude] = ACTIONS(2274), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2274), - [anon_sym_BSLASHinput] = ACTIONS(2274), - [anon_sym_BSLASHsubfile] = ACTIONS(2274), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2277), - [anon_sym_BSLASHbibliography] = ACTIONS(2280), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2283), - [anon_sym_BSLASHincludesvg] = ACTIONS(2286), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2289), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2292), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2292), - [anon_sym_BSLASHimport] = ACTIONS(2295), - [anon_sym_BSLASHsubimport] = ACTIONS(2295), - [anon_sym_BSLASHinputfrom] = ACTIONS(2295), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2295), - [anon_sym_BSLASHincludefrom] = ACTIONS(2295), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2295), - [anon_sym_BSLASHcaption] = ACTIONS(2298), - [anon_sym_BSLASHcite] = ACTIONS(2301), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2304), - [anon_sym_BSLASHCite] = ACTIONS(2301), - [anon_sym_BSLASHnocite] = ACTIONS(2301), - [anon_sym_BSLASHcitet] = ACTIONS(2301), - [anon_sym_BSLASHcitep] = ACTIONS(2301), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2304), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2304), - [anon_sym_BSLASHciteauthor] = ACTIONS(2301), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2304), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2301), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2304), - [anon_sym_BSLASHcitetitle] = ACTIONS(2301), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2304), - [anon_sym_BSLASHciteyear] = ACTIONS(2301), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2304), - [anon_sym_BSLASHcitedate] = ACTIONS(2301), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2304), - [anon_sym_BSLASHciteurl] = ACTIONS(2301), - [anon_sym_BSLASHfullcite] = ACTIONS(2301), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2301), - [anon_sym_BSLASHcitealt] = ACTIONS(2301), - [anon_sym_BSLASHcitealp] = ACTIONS(2301), - [anon_sym_BSLASHcitetext] = ACTIONS(2301), - [anon_sym_BSLASHparencite] = ACTIONS(2301), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2304), - [anon_sym_BSLASHParencite] = ACTIONS(2301), - [anon_sym_BSLASHfootcite] = ACTIONS(2301), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2301), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2301), - [anon_sym_BSLASHtextcite] = ACTIONS(2301), - [anon_sym_BSLASHTextcite] = ACTIONS(2301), - [anon_sym_BSLASHsmartcite] = ACTIONS(2301), - [anon_sym_BSLASHSmartcite] = ACTIONS(2301), - [anon_sym_BSLASHsupercite] = ACTIONS(2301), - [anon_sym_BSLASHautocite] = ACTIONS(2301), - [anon_sym_BSLASHAutocite] = ACTIONS(2301), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2304), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2304), - [anon_sym_BSLASHvolcite] = ACTIONS(2301), - [anon_sym_BSLASHVolcite] = ACTIONS(2301), - [anon_sym_BSLASHpvolcite] = ACTIONS(2301), - [anon_sym_BSLASHPvolcite] = ACTIONS(2301), - [anon_sym_BSLASHfvolcite] = ACTIONS(2301), - [anon_sym_BSLASHftvolcite] = ACTIONS(2301), - [anon_sym_BSLASHsvolcite] = ACTIONS(2301), - [anon_sym_BSLASHSvolcite] = ACTIONS(2301), - [anon_sym_BSLASHtvolcite] = ACTIONS(2301), - [anon_sym_BSLASHTvolcite] = ACTIONS(2301), - [anon_sym_BSLASHavolcite] = ACTIONS(2301), - [anon_sym_BSLASHAvolcite] = ACTIONS(2301), - [anon_sym_BSLASHnotecite] = ACTIONS(2301), - [anon_sym_BSLASHNotecite] = ACTIONS(2301), - [anon_sym_BSLASHpnotecite] = ACTIONS(2301), - [anon_sym_BSLASHPnotecite] = ACTIONS(2301), - [anon_sym_BSLASHfnotecite] = ACTIONS(2301), - [anon_sym_BSLASHlabel] = ACTIONS(2307), - [anon_sym_BSLASHref] = ACTIONS(2310), - [anon_sym_BSLASHeqref] = ACTIONS(2310), - [anon_sym_BSLASHvref] = ACTIONS(2310), - [anon_sym_BSLASHVref] = ACTIONS(2310), - [anon_sym_BSLASHautoref] = ACTIONS(2310), - [anon_sym_BSLASHpageref] = ACTIONS(2310), - [anon_sym_BSLASHcref] = ACTIONS(2310), - [anon_sym_BSLASHCref] = ACTIONS(2310), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2313), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2313), - [anon_sym_BSLASHnamecref] = ACTIONS(2310), - [anon_sym_BSLASHnameCref] = ACTIONS(2310), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2310), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2310), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2310), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2310), - [anon_sym_BSLASHlabelcref] = ACTIONS(2310), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2310), - [anon_sym_BSLASHcrefrange] = ACTIONS(2316), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2319), - [anon_sym_BSLASHCrefrange] = ACTIONS(2316), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2319), - [anon_sym_BSLASHnewlabel] = ACTIONS(2322), - [anon_sym_BSLASHnewcommand] = ACTIONS(2325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2328), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2328), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2328), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2328), - [anon_sym_BSLASHdef] = ACTIONS(2331), - [anon_sym_BSLASHlet] = ACTIONS(2334), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2340), - [anon_sym_BSLASHgls] = ACTIONS(2343), - [anon_sym_BSLASHGls] = ACTIONS(2343), - [anon_sym_BSLASHGLS] = ACTIONS(2343), - [anon_sym_BSLASHglspl] = ACTIONS(2343), - [anon_sym_BSLASHGlspl] = ACTIONS(2343), - [anon_sym_BSLASHGLSpl] = ACTIONS(2343), - [anon_sym_BSLASHglsdisp] = ACTIONS(2343), - [anon_sym_BSLASHglslink] = ACTIONS(2343), - [anon_sym_BSLASHglstext] = ACTIONS(2343), - [anon_sym_BSLASHGlstext] = ACTIONS(2343), - [anon_sym_BSLASHGLStext] = ACTIONS(2343), - [anon_sym_BSLASHglsfirst] = ACTIONS(2343), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2343), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2343), - [anon_sym_BSLASHglsplural] = ACTIONS(2343), - [anon_sym_BSLASHGlsplural] = ACTIONS(2343), - [anon_sym_BSLASHGLSplural] = ACTIONS(2343), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2343), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2343), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2343), - [anon_sym_BSLASHglsname] = ACTIONS(2343), - [anon_sym_BSLASHGlsname] = ACTIONS(2343), - [anon_sym_BSLASHGLSname] = ACTIONS(2343), - [anon_sym_BSLASHglssymbol] = ACTIONS(2343), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2343), - [anon_sym_BSLASHglsdesc] = ACTIONS(2343), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2343), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2343), - [anon_sym_BSLASHglsuseri] = ACTIONS(2343), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2343), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2343), - [anon_sym_BSLASHglsuserii] = ACTIONS(2343), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2343), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2343), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2343), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2343), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2343), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2343), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2343), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2343), - [anon_sym_BSLASHglsuserv] = ACTIONS(2343), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2343), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2343), - [anon_sym_BSLASHglsuservi] = ACTIONS(2343), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2343), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2343), - [anon_sym_BSLASHnewacronym] = ACTIONS(2346), - [anon_sym_BSLASHacrshort] = ACTIONS(2349), - [anon_sym_BSLASHAcrshort] = ACTIONS(2349), - [anon_sym_BSLASHACRshort] = ACTIONS(2349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2349), - [anon_sym_BSLASHacrlong] = ACTIONS(2349), - [anon_sym_BSLASHAcrlong] = ACTIONS(2349), - [anon_sym_BSLASHACRlong] = ACTIONS(2349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2349), - [anon_sym_BSLASHacrfull] = ACTIONS(2349), - [anon_sym_BSLASHAcrfull] = ACTIONS(2349), - [anon_sym_BSLASHACRfull] = ACTIONS(2349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2349), - [anon_sym_BSLASHacs] = ACTIONS(2349), - [anon_sym_BSLASHAcs] = ACTIONS(2349), - [anon_sym_BSLASHacsp] = ACTIONS(2349), - [anon_sym_BSLASHAcsp] = ACTIONS(2349), - [anon_sym_BSLASHacl] = ACTIONS(2349), - [anon_sym_BSLASHAcl] = ACTIONS(2349), - [anon_sym_BSLASHaclp] = ACTIONS(2349), - [anon_sym_BSLASHAclp] = ACTIONS(2349), - [anon_sym_BSLASHacf] = ACTIONS(2349), - [anon_sym_BSLASHAcf] = ACTIONS(2349), - [anon_sym_BSLASHacfp] = ACTIONS(2349), - [anon_sym_BSLASHAcfp] = ACTIONS(2349), - [anon_sym_BSLASHac] = ACTIONS(2349), - [anon_sym_BSLASHAc] = ACTIONS(2349), - [anon_sym_BSLASHacp] = ACTIONS(2349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2352), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2352), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2355), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2358), - [anon_sym_BSLASHcolor] = ACTIONS(2361), - [anon_sym_BSLASHcolorbox] = ACTIONS(2361), - [anon_sym_BSLASHtextcolor] = ACTIONS(2361), - [anon_sym_BSLASHpagecolor] = ACTIONS(2361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2364), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2364), - }, - [203] = { - [sym_block_comment] = STATE(203), - [sym__flat_content] = STATE(203), - [sym__text_with_env_content] = STATE(203), - [sym__text_content] = STATE(203), - [sym_curly_group] = STATE(203), - [sym_text] = STATE(203), - [sym_operator] = STATE(1208), - [sym_displayed_equation] = STATE(203), - [sym_inline_formula] = STATE(203), - [sym_math_set] = STATE(203), - [sym_begin] = STATE(15), - [sym_generic_environment] = STATE(203), - [sym_comment_environment] = STATE(203), - [sym__trivia_begin_comment] = STATE(2350), - [sym_verbatim_environment] = STATE(203), - [sym__trivia_begin_verbatim] = STATE(2349), - [sym_listing_environment] = STATE(203), - [sym__trivia_begin_listing] = STATE(2346), - [sym_minted_environment] = STATE(203), - [sym__trivia_begin_minted] = STATE(2340), - [sym_pycode_environment] = STATE(203), - [sym__trivia_begin_pycode] = STATE(2338), - [sym__command] = STATE(203), - [sym_generic_command] = STATE(203), - [sym_package_include] = STATE(203), - [sym_class_include] = STATE(203), - [sym_latex_include] = STATE(203), - [sym_biblatex_include] = STATE(203), - [sym_bibtex_include] = STATE(203), - [sym_graphics_include] = STATE(203), - [sym_svg_include] = STATE(203), - [sym_inkscape_include] = STATE(203), - [sym_verbatim_include] = STATE(203), - [sym_import_include] = STATE(203), - [sym_caption] = STATE(203), - [sym_citation] = STATE(203), - [sym_label_definition] = STATE(203), - [sym_label_reference] = STATE(203), - [sym_label_reference_range] = STATE(203), - [sym_label_number] = STATE(203), - [sym_new_command_definition] = STATE(203), - [sym_old_command_definition] = STATE(203), - [sym_let_command_definition] = STATE(203), - [sym_environment_definition] = STATE(203), - [sym_glossary_entry_definition] = STATE(203), - [sym_glossary_entry_reference] = STATE(203), - [sym_acronym_definition] = STATE(203), - [sym_acronym_reference] = STATE(203), - [sym_theorem_definition] = STATE(203), - [sym_color_definition] = STATE(203), - [sym_color_set_definition] = STATE(203), - [sym_color_reference] = STATE(203), - [sym_tikz_library_import] = STATE(203), - [aux_sym_part_repeat1] = STATE(203), - [aux_sym_text_repeat1] = STATE(212), - [sym_command_name] = ACTIONS(2367), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_RPAREN] = ACTIONS(2373), - [anon_sym_LBRACK] = ACTIONS(2373), - [anon_sym_RBRACK] = ACTIONS(2373), - [anon_sym_COMMA] = ACTIONS(2373), - [anon_sym_EQ] = ACTIONS(2373), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1950), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1950), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(2376), - [sym_word] = ACTIONS(2379), - [sym_placeholder] = ACTIONS(2382), - [anon_sym_PLUS] = ACTIONS(2385), - [anon_sym_DASH] = ACTIONS(2385), - [anon_sym_STAR] = ACTIONS(2385), - [anon_sym_SLASH] = ACTIONS(2385), - [anon_sym_CARET] = ACTIONS(2385), - [anon_sym__] = ACTIONS(2385), - [anon_sym_LT] = ACTIONS(2385), - [anon_sym_GT] = ACTIONS(2385), - [anon_sym_BANG] = ACTIONS(2385), - [anon_sym_PIPE] = ACTIONS(2385), - [anon_sym_COLON] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2388), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2388), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1950), - [anon_sym_DOLLAR] = ACTIONS(2391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2394), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2397), - [anon_sym_BSLASHbegin] = ACTIONS(1987), - [anon_sym_BSLASHusepackage] = ACTIONS(2400), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2400), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2403), - [anon_sym_BSLASHinclude] = ACTIONS(2406), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2406), - [anon_sym_BSLASHinput] = ACTIONS(2406), - [anon_sym_BSLASHsubfile] = ACTIONS(2406), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2409), - [anon_sym_BSLASHbibliography] = ACTIONS(2412), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2415), - [anon_sym_BSLASHincludesvg] = ACTIONS(2418), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2421), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2424), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2424), - [anon_sym_BSLASHimport] = ACTIONS(2427), - [anon_sym_BSLASHsubimport] = ACTIONS(2427), - [anon_sym_BSLASHinputfrom] = ACTIONS(2427), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2427), - [anon_sym_BSLASHincludefrom] = ACTIONS(2427), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2427), - [anon_sym_BSLASHcaption] = ACTIONS(2430), - [anon_sym_BSLASHcite] = ACTIONS(2433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2436), - [anon_sym_BSLASHCite] = ACTIONS(2433), - [anon_sym_BSLASHnocite] = ACTIONS(2433), - [anon_sym_BSLASHcitet] = ACTIONS(2433), - [anon_sym_BSLASHcitep] = ACTIONS(2433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2436), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2436), - [anon_sym_BSLASHciteauthor] = ACTIONS(2433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2436), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2436), - [anon_sym_BSLASHcitetitle] = ACTIONS(2433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2436), - [anon_sym_BSLASHciteyear] = ACTIONS(2433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2436), - [anon_sym_BSLASHcitedate] = ACTIONS(2433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2436), - [anon_sym_BSLASHciteurl] = ACTIONS(2433), - [anon_sym_BSLASHfullcite] = ACTIONS(2433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2433), - [anon_sym_BSLASHcitealt] = ACTIONS(2433), - [anon_sym_BSLASHcitealp] = ACTIONS(2433), - [anon_sym_BSLASHcitetext] = ACTIONS(2433), - [anon_sym_BSLASHparencite] = ACTIONS(2433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2436), - [anon_sym_BSLASHParencite] = ACTIONS(2433), - [anon_sym_BSLASHfootcite] = ACTIONS(2433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2433), - [anon_sym_BSLASHtextcite] = ACTIONS(2433), - [anon_sym_BSLASHTextcite] = ACTIONS(2433), - [anon_sym_BSLASHsmartcite] = ACTIONS(2433), - [anon_sym_BSLASHSmartcite] = ACTIONS(2433), - [anon_sym_BSLASHsupercite] = ACTIONS(2433), - [anon_sym_BSLASHautocite] = ACTIONS(2433), - [anon_sym_BSLASHAutocite] = ACTIONS(2433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2436), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2436), - [anon_sym_BSLASHvolcite] = ACTIONS(2433), - [anon_sym_BSLASHVolcite] = ACTIONS(2433), - [anon_sym_BSLASHpvolcite] = ACTIONS(2433), - [anon_sym_BSLASHPvolcite] = ACTIONS(2433), - [anon_sym_BSLASHfvolcite] = ACTIONS(2433), - [anon_sym_BSLASHftvolcite] = ACTIONS(2433), - [anon_sym_BSLASHsvolcite] = ACTIONS(2433), - [anon_sym_BSLASHSvolcite] = ACTIONS(2433), - [anon_sym_BSLASHtvolcite] = ACTIONS(2433), - [anon_sym_BSLASHTvolcite] = ACTIONS(2433), - [anon_sym_BSLASHavolcite] = ACTIONS(2433), - [anon_sym_BSLASHAvolcite] = ACTIONS(2433), - [anon_sym_BSLASHnotecite] = ACTIONS(2433), - [anon_sym_BSLASHNotecite] = ACTIONS(2433), - [anon_sym_BSLASHpnotecite] = ACTIONS(2433), - [anon_sym_BSLASHPnotecite] = ACTIONS(2433), - [anon_sym_BSLASHfnotecite] = ACTIONS(2433), - [anon_sym_BSLASHlabel] = ACTIONS(2439), - [anon_sym_BSLASHref] = ACTIONS(2442), - [anon_sym_BSLASHeqref] = ACTIONS(2442), - [anon_sym_BSLASHvref] = ACTIONS(2442), - [anon_sym_BSLASHVref] = ACTIONS(2442), - [anon_sym_BSLASHautoref] = ACTIONS(2442), - [anon_sym_BSLASHpageref] = ACTIONS(2442), - [anon_sym_BSLASHcref] = ACTIONS(2442), - [anon_sym_BSLASHCref] = ACTIONS(2442), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2445), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2445), - [anon_sym_BSLASHnamecref] = ACTIONS(2442), - [anon_sym_BSLASHnameCref] = ACTIONS(2442), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2442), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2442), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2442), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2442), - [anon_sym_BSLASHlabelcref] = ACTIONS(2442), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2442), - [anon_sym_BSLASHcrefrange] = ACTIONS(2448), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2451), - [anon_sym_BSLASHCrefrange] = ACTIONS(2448), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2451), - [anon_sym_BSLASHnewlabel] = ACTIONS(2454), - [anon_sym_BSLASHnewcommand] = ACTIONS(2457), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2460), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2457), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2460), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2457), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2460), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2457), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2460), - [anon_sym_BSLASHdef] = ACTIONS(2463), - [anon_sym_BSLASHlet] = ACTIONS(2466), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2472), - [anon_sym_BSLASHgls] = ACTIONS(2475), - [anon_sym_BSLASHGls] = ACTIONS(2475), - [anon_sym_BSLASHGLS] = ACTIONS(2475), - [anon_sym_BSLASHglspl] = ACTIONS(2475), - [anon_sym_BSLASHGlspl] = ACTIONS(2475), - [anon_sym_BSLASHGLSpl] = ACTIONS(2475), - [anon_sym_BSLASHglsdisp] = ACTIONS(2475), - [anon_sym_BSLASHglslink] = ACTIONS(2475), - [anon_sym_BSLASHglstext] = ACTIONS(2475), - [anon_sym_BSLASHGlstext] = ACTIONS(2475), - [anon_sym_BSLASHGLStext] = ACTIONS(2475), - [anon_sym_BSLASHglsfirst] = ACTIONS(2475), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2475), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2475), - [anon_sym_BSLASHglsplural] = ACTIONS(2475), - [anon_sym_BSLASHGlsplural] = ACTIONS(2475), - [anon_sym_BSLASHGLSplural] = ACTIONS(2475), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2475), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2475), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2475), - [anon_sym_BSLASHglsname] = ACTIONS(2475), - [anon_sym_BSLASHGlsname] = ACTIONS(2475), - [anon_sym_BSLASHGLSname] = ACTIONS(2475), - [anon_sym_BSLASHglssymbol] = ACTIONS(2475), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2475), - [anon_sym_BSLASHglsdesc] = ACTIONS(2475), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2475), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2475), - [anon_sym_BSLASHglsuseri] = ACTIONS(2475), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2475), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2475), - [anon_sym_BSLASHglsuserii] = ACTIONS(2475), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2475), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2475), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2475), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2475), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2475), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2475), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2475), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2475), - [anon_sym_BSLASHglsuserv] = ACTIONS(2475), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2475), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2475), - [anon_sym_BSLASHglsuservi] = ACTIONS(2475), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2475), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2475), - [anon_sym_BSLASHnewacronym] = ACTIONS(2478), - [anon_sym_BSLASHacrshort] = ACTIONS(2481), - [anon_sym_BSLASHAcrshort] = ACTIONS(2481), - [anon_sym_BSLASHACRshort] = ACTIONS(2481), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2481), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2481), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2481), - [anon_sym_BSLASHacrlong] = ACTIONS(2481), - [anon_sym_BSLASHAcrlong] = ACTIONS(2481), - [anon_sym_BSLASHACRlong] = ACTIONS(2481), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2481), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2481), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2481), - [anon_sym_BSLASHacrfull] = ACTIONS(2481), - [anon_sym_BSLASHAcrfull] = ACTIONS(2481), - [anon_sym_BSLASHACRfull] = ACTIONS(2481), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2481), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2481), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2481), - [anon_sym_BSLASHacs] = ACTIONS(2481), - [anon_sym_BSLASHAcs] = ACTIONS(2481), - [anon_sym_BSLASHacsp] = ACTIONS(2481), - [anon_sym_BSLASHAcsp] = ACTIONS(2481), - [anon_sym_BSLASHacl] = ACTIONS(2481), - [anon_sym_BSLASHAcl] = ACTIONS(2481), - [anon_sym_BSLASHaclp] = ACTIONS(2481), - [anon_sym_BSLASHAclp] = ACTIONS(2481), - [anon_sym_BSLASHacf] = ACTIONS(2481), - [anon_sym_BSLASHAcf] = ACTIONS(2481), - [anon_sym_BSLASHacfp] = ACTIONS(2481), - [anon_sym_BSLASHAcfp] = ACTIONS(2481), - [anon_sym_BSLASHac] = ACTIONS(2481), - [anon_sym_BSLASHAc] = ACTIONS(2481), - [anon_sym_BSLASHacp] = ACTIONS(2481), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2481), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2481), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2481), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2481), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2481), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2481), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2481), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2481), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2481), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2481), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2484), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2484), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2487), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2490), - [anon_sym_BSLASHcolor] = ACTIONS(2493), - [anon_sym_BSLASHcolorbox] = ACTIONS(2493), - [anon_sym_BSLASHtextcolor] = ACTIONS(2493), - [anon_sym_BSLASHpagecolor] = ACTIONS(2493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2496), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2496), - }, - [204] = { - [sym_block_comment] = STATE(196), - [sym__flat_content] = STATE(196), - [sym__text_with_env_content] = STATE(196), - [sym__text_content] = STATE(196), - [sym_curly_group] = STATE(196), - [sym_text] = STATE(196), - [sym_operator] = STATE(858), - [sym_displayed_equation] = STATE(196), - [sym_inline_formula] = STATE(196), - [sym_math_set] = STATE(196), - [sym_begin] = STATE(26), - [sym_generic_environment] = STATE(196), - [sym_comment_environment] = STATE(196), - [sym__trivia_begin_comment] = STATE(2324), - [sym_verbatim_environment] = STATE(196), - [sym__trivia_begin_verbatim] = STATE(2323), - [sym_listing_environment] = STATE(196), - [sym__trivia_begin_listing] = STATE(2322), - [sym_minted_environment] = STATE(196), - [sym__trivia_begin_minted] = STATE(2321), - [sym_pycode_environment] = STATE(196), - [sym__trivia_begin_pycode] = STATE(2319), - [sym__command] = STATE(196), - [sym_generic_command] = STATE(196), - [sym_package_include] = STATE(196), - [sym_class_include] = STATE(196), - [sym_latex_include] = STATE(196), - [sym_biblatex_include] = STATE(196), - [sym_bibtex_include] = STATE(196), - [sym_graphics_include] = STATE(196), - [sym_svg_include] = STATE(196), - [sym_inkscape_include] = STATE(196), - [sym_verbatim_include] = STATE(196), - [sym_import_include] = STATE(196), - [sym_caption] = STATE(196), - [sym_citation] = STATE(196), - [sym_label_definition] = STATE(196), - [sym_label_reference] = STATE(196), - [sym_label_reference_range] = STATE(196), - [sym_label_number] = STATE(196), - [sym_new_command_definition] = STATE(196), - [sym_old_command_definition] = STATE(196), - [sym_let_command_definition] = STATE(196), - [sym_environment_definition] = STATE(196), - [sym_glossary_entry_definition] = STATE(196), - [sym_glossary_entry_reference] = STATE(196), - [sym_acronym_definition] = STATE(196), - [sym_acronym_reference] = STATE(196), - [sym_theorem_definition] = STATE(196), - [sym_color_definition] = STATE(196), - [sym_color_set_definition] = STATE(196), - [sym_color_reference] = STATE(196), - [sym_tikz_library_import] = STATE(196), - [aux_sym_part_repeat1] = STATE(196), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_RPAREN] = ACTIONS(2499), - [anon_sym_LBRACK] = ACTIONS(2499), - [anon_sym_RBRACK] = ACTIONS(2499), - [anon_sym_COMMA] = ACTIONS(2499), - [anon_sym_EQ] = ACTIONS(2499), - [anon_sym_BSLASHpart] = ACTIONS(2097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddpart] = ACTIONS(2097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2093), - [anon_sym_BSLASHchapter] = ACTIONS(2097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddchap] = ACTIONS(2097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsection] = ACTIONS(2097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddsec] = ACTIONS(2097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubsection] = ACTIONS(2097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHparagraph] = ACTIONS(2097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2093), - [anon_sym_BSLASHitem] = ACTIONS(2097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(802), - [anon_sym_BSLASH_LBRACK] = ACTIONS(802), - [anon_sym_DOLLAR] = ACTIONS(804), - [anon_sym_BSLASH_LPAREN] = ACTIONS(806), - [anon_sym_BSLASH_LBRACE] = ACTIONS(808), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2093), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_RBRACK] = ACTIONS(2403), + [anon_sym_COMMA] = ACTIONS(2403), + [anon_sym_EQ] = ACTIONS(2403), + [anon_sym_BSLASHpart] = ACTIONS(2125), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddpart] = ACTIONS(2125), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2121), + [anon_sym_BSLASHchapter] = ACTIONS(2125), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddchap] = ACTIONS(2125), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsection] = ACTIONS(2125), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHaddsec] = ACTIONS(2125), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubsection] = ACTIONS(2125), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2125), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2121), + [anon_sym_BSLASHparagraph] = ACTIONS(2125), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2125), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2121), + [anon_sym_BSLASHitem] = ACTIONS(2125), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(231), + [anon_sym_DOLLAR] = ACTIONS(233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(237), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [anon_sym_BSLASHend] = ACTIONS(2125), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(307), + [anon_sym_BSLASHintertext] = ACTIONS(307), + [anon_sym_shortintertext] = ACTIONS(307), }, [205] = { [sym_block_comment] = STATE(205), @@ -90253,22 +88862,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__text_content] = STATE(205), [sym_curly_group] = STATE(205), [sym_text] = STATE(205), - [sym_operator] = STATE(858), + [sym_operator] = STATE(1082), [sym_displayed_equation] = STATE(205), [sym_inline_formula] = STATE(205), [sym_math_set] = STATE(205), - [sym_begin] = STATE(26), + [sym_begin] = STATE(11), [sym_generic_environment] = STATE(205), [sym_comment_environment] = STATE(205), - [sym__trivia_begin_comment] = STATE(2324), + [sym__trivia_begin_comment] = STATE(2328), [sym_verbatim_environment] = STATE(205), - [sym__trivia_begin_verbatim] = STATE(2323), + [sym__trivia_begin_verbatim] = STATE(2329), [sym_listing_environment] = STATE(205), - [sym__trivia_begin_listing] = STATE(2322), + [sym__trivia_begin_listing] = STATE(2330), [sym_minted_environment] = STATE(205), - [sym__trivia_begin_minted] = STATE(2321), + [sym__trivia_begin_minted] = STATE(2331), [sym_pycode_environment] = STATE(205), - [sym__trivia_begin_pycode] = STATE(2319), + [sym__trivia_begin_pycode] = STATE(2332), [sym__command] = STATE(205), [sym_generic_command] = STATE(205), [sym_package_include] = STATE(205), @@ -90300,670 +88909,678 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(205), [sym_color_reference] = STATE(205), [sym_tikz_library_import] = STATE(205), + [sym_text_mode] = STATE(205), [aux_sym_part_repeat1] = STATE(205), - [aux_sym_text_repeat1] = STATE(215), - [sym_command_name] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2504), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_RPAREN] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_RBRACK] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_EQ] = ACTIONS(2507), - [anon_sym_BSLASHpart] = ACTIONS(1961), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddpart] = ACTIONS(1961), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1950), - [anon_sym_BSLASHchapter] = ACTIONS(1961), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddchap] = ACTIONS(1961), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsection] = ACTIONS(1961), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHaddsec] = ACTIONS(1961), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1961), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1950), - [anon_sym_BSLASHparagraph] = ACTIONS(1961), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1950), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1961), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1950), - [anon_sym_BSLASHitem] = ACTIONS(1961), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1950), - [anon_sym_LBRACE] = ACTIONS(2510), - [sym_word] = ACTIONS(2513), - [sym_placeholder] = ACTIONS(2516), - [anon_sym_PLUS] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_STAR] = ACTIONS(2519), - [anon_sym_SLASH] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2519), - [anon_sym__] = ACTIONS(2519), - [anon_sym_LT] = ACTIONS(2519), - [anon_sym_GT] = ACTIONS(2519), - [anon_sym_BANG] = ACTIONS(2519), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_COLON] = ACTIONS(2519), - [anon_sym_SQUOTE] = ACTIONS(2519), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2522), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2522), - [anon_sym_DOLLAR] = ACTIONS(2525), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2528), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2531), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1950), - [anon_sym_BSLASHbegin] = ACTIONS(1987), - [anon_sym_BSLASHusepackage] = ACTIONS(2534), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2534), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2537), - [anon_sym_BSLASHinclude] = ACTIONS(2540), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2540), - [anon_sym_BSLASHinput] = ACTIONS(2540), - [anon_sym_BSLASHsubfile] = ACTIONS(2540), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2543), - [anon_sym_BSLASHbibliography] = ACTIONS(2546), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2549), - [anon_sym_BSLASHincludesvg] = ACTIONS(2552), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2555), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2558), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2558), - [anon_sym_BSLASHimport] = ACTIONS(2561), - [anon_sym_BSLASHsubimport] = ACTIONS(2561), - [anon_sym_BSLASHinputfrom] = ACTIONS(2561), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2561), - [anon_sym_BSLASHincludefrom] = ACTIONS(2561), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2561), - [anon_sym_BSLASHcaption] = ACTIONS(2564), - [anon_sym_BSLASHcite] = ACTIONS(2567), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2570), - [anon_sym_BSLASHCite] = ACTIONS(2567), - [anon_sym_BSLASHnocite] = ACTIONS(2567), - [anon_sym_BSLASHcitet] = ACTIONS(2567), - [anon_sym_BSLASHcitep] = ACTIONS(2567), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2570), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2570), - [anon_sym_BSLASHciteauthor] = ACTIONS(2567), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2570), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2567), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2570), - [anon_sym_BSLASHcitetitle] = ACTIONS(2567), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2570), - [anon_sym_BSLASHciteyear] = ACTIONS(2567), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2570), - [anon_sym_BSLASHcitedate] = ACTIONS(2567), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2570), - [anon_sym_BSLASHciteurl] = ACTIONS(2567), - [anon_sym_BSLASHfullcite] = ACTIONS(2567), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2567), - [anon_sym_BSLASHcitealt] = ACTIONS(2567), - [anon_sym_BSLASHcitealp] = ACTIONS(2567), - [anon_sym_BSLASHcitetext] = ACTIONS(2567), - [anon_sym_BSLASHparencite] = ACTIONS(2567), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2570), - [anon_sym_BSLASHParencite] = ACTIONS(2567), - [anon_sym_BSLASHfootcite] = ACTIONS(2567), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2567), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2567), - [anon_sym_BSLASHtextcite] = ACTIONS(2567), - [anon_sym_BSLASHTextcite] = ACTIONS(2567), - [anon_sym_BSLASHsmartcite] = ACTIONS(2567), - [anon_sym_BSLASHSmartcite] = ACTIONS(2567), - [anon_sym_BSLASHsupercite] = ACTIONS(2567), - [anon_sym_BSLASHautocite] = ACTIONS(2567), - [anon_sym_BSLASHAutocite] = ACTIONS(2567), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2570), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2570), - [anon_sym_BSLASHvolcite] = ACTIONS(2567), - [anon_sym_BSLASHVolcite] = ACTIONS(2567), - [anon_sym_BSLASHpvolcite] = ACTIONS(2567), - [anon_sym_BSLASHPvolcite] = ACTIONS(2567), - [anon_sym_BSLASHfvolcite] = ACTIONS(2567), - [anon_sym_BSLASHftvolcite] = ACTIONS(2567), - [anon_sym_BSLASHsvolcite] = ACTIONS(2567), - [anon_sym_BSLASHSvolcite] = ACTIONS(2567), - [anon_sym_BSLASHtvolcite] = ACTIONS(2567), - [anon_sym_BSLASHTvolcite] = ACTIONS(2567), - [anon_sym_BSLASHavolcite] = ACTIONS(2567), - [anon_sym_BSLASHAvolcite] = ACTIONS(2567), - [anon_sym_BSLASHnotecite] = ACTIONS(2567), - [anon_sym_BSLASHNotecite] = ACTIONS(2567), - [anon_sym_BSLASHpnotecite] = ACTIONS(2567), - [anon_sym_BSLASHPnotecite] = ACTIONS(2567), - [anon_sym_BSLASHfnotecite] = ACTIONS(2567), - [anon_sym_BSLASHlabel] = ACTIONS(2573), - [anon_sym_BSLASHref] = ACTIONS(2576), - [anon_sym_BSLASHeqref] = ACTIONS(2576), - [anon_sym_BSLASHvref] = ACTIONS(2576), - [anon_sym_BSLASHVref] = ACTIONS(2576), - [anon_sym_BSLASHautoref] = ACTIONS(2576), - [anon_sym_BSLASHpageref] = ACTIONS(2576), - [anon_sym_BSLASHcref] = ACTIONS(2576), - [anon_sym_BSLASHCref] = ACTIONS(2576), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2579), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2579), - [anon_sym_BSLASHnamecref] = ACTIONS(2576), - [anon_sym_BSLASHnameCref] = ACTIONS(2576), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2576), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2576), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2576), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2576), - [anon_sym_BSLASHlabelcref] = ACTIONS(2576), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2576), - [anon_sym_BSLASHcrefrange] = ACTIONS(2582), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2585), - [anon_sym_BSLASHCrefrange] = ACTIONS(2582), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2585), - [anon_sym_BSLASHnewlabel] = ACTIONS(2588), - [anon_sym_BSLASHnewcommand] = ACTIONS(2591), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2594), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2591), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2594), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2591), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2594), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2591), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2594), - [anon_sym_BSLASHdef] = ACTIONS(2597), - [anon_sym_BSLASHlet] = ACTIONS(2600), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2603), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2606), - [anon_sym_BSLASHgls] = ACTIONS(2609), - [anon_sym_BSLASHGls] = ACTIONS(2609), - [anon_sym_BSLASHGLS] = ACTIONS(2609), - [anon_sym_BSLASHglspl] = ACTIONS(2609), - [anon_sym_BSLASHGlspl] = ACTIONS(2609), - [anon_sym_BSLASHGLSpl] = ACTIONS(2609), - [anon_sym_BSLASHglsdisp] = ACTIONS(2609), - [anon_sym_BSLASHglslink] = ACTIONS(2609), - [anon_sym_BSLASHglstext] = ACTIONS(2609), - [anon_sym_BSLASHGlstext] = ACTIONS(2609), - [anon_sym_BSLASHGLStext] = ACTIONS(2609), - [anon_sym_BSLASHglsfirst] = ACTIONS(2609), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2609), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2609), - [anon_sym_BSLASHglsplural] = ACTIONS(2609), - [anon_sym_BSLASHGlsplural] = ACTIONS(2609), - [anon_sym_BSLASHGLSplural] = ACTIONS(2609), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2609), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2609), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2609), - [anon_sym_BSLASHglsname] = ACTIONS(2609), - [anon_sym_BSLASHGlsname] = ACTIONS(2609), - [anon_sym_BSLASHGLSname] = ACTIONS(2609), - [anon_sym_BSLASHglssymbol] = ACTIONS(2609), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2609), - [anon_sym_BSLASHglsdesc] = ACTIONS(2609), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2609), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2609), - [anon_sym_BSLASHglsuseri] = ACTIONS(2609), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2609), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2609), - [anon_sym_BSLASHglsuserii] = ACTIONS(2609), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2609), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2609), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2609), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2609), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2609), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2609), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2609), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2609), - [anon_sym_BSLASHglsuserv] = ACTIONS(2609), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2609), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2609), - [anon_sym_BSLASHglsuservi] = ACTIONS(2609), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2609), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2609), - [anon_sym_BSLASHnewacronym] = ACTIONS(2612), - [anon_sym_BSLASHacrshort] = ACTIONS(2615), - [anon_sym_BSLASHAcrshort] = ACTIONS(2615), - [anon_sym_BSLASHACRshort] = ACTIONS(2615), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2615), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2615), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2615), - [anon_sym_BSLASHacrlong] = ACTIONS(2615), - [anon_sym_BSLASHAcrlong] = ACTIONS(2615), - [anon_sym_BSLASHACRlong] = ACTIONS(2615), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2615), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2615), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2615), - [anon_sym_BSLASHacrfull] = ACTIONS(2615), - [anon_sym_BSLASHAcrfull] = ACTIONS(2615), - [anon_sym_BSLASHACRfull] = ACTIONS(2615), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2615), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2615), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2615), - [anon_sym_BSLASHacs] = ACTIONS(2615), - [anon_sym_BSLASHAcs] = ACTIONS(2615), - [anon_sym_BSLASHacsp] = ACTIONS(2615), - [anon_sym_BSLASHAcsp] = ACTIONS(2615), - [anon_sym_BSLASHacl] = ACTIONS(2615), - [anon_sym_BSLASHAcl] = ACTIONS(2615), - [anon_sym_BSLASHaclp] = ACTIONS(2615), - [anon_sym_BSLASHAclp] = ACTIONS(2615), - [anon_sym_BSLASHacf] = ACTIONS(2615), - [anon_sym_BSLASHAcf] = ACTIONS(2615), - [anon_sym_BSLASHacfp] = ACTIONS(2615), - [anon_sym_BSLASHAcfp] = ACTIONS(2615), - [anon_sym_BSLASHac] = ACTIONS(2615), - [anon_sym_BSLASHAc] = ACTIONS(2615), - [anon_sym_BSLASHacp] = ACTIONS(2615), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2615), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2615), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2615), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2615), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2615), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2615), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2615), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2615), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2615), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2615), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2618), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2618), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2621), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2624), - [anon_sym_BSLASHcolor] = ACTIONS(2627), - [anon_sym_BSLASHcolorbox] = ACTIONS(2627), - [anon_sym_BSLASHtextcolor] = ACTIONS(2627), - [anon_sym_BSLASHpagecolor] = ACTIONS(2627), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2630), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2630), + [aux_sym_text_repeat1] = STATE(212), + [sym_command_name] = ACTIONS(2405), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2408), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_RPAREN] = ACTIONS(2411), + [anon_sym_LBRACK] = ACTIONS(2411), + [anon_sym_RBRACK] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2411), + [anon_sym_EQ] = ACTIONS(2411), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1979), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1979), + [anon_sym_BSLASHitem] = ACTIONS(1990), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(2414), + [sym_word] = ACTIONS(2417), + [sym_placeholder] = ACTIONS(2420), + [anon_sym_PLUS] = ACTIONS(2423), + [anon_sym_DASH] = ACTIONS(2423), + [anon_sym_STAR] = ACTIONS(2423), + [anon_sym_SLASH] = ACTIONS(2423), + [anon_sym_CARET] = ACTIONS(2423), + [anon_sym__] = ACTIONS(2423), + [anon_sym_LT] = ACTIONS(2423), + [anon_sym_GT] = ACTIONS(2423), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_PIPE] = ACTIONS(2423), + [anon_sym_COLON] = ACTIONS(2423), + [anon_sym_SQUOTE] = ACTIONS(2423), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2426), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2426), + [anon_sym_DOLLAR] = ACTIONS(2429), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2432), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2435), + [anon_sym_BSLASHbegin] = ACTIONS(2016), + [anon_sym_BSLASHend] = ACTIONS(1990), + [anon_sym_BSLASHusepackage] = ACTIONS(2438), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2438), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2441), + [anon_sym_BSLASHinclude] = ACTIONS(2444), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2444), + [anon_sym_BSLASHinput] = ACTIONS(2444), + [anon_sym_BSLASHsubfile] = ACTIONS(2444), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2447), + [anon_sym_BSLASHbibliography] = ACTIONS(2450), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2453), + [anon_sym_BSLASHincludesvg] = ACTIONS(2456), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2459), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2462), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2462), + [anon_sym_BSLASHimport] = ACTIONS(2465), + [anon_sym_BSLASHsubimport] = ACTIONS(2465), + [anon_sym_BSLASHinputfrom] = ACTIONS(2465), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2465), + [anon_sym_BSLASHincludefrom] = ACTIONS(2465), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2465), + [anon_sym_BSLASHcaption] = ACTIONS(2468), + [anon_sym_BSLASHcite] = ACTIONS(2471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2474), + [anon_sym_BSLASHCite] = ACTIONS(2471), + [anon_sym_BSLASHnocite] = ACTIONS(2471), + [anon_sym_BSLASHcitet] = ACTIONS(2471), + [anon_sym_BSLASHcitep] = ACTIONS(2471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2474), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2474), + [anon_sym_BSLASHciteauthor] = ACTIONS(2471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2474), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2474), + [anon_sym_BSLASHcitetitle] = ACTIONS(2471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2474), + [anon_sym_BSLASHciteyear] = ACTIONS(2471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2474), + [anon_sym_BSLASHcitedate] = ACTIONS(2471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2474), + [anon_sym_BSLASHciteurl] = ACTIONS(2471), + [anon_sym_BSLASHfullcite] = ACTIONS(2471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2471), + [anon_sym_BSLASHcitealt] = ACTIONS(2471), + [anon_sym_BSLASHcitealp] = ACTIONS(2471), + [anon_sym_BSLASHcitetext] = ACTIONS(2471), + [anon_sym_BSLASHparencite] = ACTIONS(2471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2474), + [anon_sym_BSLASHParencite] = ACTIONS(2471), + [anon_sym_BSLASHfootcite] = ACTIONS(2471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2471), + [anon_sym_BSLASHtextcite] = ACTIONS(2471), + [anon_sym_BSLASHTextcite] = ACTIONS(2471), + [anon_sym_BSLASHsmartcite] = ACTIONS(2471), + [anon_sym_BSLASHSmartcite] = ACTIONS(2471), + [anon_sym_BSLASHsupercite] = ACTIONS(2471), + [anon_sym_BSLASHautocite] = ACTIONS(2471), + [anon_sym_BSLASHAutocite] = ACTIONS(2471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2474), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2474), + [anon_sym_BSLASHvolcite] = ACTIONS(2471), + [anon_sym_BSLASHVolcite] = ACTIONS(2471), + [anon_sym_BSLASHpvolcite] = ACTIONS(2471), + [anon_sym_BSLASHPvolcite] = ACTIONS(2471), + [anon_sym_BSLASHfvolcite] = ACTIONS(2471), + [anon_sym_BSLASHftvolcite] = ACTIONS(2471), + [anon_sym_BSLASHsvolcite] = ACTIONS(2471), + [anon_sym_BSLASHSvolcite] = ACTIONS(2471), + [anon_sym_BSLASHtvolcite] = ACTIONS(2471), + [anon_sym_BSLASHTvolcite] = ACTIONS(2471), + [anon_sym_BSLASHavolcite] = ACTIONS(2471), + [anon_sym_BSLASHAvolcite] = ACTIONS(2471), + [anon_sym_BSLASHnotecite] = ACTIONS(2471), + [anon_sym_BSLASHNotecite] = ACTIONS(2471), + [anon_sym_BSLASHpnotecite] = ACTIONS(2471), + [anon_sym_BSLASHPnotecite] = ACTIONS(2471), + [anon_sym_BSLASHfnotecite] = ACTIONS(2471), + [anon_sym_BSLASHlabel] = ACTIONS(2477), + [anon_sym_BSLASHref] = ACTIONS(2480), + [anon_sym_BSLASHeqref] = ACTIONS(2480), + [anon_sym_BSLASHvref] = ACTIONS(2480), + [anon_sym_BSLASHVref] = ACTIONS(2480), + [anon_sym_BSLASHautoref] = ACTIONS(2480), + [anon_sym_BSLASHpageref] = ACTIONS(2480), + [anon_sym_BSLASHcref] = ACTIONS(2480), + [anon_sym_BSLASHCref] = ACTIONS(2480), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2483), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2483), + [anon_sym_BSLASHnamecref] = ACTIONS(2480), + [anon_sym_BSLASHnameCref] = ACTIONS(2480), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2480), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2480), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2480), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2480), + [anon_sym_BSLASHlabelcref] = ACTIONS(2480), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2480), + [anon_sym_BSLASHcrefrange] = ACTIONS(2486), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2489), + [anon_sym_BSLASHCrefrange] = ACTIONS(2486), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2489), + [anon_sym_BSLASHnewlabel] = ACTIONS(2492), + [anon_sym_BSLASHnewcommand] = ACTIONS(2495), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2498), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2495), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2498), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2495), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2498), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2495), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2498), + [anon_sym_BSLASHdef] = ACTIONS(2501), + [anon_sym_BSLASHlet] = ACTIONS(2504), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2507), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2510), + [anon_sym_BSLASHgls] = ACTIONS(2513), + [anon_sym_BSLASHGls] = ACTIONS(2513), + [anon_sym_BSLASHGLS] = ACTIONS(2513), + [anon_sym_BSLASHglspl] = ACTIONS(2513), + [anon_sym_BSLASHGlspl] = ACTIONS(2513), + [anon_sym_BSLASHGLSpl] = ACTIONS(2513), + [anon_sym_BSLASHglsdisp] = ACTIONS(2513), + [anon_sym_BSLASHglslink] = ACTIONS(2513), + [anon_sym_BSLASHglstext] = ACTIONS(2513), + [anon_sym_BSLASHGlstext] = ACTIONS(2513), + [anon_sym_BSLASHGLStext] = ACTIONS(2513), + [anon_sym_BSLASHglsfirst] = ACTIONS(2513), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2513), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2513), + [anon_sym_BSLASHglsplural] = ACTIONS(2513), + [anon_sym_BSLASHGlsplural] = ACTIONS(2513), + [anon_sym_BSLASHGLSplural] = ACTIONS(2513), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2513), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2513), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2513), + [anon_sym_BSLASHglsname] = ACTIONS(2513), + [anon_sym_BSLASHGlsname] = ACTIONS(2513), + [anon_sym_BSLASHGLSname] = ACTIONS(2513), + [anon_sym_BSLASHglssymbol] = ACTIONS(2513), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2513), + [anon_sym_BSLASHglsdesc] = ACTIONS(2513), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2513), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2513), + [anon_sym_BSLASHglsuseri] = ACTIONS(2513), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2513), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2513), + [anon_sym_BSLASHglsuserii] = ACTIONS(2513), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2513), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2513), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2513), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2513), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2513), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2513), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2513), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2513), + [anon_sym_BSLASHglsuserv] = ACTIONS(2513), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2513), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2513), + [anon_sym_BSLASHglsuservi] = ACTIONS(2513), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2513), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2513), + [anon_sym_BSLASHnewacronym] = ACTIONS(2516), + [anon_sym_BSLASHacrshort] = ACTIONS(2519), + [anon_sym_BSLASHAcrshort] = ACTIONS(2519), + [anon_sym_BSLASHACRshort] = ACTIONS(2519), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2519), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2519), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2519), + [anon_sym_BSLASHacrlong] = ACTIONS(2519), + [anon_sym_BSLASHAcrlong] = ACTIONS(2519), + [anon_sym_BSLASHACRlong] = ACTIONS(2519), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2519), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2519), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2519), + [anon_sym_BSLASHacrfull] = ACTIONS(2519), + [anon_sym_BSLASHAcrfull] = ACTIONS(2519), + [anon_sym_BSLASHACRfull] = ACTIONS(2519), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2519), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2519), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2519), + [anon_sym_BSLASHacs] = ACTIONS(2519), + [anon_sym_BSLASHAcs] = ACTIONS(2519), + [anon_sym_BSLASHacsp] = ACTIONS(2519), + [anon_sym_BSLASHAcsp] = ACTIONS(2519), + [anon_sym_BSLASHacl] = ACTIONS(2519), + [anon_sym_BSLASHAcl] = ACTIONS(2519), + [anon_sym_BSLASHaclp] = ACTIONS(2519), + [anon_sym_BSLASHAclp] = ACTIONS(2519), + [anon_sym_BSLASHacf] = ACTIONS(2519), + [anon_sym_BSLASHAcf] = ACTIONS(2519), + [anon_sym_BSLASHacfp] = ACTIONS(2519), + [anon_sym_BSLASHAcfp] = ACTIONS(2519), + [anon_sym_BSLASHac] = ACTIONS(2519), + [anon_sym_BSLASHAc] = ACTIONS(2519), + [anon_sym_BSLASHacp] = ACTIONS(2519), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2519), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2519), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2519), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2519), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2519), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2519), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2519), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2519), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2519), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2519), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2522), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2522), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2525), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2528), + [anon_sym_BSLASHcolor] = ACTIONS(2531), + [anon_sym_BSLASHcolorbox] = ACTIONS(2531), + [anon_sym_BSLASHtextcolor] = ACTIONS(2531), + [anon_sym_BSLASHpagecolor] = ACTIONS(2531), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2534), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2534), + [anon_sym_BSLASHtext] = ACTIONS(2537), + [anon_sym_BSLASHintertext] = ACTIONS(2537), + [anon_sym_shortintertext] = ACTIONS(2537), }, [206] = { - [sym_block_comment] = STATE(195), - [sym__flat_content] = STATE(195), - [sym__text_with_env_content] = STATE(195), - [sym__text_content] = STATE(195), - [sym_curly_group] = STATE(195), - [sym_text] = STATE(195), - [sym_operator] = STATE(1077), - [sym_displayed_equation] = STATE(195), - [sym_inline_formula] = STATE(195), - [sym_math_set] = STATE(195), - [sym_begin] = STATE(29), - [sym_generic_environment] = STATE(195), - [sym_comment_environment] = STATE(195), - [sym__trivia_begin_comment] = STATE(2314), - [sym_verbatim_environment] = STATE(195), - [sym__trivia_begin_verbatim] = STATE(2315), - [sym_listing_environment] = STATE(195), - [sym__trivia_begin_listing] = STATE(2316), - [sym_minted_environment] = STATE(195), - [sym__trivia_begin_minted] = STATE(2317), - [sym_pycode_environment] = STATE(195), - [sym__trivia_begin_pycode] = STATE(2318), - [sym__command] = STATE(195), - [sym_generic_command] = STATE(195), - [sym_package_include] = STATE(195), - [sym_class_include] = STATE(195), - [sym_latex_include] = STATE(195), - [sym_biblatex_include] = STATE(195), - [sym_bibtex_include] = STATE(195), - [sym_graphics_include] = STATE(195), - [sym_svg_include] = STATE(195), - [sym_inkscape_include] = STATE(195), - [sym_verbatim_include] = STATE(195), - [sym_import_include] = STATE(195), - [sym_caption] = STATE(195), - [sym_citation] = STATE(195), - [sym_label_definition] = STATE(195), - [sym_label_reference] = STATE(195), - [sym_label_reference_range] = STATE(195), - [sym_label_number] = STATE(195), - [sym_new_command_definition] = STATE(195), - [sym_old_command_definition] = STATE(195), - [sym_let_command_definition] = STATE(195), - [sym_environment_definition] = STATE(195), - [sym_glossary_entry_definition] = STATE(195), - [sym_glossary_entry_reference] = STATE(195), - [sym_acronym_definition] = STATE(195), - [sym_acronym_reference] = STATE(195), - [sym_theorem_definition] = STATE(195), - [sym_color_definition] = STATE(195), - [sym_color_set_definition] = STATE(195), - [sym_color_reference] = STATE(195), - [sym_tikz_library_import] = STATE(195), - [aux_sym_part_repeat1] = STATE(195), - [aux_sym_text_repeat1] = STATE(216), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(2633), - [anon_sym_RPAREN] = ACTIONS(2633), - [anon_sym_LBRACK] = ACTIONS(2633), - [anon_sym_RBRACK] = ACTIONS(2633), - [anon_sym_COMMA] = ACTIONS(2633), - [anon_sym_EQ] = ACTIONS(2633), - [anon_sym_BSLASHpart] = ACTIONS(2097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddpart] = ACTIONS(2097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2093), - [anon_sym_BSLASHchapter] = ACTIONS(2097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddchap] = ACTIONS(2097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsection] = ACTIONS(2097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHaddsec] = ACTIONS(2097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubsection] = ACTIONS(2097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2093), - [anon_sym_BSLASHparagraph] = ACTIONS(2097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2093), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2093), - [anon_sym_BSLASHitem] = ACTIONS(2097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(263), - [anon_sym_BSLASH_LBRACK] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(265), - [anon_sym_BSLASH_LPAREN] = ACTIONS(267), - [anon_sym_BSLASH_LBRACE] = ACTIONS(269), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHend] = ACTIONS(2097), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [sym_block_comment] = STATE(206), + [sym__flat_content] = STATE(206), + [sym__text_with_env_content] = STATE(206), + [sym__text_content] = STATE(206), + [sym_curly_group] = STATE(206), + [sym_text] = STATE(206), + [sym_operator] = STATE(971), + [sym_displayed_equation] = STATE(206), + [sym_inline_formula] = STATE(206), + [sym_math_set] = STATE(206), + [sym_begin] = STATE(19), + [sym_generic_environment] = STATE(206), + [sym_comment_environment] = STATE(206), + [sym__trivia_begin_comment] = STATE(2336), + [sym_verbatim_environment] = STATE(206), + [sym__trivia_begin_verbatim] = STATE(2350), + [sym_listing_environment] = STATE(206), + [sym__trivia_begin_listing] = STATE(2349), + [sym_minted_environment] = STATE(206), + [sym__trivia_begin_minted] = STATE(2348), + [sym_pycode_environment] = STATE(206), + [sym__trivia_begin_pycode] = STATE(2347), + [sym__command] = STATE(206), + [sym_generic_command] = STATE(206), + [sym_package_include] = STATE(206), + [sym_class_include] = STATE(206), + [sym_latex_include] = STATE(206), + [sym_biblatex_include] = STATE(206), + [sym_bibtex_include] = STATE(206), + [sym_graphics_include] = STATE(206), + [sym_svg_include] = STATE(206), + [sym_inkscape_include] = STATE(206), + [sym_verbatim_include] = STATE(206), + [sym_import_include] = STATE(206), + [sym_caption] = STATE(206), + [sym_citation] = STATE(206), + [sym_label_definition] = STATE(206), + [sym_label_reference] = STATE(206), + [sym_label_reference_range] = STATE(206), + [sym_label_number] = STATE(206), + [sym_new_command_definition] = STATE(206), + [sym_old_command_definition] = STATE(206), + [sym_let_command_definition] = STATE(206), + [sym_environment_definition] = STATE(206), + [sym_glossary_entry_definition] = STATE(206), + [sym_glossary_entry_reference] = STATE(206), + [sym_acronym_definition] = STATE(206), + [sym_acronym_reference] = STATE(206), + [sym_theorem_definition] = STATE(206), + [sym_color_definition] = STATE(206), + [sym_color_set_definition] = STATE(206), + [sym_color_reference] = STATE(206), + [sym_tikz_library_import] = STATE(206), + [sym_text_mode] = STATE(206), + [aux_sym_part_repeat1] = STATE(206), + [aux_sym_text_repeat1] = STATE(213), + [sym_command_name] = ACTIONS(2540), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2543), + [anon_sym_LPAREN] = ACTIONS(2546), + [anon_sym_RPAREN] = ACTIONS(2546), + [anon_sym_LBRACK] = ACTIONS(2546), + [anon_sym_RBRACK] = ACTIONS(2546), + [anon_sym_COMMA] = ACTIONS(2546), + [anon_sym_EQ] = ACTIONS(2546), + [anon_sym_BSLASHpart] = ACTIONS(1990), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddpart] = ACTIONS(1990), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1979), + [anon_sym_BSLASHchapter] = ACTIONS(1990), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddchap] = ACTIONS(1990), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsection] = ACTIONS(1990), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHaddsec] = ACTIONS(1990), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1990), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1979), + [anon_sym_BSLASHparagraph] = ACTIONS(1990), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1979), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1990), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1979), + [anon_sym_BSLASHitem] = ACTIONS(1990), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(2549), + [sym_word] = ACTIONS(2552), + [sym_placeholder] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2558), + [anon_sym_DASH] = ACTIONS(2558), + [anon_sym_STAR] = ACTIONS(2558), + [anon_sym_SLASH] = ACTIONS(2558), + [anon_sym_CARET] = ACTIONS(2558), + [anon_sym__] = ACTIONS(2558), + [anon_sym_LT] = ACTIONS(2558), + [anon_sym_GT] = ACTIONS(2558), + [anon_sym_BANG] = ACTIONS(2558), + [anon_sym_PIPE] = ACTIONS(2558), + [anon_sym_COLON] = ACTIONS(2558), + [anon_sym_SQUOTE] = ACTIONS(2558), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2561), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2561), + [anon_sym_DOLLAR] = ACTIONS(2564), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2567), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1979), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2570), + [anon_sym_BSLASHbegin] = ACTIONS(2016), + [anon_sym_BSLASHusepackage] = ACTIONS(2573), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2573), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2576), + [anon_sym_BSLASHinclude] = ACTIONS(2579), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2579), + [anon_sym_BSLASHinput] = ACTIONS(2579), + [anon_sym_BSLASHsubfile] = ACTIONS(2579), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2582), + [anon_sym_BSLASHbibliography] = ACTIONS(2585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2588), + [anon_sym_BSLASHincludesvg] = ACTIONS(2591), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2594), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2597), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2597), + [anon_sym_BSLASHimport] = ACTIONS(2600), + [anon_sym_BSLASHsubimport] = ACTIONS(2600), + [anon_sym_BSLASHinputfrom] = ACTIONS(2600), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2600), + [anon_sym_BSLASHincludefrom] = ACTIONS(2600), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2600), + [anon_sym_BSLASHcaption] = ACTIONS(2603), + [anon_sym_BSLASHcite] = ACTIONS(2606), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2609), + [anon_sym_BSLASHCite] = ACTIONS(2606), + [anon_sym_BSLASHnocite] = ACTIONS(2606), + [anon_sym_BSLASHcitet] = ACTIONS(2606), + [anon_sym_BSLASHcitep] = ACTIONS(2606), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2609), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2609), + [anon_sym_BSLASHciteauthor] = ACTIONS(2606), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2609), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2606), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2609), + [anon_sym_BSLASHcitetitle] = ACTIONS(2606), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2609), + [anon_sym_BSLASHciteyear] = ACTIONS(2606), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2609), + [anon_sym_BSLASHcitedate] = ACTIONS(2606), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2609), + [anon_sym_BSLASHciteurl] = ACTIONS(2606), + [anon_sym_BSLASHfullcite] = ACTIONS(2606), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2606), + [anon_sym_BSLASHcitealt] = ACTIONS(2606), + [anon_sym_BSLASHcitealp] = ACTIONS(2606), + [anon_sym_BSLASHcitetext] = ACTIONS(2606), + [anon_sym_BSLASHparencite] = ACTIONS(2606), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2609), + [anon_sym_BSLASHParencite] = ACTIONS(2606), + [anon_sym_BSLASHfootcite] = ACTIONS(2606), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2606), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2606), + [anon_sym_BSLASHtextcite] = ACTIONS(2606), + [anon_sym_BSLASHTextcite] = ACTIONS(2606), + [anon_sym_BSLASHsmartcite] = ACTIONS(2606), + [anon_sym_BSLASHSmartcite] = ACTIONS(2606), + [anon_sym_BSLASHsupercite] = ACTIONS(2606), + [anon_sym_BSLASHautocite] = ACTIONS(2606), + [anon_sym_BSLASHAutocite] = ACTIONS(2606), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2609), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2609), + [anon_sym_BSLASHvolcite] = ACTIONS(2606), + [anon_sym_BSLASHVolcite] = ACTIONS(2606), + [anon_sym_BSLASHpvolcite] = ACTIONS(2606), + [anon_sym_BSLASHPvolcite] = ACTIONS(2606), + [anon_sym_BSLASHfvolcite] = ACTIONS(2606), + [anon_sym_BSLASHftvolcite] = ACTIONS(2606), + [anon_sym_BSLASHsvolcite] = ACTIONS(2606), + [anon_sym_BSLASHSvolcite] = ACTIONS(2606), + [anon_sym_BSLASHtvolcite] = ACTIONS(2606), + [anon_sym_BSLASHTvolcite] = ACTIONS(2606), + [anon_sym_BSLASHavolcite] = ACTIONS(2606), + [anon_sym_BSLASHAvolcite] = ACTIONS(2606), + [anon_sym_BSLASHnotecite] = ACTIONS(2606), + [anon_sym_BSLASHNotecite] = ACTIONS(2606), + [anon_sym_BSLASHpnotecite] = ACTIONS(2606), + [anon_sym_BSLASHPnotecite] = ACTIONS(2606), + [anon_sym_BSLASHfnotecite] = ACTIONS(2606), + [anon_sym_BSLASHlabel] = ACTIONS(2612), + [anon_sym_BSLASHref] = ACTIONS(2615), + [anon_sym_BSLASHeqref] = ACTIONS(2615), + [anon_sym_BSLASHvref] = ACTIONS(2615), + [anon_sym_BSLASHVref] = ACTIONS(2615), + [anon_sym_BSLASHautoref] = ACTIONS(2615), + [anon_sym_BSLASHpageref] = ACTIONS(2615), + [anon_sym_BSLASHcref] = ACTIONS(2615), + [anon_sym_BSLASHCref] = ACTIONS(2615), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2618), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2618), + [anon_sym_BSLASHnamecref] = ACTIONS(2615), + [anon_sym_BSLASHnameCref] = ACTIONS(2615), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2615), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2615), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2615), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2615), + [anon_sym_BSLASHlabelcref] = ACTIONS(2615), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2615), + [anon_sym_BSLASHcrefrange] = ACTIONS(2621), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2624), + [anon_sym_BSLASHCrefrange] = ACTIONS(2621), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2624), + [anon_sym_BSLASHnewlabel] = ACTIONS(2627), + [anon_sym_BSLASHnewcommand] = ACTIONS(2630), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2633), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2630), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2633), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2630), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2633), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2630), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2633), + [anon_sym_BSLASHdef] = ACTIONS(2636), + [anon_sym_BSLASHlet] = ACTIONS(2639), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2642), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2645), + [anon_sym_BSLASHgls] = ACTIONS(2648), + [anon_sym_BSLASHGls] = ACTIONS(2648), + [anon_sym_BSLASHGLS] = ACTIONS(2648), + [anon_sym_BSLASHglspl] = ACTIONS(2648), + [anon_sym_BSLASHGlspl] = ACTIONS(2648), + [anon_sym_BSLASHGLSpl] = ACTIONS(2648), + [anon_sym_BSLASHglsdisp] = ACTIONS(2648), + [anon_sym_BSLASHglslink] = ACTIONS(2648), + [anon_sym_BSLASHglstext] = ACTIONS(2648), + [anon_sym_BSLASHGlstext] = ACTIONS(2648), + [anon_sym_BSLASHGLStext] = ACTIONS(2648), + [anon_sym_BSLASHglsfirst] = ACTIONS(2648), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2648), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2648), + [anon_sym_BSLASHglsplural] = ACTIONS(2648), + [anon_sym_BSLASHGlsplural] = ACTIONS(2648), + [anon_sym_BSLASHGLSplural] = ACTIONS(2648), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2648), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2648), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2648), + [anon_sym_BSLASHglsname] = ACTIONS(2648), + [anon_sym_BSLASHGlsname] = ACTIONS(2648), + [anon_sym_BSLASHGLSname] = ACTIONS(2648), + [anon_sym_BSLASHglssymbol] = ACTIONS(2648), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2648), + [anon_sym_BSLASHglsdesc] = ACTIONS(2648), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2648), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2648), + [anon_sym_BSLASHglsuseri] = ACTIONS(2648), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2648), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2648), + [anon_sym_BSLASHglsuserii] = ACTIONS(2648), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2648), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2648), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2648), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2648), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2648), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2648), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2648), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2648), + [anon_sym_BSLASHglsuserv] = ACTIONS(2648), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2648), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2648), + [anon_sym_BSLASHglsuservi] = ACTIONS(2648), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2648), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2648), + [anon_sym_BSLASHnewacronym] = ACTIONS(2651), + [anon_sym_BSLASHacrshort] = ACTIONS(2654), + [anon_sym_BSLASHAcrshort] = ACTIONS(2654), + [anon_sym_BSLASHACRshort] = ACTIONS(2654), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2654), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2654), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2654), + [anon_sym_BSLASHacrlong] = ACTIONS(2654), + [anon_sym_BSLASHAcrlong] = ACTIONS(2654), + [anon_sym_BSLASHACRlong] = ACTIONS(2654), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2654), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2654), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2654), + [anon_sym_BSLASHacrfull] = ACTIONS(2654), + [anon_sym_BSLASHAcrfull] = ACTIONS(2654), + [anon_sym_BSLASHACRfull] = ACTIONS(2654), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2654), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2654), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2654), + [anon_sym_BSLASHacs] = ACTIONS(2654), + [anon_sym_BSLASHAcs] = ACTIONS(2654), + [anon_sym_BSLASHacsp] = ACTIONS(2654), + [anon_sym_BSLASHAcsp] = ACTIONS(2654), + [anon_sym_BSLASHacl] = ACTIONS(2654), + [anon_sym_BSLASHAcl] = ACTIONS(2654), + [anon_sym_BSLASHaclp] = ACTIONS(2654), + [anon_sym_BSLASHAclp] = ACTIONS(2654), + [anon_sym_BSLASHacf] = ACTIONS(2654), + [anon_sym_BSLASHAcf] = ACTIONS(2654), + [anon_sym_BSLASHacfp] = ACTIONS(2654), + [anon_sym_BSLASHAcfp] = ACTIONS(2654), + [anon_sym_BSLASHac] = ACTIONS(2654), + [anon_sym_BSLASHAc] = ACTIONS(2654), + [anon_sym_BSLASHacp] = ACTIONS(2654), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2654), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2654), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2654), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2654), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2654), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2654), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2654), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2654), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2654), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2654), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2657), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2657), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2660), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2663), + [anon_sym_BSLASHcolor] = ACTIONS(2666), + [anon_sym_BSLASHcolorbox] = ACTIONS(2666), + [anon_sym_BSLASHtextcolor] = ACTIONS(2666), + [anon_sym_BSLASHpagecolor] = ACTIONS(2666), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2669), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2669), + [anon_sym_BSLASHtext] = ACTIONS(2672), + [anon_sym_BSLASHintertext] = ACTIONS(2672), + [anon_sym_shortintertext] = ACTIONS(2672), }, [207] = { - [sym_block_comment] = STATE(805), - [sym_operator] = STATE(805), - [sym__command] = STATE(805), - [sym_generic_command] = STATE(805), - [sym_package_include] = STATE(805), - [sym_class_include] = STATE(805), - [sym_latex_include] = STATE(805), - [sym_biblatex_include] = STATE(805), - [sym_bibtex_include] = STATE(805), - [sym_graphics_include] = STATE(805), - [sym_svg_include] = STATE(805), - [sym_inkscape_include] = STATE(805), - [sym_verbatim_include] = STATE(805), - [sym_import_include] = STATE(805), - [sym_caption] = STATE(805), - [sym_citation] = STATE(805), - [sym_label_definition] = STATE(805), - [sym_label_reference] = STATE(805), - [sym_label_reference_range] = STATE(805), - [sym_label_number] = STATE(805), - [sym_new_command_definition] = STATE(805), - [sym_old_command_definition] = STATE(805), - [sym_let_command_definition] = STATE(805), - [sym_environment_definition] = STATE(805), - [sym_glossary_entry_definition] = STATE(805), - [sym_glossary_entry_reference] = STATE(805), - [sym_acronym_definition] = STATE(805), - [sym_acronym_reference] = STATE(805), - [sym_theorem_definition] = STATE(805), - [sym_color_definition] = STATE(805), - [sym_color_set_definition] = STATE(805), - [sym_color_reference] = STATE(805), - [sym_tikz_library_import] = STATE(805), + [sym_block_comment] = STATE(782), + [sym_operator] = STATE(782), + [sym__command] = STATE(782), + [sym_generic_command] = STATE(782), + [sym_package_include] = STATE(782), + [sym_class_include] = STATE(782), + [sym_latex_include] = STATE(782), + [sym_biblatex_include] = STATE(782), + [sym_bibtex_include] = STATE(782), + [sym_graphics_include] = STATE(782), + [sym_svg_include] = STATE(782), + [sym_inkscape_include] = STATE(782), + [sym_verbatim_include] = STATE(782), + [sym_import_include] = STATE(782), + [sym_caption] = STATE(782), + [sym_citation] = STATE(782), + [sym_label_definition] = STATE(782), + [sym_label_reference] = STATE(782), + [sym_label_reference_range] = STATE(782), + [sym_label_number] = STATE(782), + [sym_new_command_definition] = STATE(782), + [sym_old_command_definition] = STATE(782), + [sym_let_command_definition] = STATE(782), + [sym_environment_definition] = STATE(782), + [sym_glossary_entry_definition] = STATE(782), + [sym_glossary_entry_reference] = STATE(782), + [sym_acronym_definition] = STATE(782), + [sym_acronym_reference] = STATE(782), + [sym_theorem_definition] = STATE(782), + [sym_color_definition] = STATE(782), + [sym_color_set_definition] = STATE(782), + [sym_color_reference] = STATE(782), + [sym_tikz_library_import] = STATE(782), [aux_sym_text_repeat1] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(2635), + [ts_builtin_sym_end] = ACTIONS(2675), [sym_command_name] = ACTIONS(7), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(9), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_RBRACK] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_EQ] = ACTIONS(2635), - [anon_sym_BSLASHpart] = ACTIONS(2637), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddpart] = ACTIONS(2637), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2635), - [anon_sym_BSLASHchapter] = ACTIONS(2637), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddchap] = ACTIONS(2637), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsection] = ACTIONS(2637), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddsec] = ACTIONS(2637), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubsection] = ACTIONS(2637), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2637), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHparagraph] = ACTIONS(2637), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2637), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2635), - [anon_sym_BSLASHitem] = ACTIONS(2637), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_RBRACK] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2675), + [anon_sym_BSLASHpart] = ACTIONS(2677), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddpart] = ACTIONS(2677), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2675), + [anon_sym_BSLASHchapter] = ACTIONS(2677), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddchap] = ACTIONS(2677), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsection] = ACTIONS(2677), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddsec] = ACTIONS(2677), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubsection] = ACTIONS(2677), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2677), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHparagraph] = ACTIONS(2677), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2677), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2675), + [anon_sym_BSLASHitem] = ACTIONS(2677), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), [sym_word] = ACTIONS(47), [sym_placeholder] = ACTIONS(49), [anon_sym_PLUS] = ACTIONS(51), @@ -90978,12 +89595,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(51), [anon_sym_COLON] = ACTIONS(51), [anon_sym_SQUOTE] = ACTIONS(51), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2635), - [anon_sym_DOLLAR] = ACTIONS(2637), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2635), - [anon_sym_BSLASHbegin] = ACTIONS(2637), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), + [anon_sym_DOLLAR] = ACTIONS(2677), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), + [anon_sym_BSLASHbegin] = ACTIONS(2677), [anon_sym_BSLASHusepackage] = ACTIONS(63), [anon_sym_BSLASHRequirePackage] = ACTIONS(63), [anon_sym_BSLASHdocumentclass] = ACTIONS(65), @@ -91197,2734 +89814,2764 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(125), [anon_sym_BSLASHusepgflibrary] = ACTIONS(127), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(127), + [anon_sym_BSLASHtext] = ACTIONS(2677), + [anon_sym_BSLASHintertext] = ACTIONS(2677), + [anon_sym_shortintertext] = ACTIONS(2677), }, [208] = { - [sym_block_comment] = STATE(805), - [sym_operator] = STATE(805), - [sym__command] = STATE(805), - [sym_generic_command] = STATE(805), - [sym_package_include] = STATE(805), - [sym_class_include] = STATE(805), - [sym_latex_include] = STATE(805), - [sym_biblatex_include] = STATE(805), - [sym_bibtex_include] = STATE(805), - [sym_graphics_include] = STATE(805), - [sym_svg_include] = STATE(805), - [sym_inkscape_include] = STATE(805), - [sym_verbatim_include] = STATE(805), - [sym_import_include] = STATE(805), - [sym_caption] = STATE(805), - [sym_citation] = STATE(805), - [sym_label_definition] = STATE(805), - [sym_label_reference] = STATE(805), - [sym_label_reference_range] = STATE(805), - [sym_label_number] = STATE(805), - [sym_new_command_definition] = STATE(805), - [sym_old_command_definition] = STATE(805), - [sym_let_command_definition] = STATE(805), - [sym_environment_definition] = STATE(805), - [sym_glossary_entry_definition] = STATE(805), - [sym_glossary_entry_reference] = STATE(805), - [sym_acronym_definition] = STATE(805), - [sym_acronym_reference] = STATE(805), - [sym_theorem_definition] = STATE(805), - [sym_color_definition] = STATE(805), - [sym_color_set_definition] = STATE(805), - [sym_color_reference] = STATE(805), - [sym_tikz_library_import] = STATE(805), + [sym_block_comment] = STATE(782), + [sym_operator] = STATE(782), + [sym__command] = STATE(782), + [sym_generic_command] = STATE(782), + [sym_package_include] = STATE(782), + [sym_class_include] = STATE(782), + [sym_latex_include] = STATE(782), + [sym_biblatex_include] = STATE(782), + [sym_bibtex_include] = STATE(782), + [sym_graphics_include] = STATE(782), + [sym_svg_include] = STATE(782), + [sym_inkscape_include] = STATE(782), + [sym_verbatim_include] = STATE(782), + [sym_import_include] = STATE(782), + [sym_caption] = STATE(782), + [sym_citation] = STATE(782), + [sym_label_definition] = STATE(782), + [sym_label_reference] = STATE(782), + [sym_label_reference_range] = STATE(782), + [sym_label_number] = STATE(782), + [sym_new_command_definition] = STATE(782), + [sym_old_command_definition] = STATE(782), + [sym_let_command_definition] = STATE(782), + [sym_environment_definition] = STATE(782), + [sym_glossary_entry_definition] = STATE(782), + [sym_glossary_entry_reference] = STATE(782), + [sym_acronym_definition] = STATE(782), + [sym_acronym_reference] = STATE(782), + [sym_theorem_definition] = STATE(782), + [sym_color_definition] = STATE(782), + [sym_color_set_definition] = STATE(782), + [sym_color_reference] = STATE(782), + [sym_tikz_library_import] = STATE(782), [aux_sym_text_repeat1] = STATE(208), - [ts_builtin_sym_end] = ACTIONS(2639), - [sym_command_name] = ACTIONS(2641), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2639), - [anon_sym_RPAREN] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_RBRACK] = ACTIONS(2639), - [anon_sym_COMMA] = ACTIONS(2639), - [anon_sym_EQ] = ACTIONS(2639), - [anon_sym_BSLASHpart] = ACTIONS(2647), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddpart] = ACTIONS(2647), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2639), - [anon_sym_BSLASHchapter] = ACTIONS(2647), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddchap] = ACTIONS(2647), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsection] = ACTIONS(2647), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddsec] = ACTIONS(2647), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubsection] = ACTIONS(2647), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2647), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHparagraph] = ACTIONS(2647), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2647), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2639), - [anon_sym_BSLASHitem] = ACTIONS(2647), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_RBRACE] = ACTIONS(2639), - [sym_word] = ACTIONS(2649), - [sym_placeholder] = ACTIONS(2652), - [anon_sym_PLUS] = ACTIONS(2655), - [anon_sym_DASH] = ACTIONS(2655), - [anon_sym_STAR] = ACTIONS(2655), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_CARET] = ACTIONS(2655), - [anon_sym__] = ACTIONS(2655), - [anon_sym_LT] = ACTIONS(2655), - [anon_sym_GT] = ACTIONS(2655), - [anon_sym_BANG] = ACTIONS(2655), - [anon_sym_PIPE] = ACTIONS(2655), - [anon_sym_COLON] = ACTIONS(2655), - [anon_sym_SQUOTE] = ACTIONS(2655), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2639), - [anon_sym_BSLASHbegin] = ACTIONS(2647), - [anon_sym_BSLASHusepackage] = ACTIONS(2658), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2658), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2661), - [anon_sym_BSLASHinclude] = ACTIONS(2664), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2664), - [anon_sym_BSLASHinput] = ACTIONS(2664), - [anon_sym_BSLASHsubfile] = ACTIONS(2664), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2667), - [anon_sym_BSLASHbibliography] = ACTIONS(2670), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2673), - [anon_sym_BSLASHincludesvg] = ACTIONS(2676), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2679), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2682), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2682), - [anon_sym_BSLASHimport] = ACTIONS(2685), - [anon_sym_BSLASHsubimport] = ACTIONS(2685), - [anon_sym_BSLASHinputfrom] = ACTIONS(2685), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2685), - [anon_sym_BSLASHincludefrom] = ACTIONS(2685), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2685), - [anon_sym_BSLASHcaption] = ACTIONS(2688), - [anon_sym_BSLASHcite] = ACTIONS(2691), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2694), - [anon_sym_BSLASHCite] = ACTIONS(2691), - [anon_sym_BSLASHnocite] = ACTIONS(2691), - [anon_sym_BSLASHcitet] = ACTIONS(2691), - [anon_sym_BSLASHcitep] = ACTIONS(2691), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2694), - [anon_sym_BSLASHciteauthor] = ACTIONS(2691), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2691), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2694), - [anon_sym_BSLASHcitetitle] = ACTIONS(2691), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2694), - [anon_sym_BSLASHciteyear] = ACTIONS(2691), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2694), - [anon_sym_BSLASHcitedate] = ACTIONS(2691), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2694), - [anon_sym_BSLASHciteurl] = ACTIONS(2691), - [anon_sym_BSLASHfullcite] = ACTIONS(2691), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2691), - [anon_sym_BSLASHcitealt] = ACTIONS(2691), - [anon_sym_BSLASHcitealp] = ACTIONS(2691), - [anon_sym_BSLASHcitetext] = ACTIONS(2691), - [anon_sym_BSLASHparencite] = ACTIONS(2691), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2694), - [anon_sym_BSLASHParencite] = ACTIONS(2691), - [anon_sym_BSLASHfootcite] = ACTIONS(2691), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2691), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2691), - [anon_sym_BSLASHtextcite] = ACTIONS(2691), - [anon_sym_BSLASHTextcite] = ACTIONS(2691), - [anon_sym_BSLASHsmartcite] = ACTIONS(2691), - [anon_sym_BSLASHSmartcite] = ACTIONS(2691), - [anon_sym_BSLASHsupercite] = ACTIONS(2691), - [anon_sym_BSLASHautocite] = ACTIONS(2691), - [anon_sym_BSLASHAutocite] = ACTIONS(2691), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2694), - [anon_sym_BSLASHvolcite] = ACTIONS(2691), - [anon_sym_BSLASHVolcite] = ACTIONS(2691), - [anon_sym_BSLASHpvolcite] = ACTIONS(2691), - [anon_sym_BSLASHPvolcite] = ACTIONS(2691), - [anon_sym_BSLASHfvolcite] = ACTIONS(2691), - [anon_sym_BSLASHftvolcite] = ACTIONS(2691), - [anon_sym_BSLASHsvolcite] = ACTIONS(2691), - [anon_sym_BSLASHSvolcite] = ACTIONS(2691), - [anon_sym_BSLASHtvolcite] = ACTIONS(2691), - [anon_sym_BSLASHTvolcite] = ACTIONS(2691), - [anon_sym_BSLASHavolcite] = ACTIONS(2691), - [anon_sym_BSLASHAvolcite] = ACTIONS(2691), - [anon_sym_BSLASHnotecite] = ACTIONS(2691), - [anon_sym_BSLASHNotecite] = ACTIONS(2691), - [anon_sym_BSLASHpnotecite] = ACTIONS(2691), - [anon_sym_BSLASHPnotecite] = ACTIONS(2691), - [anon_sym_BSLASHfnotecite] = ACTIONS(2691), - [anon_sym_BSLASHlabel] = ACTIONS(2697), - [anon_sym_BSLASHref] = ACTIONS(2700), - [anon_sym_BSLASHeqref] = ACTIONS(2700), - [anon_sym_BSLASHvref] = ACTIONS(2700), - [anon_sym_BSLASHVref] = ACTIONS(2700), - [anon_sym_BSLASHautoref] = ACTIONS(2700), - [anon_sym_BSLASHpageref] = ACTIONS(2700), - [anon_sym_BSLASHcref] = ACTIONS(2700), - [anon_sym_BSLASHCref] = ACTIONS(2700), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2703), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2703), - [anon_sym_BSLASHnamecref] = ACTIONS(2700), - [anon_sym_BSLASHnameCref] = ACTIONS(2700), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2700), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2700), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2700), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2700), - [anon_sym_BSLASHlabelcref] = ACTIONS(2700), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2700), - [anon_sym_BSLASHcrefrange] = ACTIONS(2706), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2709), - [anon_sym_BSLASHCrefrange] = ACTIONS(2706), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2709), - [anon_sym_BSLASHnewlabel] = ACTIONS(2712), - [anon_sym_BSLASHnewcommand] = ACTIONS(2715), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2718), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2715), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2718), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2715), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2718), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2715), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2718), - [anon_sym_BSLASHdef] = ACTIONS(2721), - [anon_sym_BSLASHlet] = ACTIONS(2724), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2727), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2730), - [anon_sym_BSLASHgls] = ACTIONS(2733), - [anon_sym_BSLASHGls] = ACTIONS(2733), - [anon_sym_BSLASHGLS] = ACTIONS(2733), - [anon_sym_BSLASHglspl] = ACTIONS(2733), - [anon_sym_BSLASHGlspl] = ACTIONS(2733), - [anon_sym_BSLASHGLSpl] = ACTIONS(2733), - [anon_sym_BSLASHglsdisp] = ACTIONS(2733), - [anon_sym_BSLASHglslink] = ACTIONS(2733), - [anon_sym_BSLASHglstext] = ACTIONS(2733), - [anon_sym_BSLASHGlstext] = ACTIONS(2733), - [anon_sym_BSLASHGLStext] = ACTIONS(2733), - [anon_sym_BSLASHglsfirst] = ACTIONS(2733), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2733), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2733), - [anon_sym_BSLASHglsplural] = ACTIONS(2733), - [anon_sym_BSLASHGlsplural] = ACTIONS(2733), - [anon_sym_BSLASHGLSplural] = ACTIONS(2733), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2733), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2733), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2733), - [anon_sym_BSLASHglsname] = ACTIONS(2733), - [anon_sym_BSLASHGlsname] = ACTIONS(2733), - [anon_sym_BSLASHGLSname] = ACTIONS(2733), - [anon_sym_BSLASHglssymbol] = ACTIONS(2733), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2733), - [anon_sym_BSLASHglsdesc] = ACTIONS(2733), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2733), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2733), - [anon_sym_BSLASHglsuseri] = ACTIONS(2733), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2733), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2733), - [anon_sym_BSLASHglsuserii] = ACTIONS(2733), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2733), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2733), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2733), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2733), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2733), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2733), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2733), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2733), - [anon_sym_BSLASHglsuserv] = ACTIONS(2733), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2733), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2733), - [anon_sym_BSLASHglsuservi] = ACTIONS(2733), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2733), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2733), - [anon_sym_BSLASHnewacronym] = ACTIONS(2736), - [anon_sym_BSLASHacrshort] = ACTIONS(2739), - [anon_sym_BSLASHAcrshort] = ACTIONS(2739), - [anon_sym_BSLASHACRshort] = ACTIONS(2739), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2739), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2739), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2739), - [anon_sym_BSLASHacrlong] = ACTIONS(2739), - [anon_sym_BSLASHAcrlong] = ACTIONS(2739), - [anon_sym_BSLASHACRlong] = ACTIONS(2739), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2739), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2739), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2739), - [anon_sym_BSLASHacrfull] = ACTIONS(2739), - [anon_sym_BSLASHAcrfull] = ACTIONS(2739), - [anon_sym_BSLASHACRfull] = ACTIONS(2739), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2739), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2739), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2739), - [anon_sym_BSLASHacs] = ACTIONS(2739), - [anon_sym_BSLASHAcs] = ACTIONS(2739), - [anon_sym_BSLASHacsp] = ACTIONS(2739), - [anon_sym_BSLASHAcsp] = ACTIONS(2739), - [anon_sym_BSLASHacl] = ACTIONS(2739), - [anon_sym_BSLASHAcl] = ACTIONS(2739), - [anon_sym_BSLASHaclp] = ACTIONS(2739), - [anon_sym_BSLASHAclp] = ACTIONS(2739), - [anon_sym_BSLASHacf] = ACTIONS(2739), - [anon_sym_BSLASHAcf] = ACTIONS(2739), - [anon_sym_BSLASHacfp] = ACTIONS(2739), - [anon_sym_BSLASHAcfp] = ACTIONS(2739), - [anon_sym_BSLASHac] = ACTIONS(2739), - [anon_sym_BSLASHAc] = ACTIONS(2739), - [anon_sym_BSLASHacp] = ACTIONS(2739), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2739), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2739), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2739), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2739), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2739), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2739), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2739), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2739), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2739), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2739), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2742), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2742), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2745), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2748), - [anon_sym_BSLASHcolor] = ACTIONS(2751), - [anon_sym_BSLASHcolorbox] = ACTIONS(2751), - [anon_sym_BSLASHtextcolor] = ACTIONS(2751), - [anon_sym_BSLASHpagecolor] = ACTIONS(2751), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2754), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2754), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_command_name] = ACTIONS(2681), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2684), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_BSLASHpart] = ACTIONS(2687), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddpart] = ACTIONS(2687), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2679), + [anon_sym_BSLASHchapter] = ACTIONS(2687), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddchap] = ACTIONS(2687), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsection] = ACTIONS(2687), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddsec] = ACTIONS(2687), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubsection] = ACTIONS(2687), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2687), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHparagraph] = ACTIONS(2687), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2687), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2679), + [anon_sym_BSLASHitem] = ACTIONS(2687), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [sym_word] = ACTIONS(2689), + [sym_placeholder] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_SLASH] = ACTIONS(2695), + [anon_sym_CARET] = ACTIONS(2695), + [anon_sym__] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_GT] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_COLON] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), + [anon_sym_BSLASHbegin] = ACTIONS(2687), + [anon_sym_BSLASHusepackage] = ACTIONS(2698), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2698), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2701), + [anon_sym_BSLASHinclude] = ACTIONS(2704), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2704), + [anon_sym_BSLASHinput] = ACTIONS(2704), + [anon_sym_BSLASHsubfile] = ACTIONS(2704), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2707), + [anon_sym_BSLASHbibliography] = ACTIONS(2710), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2713), + [anon_sym_BSLASHincludesvg] = ACTIONS(2716), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2719), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2722), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2722), + [anon_sym_BSLASHimport] = ACTIONS(2725), + [anon_sym_BSLASHsubimport] = ACTIONS(2725), + [anon_sym_BSLASHinputfrom] = ACTIONS(2725), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2725), + [anon_sym_BSLASHincludefrom] = ACTIONS(2725), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2725), + [anon_sym_BSLASHcaption] = ACTIONS(2728), + [anon_sym_BSLASHcite] = ACTIONS(2731), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2734), + [anon_sym_BSLASHCite] = ACTIONS(2731), + [anon_sym_BSLASHnocite] = ACTIONS(2731), + [anon_sym_BSLASHcitet] = ACTIONS(2731), + [anon_sym_BSLASHcitep] = ACTIONS(2731), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2734), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2734), + [anon_sym_BSLASHciteauthor] = ACTIONS(2731), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2734), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2731), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2734), + [anon_sym_BSLASHcitetitle] = ACTIONS(2731), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2734), + [anon_sym_BSLASHciteyear] = ACTIONS(2731), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2734), + [anon_sym_BSLASHcitedate] = ACTIONS(2731), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2734), + [anon_sym_BSLASHciteurl] = ACTIONS(2731), + [anon_sym_BSLASHfullcite] = ACTIONS(2731), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2731), + [anon_sym_BSLASHcitealt] = ACTIONS(2731), + [anon_sym_BSLASHcitealp] = ACTIONS(2731), + [anon_sym_BSLASHcitetext] = ACTIONS(2731), + [anon_sym_BSLASHparencite] = ACTIONS(2731), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2734), + [anon_sym_BSLASHParencite] = ACTIONS(2731), + [anon_sym_BSLASHfootcite] = ACTIONS(2731), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2731), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2731), + [anon_sym_BSLASHtextcite] = ACTIONS(2731), + [anon_sym_BSLASHTextcite] = ACTIONS(2731), + [anon_sym_BSLASHsmartcite] = ACTIONS(2731), + [anon_sym_BSLASHSmartcite] = ACTIONS(2731), + [anon_sym_BSLASHsupercite] = ACTIONS(2731), + [anon_sym_BSLASHautocite] = ACTIONS(2731), + [anon_sym_BSLASHAutocite] = ACTIONS(2731), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2734), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2734), + [anon_sym_BSLASHvolcite] = ACTIONS(2731), + [anon_sym_BSLASHVolcite] = ACTIONS(2731), + [anon_sym_BSLASHpvolcite] = ACTIONS(2731), + [anon_sym_BSLASHPvolcite] = ACTIONS(2731), + [anon_sym_BSLASHfvolcite] = ACTIONS(2731), + [anon_sym_BSLASHftvolcite] = ACTIONS(2731), + [anon_sym_BSLASHsvolcite] = ACTIONS(2731), + [anon_sym_BSLASHSvolcite] = ACTIONS(2731), + [anon_sym_BSLASHtvolcite] = ACTIONS(2731), + [anon_sym_BSLASHTvolcite] = ACTIONS(2731), + [anon_sym_BSLASHavolcite] = ACTIONS(2731), + [anon_sym_BSLASHAvolcite] = ACTIONS(2731), + [anon_sym_BSLASHnotecite] = ACTIONS(2731), + [anon_sym_BSLASHNotecite] = ACTIONS(2731), + [anon_sym_BSLASHpnotecite] = ACTIONS(2731), + [anon_sym_BSLASHPnotecite] = ACTIONS(2731), + [anon_sym_BSLASHfnotecite] = ACTIONS(2731), + [anon_sym_BSLASHlabel] = ACTIONS(2737), + [anon_sym_BSLASHref] = ACTIONS(2740), + [anon_sym_BSLASHeqref] = ACTIONS(2740), + [anon_sym_BSLASHvref] = ACTIONS(2740), + [anon_sym_BSLASHVref] = ACTIONS(2740), + [anon_sym_BSLASHautoref] = ACTIONS(2740), + [anon_sym_BSLASHpageref] = ACTIONS(2740), + [anon_sym_BSLASHcref] = ACTIONS(2740), + [anon_sym_BSLASHCref] = ACTIONS(2740), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2743), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2743), + [anon_sym_BSLASHnamecref] = ACTIONS(2740), + [anon_sym_BSLASHnameCref] = ACTIONS(2740), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2740), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2740), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2740), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2740), + [anon_sym_BSLASHlabelcref] = ACTIONS(2740), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2740), + [anon_sym_BSLASHcrefrange] = ACTIONS(2746), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2749), + [anon_sym_BSLASHCrefrange] = ACTIONS(2746), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2749), + [anon_sym_BSLASHnewlabel] = ACTIONS(2752), + [anon_sym_BSLASHnewcommand] = ACTIONS(2755), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2758), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2755), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2758), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2755), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2758), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2755), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2758), + [anon_sym_BSLASHdef] = ACTIONS(2761), + [anon_sym_BSLASHlet] = ACTIONS(2764), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2767), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2770), + [anon_sym_BSLASHgls] = ACTIONS(2773), + [anon_sym_BSLASHGls] = ACTIONS(2773), + [anon_sym_BSLASHGLS] = ACTIONS(2773), + [anon_sym_BSLASHglspl] = ACTIONS(2773), + [anon_sym_BSLASHGlspl] = ACTIONS(2773), + [anon_sym_BSLASHGLSpl] = ACTIONS(2773), + [anon_sym_BSLASHglsdisp] = ACTIONS(2773), + [anon_sym_BSLASHglslink] = ACTIONS(2773), + [anon_sym_BSLASHglstext] = ACTIONS(2773), + [anon_sym_BSLASHGlstext] = ACTIONS(2773), + [anon_sym_BSLASHGLStext] = ACTIONS(2773), + [anon_sym_BSLASHglsfirst] = ACTIONS(2773), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2773), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2773), + [anon_sym_BSLASHglsplural] = ACTIONS(2773), + [anon_sym_BSLASHGlsplural] = ACTIONS(2773), + [anon_sym_BSLASHGLSplural] = ACTIONS(2773), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2773), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2773), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2773), + [anon_sym_BSLASHglsname] = ACTIONS(2773), + [anon_sym_BSLASHGlsname] = ACTIONS(2773), + [anon_sym_BSLASHGLSname] = ACTIONS(2773), + [anon_sym_BSLASHglssymbol] = ACTIONS(2773), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2773), + [anon_sym_BSLASHglsdesc] = ACTIONS(2773), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2773), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2773), + [anon_sym_BSLASHglsuseri] = ACTIONS(2773), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2773), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2773), + [anon_sym_BSLASHglsuserii] = ACTIONS(2773), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2773), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2773), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2773), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2773), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2773), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2773), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2773), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2773), + [anon_sym_BSLASHglsuserv] = ACTIONS(2773), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2773), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2773), + [anon_sym_BSLASHglsuservi] = ACTIONS(2773), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2773), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2773), + [anon_sym_BSLASHnewacronym] = ACTIONS(2776), + [anon_sym_BSLASHacrshort] = ACTIONS(2779), + [anon_sym_BSLASHAcrshort] = ACTIONS(2779), + [anon_sym_BSLASHACRshort] = ACTIONS(2779), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2779), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2779), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2779), + [anon_sym_BSLASHacrlong] = ACTIONS(2779), + [anon_sym_BSLASHAcrlong] = ACTIONS(2779), + [anon_sym_BSLASHACRlong] = ACTIONS(2779), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2779), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2779), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2779), + [anon_sym_BSLASHacrfull] = ACTIONS(2779), + [anon_sym_BSLASHAcrfull] = ACTIONS(2779), + [anon_sym_BSLASHACRfull] = ACTIONS(2779), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2779), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2779), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2779), + [anon_sym_BSLASHacs] = ACTIONS(2779), + [anon_sym_BSLASHAcs] = ACTIONS(2779), + [anon_sym_BSLASHacsp] = ACTIONS(2779), + [anon_sym_BSLASHAcsp] = ACTIONS(2779), + [anon_sym_BSLASHacl] = ACTIONS(2779), + [anon_sym_BSLASHAcl] = ACTIONS(2779), + [anon_sym_BSLASHaclp] = ACTIONS(2779), + [anon_sym_BSLASHAclp] = ACTIONS(2779), + [anon_sym_BSLASHacf] = ACTIONS(2779), + [anon_sym_BSLASHAcf] = ACTIONS(2779), + [anon_sym_BSLASHacfp] = ACTIONS(2779), + [anon_sym_BSLASHAcfp] = ACTIONS(2779), + [anon_sym_BSLASHac] = ACTIONS(2779), + [anon_sym_BSLASHAc] = ACTIONS(2779), + [anon_sym_BSLASHacp] = ACTIONS(2779), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2779), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2779), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2779), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2779), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2779), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2779), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2779), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2779), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2779), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2779), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2782), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2782), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2788), + [anon_sym_BSLASHcolor] = ACTIONS(2791), + [anon_sym_BSLASHcolorbox] = ACTIONS(2791), + [anon_sym_BSLASHtextcolor] = ACTIONS(2791), + [anon_sym_BSLASHpagecolor] = ACTIONS(2791), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2794), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2794), + [anon_sym_BSLASHtext] = ACTIONS(2687), + [anon_sym_BSLASHintertext] = ACTIONS(2687), + [anon_sym_shortintertext] = ACTIONS(2687), }, [209] = { - [sym_block_comment] = STATE(858), - [sym_operator] = STATE(858), - [sym__command] = STATE(858), - [sym_generic_command] = STATE(858), - [sym_package_include] = STATE(858), - [sym_class_include] = STATE(858), - [sym_latex_include] = STATE(858), - [sym_biblatex_include] = STATE(858), - [sym_bibtex_include] = STATE(858), - [sym_graphics_include] = STATE(858), - [sym_svg_include] = STATE(858), - [sym_inkscape_include] = STATE(858), - [sym_verbatim_include] = STATE(858), - [sym_import_include] = STATE(858), - [sym_caption] = STATE(858), - [sym_citation] = STATE(858), - [sym_label_definition] = STATE(858), - [sym_label_reference] = STATE(858), - [sym_label_reference_range] = STATE(858), - [sym_label_number] = STATE(858), - [sym_new_command_definition] = STATE(858), - [sym_old_command_definition] = STATE(858), - [sym_let_command_definition] = STATE(858), - [sym_environment_definition] = STATE(858), - [sym_glossary_entry_definition] = STATE(858), - [sym_glossary_entry_reference] = STATE(858), - [sym_acronym_definition] = STATE(858), - [sym_acronym_reference] = STATE(858), - [sym_theorem_definition] = STATE(858), - [sym_color_definition] = STATE(858), - [sym_color_set_definition] = STATE(858), - [sym_color_reference] = STATE(858), - [sym_tikz_library_import] = STATE(858), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(2757), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2760), - [anon_sym_LPAREN] = ACTIONS(2639), - [anon_sym_RPAREN] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_RBRACK] = ACTIONS(2639), - [anon_sym_COMMA] = ACTIONS(2639), - [anon_sym_EQ] = ACTIONS(2639), - [anon_sym_BSLASHpart] = ACTIONS(2647), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddpart] = ACTIONS(2647), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2639), - [anon_sym_BSLASHchapter] = ACTIONS(2647), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddchap] = ACTIONS(2647), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsection] = ACTIONS(2647), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddsec] = ACTIONS(2647), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubsection] = ACTIONS(2647), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2647), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHparagraph] = ACTIONS(2647), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2647), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2639), - [anon_sym_BSLASHitem] = ACTIONS(2647), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2639), - [sym_word] = ACTIONS(2763), - [sym_placeholder] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2769), - [anon_sym_DASH] = ACTIONS(2769), - [anon_sym_STAR] = ACTIONS(2769), - [anon_sym_SLASH] = ACTIONS(2769), - [anon_sym_CARET] = ACTIONS(2769), - [anon_sym__] = ACTIONS(2769), - [anon_sym_LT] = ACTIONS(2769), - [anon_sym_GT] = ACTIONS(2769), - [anon_sym_BANG] = ACTIONS(2769), - [anon_sym_PIPE] = ACTIONS(2769), - [anon_sym_COLON] = ACTIONS(2769), - [anon_sym_SQUOTE] = ACTIONS(2769), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2639), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2639), - [anon_sym_BSLASHbegin] = ACTIONS(2647), - [anon_sym_BSLASHusepackage] = ACTIONS(2772), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2772), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2775), - [anon_sym_BSLASHinclude] = ACTIONS(2778), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2778), - [anon_sym_BSLASHinput] = ACTIONS(2778), - [anon_sym_BSLASHsubfile] = ACTIONS(2778), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2781), - [anon_sym_BSLASHbibliography] = ACTIONS(2784), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2787), - [anon_sym_BSLASHincludesvg] = ACTIONS(2790), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2793), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2796), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2796), - [anon_sym_BSLASHimport] = ACTIONS(2799), - [anon_sym_BSLASHsubimport] = ACTIONS(2799), - [anon_sym_BSLASHinputfrom] = ACTIONS(2799), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2799), - [anon_sym_BSLASHincludefrom] = ACTIONS(2799), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2799), - [anon_sym_BSLASHcaption] = ACTIONS(2802), - [anon_sym_BSLASHcite] = ACTIONS(2805), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2808), - [anon_sym_BSLASHCite] = ACTIONS(2805), - [anon_sym_BSLASHnocite] = ACTIONS(2805), - [anon_sym_BSLASHcitet] = ACTIONS(2805), - [anon_sym_BSLASHcitep] = ACTIONS(2805), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2808), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2808), - [anon_sym_BSLASHciteauthor] = ACTIONS(2805), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2808), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2805), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2808), - [anon_sym_BSLASHcitetitle] = ACTIONS(2805), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2808), - [anon_sym_BSLASHciteyear] = ACTIONS(2805), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2808), - [anon_sym_BSLASHcitedate] = ACTIONS(2805), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2808), - [anon_sym_BSLASHciteurl] = ACTIONS(2805), - [anon_sym_BSLASHfullcite] = ACTIONS(2805), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2805), - [anon_sym_BSLASHcitealt] = ACTIONS(2805), - [anon_sym_BSLASHcitealp] = ACTIONS(2805), - [anon_sym_BSLASHcitetext] = ACTIONS(2805), - [anon_sym_BSLASHparencite] = ACTIONS(2805), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2808), - [anon_sym_BSLASHParencite] = ACTIONS(2805), - [anon_sym_BSLASHfootcite] = ACTIONS(2805), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2805), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2805), - [anon_sym_BSLASHtextcite] = ACTIONS(2805), - [anon_sym_BSLASHTextcite] = ACTIONS(2805), - [anon_sym_BSLASHsmartcite] = ACTIONS(2805), - [anon_sym_BSLASHSmartcite] = ACTIONS(2805), - [anon_sym_BSLASHsupercite] = ACTIONS(2805), - [anon_sym_BSLASHautocite] = ACTIONS(2805), - [anon_sym_BSLASHAutocite] = ACTIONS(2805), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2808), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2808), - [anon_sym_BSLASHvolcite] = ACTIONS(2805), - [anon_sym_BSLASHVolcite] = ACTIONS(2805), - [anon_sym_BSLASHpvolcite] = ACTIONS(2805), - [anon_sym_BSLASHPvolcite] = ACTIONS(2805), - [anon_sym_BSLASHfvolcite] = ACTIONS(2805), - [anon_sym_BSLASHftvolcite] = ACTIONS(2805), - [anon_sym_BSLASHsvolcite] = ACTIONS(2805), - [anon_sym_BSLASHSvolcite] = ACTIONS(2805), - [anon_sym_BSLASHtvolcite] = ACTIONS(2805), - [anon_sym_BSLASHTvolcite] = ACTIONS(2805), - [anon_sym_BSLASHavolcite] = ACTIONS(2805), - [anon_sym_BSLASHAvolcite] = ACTIONS(2805), - [anon_sym_BSLASHnotecite] = ACTIONS(2805), - [anon_sym_BSLASHNotecite] = ACTIONS(2805), - [anon_sym_BSLASHpnotecite] = ACTIONS(2805), - [anon_sym_BSLASHPnotecite] = ACTIONS(2805), - [anon_sym_BSLASHfnotecite] = ACTIONS(2805), - [anon_sym_BSLASHlabel] = ACTIONS(2811), - [anon_sym_BSLASHref] = ACTIONS(2814), - [anon_sym_BSLASHeqref] = ACTIONS(2814), - [anon_sym_BSLASHvref] = ACTIONS(2814), - [anon_sym_BSLASHVref] = ACTIONS(2814), - [anon_sym_BSLASHautoref] = ACTIONS(2814), - [anon_sym_BSLASHpageref] = ACTIONS(2814), - [anon_sym_BSLASHcref] = ACTIONS(2814), - [anon_sym_BSLASHCref] = ACTIONS(2814), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2817), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2817), - [anon_sym_BSLASHnamecref] = ACTIONS(2814), - [anon_sym_BSLASHnameCref] = ACTIONS(2814), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2814), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2814), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2814), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2814), - [anon_sym_BSLASHlabelcref] = ACTIONS(2814), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2814), - [anon_sym_BSLASHcrefrange] = ACTIONS(2820), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2823), - [anon_sym_BSLASHCrefrange] = ACTIONS(2820), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2823), - [anon_sym_BSLASHnewlabel] = ACTIONS(2826), - [anon_sym_BSLASHnewcommand] = ACTIONS(2829), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2832), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2829), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2832), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2829), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2832), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2829), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2832), - [anon_sym_BSLASHdef] = ACTIONS(2835), - [anon_sym_BSLASHlet] = ACTIONS(2838), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2841), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2844), - [anon_sym_BSLASHgls] = ACTIONS(2847), - [anon_sym_BSLASHGls] = ACTIONS(2847), - [anon_sym_BSLASHGLS] = ACTIONS(2847), - [anon_sym_BSLASHglspl] = ACTIONS(2847), - [anon_sym_BSLASHGlspl] = ACTIONS(2847), - [anon_sym_BSLASHGLSpl] = ACTIONS(2847), - [anon_sym_BSLASHglsdisp] = ACTIONS(2847), - [anon_sym_BSLASHglslink] = ACTIONS(2847), - [anon_sym_BSLASHglstext] = ACTIONS(2847), - [anon_sym_BSLASHGlstext] = ACTIONS(2847), - [anon_sym_BSLASHGLStext] = ACTIONS(2847), - [anon_sym_BSLASHglsfirst] = ACTIONS(2847), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2847), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2847), - [anon_sym_BSLASHglsplural] = ACTIONS(2847), - [anon_sym_BSLASHGlsplural] = ACTIONS(2847), - [anon_sym_BSLASHGLSplural] = ACTIONS(2847), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2847), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2847), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2847), - [anon_sym_BSLASHglsname] = ACTIONS(2847), - [anon_sym_BSLASHGlsname] = ACTIONS(2847), - [anon_sym_BSLASHGLSname] = ACTIONS(2847), - [anon_sym_BSLASHglssymbol] = ACTIONS(2847), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2847), - [anon_sym_BSLASHglsdesc] = ACTIONS(2847), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2847), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2847), - [anon_sym_BSLASHglsuseri] = ACTIONS(2847), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2847), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2847), - [anon_sym_BSLASHglsuserii] = ACTIONS(2847), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2847), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2847), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2847), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2847), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2847), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2847), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2847), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2847), - [anon_sym_BSLASHglsuserv] = ACTIONS(2847), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2847), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2847), - [anon_sym_BSLASHglsuservi] = ACTIONS(2847), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2847), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2847), - [anon_sym_BSLASHnewacronym] = ACTIONS(2850), - [anon_sym_BSLASHacrshort] = ACTIONS(2853), - [anon_sym_BSLASHAcrshort] = ACTIONS(2853), - [anon_sym_BSLASHACRshort] = ACTIONS(2853), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2853), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2853), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2853), - [anon_sym_BSLASHacrlong] = ACTIONS(2853), - [anon_sym_BSLASHAcrlong] = ACTIONS(2853), - [anon_sym_BSLASHACRlong] = ACTIONS(2853), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2853), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2853), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2853), - [anon_sym_BSLASHacrfull] = ACTIONS(2853), - [anon_sym_BSLASHAcrfull] = ACTIONS(2853), - [anon_sym_BSLASHACRfull] = ACTIONS(2853), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2853), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2853), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2853), - [anon_sym_BSLASHacs] = ACTIONS(2853), - [anon_sym_BSLASHAcs] = ACTIONS(2853), - [anon_sym_BSLASHacsp] = ACTIONS(2853), - [anon_sym_BSLASHAcsp] = ACTIONS(2853), - [anon_sym_BSLASHacl] = ACTIONS(2853), - [anon_sym_BSLASHAcl] = ACTIONS(2853), - [anon_sym_BSLASHaclp] = ACTIONS(2853), - [anon_sym_BSLASHAclp] = ACTIONS(2853), - [anon_sym_BSLASHacf] = ACTIONS(2853), - [anon_sym_BSLASHAcf] = ACTIONS(2853), - [anon_sym_BSLASHacfp] = ACTIONS(2853), - [anon_sym_BSLASHAcfp] = ACTIONS(2853), - [anon_sym_BSLASHac] = ACTIONS(2853), - [anon_sym_BSLASHAc] = ACTIONS(2853), - [anon_sym_BSLASHacp] = ACTIONS(2853), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2853), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2853), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2853), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2853), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2853), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2853), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2853), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2853), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2853), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2853), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2856), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2856), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2859), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2862), - [anon_sym_BSLASHcolor] = ACTIONS(2865), - [anon_sym_BSLASHcolorbox] = ACTIONS(2865), - [anon_sym_BSLASHtextcolor] = ACTIONS(2865), - [anon_sym_BSLASHpagecolor] = ACTIONS(2865), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2868), + [sym_block_comment] = STATE(862), + [sym_operator] = STATE(862), + [sym__command] = STATE(862), + [sym_generic_command] = STATE(862), + [sym_package_include] = STATE(862), + [sym_class_include] = STATE(862), + [sym_latex_include] = STATE(862), + [sym_biblatex_include] = STATE(862), + [sym_bibtex_include] = STATE(862), + [sym_graphics_include] = STATE(862), + [sym_svg_include] = STATE(862), + [sym_inkscape_include] = STATE(862), + [sym_verbatim_include] = STATE(862), + [sym_import_include] = STATE(862), + [sym_caption] = STATE(862), + [sym_citation] = STATE(862), + [sym_label_definition] = STATE(862), + [sym_label_reference] = STATE(862), + [sym_label_reference_range] = STATE(862), + [sym_label_number] = STATE(862), + [sym_new_command_definition] = STATE(862), + [sym_old_command_definition] = STATE(862), + [sym_let_command_definition] = STATE(862), + [sym_environment_definition] = STATE(862), + [sym_glossary_entry_definition] = STATE(862), + [sym_glossary_entry_reference] = STATE(862), + [sym_acronym_definition] = STATE(862), + [sym_acronym_reference] = STATE(862), + [sym_theorem_definition] = STATE(862), + [sym_color_definition] = STATE(862), + [sym_color_set_definition] = STATE(862), + [sym_color_reference] = STATE(862), + [sym_tikz_library_import] = STATE(862), + [aux_sym_text_repeat1] = STATE(214), + [sym_command_name] = ACTIONS(645), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(647), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_RBRACK] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2675), + [anon_sym_BSLASHpart] = ACTIONS(2677), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddpart] = ACTIONS(2677), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2675), + [anon_sym_BSLASHchapter] = ACTIONS(2677), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddchap] = ACTIONS(2677), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsection] = ACTIONS(2677), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddsec] = ACTIONS(2677), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubsection] = ACTIONS(2677), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2677), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHparagraph] = ACTIONS(2677), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2677), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2675), + [anon_sym_BSLASHitem] = ACTIONS(2677), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [sym_word] = ACTIONS(685), + [sym_placeholder] = ACTIONS(687), + [anon_sym_PLUS] = ACTIONS(689), + [anon_sym_DASH] = ACTIONS(689), + [anon_sym_STAR] = ACTIONS(689), + [anon_sym_SLASH] = ACTIONS(689), + [anon_sym_CARET] = ACTIONS(689), + [anon_sym__] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(689), + [anon_sym_GT] = ACTIONS(689), + [anon_sym_BANG] = ACTIONS(689), + [anon_sym_PIPE] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_SQUOTE] = ACTIONS(689), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), + [anon_sym_DOLLAR] = ACTIONS(2677), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2675), + [anon_sym_BSLASHbegin] = ACTIONS(2677), + [anon_sym_BSLASHusepackage] = ACTIONS(701), + [anon_sym_BSLASHRequirePackage] = ACTIONS(701), + [anon_sym_BSLASHdocumentclass] = ACTIONS(703), + [anon_sym_BSLASHinclude] = ACTIONS(705), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(705), + [anon_sym_BSLASHinput] = ACTIONS(705), + [anon_sym_BSLASHsubfile] = ACTIONS(705), + [anon_sym_BSLASHaddbibresource] = ACTIONS(707), + [anon_sym_BSLASHbibliography] = ACTIONS(709), + [anon_sym_BSLASHincludegraphics] = ACTIONS(711), + [anon_sym_BSLASHincludesvg] = ACTIONS(713), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(715), + [anon_sym_BSLASHverbatiminput] = ACTIONS(717), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(717), + [anon_sym_BSLASHimport] = ACTIONS(719), + [anon_sym_BSLASHsubimport] = ACTIONS(719), + [anon_sym_BSLASHinputfrom] = ACTIONS(719), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(719), + [anon_sym_BSLASHincludefrom] = ACTIONS(719), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(719), + [anon_sym_BSLASHcaption] = ACTIONS(721), + [anon_sym_BSLASHcite] = ACTIONS(723), + [anon_sym_BSLASHcite_STAR] = ACTIONS(725), + [anon_sym_BSLASHCite] = ACTIONS(723), + [anon_sym_BSLASHnocite] = ACTIONS(723), + [anon_sym_BSLASHcitet] = ACTIONS(723), + [anon_sym_BSLASHcitep] = ACTIONS(723), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteauthor] = ACTIONS(723), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHCiteauthor] = ACTIONS(723), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitetitle] = ACTIONS(723), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteyear] = ACTIONS(723), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(725), + [anon_sym_BSLASHcitedate] = ACTIONS(723), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(725), + [anon_sym_BSLASHciteurl] = ACTIONS(723), + [anon_sym_BSLASHfullcite] = ACTIONS(723), + [anon_sym_BSLASHciteyearpar] = ACTIONS(723), + [anon_sym_BSLASHcitealt] = ACTIONS(723), + [anon_sym_BSLASHcitealp] = ACTIONS(723), + [anon_sym_BSLASHcitetext] = ACTIONS(723), + [anon_sym_BSLASHparencite] = ACTIONS(723), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(725), + [anon_sym_BSLASHParencite] = ACTIONS(723), + [anon_sym_BSLASHfootcite] = ACTIONS(723), + [anon_sym_BSLASHfootfullcite] = ACTIONS(723), + [anon_sym_BSLASHfootcitetext] = ACTIONS(723), + [anon_sym_BSLASHtextcite] = ACTIONS(723), + [anon_sym_BSLASHTextcite] = ACTIONS(723), + [anon_sym_BSLASHsmartcite] = ACTIONS(723), + [anon_sym_BSLASHSmartcite] = ACTIONS(723), + [anon_sym_BSLASHsupercite] = ACTIONS(723), + [anon_sym_BSLASHautocite] = ACTIONS(723), + [anon_sym_BSLASHAutocite] = ACTIONS(723), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(725), + [anon_sym_BSLASHvolcite] = ACTIONS(723), + [anon_sym_BSLASHVolcite] = ACTIONS(723), + [anon_sym_BSLASHpvolcite] = ACTIONS(723), + [anon_sym_BSLASHPvolcite] = ACTIONS(723), + [anon_sym_BSLASHfvolcite] = ACTIONS(723), + [anon_sym_BSLASHftvolcite] = ACTIONS(723), + [anon_sym_BSLASHsvolcite] = ACTIONS(723), + [anon_sym_BSLASHSvolcite] = ACTIONS(723), + [anon_sym_BSLASHtvolcite] = ACTIONS(723), + [anon_sym_BSLASHTvolcite] = ACTIONS(723), + [anon_sym_BSLASHavolcite] = ACTIONS(723), + [anon_sym_BSLASHAvolcite] = ACTIONS(723), + [anon_sym_BSLASHnotecite] = ACTIONS(723), + [anon_sym_BSLASHNotecite] = ACTIONS(723), + [anon_sym_BSLASHpnotecite] = ACTIONS(723), + [anon_sym_BSLASHPnotecite] = ACTIONS(723), + [anon_sym_BSLASHfnotecite] = ACTIONS(723), + [anon_sym_BSLASHlabel] = ACTIONS(727), + [anon_sym_BSLASHref] = ACTIONS(729), + [anon_sym_BSLASHeqref] = ACTIONS(729), + [anon_sym_BSLASHvref] = ACTIONS(729), + [anon_sym_BSLASHVref] = ACTIONS(729), + [anon_sym_BSLASHautoref] = ACTIONS(729), + [anon_sym_BSLASHpageref] = ACTIONS(729), + [anon_sym_BSLASHcref] = ACTIONS(729), + [anon_sym_BSLASHCref] = ACTIONS(729), + [anon_sym_BSLASHcref_STAR] = ACTIONS(731), + [anon_sym_BSLASHCref_STAR] = ACTIONS(731), + [anon_sym_BSLASHnamecref] = ACTIONS(729), + [anon_sym_BSLASHnameCref] = ACTIONS(729), + [anon_sym_BSLASHlcnamecref] = ACTIONS(729), + [anon_sym_BSLASHnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHnameCrefs] = ACTIONS(729), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(729), + [anon_sym_BSLASHlabelcref] = ACTIONS(729), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(729), + [anon_sym_BSLASHcrefrange] = ACTIONS(733), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHCrefrange] = ACTIONS(733), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(735), + [anon_sym_BSLASHnewlabel] = ACTIONS(737), + [anon_sym_BSLASHnewcommand] = ACTIONS(739), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHrenewcommand] = ACTIONS(739), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(739), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(741), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(739), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(741), + [anon_sym_BSLASHdef] = ACTIONS(743), + [anon_sym_BSLASHlet] = ACTIONS(745), + [anon_sym_BSLASHnewenvironment] = ACTIONS(747), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(749), + [anon_sym_BSLASHgls] = ACTIONS(751), + [anon_sym_BSLASHGls] = ACTIONS(751), + [anon_sym_BSLASHGLS] = ACTIONS(751), + [anon_sym_BSLASHglspl] = ACTIONS(751), + [anon_sym_BSLASHGlspl] = ACTIONS(751), + [anon_sym_BSLASHGLSpl] = ACTIONS(751), + [anon_sym_BSLASHglsdisp] = ACTIONS(751), + [anon_sym_BSLASHglslink] = ACTIONS(751), + [anon_sym_BSLASHglstext] = ACTIONS(751), + [anon_sym_BSLASHGlstext] = ACTIONS(751), + [anon_sym_BSLASHGLStext] = ACTIONS(751), + [anon_sym_BSLASHglsfirst] = ACTIONS(751), + [anon_sym_BSLASHGlsfirst] = ACTIONS(751), + [anon_sym_BSLASHGLSfirst] = ACTIONS(751), + [anon_sym_BSLASHglsplural] = ACTIONS(751), + [anon_sym_BSLASHGlsplural] = ACTIONS(751), + [anon_sym_BSLASHGLSplural] = ACTIONS(751), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(751), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(751), + [anon_sym_BSLASHglsname] = ACTIONS(751), + [anon_sym_BSLASHGlsname] = ACTIONS(751), + [anon_sym_BSLASHGLSname] = ACTIONS(751), + [anon_sym_BSLASHglssymbol] = ACTIONS(751), + [anon_sym_BSLASHGlssymbol] = ACTIONS(751), + [anon_sym_BSLASHglsdesc] = ACTIONS(751), + [anon_sym_BSLASHGlsdesc] = ACTIONS(751), + [anon_sym_BSLASHGLSdesc] = ACTIONS(751), + [anon_sym_BSLASHglsuseri] = ACTIONS(751), + [anon_sym_BSLASHGlsuseri] = ACTIONS(751), + [anon_sym_BSLASHGLSuseri] = ACTIONS(751), + [anon_sym_BSLASHglsuserii] = ACTIONS(751), + [anon_sym_BSLASHGlsuserii] = ACTIONS(751), + [anon_sym_BSLASHGLSuserii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(751), + [anon_sym_BSLASHglsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(751), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(751), + [anon_sym_BSLASHglsuserv] = ACTIONS(751), + [anon_sym_BSLASHGlsuserv] = ACTIONS(751), + [anon_sym_BSLASHGLSuserv] = ACTIONS(751), + [anon_sym_BSLASHglsuservi] = ACTIONS(751), + [anon_sym_BSLASHGlsuservi] = ACTIONS(751), + [anon_sym_BSLASHGLSuservi] = ACTIONS(751), + [anon_sym_BSLASHnewacronym] = ACTIONS(753), + [anon_sym_BSLASHacrshort] = ACTIONS(755), + [anon_sym_BSLASHAcrshort] = ACTIONS(755), + [anon_sym_BSLASHACRshort] = ACTIONS(755), + [anon_sym_BSLASHacrshortpl] = ACTIONS(755), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(755), + [anon_sym_BSLASHACRshortpl] = ACTIONS(755), + [anon_sym_BSLASHacrlong] = ACTIONS(755), + [anon_sym_BSLASHAcrlong] = ACTIONS(755), + [anon_sym_BSLASHACRlong] = ACTIONS(755), + [anon_sym_BSLASHacrlongpl] = ACTIONS(755), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(755), + [anon_sym_BSLASHACRlongpl] = ACTIONS(755), + [anon_sym_BSLASHacrfull] = ACTIONS(755), + [anon_sym_BSLASHAcrfull] = ACTIONS(755), + [anon_sym_BSLASHACRfull] = ACTIONS(755), + [anon_sym_BSLASHacrfullpl] = ACTIONS(755), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(755), + [anon_sym_BSLASHACRfullpl] = ACTIONS(755), + [anon_sym_BSLASHacs] = ACTIONS(755), + [anon_sym_BSLASHAcs] = ACTIONS(755), + [anon_sym_BSLASHacsp] = ACTIONS(755), + [anon_sym_BSLASHAcsp] = ACTIONS(755), + [anon_sym_BSLASHacl] = ACTIONS(755), + [anon_sym_BSLASHAcl] = ACTIONS(755), + [anon_sym_BSLASHaclp] = ACTIONS(755), + [anon_sym_BSLASHAclp] = ACTIONS(755), + [anon_sym_BSLASHacf] = ACTIONS(755), + [anon_sym_BSLASHAcf] = ACTIONS(755), + [anon_sym_BSLASHacfp] = ACTIONS(755), + [anon_sym_BSLASHAcfp] = ACTIONS(755), + [anon_sym_BSLASHac] = ACTIONS(755), + [anon_sym_BSLASHAc] = ACTIONS(755), + [anon_sym_BSLASHacp] = ACTIONS(755), + [anon_sym_BSLASHglsentrylong] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(755), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryshort] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(755), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(755), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(755), + [anon_sym_BSLASHnewtheorem] = ACTIONS(757), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(757), + [anon_sym_BSLASHdefinecolor] = ACTIONS(759), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(761), + [anon_sym_BSLASHcolor] = ACTIONS(763), + [anon_sym_BSLASHcolorbox] = ACTIONS(763), + [anon_sym_BSLASHtextcolor] = ACTIONS(763), + [anon_sym_BSLASHpagecolor] = ACTIONS(763), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(765), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(765), + [anon_sym_BSLASHtext] = ACTIONS(2677), + [anon_sym_BSLASHintertext] = ACTIONS(2677), + [anon_sym_shortintertext] = ACTIONS(2677), }, [210] = { - [sym_block_comment] = STATE(1208), - [sym_operator] = STATE(1208), - [sym__command] = STATE(1208), - [sym_generic_command] = STATE(1208), - [sym_package_include] = STATE(1208), - [sym_class_include] = STATE(1208), - [sym_latex_include] = STATE(1208), - [sym_biblatex_include] = STATE(1208), - [sym_bibtex_include] = STATE(1208), - [sym_graphics_include] = STATE(1208), - [sym_svg_include] = STATE(1208), - [sym_inkscape_include] = STATE(1208), - [sym_verbatim_include] = STATE(1208), - [sym_import_include] = STATE(1208), - [sym_caption] = STATE(1208), - [sym_citation] = STATE(1208), - [sym_label_definition] = STATE(1208), - [sym_label_reference] = STATE(1208), - [sym_label_reference_range] = STATE(1208), - [sym_label_number] = STATE(1208), - [sym_new_command_definition] = STATE(1208), - [sym_old_command_definition] = STATE(1208), - [sym_let_command_definition] = STATE(1208), - [sym_environment_definition] = STATE(1208), - [sym_glossary_entry_definition] = STATE(1208), - [sym_glossary_entry_reference] = STATE(1208), - [sym_acronym_definition] = STATE(1208), - [sym_acronym_reference] = STATE(1208), - [sym_theorem_definition] = STATE(1208), - [sym_color_definition] = STATE(1208), - [sym_color_set_definition] = STATE(1208), - [sym_color_reference] = STATE(1208), - [sym_tikz_library_import] = STATE(1208), - [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(2871), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2639), - [anon_sym_RPAREN] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_RBRACK] = ACTIONS(2639), - [anon_sym_COMMA] = ACTIONS(2639), - [anon_sym_EQ] = ACTIONS(2639), - [anon_sym_BSLASHpart] = ACTIONS(2647), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddpart] = ACTIONS(2647), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2639), - [anon_sym_BSLASHchapter] = ACTIONS(2647), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddchap] = ACTIONS(2647), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsection] = ACTIONS(2647), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddsec] = ACTIONS(2647), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubsection] = ACTIONS(2647), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2647), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHparagraph] = ACTIONS(2647), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2647), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2639), - [anon_sym_BSLASHitem] = ACTIONS(2647), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2639), - [sym_word] = ACTIONS(2877), - [sym_placeholder] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_STAR] = ACTIONS(2883), - [anon_sym_SLASH] = ACTIONS(2883), - [anon_sym_CARET] = ACTIONS(2883), - [anon_sym__] = ACTIONS(2883), - [anon_sym_LT] = ACTIONS(2883), - [anon_sym_GT] = ACTIONS(2883), - [anon_sym_BANG] = ACTIONS(2883), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_COLON] = ACTIONS(2883), - [anon_sym_SQUOTE] = ACTIONS(2883), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2639), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2639), - [anon_sym_BSLASHbegin] = ACTIONS(2647), - [anon_sym_BSLASHusepackage] = ACTIONS(2886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(2886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(2889), - [anon_sym_BSLASHinclude] = ACTIONS(2892), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(2892), - [anon_sym_BSLASHinput] = ACTIONS(2892), - [anon_sym_BSLASHsubfile] = ACTIONS(2892), - [anon_sym_BSLASHaddbibresource] = ACTIONS(2895), - [anon_sym_BSLASHbibliography] = ACTIONS(2898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(2901), - [anon_sym_BSLASHincludesvg] = ACTIONS(2904), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(2907), - [anon_sym_BSLASHverbatiminput] = ACTIONS(2910), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(2910), - [anon_sym_BSLASHimport] = ACTIONS(2913), - [anon_sym_BSLASHsubimport] = ACTIONS(2913), - [anon_sym_BSLASHinputfrom] = ACTIONS(2913), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(2913), - [anon_sym_BSLASHincludefrom] = ACTIONS(2913), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(2913), - [anon_sym_BSLASHcaption] = ACTIONS(2916), - [anon_sym_BSLASHcite] = ACTIONS(2919), - [anon_sym_BSLASHcite_STAR] = ACTIONS(2922), - [anon_sym_BSLASHCite] = ACTIONS(2919), - [anon_sym_BSLASHnocite] = ACTIONS(2919), - [anon_sym_BSLASHcitet] = ACTIONS(2919), - [anon_sym_BSLASHcitep] = ACTIONS(2919), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(2922), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(2922), - [anon_sym_BSLASHciteauthor] = ACTIONS(2919), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2922), - [anon_sym_BSLASHCiteauthor] = ACTIONS(2919), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2922), - [anon_sym_BSLASHcitetitle] = ACTIONS(2919), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2922), - [anon_sym_BSLASHciteyear] = ACTIONS(2919), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2922), - [anon_sym_BSLASHcitedate] = ACTIONS(2919), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2922), - [anon_sym_BSLASHciteurl] = ACTIONS(2919), - [anon_sym_BSLASHfullcite] = ACTIONS(2919), - [anon_sym_BSLASHciteyearpar] = ACTIONS(2919), - [anon_sym_BSLASHcitealt] = ACTIONS(2919), - [anon_sym_BSLASHcitealp] = ACTIONS(2919), - [anon_sym_BSLASHcitetext] = ACTIONS(2919), - [anon_sym_BSLASHparencite] = ACTIONS(2919), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(2922), - [anon_sym_BSLASHParencite] = ACTIONS(2919), - [anon_sym_BSLASHfootcite] = ACTIONS(2919), - [anon_sym_BSLASHfootfullcite] = ACTIONS(2919), - [anon_sym_BSLASHfootcitetext] = ACTIONS(2919), - [anon_sym_BSLASHtextcite] = ACTIONS(2919), - [anon_sym_BSLASHTextcite] = ACTIONS(2919), - [anon_sym_BSLASHsmartcite] = ACTIONS(2919), - [anon_sym_BSLASHSmartcite] = ACTIONS(2919), - [anon_sym_BSLASHsupercite] = ACTIONS(2919), - [anon_sym_BSLASHautocite] = ACTIONS(2919), - [anon_sym_BSLASHAutocite] = ACTIONS(2919), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(2922), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2922), - [anon_sym_BSLASHvolcite] = ACTIONS(2919), - [anon_sym_BSLASHVolcite] = ACTIONS(2919), - [anon_sym_BSLASHpvolcite] = ACTIONS(2919), - [anon_sym_BSLASHPvolcite] = ACTIONS(2919), - [anon_sym_BSLASHfvolcite] = ACTIONS(2919), - [anon_sym_BSLASHftvolcite] = ACTIONS(2919), - [anon_sym_BSLASHsvolcite] = ACTIONS(2919), - [anon_sym_BSLASHSvolcite] = ACTIONS(2919), - [anon_sym_BSLASHtvolcite] = ACTIONS(2919), - [anon_sym_BSLASHTvolcite] = ACTIONS(2919), - [anon_sym_BSLASHavolcite] = ACTIONS(2919), - [anon_sym_BSLASHAvolcite] = ACTIONS(2919), - [anon_sym_BSLASHnotecite] = ACTIONS(2919), - [anon_sym_BSLASHNotecite] = ACTIONS(2919), - [anon_sym_BSLASHpnotecite] = ACTIONS(2919), - [anon_sym_BSLASHPnotecite] = ACTIONS(2919), - [anon_sym_BSLASHfnotecite] = ACTIONS(2919), - [anon_sym_BSLASHlabel] = ACTIONS(2925), - [anon_sym_BSLASHref] = ACTIONS(2928), - [anon_sym_BSLASHeqref] = ACTIONS(2928), - [anon_sym_BSLASHvref] = ACTIONS(2928), - [anon_sym_BSLASHVref] = ACTIONS(2928), - [anon_sym_BSLASHautoref] = ACTIONS(2928), - [anon_sym_BSLASHpageref] = ACTIONS(2928), - [anon_sym_BSLASHcref] = ACTIONS(2928), - [anon_sym_BSLASHCref] = ACTIONS(2928), - [anon_sym_BSLASHcref_STAR] = ACTIONS(2931), - [anon_sym_BSLASHCref_STAR] = ACTIONS(2931), - [anon_sym_BSLASHnamecref] = ACTIONS(2928), - [anon_sym_BSLASHnameCref] = ACTIONS(2928), - [anon_sym_BSLASHlcnamecref] = ACTIONS(2928), - [anon_sym_BSLASHnamecrefs] = ACTIONS(2928), - [anon_sym_BSLASHnameCrefs] = ACTIONS(2928), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2928), - [anon_sym_BSLASHlabelcref] = ACTIONS(2928), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(2928), - [anon_sym_BSLASHcrefrange] = ACTIONS(2934), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2937), - [anon_sym_BSLASHCrefrange] = ACTIONS(2934), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2937), - [anon_sym_BSLASHnewlabel] = ACTIONS(2940), - [anon_sym_BSLASHnewcommand] = ACTIONS(2943), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2946), - [anon_sym_BSLASHrenewcommand] = ACTIONS(2943), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2946), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2943), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2946), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2943), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2946), - [anon_sym_BSLASHdef] = ACTIONS(2949), - [anon_sym_BSLASHlet] = ACTIONS(2952), - [anon_sym_BSLASHnewenvironment] = ACTIONS(2955), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2958), - [anon_sym_BSLASHgls] = ACTIONS(2961), - [anon_sym_BSLASHGls] = ACTIONS(2961), - [anon_sym_BSLASHGLS] = ACTIONS(2961), - [anon_sym_BSLASHglspl] = ACTIONS(2961), - [anon_sym_BSLASHGlspl] = ACTIONS(2961), - [anon_sym_BSLASHGLSpl] = ACTIONS(2961), - [anon_sym_BSLASHglsdisp] = ACTIONS(2961), - [anon_sym_BSLASHglslink] = ACTIONS(2961), - [anon_sym_BSLASHglstext] = ACTIONS(2961), - [anon_sym_BSLASHGlstext] = ACTIONS(2961), - [anon_sym_BSLASHGLStext] = ACTIONS(2961), - [anon_sym_BSLASHglsfirst] = ACTIONS(2961), - [anon_sym_BSLASHGlsfirst] = ACTIONS(2961), - [anon_sym_BSLASHGLSfirst] = ACTIONS(2961), - [anon_sym_BSLASHglsplural] = ACTIONS(2961), - [anon_sym_BSLASHGlsplural] = ACTIONS(2961), - [anon_sym_BSLASHGLSplural] = ACTIONS(2961), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(2961), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2961), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2961), - [anon_sym_BSLASHglsname] = ACTIONS(2961), - [anon_sym_BSLASHGlsname] = ACTIONS(2961), - [anon_sym_BSLASHGLSname] = ACTIONS(2961), - [anon_sym_BSLASHglssymbol] = ACTIONS(2961), - [anon_sym_BSLASHGlssymbol] = ACTIONS(2961), - [anon_sym_BSLASHglsdesc] = ACTIONS(2961), - [anon_sym_BSLASHGlsdesc] = ACTIONS(2961), - [anon_sym_BSLASHGLSdesc] = ACTIONS(2961), - [anon_sym_BSLASHglsuseri] = ACTIONS(2961), - [anon_sym_BSLASHGlsuseri] = ACTIONS(2961), - [anon_sym_BSLASHGLSuseri] = ACTIONS(2961), - [anon_sym_BSLASHglsuserii] = ACTIONS(2961), - [anon_sym_BSLASHGlsuserii] = ACTIONS(2961), - [anon_sym_BSLASHGLSuserii] = ACTIONS(2961), - [anon_sym_BSLASHglsuseriii] = ACTIONS(2961), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(2961), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(2961), - [anon_sym_BSLASHglsuseriv] = ACTIONS(2961), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(2961), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(2961), - [anon_sym_BSLASHglsuserv] = ACTIONS(2961), - [anon_sym_BSLASHGlsuserv] = ACTIONS(2961), - [anon_sym_BSLASHGLSuserv] = ACTIONS(2961), - [anon_sym_BSLASHglsuservi] = ACTIONS(2961), - [anon_sym_BSLASHGlsuservi] = ACTIONS(2961), - [anon_sym_BSLASHGLSuservi] = ACTIONS(2961), - [anon_sym_BSLASHnewacronym] = ACTIONS(2964), - [anon_sym_BSLASHacrshort] = ACTIONS(2967), - [anon_sym_BSLASHAcrshort] = ACTIONS(2967), - [anon_sym_BSLASHACRshort] = ACTIONS(2967), - [anon_sym_BSLASHacrshortpl] = ACTIONS(2967), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(2967), - [anon_sym_BSLASHACRshortpl] = ACTIONS(2967), - [anon_sym_BSLASHacrlong] = ACTIONS(2967), - [anon_sym_BSLASHAcrlong] = ACTIONS(2967), - [anon_sym_BSLASHACRlong] = ACTIONS(2967), - [anon_sym_BSLASHacrlongpl] = ACTIONS(2967), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(2967), - [anon_sym_BSLASHACRlongpl] = ACTIONS(2967), - [anon_sym_BSLASHacrfull] = ACTIONS(2967), - [anon_sym_BSLASHAcrfull] = ACTIONS(2967), - [anon_sym_BSLASHACRfull] = ACTIONS(2967), - [anon_sym_BSLASHacrfullpl] = ACTIONS(2967), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(2967), - [anon_sym_BSLASHACRfullpl] = ACTIONS(2967), - [anon_sym_BSLASHacs] = ACTIONS(2967), - [anon_sym_BSLASHAcs] = ACTIONS(2967), - [anon_sym_BSLASHacsp] = ACTIONS(2967), - [anon_sym_BSLASHAcsp] = ACTIONS(2967), - [anon_sym_BSLASHacl] = ACTIONS(2967), - [anon_sym_BSLASHAcl] = ACTIONS(2967), - [anon_sym_BSLASHaclp] = ACTIONS(2967), - [anon_sym_BSLASHAclp] = ACTIONS(2967), - [anon_sym_BSLASHacf] = ACTIONS(2967), - [anon_sym_BSLASHAcf] = ACTIONS(2967), - [anon_sym_BSLASHacfp] = ACTIONS(2967), - [anon_sym_BSLASHAcfp] = ACTIONS(2967), - [anon_sym_BSLASHac] = ACTIONS(2967), - [anon_sym_BSLASHAc] = ACTIONS(2967), - [anon_sym_BSLASHacp] = ACTIONS(2967), - [anon_sym_BSLASHglsentrylong] = ACTIONS(2967), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(2967), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2967), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2967), - [anon_sym_BSLASHglsentryshort] = ACTIONS(2967), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(2967), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2967), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2967), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2967), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2967), - [anon_sym_BSLASHnewtheorem] = ACTIONS(2970), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2970), - [anon_sym_BSLASHdefinecolor] = ACTIONS(2973), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(2976), - [anon_sym_BSLASHcolor] = ACTIONS(2979), - [anon_sym_BSLASHcolorbox] = ACTIONS(2979), - [anon_sym_BSLASHtextcolor] = ACTIONS(2979), - [anon_sym_BSLASHpagecolor] = ACTIONS(2979), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(2982), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2982), + [sym_block_comment] = STATE(1178), + [sym_operator] = STATE(1178), + [sym__command] = STATE(1178), + [sym_generic_command] = STATE(1178), + [sym_package_include] = STATE(1178), + [sym_class_include] = STATE(1178), + [sym_latex_include] = STATE(1178), + [sym_biblatex_include] = STATE(1178), + [sym_bibtex_include] = STATE(1178), + [sym_graphics_include] = STATE(1178), + [sym_svg_include] = STATE(1178), + [sym_inkscape_include] = STATE(1178), + [sym_verbatim_include] = STATE(1178), + [sym_import_include] = STATE(1178), + [sym_caption] = STATE(1178), + [sym_citation] = STATE(1178), + [sym_label_definition] = STATE(1178), + [sym_label_reference] = STATE(1178), + [sym_label_reference_range] = STATE(1178), + [sym_label_number] = STATE(1178), + [sym_new_command_definition] = STATE(1178), + [sym_old_command_definition] = STATE(1178), + [sym_let_command_definition] = STATE(1178), + [sym_environment_definition] = STATE(1178), + [sym_glossary_entry_definition] = STATE(1178), + [sym_glossary_entry_reference] = STATE(1178), + [sym_acronym_definition] = STATE(1178), + [sym_acronym_reference] = STATE(1178), + [sym_theorem_definition] = STATE(1178), + [sym_color_definition] = STATE(1178), + [sym_color_set_definition] = STATE(1178), + [sym_color_reference] = STATE(1178), + [sym_tikz_library_import] = STATE(1178), + [aux_sym_text_repeat1] = STATE(211), + [sym_command_name] = ACTIONS(783), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(785), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_RBRACK] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2675), + [anon_sym_BSLASHpart] = ACTIONS(2677), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddpart] = ACTIONS(2677), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2675), + [anon_sym_BSLASHchapter] = ACTIONS(2677), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddchap] = ACTIONS(2677), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsection] = ACTIONS(2677), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddsec] = ACTIONS(2677), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubsection] = ACTIONS(2677), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2677), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHparagraph] = ACTIONS(2677), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2677), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2675), + [anon_sym_BSLASHitem] = ACTIONS(2677), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [sym_word] = ACTIONS(791), + [sym_placeholder] = ACTIONS(793), + [anon_sym_PLUS] = ACTIONS(795), + [anon_sym_DASH] = ACTIONS(795), + [anon_sym_STAR] = ACTIONS(795), + [anon_sym_SLASH] = ACTIONS(795), + [anon_sym_CARET] = ACTIONS(795), + [anon_sym__] = ACTIONS(795), + [anon_sym_LT] = ACTIONS(795), + [anon_sym_GT] = ACTIONS(795), + [anon_sym_BANG] = ACTIONS(795), + [anon_sym_PIPE] = ACTIONS(795), + [anon_sym_COLON] = ACTIONS(795), + [anon_sym_SQUOTE] = ACTIONS(795), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2675), + [anon_sym_DOLLAR] = ACTIONS(2677), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), + [anon_sym_BSLASHbegin] = ACTIONS(2677), + [anon_sym_BSLASHusepackage] = ACTIONS(809), + [anon_sym_BSLASHRequirePackage] = ACTIONS(809), + [anon_sym_BSLASHdocumentclass] = ACTIONS(811), + [anon_sym_BSLASHinclude] = ACTIONS(813), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(813), + [anon_sym_BSLASHinput] = ACTIONS(813), + [anon_sym_BSLASHsubfile] = ACTIONS(813), + [anon_sym_BSLASHaddbibresource] = ACTIONS(815), + [anon_sym_BSLASHbibliography] = ACTIONS(817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(819), + [anon_sym_BSLASHincludesvg] = ACTIONS(821), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(823), + [anon_sym_BSLASHverbatiminput] = ACTIONS(825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(825), + [anon_sym_BSLASHimport] = ACTIONS(827), + [anon_sym_BSLASHsubimport] = ACTIONS(827), + [anon_sym_BSLASHinputfrom] = ACTIONS(827), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(827), + [anon_sym_BSLASHincludefrom] = ACTIONS(827), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(827), + [anon_sym_BSLASHcaption] = ACTIONS(829), + [anon_sym_BSLASHcite] = ACTIONS(831), + [anon_sym_BSLASHcite_STAR] = ACTIONS(833), + [anon_sym_BSLASHCite] = ACTIONS(831), + [anon_sym_BSLASHnocite] = ACTIONS(831), + [anon_sym_BSLASHcitet] = ACTIONS(831), + [anon_sym_BSLASHcitep] = ACTIONS(831), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteauthor] = ACTIONS(831), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHCiteauthor] = ACTIONS(831), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitetitle] = ACTIONS(831), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteyear] = ACTIONS(831), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(833), + [anon_sym_BSLASHcitedate] = ACTIONS(831), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(833), + [anon_sym_BSLASHciteurl] = ACTIONS(831), + [anon_sym_BSLASHfullcite] = ACTIONS(831), + [anon_sym_BSLASHciteyearpar] = ACTIONS(831), + [anon_sym_BSLASHcitealt] = ACTIONS(831), + [anon_sym_BSLASHcitealp] = ACTIONS(831), + [anon_sym_BSLASHcitetext] = ACTIONS(831), + [anon_sym_BSLASHparencite] = ACTIONS(831), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(833), + [anon_sym_BSLASHParencite] = ACTIONS(831), + [anon_sym_BSLASHfootcite] = ACTIONS(831), + [anon_sym_BSLASHfootfullcite] = ACTIONS(831), + [anon_sym_BSLASHfootcitetext] = ACTIONS(831), + [anon_sym_BSLASHtextcite] = ACTIONS(831), + [anon_sym_BSLASHTextcite] = ACTIONS(831), + [anon_sym_BSLASHsmartcite] = ACTIONS(831), + [anon_sym_BSLASHSmartcite] = ACTIONS(831), + [anon_sym_BSLASHsupercite] = ACTIONS(831), + [anon_sym_BSLASHautocite] = ACTIONS(831), + [anon_sym_BSLASHAutocite] = ACTIONS(831), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(833), + [anon_sym_BSLASHvolcite] = ACTIONS(831), + [anon_sym_BSLASHVolcite] = ACTIONS(831), + [anon_sym_BSLASHpvolcite] = ACTIONS(831), + [anon_sym_BSLASHPvolcite] = ACTIONS(831), + [anon_sym_BSLASHfvolcite] = ACTIONS(831), + [anon_sym_BSLASHftvolcite] = ACTIONS(831), + [anon_sym_BSLASHsvolcite] = ACTIONS(831), + [anon_sym_BSLASHSvolcite] = ACTIONS(831), + [anon_sym_BSLASHtvolcite] = ACTIONS(831), + [anon_sym_BSLASHTvolcite] = ACTIONS(831), + [anon_sym_BSLASHavolcite] = ACTIONS(831), + [anon_sym_BSLASHAvolcite] = ACTIONS(831), + [anon_sym_BSLASHnotecite] = ACTIONS(831), + [anon_sym_BSLASHNotecite] = ACTIONS(831), + [anon_sym_BSLASHpnotecite] = ACTIONS(831), + [anon_sym_BSLASHPnotecite] = ACTIONS(831), + [anon_sym_BSLASHfnotecite] = ACTIONS(831), + [anon_sym_BSLASHlabel] = ACTIONS(835), + [anon_sym_BSLASHref] = ACTIONS(837), + [anon_sym_BSLASHeqref] = ACTIONS(837), + [anon_sym_BSLASHvref] = ACTIONS(837), + [anon_sym_BSLASHVref] = ACTIONS(837), + [anon_sym_BSLASHautoref] = ACTIONS(837), + [anon_sym_BSLASHpageref] = ACTIONS(837), + [anon_sym_BSLASHcref] = ACTIONS(837), + [anon_sym_BSLASHCref] = ACTIONS(837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(839), + [anon_sym_BSLASHnamecref] = ACTIONS(837), + [anon_sym_BSLASHnameCref] = ACTIONS(837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(837), + [anon_sym_BSLASHlabelcref] = ACTIONS(837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(837), + [anon_sym_BSLASHcrefrange] = ACTIONS(841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHCrefrange] = ACTIONS(841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(843), + [anon_sym_BSLASHnewlabel] = ACTIONS(845), + [anon_sym_BSLASHnewcommand] = ACTIONS(847), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHrenewcommand] = ACTIONS(847), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(847), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(849), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(847), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(849), + [anon_sym_BSLASHdef] = ACTIONS(851), + [anon_sym_BSLASHlet] = ACTIONS(853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(855), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(857), + [anon_sym_BSLASHgls] = ACTIONS(859), + [anon_sym_BSLASHGls] = ACTIONS(859), + [anon_sym_BSLASHGLS] = ACTIONS(859), + [anon_sym_BSLASHglspl] = ACTIONS(859), + [anon_sym_BSLASHGlspl] = ACTIONS(859), + [anon_sym_BSLASHGLSpl] = ACTIONS(859), + [anon_sym_BSLASHglsdisp] = ACTIONS(859), + [anon_sym_BSLASHglslink] = ACTIONS(859), + [anon_sym_BSLASHglstext] = ACTIONS(859), + [anon_sym_BSLASHGlstext] = ACTIONS(859), + [anon_sym_BSLASHGLStext] = ACTIONS(859), + [anon_sym_BSLASHglsfirst] = ACTIONS(859), + [anon_sym_BSLASHGlsfirst] = ACTIONS(859), + [anon_sym_BSLASHGLSfirst] = ACTIONS(859), + [anon_sym_BSLASHglsplural] = ACTIONS(859), + [anon_sym_BSLASHGlsplural] = ACTIONS(859), + [anon_sym_BSLASHGLSplural] = ACTIONS(859), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(859), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(859), + [anon_sym_BSLASHglsname] = ACTIONS(859), + [anon_sym_BSLASHGlsname] = ACTIONS(859), + [anon_sym_BSLASHGLSname] = ACTIONS(859), + [anon_sym_BSLASHglssymbol] = ACTIONS(859), + [anon_sym_BSLASHGlssymbol] = ACTIONS(859), + [anon_sym_BSLASHglsdesc] = ACTIONS(859), + [anon_sym_BSLASHGlsdesc] = ACTIONS(859), + [anon_sym_BSLASHGLSdesc] = ACTIONS(859), + [anon_sym_BSLASHglsuseri] = ACTIONS(859), + [anon_sym_BSLASHGlsuseri] = ACTIONS(859), + [anon_sym_BSLASHGLSuseri] = ACTIONS(859), + [anon_sym_BSLASHglsuserii] = ACTIONS(859), + [anon_sym_BSLASHGlsuserii] = ACTIONS(859), + [anon_sym_BSLASHGLSuserii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(859), + [anon_sym_BSLASHglsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(859), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(859), + [anon_sym_BSLASHglsuserv] = ACTIONS(859), + [anon_sym_BSLASHGlsuserv] = ACTIONS(859), + [anon_sym_BSLASHGLSuserv] = ACTIONS(859), + [anon_sym_BSLASHglsuservi] = ACTIONS(859), + [anon_sym_BSLASHGlsuservi] = ACTIONS(859), + [anon_sym_BSLASHGLSuservi] = ACTIONS(859), + [anon_sym_BSLASHnewacronym] = ACTIONS(861), + [anon_sym_BSLASHacrshort] = ACTIONS(863), + [anon_sym_BSLASHAcrshort] = ACTIONS(863), + [anon_sym_BSLASHACRshort] = ACTIONS(863), + [anon_sym_BSLASHacrshortpl] = ACTIONS(863), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(863), + [anon_sym_BSLASHACRshortpl] = ACTIONS(863), + [anon_sym_BSLASHacrlong] = ACTIONS(863), + [anon_sym_BSLASHAcrlong] = ACTIONS(863), + [anon_sym_BSLASHACRlong] = ACTIONS(863), + [anon_sym_BSLASHacrlongpl] = ACTIONS(863), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(863), + [anon_sym_BSLASHACRlongpl] = ACTIONS(863), + [anon_sym_BSLASHacrfull] = ACTIONS(863), + [anon_sym_BSLASHAcrfull] = ACTIONS(863), + [anon_sym_BSLASHACRfull] = ACTIONS(863), + [anon_sym_BSLASHacrfullpl] = ACTIONS(863), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(863), + [anon_sym_BSLASHACRfullpl] = ACTIONS(863), + [anon_sym_BSLASHacs] = ACTIONS(863), + [anon_sym_BSLASHAcs] = ACTIONS(863), + [anon_sym_BSLASHacsp] = ACTIONS(863), + [anon_sym_BSLASHAcsp] = ACTIONS(863), + [anon_sym_BSLASHacl] = ACTIONS(863), + [anon_sym_BSLASHAcl] = ACTIONS(863), + [anon_sym_BSLASHaclp] = ACTIONS(863), + [anon_sym_BSLASHAclp] = ACTIONS(863), + [anon_sym_BSLASHacf] = ACTIONS(863), + [anon_sym_BSLASHAcf] = ACTIONS(863), + [anon_sym_BSLASHacfp] = ACTIONS(863), + [anon_sym_BSLASHAcfp] = ACTIONS(863), + [anon_sym_BSLASHac] = ACTIONS(863), + [anon_sym_BSLASHAc] = ACTIONS(863), + [anon_sym_BSLASHacp] = ACTIONS(863), + [anon_sym_BSLASHglsentrylong] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(863), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryshort] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(863), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(863), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(863), + [anon_sym_BSLASHnewtheorem] = ACTIONS(865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(867), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(869), + [anon_sym_BSLASHcolor] = ACTIONS(871), + [anon_sym_BSLASHcolorbox] = ACTIONS(871), + [anon_sym_BSLASHtextcolor] = ACTIONS(871), + [anon_sym_BSLASHpagecolor] = ACTIONS(871), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(873), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(873), + [anon_sym_BSLASHtext] = ACTIONS(2677), + [anon_sym_BSLASHintertext] = ACTIONS(2677), + [anon_sym_shortintertext] = ACTIONS(2677), }, [211] = { - [sym_block_comment] = STATE(1000), - [sym_operator] = STATE(1000), - [sym__command] = STATE(1000), - [sym_generic_command] = STATE(1000), - [sym_package_include] = STATE(1000), - [sym_class_include] = STATE(1000), - [sym_latex_include] = STATE(1000), - [sym_biblatex_include] = STATE(1000), - [sym_bibtex_include] = STATE(1000), - [sym_graphics_include] = STATE(1000), - [sym_svg_include] = STATE(1000), - [sym_inkscape_include] = STATE(1000), - [sym_verbatim_include] = STATE(1000), - [sym_import_include] = STATE(1000), - [sym_caption] = STATE(1000), - [sym_citation] = STATE(1000), - [sym_label_definition] = STATE(1000), - [sym_label_reference] = STATE(1000), - [sym_label_reference_range] = STATE(1000), - [sym_label_number] = STATE(1000), - [sym_new_command_definition] = STATE(1000), - [sym_old_command_definition] = STATE(1000), - [sym_let_command_definition] = STATE(1000), - [sym_environment_definition] = STATE(1000), - [sym_glossary_entry_definition] = STATE(1000), - [sym_glossary_entry_reference] = STATE(1000), - [sym_acronym_definition] = STATE(1000), - [sym_acronym_reference] = STATE(1000), - [sym_theorem_definition] = STATE(1000), - [sym_color_definition] = STATE(1000), - [sym_color_set_definition] = STATE(1000), - [sym_color_reference] = STATE(1000), - [sym_tikz_library_import] = STATE(1000), + [sym_block_comment] = STATE(1178), + [sym_operator] = STATE(1178), + [sym__command] = STATE(1178), + [sym_generic_command] = STATE(1178), + [sym_package_include] = STATE(1178), + [sym_class_include] = STATE(1178), + [sym_latex_include] = STATE(1178), + [sym_biblatex_include] = STATE(1178), + [sym_bibtex_include] = STATE(1178), + [sym_graphics_include] = STATE(1178), + [sym_svg_include] = STATE(1178), + [sym_inkscape_include] = STATE(1178), + [sym_verbatim_include] = STATE(1178), + [sym_import_include] = STATE(1178), + [sym_caption] = STATE(1178), + [sym_citation] = STATE(1178), + [sym_label_definition] = STATE(1178), + [sym_label_reference] = STATE(1178), + [sym_label_reference_range] = STATE(1178), + [sym_label_number] = STATE(1178), + [sym_new_command_definition] = STATE(1178), + [sym_old_command_definition] = STATE(1178), + [sym_let_command_definition] = STATE(1178), + [sym_environment_definition] = STATE(1178), + [sym_glossary_entry_definition] = STATE(1178), + [sym_glossary_entry_reference] = STATE(1178), + [sym_acronym_definition] = STATE(1178), + [sym_acronym_reference] = STATE(1178), + [sym_theorem_definition] = STATE(1178), + [sym_color_definition] = STATE(1178), + [sym_color_set_definition] = STATE(1178), + [sym_color_reference] = STATE(1178), + [sym_tikz_library_import] = STATE(1178), [aux_sym_text_repeat1] = STATE(211), - [sym_command_name] = ACTIONS(2985), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(2988), - [anon_sym_LPAREN] = ACTIONS(2639), - [anon_sym_RPAREN] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_RBRACK] = ACTIONS(2639), - [anon_sym_COMMA] = ACTIONS(2639), - [anon_sym_EQ] = ACTIONS(2639), - [anon_sym_BSLASHpart] = ACTIONS(2647), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddpart] = ACTIONS(2647), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2639), - [anon_sym_BSLASHchapter] = ACTIONS(2647), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddchap] = ACTIONS(2647), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsection] = ACTIONS(2647), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddsec] = ACTIONS(2647), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubsection] = ACTIONS(2647), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2647), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHparagraph] = ACTIONS(2647), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2647), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2639), - [anon_sym_BSLASHitem] = ACTIONS(2647), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2639), - [sym_word] = ACTIONS(2991), - [sym_placeholder] = ACTIONS(2994), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym__] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_COLON] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2639), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2639), - [anon_sym_BSLASHbegin] = ACTIONS(2647), - [anon_sym_BSLASHusepackage] = ACTIONS(3000), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3000), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3003), - [anon_sym_BSLASHinclude] = ACTIONS(3006), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3006), - [anon_sym_BSLASHinput] = ACTIONS(3006), - [anon_sym_BSLASHsubfile] = ACTIONS(3006), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3009), - [anon_sym_BSLASHbibliography] = ACTIONS(3012), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3015), - [anon_sym_BSLASHincludesvg] = ACTIONS(3018), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3024), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3024), - [anon_sym_BSLASHimport] = ACTIONS(3027), - [anon_sym_BSLASHsubimport] = ACTIONS(3027), - [anon_sym_BSLASHinputfrom] = ACTIONS(3027), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3027), - [anon_sym_BSLASHincludefrom] = ACTIONS(3027), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3027), - [anon_sym_BSLASHcaption] = ACTIONS(3030), - [anon_sym_BSLASHcite] = ACTIONS(3033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3036), - [anon_sym_BSLASHCite] = ACTIONS(3033), - [anon_sym_BSLASHnocite] = ACTIONS(3033), - [anon_sym_BSLASHcitet] = ACTIONS(3033), - [anon_sym_BSLASHcitep] = ACTIONS(3033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3036), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3036), - [anon_sym_BSLASHciteauthor] = ACTIONS(3033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3036), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3036), - [anon_sym_BSLASHcitetitle] = ACTIONS(3033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3036), - [anon_sym_BSLASHciteyear] = ACTIONS(3033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3036), - [anon_sym_BSLASHcitedate] = ACTIONS(3033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3036), - [anon_sym_BSLASHciteurl] = ACTIONS(3033), - [anon_sym_BSLASHfullcite] = ACTIONS(3033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3033), - [anon_sym_BSLASHcitealt] = ACTIONS(3033), - [anon_sym_BSLASHcitealp] = ACTIONS(3033), - [anon_sym_BSLASHcitetext] = ACTIONS(3033), - [anon_sym_BSLASHparencite] = ACTIONS(3033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3036), - [anon_sym_BSLASHParencite] = ACTIONS(3033), - [anon_sym_BSLASHfootcite] = ACTIONS(3033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3033), - [anon_sym_BSLASHtextcite] = ACTIONS(3033), - [anon_sym_BSLASHTextcite] = ACTIONS(3033), - [anon_sym_BSLASHsmartcite] = ACTIONS(3033), - [anon_sym_BSLASHSmartcite] = ACTIONS(3033), - [anon_sym_BSLASHsupercite] = ACTIONS(3033), - [anon_sym_BSLASHautocite] = ACTIONS(3033), - [anon_sym_BSLASHAutocite] = ACTIONS(3033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3036), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3036), - [anon_sym_BSLASHvolcite] = ACTIONS(3033), - [anon_sym_BSLASHVolcite] = ACTIONS(3033), - [anon_sym_BSLASHpvolcite] = ACTIONS(3033), - [anon_sym_BSLASHPvolcite] = ACTIONS(3033), - [anon_sym_BSLASHfvolcite] = ACTIONS(3033), - [anon_sym_BSLASHftvolcite] = ACTIONS(3033), - [anon_sym_BSLASHsvolcite] = ACTIONS(3033), - [anon_sym_BSLASHSvolcite] = ACTIONS(3033), - [anon_sym_BSLASHtvolcite] = ACTIONS(3033), - [anon_sym_BSLASHTvolcite] = ACTIONS(3033), - [anon_sym_BSLASHavolcite] = ACTIONS(3033), - [anon_sym_BSLASHAvolcite] = ACTIONS(3033), - [anon_sym_BSLASHnotecite] = ACTIONS(3033), - [anon_sym_BSLASHNotecite] = ACTIONS(3033), - [anon_sym_BSLASHpnotecite] = ACTIONS(3033), - [anon_sym_BSLASHPnotecite] = ACTIONS(3033), - [anon_sym_BSLASHfnotecite] = ACTIONS(3033), - [anon_sym_BSLASHlabel] = ACTIONS(3039), - [anon_sym_BSLASHref] = ACTIONS(3042), - [anon_sym_BSLASHeqref] = ACTIONS(3042), - [anon_sym_BSLASHvref] = ACTIONS(3042), - [anon_sym_BSLASHVref] = ACTIONS(3042), - [anon_sym_BSLASHautoref] = ACTIONS(3042), - [anon_sym_BSLASHpageref] = ACTIONS(3042), - [anon_sym_BSLASHcref] = ACTIONS(3042), - [anon_sym_BSLASHCref] = ACTIONS(3042), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3045), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3045), - [anon_sym_BSLASHnamecref] = ACTIONS(3042), - [anon_sym_BSLASHnameCref] = ACTIONS(3042), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3042), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3042), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3042), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3042), - [anon_sym_BSLASHlabelcref] = ACTIONS(3042), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3042), - [anon_sym_BSLASHcrefrange] = ACTIONS(3048), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3051), - [anon_sym_BSLASHCrefrange] = ACTIONS(3048), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3051), - [anon_sym_BSLASHnewlabel] = ACTIONS(3054), - [anon_sym_BSLASHnewcommand] = ACTIONS(3057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3060), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3060), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3060), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3060), - [anon_sym_BSLASHdef] = ACTIONS(3063), - [anon_sym_BSLASHlet] = ACTIONS(3066), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3072), - [anon_sym_BSLASHgls] = ACTIONS(3075), - [anon_sym_BSLASHGls] = ACTIONS(3075), - [anon_sym_BSLASHGLS] = ACTIONS(3075), - [anon_sym_BSLASHglspl] = ACTIONS(3075), - [anon_sym_BSLASHGlspl] = ACTIONS(3075), - [anon_sym_BSLASHGLSpl] = ACTIONS(3075), - [anon_sym_BSLASHglsdisp] = ACTIONS(3075), - [anon_sym_BSLASHglslink] = ACTIONS(3075), - [anon_sym_BSLASHglstext] = ACTIONS(3075), - [anon_sym_BSLASHGlstext] = ACTIONS(3075), - [anon_sym_BSLASHGLStext] = ACTIONS(3075), - [anon_sym_BSLASHglsfirst] = ACTIONS(3075), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3075), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3075), - [anon_sym_BSLASHglsplural] = ACTIONS(3075), - [anon_sym_BSLASHGlsplural] = ACTIONS(3075), - [anon_sym_BSLASHGLSplural] = ACTIONS(3075), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3075), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3075), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3075), - [anon_sym_BSLASHglsname] = ACTIONS(3075), - [anon_sym_BSLASHGlsname] = ACTIONS(3075), - [anon_sym_BSLASHGLSname] = ACTIONS(3075), - [anon_sym_BSLASHglssymbol] = ACTIONS(3075), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3075), - [anon_sym_BSLASHglsdesc] = ACTIONS(3075), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3075), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3075), - [anon_sym_BSLASHglsuseri] = ACTIONS(3075), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3075), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3075), - [anon_sym_BSLASHglsuserii] = ACTIONS(3075), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3075), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3075), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3075), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3075), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3075), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3075), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3075), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3075), - [anon_sym_BSLASHglsuserv] = ACTIONS(3075), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3075), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3075), - [anon_sym_BSLASHglsuservi] = ACTIONS(3075), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3075), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3075), - [anon_sym_BSLASHnewacronym] = ACTIONS(3078), - [anon_sym_BSLASHacrshort] = ACTIONS(3081), - [anon_sym_BSLASHAcrshort] = ACTIONS(3081), - [anon_sym_BSLASHACRshort] = ACTIONS(3081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3081), - [anon_sym_BSLASHacrlong] = ACTIONS(3081), - [anon_sym_BSLASHAcrlong] = ACTIONS(3081), - [anon_sym_BSLASHACRlong] = ACTIONS(3081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3081), - [anon_sym_BSLASHacrfull] = ACTIONS(3081), - [anon_sym_BSLASHAcrfull] = ACTIONS(3081), - [anon_sym_BSLASHACRfull] = ACTIONS(3081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3081), - [anon_sym_BSLASHacs] = ACTIONS(3081), - [anon_sym_BSLASHAcs] = ACTIONS(3081), - [anon_sym_BSLASHacsp] = ACTIONS(3081), - [anon_sym_BSLASHAcsp] = ACTIONS(3081), - [anon_sym_BSLASHacl] = ACTIONS(3081), - [anon_sym_BSLASHAcl] = ACTIONS(3081), - [anon_sym_BSLASHaclp] = ACTIONS(3081), - [anon_sym_BSLASHAclp] = ACTIONS(3081), - [anon_sym_BSLASHacf] = ACTIONS(3081), - [anon_sym_BSLASHAcf] = ACTIONS(3081), - [anon_sym_BSLASHacfp] = ACTIONS(3081), - [anon_sym_BSLASHAcfp] = ACTIONS(3081), - [anon_sym_BSLASHac] = ACTIONS(3081), - [anon_sym_BSLASHAc] = ACTIONS(3081), - [anon_sym_BSLASHacp] = ACTIONS(3081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3084), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3084), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3087), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3090), - [anon_sym_BSLASHcolor] = ACTIONS(3093), - [anon_sym_BSLASHcolorbox] = ACTIONS(3093), - [anon_sym_BSLASHtextcolor] = ACTIONS(3093), - [anon_sym_BSLASHpagecolor] = ACTIONS(3093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3096), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3096), + [sym_command_name] = ACTIONS(2797), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_BSLASHpart] = ACTIONS(2687), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddpart] = ACTIONS(2687), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2679), + [anon_sym_BSLASHchapter] = ACTIONS(2687), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddchap] = ACTIONS(2687), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsection] = ACTIONS(2687), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddsec] = ACTIONS(2687), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubsection] = ACTIONS(2687), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2687), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHparagraph] = ACTIONS(2687), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2687), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2679), + [anon_sym_BSLASHitem] = ACTIONS(2687), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [sym_word] = ACTIONS(2803), + [sym_placeholder] = ACTIONS(2806), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2809), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_CARET] = ACTIONS(2809), + [anon_sym__] = ACTIONS(2809), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_GT] = ACTIONS(2809), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_PIPE] = ACTIONS(2809), + [anon_sym_COLON] = ACTIONS(2809), + [anon_sym_SQUOTE] = ACTIONS(2809), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), + [anon_sym_BSLASH_RBRACK] = ACTIONS(2679), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), + [anon_sym_BSLASHbegin] = ACTIONS(2687), + [anon_sym_BSLASHusepackage] = ACTIONS(2812), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2812), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2815), + [anon_sym_BSLASHinclude] = ACTIONS(2818), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2818), + [anon_sym_BSLASHinput] = ACTIONS(2818), + [anon_sym_BSLASHsubfile] = ACTIONS(2818), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2821), + [anon_sym_BSLASHbibliography] = ACTIONS(2824), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2827), + [anon_sym_BSLASHincludesvg] = ACTIONS(2830), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2833), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2836), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2836), + [anon_sym_BSLASHimport] = ACTIONS(2839), + [anon_sym_BSLASHsubimport] = ACTIONS(2839), + [anon_sym_BSLASHinputfrom] = ACTIONS(2839), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2839), + [anon_sym_BSLASHincludefrom] = ACTIONS(2839), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2839), + [anon_sym_BSLASHcaption] = ACTIONS(2842), + [anon_sym_BSLASHcite] = ACTIONS(2845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2848), + [anon_sym_BSLASHCite] = ACTIONS(2845), + [anon_sym_BSLASHnocite] = ACTIONS(2845), + [anon_sym_BSLASHcitet] = ACTIONS(2845), + [anon_sym_BSLASHcitep] = ACTIONS(2845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2848), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2848), + [anon_sym_BSLASHciteauthor] = ACTIONS(2845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2848), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2848), + [anon_sym_BSLASHcitetitle] = ACTIONS(2845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2848), + [anon_sym_BSLASHciteyear] = ACTIONS(2845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2848), + [anon_sym_BSLASHcitedate] = ACTIONS(2845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2848), + [anon_sym_BSLASHciteurl] = ACTIONS(2845), + [anon_sym_BSLASHfullcite] = ACTIONS(2845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2845), + [anon_sym_BSLASHcitealt] = ACTIONS(2845), + [anon_sym_BSLASHcitealp] = ACTIONS(2845), + [anon_sym_BSLASHcitetext] = ACTIONS(2845), + [anon_sym_BSLASHparencite] = ACTIONS(2845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2848), + [anon_sym_BSLASHParencite] = ACTIONS(2845), + [anon_sym_BSLASHfootcite] = ACTIONS(2845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2845), + [anon_sym_BSLASHtextcite] = ACTIONS(2845), + [anon_sym_BSLASHTextcite] = ACTIONS(2845), + [anon_sym_BSLASHsmartcite] = ACTIONS(2845), + [anon_sym_BSLASHSmartcite] = ACTIONS(2845), + [anon_sym_BSLASHsupercite] = ACTIONS(2845), + [anon_sym_BSLASHautocite] = ACTIONS(2845), + [anon_sym_BSLASHAutocite] = ACTIONS(2845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2848), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2848), + [anon_sym_BSLASHvolcite] = ACTIONS(2845), + [anon_sym_BSLASHVolcite] = ACTIONS(2845), + [anon_sym_BSLASHpvolcite] = ACTIONS(2845), + [anon_sym_BSLASHPvolcite] = ACTIONS(2845), + [anon_sym_BSLASHfvolcite] = ACTIONS(2845), + [anon_sym_BSLASHftvolcite] = ACTIONS(2845), + [anon_sym_BSLASHsvolcite] = ACTIONS(2845), + [anon_sym_BSLASHSvolcite] = ACTIONS(2845), + [anon_sym_BSLASHtvolcite] = ACTIONS(2845), + [anon_sym_BSLASHTvolcite] = ACTIONS(2845), + [anon_sym_BSLASHavolcite] = ACTIONS(2845), + [anon_sym_BSLASHAvolcite] = ACTIONS(2845), + [anon_sym_BSLASHnotecite] = ACTIONS(2845), + [anon_sym_BSLASHNotecite] = ACTIONS(2845), + [anon_sym_BSLASHpnotecite] = ACTIONS(2845), + [anon_sym_BSLASHPnotecite] = ACTIONS(2845), + [anon_sym_BSLASHfnotecite] = ACTIONS(2845), + [anon_sym_BSLASHlabel] = ACTIONS(2851), + [anon_sym_BSLASHref] = ACTIONS(2854), + [anon_sym_BSLASHeqref] = ACTIONS(2854), + [anon_sym_BSLASHvref] = ACTIONS(2854), + [anon_sym_BSLASHVref] = ACTIONS(2854), + [anon_sym_BSLASHautoref] = ACTIONS(2854), + [anon_sym_BSLASHpageref] = ACTIONS(2854), + [anon_sym_BSLASHcref] = ACTIONS(2854), + [anon_sym_BSLASHCref] = ACTIONS(2854), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2857), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2857), + [anon_sym_BSLASHnamecref] = ACTIONS(2854), + [anon_sym_BSLASHnameCref] = ACTIONS(2854), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2854), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2854), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2854), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2854), + [anon_sym_BSLASHlabelcref] = ACTIONS(2854), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2854), + [anon_sym_BSLASHcrefrange] = ACTIONS(2860), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2863), + [anon_sym_BSLASHCrefrange] = ACTIONS(2860), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2863), + [anon_sym_BSLASHnewlabel] = ACTIONS(2866), + [anon_sym_BSLASHnewcommand] = ACTIONS(2869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2872), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2872), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2872), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2872), + [anon_sym_BSLASHdef] = ACTIONS(2875), + [anon_sym_BSLASHlet] = ACTIONS(2878), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2881), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2884), + [anon_sym_BSLASHgls] = ACTIONS(2887), + [anon_sym_BSLASHGls] = ACTIONS(2887), + [anon_sym_BSLASHGLS] = ACTIONS(2887), + [anon_sym_BSLASHglspl] = ACTIONS(2887), + [anon_sym_BSLASHGlspl] = ACTIONS(2887), + [anon_sym_BSLASHGLSpl] = ACTIONS(2887), + [anon_sym_BSLASHglsdisp] = ACTIONS(2887), + [anon_sym_BSLASHglslink] = ACTIONS(2887), + [anon_sym_BSLASHglstext] = ACTIONS(2887), + [anon_sym_BSLASHGlstext] = ACTIONS(2887), + [anon_sym_BSLASHGLStext] = ACTIONS(2887), + [anon_sym_BSLASHglsfirst] = ACTIONS(2887), + [anon_sym_BSLASHGlsfirst] = ACTIONS(2887), + [anon_sym_BSLASHGLSfirst] = ACTIONS(2887), + [anon_sym_BSLASHglsplural] = ACTIONS(2887), + [anon_sym_BSLASHGlsplural] = ACTIONS(2887), + [anon_sym_BSLASHGLSplural] = ACTIONS(2887), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(2887), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(2887), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(2887), + [anon_sym_BSLASHglsname] = ACTIONS(2887), + [anon_sym_BSLASHGlsname] = ACTIONS(2887), + [anon_sym_BSLASHGLSname] = ACTIONS(2887), + [anon_sym_BSLASHglssymbol] = ACTIONS(2887), + [anon_sym_BSLASHGlssymbol] = ACTIONS(2887), + [anon_sym_BSLASHglsdesc] = ACTIONS(2887), + [anon_sym_BSLASHGlsdesc] = ACTIONS(2887), + [anon_sym_BSLASHGLSdesc] = ACTIONS(2887), + [anon_sym_BSLASHglsuseri] = ACTIONS(2887), + [anon_sym_BSLASHGlsuseri] = ACTIONS(2887), + [anon_sym_BSLASHGLSuseri] = ACTIONS(2887), + [anon_sym_BSLASHglsuserii] = ACTIONS(2887), + [anon_sym_BSLASHGlsuserii] = ACTIONS(2887), + [anon_sym_BSLASHGLSuserii] = ACTIONS(2887), + [anon_sym_BSLASHglsuseriii] = ACTIONS(2887), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(2887), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(2887), + [anon_sym_BSLASHglsuseriv] = ACTIONS(2887), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(2887), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(2887), + [anon_sym_BSLASHglsuserv] = ACTIONS(2887), + [anon_sym_BSLASHGlsuserv] = ACTIONS(2887), + [anon_sym_BSLASHGLSuserv] = ACTIONS(2887), + [anon_sym_BSLASHglsuservi] = ACTIONS(2887), + [anon_sym_BSLASHGlsuservi] = ACTIONS(2887), + [anon_sym_BSLASHGLSuservi] = ACTIONS(2887), + [anon_sym_BSLASHnewacronym] = ACTIONS(2890), + [anon_sym_BSLASHacrshort] = ACTIONS(2893), + [anon_sym_BSLASHAcrshort] = ACTIONS(2893), + [anon_sym_BSLASHACRshort] = ACTIONS(2893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(2893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(2893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(2893), + [anon_sym_BSLASHacrlong] = ACTIONS(2893), + [anon_sym_BSLASHAcrlong] = ACTIONS(2893), + [anon_sym_BSLASHACRlong] = ACTIONS(2893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(2893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(2893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(2893), + [anon_sym_BSLASHacrfull] = ACTIONS(2893), + [anon_sym_BSLASHAcrfull] = ACTIONS(2893), + [anon_sym_BSLASHACRfull] = ACTIONS(2893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(2893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(2893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(2893), + [anon_sym_BSLASHacs] = ACTIONS(2893), + [anon_sym_BSLASHAcs] = ACTIONS(2893), + [anon_sym_BSLASHacsp] = ACTIONS(2893), + [anon_sym_BSLASHAcsp] = ACTIONS(2893), + [anon_sym_BSLASHacl] = ACTIONS(2893), + [anon_sym_BSLASHAcl] = ACTIONS(2893), + [anon_sym_BSLASHaclp] = ACTIONS(2893), + [anon_sym_BSLASHAclp] = ACTIONS(2893), + [anon_sym_BSLASHacf] = ACTIONS(2893), + [anon_sym_BSLASHAcf] = ACTIONS(2893), + [anon_sym_BSLASHacfp] = ACTIONS(2893), + [anon_sym_BSLASHAcfp] = ACTIONS(2893), + [anon_sym_BSLASHac] = ACTIONS(2893), + [anon_sym_BSLASHAc] = ACTIONS(2893), + [anon_sym_BSLASHacp] = ACTIONS(2893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(2893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(2893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(2893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(2893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(2893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(2893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(2893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(2893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(2893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(2893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(2896), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(2896), + [anon_sym_BSLASHdefinecolor] = ACTIONS(2899), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(2902), + [anon_sym_BSLASHcolor] = ACTIONS(2905), + [anon_sym_BSLASHcolorbox] = ACTIONS(2905), + [anon_sym_BSLASHtextcolor] = ACTIONS(2905), + [anon_sym_BSLASHpagecolor] = ACTIONS(2905), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(2908), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(2908), + [anon_sym_BSLASHtext] = ACTIONS(2687), + [anon_sym_BSLASHintertext] = ACTIONS(2687), + [anon_sym_shortintertext] = ACTIONS(2687), }, [212] = { - [sym_block_comment] = STATE(1208), - [sym_operator] = STATE(1208), - [sym__command] = STATE(1208), - [sym_generic_command] = STATE(1208), - [sym_package_include] = STATE(1208), - [sym_class_include] = STATE(1208), - [sym_latex_include] = STATE(1208), - [sym_biblatex_include] = STATE(1208), - [sym_bibtex_include] = STATE(1208), - [sym_graphics_include] = STATE(1208), - [sym_svg_include] = STATE(1208), - [sym_inkscape_include] = STATE(1208), - [sym_verbatim_include] = STATE(1208), - [sym_import_include] = STATE(1208), - [sym_caption] = STATE(1208), - [sym_citation] = STATE(1208), - [sym_label_definition] = STATE(1208), - [sym_label_reference] = STATE(1208), - [sym_label_reference_range] = STATE(1208), - [sym_label_number] = STATE(1208), - [sym_new_command_definition] = STATE(1208), - [sym_old_command_definition] = STATE(1208), - [sym_let_command_definition] = STATE(1208), - [sym_environment_definition] = STATE(1208), - [sym_glossary_entry_definition] = STATE(1208), - [sym_glossary_entry_reference] = STATE(1208), - [sym_acronym_definition] = STATE(1208), - [sym_acronym_reference] = STATE(1208), - [sym_theorem_definition] = STATE(1208), - [sym_color_definition] = STATE(1208), - [sym_color_set_definition] = STATE(1208), - [sym_color_reference] = STATE(1208), - [sym_tikz_library_import] = STATE(1208), - [aux_sym_text_repeat1] = STATE(210), - [sym_command_name] = ACTIONS(552), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(554), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_RBRACK] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_EQ] = ACTIONS(2635), - [anon_sym_BSLASHpart] = ACTIONS(2637), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddpart] = ACTIONS(2637), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2635), - [anon_sym_BSLASHchapter] = ACTIONS(2637), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddchap] = ACTIONS(2637), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsection] = ACTIONS(2637), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddsec] = ACTIONS(2637), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubsection] = ACTIONS(2637), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2637), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHparagraph] = ACTIONS(2637), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2637), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2635), - [anon_sym_BSLASHitem] = ACTIONS(2637), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [sym_word] = ACTIONS(560), - [sym_placeholder] = ACTIONS(562), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(564), - [anon_sym__] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_COLON] = ACTIONS(564), - [anon_sym_SQUOTE] = ACTIONS(564), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2635), - [anon_sym_BSLASH_RBRACK] = ACTIONS(2635), - [anon_sym_DOLLAR] = ACTIONS(2637), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2635), - [anon_sym_BSLASHbegin] = ACTIONS(2637), - [anon_sym_BSLASHusepackage] = ACTIONS(578), - [anon_sym_BSLASHRequirePackage] = ACTIONS(578), - [anon_sym_BSLASHdocumentclass] = ACTIONS(580), - [anon_sym_BSLASHinclude] = ACTIONS(582), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(582), - [anon_sym_BSLASHinput] = ACTIONS(582), - [anon_sym_BSLASHsubfile] = ACTIONS(582), - [anon_sym_BSLASHaddbibresource] = ACTIONS(584), - [anon_sym_BSLASHbibliography] = ACTIONS(586), - [anon_sym_BSLASHincludegraphics] = ACTIONS(588), - [anon_sym_BSLASHincludesvg] = ACTIONS(590), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(592), - [anon_sym_BSLASHverbatiminput] = ACTIONS(594), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(594), - [anon_sym_BSLASHimport] = ACTIONS(596), - [anon_sym_BSLASHsubimport] = ACTIONS(596), - [anon_sym_BSLASHinputfrom] = ACTIONS(596), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(596), - [anon_sym_BSLASHincludefrom] = ACTIONS(596), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(596), - [anon_sym_BSLASHcaption] = ACTIONS(598), - [anon_sym_BSLASHcite] = ACTIONS(600), - [anon_sym_BSLASHcite_STAR] = ACTIONS(602), - [anon_sym_BSLASHCite] = ACTIONS(600), - [anon_sym_BSLASHnocite] = ACTIONS(600), - [anon_sym_BSLASHcitet] = ACTIONS(600), - [anon_sym_BSLASHcitep] = ACTIONS(600), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteauthor] = ACTIONS(600), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHCiteauthor] = ACTIONS(600), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitetitle] = ACTIONS(600), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteyear] = ACTIONS(600), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(602), - [anon_sym_BSLASHcitedate] = ACTIONS(600), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(602), - [anon_sym_BSLASHciteurl] = ACTIONS(600), - [anon_sym_BSLASHfullcite] = ACTIONS(600), - [anon_sym_BSLASHciteyearpar] = ACTIONS(600), - [anon_sym_BSLASHcitealt] = ACTIONS(600), - [anon_sym_BSLASHcitealp] = ACTIONS(600), - [anon_sym_BSLASHcitetext] = ACTIONS(600), - [anon_sym_BSLASHparencite] = ACTIONS(600), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(602), - [anon_sym_BSLASHParencite] = ACTIONS(600), - [anon_sym_BSLASHfootcite] = ACTIONS(600), - [anon_sym_BSLASHfootfullcite] = ACTIONS(600), - [anon_sym_BSLASHfootcitetext] = ACTIONS(600), - [anon_sym_BSLASHtextcite] = ACTIONS(600), - [anon_sym_BSLASHTextcite] = ACTIONS(600), - [anon_sym_BSLASHsmartcite] = ACTIONS(600), - [anon_sym_BSLASHSmartcite] = ACTIONS(600), - [anon_sym_BSLASHsupercite] = ACTIONS(600), - [anon_sym_BSLASHautocite] = ACTIONS(600), - [anon_sym_BSLASHAutocite] = ACTIONS(600), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(602), - [anon_sym_BSLASHvolcite] = ACTIONS(600), - [anon_sym_BSLASHVolcite] = ACTIONS(600), - [anon_sym_BSLASHpvolcite] = ACTIONS(600), - [anon_sym_BSLASHPvolcite] = ACTIONS(600), - [anon_sym_BSLASHfvolcite] = ACTIONS(600), - [anon_sym_BSLASHftvolcite] = ACTIONS(600), - [anon_sym_BSLASHsvolcite] = ACTIONS(600), - [anon_sym_BSLASHSvolcite] = ACTIONS(600), - [anon_sym_BSLASHtvolcite] = ACTIONS(600), - [anon_sym_BSLASHTvolcite] = ACTIONS(600), - [anon_sym_BSLASHavolcite] = ACTIONS(600), - [anon_sym_BSLASHAvolcite] = ACTIONS(600), - [anon_sym_BSLASHnotecite] = ACTIONS(600), - [anon_sym_BSLASHNotecite] = ACTIONS(600), - [anon_sym_BSLASHpnotecite] = ACTIONS(600), - [anon_sym_BSLASHPnotecite] = ACTIONS(600), - [anon_sym_BSLASHfnotecite] = ACTIONS(600), - [anon_sym_BSLASHlabel] = ACTIONS(604), - [anon_sym_BSLASHref] = ACTIONS(606), - [anon_sym_BSLASHeqref] = ACTIONS(606), - [anon_sym_BSLASHvref] = ACTIONS(606), - [anon_sym_BSLASHVref] = ACTIONS(606), - [anon_sym_BSLASHautoref] = ACTIONS(606), - [anon_sym_BSLASHpageref] = ACTIONS(606), - [anon_sym_BSLASHcref] = ACTIONS(606), - [anon_sym_BSLASHCref] = ACTIONS(606), - [anon_sym_BSLASHcref_STAR] = ACTIONS(608), - [anon_sym_BSLASHCref_STAR] = ACTIONS(608), - [anon_sym_BSLASHnamecref] = ACTIONS(606), - [anon_sym_BSLASHnameCref] = ACTIONS(606), - [anon_sym_BSLASHlcnamecref] = ACTIONS(606), - [anon_sym_BSLASHnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHnameCrefs] = ACTIONS(606), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(606), - [anon_sym_BSLASHlabelcref] = ACTIONS(606), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(606), - [anon_sym_BSLASHcrefrange] = ACTIONS(610), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHCrefrange] = ACTIONS(610), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(612), - [anon_sym_BSLASHnewlabel] = ACTIONS(614), - [anon_sym_BSLASHnewcommand] = ACTIONS(616), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHrenewcommand] = ACTIONS(616), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(616), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(618), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(616), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(618), - [anon_sym_BSLASHdef] = ACTIONS(620), - [anon_sym_BSLASHlet] = ACTIONS(622), - [anon_sym_BSLASHnewenvironment] = ACTIONS(624), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(626), - [anon_sym_BSLASHgls] = ACTIONS(628), - [anon_sym_BSLASHGls] = ACTIONS(628), - [anon_sym_BSLASHGLS] = ACTIONS(628), - [anon_sym_BSLASHglspl] = ACTIONS(628), - [anon_sym_BSLASHGlspl] = ACTIONS(628), - [anon_sym_BSLASHGLSpl] = ACTIONS(628), - [anon_sym_BSLASHglsdisp] = ACTIONS(628), - [anon_sym_BSLASHglslink] = ACTIONS(628), - [anon_sym_BSLASHglstext] = ACTIONS(628), - [anon_sym_BSLASHGlstext] = ACTIONS(628), - [anon_sym_BSLASHGLStext] = ACTIONS(628), - [anon_sym_BSLASHglsfirst] = ACTIONS(628), - [anon_sym_BSLASHGlsfirst] = ACTIONS(628), - [anon_sym_BSLASHGLSfirst] = ACTIONS(628), - [anon_sym_BSLASHglsplural] = ACTIONS(628), - [anon_sym_BSLASHGlsplural] = ACTIONS(628), - [anon_sym_BSLASHGLSplural] = ACTIONS(628), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(628), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(628), - [anon_sym_BSLASHglsname] = ACTIONS(628), - [anon_sym_BSLASHGlsname] = ACTIONS(628), - [anon_sym_BSLASHGLSname] = ACTIONS(628), - [anon_sym_BSLASHglssymbol] = ACTIONS(628), - [anon_sym_BSLASHGlssymbol] = ACTIONS(628), - [anon_sym_BSLASHglsdesc] = ACTIONS(628), - [anon_sym_BSLASHGlsdesc] = ACTIONS(628), - [anon_sym_BSLASHGLSdesc] = ACTIONS(628), - [anon_sym_BSLASHglsuseri] = ACTIONS(628), - [anon_sym_BSLASHGlsuseri] = ACTIONS(628), - [anon_sym_BSLASHGLSuseri] = ACTIONS(628), - [anon_sym_BSLASHglsuserii] = ACTIONS(628), - [anon_sym_BSLASHGlsuserii] = ACTIONS(628), - [anon_sym_BSLASHGLSuserii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(628), - [anon_sym_BSLASHglsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(628), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(628), - [anon_sym_BSLASHglsuserv] = ACTIONS(628), - [anon_sym_BSLASHGlsuserv] = ACTIONS(628), - [anon_sym_BSLASHGLSuserv] = ACTIONS(628), - [anon_sym_BSLASHglsuservi] = ACTIONS(628), - [anon_sym_BSLASHGlsuservi] = ACTIONS(628), - [anon_sym_BSLASHGLSuservi] = ACTIONS(628), - [anon_sym_BSLASHnewacronym] = ACTIONS(630), - [anon_sym_BSLASHacrshort] = ACTIONS(632), - [anon_sym_BSLASHAcrshort] = ACTIONS(632), - [anon_sym_BSLASHACRshort] = ACTIONS(632), - [anon_sym_BSLASHacrshortpl] = ACTIONS(632), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(632), - [anon_sym_BSLASHACRshortpl] = ACTIONS(632), - [anon_sym_BSLASHacrlong] = ACTIONS(632), - [anon_sym_BSLASHAcrlong] = ACTIONS(632), - [anon_sym_BSLASHACRlong] = ACTIONS(632), - [anon_sym_BSLASHacrlongpl] = ACTIONS(632), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(632), - [anon_sym_BSLASHACRlongpl] = ACTIONS(632), - [anon_sym_BSLASHacrfull] = ACTIONS(632), - [anon_sym_BSLASHAcrfull] = ACTIONS(632), - [anon_sym_BSLASHACRfull] = ACTIONS(632), - [anon_sym_BSLASHacrfullpl] = ACTIONS(632), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(632), - [anon_sym_BSLASHACRfullpl] = ACTIONS(632), - [anon_sym_BSLASHacs] = ACTIONS(632), - [anon_sym_BSLASHAcs] = ACTIONS(632), - [anon_sym_BSLASHacsp] = ACTIONS(632), - [anon_sym_BSLASHAcsp] = ACTIONS(632), - [anon_sym_BSLASHacl] = ACTIONS(632), - [anon_sym_BSLASHAcl] = ACTIONS(632), - [anon_sym_BSLASHaclp] = ACTIONS(632), - [anon_sym_BSLASHAclp] = ACTIONS(632), - [anon_sym_BSLASHacf] = ACTIONS(632), - [anon_sym_BSLASHAcf] = ACTIONS(632), - [anon_sym_BSLASHacfp] = ACTIONS(632), - [anon_sym_BSLASHAcfp] = ACTIONS(632), - [anon_sym_BSLASHac] = ACTIONS(632), - [anon_sym_BSLASHAc] = ACTIONS(632), - [anon_sym_BSLASHacp] = ACTIONS(632), - [anon_sym_BSLASHglsentrylong] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(632), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryshort] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(632), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(632), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(632), - [anon_sym_BSLASHnewtheorem] = ACTIONS(634), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(634), - [anon_sym_BSLASHdefinecolor] = ACTIONS(636), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(638), - [anon_sym_BSLASHcolor] = ACTIONS(640), - [anon_sym_BSLASHcolorbox] = ACTIONS(640), - [anon_sym_BSLASHtextcolor] = ACTIONS(640), - [anon_sym_BSLASHpagecolor] = ACTIONS(640), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(642), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(642), + [sym_block_comment] = STATE(1082), + [sym_operator] = STATE(1082), + [sym__command] = STATE(1082), + [sym_generic_command] = STATE(1082), + [sym_package_include] = STATE(1082), + [sym_class_include] = STATE(1082), + [sym_latex_include] = STATE(1082), + [sym_biblatex_include] = STATE(1082), + [sym_bibtex_include] = STATE(1082), + [sym_graphics_include] = STATE(1082), + [sym_svg_include] = STATE(1082), + [sym_inkscape_include] = STATE(1082), + [sym_verbatim_include] = STATE(1082), + [sym_import_include] = STATE(1082), + [sym_caption] = STATE(1082), + [sym_citation] = STATE(1082), + [sym_label_definition] = STATE(1082), + [sym_label_reference] = STATE(1082), + [sym_label_reference_range] = STATE(1082), + [sym_label_number] = STATE(1082), + [sym_new_command_definition] = STATE(1082), + [sym_old_command_definition] = STATE(1082), + [sym_let_command_definition] = STATE(1082), + [sym_environment_definition] = STATE(1082), + [sym_glossary_entry_definition] = STATE(1082), + [sym_glossary_entry_reference] = STATE(1082), + [sym_acronym_definition] = STATE(1082), + [sym_acronym_reference] = STATE(1082), + [sym_theorem_definition] = STATE(1082), + [sym_color_definition] = STATE(1082), + [sym_color_set_definition] = STATE(1082), + [sym_color_reference] = STATE(1082), + [sym_tikz_library_import] = STATE(1082), + [aux_sym_text_repeat1] = STATE(215), + [sym_command_name] = ACTIONS(185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(187), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_RBRACK] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2675), + [anon_sym_BSLASHpart] = ACTIONS(2677), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddpart] = ACTIONS(2677), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2675), + [anon_sym_BSLASHchapter] = ACTIONS(2677), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddchap] = ACTIONS(2677), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsection] = ACTIONS(2677), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddsec] = ACTIONS(2677), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubsection] = ACTIONS(2677), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2677), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHparagraph] = ACTIONS(2677), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2677), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2675), + [anon_sym_BSLASHitem] = ACTIONS(2677), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [sym_word] = ACTIONS(225), + [sym_placeholder] = ACTIONS(227), + [anon_sym_PLUS] = ACTIONS(229), + [anon_sym_DASH] = ACTIONS(229), + [anon_sym_STAR] = ACTIONS(229), + [anon_sym_SLASH] = ACTIONS(229), + [anon_sym_CARET] = ACTIONS(229), + [anon_sym__] = ACTIONS(229), + [anon_sym_LT] = ACTIONS(229), + [anon_sym_GT] = ACTIONS(229), + [anon_sym_BANG] = ACTIONS(229), + [anon_sym_PIPE] = ACTIONS(229), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_SQUOTE] = ACTIONS(229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), + [anon_sym_DOLLAR] = ACTIONS(2677), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), + [anon_sym_BSLASHbegin] = ACTIONS(2677), + [anon_sym_BSLASHend] = ACTIONS(2677), + [anon_sym_BSLASHusepackage] = ACTIONS(241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(243), + [anon_sym_BSLASHinclude] = ACTIONS(245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(245), + [anon_sym_BSLASHinput] = ACTIONS(245), + [anon_sym_BSLASHsubfile] = ACTIONS(245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(247), + [anon_sym_BSLASHbibliography] = ACTIONS(249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(251), + [anon_sym_BSLASHincludesvg] = ACTIONS(253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(255), + [anon_sym_BSLASHverbatiminput] = ACTIONS(257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(257), + [anon_sym_BSLASHimport] = ACTIONS(259), + [anon_sym_BSLASHsubimport] = ACTIONS(259), + [anon_sym_BSLASHinputfrom] = ACTIONS(259), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(259), + [anon_sym_BSLASHincludefrom] = ACTIONS(259), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(259), + [anon_sym_BSLASHcaption] = ACTIONS(261), + [anon_sym_BSLASHcite] = ACTIONS(263), + [anon_sym_BSLASHcite_STAR] = ACTIONS(265), + [anon_sym_BSLASHCite] = ACTIONS(263), + [anon_sym_BSLASHnocite] = ACTIONS(263), + [anon_sym_BSLASHcitet] = ACTIONS(263), + [anon_sym_BSLASHcitep] = ACTIONS(263), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteauthor] = ACTIONS(263), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHCiteauthor] = ACTIONS(263), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitetitle] = ACTIONS(263), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteyear] = ACTIONS(263), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(265), + [anon_sym_BSLASHcitedate] = ACTIONS(263), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(265), + [anon_sym_BSLASHciteurl] = ACTIONS(263), + [anon_sym_BSLASHfullcite] = ACTIONS(263), + [anon_sym_BSLASHciteyearpar] = ACTIONS(263), + [anon_sym_BSLASHcitealt] = ACTIONS(263), + [anon_sym_BSLASHcitealp] = ACTIONS(263), + [anon_sym_BSLASHcitetext] = ACTIONS(263), + [anon_sym_BSLASHparencite] = ACTIONS(263), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(265), + [anon_sym_BSLASHParencite] = ACTIONS(263), + [anon_sym_BSLASHfootcite] = ACTIONS(263), + [anon_sym_BSLASHfootfullcite] = ACTIONS(263), + [anon_sym_BSLASHfootcitetext] = ACTIONS(263), + [anon_sym_BSLASHtextcite] = ACTIONS(263), + [anon_sym_BSLASHTextcite] = ACTIONS(263), + [anon_sym_BSLASHsmartcite] = ACTIONS(263), + [anon_sym_BSLASHSmartcite] = ACTIONS(263), + [anon_sym_BSLASHsupercite] = ACTIONS(263), + [anon_sym_BSLASHautocite] = ACTIONS(263), + [anon_sym_BSLASHAutocite] = ACTIONS(263), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(265), + [anon_sym_BSLASHvolcite] = ACTIONS(263), + [anon_sym_BSLASHVolcite] = ACTIONS(263), + [anon_sym_BSLASHpvolcite] = ACTIONS(263), + [anon_sym_BSLASHPvolcite] = ACTIONS(263), + [anon_sym_BSLASHfvolcite] = ACTIONS(263), + [anon_sym_BSLASHftvolcite] = ACTIONS(263), + [anon_sym_BSLASHsvolcite] = ACTIONS(263), + [anon_sym_BSLASHSvolcite] = ACTIONS(263), + [anon_sym_BSLASHtvolcite] = ACTIONS(263), + [anon_sym_BSLASHTvolcite] = ACTIONS(263), + [anon_sym_BSLASHavolcite] = ACTIONS(263), + [anon_sym_BSLASHAvolcite] = ACTIONS(263), + [anon_sym_BSLASHnotecite] = ACTIONS(263), + [anon_sym_BSLASHNotecite] = ACTIONS(263), + [anon_sym_BSLASHpnotecite] = ACTIONS(263), + [anon_sym_BSLASHPnotecite] = ACTIONS(263), + [anon_sym_BSLASHfnotecite] = ACTIONS(263), + [anon_sym_BSLASHlabel] = ACTIONS(267), + [anon_sym_BSLASHref] = ACTIONS(269), + [anon_sym_BSLASHeqref] = ACTIONS(269), + [anon_sym_BSLASHvref] = ACTIONS(269), + [anon_sym_BSLASHVref] = ACTIONS(269), + [anon_sym_BSLASHautoref] = ACTIONS(269), + [anon_sym_BSLASHpageref] = ACTIONS(269), + [anon_sym_BSLASHcref] = ACTIONS(269), + [anon_sym_BSLASHCref] = ACTIONS(269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(271), + [anon_sym_BSLASHnamecref] = ACTIONS(269), + [anon_sym_BSLASHnameCref] = ACTIONS(269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(269), + [anon_sym_BSLASHlabelcref] = ACTIONS(269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(269), + [anon_sym_BSLASHcrefrange] = ACTIONS(273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHCrefrange] = ACTIONS(273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(275), + [anon_sym_BSLASHnewlabel] = ACTIONS(277), + [anon_sym_BSLASHnewcommand] = ACTIONS(279), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHrenewcommand] = ACTIONS(279), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(279), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(281), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(279), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(281), + [anon_sym_BSLASHdef] = ACTIONS(283), + [anon_sym_BSLASHlet] = ACTIONS(285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(287), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(289), + [anon_sym_BSLASHgls] = ACTIONS(291), + [anon_sym_BSLASHGls] = ACTIONS(291), + [anon_sym_BSLASHGLS] = ACTIONS(291), + [anon_sym_BSLASHglspl] = ACTIONS(291), + [anon_sym_BSLASHGlspl] = ACTIONS(291), + [anon_sym_BSLASHGLSpl] = ACTIONS(291), + [anon_sym_BSLASHglsdisp] = ACTIONS(291), + [anon_sym_BSLASHglslink] = ACTIONS(291), + [anon_sym_BSLASHglstext] = ACTIONS(291), + [anon_sym_BSLASHGlstext] = ACTIONS(291), + [anon_sym_BSLASHGLStext] = ACTIONS(291), + [anon_sym_BSLASHglsfirst] = ACTIONS(291), + [anon_sym_BSLASHGlsfirst] = ACTIONS(291), + [anon_sym_BSLASHGLSfirst] = ACTIONS(291), + [anon_sym_BSLASHglsplural] = ACTIONS(291), + [anon_sym_BSLASHGlsplural] = ACTIONS(291), + [anon_sym_BSLASHGLSplural] = ACTIONS(291), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(291), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(291), + [anon_sym_BSLASHglsname] = ACTIONS(291), + [anon_sym_BSLASHGlsname] = ACTIONS(291), + [anon_sym_BSLASHGLSname] = ACTIONS(291), + [anon_sym_BSLASHglssymbol] = ACTIONS(291), + [anon_sym_BSLASHGlssymbol] = ACTIONS(291), + [anon_sym_BSLASHglsdesc] = ACTIONS(291), + [anon_sym_BSLASHGlsdesc] = ACTIONS(291), + [anon_sym_BSLASHGLSdesc] = ACTIONS(291), + [anon_sym_BSLASHglsuseri] = ACTIONS(291), + [anon_sym_BSLASHGlsuseri] = ACTIONS(291), + [anon_sym_BSLASHGLSuseri] = ACTIONS(291), + [anon_sym_BSLASHglsuserii] = ACTIONS(291), + [anon_sym_BSLASHGlsuserii] = ACTIONS(291), + [anon_sym_BSLASHGLSuserii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(291), + [anon_sym_BSLASHglsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(291), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(291), + [anon_sym_BSLASHglsuserv] = ACTIONS(291), + [anon_sym_BSLASHGlsuserv] = ACTIONS(291), + [anon_sym_BSLASHGLSuserv] = ACTIONS(291), + [anon_sym_BSLASHglsuservi] = ACTIONS(291), + [anon_sym_BSLASHGlsuservi] = ACTIONS(291), + [anon_sym_BSLASHGLSuservi] = ACTIONS(291), + [anon_sym_BSLASHnewacronym] = ACTIONS(293), + [anon_sym_BSLASHacrshort] = ACTIONS(295), + [anon_sym_BSLASHAcrshort] = ACTIONS(295), + [anon_sym_BSLASHACRshort] = ACTIONS(295), + [anon_sym_BSLASHacrshortpl] = ACTIONS(295), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(295), + [anon_sym_BSLASHACRshortpl] = ACTIONS(295), + [anon_sym_BSLASHacrlong] = ACTIONS(295), + [anon_sym_BSLASHAcrlong] = ACTIONS(295), + [anon_sym_BSLASHACRlong] = ACTIONS(295), + [anon_sym_BSLASHacrlongpl] = ACTIONS(295), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(295), + [anon_sym_BSLASHACRlongpl] = ACTIONS(295), + [anon_sym_BSLASHacrfull] = ACTIONS(295), + [anon_sym_BSLASHAcrfull] = ACTIONS(295), + [anon_sym_BSLASHACRfull] = ACTIONS(295), + [anon_sym_BSLASHacrfullpl] = ACTIONS(295), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(295), + [anon_sym_BSLASHACRfullpl] = ACTIONS(295), + [anon_sym_BSLASHacs] = ACTIONS(295), + [anon_sym_BSLASHAcs] = ACTIONS(295), + [anon_sym_BSLASHacsp] = ACTIONS(295), + [anon_sym_BSLASHAcsp] = ACTIONS(295), + [anon_sym_BSLASHacl] = ACTIONS(295), + [anon_sym_BSLASHAcl] = ACTIONS(295), + [anon_sym_BSLASHaclp] = ACTIONS(295), + [anon_sym_BSLASHAclp] = ACTIONS(295), + [anon_sym_BSLASHacf] = ACTIONS(295), + [anon_sym_BSLASHAcf] = ACTIONS(295), + [anon_sym_BSLASHacfp] = ACTIONS(295), + [anon_sym_BSLASHAcfp] = ACTIONS(295), + [anon_sym_BSLASHac] = ACTIONS(295), + [anon_sym_BSLASHAc] = ACTIONS(295), + [anon_sym_BSLASHacp] = ACTIONS(295), + [anon_sym_BSLASHglsentrylong] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(295), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryshort] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(295), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(295), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(295), + [anon_sym_BSLASHnewtheorem] = ACTIONS(297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(299), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(301), + [anon_sym_BSLASHcolor] = ACTIONS(303), + [anon_sym_BSLASHcolorbox] = ACTIONS(303), + [anon_sym_BSLASHtextcolor] = ACTIONS(303), + [anon_sym_BSLASHpagecolor] = ACTIONS(303), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(305), + [anon_sym_BSLASHtext] = ACTIONS(2677), + [anon_sym_BSLASHintertext] = ACTIONS(2677), + [anon_sym_shortintertext] = ACTIONS(2677), }, [213] = { - [sym_block_comment] = STATE(1000), - [sym_operator] = STATE(1000), - [sym__command] = STATE(1000), - [sym_generic_command] = STATE(1000), - [sym_package_include] = STATE(1000), - [sym_class_include] = STATE(1000), - [sym_latex_include] = STATE(1000), - [sym_biblatex_include] = STATE(1000), - [sym_bibtex_include] = STATE(1000), - [sym_graphics_include] = STATE(1000), - [sym_svg_include] = STATE(1000), - [sym_inkscape_include] = STATE(1000), - [sym_verbatim_include] = STATE(1000), - [sym_import_include] = STATE(1000), - [sym_caption] = STATE(1000), - [sym_citation] = STATE(1000), - [sym_label_definition] = STATE(1000), - [sym_label_reference] = STATE(1000), - [sym_label_reference_range] = STATE(1000), - [sym_label_number] = STATE(1000), - [sym_new_command_definition] = STATE(1000), - [sym_old_command_definition] = STATE(1000), - [sym_let_command_definition] = STATE(1000), - [sym_environment_definition] = STATE(1000), - [sym_glossary_entry_definition] = STATE(1000), - [sym_glossary_entry_reference] = STATE(1000), - [sym_acronym_definition] = STATE(1000), - [sym_acronym_reference] = STATE(1000), - [sym_theorem_definition] = STATE(1000), - [sym_color_definition] = STATE(1000), - [sym_color_set_definition] = STATE(1000), - [sym_color_reference] = STATE(1000), - [sym_tikz_library_import] = STATE(1000), - [aux_sym_text_repeat1] = STATE(211), - [sym_command_name] = ACTIONS(646), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(648), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_RBRACK] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_EQ] = ACTIONS(2635), - [anon_sym_BSLASHpart] = ACTIONS(2637), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddpart] = ACTIONS(2637), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2635), - [anon_sym_BSLASHchapter] = ACTIONS(2637), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddchap] = ACTIONS(2637), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsection] = ACTIONS(2637), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddsec] = ACTIONS(2637), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubsection] = ACTIONS(2637), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2637), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHparagraph] = ACTIONS(2637), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2637), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2635), - [anon_sym_BSLASHitem] = ACTIONS(2637), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [sym_word] = ACTIONS(654), - [sym_placeholder] = ACTIONS(656), - [anon_sym_PLUS] = ACTIONS(658), - [anon_sym_DASH] = ACTIONS(658), - [anon_sym_STAR] = ACTIONS(658), - [anon_sym_SLASH] = ACTIONS(658), - [anon_sym_CARET] = ACTIONS(658), - [anon_sym__] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(658), - [anon_sym_GT] = ACTIONS(658), - [anon_sym_BANG] = ACTIONS(658), - [anon_sym_PIPE] = ACTIONS(658), - [anon_sym_COLON] = ACTIONS(658), - [anon_sym_SQUOTE] = ACTIONS(658), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2635), - [anon_sym_DOLLAR] = ACTIONS(2637), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2635), - [anon_sym_BSLASH_RPAREN] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2635), - [anon_sym_BSLASHbegin] = ACTIONS(2637), - [anon_sym_BSLASHusepackage] = ACTIONS(670), - [anon_sym_BSLASHRequirePackage] = ACTIONS(670), - [anon_sym_BSLASHdocumentclass] = ACTIONS(672), - [anon_sym_BSLASHinclude] = ACTIONS(674), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(674), - [anon_sym_BSLASHinput] = ACTIONS(674), - [anon_sym_BSLASHsubfile] = ACTIONS(674), - [anon_sym_BSLASHaddbibresource] = ACTIONS(676), - [anon_sym_BSLASHbibliography] = ACTIONS(678), - [anon_sym_BSLASHincludegraphics] = ACTIONS(680), - [anon_sym_BSLASHincludesvg] = ACTIONS(682), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(684), - [anon_sym_BSLASHverbatiminput] = ACTIONS(686), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(686), - [anon_sym_BSLASHimport] = ACTIONS(688), - [anon_sym_BSLASHsubimport] = ACTIONS(688), - [anon_sym_BSLASHinputfrom] = ACTIONS(688), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(688), - [anon_sym_BSLASHincludefrom] = ACTIONS(688), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(688), - [anon_sym_BSLASHcaption] = ACTIONS(690), - [anon_sym_BSLASHcite] = ACTIONS(692), - [anon_sym_BSLASHcite_STAR] = ACTIONS(694), - [anon_sym_BSLASHCite] = ACTIONS(692), - [anon_sym_BSLASHnocite] = ACTIONS(692), - [anon_sym_BSLASHcitet] = ACTIONS(692), - [anon_sym_BSLASHcitep] = ACTIONS(692), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteauthor] = ACTIONS(692), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHCiteauthor] = ACTIONS(692), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitetitle] = ACTIONS(692), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteyear] = ACTIONS(692), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(694), - [anon_sym_BSLASHcitedate] = ACTIONS(692), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(694), - [anon_sym_BSLASHciteurl] = ACTIONS(692), - [anon_sym_BSLASHfullcite] = ACTIONS(692), - [anon_sym_BSLASHciteyearpar] = ACTIONS(692), - [anon_sym_BSLASHcitealt] = ACTIONS(692), - [anon_sym_BSLASHcitealp] = ACTIONS(692), - [anon_sym_BSLASHcitetext] = ACTIONS(692), - [anon_sym_BSLASHparencite] = ACTIONS(692), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(694), - [anon_sym_BSLASHParencite] = ACTIONS(692), - [anon_sym_BSLASHfootcite] = ACTIONS(692), - [anon_sym_BSLASHfootfullcite] = ACTIONS(692), - [anon_sym_BSLASHfootcitetext] = ACTIONS(692), - [anon_sym_BSLASHtextcite] = ACTIONS(692), - [anon_sym_BSLASHTextcite] = ACTIONS(692), - [anon_sym_BSLASHsmartcite] = ACTIONS(692), - [anon_sym_BSLASHSmartcite] = ACTIONS(692), - [anon_sym_BSLASHsupercite] = ACTIONS(692), - [anon_sym_BSLASHautocite] = ACTIONS(692), - [anon_sym_BSLASHAutocite] = ACTIONS(692), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(694), - [anon_sym_BSLASHvolcite] = ACTIONS(692), - [anon_sym_BSLASHVolcite] = ACTIONS(692), - [anon_sym_BSLASHpvolcite] = ACTIONS(692), - [anon_sym_BSLASHPvolcite] = ACTIONS(692), - [anon_sym_BSLASHfvolcite] = ACTIONS(692), - [anon_sym_BSLASHftvolcite] = ACTIONS(692), - [anon_sym_BSLASHsvolcite] = ACTIONS(692), - [anon_sym_BSLASHSvolcite] = ACTIONS(692), - [anon_sym_BSLASHtvolcite] = ACTIONS(692), - [anon_sym_BSLASHTvolcite] = ACTIONS(692), - [anon_sym_BSLASHavolcite] = ACTIONS(692), - [anon_sym_BSLASHAvolcite] = ACTIONS(692), - [anon_sym_BSLASHnotecite] = ACTIONS(692), - [anon_sym_BSLASHNotecite] = ACTIONS(692), - [anon_sym_BSLASHpnotecite] = ACTIONS(692), - [anon_sym_BSLASHPnotecite] = ACTIONS(692), - [anon_sym_BSLASHfnotecite] = ACTIONS(692), - [anon_sym_BSLASHlabel] = ACTIONS(696), - [anon_sym_BSLASHref] = ACTIONS(698), - [anon_sym_BSLASHeqref] = ACTIONS(698), - [anon_sym_BSLASHvref] = ACTIONS(698), - [anon_sym_BSLASHVref] = ACTIONS(698), - [anon_sym_BSLASHautoref] = ACTIONS(698), - [anon_sym_BSLASHpageref] = ACTIONS(698), - [anon_sym_BSLASHcref] = ACTIONS(698), - [anon_sym_BSLASHCref] = ACTIONS(698), - [anon_sym_BSLASHcref_STAR] = ACTIONS(700), - [anon_sym_BSLASHCref_STAR] = ACTIONS(700), - [anon_sym_BSLASHnamecref] = ACTIONS(698), - [anon_sym_BSLASHnameCref] = ACTIONS(698), - [anon_sym_BSLASHlcnamecref] = ACTIONS(698), - [anon_sym_BSLASHnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHnameCrefs] = ACTIONS(698), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(698), - [anon_sym_BSLASHlabelcref] = ACTIONS(698), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(698), - [anon_sym_BSLASHcrefrange] = ACTIONS(702), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHCrefrange] = ACTIONS(702), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(704), - [anon_sym_BSLASHnewlabel] = ACTIONS(706), - [anon_sym_BSLASHnewcommand] = ACTIONS(708), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHrenewcommand] = ACTIONS(708), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(708), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(710), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(708), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(710), - [anon_sym_BSLASHdef] = ACTIONS(712), - [anon_sym_BSLASHlet] = ACTIONS(714), - [anon_sym_BSLASHnewenvironment] = ACTIONS(716), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(718), - [anon_sym_BSLASHgls] = ACTIONS(720), - [anon_sym_BSLASHGls] = ACTIONS(720), - [anon_sym_BSLASHGLS] = ACTIONS(720), - [anon_sym_BSLASHglspl] = ACTIONS(720), - [anon_sym_BSLASHGlspl] = ACTIONS(720), - [anon_sym_BSLASHGLSpl] = ACTIONS(720), - [anon_sym_BSLASHglsdisp] = ACTIONS(720), - [anon_sym_BSLASHglslink] = ACTIONS(720), - [anon_sym_BSLASHglstext] = ACTIONS(720), - [anon_sym_BSLASHGlstext] = ACTIONS(720), - [anon_sym_BSLASHGLStext] = ACTIONS(720), - [anon_sym_BSLASHglsfirst] = ACTIONS(720), - [anon_sym_BSLASHGlsfirst] = ACTIONS(720), - [anon_sym_BSLASHGLSfirst] = ACTIONS(720), - [anon_sym_BSLASHglsplural] = ACTIONS(720), - [anon_sym_BSLASHGlsplural] = ACTIONS(720), - [anon_sym_BSLASHGLSplural] = ACTIONS(720), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(720), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(720), - [anon_sym_BSLASHglsname] = ACTIONS(720), - [anon_sym_BSLASHGlsname] = ACTIONS(720), - [anon_sym_BSLASHGLSname] = ACTIONS(720), - [anon_sym_BSLASHglssymbol] = ACTIONS(720), - [anon_sym_BSLASHGlssymbol] = ACTIONS(720), - [anon_sym_BSLASHglsdesc] = ACTIONS(720), - [anon_sym_BSLASHGlsdesc] = ACTIONS(720), - [anon_sym_BSLASHGLSdesc] = ACTIONS(720), - [anon_sym_BSLASHglsuseri] = ACTIONS(720), - [anon_sym_BSLASHGlsuseri] = ACTIONS(720), - [anon_sym_BSLASHGLSuseri] = ACTIONS(720), - [anon_sym_BSLASHglsuserii] = ACTIONS(720), - [anon_sym_BSLASHGlsuserii] = ACTIONS(720), - [anon_sym_BSLASHGLSuserii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(720), - [anon_sym_BSLASHglsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(720), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(720), - [anon_sym_BSLASHglsuserv] = ACTIONS(720), - [anon_sym_BSLASHGlsuserv] = ACTIONS(720), - [anon_sym_BSLASHGLSuserv] = ACTIONS(720), - [anon_sym_BSLASHglsuservi] = ACTIONS(720), - [anon_sym_BSLASHGlsuservi] = ACTIONS(720), - [anon_sym_BSLASHGLSuservi] = ACTIONS(720), - [anon_sym_BSLASHnewacronym] = ACTIONS(722), - [anon_sym_BSLASHacrshort] = ACTIONS(724), - [anon_sym_BSLASHAcrshort] = ACTIONS(724), - [anon_sym_BSLASHACRshort] = ACTIONS(724), - [anon_sym_BSLASHacrshortpl] = ACTIONS(724), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(724), - [anon_sym_BSLASHACRshortpl] = ACTIONS(724), - [anon_sym_BSLASHacrlong] = ACTIONS(724), - [anon_sym_BSLASHAcrlong] = ACTIONS(724), - [anon_sym_BSLASHACRlong] = ACTIONS(724), - [anon_sym_BSLASHacrlongpl] = ACTIONS(724), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(724), - [anon_sym_BSLASHACRlongpl] = ACTIONS(724), - [anon_sym_BSLASHacrfull] = ACTIONS(724), - [anon_sym_BSLASHAcrfull] = ACTIONS(724), - [anon_sym_BSLASHACRfull] = ACTIONS(724), - [anon_sym_BSLASHacrfullpl] = ACTIONS(724), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(724), - [anon_sym_BSLASHACRfullpl] = ACTIONS(724), - [anon_sym_BSLASHacs] = ACTIONS(724), - [anon_sym_BSLASHAcs] = ACTIONS(724), - [anon_sym_BSLASHacsp] = ACTIONS(724), - [anon_sym_BSLASHAcsp] = ACTIONS(724), - [anon_sym_BSLASHacl] = ACTIONS(724), - [anon_sym_BSLASHAcl] = ACTIONS(724), - [anon_sym_BSLASHaclp] = ACTIONS(724), - [anon_sym_BSLASHAclp] = ACTIONS(724), - [anon_sym_BSLASHacf] = ACTIONS(724), - [anon_sym_BSLASHAcf] = ACTIONS(724), - [anon_sym_BSLASHacfp] = ACTIONS(724), - [anon_sym_BSLASHAcfp] = ACTIONS(724), - [anon_sym_BSLASHac] = ACTIONS(724), - [anon_sym_BSLASHAc] = ACTIONS(724), - [anon_sym_BSLASHacp] = ACTIONS(724), - [anon_sym_BSLASHglsentrylong] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(724), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryshort] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(724), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(724), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(724), - [anon_sym_BSLASHnewtheorem] = ACTIONS(726), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(726), - [anon_sym_BSLASHdefinecolor] = ACTIONS(728), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(730), - [anon_sym_BSLASHcolor] = ACTIONS(732), - [anon_sym_BSLASHcolorbox] = ACTIONS(732), - [anon_sym_BSLASHtextcolor] = ACTIONS(732), - [anon_sym_BSLASHpagecolor] = ACTIONS(732), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(734), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(734), + [sym_block_comment] = STATE(971), + [sym_operator] = STATE(971), + [sym__command] = STATE(971), + [sym_generic_command] = STATE(971), + [sym_package_include] = STATE(971), + [sym_class_include] = STATE(971), + [sym_latex_include] = STATE(971), + [sym_biblatex_include] = STATE(971), + [sym_bibtex_include] = STATE(971), + [sym_graphics_include] = STATE(971), + [sym_svg_include] = STATE(971), + [sym_inkscape_include] = STATE(971), + [sym_verbatim_include] = STATE(971), + [sym_import_include] = STATE(971), + [sym_caption] = STATE(971), + [sym_citation] = STATE(971), + [sym_label_definition] = STATE(971), + [sym_label_reference] = STATE(971), + [sym_label_reference_range] = STATE(971), + [sym_label_number] = STATE(971), + [sym_new_command_definition] = STATE(971), + [sym_old_command_definition] = STATE(971), + [sym_let_command_definition] = STATE(971), + [sym_environment_definition] = STATE(971), + [sym_glossary_entry_definition] = STATE(971), + [sym_glossary_entry_reference] = STATE(971), + [sym_acronym_definition] = STATE(971), + [sym_acronym_reference] = STATE(971), + [sym_theorem_definition] = STATE(971), + [sym_color_definition] = STATE(971), + [sym_color_set_definition] = STATE(971), + [sym_color_reference] = STATE(971), + [sym_tikz_library_import] = STATE(971), + [aux_sym_text_repeat1] = STATE(216), + [sym_command_name] = ACTIONS(553), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_RBRACK] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2675), + [anon_sym_BSLASHpart] = ACTIONS(2677), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddpart] = ACTIONS(2677), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2675), + [anon_sym_BSLASHchapter] = ACTIONS(2677), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddchap] = ACTIONS(2677), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsection] = ACTIONS(2677), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHaddsec] = ACTIONS(2677), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubsection] = ACTIONS(2677), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2677), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2675), + [anon_sym_BSLASHparagraph] = ACTIONS(2677), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2675), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2677), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2675), + [anon_sym_BSLASHitem] = ACTIONS(2677), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [sym_word] = ACTIONS(561), + [sym_placeholder] = ACTIONS(563), + [anon_sym_PLUS] = ACTIONS(565), + [anon_sym_DASH] = ACTIONS(565), + [anon_sym_STAR] = ACTIONS(565), + [anon_sym_SLASH] = ACTIONS(565), + [anon_sym_CARET] = ACTIONS(565), + [anon_sym__] = ACTIONS(565), + [anon_sym_LT] = ACTIONS(565), + [anon_sym_GT] = ACTIONS(565), + [anon_sym_BANG] = ACTIONS(565), + [anon_sym_PIPE] = ACTIONS(565), + [anon_sym_COLON] = ACTIONS(565), + [anon_sym_SQUOTE] = ACTIONS(565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), + [anon_sym_DOLLAR] = ACTIONS(2677), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), + [anon_sym_BSLASHbegin] = ACTIONS(2677), + [anon_sym_BSLASHusepackage] = ACTIONS(577), + [anon_sym_BSLASHRequirePackage] = ACTIONS(577), + [anon_sym_BSLASHdocumentclass] = ACTIONS(579), + [anon_sym_BSLASHinclude] = ACTIONS(581), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(581), + [anon_sym_BSLASHinput] = ACTIONS(581), + [anon_sym_BSLASHsubfile] = ACTIONS(581), + [anon_sym_BSLASHaddbibresource] = ACTIONS(583), + [anon_sym_BSLASHbibliography] = ACTIONS(585), + [anon_sym_BSLASHincludegraphics] = ACTIONS(587), + [anon_sym_BSLASHincludesvg] = ACTIONS(589), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(591), + [anon_sym_BSLASHverbatiminput] = ACTIONS(593), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(593), + [anon_sym_BSLASHimport] = ACTIONS(595), + [anon_sym_BSLASHsubimport] = ACTIONS(595), + [anon_sym_BSLASHinputfrom] = ACTIONS(595), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(595), + [anon_sym_BSLASHincludefrom] = ACTIONS(595), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(595), + [anon_sym_BSLASHcaption] = ACTIONS(597), + [anon_sym_BSLASHcite] = ACTIONS(599), + [anon_sym_BSLASHcite_STAR] = ACTIONS(601), + [anon_sym_BSLASHCite] = ACTIONS(599), + [anon_sym_BSLASHnocite] = ACTIONS(599), + [anon_sym_BSLASHcitet] = ACTIONS(599), + [anon_sym_BSLASHcitep] = ACTIONS(599), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteauthor] = ACTIONS(599), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHCiteauthor] = ACTIONS(599), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitetitle] = ACTIONS(599), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteyear] = ACTIONS(599), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(601), + [anon_sym_BSLASHcitedate] = ACTIONS(599), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(601), + [anon_sym_BSLASHciteurl] = ACTIONS(599), + [anon_sym_BSLASHfullcite] = ACTIONS(599), + [anon_sym_BSLASHciteyearpar] = ACTIONS(599), + [anon_sym_BSLASHcitealt] = ACTIONS(599), + [anon_sym_BSLASHcitealp] = ACTIONS(599), + [anon_sym_BSLASHcitetext] = ACTIONS(599), + [anon_sym_BSLASHparencite] = ACTIONS(599), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(601), + [anon_sym_BSLASHParencite] = ACTIONS(599), + [anon_sym_BSLASHfootcite] = ACTIONS(599), + [anon_sym_BSLASHfootfullcite] = ACTIONS(599), + [anon_sym_BSLASHfootcitetext] = ACTIONS(599), + [anon_sym_BSLASHtextcite] = ACTIONS(599), + [anon_sym_BSLASHTextcite] = ACTIONS(599), + [anon_sym_BSLASHsmartcite] = ACTIONS(599), + [anon_sym_BSLASHSmartcite] = ACTIONS(599), + [anon_sym_BSLASHsupercite] = ACTIONS(599), + [anon_sym_BSLASHautocite] = ACTIONS(599), + [anon_sym_BSLASHAutocite] = ACTIONS(599), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(601), + [anon_sym_BSLASHvolcite] = ACTIONS(599), + [anon_sym_BSLASHVolcite] = ACTIONS(599), + [anon_sym_BSLASHpvolcite] = ACTIONS(599), + [anon_sym_BSLASHPvolcite] = ACTIONS(599), + [anon_sym_BSLASHfvolcite] = ACTIONS(599), + [anon_sym_BSLASHftvolcite] = ACTIONS(599), + [anon_sym_BSLASHsvolcite] = ACTIONS(599), + [anon_sym_BSLASHSvolcite] = ACTIONS(599), + [anon_sym_BSLASHtvolcite] = ACTIONS(599), + [anon_sym_BSLASHTvolcite] = ACTIONS(599), + [anon_sym_BSLASHavolcite] = ACTIONS(599), + [anon_sym_BSLASHAvolcite] = ACTIONS(599), + [anon_sym_BSLASHnotecite] = ACTIONS(599), + [anon_sym_BSLASHNotecite] = ACTIONS(599), + [anon_sym_BSLASHpnotecite] = ACTIONS(599), + [anon_sym_BSLASHPnotecite] = ACTIONS(599), + [anon_sym_BSLASHfnotecite] = ACTIONS(599), + [anon_sym_BSLASHlabel] = ACTIONS(603), + [anon_sym_BSLASHref] = ACTIONS(605), + [anon_sym_BSLASHeqref] = ACTIONS(605), + [anon_sym_BSLASHvref] = ACTIONS(605), + [anon_sym_BSLASHVref] = ACTIONS(605), + [anon_sym_BSLASHautoref] = ACTIONS(605), + [anon_sym_BSLASHpageref] = ACTIONS(605), + [anon_sym_BSLASHcref] = ACTIONS(605), + [anon_sym_BSLASHCref] = ACTIONS(605), + [anon_sym_BSLASHcref_STAR] = ACTIONS(607), + [anon_sym_BSLASHCref_STAR] = ACTIONS(607), + [anon_sym_BSLASHnamecref] = ACTIONS(605), + [anon_sym_BSLASHnameCref] = ACTIONS(605), + [anon_sym_BSLASHlcnamecref] = ACTIONS(605), + [anon_sym_BSLASHnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHnameCrefs] = ACTIONS(605), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(605), + [anon_sym_BSLASHlabelcref] = ACTIONS(605), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(605), + [anon_sym_BSLASHcrefrange] = ACTIONS(609), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHCrefrange] = ACTIONS(609), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(611), + [anon_sym_BSLASHnewlabel] = ACTIONS(613), + [anon_sym_BSLASHnewcommand] = ACTIONS(615), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHrenewcommand] = ACTIONS(615), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(615), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(617), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(615), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(617), + [anon_sym_BSLASHdef] = ACTIONS(619), + [anon_sym_BSLASHlet] = ACTIONS(621), + [anon_sym_BSLASHnewenvironment] = ACTIONS(623), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(625), + [anon_sym_BSLASHgls] = ACTIONS(627), + [anon_sym_BSLASHGls] = ACTIONS(627), + [anon_sym_BSLASHGLS] = ACTIONS(627), + [anon_sym_BSLASHglspl] = ACTIONS(627), + [anon_sym_BSLASHGlspl] = ACTIONS(627), + [anon_sym_BSLASHGLSpl] = ACTIONS(627), + [anon_sym_BSLASHglsdisp] = ACTIONS(627), + [anon_sym_BSLASHglslink] = ACTIONS(627), + [anon_sym_BSLASHglstext] = ACTIONS(627), + [anon_sym_BSLASHGlstext] = ACTIONS(627), + [anon_sym_BSLASHGLStext] = ACTIONS(627), + [anon_sym_BSLASHglsfirst] = ACTIONS(627), + [anon_sym_BSLASHGlsfirst] = ACTIONS(627), + [anon_sym_BSLASHGLSfirst] = ACTIONS(627), + [anon_sym_BSLASHglsplural] = ACTIONS(627), + [anon_sym_BSLASHGlsplural] = ACTIONS(627), + [anon_sym_BSLASHGLSplural] = ACTIONS(627), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(627), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(627), + [anon_sym_BSLASHglsname] = ACTIONS(627), + [anon_sym_BSLASHGlsname] = ACTIONS(627), + [anon_sym_BSLASHGLSname] = ACTIONS(627), + [anon_sym_BSLASHglssymbol] = ACTIONS(627), + [anon_sym_BSLASHGlssymbol] = ACTIONS(627), + [anon_sym_BSLASHglsdesc] = ACTIONS(627), + [anon_sym_BSLASHGlsdesc] = ACTIONS(627), + [anon_sym_BSLASHGLSdesc] = ACTIONS(627), + [anon_sym_BSLASHglsuseri] = ACTIONS(627), + [anon_sym_BSLASHGlsuseri] = ACTIONS(627), + [anon_sym_BSLASHGLSuseri] = ACTIONS(627), + [anon_sym_BSLASHglsuserii] = ACTIONS(627), + [anon_sym_BSLASHGlsuserii] = ACTIONS(627), + [anon_sym_BSLASHGLSuserii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(627), + [anon_sym_BSLASHglsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(627), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(627), + [anon_sym_BSLASHglsuserv] = ACTIONS(627), + [anon_sym_BSLASHGlsuserv] = ACTIONS(627), + [anon_sym_BSLASHGLSuserv] = ACTIONS(627), + [anon_sym_BSLASHglsuservi] = ACTIONS(627), + [anon_sym_BSLASHGlsuservi] = ACTIONS(627), + [anon_sym_BSLASHGLSuservi] = ACTIONS(627), + [anon_sym_BSLASHnewacronym] = ACTIONS(629), + [anon_sym_BSLASHacrshort] = ACTIONS(631), + [anon_sym_BSLASHAcrshort] = ACTIONS(631), + [anon_sym_BSLASHACRshort] = ACTIONS(631), + [anon_sym_BSLASHacrshortpl] = ACTIONS(631), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(631), + [anon_sym_BSLASHACRshortpl] = ACTIONS(631), + [anon_sym_BSLASHacrlong] = ACTIONS(631), + [anon_sym_BSLASHAcrlong] = ACTIONS(631), + [anon_sym_BSLASHACRlong] = ACTIONS(631), + [anon_sym_BSLASHacrlongpl] = ACTIONS(631), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(631), + [anon_sym_BSLASHACRlongpl] = ACTIONS(631), + [anon_sym_BSLASHacrfull] = ACTIONS(631), + [anon_sym_BSLASHAcrfull] = ACTIONS(631), + [anon_sym_BSLASHACRfull] = ACTIONS(631), + [anon_sym_BSLASHacrfullpl] = ACTIONS(631), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(631), + [anon_sym_BSLASHACRfullpl] = ACTIONS(631), + [anon_sym_BSLASHacs] = ACTIONS(631), + [anon_sym_BSLASHAcs] = ACTIONS(631), + [anon_sym_BSLASHacsp] = ACTIONS(631), + [anon_sym_BSLASHAcsp] = ACTIONS(631), + [anon_sym_BSLASHacl] = ACTIONS(631), + [anon_sym_BSLASHAcl] = ACTIONS(631), + [anon_sym_BSLASHaclp] = ACTIONS(631), + [anon_sym_BSLASHAclp] = ACTIONS(631), + [anon_sym_BSLASHacf] = ACTIONS(631), + [anon_sym_BSLASHAcf] = ACTIONS(631), + [anon_sym_BSLASHacfp] = ACTIONS(631), + [anon_sym_BSLASHAcfp] = ACTIONS(631), + [anon_sym_BSLASHac] = ACTIONS(631), + [anon_sym_BSLASHAc] = ACTIONS(631), + [anon_sym_BSLASHacp] = ACTIONS(631), + [anon_sym_BSLASHglsentrylong] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(631), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryshort] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(631), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(631), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(631), + [anon_sym_BSLASHnewtheorem] = ACTIONS(633), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(633), + [anon_sym_BSLASHdefinecolor] = ACTIONS(635), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(637), + [anon_sym_BSLASHcolor] = ACTIONS(639), + [anon_sym_BSLASHcolorbox] = ACTIONS(639), + [anon_sym_BSLASHtextcolor] = ACTIONS(639), + [anon_sym_BSLASHpagecolor] = ACTIONS(639), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(641), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(641), + [anon_sym_BSLASHtext] = ACTIONS(2677), + [anon_sym_BSLASHintertext] = ACTIONS(2677), + [anon_sym_shortintertext] = ACTIONS(2677), }, [214] = { - [sym_block_comment] = STATE(1077), - [sym_operator] = STATE(1077), - [sym__command] = STATE(1077), - [sym_generic_command] = STATE(1077), - [sym_package_include] = STATE(1077), - [sym_class_include] = STATE(1077), - [sym_latex_include] = STATE(1077), - [sym_biblatex_include] = STATE(1077), - [sym_bibtex_include] = STATE(1077), - [sym_graphics_include] = STATE(1077), - [sym_svg_include] = STATE(1077), - [sym_inkscape_include] = STATE(1077), - [sym_verbatim_include] = STATE(1077), - [sym_import_include] = STATE(1077), - [sym_caption] = STATE(1077), - [sym_citation] = STATE(1077), - [sym_label_definition] = STATE(1077), - [sym_label_reference] = STATE(1077), - [sym_label_reference_range] = STATE(1077), - [sym_label_number] = STATE(1077), - [sym_new_command_definition] = STATE(1077), - [sym_old_command_definition] = STATE(1077), - [sym_let_command_definition] = STATE(1077), - [sym_environment_definition] = STATE(1077), - [sym_glossary_entry_definition] = STATE(1077), - [sym_glossary_entry_reference] = STATE(1077), - [sym_acronym_definition] = STATE(1077), - [sym_acronym_reference] = STATE(1077), - [sym_theorem_definition] = STATE(1077), - [sym_color_definition] = STATE(1077), - [sym_color_set_definition] = STATE(1077), - [sym_color_reference] = STATE(1077), - [sym_tikz_library_import] = STATE(1077), + [sym_block_comment] = STATE(862), + [sym_operator] = STATE(862), + [sym__command] = STATE(862), + [sym_generic_command] = STATE(862), + [sym_package_include] = STATE(862), + [sym_class_include] = STATE(862), + [sym_latex_include] = STATE(862), + [sym_biblatex_include] = STATE(862), + [sym_bibtex_include] = STATE(862), + [sym_graphics_include] = STATE(862), + [sym_svg_include] = STATE(862), + [sym_inkscape_include] = STATE(862), + [sym_verbatim_include] = STATE(862), + [sym_import_include] = STATE(862), + [sym_caption] = STATE(862), + [sym_citation] = STATE(862), + [sym_label_definition] = STATE(862), + [sym_label_reference] = STATE(862), + [sym_label_reference_range] = STATE(862), + [sym_label_number] = STATE(862), + [sym_new_command_definition] = STATE(862), + [sym_old_command_definition] = STATE(862), + [sym_let_command_definition] = STATE(862), + [sym_environment_definition] = STATE(862), + [sym_glossary_entry_definition] = STATE(862), + [sym_glossary_entry_reference] = STATE(862), + [sym_acronym_definition] = STATE(862), + [sym_acronym_reference] = STATE(862), + [sym_theorem_definition] = STATE(862), + [sym_color_definition] = STATE(862), + [sym_color_set_definition] = STATE(862), + [sym_color_reference] = STATE(862), + [sym_tikz_library_import] = STATE(862), [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(3099), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(2639), - [anon_sym_RPAREN] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_RBRACK] = ACTIONS(2639), - [anon_sym_COMMA] = ACTIONS(2639), - [anon_sym_EQ] = ACTIONS(2639), - [anon_sym_BSLASHpart] = ACTIONS(2647), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddpart] = ACTIONS(2647), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2639), - [anon_sym_BSLASHchapter] = ACTIONS(2647), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddchap] = ACTIONS(2647), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsection] = ACTIONS(2647), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHaddsec] = ACTIONS(2647), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubsection] = ACTIONS(2647), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2647), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2639), - [anon_sym_BSLASHparagraph] = ACTIONS(2647), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2639), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2647), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2639), - [anon_sym_BSLASHitem] = ACTIONS(2647), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2639), - [sym_word] = ACTIONS(3105), - [sym_placeholder] = ACTIONS(3108), - [anon_sym_PLUS] = ACTIONS(3111), - [anon_sym_DASH] = ACTIONS(3111), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_SLASH] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3111), - [anon_sym__] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3111), - [anon_sym_GT] = ACTIONS(3111), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3111), - [anon_sym_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2639), - [anon_sym_BSLASHbegin] = ACTIONS(2647), - [anon_sym_BSLASHend] = ACTIONS(2647), - [anon_sym_BSLASHusepackage] = ACTIONS(3114), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3114), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3117), - [anon_sym_BSLASHinclude] = ACTIONS(3120), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3120), - [anon_sym_BSLASHinput] = ACTIONS(3120), - [anon_sym_BSLASHsubfile] = ACTIONS(3120), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3123), - [anon_sym_BSLASHbibliography] = ACTIONS(3126), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3129), - [anon_sym_BSLASHincludesvg] = ACTIONS(3132), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3138), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3138), - [anon_sym_BSLASHimport] = ACTIONS(3141), - [anon_sym_BSLASHsubimport] = ACTIONS(3141), - [anon_sym_BSLASHinputfrom] = ACTIONS(3141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3141), - [anon_sym_BSLASHincludefrom] = ACTIONS(3141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3141), - [anon_sym_BSLASHcaption] = ACTIONS(3144), - [anon_sym_BSLASHcite] = ACTIONS(3147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3150), - [anon_sym_BSLASHCite] = ACTIONS(3147), - [anon_sym_BSLASHnocite] = ACTIONS(3147), - [anon_sym_BSLASHcitet] = ACTIONS(3147), - [anon_sym_BSLASHcitep] = ACTIONS(3147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3150), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3150), - [anon_sym_BSLASHciteauthor] = ACTIONS(3147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3150), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3150), - [anon_sym_BSLASHcitetitle] = ACTIONS(3147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3150), - [anon_sym_BSLASHciteyear] = ACTIONS(3147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3150), - [anon_sym_BSLASHcitedate] = ACTIONS(3147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3150), - [anon_sym_BSLASHciteurl] = ACTIONS(3147), - [anon_sym_BSLASHfullcite] = ACTIONS(3147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3147), - [anon_sym_BSLASHcitealt] = ACTIONS(3147), - [anon_sym_BSLASHcitealp] = ACTIONS(3147), - [anon_sym_BSLASHcitetext] = ACTIONS(3147), - [anon_sym_BSLASHparencite] = ACTIONS(3147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3150), - [anon_sym_BSLASHParencite] = ACTIONS(3147), - [anon_sym_BSLASHfootcite] = ACTIONS(3147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3147), - [anon_sym_BSLASHtextcite] = ACTIONS(3147), - [anon_sym_BSLASHTextcite] = ACTIONS(3147), - [anon_sym_BSLASHsmartcite] = ACTIONS(3147), - [anon_sym_BSLASHSmartcite] = ACTIONS(3147), - [anon_sym_BSLASHsupercite] = ACTIONS(3147), - [anon_sym_BSLASHautocite] = ACTIONS(3147), - [anon_sym_BSLASHAutocite] = ACTIONS(3147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3150), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3150), - [anon_sym_BSLASHvolcite] = ACTIONS(3147), - [anon_sym_BSLASHVolcite] = ACTIONS(3147), - [anon_sym_BSLASHpvolcite] = ACTIONS(3147), - [anon_sym_BSLASHPvolcite] = ACTIONS(3147), - [anon_sym_BSLASHfvolcite] = ACTIONS(3147), - [anon_sym_BSLASHftvolcite] = ACTIONS(3147), - [anon_sym_BSLASHsvolcite] = ACTIONS(3147), - [anon_sym_BSLASHSvolcite] = ACTIONS(3147), - [anon_sym_BSLASHtvolcite] = ACTIONS(3147), - [anon_sym_BSLASHTvolcite] = ACTIONS(3147), - [anon_sym_BSLASHavolcite] = ACTIONS(3147), - [anon_sym_BSLASHAvolcite] = ACTIONS(3147), - [anon_sym_BSLASHnotecite] = ACTIONS(3147), - [anon_sym_BSLASHNotecite] = ACTIONS(3147), - [anon_sym_BSLASHpnotecite] = ACTIONS(3147), - [anon_sym_BSLASHPnotecite] = ACTIONS(3147), - [anon_sym_BSLASHfnotecite] = ACTIONS(3147), - [anon_sym_BSLASHlabel] = ACTIONS(3153), - [anon_sym_BSLASHref] = ACTIONS(3156), - [anon_sym_BSLASHeqref] = ACTIONS(3156), - [anon_sym_BSLASHvref] = ACTIONS(3156), - [anon_sym_BSLASHVref] = ACTIONS(3156), - [anon_sym_BSLASHautoref] = ACTIONS(3156), - [anon_sym_BSLASHpageref] = ACTIONS(3156), - [anon_sym_BSLASHcref] = ACTIONS(3156), - [anon_sym_BSLASHCref] = ACTIONS(3156), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3159), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3159), - [anon_sym_BSLASHnamecref] = ACTIONS(3156), - [anon_sym_BSLASHnameCref] = ACTIONS(3156), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3156), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3156), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3156), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3156), - [anon_sym_BSLASHlabelcref] = ACTIONS(3156), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3156), - [anon_sym_BSLASHcrefrange] = ACTIONS(3162), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3165), - [anon_sym_BSLASHCrefrange] = ACTIONS(3162), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3165), - [anon_sym_BSLASHnewlabel] = ACTIONS(3168), - [anon_sym_BSLASHnewcommand] = ACTIONS(3171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3174), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3174), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3174), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3174), - [anon_sym_BSLASHdef] = ACTIONS(3177), - [anon_sym_BSLASHlet] = ACTIONS(3180), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3183), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3186), - [anon_sym_BSLASHgls] = ACTIONS(3189), - [anon_sym_BSLASHGls] = ACTIONS(3189), - [anon_sym_BSLASHGLS] = ACTIONS(3189), - [anon_sym_BSLASHglspl] = ACTIONS(3189), - [anon_sym_BSLASHGlspl] = ACTIONS(3189), - [anon_sym_BSLASHGLSpl] = ACTIONS(3189), - [anon_sym_BSLASHglsdisp] = ACTIONS(3189), - [anon_sym_BSLASHglslink] = ACTIONS(3189), - [anon_sym_BSLASHglstext] = ACTIONS(3189), - [anon_sym_BSLASHGlstext] = ACTIONS(3189), - [anon_sym_BSLASHGLStext] = ACTIONS(3189), - [anon_sym_BSLASHglsfirst] = ACTIONS(3189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3189), - [anon_sym_BSLASHglsplural] = ACTIONS(3189), - [anon_sym_BSLASHGlsplural] = ACTIONS(3189), - [anon_sym_BSLASHGLSplural] = ACTIONS(3189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3189), - [anon_sym_BSLASHglsname] = ACTIONS(3189), - [anon_sym_BSLASHGlsname] = ACTIONS(3189), - [anon_sym_BSLASHGLSname] = ACTIONS(3189), - [anon_sym_BSLASHglssymbol] = ACTIONS(3189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3189), - [anon_sym_BSLASHglsdesc] = ACTIONS(3189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3189), - [anon_sym_BSLASHglsuseri] = ACTIONS(3189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3189), - [anon_sym_BSLASHglsuserii] = ACTIONS(3189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3189), - [anon_sym_BSLASHglsuserv] = ACTIONS(3189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3189), - [anon_sym_BSLASHglsuservi] = ACTIONS(3189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3189), - [anon_sym_BSLASHnewacronym] = ACTIONS(3192), - [anon_sym_BSLASHacrshort] = ACTIONS(3195), - [anon_sym_BSLASHAcrshort] = ACTIONS(3195), - [anon_sym_BSLASHACRshort] = ACTIONS(3195), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3195), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3195), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3195), - [anon_sym_BSLASHacrlong] = ACTIONS(3195), - [anon_sym_BSLASHAcrlong] = ACTIONS(3195), - [anon_sym_BSLASHACRlong] = ACTIONS(3195), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3195), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3195), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3195), - [anon_sym_BSLASHacrfull] = ACTIONS(3195), - [anon_sym_BSLASHAcrfull] = ACTIONS(3195), - [anon_sym_BSLASHACRfull] = ACTIONS(3195), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3195), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3195), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3195), - [anon_sym_BSLASHacs] = ACTIONS(3195), - [anon_sym_BSLASHAcs] = ACTIONS(3195), - [anon_sym_BSLASHacsp] = ACTIONS(3195), - [anon_sym_BSLASHAcsp] = ACTIONS(3195), - [anon_sym_BSLASHacl] = ACTIONS(3195), - [anon_sym_BSLASHAcl] = ACTIONS(3195), - [anon_sym_BSLASHaclp] = ACTIONS(3195), - [anon_sym_BSLASHAclp] = ACTIONS(3195), - [anon_sym_BSLASHacf] = ACTIONS(3195), - [anon_sym_BSLASHAcf] = ACTIONS(3195), - [anon_sym_BSLASHacfp] = ACTIONS(3195), - [anon_sym_BSLASHAcfp] = ACTIONS(3195), - [anon_sym_BSLASHac] = ACTIONS(3195), - [anon_sym_BSLASHAc] = ACTIONS(3195), - [anon_sym_BSLASHacp] = ACTIONS(3195), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3195), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3195), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3195), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3195), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3195), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3195), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3195), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3195), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3195), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3195), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3198), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3198), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3204), - [anon_sym_BSLASHcolor] = ACTIONS(3207), - [anon_sym_BSLASHcolorbox] = ACTIONS(3207), - [anon_sym_BSLASHtextcolor] = ACTIONS(3207), - [anon_sym_BSLASHpagecolor] = ACTIONS(3207), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3210), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3210), + [sym_command_name] = ACTIONS(2911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(2914), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_BSLASHpart] = ACTIONS(2687), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddpart] = ACTIONS(2687), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2679), + [anon_sym_BSLASHchapter] = ACTIONS(2687), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddchap] = ACTIONS(2687), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsection] = ACTIONS(2687), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddsec] = ACTIONS(2687), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubsection] = ACTIONS(2687), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2687), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHparagraph] = ACTIONS(2687), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2687), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2679), + [anon_sym_BSLASHitem] = ACTIONS(2687), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [sym_word] = ACTIONS(2917), + [sym_placeholder] = ACTIONS(2920), + [anon_sym_PLUS] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2923), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2923), + [anon_sym_CARET] = ACTIONS(2923), + [anon_sym__] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2923), + [anon_sym_GT] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2923), + [anon_sym_PIPE] = ACTIONS(2923), + [anon_sym_COLON] = ACTIONS(2923), + [anon_sym_SQUOTE] = ACTIONS(2923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), + [anon_sym_BSLASH_RBRACE] = ACTIONS(2679), + [anon_sym_BSLASHbegin] = ACTIONS(2687), + [anon_sym_BSLASHusepackage] = ACTIONS(2926), + [anon_sym_BSLASHRequirePackage] = ACTIONS(2926), + [anon_sym_BSLASHdocumentclass] = ACTIONS(2929), + [anon_sym_BSLASHinclude] = ACTIONS(2932), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(2932), + [anon_sym_BSLASHinput] = ACTIONS(2932), + [anon_sym_BSLASHsubfile] = ACTIONS(2932), + [anon_sym_BSLASHaddbibresource] = ACTIONS(2935), + [anon_sym_BSLASHbibliography] = ACTIONS(2938), + [anon_sym_BSLASHincludegraphics] = ACTIONS(2941), + [anon_sym_BSLASHincludesvg] = ACTIONS(2944), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(2947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(2950), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(2950), + [anon_sym_BSLASHimport] = ACTIONS(2953), + [anon_sym_BSLASHsubimport] = ACTIONS(2953), + [anon_sym_BSLASHinputfrom] = ACTIONS(2953), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(2953), + [anon_sym_BSLASHincludefrom] = ACTIONS(2953), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(2953), + [anon_sym_BSLASHcaption] = ACTIONS(2956), + [anon_sym_BSLASHcite] = ACTIONS(2959), + [anon_sym_BSLASHcite_STAR] = ACTIONS(2962), + [anon_sym_BSLASHCite] = ACTIONS(2959), + [anon_sym_BSLASHnocite] = ACTIONS(2959), + [anon_sym_BSLASHcitet] = ACTIONS(2959), + [anon_sym_BSLASHcitep] = ACTIONS(2959), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(2962), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(2962), + [anon_sym_BSLASHciteauthor] = ACTIONS(2959), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(2962), + [anon_sym_BSLASHCiteauthor] = ACTIONS(2959), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(2962), + [anon_sym_BSLASHcitetitle] = ACTIONS(2959), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(2962), + [anon_sym_BSLASHciteyear] = ACTIONS(2959), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(2962), + [anon_sym_BSLASHcitedate] = ACTIONS(2959), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(2962), + [anon_sym_BSLASHciteurl] = ACTIONS(2959), + [anon_sym_BSLASHfullcite] = ACTIONS(2959), + [anon_sym_BSLASHciteyearpar] = ACTIONS(2959), + [anon_sym_BSLASHcitealt] = ACTIONS(2959), + [anon_sym_BSLASHcitealp] = ACTIONS(2959), + [anon_sym_BSLASHcitetext] = ACTIONS(2959), + [anon_sym_BSLASHparencite] = ACTIONS(2959), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(2962), + [anon_sym_BSLASHParencite] = ACTIONS(2959), + [anon_sym_BSLASHfootcite] = ACTIONS(2959), + [anon_sym_BSLASHfootfullcite] = ACTIONS(2959), + [anon_sym_BSLASHfootcitetext] = ACTIONS(2959), + [anon_sym_BSLASHtextcite] = ACTIONS(2959), + [anon_sym_BSLASHTextcite] = ACTIONS(2959), + [anon_sym_BSLASHsmartcite] = ACTIONS(2959), + [anon_sym_BSLASHSmartcite] = ACTIONS(2959), + [anon_sym_BSLASHsupercite] = ACTIONS(2959), + [anon_sym_BSLASHautocite] = ACTIONS(2959), + [anon_sym_BSLASHAutocite] = ACTIONS(2959), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(2962), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(2962), + [anon_sym_BSLASHvolcite] = ACTIONS(2959), + [anon_sym_BSLASHVolcite] = ACTIONS(2959), + [anon_sym_BSLASHpvolcite] = ACTIONS(2959), + [anon_sym_BSLASHPvolcite] = ACTIONS(2959), + [anon_sym_BSLASHfvolcite] = ACTIONS(2959), + [anon_sym_BSLASHftvolcite] = ACTIONS(2959), + [anon_sym_BSLASHsvolcite] = ACTIONS(2959), + [anon_sym_BSLASHSvolcite] = ACTIONS(2959), + [anon_sym_BSLASHtvolcite] = ACTIONS(2959), + [anon_sym_BSLASHTvolcite] = ACTIONS(2959), + [anon_sym_BSLASHavolcite] = ACTIONS(2959), + [anon_sym_BSLASHAvolcite] = ACTIONS(2959), + [anon_sym_BSLASHnotecite] = ACTIONS(2959), + [anon_sym_BSLASHNotecite] = ACTIONS(2959), + [anon_sym_BSLASHpnotecite] = ACTIONS(2959), + [anon_sym_BSLASHPnotecite] = ACTIONS(2959), + [anon_sym_BSLASHfnotecite] = ACTIONS(2959), + [anon_sym_BSLASHlabel] = ACTIONS(2965), + [anon_sym_BSLASHref] = ACTIONS(2968), + [anon_sym_BSLASHeqref] = ACTIONS(2968), + [anon_sym_BSLASHvref] = ACTIONS(2968), + [anon_sym_BSLASHVref] = ACTIONS(2968), + [anon_sym_BSLASHautoref] = ACTIONS(2968), + [anon_sym_BSLASHpageref] = ACTIONS(2968), + [anon_sym_BSLASHcref] = ACTIONS(2968), + [anon_sym_BSLASHCref] = ACTIONS(2968), + [anon_sym_BSLASHcref_STAR] = ACTIONS(2971), + [anon_sym_BSLASHCref_STAR] = ACTIONS(2971), + [anon_sym_BSLASHnamecref] = ACTIONS(2968), + [anon_sym_BSLASHnameCref] = ACTIONS(2968), + [anon_sym_BSLASHlcnamecref] = ACTIONS(2968), + [anon_sym_BSLASHnamecrefs] = ACTIONS(2968), + [anon_sym_BSLASHnameCrefs] = ACTIONS(2968), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(2968), + [anon_sym_BSLASHlabelcref] = ACTIONS(2968), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(2968), + [anon_sym_BSLASHcrefrange] = ACTIONS(2974), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(2977), + [anon_sym_BSLASHCrefrange] = ACTIONS(2974), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(2977), + [anon_sym_BSLASHnewlabel] = ACTIONS(2980), + [anon_sym_BSLASHnewcommand] = ACTIONS(2983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(2986), + [anon_sym_BSLASHrenewcommand] = ACTIONS(2983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(2986), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(2983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(2986), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(2983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(2986), + [anon_sym_BSLASHdef] = ACTIONS(2989), + [anon_sym_BSLASHlet] = ACTIONS(2992), + [anon_sym_BSLASHnewenvironment] = ACTIONS(2995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(2998), + [anon_sym_BSLASHgls] = ACTIONS(3001), + [anon_sym_BSLASHGls] = ACTIONS(3001), + [anon_sym_BSLASHGLS] = ACTIONS(3001), + [anon_sym_BSLASHglspl] = ACTIONS(3001), + [anon_sym_BSLASHGlspl] = ACTIONS(3001), + [anon_sym_BSLASHGLSpl] = ACTIONS(3001), + [anon_sym_BSLASHglsdisp] = ACTIONS(3001), + [anon_sym_BSLASHglslink] = ACTIONS(3001), + [anon_sym_BSLASHglstext] = ACTIONS(3001), + [anon_sym_BSLASHGlstext] = ACTIONS(3001), + [anon_sym_BSLASHGLStext] = ACTIONS(3001), + [anon_sym_BSLASHglsfirst] = ACTIONS(3001), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3001), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3001), + [anon_sym_BSLASHglsplural] = ACTIONS(3001), + [anon_sym_BSLASHGlsplural] = ACTIONS(3001), + [anon_sym_BSLASHGLSplural] = ACTIONS(3001), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3001), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3001), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3001), + [anon_sym_BSLASHglsname] = ACTIONS(3001), + [anon_sym_BSLASHGlsname] = ACTIONS(3001), + [anon_sym_BSLASHGLSname] = ACTIONS(3001), + [anon_sym_BSLASHglssymbol] = ACTIONS(3001), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3001), + [anon_sym_BSLASHglsdesc] = ACTIONS(3001), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3001), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3001), + [anon_sym_BSLASHglsuseri] = ACTIONS(3001), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3001), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3001), + [anon_sym_BSLASHglsuserii] = ACTIONS(3001), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3001), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3001), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3001), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3001), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3001), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3001), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3001), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3001), + [anon_sym_BSLASHglsuserv] = ACTIONS(3001), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3001), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3001), + [anon_sym_BSLASHglsuservi] = ACTIONS(3001), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3001), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3001), + [anon_sym_BSLASHnewacronym] = ACTIONS(3004), + [anon_sym_BSLASHacrshort] = ACTIONS(3007), + [anon_sym_BSLASHAcrshort] = ACTIONS(3007), + [anon_sym_BSLASHACRshort] = ACTIONS(3007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3007), + [anon_sym_BSLASHacrlong] = ACTIONS(3007), + [anon_sym_BSLASHAcrlong] = ACTIONS(3007), + [anon_sym_BSLASHACRlong] = ACTIONS(3007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3007), + [anon_sym_BSLASHacrfull] = ACTIONS(3007), + [anon_sym_BSLASHAcrfull] = ACTIONS(3007), + [anon_sym_BSLASHACRfull] = ACTIONS(3007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3007), + [anon_sym_BSLASHacs] = ACTIONS(3007), + [anon_sym_BSLASHAcs] = ACTIONS(3007), + [anon_sym_BSLASHacsp] = ACTIONS(3007), + [anon_sym_BSLASHAcsp] = ACTIONS(3007), + [anon_sym_BSLASHacl] = ACTIONS(3007), + [anon_sym_BSLASHAcl] = ACTIONS(3007), + [anon_sym_BSLASHaclp] = ACTIONS(3007), + [anon_sym_BSLASHAclp] = ACTIONS(3007), + [anon_sym_BSLASHacf] = ACTIONS(3007), + [anon_sym_BSLASHAcf] = ACTIONS(3007), + [anon_sym_BSLASHacfp] = ACTIONS(3007), + [anon_sym_BSLASHAcfp] = ACTIONS(3007), + [anon_sym_BSLASHac] = ACTIONS(3007), + [anon_sym_BSLASHAc] = ACTIONS(3007), + [anon_sym_BSLASHacp] = ACTIONS(3007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3010), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3010), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3013), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3016), + [anon_sym_BSLASHcolor] = ACTIONS(3019), + [anon_sym_BSLASHcolorbox] = ACTIONS(3019), + [anon_sym_BSLASHtextcolor] = ACTIONS(3019), + [anon_sym_BSLASHpagecolor] = ACTIONS(3019), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3022), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3022), + [anon_sym_BSLASHtext] = ACTIONS(2687), + [anon_sym_BSLASHintertext] = ACTIONS(2687), + [anon_sym_shortintertext] = ACTIONS(2687), }, [215] = { - [sym_block_comment] = STATE(858), - [sym_operator] = STATE(858), - [sym__command] = STATE(858), - [sym_generic_command] = STATE(858), - [sym_package_include] = STATE(858), - [sym_class_include] = STATE(858), - [sym_latex_include] = STATE(858), - [sym_biblatex_include] = STATE(858), - [sym_bibtex_include] = STATE(858), - [sym_graphics_include] = STATE(858), - [sym_svg_include] = STATE(858), - [sym_inkscape_include] = STATE(858), - [sym_verbatim_include] = STATE(858), - [sym_import_include] = STATE(858), - [sym_caption] = STATE(858), - [sym_citation] = STATE(858), - [sym_label_definition] = STATE(858), - [sym_label_reference] = STATE(858), - [sym_label_reference_range] = STATE(858), - [sym_label_number] = STATE(858), - [sym_new_command_definition] = STATE(858), - [sym_old_command_definition] = STATE(858), - [sym_let_command_definition] = STATE(858), - [sym_environment_definition] = STATE(858), - [sym_glossary_entry_definition] = STATE(858), - [sym_glossary_entry_reference] = STATE(858), - [sym_acronym_definition] = STATE(858), - [sym_acronym_reference] = STATE(858), - [sym_theorem_definition] = STATE(858), - [sym_color_definition] = STATE(858), - [sym_color_set_definition] = STATE(858), - [sym_color_reference] = STATE(858), - [sym_tikz_library_import] = STATE(858), - [aux_sym_text_repeat1] = STATE(209), - [sym_command_name] = ACTIONS(756), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(758), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_RBRACK] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_EQ] = ACTIONS(2635), - [anon_sym_BSLASHpart] = ACTIONS(2637), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddpart] = ACTIONS(2637), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2635), - [anon_sym_BSLASHchapter] = ACTIONS(2637), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddchap] = ACTIONS(2637), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsection] = ACTIONS(2637), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddsec] = ACTIONS(2637), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubsection] = ACTIONS(2637), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2637), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHparagraph] = ACTIONS(2637), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2637), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2635), - [anon_sym_BSLASHitem] = ACTIONS(2637), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [sym_word] = ACTIONS(796), - [sym_placeholder] = ACTIONS(798), - [anon_sym_PLUS] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_SLASH] = ACTIONS(800), - [anon_sym_CARET] = ACTIONS(800), - [anon_sym__] = ACTIONS(800), - [anon_sym_LT] = ACTIONS(800), - [anon_sym_GT] = ACTIONS(800), - [anon_sym_BANG] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(800), - [anon_sym_COLON] = ACTIONS(800), - [anon_sym_SQUOTE] = ACTIONS(800), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2635), - [anon_sym_DOLLAR] = ACTIONS(2637), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2635), - [anon_sym_BSLASH_RBRACE] = ACTIONS(2635), - [anon_sym_BSLASHbegin] = ACTIONS(2637), - [anon_sym_BSLASHusepackage] = ACTIONS(812), - [anon_sym_BSLASHRequirePackage] = ACTIONS(812), - [anon_sym_BSLASHdocumentclass] = ACTIONS(814), - [anon_sym_BSLASHinclude] = ACTIONS(816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(816), - [anon_sym_BSLASHinput] = ACTIONS(816), - [anon_sym_BSLASHsubfile] = ACTIONS(816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(818), - [anon_sym_BSLASHbibliography] = ACTIONS(820), - [anon_sym_BSLASHincludegraphics] = ACTIONS(822), - [anon_sym_BSLASHincludesvg] = ACTIONS(824), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(826), - [anon_sym_BSLASHverbatiminput] = ACTIONS(828), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(828), - [anon_sym_BSLASHimport] = ACTIONS(830), - [anon_sym_BSLASHsubimport] = ACTIONS(830), - [anon_sym_BSLASHinputfrom] = ACTIONS(830), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(830), - [anon_sym_BSLASHincludefrom] = ACTIONS(830), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(830), - [anon_sym_BSLASHcaption] = ACTIONS(832), - [anon_sym_BSLASHcite] = ACTIONS(834), - [anon_sym_BSLASHcite_STAR] = ACTIONS(836), - [anon_sym_BSLASHCite] = ACTIONS(834), - [anon_sym_BSLASHnocite] = ACTIONS(834), - [anon_sym_BSLASHcitet] = ACTIONS(834), - [anon_sym_BSLASHcitep] = ACTIONS(834), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteauthor] = ACTIONS(834), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHCiteauthor] = ACTIONS(834), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitetitle] = ACTIONS(834), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteyear] = ACTIONS(834), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(836), - [anon_sym_BSLASHcitedate] = ACTIONS(834), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(836), - [anon_sym_BSLASHciteurl] = ACTIONS(834), - [anon_sym_BSLASHfullcite] = ACTIONS(834), - [anon_sym_BSLASHciteyearpar] = ACTIONS(834), - [anon_sym_BSLASHcitealt] = ACTIONS(834), - [anon_sym_BSLASHcitealp] = ACTIONS(834), - [anon_sym_BSLASHcitetext] = ACTIONS(834), - [anon_sym_BSLASHparencite] = ACTIONS(834), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(836), - [anon_sym_BSLASHParencite] = ACTIONS(834), - [anon_sym_BSLASHfootcite] = ACTIONS(834), - [anon_sym_BSLASHfootfullcite] = ACTIONS(834), - [anon_sym_BSLASHfootcitetext] = ACTIONS(834), - [anon_sym_BSLASHtextcite] = ACTIONS(834), - [anon_sym_BSLASHTextcite] = ACTIONS(834), - [anon_sym_BSLASHsmartcite] = ACTIONS(834), - [anon_sym_BSLASHSmartcite] = ACTIONS(834), - [anon_sym_BSLASHsupercite] = ACTIONS(834), - [anon_sym_BSLASHautocite] = ACTIONS(834), - [anon_sym_BSLASHAutocite] = ACTIONS(834), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(836), - [anon_sym_BSLASHvolcite] = ACTIONS(834), - [anon_sym_BSLASHVolcite] = ACTIONS(834), - [anon_sym_BSLASHpvolcite] = ACTIONS(834), - [anon_sym_BSLASHPvolcite] = ACTIONS(834), - [anon_sym_BSLASHfvolcite] = ACTIONS(834), - [anon_sym_BSLASHftvolcite] = ACTIONS(834), - [anon_sym_BSLASHsvolcite] = ACTIONS(834), - [anon_sym_BSLASHSvolcite] = ACTIONS(834), - [anon_sym_BSLASHtvolcite] = ACTIONS(834), - [anon_sym_BSLASHTvolcite] = ACTIONS(834), - [anon_sym_BSLASHavolcite] = ACTIONS(834), - [anon_sym_BSLASHAvolcite] = ACTIONS(834), - [anon_sym_BSLASHnotecite] = ACTIONS(834), - [anon_sym_BSLASHNotecite] = ACTIONS(834), - [anon_sym_BSLASHpnotecite] = ACTIONS(834), - [anon_sym_BSLASHPnotecite] = ACTIONS(834), - [anon_sym_BSLASHfnotecite] = ACTIONS(834), - [anon_sym_BSLASHlabel] = ACTIONS(838), - [anon_sym_BSLASHref] = ACTIONS(840), - [anon_sym_BSLASHeqref] = ACTIONS(840), - [anon_sym_BSLASHvref] = ACTIONS(840), - [anon_sym_BSLASHVref] = ACTIONS(840), - [anon_sym_BSLASHautoref] = ACTIONS(840), - [anon_sym_BSLASHpageref] = ACTIONS(840), - [anon_sym_BSLASHcref] = ACTIONS(840), - [anon_sym_BSLASHCref] = ACTIONS(840), - [anon_sym_BSLASHcref_STAR] = ACTIONS(842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(842), - [anon_sym_BSLASHnamecref] = ACTIONS(840), - [anon_sym_BSLASHnameCref] = ACTIONS(840), - [anon_sym_BSLASHlcnamecref] = ACTIONS(840), - [anon_sym_BSLASHnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHnameCrefs] = ACTIONS(840), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(840), - [anon_sym_BSLASHlabelcref] = ACTIONS(840), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(840), - [anon_sym_BSLASHcrefrange] = ACTIONS(844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHCrefrange] = ACTIONS(844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(846), - [anon_sym_BSLASHnewlabel] = ACTIONS(848), - [anon_sym_BSLASHnewcommand] = ACTIONS(850), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHrenewcommand] = ACTIONS(850), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(850), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(852), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(850), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(852), - [anon_sym_BSLASHdef] = ACTIONS(854), - [anon_sym_BSLASHlet] = ACTIONS(856), - [anon_sym_BSLASHnewenvironment] = ACTIONS(858), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(860), - [anon_sym_BSLASHgls] = ACTIONS(862), - [anon_sym_BSLASHGls] = ACTIONS(862), - [anon_sym_BSLASHGLS] = ACTIONS(862), - [anon_sym_BSLASHglspl] = ACTIONS(862), - [anon_sym_BSLASHGlspl] = ACTIONS(862), - [anon_sym_BSLASHGLSpl] = ACTIONS(862), - [anon_sym_BSLASHglsdisp] = ACTIONS(862), - [anon_sym_BSLASHglslink] = ACTIONS(862), - [anon_sym_BSLASHglstext] = ACTIONS(862), - [anon_sym_BSLASHGlstext] = ACTIONS(862), - [anon_sym_BSLASHGLStext] = ACTIONS(862), - [anon_sym_BSLASHglsfirst] = ACTIONS(862), - [anon_sym_BSLASHGlsfirst] = ACTIONS(862), - [anon_sym_BSLASHGLSfirst] = ACTIONS(862), - [anon_sym_BSLASHglsplural] = ACTIONS(862), - [anon_sym_BSLASHGlsplural] = ACTIONS(862), - [anon_sym_BSLASHGLSplural] = ACTIONS(862), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(862), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(862), - [anon_sym_BSLASHglsname] = ACTIONS(862), - [anon_sym_BSLASHGlsname] = ACTIONS(862), - [anon_sym_BSLASHGLSname] = ACTIONS(862), - [anon_sym_BSLASHglssymbol] = ACTIONS(862), - [anon_sym_BSLASHGlssymbol] = ACTIONS(862), - [anon_sym_BSLASHglsdesc] = ACTIONS(862), - [anon_sym_BSLASHGlsdesc] = ACTIONS(862), - [anon_sym_BSLASHGLSdesc] = ACTIONS(862), - [anon_sym_BSLASHglsuseri] = ACTIONS(862), - [anon_sym_BSLASHGlsuseri] = ACTIONS(862), - [anon_sym_BSLASHGLSuseri] = ACTIONS(862), - [anon_sym_BSLASHglsuserii] = ACTIONS(862), - [anon_sym_BSLASHGlsuserii] = ACTIONS(862), - [anon_sym_BSLASHGLSuserii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(862), - [anon_sym_BSLASHglsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(862), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(862), - [anon_sym_BSLASHglsuserv] = ACTIONS(862), - [anon_sym_BSLASHGlsuserv] = ACTIONS(862), - [anon_sym_BSLASHGLSuserv] = ACTIONS(862), - [anon_sym_BSLASHglsuservi] = ACTIONS(862), - [anon_sym_BSLASHGlsuservi] = ACTIONS(862), - [anon_sym_BSLASHGLSuservi] = ACTIONS(862), - [anon_sym_BSLASHnewacronym] = ACTIONS(864), - [anon_sym_BSLASHacrshort] = ACTIONS(866), - [anon_sym_BSLASHAcrshort] = ACTIONS(866), - [anon_sym_BSLASHACRshort] = ACTIONS(866), - [anon_sym_BSLASHacrshortpl] = ACTIONS(866), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(866), - [anon_sym_BSLASHACRshortpl] = ACTIONS(866), - [anon_sym_BSLASHacrlong] = ACTIONS(866), - [anon_sym_BSLASHAcrlong] = ACTIONS(866), - [anon_sym_BSLASHACRlong] = ACTIONS(866), - [anon_sym_BSLASHacrlongpl] = ACTIONS(866), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(866), - [anon_sym_BSLASHACRlongpl] = ACTIONS(866), - [anon_sym_BSLASHacrfull] = ACTIONS(866), - [anon_sym_BSLASHAcrfull] = ACTIONS(866), - [anon_sym_BSLASHACRfull] = ACTIONS(866), - [anon_sym_BSLASHacrfullpl] = ACTIONS(866), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(866), - [anon_sym_BSLASHACRfullpl] = ACTIONS(866), - [anon_sym_BSLASHacs] = ACTIONS(866), - [anon_sym_BSLASHAcs] = ACTIONS(866), - [anon_sym_BSLASHacsp] = ACTIONS(866), - [anon_sym_BSLASHAcsp] = ACTIONS(866), - [anon_sym_BSLASHacl] = ACTIONS(866), - [anon_sym_BSLASHAcl] = ACTIONS(866), - [anon_sym_BSLASHaclp] = ACTIONS(866), - [anon_sym_BSLASHAclp] = ACTIONS(866), - [anon_sym_BSLASHacf] = ACTIONS(866), - [anon_sym_BSLASHAcf] = ACTIONS(866), - [anon_sym_BSLASHacfp] = ACTIONS(866), - [anon_sym_BSLASHAcfp] = ACTIONS(866), - [anon_sym_BSLASHac] = ACTIONS(866), - [anon_sym_BSLASHAc] = ACTIONS(866), - [anon_sym_BSLASHacp] = ACTIONS(866), - [anon_sym_BSLASHglsentrylong] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(866), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryshort] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(866), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(866), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(866), - [anon_sym_BSLASHnewtheorem] = ACTIONS(868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(870), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(872), - [anon_sym_BSLASHcolor] = ACTIONS(874), - [anon_sym_BSLASHcolorbox] = ACTIONS(874), - [anon_sym_BSLASHtextcolor] = ACTIONS(874), - [anon_sym_BSLASHpagecolor] = ACTIONS(874), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(876), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(876), + [sym_block_comment] = STATE(1082), + [sym_operator] = STATE(1082), + [sym__command] = STATE(1082), + [sym_generic_command] = STATE(1082), + [sym_package_include] = STATE(1082), + [sym_class_include] = STATE(1082), + [sym_latex_include] = STATE(1082), + [sym_biblatex_include] = STATE(1082), + [sym_bibtex_include] = STATE(1082), + [sym_graphics_include] = STATE(1082), + [sym_svg_include] = STATE(1082), + [sym_inkscape_include] = STATE(1082), + [sym_verbatim_include] = STATE(1082), + [sym_import_include] = STATE(1082), + [sym_caption] = STATE(1082), + [sym_citation] = STATE(1082), + [sym_label_definition] = STATE(1082), + [sym_label_reference] = STATE(1082), + [sym_label_reference_range] = STATE(1082), + [sym_label_number] = STATE(1082), + [sym_new_command_definition] = STATE(1082), + [sym_old_command_definition] = STATE(1082), + [sym_let_command_definition] = STATE(1082), + [sym_environment_definition] = STATE(1082), + [sym_glossary_entry_definition] = STATE(1082), + [sym_glossary_entry_reference] = STATE(1082), + [sym_acronym_definition] = STATE(1082), + [sym_acronym_reference] = STATE(1082), + [sym_theorem_definition] = STATE(1082), + [sym_color_definition] = STATE(1082), + [sym_color_set_definition] = STATE(1082), + [sym_color_reference] = STATE(1082), + [sym_tikz_library_import] = STATE(1082), + [aux_sym_text_repeat1] = STATE(215), + [sym_command_name] = ACTIONS(3025), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3028), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_BSLASHpart] = ACTIONS(2687), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddpart] = ACTIONS(2687), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2679), + [anon_sym_BSLASHchapter] = ACTIONS(2687), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddchap] = ACTIONS(2687), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsection] = ACTIONS(2687), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddsec] = ACTIONS(2687), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubsection] = ACTIONS(2687), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2687), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHparagraph] = ACTIONS(2687), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2687), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2679), + [anon_sym_BSLASHitem] = ACTIONS(2687), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [sym_word] = ACTIONS(3031), + [sym_placeholder] = ACTIONS(3034), + [anon_sym_PLUS] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_SLASH] = ACTIONS(3037), + [anon_sym_CARET] = ACTIONS(3037), + [anon_sym__] = ACTIONS(3037), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_GT] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_PIPE] = ACTIONS(3037), + [anon_sym_COLON] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3037), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), + [anon_sym_BSLASHbegin] = ACTIONS(2687), + [anon_sym_BSLASHend] = ACTIONS(2687), + [anon_sym_BSLASHusepackage] = ACTIONS(3040), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3040), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3043), + [anon_sym_BSLASHinclude] = ACTIONS(3046), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3046), + [anon_sym_BSLASHinput] = ACTIONS(3046), + [anon_sym_BSLASHsubfile] = ACTIONS(3046), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3049), + [anon_sym_BSLASHbibliography] = ACTIONS(3052), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3055), + [anon_sym_BSLASHincludesvg] = ACTIONS(3058), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3064), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3064), + [anon_sym_BSLASHimport] = ACTIONS(3067), + [anon_sym_BSLASHsubimport] = ACTIONS(3067), + [anon_sym_BSLASHinputfrom] = ACTIONS(3067), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3067), + [anon_sym_BSLASHincludefrom] = ACTIONS(3067), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3067), + [anon_sym_BSLASHcaption] = ACTIONS(3070), + [anon_sym_BSLASHcite] = ACTIONS(3073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3076), + [anon_sym_BSLASHCite] = ACTIONS(3073), + [anon_sym_BSLASHnocite] = ACTIONS(3073), + [anon_sym_BSLASHcitet] = ACTIONS(3073), + [anon_sym_BSLASHcitep] = ACTIONS(3073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3076), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3076), + [anon_sym_BSLASHciteauthor] = ACTIONS(3073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3076), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3076), + [anon_sym_BSLASHcitetitle] = ACTIONS(3073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3076), + [anon_sym_BSLASHciteyear] = ACTIONS(3073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3076), + [anon_sym_BSLASHcitedate] = ACTIONS(3073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3076), + [anon_sym_BSLASHciteurl] = ACTIONS(3073), + [anon_sym_BSLASHfullcite] = ACTIONS(3073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3073), + [anon_sym_BSLASHcitealt] = ACTIONS(3073), + [anon_sym_BSLASHcitealp] = ACTIONS(3073), + [anon_sym_BSLASHcitetext] = ACTIONS(3073), + [anon_sym_BSLASHparencite] = ACTIONS(3073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3076), + [anon_sym_BSLASHParencite] = ACTIONS(3073), + [anon_sym_BSLASHfootcite] = ACTIONS(3073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3073), + [anon_sym_BSLASHtextcite] = ACTIONS(3073), + [anon_sym_BSLASHTextcite] = ACTIONS(3073), + [anon_sym_BSLASHsmartcite] = ACTIONS(3073), + [anon_sym_BSLASHSmartcite] = ACTIONS(3073), + [anon_sym_BSLASHsupercite] = ACTIONS(3073), + [anon_sym_BSLASHautocite] = ACTIONS(3073), + [anon_sym_BSLASHAutocite] = ACTIONS(3073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3076), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3076), + [anon_sym_BSLASHvolcite] = ACTIONS(3073), + [anon_sym_BSLASHVolcite] = ACTIONS(3073), + [anon_sym_BSLASHpvolcite] = ACTIONS(3073), + [anon_sym_BSLASHPvolcite] = ACTIONS(3073), + [anon_sym_BSLASHfvolcite] = ACTIONS(3073), + [anon_sym_BSLASHftvolcite] = ACTIONS(3073), + [anon_sym_BSLASHsvolcite] = ACTIONS(3073), + [anon_sym_BSLASHSvolcite] = ACTIONS(3073), + [anon_sym_BSLASHtvolcite] = ACTIONS(3073), + [anon_sym_BSLASHTvolcite] = ACTIONS(3073), + [anon_sym_BSLASHavolcite] = ACTIONS(3073), + [anon_sym_BSLASHAvolcite] = ACTIONS(3073), + [anon_sym_BSLASHnotecite] = ACTIONS(3073), + [anon_sym_BSLASHNotecite] = ACTIONS(3073), + [anon_sym_BSLASHpnotecite] = ACTIONS(3073), + [anon_sym_BSLASHPnotecite] = ACTIONS(3073), + [anon_sym_BSLASHfnotecite] = ACTIONS(3073), + [anon_sym_BSLASHlabel] = ACTIONS(3079), + [anon_sym_BSLASHref] = ACTIONS(3082), + [anon_sym_BSLASHeqref] = ACTIONS(3082), + [anon_sym_BSLASHvref] = ACTIONS(3082), + [anon_sym_BSLASHVref] = ACTIONS(3082), + [anon_sym_BSLASHautoref] = ACTIONS(3082), + [anon_sym_BSLASHpageref] = ACTIONS(3082), + [anon_sym_BSLASHcref] = ACTIONS(3082), + [anon_sym_BSLASHCref] = ACTIONS(3082), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3085), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3085), + [anon_sym_BSLASHnamecref] = ACTIONS(3082), + [anon_sym_BSLASHnameCref] = ACTIONS(3082), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3082), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3082), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3082), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3082), + [anon_sym_BSLASHlabelcref] = ACTIONS(3082), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3082), + [anon_sym_BSLASHcrefrange] = ACTIONS(3088), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3091), + [anon_sym_BSLASHCrefrange] = ACTIONS(3088), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3091), + [anon_sym_BSLASHnewlabel] = ACTIONS(3094), + [anon_sym_BSLASHnewcommand] = ACTIONS(3097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3100), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3100), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3100), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3100), + [anon_sym_BSLASHdef] = ACTIONS(3103), + [anon_sym_BSLASHlet] = ACTIONS(3106), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3112), + [anon_sym_BSLASHgls] = ACTIONS(3115), + [anon_sym_BSLASHGls] = ACTIONS(3115), + [anon_sym_BSLASHGLS] = ACTIONS(3115), + [anon_sym_BSLASHglspl] = ACTIONS(3115), + [anon_sym_BSLASHGlspl] = ACTIONS(3115), + [anon_sym_BSLASHGLSpl] = ACTIONS(3115), + [anon_sym_BSLASHglsdisp] = ACTIONS(3115), + [anon_sym_BSLASHglslink] = ACTIONS(3115), + [anon_sym_BSLASHglstext] = ACTIONS(3115), + [anon_sym_BSLASHGlstext] = ACTIONS(3115), + [anon_sym_BSLASHGLStext] = ACTIONS(3115), + [anon_sym_BSLASHglsfirst] = ACTIONS(3115), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3115), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3115), + [anon_sym_BSLASHglsplural] = ACTIONS(3115), + [anon_sym_BSLASHGlsplural] = ACTIONS(3115), + [anon_sym_BSLASHGLSplural] = ACTIONS(3115), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3115), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3115), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3115), + [anon_sym_BSLASHglsname] = ACTIONS(3115), + [anon_sym_BSLASHGlsname] = ACTIONS(3115), + [anon_sym_BSLASHGLSname] = ACTIONS(3115), + [anon_sym_BSLASHglssymbol] = ACTIONS(3115), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3115), + [anon_sym_BSLASHglsdesc] = ACTIONS(3115), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3115), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3115), + [anon_sym_BSLASHglsuseri] = ACTIONS(3115), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3115), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3115), + [anon_sym_BSLASHglsuserii] = ACTIONS(3115), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3115), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3115), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3115), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3115), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3115), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3115), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3115), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3115), + [anon_sym_BSLASHglsuserv] = ACTIONS(3115), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3115), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3115), + [anon_sym_BSLASHglsuservi] = ACTIONS(3115), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3115), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3115), + [anon_sym_BSLASHnewacronym] = ACTIONS(3118), + [anon_sym_BSLASHacrshort] = ACTIONS(3121), + [anon_sym_BSLASHAcrshort] = ACTIONS(3121), + [anon_sym_BSLASHACRshort] = ACTIONS(3121), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3121), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3121), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3121), + [anon_sym_BSLASHacrlong] = ACTIONS(3121), + [anon_sym_BSLASHAcrlong] = ACTIONS(3121), + [anon_sym_BSLASHACRlong] = ACTIONS(3121), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3121), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3121), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3121), + [anon_sym_BSLASHacrfull] = ACTIONS(3121), + [anon_sym_BSLASHAcrfull] = ACTIONS(3121), + [anon_sym_BSLASHACRfull] = ACTIONS(3121), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3121), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3121), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3121), + [anon_sym_BSLASHacs] = ACTIONS(3121), + [anon_sym_BSLASHAcs] = ACTIONS(3121), + [anon_sym_BSLASHacsp] = ACTIONS(3121), + [anon_sym_BSLASHAcsp] = ACTIONS(3121), + [anon_sym_BSLASHacl] = ACTIONS(3121), + [anon_sym_BSLASHAcl] = ACTIONS(3121), + [anon_sym_BSLASHaclp] = ACTIONS(3121), + [anon_sym_BSLASHAclp] = ACTIONS(3121), + [anon_sym_BSLASHacf] = ACTIONS(3121), + [anon_sym_BSLASHAcf] = ACTIONS(3121), + [anon_sym_BSLASHacfp] = ACTIONS(3121), + [anon_sym_BSLASHAcfp] = ACTIONS(3121), + [anon_sym_BSLASHac] = ACTIONS(3121), + [anon_sym_BSLASHAc] = ACTIONS(3121), + [anon_sym_BSLASHacp] = ACTIONS(3121), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3121), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3121), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3121), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3121), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3121), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3121), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3121), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3121), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3121), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3121), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3124), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3124), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3130), + [anon_sym_BSLASHcolor] = ACTIONS(3133), + [anon_sym_BSLASHcolorbox] = ACTIONS(3133), + [anon_sym_BSLASHtextcolor] = ACTIONS(3133), + [anon_sym_BSLASHpagecolor] = ACTIONS(3133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3136), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3136), + [anon_sym_BSLASHtext] = ACTIONS(2687), + [anon_sym_BSLASHintertext] = ACTIONS(2687), + [anon_sym_shortintertext] = ACTIONS(2687), }, [216] = { - [sym_block_comment] = STATE(1077), - [sym_operator] = STATE(1077), - [sym__command] = STATE(1077), - [sym_generic_command] = STATE(1077), - [sym_package_include] = STATE(1077), - [sym_class_include] = STATE(1077), - [sym_latex_include] = STATE(1077), - [sym_biblatex_include] = STATE(1077), - [sym_bibtex_include] = STATE(1077), - [sym_graphics_include] = STATE(1077), - [sym_svg_include] = STATE(1077), - [sym_inkscape_include] = STATE(1077), - [sym_verbatim_include] = STATE(1077), - [sym_import_include] = STATE(1077), - [sym_caption] = STATE(1077), - [sym_citation] = STATE(1077), - [sym_label_definition] = STATE(1077), - [sym_label_reference] = STATE(1077), - [sym_label_reference_range] = STATE(1077), - [sym_label_number] = STATE(1077), - [sym_new_command_definition] = STATE(1077), - [sym_old_command_definition] = STATE(1077), - [sym_let_command_definition] = STATE(1077), - [sym_environment_definition] = STATE(1077), - [sym_glossary_entry_definition] = STATE(1077), - [sym_glossary_entry_reference] = STATE(1077), - [sym_acronym_definition] = STATE(1077), - [sym_acronym_reference] = STATE(1077), - [sym_theorem_definition] = STATE(1077), - [sym_color_definition] = STATE(1077), - [sym_color_set_definition] = STATE(1077), - [sym_color_reference] = STATE(1077), - [sym_tikz_library_import] = STATE(1077), - [aux_sym_text_repeat1] = STATE(214), - [sym_command_name] = ACTIONS(217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_RBRACK] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_EQ] = ACTIONS(2635), - [anon_sym_BSLASHpart] = ACTIONS(2637), - [anon_sym_BSLASHpart_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddpart] = ACTIONS(2637), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2635), - [anon_sym_BSLASHchapter] = ACTIONS(2637), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddchap] = ACTIONS(2637), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsection] = ACTIONS(2637), - [anon_sym_BSLASHsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHaddsec] = ACTIONS(2637), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubsection] = ACTIONS(2637), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubsubsection] = ACTIONS(2637), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2635), - [anon_sym_BSLASHparagraph] = ACTIONS(2637), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2635), - [anon_sym_BSLASHsubparagraph] = ACTIONS(2637), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2635), - [anon_sym_BSLASHitem] = ACTIONS(2637), - [anon_sym_BSLASHitem_STAR] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [sym_word] = ACTIONS(257), - [sym_placeholder] = ACTIONS(259), - [anon_sym_PLUS] = ACTIONS(261), - [anon_sym_DASH] = ACTIONS(261), - [anon_sym_STAR] = ACTIONS(261), - [anon_sym_SLASH] = ACTIONS(261), - [anon_sym_CARET] = ACTIONS(261), - [anon_sym__] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(261), - [anon_sym_GT] = ACTIONS(261), - [anon_sym_BANG] = ACTIONS(261), - [anon_sym_PIPE] = ACTIONS(261), - [anon_sym_COLON] = ACTIONS(261), - [anon_sym_SQUOTE] = ACTIONS(261), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2635), - [anon_sym_DOLLAR] = ACTIONS(2637), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2635), - [anon_sym_BSLASHbegin] = ACTIONS(2637), - [anon_sym_BSLASHend] = ACTIONS(2637), - [anon_sym_BSLASHusepackage] = ACTIONS(273), - [anon_sym_BSLASHRequirePackage] = ACTIONS(273), - [anon_sym_BSLASHdocumentclass] = ACTIONS(275), - [anon_sym_BSLASHinclude] = ACTIONS(277), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(277), - [anon_sym_BSLASHinput] = ACTIONS(277), - [anon_sym_BSLASHsubfile] = ACTIONS(277), - [anon_sym_BSLASHaddbibresource] = ACTIONS(279), - [anon_sym_BSLASHbibliography] = ACTIONS(281), - [anon_sym_BSLASHincludegraphics] = ACTIONS(283), - [anon_sym_BSLASHincludesvg] = ACTIONS(285), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(289), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(289), - [anon_sym_BSLASHimport] = ACTIONS(291), - [anon_sym_BSLASHsubimport] = ACTIONS(291), - [anon_sym_BSLASHinputfrom] = ACTIONS(291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(291), - [anon_sym_BSLASHincludefrom] = ACTIONS(291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(291), - [anon_sym_BSLASHcaption] = ACTIONS(293), - [anon_sym_BSLASHcite] = ACTIONS(295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(297), - [anon_sym_BSLASHCite] = ACTIONS(295), - [anon_sym_BSLASHnocite] = ACTIONS(295), - [anon_sym_BSLASHcitet] = ACTIONS(295), - [anon_sym_BSLASHcitep] = ACTIONS(295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteauthor] = ACTIONS(295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitetitle] = ACTIONS(295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteyear] = ACTIONS(295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(297), - [anon_sym_BSLASHcitedate] = ACTIONS(295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(297), - [anon_sym_BSLASHciteurl] = ACTIONS(295), - [anon_sym_BSLASHfullcite] = ACTIONS(295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(295), - [anon_sym_BSLASHcitealt] = ACTIONS(295), - [anon_sym_BSLASHcitealp] = ACTIONS(295), - [anon_sym_BSLASHcitetext] = ACTIONS(295), - [anon_sym_BSLASHparencite] = ACTIONS(295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(297), - [anon_sym_BSLASHParencite] = ACTIONS(295), - [anon_sym_BSLASHfootcite] = ACTIONS(295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(295), - [anon_sym_BSLASHtextcite] = ACTIONS(295), - [anon_sym_BSLASHTextcite] = ACTIONS(295), - [anon_sym_BSLASHsmartcite] = ACTIONS(295), - [anon_sym_BSLASHSmartcite] = ACTIONS(295), - [anon_sym_BSLASHsupercite] = ACTIONS(295), - [anon_sym_BSLASHautocite] = ACTIONS(295), - [anon_sym_BSLASHAutocite] = ACTIONS(295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(297), - [anon_sym_BSLASHvolcite] = ACTIONS(295), - [anon_sym_BSLASHVolcite] = ACTIONS(295), - [anon_sym_BSLASHpvolcite] = ACTIONS(295), - [anon_sym_BSLASHPvolcite] = ACTIONS(295), - [anon_sym_BSLASHfvolcite] = ACTIONS(295), - [anon_sym_BSLASHftvolcite] = ACTIONS(295), - [anon_sym_BSLASHsvolcite] = ACTIONS(295), - [anon_sym_BSLASHSvolcite] = ACTIONS(295), - [anon_sym_BSLASHtvolcite] = ACTIONS(295), - [anon_sym_BSLASHTvolcite] = ACTIONS(295), - [anon_sym_BSLASHavolcite] = ACTIONS(295), - [anon_sym_BSLASHAvolcite] = ACTIONS(295), - [anon_sym_BSLASHnotecite] = ACTIONS(295), - [anon_sym_BSLASHNotecite] = ACTIONS(295), - [anon_sym_BSLASHpnotecite] = ACTIONS(295), - [anon_sym_BSLASHPnotecite] = ACTIONS(295), - [anon_sym_BSLASHfnotecite] = ACTIONS(295), - [anon_sym_BSLASHlabel] = ACTIONS(299), - [anon_sym_BSLASHref] = ACTIONS(301), - [anon_sym_BSLASHeqref] = ACTIONS(301), - [anon_sym_BSLASHvref] = ACTIONS(301), - [anon_sym_BSLASHVref] = ACTIONS(301), - [anon_sym_BSLASHautoref] = ACTIONS(301), - [anon_sym_BSLASHpageref] = ACTIONS(301), - [anon_sym_BSLASHcref] = ACTIONS(301), - [anon_sym_BSLASHCref] = ACTIONS(301), - [anon_sym_BSLASHcref_STAR] = ACTIONS(303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(303), - [anon_sym_BSLASHnamecref] = ACTIONS(301), - [anon_sym_BSLASHnameCref] = ACTIONS(301), - [anon_sym_BSLASHlcnamecref] = ACTIONS(301), - [anon_sym_BSLASHnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHnameCrefs] = ACTIONS(301), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(301), - [anon_sym_BSLASHlabelcref] = ACTIONS(301), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(301), - [anon_sym_BSLASHcrefrange] = ACTIONS(305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHCrefrange] = ACTIONS(305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(307), - [anon_sym_BSLASHnewlabel] = ACTIONS(309), - [anon_sym_BSLASHnewcommand] = ACTIONS(311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHrenewcommand] = ACTIONS(311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(313), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(313), - [anon_sym_BSLASHdef] = ACTIONS(315), - [anon_sym_BSLASHlet] = ACTIONS(317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(319), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(321), - [anon_sym_BSLASHgls] = ACTIONS(323), - [anon_sym_BSLASHGls] = ACTIONS(323), - [anon_sym_BSLASHGLS] = ACTIONS(323), - [anon_sym_BSLASHglspl] = ACTIONS(323), - [anon_sym_BSLASHGlspl] = ACTIONS(323), - [anon_sym_BSLASHGLSpl] = ACTIONS(323), - [anon_sym_BSLASHglsdisp] = ACTIONS(323), - [anon_sym_BSLASHglslink] = ACTIONS(323), - [anon_sym_BSLASHglstext] = ACTIONS(323), - [anon_sym_BSLASHGlstext] = ACTIONS(323), - [anon_sym_BSLASHGLStext] = ACTIONS(323), - [anon_sym_BSLASHglsfirst] = ACTIONS(323), - [anon_sym_BSLASHGlsfirst] = ACTIONS(323), - [anon_sym_BSLASHGLSfirst] = ACTIONS(323), - [anon_sym_BSLASHglsplural] = ACTIONS(323), - [anon_sym_BSLASHGlsplural] = ACTIONS(323), - [anon_sym_BSLASHGLSplural] = ACTIONS(323), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(323), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(323), - [anon_sym_BSLASHglsname] = ACTIONS(323), - [anon_sym_BSLASHGlsname] = ACTIONS(323), - [anon_sym_BSLASHGLSname] = ACTIONS(323), - [anon_sym_BSLASHglssymbol] = ACTIONS(323), - [anon_sym_BSLASHGlssymbol] = ACTIONS(323), - [anon_sym_BSLASHglsdesc] = ACTIONS(323), - [anon_sym_BSLASHGlsdesc] = ACTIONS(323), - [anon_sym_BSLASHGLSdesc] = ACTIONS(323), - [anon_sym_BSLASHglsuseri] = ACTIONS(323), - [anon_sym_BSLASHGlsuseri] = ACTIONS(323), - [anon_sym_BSLASHGLSuseri] = ACTIONS(323), - [anon_sym_BSLASHglsuserii] = ACTIONS(323), - [anon_sym_BSLASHGlsuserii] = ACTIONS(323), - [anon_sym_BSLASHGLSuserii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(323), - [anon_sym_BSLASHglsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(323), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(323), - [anon_sym_BSLASHglsuserv] = ACTIONS(323), - [anon_sym_BSLASHGlsuserv] = ACTIONS(323), - [anon_sym_BSLASHGLSuserv] = ACTIONS(323), - [anon_sym_BSLASHglsuservi] = ACTIONS(323), - [anon_sym_BSLASHGlsuservi] = ACTIONS(323), - [anon_sym_BSLASHGLSuservi] = ACTIONS(323), - [anon_sym_BSLASHnewacronym] = ACTIONS(325), - [anon_sym_BSLASHacrshort] = ACTIONS(327), - [anon_sym_BSLASHAcrshort] = ACTIONS(327), - [anon_sym_BSLASHACRshort] = ACTIONS(327), - [anon_sym_BSLASHacrshortpl] = ACTIONS(327), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(327), - [anon_sym_BSLASHACRshortpl] = ACTIONS(327), - [anon_sym_BSLASHacrlong] = ACTIONS(327), - [anon_sym_BSLASHAcrlong] = ACTIONS(327), - [anon_sym_BSLASHACRlong] = ACTIONS(327), - [anon_sym_BSLASHacrlongpl] = ACTIONS(327), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(327), - [anon_sym_BSLASHACRlongpl] = ACTIONS(327), - [anon_sym_BSLASHacrfull] = ACTIONS(327), - [anon_sym_BSLASHAcrfull] = ACTIONS(327), - [anon_sym_BSLASHACRfull] = ACTIONS(327), - [anon_sym_BSLASHacrfullpl] = ACTIONS(327), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(327), - [anon_sym_BSLASHACRfullpl] = ACTIONS(327), - [anon_sym_BSLASHacs] = ACTIONS(327), - [anon_sym_BSLASHAcs] = ACTIONS(327), - [anon_sym_BSLASHacsp] = ACTIONS(327), - [anon_sym_BSLASHAcsp] = ACTIONS(327), - [anon_sym_BSLASHacl] = ACTIONS(327), - [anon_sym_BSLASHAcl] = ACTIONS(327), - [anon_sym_BSLASHaclp] = ACTIONS(327), - [anon_sym_BSLASHAclp] = ACTIONS(327), - [anon_sym_BSLASHacf] = ACTIONS(327), - [anon_sym_BSLASHAcf] = ACTIONS(327), - [anon_sym_BSLASHacfp] = ACTIONS(327), - [anon_sym_BSLASHAcfp] = ACTIONS(327), - [anon_sym_BSLASHac] = ACTIONS(327), - [anon_sym_BSLASHAc] = ACTIONS(327), - [anon_sym_BSLASHacp] = ACTIONS(327), - [anon_sym_BSLASHglsentrylong] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(327), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryshort] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(327), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(327), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(327), - [anon_sym_BSLASHnewtheorem] = ACTIONS(329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(331), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(333), - [anon_sym_BSLASHcolor] = ACTIONS(335), - [anon_sym_BSLASHcolorbox] = ACTIONS(335), - [anon_sym_BSLASHtextcolor] = ACTIONS(335), - [anon_sym_BSLASHpagecolor] = ACTIONS(335), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(337), + [sym_block_comment] = STATE(971), + [sym_operator] = STATE(971), + [sym__command] = STATE(971), + [sym_generic_command] = STATE(971), + [sym_package_include] = STATE(971), + [sym_class_include] = STATE(971), + [sym_latex_include] = STATE(971), + [sym_biblatex_include] = STATE(971), + [sym_bibtex_include] = STATE(971), + [sym_graphics_include] = STATE(971), + [sym_svg_include] = STATE(971), + [sym_inkscape_include] = STATE(971), + [sym_verbatim_include] = STATE(971), + [sym_import_include] = STATE(971), + [sym_caption] = STATE(971), + [sym_citation] = STATE(971), + [sym_label_definition] = STATE(971), + [sym_label_reference] = STATE(971), + [sym_label_reference_range] = STATE(971), + [sym_label_number] = STATE(971), + [sym_new_command_definition] = STATE(971), + [sym_old_command_definition] = STATE(971), + [sym_let_command_definition] = STATE(971), + [sym_environment_definition] = STATE(971), + [sym_glossary_entry_definition] = STATE(971), + [sym_glossary_entry_reference] = STATE(971), + [sym_acronym_definition] = STATE(971), + [sym_acronym_reference] = STATE(971), + [sym_theorem_definition] = STATE(971), + [sym_color_definition] = STATE(971), + [sym_color_set_definition] = STATE(971), + [sym_color_reference] = STATE(971), + [sym_tikz_library_import] = STATE(971), + [aux_sym_text_repeat1] = STATE(216), + [sym_command_name] = ACTIONS(3139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_BSLASHpart] = ACTIONS(2687), + [anon_sym_BSLASHpart_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddpart] = ACTIONS(2687), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(2679), + [anon_sym_BSLASHchapter] = ACTIONS(2687), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddchap] = ACTIONS(2687), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsection] = ACTIONS(2687), + [anon_sym_BSLASHsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHaddsec] = ACTIONS(2687), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubsection] = ACTIONS(2687), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubsubsection] = ACTIONS(2687), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(2679), + [anon_sym_BSLASHparagraph] = ACTIONS(2687), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(2679), + [anon_sym_BSLASHsubparagraph] = ACTIONS(2687), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(2679), + [anon_sym_BSLASHitem] = ACTIONS(2687), + [anon_sym_BSLASHitem_STAR] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [sym_word] = ACTIONS(3145), + [sym_placeholder] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3151), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_SLASH] = ACTIONS(3151), + [anon_sym_CARET] = ACTIONS(3151), + [anon_sym__] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3151), + [anon_sym_GT] = ACTIONS(3151), + [anon_sym_BANG] = ACTIONS(3151), + [anon_sym_PIPE] = ACTIONS(3151), + [anon_sym_COLON] = ACTIONS(3151), + [anon_sym_SQUOTE] = ACTIONS(3151), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), + [anon_sym_BSLASH_RPAREN] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), + [anon_sym_BSLASHbegin] = ACTIONS(2687), + [anon_sym_BSLASHusepackage] = ACTIONS(3154), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3154), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3157), + [anon_sym_BSLASHinclude] = ACTIONS(3160), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3160), + [anon_sym_BSLASHinput] = ACTIONS(3160), + [anon_sym_BSLASHsubfile] = ACTIONS(3160), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3163), + [anon_sym_BSLASHbibliography] = ACTIONS(3166), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3169), + [anon_sym_BSLASHincludesvg] = ACTIONS(3172), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3175), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3178), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3178), + [anon_sym_BSLASHimport] = ACTIONS(3181), + [anon_sym_BSLASHsubimport] = ACTIONS(3181), + [anon_sym_BSLASHinputfrom] = ACTIONS(3181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3181), + [anon_sym_BSLASHincludefrom] = ACTIONS(3181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3181), + [anon_sym_BSLASHcaption] = ACTIONS(3184), + [anon_sym_BSLASHcite] = ACTIONS(3187), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3190), + [anon_sym_BSLASHCite] = ACTIONS(3187), + [anon_sym_BSLASHnocite] = ACTIONS(3187), + [anon_sym_BSLASHcitet] = ACTIONS(3187), + [anon_sym_BSLASHcitep] = ACTIONS(3187), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3190), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3190), + [anon_sym_BSLASHciteauthor] = ACTIONS(3187), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3190), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3187), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3190), + [anon_sym_BSLASHcitetitle] = ACTIONS(3187), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3190), + [anon_sym_BSLASHciteyear] = ACTIONS(3187), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3190), + [anon_sym_BSLASHcitedate] = ACTIONS(3187), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3190), + [anon_sym_BSLASHciteurl] = ACTIONS(3187), + [anon_sym_BSLASHfullcite] = ACTIONS(3187), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3187), + [anon_sym_BSLASHcitealt] = ACTIONS(3187), + [anon_sym_BSLASHcitealp] = ACTIONS(3187), + [anon_sym_BSLASHcitetext] = ACTIONS(3187), + [anon_sym_BSLASHparencite] = ACTIONS(3187), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3190), + [anon_sym_BSLASHParencite] = ACTIONS(3187), + [anon_sym_BSLASHfootcite] = ACTIONS(3187), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3187), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3187), + [anon_sym_BSLASHtextcite] = ACTIONS(3187), + [anon_sym_BSLASHTextcite] = ACTIONS(3187), + [anon_sym_BSLASHsmartcite] = ACTIONS(3187), + [anon_sym_BSLASHSmartcite] = ACTIONS(3187), + [anon_sym_BSLASHsupercite] = ACTIONS(3187), + [anon_sym_BSLASHautocite] = ACTIONS(3187), + [anon_sym_BSLASHAutocite] = ACTIONS(3187), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3190), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3190), + [anon_sym_BSLASHvolcite] = ACTIONS(3187), + [anon_sym_BSLASHVolcite] = ACTIONS(3187), + [anon_sym_BSLASHpvolcite] = ACTIONS(3187), + [anon_sym_BSLASHPvolcite] = ACTIONS(3187), + [anon_sym_BSLASHfvolcite] = ACTIONS(3187), + [anon_sym_BSLASHftvolcite] = ACTIONS(3187), + [anon_sym_BSLASHsvolcite] = ACTIONS(3187), + [anon_sym_BSLASHSvolcite] = ACTIONS(3187), + [anon_sym_BSLASHtvolcite] = ACTIONS(3187), + [anon_sym_BSLASHTvolcite] = ACTIONS(3187), + [anon_sym_BSLASHavolcite] = ACTIONS(3187), + [anon_sym_BSLASHAvolcite] = ACTIONS(3187), + [anon_sym_BSLASHnotecite] = ACTIONS(3187), + [anon_sym_BSLASHNotecite] = ACTIONS(3187), + [anon_sym_BSLASHpnotecite] = ACTIONS(3187), + [anon_sym_BSLASHPnotecite] = ACTIONS(3187), + [anon_sym_BSLASHfnotecite] = ACTIONS(3187), + [anon_sym_BSLASHlabel] = ACTIONS(3193), + [anon_sym_BSLASHref] = ACTIONS(3196), + [anon_sym_BSLASHeqref] = ACTIONS(3196), + [anon_sym_BSLASHvref] = ACTIONS(3196), + [anon_sym_BSLASHVref] = ACTIONS(3196), + [anon_sym_BSLASHautoref] = ACTIONS(3196), + [anon_sym_BSLASHpageref] = ACTIONS(3196), + [anon_sym_BSLASHcref] = ACTIONS(3196), + [anon_sym_BSLASHCref] = ACTIONS(3196), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3199), + [anon_sym_BSLASHnamecref] = ACTIONS(3196), + [anon_sym_BSLASHnameCref] = ACTIONS(3196), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3196), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3196), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3196), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3196), + [anon_sym_BSLASHlabelcref] = ACTIONS(3196), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3196), + [anon_sym_BSLASHcrefrange] = ACTIONS(3202), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3205), + [anon_sym_BSLASHCrefrange] = ACTIONS(3202), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3205), + [anon_sym_BSLASHnewlabel] = ACTIONS(3208), + [anon_sym_BSLASHnewcommand] = ACTIONS(3211), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3214), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3211), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3214), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3211), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3214), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3211), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3214), + [anon_sym_BSLASHdef] = ACTIONS(3217), + [anon_sym_BSLASHlet] = ACTIONS(3220), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3223), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3226), + [anon_sym_BSLASHgls] = ACTIONS(3229), + [anon_sym_BSLASHGls] = ACTIONS(3229), + [anon_sym_BSLASHGLS] = ACTIONS(3229), + [anon_sym_BSLASHglspl] = ACTIONS(3229), + [anon_sym_BSLASHGlspl] = ACTIONS(3229), + [anon_sym_BSLASHGLSpl] = ACTIONS(3229), + [anon_sym_BSLASHglsdisp] = ACTIONS(3229), + [anon_sym_BSLASHglslink] = ACTIONS(3229), + [anon_sym_BSLASHglstext] = ACTIONS(3229), + [anon_sym_BSLASHGlstext] = ACTIONS(3229), + [anon_sym_BSLASHGLStext] = ACTIONS(3229), + [anon_sym_BSLASHglsfirst] = ACTIONS(3229), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3229), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3229), + [anon_sym_BSLASHglsplural] = ACTIONS(3229), + [anon_sym_BSLASHGlsplural] = ACTIONS(3229), + [anon_sym_BSLASHGLSplural] = ACTIONS(3229), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3229), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3229), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3229), + [anon_sym_BSLASHglsname] = ACTIONS(3229), + [anon_sym_BSLASHGlsname] = ACTIONS(3229), + [anon_sym_BSLASHGLSname] = ACTIONS(3229), + [anon_sym_BSLASHglssymbol] = ACTIONS(3229), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3229), + [anon_sym_BSLASHglsdesc] = ACTIONS(3229), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3229), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3229), + [anon_sym_BSLASHglsuseri] = ACTIONS(3229), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3229), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3229), + [anon_sym_BSLASHglsuserii] = ACTIONS(3229), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3229), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3229), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3229), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3229), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3229), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3229), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3229), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3229), + [anon_sym_BSLASHglsuserv] = ACTIONS(3229), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3229), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3229), + [anon_sym_BSLASHglsuservi] = ACTIONS(3229), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3229), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3229), + [anon_sym_BSLASHnewacronym] = ACTIONS(3232), + [anon_sym_BSLASHacrshort] = ACTIONS(3235), + [anon_sym_BSLASHAcrshort] = ACTIONS(3235), + [anon_sym_BSLASHACRshort] = ACTIONS(3235), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3235), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3235), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3235), + [anon_sym_BSLASHacrlong] = ACTIONS(3235), + [anon_sym_BSLASHAcrlong] = ACTIONS(3235), + [anon_sym_BSLASHACRlong] = ACTIONS(3235), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3235), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3235), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3235), + [anon_sym_BSLASHacrfull] = ACTIONS(3235), + [anon_sym_BSLASHAcrfull] = ACTIONS(3235), + [anon_sym_BSLASHACRfull] = ACTIONS(3235), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3235), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3235), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3235), + [anon_sym_BSLASHacs] = ACTIONS(3235), + [anon_sym_BSLASHAcs] = ACTIONS(3235), + [anon_sym_BSLASHacsp] = ACTIONS(3235), + [anon_sym_BSLASHAcsp] = ACTIONS(3235), + [anon_sym_BSLASHacl] = ACTIONS(3235), + [anon_sym_BSLASHAcl] = ACTIONS(3235), + [anon_sym_BSLASHaclp] = ACTIONS(3235), + [anon_sym_BSLASHAclp] = ACTIONS(3235), + [anon_sym_BSLASHacf] = ACTIONS(3235), + [anon_sym_BSLASHAcf] = ACTIONS(3235), + [anon_sym_BSLASHacfp] = ACTIONS(3235), + [anon_sym_BSLASHAcfp] = ACTIONS(3235), + [anon_sym_BSLASHac] = ACTIONS(3235), + [anon_sym_BSLASHAc] = ACTIONS(3235), + [anon_sym_BSLASHacp] = ACTIONS(3235), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3235), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3235), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3235), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3235), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3235), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3235), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3235), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3235), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3235), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3235), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3238), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3238), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3244), + [anon_sym_BSLASHcolor] = ACTIONS(3247), + [anon_sym_BSLASHcolorbox] = ACTIONS(3247), + [anon_sym_BSLASHtextcolor] = ACTIONS(3247), + [anon_sym_BSLASHpagecolor] = ACTIONS(3247), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3250), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3250), + [anon_sym_BSLASHtext] = ACTIONS(2687), + [anon_sym_BSLASHintertext] = ACTIONS(2687), + [anon_sym_shortintertext] = ACTIONS(2687), }, [217] = { [sym_block_comment] = STATE(226), @@ -93933,22 +92580,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_curly_group] = STATE(226), [sym_mixed_group] = STATE(226), [sym_text] = STATE(226), - [sym_operator] = STATE(1392), + [sym_operator] = STATE(1396), [sym_displayed_equation] = STATE(226), [sym_inline_formula] = STATE(226), [sym_math_set] = STATE(226), - [sym_begin] = STATE(9), + [sym_begin] = STATE(21), [sym_generic_environment] = STATE(226), [sym_comment_environment] = STATE(226), - [sym__trivia_begin_comment] = STATE(2341), + [sym__trivia_begin_comment] = STATE(2355), [sym_verbatim_environment] = STATE(226), - [sym__trivia_begin_verbatim] = STATE(2342), + [sym__trivia_begin_verbatim] = STATE(2356), [sym_listing_environment] = STATE(226), - [sym__trivia_begin_listing] = STATE(2343), + [sym__trivia_begin_listing] = STATE(2357), [sym_minted_environment] = STATE(226), - [sym__trivia_begin_minted] = STATE(2344), + [sym__trivia_begin_minted] = STATE(2358), [sym_pycode_environment] = STATE(226), - [sym__trivia_begin_pycode] = STATE(2345), + [sym__trivia_begin_pycode] = STATE(2359), [sym__command] = STATE(226), [sym_generic_command] = STATE(226), [sym_package_include] = STATE(226), @@ -93980,878 +92627,1195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(226), [sym_color_reference] = STATE(226), [sym_tikz_library_import] = STATE(226), + [sym_text_mode] = STATE(226), [aux_sym_mixed_group_repeat1] = STATE(226), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_EQ] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3259), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), }, [218] = { - [sym_block_comment] = STATE(227), - [sym__text_with_env_content] = STATE(227), - [sym__text_content] = STATE(227), - [sym_curly_group] = STATE(227), - [sym_mixed_group] = STATE(227), - [sym_text] = STATE(227), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(227), - [sym_inline_formula] = STATE(227), - [sym_math_set] = STATE(227), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(227), - [sym_comment_environment] = STATE(227), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(227), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(227), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(227), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(227), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(227), - [sym_generic_command] = STATE(227), - [sym_package_include] = STATE(227), - [sym_class_include] = STATE(227), - [sym_latex_include] = STATE(227), - [sym_biblatex_include] = STATE(227), - [sym_bibtex_include] = STATE(227), - [sym_graphics_include] = STATE(227), - [sym_svg_include] = STATE(227), - [sym_inkscape_include] = STATE(227), - [sym_verbatim_include] = STATE(227), - [sym_import_include] = STATE(227), - [sym_caption] = STATE(227), - [sym_citation] = STATE(227), - [sym_label_definition] = STATE(227), - [sym_label_reference] = STATE(227), - [sym_label_reference_range] = STATE(227), - [sym_label_number] = STATE(227), - [sym_new_command_definition] = STATE(227), - [sym_old_command_definition] = STATE(227), - [sym_let_command_definition] = STATE(227), - [sym_environment_definition] = STATE(227), - [sym_glossary_entry_definition] = STATE(227), - [sym_glossary_entry_reference] = STATE(227), - [sym_acronym_definition] = STATE(227), - [sym_acronym_reference] = STATE(227), - [sym_theorem_definition] = STATE(227), - [sym_color_definition] = STATE(227), - [sym_color_set_definition] = STATE(227), - [sym_color_reference] = STATE(227), - [sym_tikz_library_import] = STATE(227), - [aux_sym_mixed_group_repeat1] = STATE(227), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3305), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), + [sym_block_comment] = STATE(226), + [sym__text_with_env_content] = STATE(226), + [sym__text_content] = STATE(226), + [sym_curly_group] = STATE(226), + [sym_mixed_group] = STATE(226), + [sym_text] = STATE(226), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(226), + [sym_inline_formula] = STATE(226), + [sym_math_set] = STATE(226), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(226), + [sym_comment_environment] = STATE(226), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(226), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(226), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(226), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(226), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(226), + [sym_generic_command] = STATE(226), + [sym_package_include] = STATE(226), + [sym_class_include] = STATE(226), + [sym_latex_include] = STATE(226), + [sym_biblatex_include] = STATE(226), + [sym_bibtex_include] = STATE(226), + [sym_graphics_include] = STATE(226), + [sym_svg_include] = STATE(226), + [sym_inkscape_include] = STATE(226), + [sym_verbatim_include] = STATE(226), + [sym_import_include] = STATE(226), + [sym_caption] = STATE(226), + [sym_citation] = STATE(226), + [sym_label_definition] = STATE(226), + [sym_label_reference] = STATE(226), + [sym_label_reference_range] = STATE(226), + [sym_label_number] = STATE(226), + [sym_new_command_definition] = STATE(226), + [sym_old_command_definition] = STATE(226), + [sym_let_command_definition] = STATE(226), + [sym_environment_definition] = STATE(226), + [sym_glossary_entry_definition] = STATE(226), + [sym_glossary_entry_reference] = STATE(226), + [sym_acronym_definition] = STATE(226), + [sym_acronym_reference] = STATE(226), + [sym_theorem_definition] = STATE(226), + [sym_color_definition] = STATE(226), + [sym_color_set_definition] = STATE(226), + [sym_color_reference] = STATE(226), + [sym_tikz_library_import] = STATE(226), + [sym_text_mode] = STATE(226), + [aux_sym_mixed_group_repeat1] = STATE(226), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3347), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), }, [219] = { - [sym_block_comment] = STATE(227), - [sym__text_with_env_content] = STATE(227), - [sym__text_content] = STATE(227), - [sym_curly_group] = STATE(227), - [sym_mixed_group] = STATE(227), - [sym_text] = STATE(227), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(227), - [sym_inline_formula] = STATE(227), - [sym_math_set] = STATE(227), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(227), - [sym_comment_environment] = STATE(227), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(227), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(227), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(227), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(227), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(227), - [sym_generic_command] = STATE(227), - [sym_package_include] = STATE(227), - [sym_class_include] = STATE(227), - [sym_latex_include] = STATE(227), - [sym_biblatex_include] = STATE(227), - [sym_bibtex_include] = STATE(227), - [sym_graphics_include] = STATE(227), - [sym_svg_include] = STATE(227), - [sym_inkscape_include] = STATE(227), - [sym_verbatim_include] = STATE(227), - [sym_import_include] = STATE(227), - [sym_caption] = STATE(227), - [sym_citation] = STATE(227), - [sym_label_definition] = STATE(227), - [sym_label_reference] = STATE(227), - [sym_label_reference_range] = STATE(227), - [sym_label_number] = STATE(227), - [sym_new_command_definition] = STATE(227), - [sym_old_command_definition] = STATE(227), - [sym_let_command_definition] = STATE(227), - [sym_environment_definition] = STATE(227), - [sym_glossary_entry_definition] = STATE(227), - [sym_glossary_entry_reference] = STATE(227), - [sym_acronym_definition] = STATE(227), - [sym_acronym_reference] = STATE(227), - [sym_theorem_definition] = STATE(227), - [sym_color_definition] = STATE(227), - [sym_color_set_definition] = STATE(227), - [sym_color_reference] = STATE(227), - [sym_tikz_library_import] = STATE(227), - [aux_sym_mixed_group_repeat1] = STATE(227), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3309), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [sym_block_comment] = STATE(219), + [sym__text_with_env_content] = STATE(219), + [sym__text_content] = STATE(219), + [sym_curly_group] = STATE(219), + [sym_brack_group] = STATE(219), + [sym_text] = STATE(219), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(219), + [sym_inline_formula] = STATE(219), + [sym_math_set] = STATE(219), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(219), + [sym_comment_environment] = STATE(219), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(219), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(219), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(219), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(219), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(219), + [sym_generic_command] = STATE(219), + [sym_package_include] = STATE(219), + [sym_class_include] = STATE(219), + [sym_latex_include] = STATE(219), + [sym_biblatex_include] = STATE(219), + [sym_bibtex_include] = STATE(219), + [sym_graphics_include] = STATE(219), + [sym_svg_include] = STATE(219), + [sym_inkscape_include] = STATE(219), + [sym_verbatim_include] = STATE(219), + [sym_import_include] = STATE(219), + [sym_caption] = STATE(219), + [sym_citation] = STATE(219), + [sym_label_definition] = STATE(219), + [sym_label_reference] = STATE(219), + [sym_label_reference_range] = STATE(219), + [sym_label_number] = STATE(219), + [sym_new_command_definition] = STATE(219), + [sym_old_command_definition] = STATE(219), + [sym_let_command_definition] = STATE(219), + [sym_environment_definition] = STATE(219), + [sym_glossary_entry_definition] = STATE(219), + [sym_glossary_entry_reference] = STATE(219), + [sym_acronym_definition] = STATE(219), + [sym_acronym_reference] = STATE(219), + [sym_theorem_definition] = STATE(219), + [sym_color_definition] = STATE(219), + [sym_color_set_definition] = STATE(219), + [sym_color_reference] = STATE(219), + [sym_tikz_library_import] = STATE(219), + [sym_text_mode] = STATE(219), + [aux_sym_brack_group_repeat1] = STATE(219), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3349), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3352), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_RBRACK] = ACTIONS(3361), + [anon_sym_COMMA] = ACTIONS(3355), + [anon_sym_EQ] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3363), + [sym_word] = ACTIONS(3366), + [sym_placeholder] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3372), + [anon_sym_DASH] = ACTIONS(3372), + [anon_sym_STAR] = ACTIONS(3372), + [anon_sym_SLASH] = ACTIONS(3372), + [anon_sym_CARET] = ACTIONS(3372), + [anon_sym__] = ACTIONS(3372), + [anon_sym_LT] = ACTIONS(3372), + [anon_sym_GT] = ACTIONS(3372), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_PIPE] = ACTIONS(3372), + [anon_sym_COLON] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3372), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3375), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3375), + [anon_sym_DOLLAR] = ACTIONS(3378), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3381), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3384), + [anon_sym_BSLASHbegin] = ACTIONS(3387), + [anon_sym_BSLASHusepackage] = ACTIONS(3390), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3390), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3393), + [anon_sym_BSLASHinclude] = ACTIONS(3396), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3396), + [anon_sym_BSLASHinput] = ACTIONS(3396), + [anon_sym_BSLASHsubfile] = ACTIONS(3396), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3399), + [anon_sym_BSLASHbibliography] = ACTIONS(3402), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3405), + [anon_sym_BSLASHincludesvg] = ACTIONS(3408), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3411), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3414), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3414), + [anon_sym_BSLASHimport] = ACTIONS(3417), + [anon_sym_BSLASHsubimport] = ACTIONS(3417), + [anon_sym_BSLASHinputfrom] = ACTIONS(3417), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3417), + [anon_sym_BSLASHincludefrom] = ACTIONS(3417), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3417), + [anon_sym_BSLASHcaption] = ACTIONS(3420), + [anon_sym_BSLASHcite] = ACTIONS(3423), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3426), + [anon_sym_BSLASHCite] = ACTIONS(3423), + [anon_sym_BSLASHnocite] = ACTIONS(3423), + [anon_sym_BSLASHcitet] = ACTIONS(3423), + [anon_sym_BSLASHcitep] = ACTIONS(3423), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3426), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3426), + [anon_sym_BSLASHciteauthor] = ACTIONS(3423), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3426), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3423), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3426), + [anon_sym_BSLASHcitetitle] = ACTIONS(3423), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3426), + [anon_sym_BSLASHciteyear] = ACTIONS(3423), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3426), + [anon_sym_BSLASHcitedate] = ACTIONS(3423), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3426), + [anon_sym_BSLASHciteurl] = ACTIONS(3423), + [anon_sym_BSLASHfullcite] = ACTIONS(3423), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3423), + [anon_sym_BSLASHcitealt] = ACTIONS(3423), + [anon_sym_BSLASHcitealp] = ACTIONS(3423), + [anon_sym_BSLASHcitetext] = ACTIONS(3423), + [anon_sym_BSLASHparencite] = ACTIONS(3423), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3426), + [anon_sym_BSLASHParencite] = ACTIONS(3423), + [anon_sym_BSLASHfootcite] = ACTIONS(3423), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3423), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3423), + [anon_sym_BSLASHtextcite] = ACTIONS(3423), + [anon_sym_BSLASHTextcite] = ACTIONS(3423), + [anon_sym_BSLASHsmartcite] = ACTIONS(3423), + [anon_sym_BSLASHSmartcite] = ACTIONS(3423), + [anon_sym_BSLASHsupercite] = ACTIONS(3423), + [anon_sym_BSLASHautocite] = ACTIONS(3423), + [anon_sym_BSLASHAutocite] = ACTIONS(3423), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3426), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3426), + [anon_sym_BSLASHvolcite] = ACTIONS(3423), + [anon_sym_BSLASHVolcite] = ACTIONS(3423), + [anon_sym_BSLASHpvolcite] = ACTIONS(3423), + [anon_sym_BSLASHPvolcite] = ACTIONS(3423), + [anon_sym_BSLASHfvolcite] = ACTIONS(3423), + [anon_sym_BSLASHftvolcite] = ACTIONS(3423), + [anon_sym_BSLASHsvolcite] = ACTIONS(3423), + [anon_sym_BSLASHSvolcite] = ACTIONS(3423), + [anon_sym_BSLASHtvolcite] = ACTIONS(3423), + [anon_sym_BSLASHTvolcite] = ACTIONS(3423), + [anon_sym_BSLASHavolcite] = ACTIONS(3423), + [anon_sym_BSLASHAvolcite] = ACTIONS(3423), + [anon_sym_BSLASHnotecite] = ACTIONS(3423), + [anon_sym_BSLASHNotecite] = ACTIONS(3423), + [anon_sym_BSLASHpnotecite] = ACTIONS(3423), + [anon_sym_BSLASHPnotecite] = ACTIONS(3423), + [anon_sym_BSLASHfnotecite] = ACTIONS(3423), + [anon_sym_BSLASHlabel] = ACTIONS(3429), + [anon_sym_BSLASHref] = ACTIONS(3432), + [anon_sym_BSLASHeqref] = ACTIONS(3432), + [anon_sym_BSLASHvref] = ACTIONS(3432), + [anon_sym_BSLASHVref] = ACTIONS(3432), + [anon_sym_BSLASHautoref] = ACTIONS(3432), + [anon_sym_BSLASHpageref] = ACTIONS(3432), + [anon_sym_BSLASHcref] = ACTIONS(3432), + [anon_sym_BSLASHCref] = ACTIONS(3432), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3435), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3435), + [anon_sym_BSLASHnamecref] = ACTIONS(3432), + [anon_sym_BSLASHnameCref] = ACTIONS(3432), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3432), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3432), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3432), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3432), + [anon_sym_BSLASHlabelcref] = ACTIONS(3432), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3432), + [anon_sym_BSLASHcrefrange] = ACTIONS(3438), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3441), + [anon_sym_BSLASHCrefrange] = ACTIONS(3438), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3441), + [anon_sym_BSLASHnewlabel] = ACTIONS(3444), + [anon_sym_BSLASHnewcommand] = ACTIONS(3447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3450), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3450), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3450), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3450), + [anon_sym_BSLASHdef] = ACTIONS(3453), + [anon_sym_BSLASHlet] = ACTIONS(3456), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3459), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3462), + [anon_sym_BSLASHgls] = ACTIONS(3465), + [anon_sym_BSLASHGls] = ACTIONS(3465), + [anon_sym_BSLASHGLS] = ACTIONS(3465), + [anon_sym_BSLASHglspl] = ACTIONS(3465), + [anon_sym_BSLASHGlspl] = ACTIONS(3465), + [anon_sym_BSLASHGLSpl] = ACTIONS(3465), + [anon_sym_BSLASHglsdisp] = ACTIONS(3465), + [anon_sym_BSLASHglslink] = ACTIONS(3465), + [anon_sym_BSLASHglstext] = ACTIONS(3465), + [anon_sym_BSLASHGlstext] = ACTIONS(3465), + [anon_sym_BSLASHGLStext] = ACTIONS(3465), + [anon_sym_BSLASHglsfirst] = ACTIONS(3465), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3465), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3465), + [anon_sym_BSLASHglsplural] = ACTIONS(3465), + [anon_sym_BSLASHGlsplural] = ACTIONS(3465), + [anon_sym_BSLASHGLSplural] = ACTIONS(3465), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3465), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3465), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3465), + [anon_sym_BSLASHglsname] = ACTIONS(3465), + [anon_sym_BSLASHGlsname] = ACTIONS(3465), + [anon_sym_BSLASHGLSname] = ACTIONS(3465), + [anon_sym_BSLASHglssymbol] = ACTIONS(3465), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3465), + [anon_sym_BSLASHglsdesc] = ACTIONS(3465), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3465), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3465), + [anon_sym_BSLASHglsuseri] = ACTIONS(3465), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3465), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3465), + [anon_sym_BSLASHglsuserii] = ACTIONS(3465), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3465), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3465), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3465), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3465), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3465), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3465), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3465), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3465), + [anon_sym_BSLASHglsuserv] = ACTIONS(3465), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3465), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3465), + [anon_sym_BSLASHglsuservi] = ACTIONS(3465), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3465), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3465), + [anon_sym_BSLASHnewacronym] = ACTIONS(3468), + [anon_sym_BSLASHacrshort] = ACTIONS(3471), + [anon_sym_BSLASHAcrshort] = ACTIONS(3471), + [anon_sym_BSLASHACRshort] = ACTIONS(3471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3471), + [anon_sym_BSLASHacrlong] = ACTIONS(3471), + [anon_sym_BSLASHAcrlong] = ACTIONS(3471), + [anon_sym_BSLASHACRlong] = ACTIONS(3471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3471), + [anon_sym_BSLASHacrfull] = ACTIONS(3471), + [anon_sym_BSLASHAcrfull] = ACTIONS(3471), + [anon_sym_BSLASHACRfull] = ACTIONS(3471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3471), + [anon_sym_BSLASHacs] = ACTIONS(3471), + [anon_sym_BSLASHAcs] = ACTIONS(3471), + [anon_sym_BSLASHacsp] = ACTIONS(3471), + [anon_sym_BSLASHAcsp] = ACTIONS(3471), + [anon_sym_BSLASHacl] = ACTIONS(3471), + [anon_sym_BSLASHAcl] = ACTIONS(3471), + [anon_sym_BSLASHaclp] = ACTIONS(3471), + [anon_sym_BSLASHAclp] = ACTIONS(3471), + [anon_sym_BSLASHacf] = ACTIONS(3471), + [anon_sym_BSLASHAcf] = ACTIONS(3471), + [anon_sym_BSLASHacfp] = ACTIONS(3471), + [anon_sym_BSLASHAcfp] = ACTIONS(3471), + [anon_sym_BSLASHac] = ACTIONS(3471), + [anon_sym_BSLASHAc] = ACTIONS(3471), + [anon_sym_BSLASHacp] = ACTIONS(3471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3474), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3474), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3477), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3480), + [anon_sym_BSLASHcolor] = ACTIONS(3483), + [anon_sym_BSLASHcolorbox] = ACTIONS(3483), + [anon_sym_BSLASHtextcolor] = ACTIONS(3483), + [anon_sym_BSLASHpagecolor] = ACTIONS(3483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3486), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3486), + [anon_sym_BSLASHtext] = ACTIONS(3489), + [anon_sym_BSLASHintertext] = ACTIONS(3489), + [anon_sym_shortintertext] = ACTIONS(3489), }, [220] = { + [sym_block_comment] = STATE(226), + [sym__text_with_env_content] = STATE(226), + [sym__text_content] = STATE(226), + [sym_curly_group] = STATE(226), + [sym_mixed_group] = STATE(226), + [sym_text] = STATE(226), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(226), + [sym_inline_formula] = STATE(226), + [sym_math_set] = STATE(226), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(226), + [sym_comment_environment] = STATE(226), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(226), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(226), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(226), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(226), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(226), + [sym_generic_command] = STATE(226), + [sym_package_include] = STATE(226), + [sym_class_include] = STATE(226), + [sym_latex_include] = STATE(226), + [sym_biblatex_include] = STATE(226), + [sym_bibtex_include] = STATE(226), + [sym_graphics_include] = STATE(226), + [sym_svg_include] = STATE(226), + [sym_inkscape_include] = STATE(226), + [sym_verbatim_include] = STATE(226), + [sym_import_include] = STATE(226), + [sym_caption] = STATE(226), + [sym_citation] = STATE(226), + [sym_label_definition] = STATE(226), + [sym_label_reference] = STATE(226), + [sym_label_reference_range] = STATE(226), + [sym_label_number] = STATE(226), + [sym_new_command_definition] = STATE(226), + [sym_old_command_definition] = STATE(226), + [sym_let_command_definition] = STATE(226), + [sym_environment_definition] = STATE(226), + [sym_glossary_entry_definition] = STATE(226), + [sym_glossary_entry_reference] = STATE(226), + [sym_acronym_definition] = STATE(226), + [sym_acronym_reference] = STATE(226), + [sym_theorem_definition] = STATE(226), + [sym_color_definition] = STATE(226), + [sym_color_set_definition] = STATE(226), + [sym_color_reference] = STATE(226), + [sym_tikz_library_import] = STATE(226), + [sym_text_mode] = STATE(226), + [aux_sym_mixed_group_repeat1] = STATE(226), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3492), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), + }, + [221] = { [sym_block_comment] = STATE(220), [sym__text_with_env_content] = STATE(220), [sym__text_content] = STATE(220), [sym_curly_group] = STATE(220), - [sym_brack_group] = STATE(220), + [sym_mixed_group] = STATE(220), [sym_text] = STATE(220), - [sym_operator] = STATE(1392), + [sym_operator] = STATE(1396), [sym_displayed_equation] = STATE(220), [sym_inline_formula] = STATE(220), [sym_math_set] = STATE(220), - [sym_begin] = STATE(9), + [sym_begin] = STATE(21), [sym_generic_environment] = STATE(220), [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2341), + [sym__trivia_begin_comment] = STATE(2355), [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2342), + [sym__trivia_begin_verbatim] = STATE(2356), [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2343), + [sym__trivia_begin_listing] = STATE(2357), [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2344), + [sym__trivia_begin_minted] = STATE(2358), [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2345), + [sym__trivia_begin_pycode] = STATE(2359), [sym__command] = STATE(220), [sym_generic_command] = STATE(220), [sym_package_include] = STATE(220), @@ -94883,1179 +93847,1195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(220), [sym_color_reference] = STATE(220), [sym_tikz_library_import] = STATE(220), - [aux_sym_brack_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3314), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_RPAREN] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3320), - [anon_sym_RBRACK] = ACTIONS(3323), - [anon_sym_COMMA] = ACTIONS(3317), - [anon_sym_EQ] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3325), - [sym_word] = ACTIONS(3328), - [sym_placeholder] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_STAR] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_CARET] = ACTIONS(3334), - [anon_sym__] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_GT] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_PIPE] = ACTIONS(3334), - [anon_sym_COLON] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3337), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3337), - [anon_sym_DOLLAR] = ACTIONS(3340), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3346), - [anon_sym_BSLASHbegin] = ACTIONS(3349), - [anon_sym_BSLASHusepackage] = ACTIONS(3352), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3352), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3355), - [anon_sym_BSLASHinclude] = ACTIONS(3358), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3358), - [anon_sym_BSLASHinput] = ACTIONS(3358), - [anon_sym_BSLASHsubfile] = ACTIONS(3358), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3361), - [anon_sym_BSLASHbibliography] = ACTIONS(3364), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3367), - [anon_sym_BSLASHincludesvg] = ACTIONS(3370), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3373), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3376), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3376), - [anon_sym_BSLASHimport] = ACTIONS(3379), - [anon_sym_BSLASHsubimport] = ACTIONS(3379), - [anon_sym_BSLASHinputfrom] = ACTIONS(3379), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3379), - [anon_sym_BSLASHincludefrom] = ACTIONS(3379), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3379), - [anon_sym_BSLASHcaption] = ACTIONS(3382), - [anon_sym_BSLASHcite] = ACTIONS(3385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3388), - [anon_sym_BSLASHCite] = ACTIONS(3385), - [anon_sym_BSLASHnocite] = ACTIONS(3385), - [anon_sym_BSLASHcitet] = ACTIONS(3385), - [anon_sym_BSLASHcitep] = ACTIONS(3385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3388), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3388), - [anon_sym_BSLASHciteauthor] = ACTIONS(3385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3388), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3388), - [anon_sym_BSLASHcitetitle] = ACTIONS(3385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3388), - [anon_sym_BSLASHciteyear] = ACTIONS(3385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3388), - [anon_sym_BSLASHcitedate] = ACTIONS(3385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3388), - [anon_sym_BSLASHciteurl] = ACTIONS(3385), - [anon_sym_BSLASHfullcite] = ACTIONS(3385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3385), - [anon_sym_BSLASHcitealt] = ACTIONS(3385), - [anon_sym_BSLASHcitealp] = ACTIONS(3385), - [anon_sym_BSLASHcitetext] = ACTIONS(3385), - [anon_sym_BSLASHparencite] = ACTIONS(3385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3388), - [anon_sym_BSLASHParencite] = ACTIONS(3385), - [anon_sym_BSLASHfootcite] = ACTIONS(3385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3385), - [anon_sym_BSLASHtextcite] = ACTIONS(3385), - [anon_sym_BSLASHTextcite] = ACTIONS(3385), - [anon_sym_BSLASHsmartcite] = ACTIONS(3385), - [anon_sym_BSLASHSmartcite] = ACTIONS(3385), - [anon_sym_BSLASHsupercite] = ACTIONS(3385), - [anon_sym_BSLASHautocite] = ACTIONS(3385), - [anon_sym_BSLASHAutocite] = ACTIONS(3385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3388), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3388), - [anon_sym_BSLASHvolcite] = ACTIONS(3385), - [anon_sym_BSLASHVolcite] = ACTIONS(3385), - [anon_sym_BSLASHpvolcite] = ACTIONS(3385), - [anon_sym_BSLASHPvolcite] = ACTIONS(3385), - [anon_sym_BSLASHfvolcite] = ACTIONS(3385), - [anon_sym_BSLASHftvolcite] = ACTIONS(3385), - [anon_sym_BSLASHsvolcite] = ACTIONS(3385), - [anon_sym_BSLASHSvolcite] = ACTIONS(3385), - [anon_sym_BSLASHtvolcite] = ACTIONS(3385), - [anon_sym_BSLASHTvolcite] = ACTIONS(3385), - [anon_sym_BSLASHavolcite] = ACTIONS(3385), - [anon_sym_BSLASHAvolcite] = ACTIONS(3385), - [anon_sym_BSLASHnotecite] = ACTIONS(3385), - [anon_sym_BSLASHNotecite] = ACTIONS(3385), - [anon_sym_BSLASHpnotecite] = ACTIONS(3385), - [anon_sym_BSLASHPnotecite] = ACTIONS(3385), - [anon_sym_BSLASHfnotecite] = ACTIONS(3385), - [anon_sym_BSLASHlabel] = ACTIONS(3391), - [anon_sym_BSLASHref] = ACTIONS(3394), - [anon_sym_BSLASHeqref] = ACTIONS(3394), - [anon_sym_BSLASHvref] = ACTIONS(3394), - [anon_sym_BSLASHVref] = ACTIONS(3394), - [anon_sym_BSLASHautoref] = ACTIONS(3394), - [anon_sym_BSLASHpageref] = ACTIONS(3394), - [anon_sym_BSLASHcref] = ACTIONS(3394), - [anon_sym_BSLASHCref] = ACTIONS(3394), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3397), - [anon_sym_BSLASHnamecref] = ACTIONS(3394), - [anon_sym_BSLASHnameCref] = ACTIONS(3394), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3394), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3394), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3394), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3394), - [anon_sym_BSLASHlabelcref] = ACTIONS(3394), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3394), - [anon_sym_BSLASHcrefrange] = ACTIONS(3400), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3403), - [anon_sym_BSLASHCrefrange] = ACTIONS(3400), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3403), - [anon_sym_BSLASHnewlabel] = ACTIONS(3406), - [anon_sym_BSLASHnewcommand] = ACTIONS(3409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3412), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3412), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3412), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3412), - [anon_sym_BSLASHdef] = ACTIONS(3415), - [anon_sym_BSLASHlet] = ACTIONS(3418), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3421), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3424), - [anon_sym_BSLASHgls] = ACTIONS(3427), - [anon_sym_BSLASHGls] = ACTIONS(3427), - [anon_sym_BSLASHGLS] = ACTIONS(3427), - [anon_sym_BSLASHglspl] = ACTIONS(3427), - [anon_sym_BSLASHGlspl] = ACTIONS(3427), - [anon_sym_BSLASHGLSpl] = ACTIONS(3427), - [anon_sym_BSLASHglsdisp] = ACTIONS(3427), - [anon_sym_BSLASHglslink] = ACTIONS(3427), - [anon_sym_BSLASHglstext] = ACTIONS(3427), - [anon_sym_BSLASHGlstext] = ACTIONS(3427), - [anon_sym_BSLASHGLStext] = ACTIONS(3427), - [anon_sym_BSLASHglsfirst] = ACTIONS(3427), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3427), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3427), - [anon_sym_BSLASHglsplural] = ACTIONS(3427), - [anon_sym_BSLASHGlsplural] = ACTIONS(3427), - [anon_sym_BSLASHGLSplural] = ACTIONS(3427), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3427), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3427), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3427), - [anon_sym_BSLASHglsname] = ACTIONS(3427), - [anon_sym_BSLASHGlsname] = ACTIONS(3427), - [anon_sym_BSLASHGLSname] = ACTIONS(3427), - [anon_sym_BSLASHglssymbol] = ACTIONS(3427), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3427), - [anon_sym_BSLASHglsdesc] = ACTIONS(3427), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3427), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3427), - [anon_sym_BSLASHglsuseri] = ACTIONS(3427), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3427), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3427), - [anon_sym_BSLASHglsuserii] = ACTIONS(3427), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3427), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3427), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3427), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3427), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3427), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3427), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3427), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3427), - [anon_sym_BSLASHglsuserv] = ACTIONS(3427), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3427), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3427), - [anon_sym_BSLASHglsuservi] = ACTIONS(3427), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3427), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3427), - [anon_sym_BSLASHnewacronym] = ACTIONS(3430), - [anon_sym_BSLASHacrshort] = ACTIONS(3433), - [anon_sym_BSLASHAcrshort] = ACTIONS(3433), - [anon_sym_BSLASHACRshort] = ACTIONS(3433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3433), - [anon_sym_BSLASHacrlong] = ACTIONS(3433), - [anon_sym_BSLASHAcrlong] = ACTIONS(3433), - [anon_sym_BSLASHACRlong] = ACTIONS(3433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3433), - [anon_sym_BSLASHacrfull] = ACTIONS(3433), - [anon_sym_BSLASHAcrfull] = ACTIONS(3433), - [anon_sym_BSLASHACRfull] = ACTIONS(3433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3433), - [anon_sym_BSLASHacs] = ACTIONS(3433), - [anon_sym_BSLASHAcs] = ACTIONS(3433), - [anon_sym_BSLASHacsp] = ACTIONS(3433), - [anon_sym_BSLASHAcsp] = ACTIONS(3433), - [anon_sym_BSLASHacl] = ACTIONS(3433), - [anon_sym_BSLASHAcl] = ACTIONS(3433), - [anon_sym_BSLASHaclp] = ACTIONS(3433), - [anon_sym_BSLASHAclp] = ACTIONS(3433), - [anon_sym_BSLASHacf] = ACTIONS(3433), - [anon_sym_BSLASHAcf] = ACTIONS(3433), - [anon_sym_BSLASHacfp] = ACTIONS(3433), - [anon_sym_BSLASHAcfp] = ACTIONS(3433), - [anon_sym_BSLASHac] = ACTIONS(3433), - [anon_sym_BSLASHAc] = ACTIONS(3433), - [anon_sym_BSLASHacp] = ACTIONS(3433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3436), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3436), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3439), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3442), - [anon_sym_BSLASHcolor] = ACTIONS(3445), - [anon_sym_BSLASHcolorbox] = ACTIONS(3445), - [anon_sym_BSLASHtextcolor] = ACTIONS(3445), - [anon_sym_BSLASHpagecolor] = ACTIONS(3445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3448), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3448), - }, - [221] = { - [sym_block_comment] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym_curly_group] = STATE(220), - [sym_brack_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_math_set] = STATE(220), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [aux_sym_brack_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_RPAREN] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_RBRACK] = ACTIONS(3455), - [anon_sym_COMMA] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [sym_text_mode] = STATE(220), + [aux_sym_mixed_group_repeat1] = STATE(220), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3494), + [anon_sym_COMMA] = ACTIONS(3496), + [anon_sym_EQ] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), }, [222] = { - [sym_block_comment] = STATE(219), - [sym__text_with_env_content] = STATE(219), - [sym__text_content] = STATE(219), - [sym_curly_group] = STATE(219), - [sym_mixed_group] = STATE(219), - [sym_text] = STATE(219), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(219), - [sym_inline_formula] = STATE(219), - [sym_math_set] = STATE(219), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(219), - [sym_comment_environment] = STATE(219), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(219), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(219), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(219), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(219), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(219), - [sym_generic_command] = STATE(219), - [sym_package_include] = STATE(219), - [sym_class_include] = STATE(219), - [sym_latex_include] = STATE(219), - [sym_biblatex_include] = STATE(219), - [sym_bibtex_include] = STATE(219), - [sym_graphics_include] = STATE(219), - [sym_svg_include] = STATE(219), - [sym_inkscape_include] = STATE(219), - [sym_verbatim_include] = STATE(219), - [sym_import_include] = STATE(219), - [sym_caption] = STATE(219), - [sym_citation] = STATE(219), - [sym_label_definition] = STATE(219), - [sym_label_reference] = STATE(219), - [sym_label_reference_range] = STATE(219), - [sym_label_number] = STATE(219), - [sym_new_command_definition] = STATE(219), - [sym_old_command_definition] = STATE(219), - [sym_let_command_definition] = STATE(219), - [sym_environment_definition] = STATE(219), - [sym_glossary_entry_definition] = STATE(219), - [sym_glossary_entry_reference] = STATE(219), - [sym_acronym_definition] = STATE(219), - [sym_acronym_reference] = STATE(219), - [sym_theorem_definition] = STATE(219), - [sym_color_definition] = STATE(219), - [sym_color_set_definition] = STATE(219), - [sym_color_reference] = STATE(219), - [sym_tikz_library_import] = STATE(219), - [aux_sym_mixed_group_repeat1] = STATE(219), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_EQ] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), + [sym_block_comment] = STATE(233), + [sym__text_with_env_content] = STATE(233), + [sym__text_content] = STATE(233), + [sym_curly_group] = STATE(233), + [sym_mixed_group] = STATE(233), + [sym_text] = STATE(233), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(233), + [sym_inline_formula] = STATE(233), + [sym_math_set] = STATE(233), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(233), + [sym_comment_environment] = STATE(233), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(233), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(233), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(233), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(233), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(233), + [sym_generic_command] = STATE(233), + [sym_package_include] = STATE(233), + [sym_class_include] = STATE(233), + [sym_latex_include] = STATE(233), + [sym_biblatex_include] = STATE(233), + [sym_bibtex_include] = STATE(233), + [sym_graphics_include] = STATE(233), + [sym_svg_include] = STATE(233), + [sym_inkscape_include] = STATE(233), + [sym_verbatim_include] = STATE(233), + [sym_import_include] = STATE(233), + [sym_caption] = STATE(233), + [sym_citation] = STATE(233), + [sym_label_definition] = STATE(233), + [sym_label_reference] = STATE(233), + [sym_label_reference_range] = STATE(233), + [sym_label_number] = STATE(233), + [sym_new_command_definition] = STATE(233), + [sym_old_command_definition] = STATE(233), + [sym_let_command_definition] = STATE(233), + [sym_environment_definition] = STATE(233), + [sym_glossary_entry_definition] = STATE(233), + [sym_glossary_entry_reference] = STATE(233), + [sym_acronym_definition] = STATE(233), + [sym_acronym_reference] = STATE(233), + [sym_theorem_definition] = STATE(233), + [sym_color_definition] = STATE(233), + [sym_color_set_definition] = STATE(233), + [sym_color_reference] = STATE(233), + [sym_tikz_library_import] = STATE(233), + [sym_text_mode] = STATE(233), + [aux_sym_mixed_group_repeat1] = STATE(233), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3498), + [anon_sym_COMMA] = ACTIONS(3500), + [anon_sym_EQ] = ACTIONS(3500), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), }, [223] = { - [sym_block_comment] = STATE(227), - [sym__text_with_env_content] = STATE(227), - [sym__text_content] = STATE(227), - [sym_curly_group] = STATE(227), - [sym_mixed_group] = STATE(227), - [sym_text] = STATE(227), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(227), - [sym_inline_formula] = STATE(227), - [sym_math_set] = STATE(227), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(227), - [sym_comment_environment] = STATE(227), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(227), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(227), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(227), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(227), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(227), - [sym_generic_command] = STATE(227), - [sym_package_include] = STATE(227), - [sym_class_include] = STATE(227), - [sym_latex_include] = STATE(227), - [sym_biblatex_include] = STATE(227), - [sym_bibtex_include] = STATE(227), - [sym_graphics_include] = STATE(227), - [sym_svg_include] = STATE(227), - [sym_inkscape_include] = STATE(227), - [sym_verbatim_include] = STATE(227), - [sym_import_include] = STATE(227), - [sym_caption] = STATE(227), - [sym_citation] = STATE(227), - [sym_label_definition] = STATE(227), - [sym_label_reference] = STATE(227), - [sym_label_reference_range] = STATE(227), - [sym_label_number] = STATE(227), - [sym_new_command_definition] = STATE(227), - [sym_old_command_definition] = STATE(227), - [sym_let_command_definition] = STATE(227), - [sym_environment_definition] = STATE(227), - [sym_glossary_entry_definition] = STATE(227), - [sym_glossary_entry_reference] = STATE(227), - [sym_acronym_definition] = STATE(227), - [sym_acronym_reference] = STATE(227), - [sym_theorem_definition] = STATE(227), - [sym_color_definition] = STATE(227), - [sym_color_set_definition] = STATE(227), - [sym_color_reference] = STATE(227), - [sym_tikz_library_import] = STATE(227), - [aux_sym_mixed_group_repeat1] = STATE(227), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), + [sym_block_comment] = STATE(226), + [sym__text_with_env_content] = STATE(226), + [sym__text_content] = STATE(226), + [sym_curly_group] = STATE(226), + [sym_mixed_group] = STATE(226), + [sym_text] = STATE(226), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(226), + [sym_inline_formula] = STATE(226), + [sym_math_set] = STATE(226), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(226), + [sym_comment_environment] = STATE(226), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(226), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(226), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(226), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(226), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(226), + [sym_generic_command] = STATE(226), + [sym_package_include] = STATE(226), + [sym_class_include] = STATE(226), + [sym_latex_include] = STATE(226), + [sym_biblatex_include] = STATE(226), + [sym_bibtex_include] = STATE(226), + [sym_graphics_include] = STATE(226), + [sym_svg_include] = STATE(226), + [sym_inkscape_include] = STATE(226), + [sym_verbatim_include] = STATE(226), + [sym_import_include] = STATE(226), + [sym_caption] = STATE(226), + [sym_citation] = STATE(226), + [sym_label_definition] = STATE(226), + [sym_label_reference] = STATE(226), + [sym_label_reference_range] = STATE(226), + [sym_label_number] = STATE(226), + [sym_new_command_definition] = STATE(226), + [sym_old_command_definition] = STATE(226), + [sym_let_command_definition] = STATE(226), + [sym_environment_definition] = STATE(226), + [sym_glossary_entry_definition] = STATE(226), + [sym_glossary_entry_reference] = STATE(226), + [sym_acronym_definition] = STATE(226), + [sym_acronym_reference] = STATE(226), + [sym_theorem_definition] = STATE(226), + [sym_color_definition] = STATE(226), + [sym_color_set_definition] = STATE(226), + [sym_color_reference] = STATE(226), + [sym_tikz_library_import] = STATE(226), + [sym_text_mode] = STATE(226), + [aux_sym_mixed_group_repeat1] = STATE(226), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3502), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), }, [224] = { + [sym_block_comment] = STATE(226), + [sym__text_with_env_content] = STATE(226), + [sym__text_content] = STATE(226), + [sym_curly_group] = STATE(226), + [sym_mixed_group] = STATE(226), + [sym_text] = STATE(226), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(226), + [sym_inline_formula] = STATE(226), + [sym_math_set] = STATE(226), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(226), + [sym_comment_environment] = STATE(226), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(226), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(226), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(226), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(226), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(226), + [sym_generic_command] = STATE(226), + [sym_package_include] = STATE(226), + [sym_class_include] = STATE(226), + [sym_latex_include] = STATE(226), + [sym_biblatex_include] = STATE(226), + [sym_bibtex_include] = STATE(226), + [sym_graphics_include] = STATE(226), + [sym_svg_include] = STATE(226), + [sym_inkscape_include] = STATE(226), + [sym_verbatim_include] = STATE(226), + [sym_import_include] = STATE(226), + [sym_caption] = STATE(226), + [sym_citation] = STATE(226), + [sym_label_definition] = STATE(226), + [sym_label_reference] = STATE(226), + [sym_label_reference_range] = STATE(226), + [sym_label_number] = STATE(226), + [sym_new_command_definition] = STATE(226), + [sym_old_command_definition] = STATE(226), + [sym_let_command_definition] = STATE(226), + [sym_environment_definition] = STATE(226), + [sym_glossary_entry_definition] = STATE(226), + [sym_glossary_entry_reference] = STATE(226), + [sym_acronym_definition] = STATE(226), + [sym_acronym_reference] = STATE(226), + [sym_theorem_definition] = STATE(226), + [sym_color_definition] = STATE(226), + [sym_color_set_definition] = STATE(226), + [sym_color_reference] = STATE(226), + [sym_tikz_library_import] = STATE(226), + [sym_text_mode] = STATE(226), + [aux_sym_mixed_group_repeat1] = STATE(226), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3504), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3504), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), + }, + [225] = { [sym_block_comment] = STATE(223), [sym__text_with_env_content] = STATE(223), [sym__text_content] = STATE(223), [sym_curly_group] = STATE(223), [sym_mixed_group] = STATE(223), [sym_text] = STATE(223), - [sym_operator] = STATE(1392), + [sym_operator] = STATE(1396), [sym_displayed_equation] = STATE(223), [sym_inline_formula] = STATE(223), [sym_math_set] = STATE(223), - [sym_begin] = STATE(9), + [sym_begin] = STATE(21), [sym_generic_environment] = STATE(223), [sym_comment_environment] = STATE(223), - [sym__trivia_begin_comment] = STATE(2341), + [sym__trivia_begin_comment] = STATE(2355), [sym_verbatim_environment] = STATE(223), - [sym__trivia_begin_verbatim] = STATE(2342), + [sym__trivia_begin_verbatim] = STATE(2356), [sym_listing_environment] = STATE(223), - [sym__trivia_begin_listing] = STATE(2343), + [sym__trivia_begin_listing] = STATE(2357), [sym_minted_environment] = STATE(223), - [sym__trivia_begin_minted] = STATE(2344), + [sym__trivia_begin_minted] = STATE(2358), [sym_pycode_environment] = STATE(223), - [sym__trivia_begin_pycode] = STATE(2345), + [sym__trivia_begin_pycode] = STATE(2359), [sym__command] = STATE(223), [sym_generic_command] = STATE(223), [sym_package_include] = STATE(223), @@ -96087,577 +95067,1500 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(223), [sym_color_reference] = STATE(223), [sym_tikz_library_import] = STATE(223), + [sym_text_mode] = STATE(223), [aux_sym_mixed_group_repeat1] = STATE(223), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3463), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3463), - [anon_sym_COMMA] = ACTIONS(3465), - [anon_sym_EQ] = ACTIONS(3465), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3506), + [anon_sym_COMMA] = ACTIONS(3508), + [anon_sym_EQ] = ACTIONS(3508), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), }, - [225] = { - [sym_block_comment] = STATE(227), - [sym__text_with_env_content] = STATE(227), - [sym__text_content] = STATE(227), - [sym_curly_group] = STATE(227), - [sym_mixed_group] = STATE(227), - [sym_text] = STATE(227), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(227), - [sym_inline_formula] = STATE(227), - [sym_math_set] = STATE(227), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(227), - [sym_comment_environment] = STATE(227), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(227), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(227), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(227), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(227), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(227), - [sym_generic_command] = STATE(227), - [sym_package_include] = STATE(227), - [sym_class_include] = STATE(227), - [sym_latex_include] = STATE(227), - [sym_biblatex_include] = STATE(227), - [sym_bibtex_include] = STATE(227), - [sym_graphics_include] = STATE(227), - [sym_svg_include] = STATE(227), - [sym_inkscape_include] = STATE(227), - [sym_verbatim_include] = STATE(227), - [sym_import_include] = STATE(227), - [sym_caption] = STATE(227), - [sym_citation] = STATE(227), - [sym_label_definition] = STATE(227), - [sym_label_reference] = STATE(227), - [sym_label_reference_range] = STATE(227), - [sym_label_number] = STATE(227), - [sym_new_command_definition] = STATE(227), - [sym_old_command_definition] = STATE(227), - [sym_let_command_definition] = STATE(227), - [sym_environment_definition] = STATE(227), - [sym_glossary_entry_definition] = STATE(227), - [sym_glossary_entry_reference] = STATE(227), - [sym_acronym_definition] = STATE(227), - [sym_acronym_reference] = STATE(227), - [sym_theorem_definition] = STATE(227), - [sym_color_definition] = STATE(227), - [sym_color_set_definition] = STATE(227), - [sym_color_reference] = STATE(227), - [sym_tikz_library_import] = STATE(227), - [aux_sym_mixed_group_repeat1] = STATE(227), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3467), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3467), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), + [226] = { + [sym_block_comment] = STATE(226), + [sym__text_with_env_content] = STATE(226), + [sym__text_content] = STATE(226), + [sym_curly_group] = STATE(226), + [sym_mixed_group] = STATE(226), + [sym_text] = STATE(226), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(226), + [sym_inline_formula] = STATE(226), + [sym_math_set] = STATE(226), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(226), + [sym_comment_environment] = STATE(226), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(226), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(226), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(226), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(226), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(226), + [sym_generic_command] = STATE(226), + [sym_package_include] = STATE(226), + [sym_class_include] = STATE(226), + [sym_latex_include] = STATE(226), + [sym_biblatex_include] = STATE(226), + [sym_bibtex_include] = STATE(226), + [sym_graphics_include] = STATE(226), + [sym_svg_include] = STATE(226), + [sym_inkscape_include] = STATE(226), + [sym_verbatim_include] = STATE(226), + [sym_import_include] = STATE(226), + [sym_caption] = STATE(226), + [sym_citation] = STATE(226), + [sym_label_definition] = STATE(226), + [sym_label_reference] = STATE(226), + [sym_label_reference_range] = STATE(226), + [sym_label_number] = STATE(226), + [sym_new_command_definition] = STATE(226), + [sym_old_command_definition] = STATE(226), + [sym_let_command_definition] = STATE(226), + [sym_environment_definition] = STATE(226), + [sym_glossary_entry_definition] = STATE(226), + [sym_glossary_entry_reference] = STATE(226), + [sym_acronym_definition] = STATE(226), + [sym_acronym_reference] = STATE(226), + [sym_theorem_definition] = STATE(226), + [sym_color_definition] = STATE(226), + [sym_color_set_definition] = STATE(226), + [sym_color_reference] = STATE(226), + [sym_tikz_library_import] = STATE(226), + [sym_text_mode] = STATE(226), + [aux_sym_mixed_group_repeat1] = STATE(226), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3510), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3513), + [anon_sym_LPAREN] = ACTIONS(3516), + [anon_sym_RPAREN] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3516), + [anon_sym_RBRACK] = ACTIONS(3519), + [anon_sym_COMMA] = ACTIONS(3521), + [anon_sym_EQ] = ACTIONS(3521), + [anon_sym_LBRACE] = ACTIONS(3524), + [sym_word] = ACTIONS(3527), + [sym_placeholder] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3533), + [anon_sym_DASH] = ACTIONS(3533), + [anon_sym_STAR] = ACTIONS(3533), + [anon_sym_SLASH] = ACTIONS(3533), + [anon_sym_CARET] = ACTIONS(3533), + [anon_sym__] = ACTIONS(3533), + [anon_sym_LT] = ACTIONS(3533), + [anon_sym_GT] = ACTIONS(3533), + [anon_sym_BANG] = ACTIONS(3533), + [anon_sym_PIPE] = ACTIONS(3533), + [anon_sym_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3533), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3536), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3536), + [anon_sym_DOLLAR] = ACTIONS(3539), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3542), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3545), + [anon_sym_BSLASHbegin] = ACTIONS(3548), + [anon_sym_BSLASHusepackage] = ACTIONS(3551), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3551), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3554), + [anon_sym_BSLASHinclude] = ACTIONS(3557), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3557), + [anon_sym_BSLASHinput] = ACTIONS(3557), + [anon_sym_BSLASHsubfile] = ACTIONS(3557), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3560), + [anon_sym_BSLASHbibliography] = ACTIONS(3563), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3566), + [anon_sym_BSLASHincludesvg] = ACTIONS(3569), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3572), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3575), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3575), + [anon_sym_BSLASHimport] = ACTIONS(3578), + [anon_sym_BSLASHsubimport] = ACTIONS(3578), + [anon_sym_BSLASHinputfrom] = ACTIONS(3578), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3578), + [anon_sym_BSLASHincludefrom] = ACTIONS(3578), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3578), + [anon_sym_BSLASHcaption] = ACTIONS(3581), + [anon_sym_BSLASHcite] = ACTIONS(3584), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3587), + [anon_sym_BSLASHCite] = ACTIONS(3584), + [anon_sym_BSLASHnocite] = ACTIONS(3584), + [anon_sym_BSLASHcitet] = ACTIONS(3584), + [anon_sym_BSLASHcitep] = ACTIONS(3584), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3587), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3587), + [anon_sym_BSLASHciteauthor] = ACTIONS(3584), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3587), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3584), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3587), + [anon_sym_BSLASHcitetitle] = ACTIONS(3584), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3587), + [anon_sym_BSLASHciteyear] = ACTIONS(3584), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3587), + [anon_sym_BSLASHcitedate] = ACTIONS(3584), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3587), + [anon_sym_BSLASHciteurl] = ACTIONS(3584), + [anon_sym_BSLASHfullcite] = ACTIONS(3584), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3584), + [anon_sym_BSLASHcitealt] = ACTIONS(3584), + [anon_sym_BSLASHcitealp] = ACTIONS(3584), + [anon_sym_BSLASHcitetext] = ACTIONS(3584), + [anon_sym_BSLASHparencite] = ACTIONS(3584), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3587), + [anon_sym_BSLASHParencite] = ACTIONS(3584), + [anon_sym_BSLASHfootcite] = ACTIONS(3584), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3584), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3584), + [anon_sym_BSLASHtextcite] = ACTIONS(3584), + [anon_sym_BSLASHTextcite] = ACTIONS(3584), + [anon_sym_BSLASHsmartcite] = ACTIONS(3584), + [anon_sym_BSLASHSmartcite] = ACTIONS(3584), + [anon_sym_BSLASHsupercite] = ACTIONS(3584), + [anon_sym_BSLASHautocite] = ACTIONS(3584), + [anon_sym_BSLASHAutocite] = ACTIONS(3584), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3587), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3587), + [anon_sym_BSLASHvolcite] = ACTIONS(3584), + [anon_sym_BSLASHVolcite] = ACTIONS(3584), + [anon_sym_BSLASHpvolcite] = ACTIONS(3584), + [anon_sym_BSLASHPvolcite] = ACTIONS(3584), + [anon_sym_BSLASHfvolcite] = ACTIONS(3584), + [anon_sym_BSLASHftvolcite] = ACTIONS(3584), + [anon_sym_BSLASHsvolcite] = ACTIONS(3584), + [anon_sym_BSLASHSvolcite] = ACTIONS(3584), + [anon_sym_BSLASHtvolcite] = ACTIONS(3584), + [anon_sym_BSLASHTvolcite] = ACTIONS(3584), + [anon_sym_BSLASHavolcite] = ACTIONS(3584), + [anon_sym_BSLASHAvolcite] = ACTIONS(3584), + [anon_sym_BSLASHnotecite] = ACTIONS(3584), + [anon_sym_BSLASHNotecite] = ACTIONS(3584), + [anon_sym_BSLASHpnotecite] = ACTIONS(3584), + [anon_sym_BSLASHPnotecite] = ACTIONS(3584), + [anon_sym_BSLASHfnotecite] = ACTIONS(3584), + [anon_sym_BSLASHlabel] = ACTIONS(3590), + [anon_sym_BSLASHref] = ACTIONS(3593), + [anon_sym_BSLASHeqref] = ACTIONS(3593), + [anon_sym_BSLASHvref] = ACTIONS(3593), + [anon_sym_BSLASHVref] = ACTIONS(3593), + [anon_sym_BSLASHautoref] = ACTIONS(3593), + [anon_sym_BSLASHpageref] = ACTIONS(3593), + [anon_sym_BSLASHcref] = ACTIONS(3593), + [anon_sym_BSLASHCref] = ACTIONS(3593), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3596), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3596), + [anon_sym_BSLASHnamecref] = ACTIONS(3593), + [anon_sym_BSLASHnameCref] = ACTIONS(3593), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3593), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3593), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3593), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3593), + [anon_sym_BSLASHlabelcref] = ACTIONS(3593), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3593), + [anon_sym_BSLASHcrefrange] = ACTIONS(3599), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3602), + [anon_sym_BSLASHCrefrange] = ACTIONS(3599), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3602), + [anon_sym_BSLASHnewlabel] = ACTIONS(3605), + [anon_sym_BSLASHnewcommand] = ACTIONS(3608), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3611), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3608), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3611), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3608), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3611), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3608), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3611), + [anon_sym_BSLASHdef] = ACTIONS(3614), + [anon_sym_BSLASHlet] = ACTIONS(3617), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3620), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3623), + [anon_sym_BSLASHgls] = ACTIONS(3626), + [anon_sym_BSLASHGls] = ACTIONS(3626), + [anon_sym_BSLASHGLS] = ACTIONS(3626), + [anon_sym_BSLASHglspl] = ACTIONS(3626), + [anon_sym_BSLASHGlspl] = ACTIONS(3626), + [anon_sym_BSLASHGLSpl] = ACTIONS(3626), + [anon_sym_BSLASHglsdisp] = ACTIONS(3626), + [anon_sym_BSLASHglslink] = ACTIONS(3626), + [anon_sym_BSLASHglstext] = ACTIONS(3626), + [anon_sym_BSLASHGlstext] = ACTIONS(3626), + [anon_sym_BSLASHGLStext] = ACTIONS(3626), + [anon_sym_BSLASHglsfirst] = ACTIONS(3626), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3626), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3626), + [anon_sym_BSLASHglsplural] = ACTIONS(3626), + [anon_sym_BSLASHGlsplural] = ACTIONS(3626), + [anon_sym_BSLASHGLSplural] = ACTIONS(3626), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3626), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3626), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3626), + [anon_sym_BSLASHglsname] = ACTIONS(3626), + [anon_sym_BSLASHGlsname] = ACTIONS(3626), + [anon_sym_BSLASHGLSname] = ACTIONS(3626), + [anon_sym_BSLASHglssymbol] = ACTIONS(3626), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3626), + [anon_sym_BSLASHglsdesc] = ACTIONS(3626), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3626), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3626), + [anon_sym_BSLASHglsuseri] = ACTIONS(3626), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3626), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3626), + [anon_sym_BSLASHglsuserii] = ACTIONS(3626), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3626), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3626), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3626), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3626), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3626), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3626), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3626), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3626), + [anon_sym_BSLASHglsuserv] = ACTIONS(3626), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3626), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3626), + [anon_sym_BSLASHglsuservi] = ACTIONS(3626), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3626), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3626), + [anon_sym_BSLASHnewacronym] = ACTIONS(3629), + [anon_sym_BSLASHacrshort] = ACTIONS(3632), + [anon_sym_BSLASHAcrshort] = ACTIONS(3632), + [anon_sym_BSLASHACRshort] = ACTIONS(3632), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3632), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3632), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3632), + [anon_sym_BSLASHacrlong] = ACTIONS(3632), + [anon_sym_BSLASHAcrlong] = ACTIONS(3632), + [anon_sym_BSLASHACRlong] = ACTIONS(3632), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3632), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3632), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3632), + [anon_sym_BSLASHacrfull] = ACTIONS(3632), + [anon_sym_BSLASHAcrfull] = ACTIONS(3632), + [anon_sym_BSLASHACRfull] = ACTIONS(3632), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3632), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3632), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3632), + [anon_sym_BSLASHacs] = ACTIONS(3632), + [anon_sym_BSLASHAcs] = ACTIONS(3632), + [anon_sym_BSLASHacsp] = ACTIONS(3632), + [anon_sym_BSLASHAcsp] = ACTIONS(3632), + [anon_sym_BSLASHacl] = ACTIONS(3632), + [anon_sym_BSLASHAcl] = ACTIONS(3632), + [anon_sym_BSLASHaclp] = ACTIONS(3632), + [anon_sym_BSLASHAclp] = ACTIONS(3632), + [anon_sym_BSLASHacf] = ACTIONS(3632), + [anon_sym_BSLASHAcf] = ACTIONS(3632), + [anon_sym_BSLASHacfp] = ACTIONS(3632), + [anon_sym_BSLASHAcfp] = ACTIONS(3632), + [anon_sym_BSLASHac] = ACTIONS(3632), + [anon_sym_BSLASHAc] = ACTIONS(3632), + [anon_sym_BSLASHacp] = ACTIONS(3632), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3632), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3632), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3632), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3632), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3632), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3632), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3632), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3632), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3632), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3632), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3635), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3635), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3638), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3641), + [anon_sym_BSLASHcolor] = ACTIONS(3644), + [anon_sym_BSLASHcolorbox] = ACTIONS(3644), + [anon_sym_BSLASHtextcolor] = ACTIONS(3644), + [anon_sym_BSLASHpagecolor] = ACTIONS(3644), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3647), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3647), + [anon_sym_BSLASHtext] = ACTIONS(3650), + [anon_sym_BSLASHintertext] = ACTIONS(3650), + [anon_sym_shortintertext] = ACTIONS(3650), + }, + [227] = { + [sym_block_comment] = STATE(219), + [sym__text_with_env_content] = STATE(219), + [sym__text_content] = STATE(219), + [sym_curly_group] = STATE(219), + [sym_brack_group] = STATE(219), + [sym_text] = STATE(219), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(219), + [sym_inline_formula] = STATE(219), + [sym_math_set] = STATE(219), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(219), + [sym_comment_environment] = STATE(219), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(219), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(219), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(219), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(219), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(219), + [sym_generic_command] = STATE(219), + [sym_package_include] = STATE(219), + [sym_class_include] = STATE(219), + [sym_latex_include] = STATE(219), + [sym_biblatex_include] = STATE(219), + [sym_bibtex_include] = STATE(219), + [sym_graphics_include] = STATE(219), + [sym_svg_include] = STATE(219), + [sym_inkscape_include] = STATE(219), + [sym_verbatim_include] = STATE(219), + [sym_import_include] = STATE(219), + [sym_caption] = STATE(219), + [sym_citation] = STATE(219), + [sym_label_definition] = STATE(219), + [sym_label_reference] = STATE(219), + [sym_label_reference_range] = STATE(219), + [sym_label_number] = STATE(219), + [sym_new_command_definition] = STATE(219), + [sym_old_command_definition] = STATE(219), + [sym_let_command_definition] = STATE(219), + [sym_environment_definition] = STATE(219), + [sym_glossary_entry_definition] = STATE(219), + [sym_glossary_entry_reference] = STATE(219), + [sym_acronym_definition] = STATE(219), + [sym_acronym_reference] = STATE(219), + [sym_theorem_definition] = STATE(219), + [sym_color_definition] = STATE(219), + [sym_color_set_definition] = STATE(219), + [sym_color_reference] = STATE(219), + [sym_tikz_library_import] = STATE(219), + [sym_text_mode] = STATE(219), + [aux_sym_brack_group_repeat1] = STATE(219), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_RPAREN] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_RBRACK] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3653), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), }, - [226] = { + [228] = { + [sym_block_comment] = STATE(226), + [sym__text_with_env_content] = STATE(226), + [sym__text_content] = STATE(226), + [sym_curly_group] = STATE(226), + [sym_mixed_group] = STATE(226), + [sym_text] = STATE(226), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(226), + [sym_inline_formula] = STATE(226), + [sym_math_set] = STATE(226), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(226), + [sym_comment_environment] = STATE(226), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(226), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(226), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(226), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(226), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(226), + [sym_generic_command] = STATE(226), + [sym_package_include] = STATE(226), + [sym_class_include] = STATE(226), + [sym_latex_include] = STATE(226), + [sym_biblatex_include] = STATE(226), + [sym_bibtex_include] = STATE(226), + [sym_graphics_include] = STATE(226), + [sym_svg_include] = STATE(226), + [sym_inkscape_include] = STATE(226), + [sym_verbatim_include] = STATE(226), + [sym_import_include] = STATE(226), + [sym_caption] = STATE(226), + [sym_citation] = STATE(226), + [sym_label_definition] = STATE(226), + [sym_label_reference] = STATE(226), + [sym_label_reference_range] = STATE(226), + [sym_label_number] = STATE(226), + [sym_new_command_definition] = STATE(226), + [sym_old_command_definition] = STATE(226), + [sym_let_command_definition] = STATE(226), + [sym_environment_definition] = STATE(226), + [sym_glossary_entry_definition] = STATE(226), + [sym_glossary_entry_reference] = STATE(226), + [sym_acronym_definition] = STATE(226), + [sym_acronym_reference] = STATE(226), + [sym_theorem_definition] = STATE(226), + [sym_color_definition] = STATE(226), + [sym_color_set_definition] = STATE(226), + [sym_color_reference] = STATE(226), + [sym_tikz_library_import] = STATE(226), + [sym_text_mode] = STATE(226), + [aux_sym_mixed_group_repeat1] = STATE(226), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3659), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), + }, + [229] = { + [sym_block_comment] = STATE(224), + [sym__text_with_env_content] = STATE(224), + [sym__text_content] = STATE(224), + [sym_curly_group] = STATE(224), + [sym_mixed_group] = STATE(224), + [sym_text] = STATE(224), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(224), + [sym_inline_formula] = STATE(224), + [sym_math_set] = STATE(224), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(224), + [sym_comment_environment] = STATE(224), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(224), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(224), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(224), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(224), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(224), + [sym_generic_command] = STATE(224), + [sym_package_include] = STATE(224), + [sym_class_include] = STATE(224), + [sym_latex_include] = STATE(224), + [sym_biblatex_include] = STATE(224), + [sym_bibtex_include] = STATE(224), + [sym_graphics_include] = STATE(224), + [sym_svg_include] = STATE(224), + [sym_inkscape_include] = STATE(224), + [sym_verbatim_include] = STATE(224), + [sym_import_include] = STATE(224), + [sym_caption] = STATE(224), + [sym_citation] = STATE(224), + [sym_label_definition] = STATE(224), + [sym_label_reference] = STATE(224), + [sym_label_reference_range] = STATE(224), + [sym_label_number] = STATE(224), + [sym_new_command_definition] = STATE(224), + [sym_old_command_definition] = STATE(224), + [sym_let_command_definition] = STATE(224), + [sym_environment_definition] = STATE(224), + [sym_glossary_entry_definition] = STATE(224), + [sym_glossary_entry_reference] = STATE(224), + [sym_acronym_definition] = STATE(224), + [sym_acronym_reference] = STATE(224), + [sym_theorem_definition] = STATE(224), + [sym_color_definition] = STATE(224), + [sym_color_set_definition] = STATE(224), + [sym_color_reference] = STATE(224), + [sym_tikz_library_import] = STATE(224), + [sym_text_mode] = STATE(224), + [aux_sym_mixed_group_repeat1] = STATE(224), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3661), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3661), + [anon_sym_COMMA] = ACTIONS(3663), + [anon_sym_EQ] = ACTIONS(3663), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), + }, + [230] = { [sym_block_comment] = STATE(227), [sym__text_with_env_content] = STATE(227), [sym__text_content] = STATE(227), [sym_curly_group] = STATE(227), - [sym_mixed_group] = STATE(227), + [sym_brack_group] = STATE(227), [sym_text] = STATE(227), - [sym_operator] = STATE(1392), + [sym_operator] = STATE(1396), [sym_displayed_equation] = STATE(227), [sym_inline_formula] = STATE(227), [sym_math_set] = STATE(227), - [sym_begin] = STATE(9), + [sym_begin] = STATE(21), [sym_generic_environment] = STATE(227), [sym_comment_environment] = STATE(227), - [sym__trivia_begin_comment] = STATE(2341), + [sym__trivia_begin_comment] = STATE(2355), [sym_verbatim_environment] = STATE(227), - [sym__trivia_begin_verbatim] = STATE(2342), + [sym__trivia_begin_verbatim] = STATE(2356), [sym_listing_environment] = STATE(227), - [sym__trivia_begin_listing] = STATE(2343), + [sym__trivia_begin_listing] = STATE(2357), [sym_minted_environment] = STATE(227), - [sym__trivia_begin_minted] = STATE(2344), + [sym__trivia_begin_minted] = STATE(2358), [sym_pycode_environment] = STATE(227), - [sym__trivia_begin_pycode] = STATE(2345), + [sym__trivia_begin_pycode] = STATE(2359), [sym__command] = STATE(227), [sym_generic_command] = STATE(227), [sym_package_include] = STATE(227), @@ -96689,1179 +96592,3025 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(227), [sym_color_reference] = STATE(227), [sym_tikz_library_import] = STATE(227), - [aux_sym_mixed_group_repeat1] = STATE(227), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), + [sym_text_mode] = STATE(227), + [aux_sym_brack_group_repeat1] = STATE(227), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3665), + [anon_sym_RPAREN] = ACTIONS(3665), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_RBRACK] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3665), + [anon_sym_EQ] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), }, - [227] = { - [sym_block_comment] = STATE(227), - [sym__text_with_env_content] = STATE(227), - [sym__text_content] = STATE(227), - [sym_curly_group] = STATE(227), - [sym_mixed_group] = STATE(227), - [sym_text] = STATE(227), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(227), - [sym_inline_formula] = STATE(227), - [sym_math_set] = STATE(227), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(227), - [sym_comment_environment] = STATE(227), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(227), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(227), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(227), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(227), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(227), - [sym_generic_command] = STATE(227), - [sym_package_include] = STATE(227), - [sym_class_include] = STATE(227), - [sym_latex_include] = STATE(227), - [sym_biblatex_include] = STATE(227), - [sym_bibtex_include] = STATE(227), - [sym_graphics_include] = STATE(227), - [sym_svg_include] = STATE(227), - [sym_inkscape_include] = STATE(227), - [sym_verbatim_include] = STATE(227), - [sym_import_include] = STATE(227), - [sym_caption] = STATE(227), - [sym_citation] = STATE(227), - [sym_label_definition] = STATE(227), - [sym_label_reference] = STATE(227), - [sym_label_reference_range] = STATE(227), - [sym_label_number] = STATE(227), - [sym_new_command_definition] = STATE(227), - [sym_old_command_definition] = STATE(227), - [sym_let_command_definition] = STATE(227), - [sym_environment_definition] = STATE(227), - [sym_glossary_entry_definition] = STATE(227), - [sym_glossary_entry_reference] = STATE(227), - [sym_acronym_definition] = STATE(227), - [sym_acronym_reference] = STATE(227), - [sym_theorem_definition] = STATE(227), - [sym_color_definition] = STATE(227), - [sym_color_set_definition] = STATE(227), - [sym_color_reference] = STATE(227), - [sym_tikz_library_import] = STATE(227), - [aux_sym_mixed_group_repeat1] = STATE(227), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3471), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3474), - [anon_sym_LPAREN] = ACTIONS(3477), - [anon_sym_RPAREN] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_RBRACK] = ACTIONS(3480), - [anon_sym_COMMA] = ACTIONS(3482), - [anon_sym_EQ] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3485), - [sym_word] = ACTIONS(3488), - [sym_placeholder] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_STAR] = ACTIONS(3494), - [anon_sym_SLASH] = ACTIONS(3494), - [anon_sym_CARET] = ACTIONS(3494), - [anon_sym__] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_GT] = ACTIONS(3494), - [anon_sym_BANG] = ACTIONS(3494), - [anon_sym_PIPE] = ACTIONS(3494), - [anon_sym_COLON] = ACTIONS(3494), - [anon_sym_SQUOTE] = ACTIONS(3494), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3497), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3497), - [anon_sym_DOLLAR] = ACTIONS(3500), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3503), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3506), - [anon_sym_BSLASHbegin] = ACTIONS(3509), - [anon_sym_BSLASHusepackage] = ACTIONS(3512), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3512), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3515), - [anon_sym_BSLASHinclude] = ACTIONS(3518), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3518), - [anon_sym_BSLASHinput] = ACTIONS(3518), - [anon_sym_BSLASHsubfile] = ACTIONS(3518), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3521), - [anon_sym_BSLASHbibliography] = ACTIONS(3524), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3527), - [anon_sym_BSLASHincludesvg] = ACTIONS(3530), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3533), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3536), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3536), - [anon_sym_BSLASHimport] = ACTIONS(3539), - [anon_sym_BSLASHsubimport] = ACTIONS(3539), - [anon_sym_BSLASHinputfrom] = ACTIONS(3539), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3539), - [anon_sym_BSLASHincludefrom] = ACTIONS(3539), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3539), - [anon_sym_BSLASHcaption] = ACTIONS(3542), - [anon_sym_BSLASHcite] = ACTIONS(3545), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3548), - [anon_sym_BSLASHCite] = ACTIONS(3545), - [anon_sym_BSLASHnocite] = ACTIONS(3545), - [anon_sym_BSLASHcitet] = ACTIONS(3545), - [anon_sym_BSLASHcitep] = ACTIONS(3545), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3548), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3548), - [anon_sym_BSLASHciteauthor] = ACTIONS(3545), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3548), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3545), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3548), - [anon_sym_BSLASHcitetitle] = ACTIONS(3545), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3548), - [anon_sym_BSLASHciteyear] = ACTIONS(3545), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3548), - [anon_sym_BSLASHcitedate] = ACTIONS(3545), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3548), - [anon_sym_BSLASHciteurl] = ACTIONS(3545), - [anon_sym_BSLASHfullcite] = ACTIONS(3545), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3545), - [anon_sym_BSLASHcitealt] = ACTIONS(3545), - [anon_sym_BSLASHcitealp] = ACTIONS(3545), - [anon_sym_BSLASHcitetext] = ACTIONS(3545), - [anon_sym_BSLASHparencite] = ACTIONS(3545), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3548), - [anon_sym_BSLASHParencite] = ACTIONS(3545), - [anon_sym_BSLASHfootcite] = ACTIONS(3545), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3545), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3545), - [anon_sym_BSLASHtextcite] = ACTIONS(3545), - [anon_sym_BSLASHTextcite] = ACTIONS(3545), - [anon_sym_BSLASHsmartcite] = ACTIONS(3545), - [anon_sym_BSLASHSmartcite] = ACTIONS(3545), - [anon_sym_BSLASHsupercite] = ACTIONS(3545), - [anon_sym_BSLASHautocite] = ACTIONS(3545), - [anon_sym_BSLASHAutocite] = ACTIONS(3545), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3548), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3548), - [anon_sym_BSLASHvolcite] = ACTIONS(3545), - [anon_sym_BSLASHVolcite] = ACTIONS(3545), - [anon_sym_BSLASHpvolcite] = ACTIONS(3545), - [anon_sym_BSLASHPvolcite] = ACTIONS(3545), - [anon_sym_BSLASHfvolcite] = ACTIONS(3545), - [anon_sym_BSLASHftvolcite] = ACTIONS(3545), - [anon_sym_BSLASHsvolcite] = ACTIONS(3545), - [anon_sym_BSLASHSvolcite] = ACTIONS(3545), - [anon_sym_BSLASHtvolcite] = ACTIONS(3545), - [anon_sym_BSLASHTvolcite] = ACTIONS(3545), - [anon_sym_BSLASHavolcite] = ACTIONS(3545), - [anon_sym_BSLASHAvolcite] = ACTIONS(3545), - [anon_sym_BSLASHnotecite] = ACTIONS(3545), - [anon_sym_BSLASHNotecite] = ACTIONS(3545), - [anon_sym_BSLASHpnotecite] = ACTIONS(3545), - [anon_sym_BSLASHPnotecite] = ACTIONS(3545), - [anon_sym_BSLASHfnotecite] = ACTIONS(3545), - [anon_sym_BSLASHlabel] = ACTIONS(3551), - [anon_sym_BSLASHref] = ACTIONS(3554), - [anon_sym_BSLASHeqref] = ACTIONS(3554), - [anon_sym_BSLASHvref] = ACTIONS(3554), - [anon_sym_BSLASHVref] = ACTIONS(3554), - [anon_sym_BSLASHautoref] = ACTIONS(3554), - [anon_sym_BSLASHpageref] = ACTIONS(3554), - [anon_sym_BSLASHcref] = ACTIONS(3554), - [anon_sym_BSLASHCref] = ACTIONS(3554), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3557), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3557), - [anon_sym_BSLASHnamecref] = ACTIONS(3554), - [anon_sym_BSLASHnameCref] = ACTIONS(3554), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3554), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3554), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3554), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3554), - [anon_sym_BSLASHlabelcref] = ACTIONS(3554), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3554), - [anon_sym_BSLASHcrefrange] = ACTIONS(3560), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3563), - [anon_sym_BSLASHCrefrange] = ACTIONS(3560), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3563), - [anon_sym_BSLASHnewlabel] = ACTIONS(3566), - [anon_sym_BSLASHnewcommand] = ACTIONS(3569), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3572), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3569), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3572), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3569), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3572), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3569), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3572), - [anon_sym_BSLASHdef] = ACTIONS(3575), - [anon_sym_BSLASHlet] = ACTIONS(3578), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3581), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3584), - [anon_sym_BSLASHgls] = ACTIONS(3587), - [anon_sym_BSLASHGls] = ACTIONS(3587), - [anon_sym_BSLASHGLS] = ACTIONS(3587), - [anon_sym_BSLASHglspl] = ACTIONS(3587), - [anon_sym_BSLASHGlspl] = ACTIONS(3587), - [anon_sym_BSLASHGLSpl] = ACTIONS(3587), - [anon_sym_BSLASHglsdisp] = ACTIONS(3587), - [anon_sym_BSLASHglslink] = ACTIONS(3587), - [anon_sym_BSLASHglstext] = ACTIONS(3587), - [anon_sym_BSLASHGlstext] = ACTIONS(3587), - [anon_sym_BSLASHGLStext] = ACTIONS(3587), - [anon_sym_BSLASHglsfirst] = ACTIONS(3587), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3587), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3587), - [anon_sym_BSLASHglsplural] = ACTIONS(3587), - [anon_sym_BSLASHGlsplural] = ACTIONS(3587), - [anon_sym_BSLASHGLSplural] = ACTIONS(3587), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3587), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3587), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3587), - [anon_sym_BSLASHglsname] = ACTIONS(3587), - [anon_sym_BSLASHGlsname] = ACTIONS(3587), - [anon_sym_BSLASHGLSname] = ACTIONS(3587), - [anon_sym_BSLASHglssymbol] = ACTIONS(3587), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3587), - [anon_sym_BSLASHglsdesc] = ACTIONS(3587), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3587), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3587), - [anon_sym_BSLASHglsuseri] = ACTIONS(3587), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3587), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3587), - [anon_sym_BSLASHglsuserii] = ACTIONS(3587), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3587), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3587), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3587), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3587), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3587), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3587), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3587), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3587), - [anon_sym_BSLASHglsuserv] = ACTIONS(3587), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3587), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3587), - [anon_sym_BSLASHglsuservi] = ACTIONS(3587), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3587), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3587), - [anon_sym_BSLASHnewacronym] = ACTIONS(3590), - [anon_sym_BSLASHacrshort] = ACTIONS(3593), - [anon_sym_BSLASHAcrshort] = ACTIONS(3593), - [anon_sym_BSLASHACRshort] = ACTIONS(3593), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3593), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3593), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3593), - [anon_sym_BSLASHacrlong] = ACTIONS(3593), - [anon_sym_BSLASHAcrlong] = ACTIONS(3593), - [anon_sym_BSLASHACRlong] = ACTIONS(3593), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3593), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3593), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3593), - [anon_sym_BSLASHacrfull] = ACTIONS(3593), - [anon_sym_BSLASHAcrfull] = ACTIONS(3593), - [anon_sym_BSLASHACRfull] = ACTIONS(3593), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3593), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3593), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3593), - [anon_sym_BSLASHacs] = ACTIONS(3593), - [anon_sym_BSLASHAcs] = ACTIONS(3593), - [anon_sym_BSLASHacsp] = ACTIONS(3593), - [anon_sym_BSLASHAcsp] = ACTIONS(3593), - [anon_sym_BSLASHacl] = ACTIONS(3593), - [anon_sym_BSLASHAcl] = ACTIONS(3593), - [anon_sym_BSLASHaclp] = ACTIONS(3593), - [anon_sym_BSLASHAclp] = ACTIONS(3593), - [anon_sym_BSLASHacf] = ACTIONS(3593), - [anon_sym_BSLASHAcf] = ACTIONS(3593), - [anon_sym_BSLASHacfp] = ACTIONS(3593), - [anon_sym_BSLASHAcfp] = ACTIONS(3593), - [anon_sym_BSLASHac] = ACTIONS(3593), - [anon_sym_BSLASHAc] = ACTIONS(3593), - [anon_sym_BSLASHacp] = ACTIONS(3593), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3593), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3593), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3593), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3593), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3593), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3593), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3593), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3593), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3593), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3593), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3596), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3596), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3599), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3602), - [anon_sym_BSLASHcolor] = ACTIONS(3605), - [anon_sym_BSLASHcolorbox] = ACTIONS(3605), - [anon_sym_BSLASHtextcolor] = ACTIONS(3605), - [anon_sym_BSLASHpagecolor] = ACTIONS(3605), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3608), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3608), + [231] = { + [sym_block_comment] = STATE(217), + [sym__text_with_env_content] = STATE(217), + [sym__text_content] = STATE(217), + [sym_curly_group] = STATE(217), + [sym_mixed_group] = STATE(217), + [sym_text] = STATE(217), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(217), + [sym_inline_formula] = STATE(217), + [sym_math_set] = STATE(217), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(217), + [sym_comment_environment] = STATE(217), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(217), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(217), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(217), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(217), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(217), + [sym_generic_command] = STATE(217), + [sym_package_include] = STATE(217), + [sym_class_include] = STATE(217), + [sym_latex_include] = STATE(217), + [sym_biblatex_include] = STATE(217), + [sym_bibtex_include] = STATE(217), + [sym_graphics_include] = STATE(217), + [sym_svg_include] = STATE(217), + [sym_inkscape_include] = STATE(217), + [sym_verbatim_include] = STATE(217), + [sym_import_include] = STATE(217), + [sym_caption] = STATE(217), + [sym_citation] = STATE(217), + [sym_label_definition] = STATE(217), + [sym_label_reference] = STATE(217), + [sym_label_reference_range] = STATE(217), + [sym_label_number] = STATE(217), + [sym_new_command_definition] = STATE(217), + [sym_old_command_definition] = STATE(217), + [sym_let_command_definition] = STATE(217), + [sym_environment_definition] = STATE(217), + [sym_glossary_entry_definition] = STATE(217), + [sym_glossary_entry_reference] = STATE(217), + [sym_acronym_definition] = STATE(217), + [sym_acronym_reference] = STATE(217), + [sym_theorem_definition] = STATE(217), + [sym_color_definition] = STATE(217), + [sym_color_set_definition] = STATE(217), + [sym_color_reference] = STATE(217), + [sym_tikz_library_import] = STATE(217), + [sym_text_mode] = STATE(217), + [aux_sym_mixed_group_repeat1] = STATE(217), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3669), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3669), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_EQ] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), }, - [228] = { - [sym_block_comment] = STATE(221), - [sym__text_with_env_content] = STATE(221), - [sym__text_content] = STATE(221), - [sym_curly_group] = STATE(221), - [sym_brack_group] = STATE(221), - [sym_text] = STATE(221), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(221), - [sym_inline_formula] = STATE(221), - [sym_math_set] = STATE(221), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(221), - [sym_comment_environment] = STATE(221), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(221), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(221), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(221), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(221), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(221), - [sym_generic_command] = STATE(221), - [sym_package_include] = STATE(221), - [sym_class_include] = STATE(221), - [sym_latex_include] = STATE(221), - [sym_biblatex_include] = STATE(221), - [sym_bibtex_include] = STATE(221), - [sym_graphics_include] = STATE(221), - [sym_svg_include] = STATE(221), - [sym_inkscape_include] = STATE(221), - [sym_verbatim_include] = STATE(221), - [sym_import_include] = STATE(221), - [sym_caption] = STATE(221), - [sym_citation] = STATE(221), - [sym_label_definition] = STATE(221), - [sym_label_reference] = STATE(221), - [sym_label_reference_range] = STATE(221), - [sym_label_number] = STATE(221), - [sym_new_command_definition] = STATE(221), - [sym_old_command_definition] = STATE(221), - [sym_let_command_definition] = STATE(221), - [sym_environment_definition] = STATE(221), - [sym_glossary_entry_definition] = STATE(221), - [sym_glossary_entry_reference] = STATE(221), - [sym_acronym_definition] = STATE(221), - [sym_acronym_reference] = STATE(221), - [sym_theorem_definition] = STATE(221), - [sym_color_definition] = STATE(221), - [sym_color_set_definition] = STATE(221), - [sym_color_reference] = STATE(221), - [sym_tikz_library_import] = STATE(221), - [aux_sym_brack_group_repeat1] = STATE(221), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3611), - [anon_sym_RPAREN] = ACTIONS(3611), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_RBRACK] = ACTIONS(3613), - [anon_sym_COMMA] = ACTIONS(3611), - [anon_sym_EQ] = ACTIONS(3611), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), + [232] = { + [sym_block_comment] = STATE(237), + [sym__text_with_env_content] = STATE(237), + [sym__text_content] = STATE(237), + [sym_curly_group] = STATE(237), + [sym_mixed_group] = STATE(237), + [sym_text] = STATE(237), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(237), + [sym_inline_formula] = STATE(237), + [sym_math_set] = STATE(237), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(237), + [sym_comment_environment] = STATE(237), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(237), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(237), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(237), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(237), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(237), + [sym_generic_command] = STATE(237), + [sym_package_include] = STATE(237), + [sym_class_include] = STATE(237), + [sym_latex_include] = STATE(237), + [sym_biblatex_include] = STATE(237), + [sym_bibtex_include] = STATE(237), + [sym_graphics_include] = STATE(237), + [sym_svg_include] = STATE(237), + [sym_inkscape_include] = STATE(237), + [sym_verbatim_include] = STATE(237), + [sym_import_include] = STATE(237), + [sym_caption] = STATE(237), + [sym_citation] = STATE(237), + [sym_label_definition] = STATE(237), + [sym_label_reference] = STATE(237), + [sym_label_reference_range] = STATE(237), + [sym_label_number] = STATE(237), + [sym_new_command_definition] = STATE(237), + [sym_old_command_definition] = STATE(237), + [sym_let_command_definition] = STATE(237), + [sym_environment_definition] = STATE(237), + [sym_glossary_entry_definition] = STATE(237), + [sym_glossary_entry_reference] = STATE(237), + [sym_acronym_definition] = STATE(237), + [sym_acronym_reference] = STATE(237), + [sym_theorem_definition] = STATE(237), + [sym_color_definition] = STATE(237), + [sym_color_set_definition] = STATE(237), + [sym_color_reference] = STATE(237), + [sym_tikz_library_import] = STATE(237), + [sym_text_mode] = STATE(237), + [aux_sym_mixed_group_repeat1] = STATE(237), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3673), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3673), + [anon_sym_COMMA] = ACTIONS(3675), + [anon_sym_EQ] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), }, - [229] = { - [sym_block_comment] = STATE(225), - [sym__text_with_env_content] = STATE(225), - [sym__text_content] = STATE(225), - [sym_curly_group] = STATE(225), - [sym_mixed_group] = STATE(225), - [sym_text] = STATE(225), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(225), - [sym_inline_formula] = STATE(225), - [sym_math_set] = STATE(225), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(225), - [sym_comment_environment] = STATE(225), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(225), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(225), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(225), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(225), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(225), - [sym_generic_command] = STATE(225), - [sym_package_include] = STATE(225), - [sym_class_include] = STATE(225), - [sym_latex_include] = STATE(225), - [sym_biblatex_include] = STATE(225), - [sym_bibtex_include] = STATE(225), - [sym_graphics_include] = STATE(225), - [sym_svg_include] = STATE(225), - [sym_inkscape_include] = STATE(225), - [sym_verbatim_include] = STATE(225), - [sym_import_include] = STATE(225), - [sym_caption] = STATE(225), - [sym_citation] = STATE(225), - [sym_label_definition] = STATE(225), - [sym_label_reference] = STATE(225), - [sym_label_reference_range] = STATE(225), - [sym_label_number] = STATE(225), - [sym_new_command_definition] = STATE(225), - [sym_old_command_definition] = STATE(225), - [sym_let_command_definition] = STATE(225), - [sym_environment_definition] = STATE(225), - [sym_glossary_entry_definition] = STATE(225), - [sym_glossary_entry_reference] = STATE(225), - [sym_acronym_definition] = STATE(225), - [sym_acronym_reference] = STATE(225), - [sym_theorem_definition] = STATE(225), - [sym_color_definition] = STATE(225), - [sym_color_set_definition] = STATE(225), - [sym_color_reference] = STATE(225), - [sym_tikz_library_import] = STATE(225), - [aux_sym_mixed_group_repeat1] = STATE(225), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3615), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3615), - [anon_sym_COMMA] = ACTIONS(3617), - [anon_sym_EQ] = ACTIONS(3617), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), + [233] = { + [sym_block_comment] = STATE(226), + [sym__text_with_env_content] = STATE(226), + [sym__text_content] = STATE(226), + [sym_curly_group] = STATE(226), + [sym_mixed_group] = STATE(226), + [sym_text] = STATE(226), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(226), + [sym_inline_formula] = STATE(226), + [sym_math_set] = STATE(226), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(226), + [sym_comment_environment] = STATE(226), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(226), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(226), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(226), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(226), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(226), + [sym_generic_command] = STATE(226), + [sym_package_include] = STATE(226), + [sym_class_include] = STATE(226), + [sym_latex_include] = STATE(226), + [sym_biblatex_include] = STATE(226), + [sym_bibtex_include] = STATE(226), + [sym_graphics_include] = STATE(226), + [sym_svg_include] = STATE(226), + [sym_inkscape_include] = STATE(226), + [sym_verbatim_include] = STATE(226), + [sym_import_include] = STATE(226), + [sym_caption] = STATE(226), + [sym_citation] = STATE(226), + [sym_label_definition] = STATE(226), + [sym_label_reference] = STATE(226), + [sym_label_reference_range] = STATE(226), + [sym_label_number] = STATE(226), + [sym_new_command_definition] = STATE(226), + [sym_old_command_definition] = STATE(226), + [sym_let_command_definition] = STATE(226), + [sym_environment_definition] = STATE(226), + [sym_glossary_entry_definition] = STATE(226), + [sym_glossary_entry_reference] = STATE(226), + [sym_acronym_definition] = STATE(226), + [sym_acronym_reference] = STATE(226), + [sym_theorem_definition] = STATE(226), + [sym_color_definition] = STATE(226), + [sym_color_set_definition] = STATE(226), + [sym_color_reference] = STATE(226), + [sym_tikz_library_import] = STATE(226), + [sym_text_mode] = STATE(226), + [aux_sym_mixed_group_repeat1] = STATE(226), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3677), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3677), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), }, - [230] = { + [234] = { + [sym_block_comment] = STATE(219), + [sym__text_with_env_content] = STATE(219), + [sym__text_content] = STATE(219), + [sym_curly_group] = STATE(219), + [sym_brack_group] = STATE(219), + [sym_text] = STATE(219), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(219), + [sym_inline_formula] = STATE(219), + [sym_math_set] = STATE(219), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(219), + [sym_comment_environment] = STATE(219), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(219), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(219), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(219), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(219), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(219), + [sym_generic_command] = STATE(219), + [sym_package_include] = STATE(219), + [sym_class_include] = STATE(219), + [sym_latex_include] = STATE(219), + [sym_biblatex_include] = STATE(219), + [sym_bibtex_include] = STATE(219), + [sym_graphics_include] = STATE(219), + [sym_svg_include] = STATE(219), + [sym_inkscape_include] = STATE(219), + [sym_verbatim_include] = STATE(219), + [sym_import_include] = STATE(219), + [sym_caption] = STATE(219), + [sym_citation] = STATE(219), + [sym_label_definition] = STATE(219), + [sym_label_reference] = STATE(219), + [sym_label_reference_range] = STATE(219), + [sym_label_number] = STATE(219), + [sym_new_command_definition] = STATE(219), + [sym_old_command_definition] = STATE(219), + [sym_let_command_definition] = STATE(219), + [sym_environment_definition] = STATE(219), + [sym_glossary_entry_definition] = STATE(219), + [sym_glossary_entry_reference] = STATE(219), + [sym_acronym_definition] = STATE(219), + [sym_acronym_reference] = STATE(219), + [sym_theorem_definition] = STATE(219), + [sym_color_definition] = STATE(219), + [sym_color_set_definition] = STATE(219), + [sym_color_reference] = STATE(219), + [sym_tikz_library_import] = STATE(219), + [sym_text_mode] = STATE(219), + [aux_sym_brack_group_repeat1] = STATE(219), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_RPAREN] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_RBRACK] = ACTIONS(3679), + [anon_sym_COMMA] = ACTIONS(3653), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), + }, + [235] = { + [sym_block_comment] = STATE(238), + [sym__text_with_env_content] = STATE(238), + [sym__text_content] = STATE(238), + [sym_curly_group] = STATE(238), + [sym_brack_group] = STATE(238), + [sym_text] = STATE(238), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(238), + [sym_inline_formula] = STATE(238), + [sym_math_set] = STATE(238), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(238), + [sym_comment_environment] = STATE(238), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(238), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(238), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(238), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(238), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(238), + [sym_generic_command] = STATE(238), + [sym_package_include] = STATE(238), + [sym_class_include] = STATE(238), + [sym_latex_include] = STATE(238), + [sym_biblatex_include] = STATE(238), + [sym_bibtex_include] = STATE(238), + [sym_graphics_include] = STATE(238), + [sym_svg_include] = STATE(238), + [sym_inkscape_include] = STATE(238), + [sym_verbatim_include] = STATE(238), + [sym_import_include] = STATE(238), + [sym_caption] = STATE(238), + [sym_citation] = STATE(238), + [sym_label_definition] = STATE(238), + [sym_label_reference] = STATE(238), + [sym_label_reference_range] = STATE(238), + [sym_label_number] = STATE(238), + [sym_new_command_definition] = STATE(238), + [sym_old_command_definition] = STATE(238), + [sym_let_command_definition] = STATE(238), + [sym_environment_definition] = STATE(238), + [sym_glossary_entry_definition] = STATE(238), + [sym_glossary_entry_reference] = STATE(238), + [sym_acronym_definition] = STATE(238), + [sym_acronym_reference] = STATE(238), + [sym_theorem_definition] = STATE(238), + [sym_color_definition] = STATE(238), + [sym_color_set_definition] = STATE(238), + [sym_color_reference] = STATE(238), + [sym_tikz_library_import] = STATE(238), + [sym_text_mode] = STATE(238), + [aux_sym_brack_group_repeat1] = STATE(238), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3681), + [anon_sym_RPAREN] = ACTIONS(3681), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_RBRACK] = ACTIONS(3683), + [anon_sym_COMMA] = ACTIONS(3681), + [anon_sym_EQ] = ACTIONS(3681), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), + }, + [236] = { + [sym_block_comment] = STATE(234), + [sym__text_with_env_content] = STATE(234), + [sym__text_content] = STATE(234), + [sym_curly_group] = STATE(234), + [sym_brack_group] = STATE(234), + [sym_text] = STATE(234), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(234), + [sym_inline_formula] = STATE(234), + [sym_math_set] = STATE(234), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(234), + [sym_comment_environment] = STATE(234), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(234), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(234), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(234), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(234), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(234), + [sym_generic_command] = STATE(234), + [sym_package_include] = STATE(234), + [sym_class_include] = STATE(234), + [sym_latex_include] = STATE(234), + [sym_biblatex_include] = STATE(234), + [sym_bibtex_include] = STATE(234), + [sym_graphics_include] = STATE(234), + [sym_svg_include] = STATE(234), + [sym_inkscape_include] = STATE(234), + [sym_verbatim_include] = STATE(234), + [sym_import_include] = STATE(234), + [sym_caption] = STATE(234), + [sym_citation] = STATE(234), + [sym_label_definition] = STATE(234), + [sym_label_reference] = STATE(234), + [sym_label_reference_range] = STATE(234), + [sym_label_number] = STATE(234), + [sym_new_command_definition] = STATE(234), + [sym_old_command_definition] = STATE(234), + [sym_let_command_definition] = STATE(234), + [sym_environment_definition] = STATE(234), + [sym_glossary_entry_definition] = STATE(234), + [sym_glossary_entry_reference] = STATE(234), + [sym_acronym_definition] = STATE(234), + [sym_acronym_reference] = STATE(234), + [sym_theorem_definition] = STATE(234), + [sym_color_definition] = STATE(234), + [sym_color_set_definition] = STATE(234), + [sym_color_reference] = STATE(234), + [sym_tikz_library_import] = STATE(234), + [sym_text_mode] = STATE(234), + [aux_sym_brack_group_repeat1] = STATE(234), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3685), + [anon_sym_RPAREN] = ACTIONS(3685), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_RBRACK] = ACTIONS(3687), + [anon_sym_COMMA] = ACTIONS(3685), + [anon_sym_EQ] = ACTIONS(3685), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), + }, + [237] = { + [sym_block_comment] = STATE(226), + [sym__text_with_env_content] = STATE(226), + [sym__text_content] = STATE(226), + [sym_curly_group] = STATE(226), + [sym_mixed_group] = STATE(226), + [sym_text] = STATE(226), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(226), + [sym_inline_formula] = STATE(226), + [sym_math_set] = STATE(226), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(226), + [sym_comment_environment] = STATE(226), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(226), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(226), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(226), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(226), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(226), + [sym_generic_command] = STATE(226), + [sym_package_include] = STATE(226), + [sym_class_include] = STATE(226), + [sym_latex_include] = STATE(226), + [sym_biblatex_include] = STATE(226), + [sym_bibtex_include] = STATE(226), + [sym_graphics_include] = STATE(226), + [sym_svg_include] = STATE(226), + [sym_inkscape_include] = STATE(226), + [sym_verbatim_include] = STATE(226), + [sym_import_include] = STATE(226), + [sym_caption] = STATE(226), + [sym_citation] = STATE(226), + [sym_label_definition] = STATE(226), + [sym_label_reference] = STATE(226), + [sym_label_reference_range] = STATE(226), + [sym_label_number] = STATE(226), + [sym_new_command_definition] = STATE(226), + [sym_old_command_definition] = STATE(226), + [sym_let_command_definition] = STATE(226), + [sym_environment_definition] = STATE(226), + [sym_glossary_entry_definition] = STATE(226), + [sym_glossary_entry_reference] = STATE(226), + [sym_acronym_definition] = STATE(226), + [sym_acronym_reference] = STATE(226), + [sym_theorem_definition] = STATE(226), + [sym_color_definition] = STATE(226), + [sym_color_set_definition] = STATE(226), + [sym_color_reference] = STATE(226), + [sym_tikz_library_import] = STATE(226), + [sym_text_mode] = STATE(226), + [aux_sym_mixed_group_repeat1] = STATE(226), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), + }, + [238] = { + [sym_block_comment] = STATE(219), + [sym__text_with_env_content] = STATE(219), + [sym__text_content] = STATE(219), + [sym_curly_group] = STATE(219), + [sym_brack_group] = STATE(219), + [sym_text] = STATE(219), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(219), + [sym_inline_formula] = STATE(219), + [sym_math_set] = STATE(219), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(219), + [sym_comment_environment] = STATE(219), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(219), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(219), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(219), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(219), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(219), + [sym_generic_command] = STATE(219), + [sym_package_include] = STATE(219), + [sym_class_include] = STATE(219), + [sym_latex_include] = STATE(219), + [sym_biblatex_include] = STATE(219), + [sym_bibtex_include] = STATE(219), + [sym_graphics_include] = STATE(219), + [sym_svg_include] = STATE(219), + [sym_inkscape_include] = STATE(219), + [sym_verbatim_include] = STATE(219), + [sym_import_include] = STATE(219), + [sym_caption] = STATE(219), + [sym_citation] = STATE(219), + [sym_label_definition] = STATE(219), + [sym_label_reference] = STATE(219), + [sym_label_reference_range] = STATE(219), + [sym_label_number] = STATE(219), + [sym_new_command_definition] = STATE(219), + [sym_old_command_definition] = STATE(219), + [sym_let_command_definition] = STATE(219), + [sym_environment_definition] = STATE(219), + [sym_glossary_entry_definition] = STATE(219), + [sym_glossary_entry_reference] = STATE(219), + [sym_acronym_definition] = STATE(219), + [sym_acronym_reference] = STATE(219), + [sym_theorem_definition] = STATE(219), + [sym_color_definition] = STATE(219), + [sym_color_set_definition] = STATE(219), + [sym_color_reference] = STATE(219), + [sym_tikz_library_import] = STATE(219), + [sym_text_mode] = STATE(219), + [aux_sym_brack_group_repeat1] = STATE(219), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3653), + [anon_sym_RPAREN] = ACTIONS(3653), + [anon_sym_LBRACK] = ACTIONS(3655), + [anon_sym_RBRACK] = ACTIONS(3691), + [anon_sym_COMMA] = ACTIONS(3653), + [anon_sym_EQ] = ACTIONS(3653), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), + }, + [239] = { + [sym_block_comment] = STATE(228), + [sym__text_with_env_content] = STATE(228), + [sym__text_content] = STATE(228), + [sym_curly_group] = STATE(228), + [sym_mixed_group] = STATE(228), + [sym_text] = STATE(228), + [sym_operator] = STATE(1396), + [sym_displayed_equation] = STATE(228), + [sym_inline_formula] = STATE(228), + [sym_math_set] = STATE(228), + [sym_begin] = STATE(21), + [sym_generic_environment] = STATE(228), + [sym_comment_environment] = STATE(228), + [sym__trivia_begin_comment] = STATE(2355), + [sym_verbatim_environment] = STATE(228), + [sym__trivia_begin_verbatim] = STATE(2356), + [sym_listing_environment] = STATE(228), + [sym__trivia_begin_listing] = STATE(2357), + [sym_minted_environment] = STATE(228), + [sym__trivia_begin_minted] = STATE(2358), + [sym_pycode_environment] = STATE(228), + [sym__trivia_begin_pycode] = STATE(2359), + [sym__command] = STATE(228), + [sym_generic_command] = STATE(228), + [sym_package_include] = STATE(228), + [sym_class_include] = STATE(228), + [sym_latex_include] = STATE(228), + [sym_biblatex_include] = STATE(228), + [sym_bibtex_include] = STATE(228), + [sym_graphics_include] = STATE(228), + [sym_svg_include] = STATE(228), + [sym_inkscape_include] = STATE(228), + [sym_verbatim_include] = STATE(228), + [sym_import_include] = STATE(228), + [sym_caption] = STATE(228), + [sym_citation] = STATE(228), + [sym_label_definition] = STATE(228), + [sym_label_reference] = STATE(228), + [sym_label_reference_range] = STATE(228), + [sym_label_number] = STATE(228), + [sym_new_command_definition] = STATE(228), + [sym_old_command_definition] = STATE(228), + [sym_let_command_definition] = STATE(228), + [sym_environment_definition] = STATE(228), + [sym_glossary_entry_definition] = STATE(228), + [sym_glossary_entry_reference] = STATE(228), + [sym_acronym_definition] = STATE(228), + [sym_acronym_reference] = STATE(228), + [sym_theorem_definition] = STATE(228), + [sym_color_definition] = STATE(228), + [sym_color_set_definition] = STATE(228), + [sym_color_reference] = STATE(228), + [sym_tikz_library_import] = STATE(228), + [sym_text_mode] = STATE(228), + [aux_sym_mixed_group_repeat1] = STATE(228), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3693), + [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_EQ] = ACTIONS(3695), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), + [anon_sym_BSLASHbegin] = ACTIONS(61), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), + }, + [240] = { [sym_block_comment] = STATE(218), [sym__text_with_env_content] = STATE(218), [sym__text_content] = STATE(218), [sym_curly_group] = STATE(218), [sym_mixed_group] = STATE(218), [sym_text] = STATE(218), - [sym_operator] = STATE(1392), + [sym_operator] = STATE(1396), [sym_displayed_equation] = STATE(218), [sym_inline_formula] = STATE(218), [sym_math_set] = STATE(218), - [sym_begin] = STATE(9), + [sym_begin] = STATE(21), [sym_generic_environment] = STATE(218), [sym_comment_environment] = STATE(218), - [sym__trivia_begin_comment] = STATE(2341), + [sym__trivia_begin_comment] = STATE(2355), [sym_verbatim_environment] = STATE(218), - [sym__trivia_begin_verbatim] = STATE(2342), + [sym__trivia_begin_verbatim] = STATE(2356), [sym_listing_environment] = STATE(218), - [sym__trivia_begin_listing] = STATE(2343), + [sym__trivia_begin_listing] = STATE(2357), [sym_minted_environment] = STATE(218), - [sym__trivia_begin_minted] = STATE(2344), + [sym__trivia_begin_minted] = STATE(2358), [sym_pycode_environment] = STATE(218), - [sym__trivia_begin_pycode] = STATE(2345), + [sym__trivia_begin_pycode] = STATE(2359), [sym__command] = STATE(218), [sym_generic_command] = STATE(218), [sym_package_include] = STATE(218), @@ -97893,4120 +99642,1126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(218), [sym_color_reference] = STATE(218), [sym_tikz_library_import] = STATE(218), + [sym_text_mode] = STATE(218), [aux_sym_mixed_group_repeat1] = STATE(218), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3619), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3619), - [anon_sym_COMMA] = ACTIONS(3621), - [anon_sym_EQ] = ACTIONS(3621), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), + [aux_sym_text_repeat1] = STATE(264), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3697), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(3697), + [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_EQ] = ACTIONS(3699), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3271), + [anon_sym_DOLLAR] = ACTIONS(3273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3277), [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(3345), + [anon_sym_BSLASHintertext] = ACTIONS(3345), + [anon_sym_shortintertext] = ACTIONS(3345), }, - [231] = { - [sym_block_comment] = STATE(240), - [sym__text_with_env_content] = STATE(240), - [sym__text_content] = STATE(240), - [sym_curly_group] = STATE(240), - [sym_brack_group] = STATE(240), - [sym_text] = STATE(240), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(240), - [sym_inline_formula] = STATE(240), - [sym_math_set] = STATE(240), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(240), - [sym_comment_environment] = STATE(240), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(240), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(240), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(240), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(240), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(240), - [sym_generic_command] = STATE(240), - [sym_package_include] = STATE(240), - [sym_class_include] = STATE(240), - [sym_latex_include] = STATE(240), - [sym_biblatex_include] = STATE(240), - [sym_bibtex_include] = STATE(240), - [sym_graphics_include] = STATE(240), - [sym_svg_include] = STATE(240), - [sym_inkscape_include] = STATE(240), - [sym_verbatim_include] = STATE(240), - [sym_import_include] = STATE(240), - [sym_caption] = STATE(240), - [sym_citation] = STATE(240), - [sym_label_definition] = STATE(240), - [sym_label_reference] = STATE(240), - [sym_label_reference_range] = STATE(240), - [sym_label_number] = STATE(240), - [sym_new_command_definition] = STATE(240), - [sym_old_command_definition] = STATE(240), - [sym_let_command_definition] = STATE(240), - [sym_environment_definition] = STATE(240), - [sym_glossary_entry_definition] = STATE(240), - [sym_glossary_entry_reference] = STATE(240), - [sym_acronym_definition] = STATE(240), - [sym_acronym_reference] = STATE(240), - [sym_theorem_definition] = STATE(240), - [sym_color_definition] = STATE(240), - [sym_color_set_definition] = STATE(240), - [sym_color_reference] = STATE(240), - [sym_tikz_library_import] = STATE(240), - [aux_sym_brack_group_repeat1] = STATE(240), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3623), - [anon_sym_RPAREN] = ACTIONS(3623), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_RBRACK] = ACTIONS(3625), - [anon_sym_COMMA] = ACTIONS(3623), - [anon_sym_EQ] = ACTIONS(3623), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [241] = { + [sym_block_comment] = STATE(244), + [sym__text_content] = STATE(244), + [sym_curly_group] = STATE(244), + [sym_brack_group] = STATE(244), + [sym_text] = STATE(244), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(244), + [sym_inline_formula] = STATE(244), + [sym_math_set] = STATE(244), + [sym__command] = STATE(244), + [sym_generic_command] = STATE(244), + [sym_package_include] = STATE(244), + [sym_class_include] = STATE(244), + [sym_latex_include] = STATE(244), + [sym_biblatex_include] = STATE(244), + [sym_bibtex_include] = STATE(244), + [sym_graphics_include] = STATE(244), + [sym_svg_include] = STATE(244), + [sym_inkscape_include] = STATE(244), + [sym_verbatim_include] = STATE(244), + [sym_import_include] = STATE(244), + [sym_caption] = STATE(244), + [sym_citation] = STATE(244), + [sym_label_definition] = STATE(244), + [sym_label_reference] = STATE(244), + [sym_label_reference_range] = STATE(244), + [sym_label_number] = STATE(244), + [sym_new_command_definition] = STATE(244), + [sym_old_command_definition] = STATE(244), + [sym_let_command_definition] = STATE(244), + [sym_environment_definition] = STATE(244), + [sym_glossary_entry_definition] = STATE(244), + [sym_glossary_entry_reference] = STATE(244), + [sym_acronym_definition] = STATE(244), + [sym_acronym_reference] = STATE(244), + [sym_theorem_definition] = STATE(244), + [sym_color_definition] = STATE(244), + [sym_color_set_definition] = STATE(244), + [sym_color_reference] = STATE(244), + [sym_tikz_library_import] = STATE(244), + [sym_text_mode] = STATE(244), + [aux_sym_text_repeat1] = STATE(267), + [aux_sym_value_repeat1] = STATE(244), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3705), + [anon_sym_RPAREN] = ACTIONS(3705), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3709), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3719), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3719), + [anon_sym_DOLLAR] = ACTIONS(3721), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3723), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, - [232] = { - [sym_block_comment] = STATE(227), - [sym__text_with_env_content] = STATE(227), - [sym__text_content] = STATE(227), - [sym_curly_group] = STATE(227), - [sym_mixed_group] = STATE(227), - [sym_text] = STATE(227), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(227), - [sym_inline_formula] = STATE(227), - [sym_math_set] = STATE(227), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(227), - [sym_comment_environment] = STATE(227), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(227), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(227), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(227), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(227), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(227), - [sym_generic_command] = STATE(227), - [sym_package_include] = STATE(227), - [sym_class_include] = STATE(227), - [sym_latex_include] = STATE(227), - [sym_biblatex_include] = STATE(227), - [sym_bibtex_include] = STATE(227), - [sym_graphics_include] = STATE(227), - [sym_svg_include] = STATE(227), - [sym_inkscape_include] = STATE(227), - [sym_verbatim_include] = STATE(227), - [sym_import_include] = STATE(227), - [sym_caption] = STATE(227), - [sym_citation] = STATE(227), - [sym_label_definition] = STATE(227), - [sym_label_reference] = STATE(227), - [sym_label_reference_range] = STATE(227), - [sym_label_number] = STATE(227), - [sym_new_command_definition] = STATE(227), - [sym_old_command_definition] = STATE(227), - [sym_let_command_definition] = STATE(227), - [sym_environment_definition] = STATE(227), - [sym_glossary_entry_definition] = STATE(227), - [sym_glossary_entry_reference] = STATE(227), - [sym_acronym_definition] = STATE(227), - [sym_acronym_reference] = STATE(227), - [sym_theorem_definition] = STATE(227), - [sym_color_definition] = STATE(227), - [sym_color_set_definition] = STATE(227), - [sym_color_reference] = STATE(227), - [sym_tikz_library_import] = STATE(227), - [aux_sym_mixed_group_repeat1] = STATE(227), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3627), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3627), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [242] = { + [sym_block_comment] = STATE(243), + [sym__text_content] = STATE(243), + [sym_curly_group] = STATE(243), + [sym_brack_group] = STATE(243), + [sym_text] = STATE(243), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_math_set] = STATE(243), + [sym__command] = STATE(243), + [sym_generic_command] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_latex_include] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_bibtex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_svg_include] = STATE(243), + [sym_inkscape_include] = STATE(243), + [sym_verbatim_include] = STATE(243), + [sym_import_include] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_label_reference] = STATE(243), + [sym_label_reference_range] = STATE(243), + [sym_label_number] = STATE(243), + [sym_new_command_definition] = STATE(243), + [sym_old_command_definition] = STATE(243), + [sym_let_command_definition] = STATE(243), + [sym_environment_definition] = STATE(243), + [sym_glossary_entry_definition] = STATE(243), + [sym_glossary_entry_reference] = STATE(243), + [sym_acronym_definition] = STATE(243), + [sym_acronym_reference] = STATE(243), + [sym_theorem_definition] = STATE(243), + [sym_color_definition] = STATE(243), + [sym_color_set_definition] = STATE(243), + [sym_color_reference] = STATE(243), + [sym_tikz_library_import] = STATE(243), + [sym_text_mode] = STATE(243), + [aux_sym_text_repeat1] = STATE(267), + [aux_sym_value_repeat1] = STATE(243), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3795), + [anon_sym_RPAREN] = ACTIONS(3795), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_RBRACK] = ACTIONS(3709), + [anon_sym_COMMA] = ACTIONS(3709), + [anon_sym_LBRACE] = ACTIONS(3711), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3797), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3797), + [anon_sym_DOLLAR] = ACTIONS(3799), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3801), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, - [233] = { - [sym_block_comment] = STATE(227), - [sym__text_with_env_content] = STATE(227), - [sym__text_content] = STATE(227), - [sym_curly_group] = STATE(227), - [sym_mixed_group] = STATE(227), - [sym_text] = STATE(227), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(227), - [sym_inline_formula] = STATE(227), - [sym_math_set] = STATE(227), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(227), - [sym_comment_environment] = STATE(227), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(227), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(227), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(227), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(227), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(227), - [sym_generic_command] = STATE(227), - [sym_package_include] = STATE(227), - [sym_class_include] = STATE(227), - [sym_latex_include] = STATE(227), - [sym_biblatex_include] = STATE(227), - [sym_bibtex_include] = STATE(227), - [sym_graphics_include] = STATE(227), - [sym_svg_include] = STATE(227), - [sym_inkscape_include] = STATE(227), - [sym_verbatim_include] = STATE(227), - [sym_import_include] = STATE(227), - [sym_caption] = STATE(227), - [sym_citation] = STATE(227), - [sym_label_definition] = STATE(227), - [sym_label_reference] = STATE(227), - [sym_label_reference_range] = STATE(227), - [sym_label_number] = STATE(227), - [sym_new_command_definition] = STATE(227), - [sym_old_command_definition] = STATE(227), - [sym_let_command_definition] = STATE(227), - [sym_environment_definition] = STATE(227), - [sym_glossary_entry_definition] = STATE(227), - [sym_glossary_entry_reference] = STATE(227), - [sym_acronym_definition] = STATE(227), - [sym_acronym_reference] = STATE(227), - [sym_theorem_definition] = STATE(227), - [sym_color_definition] = STATE(227), - [sym_color_set_definition] = STATE(227), - [sym_color_reference] = STATE(227), - [sym_tikz_library_import] = STATE(227), - [aux_sym_mixed_group_repeat1] = STATE(227), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3629), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3629), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), - }, - [234] = { - [sym_block_comment] = STATE(233), - [sym__text_with_env_content] = STATE(233), - [sym__text_content] = STATE(233), - [sym_curly_group] = STATE(233), - [sym_mixed_group] = STATE(233), - [sym_text] = STATE(233), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(233), - [sym_inline_formula] = STATE(233), - [sym_math_set] = STATE(233), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(233), - [sym_comment_environment] = STATE(233), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(233), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(233), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(233), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(233), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(233), - [sym_generic_command] = STATE(233), - [sym_package_include] = STATE(233), - [sym_class_include] = STATE(233), - [sym_latex_include] = STATE(233), - [sym_biblatex_include] = STATE(233), - [sym_bibtex_include] = STATE(233), - [sym_graphics_include] = STATE(233), - [sym_svg_include] = STATE(233), - [sym_inkscape_include] = STATE(233), - [sym_verbatim_include] = STATE(233), - [sym_import_include] = STATE(233), - [sym_caption] = STATE(233), - [sym_citation] = STATE(233), - [sym_label_definition] = STATE(233), - [sym_label_reference] = STATE(233), - [sym_label_reference_range] = STATE(233), - [sym_label_number] = STATE(233), - [sym_new_command_definition] = STATE(233), - [sym_old_command_definition] = STATE(233), - [sym_let_command_definition] = STATE(233), - [sym_environment_definition] = STATE(233), - [sym_glossary_entry_definition] = STATE(233), - [sym_glossary_entry_reference] = STATE(233), - [sym_acronym_definition] = STATE(233), - [sym_acronym_reference] = STATE(233), - [sym_theorem_definition] = STATE(233), - [sym_color_definition] = STATE(233), - [sym_color_set_definition] = STATE(233), - [sym_color_reference] = STATE(233), - [sym_tikz_library_import] = STATE(233), - [aux_sym_mixed_group_repeat1] = STATE(233), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3631), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3631), - [anon_sym_COMMA] = ACTIONS(3633), - [anon_sym_EQ] = ACTIONS(3633), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), - }, - [235] = { - [sym_block_comment] = STATE(239), - [sym__text_with_env_content] = STATE(239), - [sym__text_content] = STATE(239), - [sym_curly_group] = STATE(239), - [sym_brack_group] = STATE(239), - [sym_text] = STATE(239), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(239), - [sym_inline_formula] = STATE(239), - [sym_math_set] = STATE(239), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(239), - [sym_comment_environment] = STATE(239), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(239), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(239), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(239), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(239), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(239), - [sym_generic_command] = STATE(239), - [sym_package_include] = STATE(239), - [sym_class_include] = STATE(239), - [sym_latex_include] = STATE(239), - [sym_biblatex_include] = STATE(239), - [sym_bibtex_include] = STATE(239), - [sym_graphics_include] = STATE(239), - [sym_svg_include] = STATE(239), - [sym_inkscape_include] = STATE(239), - [sym_verbatim_include] = STATE(239), - [sym_import_include] = STATE(239), - [sym_caption] = STATE(239), - [sym_citation] = STATE(239), - [sym_label_definition] = STATE(239), - [sym_label_reference] = STATE(239), - [sym_label_reference_range] = STATE(239), - [sym_label_number] = STATE(239), - [sym_new_command_definition] = STATE(239), - [sym_old_command_definition] = STATE(239), - [sym_let_command_definition] = STATE(239), - [sym_environment_definition] = STATE(239), - [sym_glossary_entry_definition] = STATE(239), - [sym_glossary_entry_reference] = STATE(239), - [sym_acronym_definition] = STATE(239), - [sym_acronym_reference] = STATE(239), - [sym_theorem_definition] = STATE(239), - [sym_color_definition] = STATE(239), - [sym_color_set_definition] = STATE(239), - [sym_color_reference] = STATE(239), - [sym_tikz_library_import] = STATE(239), - [aux_sym_brack_group_repeat1] = STATE(239), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3635), - [anon_sym_RPAREN] = ACTIONS(3635), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_RBRACK] = ACTIONS(3637), - [anon_sym_COMMA] = ACTIONS(3635), - [anon_sym_EQ] = ACTIONS(3635), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), - }, - [236] = { - [sym_block_comment] = STATE(227), - [sym__text_with_env_content] = STATE(227), - [sym__text_content] = STATE(227), - [sym_curly_group] = STATE(227), - [sym_mixed_group] = STATE(227), - [sym_text] = STATE(227), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(227), - [sym_inline_formula] = STATE(227), - [sym_math_set] = STATE(227), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(227), - [sym_comment_environment] = STATE(227), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(227), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(227), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(227), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(227), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(227), - [sym_generic_command] = STATE(227), - [sym_package_include] = STATE(227), - [sym_class_include] = STATE(227), - [sym_latex_include] = STATE(227), - [sym_biblatex_include] = STATE(227), - [sym_bibtex_include] = STATE(227), - [sym_graphics_include] = STATE(227), - [sym_svg_include] = STATE(227), - [sym_inkscape_include] = STATE(227), - [sym_verbatim_include] = STATE(227), - [sym_import_include] = STATE(227), - [sym_caption] = STATE(227), - [sym_citation] = STATE(227), - [sym_label_definition] = STATE(227), - [sym_label_reference] = STATE(227), - [sym_label_reference_range] = STATE(227), - [sym_label_number] = STATE(227), - [sym_new_command_definition] = STATE(227), - [sym_old_command_definition] = STATE(227), - [sym_let_command_definition] = STATE(227), - [sym_environment_definition] = STATE(227), - [sym_glossary_entry_definition] = STATE(227), - [sym_glossary_entry_reference] = STATE(227), - [sym_acronym_definition] = STATE(227), - [sym_acronym_reference] = STATE(227), - [sym_theorem_definition] = STATE(227), - [sym_color_definition] = STATE(227), - [sym_color_set_definition] = STATE(227), - [sym_color_reference] = STATE(227), - [sym_tikz_library_import] = STATE(227), - [aux_sym_mixed_group_repeat1] = STATE(227), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), - }, - [237] = { - [sym_block_comment] = STATE(236), - [sym__text_with_env_content] = STATE(236), - [sym__text_content] = STATE(236), - [sym_curly_group] = STATE(236), - [sym_mixed_group] = STATE(236), - [sym_text] = STATE(236), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(236), - [sym_inline_formula] = STATE(236), - [sym_math_set] = STATE(236), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(236), - [sym_comment_environment] = STATE(236), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(236), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(236), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(236), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(236), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(236), - [sym_generic_command] = STATE(236), - [sym_package_include] = STATE(236), - [sym_class_include] = STATE(236), - [sym_latex_include] = STATE(236), - [sym_biblatex_include] = STATE(236), - [sym_bibtex_include] = STATE(236), - [sym_graphics_include] = STATE(236), - [sym_svg_include] = STATE(236), - [sym_inkscape_include] = STATE(236), - [sym_verbatim_include] = STATE(236), - [sym_import_include] = STATE(236), - [sym_caption] = STATE(236), - [sym_citation] = STATE(236), - [sym_label_definition] = STATE(236), - [sym_label_reference] = STATE(236), - [sym_label_reference_range] = STATE(236), - [sym_label_number] = STATE(236), - [sym_new_command_definition] = STATE(236), - [sym_old_command_definition] = STATE(236), - [sym_let_command_definition] = STATE(236), - [sym_environment_definition] = STATE(236), - [sym_glossary_entry_definition] = STATE(236), - [sym_glossary_entry_reference] = STATE(236), - [sym_acronym_definition] = STATE(236), - [sym_acronym_reference] = STATE(236), - [sym_theorem_definition] = STATE(236), - [sym_color_definition] = STATE(236), - [sym_color_set_definition] = STATE(236), - [sym_color_reference] = STATE(236), - [sym_tikz_library_import] = STATE(236), - [aux_sym_mixed_group_repeat1] = STATE(236), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3641), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3641), - [anon_sym_COMMA] = ACTIONS(3643), - [anon_sym_EQ] = ACTIONS(3643), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), - }, - [238] = { - [sym_block_comment] = STATE(232), - [sym__text_with_env_content] = STATE(232), - [sym__text_content] = STATE(232), - [sym_curly_group] = STATE(232), - [sym_mixed_group] = STATE(232), - [sym_text] = STATE(232), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(232), - [sym_inline_formula] = STATE(232), - [sym_math_set] = STATE(232), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(232), - [sym_comment_environment] = STATE(232), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(232), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(232), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(232), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(232), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(232), - [sym_generic_command] = STATE(232), - [sym_package_include] = STATE(232), - [sym_class_include] = STATE(232), - [sym_latex_include] = STATE(232), - [sym_biblatex_include] = STATE(232), - [sym_bibtex_include] = STATE(232), - [sym_graphics_include] = STATE(232), - [sym_svg_include] = STATE(232), - [sym_inkscape_include] = STATE(232), - [sym_verbatim_include] = STATE(232), - [sym_import_include] = STATE(232), - [sym_caption] = STATE(232), - [sym_citation] = STATE(232), - [sym_label_definition] = STATE(232), - [sym_label_reference] = STATE(232), - [sym_label_reference_range] = STATE(232), - [sym_label_number] = STATE(232), - [sym_new_command_definition] = STATE(232), - [sym_old_command_definition] = STATE(232), - [sym_let_command_definition] = STATE(232), - [sym_environment_definition] = STATE(232), - [sym_glossary_entry_definition] = STATE(232), - [sym_glossary_entry_reference] = STATE(232), - [sym_acronym_definition] = STATE(232), - [sym_acronym_reference] = STATE(232), - [sym_theorem_definition] = STATE(232), - [sym_color_definition] = STATE(232), - [sym_color_set_definition] = STATE(232), - [sym_color_reference] = STATE(232), - [sym_tikz_library_import] = STATE(232), - [aux_sym_mixed_group_repeat1] = STATE(232), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(3645), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3645), - [anon_sym_COMMA] = ACTIONS(3647), - [anon_sym_EQ] = ACTIONS(3647), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), - }, - [239] = { - [sym_block_comment] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym_curly_group] = STATE(220), - [sym_brack_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_math_set] = STATE(220), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [aux_sym_brack_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_RPAREN] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_RBRACK] = ACTIONS(3649), - [anon_sym_COMMA] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), - }, - [240] = { - [sym_block_comment] = STATE(220), - [sym__text_with_env_content] = STATE(220), - [sym__text_content] = STATE(220), - [sym_curly_group] = STATE(220), - [sym_brack_group] = STATE(220), - [sym_text] = STATE(220), - [sym_operator] = STATE(1392), - [sym_displayed_equation] = STATE(220), - [sym_inline_formula] = STATE(220), - [sym_math_set] = STATE(220), - [sym_begin] = STATE(9), - [sym_generic_environment] = STATE(220), - [sym_comment_environment] = STATE(220), - [sym__trivia_begin_comment] = STATE(2341), - [sym_verbatim_environment] = STATE(220), - [sym__trivia_begin_verbatim] = STATE(2342), - [sym_listing_environment] = STATE(220), - [sym__trivia_begin_listing] = STATE(2343), - [sym_minted_environment] = STATE(220), - [sym__trivia_begin_minted] = STATE(2344), - [sym_pycode_environment] = STATE(220), - [sym__trivia_begin_pycode] = STATE(2345), - [sym__command] = STATE(220), - [sym_generic_command] = STATE(220), - [sym_package_include] = STATE(220), - [sym_class_include] = STATE(220), - [sym_latex_include] = STATE(220), - [sym_biblatex_include] = STATE(220), - [sym_bibtex_include] = STATE(220), - [sym_graphics_include] = STATE(220), - [sym_svg_include] = STATE(220), - [sym_inkscape_include] = STATE(220), - [sym_verbatim_include] = STATE(220), - [sym_import_include] = STATE(220), - [sym_caption] = STATE(220), - [sym_citation] = STATE(220), - [sym_label_definition] = STATE(220), - [sym_label_reference] = STATE(220), - [sym_label_reference_range] = STATE(220), - [sym_label_number] = STATE(220), - [sym_new_command_definition] = STATE(220), - [sym_old_command_definition] = STATE(220), - [sym_let_command_definition] = STATE(220), - [sym_environment_definition] = STATE(220), - [sym_glossary_entry_definition] = STATE(220), - [sym_glossary_entry_reference] = STATE(220), - [sym_acronym_definition] = STATE(220), - [sym_acronym_reference] = STATE(220), - [sym_theorem_definition] = STATE(220), - [sym_color_definition] = STATE(220), - [sym_color_set_definition] = STATE(220), - [sym_color_reference] = STATE(220), - [sym_tikz_library_import] = STATE(220), - [aux_sym_brack_group_repeat1] = STATE(220), - [aux_sym_text_repeat1] = STATE(265), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_RPAREN] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_RBRACK] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3451), - [anon_sym_EQ] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3231), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3231), - [anon_sym_DOLLAR] = ACTIONS(3233), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3235), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3237), - [anon_sym_BSLASHbegin] = ACTIONS(61), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), - }, - [241] = { - [sym_block_comment] = STATE(243), - [sym__text_content] = STATE(243), - [sym_curly_group] = STATE(243), - [sym_brack_group] = STATE(243), - [sym_text] = STATE(243), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(243), - [sym_inline_formula] = STATE(243), - [sym_math_set] = STATE(243), - [sym__command] = STATE(243), - [sym_generic_command] = STATE(243), - [sym_package_include] = STATE(243), - [sym_class_include] = STATE(243), - [sym_latex_include] = STATE(243), - [sym_biblatex_include] = STATE(243), - [sym_bibtex_include] = STATE(243), - [sym_graphics_include] = STATE(243), - [sym_svg_include] = STATE(243), - [sym_inkscape_include] = STATE(243), - [sym_verbatim_include] = STATE(243), - [sym_import_include] = STATE(243), - [sym_caption] = STATE(243), - [sym_citation] = STATE(243), - [sym_label_definition] = STATE(243), - [sym_label_reference] = STATE(243), - [sym_label_reference_range] = STATE(243), - [sym_label_number] = STATE(243), - [sym_new_command_definition] = STATE(243), - [sym_old_command_definition] = STATE(243), - [sym_let_command_definition] = STATE(243), - [sym_environment_definition] = STATE(243), - [sym_glossary_entry_definition] = STATE(243), - [sym_glossary_entry_reference] = STATE(243), - [sym_acronym_definition] = STATE(243), - [sym_acronym_reference] = STATE(243), - [sym_theorem_definition] = STATE(243), - [sym_color_definition] = STATE(243), - [sym_color_set_definition] = STATE(243), - [sym_color_reference] = STATE(243), - [sym_tikz_library_import] = STATE(243), - [aux_sym_text_repeat1] = STATE(267), - [aux_sym_value_repeat1] = STATE(243), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3657), - [anon_sym_RPAREN] = ACTIONS(3657), - [anon_sym_LBRACK] = ACTIONS(3659), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(3661), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), - }, - [242] = { - [sym_block_comment] = STATE(244), - [sym__text_content] = STATE(244), - [sym_curly_group] = STATE(244), - [sym_brack_group] = STATE(244), - [sym_text] = STATE(244), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(244), - [sym_inline_formula] = STATE(244), - [sym_math_set] = STATE(244), - [sym__command] = STATE(244), - [sym_generic_command] = STATE(244), - [sym_package_include] = STATE(244), - [sym_class_include] = STATE(244), - [sym_latex_include] = STATE(244), - [sym_biblatex_include] = STATE(244), - [sym_bibtex_include] = STATE(244), - [sym_graphics_include] = STATE(244), - [sym_svg_include] = STATE(244), - [sym_inkscape_include] = STATE(244), - [sym_verbatim_include] = STATE(244), - [sym_import_include] = STATE(244), - [sym_caption] = STATE(244), - [sym_citation] = STATE(244), - [sym_label_definition] = STATE(244), - [sym_label_reference] = STATE(244), - [sym_label_reference_range] = STATE(244), - [sym_label_number] = STATE(244), - [sym_new_command_definition] = STATE(244), - [sym_old_command_definition] = STATE(244), - [sym_let_command_definition] = STATE(244), - [sym_environment_definition] = STATE(244), - [sym_glossary_entry_definition] = STATE(244), - [sym_glossary_entry_reference] = STATE(244), - [sym_acronym_definition] = STATE(244), - [sym_acronym_reference] = STATE(244), - [sym_theorem_definition] = STATE(244), - [sym_color_definition] = STATE(244), - [sym_color_set_definition] = STATE(244), - [sym_color_reference] = STATE(244), - [sym_tikz_library_import] = STATE(244), - [aux_sym_text_repeat1] = STATE(267), - [aux_sym_value_repeat1] = STATE(244), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3745), - [anon_sym_RPAREN] = ACTIONS(3745), - [anon_sym_LBRACK] = ACTIONS(3659), - [anon_sym_RBRACK] = ACTIONS(3661), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_LBRACE] = ACTIONS(3663), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3747), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3747), - [anon_sym_DOLLAR] = ACTIONS(3749), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3751), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), - }, - [243] = { - [sym_block_comment] = STATE(243), - [sym__text_content] = STATE(243), - [sym_curly_group] = STATE(243), - [sym_brack_group] = STATE(243), - [sym_text] = STATE(243), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(243), - [sym_inline_formula] = STATE(243), - [sym_math_set] = STATE(243), - [sym__command] = STATE(243), - [sym_generic_command] = STATE(243), - [sym_package_include] = STATE(243), - [sym_class_include] = STATE(243), - [sym_latex_include] = STATE(243), - [sym_biblatex_include] = STATE(243), - [sym_bibtex_include] = STATE(243), - [sym_graphics_include] = STATE(243), - [sym_svg_include] = STATE(243), - [sym_inkscape_include] = STATE(243), - [sym_verbatim_include] = STATE(243), - [sym_import_include] = STATE(243), - [sym_caption] = STATE(243), - [sym_citation] = STATE(243), - [sym_label_definition] = STATE(243), - [sym_label_reference] = STATE(243), - [sym_label_reference_range] = STATE(243), - [sym_label_number] = STATE(243), - [sym_new_command_definition] = STATE(243), - [sym_old_command_definition] = STATE(243), - [sym_let_command_definition] = STATE(243), - [sym_environment_definition] = STATE(243), - [sym_glossary_entry_definition] = STATE(243), - [sym_glossary_entry_reference] = STATE(243), - [sym_acronym_definition] = STATE(243), - [sym_acronym_reference] = STATE(243), - [sym_theorem_definition] = STATE(243), - [sym_color_definition] = STATE(243), - [sym_color_set_definition] = STATE(243), - [sym_color_reference] = STATE(243), - [sym_tikz_library_import] = STATE(243), - [aux_sym_text_repeat1] = STATE(267), - [aux_sym_value_repeat1] = STATE(243), - [sym_command_name] = ACTIONS(3753), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3756), - [anon_sym_LPAREN] = ACTIONS(3759), - [anon_sym_RPAREN] = ACTIONS(3759), - [anon_sym_LBRACK] = ACTIONS(3762), - [anon_sym_COMMA] = ACTIONS(3765), - [anon_sym_LBRACE] = ACTIONS(3767), - [anon_sym_RBRACE] = ACTIONS(3765), - [sym_word] = ACTIONS(3770), - [sym_placeholder] = ACTIONS(3773), - [anon_sym_PLUS] = ACTIONS(3776), - [anon_sym_DASH] = ACTIONS(3776), - [anon_sym_STAR] = ACTIONS(3776), - [anon_sym_SLASH] = ACTIONS(3776), - [anon_sym_CARET] = ACTIONS(3776), - [anon_sym__] = ACTIONS(3776), - [anon_sym_LT] = ACTIONS(3776), - [anon_sym_GT] = ACTIONS(3776), - [anon_sym_BANG] = ACTIONS(3776), - [anon_sym_PIPE] = ACTIONS(3776), - [anon_sym_COLON] = ACTIONS(3776), - [anon_sym_SQUOTE] = ACTIONS(3776), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3779), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3779), - [anon_sym_DOLLAR] = ACTIONS(3782), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3785), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), - [anon_sym_BSLASHusepackage] = ACTIONS(3791), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3791), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3794), - [anon_sym_BSLASHinclude] = ACTIONS(3797), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3797), - [anon_sym_BSLASHinput] = ACTIONS(3797), - [anon_sym_BSLASHsubfile] = ACTIONS(3797), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3800), - [anon_sym_BSLASHbibliography] = ACTIONS(3803), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3806), - [anon_sym_BSLASHincludesvg] = ACTIONS(3809), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3812), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3815), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3815), - [anon_sym_BSLASHimport] = ACTIONS(3818), - [anon_sym_BSLASHsubimport] = ACTIONS(3818), - [anon_sym_BSLASHinputfrom] = ACTIONS(3818), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3818), - [anon_sym_BSLASHincludefrom] = ACTIONS(3818), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3818), - [anon_sym_BSLASHcaption] = ACTIONS(3821), - [anon_sym_BSLASHcite] = ACTIONS(3824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3827), - [anon_sym_BSLASHCite] = ACTIONS(3824), - [anon_sym_BSLASHnocite] = ACTIONS(3824), - [anon_sym_BSLASHcitet] = ACTIONS(3824), - [anon_sym_BSLASHcitep] = ACTIONS(3824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3827), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3827), - [anon_sym_BSLASHciteauthor] = ACTIONS(3824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3827), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3827), - [anon_sym_BSLASHcitetitle] = ACTIONS(3824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3827), - [anon_sym_BSLASHciteyear] = ACTIONS(3824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3827), - [anon_sym_BSLASHcitedate] = ACTIONS(3824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3827), - [anon_sym_BSLASHciteurl] = ACTIONS(3824), - [anon_sym_BSLASHfullcite] = ACTIONS(3824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3824), - [anon_sym_BSLASHcitealt] = ACTIONS(3824), - [anon_sym_BSLASHcitealp] = ACTIONS(3824), - [anon_sym_BSLASHcitetext] = ACTIONS(3824), - [anon_sym_BSLASHparencite] = ACTIONS(3824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3827), - [anon_sym_BSLASHParencite] = ACTIONS(3824), - [anon_sym_BSLASHfootcite] = ACTIONS(3824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3824), - [anon_sym_BSLASHtextcite] = ACTIONS(3824), - [anon_sym_BSLASHTextcite] = ACTIONS(3824), - [anon_sym_BSLASHsmartcite] = ACTIONS(3824), - [anon_sym_BSLASHSmartcite] = ACTIONS(3824), - [anon_sym_BSLASHsupercite] = ACTIONS(3824), - [anon_sym_BSLASHautocite] = ACTIONS(3824), - [anon_sym_BSLASHAutocite] = ACTIONS(3824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3827), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3827), - [anon_sym_BSLASHvolcite] = ACTIONS(3824), - [anon_sym_BSLASHVolcite] = ACTIONS(3824), - [anon_sym_BSLASHpvolcite] = ACTIONS(3824), - [anon_sym_BSLASHPvolcite] = ACTIONS(3824), - [anon_sym_BSLASHfvolcite] = ACTIONS(3824), - [anon_sym_BSLASHftvolcite] = ACTIONS(3824), - [anon_sym_BSLASHsvolcite] = ACTIONS(3824), - [anon_sym_BSLASHSvolcite] = ACTIONS(3824), - [anon_sym_BSLASHtvolcite] = ACTIONS(3824), - [anon_sym_BSLASHTvolcite] = ACTIONS(3824), - [anon_sym_BSLASHavolcite] = ACTIONS(3824), - [anon_sym_BSLASHAvolcite] = ACTIONS(3824), - [anon_sym_BSLASHnotecite] = ACTIONS(3824), - [anon_sym_BSLASHNotecite] = ACTIONS(3824), - [anon_sym_BSLASHpnotecite] = ACTIONS(3824), - [anon_sym_BSLASHPnotecite] = ACTIONS(3824), - [anon_sym_BSLASHfnotecite] = ACTIONS(3824), - [anon_sym_BSLASHlabel] = ACTIONS(3830), - [anon_sym_BSLASHref] = ACTIONS(3833), - [anon_sym_BSLASHeqref] = ACTIONS(3833), - [anon_sym_BSLASHvref] = ACTIONS(3833), - [anon_sym_BSLASHVref] = ACTIONS(3833), - [anon_sym_BSLASHautoref] = ACTIONS(3833), - [anon_sym_BSLASHpageref] = ACTIONS(3833), - [anon_sym_BSLASHcref] = ACTIONS(3833), - [anon_sym_BSLASHCref] = ACTIONS(3833), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3836), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3836), - [anon_sym_BSLASHnamecref] = ACTIONS(3833), - [anon_sym_BSLASHnameCref] = ACTIONS(3833), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3833), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3833), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3833), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3833), - [anon_sym_BSLASHlabelcref] = ACTIONS(3833), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3833), - [anon_sym_BSLASHcrefrange] = ACTIONS(3839), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3842), - [anon_sym_BSLASHCrefrange] = ACTIONS(3839), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3842), - [anon_sym_BSLASHnewlabel] = ACTIONS(3845), - [anon_sym_BSLASHnewcommand] = ACTIONS(3848), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3851), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3848), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3851), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3848), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3851), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3848), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3851), - [anon_sym_BSLASHdef] = ACTIONS(3854), - [anon_sym_BSLASHlet] = ACTIONS(3857), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3863), - [anon_sym_BSLASHgls] = ACTIONS(3866), - [anon_sym_BSLASHGls] = ACTIONS(3866), - [anon_sym_BSLASHGLS] = ACTIONS(3866), - [anon_sym_BSLASHglspl] = ACTIONS(3866), - [anon_sym_BSLASHGlspl] = ACTIONS(3866), - [anon_sym_BSLASHGLSpl] = ACTIONS(3866), - [anon_sym_BSLASHglsdisp] = ACTIONS(3866), - [anon_sym_BSLASHglslink] = ACTIONS(3866), - [anon_sym_BSLASHglstext] = ACTIONS(3866), - [anon_sym_BSLASHGlstext] = ACTIONS(3866), - [anon_sym_BSLASHGLStext] = ACTIONS(3866), - [anon_sym_BSLASHglsfirst] = ACTIONS(3866), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3866), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3866), - [anon_sym_BSLASHglsplural] = ACTIONS(3866), - [anon_sym_BSLASHGlsplural] = ACTIONS(3866), - [anon_sym_BSLASHGLSplural] = ACTIONS(3866), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3866), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3866), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3866), - [anon_sym_BSLASHglsname] = ACTIONS(3866), - [anon_sym_BSLASHGlsname] = ACTIONS(3866), - [anon_sym_BSLASHGLSname] = ACTIONS(3866), - [anon_sym_BSLASHglssymbol] = ACTIONS(3866), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3866), - [anon_sym_BSLASHglsdesc] = ACTIONS(3866), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3866), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3866), - [anon_sym_BSLASHglsuseri] = ACTIONS(3866), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3866), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3866), - [anon_sym_BSLASHglsuserii] = ACTIONS(3866), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3866), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3866), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3866), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3866), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3866), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3866), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3866), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3866), - [anon_sym_BSLASHglsuserv] = ACTIONS(3866), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3866), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3866), - [anon_sym_BSLASHglsuservi] = ACTIONS(3866), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3866), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3866), - [anon_sym_BSLASHnewacronym] = ACTIONS(3869), - [anon_sym_BSLASHacrshort] = ACTIONS(3872), - [anon_sym_BSLASHAcrshort] = ACTIONS(3872), - [anon_sym_BSLASHACRshort] = ACTIONS(3872), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3872), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3872), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3872), - [anon_sym_BSLASHacrlong] = ACTIONS(3872), - [anon_sym_BSLASHAcrlong] = ACTIONS(3872), - [anon_sym_BSLASHACRlong] = ACTIONS(3872), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3872), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3872), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3872), - [anon_sym_BSLASHacrfull] = ACTIONS(3872), - [anon_sym_BSLASHAcrfull] = ACTIONS(3872), - [anon_sym_BSLASHACRfull] = ACTIONS(3872), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3872), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3872), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3872), - [anon_sym_BSLASHacs] = ACTIONS(3872), - [anon_sym_BSLASHAcs] = ACTIONS(3872), - [anon_sym_BSLASHacsp] = ACTIONS(3872), - [anon_sym_BSLASHAcsp] = ACTIONS(3872), - [anon_sym_BSLASHacl] = ACTIONS(3872), - [anon_sym_BSLASHAcl] = ACTIONS(3872), - [anon_sym_BSLASHaclp] = ACTIONS(3872), - [anon_sym_BSLASHAclp] = ACTIONS(3872), - [anon_sym_BSLASHacf] = ACTIONS(3872), - [anon_sym_BSLASHAcf] = ACTIONS(3872), - [anon_sym_BSLASHacfp] = ACTIONS(3872), - [anon_sym_BSLASHAcfp] = ACTIONS(3872), - [anon_sym_BSLASHac] = ACTIONS(3872), - [anon_sym_BSLASHAc] = ACTIONS(3872), - [anon_sym_BSLASHacp] = ACTIONS(3872), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3872), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3872), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3872), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3872), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3872), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3872), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3872), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3872), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3872), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3872), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3875), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3875), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3878), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3881), - [anon_sym_BSLASHcolor] = ACTIONS(3884), - [anon_sym_BSLASHcolorbox] = ACTIONS(3884), - [anon_sym_BSLASHtextcolor] = ACTIONS(3884), - [anon_sym_BSLASHpagecolor] = ACTIONS(3884), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3887), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3887), + [243] = { + [sym_block_comment] = STATE(243), + [sym__text_content] = STATE(243), + [sym_curly_group] = STATE(243), + [sym_brack_group] = STATE(243), + [sym_text] = STATE(243), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(243), + [sym_inline_formula] = STATE(243), + [sym_math_set] = STATE(243), + [sym__command] = STATE(243), + [sym_generic_command] = STATE(243), + [sym_package_include] = STATE(243), + [sym_class_include] = STATE(243), + [sym_latex_include] = STATE(243), + [sym_biblatex_include] = STATE(243), + [sym_bibtex_include] = STATE(243), + [sym_graphics_include] = STATE(243), + [sym_svg_include] = STATE(243), + [sym_inkscape_include] = STATE(243), + [sym_verbatim_include] = STATE(243), + [sym_import_include] = STATE(243), + [sym_caption] = STATE(243), + [sym_citation] = STATE(243), + [sym_label_definition] = STATE(243), + [sym_label_reference] = STATE(243), + [sym_label_reference_range] = STATE(243), + [sym_label_number] = STATE(243), + [sym_new_command_definition] = STATE(243), + [sym_old_command_definition] = STATE(243), + [sym_let_command_definition] = STATE(243), + [sym_environment_definition] = STATE(243), + [sym_glossary_entry_definition] = STATE(243), + [sym_glossary_entry_reference] = STATE(243), + [sym_acronym_definition] = STATE(243), + [sym_acronym_reference] = STATE(243), + [sym_theorem_definition] = STATE(243), + [sym_color_definition] = STATE(243), + [sym_color_set_definition] = STATE(243), + [sym_color_reference] = STATE(243), + [sym_tikz_library_import] = STATE(243), + [sym_text_mode] = STATE(243), + [aux_sym_text_repeat1] = STATE(267), + [aux_sym_value_repeat1] = STATE(243), + [sym_command_name] = ACTIONS(3803), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3806), + [anon_sym_LPAREN] = ACTIONS(3809), + [anon_sym_RPAREN] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(3812), + [anon_sym_RBRACK] = ACTIONS(3815), + [anon_sym_COMMA] = ACTIONS(3815), + [anon_sym_LBRACE] = ACTIONS(3817), + [sym_word] = ACTIONS(3820), + [sym_placeholder] = ACTIONS(3823), + [anon_sym_PLUS] = ACTIONS(3826), + [anon_sym_DASH] = ACTIONS(3826), + [anon_sym_STAR] = ACTIONS(3826), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_CARET] = ACTIONS(3826), + [anon_sym__] = ACTIONS(3826), + [anon_sym_LT] = ACTIONS(3826), + [anon_sym_GT] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(3826), + [anon_sym_PIPE] = ACTIONS(3826), + [anon_sym_COLON] = ACTIONS(3826), + [anon_sym_SQUOTE] = ACTIONS(3826), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3829), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3829), + [anon_sym_DOLLAR] = ACTIONS(3832), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3838), + [anon_sym_BSLASHusepackage] = ACTIONS(3841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3844), + [anon_sym_BSLASHinclude] = ACTIONS(3847), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3847), + [anon_sym_BSLASHinput] = ACTIONS(3847), + [anon_sym_BSLASHsubfile] = ACTIONS(3847), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3850), + [anon_sym_BSLASHbibliography] = ACTIONS(3853), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3856), + [anon_sym_BSLASHincludesvg] = ACTIONS(3859), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3862), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3865), + [anon_sym_BSLASHimport] = ACTIONS(3868), + [anon_sym_BSLASHsubimport] = ACTIONS(3868), + [anon_sym_BSLASHinputfrom] = ACTIONS(3868), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3868), + [anon_sym_BSLASHincludefrom] = ACTIONS(3868), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3868), + [anon_sym_BSLASHcaption] = ACTIONS(3871), + [anon_sym_BSLASHcite] = ACTIONS(3874), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), + [anon_sym_BSLASHCite] = ACTIONS(3874), + [anon_sym_BSLASHnocite] = ACTIONS(3874), + [anon_sym_BSLASHcitet] = ACTIONS(3874), + [anon_sym_BSLASHcitep] = ACTIONS(3874), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), + [anon_sym_BSLASHciteauthor] = ACTIONS(3874), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3874), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), + [anon_sym_BSLASHcitetitle] = ACTIONS(3874), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), + [anon_sym_BSLASHciteyear] = ACTIONS(3874), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), + [anon_sym_BSLASHcitedate] = ACTIONS(3874), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), + [anon_sym_BSLASHciteurl] = ACTIONS(3874), + [anon_sym_BSLASHfullcite] = ACTIONS(3874), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3874), + [anon_sym_BSLASHcitealt] = ACTIONS(3874), + [anon_sym_BSLASHcitealp] = ACTIONS(3874), + [anon_sym_BSLASHcitetext] = ACTIONS(3874), + [anon_sym_BSLASHparencite] = ACTIONS(3874), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), + [anon_sym_BSLASHParencite] = ACTIONS(3874), + [anon_sym_BSLASHfootcite] = ACTIONS(3874), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3874), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3874), + [anon_sym_BSLASHtextcite] = ACTIONS(3874), + [anon_sym_BSLASHTextcite] = ACTIONS(3874), + [anon_sym_BSLASHsmartcite] = ACTIONS(3874), + [anon_sym_BSLASHSmartcite] = ACTIONS(3874), + [anon_sym_BSLASHsupercite] = ACTIONS(3874), + [anon_sym_BSLASHautocite] = ACTIONS(3874), + [anon_sym_BSLASHAutocite] = ACTIONS(3874), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), + [anon_sym_BSLASHvolcite] = ACTIONS(3874), + [anon_sym_BSLASHVolcite] = ACTIONS(3874), + [anon_sym_BSLASHpvolcite] = ACTIONS(3874), + [anon_sym_BSLASHPvolcite] = ACTIONS(3874), + [anon_sym_BSLASHfvolcite] = ACTIONS(3874), + [anon_sym_BSLASHftvolcite] = ACTIONS(3874), + [anon_sym_BSLASHsvolcite] = ACTIONS(3874), + [anon_sym_BSLASHSvolcite] = ACTIONS(3874), + [anon_sym_BSLASHtvolcite] = ACTIONS(3874), + [anon_sym_BSLASHTvolcite] = ACTIONS(3874), + [anon_sym_BSLASHavolcite] = ACTIONS(3874), + [anon_sym_BSLASHAvolcite] = ACTIONS(3874), + [anon_sym_BSLASHnotecite] = ACTIONS(3874), + [anon_sym_BSLASHNotecite] = ACTIONS(3874), + [anon_sym_BSLASHpnotecite] = ACTIONS(3874), + [anon_sym_BSLASHPnotecite] = ACTIONS(3874), + [anon_sym_BSLASHfnotecite] = ACTIONS(3874), + [anon_sym_BSLASHlabel] = ACTIONS(3880), + [anon_sym_BSLASHref] = ACTIONS(3883), + [anon_sym_BSLASHeqref] = ACTIONS(3883), + [anon_sym_BSLASHvref] = ACTIONS(3883), + [anon_sym_BSLASHVref] = ACTIONS(3883), + [anon_sym_BSLASHautoref] = ACTIONS(3883), + [anon_sym_BSLASHpageref] = ACTIONS(3883), + [anon_sym_BSLASHcref] = ACTIONS(3883), + [anon_sym_BSLASHCref] = ACTIONS(3883), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3886), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3886), + [anon_sym_BSLASHnamecref] = ACTIONS(3883), + [anon_sym_BSLASHnameCref] = ACTIONS(3883), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3883), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3883), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3883), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3883), + [anon_sym_BSLASHlabelcref] = ACTIONS(3883), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3883), + [anon_sym_BSLASHcrefrange] = ACTIONS(3889), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3892), + [anon_sym_BSLASHCrefrange] = ACTIONS(3889), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3892), + [anon_sym_BSLASHnewlabel] = ACTIONS(3895), + [anon_sym_BSLASHnewcommand] = ACTIONS(3898), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3901), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3898), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3901), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3898), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3901), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3898), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3901), + [anon_sym_BSLASHdef] = ACTIONS(3904), + [anon_sym_BSLASHlet] = ACTIONS(3907), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3910), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3913), + [anon_sym_BSLASHgls] = ACTIONS(3916), + [anon_sym_BSLASHGls] = ACTIONS(3916), + [anon_sym_BSLASHGLS] = ACTIONS(3916), + [anon_sym_BSLASHglspl] = ACTIONS(3916), + [anon_sym_BSLASHGlspl] = ACTIONS(3916), + [anon_sym_BSLASHGLSpl] = ACTIONS(3916), + [anon_sym_BSLASHglsdisp] = ACTIONS(3916), + [anon_sym_BSLASHglslink] = ACTIONS(3916), + [anon_sym_BSLASHglstext] = ACTIONS(3916), + [anon_sym_BSLASHGlstext] = ACTIONS(3916), + [anon_sym_BSLASHGLStext] = ACTIONS(3916), + [anon_sym_BSLASHglsfirst] = ACTIONS(3916), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3916), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3916), + [anon_sym_BSLASHglsplural] = ACTIONS(3916), + [anon_sym_BSLASHGlsplural] = ACTIONS(3916), + [anon_sym_BSLASHGLSplural] = ACTIONS(3916), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3916), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3916), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3916), + [anon_sym_BSLASHglsname] = ACTIONS(3916), + [anon_sym_BSLASHGlsname] = ACTIONS(3916), + [anon_sym_BSLASHGLSname] = ACTIONS(3916), + [anon_sym_BSLASHglssymbol] = ACTIONS(3916), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3916), + [anon_sym_BSLASHglsdesc] = ACTIONS(3916), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3916), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3916), + [anon_sym_BSLASHglsuseri] = ACTIONS(3916), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3916), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3916), + [anon_sym_BSLASHglsuserii] = ACTIONS(3916), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3916), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3916), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3916), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3916), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3916), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3916), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3916), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3916), + [anon_sym_BSLASHglsuserv] = ACTIONS(3916), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3916), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3916), + [anon_sym_BSLASHglsuservi] = ACTIONS(3916), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3916), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3916), + [anon_sym_BSLASHnewacronym] = ACTIONS(3919), + [anon_sym_BSLASHacrshort] = ACTIONS(3922), + [anon_sym_BSLASHAcrshort] = ACTIONS(3922), + [anon_sym_BSLASHACRshort] = ACTIONS(3922), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3922), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3922), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3922), + [anon_sym_BSLASHacrlong] = ACTIONS(3922), + [anon_sym_BSLASHAcrlong] = ACTIONS(3922), + [anon_sym_BSLASHACRlong] = ACTIONS(3922), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3922), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3922), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3922), + [anon_sym_BSLASHacrfull] = ACTIONS(3922), + [anon_sym_BSLASHAcrfull] = ACTIONS(3922), + [anon_sym_BSLASHACRfull] = ACTIONS(3922), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3922), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3922), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3922), + [anon_sym_BSLASHacs] = ACTIONS(3922), + [anon_sym_BSLASHAcs] = ACTIONS(3922), + [anon_sym_BSLASHacsp] = ACTIONS(3922), + [anon_sym_BSLASHAcsp] = ACTIONS(3922), + [anon_sym_BSLASHacl] = ACTIONS(3922), + [anon_sym_BSLASHAcl] = ACTIONS(3922), + [anon_sym_BSLASHaclp] = ACTIONS(3922), + [anon_sym_BSLASHAclp] = ACTIONS(3922), + [anon_sym_BSLASHacf] = ACTIONS(3922), + [anon_sym_BSLASHAcf] = ACTIONS(3922), + [anon_sym_BSLASHacfp] = ACTIONS(3922), + [anon_sym_BSLASHAcfp] = ACTIONS(3922), + [anon_sym_BSLASHac] = ACTIONS(3922), + [anon_sym_BSLASHAc] = ACTIONS(3922), + [anon_sym_BSLASHacp] = ACTIONS(3922), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3922), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3922), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3922), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3922), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3922), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3922), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3922), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3922), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3922), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3922), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3928), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3931), + [anon_sym_BSLASHcolor] = ACTIONS(3934), + [anon_sym_BSLASHcolorbox] = ACTIONS(3934), + [anon_sym_BSLASHtextcolor] = ACTIONS(3934), + [anon_sym_BSLASHpagecolor] = ACTIONS(3934), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3937), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3937), + [anon_sym_BSLASHtext] = ACTIONS(3940), + [anon_sym_BSLASHintertext] = ACTIONS(3940), + [anon_sym_shortintertext] = ACTIONS(3940), }, [244] = { [sym_block_comment] = STATE(244), @@ -102014,7 +100769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_curly_group] = STATE(244), [sym_brack_group] = STATE(244), [sym_text] = STATE(244), - [sym_operator] = STATE(1473), + [sym_operator] = STATE(1480), [sym_displayed_equation] = STATE(244), [sym_inline_formula] = STATE(244), [sym_math_set] = STATE(244), @@ -102049,544 +100804,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(244), [sym_color_reference] = STATE(244), [sym_tikz_library_import] = STATE(244), + [sym_text_mode] = STATE(244), [aux_sym_text_repeat1] = STATE(267), [aux_sym_value_repeat1] = STATE(244), - [sym_command_name] = ACTIONS(3753), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3756), - [anon_sym_LPAREN] = ACTIONS(3890), - [anon_sym_RPAREN] = ACTIONS(3890), - [anon_sym_LBRACK] = ACTIONS(3762), - [anon_sym_RBRACK] = ACTIONS(3765), - [anon_sym_COMMA] = ACTIONS(3765), - [anon_sym_LBRACE] = ACTIONS(3767), - [sym_word] = ACTIONS(3770), - [sym_placeholder] = ACTIONS(3773), - [anon_sym_PLUS] = ACTIONS(3776), - [anon_sym_DASH] = ACTIONS(3776), - [anon_sym_STAR] = ACTIONS(3776), - [anon_sym_SLASH] = ACTIONS(3776), - [anon_sym_CARET] = ACTIONS(3776), - [anon_sym__] = ACTIONS(3776), - [anon_sym_LT] = ACTIONS(3776), - [anon_sym_GT] = ACTIONS(3776), - [anon_sym_BANG] = ACTIONS(3776), - [anon_sym_PIPE] = ACTIONS(3776), - [anon_sym_COLON] = ACTIONS(3776), - [anon_sym_SQUOTE] = ACTIONS(3776), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3893), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3893), - [anon_sym_DOLLAR] = ACTIONS(3896), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3899), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3788), - [anon_sym_BSLASHusepackage] = ACTIONS(3791), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3791), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3794), - [anon_sym_BSLASHinclude] = ACTIONS(3797), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3797), - [anon_sym_BSLASHinput] = ACTIONS(3797), - [anon_sym_BSLASHsubfile] = ACTIONS(3797), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3800), - [anon_sym_BSLASHbibliography] = ACTIONS(3803), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3806), - [anon_sym_BSLASHincludesvg] = ACTIONS(3809), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3812), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3815), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3815), - [anon_sym_BSLASHimport] = ACTIONS(3818), - [anon_sym_BSLASHsubimport] = ACTIONS(3818), - [anon_sym_BSLASHinputfrom] = ACTIONS(3818), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3818), - [anon_sym_BSLASHincludefrom] = ACTIONS(3818), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3818), - [anon_sym_BSLASHcaption] = ACTIONS(3821), - [anon_sym_BSLASHcite] = ACTIONS(3824), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3827), - [anon_sym_BSLASHCite] = ACTIONS(3824), - [anon_sym_BSLASHnocite] = ACTIONS(3824), - [anon_sym_BSLASHcitet] = ACTIONS(3824), - [anon_sym_BSLASHcitep] = ACTIONS(3824), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3827), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3827), - [anon_sym_BSLASHciteauthor] = ACTIONS(3824), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3827), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3824), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3827), - [anon_sym_BSLASHcitetitle] = ACTIONS(3824), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3827), - [anon_sym_BSLASHciteyear] = ACTIONS(3824), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3827), - [anon_sym_BSLASHcitedate] = ACTIONS(3824), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3827), - [anon_sym_BSLASHciteurl] = ACTIONS(3824), - [anon_sym_BSLASHfullcite] = ACTIONS(3824), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3824), - [anon_sym_BSLASHcitealt] = ACTIONS(3824), - [anon_sym_BSLASHcitealp] = ACTIONS(3824), - [anon_sym_BSLASHcitetext] = ACTIONS(3824), - [anon_sym_BSLASHparencite] = ACTIONS(3824), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3827), - [anon_sym_BSLASHParencite] = ACTIONS(3824), - [anon_sym_BSLASHfootcite] = ACTIONS(3824), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3824), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3824), - [anon_sym_BSLASHtextcite] = ACTIONS(3824), - [anon_sym_BSLASHTextcite] = ACTIONS(3824), - [anon_sym_BSLASHsmartcite] = ACTIONS(3824), - [anon_sym_BSLASHSmartcite] = ACTIONS(3824), - [anon_sym_BSLASHsupercite] = ACTIONS(3824), - [anon_sym_BSLASHautocite] = ACTIONS(3824), - [anon_sym_BSLASHAutocite] = ACTIONS(3824), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3827), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3827), - [anon_sym_BSLASHvolcite] = ACTIONS(3824), - [anon_sym_BSLASHVolcite] = ACTIONS(3824), - [anon_sym_BSLASHpvolcite] = ACTIONS(3824), - [anon_sym_BSLASHPvolcite] = ACTIONS(3824), - [anon_sym_BSLASHfvolcite] = ACTIONS(3824), - [anon_sym_BSLASHftvolcite] = ACTIONS(3824), - [anon_sym_BSLASHsvolcite] = ACTIONS(3824), - [anon_sym_BSLASHSvolcite] = ACTIONS(3824), - [anon_sym_BSLASHtvolcite] = ACTIONS(3824), - [anon_sym_BSLASHTvolcite] = ACTIONS(3824), - [anon_sym_BSLASHavolcite] = ACTIONS(3824), - [anon_sym_BSLASHAvolcite] = ACTIONS(3824), - [anon_sym_BSLASHnotecite] = ACTIONS(3824), - [anon_sym_BSLASHNotecite] = ACTIONS(3824), - [anon_sym_BSLASHpnotecite] = ACTIONS(3824), - [anon_sym_BSLASHPnotecite] = ACTIONS(3824), - [anon_sym_BSLASHfnotecite] = ACTIONS(3824), - [anon_sym_BSLASHlabel] = ACTIONS(3830), - [anon_sym_BSLASHref] = ACTIONS(3833), - [anon_sym_BSLASHeqref] = ACTIONS(3833), - [anon_sym_BSLASHvref] = ACTIONS(3833), - [anon_sym_BSLASHVref] = ACTIONS(3833), - [anon_sym_BSLASHautoref] = ACTIONS(3833), - [anon_sym_BSLASHpageref] = ACTIONS(3833), - [anon_sym_BSLASHcref] = ACTIONS(3833), - [anon_sym_BSLASHCref] = ACTIONS(3833), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3836), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3836), - [anon_sym_BSLASHnamecref] = ACTIONS(3833), - [anon_sym_BSLASHnameCref] = ACTIONS(3833), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3833), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3833), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3833), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3833), - [anon_sym_BSLASHlabelcref] = ACTIONS(3833), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3833), - [anon_sym_BSLASHcrefrange] = ACTIONS(3839), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3842), - [anon_sym_BSLASHCrefrange] = ACTIONS(3839), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3842), - [anon_sym_BSLASHnewlabel] = ACTIONS(3845), - [anon_sym_BSLASHnewcommand] = ACTIONS(3848), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3851), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3848), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3851), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3848), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3851), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3848), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3851), - [anon_sym_BSLASHdef] = ACTIONS(3854), - [anon_sym_BSLASHlet] = ACTIONS(3857), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3860), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3863), - [anon_sym_BSLASHgls] = ACTIONS(3866), - [anon_sym_BSLASHGls] = ACTIONS(3866), - [anon_sym_BSLASHGLS] = ACTIONS(3866), - [anon_sym_BSLASHglspl] = ACTIONS(3866), - [anon_sym_BSLASHGlspl] = ACTIONS(3866), - [anon_sym_BSLASHGLSpl] = ACTIONS(3866), - [anon_sym_BSLASHglsdisp] = ACTIONS(3866), - [anon_sym_BSLASHglslink] = ACTIONS(3866), - [anon_sym_BSLASHglstext] = ACTIONS(3866), - [anon_sym_BSLASHGlstext] = ACTIONS(3866), - [anon_sym_BSLASHGLStext] = ACTIONS(3866), - [anon_sym_BSLASHglsfirst] = ACTIONS(3866), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3866), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3866), - [anon_sym_BSLASHglsplural] = ACTIONS(3866), - [anon_sym_BSLASHGlsplural] = ACTIONS(3866), - [anon_sym_BSLASHGLSplural] = ACTIONS(3866), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3866), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3866), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3866), - [anon_sym_BSLASHglsname] = ACTIONS(3866), - [anon_sym_BSLASHGlsname] = ACTIONS(3866), - [anon_sym_BSLASHGLSname] = ACTIONS(3866), - [anon_sym_BSLASHglssymbol] = ACTIONS(3866), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3866), - [anon_sym_BSLASHglsdesc] = ACTIONS(3866), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3866), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3866), - [anon_sym_BSLASHglsuseri] = ACTIONS(3866), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3866), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3866), - [anon_sym_BSLASHglsuserii] = ACTIONS(3866), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3866), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3866), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3866), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3866), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3866), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3866), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3866), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3866), - [anon_sym_BSLASHglsuserv] = ACTIONS(3866), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3866), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3866), - [anon_sym_BSLASHglsuservi] = ACTIONS(3866), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3866), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3866), - [anon_sym_BSLASHnewacronym] = ACTIONS(3869), - [anon_sym_BSLASHacrshort] = ACTIONS(3872), - [anon_sym_BSLASHAcrshort] = ACTIONS(3872), - [anon_sym_BSLASHACRshort] = ACTIONS(3872), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3872), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3872), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3872), - [anon_sym_BSLASHacrlong] = ACTIONS(3872), - [anon_sym_BSLASHAcrlong] = ACTIONS(3872), - [anon_sym_BSLASHACRlong] = ACTIONS(3872), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3872), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3872), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3872), - [anon_sym_BSLASHacrfull] = ACTIONS(3872), - [anon_sym_BSLASHAcrfull] = ACTIONS(3872), - [anon_sym_BSLASHACRfull] = ACTIONS(3872), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3872), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3872), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3872), - [anon_sym_BSLASHacs] = ACTIONS(3872), - [anon_sym_BSLASHAcs] = ACTIONS(3872), - [anon_sym_BSLASHacsp] = ACTIONS(3872), - [anon_sym_BSLASHAcsp] = ACTIONS(3872), - [anon_sym_BSLASHacl] = ACTIONS(3872), - [anon_sym_BSLASHAcl] = ACTIONS(3872), - [anon_sym_BSLASHaclp] = ACTIONS(3872), - [anon_sym_BSLASHAclp] = ACTIONS(3872), - [anon_sym_BSLASHacf] = ACTIONS(3872), - [anon_sym_BSLASHAcf] = ACTIONS(3872), - [anon_sym_BSLASHacfp] = ACTIONS(3872), - [anon_sym_BSLASHAcfp] = ACTIONS(3872), - [anon_sym_BSLASHac] = ACTIONS(3872), - [anon_sym_BSLASHAc] = ACTIONS(3872), - [anon_sym_BSLASHacp] = ACTIONS(3872), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3872), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3872), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3872), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3872), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3872), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3872), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3872), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3872), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3872), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3872), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3875), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3875), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3878), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3881), - [anon_sym_BSLASHcolor] = ACTIONS(3884), - [anon_sym_BSLASHcolorbox] = ACTIONS(3884), - [anon_sym_BSLASHtextcolor] = ACTIONS(3884), - [anon_sym_BSLASHpagecolor] = ACTIONS(3884), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3887), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3887), + [sym_command_name] = ACTIONS(3803), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3806), + [anon_sym_LPAREN] = ACTIONS(3943), + [anon_sym_RPAREN] = ACTIONS(3943), + [anon_sym_LBRACK] = ACTIONS(3812), + [anon_sym_COMMA] = ACTIONS(3815), + [anon_sym_LBRACE] = ACTIONS(3817), + [anon_sym_RBRACE] = ACTIONS(3815), + [sym_word] = ACTIONS(3820), + [sym_placeholder] = ACTIONS(3823), + [anon_sym_PLUS] = ACTIONS(3826), + [anon_sym_DASH] = ACTIONS(3826), + [anon_sym_STAR] = ACTIONS(3826), + [anon_sym_SLASH] = ACTIONS(3826), + [anon_sym_CARET] = ACTIONS(3826), + [anon_sym__] = ACTIONS(3826), + [anon_sym_LT] = ACTIONS(3826), + [anon_sym_GT] = ACTIONS(3826), + [anon_sym_BANG] = ACTIONS(3826), + [anon_sym_PIPE] = ACTIONS(3826), + [anon_sym_COLON] = ACTIONS(3826), + [anon_sym_SQUOTE] = ACTIONS(3826), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3946), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3946), + [anon_sym_DOLLAR] = ACTIONS(3949), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3952), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3838), + [anon_sym_BSLASHusepackage] = ACTIONS(3841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3844), + [anon_sym_BSLASHinclude] = ACTIONS(3847), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3847), + [anon_sym_BSLASHinput] = ACTIONS(3847), + [anon_sym_BSLASHsubfile] = ACTIONS(3847), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3850), + [anon_sym_BSLASHbibliography] = ACTIONS(3853), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3856), + [anon_sym_BSLASHincludesvg] = ACTIONS(3859), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3862), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3865), + [anon_sym_BSLASHimport] = ACTIONS(3868), + [anon_sym_BSLASHsubimport] = ACTIONS(3868), + [anon_sym_BSLASHinputfrom] = ACTIONS(3868), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3868), + [anon_sym_BSLASHincludefrom] = ACTIONS(3868), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3868), + [anon_sym_BSLASHcaption] = ACTIONS(3871), + [anon_sym_BSLASHcite] = ACTIONS(3874), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3877), + [anon_sym_BSLASHCite] = ACTIONS(3874), + [anon_sym_BSLASHnocite] = ACTIONS(3874), + [anon_sym_BSLASHcitet] = ACTIONS(3874), + [anon_sym_BSLASHcitep] = ACTIONS(3874), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3877), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3877), + [anon_sym_BSLASHciteauthor] = ACTIONS(3874), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3877), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3874), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3877), + [anon_sym_BSLASHcitetitle] = ACTIONS(3874), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3877), + [anon_sym_BSLASHciteyear] = ACTIONS(3874), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3877), + [anon_sym_BSLASHcitedate] = ACTIONS(3874), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3877), + [anon_sym_BSLASHciteurl] = ACTIONS(3874), + [anon_sym_BSLASHfullcite] = ACTIONS(3874), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3874), + [anon_sym_BSLASHcitealt] = ACTIONS(3874), + [anon_sym_BSLASHcitealp] = ACTIONS(3874), + [anon_sym_BSLASHcitetext] = ACTIONS(3874), + [anon_sym_BSLASHparencite] = ACTIONS(3874), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3877), + [anon_sym_BSLASHParencite] = ACTIONS(3874), + [anon_sym_BSLASHfootcite] = ACTIONS(3874), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3874), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3874), + [anon_sym_BSLASHtextcite] = ACTIONS(3874), + [anon_sym_BSLASHTextcite] = ACTIONS(3874), + [anon_sym_BSLASHsmartcite] = ACTIONS(3874), + [anon_sym_BSLASHSmartcite] = ACTIONS(3874), + [anon_sym_BSLASHsupercite] = ACTIONS(3874), + [anon_sym_BSLASHautocite] = ACTIONS(3874), + [anon_sym_BSLASHAutocite] = ACTIONS(3874), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3877), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3877), + [anon_sym_BSLASHvolcite] = ACTIONS(3874), + [anon_sym_BSLASHVolcite] = ACTIONS(3874), + [anon_sym_BSLASHpvolcite] = ACTIONS(3874), + [anon_sym_BSLASHPvolcite] = ACTIONS(3874), + [anon_sym_BSLASHfvolcite] = ACTIONS(3874), + [anon_sym_BSLASHftvolcite] = ACTIONS(3874), + [anon_sym_BSLASHsvolcite] = ACTIONS(3874), + [anon_sym_BSLASHSvolcite] = ACTIONS(3874), + [anon_sym_BSLASHtvolcite] = ACTIONS(3874), + [anon_sym_BSLASHTvolcite] = ACTIONS(3874), + [anon_sym_BSLASHavolcite] = ACTIONS(3874), + [anon_sym_BSLASHAvolcite] = ACTIONS(3874), + [anon_sym_BSLASHnotecite] = ACTIONS(3874), + [anon_sym_BSLASHNotecite] = ACTIONS(3874), + [anon_sym_BSLASHpnotecite] = ACTIONS(3874), + [anon_sym_BSLASHPnotecite] = ACTIONS(3874), + [anon_sym_BSLASHfnotecite] = ACTIONS(3874), + [anon_sym_BSLASHlabel] = ACTIONS(3880), + [anon_sym_BSLASHref] = ACTIONS(3883), + [anon_sym_BSLASHeqref] = ACTIONS(3883), + [anon_sym_BSLASHvref] = ACTIONS(3883), + [anon_sym_BSLASHVref] = ACTIONS(3883), + [anon_sym_BSLASHautoref] = ACTIONS(3883), + [anon_sym_BSLASHpageref] = ACTIONS(3883), + [anon_sym_BSLASHcref] = ACTIONS(3883), + [anon_sym_BSLASHCref] = ACTIONS(3883), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3886), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3886), + [anon_sym_BSLASHnamecref] = ACTIONS(3883), + [anon_sym_BSLASHnameCref] = ACTIONS(3883), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3883), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3883), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3883), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3883), + [anon_sym_BSLASHlabelcref] = ACTIONS(3883), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3883), + [anon_sym_BSLASHcrefrange] = ACTIONS(3889), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3892), + [anon_sym_BSLASHCrefrange] = ACTIONS(3889), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3892), + [anon_sym_BSLASHnewlabel] = ACTIONS(3895), + [anon_sym_BSLASHnewcommand] = ACTIONS(3898), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3901), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3898), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3901), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3898), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3901), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3898), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3901), + [anon_sym_BSLASHdef] = ACTIONS(3904), + [anon_sym_BSLASHlet] = ACTIONS(3907), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3910), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3913), + [anon_sym_BSLASHgls] = ACTIONS(3916), + [anon_sym_BSLASHGls] = ACTIONS(3916), + [anon_sym_BSLASHGLS] = ACTIONS(3916), + [anon_sym_BSLASHglspl] = ACTIONS(3916), + [anon_sym_BSLASHGlspl] = ACTIONS(3916), + [anon_sym_BSLASHGLSpl] = ACTIONS(3916), + [anon_sym_BSLASHglsdisp] = ACTIONS(3916), + [anon_sym_BSLASHglslink] = ACTIONS(3916), + [anon_sym_BSLASHglstext] = ACTIONS(3916), + [anon_sym_BSLASHGlstext] = ACTIONS(3916), + [anon_sym_BSLASHGLStext] = ACTIONS(3916), + [anon_sym_BSLASHglsfirst] = ACTIONS(3916), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3916), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3916), + [anon_sym_BSLASHglsplural] = ACTIONS(3916), + [anon_sym_BSLASHGlsplural] = ACTIONS(3916), + [anon_sym_BSLASHGLSplural] = ACTIONS(3916), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3916), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3916), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3916), + [anon_sym_BSLASHglsname] = ACTIONS(3916), + [anon_sym_BSLASHGlsname] = ACTIONS(3916), + [anon_sym_BSLASHGLSname] = ACTIONS(3916), + [anon_sym_BSLASHglssymbol] = ACTIONS(3916), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3916), + [anon_sym_BSLASHglsdesc] = ACTIONS(3916), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3916), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3916), + [anon_sym_BSLASHglsuseri] = ACTIONS(3916), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3916), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3916), + [anon_sym_BSLASHglsuserii] = ACTIONS(3916), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3916), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3916), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3916), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3916), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3916), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3916), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3916), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3916), + [anon_sym_BSLASHglsuserv] = ACTIONS(3916), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3916), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3916), + [anon_sym_BSLASHglsuservi] = ACTIONS(3916), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3916), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3916), + [anon_sym_BSLASHnewacronym] = ACTIONS(3919), + [anon_sym_BSLASHacrshort] = ACTIONS(3922), + [anon_sym_BSLASHAcrshort] = ACTIONS(3922), + [anon_sym_BSLASHACRshort] = ACTIONS(3922), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3922), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3922), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3922), + [anon_sym_BSLASHacrlong] = ACTIONS(3922), + [anon_sym_BSLASHAcrlong] = ACTIONS(3922), + [anon_sym_BSLASHACRlong] = ACTIONS(3922), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3922), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3922), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3922), + [anon_sym_BSLASHacrfull] = ACTIONS(3922), + [anon_sym_BSLASHAcrfull] = ACTIONS(3922), + [anon_sym_BSLASHACRfull] = ACTIONS(3922), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3922), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3922), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3922), + [anon_sym_BSLASHacs] = ACTIONS(3922), + [anon_sym_BSLASHAcs] = ACTIONS(3922), + [anon_sym_BSLASHacsp] = ACTIONS(3922), + [anon_sym_BSLASHAcsp] = ACTIONS(3922), + [anon_sym_BSLASHacl] = ACTIONS(3922), + [anon_sym_BSLASHAcl] = ACTIONS(3922), + [anon_sym_BSLASHaclp] = ACTIONS(3922), + [anon_sym_BSLASHAclp] = ACTIONS(3922), + [anon_sym_BSLASHacf] = ACTIONS(3922), + [anon_sym_BSLASHAcf] = ACTIONS(3922), + [anon_sym_BSLASHacfp] = ACTIONS(3922), + [anon_sym_BSLASHAcfp] = ACTIONS(3922), + [anon_sym_BSLASHac] = ACTIONS(3922), + [anon_sym_BSLASHAc] = ACTIONS(3922), + [anon_sym_BSLASHacp] = ACTIONS(3922), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3922), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3922), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3922), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3922), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3922), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3922), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3922), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3922), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3922), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3922), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3928), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3931), + [anon_sym_BSLASHcolor] = ACTIONS(3934), + [anon_sym_BSLASHcolorbox] = ACTIONS(3934), + [anon_sym_BSLASHtextcolor] = ACTIONS(3934), + [anon_sym_BSLASHpagecolor] = ACTIONS(3934), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3937), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3937), + [anon_sym_BSLASHtext] = ACTIONS(3940), + [anon_sym_BSLASHintertext] = ACTIONS(3940), + [anon_sym_shortintertext] = ACTIONS(3940), }, [245] = { - [sym_block_comment] = STATE(241), - [sym__text_content] = STATE(241), - [sym_curly_group] = STATE(241), - [sym_brack_group] = STATE(241), - [sym_text] = STATE(241), - [sym_operator] = STATE(1473), - [sym_value] = STATE(1780), - [sym_displayed_equation] = STATE(241), - [sym_inline_formula] = STATE(241), - [sym_math_set] = STATE(241), - [sym__command] = STATE(241), - [sym_generic_command] = STATE(241), - [sym_package_include] = STATE(241), - [sym_class_include] = STATE(241), - [sym_latex_include] = STATE(241), - [sym_biblatex_include] = STATE(241), - [sym_bibtex_include] = STATE(241), - [sym_graphics_include] = STATE(241), - [sym_svg_include] = STATE(241), - [sym_inkscape_include] = STATE(241), - [sym_verbatim_include] = STATE(241), - [sym_import_include] = STATE(241), - [sym_caption] = STATE(241), - [sym_citation] = STATE(241), - [sym_label_definition] = STATE(241), - [sym_label_reference] = STATE(241), - [sym_label_reference_range] = STATE(241), - [sym_label_number] = STATE(241), - [sym_new_command_definition] = STATE(241), - [sym_old_command_definition] = STATE(241), - [sym_let_command_definition] = STATE(241), - [sym_environment_definition] = STATE(241), - [sym_glossary_entry_definition] = STATE(241), - [sym_glossary_entry_reference] = STATE(241), - [sym_acronym_definition] = STATE(241), - [sym_acronym_reference] = STATE(241), - [sym_theorem_definition] = STATE(241), - [sym_color_definition] = STATE(241), - [sym_color_set_definition] = STATE(241), - [sym_color_reference] = STATE(241), - [sym_tikz_library_import] = STATE(241), - [aux_sym_text_repeat1] = STATE(267), - [aux_sym_value_repeat1] = STATE(241), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3902), - [anon_sym_RPAREN] = ACTIONS(3902), - [anon_sym_LBRACK] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3663), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3671), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3671), - [anon_sym_DOLLAR] = ACTIONS(3673), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3675), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), - }, - [246] = { [sym_block_comment] = STATE(242), [sym__text_content] = STATE(242), [sym_curly_group] = STATE(242), [sym_brack_group] = STATE(242), [sym_text] = STATE(242), - [sym_operator] = STATE(1473), - [sym_value] = STATE(1780), + [sym_operator] = STATE(1480), + [sym_value] = STATE(1773), [sym_displayed_equation] = STATE(242), [sym_inline_formula] = STATE(242), [sym_math_set] = STATE(242), @@ -102621,536 +101095,833 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(242), [sym_color_reference] = STATE(242), [sym_tikz_library_import] = STATE(242), + [sym_text_mode] = STATE(242), [aux_sym_text_repeat1] = STATE(267), [aux_sym_value_repeat1] = STATE(242), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(3904), - [anon_sym_RPAREN] = ACTIONS(3904), - [anon_sym_LBRACK] = ACTIONS(3659), - [anon_sym_LBRACE] = ACTIONS(3663), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3747), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3747), - [anon_sym_DOLLAR] = ACTIONS(3749), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3751), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3955), + [anon_sym_RPAREN] = ACTIONS(3955), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3711), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3797), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3797), + [anon_sym_DOLLAR] = ACTIONS(3799), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3801), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), + }, + [246] = { + [sym_block_comment] = STATE(241), + [sym__text_content] = STATE(241), + [sym_curly_group] = STATE(241), + [sym_brack_group] = STATE(241), + [sym_text] = STATE(241), + [sym_operator] = STATE(1480), + [sym_value] = STATE(1773), + [sym_displayed_equation] = STATE(241), + [sym_inline_formula] = STATE(241), + [sym_math_set] = STATE(241), + [sym__command] = STATE(241), + [sym_generic_command] = STATE(241), + [sym_package_include] = STATE(241), + [sym_class_include] = STATE(241), + [sym_latex_include] = STATE(241), + [sym_biblatex_include] = STATE(241), + [sym_bibtex_include] = STATE(241), + [sym_graphics_include] = STATE(241), + [sym_svg_include] = STATE(241), + [sym_inkscape_include] = STATE(241), + [sym_verbatim_include] = STATE(241), + [sym_import_include] = STATE(241), + [sym_caption] = STATE(241), + [sym_citation] = STATE(241), + [sym_label_definition] = STATE(241), + [sym_label_reference] = STATE(241), + [sym_label_reference_range] = STATE(241), + [sym_label_number] = STATE(241), + [sym_new_command_definition] = STATE(241), + [sym_old_command_definition] = STATE(241), + [sym_let_command_definition] = STATE(241), + [sym_environment_definition] = STATE(241), + [sym_glossary_entry_definition] = STATE(241), + [sym_glossary_entry_reference] = STATE(241), + [sym_acronym_definition] = STATE(241), + [sym_acronym_reference] = STATE(241), + [sym_theorem_definition] = STATE(241), + [sym_color_definition] = STATE(241), + [sym_color_set_definition] = STATE(241), + [sym_color_reference] = STATE(241), + [sym_tikz_library_import] = STATE(241), + [sym_text_mode] = STATE(241), + [aux_sym_text_repeat1] = STATE(267), + [aux_sym_value_repeat1] = STATE(241), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(3957), + [anon_sym_RPAREN] = ACTIONS(3957), + [anon_sym_LBRACK] = ACTIONS(3707), + [anon_sym_LBRACE] = ACTIONS(3711), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3719), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3719), + [anon_sym_DOLLAR] = ACTIONS(3721), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3723), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, [247] = { - [sym_block_comment] = STATE(256), - [sym__text_content] = STATE(256), - [sym_curly_group] = STATE(256), - [sym_text] = STATE(256), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(256), - [sym_inline_formula] = STATE(256), - [sym_math_set] = STATE(256), - [sym__command] = STATE(256), - [sym_generic_command] = STATE(256), - [sym_package_include] = STATE(256), - [sym_class_include] = STATE(256), - [sym_latex_include] = STATE(256), - [sym_biblatex_include] = STATE(256), - [sym_bibtex_include] = STATE(256), - [sym_graphics_include] = STATE(256), - [sym_svg_include] = STATE(256), - [sym_inkscape_include] = STATE(256), - [sym_verbatim_include] = STATE(256), - [sym_import_include] = STATE(256), - [sym_caption] = STATE(256), - [sym_citation] = STATE(256), - [sym_label_definition] = STATE(256), - [sym_label_reference] = STATE(256), - [sym_label_reference_range] = STATE(256), - [sym_label_number] = STATE(256), - [sym_new_command_definition] = STATE(256), - [sym_old_command_definition] = STATE(256), - [sym_let_command_definition] = STATE(256), - [sym_environment_definition] = STATE(256), - [sym_glossary_entry_definition] = STATE(256), - [sym_glossary_entry_reference] = STATE(256), - [sym_acronym_definition] = STATE(256), - [sym_acronym_reference] = STATE(256), - [sym_theorem_definition] = STATE(256), - [sym_color_definition] = STATE(256), - [sym_color_set_definition] = STATE(256), - [sym_color_reference] = STATE(256), - [sym_tikz_library_import] = STATE(256), - [aux_sym_curly_group_impl_repeat1] = STATE(256), + [sym_block_comment] = STATE(262), + [sym__text_content] = STATE(262), + [sym_curly_group] = STATE(262), + [sym_text] = STATE(262), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(262), + [sym_inline_formula] = STATE(262), + [sym_math_set] = STATE(262), + [sym__command] = STATE(262), + [sym_generic_command] = STATE(262), + [sym_package_include] = STATE(262), + [sym_class_include] = STATE(262), + [sym_latex_include] = STATE(262), + [sym_biblatex_include] = STATE(262), + [sym_bibtex_include] = STATE(262), + [sym_graphics_include] = STATE(262), + [sym_svg_include] = STATE(262), + [sym_inkscape_include] = STATE(262), + [sym_verbatim_include] = STATE(262), + [sym_import_include] = STATE(262), + [sym_caption] = STATE(262), + [sym_citation] = STATE(262), + [sym_label_definition] = STATE(262), + [sym_label_reference] = STATE(262), + [sym_label_reference_range] = STATE(262), + [sym_label_number] = STATE(262), + [sym_new_command_definition] = STATE(262), + [sym_old_command_definition] = STATE(262), + [sym_let_command_definition] = STATE(262), + [sym_environment_definition] = STATE(262), + [sym_glossary_entry_definition] = STATE(262), + [sym_glossary_entry_reference] = STATE(262), + [sym_acronym_definition] = STATE(262), + [sym_acronym_reference] = STATE(262), + [sym_theorem_definition] = STATE(262), + [sym_color_definition] = STATE(262), + [sym_color_set_definition] = STATE(262), + [sym_color_reference] = STATE(262), + [sym_tikz_library_import] = STATE(262), + [sym_text_mode] = STATE(262), + [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(3906), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3959), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, [248] = { [sym_block_comment] = STATE(262), [sym__text_content] = STATE(262), [sym_curly_group] = STATE(262), [sym_text] = STATE(262), - [sym_operator] = STATE(1473), + [sym_operator] = STATE(1480), [sym_displayed_equation] = STATE(262), [sym_inline_formula] = STATE(262), [sym_math_set] = STATE(262), @@ -103185,3063 +101956,2822 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(262), [sym_color_reference] = STATE(262), [sym_tikz_library_import] = STATE(262), + [sym_text_mode] = STATE(262), [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(3914), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3967), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, [249] = { - [sym_block_comment] = STATE(260), - [sym__text_content] = STATE(260), - [sym_curly_group] = STATE(260), - [sym_text] = STATE(260), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(260), - [sym_inline_formula] = STATE(260), - [sym_math_set] = STATE(260), - [sym__command] = STATE(260), - [sym_generic_command] = STATE(260), - [sym_package_include] = STATE(260), - [sym_class_include] = STATE(260), - [sym_latex_include] = STATE(260), - [sym_biblatex_include] = STATE(260), - [sym_bibtex_include] = STATE(260), - [sym_graphics_include] = STATE(260), - [sym_svg_include] = STATE(260), - [sym_inkscape_include] = STATE(260), - [sym_verbatim_include] = STATE(260), - [sym_import_include] = STATE(260), - [sym_caption] = STATE(260), - [sym_citation] = STATE(260), - [sym_label_definition] = STATE(260), - [sym_label_reference] = STATE(260), - [sym_label_reference_range] = STATE(260), - [sym_label_number] = STATE(260), - [sym_new_command_definition] = STATE(260), - [sym_old_command_definition] = STATE(260), - [sym_let_command_definition] = STATE(260), - [sym_environment_definition] = STATE(260), - [sym_glossary_entry_definition] = STATE(260), - [sym_glossary_entry_reference] = STATE(260), - [sym_acronym_definition] = STATE(260), - [sym_acronym_reference] = STATE(260), - [sym_theorem_definition] = STATE(260), - [sym_color_definition] = STATE(260), - [sym_color_set_definition] = STATE(260), - [sym_color_reference] = STATE(260), - [sym_tikz_library_import] = STATE(260), - [aux_sym_curly_group_impl_repeat1] = STATE(260), + [sym_block_comment] = STATE(248), + [sym__text_content] = STATE(248), + [sym_curly_group] = STATE(248), + [sym_text] = STATE(248), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(248), + [sym_inline_formula] = STATE(248), + [sym_math_set] = STATE(248), + [sym__command] = STATE(248), + [sym_generic_command] = STATE(248), + [sym_package_include] = STATE(248), + [sym_class_include] = STATE(248), + [sym_latex_include] = STATE(248), + [sym_biblatex_include] = STATE(248), + [sym_bibtex_include] = STATE(248), + [sym_graphics_include] = STATE(248), + [sym_svg_include] = STATE(248), + [sym_inkscape_include] = STATE(248), + [sym_verbatim_include] = STATE(248), + [sym_import_include] = STATE(248), + [sym_caption] = STATE(248), + [sym_citation] = STATE(248), + [sym_label_definition] = STATE(248), + [sym_label_reference] = STATE(248), + [sym_label_reference_range] = STATE(248), + [sym_label_number] = STATE(248), + [sym_new_command_definition] = STATE(248), + [sym_old_command_definition] = STATE(248), + [sym_let_command_definition] = STATE(248), + [sym_environment_definition] = STATE(248), + [sym_glossary_entry_definition] = STATE(248), + [sym_glossary_entry_reference] = STATE(248), + [sym_acronym_definition] = STATE(248), + [sym_acronym_reference] = STATE(248), + [sym_theorem_definition] = STATE(248), + [sym_color_definition] = STATE(248), + [sym_color_set_definition] = STATE(248), + [sym_color_reference] = STATE(248), + [sym_tikz_library_import] = STATE(248), + [sym_text_mode] = STATE(248), + [aux_sym_curly_group_impl_repeat1] = STATE(248), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(3916), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3969), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, [250] = { - [sym_block_comment] = STATE(257), - [sym__text_content] = STATE(257), - [sym_curly_group] = STATE(257), - [sym_text] = STATE(257), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(257), - [sym_inline_formula] = STATE(257), - [sym_math_set] = STATE(257), - [sym__command] = STATE(257), - [sym_generic_command] = STATE(257), - [sym_package_include] = STATE(257), - [sym_class_include] = STATE(257), - [sym_latex_include] = STATE(257), - [sym_biblatex_include] = STATE(257), - [sym_bibtex_include] = STATE(257), - [sym_graphics_include] = STATE(257), - [sym_svg_include] = STATE(257), - [sym_inkscape_include] = STATE(257), - [sym_verbatim_include] = STATE(257), - [sym_import_include] = STATE(257), - [sym_caption] = STATE(257), - [sym_citation] = STATE(257), - [sym_label_definition] = STATE(257), - [sym_label_reference] = STATE(257), - [sym_label_reference_range] = STATE(257), - [sym_label_number] = STATE(257), - [sym_new_command_definition] = STATE(257), - [sym_old_command_definition] = STATE(257), - [sym_let_command_definition] = STATE(257), - [sym_environment_definition] = STATE(257), - [sym_glossary_entry_definition] = STATE(257), - [sym_glossary_entry_reference] = STATE(257), - [sym_acronym_definition] = STATE(257), - [sym_acronym_reference] = STATE(257), - [sym_theorem_definition] = STATE(257), - [sym_color_definition] = STATE(257), - [sym_color_set_definition] = STATE(257), - [sym_color_reference] = STATE(257), - [sym_tikz_library_import] = STATE(257), - [aux_sym_curly_group_impl_repeat1] = STATE(257), + [sym_block_comment] = STATE(262), + [sym__text_content] = STATE(262), + [sym_curly_group] = STATE(262), + [sym_text] = STATE(262), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(262), + [sym_inline_formula] = STATE(262), + [sym_math_set] = STATE(262), + [sym__command] = STATE(262), + [sym_generic_command] = STATE(262), + [sym_package_include] = STATE(262), + [sym_class_include] = STATE(262), + [sym_latex_include] = STATE(262), + [sym_biblatex_include] = STATE(262), + [sym_bibtex_include] = STATE(262), + [sym_graphics_include] = STATE(262), + [sym_svg_include] = STATE(262), + [sym_inkscape_include] = STATE(262), + [sym_verbatim_include] = STATE(262), + [sym_import_include] = STATE(262), + [sym_caption] = STATE(262), + [sym_citation] = STATE(262), + [sym_label_definition] = STATE(262), + [sym_label_reference] = STATE(262), + [sym_label_reference_range] = STATE(262), + [sym_label_number] = STATE(262), + [sym_new_command_definition] = STATE(262), + [sym_old_command_definition] = STATE(262), + [sym_let_command_definition] = STATE(262), + [sym_environment_definition] = STATE(262), + [sym_glossary_entry_definition] = STATE(262), + [sym_glossary_entry_reference] = STATE(262), + [sym_acronym_definition] = STATE(262), + [sym_acronym_reference] = STATE(262), + [sym_theorem_definition] = STATE(262), + [sym_color_definition] = STATE(262), + [sym_color_set_definition] = STATE(262), + [sym_color_reference] = STATE(262), + [sym_tikz_library_import] = STATE(262), + [sym_text_mode] = STATE(262), + [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(3918), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3971), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, [251] = { - [sym_block_comment] = STATE(252), - [sym__text_content] = STATE(252), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_math_set] = STATE(252), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [aux_sym_curly_group_impl_repeat1] = STATE(252), + [sym_block_comment] = STATE(261), + [sym__text_content] = STATE(261), + [sym_curly_group] = STATE(261), + [sym_text] = STATE(261), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(261), + [sym_inline_formula] = STATE(261), + [sym_math_set] = STATE(261), + [sym__command] = STATE(261), + [sym_generic_command] = STATE(261), + [sym_package_include] = STATE(261), + [sym_class_include] = STATE(261), + [sym_latex_include] = STATE(261), + [sym_biblatex_include] = STATE(261), + [sym_bibtex_include] = STATE(261), + [sym_graphics_include] = STATE(261), + [sym_svg_include] = STATE(261), + [sym_inkscape_include] = STATE(261), + [sym_verbatim_include] = STATE(261), + [sym_import_include] = STATE(261), + [sym_caption] = STATE(261), + [sym_citation] = STATE(261), + [sym_label_definition] = STATE(261), + [sym_label_reference] = STATE(261), + [sym_label_reference_range] = STATE(261), + [sym_label_number] = STATE(261), + [sym_new_command_definition] = STATE(261), + [sym_old_command_definition] = STATE(261), + [sym_let_command_definition] = STATE(261), + [sym_environment_definition] = STATE(261), + [sym_glossary_entry_definition] = STATE(261), + [sym_glossary_entry_reference] = STATE(261), + [sym_acronym_definition] = STATE(261), + [sym_acronym_reference] = STATE(261), + [sym_theorem_definition] = STATE(261), + [sym_color_definition] = STATE(261), + [sym_color_set_definition] = STATE(261), + [sym_color_reference] = STATE(261), + [sym_tikz_library_import] = STATE(261), + [sym_text_mode] = STATE(261), + [aux_sym_curly_group_impl_repeat1] = STATE(261), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(3920), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3973), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, [252] = { - [sym_block_comment] = STATE(252), - [sym__text_content] = STATE(252), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_math_set] = STATE(252), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [aux_sym_curly_group_impl_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_RBRACE] = ACTIONS(3931), - [sym_word] = ACTIONS(3933), - [sym_placeholder] = ACTIONS(3936), - [anon_sym_PLUS] = ACTIONS(3939), - [anon_sym_DASH] = ACTIONS(3939), - [anon_sym_STAR] = ACTIONS(3939), - [anon_sym_SLASH] = ACTIONS(3939), - [anon_sym_CARET] = ACTIONS(3939), - [anon_sym__] = ACTIONS(3939), - [anon_sym_LT] = ACTIONS(3939), - [anon_sym_GT] = ACTIONS(3939), - [anon_sym_BANG] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3939), - [anon_sym_COLON] = ACTIONS(3939), - [anon_sym_SQUOTE] = ACTIONS(3939), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3942), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3942), - [anon_sym_DOLLAR] = ACTIONS(3945), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3948), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3951), - [anon_sym_BSLASHusepackage] = ACTIONS(3954), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3954), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3957), - [anon_sym_BSLASHinclude] = ACTIONS(3960), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3960), - [anon_sym_BSLASHinput] = ACTIONS(3960), - [anon_sym_BSLASHsubfile] = ACTIONS(3960), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3963), - [anon_sym_BSLASHbibliography] = ACTIONS(3966), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3969), - [anon_sym_BSLASHincludesvg] = ACTIONS(3972), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3975), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3978), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3978), - [anon_sym_BSLASHimport] = ACTIONS(3981), - [anon_sym_BSLASHsubimport] = ACTIONS(3981), - [anon_sym_BSLASHinputfrom] = ACTIONS(3981), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3981), - [anon_sym_BSLASHincludefrom] = ACTIONS(3981), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3981), - [anon_sym_BSLASHcaption] = ACTIONS(3984), - [anon_sym_BSLASHcite] = ACTIONS(3987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3990), - [anon_sym_BSLASHCite] = ACTIONS(3987), - [anon_sym_BSLASHnocite] = ACTIONS(3987), - [anon_sym_BSLASHcitet] = ACTIONS(3987), - [anon_sym_BSLASHcitep] = ACTIONS(3987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3990), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3990), - [anon_sym_BSLASHciteauthor] = ACTIONS(3987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3990), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3990), - [anon_sym_BSLASHcitetitle] = ACTIONS(3987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3990), - [anon_sym_BSLASHciteyear] = ACTIONS(3987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3990), - [anon_sym_BSLASHcitedate] = ACTIONS(3987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3990), - [anon_sym_BSLASHciteurl] = ACTIONS(3987), - [anon_sym_BSLASHfullcite] = ACTIONS(3987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3987), - [anon_sym_BSLASHcitealt] = ACTIONS(3987), - [anon_sym_BSLASHcitealp] = ACTIONS(3987), - [anon_sym_BSLASHcitetext] = ACTIONS(3987), - [anon_sym_BSLASHparencite] = ACTIONS(3987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3990), - [anon_sym_BSLASHParencite] = ACTIONS(3987), - [anon_sym_BSLASHfootcite] = ACTIONS(3987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3987), - [anon_sym_BSLASHtextcite] = ACTIONS(3987), - [anon_sym_BSLASHTextcite] = ACTIONS(3987), - [anon_sym_BSLASHsmartcite] = ACTIONS(3987), - [anon_sym_BSLASHSmartcite] = ACTIONS(3987), - [anon_sym_BSLASHsupercite] = ACTIONS(3987), - [anon_sym_BSLASHautocite] = ACTIONS(3987), - [anon_sym_BSLASHAutocite] = ACTIONS(3987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3990), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3990), - [anon_sym_BSLASHvolcite] = ACTIONS(3987), - [anon_sym_BSLASHVolcite] = ACTIONS(3987), - [anon_sym_BSLASHpvolcite] = ACTIONS(3987), - [anon_sym_BSLASHPvolcite] = ACTIONS(3987), - [anon_sym_BSLASHfvolcite] = ACTIONS(3987), - [anon_sym_BSLASHftvolcite] = ACTIONS(3987), - [anon_sym_BSLASHsvolcite] = ACTIONS(3987), - [anon_sym_BSLASHSvolcite] = ACTIONS(3987), - [anon_sym_BSLASHtvolcite] = ACTIONS(3987), - [anon_sym_BSLASHTvolcite] = ACTIONS(3987), - [anon_sym_BSLASHavolcite] = ACTIONS(3987), - [anon_sym_BSLASHAvolcite] = ACTIONS(3987), - [anon_sym_BSLASHnotecite] = ACTIONS(3987), - [anon_sym_BSLASHNotecite] = ACTIONS(3987), - [anon_sym_BSLASHpnotecite] = ACTIONS(3987), - [anon_sym_BSLASHPnotecite] = ACTIONS(3987), - [anon_sym_BSLASHfnotecite] = ACTIONS(3987), - [anon_sym_BSLASHlabel] = ACTIONS(3993), - [anon_sym_BSLASHref] = ACTIONS(3996), - [anon_sym_BSLASHeqref] = ACTIONS(3996), - [anon_sym_BSLASHvref] = ACTIONS(3996), - [anon_sym_BSLASHVref] = ACTIONS(3996), - [anon_sym_BSLASHautoref] = ACTIONS(3996), - [anon_sym_BSLASHpageref] = ACTIONS(3996), - [anon_sym_BSLASHcref] = ACTIONS(3996), - [anon_sym_BSLASHCref] = ACTIONS(3996), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3999), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3999), - [anon_sym_BSLASHnamecref] = ACTIONS(3996), - [anon_sym_BSLASHnameCref] = ACTIONS(3996), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3996), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3996), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3996), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3996), - [anon_sym_BSLASHlabelcref] = ACTIONS(3996), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3996), - [anon_sym_BSLASHcrefrange] = ACTIONS(4002), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4005), - [anon_sym_BSLASHCrefrange] = ACTIONS(4002), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4005), - [anon_sym_BSLASHnewlabel] = ACTIONS(4008), - [anon_sym_BSLASHnewcommand] = ACTIONS(4011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4014), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4014), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4014), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4014), - [anon_sym_BSLASHdef] = ACTIONS(4017), - [anon_sym_BSLASHlet] = ACTIONS(4020), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4023), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4026), - [anon_sym_BSLASHgls] = ACTIONS(4029), - [anon_sym_BSLASHGls] = ACTIONS(4029), - [anon_sym_BSLASHGLS] = ACTIONS(4029), - [anon_sym_BSLASHglspl] = ACTIONS(4029), - [anon_sym_BSLASHGlspl] = ACTIONS(4029), - [anon_sym_BSLASHGLSpl] = ACTIONS(4029), - [anon_sym_BSLASHglsdisp] = ACTIONS(4029), - [anon_sym_BSLASHglslink] = ACTIONS(4029), - [anon_sym_BSLASHglstext] = ACTIONS(4029), - [anon_sym_BSLASHGlstext] = ACTIONS(4029), - [anon_sym_BSLASHGLStext] = ACTIONS(4029), - [anon_sym_BSLASHglsfirst] = ACTIONS(4029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4029), - [anon_sym_BSLASHglsplural] = ACTIONS(4029), - [anon_sym_BSLASHGlsplural] = ACTIONS(4029), - [anon_sym_BSLASHGLSplural] = ACTIONS(4029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4029), - [anon_sym_BSLASHglsname] = ACTIONS(4029), - [anon_sym_BSLASHGlsname] = ACTIONS(4029), - [anon_sym_BSLASHGLSname] = ACTIONS(4029), - [anon_sym_BSLASHglssymbol] = ACTIONS(4029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4029), - [anon_sym_BSLASHglsdesc] = ACTIONS(4029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4029), - [anon_sym_BSLASHglsuseri] = ACTIONS(4029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4029), - [anon_sym_BSLASHglsuserii] = ACTIONS(4029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4029), - [anon_sym_BSLASHglsuserv] = ACTIONS(4029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4029), - [anon_sym_BSLASHglsuservi] = ACTIONS(4029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4029), - [anon_sym_BSLASHnewacronym] = ACTIONS(4032), - [anon_sym_BSLASHacrshort] = ACTIONS(4035), - [anon_sym_BSLASHAcrshort] = ACTIONS(4035), - [anon_sym_BSLASHACRshort] = ACTIONS(4035), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4035), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4035), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4035), - [anon_sym_BSLASHacrlong] = ACTIONS(4035), - [anon_sym_BSLASHAcrlong] = ACTIONS(4035), - [anon_sym_BSLASHACRlong] = ACTIONS(4035), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4035), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4035), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4035), - [anon_sym_BSLASHacrfull] = ACTIONS(4035), - [anon_sym_BSLASHAcrfull] = ACTIONS(4035), - [anon_sym_BSLASHACRfull] = ACTIONS(4035), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4035), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4035), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4035), - [anon_sym_BSLASHacs] = ACTIONS(4035), - [anon_sym_BSLASHAcs] = ACTIONS(4035), - [anon_sym_BSLASHacsp] = ACTIONS(4035), - [anon_sym_BSLASHAcsp] = ACTIONS(4035), - [anon_sym_BSLASHacl] = ACTIONS(4035), - [anon_sym_BSLASHAcl] = ACTIONS(4035), - [anon_sym_BSLASHaclp] = ACTIONS(4035), - [anon_sym_BSLASHAclp] = ACTIONS(4035), - [anon_sym_BSLASHacf] = ACTIONS(4035), - [anon_sym_BSLASHAcf] = ACTIONS(4035), - [anon_sym_BSLASHacfp] = ACTIONS(4035), - [anon_sym_BSLASHAcfp] = ACTIONS(4035), - [anon_sym_BSLASHac] = ACTIONS(4035), - [anon_sym_BSLASHAc] = ACTIONS(4035), - [anon_sym_BSLASHacp] = ACTIONS(4035), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4035), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4035), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4035), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4035), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4035), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4035), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4035), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4035), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4035), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4035), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4038), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4038), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4044), - [anon_sym_BSLASHcolor] = ACTIONS(4047), - [anon_sym_BSLASHcolorbox] = ACTIONS(4047), - [anon_sym_BSLASHtextcolor] = ACTIONS(4047), - [anon_sym_BSLASHpagecolor] = ACTIONS(4047), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4050), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4050), - }, - [253] = { - [sym_block_comment] = STATE(252), - [sym__text_content] = STATE(252), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_math_set] = STATE(252), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [aux_sym_curly_group_impl_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4053), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), - }, - [254] = { - [sym_block_comment] = STATE(252), - [sym__text_content] = STATE(252), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_math_set] = STATE(252), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [aux_sym_curly_group_impl_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4055), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), - }, - [255] = { - [sym_block_comment] = STATE(254), - [sym__text_content] = STATE(254), - [sym_curly_group] = STATE(254), - [sym_text] = STATE(254), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(254), - [sym_inline_formula] = STATE(254), - [sym_math_set] = STATE(254), - [sym__command] = STATE(254), - [sym_generic_command] = STATE(254), - [sym_package_include] = STATE(254), - [sym_class_include] = STATE(254), - [sym_latex_include] = STATE(254), - [sym_biblatex_include] = STATE(254), - [sym_bibtex_include] = STATE(254), - [sym_graphics_include] = STATE(254), - [sym_svg_include] = STATE(254), - [sym_inkscape_include] = STATE(254), - [sym_verbatim_include] = STATE(254), - [sym_import_include] = STATE(254), - [sym_caption] = STATE(254), - [sym_citation] = STATE(254), - [sym_label_definition] = STATE(254), - [sym_label_reference] = STATE(254), - [sym_label_reference_range] = STATE(254), - [sym_label_number] = STATE(254), - [sym_new_command_definition] = STATE(254), - [sym_old_command_definition] = STATE(254), - [sym_let_command_definition] = STATE(254), - [sym_environment_definition] = STATE(254), - [sym_glossary_entry_definition] = STATE(254), - [sym_glossary_entry_reference] = STATE(254), - [sym_acronym_definition] = STATE(254), - [sym_acronym_reference] = STATE(254), - [sym_theorem_definition] = STATE(254), - [sym_color_definition] = STATE(254), - [sym_color_set_definition] = STATE(254), - [sym_color_reference] = STATE(254), - [sym_tikz_library_import] = STATE(254), - [aux_sym_curly_group_impl_repeat1] = STATE(254), - [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4057), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), - }, - [256] = { - [sym_block_comment] = STATE(252), - [sym__text_content] = STATE(252), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_math_set] = STATE(252), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [aux_sym_curly_group_impl_repeat1] = STATE(252), - [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4059), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), - }, - [257] = { - [sym_block_comment] = STATE(252), - [sym__text_content] = STATE(252), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_math_set] = STATE(252), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [aux_sym_curly_group_impl_repeat1] = STATE(252), + [sym_block_comment] = STATE(263), + [sym__text_content] = STATE(263), + [sym_curly_group] = STATE(263), + [sym_text] = STATE(263), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(263), + [sym_inline_formula] = STATE(263), + [sym_math_set] = STATE(263), + [sym__command] = STATE(263), + [sym_generic_command] = STATE(263), + [sym_package_include] = STATE(263), + [sym_class_include] = STATE(263), + [sym_latex_include] = STATE(263), + [sym_biblatex_include] = STATE(263), + [sym_bibtex_include] = STATE(263), + [sym_graphics_include] = STATE(263), + [sym_svg_include] = STATE(263), + [sym_inkscape_include] = STATE(263), + [sym_verbatim_include] = STATE(263), + [sym_import_include] = STATE(263), + [sym_caption] = STATE(263), + [sym_citation] = STATE(263), + [sym_label_definition] = STATE(263), + [sym_label_reference] = STATE(263), + [sym_label_reference_range] = STATE(263), + [sym_label_number] = STATE(263), + [sym_new_command_definition] = STATE(263), + [sym_old_command_definition] = STATE(263), + [sym_let_command_definition] = STATE(263), + [sym_environment_definition] = STATE(263), + [sym_glossary_entry_definition] = STATE(263), + [sym_glossary_entry_reference] = STATE(263), + [sym_acronym_definition] = STATE(263), + [sym_acronym_reference] = STATE(263), + [sym_theorem_definition] = STATE(263), + [sym_color_definition] = STATE(263), + [sym_color_set_definition] = STATE(263), + [sym_color_reference] = STATE(263), + [sym_tikz_library_import] = STATE(263), + [sym_text_mode] = STATE(263), + [aux_sym_curly_group_impl_repeat1] = STATE(263), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4061), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3975), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, - [258] = { - [sym_block_comment] = STATE(251), - [sym__text_content] = STATE(251), - [sym_curly_group] = STATE(251), - [sym_text] = STATE(251), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(251), - [sym_inline_formula] = STATE(251), - [sym_math_set] = STATE(251), - [sym__command] = STATE(251), - [sym_generic_command] = STATE(251), - [sym_package_include] = STATE(251), - [sym_class_include] = STATE(251), - [sym_latex_include] = STATE(251), - [sym_biblatex_include] = STATE(251), - [sym_bibtex_include] = STATE(251), - [sym_graphics_include] = STATE(251), - [sym_svg_include] = STATE(251), - [sym_inkscape_include] = STATE(251), - [sym_verbatim_include] = STATE(251), - [sym_import_include] = STATE(251), - [sym_caption] = STATE(251), - [sym_citation] = STATE(251), - [sym_label_definition] = STATE(251), - [sym_label_reference] = STATE(251), - [sym_label_reference_range] = STATE(251), - [sym_label_number] = STATE(251), - [sym_new_command_definition] = STATE(251), - [sym_old_command_definition] = STATE(251), - [sym_let_command_definition] = STATE(251), - [sym_environment_definition] = STATE(251), - [sym_glossary_entry_definition] = STATE(251), - [sym_glossary_entry_reference] = STATE(251), - [sym_acronym_definition] = STATE(251), - [sym_acronym_reference] = STATE(251), - [sym_theorem_definition] = STATE(251), - [sym_color_definition] = STATE(251), - [sym_color_set_definition] = STATE(251), - [sym_color_reference] = STATE(251), - [sym_tikz_library_import] = STATE(251), - [aux_sym_curly_group_impl_repeat1] = STATE(251), + [253] = { + [sym_block_comment] = STATE(262), + [sym__text_content] = STATE(262), + [sym_curly_group] = STATE(262), + [sym_text] = STATE(262), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(262), + [sym_inline_formula] = STATE(262), + [sym_math_set] = STATE(262), + [sym__command] = STATE(262), + [sym_generic_command] = STATE(262), + [sym_package_include] = STATE(262), + [sym_class_include] = STATE(262), + [sym_latex_include] = STATE(262), + [sym_biblatex_include] = STATE(262), + [sym_bibtex_include] = STATE(262), + [sym_graphics_include] = STATE(262), + [sym_svg_include] = STATE(262), + [sym_inkscape_include] = STATE(262), + [sym_verbatim_include] = STATE(262), + [sym_import_include] = STATE(262), + [sym_caption] = STATE(262), + [sym_citation] = STATE(262), + [sym_label_definition] = STATE(262), + [sym_label_reference] = STATE(262), + [sym_label_reference_range] = STATE(262), + [sym_label_number] = STATE(262), + [sym_new_command_definition] = STATE(262), + [sym_old_command_definition] = STATE(262), + [sym_let_command_definition] = STATE(262), + [sym_environment_definition] = STATE(262), + [sym_glossary_entry_definition] = STATE(262), + [sym_glossary_entry_reference] = STATE(262), + [sym_acronym_definition] = STATE(262), + [sym_acronym_reference] = STATE(262), + [sym_theorem_definition] = STATE(262), + [sym_color_definition] = STATE(262), + [sym_color_set_definition] = STATE(262), + [sym_color_reference] = STATE(262), + [sym_tikz_library_import] = STATE(262), + [sym_text_mode] = STATE(262), + [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4063), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3977), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, - [259] = { + [254] = { + [sym_block_comment] = STATE(256), + [sym__text_content] = STATE(256), + [sym_curly_group] = STATE(256), + [sym_text] = STATE(256), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(256), + [sym_inline_formula] = STATE(256), + [sym_math_set] = STATE(256), + [sym__command] = STATE(256), + [sym_generic_command] = STATE(256), + [sym_package_include] = STATE(256), + [sym_class_include] = STATE(256), + [sym_latex_include] = STATE(256), + [sym_biblatex_include] = STATE(256), + [sym_bibtex_include] = STATE(256), + [sym_graphics_include] = STATE(256), + [sym_svg_include] = STATE(256), + [sym_inkscape_include] = STATE(256), + [sym_verbatim_include] = STATE(256), + [sym_import_include] = STATE(256), + [sym_caption] = STATE(256), + [sym_citation] = STATE(256), + [sym_label_definition] = STATE(256), + [sym_label_reference] = STATE(256), + [sym_label_reference_range] = STATE(256), + [sym_label_number] = STATE(256), + [sym_new_command_definition] = STATE(256), + [sym_old_command_definition] = STATE(256), + [sym_let_command_definition] = STATE(256), + [sym_environment_definition] = STATE(256), + [sym_glossary_entry_definition] = STATE(256), + [sym_glossary_entry_reference] = STATE(256), + [sym_acronym_definition] = STATE(256), + [sym_acronym_reference] = STATE(256), + [sym_theorem_definition] = STATE(256), + [sym_color_definition] = STATE(256), + [sym_color_set_definition] = STATE(256), + [sym_color_reference] = STATE(256), + [sym_tikz_library_import] = STATE(256), + [sym_text_mode] = STATE(256), + [aux_sym_curly_group_impl_repeat1] = STATE(256), + [aux_sym_text_repeat1] = STATE(267), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3979), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), + }, + [255] = { + [sym_block_comment] = STATE(262), + [sym__text_content] = STATE(262), + [sym_curly_group] = STATE(262), + [sym_text] = STATE(262), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(262), + [sym_inline_formula] = STATE(262), + [sym_math_set] = STATE(262), + [sym__command] = STATE(262), + [sym_generic_command] = STATE(262), + [sym_package_include] = STATE(262), + [sym_class_include] = STATE(262), + [sym_latex_include] = STATE(262), + [sym_biblatex_include] = STATE(262), + [sym_bibtex_include] = STATE(262), + [sym_graphics_include] = STATE(262), + [sym_svg_include] = STATE(262), + [sym_inkscape_include] = STATE(262), + [sym_verbatim_include] = STATE(262), + [sym_import_include] = STATE(262), + [sym_caption] = STATE(262), + [sym_citation] = STATE(262), + [sym_label_definition] = STATE(262), + [sym_label_reference] = STATE(262), + [sym_label_reference_range] = STATE(262), + [sym_label_number] = STATE(262), + [sym_new_command_definition] = STATE(262), + [sym_old_command_definition] = STATE(262), + [sym_let_command_definition] = STATE(262), + [sym_environment_definition] = STATE(262), + [sym_glossary_entry_definition] = STATE(262), + [sym_glossary_entry_reference] = STATE(262), + [sym_acronym_definition] = STATE(262), + [sym_acronym_reference] = STATE(262), + [sym_theorem_definition] = STATE(262), + [sym_color_definition] = STATE(262), + [sym_color_set_definition] = STATE(262), + [sym_color_reference] = STATE(262), + [sym_tikz_library_import] = STATE(262), + [sym_text_mode] = STATE(262), + [aux_sym_curly_group_impl_repeat1] = STATE(262), + [aux_sym_text_repeat1] = STATE(267), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3981), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), + }, + [256] = { + [sym_block_comment] = STATE(262), + [sym__text_content] = STATE(262), + [sym_curly_group] = STATE(262), + [sym_text] = STATE(262), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(262), + [sym_inline_formula] = STATE(262), + [sym_math_set] = STATE(262), + [sym__command] = STATE(262), + [sym_generic_command] = STATE(262), + [sym_package_include] = STATE(262), + [sym_class_include] = STATE(262), + [sym_latex_include] = STATE(262), + [sym_biblatex_include] = STATE(262), + [sym_bibtex_include] = STATE(262), + [sym_graphics_include] = STATE(262), + [sym_svg_include] = STATE(262), + [sym_inkscape_include] = STATE(262), + [sym_verbatim_include] = STATE(262), + [sym_import_include] = STATE(262), + [sym_caption] = STATE(262), + [sym_citation] = STATE(262), + [sym_label_definition] = STATE(262), + [sym_label_reference] = STATE(262), + [sym_label_reference_range] = STATE(262), + [sym_label_number] = STATE(262), + [sym_new_command_definition] = STATE(262), + [sym_old_command_definition] = STATE(262), + [sym_let_command_definition] = STATE(262), + [sym_environment_definition] = STATE(262), + [sym_glossary_entry_definition] = STATE(262), + [sym_glossary_entry_reference] = STATE(262), + [sym_acronym_definition] = STATE(262), + [sym_acronym_reference] = STATE(262), + [sym_theorem_definition] = STATE(262), + [sym_color_definition] = STATE(262), + [sym_color_set_definition] = STATE(262), + [sym_color_reference] = STATE(262), + [sym_tikz_library_import] = STATE(262), + [sym_text_mode] = STATE(262), + [aux_sym_curly_group_impl_repeat1] = STATE(262), + [aux_sym_text_repeat1] = STATE(267), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3983), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), + }, + [257] = { + [sym_block_comment] = STATE(255), + [sym__text_content] = STATE(255), + [sym_curly_group] = STATE(255), + [sym_text] = STATE(255), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(255), + [sym_inline_formula] = STATE(255), + [sym_math_set] = STATE(255), + [sym__command] = STATE(255), + [sym_generic_command] = STATE(255), + [sym_package_include] = STATE(255), + [sym_class_include] = STATE(255), + [sym_latex_include] = STATE(255), + [sym_biblatex_include] = STATE(255), + [sym_bibtex_include] = STATE(255), + [sym_graphics_include] = STATE(255), + [sym_svg_include] = STATE(255), + [sym_inkscape_include] = STATE(255), + [sym_verbatim_include] = STATE(255), + [sym_import_include] = STATE(255), + [sym_caption] = STATE(255), + [sym_citation] = STATE(255), + [sym_label_definition] = STATE(255), + [sym_label_reference] = STATE(255), + [sym_label_reference_range] = STATE(255), + [sym_label_number] = STATE(255), + [sym_new_command_definition] = STATE(255), + [sym_old_command_definition] = STATE(255), + [sym_let_command_definition] = STATE(255), + [sym_environment_definition] = STATE(255), + [sym_glossary_entry_definition] = STATE(255), + [sym_glossary_entry_reference] = STATE(255), + [sym_acronym_definition] = STATE(255), + [sym_acronym_reference] = STATE(255), + [sym_theorem_definition] = STATE(255), + [sym_color_definition] = STATE(255), + [sym_color_set_definition] = STATE(255), + [sym_color_reference] = STATE(255), + [sym_tikz_library_import] = STATE(255), + [sym_text_mode] = STATE(255), + [aux_sym_curly_group_impl_repeat1] = STATE(255), + [aux_sym_text_repeat1] = STATE(267), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3985), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), + }, + [258] = { [sym_block_comment] = STATE(253), [sym__text_content] = STATE(253), [sym_curly_group] = STATE(253), [sym_text] = STATE(253), - [sym_operator] = STATE(1473), + [sym_operator] = STATE(1480), [sym_displayed_equation] = STATE(253), [sym_inline_formula] = STATE(253), [sym_math_set] = STATE(253), @@ -106276,17240 +104806,11920 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_color_set_definition] = STATE(253), [sym_color_reference] = STATE(253), [sym_tikz_library_import] = STATE(253), + [sym_text_mode] = STATE(253), [aux_sym_curly_group_impl_repeat1] = STATE(253), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4065), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3987), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), + }, + [259] = { + [sym_block_comment] = STATE(250), + [sym__text_content] = STATE(250), + [sym_curly_group] = STATE(250), + [sym_text] = STATE(250), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(250), + [sym_inline_formula] = STATE(250), + [sym_math_set] = STATE(250), + [sym__command] = STATE(250), + [sym_generic_command] = STATE(250), + [sym_package_include] = STATE(250), + [sym_class_include] = STATE(250), + [sym_latex_include] = STATE(250), + [sym_biblatex_include] = STATE(250), + [sym_bibtex_include] = STATE(250), + [sym_graphics_include] = STATE(250), + [sym_svg_include] = STATE(250), + [sym_inkscape_include] = STATE(250), + [sym_verbatim_include] = STATE(250), + [sym_import_include] = STATE(250), + [sym_caption] = STATE(250), + [sym_citation] = STATE(250), + [sym_label_definition] = STATE(250), + [sym_label_reference] = STATE(250), + [sym_label_reference_range] = STATE(250), + [sym_label_number] = STATE(250), + [sym_new_command_definition] = STATE(250), + [sym_old_command_definition] = STATE(250), + [sym_let_command_definition] = STATE(250), + [sym_environment_definition] = STATE(250), + [sym_glossary_entry_definition] = STATE(250), + [sym_glossary_entry_reference] = STATE(250), + [sym_acronym_definition] = STATE(250), + [sym_acronym_reference] = STATE(250), + [sym_theorem_definition] = STATE(250), + [sym_color_definition] = STATE(250), + [sym_color_set_definition] = STATE(250), + [sym_color_reference] = STATE(250), + [sym_tikz_library_import] = STATE(250), + [sym_text_mode] = STATE(250), + [aux_sym_curly_group_impl_repeat1] = STATE(250), + [aux_sym_text_repeat1] = STATE(267), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3989), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, [260] = { - [sym_block_comment] = STATE(252), - [sym__text_content] = STATE(252), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_math_set] = STATE(252), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [aux_sym_curly_group_impl_repeat1] = STATE(252), + [sym_block_comment] = STATE(247), + [sym__text_content] = STATE(247), + [sym_curly_group] = STATE(247), + [sym_text] = STATE(247), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(247), + [sym_inline_formula] = STATE(247), + [sym_math_set] = STATE(247), + [sym__command] = STATE(247), + [sym_generic_command] = STATE(247), + [sym_package_include] = STATE(247), + [sym_class_include] = STATE(247), + [sym_latex_include] = STATE(247), + [sym_biblatex_include] = STATE(247), + [sym_bibtex_include] = STATE(247), + [sym_graphics_include] = STATE(247), + [sym_svg_include] = STATE(247), + [sym_inkscape_include] = STATE(247), + [sym_verbatim_include] = STATE(247), + [sym_import_include] = STATE(247), + [sym_caption] = STATE(247), + [sym_citation] = STATE(247), + [sym_label_definition] = STATE(247), + [sym_label_reference] = STATE(247), + [sym_label_reference_range] = STATE(247), + [sym_label_number] = STATE(247), + [sym_new_command_definition] = STATE(247), + [sym_old_command_definition] = STATE(247), + [sym_let_command_definition] = STATE(247), + [sym_environment_definition] = STATE(247), + [sym_glossary_entry_definition] = STATE(247), + [sym_glossary_entry_reference] = STATE(247), + [sym_acronym_definition] = STATE(247), + [sym_acronym_reference] = STATE(247), + [sym_theorem_definition] = STATE(247), + [sym_color_definition] = STATE(247), + [sym_color_set_definition] = STATE(247), + [sym_color_reference] = STATE(247), + [sym_tikz_library_import] = STATE(247), + [sym_text_mode] = STATE(247), + [aux_sym_curly_group_impl_repeat1] = STATE(247), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4067), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3991), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, [261] = { - [sym_block_comment] = STATE(263), - [sym__text_content] = STATE(263), - [sym_curly_group] = STATE(263), - [sym_text] = STATE(263), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(263), - [sym_inline_formula] = STATE(263), - [sym_math_set] = STATE(263), - [sym__command] = STATE(263), - [sym_generic_command] = STATE(263), - [sym_package_include] = STATE(263), - [sym_class_include] = STATE(263), - [sym_latex_include] = STATE(263), - [sym_biblatex_include] = STATE(263), - [sym_bibtex_include] = STATE(263), - [sym_graphics_include] = STATE(263), - [sym_svg_include] = STATE(263), - [sym_inkscape_include] = STATE(263), - [sym_verbatim_include] = STATE(263), - [sym_import_include] = STATE(263), - [sym_caption] = STATE(263), - [sym_citation] = STATE(263), - [sym_label_definition] = STATE(263), - [sym_label_reference] = STATE(263), - [sym_label_reference_range] = STATE(263), - [sym_label_number] = STATE(263), - [sym_new_command_definition] = STATE(263), - [sym_old_command_definition] = STATE(263), - [sym_let_command_definition] = STATE(263), - [sym_environment_definition] = STATE(263), - [sym_glossary_entry_definition] = STATE(263), - [sym_glossary_entry_reference] = STATE(263), - [sym_acronym_definition] = STATE(263), - [sym_acronym_reference] = STATE(263), - [sym_theorem_definition] = STATE(263), - [sym_color_definition] = STATE(263), - [sym_color_set_definition] = STATE(263), - [sym_color_reference] = STATE(263), - [sym_tikz_library_import] = STATE(263), - [aux_sym_curly_group_impl_repeat1] = STATE(263), + [sym_block_comment] = STATE(262), + [sym__text_content] = STATE(262), + [sym_curly_group] = STATE(262), + [sym_text] = STATE(262), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(262), + [sym_inline_formula] = STATE(262), + [sym_math_set] = STATE(262), + [sym__command] = STATE(262), + [sym_generic_command] = STATE(262), + [sym_package_include] = STATE(262), + [sym_class_include] = STATE(262), + [sym_latex_include] = STATE(262), + [sym_biblatex_include] = STATE(262), + [sym_bibtex_include] = STATE(262), + [sym_graphics_include] = STATE(262), + [sym_svg_include] = STATE(262), + [sym_inkscape_include] = STATE(262), + [sym_verbatim_include] = STATE(262), + [sym_import_include] = STATE(262), + [sym_caption] = STATE(262), + [sym_citation] = STATE(262), + [sym_label_definition] = STATE(262), + [sym_label_reference] = STATE(262), + [sym_label_reference_range] = STATE(262), + [sym_label_number] = STATE(262), + [sym_new_command_definition] = STATE(262), + [sym_old_command_definition] = STATE(262), + [sym_let_command_definition] = STATE(262), + [sym_environment_definition] = STATE(262), + [sym_glossary_entry_definition] = STATE(262), + [sym_glossary_entry_reference] = STATE(262), + [sym_acronym_definition] = STATE(262), + [sym_acronym_reference] = STATE(262), + [sym_theorem_definition] = STATE(262), + [sym_color_definition] = STATE(262), + [sym_color_set_definition] = STATE(262), + [sym_color_reference] = STATE(262), + [sym_tikz_library_import] = STATE(262), + [sym_text_mode] = STATE(262), + [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4069), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(3993), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, [262] = { - [sym_block_comment] = STATE(252), - [sym__text_content] = STATE(252), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_math_set] = STATE(252), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [aux_sym_curly_group_impl_repeat1] = STATE(252), + [sym_block_comment] = STATE(262), + [sym__text_content] = STATE(262), + [sym_curly_group] = STATE(262), + [sym_text] = STATE(262), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(262), + [sym_inline_formula] = STATE(262), + [sym_math_set] = STATE(262), + [sym__command] = STATE(262), + [sym_generic_command] = STATE(262), + [sym_package_include] = STATE(262), + [sym_class_include] = STATE(262), + [sym_latex_include] = STATE(262), + [sym_biblatex_include] = STATE(262), + [sym_bibtex_include] = STATE(262), + [sym_graphics_include] = STATE(262), + [sym_svg_include] = STATE(262), + [sym_inkscape_include] = STATE(262), + [sym_verbatim_include] = STATE(262), + [sym_import_include] = STATE(262), + [sym_caption] = STATE(262), + [sym_citation] = STATE(262), + [sym_label_definition] = STATE(262), + [sym_label_reference] = STATE(262), + [sym_label_reference_range] = STATE(262), + [sym_label_number] = STATE(262), + [sym_new_command_definition] = STATE(262), + [sym_old_command_definition] = STATE(262), + [sym_let_command_definition] = STATE(262), + [sym_environment_definition] = STATE(262), + [sym_glossary_entry_definition] = STATE(262), + [sym_glossary_entry_reference] = STATE(262), + [sym_acronym_definition] = STATE(262), + [sym_acronym_reference] = STATE(262), + [sym_theorem_definition] = STATE(262), + [sym_color_definition] = STATE(262), + [sym_color_set_definition] = STATE(262), + [sym_color_reference] = STATE(262), + [sym_tikz_library_import] = STATE(262), + [sym_text_mode] = STATE(262), + [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4071), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3995), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3998), + [anon_sym_LBRACE] = ACTIONS(4001), + [anon_sym_RBRACE] = ACTIONS(4004), + [sym_word] = ACTIONS(4006), + [sym_placeholder] = ACTIONS(4009), + [anon_sym_PLUS] = ACTIONS(4012), + [anon_sym_DASH] = ACTIONS(4012), + [anon_sym_STAR] = ACTIONS(4012), + [anon_sym_SLASH] = ACTIONS(4012), + [anon_sym_CARET] = ACTIONS(4012), + [anon_sym__] = ACTIONS(4012), + [anon_sym_LT] = ACTIONS(4012), + [anon_sym_GT] = ACTIONS(4012), + [anon_sym_BANG] = ACTIONS(4012), + [anon_sym_PIPE] = ACTIONS(4012), + [anon_sym_COLON] = ACTIONS(4012), + [anon_sym_SQUOTE] = ACTIONS(4012), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4015), + [anon_sym_DOLLAR] = ACTIONS(4018), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4021), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4024), + [anon_sym_BSLASHusepackage] = ACTIONS(4027), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4027), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4030), + [anon_sym_BSLASHinclude] = ACTIONS(4033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4033), + [anon_sym_BSLASHinput] = ACTIONS(4033), + [anon_sym_BSLASHsubfile] = ACTIONS(4033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4036), + [anon_sym_BSLASHbibliography] = ACTIONS(4039), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4042), + [anon_sym_BSLASHincludesvg] = ACTIONS(4045), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4048), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4051), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4051), + [anon_sym_BSLASHimport] = ACTIONS(4054), + [anon_sym_BSLASHsubimport] = ACTIONS(4054), + [anon_sym_BSLASHinputfrom] = ACTIONS(4054), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4054), + [anon_sym_BSLASHincludefrom] = ACTIONS(4054), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4054), + [anon_sym_BSLASHcaption] = ACTIONS(4057), + [anon_sym_BSLASHcite] = ACTIONS(4060), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4063), + [anon_sym_BSLASHCite] = ACTIONS(4060), + [anon_sym_BSLASHnocite] = ACTIONS(4060), + [anon_sym_BSLASHcitet] = ACTIONS(4060), + [anon_sym_BSLASHcitep] = ACTIONS(4060), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4063), + [anon_sym_BSLASHciteauthor] = ACTIONS(4060), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4060), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4063), + [anon_sym_BSLASHcitetitle] = ACTIONS(4060), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4063), + [anon_sym_BSLASHciteyear] = ACTIONS(4060), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4063), + [anon_sym_BSLASHcitedate] = ACTIONS(4060), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4063), + [anon_sym_BSLASHciteurl] = ACTIONS(4060), + [anon_sym_BSLASHfullcite] = ACTIONS(4060), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4060), + [anon_sym_BSLASHcitealt] = ACTIONS(4060), + [anon_sym_BSLASHcitealp] = ACTIONS(4060), + [anon_sym_BSLASHcitetext] = ACTIONS(4060), + [anon_sym_BSLASHparencite] = ACTIONS(4060), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4063), + [anon_sym_BSLASHParencite] = ACTIONS(4060), + [anon_sym_BSLASHfootcite] = ACTIONS(4060), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4060), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4060), + [anon_sym_BSLASHtextcite] = ACTIONS(4060), + [anon_sym_BSLASHTextcite] = ACTIONS(4060), + [anon_sym_BSLASHsmartcite] = ACTIONS(4060), + [anon_sym_BSLASHSmartcite] = ACTIONS(4060), + [anon_sym_BSLASHsupercite] = ACTIONS(4060), + [anon_sym_BSLASHautocite] = ACTIONS(4060), + [anon_sym_BSLASHAutocite] = ACTIONS(4060), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4063), + [anon_sym_BSLASHvolcite] = ACTIONS(4060), + [anon_sym_BSLASHVolcite] = ACTIONS(4060), + [anon_sym_BSLASHpvolcite] = ACTIONS(4060), + [anon_sym_BSLASHPvolcite] = ACTIONS(4060), + [anon_sym_BSLASHfvolcite] = ACTIONS(4060), + [anon_sym_BSLASHftvolcite] = ACTIONS(4060), + [anon_sym_BSLASHsvolcite] = ACTIONS(4060), + [anon_sym_BSLASHSvolcite] = ACTIONS(4060), + [anon_sym_BSLASHtvolcite] = ACTIONS(4060), + [anon_sym_BSLASHTvolcite] = ACTIONS(4060), + [anon_sym_BSLASHavolcite] = ACTIONS(4060), + [anon_sym_BSLASHAvolcite] = ACTIONS(4060), + [anon_sym_BSLASHnotecite] = ACTIONS(4060), + [anon_sym_BSLASHNotecite] = ACTIONS(4060), + [anon_sym_BSLASHpnotecite] = ACTIONS(4060), + [anon_sym_BSLASHPnotecite] = ACTIONS(4060), + [anon_sym_BSLASHfnotecite] = ACTIONS(4060), + [anon_sym_BSLASHlabel] = ACTIONS(4066), + [anon_sym_BSLASHref] = ACTIONS(4069), + [anon_sym_BSLASHeqref] = ACTIONS(4069), + [anon_sym_BSLASHvref] = ACTIONS(4069), + [anon_sym_BSLASHVref] = ACTIONS(4069), + [anon_sym_BSLASHautoref] = ACTIONS(4069), + [anon_sym_BSLASHpageref] = ACTIONS(4069), + [anon_sym_BSLASHcref] = ACTIONS(4069), + [anon_sym_BSLASHCref] = ACTIONS(4069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4072), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4072), + [anon_sym_BSLASHnamecref] = ACTIONS(4069), + [anon_sym_BSLASHnameCref] = ACTIONS(4069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4069), + [anon_sym_BSLASHlabelcref] = ACTIONS(4069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4069), + [anon_sym_BSLASHcrefrange] = ACTIONS(4075), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4078), + [anon_sym_BSLASHCrefrange] = ACTIONS(4075), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4078), + [anon_sym_BSLASHnewlabel] = ACTIONS(4081), + [anon_sym_BSLASHnewcommand] = ACTIONS(4084), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4084), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4084), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4084), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4087), + [anon_sym_BSLASHdef] = ACTIONS(4090), + [anon_sym_BSLASHlet] = ACTIONS(4093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4096), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4099), + [anon_sym_BSLASHgls] = ACTIONS(4102), + [anon_sym_BSLASHGls] = ACTIONS(4102), + [anon_sym_BSLASHGLS] = ACTIONS(4102), + [anon_sym_BSLASHglspl] = ACTIONS(4102), + [anon_sym_BSLASHGlspl] = ACTIONS(4102), + [anon_sym_BSLASHGLSpl] = ACTIONS(4102), + [anon_sym_BSLASHglsdisp] = ACTIONS(4102), + [anon_sym_BSLASHglslink] = ACTIONS(4102), + [anon_sym_BSLASHglstext] = ACTIONS(4102), + [anon_sym_BSLASHGlstext] = ACTIONS(4102), + [anon_sym_BSLASHGLStext] = ACTIONS(4102), + [anon_sym_BSLASHglsfirst] = ACTIONS(4102), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4102), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4102), + [anon_sym_BSLASHglsplural] = ACTIONS(4102), + [anon_sym_BSLASHGlsplural] = ACTIONS(4102), + [anon_sym_BSLASHGLSplural] = ACTIONS(4102), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4102), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4102), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4102), + [anon_sym_BSLASHglsname] = ACTIONS(4102), + [anon_sym_BSLASHGlsname] = ACTIONS(4102), + [anon_sym_BSLASHGLSname] = ACTIONS(4102), + [anon_sym_BSLASHglssymbol] = ACTIONS(4102), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4102), + [anon_sym_BSLASHglsdesc] = ACTIONS(4102), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4102), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4102), + [anon_sym_BSLASHglsuseri] = ACTIONS(4102), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4102), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4102), + [anon_sym_BSLASHglsuserii] = ACTIONS(4102), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4102), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4102), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4102), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4102), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4102), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4102), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4102), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4102), + [anon_sym_BSLASHglsuserv] = ACTIONS(4102), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4102), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4102), + [anon_sym_BSLASHglsuservi] = ACTIONS(4102), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4102), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4102), + [anon_sym_BSLASHnewacronym] = ACTIONS(4105), + [anon_sym_BSLASHacrshort] = ACTIONS(4108), + [anon_sym_BSLASHAcrshort] = ACTIONS(4108), + [anon_sym_BSLASHACRshort] = ACTIONS(4108), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4108), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4108), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4108), + [anon_sym_BSLASHacrlong] = ACTIONS(4108), + [anon_sym_BSLASHAcrlong] = ACTIONS(4108), + [anon_sym_BSLASHACRlong] = ACTIONS(4108), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4108), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4108), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4108), + [anon_sym_BSLASHacrfull] = ACTIONS(4108), + [anon_sym_BSLASHAcrfull] = ACTIONS(4108), + [anon_sym_BSLASHACRfull] = ACTIONS(4108), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4108), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4108), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4108), + [anon_sym_BSLASHacs] = ACTIONS(4108), + [anon_sym_BSLASHAcs] = ACTIONS(4108), + [anon_sym_BSLASHacsp] = ACTIONS(4108), + [anon_sym_BSLASHAcsp] = ACTIONS(4108), + [anon_sym_BSLASHacl] = ACTIONS(4108), + [anon_sym_BSLASHAcl] = ACTIONS(4108), + [anon_sym_BSLASHaclp] = ACTIONS(4108), + [anon_sym_BSLASHAclp] = ACTIONS(4108), + [anon_sym_BSLASHacf] = ACTIONS(4108), + [anon_sym_BSLASHAcf] = ACTIONS(4108), + [anon_sym_BSLASHacfp] = ACTIONS(4108), + [anon_sym_BSLASHAcfp] = ACTIONS(4108), + [anon_sym_BSLASHac] = ACTIONS(4108), + [anon_sym_BSLASHAc] = ACTIONS(4108), + [anon_sym_BSLASHacp] = ACTIONS(4108), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4108), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4108), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4108), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4108), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4108), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4108), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4108), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4108), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4108), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4108), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4111), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4111), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4114), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4117), + [anon_sym_BSLASHcolor] = ACTIONS(4120), + [anon_sym_BSLASHcolorbox] = ACTIONS(4120), + [anon_sym_BSLASHtextcolor] = ACTIONS(4120), + [anon_sym_BSLASHpagecolor] = ACTIONS(4120), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4123), + [anon_sym_BSLASHtext] = ACTIONS(4126), + [anon_sym_BSLASHintertext] = ACTIONS(4126), + [anon_sym_shortintertext] = ACTIONS(4126), }, [263] = { - [sym_block_comment] = STATE(252), - [sym__text_content] = STATE(252), - [sym_curly_group] = STATE(252), - [sym_text] = STATE(252), - [sym_operator] = STATE(1473), - [sym_displayed_equation] = STATE(252), - [sym_inline_formula] = STATE(252), - [sym_math_set] = STATE(252), - [sym__command] = STATE(252), - [sym_generic_command] = STATE(252), - [sym_package_include] = STATE(252), - [sym_class_include] = STATE(252), - [sym_latex_include] = STATE(252), - [sym_biblatex_include] = STATE(252), - [sym_bibtex_include] = STATE(252), - [sym_graphics_include] = STATE(252), - [sym_svg_include] = STATE(252), - [sym_inkscape_include] = STATE(252), - [sym_verbatim_include] = STATE(252), - [sym_import_include] = STATE(252), - [sym_caption] = STATE(252), - [sym_citation] = STATE(252), - [sym_label_definition] = STATE(252), - [sym_label_reference] = STATE(252), - [sym_label_reference_range] = STATE(252), - [sym_label_number] = STATE(252), - [sym_new_command_definition] = STATE(252), - [sym_old_command_definition] = STATE(252), - [sym_let_command_definition] = STATE(252), - [sym_environment_definition] = STATE(252), - [sym_glossary_entry_definition] = STATE(252), - [sym_glossary_entry_reference] = STATE(252), - [sym_acronym_definition] = STATE(252), - [sym_acronym_reference] = STATE(252), - [sym_theorem_definition] = STATE(252), - [sym_color_definition] = STATE(252), - [sym_color_set_definition] = STATE(252), - [sym_color_reference] = STATE(252), - [sym_tikz_library_import] = STATE(252), - [aux_sym_curly_group_impl_repeat1] = STATE(252), + [sym_block_comment] = STATE(262), + [sym__text_content] = STATE(262), + [sym_curly_group] = STATE(262), + [sym_text] = STATE(262), + [sym_operator] = STATE(1480), + [sym_displayed_equation] = STATE(262), + [sym_inline_formula] = STATE(262), + [sym_math_set] = STATE(262), + [sym__command] = STATE(262), + [sym_generic_command] = STATE(262), + [sym_package_include] = STATE(262), + [sym_class_include] = STATE(262), + [sym_latex_include] = STATE(262), + [sym_biblatex_include] = STATE(262), + [sym_bibtex_include] = STATE(262), + [sym_graphics_include] = STATE(262), + [sym_svg_include] = STATE(262), + [sym_inkscape_include] = STATE(262), + [sym_verbatim_include] = STATE(262), + [sym_import_include] = STATE(262), + [sym_caption] = STATE(262), + [sym_citation] = STATE(262), + [sym_label_definition] = STATE(262), + [sym_label_reference] = STATE(262), + [sym_label_reference_range] = STATE(262), + [sym_label_number] = STATE(262), + [sym_new_command_definition] = STATE(262), + [sym_old_command_definition] = STATE(262), + [sym_let_command_definition] = STATE(262), + [sym_environment_definition] = STATE(262), + [sym_glossary_entry_definition] = STATE(262), + [sym_glossary_entry_reference] = STATE(262), + [sym_acronym_definition] = STATE(262), + [sym_acronym_reference] = STATE(262), + [sym_theorem_definition] = STATE(262), + [sym_color_definition] = STATE(262), + [sym_color_set_definition] = STATE(262), + [sym_color_reference] = STATE(262), + [sym_tikz_library_import] = STATE(262), + [sym_text_mode] = STATE(262), + [aux_sym_curly_group_impl_repeat1] = STATE(262), [aux_sym_text_repeat1] = STATE(267), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4073), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3908), - [anon_sym_BSLASH_LBRACK] = ACTIONS(3908), - [anon_sym_DOLLAR] = ACTIONS(3910), - [anon_sym_BSLASH_LPAREN] = ACTIONS(3912), - [anon_sym_BSLASH_LBRACE] = ACTIONS(3677), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(4129), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(3961), + [anon_sym_DOLLAR] = ACTIONS(3963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(3965), + [anon_sym_BSLASH_LBRACE] = ACTIONS(3725), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(3793), + [anon_sym_BSLASHintertext] = ACTIONS(3793), + [anon_sym_shortintertext] = ACTIONS(3793), }, [264] = { - [sym_block_comment] = STATE(1392), - [sym_operator] = STATE(1392), - [sym__command] = STATE(1392), - [sym_generic_command] = STATE(1392), - [sym_package_include] = STATE(1392), - [sym_class_include] = STATE(1392), - [sym_latex_include] = STATE(1392), - [sym_biblatex_include] = STATE(1392), - [sym_bibtex_include] = STATE(1392), - [sym_graphics_include] = STATE(1392), - [sym_svg_include] = STATE(1392), - [sym_inkscape_include] = STATE(1392), - [sym_verbatim_include] = STATE(1392), - [sym_import_include] = STATE(1392), - [sym_caption] = STATE(1392), - [sym_citation] = STATE(1392), - [sym_label_definition] = STATE(1392), - [sym_label_reference] = STATE(1392), - [sym_label_reference_range] = STATE(1392), - [sym_label_number] = STATE(1392), - [sym_new_command_definition] = STATE(1392), - [sym_old_command_definition] = STATE(1392), - [sym_let_command_definition] = STATE(1392), - [sym_environment_definition] = STATE(1392), - [sym_glossary_entry_definition] = STATE(1392), - [sym_glossary_entry_reference] = STATE(1392), - [sym_acronym_definition] = STATE(1392), - [sym_acronym_reference] = STATE(1392), - [sym_theorem_definition] = STATE(1392), - [sym_color_definition] = STATE(1392), - [sym_color_set_definition] = STATE(1392), - [sym_color_reference] = STATE(1392), - [sym_tikz_library_import] = STATE(1392), - [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(4075), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4078), - [anon_sym_LPAREN] = ACTIONS(2639), - [anon_sym_RPAREN] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_RBRACK] = ACTIONS(2639), - [anon_sym_COMMA] = ACTIONS(2639), - [anon_sym_EQ] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2639), - [sym_word] = ACTIONS(4081), - [sym_placeholder] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4087), - [anon_sym_DASH] = ACTIONS(4087), - [anon_sym_STAR] = ACTIONS(4087), - [anon_sym_SLASH] = ACTIONS(4087), - [anon_sym_CARET] = ACTIONS(4087), - [anon_sym__] = ACTIONS(4087), - [anon_sym_LT] = ACTIONS(4087), - [anon_sym_GT] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4087), - [anon_sym_PIPE] = ACTIONS(4087), - [anon_sym_COLON] = ACTIONS(4087), - [anon_sym_SQUOTE] = ACTIONS(4087), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2639), - [anon_sym_BSLASHbegin] = ACTIONS(2647), - [anon_sym_BSLASHusepackage] = ACTIONS(4090), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4090), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4093), - [anon_sym_BSLASHinclude] = ACTIONS(4096), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4096), - [anon_sym_BSLASHinput] = ACTIONS(4096), - [anon_sym_BSLASHsubfile] = ACTIONS(4096), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4099), - [anon_sym_BSLASHbibliography] = ACTIONS(4102), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4105), - [anon_sym_BSLASHincludesvg] = ACTIONS(4108), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4111), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4114), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4114), - [anon_sym_BSLASHimport] = ACTIONS(4117), - [anon_sym_BSLASHsubimport] = ACTIONS(4117), - [anon_sym_BSLASHinputfrom] = ACTIONS(4117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4117), - [anon_sym_BSLASHincludefrom] = ACTIONS(4117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4117), - [anon_sym_BSLASHcaption] = ACTIONS(4120), - [anon_sym_BSLASHcite] = ACTIONS(4123), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4126), - [anon_sym_BSLASHCite] = ACTIONS(4123), - [anon_sym_BSLASHnocite] = ACTIONS(4123), - [anon_sym_BSLASHcitet] = ACTIONS(4123), - [anon_sym_BSLASHcitep] = ACTIONS(4123), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4126), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4126), - [anon_sym_BSLASHciteauthor] = ACTIONS(4123), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4126), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4123), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4126), - [anon_sym_BSLASHcitetitle] = ACTIONS(4123), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4126), - [anon_sym_BSLASHciteyear] = ACTIONS(4123), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4126), - [anon_sym_BSLASHcitedate] = ACTIONS(4123), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4126), - [anon_sym_BSLASHciteurl] = ACTIONS(4123), - [anon_sym_BSLASHfullcite] = ACTIONS(4123), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4123), - [anon_sym_BSLASHcitealt] = ACTIONS(4123), - [anon_sym_BSLASHcitealp] = ACTIONS(4123), - [anon_sym_BSLASHcitetext] = ACTIONS(4123), - [anon_sym_BSLASHparencite] = ACTIONS(4123), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4126), - [anon_sym_BSLASHParencite] = ACTIONS(4123), - [anon_sym_BSLASHfootcite] = ACTIONS(4123), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4123), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4123), - [anon_sym_BSLASHtextcite] = ACTIONS(4123), - [anon_sym_BSLASHTextcite] = ACTIONS(4123), - [anon_sym_BSLASHsmartcite] = ACTIONS(4123), - [anon_sym_BSLASHSmartcite] = ACTIONS(4123), - [anon_sym_BSLASHsupercite] = ACTIONS(4123), - [anon_sym_BSLASHautocite] = ACTIONS(4123), - [anon_sym_BSLASHAutocite] = ACTIONS(4123), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4126), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4126), - [anon_sym_BSLASHvolcite] = ACTIONS(4123), - [anon_sym_BSLASHVolcite] = ACTIONS(4123), - [anon_sym_BSLASHpvolcite] = ACTIONS(4123), - [anon_sym_BSLASHPvolcite] = ACTIONS(4123), - [anon_sym_BSLASHfvolcite] = ACTIONS(4123), - [anon_sym_BSLASHftvolcite] = ACTIONS(4123), - [anon_sym_BSLASHsvolcite] = ACTIONS(4123), - [anon_sym_BSLASHSvolcite] = ACTIONS(4123), - [anon_sym_BSLASHtvolcite] = ACTIONS(4123), - [anon_sym_BSLASHTvolcite] = ACTIONS(4123), - [anon_sym_BSLASHavolcite] = ACTIONS(4123), - [anon_sym_BSLASHAvolcite] = ACTIONS(4123), - [anon_sym_BSLASHnotecite] = ACTIONS(4123), - [anon_sym_BSLASHNotecite] = ACTIONS(4123), - [anon_sym_BSLASHpnotecite] = ACTIONS(4123), - [anon_sym_BSLASHPnotecite] = ACTIONS(4123), - [anon_sym_BSLASHfnotecite] = ACTIONS(4123), - [anon_sym_BSLASHlabel] = ACTIONS(4129), - [anon_sym_BSLASHref] = ACTIONS(4132), - [anon_sym_BSLASHeqref] = ACTIONS(4132), - [anon_sym_BSLASHvref] = ACTIONS(4132), - [anon_sym_BSLASHVref] = ACTIONS(4132), - [anon_sym_BSLASHautoref] = ACTIONS(4132), - [anon_sym_BSLASHpageref] = ACTIONS(4132), - [anon_sym_BSLASHcref] = ACTIONS(4132), - [anon_sym_BSLASHCref] = ACTIONS(4132), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4135), - [anon_sym_BSLASHnamecref] = ACTIONS(4132), - [anon_sym_BSLASHnameCref] = ACTIONS(4132), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4132), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4132), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4132), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4132), - [anon_sym_BSLASHlabelcref] = ACTIONS(4132), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4132), - [anon_sym_BSLASHcrefrange] = ACTIONS(4138), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4141), - [anon_sym_BSLASHCrefrange] = ACTIONS(4138), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4141), - [anon_sym_BSLASHnewlabel] = ACTIONS(4144), - [anon_sym_BSLASHnewcommand] = ACTIONS(4147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4150), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4150), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4150), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4150), - [anon_sym_BSLASHdef] = ACTIONS(4153), - [anon_sym_BSLASHlet] = ACTIONS(4156), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4162), - [anon_sym_BSLASHgls] = ACTIONS(4165), - [anon_sym_BSLASHGls] = ACTIONS(4165), - [anon_sym_BSLASHGLS] = ACTIONS(4165), - [anon_sym_BSLASHglspl] = ACTIONS(4165), - [anon_sym_BSLASHGlspl] = ACTIONS(4165), - [anon_sym_BSLASHGLSpl] = ACTIONS(4165), - [anon_sym_BSLASHglsdisp] = ACTIONS(4165), - [anon_sym_BSLASHglslink] = ACTIONS(4165), - [anon_sym_BSLASHglstext] = ACTIONS(4165), - [anon_sym_BSLASHGlstext] = ACTIONS(4165), - [anon_sym_BSLASHGLStext] = ACTIONS(4165), - [anon_sym_BSLASHglsfirst] = ACTIONS(4165), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4165), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4165), - [anon_sym_BSLASHglsplural] = ACTIONS(4165), - [anon_sym_BSLASHGlsplural] = ACTIONS(4165), - [anon_sym_BSLASHGLSplural] = ACTIONS(4165), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4165), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4165), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4165), - [anon_sym_BSLASHglsname] = ACTIONS(4165), - [anon_sym_BSLASHGlsname] = ACTIONS(4165), - [anon_sym_BSLASHGLSname] = ACTIONS(4165), - [anon_sym_BSLASHglssymbol] = ACTIONS(4165), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4165), - [anon_sym_BSLASHglsdesc] = ACTIONS(4165), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4165), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4165), - [anon_sym_BSLASHglsuseri] = ACTIONS(4165), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4165), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4165), - [anon_sym_BSLASHglsuserii] = ACTIONS(4165), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4165), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4165), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4165), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4165), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4165), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4165), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4165), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4165), - [anon_sym_BSLASHglsuserv] = ACTIONS(4165), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4165), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4165), - [anon_sym_BSLASHglsuservi] = ACTIONS(4165), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4165), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4165), - [anon_sym_BSLASHnewacronym] = ACTIONS(4168), - [anon_sym_BSLASHacrshort] = ACTIONS(4171), - [anon_sym_BSLASHAcrshort] = ACTIONS(4171), - [anon_sym_BSLASHACRshort] = ACTIONS(4171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4171), - [anon_sym_BSLASHacrlong] = ACTIONS(4171), - [anon_sym_BSLASHAcrlong] = ACTIONS(4171), - [anon_sym_BSLASHACRlong] = ACTIONS(4171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4171), - [anon_sym_BSLASHacrfull] = ACTIONS(4171), - [anon_sym_BSLASHAcrfull] = ACTIONS(4171), - [anon_sym_BSLASHACRfull] = ACTIONS(4171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4171), - [anon_sym_BSLASHacs] = ACTIONS(4171), - [anon_sym_BSLASHAcs] = ACTIONS(4171), - [anon_sym_BSLASHacsp] = ACTIONS(4171), - [anon_sym_BSLASHAcsp] = ACTIONS(4171), - [anon_sym_BSLASHacl] = ACTIONS(4171), - [anon_sym_BSLASHAcl] = ACTIONS(4171), - [anon_sym_BSLASHaclp] = ACTIONS(4171), - [anon_sym_BSLASHAclp] = ACTIONS(4171), - [anon_sym_BSLASHacf] = ACTIONS(4171), - [anon_sym_BSLASHAcf] = ACTIONS(4171), - [anon_sym_BSLASHacfp] = ACTIONS(4171), - [anon_sym_BSLASHAcfp] = ACTIONS(4171), - [anon_sym_BSLASHac] = ACTIONS(4171), - [anon_sym_BSLASHAc] = ACTIONS(4171), - [anon_sym_BSLASHacp] = ACTIONS(4171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4174), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4174), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4177), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4180), - [anon_sym_BSLASHcolor] = ACTIONS(4183), - [anon_sym_BSLASHcolorbox] = ACTIONS(4183), - [anon_sym_BSLASHtextcolor] = ACTIONS(4183), - [anon_sym_BSLASHpagecolor] = ACTIONS(4183), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4186), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4186), + [sym_block_comment] = STATE(1396), + [sym_operator] = STATE(1396), + [sym__command] = STATE(1396), + [sym_generic_command] = STATE(1396), + [sym_package_include] = STATE(1396), + [sym_class_include] = STATE(1396), + [sym_latex_include] = STATE(1396), + [sym_biblatex_include] = STATE(1396), + [sym_bibtex_include] = STATE(1396), + [sym_graphics_include] = STATE(1396), + [sym_svg_include] = STATE(1396), + [sym_inkscape_include] = STATE(1396), + [sym_verbatim_include] = STATE(1396), + [sym_import_include] = STATE(1396), + [sym_caption] = STATE(1396), + [sym_citation] = STATE(1396), + [sym_label_definition] = STATE(1396), + [sym_label_reference] = STATE(1396), + [sym_label_reference_range] = STATE(1396), + [sym_label_number] = STATE(1396), + [sym_new_command_definition] = STATE(1396), + [sym_old_command_definition] = STATE(1396), + [sym_let_command_definition] = STATE(1396), + [sym_environment_definition] = STATE(1396), + [sym_glossary_entry_definition] = STATE(1396), + [sym_glossary_entry_reference] = STATE(1396), + [sym_acronym_definition] = STATE(1396), + [sym_acronym_reference] = STATE(1396), + [sym_theorem_definition] = STATE(1396), + [sym_color_definition] = STATE(1396), + [sym_color_set_definition] = STATE(1396), + [sym_color_reference] = STATE(1396), + [sym_tikz_library_import] = STATE(1396), + [aux_sym_text_repeat1] = STATE(265), + [sym_command_name] = ACTIONS(3253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_RBRACK] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [sym_word] = ACTIONS(3265), + [sym_placeholder] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym__] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), + [anon_sym_DOLLAR] = ACTIONS(2677), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), + [anon_sym_BSLASHbegin] = ACTIONS(2677), + [anon_sym_BSLASHusepackage] = ACTIONS(3279), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3279), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3281), + [anon_sym_BSLASHinclude] = ACTIONS(3283), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3283), + [anon_sym_BSLASHinput] = ACTIONS(3283), + [anon_sym_BSLASHsubfile] = ACTIONS(3283), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3285), + [anon_sym_BSLASHbibliography] = ACTIONS(3287), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3289), + [anon_sym_BSLASHincludesvg] = ACTIONS(3291), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3295), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3295), + [anon_sym_BSLASHimport] = ACTIONS(3297), + [anon_sym_BSLASHsubimport] = ACTIONS(3297), + [anon_sym_BSLASHinputfrom] = ACTIONS(3297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3297), + [anon_sym_BSLASHincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3297), + [anon_sym_BSLASHcaption] = ACTIONS(3299), + [anon_sym_BSLASHcite] = ACTIONS(3301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCite] = ACTIONS(3301), + [anon_sym_BSLASHnocite] = ACTIONS(3301), + [anon_sym_BSLASHcitet] = ACTIONS(3301), + [anon_sym_BSLASHcitep] = ACTIONS(3301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteauthor] = ACTIONS(3301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitetitle] = ACTIONS(3301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteyear] = ACTIONS(3301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3303), + [anon_sym_BSLASHcitedate] = ACTIONS(3301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3303), + [anon_sym_BSLASHciteurl] = ACTIONS(3301), + [anon_sym_BSLASHfullcite] = ACTIONS(3301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3301), + [anon_sym_BSLASHcitealt] = ACTIONS(3301), + [anon_sym_BSLASHcitealp] = ACTIONS(3301), + [anon_sym_BSLASHcitetext] = ACTIONS(3301), + [anon_sym_BSLASHparencite] = ACTIONS(3301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHParencite] = ACTIONS(3301), + [anon_sym_BSLASHfootcite] = ACTIONS(3301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3301), + [anon_sym_BSLASHtextcite] = ACTIONS(3301), + [anon_sym_BSLASHTextcite] = ACTIONS(3301), + [anon_sym_BSLASHsmartcite] = ACTIONS(3301), + [anon_sym_BSLASHSmartcite] = ACTIONS(3301), + [anon_sym_BSLASHsupercite] = ACTIONS(3301), + [anon_sym_BSLASHautocite] = ACTIONS(3301), + [anon_sym_BSLASHAutocite] = ACTIONS(3301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3303), + [anon_sym_BSLASHvolcite] = ACTIONS(3301), + [anon_sym_BSLASHVolcite] = ACTIONS(3301), + [anon_sym_BSLASHpvolcite] = ACTIONS(3301), + [anon_sym_BSLASHPvolcite] = ACTIONS(3301), + [anon_sym_BSLASHfvolcite] = ACTIONS(3301), + [anon_sym_BSLASHftvolcite] = ACTIONS(3301), + [anon_sym_BSLASHsvolcite] = ACTIONS(3301), + [anon_sym_BSLASHSvolcite] = ACTIONS(3301), + [anon_sym_BSLASHtvolcite] = ACTIONS(3301), + [anon_sym_BSLASHTvolcite] = ACTIONS(3301), + [anon_sym_BSLASHavolcite] = ACTIONS(3301), + [anon_sym_BSLASHAvolcite] = ACTIONS(3301), + [anon_sym_BSLASHnotecite] = ACTIONS(3301), + [anon_sym_BSLASHNotecite] = ACTIONS(3301), + [anon_sym_BSLASHpnotecite] = ACTIONS(3301), + [anon_sym_BSLASHPnotecite] = ACTIONS(3301), + [anon_sym_BSLASHfnotecite] = ACTIONS(3301), + [anon_sym_BSLASHlabel] = ACTIONS(3305), + [anon_sym_BSLASHref] = ACTIONS(3307), + [anon_sym_BSLASHeqref] = ACTIONS(3307), + [anon_sym_BSLASHvref] = ACTIONS(3307), + [anon_sym_BSLASHVref] = ACTIONS(3307), + [anon_sym_BSLASHautoref] = ACTIONS(3307), + [anon_sym_BSLASHpageref] = ACTIONS(3307), + [anon_sym_BSLASHcref] = ACTIONS(3307), + [anon_sym_BSLASHCref] = ACTIONS(3307), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3309), + [anon_sym_BSLASHnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnameCref] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3307), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3307), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3307), + [anon_sym_BSLASHlabelcref] = ACTIONS(3307), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3307), + [anon_sym_BSLASHcrefrange] = ACTIONS(3311), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHCrefrange] = ACTIONS(3311), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3313), + [anon_sym_BSLASHnewlabel] = ACTIONS(3315), + [anon_sym_BSLASHnewcommand] = ACTIONS(3317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3319), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3319), + [anon_sym_BSLASHdef] = ACTIONS(3321), + [anon_sym_BSLASHlet] = ACTIONS(3323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3325), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3327), + [anon_sym_BSLASHgls] = ACTIONS(3329), + [anon_sym_BSLASHGls] = ACTIONS(3329), + [anon_sym_BSLASHGLS] = ACTIONS(3329), + [anon_sym_BSLASHglspl] = ACTIONS(3329), + [anon_sym_BSLASHGlspl] = ACTIONS(3329), + [anon_sym_BSLASHGLSpl] = ACTIONS(3329), + [anon_sym_BSLASHglsdisp] = ACTIONS(3329), + [anon_sym_BSLASHglslink] = ACTIONS(3329), + [anon_sym_BSLASHglstext] = ACTIONS(3329), + [anon_sym_BSLASHGlstext] = ACTIONS(3329), + [anon_sym_BSLASHGLStext] = ACTIONS(3329), + [anon_sym_BSLASHglsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3329), + [anon_sym_BSLASHglsplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSplural] = ACTIONS(3329), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3329), + [anon_sym_BSLASHglsname] = ACTIONS(3329), + [anon_sym_BSLASHGlsname] = ACTIONS(3329), + [anon_sym_BSLASHGLSname] = ACTIONS(3329), + [anon_sym_BSLASHglssymbol] = ACTIONS(3329), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3329), + [anon_sym_BSLASHglsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3329), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3329), + [anon_sym_BSLASHglsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3329), + [anon_sym_BSLASHglsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3329), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3329), + [anon_sym_BSLASHglsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3329), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3329), + [anon_sym_BSLASHglsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3329), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3329), + [anon_sym_BSLASHnewacronym] = ACTIONS(3331), + [anon_sym_BSLASHacrshort] = ACTIONS(3333), + [anon_sym_BSLASHAcrshort] = ACTIONS(3333), + [anon_sym_BSLASHACRshort] = ACTIONS(3333), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3333), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3333), + [anon_sym_BSLASHacrlong] = ACTIONS(3333), + [anon_sym_BSLASHAcrlong] = ACTIONS(3333), + [anon_sym_BSLASHACRlong] = ACTIONS(3333), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3333), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3333), + [anon_sym_BSLASHacrfull] = ACTIONS(3333), + [anon_sym_BSLASHAcrfull] = ACTIONS(3333), + [anon_sym_BSLASHACRfull] = ACTIONS(3333), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3333), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3333), + [anon_sym_BSLASHacs] = ACTIONS(3333), + [anon_sym_BSLASHAcs] = ACTIONS(3333), + [anon_sym_BSLASHacsp] = ACTIONS(3333), + [anon_sym_BSLASHAcsp] = ACTIONS(3333), + [anon_sym_BSLASHacl] = ACTIONS(3333), + [anon_sym_BSLASHAcl] = ACTIONS(3333), + [anon_sym_BSLASHaclp] = ACTIONS(3333), + [anon_sym_BSLASHAclp] = ACTIONS(3333), + [anon_sym_BSLASHacf] = ACTIONS(3333), + [anon_sym_BSLASHAcf] = ACTIONS(3333), + [anon_sym_BSLASHacfp] = ACTIONS(3333), + [anon_sym_BSLASHAcfp] = ACTIONS(3333), + [anon_sym_BSLASHac] = ACTIONS(3333), + [anon_sym_BSLASHAc] = ACTIONS(3333), + [anon_sym_BSLASHacp] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3333), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3333), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3333), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3333), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3335), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3335), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3337), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3339), + [anon_sym_BSLASHcolor] = ACTIONS(3341), + [anon_sym_BSLASHcolorbox] = ACTIONS(3341), + [anon_sym_BSLASHtextcolor] = ACTIONS(3341), + [anon_sym_BSLASHpagecolor] = ACTIONS(3341), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3343), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3343), + [anon_sym_BSLASHtext] = ACTIONS(2677), + [anon_sym_BSLASHintertext] = ACTIONS(2677), + [anon_sym_shortintertext] = ACTIONS(2677), }, [265] = { - [sym_block_comment] = STATE(1392), - [sym_operator] = STATE(1392), - [sym__command] = STATE(1392), - [sym_generic_command] = STATE(1392), - [sym_package_include] = STATE(1392), - [sym_class_include] = STATE(1392), - [sym_latex_include] = STATE(1392), - [sym_biblatex_include] = STATE(1392), - [sym_bibtex_include] = STATE(1392), - [sym_graphics_include] = STATE(1392), - [sym_svg_include] = STATE(1392), - [sym_inkscape_include] = STATE(1392), - [sym_verbatim_include] = STATE(1392), - [sym_import_include] = STATE(1392), - [sym_caption] = STATE(1392), - [sym_citation] = STATE(1392), - [sym_label_definition] = STATE(1392), - [sym_label_reference] = STATE(1392), - [sym_label_reference_range] = STATE(1392), - [sym_label_number] = STATE(1392), - [sym_new_command_definition] = STATE(1392), - [sym_old_command_definition] = STATE(1392), - [sym_let_command_definition] = STATE(1392), - [sym_environment_definition] = STATE(1392), - [sym_glossary_entry_definition] = STATE(1392), - [sym_glossary_entry_reference] = STATE(1392), - [sym_acronym_definition] = STATE(1392), - [sym_acronym_reference] = STATE(1392), - [sym_theorem_definition] = STATE(1392), - [sym_color_definition] = STATE(1392), - [sym_color_set_definition] = STATE(1392), - [sym_color_reference] = STATE(1392), - [sym_tikz_library_import] = STATE(1392), - [aux_sym_text_repeat1] = STATE(264), - [sym_command_name] = ACTIONS(3213), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_RBRACK] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_EQ] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [sym_word] = ACTIONS(3225), - [sym_placeholder] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym__] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_GT] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2635), - [anon_sym_DOLLAR] = ACTIONS(2637), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2635), - [anon_sym_BSLASHbegin] = ACTIONS(2637), - [anon_sym_BSLASHusepackage] = ACTIONS(3239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3241), - [anon_sym_BSLASHinclude] = ACTIONS(3243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3243), - [anon_sym_BSLASHinput] = ACTIONS(3243), - [anon_sym_BSLASHsubfile] = ACTIONS(3243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3245), - [anon_sym_BSLASHbibliography] = ACTIONS(3247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3249), - [anon_sym_BSLASHincludesvg] = ACTIONS(3251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3253), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3255), - [anon_sym_BSLASHimport] = ACTIONS(3257), - [anon_sym_BSLASHsubimport] = ACTIONS(3257), - [anon_sym_BSLASHinputfrom] = ACTIONS(3257), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3257), - [anon_sym_BSLASHincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3257), - [anon_sym_BSLASHcaption] = ACTIONS(3259), - [anon_sym_BSLASHcite] = ACTIONS(3261), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCite] = ACTIONS(3261), - [anon_sym_BSLASHnocite] = ACTIONS(3261), - [anon_sym_BSLASHcitet] = ACTIONS(3261), - [anon_sym_BSLASHcitep] = ACTIONS(3261), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteauthor] = ACTIONS(3261), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3261), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitetitle] = ACTIONS(3261), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteyear] = ACTIONS(3261), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3263), - [anon_sym_BSLASHcitedate] = ACTIONS(3261), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3263), - [anon_sym_BSLASHciteurl] = ACTIONS(3261), - [anon_sym_BSLASHfullcite] = ACTIONS(3261), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3261), - [anon_sym_BSLASHcitealt] = ACTIONS(3261), - [anon_sym_BSLASHcitealp] = ACTIONS(3261), - [anon_sym_BSLASHcitetext] = ACTIONS(3261), - [anon_sym_BSLASHparencite] = ACTIONS(3261), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHParencite] = ACTIONS(3261), - [anon_sym_BSLASHfootcite] = ACTIONS(3261), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3261), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3261), - [anon_sym_BSLASHtextcite] = ACTIONS(3261), - [anon_sym_BSLASHTextcite] = ACTIONS(3261), - [anon_sym_BSLASHsmartcite] = ACTIONS(3261), - [anon_sym_BSLASHSmartcite] = ACTIONS(3261), - [anon_sym_BSLASHsupercite] = ACTIONS(3261), - [anon_sym_BSLASHautocite] = ACTIONS(3261), - [anon_sym_BSLASHAutocite] = ACTIONS(3261), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3263), - [anon_sym_BSLASHvolcite] = ACTIONS(3261), - [anon_sym_BSLASHVolcite] = ACTIONS(3261), - [anon_sym_BSLASHpvolcite] = ACTIONS(3261), - [anon_sym_BSLASHPvolcite] = ACTIONS(3261), - [anon_sym_BSLASHfvolcite] = ACTIONS(3261), - [anon_sym_BSLASHftvolcite] = ACTIONS(3261), - [anon_sym_BSLASHsvolcite] = ACTIONS(3261), - [anon_sym_BSLASHSvolcite] = ACTIONS(3261), - [anon_sym_BSLASHtvolcite] = ACTIONS(3261), - [anon_sym_BSLASHTvolcite] = ACTIONS(3261), - [anon_sym_BSLASHavolcite] = ACTIONS(3261), - [anon_sym_BSLASHAvolcite] = ACTIONS(3261), - [anon_sym_BSLASHnotecite] = ACTIONS(3261), - [anon_sym_BSLASHNotecite] = ACTIONS(3261), - [anon_sym_BSLASHpnotecite] = ACTIONS(3261), - [anon_sym_BSLASHPnotecite] = ACTIONS(3261), - [anon_sym_BSLASHfnotecite] = ACTIONS(3261), - [anon_sym_BSLASHlabel] = ACTIONS(3265), - [anon_sym_BSLASHref] = ACTIONS(3267), - [anon_sym_BSLASHeqref] = ACTIONS(3267), - [anon_sym_BSLASHvref] = ACTIONS(3267), - [anon_sym_BSLASHVref] = ACTIONS(3267), - [anon_sym_BSLASHautoref] = ACTIONS(3267), - [anon_sym_BSLASHpageref] = ACTIONS(3267), - [anon_sym_BSLASHcref] = ACTIONS(3267), - [anon_sym_BSLASHCref] = ACTIONS(3267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3269), - [anon_sym_BSLASHnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnameCref] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3267), - [anon_sym_BSLASHlabelcref] = ACTIONS(3267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3267), - [anon_sym_BSLASHcrefrange] = ACTIONS(3271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHCrefrange] = ACTIONS(3271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3273), - [anon_sym_BSLASHnewlabel] = ACTIONS(3275), - [anon_sym_BSLASHnewcommand] = ACTIONS(3277), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3277), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3277), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3279), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3277), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3279), - [anon_sym_BSLASHdef] = ACTIONS(3281), - [anon_sym_BSLASHlet] = ACTIONS(3283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3285), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3287), - [anon_sym_BSLASHgls] = ACTIONS(3289), - [anon_sym_BSLASHGls] = ACTIONS(3289), - [anon_sym_BSLASHGLS] = ACTIONS(3289), - [anon_sym_BSLASHglspl] = ACTIONS(3289), - [anon_sym_BSLASHGlspl] = ACTIONS(3289), - [anon_sym_BSLASHGLSpl] = ACTIONS(3289), - [anon_sym_BSLASHglsdisp] = ACTIONS(3289), - [anon_sym_BSLASHglslink] = ACTIONS(3289), - [anon_sym_BSLASHglstext] = ACTIONS(3289), - [anon_sym_BSLASHGlstext] = ACTIONS(3289), - [anon_sym_BSLASHGLStext] = ACTIONS(3289), - [anon_sym_BSLASHglsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3289), - [anon_sym_BSLASHglsplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSplural] = ACTIONS(3289), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3289), - [anon_sym_BSLASHglsname] = ACTIONS(3289), - [anon_sym_BSLASHGlsname] = ACTIONS(3289), - [anon_sym_BSLASHGLSname] = ACTIONS(3289), - [anon_sym_BSLASHglssymbol] = ACTIONS(3289), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3289), - [anon_sym_BSLASHglsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3289), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3289), - [anon_sym_BSLASHglsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3289), - [anon_sym_BSLASHglsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3289), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3289), - [anon_sym_BSLASHglsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3289), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3289), - [anon_sym_BSLASHglsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3289), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3289), - [anon_sym_BSLASHnewacronym] = ACTIONS(3291), - [anon_sym_BSLASHacrshort] = ACTIONS(3293), - [anon_sym_BSLASHAcrshort] = ACTIONS(3293), - [anon_sym_BSLASHACRshort] = ACTIONS(3293), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3293), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3293), - [anon_sym_BSLASHacrlong] = ACTIONS(3293), - [anon_sym_BSLASHAcrlong] = ACTIONS(3293), - [anon_sym_BSLASHACRlong] = ACTIONS(3293), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3293), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3293), - [anon_sym_BSLASHacrfull] = ACTIONS(3293), - [anon_sym_BSLASHAcrfull] = ACTIONS(3293), - [anon_sym_BSLASHACRfull] = ACTIONS(3293), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3293), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3293), - [anon_sym_BSLASHacs] = ACTIONS(3293), - [anon_sym_BSLASHAcs] = ACTIONS(3293), - [anon_sym_BSLASHacsp] = ACTIONS(3293), - [anon_sym_BSLASHAcsp] = ACTIONS(3293), - [anon_sym_BSLASHacl] = ACTIONS(3293), - [anon_sym_BSLASHAcl] = ACTIONS(3293), - [anon_sym_BSLASHaclp] = ACTIONS(3293), - [anon_sym_BSLASHAclp] = ACTIONS(3293), - [anon_sym_BSLASHacf] = ACTIONS(3293), - [anon_sym_BSLASHAcf] = ACTIONS(3293), - [anon_sym_BSLASHacfp] = ACTIONS(3293), - [anon_sym_BSLASHAcfp] = ACTIONS(3293), - [anon_sym_BSLASHac] = ACTIONS(3293), - [anon_sym_BSLASHAc] = ACTIONS(3293), - [anon_sym_BSLASHacp] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3293), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3293), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3293), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3293), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3297), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3299), - [anon_sym_BSLASHcolor] = ACTIONS(3301), - [anon_sym_BSLASHcolorbox] = ACTIONS(3301), - [anon_sym_BSLASHtextcolor] = ACTIONS(3301), - [anon_sym_BSLASHpagecolor] = ACTIONS(3301), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3303), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3303), + [sym_block_comment] = STATE(1396), + [sym_operator] = STATE(1396), + [sym__command] = STATE(1396), + [sym_generic_command] = STATE(1396), + [sym_package_include] = STATE(1396), + [sym_class_include] = STATE(1396), + [sym_latex_include] = STATE(1396), + [sym_biblatex_include] = STATE(1396), + [sym_bibtex_include] = STATE(1396), + [sym_graphics_include] = STATE(1396), + [sym_svg_include] = STATE(1396), + [sym_inkscape_include] = STATE(1396), + [sym_verbatim_include] = STATE(1396), + [sym_import_include] = STATE(1396), + [sym_caption] = STATE(1396), + [sym_citation] = STATE(1396), + [sym_label_definition] = STATE(1396), + [sym_label_reference] = STATE(1396), + [sym_label_reference_range] = STATE(1396), + [sym_label_number] = STATE(1396), + [sym_new_command_definition] = STATE(1396), + [sym_old_command_definition] = STATE(1396), + [sym_let_command_definition] = STATE(1396), + [sym_environment_definition] = STATE(1396), + [sym_glossary_entry_definition] = STATE(1396), + [sym_glossary_entry_reference] = STATE(1396), + [sym_acronym_definition] = STATE(1396), + [sym_acronym_reference] = STATE(1396), + [sym_theorem_definition] = STATE(1396), + [sym_color_definition] = STATE(1396), + [sym_color_set_definition] = STATE(1396), + [sym_color_reference] = STATE(1396), + [sym_tikz_library_import] = STATE(1396), + [aux_sym_text_repeat1] = STATE(265), + [sym_command_name] = ACTIONS(4131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4134), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [sym_word] = ACTIONS(4137), + [sym_placeholder] = ACTIONS(4140), + [anon_sym_PLUS] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(4143), + [anon_sym_SLASH] = ACTIONS(4143), + [anon_sym_CARET] = ACTIONS(4143), + [anon_sym__] = ACTIONS(4143), + [anon_sym_LT] = ACTIONS(4143), + [anon_sym_GT] = ACTIONS(4143), + [anon_sym_BANG] = ACTIONS(4143), + [anon_sym_PIPE] = ACTIONS(4143), + [anon_sym_COLON] = ACTIONS(4143), + [anon_sym_SQUOTE] = ACTIONS(4143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), + [anon_sym_BSLASHbegin] = ACTIONS(2687), + [anon_sym_BSLASHusepackage] = ACTIONS(4146), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4146), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4149), + [anon_sym_BSLASHinclude] = ACTIONS(4152), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4152), + [anon_sym_BSLASHinput] = ACTIONS(4152), + [anon_sym_BSLASHsubfile] = ACTIONS(4152), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4155), + [anon_sym_BSLASHbibliography] = ACTIONS(4158), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4161), + [anon_sym_BSLASHincludesvg] = ACTIONS(4164), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4167), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4170), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4170), + [anon_sym_BSLASHimport] = ACTIONS(4173), + [anon_sym_BSLASHsubimport] = ACTIONS(4173), + [anon_sym_BSLASHinputfrom] = ACTIONS(4173), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4173), + [anon_sym_BSLASHincludefrom] = ACTIONS(4173), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4173), + [anon_sym_BSLASHcaption] = ACTIONS(4176), + [anon_sym_BSLASHcite] = ACTIONS(4179), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4182), + [anon_sym_BSLASHCite] = ACTIONS(4179), + [anon_sym_BSLASHnocite] = ACTIONS(4179), + [anon_sym_BSLASHcitet] = ACTIONS(4179), + [anon_sym_BSLASHcitep] = ACTIONS(4179), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4182), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4182), + [anon_sym_BSLASHciteauthor] = ACTIONS(4179), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4182), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4179), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4182), + [anon_sym_BSLASHcitetitle] = ACTIONS(4179), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4182), + [anon_sym_BSLASHciteyear] = ACTIONS(4179), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4182), + [anon_sym_BSLASHcitedate] = ACTIONS(4179), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4182), + [anon_sym_BSLASHciteurl] = ACTIONS(4179), + [anon_sym_BSLASHfullcite] = ACTIONS(4179), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4179), + [anon_sym_BSLASHcitealt] = ACTIONS(4179), + [anon_sym_BSLASHcitealp] = ACTIONS(4179), + [anon_sym_BSLASHcitetext] = ACTIONS(4179), + [anon_sym_BSLASHparencite] = ACTIONS(4179), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4182), + [anon_sym_BSLASHParencite] = ACTIONS(4179), + [anon_sym_BSLASHfootcite] = ACTIONS(4179), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4179), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4179), + [anon_sym_BSLASHtextcite] = ACTIONS(4179), + [anon_sym_BSLASHTextcite] = ACTIONS(4179), + [anon_sym_BSLASHsmartcite] = ACTIONS(4179), + [anon_sym_BSLASHSmartcite] = ACTIONS(4179), + [anon_sym_BSLASHsupercite] = ACTIONS(4179), + [anon_sym_BSLASHautocite] = ACTIONS(4179), + [anon_sym_BSLASHAutocite] = ACTIONS(4179), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4182), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4182), + [anon_sym_BSLASHvolcite] = ACTIONS(4179), + [anon_sym_BSLASHVolcite] = ACTIONS(4179), + [anon_sym_BSLASHpvolcite] = ACTIONS(4179), + [anon_sym_BSLASHPvolcite] = ACTIONS(4179), + [anon_sym_BSLASHfvolcite] = ACTIONS(4179), + [anon_sym_BSLASHftvolcite] = ACTIONS(4179), + [anon_sym_BSLASHsvolcite] = ACTIONS(4179), + [anon_sym_BSLASHSvolcite] = ACTIONS(4179), + [anon_sym_BSLASHtvolcite] = ACTIONS(4179), + [anon_sym_BSLASHTvolcite] = ACTIONS(4179), + [anon_sym_BSLASHavolcite] = ACTIONS(4179), + [anon_sym_BSLASHAvolcite] = ACTIONS(4179), + [anon_sym_BSLASHnotecite] = ACTIONS(4179), + [anon_sym_BSLASHNotecite] = ACTIONS(4179), + [anon_sym_BSLASHpnotecite] = ACTIONS(4179), + [anon_sym_BSLASHPnotecite] = ACTIONS(4179), + [anon_sym_BSLASHfnotecite] = ACTIONS(4179), + [anon_sym_BSLASHlabel] = ACTIONS(4185), + [anon_sym_BSLASHref] = ACTIONS(4188), + [anon_sym_BSLASHeqref] = ACTIONS(4188), + [anon_sym_BSLASHvref] = ACTIONS(4188), + [anon_sym_BSLASHVref] = ACTIONS(4188), + [anon_sym_BSLASHautoref] = ACTIONS(4188), + [anon_sym_BSLASHpageref] = ACTIONS(4188), + [anon_sym_BSLASHcref] = ACTIONS(4188), + [anon_sym_BSLASHCref] = ACTIONS(4188), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4191), + [anon_sym_BSLASHnamecref] = ACTIONS(4188), + [anon_sym_BSLASHnameCref] = ACTIONS(4188), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4188), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4188), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4188), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4188), + [anon_sym_BSLASHlabelcref] = ACTIONS(4188), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4188), + [anon_sym_BSLASHcrefrange] = ACTIONS(4194), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4197), + [anon_sym_BSLASHCrefrange] = ACTIONS(4194), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4197), + [anon_sym_BSLASHnewlabel] = ACTIONS(4200), + [anon_sym_BSLASHnewcommand] = ACTIONS(4203), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4206), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4203), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4206), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4203), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4206), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4203), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4206), + [anon_sym_BSLASHdef] = ACTIONS(4209), + [anon_sym_BSLASHlet] = ACTIONS(4212), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4215), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4218), + [anon_sym_BSLASHgls] = ACTIONS(4221), + [anon_sym_BSLASHGls] = ACTIONS(4221), + [anon_sym_BSLASHGLS] = ACTIONS(4221), + [anon_sym_BSLASHglspl] = ACTIONS(4221), + [anon_sym_BSLASHGlspl] = ACTIONS(4221), + [anon_sym_BSLASHGLSpl] = ACTIONS(4221), + [anon_sym_BSLASHglsdisp] = ACTIONS(4221), + [anon_sym_BSLASHglslink] = ACTIONS(4221), + [anon_sym_BSLASHglstext] = ACTIONS(4221), + [anon_sym_BSLASHGlstext] = ACTIONS(4221), + [anon_sym_BSLASHGLStext] = ACTIONS(4221), + [anon_sym_BSLASHglsfirst] = ACTIONS(4221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4221), + [anon_sym_BSLASHglsplural] = ACTIONS(4221), + [anon_sym_BSLASHGlsplural] = ACTIONS(4221), + [anon_sym_BSLASHGLSplural] = ACTIONS(4221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4221), + [anon_sym_BSLASHglsname] = ACTIONS(4221), + [anon_sym_BSLASHGlsname] = ACTIONS(4221), + [anon_sym_BSLASHGLSname] = ACTIONS(4221), + [anon_sym_BSLASHglssymbol] = ACTIONS(4221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4221), + [anon_sym_BSLASHglsdesc] = ACTIONS(4221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4221), + [anon_sym_BSLASHglsuseri] = ACTIONS(4221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4221), + [anon_sym_BSLASHglsuserii] = ACTIONS(4221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4221), + [anon_sym_BSLASHglsuserv] = ACTIONS(4221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4221), + [anon_sym_BSLASHglsuservi] = ACTIONS(4221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4221), + [anon_sym_BSLASHnewacronym] = ACTIONS(4224), + [anon_sym_BSLASHacrshort] = ACTIONS(4227), + [anon_sym_BSLASHAcrshort] = ACTIONS(4227), + [anon_sym_BSLASHACRshort] = ACTIONS(4227), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4227), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4227), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4227), + [anon_sym_BSLASHacrlong] = ACTIONS(4227), + [anon_sym_BSLASHAcrlong] = ACTIONS(4227), + [anon_sym_BSLASHACRlong] = ACTIONS(4227), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4227), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4227), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4227), + [anon_sym_BSLASHacrfull] = ACTIONS(4227), + [anon_sym_BSLASHAcrfull] = ACTIONS(4227), + [anon_sym_BSLASHACRfull] = ACTIONS(4227), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4227), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4227), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4227), + [anon_sym_BSLASHacs] = ACTIONS(4227), + [anon_sym_BSLASHAcs] = ACTIONS(4227), + [anon_sym_BSLASHacsp] = ACTIONS(4227), + [anon_sym_BSLASHAcsp] = ACTIONS(4227), + [anon_sym_BSLASHacl] = ACTIONS(4227), + [anon_sym_BSLASHAcl] = ACTIONS(4227), + [anon_sym_BSLASHaclp] = ACTIONS(4227), + [anon_sym_BSLASHAclp] = ACTIONS(4227), + [anon_sym_BSLASHacf] = ACTIONS(4227), + [anon_sym_BSLASHAcf] = ACTIONS(4227), + [anon_sym_BSLASHacfp] = ACTIONS(4227), + [anon_sym_BSLASHAcfp] = ACTIONS(4227), + [anon_sym_BSLASHac] = ACTIONS(4227), + [anon_sym_BSLASHAc] = ACTIONS(4227), + [anon_sym_BSLASHacp] = ACTIONS(4227), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4227), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4227), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4227), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4227), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4227), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4227), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4227), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4227), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4227), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4227), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4230), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4230), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4233), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4236), + [anon_sym_BSLASHcolor] = ACTIONS(4239), + [anon_sym_BSLASHcolorbox] = ACTIONS(4239), + [anon_sym_BSLASHtextcolor] = ACTIONS(4239), + [anon_sym_BSLASHpagecolor] = ACTIONS(4239), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4242), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4242), + [anon_sym_BSLASHtext] = ACTIONS(2687), + [anon_sym_BSLASHintertext] = ACTIONS(2687), + [anon_sym_shortintertext] = ACTIONS(2687), }, [266] = { - [sym_block_comment] = STATE(1473), - [sym_operator] = STATE(1473), - [sym__command] = STATE(1473), - [sym_generic_command] = STATE(1473), - [sym_package_include] = STATE(1473), - [sym_class_include] = STATE(1473), - [sym_latex_include] = STATE(1473), - [sym_biblatex_include] = STATE(1473), - [sym_bibtex_include] = STATE(1473), - [sym_graphics_include] = STATE(1473), - [sym_svg_include] = STATE(1473), - [sym_inkscape_include] = STATE(1473), - [sym_verbatim_include] = STATE(1473), - [sym_import_include] = STATE(1473), - [sym_caption] = STATE(1473), - [sym_citation] = STATE(1473), - [sym_label_definition] = STATE(1473), - [sym_label_reference] = STATE(1473), - [sym_label_reference_range] = STATE(1473), - [sym_label_number] = STATE(1473), - [sym_new_command_definition] = STATE(1473), - [sym_old_command_definition] = STATE(1473), - [sym_let_command_definition] = STATE(1473), - [sym_environment_definition] = STATE(1473), - [sym_glossary_entry_definition] = STATE(1473), - [sym_glossary_entry_reference] = STATE(1473), - [sym_acronym_definition] = STATE(1473), - [sym_acronym_reference] = STATE(1473), - [sym_theorem_definition] = STATE(1473), - [sym_color_definition] = STATE(1473), - [sym_color_set_definition] = STATE(1473), - [sym_color_reference] = STATE(1473), - [sym_tikz_library_import] = STATE(1473), + [sym_block_comment] = STATE(1480), + [sym_operator] = STATE(1480), + [sym__command] = STATE(1480), + [sym_generic_command] = STATE(1480), + [sym_package_include] = STATE(1480), + [sym_class_include] = STATE(1480), + [sym_latex_include] = STATE(1480), + [sym_biblatex_include] = STATE(1480), + [sym_bibtex_include] = STATE(1480), + [sym_graphics_include] = STATE(1480), + [sym_svg_include] = STATE(1480), + [sym_inkscape_include] = STATE(1480), + [sym_verbatim_include] = STATE(1480), + [sym_import_include] = STATE(1480), + [sym_caption] = STATE(1480), + [sym_citation] = STATE(1480), + [sym_label_definition] = STATE(1480), + [sym_label_reference] = STATE(1480), + [sym_label_reference_range] = STATE(1480), + [sym_label_number] = STATE(1480), + [sym_new_command_definition] = STATE(1480), + [sym_old_command_definition] = STATE(1480), + [sym_let_command_definition] = STATE(1480), + [sym_environment_definition] = STATE(1480), + [sym_glossary_entry_definition] = STATE(1480), + [sym_glossary_entry_reference] = STATE(1480), + [sym_acronym_definition] = STATE(1480), + [sym_acronym_reference] = STATE(1480), + [sym_theorem_definition] = STATE(1480), + [sym_color_definition] = STATE(1480), + [sym_color_set_definition] = STATE(1480), + [sym_color_reference] = STATE(1480), + [sym_tikz_library_import] = STATE(1480), [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(4189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4192), - [anon_sym_LPAREN] = ACTIONS(2639), - [anon_sym_RPAREN] = ACTIONS(2639), - [anon_sym_LBRACK] = ACTIONS(2639), - [anon_sym_RBRACK] = ACTIONS(2639), - [anon_sym_COMMA] = ACTIONS(2639), - [anon_sym_LBRACE] = ACTIONS(2639), - [anon_sym_RBRACE] = ACTIONS(2639), - [sym_word] = ACTIONS(4195), - [sym_placeholder] = ACTIONS(4198), - [anon_sym_PLUS] = ACTIONS(4201), - [anon_sym_DASH] = ACTIONS(4201), - [anon_sym_STAR] = ACTIONS(4201), - [anon_sym_SLASH] = ACTIONS(4201), - [anon_sym_CARET] = ACTIONS(4201), - [anon_sym__] = ACTIONS(4201), - [anon_sym_LT] = ACTIONS(4201), - [anon_sym_GT] = ACTIONS(4201), - [anon_sym_BANG] = ACTIONS(4201), - [anon_sym_PIPE] = ACTIONS(4201), - [anon_sym_COLON] = ACTIONS(4201), - [anon_sym_SQUOTE] = ACTIONS(4201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2647), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2639), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2639), - [anon_sym_BSLASHusepackage] = ACTIONS(4204), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4204), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4207), - [anon_sym_BSLASHinclude] = ACTIONS(4210), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4210), - [anon_sym_BSLASHinput] = ACTIONS(4210), - [anon_sym_BSLASHsubfile] = ACTIONS(4210), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4213), - [anon_sym_BSLASHbibliography] = ACTIONS(4216), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4219), - [anon_sym_BSLASHincludesvg] = ACTIONS(4222), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4228), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4228), - [anon_sym_BSLASHimport] = ACTIONS(4231), - [anon_sym_BSLASHsubimport] = ACTIONS(4231), - [anon_sym_BSLASHinputfrom] = ACTIONS(4231), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4231), - [anon_sym_BSLASHincludefrom] = ACTIONS(4231), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4231), - [anon_sym_BSLASHcaption] = ACTIONS(4234), - [anon_sym_BSLASHcite] = ACTIONS(4237), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4240), - [anon_sym_BSLASHCite] = ACTIONS(4237), - [anon_sym_BSLASHnocite] = ACTIONS(4237), - [anon_sym_BSLASHcitet] = ACTIONS(4237), - [anon_sym_BSLASHcitep] = ACTIONS(4237), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4240), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4240), - [anon_sym_BSLASHciteauthor] = ACTIONS(4237), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4240), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4237), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4240), - [anon_sym_BSLASHcitetitle] = ACTIONS(4237), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4240), - [anon_sym_BSLASHciteyear] = ACTIONS(4237), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4240), - [anon_sym_BSLASHcitedate] = ACTIONS(4237), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4240), - [anon_sym_BSLASHciteurl] = ACTIONS(4237), - [anon_sym_BSLASHfullcite] = ACTIONS(4237), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4237), - [anon_sym_BSLASHcitealt] = ACTIONS(4237), - [anon_sym_BSLASHcitealp] = ACTIONS(4237), - [anon_sym_BSLASHcitetext] = ACTIONS(4237), - [anon_sym_BSLASHparencite] = ACTIONS(4237), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4240), - [anon_sym_BSLASHParencite] = ACTIONS(4237), - [anon_sym_BSLASHfootcite] = ACTIONS(4237), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4237), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4237), - [anon_sym_BSLASHtextcite] = ACTIONS(4237), - [anon_sym_BSLASHTextcite] = ACTIONS(4237), - [anon_sym_BSLASHsmartcite] = ACTIONS(4237), - [anon_sym_BSLASHSmartcite] = ACTIONS(4237), - [anon_sym_BSLASHsupercite] = ACTIONS(4237), - [anon_sym_BSLASHautocite] = ACTIONS(4237), - [anon_sym_BSLASHAutocite] = ACTIONS(4237), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4240), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4240), - [anon_sym_BSLASHvolcite] = ACTIONS(4237), - [anon_sym_BSLASHVolcite] = ACTIONS(4237), - [anon_sym_BSLASHpvolcite] = ACTIONS(4237), - [anon_sym_BSLASHPvolcite] = ACTIONS(4237), - [anon_sym_BSLASHfvolcite] = ACTIONS(4237), - [anon_sym_BSLASHftvolcite] = ACTIONS(4237), - [anon_sym_BSLASHsvolcite] = ACTIONS(4237), - [anon_sym_BSLASHSvolcite] = ACTIONS(4237), - [anon_sym_BSLASHtvolcite] = ACTIONS(4237), - [anon_sym_BSLASHTvolcite] = ACTIONS(4237), - [anon_sym_BSLASHavolcite] = ACTIONS(4237), - [anon_sym_BSLASHAvolcite] = ACTIONS(4237), - [anon_sym_BSLASHnotecite] = ACTIONS(4237), - [anon_sym_BSLASHNotecite] = ACTIONS(4237), - [anon_sym_BSLASHpnotecite] = ACTIONS(4237), - [anon_sym_BSLASHPnotecite] = ACTIONS(4237), - [anon_sym_BSLASHfnotecite] = ACTIONS(4237), - [anon_sym_BSLASHlabel] = ACTIONS(4243), - [anon_sym_BSLASHref] = ACTIONS(4246), - [anon_sym_BSLASHeqref] = ACTIONS(4246), - [anon_sym_BSLASHvref] = ACTIONS(4246), - [anon_sym_BSLASHVref] = ACTIONS(4246), - [anon_sym_BSLASHautoref] = ACTIONS(4246), - [anon_sym_BSLASHpageref] = ACTIONS(4246), - [anon_sym_BSLASHcref] = ACTIONS(4246), - [anon_sym_BSLASHCref] = ACTIONS(4246), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4249), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4249), - [anon_sym_BSLASHnamecref] = ACTIONS(4246), - [anon_sym_BSLASHnameCref] = ACTIONS(4246), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4246), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4246), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4246), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4246), - [anon_sym_BSLASHlabelcref] = ACTIONS(4246), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4246), - [anon_sym_BSLASHcrefrange] = ACTIONS(4252), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4255), - [anon_sym_BSLASHCrefrange] = ACTIONS(4252), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4255), - [anon_sym_BSLASHnewlabel] = ACTIONS(4258), - [anon_sym_BSLASHnewcommand] = ACTIONS(4261), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4264), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4261), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4264), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4261), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4264), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4261), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4264), - [anon_sym_BSLASHdef] = ACTIONS(4267), - [anon_sym_BSLASHlet] = ACTIONS(4270), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4273), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4276), - [anon_sym_BSLASHgls] = ACTIONS(4279), - [anon_sym_BSLASHGls] = ACTIONS(4279), - [anon_sym_BSLASHGLS] = ACTIONS(4279), - [anon_sym_BSLASHglspl] = ACTIONS(4279), - [anon_sym_BSLASHGlspl] = ACTIONS(4279), - [anon_sym_BSLASHGLSpl] = ACTIONS(4279), - [anon_sym_BSLASHglsdisp] = ACTIONS(4279), - [anon_sym_BSLASHglslink] = ACTIONS(4279), - [anon_sym_BSLASHglstext] = ACTIONS(4279), - [anon_sym_BSLASHGlstext] = ACTIONS(4279), - [anon_sym_BSLASHGLStext] = ACTIONS(4279), - [anon_sym_BSLASHglsfirst] = ACTIONS(4279), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4279), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4279), - [anon_sym_BSLASHglsplural] = ACTIONS(4279), - [anon_sym_BSLASHGlsplural] = ACTIONS(4279), - [anon_sym_BSLASHGLSplural] = ACTIONS(4279), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4279), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4279), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4279), - [anon_sym_BSLASHglsname] = ACTIONS(4279), - [anon_sym_BSLASHGlsname] = ACTIONS(4279), - [anon_sym_BSLASHGLSname] = ACTIONS(4279), - [anon_sym_BSLASHglssymbol] = ACTIONS(4279), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4279), - [anon_sym_BSLASHglsdesc] = ACTIONS(4279), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4279), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4279), - [anon_sym_BSLASHglsuseri] = ACTIONS(4279), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4279), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4279), - [anon_sym_BSLASHglsuserii] = ACTIONS(4279), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4279), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4279), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4279), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4279), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4279), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4279), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4279), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4279), - [anon_sym_BSLASHglsuserv] = ACTIONS(4279), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4279), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4279), - [anon_sym_BSLASHglsuservi] = ACTIONS(4279), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4279), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4279), - [anon_sym_BSLASHnewacronym] = ACTIONS(4282), - [anon_sym_BSLASHacrshort] = ACTIONS(4285), - [anon_sym_BSLASHAcrshort] = ACTIONS(4285), - [anon_sym_BSLASHACRshort] = ACTIONS(4285), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4285), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4285), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4285), - [anon_sym_BSLASHacrlong] = ACTIONS(4285), - [anon_sym_BSLASHAcrlong] = ACTIONS(4285), - [anon_sym_BSLASHACRlong] = ACTIONS(4285), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4285), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4285), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4285), - [anon_sym_BSLASHacrfull] = ACTIONS(4285), - [anon_sym_BSLASHAcrfull] = ACTIONS(4285), - [anon_sym_BSLASHACRfull] = ACTIONS(4285), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4285), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4285), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4285), - [anon_sym_BSLASHacs] = ACTIONS(4285), - [anon_sym_BSLASHAcs] = ACTIONS(4285), - [anon_sym_BSLASHacsp] = ACTIONS(4285), - [anon_sym_BSLASHAcsp] = ACTIONS(4285), - [anon_sym_BSLASHacl] = ACTIONS(4285), - [anon_sym_BSLASHAcl] = ACTIONS(4285), - [anon_sym_BSLASHaclp] = ACTIONS(4285), - [anon_sym_BSLASHAclp] = ACTIONS(4285), - [anon_sym_BSLASHacf] = ACTIONS(4285), - [anon_sym_BSLASHAcf] = ACTIONS(4285), - [anon_sym_BSLASHacfp] = ACTIONS(4285), - [anon_sym_BSLASHAcfp] = ACTIONS(4285), - [anon_sym_BSLASHac] = ACTIONS(4285), - [anon_sym_BSLASHAc] = ACTIONS(4285), - [anon_sym_BSLASHacp] = ACTIONS(4285), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4285), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4285), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4285), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4285), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4285), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4285), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4285), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4285), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4285), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4285), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4288), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4288), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4294), - [anon_sym_BSLASHcolor] = ACTIONS(4297), - [anon_sym_BSLASHcolorbox] = ACTIONS(4297), - [anon_sym_BSLASHtextcolor] = ACTIONS(4297), - [anon_sym_BSLASHpagecolor] = ACTIONS(4297), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4300), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4300), + [sym_command_name] = ACTIONS(4245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4248), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [sym_word] = ACTIONS(4251), + [sym_placeholder] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4257), + [anon_sym_DASH] = ACTIONS(4257), + [anon_sym_STAR] = ACTIONS(4257), + [anon_sym_SLASH] = ACTIONS(4257), + [anon_sym_CARET] = ACTIONS(4257), + [anon_sym__] = ACTIONS(4257), + [anon_sym_LT] = ACTIONS(4257), + [anon_sym_GT] = ACTIONS(4257), + [anon_sym_BANG] = ACTIONS(4257), + [anon_sym_PIPE] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(4257), + [anon_sym_SQUOTE] = ACTIONS(4257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2679), + [anon_sym_DOLLAR] = ACTIONS(2687), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2679), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2679), + [anon_sym_BSLASHusepackage] = ACTIONS(4260), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4260), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4263), + [anon_sym_BSLASHinclude] = ACTIONS(4266), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4266), + [anon_sym_BSLASHinput] = ACTIONS(4266), + [anon_sym_BSLASHsubfile] = ACTIONS(4266), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4269), + [anon_sym_BSLASHbibliography] = ACTIONS(4272), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4275), + [anon_sym_BSLASHincludesvg] = ACTIONS(4278), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4281), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4284), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4284), + [anon_sym_BSLASHimport] = ACTIONS(4287), + [anon_sym_BSLASHsubimport] = ACTIONS(4287), + [anon_sym_BSLASHinputfrom] = ACTIONS(4287), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4287), + [anon_sym_BSLASHincludefrom] = ACTIONS(4287), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4287), + [anon_sym_BSLASHcaption] = ACTIONS(4290), + [anon_sym_BSLASHcite] = ACTIONS(4293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4296), + [anon_sym_BSLASHCite] = ACTIONS(4293), + [anon_sym_BSLASHnocite] = ACTIONS(4293), + [anon_sym_BSLASHcitet] = ACTIONS(4293), + [anon_sym_BSLASHcitep] = ACTIONS(4293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4296), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4296), + [anon_sym_BSLASHciteauthor] = ACTIONS(4293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4296), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4296), + [anon_sym_BSLASHcitetitle] = ACTIONS(4293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4296), + [anon_sym_BSLASHciteyear] = ACTIONS(4293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4296), + [anon_sym_BSLASHcitedate] = ACTIONS(4293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4296), + [anon_sym_BSLASHciteurl] = ACTIONS(4293), + [anon_sym_BSLASHfullcite] = ACTIONS(4293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4293), + [anon_sym_BSLASHcitealt] = ACTIONS(4293), + [anon_sym_BSLASHcitealp] = ACTIONS(4293), + [anon_sym_BSLASHcitetext] = ACTIONS(4293), + [anon_sym_BSLASHparencite] = ACTIONS(4293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4296), + [anon_sym_BSLASHParencite] = ACTIONS(4293), + [anon_sym_BSLASHfootcite] = ACTIONS(4293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4293), + [anon_sym_BSLASHtextcite] = ACTIONS(4293), + [anon_sym_BSLASHTextcite] = ACTIONS(4293), + [anon_sym_BSLASHsmartcite] = ACTIONS(4293), + [anon_sym_BSLASHSmartcite] = ACTIONS(4293), + [anon_sym_BSLASHsupercite] = ACTIONS(4293), + [anon_sym_BSLASHautocite] = ACTIONS(4293), + [anon_sym_BSLASHAutocite] = ACTIONS(4293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4296), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4296), + [anon_sym_BSLASHvolcite] = ACTIONS(4293), + [anon_sym_BSLASHVolcite] = ACTIONS(4293), + [anon_sym_BSLASHpvolcite] = ACTIONS(4293), + [anon_sym_BSLASHPvolcite] = ACTIONS(4293), + [anon_sym_BSLASHfvolcite] = ACTIONS(4293), + [anon_sym_BSLASHftvolcite] = ACTIONS(4293), + [anon_sym_BSLASHsvolcite] = ACTIONS(4293), + [anon_sym_BSLASHSvolcite] = ACTIONS(4293), + [anon_sym_BSLASHtvolcite] = ACTIONS(4293), + [anon_sym_BSLASHTvolcite] = ACTIONS(4293), + [anon_sym_BSLASHavolcite] = ACTIONS(4293), + [anon_sym_BSLASHAvolcite] = ACTIONS(4293), + [anon_sym_BSLASHnotecite] = ACTIONS(4293), + [anon_sym_BSLASHNotecite] = ACTIONS(4293), + [anon_sym_BSLASHpnotecite] = ACTIONS(4293), + [anon_sym_BSLASHPnotecite] = ACTIONS(4293), + [anon_sym_BSLASHfnotecite] = ACTIONS(4293), + [anon_sym_BSLASHlabel] = ACTIONS(4299), + [anon_sym_BSLASHref] = ACTIONS(4302), + [anon_sym_BSLASHeqref] = ACTIONS(4302), + [anon_sym_BSLASHvref] = ACTIONS(4302), + [anon_sym_BSLASHVref] = ACTIONS(4302), + [anon_sym_BSLASHautoref] = ACTIONS(4302), + [anon_sym_BSLASHpageref] = ACTIONS(4302), + [anon_sym_BSLASHcref] = ACTIONS(4302), + [anon_sym_BSLASHCref] = ACTIONS(4302), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4305), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4305), + [anon_sym_BSLASHnamecref] = ACTIONS(4302), + [anon_sym_BSLASHnameCref] = ACTIONS(4302), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4302), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4302), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4302), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4302), + [anon_sym_BSLASHlabelcref] = ACTIONS(4302), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4302), + [anon_sym_BSLASHcrefrange] = ACTIONS(4308), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4311), + [anon_sym_BSLASHCrefrange] = ACTIONS(4308), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4311), + [anon_sym_BSLASHnewlabel] = ACTIONS(4314), + [anon_sym_BSLASHnewcommand] = ACTIONS(4317), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4320), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4317), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4320), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4317), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4320), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4317), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4320), + [anon_sym_BSLASHdef] = ACTIONS(4323), + [anon_sym_BSLASHlet] = ACTIONS(4326), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4329), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4332), + [anon_sym_BSLASHgls] = ACTIONS(4335), + [anon_sym_BSLASHGls] = ACTIONS(4335), + [anon_sym_BSLASHGLS] = ACTIONS(4335), + [anon_sym_BSLASHglspl] = ACTIONS(4335), + [anon_sym_BSLASHGlspl] = ACTIONS(4335), + [anon_sym_BSLASHGLSpl] = ACTIONS(4335), + [anon_sym_BSLASHglsdisp] = ACTIONS(4335), + [anon_sym_BSLASHglslink] = ACTIONS(4335), + [anon_sym_BSLASHglstext] = ACTIONS(4335), + [anon_sym_BSLASHGlstext] = ACTIONS(4335), + [anon_sym_BSLASHGLStext] = ACTIONS(4335), + [anon_sym_BSLASHglsfirst] = ACTIONS(4335), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4335), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4335), + [anon_sym_BSLASHglsplural] = ACTIONS(4335), + [anon_sym_BSLASHGlsplural] = ACTIONS(4335), + [anon_sym_BSLASHGLSplural] = ACTIONS(4335), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4335), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4335), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4335), + [anon_sym_BSLASHglsname] = ACTIONS(4335), + [anon_sym_BSLASHGlsname] = ACTIONS(4335), + [anon_sym_BSLASHGLSname] = ACTIONS(4335), + [anon_sym_BSLASHglssymbol] = ACTIONS(4335), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4335), + [anon_sym_BSLASHglsdesc] = ACTIONS(4335), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4335), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4335), + [anon_sym_BSLASHglsuseri] = ACTIONS(4335), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4335), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4335), + [anon_sym_BSLASHglsuserii] = ACTIONS(4335), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4335), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4335), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4335), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4335), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4335), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4335), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4335), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4335), + [anon_sym_BSLASHglsuserv] = ACTIONS(4335), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4335), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4335), + [anon_sym_BSLASHglsuservi] = ACTIONS(4335), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4335), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4335), + [anon_sym_BSLASHnewacronym] = ACTIONS(4338), + [anon_sym_BSLASHacrshort] = ACTIONS(4341), + [anon_sym_BSLASHAcrshort] = ACTIONS(4341), + [anon_sym_BSLASHACRshort] = ACTIONS(4341), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4341), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4341), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4341), + [anon_sym_BSLASHacrlong] = ACTIONS(4341), + [anon_sym_BSLASHAcrlong] = ACTIONS(4341), + [anon_sym_BSLASHACRlong] = ACTIONS(4341), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4341), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4341), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4341), + [anon_sym_BSLASHacrfull] = ACTIONS(4341), + [anon_sym_BSLASHAcrfull] = ACTIONS(4341), + [anon_sym_BSLASHACRfull] = ACTIONS(4341), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4341), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4341), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4341), + [anon_sym_BSLASHacs] = ACTIONS(4341), + [anon_sym_BSLASHAcs] = ACTIONS(4341), + [anon_sym_BSLASHacsp] = ACTIONS(4341), + [anon_sym_BSLASHAcsp] = ACTIONS(4341), + [anon_sym_BSLASHacl] = ACTIONS(4341), + [anon_sym_BSLASHAcl] = ACTIONS(4341), + [anon_sym_BSLASHaclp] = ACTIONS(4341), + [anon_sym_BSLASHAclp] = ACTIONS(4341), + [anon_sym_BSLASHacf] = ACTIONS(4341), + [anon_sym_BSLASHAcf] = ACTIONS(4341), + [anon_sym_BSLASHacfp] = ACTIONS(4341), + [anon_sym_BSLASHAcfp] = ACTIONS(4341), + [anon_sym_BSLASHac] = ACTIONS(4341), + [anon_sym_BSLASHAc] = ACTIONS(4341), + [anon_sym_BSLASHacp] = ACTIONS(4341), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4341), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4341), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4341), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4341), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4341), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4341), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4341), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4341), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4341), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4341), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4344), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4344), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4347), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4350), + [anon_sym_BSLASHcolor] = ACTIONS(4353), + [anon_sym_BSLASHcolorbox] = ACTIONS(4353), + [anon_sym_BSLASHtextcolor] = ACTIONS(4353), + [anon_sym_BSLASHpagecolor] = ACTIONS(4353), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4356), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4356), + [anon_sym_BSLASHtext] = ACTIONS(2687), + [anon_sym_BSLASHintertext] = ACTIONS(2687), + [anon_sym_shortintertext] = ACTIONS(2687), }, [267] = { - [sym_block_comment] = STATE(1473), - [sym_operator] = STATE(1473), - [sym__command] = STATE(1473), - [sym_generic_command] = STATE(1473), - [sym_package_include] = STATE(1473), - [sym_class_include] = STATE(1473), - [sym_latex_include] = STATE(1473), - [sym_biblatex_include] = STATE(1473), - [sym_bibtex_include] = STATE(1473), - [sym_graphics_include] = STATE(1473), - [sym_svg_include] = STATE(1473), - [sym_inkscape_include] = STATE(1473), - [sym_verbatim_include] = STATE(1473), - [sym_import_include] = STATE(1473), - [sym_caption] = STATE(1473), - [sym_citation] = STATE(1473), - [sym_label_definition] = STATE(1473), - [sym_label_reference] = STATE(1473), - [sym_label_reference_range] = STATE(1473), - [sym_label_number] = STATE(1473), - [sym_new_command_definition] = STATE(1473), - [sym_old_command_definition] = STATE(1473), - [sym_let_command_definition] = STATE(1473), - [sym_environment_definition] = STATE(1473), - [sym_glossary_entry_definition] = STATE(1473), - [sym_glossary_entry_reference] = STATE(1473), - [sym_acronym_definition] = STATE(1473), - [sym_acronym_reference] = STATE(1473), - [sym_theorem_definition] = STATE(1473), - [sym_color_definition] = STATE(1473), - [sym_color_set_definition] = STATE(1473), - [sym_color_reference] = STATE(1473), - [sym_tikz_library_import] = STATE(1473), + [sym_block_comment] = STATE(1480), + [sym_operator] = STATE(1480), + [sym__command] = STATE(1480), + [sym_generic_command] = STATE(1480), + [sym_package_include] = STATE(1480), + [sym_class_include] = STATE(1480), + [sym_latex_include] = STATE(1480), + [sym_biblatex_include] = STATE(1480), + [sym_bibtex_include] = STATE(1480), + [sym_graphics_include] = STATE(1480), + [sym_svg_include] = STATE(1480), + [sym_inkscape_include] = STATE(1480), + [sym_verbatim_include] = STATE(1480), + [sym_import_include] = STATE(1480), + [sym_caption] = STATE(1480), + [sym_citation] = STATE(1480), + [sym_label_definition] = STATE(1480), + [sym_label_reference] = STATE(1480), + [sym_label_reference_range] = STATE(1480), + [sym_label_number] = STATE(1480), + [sym_new_command_definition] = STATE(1480), + [sym_old_command_definition] = STATE(1480), + [sym_let_command_definition] = STATE(1480), + [sym_environment_definition] = STATE(1480), + [sym_glossary_entry_definition] = STATE(1480), + [sym_glossary_entry_reference] = STATE(1480), + [sym_acronym_definition] = STATE(1480), + [sym_acronym_reference] = STATE(1480), + [sym_theorem_definition] = STATE(1480), + [sym_color_definition] = STATE(1480), + [sym_color_set_definition] = STATE(1480), + [sym_color_reference] = STATE(1480), + [sym_tikz_library_import] = STATE(1480), [aux_sym_text_repeat1] = STATE(266), - [sym_command_name] = ACTIONS(3653), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(3655), - [anon_sym_LPAREN] = ACTIONS(2635), - [anon_sym_RPAREN] = ACTIONS(2635), - [anon_sym_LBRACK] = ACTIONS(2635), - [anon_sym_RBRACK] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [sym_word] = ACTIONS(3665), - [sym_placeholder] = ACTIONS(3667), - [anon_sym_PLUS] = ACTIONS(3669), - [anon_sym_DASH] = ACTIONS(3669), - [anon_sym_STAR] = ACTIONS(3669), - [anon_sym_SLASH] = ACTIONS(3669), - [anon_sym_CARET] = ACTIONS(3669), - [anon_sym__] = ACTIONS(3669), - [anon_sym_LT] = ACTIONS(3669), - [anon_sym_GT] = ACTIONS(3669), - [anon_sym_BANG] = ACTIONS(3669), - [anon_sym_PIPE] = ACTIONS(3669), - [anon_sym_COLON] = ACTIONS(3669), - [anon_sym_SQUOTE] = ACTIONS(3669), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACK] = ACTIONS(2635), - [anon_sym_DOLLAR] = ACTIONS(2637), - [anon_sym_BSLASH_LPAREN] = ACTIONS(2635), - [anon_sym_BSLASH_LBRACE] = ACTIONS(2635), - [anon_sym_BSLASHusepackage] = ACTIONS(3679), - [anon_sym_BSLASHRequirePackage] = ACTIONS(3679), - [anon_sym_BSLASHdocumentclass] = ACTIONS(3681), - [anon_sym_BSLASHinclude] = ACTIONS(3683), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(3683), - [anon_sym_BSLASHinput] = ACTIONS(3683), - [anon_sym_BSLASHsubfile] = ACTIONS(3683), - [anon_sym_BSLASHaddbibresource] = ACTIONS(3685), - [anon_sym_BSLASHbibliography] = ACTIONS(3687), - [anon_sym_BSLASHincludegraphics] = ACTIONS(3689), - [anon_sym_BSLASHincludesvg] = ACTIONS(3691), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(3693), - [anon_sym_BSLASHverbatiminput] = ACTIONS(3695), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(3695), - [anon_sym_BSLASHimport] = ACTIONS(3697), - [anon_sym_BSLASHsubimport] = ACTIONS(3697), - [anon_sym_BSLASHinputfrom] = ACTIONS(3697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(3697), - [anon_sym_BSLASHincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(3697), - [anon_sym_BSLASHcaption] = ACTIONS(3699), - [anon_sym_BSLASHcite] = ACTIONS(3701), - [anon_sym_BSLASHcite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCite] = ACTIONS(3701), - [anon_sym_BSLASHnocite] = ACTIONS(3701), - [anon_sym_BSLASHcitet] = ACTIONS(3701), - [anon_sym_BSLASHcitep] = ACTIONS(3701), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteauthor] = ACTIONS(3701), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHCiteauthor] = ACTIONS(3701), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitetitle] = ACTIONS(3701), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteyear] = ACTIONS(3701), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3703), - [anon_sym_BSLASHcitedate] = ACTIONS(3701), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3703), - [anon_sym_BSLASHciteurl] = ACTIONS(3701), - [anon_sym_BSLASHfullcite] = ACTIONS(3701), - [anon_sym_BSLASHciteyearpar] = ACTIONS(3701), - [anon_sym_BSLASHcitealt] = ACTIONS(3701), - [anon_sym_BSLASHcitealp] = ACTIONS(3701), - [anon_sym_BSLASHcitetext] = ACTIONS(3701), - [anon_sym_BSLASHparencite] = ACTIONS(3701), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHParencite] = ACTIONS(3701), - [anon_sym_BSLASHfootcite] = ACTIONS(3701), - [anon_sym_BSLASHfootfullcite] = ACTIONS(3701), - [anon_sym_BSLASHfootcitetext] = ACTIONS(3701), - [anon_sym_BSLASHtextcite] = ACTIONS(3701), - [anon_sym_BSLASHTextcite] = ACTIONS(3701), - [anon_sym_BSLASHsmartcite] = ACTIONS(3701), - [anon_sym_BSLASHSmartcite] = ACTIONS(3701), - [anon_sym_BSLASHsupercite] = ACTIONS(3701), - [anon_sym_BSLASHautocite] = ACTIONS(3701), - [anon_sym_BSLASHAutocite] = ACTIONS(3701), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3703), - [anon_sym_BSLASHvolcite] = ACTIONS(3701), - [anon_sym_BSLASHVolcite] = ACTIONS(3701), - [anon_sym_BSLASHpvolcite] = ACTIONS(3701), - [anon_sym_BSLASHPvolcite] = ACTIONS(3701), - [anon_sym_BSLASHfvolcite] = ACTIONS(3701), - [anon_sym_BSLASHftvolcite] = ACTIONS(3701), - [anon_sym_BSLASHsvolcite] = ACTIONS(3701), - [anon_sym_BSLASHSvolcite] = ACTIONS(3701), - [anon_sym_BSLASHtvolcite] = ACTIONS(3701), - [anon_sym_BSLASHTvolcite] = ACTIONS(3701), - [anon_sym_BSLASHavolcite] = ACTIONS(3701), - [anon_sym_BSLASHAvolcite] = ACTIONS(3701), - [anon_sym_BSLASHnotecite] = ACTIONS(3701), - [anon_sym_BSLASHNotecite] = ACTIONS(3701), - [anon_sym_BSLASHpnotecite] = ACTIONS(3701), - [anon_sym_BSLASHPnotecite] = ACTIONS(3701), - [anon_sym_BSLASHfnotecite] = ACTIONS(3701), - [anon_sym_BSLASHlabel] = ACTIONS(3705), - [anon_sym_BSLASHref] = ACTIONS(3707), - [anon_sym_BSLASHeqref] = ACTIONS(3707), - [anon_sym_BSLASHvref] = ACTIONS(3707), - [anon_sym_BSLASHVref] = ACTIONS(3707), - [anon_sym_BSLASHautoref] = ACTIONS(3707), - [anon_sym_BSLASHpageref] = ACTIONS(3707), - [anon_sym_BSLASHcref] = ACTIONS(3707), - [anon_sym_BSLASHCref] = ACTIONS(3707), - [anon_sym_BSLASHcref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHCref_STAR] = ACTIONS(3709), - [anon_sym_BSLASHnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnameCref] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecref] = ACTIONS(3707), - [anon_sym_BSLASHnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHnameCrefs] = ACTIONS(3707), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3707), - [anon_sym_BSLASHlabelcref] = ACTIONS(3707), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(3707), - [anon_sym_BSLASHcrefrange] = ACTIONS(3711), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHCrefrange] = ACTIONS(3711), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3713), - [anon_sym_BSLASHnewlabel] = ACTIONS(3715), - [anon_sym_BSLASHnewcommand] = ACTIONS(3717), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHrenewcommand] = ACTIONS(3717), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3717), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3719), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3717), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3719), - [anon_sym_BSLASHdef] = ACTIONS(3721), - [anon_sym_BSLASHlet] = ACTIONS(3723), - [anon_sym_BSLASHnewenvironment] = ACTIONS(3725), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3727), - [anon_sym_BSLASHgls] = ACTIONS(3729), - [anon_sym_BSLASHGls] = ACTIONS(3729), - [anon_sym_BSLASHGLS] = ACTIONS(3729), - [anon_sym_BSLASHglspl] = ACTIONS(3729), - [anon_sym_BSLASHGlspl] = ACTIONS(3729), - [anon_sym_BSLASHGLSpl] = ACTIONS(3729), - [anon_sym_BSLASHglsdisp] = ACTIONS(3729), - [anon_sym_BSLASHglslink] = ACTIONS(3729), - [anon_sym_BSLASHglstext] = ACTIONS(3729), - [anon_sym_BSLASHGlstext] = ACTIONS(3729), - [anon_sym_BSLASHGLStext] = ACTIONS(3729), - [anon_sym_BSLASHglsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirst] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirst] = ACTIONS(3729), - [anon_sym_BSLASHglsplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSplural] = ACTIONS(3729), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3729), - [anon_sym_BSLASHglsname] = ACTIONS(3729), - [anon_sym_BSLASHGlsname] = ACTIONS(3729), - [anon_sym_BSLASHGLSname] = ACTIONS(3729), - [anon_sym_BSLASHglssymbol] = ACTIONS(3729), - [anon_sym_BSLASHGlssymbol] = ACTIONS(3729), - [anon_sym_BSLASHglsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGlsdesc] = ACTIONS(3729), - [anon_sym_BSLASHGLSdesc] = ACTIONS(3729), - [anon_sym_BSLASHglsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseri] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseri] = ACTIONS(3729), - [anon_sym_BSLASHglsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(3729), - [anon_sym_BSLASHglsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(3729), - [anon_sym_BSLASHglsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGlsuserv] = ACTIONS(3729), - [anon_sym_BSLASHGLSuserv] = ACTIONS(3729), - [anon_sym_BSLASHglsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGlsuservi] = ACTIONS(3729), - [anon_sym_BSLASHGLSuservi] = ACTIONS(3729), - [anon_sym_BSLASHnewacronym] = ACTIONS(3731), - [anon_sym_BSLASHacrshort] = ACTIONS(3733), - [anon_sym_BSLASHAcrshort] = ACTIONS(3733), - [anon_sym_BSLASHACRshort] = ACTIONS(3733), - [anon_sym_BSLASHacrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(3733), - [anon_sym_BSLASHACRshortpl] = ACTIONS(3733), - [anon_sym_BSLASHacrlong] = ACTIONS(3733), - [anon_sym_BSLASHAcrlong] = ACTIONS(3733), - [anon_sym_BSLASHACRlong] = ACTIONS(3733), - [anon_sym_BSLASHacrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(3733), - [anon_sym_BSLASHACRlongpl] = ACTIONS(3733), - [anon_sym_BSLASHacrfull] = ACTIONS(3733), - [anon_sym_BSLASHAcrfull] = ACTIONS(3733), - [anon_sym_BSLASHACRfull] = ACTIONS(3733), - [anon_sym_BSLASHacrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(3733), - [anon_sym_BSLASHACRfullpl] = ACTIONS(3733), - [anon_sym_BSLASHacs] = ACTIONS(3733), - [anon_sym_BSLASHAcs] = ACTIONS(3733), - [anon_sym_BSLASHacsp] = ACTIONS(3733), - [anon_sym_BSLASHAcsp] = ACTIONS(3733), - [anon_sym_BSLASHacl] = ACTIONS(3733), - [anon_sym_BSLASHAcl] = ACTIONS(3733), - [anon_sym_BSLASHaclp] = ACTIONS(3733), - [anon_sym_BSLASHAclp] = ACTIONS(3733), - [anon_sym_BSLASHacf] = ACTIONS(3733), - [anon_sym_BSLASHAcf] = ACTIONS(3733), - [anon_sym_BSLASHacfp] = ACTIONS(3733), - [anon_sym_BSLASHAcfp] = ACTIONS(3733), - [anon_sym_BSLASHac] = ACTIONS(3733), - [anon_sym_BSLASHAc] = ACTIONS(3733), - [anon_sym_BSLASHacp] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(3733), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(3733), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3733), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3733), - [anon_sym_BSLASHnewtheorem] = ACTIONS(3735), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3735), - [anon_sym_BSLASHdefinecolor] = ACTIONS(3737), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(3739), - [anon_sym_BSLASHcolor] = ACTIONS(3741), - [anon_sym_BSLASHcolorbox] = ACTIONS(3741), - [anon_sym_BSLASHtextcolor] = ACTIONS(3741), - [anon_sym_BSLASHpagecolor] = ACTIONS(3741), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(3743), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3743), + [sym_command_name] = ACTIONS(3701), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(3703), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_RPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_RBRACK] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [sym_word] = ACTIONS(3713), + [sym_placeholder] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3717), + [anon_sym_DASH] = ACTIONS(3717), + [anon_sym_STAR] = ACTIONS(3717), + [anon_sym_SLASH] = ACTIONS(3717), + [anon_sym_CARET] = ACTIONS(3717), + [anon_sym__] = ACTIONS(3717), + [anon_sym_LT] = ACTIONS(3717), + [anon_sym_GT] = ACTIONS(3717), + [anon_sym_BANG] = ACTIONS(3717), + [anon_sym_PIPE] = ACTIONS(3717), + [anon_sym_COLON] = ACTIONS(3717), + [anon_sym_SQUOTE] = ACTIONS(3717), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACK] = ACTIONS(2675), + [anon_sym_DOLLAR] = ACTIONS(2677), + [anon_sym_BSLASH_LPAREN] = ACTIONS(2675), + [anon_sym_BSLASH_LBRACE] = ACTIONS(2675), + [anon_sym_BSLASHusepackage] = ACTIONS(3727), + [anon_sym_BSLASHRequirePackage] = ACTIONS(3727), + [anon_sym_BSLASHdocumentclass] = ACTIONS(3729), + [anon_sym_BSLASHinclude] = ACTIONS(3731), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(3731), + [anon_sym_BSLASHinput] = ACTIONS(3731), + [anon_sym_BSLASHsubfile] = ACTIONS(3731), + [anon_sym_BSLASHaddbibresource] = ACTIONS(3733), + [anon_sym_BSLASHbibliography] = ACTIONS(3735), + [anon_sym_BSLASHincludegraphics] = ACTIONS(3737), + [anon_sym_BSLASHincludesvg] = ACTIONS(3739), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(3741), + [anon_sym_BSLASHverbatiminput] = ACTIONS(3743), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(3743), + [anon_sym_BSLASHimport] = ACTIONS(3745), + [anon_sym_BSLASHsubimport] = ACTIONS(3745), + [anon_sym_BSLASHinputfrom] = ACTIONS(3745), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(3745), + [anon_sym_BSLASHincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(3745), + [anon_sym_BSLASHcaption] = ACTIONS(3747), + [anon_sym_BSLASHcite] = ACTIONS(3749), + [anon_sym_BSLASHcite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCite] = ACTIONS(3749), + [anon_sym_BSLASHnocite] = ACTIONS(3749), + [anon_sym_BSLASHcitet] = ACTIONS(3749), + [anon_sym_BSLASHcitep] = ACTIONS(3749), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteauthor] = ACTIONS(3749), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(3749), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitetitle] = ACTIONS(3749), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteyear] = ACTIONS(3749), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(3751), + [anon_sym_BSLASHcitedate] = ACTIONS(3749), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(3751), + [anon_sym_BSLASHciteurl] = ACTIONS(3749), + [anon_sym_BSLASHfullcite] = ACTIONS(3749), + [anon_sym_BSLASHciteyearpar] = ACTIONS(3749), + [anon_sym_BSLASHcitealt] = ACTIONS(3749), + [anon_sym_BSLASHcitealp] = ACTIONS(3749), + [anon_sym_BSLASHcitetext] = ACTIONS(3749), + [anon_sym_BSLASHparencite] = ACTIONS(3749), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHParencite] = ACTIONS(3749), + [anon_sym_BSLASHfootcite] = ACTIONS(3749), + [anon_sym_BSLASHfootfullcite] = ACTIONS(3749), + [anon_sym_BSLASHfootcitetext] = ACTIONS(3749), + [anon_sym_BSLASHtextcite] = ACTIONS(3749), + [anon_sym_BSLASHTextcite] = ACTIONS(3749), + [anon_sym_BSLASHsmartcite] = ACTIONS(3749), + [anon_sym_BSLASHSmartcite] = ACTIONS(3749), + [anon_sym_BSLASHsupercite] = ACTIONS(3749), + [anon_sym_BSLASHautocite] = ACTIONS(3749), + [anon_sym_BSLASHAutocite] = ACTIONS(3749), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(3751), + [anon_sym_BSLASHvolcite] = ACTIONS(3749), + [anon_sym_BSLASHVolcite] = ACTIONS(3749), + [anon_sym_BSLASHpvolcite] = ACTIONS(3749), + [anon_sym_BSLASHPvolcite] = ACTIONS(3749), + [anon_sym_BSLASHfvolcite] = ACTIONS(3749), + [anon_sym_BSLASHftvolcite] = ACTIONS(3749), + [anon_sym_BSLASHsvolcite] = ACTIONS(3749), + [anon_sym_BSLASHSvolcite] = ACTIONS(3749), + [anon_sym_BSLASHtvolcite] = ACTIONS(3749), + [anon_sym_BSLASHTvolcite] = ACTIONS(3749), + [anon_sym_BSLASHavolcite] = ACTIONS(3749), + [anon_sym_BSLASHAvolcite] = ACTIONS(3749), + [anon_sym_BSLASHnotecite] = ACTIONS(3749), + [anon_sym_BSLASHNotecite] = ACTIONS(3749), + [anon_sym_BSLASHpnotecite] = ACTIONS(3749), + [anon_sym_BSLASHPnotecite] = ACTIONS(3749), + [anon_sym_BSLASHfnotecite] = ACTIONS(3749), + [anon_sym_BSLASHlabel] = ACTIONS(3753), + [anon_sym_BSLASHref] = ACTIONS(3755), + [anon_sym_BSLASHeqref] = ACTIONS(3755), + [anon_sym_BSLASHvref] = ACTIONS(3755), + [anon_sym_BSLASHVref] = ACTIONS(3755), + [anon_sym_BSLASHautoref] = ACTIONS(3755), + [anon_sym_BSLASHpageref] = ACTIONS(3755), + [anon_sym_BSLASHcref] = ACTIONS(3755), + [anon_sym_BSLASHCref] = ACTIONS(3755), + [anon_sym_BSLASHcref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHCref_STAR] = ACTIONS(3757), + [anon_sym_BSLASHnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnameCref] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecref] = ACTIONS(3755), + [anon_sym_BSLASHnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHnameCrefs] = ACTIONS(3755), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(3755), + [anon_sym_BSLASHlabelcref] = ACTIONS(3755), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(3755), + [anon_sym_BSLASHcrefrange] = ACTIONS(3759), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHCrefrange] = ACTIONS(3759), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(3761), + [anon_sym_BSLASHnewlabel] = ACTIONS(3763), + [anon_sym_BSLASHnewcommand] = ACTIONS(3765), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHrenewcommand] = ACTIONS(3765), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(3765), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(3767), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(3765), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(3767), + [anon_sym_BSLASHdef] = ACTIONS(3769), + [anon_sym_BSLASHlet] = ACTIONS(3771), + [anon_sym_BSLASHnewenvironment] = ACTIONS(3773), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(3775), + [anon_sym_BSLASHgls] = ACTIONS(3777), + [anon_sym_BSLASHGls] = ACTIONS(3777), + [anon_sym_BSLASHGLS] = ACTIONS(3777), + [anon_sym_BSLASHglspl] = ACTIONS(3777), + [anon_sym_BSLASHGlspl] = ACTIONS(3777), + [anon_sym_BSLASHGLSpl] = ACTIONS(3777), + [anon_sym_BSLASHglsdisp] = ACTIONS(3777), + [anon_sym_BSLASHglslink] = ACTIONS(3777), + [anon_sym_BSLASHglstext] = ACTIONS(3777), + [anon_sym_BSLASHGlstext] = ACTIONS(3777), + [anon_sym_BSLASHGLStext] = ACTIONS(3777), + [anon_sym_BSLASHglsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirst] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirst] = ACTIONS(3777), + [anon_sym_BSLASHglsplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSplural] = ACTIONS(3777), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(3777), + [anon_sym_BSLASHglsname] = ACTIONS(3777), + [anon_sym_BSLASHGlsname] = ACTIONS(3777), + [anon_sym_BSLASHGLSname] = ACTIONS(3777), + [anon_sym_BSLASHglssymbol] = ACTIONS(3777), + [anon_sym_BSLASHGlssymbol] = ACTIONS(3777), + [anon_sym_BSLASHglsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGlsdesc] = ACTIONS(3777), + [anon_sym_BSLASHGLSdesc] = ACTIONS(3777), + [anon_sym_BSLASHglsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseri] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseri] = ACTIONS(3777), + [anon_sym_BSLASHglsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(3777), + [anon_sym_BSLASHglsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(3777), + [anon_sym_BSLASHglsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGlsuserv] = ACTIONS(3777), + [anon_sym_BSLASHGLSuserv] = ACTIONS(3777), + [anon_sym_BSLASHglsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGlsuservi] = ACTIONS(3777), + [anon_sym_BSLASHGLSuservi] = ACTIONS(3777), + [anon_sym_BSLASHnewacronym] = ACTIONS(3779), + [anon_sym_BSLASHacrshort] = ACTIONS(3781), + [anon_sym_BSLASHAcrshort] = ACTIONS(3781), + [anon_sym_BSLASHACRshort] = ACTIONS(3781), + [anon_sym_BSLASHacrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(3781), + [anon_sym_BSLASHACRshortpl] = ACTIONS(3781), + [anon_sym_BSLASHacrlong] = ACTIONS(3781), + [anon_sym_BSLASHAcrlong] = ACTIONS(3781), + [anon_sym_BSLASHACRlong] = ACTIONS(3781), + [anon_sym_BSLASHacrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(3781), + [anon_sym_BSLASHACRlongpl] = ACTIONS(3781), + [anon_sym_BSLASHacrfull] = ACTIONS(3781), + [anon_sym_BSLASHAcrfull] = ACTIONS(3781), + [anon_sym_BSLASHACRfull] = ACTIONS(3781), + [anon_sym_BSLASHacrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(3781), + [anon_sym_BSLASHACRfullpl] = ACTIONS(3781), + [anon_sym_BSLASHacs] = ACTIONS(3781), + [anon_sym_BSLASHAcs] = ACTIONS(3781), + [anon_sym_BSLASHacsp] = ACTIONS(3781), + [anon_sym_BSLASHAcsp] = ACTIONS(3781), + [anon_sym_BSLASHacl] = ACTIONS(3781), + [anon_sym_BSLASHAcl] = ACTIONS(3781), + [anon_sym_BSLASHaclp] = ACTIONS(3781), + [anon_sym_BSLASHAclp] = ACTIONS(3781), + [anon_sym_BSLASHacf] = ACTIONS(3781), + [anon_sym_BSLASHAcf] = ACTIONS(3781), + [anon_sym_BSLASHacfp] = ACTIONS(3781), + [anon_sym_BSLASHAcfp] = ACTIONS(3781), + [anon_sym_BSLASHac] = ACTIONS(3781), + [anon_sym_BSLASHAc] = ACTIONS(3781), + [anon_sym_BSLASHacp] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(3781), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(3781), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(3781), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(3781), + [anon_sym_BSLASHnewtheorem] = ACTIONS(3783), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(3783), + [anon_sym_BSLASHdefinecolor] = ACTIONS(3785), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(3787), + [anon_sym_BSLASHcolor] = ACTIONS(3789), + [anon_sym_BSLASHcolorbox] = ACTIONS(3789), + [anon_sym_BSLASHtextcolor] = ACTIONS(3789), + [anon_sym_BSLASHpagecolor] = ACTIONS(3789), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(3791), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(3791), + [anon_sym_BSLASHtext] = ACTIONS(2677), + [anon_sym_BSLASHintertext] = ACTIONS(2677), + [anon_sym_shortintertext] = ACTIONS(2677), }, [268] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2418), - [sym_operator] = STATE(1509), - [sym__trivia_text_comment] = STATE(2417), - [sym__trivia_text_verbatim] = STATE(2406), - [sym__trivia_text_listing] = STATE(2402), - [sym__trivia_text_minted] = STATE(2399), - [sym__trivia_text_pycode] = STATE(2394), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_comment] = ACTIONS(4313), - [anon_sym_verbatim] = ACTIONS(4315), - [anon_sym_lstlisting] = ACTIONS(4317), - [anon_sym_minted] = ACTIONS(4319), - [anon_sym_pycode] = ACTIONS(4321), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [269] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(281), - [aux_sym__section_repeat6] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(4389), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [anon_sym_RBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2407), + [sym_operator] = STATE(1560), + [sym__trivia_text_comment] = STATE(2406), + [sym__trivia_text_verbatim] = STATE(2442), + [sym__trivia_text_listing] = STATE(2396), + [sym__trivia_text_minted] = STATE(2392), + [sym__trivia_text_pycode] = STATE(2389), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_comment] = ACTIONS(4369), + [anon_sym_verbatim] = ACTIONS(4371), + [anon_sym_lstlisting] = ACTIONS(4373), + [anon_sym_minted] = ACTIONS(4375), + [anon_sym_pycode] = ACTIONS(4377), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [270] = { + [269] = { [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(4393), - [sym_command_name] = ACTIONS(4395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_BSLASHpart] = ACTIONS(4395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddpart] = ACTIONS(4395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHchapter] = ACTIONS(4395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddchap] = ACTIONS(4395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsection] = ACTIONS(4395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddsec] = ACTIONS(4395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHparagraph] = ACTIONS(4395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4393), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(1837), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4395), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_RBRACE] = ACTIONS(4393), - [sym_word] = ACTIONS(4395), - [sym_placeholder] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym__] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_PIPE] = ACTIONS(4395), - [anon_sym_COLON] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4393), - [anon_sym_BSLASHbegin] = ACTIONS(4395), - [anon_sym_BSLASHusepackage] = ACTIONS(4395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4395), - [anon_sym_BSLASHinclude] = ACTIONS(4395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4395), - [anon_sym_BSLASHinput] = ACTIONS(4395), - [anon_sym_BSLASHsubfile] = ACTIONS(4395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4395), - [anon_sym_BSLASHbibliography] = ACTIONS(4395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4395), - [anon_sym_BSLASHincludesvg] = ACTIONS(4395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4395), - [anon_sym_BSLASHsubimport] = ACTIONS(4395), - [anon_sym_BSLASHinputfrom] = ACTIONS(4395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4395), - [anon_sym_BSLASHincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHcaption] = ACTIONS(4395), - [anon_sym_BSLASHcite] = ACTIONS(4395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCite] = ACTIONS(4395), - [anon_sym_BSLASHnocite] = ACTIONS(4395), - [anon_sym_BSLASHcitet] = ACTIONS(4395), - [anon_sym_BSLASHcitep] = ACTIONS(4395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteauthor] = ACTIONS(4395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitetitle] = ACTIONS(4395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteyear] = ACTIONS(4395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitedate] = ACTIONS(4395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteurl] = ACTIONS(4395), - [anon_sym_BSLASHfullcite] = ACTIONS(4395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4395), - [anon_sym_BSLASHcitealt] = ACTIONS(4395), - [anon_sym_BSLASHcitealp] = ACTIONS(4395), - [anon_sym_BSLASHcitetext] = ACTIONS(4395), - [anon_sym_BSLASHparencite] = ACTIONS(4395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHParencite] = ACTIONS(4395), - [anon_sym_BSLASHfootcite] = ACTIONS(4395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4395), - [anon_sym_BSLASHtextcite] = ACTIONS(4395), - [anon_sym_BSLASHTextcite] = ACTIONS(4395), - [anon_sym_BSLASHsmartcite] = ACTIONS(4395), - [anon_sym_BSLASHSmartcite] = ACTIONS(4395), - [anon_sym_BSLASHsupercite] = ACTIONS(4395), - [anon_sym_BSLASHautocite] = ACTIONS(4395), - [anon_sym_BSLASHAutocite] = ACTIONS(4395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHvolcite] = ACTIONS(4395), - [anon_sym_BSLASHVolcite] = ACTIONS(4395), - [anon_sym_BSLASHpvolcite] = ACTIONS(4395), - [anon_sym_BSLASHPvolcite] = ACTIONS(4395), - [anon_sym_BSLASHfvolcite] = ACTIONS(4395), - [anon_sym_BSLASHftvolcite] = ACTIONS(4395), - [anon_sym_BSLASHsvolcite] = ACTIONS(4395), - [anon_sym_BSLASHSvolcite] = ACTIONS(4395), - [anon_sym_BSLASHtvolcite] = ACTIONS(4395), - [anon_sym_BSLASHTvolcite] = ACTIONS(4395), - [anon_sym_BSLASHavolcite] = ACTIONS(4395), - [anon_sym_BSLASHAvolcite] = ACTIONS(4395), - [anon_sym_BSLASHnotecite] = ACTIONS(4395), - [anon_sym_BSLASHNotecite] = ACTIONS(4395), - [anon_sym_BSLASHpnotecite] = ACTIONS(4395), - [anon_sym_BSLASHPnotecite] = ACTIONS(4395), - [anon_sym_BSLASHfnotecite] = ACTIONS(4395), - [anon_sym_BSLASHlabel] = ACTIONS(4395), - [anon_sym_BSLASHref] = ACTIONS(4395), - [anon_sym_BSLASHeqref] = ACTIONS(4395), - [anon_sym_BSLASHvref] = ACTIONS(4395), - [anon_sym_BSLASHVref] = ACTIONS(4395), - [anon_sym_BSLASHautoref] = ACTIONS(4395), - [anon_sym_BSLASHpageref] = ACTIONS(4395), - [anon_sym_BSLASHcref] = ACTIONS(4395), - [anon_sym_BSLASHCref] = ACTIONS(4395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnameCref] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHlabelcref] = ACTIONS(4395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCrefrange] = ACTIONS(4395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnewlabel] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4393), - [anon_sym_BSLASHdef] = ACTIONS(4395), - [anon_sym_BSLASHlet] = ACTIONS(4395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4395), - [anon_sym_BSLASHgls] = ACTIONS(4395), - [anon_sym_BSLASHGls] = ACTIONS(4395), - [anon_sym_BSLASHGLS] = ACTIONS(4395), - [anon_sym_BSLASHglspl] = ACTIONS(4395), - [anon_sym_BSLASHGlspl] = ACTIONS(4395), - [anon_sym_BSLASHGLSpl] = ACTIONS(4395), - [anon_sym_BSLASHglsdisp] = ACTIONS(4395), - [anon_sym_BSLASHglslink] = ACTIONS(4395), - [anon_sym_BSLASHglstext] = ACTIONS(4395), - [anon_sym_BSLASHGlstext] = ACTIONS(4395), - [anon_sym_BSLASHGLStext] = ACTIONS(4395), - [anon_sym_BSLASHglsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4395), - [anon_sym_BSLASHglsplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSplural] = ACTIONS(4395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHglsname] = ACTIONS(4395), - [anon_sym_BSLASHGlsname] = ACTIONS(4395), - [anon_sym_BSLASHGLSname] = ACTIONS(4395), - [anon_sym_BSLASHglssymbol] = ACTIONS(4395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4395), - [anon_sym_BSLASHglsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4395), - [anon_sym_BSLASHglsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4395), - [anon_sym_BSLASHglsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4395), - [anon_sym_BSLASHglsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4395), - [anon_sym_BSLASHglsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4395), - [anon_sym_BSLASHnewacronym] = ACTIONS(4395), - [anon_sym_BSLASHacrshort] = ACTIONS(4395), - [anon_sym_BSLASHAcrshort] = ACTIONS(4395), - [anon_sym_BSLASHACRshort] = ACTIONS(4395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4395), - [anon_sym_BSLASHacrlong] = ACTIONS(4395), - [anon_sym_BSLASHAcrlong] = ACTIONS(4395), - [anon_sym_BSLASHACRlong] = ACTIONS(4395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4395), - [anon_sym_BSLASHacrfull] = ACTIONS(4395), - [anon_sym_BSLASHAcrfull] = ACTIONS(4395), - [anon_sym_BSLASHACRfull] = ACTIONS(4395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4395), - [anon_sym_BSLASHacs] = ACTIONS(4395), - [anon_sym_BSLASHAcs] = ACTIONS(4395), - [anon_sym_BSLASHacsp] = ACTIONS(4395), - [anon_sym_BSLASHAcsp] = ACTIONS(4395), - [anon_sym_BSLASHacl] = ACTIONS(4395), - [anon_sym_BSLASHAcl] = ACTIONS(4395), - [anon_sym_BSLASHaclp] = ACTIONS(4395), - [anon_sym_BSLASHAclp] = ACTIONS(4395), - [anon_sym_BSLASHacf] = ACTIONS(4395), - [anon_sym_BSLASHAcf] = ACTIONS(4395), - [anon_sym_BSLASHacfp] = ACTIONS(4395), - [anon_sym_BSLASHAcfp] = ACTIONS(4395), - [anon_sym_BSLASHac] = ACTIONS(4395), - [anon_sym_BSLASHAc] = ACTIONS(4395), - [anon_sym_BSLASHacp] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4395), - [anon_sym_BSLASHcolor] = ACTIONS(4395), - [anon_sym_BSLASHcolorbox] = ACTIONS(4395), - [anon_sym_BSLASHtextcolor] = ACTIONS(4395), - [anon_sym_BSLASHpagecolor] = ACTIONS(4395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4395), - }, - [271] = { - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(287), - [aux_sym__section_repeat4] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [272] = { - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(343), - [aux_sym__section_repeat3] = STATE(343), - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), + [270] = { + [sym__paragraph_declaration] = STATE(172), + [sym_paragraph] = STATE(325), + [aux_sym__section_repeat6] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), }, - [273] = { + [271] = { [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(4445), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [274] = { + [272] = { + [sym_curly_group] = STATE(698), + [sym_mixed_group] = STATE(698), + [aux_sym_generic_command_repeat1] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(4449), + [sym_command_name] = ACTIONS(4451), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_BSLASHpart] = ACTIONS(4451), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddpart] = ACTIONS(4451), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4449), + [anon_sym_BSLASHchapter] = ACTIONS(4451), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddchap] = ACTIONS(4451), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsection] = ACTIONS(4451), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddsec] = ACTIONS(4451), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubsection] = ACTIONS(4451), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4451), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHparagraph] = ACTIONS(4451), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4451), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4449), + [anon_sym_BSLASHitem] = ACTIONS(4451), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4449), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(4449), + [sym_word] = ACTIONS(4451), + [sym_placeholder] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(4451), + [anon_sym__] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_PIPE] = ACTIONS(4451), + [anon_sym_COLON] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), + [anon_sym_DOLLAR] = ACTIONS(4451), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), + [anon_sym_BSLASHbegin] = ACTIONS(4451), + [anon_sym_BSLASHusepackage] = ACTIONS(4451), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), + [anon_sym_BSLASHinclude] = ACTIONS(4451), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), + [anon_sym_BSLASHinput] = ACTIONS(4451), + [anon_sym_BSLASHsubfile] = ACTIONS(4451), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), + [anon_sym_BSLASHbibliography] = ACTIONS(4451), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), + [anon_sym_BSLASHincludesvg] = ACTIONS(4451), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), + [anon_sym_BSLASHimport] = ACTIONS(4451), + [anon_sym_BSLASHsubimport] = ACTIONS(4451), + [anon_sym_BSLASHinputfrom] = ACTIONS(4451), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), + [anon_sym_BSLASHincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHcaption] = ACTIONS(4451), + [anon_sym_BSLASHcite] = ACTIONS(4451), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCite] = ACTIONS(4451), + [anon_sym_BSLASHnocite] = ACTIONS(4451), + [anon_sym_BSLASHcitet] = ACTIONS(4451), + [anon_sym_BSLASHcitep] = ACTIONS(4451), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteauthor] = ACTIONS(4451), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitetitle] = ACTIONS(4451), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteyear] = ACTIONS(4451), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitedate] = ACTIONS(4451), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteurl] = ACTIONS(4451), + [anon_sym_BSLASHfullcite] = ACTIONS(4451), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), + [anon_sym_BSLASHcitealt] = ACTIONS(4451), + [anon_sym_BSLASHcitealp] = ACTIONS(4451), + [anon_sym_BSLASHcitetext] = ACTIONS(4451), + [anon_sym_BSLASHparencite] = ACTIONS(4451), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHParencite] = ACTIONS(4451), + [anon_sym_BSLASHfootcite] = ACTIONS(4451), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), + [anon_sym_BSLASHtextcite] = ACTIONS(4451), + [anon_sym_BSLASHTextcite] = ACTIONS(4451), + [anon_sym_BSLASHsmartcite] = ACTIONS(4451), + [anon_sym_BSLASHSmartcite] = ACTIONS(4451), + [anon_sym_BSLASHsupercite] = ACTIONS(4451), + [anon_sym_BSLASHautocite] = ACTIONS(4451), + [anon_sym_BSLASHAutocite] = ACTIONS(4451), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHvolcite] = ACTIONS(4451), + [anon_sym_BSLASHVolcite] = ACTIONS(4451), + [anon_sym_BSLASHpvolcite] = ACTIONS(4451), + [anon_sym_BSLASHPvolcite] = ACTIONS(4451), + [anon_sym_BSLASHfvolcite] = ACTIONS(4451), + [anon_sym_BSLASHftvolcite] = ACTIONS(4451), + [anon_sym_BSLASHsvolcite] = ACTIONS(4451), + [anon_sym_BSLASHSvolcite] = ACTIONS(4451), + [anon_sym_BSLASHtvolcite] = ACTIONS(4451), + [anon_sym_BSLASHTvolcite] = ACTIONS(4451), + [anon_sym_BSLASHavolcite] = ACTIONS(4451), + [anon_sym_BSLASHAvolcite] = ACTIONS(4451), + [anon_sym_BSLASHnotecite] = ACTIONS(4451), + [anon_sym_BSLASHNotecite] = ACTIONS(4451), + [anon_sym_BSLASHpnotecite] = ACTIONS(4451), + [anon_sym_BSLASHPnotecite] = ACTIONS(4451), + [anon_sym_BSLASHfnotecite] = ACTIONS(4451), + [anon_sym_BSLASHlabel] = ACTIONS(4451), + [anon_sym_BSLASHref] = ACTIONS(4451), + [anon_sym_BSLASHeqref] = ACTIONS(4451), + [anon_sym_BSLASHvref] = ACTIONS(4451), + [anon_sym_BSLASHVref] = ACTIONS(4451), + [anon_sym_BSLASHautoref] = ACTIONS(4451), + [anon_sym_BSLASHpageref] = ACTIONS(4451), + [anon_sym_BSLASHcref] = ACTIONS(4451), + [anon_sym_BSLASHCref] = ACTIONS(4451), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnameCref] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHlabelcref] = ACTIONS(4451), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCrefrange] = ACTIONS(4451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnewlabel] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), + [anon_sym_BSLASHdef] = ACTIONS(4451), + [anon_sym_BSLASHlet] = ACTIONS(4451), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), + [anon_sym_BSLASHgls] = ACTIONS(4451), + [anon_sym_BSLASHGls] = ACTIONS(4451), + [anon_sym_BSLASHGLS] = ACTIONS(4451), + [anon_sym_BSLASHglspl] = ACTIONS(4451), + [anon_sym_BSLASHGlspl] = ACTIONS(4451), + [anon_sym_BSLASHGLSpl] = ACTIONS(4451), + [anon_sym_BSLASHglsdisp] = ACTIONS(4451), + [anon_sym_BSLASHglslink] = ACTIONS(4451), + [anon_sym_BSLASHglstext] = ACTIONS(4451), + [anon_sym_BSLASHGlstext] = ACTIONS(4451), + [anon_sym_BSLASHGLStext] = ACTIONS(4451), + [anon_sym_BSLASHglsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), + [anon_sym_BSLASHglsplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSplural] = ACTIONS(4451), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHglsname] = ACTIONS(4451), + [anon_sym_BSLASHGlsname] = ACTIONS(4451), + [anon_sym_BSLASHGLSname] = ACTIONS(4451), + [anon_sym_BSLASHglssymbol] = ACTIONS(4451), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), + [anon_sym_BSLASHglsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), + [anon_sym_BSLASHglsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), + [anon_sym_BSLASHglsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), + [anon_sym_BSLASHglsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), + [anon_sym_BSLASHglsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), + [anon_sym_BSLASHnewacronym] = ACTIONS(4451), + [anon_sym_BSLASHacrshort] = ACTIONS(4451), + [anon_sym_BSLASHAcrshort] = ACTIONS(4451), + [anon_sym_BSLASHACRshort] = ACTIONS(4451), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), + [anon_sym_BSLASHacrlong] = ACTIONS(4451), + [anon_sym_BSLASHAcrlong] = ACTIONS(4451), + [anon_sym_BSLASHACRlong] = ACTIONS(4451), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), + [anon_sym_BSLASHacrfull] = ACTIONS(4451), + [anon_sym_BSLASHAcrfull] = ACTIONS(4451), + [anon_sym_BSLASHACRfull] = ACTIONS(4451), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), + [anon_sym_BSLASHacs] = ACTIONS(4451), + [anon_sym_BSLASHAcs] = ACTIONS(4451), + [anon_sym_BSLASHacsp] = ACTIONS(4451), + [anon_sym_BSLASHAcsp] = ACTIONS(4451), + [anon_sym_BSLASHacl] = ACTIONS(4451), + [anon_sym_BSLASHAcl] = ACTIONS(4451), + [anon_sym_BSLASHaclp] = ACTIONS(4451), + [anon_sym_BSLASHAclp] = ACTIONS(4451), + [anon_sym_BSLASHacf] = ACTIONS(4451), + [anon_sym_BSLASHAcf] = ACTIONS(4451), + [anon_sym_BSLASHacfp] = ACTIONS(4451), + [anon_sym_BSLASHAcfp] = ACTIONS(4451), + [anon_sym_BSLASHac] = ACTIONS(4451), + [anon_sym_BSLASHAc] = ACTIONS(4451), + [anon_sym_BSLASHacp] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), + [anon_sym_BSLASHcolor] = ACTIONS(4451), + [anon_sym_BSLASHcolorbox] = ACTIONS(4451), + [anon_sym_BSLASHtextcolor] = ACTIONS(4451), + [anon_sym_BSLASHpagecolor] = ACTIONS(4451), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), + [anon_sym_BSLASHtext] = ACTIONS(4451), + [anon_sym_BSLASHintertext] = ACTIONS(4451), + [anon_sym_shortintertext] = ACTIONS(4451), + }, + [273] = { [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(4445), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [275] = { + [274] = { [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(281), - [aux_sym__section_repeat6] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), + [sym_paragraph] = STATE(325), + [aux_sym__section_repeat6] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(4445), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [276] = { + [275] = { [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(280), - [aux_sym__section_repeat5] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), + [sym_subsubsection] = STATE(326), + [aux_sym__section_repeat5] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(4445), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [277] = { + [276] = { [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(287), - [aux_sym__section_repeat4] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), + [sym_subsection] = STATE(327), + [aux_sym__section_repeat4] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(4445), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [278] = { + [277] = { [sym__section_declaration] = STATE(142), - [sym_section] = STATE(343), - [aux_sym__section_repeat3] = STATE(343), - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), + [sym_section] = STATE(328), + [aux_sym__section_repeat3] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(4445), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), [anon_sym_BSLASHsection] = ACTIONS(21), [anon_sym_BSLASHsection_STAR] = ACTIONS(23), [anon_sym_BSLASHaddsec] = ACTIONS(21), [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [278] = { + [sym__chapter_declaration] = STATE(133), + [sym_chapter] = STATE(329), + [aux_sym__section_repeat2] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(1837), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(17), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), + [anon_sym_BSLASHaddchap] = ACTIONS(17), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, [279] = { [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(339), - [aux_sym__section_repeat2] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), + [sym_chapter] = STATE(329), + [aux_sym__section_repeat2] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(4445), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), [anon_sym_BSLASHchapter] = ACTIONS(17), [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), [anon_sym_BSLASHaddchap] = ACTIONS(17), [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [anon_sym_RBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, [280] = { - [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(280), - [aux_sym__section_repeat5] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(4397), - [sym_command_name] = ACTIONS(4399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4399), - [anon_sym_LPAREN] = ACTIONS(4397), - [anon_sym_RPAREN] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4397), - [anon_sym_RBRACK] = ACTIONS(4397), - [anon_sym_COMMA] = ACTIONS(4397), - [anon_sym_EQ] = ACTIONS(4397), - [anon_sym_BSLASHpart] = ACTIONS(4399), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddpart] = ACTIONS(4399), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4397), - [anon_sym_BSLASHchapter] = ACTIONS(4399), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddchap] = ACTIONS(4399), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsection] = ACTIONS(4399), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddsec] = ACTIONS(4399), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubsection] = ACTIONS(4399), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4401), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4404), - [anon_sym_BSLASHparagraph] = ACTIONS(4399), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4399), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4397), - [anon_sym_BSLASHitem] = ACTIONS(4399), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(4397), - [anon_sym_RBRACE] = ACTIONS(4397), - [sym_word] = ACTIONS(4399), - [sym_placeholder] = ACTIONS(4397), - [anon_sym_PLUS] = ACTIONS(4399), - [anon_sym_DASH] = ACTIONS(4399), - [anon_sym_STAR] = ACTIONS(4399), - [anon_sym_SLASH] = ACTIONS(4399), - [anon_sym_CARET] = ACTIONS(4399), - [anon_sym__] = ACTIONS(4399), - [anon_sym_LT] = ACTIONS(4399), - [anon_sym_GT] = ACTIONS(4399), - [anon_sym_BANG] = ACTIONS(4399), - [anon_sym_PIPE] = ACTIONS(4399), - [anon_sym_COLON] = ACTIONS(4399), - [anon_sym_SQUOTE] = ACTIONS(4399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4397), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4397), - [anon_sym_DOLLAR] = ACTIONS(4399), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4397), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4397), - [anon_sym_BSLASHbegin] = ACTIONS(4399), - [anon_sym_BSLASHusepackage] = ACTIONS(4399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4399), - [anon_sym_BSLASHinclude] = ACTIONS(4399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4399), - [anon_sym_BSLASHinput] = ACTIONS(4399), - [anon_sym_BSLASHsubfile] = ACTIONS(4399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4399), - [anon_sym_BSLASHbibliography] = ACTIONS(4399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4399), - [anon_sym_BSLASHincludesvg] = ACTIONS(4399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4399), - [anon_sym_BSLASHimport] = ACTIONS(4399), - [anon_sym_BSLASHsubimport] = ACTIONS(4399), - [anon_sym_BSLASHinputfrom] = ACTIONS(4399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4399), - [anon_sym_BSLASHincludefrom] = ACTIONS(4399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4399), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCite] = ACTIONS(4399), - [anon_sym_BSLASHnocite] = ACTIONS(4399), - [anon_sym_BSLASHcitet] = ACTIONS(4399), - [anon_sym_BSLASHcitep] = ACTIONS(4399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteauthor] = ACTIONS(4399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitetitle] = ACTIONS(4399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteyear] = ACTIONS(4399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitedate] = ACTIONS(4399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteurl] = ACTIONS(4399), - [anon_sym_BSLASHfullcite] = ACTIONS(4399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4399), - [anon_sym_BSLASHcitealt] = ACTIONS(4399), - [anon_sym_BSLASHcitealp] = ACTIONS(4399), - [anon_sym_BSLASHcitetext] = ACTIONS(4399), - [anon_sym_BSLASHparencite] = ACTIONS(4399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHParencite] = ACTIONS(4399), - [anon_sym_BSLASHfootcite] = ACTIONS(4399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4399), - [anon_sym_BSLASHtextcite] = ACTIONS(4399), - [anon_sym_BSLASHTextcite] = ACTIONS(4399), - [anon_sym_BSLASHsmartcite] = ACTIONS(4399), - [anon_sym_BSLASHSmartcite] = ACTIONS(4399), - [anon_sym_BSLASHsupercite] = ACTIONS(4399), - [anon_sym_BSLASHautocite] = ACTIONS(4399), - [anon_sym_BSLASHAutocite] = ACTIONS(4399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHvolcite] = ACTIONS(4399), - [anon_sym_BSLASHVolcite] = ACTIONS(4399), - [anon_sym_BSLASHpvolcite] = ACTIONS(4399), - [anon_sym_BSLASHPvolcite] = ACTIONS(4399), - [anon_sym_BSLASHfvolcite] = ACTIONS(4399), - [anon_sym_BSLASHftvolcite] = ACTIONS(4399), - [anon_sym_BSLASHsvolcite] = ACTIONS(4399), - [anon_sym_BSLASHSvolcite] = ACTIONS(4399), - [anon_sym_BSLASHtvolcite] = ACTIONS(4399), - [anon_sym_BSLASHTvolcite] = ACTIONS(4399), - [anon_sym_BSLASHavolcite] = ACTIONS(4399), - [anon_sym_BSLASHAvolcite] = ACTIONS(4399), - [anon_sym_BSLASHnotecite] = ACTIONS(4399), - [anon_sym_BSLASHNotecite] = ACTIONS(4399), - [anon_sym_BSLASHpnotecite] = ACTIONS(4399), - [anon_sym_BSLASHPnotecite] = ACTIONS(4399), - [anon_sym_BSLASHfnotecite] = ACTIONS(4399), - [anon_sym_BSLASHlabel] = ACTIONS(4399), - [anon_sym_BSLASHref] = ACTIONS(4399), - [anon_sym_BSLASHeqref] = ACTIONS(4399), - [anon_sym_BSLASHvref] = ACTIONS(4399), - [anon_sym_BSLASHVref] = ACTIONS(4399), - [anon_sym_BSLASHautoref] = ACTIONS(4399), - [anon_sym_BSLASHpageref] = ACTIONS(4399), - [anon_sym_BSLASHcref] = ACTIONS(4399), - [anon_sym_BSLASHCref] = ACTIONS(4399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4397), - [anon_sym_BSLASHnamecref] = ACTIONS(4399), - [anon_sym_BSLASHnameCref] = ACTIONS(4399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4399), - [anon_sym_BSLASHlabelcref] = ACTIONS(4399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4399), - [anon_sym_BSLASHcrefrange] = ACTIONS(4399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCrefrange] = ACTIONS(4399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4397), - [anon_sym_BSLASHnewlabel] = ACTIONS(4399), - [anon_sym_BSLASHnewcommand] = ACTIONS(4399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4397), - [anon_sym_BSLASHdef] = ACTIONS(4399), - [anon_sym_BSLASHlet] = ACTIONS(4399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4399), - [anon_sym_BSLASHgls] = ACTIONS(4399), - [anon_sym_BSLASHGls] = ACTIONS(4399), - [anon_sym_BSLASHGLS] = ACTIONS(4399), - [anon_sym_BSLASHglspl] = ACTIONS(4399), - [anon_sym_BSLASHGlspl] = ACTIONS(4399), - [anon_sym_BSLASHGLSpl] = ACTIONS(4399), - [anon_sym_BSLASHglsdisp] = ACTIONS(4399), - [anon_sym_BSLASHglslink] = ACTIONS(4399), - [anon_sym_BSLASHglstext] = ACTIONS(4399), - [anon_sym_BSLASHGlstext] = ACTIONS(4399), - [anon_sym_BSLASHGLStext] = ACTIONS(4399), - [anon_sym_BSLASHglsfirst] = ACTIONS(4399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4399), - [anon_sym_BSLASHglsplural] = ACTIONS(4399), - [anon_sym_BSLASHGlsplural] = ACTIONS(4399), - [anon_sym_BSLASHGLSplural] = ACTIONS(4399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHglsname] = ACTIONS(4399), - [anon_sym_BSLASHGlsname] = ACTIONS(4399), - [anon_sym_BSLASHGLSname] = ACTIONS(4399), - [anon_sym_BSLASHglssymbol] = ACTIONS(4399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4399), - [anon_sym_BSLASHglsdesc] = ACTIONS(4399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4399), - [anon_sym_BSLASHglsuseri] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4399), - [anon_sym_BSLASHglsuserii] = ACTIONS(4399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4399), - [anon_sym_BSLASHglsuserv] = ACTIONS(4399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4399), - [anon_sym_BSLASHglsuservi] = ACTIONS(4399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4399), - [anon_sym_BSLASHnewacronym] = ACTIONS(4399), - [anon_sym_BSLASHacrshort] = ACTIONS(4399), - [anon_sym_BSLASHAcrshort] = ACTIONS(4399), - [anon_sym_BSLASHACRshort] = ACTIONS(4399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4399), - [anon_sym_BSLASHacrlong] = ACTIONS(4399), - [anon_sym_BSLASHAcrlong] = ACTIONS(4399), - [anon_sym_BSLASHACRlong] = ACTIONS(4399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4399), - [anon_sym_BSLASHacrfull] = ACTIONS(4399), - [anon_sym_BSLASHAcrfull] = ACTIONS(4399), - [anon_sym_BSLASHACRfull] = ACTIONS(4399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4399), - [anon_sym_BSLASHacs] = ACTIONS(4399), - [anon_sym_BSLASHAcs] = ACTIONS(4399), - [anon_sym_BSLASHacsp] = ACTIONS(4399), - [anon_sym_BSLASHAcsp] = ACTIONS(4399), - [anon_sym_BSLASHacl] = ACTIONS(4399), - [anon_sym_BSLASHAcl] = ACTIONS(4399), - [anon_sym_BSLASHaclp] = ACTIONS(4399), - [anon_sym_BSLASHAclp] = ACTIONS(4399), - [anon_sym_BSLASHacf] = ACTIONS(4399), - [anon_sym_BSLASHAcf] = ACTIONS(4399), - [anon_sym_BSLASHacfp] = ACTIONS(4399), - [anon_sym_BSLASHAcfp] = ACTIONS(4399), - [anon_sym_BSLASHac] = ACTIONS(4399), - [anon_sym_BSLASHAc] = ACTIONS(4399), - [anon_sym_BSLASHacp] = ACTIONS(4399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4399), - [anon_sym_BSLASHcolor] = ACTIONS(4399), - [anon_sym_BSLASHcolorbox] = ACTIONS(4399), - [anon_sym_BSLASHtextcolor] = ACTIONS(4399), - [anon_sym_BSLASHpagecolor] = ACTIONS(4399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4399), + [sym__part_declaration] = STATE(123), + [sym_part] = STATE(331), + [aux_sym__section_repeat1] = STATE(331), + [ts_builtin_sym_end] = ACTIONS(4445), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(13), + [anon_sym_BSLASHpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHaddpart] = ACTIONS(13), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, [281] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(281), - [aux_sym__section_repeat6] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(4407), - [sym_command_name] = ACTIONS(4409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_RPAREN] = ACTIONS(4407), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_RBRACK] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_BSLASHpart] = ACTIONS(4409), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddpart] = ACTIONS(4409), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4407), - [anon_sym_BSLASHchapter] = ACTIONS(4409), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddchap] = ACTIONS(4409), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsection] = ACTIONS(4409), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddsec] = ACTIONS(4409), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsubsection] = ACTIONS(4409), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4409), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHparagraph] = ACTIONS(4411), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4414), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4409), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4407), - [anon_sym_BSLASHitem] = ACTIONS(4409), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4407), - [anon_sym_LBRACE] = ACTIONS(4407), - [anon_sym_RBRACE] = ACTIONS(4407), - [sym_word] = ACTIONS(4409), - [sym_placeholder] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4409), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_STAR] = ACTIONS(4409), - [anon_sym_SLASH] = ACTIONS(4409), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym__] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4409), - [anon_sym_GT] = ACTIONS(4409), - [anon_sym_BANG] = ACTIONS(4409), - [anon_sym_PIPE] = ACTIONS(4409), - [anon_sym_COLON] = ACTIONS(4409), - [anon_sym_SQUOTE] = ACTIONS(4409), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4407), - [anon_sym_DOLLAR] = ACTIONS(4409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4407), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4407), - [anon_sym_BSLASHbegin] = ACTIONS(4409), - [anon_sym_BSLASHusepackage] = ACTIONS(4409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4409), - [anon_sym_BSLASHinclude] = ACTIONS(4409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4409), - [anon_sym_BSLASHinput] = ACTIONS(4409), - [anon_sym_BSLASHsubfile] = ACTIONS(4409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4409), - [anon_sym_BSLASHbibliography] = ACTIONS(4409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4409), - [anon_sym_BSLASHincludesvg] = ACTIONS(4409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4409), - [anon_sym_BSLASHimport] = ACTIONS(4409), - [anon_sym_BSLASHsubimport] = ACTIONS(4409), - [anon_sym_BSLASHinputfrom] = ACTIONS(4409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4409), - [anon_sym_BSLASHincludefrom] = ACTIONS(4409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4409), - [anon_sym_BSLASHcaption] = ACTIONS(4409), - [anon_sym_BSLASHcite] = ACTIONS(4409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCite] = ACTIONS(4409), - [anon_sym_BSLASHnocite] = ACTIONS(4409), - [anon_sym_BSLASHcitet] = ACTIONS(4409), - [anon_sym_BSLASHcitep] = ACTIONS(4409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteauthor] = ACTIONS(4409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitetitle] = ACTIONS(4409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteyear] = ACTIONS(4409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitedate] = ACTIONS(4409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteurl] = ACTIONS(4409), - [anon_sym_BSLASHfullcite] = ACTIONS(4409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4409), - [anon_sym_BSLASHcitealt] = ACTIONS(4409), - [anon_sym_BSLASHcitealp] = ACTIONS(4409), - [anon_sym_BSLASHcitetext] = ACTIONS(4409), - [anon_sym_BSLASHparencite] = ACTIONS(4409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHParencite] = ACTIONS(4409), - [anon_sym_BSLASHfootcite] = ACTIONS(4409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4409), - [anon_sym_BSLASHtextcite] = ACTIONS(4409), - [anon_sym_BSLASHTextcite] = ACTIONS(4409), - [anon_sym_BSLASHsmartcite] = ACTIONS(4409), - [anon_sym_BSLASHSmartcite] = ACTIONS(4409), - [anon_sym_BSLASHsupercite] = ACTIONS(4409), - [anon_sym_BSLASHautocite] = ACTIONS(4409), - [anon_sym_BSLASHAutocite] = ACTIONS(4409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHvolcite] = ACTIONS(4409), - [anon_sym_BSLASHVolcite] = ACTIONS(4409), - [anon_sym_BSLASHpvolcite] = ACTIONS(4409), - [anon_sym_BSLASHPvolcite] = ACTIONS(4409), - [anon_sym_BSLASHfvolcite] = ACTIONS(4409), - [anon_sym_BSLASHftvolcite] = ACTIONS(4409), - [anon_sym_BSLASHsvolcite] = ACTIONS(4409), - [anon_sym_BSLASHSvolcite] = ACTIONS(4409), - [anon_sym_BSLASHtvolcite] = ACTIONS(4409), - [anon_sym_BSLASHTvolcite] = ACTIONS(4409), - [anon_sym_BSLASHavolcite] = ACTIONS(4409), - [anon_sym_BSLASHAvolcite] = ACTIONS(4409), - [anon_sym_BSLASHnotecite] = ACTIONS(4409), - [anon_sym_BSLASHNotecite] = ACTIONS(4409), - [anon_sym_BSLASHpnotecite] = ACTIONS(4409), - [anon_sym_BSLASHPnotecite] = ACTIONS(4409), - [anon_sym_BSLASHfnotecite] = ACTIONS(4409), - [anon_sym_BSLASHlabel] = ACTIONS(4409), - [anon_sym_BSLASHref] = ACTIONS(4409), - [anon_sym_BSLASHeqref] = ACTIONS(4409), - [anon_sym_BSLASHvref] = ACTIONS(4409), - [anon_sym_BSLASHVref] = ACTIONS(4409), - [anon_sym_BSLASHautoref] = ACTIONS(4409), - [anon_sym_BSLASHpageref] = ACTIONS(4409), - [anon_sym_BSLASHcref] = ACTIONS(4409), - [anon_sym_BSLASHCref] = ACTIONS(4409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4407), - [anon_sym_BSLASHnamecref] = ACTIONS(4409), - [anon_sym_BSLASHnameCref] = ACTIONS(4409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4409), - [anon_sym_BSLASHlabelcref] = ACTIONS(4409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4409), - [anon_sym_BSLASHcrefrange] = ACTIONS(4409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCrefrange] = ACTIONS(4409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4407), - [anon_sym_BSLASHnewlabel] = ACTIONS(4409), - [anon_sym_BSLASHnewcommand] = ACTIONS(4409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4407), - [anon_sym_BSLASHdef] = ACTIONS(4409), - [anon_sym_BSLASHlet] = ACTIONS(4409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4409), - [anon_sym_BSLASHgls] = ACTIONS(4409), - [anon_sym_BSLASHGls] = ACTIONS(4409), - [anon_sym_BSLASHGLS] = ACTIONS(4409), - [anon_sym_BSLASHglspl] = ACTIONS(4409), - [anon_sym_BSLASHGlspl] = ACTIONS(4409), - [anon_sym_BSLASHGLSpl] = ACTIONS(4409), - [anon_sym_BSLASHglsdisp] = ACTIONS(4409), - [anon_sym_BSLASHglslink] = ACTIONS(4409), - [anon_sym_BSLASHglstext] = ACTIONS(4409), - [anon_sym_BSLASHGlstext] = ACTIONS(4409), - [anon_sym_BSLASHGLStext] = ACTIONS(4409), - [anon_sym_BSLASHglsfirst] = ACTIONS(4409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4409), - [anon_sym_BSLASHglsplural] = ACTIONS(4409), - [anon_sym_BSLASHGlsplural] = ACTIONS(4409), - [anon_sym_BSLASHGLSplural] = ACTIONS(4409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHglsname] = ACTIONS(4409), - [anon_sym_BSLASHGlsname] = ACTIONS(4409), - [anon_sym_BSLASHGLSname] = ACTIONS(4409), - [anon_sym_BSLASHglssymbol] = ACTIONS(4409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4409), - [anon_sym_BSLASHglsdesc] = ACTIONS(4409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4409), - [anon_sym_BSLASHglsuseri] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4409), - [anon_sym_BSLASHglsuserii] = ACTIONS(4409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4409), - [anon_sym_BSLASHglsuserv] = ACTIONS(4409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4409), - [anon_sym_BSLASHglsuservi] = ACTIONS(4409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4409), - [anon_sym_BSLASHnewacronym] = ACTIONS(4409), - [anon_sym_BSLASHacrshort] = ACTIONS(4409), - [anon_sym_BSLASHAcrshort] = ACTIONS(4409), - [anon_sym_BSLASHACRshort] = ACTIONS(4409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4409), - [anon_sym_BSLASHacrlong] = ACTIONS(4409), - [anon_sym_BSLASHAcrlong] = ACTIONS(4409), - [anon_sym_BSLASHACRlong] = ACTIONS(4409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4409), - [anon_sym_BSLASHacrfull] = ACTIONS(4409), - [anon_sym_BSLASHAcrfull] = ACTIONS(4409), - [anon_sym_BSLASHACRfull] = ACTIONS(4409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4409), - [anon_sym_BSLASHacs] = ACTIONS(4409), - [anon_sym_BSLASHAcs] = ACTIONS(4409), - [anon_sym_BSLASHacsp] = ACTIONS(4409), - [anon_sym_BSLASHAcsp] = ACTIONS(4409), - [anon_sym_BSLASHacl] = ACTIONS(4409), - [anon_sym_BSLASHAcl] = ACTIONS(4409), - [anon_sym_BSLASHaclp] = ACTIONS(4409), - [anon_sym_BSLASHAclp] = ACTIONS(4409), - [anon_sym_BSLASHacf] = ACTIONS(4409), - [anon_sym_BSLASHAcf] = ACTIONS(4409), - [anon_sym_BSLASHacfp] = ACTIONS(4409), - [anon_sym_BSLASHAcfp] = ACTIONS(4409), - [anon_sym_BSLASHac] = ACTIONS(4409), - [anon_sym_BSLASHAc] = ACTIONS(4409), - [anon_sym_BSLASHacp] = ACTIONS(4409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4409), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4409), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4409), - [anon_sym_BSLASHcolor] = ACTIONS(4409), - [anon_sym_BSLASHcolorbox] = ACTIONS(4409), - [anon_sym_BSLASHtextcolor] = ACTIONS(4409), - [anon_sym_BSLASHpagecolor] = ACTIONS(4409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4409), + [sym__section_declaration] = STATE(142), + [sym_section] = STATE(328), + [aux_sym__section_repeat3] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(1837), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, [282] = { + [sym__chapter_declaration] = STATE(133), + [sym_chapter] = STATE(329), + [aux_sym__section_repeat2] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(4455), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(17), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), + [anon_sym_BSLASHaddchap] = ACTIONS(17), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [anon_sym_RBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), + }, + [283] = { + [sym__section_declaration] = STATE(142), + [sym_section] = STATE(328), + [aux_sym__section_repeat3] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(4455), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [anon_sym_RBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), + }, + [284] = { [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(287), - [aux_sym__section_repeat4] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(4417), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), + [sym_subsection] = STATE(327), + [aux_sym__section_repeat4] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(4455), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_RBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [anon_sym_RBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [283] = { + [285] = { [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(280), - [aux_sym__section_repeat5] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(4417), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), + [sym_subsubsection] = STATE(326), + [aux_sym__section_repeat5] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(4455), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_RBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [anon_sym_RBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [284] = { + [286] = { [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(281), - [aux_sym__section_repeat6] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(4417), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), + [sym_paragraph] = STATE(325), + [aux_sym__section_repeat6] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(4455), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_RBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [anon_sym_RBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [285] = { + [287] = { [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(4417), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(4455), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_RBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [anon_sym_RBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [286] = { + [288] = { [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(4417), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(4455), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_RBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), + [anon_sym_LBRACE] = ACTIONS(4455), + [anon_sym_RBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [287] = { - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(287), - [aux_sym__section_repeat4] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(4421), - [sym_command_name] = ACTIONS(4423), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4423), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_RPAREN] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_RBRACK] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_EQ] = ACTIONS(4421), - [anon_sym_BSLASHpart] = ACTIONS(4423), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddpart] = ACTIONS(4423), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4421), - [anon_sym_BSLASHchapter] = ACTIONS(4423), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddchap] = ACTIONS(4423), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsection] = ACTIONS(4423), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddsec] = ACTIONS(4423), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsubsection] = ACTIONS(4425), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4428), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4423), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4421), - [anon_sym_BSLASHparagraph] = ACTIONS(4423), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4423), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4421), - [anon_sym_BSLASHitem] = ACTIONS(4423), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4421), - [anon_sym_LBRACE] = ACTIONS(4421), - [anon_sym_RBRACE] = ACTIONS(4421), - [sym_word] = ACTIONS(4423), - [sym_placeholder] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_CARET] = ACTIONS(4423), - [anon_sym__] = ACTIONS(4423), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_PIPE] = ACTIONS(4423), - [anon_sym_COLON] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4421), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4421), - [anon_sym_DOLLAR] = ACTIONS(4423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4421), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4421), - [anon_sym_BSLASHbegin] = ACTIONS(4423), - [anon_sym_BSLASHusepackage] = ACTIONS(4423), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4423), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4423), - [anon_sym_BSLASHinclude] = ACTIONS(4423), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4423), - [anon_sym_BSLASHinput] = ACTIONS(4423), - [anon_sym_BSLASHsubfile] = ACTIONS(4423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4423), - [anon_sym_BSLASHbibliography] = ACTIONS(4423), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4423), - [anon_sym_BSLASHincludesvg] = ACTIONS(4423), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4423), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4423), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4423), - [anon_sym_BSLASHimport] = ACTIONS(4423), - [anon_sym_BSLASHsubimport] = ACTIONS(4423), - [anon_sym_BSLASHinputfrom] = ACTIONS(4423), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4423), - [anon_sym_BSLASHincludefrom] = ACTIONS(4423), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4423), - [anon_sym_BSLASHcaption] = ACTIONS(4423), - [anon_sym_BSLASHcite] = ACTIONS(4423), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCite] = ACTIONS(4423), - [anon_sym_BSLASHnocite] = ACTIONS(4423), - [anon_sym_BSLASHcitet] = ACTIONS(4423), - [anon_sym_BSLASHcitep] = ACTIONS(4423), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteauthor] = ACTIONS(4423), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4423), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitetitle] = ACTIONS(4423), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteyear] = ACTIONS(4423), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitedate] = ACTIONS(4423), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteurl] = ACTIONS(4423), - [anon_sym_BSLASHfullcite] = ACTIONS(4423), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4423), - [anon_sym_BSLASHcitealt] = ACTIONS(4423), - [anon_sym_BSLASHcitealp] = ACTIONS(4423), - [anon_sym_BSLASHcitetext] = ACTIONS(4423), - [anon_sym_BSLASHparencite] = ACTIONS(4423), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHParencite] = ACTIONS(4423), - [anon_sym_BSLASHfootcite] = ACTIONS(4423), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4423), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4423), - [anon_sym_BSLASHtextcite] = ACTIONS(4423), - [anon_sym_BSLASHTextcite] = ACTIONS(4423), - [anon_sym_BSLASHsmartcite] = ACTIONS(4423), - [anon_sym_BSLASHSmartcite] = ACTIONS(4423), - [anon_sym_BSLASHsupercite] = ACTIONS(4423), - [anon_sym_BSLASHautocite] = ACTIONS(4423), - [anon_sym_BSLASHAutocite] = ACTIONS(4423), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHvolcite] = ACTIONS(4423), - [anon_sym_BSLASHVolcite] = ACTIONS(4423), - [anon_sym_BSLASHpvolcite] = ACTIONS(4423), - [anon_sym_BSLASHPvolcite] = ACTIONS(4423), - [anon_sym_BSLASHfvolcite] = ACTIONS(4423), - [anon_sym_BSLASHftvolcite] = ACTIONS(4423), - [anon_sym_BSLASHsvolcite] = ACTIONS(4423), - [anon_sym_BSLASHSvolcite] = ACTIONS(4423), - [anon_sym_BSLASHtvolcite] = ACTIONS(4423), - [anon_sym_BSLASHTvolcite] = ACTIONS(4423), - [anon_sym_BSLASHavolcite] = ACTIONS(4423), - [anon_sym_BSLASHAvolcite] = ACTIONS(4423), - [anon_sym_BSLASHnotecite] = ACTIONS(4423), - [anon_sym_BSLASHNotecite] = ACTIONS(4423), - [anon_sym_BSLASHpnotecite] = ACTIONS(4423), - [anon_sym_BSLASHPnotecite] = ACTIONS(4423), - [anon_sym_BSLASHfnotecite] = ACTIONS(4423), - [anon_sym_BSLASHlabel] = ACTIONS(4423), - [anon_sym_BSLASHref] = ACTIONS(4423), - [anon_sym_BSLASHeqref] = ACTIONS(4423), - [anon_sym_BSLASHvref] = ACTIONS(4423), - [anon_sym_BSLASHVref] = ACTIONS(4423), - [anon_sym_BSLASHautoref] = ACTIONS(4423), - [anon_sym_BSLASHpageref] = ACTIONS(4423), - [anon_sym_BSLASHcref] = ACTIONS(4423), - [anon_sym_BSLASHCref] = ACTIONS(4423), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4421), - [anon_sym_BSLASHnamecref] = ACTIONS(4423), - [anon_sym_BSLASHnameCref] = ACTIONS(4423), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4423), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4423), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4423), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4423), - [anon_sym_BSLASHlabelcref] = ACTIONS(4423), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4423), - [anon_sym_BSLASHcrefrange] = ACTIONS(4423), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCrefrange] = ACTIONS(4423), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4421), - [anon_sym_BSLASHnewlabel] = ACTIONS(4423), - [anon_sym_BSLASHnewcommand] = ACTIONS(4423), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4423), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4423), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4423), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4421), - [anon_sym_BSLASHdef] = ACTIONS(4423), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4423), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4423), - [anon_sym_BSLASHgls] = ACTIONS(4423), - [anon_sym_BSLASHGls] = ACTIONS(4423), - [anon_sym_BSLASHGLS] = ACTIONS(4423), - [anon_sym_BSLASHglspl] = ACTIONS(4423), - [anon_sym_BSLASHGlspl] = ACTIONS(4423), - [anon_sym_BSLASHGLSpl] = ACTIONS(4423), - [anon_sym_BSLASHglsdisp] = ACTIONS(4423), - [anon_sym_BSLASHglslink] = ACTIONS(4423), - [anon_sym_BSLASHglstext] = ACTIONS(4423), - [anon_sym_BSLASHGlstext] = ACTIONS(4423), - [anon_sym_BSLASHGLStext] = ACTIONS(4423), - [anon_sym_BSLASHglsfirst] = ACTIONS(4423), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4423), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4423), - [anon_sym_BSLASHglsplural] = ACTIONS(4423), - [anon_sym_BSLASHGlsplural] = ACTIONS(4423), - [anon_sym_BSLASHGLSplural] = ACTIONS(4423), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHglsname] = ACTIONS(4423), - [anon_sym_BSLASHGlsname] = ACTIONS(4423), - [anon_sym_BSLASHGLSname] = ACTIONS(4423), - [anon_sym_BSLASHglssymbol] = ACTIONS(4423), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4423), - [anon_sym_BSLASHglsdesc] = ACTIONS(4423), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4423), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4423), - [anon_sym_BSLASHglsuseri] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4423), - [anon_sym_BSLASHglsuserii] = ACTIONS(4423), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4423), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4423), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4423), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4423), - [anon_sym_BSLASHglsuserv] = ACTIONS(4423), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4423), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4423), - [anon_sym_BSLASHglsuservi] = ACTIONS(4423), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4423), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4423), - [anon_sym_BSLASHnewacronym] = ACTIONS(4423), - [anon_sym_BSLASHacrshort] = ACTIONS(4423), - [anon_sym_BSLASHAcrshort] = ACTIONS(4423), - [anon_sym_BSLASHACRshort] = ACTIONS(4423), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4423), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4423), - [anon_sym_BSLASHacrlong] = ACTIONS(4423), - [anon_sym_BSLASHAcrlong] = ACTIONS(4423), - [anon_sym_BSLASHACRlong] = ACTIONS(4423), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4423), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4423), - [anon_sym_BSLASHacrfull] = ACTIONS(4423), - [anon_sym_BSLASHAcrfull] = ACTIONS(4423), - [anon_sym_BSLASHACRfull] = ACTIONS(4423), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4423), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4423), - [anon_sym_BSLASHacs] = ACTIONS(4423), - [anon_sym_BSLASHAcs] = ACTIONS(4423), - [anon_sym_BSLASHacsp] = ACTIONS(4423), - [anon_sym_BSLASHAcsp] = ACTIONS(4423), - [anon_sym_BSLASHacl] = ACTIONS(4423), - [anon_sym_BSLASHAcl] = ACTIONS(4423), - [anon_sym_BSLASHaclp] = ACTIONS(4423), - [anon_sym_BSLASHAclp] = ACTIONS(4423), - [anon_sym_BSLASHacf] = ACTIONS(4423), - [anon_sym_BSLASHAcf] = ACTIONS(4423), - [anon_sym_BSLASHacfp] = ACTIONS(4423), - [anon_sym_BSLASHAcfp] = ACTIONS(4423), - [anon_sym_BSLASHac] = ACTIONS(4423), - [anon_sym_BSLASHAc] = ACTIONS(4423), - [anon_sym_BSLASHacp] = ACTIONS(4423), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4423), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4423), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4423), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4423), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4423), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4423), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4423), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4423), - [anon_sym_BSLASHcolor] = ACTIONS(4423), - [anon_sym_BSLASHcolorbox] = ACTIONS(4423), - [anon_sym_BSLASHtextcolor] = ACTIONS(4423), - [anon_sym_BSLASHpagecolor] = ACTIONS(4423), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4423), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4423), + [289] = { + [sym_curly_group] = STATE(698), + [sym_mixed_group] = STATE(698), + [aux_sym_generic_command_repeat1] = STATE(289), + [ts_builtin_sym_end] = ACTIONS(4459), + [sym_command_name] = ACTIONS(4461), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4463), + [anon_sym_RPAREN] = ACTIONS(4459), + [anon_sym_LBRACK] = ACTIONS(4463), + [anon_sym_RBRACK] = ACTIONS(4459), + [anon_sym_COMMA] = ACTIONS(4459), + [anon_sym_EQ] = ACTIONS(4459), + [anon_sym_BSLASHpart] = ACTIONS(4461), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddpart] = ACTIONS(4461), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4459), + [anon_sym_BSLASHchapter] = ACTIONS(4461), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddchap] = ACTIONS(4461), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsection] = ACTIONS(4461), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddsec] = ACTIONS(4461), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubsection] = ACTIONS(4461), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4461), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHparagraph] = ACTIONS(4461), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4461), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4459), + [anon_sym_BSLASHitem] = ACTIONS(4461), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4459), + [anon_sym_LBRACE] = ACTIONS(4466), + [anon_sym_RBRACE] = ACTIONS(4459), + [sym_word] = ACTIONS(4461), + [sym_placeholder] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_STAR] = ACTIONS(4461), + [anon_sym_SLASH] = ACTIONS(4461), + [anon_sym_CARET] = ACTIONS(4461), + [anon_sym__] = ACTIONS(4461), + [anon_sym_LT] = ACTIONS(4461), + [anon_sym_GT] = ACTIONS(4461), + [anon_sym_BANG] = ACTIONS(4461), + [anon_sym_PIPE] = ACTIONS(4461), + [anon_sym_COLON] = ACTIONS(4461), + [anon_sym_SQUOTE] = ACTIONS(4461), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), + [anon_sym_DOLLAR] = ACTIONS(4461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), + [anon_sym_BSLASHbegin] = ACTIONS(4461), + [anon_sym_BSLASHusepackage] = ACTIONS(4461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), + [anon_sym_BSLASHinclude] = ACTIONS(4461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), + [anon_sym_BSLASHinput] = ACTIONS(4461), + [anon_sym_BSLASHsubfile] = ACTIONS(4461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), + [anon_sym_BSLASHbibliography] = ACTIONS(4461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), + [anon_sym_BSLASHincludesvg] = ACTIONS(4461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), + [anon_sym_BSLASHimport] = ACTIONS(4461), + [anon_sym_BSLASHsubimport] = ACTIONS(4461), + [anon_sym_BSLASHinputfrom] = ACTIONS(4461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), + [anon_sym_BSLASHincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHcaption] = ACTIONS(4461), + [anon_sym_BSLASHcite] = ACTIONS(4461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCite] = ACTIONS(4461), + [anon_sym_BSLASHnocite] = ACTIONS(4461), + [anon_sym_BSLASHcitet] = ACTIONS(4461), + [anon_sym_BSLASHcitep] = ACTIONS(4461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteauthor] = ACTIONS(4461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitetitle] = ACTIONS(4461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteyear] = ACTIONS(4461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitedate] = ACTIONS(4461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteurl] = ACTIONS(4461), + [anon_sym_BSLASHfullcite] = ACTIONS(4461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), + [anon_sym_BSLASHcitealt] = ACTIONS(4461), + [anon_sym_BSLASHcitealp] = ACTIONS(4461), + [anon_sym_BSLASHcitetext] = ACTIONS(4461), + [anon_sym_BSLASHparencite] = ACTIONS(4461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHParencite] = ACTIONS(4461), + [anon_sym_BSLASHfootcite] = ACTIONS(4461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), + [anon_sym_BSLASHtextcite] = ACTIONS(4461), + [anon_sym_BSLASHTextcite] = ACTIONS(4461), + [anon_sym_BSLASHsmartcite] = ACTIONS(4461), + [anon_sym_BSLASHSmartcite] = ACTIONS(4461), + [anon_sym_BSLASHsupercite] = ACTIONS(4461), + [anon_sym_BSLASHautocite] = ACTIONS(4461), + [anon_sym_BSLASHAutocite] = ACTIONS(4461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHvolcite] = ACTIONS(4461), + [anon_sym_BSLASHVolcite] = ACTIONS(4461), + [anon_sym_BSLASHpvolcite] = ACTIONS(4461), + [anon_sym_BSLASHPvolcite] = ACTIONS(4461), + [anon_sym_BSLASHfvolcite] = ACTIONS(4461), + [anon_sym_BSLASHftvolcite] = ACTIONS(4461), + [anon_sym_BSLASHsvolcite] = ACTIONS(4461), + [anon_sym_BSLASHSvolcite] = ACTIONS(4461), + [anon_sym_BSLASHtvolcite] = ACTIONS(4461), + [anon_sym_BSLASHTvolcite] = ACTIONS(4461), + [anon_sym_BSLASHavolcite] = ACTIONS(4461), + [anon_sym_BSLASHAvolcite] = ACTIONS(4461), + [anon_sym_BSLASHnotecite] = ACTIONS(4461), + [anon_sym_BSLASHNotecite] = ACTIONS(4461), + [anon_sym_BSLASHpnotecite] = ACTIONS(4461), + [anon_sym_BSLASHPnotecite] = ACTIONS(4461), + [anon_sym_BSLASHfnotecite] = ACTIONS(4461), + [anon_sym_BSLASHlabel] = ACTIONS(4461), + [anon_sym_BSLASHref] = ACTIONS(4461), + [anon_sym_BSLASHeqref] = ACTIONS(4461), + [anon_sym_BSLASHvref] = ACTIONS(4461), + [anon_sym_BSLASHVref] = ACTIONS(4461), + [anon_sym_BSLASHautoref] = ACTIONS(4461), + [anon_sym_BSLASHpageref] = ACTIONS(4461), + [anon_sym_BSLASHcref] = ACTIONS(4461), + [anon_sym_BSLASHCref] = ACTIONS(4461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnameCref] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHlabelcref] = ACTIONS(4461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCrefrange] = ACTIONS(4461), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnewlabel] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), + [anon_sym_BSLASHdef] = ACTIONS(4461), + [anon_sym_BSLASHlet] = ACTIONS(4461), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), + [anon_sym_BSLASHgls] = ACTIONS(4461), + [anon_sym_BSLASHGls] = ACTIONS(4461), + [anon_sym_BSLASHGLS] = ACTIONS(4461), + [anon_sym_BSLASHglspl] = ACTIONS(4461), + [anon_sym_BSLASHGlspl] = ACTIONS(4461), + [anon_sym_BSLASHGLSpl] = ACTIONS(4461), + [anon_sym_BSLASHglsdisp] = ACTIONS(4461), + [anon_sym_BSLASHglslink] = ACTIONS(4461), + [anon_sym_BSLASHglstext] = ACTIONS(4461), + [anon_sym_BSLASHGlstext] = ACTIONS(4461), + [anon_sym_BSLASHGLStext] = ACTIONS(4461), + [anon_sym_BSLASHglsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), + [anon_sym_BSLASHglsplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSplural] = ACTIONS(4461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHglsname] = ACTIONS(4461), + [anon_sym_BSLASHGlsname] = ACTIONS(4461), + [anon_sym_BSLASHGLSname] = ACTIONS(4461), + [anon_sym_BSLASHglssymbol] = ACTIONS(4461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), + [anon_sym_BSLASHglsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), + [anon_sym_BSLASHglsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), + [anon_sym_BSLASHglsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), + [anon_sym_BSLASHglsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), + [anon_sym_BSLASHglsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), + [anon_sym_BSLASHnewacronym] = ACTIONS(4461), + [anon_sym_BSLASHacrshort] = ACTIONS(4461), + [anon_sym_BSLASHAcrshort] = ACTIONS(4461), + [anon_sym_BSLASHACRshort] = ACTIONS(4461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), + [anon_sym_BSLASHacrlong] = ACTIONS(4461), + [anon_sym_BSLASHAcrlong] = ACTIONS(4461), + [anon_sym_BSLASHACRlong] = ACTIONS(4461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), + [anon_sym_BSLASHacrfull] = ACTIONS(4461), + [anon_sym_BSLASHAcrfull] = ACTIONS(4461), + [anon_sym_BSLASHACRfull] = ACTIONS(4461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), + [anon_sym_BSLASHacs] = ACTIONS(4461), + [anon_sym_BSLASHAcs] = ACTIONS(4461), + [anon_sym_BSLASHacsp] = ACTIONS(4461), + [anon_sym_BSLASHAcsp] = ACTIONS(4461), + [anon_sym_BSLASHacl] = ACTIONS(4461), + [anon_sym_BSLASHAcl] = ACTIONS(4461), + [anon_sym_BSLASHaclp] = ACTIONS(4461), + [anon_sym_BSLASHAclp] = ACTIONS(4461), + [anon_sym_BSLASHacf] = ACTIONS(4461), + [anon_sym_BSLASHAcf] = ACTIONS(4461), + [anon_sym_BSLASHacfp] = ACTIONS(4461), + [anon_sym_BSLASHAcfp] = ACTIONS(4461), + [anon_sym_BSLASHac] = ACTIONS(4461), + [anon_sym_BSLASHAc] = ACTIONS(4461), + [anon_sym_BSLASHacp] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), + [anon_sym_BSLASHcolor] = ACTIONS(4461), + [anon_sym_BSLASHcolorbox] = ACTIONS(4461), + [anon_sym_BSLASHtextcolor] = ACTIONS(4461), + [anon_sym_BSLASHpagecolor] = ACTIONS(4461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), + [anon_sym_BSLASHtext] = ACTIONS(4461), + [anon_sym_BSLASHintertext] = ACTIONS(4461), + [anon_sym_shortintertext] = ACTIONS(4461), }, - [288] = { + [290] = { [sym__section_declaration] = STATE(142), - [sym_section] = STATE(343), - [aux_sym__section_repeat3] = STATE(343), - [ts_builtin_sym_end] = ACTIONS(4431), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), + [sym_section] = STATE(328), + [aux_sym__section_repeat3] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(4469), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), [anon_sym_BSLASHsection] = ACTIONS(21), [anon_sym_BSLASHsection_STAR] = ACTIONS(23), [anon_sym_BSLASHaddsec] = ACTIONS(21), [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_RBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [289] = { + [291] = { [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(287), - [aux_sym__section_repeat4] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(4431), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), + [sym_subsection] = STATE(327), + [aux_sym__section_repeat4] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(4469), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_RBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [290] = { + [292] = { [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(280), - [aux_sym__section_repeat5] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(4431), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), + [sym_subsubsection] = STATE(326), + [aux_sym__section_repeat5] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(4469), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_RBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [291] = { + [293] = { [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(281), - [aux_sym__section_repeat6] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(4431), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), + [sym_paragraph] = STATE(325), + [aux_sym__section_repeat6] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(4469), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_RBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [292] = { + [294] = { [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(4431), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(4469), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_RBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [293] = { + [295] = { [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(4431), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(4469), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_RBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [anon_sym_LBRACE] = ACTIONS(4469), + [anon_sym_RBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [294] = { + [296] = { [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(287), - [aux_sym__section_repeat4] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(4389), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), + [sym_subsection] = STATE(327), + [aux_sym__section_repeat4] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(4473), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), [anon_sym_BSLASHsubsection] = ACTIONS(25), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [anon_sym_RBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [295] = { - [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(280), - [aux_sym__section_repeat5] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(4389), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [anon_sym_RBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [296] = { - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(1896), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(1898), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1898), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, [297] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(4389), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [anon_sym_RBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [298] = { - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(4389), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4389), - [anon_sym_RBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [299] = { [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(280), - [aux_sym__section_repeat5] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(4435), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), + [sym_subsubsection] = STATE(326), + [aux_sym__section_repeat5] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(4473), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), [anon_sym_BSLASHsubsubsection] = ACTIONS(29), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_RBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), - }, - [300] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(281), - [aux_sym__section_repeat6] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(4435), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_RBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), - }, - [301] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(4435), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_RBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), - }, - [302] = { - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(4435), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_RBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, - [303] = { + [298] = { [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(281), - [aux_sym__section_repeat6] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(4439), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), + [sym_paragraph] = STATE(325), + [aux_sym__section_repeat6] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(4473), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHitem] = ACTIONS(4441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4439), - [anon_sym_LBRACE] = ACTIONS(4439), - [anon_sym_RBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, - [304] = { + [299] = { [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(4439), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(4441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4439), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(4473), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4439), - [anon_sym_LBRACE] = ACTIONS(4439), - [anon_sym_RBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, - [305] = { + [300] = { [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(4439), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(4441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4439), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(4473), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4439), - [anon_sym_RBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), + [anon_sym_LBRACE] = ACTIONS(4473), + [anon_sym_RBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, - [306] = { + [301] = { [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(280), - [aux_sym__section_repeat5] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [307] = { - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(4393), - [sym_command_name] = ACTIONS(4395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_BSLASHpart] = ACTIONS(4395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddpart] = ACTIONS(4395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHchapter] = ACTIONS(4395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddchap] = ACTIONS(4395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsection] = ACTIONS(4395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddsec] = ACTIONS(4395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHparagraph] = ACTIONS(4395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4395), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4393), - [anon_sym_RBRACE] = ACTIONS(4393), - [sym_word] = ACTIONS(4395), - [sym_placeholder] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym__] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_PIPE] = ACTIONS(4395), - [anon_sym_COLON] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4393), - [anon_sym_BSLASHbegin] = ACTIONS(4395), - [anon_sym_BSLASHusepackage] = ACTIONS(4395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4395), - [anon_sym_BSLASHinclude] = ACTIONS(4395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4395), - [anon_sym_BSLASHinput] = ACTIONS(4395), - [anon_sym_BSLASHsubfile] = ACTIONS(4395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4395), - [anon_sym_BSLASHbibliography] = ACTIONS(4395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4395), - [anon_sym_BSLASHincludesvg] = ACTIONS(4395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4395), - [anon_sym_BSLASHsubimport] = ACTIONS(4395), - [anon_sym_BSLASHinputfrom] = ACTIONS(4395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4395), - [anon_sym_BSLASHincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHcaption] = ACTIONS(4395), - [anon_sym_BSLASHcite] = ACTIONS(4395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCite] = ACTIONS(4395), - [anon_sym_BSLASHnocite] = ACTIONS(4395), - [anon_sym_BSLASHcitet] = ACTIONS(4395), - [anon_sym_BSLASHcitep] = ACTIONS(4395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteauthor] = ACTIONS(4395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitetitle] = ACTIONS(4395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteyear] = ACTIONS(4395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitedate] = ACTIONS(4395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteurl] = ACTIONS(4395), - [anon_sym_BSLASHfullcite] = ACTIONS(4395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4395), - [anon_sym_BSLASHcitealt] = ACTIONS(4395), - [anon_sym_BSLASHcitealp] = ACTIONS(4395), - [anon_sym_BSLASHcitetext] = ACTIONS(4395), - [anon_sym_BSLASHparencite] = ACTIONS(4395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHParencite] = ACTIONS(4395), - [anon_sym_BSLASHfootcite] = ACTIONS(4395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4395), - [anon_sym_BSLASHtextcite] = ACTIONS(4395), - [anon_sym_BSLASHTextcite] = ACTIONS(4395), - [anon_sym_BSLASHsmartcite] = ACTIONS(4395), - [anon_sym_BSLASHSmartcite] = ACTIONS(4395), - [anon_sym_BSLASHsupercite] = ACTIONS(4395), - [anon_sym_BSLASHautocite] = ACTIONS(4395), - [anon_sym_BSLASHAutocite] = ACTIONS(4395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHvolcite] = ACTIONS(4395), - [anon_sym_BSLASHVolcite] = ACTIONS(4395), - [anon_sym_BSLASHpvolcite] = ACTIONS(4395), - [anon_sym_BSLASHPvolcite] = ACTIONS(4395), - [anon_sym_BSLASHfvolcite] = ACTIONS(4395), - [anon_sym_BSLASHftvolcite] = ACTIONS(4395), - [anon_sym_BSLASHsvolcite] = ACTIONS(4395), - [anon_sym_BSLASHSvolcite] = ACTIONS(4395), - [anon_sym_BSLASHtvolcite] = ACTIONS(4395), - [anon_sym_BSLASHTvolcite] = ACTIONS(4395), - [anon_sym_BSLASHavolcite] = ACTIONS(4395), - [anon_sym_BSLASHAvolcite] = ACTIONS(4395), - [anon_sym_BSLASHnotecite] = ACTIONS(4395), - [anon_sym_BSLASHNotecite] = ACTIONS(4395), - [anon_sym_BSLASHpnotecite] = ACTIONS(4395), - [anon_sym_BSLASHPnotecite] = ACTIONS(4395), - [anon_sym_BSLASHfnotecite] = ACTIONS(4395), - [anon_sym_BSLASHlabel] = ACTIONS(4395), - [anon_sym_BSLASHref] = ACTIONS(4395), - [anon_sym_BSLASHeqref] = ACTIONS(4395), - [anon_sym_BSLASHvref] = ACTIONS(4395), - [anon_sym_BSLASHVref] = ACTIONS(4395), - [anon_sym_BSLASHautoref] = ACTIONS(4395), - [anon_sym_BSLASHpageref] = ACTIONS(4395), - [anon_sym_BSLASHcref] = ACTIONS(4395), - [anon_sym_BSLASHCref] = ACTIONS(4395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnameCref] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHlabelcref] = ACTIONS(4395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCrefrange] = ACTIONS(4395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnewlabel] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4393), - [anon_sym_BSLASHdef] = ACTIONS(4395), - [anon_sym_BSLASHlet] = ACTIONS(4395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4395), - [anon_sym_BSLASHgls] = ACTIONS(4395), - [anon_sym_BSLASHGls] = ACTIONS(4395), - [anon_sym_BSLASHGLS] = ACTIONS(4395), - [anon_sym_BSLASHglspl] = ACTIONS(4395), - [anon_sym_BSLASHGlspl] = ACTIONS(4395), - [anon_sym_BSLASHGLSpl] = ACTIONS(4395), - [anon_sym_BSLASHglsdisp] = ACTIONS(4395), - [anon_sym_BSLASHglslink] = ACTIONS(4395), - [anon_sym_BSLASHglstext] = ACTIONS(4395), - [anon_sym_BSLASHGlstext] = ACTIONS(4395), - [anon_sym_BSLASHGLStext] = ACTIONS(4395), - [anon_sym_BSLASHglsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4395), - [anon_sym_BSLASHglsplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSplural] = ACTIONS(4395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHglsname] = ACTIONS(4395), - [anon_sym_BSLASHGlsname] = ACTIONS(4395), - [anon_sym_BSLASHGLSname] = ACTIONS(4395), - [anon_sym_BSLASHglssymbol] = ACTIONS(4395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4395), - [anon_sym_BSLASHglsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4395), - [anon_sym_BSLASHglsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4395), - [anon_sym_BSLASHglsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4395), - [anon_sym_BSLASHglsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4395), - [anon_sym_BSLASHglsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4395), - [anon_sym_BSLASHnewacronym] = ACTIONS(4395), - [anon_sym_BSLASHacrshort] = ACTIONS(4395), - [anon_sym_BSLASHAcrshort] = ACTIONS(4395), - [anon_sym_BSLASHACRshort] = ACTIONS(4395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4395), - [anon_sym_BSLASHacrlong] = ACTIONS(4395), - [anon_sym_BSLASHAcrlong] = ACTIONS(4395), - [anon_sym_BSLASHACRlong] = ACTIONS(4395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4395), - [anon_sym_BSLASHacrfull] = ACTIONS(4395), - [anon_sym_BSLASHAcrfull] = ACTIONS(4395), - [anon_sym_BSLASHACRfull] = ACTIONS(4395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4395), - [anon_sym_BSLASHacs] = ACTIONS(4395), - [anon_sym_BSLASHAcs] = ACTIONS(4395), - [anon_sym_BSLASHacsp] = ACTIONS(4395), - [anon_sym_BSLASHAcsp] = ACTIONS(4395), - [anon_sym_BSLASHacl] = ACTIONS(4395), - [anon_sym_BSLASHAcl] = ACTIONS(4395), - [anon_sym_BSLASHaclp] = ACTIONS(4395), - [anon_sym_BSLASHAclp] = ACTIONS(4395), - [anon_sym_BSLASHacf] = ACTIONS(4395), - [anon_sym_BSLASHAcf] = ACTIONS(4395), - [anon_sym_BSLASHacfp] = ACTIONS(4395), - [anon_sym_BSLASHAcfp] = ACTIONS(4395), - [anon_sym_BSLASHac] = ACTIONS(4395), - [anon_sym_BSLASHAc] = ACTIONS(4395), - [anon_sym_BSLASHacp] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4395), - [anon_sym_BSLASHcolor] = ACTIONS(4395), - [anon_sym_BSLASHcolorbox] = ACTIONS(4395), - [anon_sym_BSLASHtextcolor] = ACTIONS(4395), - [anon_sym_BSLASHpagecolor] = ACTIONS(4395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4395), - }, - [308] = { - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(4443), - [sym_command_name] = ACTIONS(4445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4443), - [anon_sym_RPAREN] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4443), - [anon_sym_RBRACK] = ACTIONS(4443), - [anon_sym_COMMA] = ACTIONS(4443), - [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_BSLASHpart] = ACTIONS(4445), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddpart] = ACTIONS(4445), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4443), - [anon_sym_BSLASHchapter] = ACTIONS(4445), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddchap] = ACTIONS(4445), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsection] = ACTIONS(4445), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddsec] = ACTIONS(4445), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubsection] = ACTIONS(4445), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHparagraph] = ACTIONS(4445), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4443), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4443), - [anon_sym_RBRACE] = ACTIONS(4443), - [sym_word] = ACTIONS(4445), - [sym_placeholder] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4445), - [anon_sym_DASH] = ACTIONS(4445), - [anon_sym_STAR] = ACTIONS(4445), - [anon_sym_SLASH] = ACTIONS(4445), - [anon_sym_CARET] = ACTIONS(4445), - [anon_sym__] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4445), - [anon_sym_GT] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4445), - [anon_sym_PIPE] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(4445), - [anon_sym_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4443), - [anon_sym_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4443), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4443), - [anon_sym_BSLASHbegin] = ACTIONS(4445), - [anon_sym_BSLASHusepackage] = ACTIONS(4445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4445), - [anon_sym_BSLASHinclude] = ACTIONS(4445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4445), - [anon_sym_BSLASHinput] = ACTIONS(4445), - [anon_sym_BSLASHsubfile] = ACTIONS(4445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4445), - [anon_sym_BSLASHbibliography] = ACTIONS(4445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4445), - [anon_sym_BSLASHincludesvg] = ACTIONS(4445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4445), - [anon_sym_BSLASHimport] = ACTIONS(4445), - [anon_sym_BSLASHsubimport] = ACTIONS(4445), - [anon_sym_BSLASHinputfrom] = ACTIONS(4445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4445), - [anon_sym_BSLASHincludefrom] = ACTIONS(4445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4445), - [anon_sym_BSLASHcaption] = ACTIONS(4445), - [anon_sym_BSLASHcite] = ACTIONS(4445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCite] = ACTIONS(4445), - [anon_sym_BSLASHnocite] = ACTIONS(4445), - [anon_sym_BSLASHcitet] = ACTIONS(4445), - [anon_sym_BSLASHcitep] = ACTIONS(4445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteauthor] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitetitle] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteyear] = ACTIONS(4445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitedate] = ACTIONS(4445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteurl] = ACTIONS(4445), - [anon_sym_BSLASHfullcite] = ACTIONS(4445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4445), - [anon_sym_BSLASHcitealt] = ACTIONS(4445), - [anon_sym_BSLASHcitealp] = ACTIONS(4445), - [anon_sym_BSLASHcitetext] = ACTIONS(4445), - [anon_sym_BSLASHparencite] = ACTIONS(4445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHParencite] = ACTIONS(4445), - [anon_sym_BSLASHfootcite] = ACTIONS(4445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4445), - [anon_sym_BSLASHtextcite] = ACTIONS(4445), - [anon_sym_BSLASHTextcite] = ACTIONS(4445), - [anon_sym_BSLASHsmartcite] = ACTIONS(4445), - [anon_sym_BSLASHSmartcite] = ACTIONS(4445), - [anon_sym_BSLASHsupercite] = ACTIONS(4445), - [anon_sym_BSLASHautocite] = ACTIONS(4445), - [anon_sym_BSLASHAutocite] = ACTIONS(4445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHvolcite] = ACTIONS(4445), - [anon_sym_BSLASHVolcite] = ACTIONS(4445), - [anon_sym_BSLASHpvolcite] = ACTIONS(4445), - [anon_sym_BSLASHPvolcite] = ACTIONS(4445), - [anon_sym_BSLASHfvolcite] = ACTIONS(4445), - [anon_sym_BSLASHftvolcite] = ACTIONS(4445), - [anon_sym_BSLASHsvolcite] = ACTIONS(4445), - [anon_sym_BSLASHSvolcite] = ACTIONS(4445), - [anon_sym_BSLASHtvolcite] = ACTIONS(4445), - [anon_sym_BSLASHTvolcite] = ACTIONS(4445), - [anon_sym_BSLASHavolcite] = ACTIONS(4445), - [anon_sym_BSLASHAvolcite] = ACTIONS(4445), - [anon_sym_BSLASHnotecite] = ACTIONS(4445), - [anon_sym_BSLASHNotecite] = ACTIONS(4445), - [anon_sym_BSLASHpnotecite] = ACTIONS(4445), - [anon_sym_BSLASHPnotecite] = ACTIONS(4445), - [anon_sym_BSLASHfnotecite] = ACTIONS(4445), - [anon_sym_BSLASHlabel] = ACTIONS(4445), - [anon_sym_BSLASHref] = ACTIONS(4445), - [anon_sym_BSLASHeqref] = ACTIONS(4445), - [anon_sym_BSLASHvref] = ACTIONS(4445), - [anon_sym_BSLASHVref] = ACTIONS(4445), - [anon_sym_BSLASHautoref] = ACTIONS(4445), - [anon_sym_BSLASHpageref] = ACTIONS(4445), - [anon_sym_BSLASHcref] = ACTIONS(4445), - [anon_sym_BSLASHCref] = ACTIONS(4445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4443), - [anon_sym_BSLASHnamecref] = ACTIONS(4445), - [anon_sym_BSLASHnameCref] = ACTIONS(4445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4445), - [anon_sym_BSLASHlabelcref] = ACTIONS(4445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4445), - [anon_sym_BSLASHcrefrange] = ACTIONS(4445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCrefrange] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4443), - [anon_sym_BSLASHnewlabel] = ACTIONS(4445), - [anon_sym_BSLASHnewcommand] = ACTIONS(4445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4443), - [anon_sym_BSLASHdef] = ACTIONS(4445), - [anon_sym_BSLASHlet] = ACTIONS(4445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4445), - [anon_sym_BSLASHgls] = ACTIONS(4445), - [anon_sym_BSLASHGls] = ACTIONS(4445), - [anon_sym_BSLASHGLS] = ACTIONS(4445), - [anon_sym_BSLASHglspl] = ACTIONS(4445), - [anon_sym_BSLASHGlspl] = ACTIONS(4445), - [anon_sym_BSLASHGLSpl] = ACTIONS(4445), - [anon_sym_BSLASHglsdisp] = ACTIONS(4445), - [anon_sym_BSLASHglslink] = ACTIONS(4445), - [anon_sym_BSLASHglstext] = ACTIONS(4445), - [anon_sym_BSLASHGlstext] = ACTIONS(4445), - [anon_sym_BSLASHGLStext] = ACTIONS(4445), - [anon_sym_BSLASHglsfirst] = ACTIONS(4445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4445), - [anon_sym_BSLASHglsplural] = ACTIONS(4445), - [anon_sym_BSLASHGlsplural] = ACTIONS(4445), - [anon_sym_BSLASHGLSplural] = ACTIONS(4445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHglsname] = ACTIONS(4445), - [anon_sym_BSLASHGlsname] = ACTIONS(4445), - [anon_sym_BSLASHGLSname] = ACTIONS(4445), - [anon_sym_BSLASHglssymbol] = ACTIONS(4445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4445), - [anon_sym_BSLASHglsdesc] = ACTIONS(4445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4445), - [anon_sym_BSLASHglsuseri] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4445), - [anon_sym_BSLASHglsuserii] = ACTIONS(4445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4445), - [anon_sym_BSLASHglsuserv] = ACTIONS(4445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4445), - [anon_sym_BSLASHglsuservi] = ACTIONS(4445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4445), - [anon_sym_BSLASHnewacronym] = ACTIONS(4445), - [anon_sym_BSLASHacrshort] = ACTIONS(4445), - [anon_sym_BSLASHAcrshort] = ACTIONS(4445), - [anon_sym_BSLASHACRshort] = ACTIONS(4445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4445), - [anon_sym_BSLASHacrlong] = ACTIONS(4445), - [anon_sym_BSLASHAcrlong] = ACTIONS(4445), - [anon_sym_BSLASHACRlong] = ACTIONS(4445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4445), - [anon_sym_BSLASHacrfull] = ACTIONS(4445), - [anon_sym_BSLASHAcrfull] = ACTIONS(4445), - [anon_sym_BSLASHACRfull] = ACTIONS(4445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4445), - [anon_sym_BSLASHacs] = ACTIONS(4445), - [anon_sym_BSLASHAcs] = ACTIONS(4445), - [anon_sym_BSLASHacsp] = ACTIONS(4445), - [anon_sym_BSLASHAcsp] = ACTIONS(4445), - [anon_sym_BSLASHacl] = ACTIONS(4445), - [anon_sym_BSLASHAcl] = ACTIONS(4445), - [anon_sym_BSLASHaclp] = ACTIONS(4445), - [anon_sym_BSLASHAclp] = ACTIONS(4445), - [anon_sym_BSLASHacf] = ACTIONS(4445), - [anon_sym_BSLASHAcf] = ACTIONS(4445), - [anon_sym_BSLASHacfp] = ACTIONS(4445), - [anon_sym_BSLASHAcfp] = ACTIONS(4445), - [anon_sym_BSLASHac] = ACTIONS(4445), - [anon_sym_BSLASHAc] = ACTIONS(4445), - [anon_sym_BSLASHacp] = ACTIONS(4445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4445), - [anon_sym_BSLASHcolor] = ACTIONS(4445), - [anon_sym_BSLASHcolorbox] = ACTIONS(4445), - [anon_sym_BSLASHtextcolor] = ACTIONS(4445), - [anon_sym_BSLASHpagecolor] = ACTIONS(4445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4445), - }, - [309] = { - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(343), - [aux_sym__section_repeat3] = STATE(343), - [ts_builtin_sym_end] = ACTIONS(4417), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_RBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [310] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(1920), - [sym_command_name] = ACTIONS(1922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1922), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [sym_word] = ACTIONS(1922), - [sym_placeholder] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_SLASH] = ACTIONS(1922), - [anon_sym_CARET] = ACTIONS(1922), - [anon_sym__] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_COLON] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1920), - [anon_sym_BSLASHbegin] = ACTIONS(1922), - [anon_sym_BSLASHusepackage] = ACTIONS(1922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1922), - [anon_sym_BSLASHinclude] = ACTIONS(1922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1922), - [anon_sym_BSLASHinput] = ACTIONS(1922), - [anon_sym_BSLASHsubfile] = ACTIONS(1922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1922), - [anon_sym_BSLASHbibliography] = ACTIONS(1922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1922), - [anon_sym_BSLASHincludesvg] = ACTIONS(1922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1922), - [anon_sym_BSLASHimport] = ACTIONS(1922), - [anon_sym_BSLASHsubimport] = ACTIONS(1922), - [anon_sym_BSLASHinputfrom] = ACTIONS(1922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1922), - [anon_sym_BSLASHincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHcaption] = ACTIONS(1922), - [anon_sym_BSLASHcite] = ACTIONS(1922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCite] = ACTIONS(1922), - [anon_sym_BSLASHnocite] = ACTIONS(1922), - [anon_sym_BSLASHcitet] = ACTIONS(1922), - [anon_sym_BSLASHcitep] = ACTIONS(1922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteauthor] = ACTIONS(1922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitetitle] = ACTIONS(1922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteyear] = ACTIONS(1922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitedate] = ACTIONS(1922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteurl] = ACTIONS(1922), - [anon_sym_BSLASHfullcite] = ACTIONS(1922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1922), - [anon_sym_BSLASHcitealt] = ACTIONS(1922), - [anon_sym_BSLASHcitealp] = ACTIONS(1922), - [anon_sym_BSLASHcitetext] = ACTIONS(1922), - [anon_sym_BSLASHparencite] = ACTIONS(1922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHParencite] = ACTIONS(1922), - [anon_sym_BSLASHfootcite] = ACTIONS(1922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1922), - [anon_sym_BSLASHtextcite] = ACTIONS(1922), - [anon_sym_BSLASHTextcite] = ACTIONS(1922), - [anon_sym_BSLASHsmartcite] = ACTIONS(1922), - [anon_sym_BSLASHSmartcite] = ACTIONS(1922), - [anon_sym_BSLASHsupercite] = ACTIONS(1922), - [anon_sym_BSLASHautocite] = ACTIONS(1922), - [anon_sym_BSLASHAutocite] = ACTIONS(1922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHvolcite] = ACTIONS(1922), - [anon_sym_BSLASHVolcite] = ACTIONS(1922), - [anon_sym_BSLASHpvolcite] = ACTIONS(1922), - [anon_sym_BSLASHPvolcite] = ACTIONS(1922), - [anon_sym_BSLASHfvolcite] = ACTIONS(1922), - [anon_sym_BSLASHftvolcite] = ACTIONS(1922), - [anon_sym_BSLASHsvolcite] = ACTIONS(1922), - [anon_sym_BSLASHSvolcite] = ACTIONS(1922), - [anon_sym_BSLASHtvolcite] = ACTIONS(1922), - [anon_sym_BSLASHTvolcite] = ACTIONS(1922), - [anon_sym_BSLASHavolcite] = ACTIONS(1922), - [anon_sym_BSLASHAvolcite] = ACTIONS(1922), - [anon_sym_BSLASHnotecite] = ACTIONS(1922), - [anon_sym_BSLASHNotecite] = ACTIONS(1922), - [anon_sym_BSLASHpnotecite] = ACTIONS(1922), - [anon_sym_BSLASHPnotecite] = ACTIONS(1922), - [anon_sym_BSLASHfnotecite] = ACTIONS(1922), - [anon_sym_BSLASHlabel] = ACTIONS(1922), - [anon_sym_BSLASHref] = ACTIONS(1922), - [anon_sym_BSLASHeqref] = ACTIONS(1922), - [anon_sym_BSLASHvref] = ACTIONS(1922), - [anon_sym_BSLASHVref] = ACTIONS(1922), - [anon_sym_BSLASHautoref] = ACTIONS(1922), - [anon_sym_BSLASHpageref] = ACTIONS(1922), - [anon_sym_BSLASHcref] = ACTIONS(1922), - [anon_sym_BSLASHCref] = ACTIONS(1922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnameCref] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHlabelcref] = ACTIONS(1922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCrefrange] = ACTIONS(1922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnewlabel] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1920), - [anon_sym_BSLASHdef] = ACTIONS(1922), - [anon_sym_BSLASHlet] = ACTIONS(1922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1922), - [anon_sym_BSLASHgls] = ACTIONS(1922), - [anon_sym_BSLASHGls] = ACTIONS(1922), - [anon_sym_BSLASHGLS] = ACTIONS(1922), - [anon_sym_BSLASHglspl] = ACTIONS(1922), - [anon_sym_BSLASHGlspl] = ACTIONS(1922), - [anon_sym_BSLASHGLSpl] = ACTIONS(1922), - [anon_sym_BSLASHglsdisp] = ACTIONS(1922), - [anon_sym_BSLASHglslink] = ACTIONS(1922), - [anon_sym_BSLASHglstext] = ACTIONS(1922), - [anon_sym_BSLASHGlstext] = ACTIONS(1922), - [anon_sym_BSLASHGLStext] = ACTIONS(1922), - [anon_sym_BSLASHglsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1922), - [anon_sym_BSLASHglsplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSplural] = ACTIONS(1922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHglsname] = ACTIONS(1922), - [anon_sym_BSLASHGlsname] = ACTIONS(1922), - [anon_sym_BSLASHGLSname] = ACTIONS(1922), - [anon_sym_BSLASHglssymbol] = ACTIONS(1922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1922), - [anon_sym_BSLASHglsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1922), - [anon_sym_BSLASHglsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1922), - [anon_sym_BSLASHglsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1922), - [anon_sym_BSLASHglsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1922), - [anon_sym_BSLASHglsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1922), - [anon_sym_BSLASHnewacronym] = ACTIONS(1922), - [anon_sym_BSLASHacrshort] = ACTIONS(1922), - [anon_sym_BSLASHAcrshort] = ACTIONS(1922), - [anon_sym_BSLASHACRshort] = ACTIONS(1922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1922), - [anon_sym_BSLASHacrlong] = ACTIONS(1922), - [anon_sym_BSLASHAcrlong] = ACTIONS(1922), - [anon_sym_BSLASHACRlong] = ACTIONS(1922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1922), - [anon_sym_BSLASHacrfull] = ACTIONS(1922), - [anon_sym_BSLASHAcrfull] = ACTIONS(1922), - [anon_sym_BSLASHACRfull] = ACTIONS(1922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1922), - [anon_sym_BSLASHacs] = ACTIONS(1922), - [anon_sym_BSLASHAcs] = ACTIONS(1922), - [anon_sym_BSLASHacsp] = ACTIONS(1922), - [anon_sym_BSLASHAcsp] = ACTIONS(1922), - [anon_sym_BSLASHacl] = ACTIONS(1922), - [anon_sym_BSLASHAcl] = ACTIONS(1922), - [anon_sym_BSLASHaclp] = ACTIONS(1922), - [anon_sym_BSLASHAclp] = ACTIONS(1922), - [anon_sym_BSLASHacf] = ACTIONS(1922), - [anon_sym_BSLASHAcf] = ACTIONS(1922), - [anon_sym_BSLASHacfp] = ACTIONS(1922), - [anon_sym_BSLASHAcfp] = ACTIONS(1922), - [anon_sym_BSLASHac] = ACTIONS(1922), - [anon_sym_BSLASHAc] = ACTIONS(1922), - [anon_sym_BSLASHacp] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1922), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1922), - [anon_sym_BSLASHcolor] = ACTIONS(1922), - [anon_sym_BSLASHcolorbox] = ACTIONS(1922), - [anon_sym_BSLASHtextcolor] = ACTIONS(1922), - [anon_sym_BSLASHpagecolor] = ACTIONS(1922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1922), - }, - [311] = { - [sym_curly_group] = STATE(692), - [sym_mixed_group] = STATE(692), - [aux_sym_generic_command_repeat1] = STATE(318), - [ts_builtin_sym_end] = ACTIONS(4447), - [sym_command_name] = ACTIONS(4449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_RPAREN] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4451), - [anon_sym_RBRACK] = ACTIONS(4447), - [anon_sym_COMMA] = ACTIONS(4447), - [anon_sym_EQ] = ACTIONS(4447), - [anon_sym_BSLASHpart] = ACTIONS(4449), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddpart] = ACTIONS(4449), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4447), - [anon_sym_BSLASHchapter] = ACTIONS(4449), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddchap] = ACTIONS(4449), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsection] = ACTIONS(4449), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddsec] = ACTIONS(4449), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubsection] = ACTIONS(4449), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4449), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHparagraph] = ACTIONS(4449), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4449), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4447), - [anon_sym_BSLASHitem] = ACTIONS(4449), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4447), - [sym_word] = ACTIONS(4449), - [sym_placeholder] = ACTIONS(4447), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [anon_sym_SLASH] = ACTIONS(4449), - [anon_sym_CARET] = ACTIONS(4449), - [anon_sym__] = ACTIONS(4449), - [anon_sym_LT] = ACTIONS(4449), - [anon_sym_GT] = ACTIONS(4449), - [anon_sym_BANG] = ACTIONS(4449), - [anon_sym_PIPE] = ACTIONS(4449), - [anon_sym_COLON] = ACTIONS(4449), - [anon_sym_SQUOTE] = ACTIONS(4449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4447), - [anon_sym_BSLASHbegin] = ACTIONS(4449), - [anon_sym_BSLASHusepackage] = ACTIONS(4449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4449), - [anon_sym_BSLASHinclude] = ACTIONS(4449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4449), - [anon_sym_BSLASHinput] = ACTIONS(4449), - [anon_sym_BSLASHsubfile] = ACTIONS(4449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4449), - [anon_sym_BSLASHbibliography] = ACTIONS(4449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4449), - [anon_sym_BSLASHincludesvg] = ACTIONS(4449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4449), - [anon_sym_BSLASHimport] = ACTIONS(4449), - [anon_sym_BSLASHsubimport] = ACTIONS(4449), - [anon_sym_BSLASHinputfrom] = ACTIONS(4449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4449), - [anon_sym_BSLASHincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHcaption] = ACTIONS(4449), - [anon_sym_BSLASHcite] = ACTIONS(4449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCite] = ACTIONS(4449), - [anon_sym_BSLASHnocite] = ACTIONS(4449), - [anon_sym_BSLASHcitet] = ACTIONS(4449), - [anon_sym_BSLASHcitep] = ACTIONS(4449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteyear] = ACTIONS(4449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitedate] = ACTIONS(4449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteurl] = ACTIONS(4449), - [anon_sym_BSLASHfullcite] = ACTIONS(4449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4449), - [anon_sym_BSLASHcitealt] = ACTIONS(4449), - [anon_sym_BSLASHcitealp] = ACTIONS(4449), - [anon_sym_BSLASHcitetext] = ACTIONS(4449), - [anon_sym_BSLASHparencite] = ACTIONS(4449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHParencite] = ACTIONS(4449), - [anon_sym_BSLASHfootcite] = ACTIONS(4449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4449), - [anon_sym_BSLASHtextcite] = ACTIONS(4449), - [anon_sym_BSLASHTextcite] = ACTIONS(4449), - [anon_sym_BSLASHsmartcite] = ACTIONS(4449), - [anon_sym_BSLASHSmartcite] = ACTIONS(4449), - [anon_sym_BSLASHsupercite] = ACTIONS(4449), - [anon_sym_BSLASHautocite] = ACTIONS(4449), - [anon_sym_BSLASHAutocite] = ACTIONS(4449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHvolcite] = ACTIONS(4449), - [anon_sym_BSLASHVolcite] = ACTIONS(4449), - [anon_sym_BSLASHpvolcite] = ACTIONS(4449), - [anon_sym_BSLASHPvolcite] = ACTIONS(4449), - [anon_sym_BSLASHfvolcite] = ACTIONS(4449), - [anon_sym_BSLASHftvolcite] = ACTIONS(4449), - [anon_sym_BSLASHsvolcite] = ACTIONS(4449), - [anon_sym_BSLASHSvolcite] = ACTIONS(4449), - [anon_sym_BSLASHtvolcite] = ACTIONS(4449), - [anon_sym_BSLASHTvolcite] = ACTIONS(4449), - [anon_sym_BSLASHavolcite] = ACTIONS(4449), - [anon_sym_BSLASHAvolcite] = ACTIONS(4449), - [anon_sym_BSLASHnotecite] = ACTIONS(4449), - [anon_sym_BSLASHNotecite] = ACTIONS(4449), - [anon_sym_BSLASHpnotecite] = ACTIONS(4449), - [anon_sym_BSLASHPnotecite] = ACTIONS(4449), - [anon_sym_BSLASHfnotecite] = ACTIONS(4449), - [anon_sym_BSLASHlabel] = ACTIONS(4449), - [anon_sym_BSLASHref] = ACTIONS(4449), - [anon_sym_BSLASHeqref] = ACTIONS(4449), - [anon_sym_BSLASHvref] = ACTIONS(4449), - [anon_sym_BSLASHVref] = ACTIONS(4449), - [anon_sym_BSLASHautoref] = ACTIONS(4449), - [anon_sym_BSLASHpageref] = ACTIONS(4449), - [anon_sym_BSLASHcref] = ACTIONS(4449), - [anon_sym_BSLASHCref] = ACTIONS(4449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnameCref] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHlabelcref] = ACTIONS(4449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnewlabel] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4447), - [anon_sym_BSLASHdef] = ACTIONS(4449), - [anon_sym_BSLASHlet] = ACTIONS(4449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4449), - [anon_sym_BSLASHgls] = ACTIONS(4449), - [anon_sym_BSLASHGls] = ACTIONS(4449), - [anon_sym_BSLASHGLS] = ACTIONS(4449), - [anon_sym_BSLASHglspl] = ACTIONS(4449), - [anon_sym_BSLASHGlspl] = ACTIONS(4449), - [anon_sym_BSLASHGLSpl] = ACTIONS(4449), - [anon_sym_BSLASHglsdisp] = ACTIONS(4449), - [anon_sym_BSLASHglslink] = ACTIONS(4449), - [anon_sym_BSLASHglstext] = ACTIONS(4449), - [anon_sym_BSLASHGlstext] = ACTIONS(4449), - [anon_sym_BSLASHGLStext] = ACTIONS(4449), - [anon_sym_BSLASHglsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4449), - [anon_sym_BSLASHglsplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSplural] = ACTIONS(4449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHglsname] = ACTIONS(4449), - [anon_sym_BSLASHGlsname] = ACTIONS(4449), - [anon_sym_BSLASHGLSname] = ACTIONS(4449), - [anon_sym_BSLASHglssymbol] = ACTIONS(4449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4449), - [anon_sym_BSLASHglsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4449), - [anon_sym_BSLASHglsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4449), - [anon_sym_BSLASHglsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4449), - [anon_sym_BSLASHglsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4449), - [anon_sym_BSLASHglsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4449), - [anon_sym_BSLASHnewacronym] = ACTIONS(4449), - [anon_sym_BSLASHacrshort] = ACTIONS(4449), - [anon_sym_BSLASHAcrshort] = ACTIONS(4449), - [anon_sym_BSLASHACRshort] = ACTIONS(4449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4449), - [anon_sym_BSLASHacrlong] = ACTIONS(4449), - [anon_sym_BSLASHAcrlong] = ACTIONS(4449), - [anon_sym_BSLASHACRlong] = ACTIONS(4449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4449), - [anon_sym_BSLASHacrfull] = ACTIONS(4449), - [anon_sym_BSLASHAcrfull] = ACTIONS(4449), - [anon_sym_BSLASHACRfull] = ACTIONS(4449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4449), - [anon_sym_BSLASHacs] = ACTIONS(4449), - [anon_sym_BSLASHAcs] = ACTIONS(4449), - [anon_sym_BSLASHacsp] = ACTIONS(4449), - [anon_sym_BSLASHAcsp] = ACTIONS(4449), - [anon_sym_BSLASHacl] = ACTIONS(4449), - [anon_sym_BSLASHAcl] = ACTIONS(4449), - [anon_sym_BSLASHaclp] = ACTIONS(4449), - [anon_sym_BSLASHAclp] = ACTIONS(4449), - [anon_sym_BSLASHacf] = ACTIONS(4449), - [anon_sym_BSLASHAcf] = ACTIONS(4449), - [anon_sym_BSLASHacfp] = ACTIONS(4449), - [anon_sym_BSLASHAcfp] = ACTIONS(4449), - [anon_sym_BSLASHac] = ACTIONS(4449), - [anon_sym_BSLASHAc] = ACTIONS(4449), - [anon_sym_BSLASHacp] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4449), - [anon_sym_BSLASHcolor] = ACTIONS(4449), - [anon_sym_BSLASHcolorbox] = ACTIONS(4449), - [anon_sym_BSLASHtextcolor] = ACTIONS(4449), - [anon_sym_BSLASHpagecolor] = ACTIONS(4449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4449), - }, - [312] = { - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [313] = { - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(339), - [aux_sym__section_repeat2] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(4417), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [anon_sym_RBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [314] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(281), - [aux_sym__section_repeat6] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [315] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [316] = { - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(4453), - [sym_command_name] = ACTIONS(4455), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4453), - [anon_sym_RPAREN] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4453), - [anon_sym_RBRACK] = ACTIONS(4453), - [anon_sym_COMMA] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(4453), - [anon_sym_BSLASHpart] = ACTIONS(4455), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddpart] = ACTIONS(4455), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4453), - [anon_sym_BSLASHchapter] = ACTIONS(4455), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddchap] = ACTIONS(4455), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsection] = ACTIONS(4455), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddsec] = ACTIONS(4455), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubsection] = ACTIONS(4455), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHparagraph] = ACTIONS(4455), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4453), - [anon_sym_BSLASHitem] = ACTIONS(4457), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4453), - [anon_sym_RBRACE] = ACTIONS(4453), - [sym_word] = ACTIONS(4455), - [sym_placeholder] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(4455), - [anon_sym_STAR] = ACTIONS(4455), - [anon_sym_SLASH] = ACTIONS(4455), - [anon_sym_CARET] = ACTIONS(4455), - [anon_sym__] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4455), - [anon_sym_GT] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4455), - [anon_sym_PIPE] = ACTIONS(4455), - [anon_sym_COLON] = ACTIONS(4455), - [anon_sym_SQUOTE] = ACTIONS(4455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4453), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4453), - [anon_sym_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4453), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4453), - [anon_sym_BSLASHbegin] = ACTIONS(4455), - [anon_sym_BSLASHusepackage] = ACTIONS(4455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4455), - [anon_sym_BSLASHinclude] = ACTIONS(4455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4455), - [anon_sym_BSLASHinput] = ACTIONS(4455), - [anon_sym_BSLASHsubfile] = ACTIONS(4455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4455), - [anon_sym_BSLASHbibliography] = ACTIONS(4455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4455), - [anon_sym_BSLASHincludesvg] = ACTIONS(4455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4455), - [anon_sym_BSLASHimport] = ACTIONS(4455), - [anon_sym_BSLASHsubimport] = ACTIONS(4455), - [anon_sym_BSLASHinputfrom] = ACTIONS(4455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4455), - [anon_sym_BSLASHincludefrom] = ACTIONS(4455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4455), - [anon_sym_BSLASHcaption] = ACTIONS(4455), - [anon_sym_BSLASHcite] = ACTIONS(4455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCite] = ACTIONS(4455), - [anon_sym_BSLASHnocite] = ACTIONS(4455), - [anon_sym_BSLASHcitet] = ACTIONS(4455), - [anon_sym_BSLASHcitep] = ACTIONS(4455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteauthor] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitetitle] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteyear] = ACTIONS(4455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitedate] = ACTIONS(4455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteurl] = ACTIONS(4455), - [anon_sym_BSLASHfullcite] = ACTIONS(4455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4455), - [anon_sym_BSLASHcitealt] = ACTIONS(4455), - [anon_sym_BSLASHcitealp] = ACTIONS(4455), - [anon_sym_BSLASHcitetext] = ACTIONS(4455), - [anon_sym_BSLASHparencite] = ACTIONS(4455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHParencite] = ACTIONS(4455), - [anon_sym_BSLASHfootcite] = ACTIONS(4455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4455), - [anon_sym_BSLASHtextcite] = ACTIONS(4455), - [anon_sym_BSLASHTextcite] = ACTIONS(4455), - [anon_sym_BSLASHsmartcite] = ACTIONS(4455), - [anon_sym_BSLASHSmartcite] = ACTIONS(4455), - [anon_sym_BSLASHsupercite] = ACTIONS(4455), - [anon_sym_BSLASHautocite] = ACTIONS(4455), - [anon_sym_BSLASHAutocite] = ACTIONS(4455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHvolcite] = ACTIONS(4455), - [anon_sym_BSLASHVolcite] = ACTIONS(4455), - [anon_sym_BSLASHpvolcite] = ACTIONS(4455), - [anon_sym_BSLASHPvolcite] = ACTIONS(4455), - [anon_sym_BSLASHfvolcite] = ACTIONS(4455), - [anon_sym_BSLASHftvolcite] = ACTIONS(4455), - [anon_sym_BSLASHsvolcite] = ACTIONS(4455), - [anon_sym_BSLASHSvolcite] = ACTIONS(4455), - [anon_sym_BSLASHtvolcite] = ACTIONS(4455), - [anon_sym_BSLASHTvolcite] = ACTIONS(4455), - [anon_sym_BSLASHavolcite] = ACTIONS(4455), - [anon_sym_BSLASHAvolcite] = ACTIONS(4455), - [anon_sym_BSLASHnotecite] = ACTIONS(4455), - [anon_sym_BSLASHNotecite] = ACTIONS(4455), - [anon_sym_BSLASHpnotecite] = ACTIONS(4455), - [anon_sym_BSLASHPnotecite] = ACTIONS(4455), - [anon_sym_BSLASHfnotecite] = ACTIONS(4455), - [anon_sym_BSLASHlabel] = ACTIONS(4455), - [anon_sym_BSLASHref] = ACTIONS(4455), - [anon_sym_BSLASHeqref] = ACTIONS(4455), - [anon_sym_BSLASHvref] = ACTIONS(4455), - [anon_sym_BSLASHVref] = ACTIONS(4455), - [anon_sym_BSLASHautoref] = ACTIONS(4455), - [anon_sym_BSLASHpageref] = ACTIONS(4455), - [anon_sym_BSLASHcref] = ACTIONS(4455), - [anon_sym_BSLASHCref] = ACTIONS(4455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4453), - [anon_sym_BSLASHnamecref] = ACTIONS(4455), - [anon_sym_BSLASHnameCref] = ACTIONS(4455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4455), - [anon_sym_BSLASHlabelcref] = ACTIONS(4455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4455), - [anon_sym_BSLASHcrefrange] = ACTIONS(4455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCrefrange] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4453), - [anon_sym_BSLASHnewlabel] = ACTIONS(4455), - [anon_sym_BSLASHnewcommand] = ACTIONS(4455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4453), - [anon_sym_BSLASHdef] = ACTIONS(4455), - [anon_sym_BSLASHlet] = ACTIONS(4455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4455), - [anon_sym_BSLASHgls] = ACTIONS(4455), - [anon_sym_BSLASHGls] = ACTIONS(4455), - [anon_sym_BSLASHGLS] = ACTIONS(4455), - [anon_sym_BSLASHglspl] = ACTIONS(4455), - [anon_sym_BSLASHGlspl] = ACTIONS(4455), - [anon_sym_BSLASHGLSpl] = ACTIONS(4455), - [anon_sym_BSLASHglsdisp] = ACTIONS(4455), - [anon_sym_BSLASHglslink] = ACTIONS(4455), - [anon_sym_BSLASHglstext] = ACTIONS(4455), - [anon_sym_BSLASHGlstext] = ACTIONS(4455), - [anon_sym_BSLASHGLStext] = ACTIONS(4455), - [anon_sym_BSLASHglsfirst] = ACTIONS(4455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4455), - [anon_sym_BSLASHglsplural] = ACTIONS(4455), - [anon_sym_BSLASHGlsplural] = ACTIONS(4455), - [anon_sym_BSLASHGLSplural] = ACTIONS(4455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHglsname] = ACTIONS(4455), - [anon_sym_BSLASHGlsname] = ACTIONS(4455), - [anon_sym_BSLASHGLSname] = ACTIONS(4455), - [anon_sym_BSLASHglssymbol] = ACTIONS(4455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4455), - [anon_sym_BSLASHglsdesc] = ACTIONS(4455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4455), - [anon_sym_BSLASHglsuseri] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4455), - [anon_sym_BSLASHglsuserii] = ACTIONS(4455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4455), - [anon_sym_BSLASHglsuserv] = ACTIONS(4455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4455), - [anon_sym_BSLASHglsuservi] = ACTIONS(4455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4455), - [anon_sym_BSLASHnewacronym] = ACTIONS(4455), - [anon_sym_BSLASHacrshort] = ACTIONS(4455), - [anon_sym_BSLASHAcrshort] = ACTIONS(4455), - [anon_sym_BSLASHACRshort] = ACTIONS(4455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4455), - [anon_sym_BSLASHacrlong] = ACTIONS(4455), - [anon_sym_BSLASHAcrlong] = ACTIONS(4455), - [anon_sym_BSLASHACRlong] = ACTIONS(4455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4455), - [anon_sym_BSLASHacrfull] = ACTIONS(4455), - [anon_sym_BSLASHAcrfull] = ACTIONS(4455), - [anon_sym_BSLASHACRfull] = ACTIONS(4455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4455), - [anon_sym_BSLASHacs] = ACTIONS(4455), - [anon_sym_BSLASHAcs] = ACTIONS(4455), - [anon_sym_BSLASHacsp] = ACTIONS(4455), - [anon_sym_BSLASHAcsp] = ACTIONS(4455), - [anon_sym_BSLASHacl] = ACTIONS(4455), - [anon_sym_BSLASHAcl] = ACTIONS(4455), - [anon_sym_BSLASHaclp] = ACTIONS(4455), - [anon_sym_BSLASHAclp] = ACTIONS(4455), - [anon_sym_BSLASHacf] = ACTIONS(4455), - [anon_sym_BSLASHAcf] = ACTIONS(4455), - [anon_sym_BSLASHacfp] = ACTIONS(4455), - [anon_sym_BSLASHAcfp] = ACTIONS(4455), - [anon_sym_BSLASHac] = ACTIONS(4455), - [anon_sym_BSLASHAc] = ACTIONS(4455), - [anon_sym_BSLASHacp] = ACTIONS(4455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4455), - [anon_sym_BSLASHcolor] = ACTIONS(4455), - [anon_sym_BSLASHcolorbox] = ACTIONS(4455), - [anon_sym_BSLASHtextcolor] = ACTIONS(4455), - [anon_sym_BSLASHpagecolor] = ACTIONS(4455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4455), - }, - [317] = { - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_RBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [318] = { - [sym_curly_group] = STATE(692), - [sym_mixed_group] = STATE(692), - [aux_sym_generic_command_repeat1] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(4463), - [sym_command_name] = ACTIONS(4465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4465), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym_RPAREN] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4451), - [anon_sym_RBRACK] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_EQ] = ACTIONS(4463), - [anon_sym_BSLASHpart] = ACTIONS(4465), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddpart] = ACTIONS(4465), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4463), - [anon_sym_BSLASHchapter] = ACTIONS(4465), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddchap] = ACTIONS(4465), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsection] = ACTIONS(4465), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddsec] = ACTIONS(4465), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubsection] = ACTIONS(4465), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4465), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHparagraph] = ACTIONS(4465), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4465), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4463), - [anon_sym_BSLASHitem] = ACTIONS(4465), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4463), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4463), - [sym_word] = ACTIONS(4465), - [sym_placeholder] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_CARET] = ACTIONS(4465), - [anon_sym__] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_PIPE] = ACTIONS(4465), - [anon_sym_COLON] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4465), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4463), - [anon_sym_DOLLAR] = ACTIONS(4465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4463), - [anon_sym_BSLASHbegin] = ACTIONS(4465), - [anon_sym_BSLASHusepackage] = ACTIONS(4465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4465), - [anon_sym_BSLASHinclude] = ACTIONS(4465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4465), - [anon_sym_BSLASHinput] = ACTIONS(4465), - [anon_sym_BSLASHsubfile] = ACTIONS(4465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4465), - [anon_sym_BSLASHbibliography] = ACTIONS(4465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4465), - [anon_sym_BSLASHincludesvg] = ACTIONS(4465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4465), - [anon_sym_BSLASHimport] = ACTIONS(4465), - [anon_sym_BSLASHsubimport] = ACTIONS(4465), - [anon_sym_BSLASHinputfrom] = ACTIONS(4465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4465), - [anon_sym_BSLASHincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHcaption] = ACTIONS(4465), - [anon_sym_BSLASHcite] = ACTIONS(4465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCite] = ACTIONS(4465), - [anon_sym_BSLASHnocite] = ACTIONS(4465), - [anon_sym_BSLASHcitet] = ACTIONS(4465), - [anon_sym_BSLASHcitep] = ACTIONS(4465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteauthor] = ACTIONS(4465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitetitle] = ACTIONS(4465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteyear] = ACTIONS(4465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitedate] = ACTIONS(4465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteurl] = ACTIONS(4465), - [anon_sym_BSLASHfullcite] = ACTIONS(4465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4465), - [anon_sym_BSLASHcitealt] = ACTIONS(4465), - [anon_sym_BSLASHcitealp] = ACTIONS(4465), - [anon_sym_BSLASHcitetext] = ACTIONS(4465), - [anon_sym_BSLASHparencite] = ACTIONS(4465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHParencite] = ACTIONS(4465), - [anon_sym_BSLASHfootcite] = ACTIONS(4465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4465), - [anon_sym_BSLASHtextcite] = ACTIONS(4465), - [anon_sym_BSLASHTextcite] = ACTIONS(4465), - [anon_sym_BSLASHsmartcite] = ACTIONS(4465), - [anon_sym_BSLASHSmartcite] = ACTIONS(4465), - [anon_sym_BSLASHsupercite] = ACTIONS(4465), - [anon_sym_BSLASHautocite] = ACTIONS(4465), - [anon_sym_BSLASHAutocite] = ACTIONS(4465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHvolcite] = ACTIONS(4465), - [anon_sym_BSLASHVolcite] = ACTIONS(4465), - [anon_sym_BSLASHpvolcite] = ACTIONS(4465), - [anon_sym_BSLASHPvolcite] = ACTIONS(4465), - [anon_sym_BSLASHfvolcite] = ACTIONS(4465), - [anon_sym_BSLASHftvolcite] = ACTIONS(4465), - [anon_sym_BSLASHsvolcite] = ACTIONS(4465), - [anon_sym_BSLASHSvolcite] = ACTIONS(4465), - [anon_sym_BSLASHtvolcite] = ACTIONS(4465), - [anon_sym_BSLASHTvolcite] = ACTIONS(4465), - [anon_sym_BSLASHavolcite] = ACTIONS(4465), - [anon_sym_BSLASHAvolcite] = ACTIONS(4465), - [anon_sym_BSLASHnotecite] = ACTIONS(4465), - [anon_sym_BSLASHNotecite] = ACTIONS(4465), - [anon_sym_BSLASHpnotecite] = ACTIONS(4465), - [anon_sym_BSLASHPnotecite] = ACTIONS(4465), - [anon_sym_BSLASHfnotecite] = ACTIONS(4465), - [anon_sym_BSLASHlabel] = ACTIONS(4465), - [anon_sym_BSLASHref] = ACTIONS(4465), - [anon_sym_BSLASHeqref] = ACTIONS(4465), - [anon_sym_BSLASHvref] = ACTIONS(4465), - [anon_sym_BSLASHVref] = ACTIONS(4465), - [anon_sym_BSLASHautoref] = ACTIONS(4465), - [anon_sym_BSLASHpageref] = ACTIONS(4465), - [anon_sym_BSLASHcref] = ACTIONS(4465), - [anon_sym_BSLASHCref] = ACTIONS(4465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnameCref] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHlabelcref] = ACTIONS(4465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCrefrange] = ACTIONS(4465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnewlabel] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4463), - [anon_sym_BSLASHdef] = ACTIONS(4465), - [anon_sym_BSLASHlet] = ACTIONS(4465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4465), - [anon_sym_BSLASHgls] = ACTIONS(4465), - [anon_sym_BSLASHGls] = ACTIONS(4465), - [anon_sym_BSLASHGLS] = ACTIONS(4465), - [anon_sym_BSLASHglspl] = ACTIONS(4465), - [anon_sym_BSLASHGlspl] = ACTIONS(4465), - [anon_sym_BSLASHGLSpl] = ACTIONS(4465), - [anon_sym_BSLASHglsdisp] = ACTIONS(4465), - [anon_sym_BSLASHglslink] = ACTIONS(4465), - [anon_sym_BSLASHglstext] = ACTIONS(4465), - [anon_sym_BSLASHGlstext] = ACTIONS(4465), - [anon_sym_BSLASHGLStext] = ACTIONS(4465), - [anon_sym_BSLASHglsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4465), - [anon_sym_BSLASHglsplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSplural] = ACTIONS(4465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHglsname] = ACTIONS(4465), - [anon_sym_BSLASHGlsname] = ACTIONS(4465), - [anon_sym_BSLASHGLSname] = ACTIONS(4465), - [anon_sym_BSLASHglssymbol] = ACTIONS(4465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4465), - [anon_sym_BSLASHglsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4465), - [anon_sym_BSLASHglsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4465), - [anon_sym_BSLASHglsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4465), - [anon_sym_BSLASHglsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4465), - [anon_sym_BSLASHglsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4465), - [anon_sym_BSLASHnewacronym] = ACTIONS(4465), - [anon_sym_BSLASHacrshort] = ACTIONS(4465), - [anon_sym_BSLASHAcrshort] = ACTIONS(4465), - [anon_sym_BSLASHACRshort] = ACTIONS(4465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4465), - [anon_sym_BSLASHacrlong] = ACTIONS(4465), - [anon_sym_BSLASHAcrlong] = ACTIONS(4465), - [anon_sym_BSLASHACRlong] = ACTIONS(4465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4465), - [anon_sym_BSLASHacrfull] = ACTIONS(4465), - [anon_sym_BSLASHAcrfull] = ACTIONS(4465), - [anon_sym_BSLASHACRfull] = ACTIONS(4465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4465), - [anon_sym_BSLASHacs] = ACTIONS(4465), - [anon_sym_BSLASHAcs] = ACTIONS(4465), - [anon_sym_BSLASHacsp] = ACTIONS(4465), - [anon_sym_BSLASHAcsp] = ACTIONS(4465), - [anon_sym_BSLASHacl] = ACTIONS(4465), - [anon_sym_BSLASHAcl] = ACTIONS(4465), - [anon_sym_BSLASHaclp] = ACTIONS(4465), - [anon_sym_BSLASHAclp] = ACTIONS(4465), - [anon_sym_BSLASHacf] = ACTIONS(4465), - [anon_sym_BSLASHAcf] = ACTIONS(4465), - [anon_sym_BSLASHacfp] = ACTIONS(4465), - [anon_sym_BSLASHAcfp] = ACTIONS(4465), - [anon_sym_BSLASHac] = ACTIONS(4465), - [anon_sym_BSLASHAc] = ACTIONS(4465), - [anon_sym_BSLASHacp] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4465), - [anon_sym_BSLASHcolor] = ACTIONS(4465), - [anon_sym_BSLASHcolorbox] = ACTIONS(4465), - [anon_sym_BSLASHtextcolor] = ACTIONS(4465), - [anon_sym_BSLASHpagecolor] = ACTIONS(4465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4465), - }, - [319] = { - [sym_curly_group] = STATE(692), - [sym_mixed_group] = STATE(692), - [aux_sym_generic_command_repeat1] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(4467), - [sym_command_name] = ACTIONS(4469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4469), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4471), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_EQ] = ACTIONS(4467), - [anon_sym_BSLASHpart] = ACTIONS(4469), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddpart] = ACTIONS(4469), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4467), - [anon_sym_BSLASHchapter] = ACTIONS(4469), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddchap] = ACTIONS(4469), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsection] = ACTIONS(4469), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddsec] = ACTIONS(4469), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubsection] = ACTIONS(4469), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHparagraph] = ACTIONS(4469), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4467), - [anon_sym_BSLASHitem] = ACTIONS(4469), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(4474), - [anon_sym_RBRACE] = ACTIONS(4467), - [sym_word] = ACTIONS(4469), - [sym_placeholder] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_CARET] = ACTIONS(4469), - [anon_sym__] = ACTIONS(4469), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_PIPE] = ACTIONS(4469), - [anon_sym_COLON] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4467), - [anon_sym_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4467), - [anon_sym_BSLASHbegin] = ACTIONS(4469), - [anon_sym_BSLASHusepackage] = ACTIONS(4469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4469), - [anon_sym_BSLASHinclude] = ACTIONS(4469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4469), - [anon_sym_BSLASHinput] = ACTIONS(4469), - [anon_sym_BSLASHsubfile] = ACTIONS(4469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4469), - [anon_sym_BSLASHbibliography] = ACTIONS(4469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4469), - [anon_sym_BSLASHincludesvg] = ACTIONS(4469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4469), - [anon_sym_BSLASHimport] = ACTIONS(4469), - [anon_sym_BSLASHsubimport] = ACTIONS(4469), - [anon_sym_BSLASHinputfrom] = ACTIONS(4469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4469), - [anon_sym_BSLASHincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHcaption] = ACTIONS(4469), - [anon_sym_BSLASHcite] = ACTIONS(4469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCite] = ACTIONS(4469), - [anon_sym_BSLASHnocite] = ACTIONS(4469), - [anon_sym_BSLASHcitet] = ACTIONS(4469), - [anon_sym_BSLASHcitep] = ACTIONS(4469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteauthor] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitetitle] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteyear] = ACTIONS(4469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitedate] = ACTIONS(4469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteurl] = ACTIONS(4469), - [anon_sym_BSLASHfullcite] = ACTIONS(4469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4469), - [anon_sym_BSLASHcitealt] = ACTIONS(4469), - [anon_sym_BSLASHcitealp] = ACTIONS(4469), - [anon_sym_BSLASHcitetext] = ACTIONS(4469), - [anon_sym_BSLASHparencite] = ACTIONS(4469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHParencite] = ACTIONS(4469), - [anon_sym_BSLASHfootcite] = ACTIONS(4469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4469), - [anon_sym_BSLASHtextcite] = ACTIONS(4469), - [anon_sym_BSLASHTextcite] = ACTIONS(4469), - [anon_sym_BSLASHsmartcite] = ACTIONS(4469), - [anon_sym_BSLASHSmartcite] = ACTIONS(4469), - [anon_sym_BSLASHsupercite] = ACTIONS(4469), - [anon_sym_BSLASHautocite] = ACTIONS(4469), - [anon_sym_BSLASHAutocite] = ACTIONS(4469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHvolcite] = ACTIONS(4469), - [anon_sym_BSLASHVolcite] = ACTIONS(4469), - [anon_sym_BSLASHpvolcite] = ACTIONS(4469), - [anon_sym_BSLASHPvolcite] = ACTIONS(4469), - [anon_sym_BSLASHfvolcite] = ACTIONS(4469), - [anon_sym_BSLASHftvolcite] = ACTIONS(4469), - [anon_sym_BSLASHsvolcite] = ACTIONS(4469), - [anon_sym_BSLASHSvolcite] = ACTIONS(4469), - [anon_sym_BSLASHtvolcite] = ACTIONS(4469), - [anon_sym_BSLASHTvolcite] = ACTIONS(4469), - [anon_sym_BSLASHavolcite] = ACTIONS(4469), - [anon_sym_BSLASHAvolcite] = ACTIONS(4469), - [anon_sym_BSLASHnotecite] = ACTIONS(4469), - [anon_sym_BSLASHNotecite] = ACTIONS(4469), - [anon_sym_BSLASHpnotecite] = ACTIONS(4469), - [anon_sym_BSLASHPnotecite] = ACTIONS(4469), - [anon_sym_BSLASHfnotecite] = ACTIONS(4469), - [anon_sym_BSLASHlabel] = ACTIONS(4469), - [anon_sym_BSLASHref] = ACTIONS(4469), - [anon_sym_BSLASHeqref] = ACTIONS(4469), - [anon_sym_BSLASHvref] = ACTIONS(4469), - [anon_sym_BSLASHVref] = ACTIONS(4469), - [anon_sym_BSLASHautoref] = ACTIONS(4469), - [anon_sym_BSLASHpageref] = ACTIONS(4469), - [anon_sym_BSLASHcref] = ACTIONS(4469), - [anon_sym_BSLASHCref] = ACTIONS(4469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnameCref] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHlabelcref] = ACTIONS(4469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCrefrange] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnewlabel] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4467), - [anon_sym_BSLASHdef] = ACTIONS(4469), - [anon_sym_BSLASHlet] = ACTIONS(4469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4469), - [anon_sym_BSLASHgls] = ACTIONS(4469), - [anon_sym_BSLASHGls] = ACTIONS(4469), - [anon_sym_BSLASHGLS] = ACTIONS(4469), - [anon_sym_BSLASHglspl] = ACTIONS(4469), - [anon_sym_BSLASHGlspl] = ACTIONS(4469), - [anon_sym_BSLASHGLSpl] = ACTIONS(4469), - [anon_sym_BSLASHglsdisp] = ACTIONS(4469), - [anon_sym_BSLASHglslink] = ACTIONS(4469), - [anon_sym_BSLASHglstext] = ACTIONS(4469), - [anon_sym_BSLASHGlstext] = ACTIONS(4469), - [anon_sym_BSLASHGLStext] = ACTIONS(4469), - [anon_sym_BSLASHglsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4469), - [anon_sym_BSLASHglsplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSplural] = ACTIONS(4469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHglsname] = ACTIONS(4469), - [anon_sym_BSLASHGlsname] = ACTIONS(4469), - [anon_sym_BSLASHGLSname] = ACTIONS(4469), - [anon_sym_BSLASHglssymbol] = ACTIONS(4469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4469), - [anon_sym_BSLASHglsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4469), - [anon_sym_BSLASHglsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4469), - [anon_sym_BSLASHglsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4469), - [anon_sym_BSLASHglsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4469), - [anon_sym_BSLASHglsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4469), - [anon_sym_BSLASHnewacronym] = ACTIONS(4469), - [anon_sym_BSLASHacrshort] = ACTIONS(4469), - [anon_sym_BSLASHAcrshort] = ACTIONS(4469), - [anon_sym_BSLASHACRshort] = ACTIONS(4469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4469), - [anon_sym_BSLASHacrlong] = ACTIONS(4469), - [anon_sym_BSLASHAcrlong] = ACTIONS(4469), - [anon_sym_BSLASHACRlong] = ACTIONS(4469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4469), - [anon_sym_BSLASHacrfull] = ACTIONS(4469), - [anon_sym_BSLASHAcrfull] = ACTIONS(4469), - [anon_sym_BSLASHACRfull] = ACTIONS(4469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4469), - [anon_sym_BSLASHacs] = ACTIONS(4469), - [anon_sym_BSLASHAcs] = ACTIONS(4469), - [anon_sym_BSLASHacsp] = ACTIONS(4469), - [anon_sym_BSLASHAcsp] = ACTIONS(4469), - [anon_sym_BSLASHacl] = ACTIONS(4469), - [anon_sym_BSLASHAcl] = ACTIONS(4469), - [anon_sym_BSLASHaclp] = ACTIONS(4469), - [anon_sym_BSLASHAclp] = ACTIONS(4469), - [anon_sym_BSLASHacf] = ACTIONS(4469), - [anon_sym_BSLASHAcf] = ACTIONS(4469), - [anon_sym_BSLASHacfp] = ACTIONS(4469), - [anon_sym_BSLASHAcfp] = ACTIONS(4469), - [anon_sym_BSLASHac] = ACTIONS(4469), - [anon_sym_BSLASHAc] = ACTIONS(4469), - [anon_sym_BSLASHacp] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4469), - [anon_sym_BSLASHcolor] = ACTIONS(4469), - [anon_sym_BSLASHcolorbox] = ACTIONS(4469), - [anon_sym_BSLASHtextcolor] = ACTIONS(4469), - [anon_sym_BSLASHpagecolor] = ACTIONS(4469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4469), - }, - [320] = { - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(287), - [aux_sym__section_repeat4] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [321] = { - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(1920), - [sym_command_name] = ACTIONS(1922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1922), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1920), - [anon_sym_RBRACE] = ACTIONS(1920), - [sym_word] = ACTIONS(1922), - [sym_placeholder] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_SLASH] = ACTIONS(1922), - [anon_sym_CARET] = ACTIONS(1922), - [anon_sym__] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_COLON] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1920), - [anon_sym_BSLASHbegin] = ACTIONS(1922), - [anon_sym_BSLASHusepackage] = ACTIONS(1922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1922), - [anon_sym_BSLASHinclude] = ACTIONS(1922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1922), - [anon_sym_BSLASHinput] = ACTIONS(1922), - [anon_sym_BSLASHsubfile] = ACTIONS(1922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1922), - [anon_sym_BSLASHbibliography] = ACTIONS(1922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1922), - [anon_sym_BSLASHincludesvg] = ACTIONS(1922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1922), - [anon_sym_BSLASHimport] = ACTIONS(1922), - [anon_sym_BSLASHsubimport] = ACTIONS(1922), - [anon_sym_BSLASHinputfrom] = ACTIONS(1922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1922), - [anon_sym_BSLASHincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHcaption] = ACTIONS(1922), - [anon_sym_BSLASHcite] = ACTIONS(1922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCite] = ACTIONS(1922), - [anon_sym_BSLASHnocite] = ACTIONS(1922), - [anon_sym_BSLASHcitet] = ACTIONS(1922), - [anon_sym_BSLASHcitep] = ACTIONS(1922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteauthor] = ACTIONS(1922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitetitle] = ACTIONS(1922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteyear] = ACTIONS(1922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitedate] = ACTIONS(1922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteurl] = ACTIONS(1922), - [anon_sym_BSLASHfullcite] = ACTIONS(1922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1922), - [anon_sym_BSLASHcitealt] = ACTIONS(1922), - [anon_sym_BSLASHcitealp] = ACTIONS(1922), - [anon_sym_BSLASHcitetext] = ACTIONS(1922), - [anon_sym_BSLASHparencite] = ACTIONS(1922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHParencite] = ACTIONS(1922), - [anon_sym_BSLASHfootcite] = ACTIONS(1922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1922), - [anon_sym_BSLASHtextcite] = ACTIONS(1922), - [anon_sym_BSLASHTextcite] = ACTIONS(1922), - [anon_sym_BSLASHsmartcite] = ACTIONS(1922), - [anon_sym_BSLASHSmartcite] = ACTIONS(1922), - [anon_sym_BSLASHsupercite] = ACTIONS(1922), - [anon_sym_BSLASHautocite] = ACTIONS(1922), - [anon_sym_BSLASHAutocite] = ACTIONS(1922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHvolcite] = ACTIONS(1922), - [anon_sym_BSLASHVolcite] = ACTIONS(1922), - [anon_sym_BSLASHpvolcite] = ACTIONS(1922), - [anon_sym_BSLASHPvolcite] = ACTIONS(1922), - [anon_sym_BSLASHfvolcite] = ACTIONS(1922), - [anon_sym_BSLASHftvolcite] = ACTIONS(1922), - [anon_sym_BSLASHsvolcite] = ACTIONS(1922), - [anon_sym_BSLASHSvolcite] = ACTIONS(1922), - [anon_sym_BSLASHtvolcite] = ACTIONS(1922), - [anon_sym_BSLASHTvolcite] = ACTIONS(1922), - [anon_sym_BSLASHavolcite] = ACTIONS(1922), - [anon_sym_BSLASHAvolcite] = ACTIONS(1922), - [anon_sym_BSLASHnotecite] = ACTIONS(1922), - [anon_sym_BSLASHNotecite] = ACTIONS(1922), - [anon_sym_BSLASHpnotecite] = ACTIONS(1922), - [anon_sym_BSLASHPnotecite] = ACTIONS(1922), - [anon_sym_BSLASHfnotecite] = ACTIONS(1922), - [anon_sym_BSLASHlabel] = ACTIONS(1922), - [anon_sym_BSLASHref] = ACTIONS(1922), - [anon_sym_BSLASHeqref] = ACTIONS(1922), - [anon_sym_BSLASHvref] = ACTIONS(1922), - [anon_sym_BSLASHVref] = ACTIONS(1922), - [anon_sym_BSLASHautoref] = ACTIONS(1922), - [anon_sym_BSLASHpageref] = ACTIONS(1922), - [anon_sym_BSLASHcref] = ACTIONS(1922), - [anon_sym_BSLASHCref] = ACTIONS(1922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnameCref] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHlabelcref] = ACTIONS(1922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCrefrange] = ACTIONS(1922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnewlabel] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1920), - [anon_sym_BSLASHdef] = ACTIONS(1922), - [anon_sym_BSLASHlet] = ACTIONS(1922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1922), - [anon_sym_BSLASHgls] = ACTIONS(1922), - [anon_sym_BSLASHGls] = ACTIONS(1922), - [anon_sym_BSLASHGLS] = ACTIONS(1922), - [anon_sym_BSLASHglspl] = ACTIONS(1922), - [anon_sym_BSLASHGlspl] = ACTIONS(1922), - [anon_sym_BSLASHGLSpl] = ACTIONS(1922), - [anon_sym_BSLASHglsdisp] = ACTIONS(1922), - [anon_sym_BSLASHglslink] = ACTIONS(1922), - [anon_sym_BSLASHglstext] = ACTIONS(1922), - [anon_sym_BSLASHGlstext] = ACTIONS(1922), - [anon_sym_BSLASHGLStext] = ACTIONS(1922), - [anon_sym_BSLASHglsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1922), - [anon_sym_BSLASHglsplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSplural] = ACTIONS(1922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHglsname] = ACTIONS(1922), - [anon_sym_BSLASHGlsname] = ACTIONS(1922), - [anon_sym_BSLASHGLSname] = ACTIONS(1922), - [anon_sym_BSLASHglssymbol] = ACTIONS(1922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1922), - [anon_sym_BSLASHglsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1922), - [anon_sym_BSLASHglsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1922), - [anon_sym_BSLASHglsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1922), - [anon_sym_BSLASHglsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1922), - [anon_sym_BSLASHglsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1922), - [anon_sym_BSLASHnewacronym] = ACTIONS(1922), - [anon_sym_BSLASHacrshort] = ACTIONS(1922), - [anon_sym_BSLASHAcrshort] = ACTIONS(1922), - [anon_sym_BSLASHACRshort] = ACTIONS(1922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1922), - [anon_sym_BSLASHacrlong] = ACTIONS(1922), - [anon_sym_BSLASHAcrlong] = ACTIONS(1922), - [anon_sym_BSLASHACRlong] = ACTIONS(1922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1922), - [anon_sym_BSLASHacrfull] = ACTIONS(1922), - [anon_sym_BSLASHAcrfull] = ACTIONS(1922), - [anon_sym_BSLASHACRfull] = ACTIONS(1922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1922), - [anon_sym_BSLASHacs] = ACTIONS(1922), - [anon_sym_BSLASHAcs] = ACTIONS(1922), - [anon_sym_BSLASHacsp] = ACTIONS(1922), - [anon_sym_BSLASHAcsp] = ACTIONS(1922), - [anon_sym_BSLASHacl] = ACTIONS(1922), - [anon_sym_BSLASHAcl] = ACTIONS(1922), - [anon_sym_BSLASHaclp] = ACTIONS(1922), - [anon_sym_BSLASHAclp] = ACTIONS(1922), - [anon_sym_BSLASHacf] = ACTIONS(1922), - [anon_sym_BSLASHAcf] = ACTIONS(1922), - [anon_sym_BSLASHacfp] = ACTIONS(1922), - [anon_sym_BSLASHAcfp] = ACTIONS(1922), - [anon_sym_BSLASHac] = ACTIONS(1922), - [anon_sym_BSLASHAc] = ACTIONS(1922), - [anon_sym_BSLASHacp] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1922), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1922), - [anon_sym_BSLASHcolor] = ACTIONS(1922), - [anon_sym_BSLASHcolorbox] = ACTIONS(1922), - [anon_sym_BSLASHtextcolor] = ACTIONS(1922), - [anon_sym_BSLASHpagecolor] = ACTIONS(1922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1922), - }, - [322] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), + [sym_subsubsection] = STATE(326), + [aux_sym__section_repeat5] = STATE(326), [ts_builtin_sym_end] = ACTIONS(4477), [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), @@ -123535,12 +116745,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), [anon_sym_BSLASHsubsection] = ACTIONS(4479), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), [anon_sym_BSLASHparagraph] = ACTIONS(4479), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4481), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4484), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), [anon_sym_BSLASHitem] = ACTIONS(4479), [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), [anon_sym_LBRACE] = ACTIONS(4477), @@ -123778,31856 +116988,17106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(4479), [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [323] = { - [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(280), - [aux_sym__section_repeat5] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [324] = { - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(4487), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(4487), - [anon_sym_RBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [325] = { - [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(4487), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(37), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [anon_sym_RBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [326] = { - [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(281), - [aux_sym__section_repeat6] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(4487), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(33), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [anon_sym_RBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [327] = { + [302] = { [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(281), - [aux_sym__section_repeat6] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), + [sym_paragraph] = STATE(325), + [aux_sym__section_repeat6] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(4477), + [sym_command_name] = ACTIONS(4479), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [328] = { - [sym__subsection_declaration] = STATE(152), - [sym_subsection] = STATE(287), - [aux_sym__section_repeat4] = STATE(287), - [ts_builtin_sym_end] = ACTIONS(4487), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(25), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [anon_sym_RBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [329] = { - [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_command_name] = ACTIONS(1940), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1938), - [anon_sym_BSLASHpart] = ACTIONS(1940), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddpart] = ACTIONS(1940), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHchapter] = ACTIONS(1940), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddchap] = ACTIONS(1940), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsection] = ACTIONS(1940), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddsec] = ACTIONS(1940), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHparagraph] = ACTIONS(1940), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1940), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHitem] = ACTIONS(41), - [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_RBRACE] = ACTIONS(1938), - [sym_word] = ACTIONS(1940), - [sym_placeholder] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_SLASH] = ACTIONS(1940), - [anon_sym_CARET] = ACTIONS(1940), - [anon_sym__] = ACTIONS(1940), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_COLON] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1938), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1938), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1938), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1938), - [anon_sym_BSLASHbegin] = ACTIONS(1940), - [anon_sym_BSLASHusepackage] = ACTIONS(1940), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1940), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1940), - [anon_sym_BSLASHinclude] = ACTIONS(1940), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1940), - [anon_sym_BSLASHinput] = ACTIONS(1940), - [anon_sym_BSLASHsubfile] = ACTIONS(1940), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1940), - [anon_sym_BSLASHbibliography] = ACTIONS(1940), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1940), - [anon_sym_BSLASHincludesvg] = ACTIONS(1940), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1940), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1940), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1940), - [anon_sym_BSLASHimport] = ACTIONS(1940), - [anon_sym_BSLASHsubimport] = ACTIONS(1940), - [anon_sym_BSLASHinputfrom] = ACTIONS(1940), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1940), - [anon_sym_BSLASHincludefrom] = ACTIONS(1940), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1940), - [anon_sym_BSLASHcaption] = ACTIONS(1940), - [anon_sym_BSLASHcite] = ACTIONS(1940), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCite] = ACTIONS(1940), - [anon_sym_BSLASHnocite] = ACTIONS(1940), - [anon_sym_BSLASHcitet] = ACTIONS(1940), - [anon_sym_BSLASHcitep] = ACTIONS(1940), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteauthor] = ACTIONS(1940), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1940), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitetitle] = ACTIONS(1940), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteyear] = ACTIONS(1940), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitedate] = ACTIONS(1940), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteurl] = ACTIONS(1940), - [anon_sym_BSLASHfullcite] = ACTIONS(1940), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1940), - [anon_sym_BSLASHcitealt] = ACTIONS(1940), - [anon_sym_BSLASHcitealp] = ACTIONS(1940), - [anon_sym_BSLASHcitetext] = ACTIONS(1940), - [anon_sym_BSLASHparencite] = ACTIONS(1940), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHParencite] = ACTIONS(1940), - [anon_sym_BSLASHfootcite] = ACTIONS(1940), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1940), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1940), - [anon_sym_BSLASHtextcite] = ACTIONS(1940), - [anon_sym_BSLASHTextcite] = ACTIONS(1940), - [anon_sym_BSLASHsmartcite] = ACTIONS(1940), - [anon_sym_BSLASHSmartcite] = ACTIONS(1940), - [anon_sym_BSLASHsupercite] = ACTIONS(1940), - [anon_sym_BSLASHautocite] = ACTIONS(1940), - [anon_sym_BSLASHAutocite] = ACTIONS(1940), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHvolcite] = ACTIONS(1940), - [anon_sym_BSLASHVolcite] = ACTIONS(1940), - [anon_sym_BSLASHpvolcite] = ACTIONS(1940), - [anon_sym_BSLASHPvolcite] = ACTIONS(1940), - [anon_sym_BSLASHfvolcite] = ACTIONS(1940), - [anon_sym_BSLASHftvolcite] = ACTIONS(1940), - [anon_sym_BSLASHsvolcite] = ACTIONS(1940), - [anon_sym_BSLASHSvolcite] = ACTIONS(1940), - [anon_sym_BSLASHtvolcite] = ACTIONS(1940), - [anon_sym_BSLASHTvolcite] = ACTIONS(1940), - [anon_sym_BSLASHavolcite] = ACTIONS(1940), - [anon_sym_BSLASHAvolcite] = ACTIONS(1940), - [anon_sym_BSLASHnotecite] = ACTIONS(1940), - [anon_sym_BSLASHNotecite] = ACTIONS(1940), - [anon_sym_BSLASHpnotecite] = ACTIONS(1940), - [anon_sym_BSLASHPnotecite] = ACTIONS(1940), - [anon_sym_BSLASHfnotecite] = ACTIONS(1940), - [anon_sym_BSLASHlabel] = ACTIONS(1940), - [anon_sym_BSLASHref] = ACTIONS(1940), - [anon_sym_BSLASHeqref] = ACTIONS(1940), - [anon_sym_BSLASHvref] = ACTIONS(1940), - [anon_sym_BSLASHVref] = ACTIONS(1940), - [anon_sym_BSLASHautoref] = ACTIONS(1940), - [anon_sym_BSLASHpageref] = ACTIONS(1940), - [anon_sym_BSLASHcref] = ACTIONS(1940), - [anon_sym_BSLASHCref] = ACTIONS(1940), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1938), - [anon_sym_BSLASHnamecref] = ACTIONS(1940), - [anon_sym_BSLASHnameCref] = ACTIONS(1940), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1940), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1940), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1940), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1940), - [anon_sym_BSLASHlabelcref] = ACTIONS(1940), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1940), - [anon_sym_BSLASHcrefrange] = ACTIONS(1940), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCrefrange] = ACTIONS(1940), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1938), - [anon_sym_BSLASHnewlabel] = ACTIONS(1940), - [anon_sym_BSLASHnewcommand] = ACTIONS(1940), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1940), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1940), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1940), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1938), - [anon_sym_BSLASHdef] = ACTIONS(1940), - [anon_sym_BSLASHlet] = ACTIONS(1940), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1940), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1940), - [anon_sym_BSLASHgls] = ACTIONS(1940), - [anon_sym_BSLASHGls] = ACTIONS(1940), - [anon_sym_BSLASHGLS] = ACTIONS(1940), - [anon_sym_BSLASHglspl] = ACTIONS(1940), - [anon_sym_BSLASHGlspl] = ACTIONS(1940), - [anon_sym_BSLASHGLSpl] = ACTIONS(1940), - [anon_sym_BSLASHglsdisp] = ACTIONS(1940), - [anon_sym_BSLASHglslink] = ACTIONS(1940), - [anon_sym_BSLASHglstext] = ACTIONS(1940), - [anon_sym_BSLASHGlstext] = ACTIONS(1940), - [anon_sym_BSLASHGLStext] = ACTIONS(1940), - [anon_sym_BSLASHglsfirst] = ACTIONS(1940), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1940), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1940), - [anon_sym_BSLASHglsplural] = ACTIONS(1940), - [anon_sym_BSLASHGlsplural] = ACTIONS(1940), - [anon_sym_BSLASHGLSplural] = ACTIONS(1940), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHglsname] = ACTIONS(1940), - [anon_sym_BSLASHGlsname] = ACTIONS(1940), - [anon_sym_BSLASHGLSname] = ACTIONS(1940), - [anon_sym_BSLASHglssymbol] = ACTIONS(1940), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1940), - [anon_sym_BSLASHglsdesc] = ACTIONS(1940), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1940), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1940), - [anon_sym_BSLASHglsuseri] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1940), - [anon_sym_BSLASHglsuserii] = ACTIONS(1940), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1940), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1940), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1940), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1940), - [anon_sym_BSLASHglsuserv] = ACTIONS(1940), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1940), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1940), - [anon_sym_BSLASHglsuservi] = ACTIONS(1940), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1940), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1940), - [anon_sym_BSLASHnewacronym] = ACTIONS(1940), - [anon_sym_BSLASHacrshort] = ACTIONS(1940), - [anon_sym_BSLASHAcrshort] = ACTIONS(1940), - [anon_sym_BSLASHACRshort] = ACTIONS(1940), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1940), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1940), - [anon_sym_BSLASHacrlong] = ACTIONS(1940), - [anon_sym_BSLASHAcrlong] = ACTIONS(1940), - [anon_sym_BSLASHACRlong] = ACTIONS(1940), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1940), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1940), - [anon_sym_BSLASHacrfull] = ACTIONS(1940), - [anon_sym_BSLASHAcrfull] = ACTIONS(1940), - [anon_sym_BSLASHACRfull] = ACTIONS(1940), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1940), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1940), - [anon_sym_BSLASHacs] = ACTIONS(1940), - [anon_sym_BSLASHAcs] = ACTIONS(1940), - [anon_sym_BSLASHacsp] = ACTIONS(1940), - [anon_sym_BSLASHAcsp] = ACTIONS(1940), - [anon_sym_BSLASHacl] = ACTIONS(1940), - [anon_sym_BSLASHAcl] = ACTIONS(1940), - [anon_sym_BSLASHaclp] = ACTIONS(1940), - [anon_sym_BSLASHAclp] = ACTIONS(1940), - [anon_sym_BSLASHacf] = ACTIONS(1940), - [anon_sym_BSLASHAcf] = ACTIONS(1940), - [anon_sym_BSLASHacfp] = ACTIONS(1940), - [anon_sym_BSLASHAcfp] = ACTIONS(1940), - [anon_sym_BSLASHac] = ACTIONS(1940), - [anon_sym_BSLASHAc] = ACTIONS(1940), - [anon_sym_BSLASHacp] = ACTIONS(1940), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1940), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1940), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1940), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1940), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1940), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1940), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1940), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1940), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1940), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1940), - [anon_sym_BSLASHcolor] = ACTIONS(1940), - [anon_sym_BSLASHcolorbox] = ACTIONS(1940), - [anon_sym_BSLASHtextcolor] = ACTIONS(1940), - [anon_sym_BSLASHpagecolor] = ACTIONS(1940), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1940), - }, - [330] = { - [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(280), - [aux_sym__section_repeat5] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(4487), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [anon_sym_RBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [331] = { - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(343), - [aux_sym__section_repeat3] = STATE(343), - [ts_builtin_sym_end] = ACTIONS(4487), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(21), - [anon_sym_BSLASHsection_STAR] = ACTIONS(23), - [anon_sym_BSLASHaddsec] = ACTIONS(21), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [anon_sym_RBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [332] = { - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(339), - [aux_sym__section_repeat2] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(4487), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(17), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(19), - [anon_sym_BSLASHaddchap] = ACTIONS(17), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(19), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [anon_sym_RBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [333] = { - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(338), - [aux_sym__section_repeat1] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(4487), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(13), - [anon_sym_BSLASHpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHaddpart] = ACTIONS(13), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(15), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [anon_sym_RBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHitem] = ACTIONS(4479), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4477), + [anon_sym_RBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [334] = { + [303] = { [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(4477), + [sym_command_name] = ACTIONS(4479), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHparagraph] = ACTIONS(4479), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_RBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), + [anon_sym_BSLASHitem] = ACTIONS(4479), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4477), + [anon_sym_RBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [335] = { - [sym__subsubsection_declaration] = STATE(163), - [sym_subsubsection] = STATE(280), - [aux_sym__section_repeat5] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1884), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(29), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [304] = { + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(4477), + [sym_command_name] = ACTIONS(4479), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHparagraph] = ACTIONS(4479), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4477), + [anon_sym_RBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [336] = { + [305] = { [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(281), - [aux_sym__section_repeat6] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(1884), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), + [sym_paragraph] = STATE(325), + [aux_sym__section_repeat6] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(4481), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHitem] = ACTIONS(4483), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_RBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), }, - [337] = { + [306] = { [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(1884), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(4481), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(4483), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [anon_sym_BSLASHitem] = ACTIONS(4483), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_RBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), }, - [338] = { - [sym__part_declaration] = STATE(123), - [sym_part] = STATE(338), - [aux_sym__section_repeat1] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(4491), - [sym_command_name] = ACTIONS(4493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4493), - [anon_sym_LPAREN] = ACTIONS(4491), - [anon_sym_RPAREN] = ACTIONS(4491), - [anon_sym_LBRACK] = ACTIONS(4491), - [anon_sym_RBRACK] = ACTIONS(4491), - [anon_sym_COMMA] = ACTIONS(4491), - [anon_sym_EQ] = ACTIONS(4491), + [307] = { + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(4481), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(4483), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4481), + [anon_sym_RBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), + }, + [308] = { + [sym__subparagraph_declaration] = STATE(182), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(4485), + [sym_command_name] = ACTIONS(4487), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4485), + [anon_sym_RPAREN] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_BSLASHpart] = ACTIONS(4487), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddpart] = ACTIONS(4487), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHchapter] = ACTIONS(4487), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddchap] = ACTIONS(4487), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsection] = ACTIONS(4487), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddsec] = ACTIONS(4487), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHparagraph] = ACTIONS(4487), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(4487), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4485), + [anon_sym_RBRACE] = ACTIONS(4485), + [sym_word] = ACTIONS(4487), + [sym_placeholder] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4487), + [anon_sym_STAR] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym__] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4487), + [anon_sym_PIPE] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [anon_sym_SQUOTE] = ACTIONS(4487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), + [anon_sym_DOLLAR] = ACTIONS(4487), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), + [anon_sym_BSLASHbegin] = ACTIONS(4487), + [anon_sym_BSLASHusepackage] = ACTIONS(4487), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), + [anon_sym_BSLASHinclude] = ACTIONS(4487), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), + [anon_sym_BSLASHinput] = ACTIONS(4487), + [anon_sym_BSLASHsubfile] = ACTIONS(4487), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), + [anon_sym_BSLASHbibliography] = ACTIONS(4487), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), + [anon_sym_BSLASHincludesvg] = ACTIONS(4487), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), + [anon_sym_BSLASHimport] = ACTIONS(4487), + [anon_sym_BSLASHsubimport] = ACTIONS(4487), + [anon_sym_BSLASHinputfrom] = ACTIONS(4487), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), + [anon_sym_BSLASHincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHcaption] = ACTIONS(4487), + [anon_sym_BSLASHcite] = ACTIONS(4487), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCite] = ACTIONS(4487), + [anon_sym_BSLASHnocite] = ACTIONS(4487), + [anon_sym_BSLASHcitet] = ACTIONS(4487), + [anon_sym_BSLASHcitep] = ACTIONS(4487), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteauthor] = ACTIONS(4487), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitetitle] = ACTIONS(4487), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteyear] = ACTIONS(4487), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitedate] = ACTIONS(4487), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteurl] = ACTIONS(4487), + [anon_sym_BSLASHfullcite] = ACTIONS(4487), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), + [anon_sym_BSLASHcitealt] = ACTIONS(4487), + [anon_sym_BSLASHcitealp] = ACTIONS(4487), + [anon_sym_BSLASHcitetext] = ACTIONS(4487), + [anon_sym_BSLASHparencite] = ACTIONS(4487), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHParencite] = ACTIONS(4487), + [anon_sym_BSLASHfootcite] = ACTIONS(4487), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), + [anon_sym_BSLASHtextcite] = ACTIONS(4487), + [anon_sym_BSLASHTextcite] = ACTIONS(4487), + [anon_sym_BSLASHsmartcite] = ACTIONS(4487), + [anon_sym_BSLASHSmartcite] = ACTIONS(4487), + [anon_sym_BSLASHsupercite] = ACTIONS(4487), + [anon_sym_BSLASHautocite] = ACTIONS(4487), + [anon_sym_BSLASHAutocite] = ACTIONS(4487), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHvolcite] = ACTIONS(4487), + [anon_sym_BSLASHVolcite] = ACTIONS(4487), + [anon_sym_BSLASHpvolcite] = ACTIONS(4487), + [anon_sym_BSLASHPvolcite] = ACTIONS(4487), + [anon_sym_BSLASHfvolcite] = ACTIONS(4487), + [anon_sym_BSLASHftvolcite] = ACTIONS(4487), + [anon_sym_BSLASHsvolcite] = ACTIONS(4487), + [anon_sym_BSLASHSvolcite] = ACTIONS(4487), + [anon_sym_BSLASHtvolcite] = ACTIONS(4487), + [anon_sym_BSLASHTvolcite] = ACTIONS(4487), + [anon_sym_BSLASHavolcite] = ACTIONS(4487), + [anon_sym_BSLASHAvolcite] = ACTIONS(4487), + [anon_sym_BSLASHnotecite] = ACTIONS(4487), + [anon_sym_BSLASHNotecite] = ACTIONS(4487), + [anon_sym_BSLASHpnotecite] = ACTIONS(4487), + [anon_sym_BSLASHPnotecite] = ACTIONS(4487), + [anon_sym_BSLASHfnotecite] = ACTIONS(4487), + [anon_sym_BSLASHlabel] = ACTIONS(4487), + [anon_sym_BSLASHref] = ACTIONS(4487), + [anon_sym_BSLASHeqref] = ACTIONS(4487), + [anon_sym_BSLASHvref] = ACTIONS(4487), + [anon_sym_BSLASHVref] = ACTIONS(4487), + [anon_sym_BSLASHautoref] = ACTIONS(4487), + [anon_sym_BSLASHpageref] = ACTIONS(4487), + [anon_sym_BSLASHcref] = ACTIONS(4487), + [anon_sym_BSLASHCref] = ACTIONS(4487), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnameCref] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHlabelcref] = ACTIONS(4487), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCrefrange] = ACTIONS(4487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnewlabel] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), + [anon_sym_BSLASHdef] = ACTIONS(4487), + [anon_sym_BSLASHlet] = ACTIONS(4487), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), + [anon_sym_BSLASHgls] = ACTIONS(4487), + [anon_sym_BSLASHGls] = ACTIONS(4487), + [anon_sym_BSLASHGLS] = ACTIONS(4487), + [anon_sym_BSLASHglspl] = ACTIONS(4487), + [anon_sym_BSLASHGlspl] = ACTIONS(4487), + [anon_sym_BSLASHGLSpl] = ACTIONS(4487), + [anon_sym_BSLASHglsdisp] = ACTIONS(4487), + [anon_sym_BSLASHglslink] = ACTIONS(4487), + [anon_sym_BSLASHglstext] = ACTIONS(4487), + [anon_sym_BSLASHGlstext] = ACTIONS(4487), + [anon_sym_BSLASHGLStext] = ACTIONS(4487), + [anon_sym_BSLASHglsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), + [anon_sym_BSLASHglsplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSplural] = ACTIONS(4487), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHglsname] = ACTIONS(4487), + [anon_sym_BSLASHGlsname] = ACTIONS(4487), + [anon_sym_BSLASHGLSname] = ACTIONS(4487), + [anon_sym_BSLASHglssymbol] = ACTIONS(4487), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), + [anon_sym_BSLASHglsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), + [anon_sym_BSLASHglsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), + [anon_sym_BSLASHglsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), + [anon_sym_BSLASHglsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), + [anon_sym_BSLASHglsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), + [anon_sym_BSLASHnewacronym] = ACTIONS(4487), + [anon_sym_BSLASHacrshort] = ACTIONS(4487), + [anon_sym_BSLASHAcrshort] = ACTIONS(4487), + [anon_sym_BSLASHACRshort] = ACTIONS(4487), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), + [anon_sym_BSLASHacrlong] = ACTIONS(4487), + [anon_sym_BSLASHAcrlong] = ACTIONS(4487), + [anon_sym_BSLASHACRlong] = ACTIONS(4487), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), + [anon_sym_BSLASHacrfull] = ACTIONS(4487), + [anon_sym_BSLASHAcrfull] = ACTIONS(4487), + [anon_sym_BSLASHACRfull] = ACTIONS(4487), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), + [anon_sym_BSLASHacs] = ACTIONS(4487), + [anon_sym_BSLASHAcs] = ACTIONS(4487), + [anon_sym_BSLASHacsp] = ACTIONS(4487), + [anon_sym_BSLASHAcsp] = ACTIONS(4487), + [anon_sym_BSLASHacl] = ACTIONS(4487), + [anon_sym_BSLASHAcl] = ACTIONS(4487), + [anon_sym_BSLASHaclp] = ACTIONS(4487), + [anon_sym_BSLASHAclp] = ACTIONS(4487), + [anon_sym_BSLASHacf] = ACTIONS(4487), + [anon_sym_BSLASHAcf] = ACTIONS(4487), + [anon_sym_BSLASHacfp] = ACTIONS(4487), + [anon_sym_BSLASHAcfp] = ACTIONS(4487), + [anon_sym_BSLASHac] = ACTIONS(4487), + [anon_sym_BSLASHAc] = ACTIONS(4487), + [anon_sym_BSLASHacp] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), + [anon_sym_BSLASHcolor] = ACTIONS(4487), + [anon_sym_BSLASHcolorbox] = ACTIONS(4487), + [anon_sym_BSLASHtextcolor] = ACTIONS(4487), + [anon_sym_BSLASHpagecolor] = ACTIONS(4487), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), + [anon_sym_BSLASHtext] = ACTIONS(4487), + [anon_sym_BSLASHintertext] = ACTIONS(4487), + [anon_sym_shortintertext] = ACTIONS(4487), + }, + [309] = { + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(4485), + [sym_command_name] = ACTIONS(4487), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4485), + [anon_sym_RPAREN] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_BSLASHpart] = ACTIONS(4487), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddpart] = ACTIONS(4487), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHchapter] = ACTIONS(4487), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddchap] = ACTIONS(4487), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsection] = ACTIONS(4487), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddsec] = ACTIONS(4487), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHparagraph] = ACTIONS(4487), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4487), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4485), + [anon_sym_RBRACE] = ACTIONS(4485), + [sym_word] = ACTIONS(4487), + [sym_placeholder] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4487), + [anon_sym_STAR] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym__] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4487), + [anon_sym_PIPE] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [anon_sym_SQUOTE] = ACTIONS(4487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), + [anon_sym_DOLLAR] = ACTIONS(4487), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), + [anon_sym_BSLASHbegin] = ACTIONS(4487), + [anon_sym_BSLASHusepackage] = ACTIONS(4487), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), + [anon_sym_BSLASHinclude] = ACTIONS(4487), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), + [anon_sym_BSLASHinput] = ACTIONS(4487), + [anon_sym_BSLASHsubfile] = ACTIONS(4487), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), + [anon_sym_BSLASHbibliography] = ACTIONS(4487), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), + [anon_sym_BSLASHincludesvg] = ACTIONS(4487), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), + [anon_sym_BSLASHimport] = ACTIONS(4487), + [anon_sym_BSLASHsubimport] = ACTIONS(4487), + [anon_sym_BSLASHinputfrom] = ACTIONS(4487), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), + [anon_sym_BSLASHincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHcaption] = ACTIONS(4487), + [anon_sym_BSLASHcite] = ACTIONS(4487), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCite] = ACTIONS(4487), + [anon_sym_BSLASHnocite] = ACTIONS(4487), + [anon_sym_BSLASHcitet] = ACTIONS(4487), + [anon_sym_BSLASHcitep] = ACTIONS(4487), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteauthor] = ACTIONS(4487), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitetitle] = ACTIONS(4487), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteyear] = ACTIONS(4487), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitedate] = ACTIONS(4487), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteurl] = ACTIONS(4487), + [anon_sym_BSLASHfullcite] = ACTIONS(4487), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), + [anon_sym_BSLASHcitealt] = ACTIONS(4487), + [anon_sym_BSLASHcitealp] = ACTIONS(4487), + [anon_sym_BSLASHcitetext] = ACTIONS(4487), + [anon_sym_BSLASHparencite] = ACTIONS(4487), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHParencite] = ACTIONS(4487), + [anon_sym_BSLASHfootcite] = ACTIONS(4487), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), + [anon_sym_BSLASHtextcite] = ACTIONS(4487), + [anon_sym_BSLASHTextcite] = ACTIONS(4487), + [anon_sym_BSLASHsmartcite] = ACTIONS(4487), + [anon_sym_BSLASHSmartcite] = ACTIONS(4487), + [anon_sym_BSLASHsupercite] = ACTIONS(4487), + [anon_sym_BSLASHautocite] = ACTIONS(4487), + [anon_sym_BSLASHAutocite] = ACTIONS(4487), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHvolcite] = ACTIONS(4487), + [anon_sym_BSLASHVolcite] = ACTIONS(4487), + [anon_sym_BSLASHpvolcite] = ACTIONS(4487), + [anon_sym_BSLASHPvolcite] = ACTIONS(4487), + [anon_sym_BSLASHfvolcite] = ACTIONS(4487), + [anon_sym_BSLASHftvolcite] = ACTIONS(4487), + [anon_sym_BSLASHsvolcite] = ACTIONS(4487), + [anon_sym_BSLASHSvolcite] = ACTIONS(4487), + [anon_sym_BSLASHtvolcite] = ACTIONS(4487), + [anon_sym_BSLASHTvolcite] = ACTIONS(4487), + [anon_sym_BSLASHavolcite] = ACTIONS(4487), + [anon_sym_BSLASHAvolcite] = ACTIONS(4487), + [anon_sym_BSLASHnotecite] = ACTIONS(4487), + [anon_sym_BSLASHNotecite] = ACTIONS(4487), + [anon_sym_BSLASHpnotecite] = ACTIONS(4487), + [anon_sym_BSLASHPnotecite] = ACTIONS(4487), + [anon_sym_BSLASHfnotecite] = ACTIONS(4487), + [anon_sym_BSLASHlabel] = ACTIONS(4487), + [anon_sym_BSLASHref] = ACTIONS(4487), + [anon_sym_BSLASHeqref] = ACTIONS(4487), + [anon_sym_BSLASHvref] = ACTIONS(4487), + [anon_sym_BSLASHVref] = ACTIONS(4487), + [anon_sym_BSLASHautoref] = ACTIONS(4487), + [anon_sym_BSLASHpageref] = ACTIONS(4487), + [anon_sym_BSLASHcref] = ACTIONS(4487), + [anon_sym_BSLASHCref] = ACTIONS(4487), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnameCref] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHlabelcref] = ACTIONS(4487), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCrefrange] = ACTIONS(4487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnewlabel] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), + [anon_sym_BSLASHdef] = ACTIONS(4487), + [anon_sym_BSLASHlet] = ACTIONS(4487), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), + [anon_sym_BSLASHgls] = ACTIONS(4487), + [anon_sym_BSLASHGls] = ACTIONS(4487), + [anon_sym_BSLASHGLS] = ACTIONS(4487), + [anon_sym_BSLASHglspl] = ACTIONS(4487), + [anon_sym_BSLASHGlspl] = ACTIONS(4487), + [anon_sym_BSLASHGLSpl] = ACTIONS(4487), + [anon_sym_BSLASHglsdisp] = ACTIONS(4487), + [anon_sym_BSLASHglslink] = ACTIONS(4487), + [anon_sym_BSLASHglstext] = ACTIONS(4487), + [anon_sym_BSLASHGlstext] = ACTIONS(4487), + [anon_sym_BSLASHGLStext] = ACTIONS(4487), + [anon_sym_BSLASHglsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), + [anon_sym_BSLASHglsplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSplural] = ACTIONS(4487), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHglsname] = ACTIONS(4487), + [anon_sym_BSLASHGlsname] = ACTIONS(4487), + [anon_sym_BSLASHGLSname] = ACTIONS(4487), + [anon_sym_BSLASHglssymbol] = ACTIONS(4487), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), + [anon_sym_BSLASHglsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), + [anon_sym_BSLASHglsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), + [anon_sym_BSLASHglsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), + [anon_sym_BSLASHglsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), + [anon_sym_BSLASHglsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), + [anon_sym_BSLASHnewacronym] = ACTIONS(4487), + [anon_sym_BSLASHacrshort] = ACTIONS(4487), + [anon_sym_BSLASHAcrshort] = ACTIONS(4487), + [anon_sym_BSLASHACRshort] = ACTIONS(4487), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), + [anon_sym_BSLASHacrlong] = ACTIONS(4487), + [anon_sym_BSLASHAcrlong] = ACTIONS(4487), + [anon_sym_BSLASHACRlong] = ACTIONS(4487), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), + [anon_sym_BSLASHacrfull] = ACTIONS(4487), + [anon_sym_BSLASHAcrfull] = ACTIONS(4487), + [anon_sym_BSLASHACRfull] = ACTIONS(4487), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), + [anon_sym_BSLASHacs] = ACTIONS(4487), + [anon_sym_BSLASHAcs] = ACTIONS(4487), + [anon_sym_BSLASHacsp] = ACTIONS(4487), + [anon_sym_BSLASHAcsp] = ACTIONS(4487), + [anon_sym_BSLASHacl] = ACTIONS(4487), + [anon_sym_BSLASHAcl] = ACTIONS(4487), + [anon_sym_BSLASHaclp] = ACTIONS(4487), + [anon_sym_BSLASHAclp] = ACTIONS(4487), + [anon_sym_BSLASHacf] = ACTIONS(4487), + [anon_sym_BSLASHAcf] = ACTIONS(4487), + [anon_sym_BSLASHacfp] = ACTIONS(4487), + [anon_sym_BSLASHAcfp] = ACTIONS(4487), + [anon_sym_BSLASHac] = ACTIONS(4487), + [anon_sym_BSLASHAc] = ACTIONS(4487), + [anon_sym_BSLASHacp] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), + [anon_sym_BSLASHcolor] = ACTIONS(4487), + [anon_sym_BSLASHcolorbox] = ACTIONS(4487), + [anon_sym_BSLASHtextcolor] = ACTIONS(4487), + [anon_sym_BSLASHpagecolor] = ACTIONS(4487), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), + [anon_sym_BSLASHtext] = ACTIONS(4487), + [anon_sym_BSLASHintertext] = ACTIONS(4487), + [anon_sym_shortintertext] = ACTIONS(4487), + }, + [310] = { + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(4489), + [sym_command_name] = ACTIONS(4491), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4489), + [anon_sym_RPAREN] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4489), + [anon_sym_RBRACK] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4489), + [anon_sym_BSLASHpart] = ACTIONS(4491), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddpart] = ACTIONS(4491), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4489), + [anon_sym_BSLASHchapter] = ACTIONS(4491), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddchap] = ACTIONS(4491), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsection] = ACTIONS(4491), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddsec] = ACTIONS(4491), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubsection] = ACTIONS(4491), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4491), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHparagraph] = ACTIONS(4491), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4491), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4489), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(4489), + [anon_sym_RBRACE] = ACTIONS(4489), + [sym_word] = ACTIONS(4491), + [sym_placeholder] = ACTIONS(4489), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_CARET] = ACTIONS(4491), + [anon_sym__] = ACTIONS(4491), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_BANG] = ACTIONS(4491), + [anon_sym_PIPE] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [anon_sym_SQUOTE] = ACTIONS(4491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4489), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4489), + [anon_sym_DOLLAR] = ACTIONS(4491), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4489), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4489), + [anon_sym_BSLASHbegin] = ACTIONS(4491), + [anon_sym_BSLASHusepackage] = ACTIONS(4491), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4491), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4491), + [anon_sym_BSLASHinclude] = ACTIONS(4491), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4491), + [anon_sym_BSLASHinput] = ACTIONS(4491), + [anon_sym_BSLASHsubfile] = ACTIONS(4491), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4491), + [anon_sym_BSLASHbibliography] = ACTIONS(4491), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4491), + [anon_sym_BSLASHincludesvg] = ACTIONS(4491), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4491), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4491), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4491), + [anon_sym_BSLASHimport] = ACTIONS(4491), + [anon_sym_BSLASHsubimport] = ACTIONS(4491), + [anon_sym_BSLASHinputfrom] = ACTIONS(4491), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4491), + [anon_sym_BSLASHincludefrom] = ACTIONS(4491), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4491), + [anon_sym_BSLASHcaption] = ACTIONS(4491), + [anon_sym_BSLASHcite] = ACTIONS(4491), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCite] = ACTIONS(4491), + [anon_sym_BSLASHnocite] = ACTIONS(4491), + [anon_sym_BSLASHcitet] = ACTIONS(4491), + [anon_sym_BSLASHcitep] = ACTIONS(4491), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteauthor] = ACTIONS(4491), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4491), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitetitle] = ACTIONS(4491), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteyear] = ACTIONS(4491), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitedate] = ACTIONS(4491), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteurl] = ACTIONS(4491), + [anon_sym_BSLASHfullcite] = ACTIONS(4491), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4491), + [anon_sym_BSLASHcitealt] = ACTIONS(4491), + [anon_sym_BSLASHcitealp] = ACTIONS(4491), + [anon_sym_BSLASHcitetext] = ACTIONS(4491), + [anon_sym_BSLASHparencite] = ACTIONS(4491), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHParencite] = ACTIONS(4491), + [anon_sym_BSLASHfootcite] = ACTIONS(4491), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4491), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4491), + [anon_sym_BSLASHtextcite] = ACTIONS(4491), + [anon_sym_BSLASHTextcite] = ACTIONS(4491), + [anon_sym_BSLASHsmartcite] = ACTIONS(4491), + [anon_sym_BSLASHSmartcite] = ACTIONS(4491), + [anon_sym_BSLASHsupercite] = ACTIONS(4491), + [anon_sym_BSLASHautocite] = ACTIONS(4491), + [anon_sym_BSLASHAutocite] = ACTIONS(4491), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHvolcite] = ACTIONS(4491), + [anon_sym_BSLASHVolcite] = ACTIONS(4491), + [anon_sym_BSLASHpvolcite] = ACTIONS(4491), + [anon_sym_BSLASHPvolcite] = ACTIONS(4491), + [anon_sym_BSLASHfvolcite] = ACTIONS(4491), + [anon_sym_BSLASHftvolcite] = ACTIONS(4491), + [anon_sym_BSLASHsvolcite] = ACTIONS(4491), + [anon_sym_BSLASHSvolcite] = ACTIONS(4491), + [anon_sym_BSLASHtvolcite] = ACTIONS(4491), + [anon_sym_BSLASHTvolcite] = ACTIONS(4491), + [anon_sym_BSLASHavolcite] = ACTIONS(4491), + [anon_sym_BSLASHAvolcite] = ACTIONS(4491), + [anon_sym_BSLASHnotecite] = ACTIONS(4491), + [anon_sym_BSLASHNotecite] = ACTIONS(4491), + [anon_sym_BSLASHpnotecite] = ACTIONS(4491), + [anon_sym_BSLASHPnotecite] = ACTIONS(4491), + [anon_sym_BSLASHfnotecite] = ACTIONS(4491), + [anon_sym_BSLASHlabel] = ACTIONS(4491), + [anon_sym_BSLASHref] = ACTIONS(4491), + [anon_sym_BSLASHeqref] = ACTIONS(4491), + [anon_sym_BSLASHvref] = ACTIONS(4491), + [anon_sym_BSLASHVref] = ACTIONS(4491), + [anon_sym_BSLASHautoref] = ACTIONS(4491), + [anon_sym_BSLASHpageref] = ACTIONS(4491), + [anon_sym_BSLASHcref] = ACTIONS(4491), + [anon_sym_BSLASHCref] = ACTIONS(4491), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4489), + [anon_sym_BSLASHnamecref] = ACTIONS(4491), + [anon_sym_BSLASHnameCref] = ACTIONS(4491), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4491), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4491), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4491), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4491), + [anon_sym_BSLASHlabelcref] = ACTIONS(4491), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4491), + [anon_sym_BSLASHcrefrange] = ACTIONS(4491), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCrefrange] = ACTIONS(4491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4489), + [anon_sym_BSLASHnewlabel] = ACTIONS(4491), + [anon_sym_BSLASHnewcommand] = ACTIONS(4491), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4491), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4491), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4491), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4489), + [anon_sym_BSLASHdef] = ACTIONS(4491), + [anon_sym_BSLASHlet] = ACTIONS(4491), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4491), + [anon_sym_BSLASHgls] = ACTIONS(4491), + [anon_sym_BSLASHGls] = ACTIONS(4491), + [anon_sym_BSLASHGLS] = ACTIONS(4491), + [anon_sym_BSLASHglspl] = ACTIONS(4491), + [anon_sym_BSLASHGlspl] = ACTIONS(4491), + [anon_sym_BSLASHGLSpl] = ACTIONS(4491), + [anon_sym_BSLASHglsdisp] = ACTIONS(4491), + [anon_sym_BSLASHglslink] = ACTIONS(4491), + [anon_sym_BSLASHglstext] = ACTIONS(4491), + [anon_sym_BSLASHGlstext] = ACTIONS(4491), + [anon_sym_BSLASHGLStext] = ACTIONS(4491), + [anon_sym_BSLASHglsfirst] = ACTIONS(4491), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4491), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4491), + [anon_sym_BSLASHglsplural] = ACTIONS(4491), + [anon_sym_BSLASHGlsplural] = ACTIONS(4491), + [anon_sym_BSLASHGLSplural] = ACTIONS(4491), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHglsname] = ACTIONS(4491), + [anon_sym_BSLASHGlsname] = ACTIONS(4491), + [anon_sym_BSLASHGLSname] = ACTIONS(4491), + [anon_sym_BSLASHglssymbol] = ACTIONS(4491), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4491), + [anon_sym_BSLASHglsdesc] = ACTIONS(4491), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4491), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4491), + [anon_sym_BSLASHglsuseri] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4491), + [anon_sym_BSLASHglsuserii] = ACTIONS(4491), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4491), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4491), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4491), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4491), + [anon_sym_BSLASHglsuserv] = ACTIONS(4491), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4491), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4491), + [anon_sym_BSLASHglsuservi] = ACTIONS(4491), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4491), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4491), + [anon_sym_BSLASHnewacronym] = ACTIONS(4491), + [anon_sym_BSLASHacrshort] = ACTIONS(4491), + [anon_sym_BSLASHAcrshort] = ACTIONS(4491), + [anon_sym_BSLASHACRshort] = ACTIONS(4491), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4491), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4491), + [anon_sym_BSLASHacrlong] = ACTIONS(4491), + [anon_sym_BSLASHAcrlong] = ACTIONS(4491), + [anon_sym_BSLASHACRlong] = ACTIONS(4491), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4491), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4491), + [anon_sym_BSLASHacrfull] = ACTIONS(4491), + [anon_sym_BSLASHAcrfull] = ACTIONS(4491), + [anon_sym_BSLASHACRfull] = ACTIONS(4491), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4491), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4491), + [anon_sym_BSLASHacs] = ACTIONS(4491), + [anon_sym_BSLASHAcs] = ACTIONS(4491), + [anon_sym_BSLASHacsp] = ACTIONS(4491), + [anon_sym_BSLASHAcsp] = ACTIONS(4491), + [anon_sym_BSLASHacl] = ACTIONS(4491), + [anon_sym_BSLASHAcl] = ACTIONS(4491), + [anon_sym_BSLASHaclp] = ACTIONS(4491), + [anon_sym_BSLASHAclp] = ACTIONS(4491), + [anon_sym_BSLASHacf] = ACTIONS(4491), + [anon_sym_BSLASHAcf] = ACTIONS(4491), + [anon_sym_BSLASHacfp] = ACTIONS(4491), + [anon_sym_BSLASHAcfp] = ACTIONS(4491), + [anon_sym_BSLASHac] = ACTIONS(4491), + [anon_sym_BSLASHAc] = ACTIONS(4491), + [anon_sym_BSLASHacp] = ACTIONS(4491), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4491), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4491), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4491), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4491), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4491), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4491), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4491), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4491), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4491), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4491), + [anon_sym_BSLASHcolor] = ACTIONS(4491), + [anon_sym_BSLASHcolorbox] = ACTIONS(4491), + [anon_sym_BSLASHtextcolor] = ACTIONS(4491), + [anon_sym_BSLASHpagecolor] = ACTIONS(4491), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4491), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4491), + [anon_sym_BSLASHtext] = ACTIONS(4491), + [anon_sym_BSLASHintertext] = ACTIONS(4491), + [anon_sym_shortintertext] = ACTIONS(4491), + }, + [311] = { + [sym__subsection_declaration] = STATE(152), + [sym_subsection] = STATE(327), + [aux_sym__section_repeat4] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(1837), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), + }, + [312] = { + [sym__subsubsection_declaration] = STATE(163), + [sym_subsubsection] = STATE(326), + [aux_sym__section_repeat5] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(1837), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), + }, + [313] = { + [sym__paragraph_declaration] = STATE(172), + [sym_paragraph] = STATE(325), + [aux_sym__section_repeat6] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(1837), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), + }, + [314] = { + [sym__subsubsection_declaration] = STATE(163), + [sym_subsubsection] = STATE(326), + [aux_sym__section_repeat5] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [315] = { + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(1837), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), + }, + [316] = { + [sym__section_declaration] = STATE(142), + [sym_section] = STATE(328), + [aux_sym__section_repeat3] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(21), + [anon_sym_BSLASHsection_STAR] = ACTIONS(23), + [anon_sym_BSLASHaddsec] = ACTIONS(21), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(23), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [317] = { + [sym__subsection_declaration] = STATE(152), + [sym_subsection] = STATE(327), + [aux_sym__section_repeat4] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [318] = { + [sym__subsubsection_declaration] = STATE(163), + [sym_subsubsection] = STATE(326), + [aux_sym__section_repeat5] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [319] = { + [sym__paragraph_declaration] = STATE(172), + [sym_paragraph] = STATE(325), + [aux_sym__section_repeat6] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [320] = { + [sym__subparagraph_declaration] = STATE(182), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [321] = { + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [322] = { + [sym__subsection_declaration] = STATE(152), + [sym_subsection] = STATE(327), + [aux_sym__section_repeat4] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(25), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(27), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [323] = { + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(4493), + [sym_command_name] = ACTIONS(4495), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_RPAREN] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_RBRACK] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), [anon_sym_BSLASHpart] = ACTIONS(4495), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4498), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4493), [anon_sym_BSLASHaddpart] = ACTIONS(4495), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4498), - [anon_sym_BSLASHchapter] = ACTIONS(4493), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4491), - [anon_sym_BSLASHaddchap] = ACTIONS(4493), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsection] = ACTIONS(4493), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHaddsec] = ACTIONS(4493), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubsection] = ACTIONS(4493), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4493), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHparagraph] = ACTIONS(4493), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4493), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4491), - [anon_sym_BSLASHitem] = ACTIONS(4493), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4491), - [anon_sym_RBRACE] = ACTIONS(4491), - [sym_word] = ACTIONS(4493), - [sym_placeholder] = ACTIONS(4491), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_CARET] = ACTIONS(4493), - [anon_sym__] = ACTIONS(4493), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_PIPE] = ACTIONS(4493), - [anon_sym_COLON] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4491), - [anon_sym_DOLLAR] = ACTIONS(4493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4491), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4491), - [anon_sym_BSLASHbegin] = ACTIONS(4493), - [anon_sym_BSLASHusepackage] = ACTIONS(4493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4493), - [anon_sym_BSLASHinclude] = ACTIONS(4493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4493), - [anon_sym_BSLASHinput] = ACTIONS(4493), - [anon_sym_BSLASHsubfile] = ACTIONS(4493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4493), - [anon_sym_BSLASHbibliography] = ACTIONS(4493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4493), - [anon_sym_BSLASHincludesvg] = ACTIONS(4493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4493), - [anon_sym_BSLASHimport] = ACTIONS(4493), - [anon_sym_BSLASHsubimport] = ACTIONS(4493), - [anon_sym_BSLASHinputfrom] = ACTIONS(4493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4493), - [anon_sym_BSLASHincludefrom] = ACTIONS(4493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4493), - [anon_sym_BSLASHcaption] = ACTIONS(4493), - [anon_sym_BSLASHcite] = ACTIONS(4493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCite] = ACTIONS(4493), - [anon_sym_BSLASHnocite] = ACTIONS(4493), - [anon_sym_BSLASHcitet] = ACTIONS(4493), - [anon_sym_BSLASHcitep] = ACTIONS(4493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteauthor] = ACTIONS(4493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitetitle] = ACTIONS(4493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteyear] = ACTIONS(4493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitedate] = ACTIONS(4493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteurl] = ACTIONS(4493), - [anon_sym_BSLASHfullcite] = ACTIONS(4493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4493), - [anon_sym_BSLASHcitealt] = ACTIONS(4493), - [anon_sym_BSLASHcitealp] = ACTIONS(4493), - [anon_sym_BSLASHcitetext] = ACTIONS(4493), - [anon_sym_BSLASHparencite] = ACTIONS(4493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHParencite] = ACTIONS(4493), - [anon_sym_BSLASHfootcite] = ACTIONS(4493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4493), - [anon_sym_BSLASHtextcite] = ACTIONS(4493), - [anon_sym_BSLASHTextcite] = ACTIONS(4493), - [anon_sym_BSLASHsmartcite] = ACTIONS(4493), - [anon_sym_BSLASHSmartcite] = ACTIONS(4493), - [anon_sym_BSLASHsupercite] = ACTIONS(4493), - [anon_sym_BSLASHautocite] = ACTIONS(4493), - [anon_sym_BSLASHAutocite] = ACTIONS(4493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHvolcite] = ACTIONS(4493), - [anon_sym_BSLASHVolcite] = ACTIONS(4493), - [anon_sym_BSLASHpvolcite] = ACTIONS(4493), - [anon_sym_BSLASHPvolcite] = ACTIONS(4493), - [anon_sym_BSLASHfvolcite] = ACTIONS(4493), - [anon_sym_BSLASHftvolcite] = ACTIONS(4493), - [anon_sym_BSLASHsvolcite] = ACTIONS(4493), - [anon_sym_BSLASHSvolcite] = ACTIONS(4493), - [anon_sym_BSLASHtvolcite] = ACTIONS(4493), - [anon_sym_BSLASHTvolcite] = ACTIONS(4493), - [anon_sym_BSLASHavolcite] = ACTIONS(4493), - [anon_sym_BSLASHAvolcite] = ACTIONS(4493), - [anon_sym_BSLASHnotecite] = ACTIONS(4493), - [anon_sym_BSLASHNotecite] = ACTIONS(4493), - [anon_sym_BSLASHpnotecite] = ACTIONS(4493), - [anon_sym_BSLASHPnotecite] = ACTIONS(4493), - [anon_sym_BSLASHfnotecite] = ACTIONS(4493), - [anon_sym_BSLASHlabel] = ACTIONS(4493), - [anon_sym_BSLASHref] = ACTIONS(4493), - [anon_sym_BSLASHeqref] = ACTIONS(4493), - [anon_sym_BSLASHvref] = ACTIONS(4493), - [anon_sym_BSLASHVref] = ACTIONS(4493), - [anon_sym_BSLASHautoref] = ACTIONS(4493), - [anon_sym_BSLASHpageref] = ACTIONS(4493), - [anon_sym_BSLASHcref] = ACTIONS(4493), - [anon_sym_BSLASHCref] = ACTIONS(4493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4491), - [anon_sym_BSLASHnamecref] = ACTIONS(4493), - [anon_sym_BSLASHnameCref] = ACTIONS(4493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4493), - [anon_sym_BSLASHlabelcref] = ACTIONS(4493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4493), - [anon_sym_BSLASHcrefrange] = ACTIONS(4493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCrefrange] = ACTIONS(4493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4491), - [anon_sym_BSLASHnewlabel] = ACTIONS(4493), - [anon_sym_BSLASHnewcommand] = ACTIONS(4493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4491), - [anon_sym_BSLASHdef] = ACTIONS(4493), - [anon_sym_BSLASHlet] = ACTIONS(4493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4493), - [anon_sym_BSLASHgls] = ACTIONS(4493), - [anon_sym_BSLASHGls] = ACTIONS(4493), - [anon_sym_BSLASHGLS] = ACTIONS(4493), - [anon_sym_BSLASHglspl] = ACTIONS(4493), - [anon_sym_BSLASHGlspl] = ACTIONS(4493), - [anon_sym_BSLASHGLSpl] = ACTIONS(4493), - [anon_sym_BSLASHglsdisp] = ACTIONS(4493), - [anon_sym_BSLASHglslink] = ACTIONS(4493), - [anon_sym_BSLASHglstext] = ACTIONS(4493), - [anon_sym_BSLASHGlstext] = ACTIONS(4493), - [anon_sym_BSLASHGLStext] = ACTIONS(4493), - [anon_sym_BSLASHglsfirst] = ACTIONS(4493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4493), - [anon_sym_BSLASHglsplural] = ACTIONS(4493), - [anon_sym_BSLASHGlsplural] = ACTIONS(4493), - [anon_sym_BSLASHGLSplural] = ACTIONS(4493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHglsname] = ACTIONS(4493), - [anon_sym_BSLASHGlsname] = ACTIONS(4493), - [anon_sym_BSLASHGLSname] = ACTIONS(4493), - [anon_sym_BSLASHglssymbol] = ACTIONS(4493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4493), - [anon_sym_BSLASHglsdesc] = ACTIONS(4493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4493), - [anon_sym_BSLASHglsuseri] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4493), - [anon_sym_BSLASHglsuserii] = ACTIONS(4493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4493), - [anon_sym_BSLASHglsuserv] = ACTIONS(4493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4493), - [anon_sym_BSLASHglsuservi] = ACTIONS(4493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4493), - [anon_sym_BSLASHnewacronym] = ACTIONS(4493), - [anon_sym_BSLASHacrshort] = ACTIONS(4493), - [anon_sym_BSLASHAcrshort] = ACTIONS(4493), - [anon_sym_BSLASHACRshort] = ACTIONS(4493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4493), - [anon_sym_BSLASHacrlong] = ACTIONS(4493), - [anon_sym_BSLASHAcrlong] = ACTIONS(4493), - [anon_sym_BSLASHACRlong] = ACTIONS(4493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4493), - [anon_sym_BSLASHacrfull] = ACTIONS(4493), - [anon_sym_BSLASHAcrfull] = ACTIONS(4493), - [anon_sym_BSLASHACRfull] = ACTIONS(4493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4493), - [anon_sym_BSLASHacs] = ACTIONS(4493), - [anon_sym_BSLASHAcs] = ACTIONS(4493), - [anon_sym_BSLASHacsp] = ACTIONS(4493), - [anon_sym_BSLASHAcsp] = ACTIONS(4493), - [anon_sym_BSLASHacl] = ACTIONS(4493), - [anon_sym_BSLASHAcl] = ACTIONS(4493), - [anon_sym_BSLASHaclp] = ACTIONS(4493), - [anon_sym_BSLASHAclp] = ACTIONS(4493), - [anon_sym_BSLASHacf] = ACTIONS(4493), - [anon_sym_BSLASHAcf] = ACTIONS(4493), - [anon_sym_BSLASHacfp] = ACTIONS(4493), - [anon_sym_BSLASHAcfp] = ACTIONS(4493), - [anon_sym_BSLASHac] = ACTIONS(4493), - [anon_sym_BSLASHAc] = ACTIONS(4493), - [anon_sym_BSLASHacp] = ACTIONS(4493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4493), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4493), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4493), - [anon_sym_BSLASHcolor] = ACTIONS(4493), - [anon_sym_BSLASHcolorbox] = ACTIONS(4493), - [anon_sym_BSLASHtextcolor] = ACTIONS(4493), - [anon_sym_BSLASHpagecolor] = ACTIONS(4493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4493), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4493), + [anon_sym_BSLASHchapter] = ACTIONS(4495), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddchap] = ACTIONS(4495), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsection] = ACTIONS(4495), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddsec] = ACTIONS(4495), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubsection] = ACTIONS(4495), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4495), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHparagraph] = ACTIONS(4495), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4495), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4493), + [anon_sym_BSLASHitem] = ACTIONS(4497), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4500), + [anon_sym_LBRACE] = ACTIONS(4493), + [anon_sym_RBRACE] = ACTIONS(4493), + [sym_word] = ACTIONS(4495), + [sym_placeholder] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4495), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_CARET] = ACTIONS(4495), + [anon_sym__] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4493), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4493), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4493), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4493), + [anon_sym_BSLASHbegin] = ACTIONS(4495), + [anon_sym_BSLASHusepackage] = ACTIONS(4495), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4495), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4495), + [anon_sym_BSLASHinclude] = ACTIONS(4495), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4495), + [anon_sym_BSLASHinput] = ACTIONS(4495), + [anon_sym_BSLASHsubfile] = ACTIONS(4495), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4495), + [anon_sym_BSLASHbibliography] = ACTIONS(4495), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4495), + [anon_sym_BSLASHincludesvg] = ACTIONS(4495), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4495), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4495), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4495), + [anon_sym_BSLASHimport] = ACTIONS(4495), + [anon_sym_BSLASHsubimport] = ACTIONS(4495), + [anon_sym_BSLASHinputfrom] = ACTIONS(4495), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4495), + [anon_sym_BSLASHincludefrom] = ACTIONS(4495), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4495), + [anon_sym_BSLASHcaption] = ACTIONS(4495), + [anon_sym_BSLASHcite] = ACTIONS(4495), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCite] = ACTIONS(4495), + [anon_sym_BSLASHnocite] = ACTIONS(4495), + [anon_sym_BSLASHcitet] = ACTIONS(4495), + [anon_sym_BSLASHcitep] = ACTIONS(4495), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteauthor] = ACTIONS(4495), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4495), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitetitle] = ACTIONS(4495), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteyear] = ACTIONS(4495), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitedate] = ACTIONS(4495), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteurl] = ACTIONS(4495), + [anon_sym_BSLASHfullcite] = ACTIONS(4495), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4495), + [anon_sym_BSLASHcitealt] = ACTIONS(4495), + [anon_sym_BSLASHcitealp] = ACTIONS(4495), + [anon_sym_BSLASHcitetext] = ACTIONS(4495), + [anon_sym_BSLASHparencite] = ACTIONS(4495), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHParencite] = ACTIONS(4495), + [anon_sym_BSLASHfootcite] = ACTIONS(4495), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4495), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4495), + [anon_sym_BSLASHtextcite] = ACTIONS(4495), + [anon_sym_BSLASHTextcite] = ACTIONS(4495), + [anon_sym_BSLASHsmartcite] = ACTIONS(4495), + [anon_sym_BSLASHSmartcite] = ACTIONS(4495), + [anon_sym_BSLASHsupercite] = ACTIONS(4495), + [anon_sym_BSLASHautocite] = ACTIONS(4495), + [anon_sym_BSLASHAutocite] = ACTIONS(4495), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHvolcite] = ACTIONS(4495), + [anon_sym_BSLASHVolcite] = ACTIONS(4495), + [anon_sym_BSLASHpvolcite] = ACTIONS(4495), + [anon_sym_BSLASHPvolcite] = ACTIONS(4495), + [anon_sym_BSLASHfvolcite] = ACTIONS(4495), + [anon_sym_BSLASHftvolcite] = ACTIONS(4495), + [anon_sym_BSLASHsvolcite] = ACTIONS(4495), + [anon_sym_BSLASHSvolcite] = ACTIONS(4495), + [anon_sym_BSLASHtvolcite] = ACTIONS(4495), + [anon_sym_BSLASHTvolcite] = ACTIONS(4495), + [anon_sym_BSLASHavolcite] = ACTIONS(4495), + [anon_sym_BSLASHAvolcite] = ACTIONS(4495), + [anon_sym_BSLASHnotecite] = ACTIONS(4495), + [anon_sym_BSLASHNotecite] = ACTIONS(4495), + [anon_sym_BSLASHpnotecite] = ACTIONS(4495), + [anon_sym_BSLASHPnotecite] = ACTIONS(4495), + [anon_sym_BSLASHfnotecite] = ACTIONS(4495), + [anon_sym_BSLASHlabel] = ACTIONS(4495), + [anon_sym_BSLASHref] = ACTIONS(4495), + [anon_sym_BSLASHeqref] = ACTIONS(4495), + [anon_sym_BSLASHvref] = ACTIONS(4495), + [anon_sym_BSLASHVref] = ACTIONS(4495), + [anon_sym_BSLASHautoref] = ACTIONS(4495), + [anon_sym_BSLASHpageref] = ACTIONS(4495), + [anon_sym_BSLASHcref] = ACTIONS(4495), + [anon_sym_BSLASHCref] = ACTIONS(4495), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4493), + [anon_sym_BSLASHnamecref] = ACTIONS(4495), + [anon_sym_BSLASHnameCref] = ACTIONS(4495), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4495), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4495), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4495), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4495), + [anon_sym_BSLASHlabelcref] = ACTIONS(4495), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4495), + [anon_sym_BSLASHcrefrange] = ACTIONS(4495), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCrefrange] = ACTIONS(4495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4493), + [anon_sym_BSLASHnewlabel] = ACTIONS(4495), + [anon_sym_BSLASHnewcommand] = ACTIONS(4495), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4495), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4495), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4495), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4493), + [anon_sym_BSLASHdef] = ACTIONS(4495), + [anon_sym_BSLASHlet] = ACTIONS(4495), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4495), + [anon_sym_BSLASHgls] = ACTIONS(4495), + [anon_sym_BSLASHGls] = ACTIONS(4495), + [anon_sym_BSLASHGLS] = ACTIONS(4495), + [anon_sym_BSLASHglspl] = ACTIONS(4495), + [anon_sym_BSLASHGlspl] = ACTIONS(4495), + [anon_sym_BSLASHGLSpl] = ACTIONS(4495), + [anon_sym_BSLASHglsdisp] = ACTIONS(4495), + [anon_sym_BSLASHglslink] = ACTIONS(4495), + [anon_sym_BSLASHglstext] = ACTIONS(4495), + [anon_sym_BSLASHGlstext] = ACTIONS(4495), + [anon_sym_BSLASHGLStext] = ACTIONS(4495), + [anon_sym_BSLASHglsfirst] = ACTIONS(4495), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4495), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4495), + [anon_sym_BSLASHglsplural] = ACTIONS(4495), + [anon_sym_BSLASHGlsplural] = ACTIONS(4495), + [anon_sym_BSLASHGLSplural] = ACTIONS(4495), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHglsname] = ACTIONS(4495), + [anon_sym_BSLASHGlsname] = ACTIONS(4495), + [anon_sym_BSLASHGLSname] = ACTIONS(4495), + [anon_sym_BSLASHglssymbol] = ACTIONS(4495), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4495), + [anon_sym_BSLASHglsdesc] = ACTIONS(4495), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4495), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4495), + [anon_sym_BSLASHglsuseri] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4495), + [anon_sym_BSLASHglsuserii] = ACTIONS(4495), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4495), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4495), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4495), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4495), + [anon_sym_BSLASHglsuserv] = ACTIONS(4495), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4495), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4495), + [anon_sym_BSLASHglsuservi] = ACTIONS(4495), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4495), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4495), + [anon_sym_BSLASHnewacronym] = ACTIONS(4495), + [anon_sym_BSLASHacrshort] = ACTIONS(4495), + [anon_sym_BSLASHAcrshort] = ACTIONS(4495), + [anon_sym_BSLASHACRshort] = ACTIONS(4495), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4495), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4495), + [anon_sym_BSLASHacrlong] = ACTIONS(4495), + [anon_sym_BSLASHAcrlong] = ACTIONS(4495), + [anon_sym_BSLASHACRlong] = ACTIONS(4495), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4495), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4495), + [anon_sym_BSLASHacrfull] = ACTIONS(4495), + [anon_sym_BSLASHAcrfull] = ACTIONS(4495), + [anon_sym_BSLASHACRfull] = ACTIONS(4495), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4495), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4495), + [anon_sym_BSLASHacs] = ACTIONS(4495), + [anon_sym_BSLASHAcs] = ACTIONS(4495), + [anon_sym_BSLASHacsp] = ACTIONS(4495), + [anon_sym_BSLASHAcsp] = ACTIONS(4495), + [anon_sym_BSLASHacl] = ACTIONS(4495), + [anon_sym_BSLASHAcl] = ACTIONS(4495), + [anon_sym_BSLASHaclp] = ACTIONS(4495), + [anon_sym_BSLASHAclp] = ACTIONS(4495), + [anon_sym_BSLASHacf] = ACTIONS(4495), + [anon_sym_BSLASHAcf] = ACTIONS(4495), + [anon_sym_BSLASHacfp] = ACTIONS(4495), + [anon_sym_BSLASHAcfp] = ACTIONS(4495), + [anon_sym_BSLASHac] = ACTIONS(4495), + [anon_sym_BSLASHAc] = ACTIONS(4495), + [anon_sym_BSLASHacp] = ACTIONS(4495), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4495), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4495), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4495), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4495), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4495), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4495), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4495), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4495), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4495), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4495), + [anon_sym_BSLASHcolor] = ACTIONS(4495), + [anon_sym_BSLASHcolorbox] = ACTIONS(4495), + [anon_sym_BSLASHtextcolor] = ACTIONS(4495), + [anon_sym_BSLASHpagecolor] = ACTIONS(4495), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4495), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4495), + [anon_sym_BSLASHtext] = ACTIONS(4495), + [anon_sym_BSLASHintertext] = ACTIONS(4495), + [anon_sym_shortintertext] = ACTIONS(4495), }, - [339] = { - [sym__chapter_declaration] = STATE(133), - [sym_chapter] = STATE(339), - [aux_sym__section_repeat2] = STATE(339), - [ts_builtin_sym_end] = ACTIONS(4501), - [sym_command_name] = ACTIONS(4503), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4501), - [anon_sym_RPAREN] = ACTIONS(4501), - [anon_sym_LBRACK] = ACTIONS(4501), - [anon_sym_RBRACK] = ACTIONS(4501), - [anon_sym_COMMA] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_BSLASHpart] = ACTIONS(4503), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4501), - [anon_sym_BSLASHaddpart] = ACTIONS(4503), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4501), + [324] = { + [sym__subparagraph_declaration] = STATE(182), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(4503), + [sym_command_name] = ACTIONS(4505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4503), + [anon_sym_RBRACK] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_BSLASHpart] = ACTIONS(4505), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddpart] = ACTIONS(4505), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4503), [anon_sym_BSLASHchapter] = ACTIONS(4505), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4508), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4503), [anon_sym_BSLASHaddchap] = ACTIONS(4505), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4508), - [anon_sym_BSLASHsection] = ACTIONS(4503), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHaddsec] = ACTIONS(4503), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubsection] = ACTIONS(4503), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4503), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHparagraph] = ACTIONS(4503), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4503), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4501), - [anon_sym_BSLASHitem] = ACTIONS(4503), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(4501), - [anon_sym_RBRACE] = ACTIONS(4501), - [sym_word] = ACTIONS(4503), - [sym_placeholder] = ACTIONS(4501), - [anon_sym_PLUS] = ACTIONS(4503), - [anon_sym_DASH] = ACTIONS(4503), - [anon_sym_STAR] = ACTIONS(4503), - [anon_sym_SLASH] = ACTIONS(4503), - [anon_sym_CARET] = ACTIONS(4503), - [anon_sym__] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4503), - [anon_sym_GT] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4503), - [anon_sym_PIPE] = ACTIONS(4503), - [anon_sym_COLON] = ACTIONS(4503), - [anon_sym_SQUOTE] = ACTIONS(4503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4501), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4501), - [anon_sym_DOLLAR] = ACTIONS(4503), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4501), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4501), - [anon_sym_BSLASHbegin] = ACTIONS(4503), - [anon_sym_BSLASHusepackage] = ACTIONS(4503), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4503), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4503), - [anon_sym_BSLASHinclude] = ACTIONS(4503), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4503), - [anon_sym_BSLASHinput] = ACTIONS(4503), - [anon_sym_BSLASHsubfile] = ACTIONS(4503), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4503), - [anon_sym_BSLASHbibliography] = ACTIONS(4503), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4503), - [anon_sym_BSLASHincludesvg] = ACTIONS(4503), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4503), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4503), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4503), - [anon_sym_BSLASHimport] = ACTIONS(4503), - [anon_sym_BSLASHsubimport] = ACTIONS(4503), - [anon_sym_BSLASHinputfrom] = ACTIONS(4503), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4503), - [anon_sym_BSLASHincludefrom] = ACTIONS(4503), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4503), - [anon_sym_BSLASHcaption] = ACTIONS(4503), - [anon_sym_BSLASHcite] = ACTIONS(4503), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCite] = ACTIONS(4503), - [anon_sym_BSLASHnocite] = ACTIONS(4503), - [anon_sym_BSLASHcitet] = ACTIONS(4503), - [anon_sym_BSLASHcitep] = ACTIONS(4503), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteauthor] = ACTIONS(4503), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4503), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitetitle] = ACTIONS(4503), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteyear] = ACTIONS(4503), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitedate] = ACTIONS(4503), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteurl] = ACTIONS(4503), - [anon_sym_BSLASHfullcite] = ACTIONS(4503), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4503), - [anon_sym_BSLASHcitealt] = ACTIONS(4503), - [anon_sym_BSLASHcitealp] = ACTIONS(4503), - [anon_sym_BSLASHcitetext] = ACTIONS(4503), - [anon_sym_BSLASHparencite] = ACTIONS(4503), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHParencite] = ACTIONS(4503), - [anon_sym_BSLASHfootcite] = ACTIONS(4503), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4503), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4503), - [anon_sym_BSLASHtextcite] = ACTIONS(4503), - [anon_sym_BSLASHTextcite] = ACTIONS(4503), - [anon_sym_BSLASHsmartcite] = ACTIONS(4503), - [anon_sym_BSLASHSmartcite] = ACTIONS(4503), - [anon_sym_BSLASHsupercite] = ACTIONS(4503), - [anon_sym_BSLASHautocite] = ACTIONS(4503), - [anon_sym_BSLASHAutocite] = ACTIONS(4503), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHvolcite] = ACTIONS(4503), - [anon_sym_BSLASHVolcite] = ACTIONS(4503), - [anon_sym_BSLASHpvolcite] = ACTIONS(4503), - [anon_sym_BSLASHPvolcite] = ACTIONS(4503), - [anon_sym_BSLASHfvolcite] = ACTIONS(4503), - [anon_sym_BSLASHftvolcite] = ACTIONS(4503), - [anon_sym_BSLASHsvolcite] = ACTIONS(4503), - [anon_sym_BSLASHSvolcite] = ACTIONS(4503), - [anon_sym_BSLASHtvolcite] = ACTIONS(4503), - [anon_sym_BSLASHTvolcite] = ACTIONS(4503), - [anon_sym_BSLASHavolcite] = ACTIONS(4503), - [anon_sym_BSLASHAvolcite] = ACTIONS(4503), - [anon_sym_BSLASHnotecite] = ACTIONS(4503), - [anon_sym_BSLASHNotecite] = ACTIONS(4503), - [anon_sym_BSLASHpnotecite] = ACTIONS(4503), - [anon_sym_BSLASHPnotecite] = ACTIONS(4503), - [anon_sym_BSLASHfnotecite] = ACTIONS(4503), - [anon_sym_BSLASHlabel] = ACTIONS(4503), - [anon_sym_BSLASHref] = ACTIONS(4503), - [anon_sym_BSLASHeqref] = ACTIONS(4503), - [anon_sym_BSLASHvref] = ACTIONS(4503), - [anon_sym_BSLASHVref] = ACTIONS(4503), - [anon_sym_BSLASHautoref] = ACTIONS(4503), - [anon_sym_BSLASHpageref] = ACTIONS(4503), - [anon_sym_BSLASHcref] = ACTIONS(4503), - [anon_sym_BSLASHCref] = ACTIONS(4503), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4501), - [anon_sym_BSLASHnamecref] = ACTIONS(4503), - [anon_sym_BSLASHnameCref] = ACTIONS(4503), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4503), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4503), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4503), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4503), - [anon_sym_BSLASHlabelcref] = ACTIONS(4503), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4503), - [anon_sym_BSLASHcrefrange] = ACTIONS(4503), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCrefrange] = ACTIONS(4503), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4501), - [anon_sym_BSLASHnewlabel] = ACTIONS(4503), - [anon_sym_BSLASHnewcommand] = ACTIONS(4503), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4503), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4503), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4503), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4501), - [anon_sym_BSLASHdef] = ACTIONS(4503), - [anon_sym_BSLASHlet] = ACTIONS(4503), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4503), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4503), - [anon_sym_BSLASHgls] = ACTIONS(4503), - [anon_sym_BSLASHGls] = ACTIONS(4503), - [anon_sym_BSLASHGLS] = ACTIONS(4503), - [anon_sym_BSLASHglspl] = ACTIONS(4503), - [anon_sym_BSLASHGlspl] = ACTIONS(4503), - [anon_sym_BSLASHGLSpl] = ACTIONS(4503), - [anon_sym_BSLASHglsdisp] = ACTIONS(4503), - [anon_sym_BSLASHglslink] = ACTIONS(4503), - [anon_sym_BSLASHglstext] = ACTIONS(4503), - [anon_sym_BSLASHGlstext] = ACTIONS(4503), - [anon_sym_BSLASHGLStext] = ACTIONS(4503), - [anon_sym_BSLASHglsfirst] = ACTIONS(4503), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4503), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4503), - [anon_sym_BSLASHglsplural] = ACTIONS(4503), - [anon_sym_BSLASHGlsplural] = ACTIONS(4503), - [anon_sym_BSLASHGLSplural] = ACTIONS(4503), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHglsname] = ACTIONS(4503), - [anon_sym_BSLASHGlsname] = ACTIONS(4503), - [anon_sym_BSLASHGLSname] = ACTIONS(4503), - [anon_sym_BSLASHglssymbol] = ACTIONS(4503), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4503), - [anon_sym_BSLASHglsdesc] = ACTIONS(4503), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4503), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4503), - [anon_sym_BSLASHglsuseri] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4503), - [anon_sym_BSLASHglsuserii] = ACTIONS(4503), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4503), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4503), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4503), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4503), - [anon_sym_BSLASHglsuserv] = ACTIONS(4503), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4503), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4503), - [anon_sym_BSLASHglsuservi] = ACTIONS(4503), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4503), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4503), - [anon_sym_BSLASHnewacronym] = ACTIONS(4503), - [anon_sym_BSLASHacrshort] = ACTIONS(4503), - [anon_sym_BSLASHAcrshort] = ACTIONS(4503), - [anon_sym_BSLASHACRshort] = ACTIONS(4503), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4503), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4503), - [anon_sym_BSLASHacrlong] = ACTIONS(4503), - [anon_sym_BSLASHAcrlong] = ACTIONS(4503), - [anon_sym_BSLASHACRlong] = ACTIONS(4503), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4503), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4503), - [anon_sym_BSLASHacrfull] = ACTIONS(4503), - [anon_sym_BSLASHAcrfull] = ACTIONS(4503), - [anon_sym_BSLASHACRfull] = ACTIONS(4503), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4503), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4503), - [anon_sym_BSLASHacs] = ACTIONS(4503), - [anon_sym_BSLASHAcs] = ACTIONS(4503), - [anon_sym_BSLASHacsp] = ACTIONS(4503), - [anon_sym_BSLASHAcsp] = ACTIONS(4503), - [anon_sym_BSLASHacl] = ACTIONS(4503), - [anon_sym_BSLASHAcl] = ACTIONS(4503), - [anon_sym_BSLASHaclp] = ACTIONS(4503), - [anon_sym_BSLASHAclp] = ACTIONS(4503), - [anon_sym_BSLASHacf] = ACTIONS(4503), - [anon_sym_BSLASHAcf] = ACTIONS(4503), - [anon_sym_BSLASHacfp] = ACTIONS(4503), - [anon_sym_BSLASHAcfp] = ACTIONS(4503), - [anon_sym_BSLASHac] = ACTIONS(4503), - [anon_sym_BSLASHAc] = ACTIONS(4503), - [anon_sym_BSLASHacp] = ACTIONS(4503), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4503), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4503), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4503), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4503), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4503), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4503), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4503), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4503), - [anon_sym_BSLASHcolor] = ACTIONS(4503), - [anon_sym_BSLASHcolorbox] = ACTIONS(4503), - [anon_sym_BSLASHtextcolor] = ACTIONS(4503), - [anon_sym_BSLASHpagecolor] = ACTIONS(4503), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4503), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4503), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsection] = ACTIONS(4505), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddsec] = ACTIONS(4505), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubsection] = ACTIONS(4505), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4505), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHparagraph] = ACTIONS(4505), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4507), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4510), + [anon_sym_BSLASHitem] = ACTIONS(4505), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [anon_sym_RBRACE] = ACTIONS(4503), + [sym_word] = ACTIONS(4505), + [sym_placeholder] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym__] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4505), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4503), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4503), + [anon_sym_BSLASHbegin] = ACTIONS(4505), + [anon_sym_BSLASHusepackage] = ACTIONS(4505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4505), + [anon_sym_BSLASHinclude] = ACTIONS(4505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4505), + [anon_sym_BSLASHinput] = ACTIONS(4505), + [anon_sym_BSLASHsubfile] = ACTIONS(4505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4505), + [anon_sym_BSLASHbibliography] = ACTIONS(4505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4505), + [anon_sym_BSLASHincludesvg] = ACTIONS(4505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4505), + [anon_sym_BSLASHimport] = ACTIONS(4505), + [anon_sym_BSLASHsubimport] = ACTIONS(4505), + [anon_sym_BSLASHinputfrom] = ACTIONS(4505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4505), + [anon_sym_BSLASHincludefrom] = ACTIONS(4505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4505), + [anon_sym_BSLASHcaption] = ACTIONS(4505), + [anon_sym_BSLASHcite] = ACTIONS(4505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCite] = ACTIONS(4505), + [anon_sym_BSLASHnocite] = ACTIONS(4505), + [anon_sym_BSLASHcitet] = ACTIONS(4505), + [anon_sym_BSLASHcitep] = ACTIONS(4505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteauthor] = ACTIONS(4505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitetitle] = ACTIONS(4505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteyear] = ACTIONS(4505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitedate] = ACTIONS(4505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteurl] = ACTIONS(4505), + [anon_sym_BSLASHfullcite] = ACTIONS(4505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4505), + [anon_sym_BSLASHcitealt] = ACTIONS(4505), + [anon_sym_BSLASHcitealp] = ACTIONS(4505), + [anon_sym_BSLASHcitetext] = ACTIONS(4505), + [anon_sym_BSLASHparencite] = ACTIONS(4505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHParencite] = ACTIONS(4505), + [anon_sym_BSLASHfootcite] = ACTIONS(4505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4505), + [anon_sym_BSLASHtextcite] = ACTIONS(4505), + [anon_sym_BSLASHTextcite] = ACTIONS(4505), + [anon_sym_BSLASHsmartcite] = ACTIONS(4505), + [anon_sym_BSLASHSmartcite] = ACTIONS(4505), + [anon_sym_BSLASHsupercite] = ACTIONS(4505), + [anon_sym_BSLASHautocite] = ACTIONS(4505), + [anon_sym_BSLASHAutocite] = ACTIONS(4505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHvolcite] = ACTIONS(4505), + [anon_sym_BSLASHVolcite] = ACTIONS(4505), + [anon_sym_BSLASHpvolcite] = ACTIONS(4505), + [anon_sym_BSLASHPvolcite] = ACTIONS(4505), + [anon_sym_BSLASHfvolcite] = ACTIONS(4505), + [anon_sym_BSLASHftvolcite] = ACTIONS(4505), + [anon_sym_BSLASHsvolcite] = ACTIONS(4505), + [anon_sym_BSLASHSvolcite] = ACTIONS(4505), + [anon_sym_BSLASHtvolcite] = ACTIONS(4505), + [anon_sym_BSLASHTvolcite] = ACTIONS(4505), + [anon_sym_BSLASHavolcite] = ACTIONS(4505), + [anon_sym_BSLASHAvolcite] = ACTIONS(4505), + [anon_sym_BSLASHnotecite] = ACTIONS(4505), + [anon_sym_BSLASHNotecite] = ACTIONS(4505), + [anon_sym_BSLASHpnotecite] = ACTIONS(4505), + [anon_sym_BSLASHPnotecite] = ACTIONS(4505), + [anon_sym_BSLASHfnotecite] = ACTIONS(4505), + [anon_sym_BSLASHlabel] = ACTIONS(4505), + [anon_sym_BSLASHref] = ACTIONS(4505), + [anon_sym_BSLASHeqref] = ACTIONS(4505), + [anon_sym_BSLASHvref] = ACTIONS(4505), + [anon_sym_BSLASHVref] = ACTIONS(4505), + [anon_sym_BSLASHautoref] = ACTIONS(4505), + [anon_sym_BSLASHpageref] = ACTIONS(4505), + [anon_sym_BSLASHcref] = ACTIONS(4505), + [anon_sym_BSLASHCref] = ACTIONS(4505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4503), + [anon_sym_BSLASHnamecref] = ACTIONS(4505), + [anon_sym_BSLASHnameCref] = ACTIONS(4505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4505), + [anon_sym_BSLASHlabelcref] = ACTIONS(4505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4505), + [anon_sym_BSLASHcrefrange] = ACTIONS(4505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCrefrange] = ACTIONS(4505), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4503), + [anon_sym_BSLASHnewlabel] = ACTIONS(4505), + [anon_sym_BSLASHnewcommand] = ACTIONS(4505), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4505), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4505), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4503), + [anon_sym_BSLASHdef] = ACTIONS(4505), + [anon_sym_BSLASHlet] = ACTIONS(4505), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4505), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4505), + [anon_sym_BSLASHgls] = ACTIONS(4505), + [anon_sym_BSLASHGls] = ACTIONS(4505), + [anon_sym_BSLASHGLS] = ACTIONS(4505), + [anon_sym_BSLASHglspl] = ACTIONS(4505), + [anon_sym_BSLASHGlspl] = ACTIONS(4505), + [anon_sym_BSLASHGLSpl] = ACTIONS(4505), + [anon_sym_BSLASHglsdisp] = ACTIONS(4505), + [anon_sym_BSLASHglslink] = ACTIONS(4505), + [anon_sym_BSLASHglstext] = ACTIONS(4505), + [anon_sym_BSLASHGlstext] = ACTIONS(4505), + [anon_sym_BSLASHGLStext] = ACTIONS(4505), + [anon_sym_BSLASHglsfirst] = ACTIONS(4505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4505), + [anon_sym_BSLASHglsplural] = ACTIONS(4505), + [anon_sym_BSLASHGlsplural] = ACTIONS(4505), + [anon_sym_BSLASHGLSplural] = ACTIONS(4505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHglsname] = ACTIONS(4505), + [anon_sym_BSLASHGlsname] = ACTIONS(4505), + [anon_sym_BSLASHGLSname] = ACTIONS(4505), + [anon_sym_BSLASHglssymbol] = ACTIONS(4505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4505), + [anon_sym_BSLASHglsdesc] = ACTIONS(4505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4505), + [anon_sym_BSLASHglsuseri] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4505), + [anon_sym_BSLASHglsuserii] = ACTIONS(4505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4505), + [anon_sym_BSLASHglsuserv] = ACTIONS(4505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4505), + [anon_sym_BSLASHglsuservi] = ACTIONS(4505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4505), + [anon_sym_BSLASHnewacronym] = ACTIONS(4505), + [anon_sym_BSLASHacrshort] = ACTIONS(4505), + [anon_sym_BSLASHAcrshort] = ACTIONS(4505), + [anon_sym_BSLASHACRshort] = ACTIONS(4505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4505), + [anon_sym_BSLASHacrlong] = ACTIONS(4505), + [anon_sym_BSLASHAcrlong] = ACTIONS(4505), + [anon_sym_BSLASHACRlong] = ACTIONS(4505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4505), + [anon_sym_BSLASHacrfull] = ACTIONS(4505), + [anon_sym_BSLASHAcrfull] = ACTIONS(4505), + [anon_sym_BSLASHACRfull] = ACTIONS(4505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4505), + [anon_sym_BSLASHacs] = ACTIONS(4505), + [anon_sym_BSLASHAcs] = ACTIONS(4505), + [anon_sym_BSLASHacsp] = ACTIONS(4505), + [anon_sym_BSLASHAcsp] = ACTIONS(4505), + [anon_sym_BSLASHacl] = ACTIONS(4505), + [anon_sym_BSLASHAcl] = ACTIONS(4505), + [anon_sym_BSLASHaclp] = ACTIONS(4505), + [anon_sym_BSLASHAclp] = ACTIONS(4505), + [anon_sym_BSLASHacf] = ACTIONS(4505), + [anon_sym_BSLASHAcf] = ACTIONS(4505), + [anon_sym_BSLASHacfp] = ACTIONS(4505), + [anon_sym_BSLASHAcfp] = ACTIONS(4505), + [anon_sym_BSLASHac] = ACTIONS(4505), + [anon_sym_BSLASHAc] = ACTIONS(4505), + [anon_sym_BSLASHacp] = ACTIONS(4505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4505), + [anon_sym_BSLASHcolor] = ACTIONS(4505), + [anon_sym_BSLASHcolorbox] = ACTIONS(4505), + [anon_sym_BSLASHtextcolor] = ACTIONS(4505), + [anon_sym_BSLASHpagecolor] = ACTIONS(4505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4505), + [anon_sym_BSLASHtext] = ACTIONS(4505), + [anon_sym_BSLASHintertext] = ACTIONS(4505), + [anon_sym_shortintertext] = ACTIONS(4505), }, - [340] = { + [325] = { + [sym__paragraph_declaration] = STATE(172), + [sym_paragraph] = STATE(325), + [aux_sym__section_repeat6] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(4513), + [sym_command_name] = ACTIONS(4515), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym_RPAREN] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_RBRACK] = ACTIONS(4513), + [anon_sym_COMMA] = ACTIONS(4513), + [anon_sym_EQ] = ACTIONS(4513), + [anon_sym_BSLASHpart] = ACTIONS(4515), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddpart] = ACTIONS(4515), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4513), + [anon_sym_BSLASHchapter] = ACTIONS(4515), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddchap] = ACTIONS(4515), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsection] = ACTIONS(4515), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddsec] = ACTIONS(4515), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsubsection] = ACTIONS(4515), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4515), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHparagraph] = ACTIONS(4517), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4520), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4515), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4513), + [anon_sym_BSLASHitem] = ACTIONS(4515), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4513), + [anon_sym_RBRACE] = ACTIONS(4513), + [sym_word] = ACTIONS(4515), + [sym_placeholder] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_CARET] = ACTIONS(4515), + [anon_sym__] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4513), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4513), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4513), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4513), + [anon_sym_BSLASHbegin] = ACTIONS(4515), + [anon_sym_BSLASHusepackage] = ACTIONS(4515), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4515), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4515), + [anon_sym_BSLASHinclude] = ACTIONS(4515), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4515), + [anon_sym_BSLASHinput] = ACTIONS(4515), + [anon_sym_BSLASHsubfile] = ACTIONS(4515), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4515), + [anon_sym_BSLASHbibliography] = ACTIONS(4515), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4515), + [anon_sym_BSLASHincludesvg] = ACTIONS(4515), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4515), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4515), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4515), + [anon_sym_BSLASHimport] = ACTIONS(4515), + [anon_sym_BSLASHsubimport] = ACTIONS(4515), + [anon_sym_BSLASHinputfrom] = ACTIONS(4515), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4515), + [anon_sym_BSLASHincludefrom] = ACTIONS(4515), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4515), + [anon_sym_BSLASHcaption] = ACTIONS(4515), + [anon_sym_BSLASHcite] = ACTIONS(4515), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCite] = ACTIONS(4515), + [anon_sym_BSLASHnocite] = ACTIONS(4515), + [anon_sym_BSLASHcitet] = ACTIONS(4515), + [anon_sym_BSLASHcitep] = ACTIONS(4515), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteauthor] = ACTIONS(4515), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4515), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitetitle] = ACTIONS(4515), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteyear] = ACTIONS(4515), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitedate] = ACTIONS(4515), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteurl] = ACTIONS(4515), + [anon_sym_BSLASHfullcite] = ACTIONS(4515), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4515), + [anon_sym_BSLASHcitealt] = ACTIONS(4515), + [anon_sym_BSLASHcitealp] = ACTIONS(4515), + [anon_sym_BSLASHcitetext] = ACTIONS(4515), + [anon_sym_BSLASHparencite] = ACTIONS(4515), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHParencite] = ACTIONS(4515), + [anon_sym_BSLASHfootcite] = ACTIONS(4515), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4515), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4515), + [anon_sym_BSLASHtextcite] = ACTIONS(4515), + [anon_sym_BSLASHTextcite] = ACTIONS(4515), + [anon_sym_BSLASHsmartcite] = ACTIONS(4515), + [anon_sym_BSLASHSmartcite] = ACTIONS(4515), + [anon_sym_BSLASHsupercite] = ACTIONS(4515), + [anon_sym_BSLASHautocite] = ACTIONS(4515), + [anon_sym_BSLASHAutocite] = ACTIONS(4515), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHvolcite] = ACTIONS(4515), + [anon_sym_BSLASHVolcite] = ACTIONS(4515), + [anon_sym_BSLASHpvolcite] = ACTIONS(4515), + [anon_sym_BSLASHPvolcite] = ACTIONS(4515), + [anon_sym_BSLASHfvolcite] = ACTIONS(4515), + [anon_sym_BSLASHftvolcite] = ACTIONS(4515), + [anon_sym_BSLASHsvolcite] = ACTIONS(4515), + [anon_sym_BSLASHSvolcite] = ACTIONS(4515), + [anon_sym_BSLASHtvolcite] = ACTIONS(4515), + [anon_sym_BSLASHTvolcite] = ACTIONS(4515), + [anon_sym_BSLASHavolcite] = ACTIONS(4515), + [anon_sym_BSLASHAvolcite] = ACTIONS(4515), + [anon_sym_BSLASHnotecite] = ACTIONS(4515), + [anon_sym_BSLASHNotecite] = ACTIONS(4515), + [anon_sym_BSLASHpnotecite] = ACTIONS(4515), + [anon_sym_BSLASHPnotecite] = ACTIONS(4515), + [anon_sym_BSLASHfnotecite] = ACTIONS(4515), + [anon_sym_BSLASHlabel] = ACTIONS(4515), + [anon_sym_BSLASHref] = ACTIONS(4515), + [anon_sym_BSLASHeqref] = ACTIONS(4515), + [anon_sym_BSLASHvref] = ACTIONS(4515), + [anon_sym_BSLASHVref] = ACTIONS(4515), + [anon_sym_BSLASHautoref] = ACTIONS(4515), + [anon_sym_BSLASHpageref] = ACTIONS(4515), + [anon_sym_BSLASHcref] = ACTIONS(4515), + [anon_sym_BSLASHCref] = ACTIONS(4515), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4513), + [anon_sym_BSLASHnamecref] = ACTIONS(4515), + [anon_sym_BSLASHnameCref] = ACTIONS(4515), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4515), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4515), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4515), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4515), + [anon_sym_BSLASHlabelcref] = ACTIONS(4515), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4515), + [anon_sym_BSLASHcrefrange] = ACTIONS(4515), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCrefrange] = ACTIONS(4515), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4513), + [anon_sym_BSLASHnewlabel] = ACTIONS(4515), + [anon_sym_BSLASHnewcommand] = ACTIONS(4515), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4515), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4515), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4515), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4513), + [anon_sym_BSLASHdef] = ACTIONS(4515), + [anon_sym_BSLASHlet] = ACTIONS(4515), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4515), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4515), + [anon_sym_BSLASHgls] = ACTIONS(4515), + [anon_sym_BSLASHGls] = ACTIONS(4515), + [anon_sym_BSLASHGLS] = ACTIONS(4515), + [anon_sym_BSLASHglspl] = ACTIONS(4515), + [anon_sym_BSLASHGlspl] = ACTIONS(4515), + [anon_sym_BSLASHGLSpl] = ACTIONS(4515), + [anon_sym_BSLASHglsdisp] = ACTIONS(4515), + [anon_sym_BSLASHglslink] = ACTIONS(4515), + [anon_sym_BSLASHglstext] = ACTIONS(4515), + [anon_sym_BSLASHGlstext] = ACTIONS(4515), + [anon_sym_BSLASHGLStext] = ACTIONS(4515), + [anon_sym_BSLASHglsfirst] = ACTIONS(4515), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4515), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4515), + [anon_sym_BSLASHglsplural] = ACTIONS(4515), + [anon_sym_BSLASHGlsplural] = ACTIONS(4515), + [anon_sym_BSLASHGLSplural] = ACTIONS(4515), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHglsname] = ACTIONS(4515), + [anon_sym_BSLASHGlsname] = ACTIONS(4515), + [anon_sym_BSLASHGLSname] = ACTIONS(4515), + [anon_sym_BSLASHglssymbol] = ACTIONS(4515), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4515), + [anon_sym_BSLASHglsdesc] = ACTIONS(4515), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4515), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4515), + [anon_sym_BSLASHglsuseri] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4515), + [anon_sym_BSLASHglsuserii] = ACTIONS(4515), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4515), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4515), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4515), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4515), + [anon_sym_BSLASHglsuserv] = ACTIONS(4515), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4515), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4515), + [anon_sym_BSLASHglsuservi] = ACTIONS(4515), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4515), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4515), + [anon_sym_BSLASHnewacronym] = ACTIONS(4515), + [anon_sym_BSLASHacrshort] = ACTIONS(4515), + [anon_sym_BSLASHAcrshort] = ACTIONS(4515), + [anon_sym_BSLASHACRshort] = ACTIONS(4515), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4515), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4515), + [anon_sym_BSLASHacrlong] = ACTIONS(4515), + [anon_sym_BSLASHAcrlong] = ACTIONS(4515), + [anon_sym_BSLASHACRlong] = ACTIONS(4515), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4515), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4515), + [anon_sym_BSLASHacrfull] = ACTIONS(4515), + [anon_sym_BSLASHAcrfull] = ACTIONS(4515), + [anon_sym_BSLASHACRfull] = ACTIONS(4515), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4515), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4515), + [anon_sym_BSLASHacs] = ACTIONS(4515), + [anon_sym_BSLASHAcs] = ACTIONS(4515), + [anon_sym_BSLASHacsp] = ACTIONS(4515), + [anon_sym_BSLASHAcsp] = ACTIONS(4515), + [anon_sym_BSLASHacl] = ACTIONS(4515), + [anon_sym_BSLASHAcl] = ACTIONS(4515), + [anon_sym_BSLASHaclp] = ACTIONS(4515), + [anon_sym_BSLASHAclp] = ACTIONS(4515), + [anon_sym_BSLASHacf] = ACTIONS(4515), + [anon_sym_BSLASHAcf] = ACTIONS(4515), + [anon_sym_BSLASHacfp] = ACTIONS(4515), + [anon_sym_BSLASHAcfp] = ACTIONS(4515), + [anon_sym_BSLASHac] = ACTIONS(4515), + [anon_sym_BSLASHAc] = ACTIONS(4515), + [anon_sym_BSLASHacp] = ACTIONS(4515), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4515), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4515), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4515), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4515), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4515), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4515), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4515), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4515), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4515), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4515), + [anon_sym_BSLASHcolor] = ACTIONS(4515), + [anon_sym_BSLASHcolorbox] = ACTIONS(4515), + [anon_sym_BSLASHtextcolor] = ACTIONS(4515), + [anon_sym_BSLASHpagecolor] = ACTIONS(4515), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4515), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4515), + [anon_sym_BSLASHtext] = ACTIONS(4515), + [anon_sym_BSLASHintertext] = ACTIONS(4515), + [anon_sym_shortintertext] = ACTIONS(4515), + }, + [326] = { + [sym__subsubsection_declaration] = STATE(163), + [sym_subsubsection] = STATE(326), + [aux_sym__section_repeat5] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(4523), + [sym_command_name] = ACTIONS(4525), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_RBRACK] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_BSLASHpart] = ACTIONS(4525), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddpart] = ACTIONS(4525), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4523), + [anon_sym_BSLASHchapter] = ACTIONS(4525), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddchap] = ACTIONS(4525), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsection] = ACTIONS(4525), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddsec] = ACTIONS(4525), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubsection] = ACTIONS(4525), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4527), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4530), + [anon_sym_BSLASHparagraph] = ACTIONS(4525), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4525), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4523), + [anon_sym_BSLASHitem] = ACTIONS(4525), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [anon_sym_RBRACE] = ACTIONS(4523), + [sym_word] = ACTIONS(4525), + [sym_placeholder] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym__] = ACTIONS(4525), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(4525), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4523), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4523), + [anon_sym_BSLASHbegin] = ACTIONS(4525), + [anon_sym_BSLASHusepackage] = ACTIONS(4525), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4525), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4525), + [anon_sym_BSLASHinclude] = ACTIONS(4525), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4525), + [anon_sym_BSLASHinput] = ACTIONS(4525), + [anon_sym_BSLASHsubfile] = ACTIONS(4525), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4525), + [anon_sym_BSLASHbibliography] = ACTIONS(4525), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4525), + [anon_sym_BSLASHincludesvg] = ACTIONS(4525), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4525), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4525), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4525), + [anon_sym_BSLASHimport] = ACTIONS(4525), + [anon_sym_BSLASHsubimport] = ACTIONS(4525), + [anon_sym_BSLASHinputfrom] = ACTIONS(4525), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4525), + [anon_sym_BSLASHincludefrom] = ACTIONS(4525), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4525), + [anon_sym_BSLASHcaption] = ACTIONS(4525), + [anon_sym_BSLASHcite] = ACTIONS(4525), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCite] = ACTIONS(4525), + [anon_sym_BSLASHnocite] = ACTIONS(4525), + [anon_sym_BSLASHcitet] = ACTIONS(4525), + [anon_sym_BSLASHcitep] = ACTIONS(4525), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteauthor] = ACTIONS(4525), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4525), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitetitle] = ACTIONS(4525), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteyear] = ACTIONS(4525), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitedate] = ACTIONS(4525), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteurl] = ACTIONS(4525), + [anon_sym_BSLASHfullcite] = ACTIONS(4525), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4525), + [anon_sym_BSLASHcitealt] = ACTIONS(4525), + [anon_sym_BSLASHcitealp] = ACTIONS(4525), + [anon_sym_BSLASHcitetext] = ACTIONS(4525), + [anon_sym_BSLASHparencite] = ACTIONS(4525), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHParencite] = ACTIONS(4525), + [anon_sym_BSLASHfootcite] = ACTIONS(4525), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4525), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4525), + [anon_sym_BSLASHtextcite] = ACTIONS(4525), + [anon_sym_BSLASHTextcite] = ACTIONS(4525), + [anon_sym_BSLASHsmartcite] = ACTIONS(4525), + [anon_sym_BSLASHSmartcite] = ACTIONS(4525), + [anon_sym_BSLASHsupercite] = ACTIONS(4525), + [anon_sym_BSLASHautocite] = ACTIONS(4525), + [anon_sym_BSLASHAutocite] = ACTIONS(4525), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHvolcite] = ACTIONS(4525), + [anon_sym_BSLASHVolcite] = ACTIONS(4525), + [anon_sym_BSLASHpvolcite] = ACTIONS(4525), + [anon_sym_BSLASHPvolcite] = ACTIONS(4525), + [anon_sym_BSLASHfvolcite] = ACTIONS(4525), + [anon_sym_BSLASHftvolcite] = ACTIONS(4525), + [anon_sym_BSLASHsvolcite] = ACTIONS(4525), + [anon_sym_BSLASHSvolcite] = ACTIONS(4525), + [anon_sym_BSLASHtvolcite] = ACTIONS(4525), + [anon_sym_BSLASHTvolcite] = ACTIONS(4525), + [anon_sym_BSLASHavolcite] = ACTIONS(4525), + [anon_sym_BSLASHAvolcite] = ACTIONS(4525), + [anon_sym_BSLASHnotecite] = ACTIONS(4525), + [anon_sym_BSLASHNotecite] = ACTIONS(4525), + [anon_sym_BSLASHpnotecite] = ACTIONS(4525), + [anon_sym_BSLASHPnotecite] = ACTIONS(4525), + [anon_sym_BSLASHfnotecite] = ACTIONS(4525), + [anon_sym_BSLASHlabel] = ACTIONS(4525), + [anon_sym_BSLASHref] = ACTIONS(4525), + [anon_sym_BSLASHeqref] = ACTIONS(4525), + [anon_sym_BSLASHvref] = ACTIONS(4525), + [anon_sym_BSLASHVref] = ACTIONS(4525), + [anon_sym_BSLASHautoref] = ACTIONS(4525), + [anon_sym_BSLASHpageref] = ACTIONS(4525), + [anon_sym_BSLASHcref] = ACTIONS(4525), + [anon_sym_BSLASHCref] = ACTIONS(4525), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4523), + [anon_sym_BSLASHnamecref] = ACTIONS(4525), + [anon_sym_BSLASHnameCref] = ACTIONS(4525), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4525), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4525), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4525), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4525), + [anon_sym_BSLASHlabelcref] = ACTIONS(4525), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4525), + [anon_sym_BSLASHcrefrange] = ACTIONS(4525), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCrefrange] = ACTIONS(4525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4523), + [anon_sym_BSLASHnewlabel] = ACTIONS(4525), + [anon_sym_BSLASHnewcommand] = ACTIONS(4525), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4525), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4525), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4525), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4523), + [anon_sym_BSLASHdef] = ACTIONS(4525), + [anon_sym_BSLASHlet] = ACTIONS(4525), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4525), + [anon_sym_BSLASHgls] = ACTIONS(4525), + [anon_sym_BSLASHGls] = ACTIONS(4525), + [anon_sym_BSLASHGLS] = ACTIONS(4525), + [anon_sym_BSLASHglspl] = ACTIONS(4525), + [anon_sym_BSLASHGlspl] = ACTIONS(4525), + [anon_sym_BSLASHGLSpl] = ACTIONS(4525), + [anon_sym_BSLASHglsdisp] = ACTIONS(4525), + [anon_sym_BSLASHglslink] = ACTIONS(4525), + [anon_sym_BSLASHglstext] = ACTIONS(4525), + [anon_sym_BSLASHGlstext] = ACTIONS(4525), + [anon_sym_BSLASHGLStext] = ACTIONS(4525), + [anon_sym_BSLASHglsfirst] = ACTIONS(4525), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4525), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4525), + [anon_sym_BSLASHglsplural] = ACTIONS(4525), + [anon_sym_BSLASHGlsplural] = ACTIONS(4525), + [anon_sym_BSLASHGLSplural] = ACTIONS(4525), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHglsname] = ACTIONS(4525), + [anon_sym_BSLASHGlsname] = ACTIONS(4525), + [anon_sym_BSLASHGLSname] = ACTIONS(4525), + [anon_sym_BSLASHglssymbol] = ACTIONS(4525), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4525), + [anon_sym_BSLASHglsdesc] = ACTIONS(4525), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4525), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4525), + [anon_sym_BSLASHglsuseri] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4525), + [anon_sym_BSLASHglsuserii] = ACTIONS(4525), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4525), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4525), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4525), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4525), + [anon_sym_BSLASHglsuserv] = ACTIONS(4525), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4525), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4525), + [anon_sym_BSLASHglsuservi] = ACTIONS(4525), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4525), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4525), + [anon_sym_BSLASHnewacronym] = ACTIONS(4525), + [anon_sym_BSLASHacrshort] = ACTIONS(4525), + [anon_sym_BSLASHAcrshort] = ACTIONS(4525), + [anon_sym_BSLASHACRshort] = ACTIONS(4525), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4525), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4525), + [anon_sym_BSLASHacrlong] = ACTIONS(4525), + [anon_sym_BSLASHAcrlong] = ACTIONS(4525), + [anon_sym_BSLASHACRlong] = ACTIONS(4525), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4525), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4525), + [anon_sym_BSLASHacrfull] = ACTIONS(4525), + [anon_sym_BSLASHAcrfull] = ACTIONS(4525), + [anon_sym_BSLASHACRfull] = ACTIONS(4525), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4525), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4525), + [anon_sym_BSLASHacs] = ACTIONS(4525), + [anon_sym_BSLASHAcs] = ACTIONS(4525), + [anon_sym_BSLASHacsp] = ACTIONS(4525), + [anon_sym_BSLASHAcsp] = ACTIONS(4525), + [anon_sym_BSLASHacl] = ACTIONS(4525), + [anon_sym_BSLASHAcl] = ACTIONS(4525), + [anon_sym_BSLASHaclp] = ACTIONS(4525), + [anon_sym_BSLASHAclp] = ACTIONS(4525), + [anon_sym_BSLASHacf] = ACTIONS(4525), + [anon_sym_BSLASHAcf] = ACTIONS(4525), + [anon_sym_BSLASHacfp] = ACTIONS(4525), + [anon_sym_BSLASHAcfp] = ACTIONS(4525), + [anon_sym_BSLASHac] = ACTIONS(4525), + [anon_sym_BSLASHAc] = ACTIONS(4525), + [anon_sym_BSLASHacp] = ACTIONS(4525), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4525), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4525), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4525), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4525), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4525), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4525), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4525), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4525), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4525), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4525), + [anon_sym_BSLASHcolor] = ACTIONS(4525), + [anon_sym_BSLASHcolorbox] = ACTIONS(4525), + [anon_sym_BSLASHtextcolor] = ACTIONS(4525), + [anon_sym_BSLASHpagecolor] = ACTIONS(4525), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4525), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4525), + [anon_sym_BSLASHtext] = ACTIONS(4525), + [anon_sym_BSLASHintertext] = ACTIONS(4525), + [anon_sym_shortintertext] = ACTIONS(4525), + }, + [327] = { + [sym__subsection_declaration] = STATE(152), + [sym_subsection] = STATE(327), + [aux_sym__section_repeat4] = STATE(327), + [ts_builtin_sym_end] = ACTIONS(4533), + [sym_command_name] = ACTIONS(4535), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4535), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(4533), + [anon_sym_BSLASHpart] = ACTIONS(4535), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddpart] = ACTIONS(4535), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4533), + [anon_sym_BSLASHchapter] = ACTIONS(4535), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddchap] = ACTIONS(4535), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsection] = ACTIONS(4535), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddsec] = ACTIONS(4535), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsubsection] = ACTIONS(4537), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4540), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4535), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4533), + [anon_sym_BSLASHparagraph] = ACTIONS(4535), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4535), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4533), + [anon_sym_BSLASHitem] = ACTIONS(4535), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4533), + [anon_sym_LBRACE] = ACTIONS(4533), + [anon_sym_RBRACE] = ACTIONS(4533), + [sym_word] = ACTIONS(4535), + [sym_placeholder] = ACTIONS(4533), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4535), + [anon_sym__] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_BANG] = ACTIONS(4535), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_SQUOTE] = ACTIONS(4535), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4533), + [anon_sym_DOLLAR] = ACTIONS(4535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4533), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4533), + [anon_sym_BSLASHbegin] = ACTIONS(4535), + [anon_sym_BSLASHusepackage] = ACTIONS(4535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4535), + [anon_sym_BSLASHinclude] = ACTIONS(4535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4535), + [anon_sym_BSLASHinput] = ACTIONS(4535), + [anon_sym_BSLASHsubfile] = ACTIONS(4535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4535), + [anon_sym_BSLASHbibliography] = ACTIONS(4535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4535), + [anon_sym_BSLASHincludesvg] = ACTIONS(4535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4535), + [anon_sym_BSLASHimport] = ACTIONS(4535), + [anon_sym_BSLASHsubimport] = ACTIONS(4535), + [anon_sym_BSLASHinputfrom] = ACTIONS(4535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4535), + [anon_sym_BSLASHincludefrom] = ACTIONS(4535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4535), + [anon_sym_BSLASHcaption] = ACTIONS(4535), + [anon_sym_BSLASHcite] = ACTIONS(4535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCite] = ACTIONS(4535), + [anon_sym_BSLASHnocite] = ACTIONS(4535), + [anon_sym_BSLASHcitet] = ACTIONS(4535), + [anon_sym_BSLASHcitep] = ACTIONS(4535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteauthor] = ACTIONS(4535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitetitle] = ACTIONS(4535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteyear] = ACTIONS(4535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitedate] = ACTIONS(4535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteurl] = ACTIONS(4535), + [anon_sym_BSLASHfullcite] = ACTIONS(4535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4535), + [anon_sym_BSLASHcitealt] = ACTIONS(4535), + [anon_sym_BSLASHcitealp] = ACTIONS(4535), + [anon_sym_BSLASHcitetext] = ACTIONS(4535), + [anon_sym_BSLASHparencite] = ACTIONS(4535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHParencite] = ACTIONS(4535), + [anon_sym_BSLASHfootcite] = ACTIONS(4535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4535), + [anon_sym_BSLASHtextcite] = ACTIONS(4535), + [anon_sym_BSLASHTextcite] = ACTIONS(4535), + [anon_sym_BSLASHsmartcite] = ACTIONS(4535), + [anon_sym_BSLASHSmartcite] = ACTIONS(4535), + [anon_sym_BSLASHsupercite] = ACTIONS(4535), + [anon_sym_BSLASHautocite] = ACTIONS(4535), + [anon_sym_BSLASHAutocite] = ACTIONS(4535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHvolcite] = ACTIONS(4535), + [anon_sym_BSLASHVolcite] = ACTIONS(4535), + [anon_sym_BSLASHpvolcite] = ACTIONS(4535), + [anon_sym_BSLASHPvolcite] = ACTIONS(4535), + [anon_sym_BSLASHfvolcite] = ACTIONS(4535), + [anon_sym_BSLASHftvolcite] = ACTIONS(4535), + [anon_sym_BSLASHsvolcite] = ACTIONS(4535), + [anon_sym_BSLASHSvolcite] = ACTIONS(4535), + [anon_sym_BSLASHtvolcite] = ACTIONS(4535), + [anon_sym_BSLASHTvolcite] = ACTIONS(4535), + [anon_sym_BSLASHavolcite] = ACTIONS(4535), + [anon_sym_BSLASHAvolcite] = ACTIONS(4535), + [anon_sym_BSLASHnotecite] = ACTIONS(4535), + [anon_sym_BSLASHNotecite] = ACTIONS(4535), + [anon_sym_BSLASHpnotecite] = ACTIONS(4535), + [anon_sym_BSLASHPnotecite] = ACTIONS(4535), + [anon_sym_BSLASHfnotecite] = ACTIONS(4535), + [anon_sym_BSLASHlabel] = ACTIONS(4535), + [anon_sym_BSLASHref] = ACTIONS(4535), + [anon_sym_BSLASHeqref] = ACTIONS(4535), + [anon_sym_BSLASHvref] = ACTIONS(4535), + [anon_sym_BSLASHVref] = ACTIONS(4535), + [anon_sym_BSLASHautoref] = ACTIONS(4535), + [anon_sym_BSLASHpageref] = ACTIONS(4535), + [anon_sym_BSLASHcref] = ACTIONS(4535), + [anon_sym_BSLASHCref] = ACTIONS(4535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4533), + [anon_sym_BSLASHnamecref] = ACTIONS(4535), + [anon_sym_BSLASHnameCref] = ACTIONS(4535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4535), + [anon_sym_BSLASHlabelcref] = ACTIONS(4535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4535), + [anon_sym_BSLASHcrefrange] = ACTIONS(4535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCrefrange] = ACTIONS(4535), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4533), + [anon_sym_BSLASHnewlabel] = ACTIONS(4535), + [anon_sym_BSLASHnewcommand] = ACTIONS(4535), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4535), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4535), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4533), + [anon_sym_BSLASHdef] = ACTIONS(4535), + [anon_sym_BSLASHlet] = ACTIONS(4535), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4535), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4535), + [anon_sym_BSLASHgls] = ACTIONS(4535), + [anon_sym_BSLASHGls] = ACTIONS(4535), + [anon_sym_BSLASHGLS] = ACTIONS(4535), + [anon_sym_BSLASHglspl] = ACTIONS(4535), + [anon_sym_BSLASHGlspl] = ACTIONS(4535), + [anon_sym_BSLASHGLSpl] = ACTIONS(4535), + [anon_sym_BSLASHglsdisp] = ACTIONS(4535), + [anon_sym_BSLASHglslink] = ACTIONS(4535), + [anon_sym_BSLASHglstext] = ACTIONS(4535), + [anon_sym_BSLASHGlstext] = ACTIONS(4535), + [anon_sym_BSLASHGLStext] = ACTIONS(4535), + [anon_sym_BSLASHglsfirst] = ACTIONS(4535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4535), + [anon_sym_BSLASHglsplural] = ACTIONS(4535), + [anon_sym_BSLASHGlsplural] = ACTIONS(4535), + [anon_sym_BSLASHGLSplural] = ACTIONS(4535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHglsname] = ACTIONS(4535), + [anon_sym_BSLASHGlsname] = ACTIONS(4535), + [anon_sym_BSLASHGLSname] = ACTIONS(4535), + [anon_sym_BSLASHglssymbol] = ACTIONS(4535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4535), + [anon_sym_BSLASHglsdesc] = ACTIONS(4535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4535), + [anon_sym_BSLASHglsuseri] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4535), + [anon_sym_BSLASHglsuserii] = ACTIONS(4535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4535), + [anon_sym_BSLASHglsuserv] = ACTIONS(4535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4535), + [anon_sym_BSLASHglsuservi] = ACTIONS(4535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4535), + [anon_sym_BSLASHnewacronym] = ACTIONS(4535), + [anon_sym_BSLASHacrshort] = ACTIONS(4535), + [anon_sym_BSLASHAcrshort] = ACTIONS(4535), + [anon_sym_BSLASHACRshort] = ACTIONS(4535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4535), + [anon_sym_BSLASHacrlong] = ACTIONS(4535), + [anon_sym_BSLASHAcrlong] = ACTIONS(4535), + [anon_sym_BSLASHACRlong] = ACTIONS(4535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4535), + [anon_sym_BSLASHacrfull] = ACTIONS(4535), + [anon_sym_BSLASHAcrfull] = ACTIONS(4535), + [anon_sym_BSLASHACRfull] = ACTIONS(4535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4535), + [anon_sym_BSLASHacs] = ACTIONS(4535), + [anon_sym_BSLASHAcs] = ACTIONS(4535), + [anon_sym_BSLASHacsp] = ACTIONS(4535), + [anon_sym_BSLASHAcsp] = ACTIONS(4535), + [anon_sym_BSLASHacl] = ACTIONS(4535), + [anon_sym_BSLASHAcl] = ACTIONS(4535), + [anon_sym_BSLASHaclp] = ACTIONS(4535), + [anon_sym_BSLASHAclp] = ACTIONS(4535), + [anon_sym_BSLASHacf] = ACTIONS(4535), + [anon_sym_BSLASHAcf] = ACTIONS(4535), + [anon_sym_BSLASHacfp] = ACTIONS(4535), + [anon_sym_BSLASHAcfp] = ACTIONS(4535), + [anon_sym_BSLASHac] = ACTIONS(4535), + [anon_sym_BSLASHAc] = ACTIONS(4535), + [anon_sym_BSLASHacp] = ACTIONS(4535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4535), + [anon_sym_BSLASHcolor] = ACTIONS(4535), + [anon_sym_BSLASHcolorbox] = ACTIONS(4535), + [anon_sym_BSLASHtextcolor] = ACTIONS(4535), + [anon_sym_BSLASHpagecolor] = ACTIONS(4535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4535), + [anon_sym_BSLASHtext] = ACTIONS(4535), + [anon_sym_BSLASHintertext] = ACTIONS(4535), + [anon_sym_shortintertext] = ACTIONS(4535), + }, + [328] = { + [sym__section_declaration] = STATE(142), + [sym_section] = STATE(328), + [aux_sym__section_repeat3] = STATE(328), + [ts_builtin_sym_end] = ACTIONS(4543), + [sym_command_name] = ACTIONS(4545), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_RPAREN] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_RBRACK] = ACTIONS(4543), + [anon_sym_COMMA] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_BSLASHpart] = ACTIONS(4545), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4543), + [anon_sym_BSLASHaddpart] = ACTIONS(4545), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4543), + [anon_sym_BSLASHchapter] = ACTIONS(4545), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4543), + [anon_sym_BSLASHaddchap] = ACTIONS(4545), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsection] = ACTIONS(4547), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4550), + [anon_sym_BSLASHaddsec] = ACTIONS(4547), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4550), + [anon_sym_BSLASHsubsection] = ACTIONS(4545), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4545), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4543), + [anon_sym_BSLASHparagraph] = ACTIONS(4545), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4545), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4543), + [anon_sym_BSLASHitem] = ACTIONS(4545), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4543), + [anon_sym_RBRACE] = ACTIONS(4543), + [sym_word] = ACTIONS(4545), + [sym_placeholder] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4545), + [anon_sym_STAR] = ACTIONS(4545), + [anon_sym_SLASH] = ACTIONS(4545), + [anon_sym_CARET] = ACTIONS(4545), + [anon_sym__] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4545), + [anon_sym_BANG] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4545), + [anon_sym_SQUOTE] = ACTIONS(4545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4543), + [anon_sym_DOLLAR] = ACTIONS(4545), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4543), + [anon_sym_BSLASHbegin] = ACTIONS(4545), + [anon_sym_BSLASHusepackage] = ACTIONS(4545), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4545), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4545), + [anon_sym_BSLASHinclude] = ACTIONS(4545), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4545), + [anon_sym_BSLASHinput] = ACTIONS(4545), + [anon_sym_BSLASHsubfile] = ACTIONS(4545), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4545), + [anon_sym_BSLASHbibliography] = ACTIONS(4545), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4545), + [anon_sym_BSLASHincludesvg] = ACTIONS(4545), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4545), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4545), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4545), + [anon_sym_BSLASHimport] = ACTIONS(4545), + [anon_sym_BSLASHsubimport] = ACTIONS(4545), + [anon_sym_BSLASHinputfrom] = ACTIONS(4545), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4545), + [anon_sym_BSLASHincludefrom] = ACTIONS(4545), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4545), + [anon_sym_BSLASHcaption] = ACTIONS(4545), + [anon_sym_BSLASHcite] = ACTIONS(4545), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCite] = ACTIONS(4545), + [anon_sym_BSLASHnocite] = ACTIONS(4545), + [anon_sym_BSLASHcitet] = ACTIONS(4545), + [anon_sym_BSLASHcitep] = ACTIONS(4545), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteauthor] = ACTIONS(4545), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4545), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitetitle] = ACTIONS(4545), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteyear] = ACTIONS(4545), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitedate] = ACTIONS(4545), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteurl] = ACTIONS(4545), + [anon_sym_BSLASHfullcite] = ACTIONS(4545), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4545), + [anon_sym_BSLASHcitealt] = ACTIONS(4545), + [anon_sym_BSLASHcitealp] = ACTIONS(4545), + [anon_sym_BSLASHcitetext] = ACTIONS(4545), + [anon_sym_BSLASHparencite] = ACTIONS(4545), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHParencite] = ACTIONS(4545), + [anon_sym_BSLASHfootcite] = ACTIONS(4545), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4545), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4545), + [anon_sym_BSLASHtextcite] = ACTIONS(4545), + [anon_sym_BSLASHTextcite] = ACTIONS(4545), + [anon_sym_BSLASHsmartcite] = ACTIONS(4545), + [anon_sym_BSLASHSmartcite] = ACTIONS(4545), + [anon_sym_BSLASHsupercite] = ACTIONS(4545), + [anon_sym_BSLASHautocite] = ACTIONS(4545), + [anon_sym_BSLASHAutocite] = ACTIONS(4545), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHvolcite] = ACTIONS(4545), + [anon_sym_BSLASHVolcite] = ACTIONS(4545), + [anon_sym_BSLASHpvolcite] = ACTIONS(4545), + [anon_sym_BSLASHPvolcite] = ACTIONS(4545), + [anon_sym_BSLASHfvolcite] = ACTIONS(4545), + [anon_sym_BSLASHftvolcite] = ACTIONS(4545), + [anon_sym_BSLASHsvolcite] = ACTIONS(4545), + [anon_sym_BSLASHSvolcite] = ACTIONS(4545), + [anon_sym_BSLASHtvolcite] = ACTIONS(4545), + [anon_sym_BSLASHTvolcite] = ACTIONS(4545), + [anon_sym_BSLASHavolcite] = ACTIONS(4545), + [anon_sym_BSLASHAvolcite] = ACTIONS(4545), + [anon_sym_BSLASHnotecite] = ACTIONS(4545), + [anon_sym_BSLASHNotecite] = ACTIONS(4545), + [anon_sym_BSLASHpnotecite] = ACTIONS(4545), + [anon_sym_BSLASHPnotecite] = ACTIONS(4545), + [anon_sym_BSLASHfnotecite] = ACTIONS(4545), + [anon_sym_BSLASHlabel] = ACTIONS(4545), + [anon_sym_BSLASHref] = ACTIONS(4545), + [anon_sym_BSLASHeqref] = ACTIONS(4545), + [anon_sym_BSLASHvref] = ACTIONS(4545), + [anon_sym_BSLASHVref] = ACTIONS(4545), + [anon_sym_BSLASHautoref] = ACTIONS(4545), + [anon_sym_BSLASHpageref] = ACTIONS(4545), + [anon_sym_BSLASHcref] = ACTIONS(4545), + [anon_sym_BSLASHCref] = ACTIONS(4545), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4543), + [anon_sym_BSLASHnamecref] = ACTIONS(4545), + [anon_sym_BSLASHnameCref] = ACTIONS(4545), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4545), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4545), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4545), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4545), + [anon_sym_BSLASHlabelcref] = ACTIONS(4545), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4545), + [anon_sym_BSLASHcrefrange] = ACTIONS(4545), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCrefrange] = ACTIONS(4545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4543), + [anon_sym_BSLASHnewlabel] = ACTIONS(4545), + [anon_sym_BSLASHnewcommand] = ACTIONS(4545), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4545), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4545), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4545), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4543), + [anon_sym_BSLASHdef] = ACTIONS(4545), + [anon_sym_BSLASHlet] = ACTIONS(4545), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4545), + [anon_sym_BSLASHgls] = ACTIONS(4545), + [anon_sym_BSLASHGls] = ACTIONS(4545), + [anon_sym_BSLASHGLS] = ACTIONS(4545), + [anon_sym_BSLASHglspl] = ACTIONS(4545), + [anon_sym_BSLASHGlspl] = ACTIONS(4545), + [anon_sym_BSLASHGLSpl] = ACTIONS(4545), + [anon_sym_BSLASHglsdisp] = ACTIONS(4545), + [anon_sym_BSLASHglslink] = ACTIONS(4545), + [anon_sym_BSLASHglstext] = ACTIONS(4545), + [anon_sym_BSLASHGlstext] = ACTIONS(4545), + [anon_sym_BSLASHGLStext] = ACTIONS(4545), + [anon_sym_BSLASHglsfirst] = ACTIONS(4545), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4545), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4545), + [anon_sym_BSLASHglsplural] = ACTIONS(4545), + [anon_sym_BSLASHGlsplural] = ACTIONS(4545), + [anon_sym_BSLASHGLSplural] = ACTIONS(4545), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHglsname] = ACTIONS(4545), + [anon_sym_BSLASHGlsname] = ACTIONS(4545), + [anon_sym_BSLASHGLSname] = ACTIONS(4545), + [anon_sym_BSLASHglssymbol] = ACTIONS(4545), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4545), + [anon_sym_BSLASHglsdesc] = ACTIONS(4545), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4545), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4545), + [anon_sym_BSLASHglsuseri] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4545), + [anon_sym_BSLASHglsuserii] = ACTIONS(4545), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4545), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4545), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4545), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4545), + [anon_sym_BSLASHglsuserv] = ACTIONS(4545), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4545), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4545), + [anon_sym_BSLASHglsuservi] = ACTIONS(4545), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4545), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4545), + [anon_sym_BSLASHnewacronym] = ACTIONS(4545), + [anon_sym_BSLASHacrshort] = ACTIONS(4545), + [anon_sym_BSLASHAcrshort] = ACTIONS(4545), + [anon_sym_BSLASHACRshort] = ACTIONS(4545), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4545), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4545), + [anon_sym_BSLASHacrlong] = ACTIONS(4545), + [anon_sym_BSLASHAcrlong] = ACTIONS(4545), + [anon_sym_BSLASHACRlong] = ACTIONS(4545), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4545), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4545), + [anon_sym_BSLASHacrfull] = ACTIONS(4545), + [anon_sym_BSLASHAcrfull] = ACTIONS(4545), + [anon_sym_BSLASHACRfull] = ACTIONS(4545), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4545), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4545), + [anon_sym_BSLASHacs] = ACTIONS(4545), + [anon_sym_BSLASHAcs] = ACTIONS(4545), + [anon_sym_BSLASHacsp] = ACTIONS(4545), + [anon_sym_BSLASHAcsp] = ACTIONS(4545), + [anon_sym_BSLASHacl] = ACTIONS(4545), + [anon_sym_BSLASHAcl] = ACTIONS(4545), + [anon_sym_BSLASHaclp] = ACTIONS(4545), + [anon_sym_BSLASHAclp] = ACTIONS(4545), + [anon_sym_BSLASHacf] = ACTIONS(4545), + [anon_sym_BSLASHAcf] = ACTIONS(4545), + [anon_sym_BSLASHacfp] = ACTIONS(4545), + [anon_sym_BSLASHAcfp] = ACTIONS(4545), + [anon_sym_BSLASHac] = ACTIONS(4545), + [anon_sym_BSLASHAc] = ACTIONS(4545), + [anon_sym_BSLASHacp] = ACTIONS(4545), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4545), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4545), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4545), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4545), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4545), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4545), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4545), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4545), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4545), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4545), + [anon_sym_BSLASHcolor] = ACTIONS(4545), + [anon_sym_BSLASHcolorbox] = ACTIONS(4545), + [anon_sym_BSLASHtextcolor] = ACTIONS(4545), + [anon_sym_BSLASHpagecolor] = ACTIONS(4545), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4545), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4545), + [anon_sym_BSLASHtext] = ACTIONS(4545), + [anon_sym_BSLASHintertext] = ACTIONS(4545), + [anon_sym_shortintertext] = ACTIONS(4545), + }, + [329] = { + [sym__chapter_declaration] = STATE(133), + [sym_chapter] = STATE(329), + [aux_sym__section_repeat2] = STATE(329), + [ts_builtin_sym_end] = ACTIONS(4553), + [sym_command_name] = ACTIONS(4555), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_RBRACK] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4553), + [anon_sym_BSLASHpart] = ACTIONS(4555), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4553), + [anon_sym_BSLASHaddpart] = ACTIONS(4555), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4553), + [anon_sym_BSLASHchapter] = ACTIONS(4557), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4560), + [anon_sym_BSLASHaddchap] = ACTIONS(4557), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4560), + [anon_sym_BSLASHsection] = ACTIONS(4555), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHaddsec] = ACTIONS(4555), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubsection] = ACTIONS(4555), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4555), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHparagraph] = ACTIONS(4555), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4555), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4553), + [anon_sym_BSLASHitem] = ACTIONS(4555), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [anon_sym_RBRACE] = ACTIONS(4553), + [sym_word] = ACTIONS(4555), + [sym_placeholder] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4555), + [anon_sym__] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_SQUOTE] = ACTIONS(4555), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4553), + [anon_sym_DOLLAR] = ACTIONS(4555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4553), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4553), + [anon_sym_BSLASHbegin] = ACTIONS(4555), + [anon_sym_BSLASHusepackage] = ACTIONS(4555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4555), + [anon_sym_BSLASHinclude] = ACTIONS(4555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4555), + [anon_sym_BSLASHinput] = ACTIONS(4555), + [anon_sym_BSLASHsubfile] = ACTIONS(4555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4555), + [anon_sym_BSLASHbibliography] = ACTIONS(4555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4555), + [anon_sym_BSLASHincludesvg] = ACTIONS(4555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4555), + [anon_sym_BSLASHimport] = ACTIONS(4555), + [anon_sym_BSLASHsubimport] = ACTIONS(4555), + [anon_sym_BSLASHinputfrom] = ACTIONS(4555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), + [anon_sym_BSLASHincludefrom] = ACTIONS(4555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), + [anon_sym_BSLASHcaption] = ACTIONS(4555), + [anon_sym_BSLASHcite] = ACTIONS(4555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCite] = ACTIONS(4555), + [anon_sym_BSLASHnocite] = ACTIONS(4555), + [anon_sym_BSLASHcitet] = ACTIONS(4555), + [anon_sym_BSLASHcitep] = ACTIONS(4555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteauthor] = ACTIONS(4555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitetitle] = ACTIONS(4555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteyear] = ACTIONS(4555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitedate] = ACTIONS(4555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteurl] = ACTIONS(4555), + [anon_sym_BSLASHfullcite] = ACTIONS(4555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4555), + [anon_sym_BSLASHcitealt] = ACTIONS(4555), + [anon_sym_BSLASHcitealp] = ACTIONS(4555), + [anon_sym_BSLASHcitetext] = ACTIONS(4555), + [anon_sym_BSLASHparencite] = ACTIONS(4555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHParencite] = ACTIONS(4555), + [anon_sym_BSLASHfootcite] = ACTIONS(4555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4555), + [anon_sym_BSLASHtextcite] = ACTIONS(4555), + [anon_sym_BSLASHTextcite] = ACTIONS(4555), + [anon_sym_BSLASHsmartcite] = ACTIONS(4555), + [anon_sym_BSLASHSmartcite] = ACTIONS(4555), + [anon_sym_BSLASHsupercite] = ACTIONS(4555), + [anon_sym_BSLASHautocite] = ACTIONS(4555), + [anon_sym_BSLASHAutocite] = ACTIONS(4555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHvolcite] = ACTIONS(4555), + [anon_sym_BSLASHVolcite] = ACTIONS(4555), + [anon_sym_BSLASHpvolcite] = ACTIONS(4555), + [anon_sym_BSLASHPvolcite] = ACTIONS(4555), + [anon_sym_BSLASHfvolcite] = ACTIONS(4555), + [anon_sym_BSLASHftvolcite] = ACTIONS(4555), + [anon_sym_BSLASHsvolcite] = ACTIONS(4555), + [anon_sym_BSLASHSvolcite] = ACTIONS(4555), + [anon_sym_BSLASHtvolcite] = ACTIONS(4555), + [anon_sym_BSLASHTvolcite] = ACTIONS(4555), + [anon_sym_BSLASHavolcite] = ACTIONS(4555), + [anon_sym_BSLASHAvolcite] = ACTIONS(4555), + [anon_sym_BSLASHnotecite] = ACTIONS(4555), + [anon_sym_BSLASHNotecite] = ACTIONS(4555), + [anon_sym_BSLASHpnotecite] = ACTIONS(4555), + [anon_sym_BSLASHPnotecite] = ACTIONS(4555), + [anon_sym_BSLASHfnotecite] = ACTIONS(4555), + [anon_sym_BSLASHlabel] = ACTIONS(4555), + [anon_sym_BSLASHref] = ACTIONS(4555), + [anon_sym_BSLASHeqref] = ACTIONS(4555), + [anon_sym_BSLASHvref] = ACTIONS(4555), + [anon_sym_BSLASHVref] = ACTIONS(4555), + [anon_sym_BSLASHautoref] = ACTIONS(4555), + [anon_sym_BSLASHpageref] = ACTIONS(4555), + [anon_sym_BSLASHcref] = ACTIONS(4555), + [anon_sym_BSLASHCref] = ACTIONS(4555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4553), + [anon_sym_BSLASHnamecref] = ACTIONS(4555), + [anon_sym_BSLASHnameCref] = ACTIONS(4555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4555), + [anon_sym_BSLASHlabelcref] = ACTIONS(4555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4555), + [anon_sym_BSLASHcrefrange] = ACTIONS(4555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCrefrange] = ACTIONS(4555), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4553), + [anon_sym_BSLASHnewlabel] = ACTIONS(4555), + [anon_sym_BSLASHnewcommand] = ACTIONS(4555), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4555), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4555), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4553), + [anon_sym_BSLASHdef] = ACTIONS(4555), + [anon_sym_BSLASHlet] = ACTIONS(4555), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4555), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4555), + [anon_sym_BSLASHgls] = ACTIONS(4555), + [anon_sym_BSLASHGls] = ACTIONS(4555), + [anon_sym_BSLASHGLS] = ACTIONS(4555), + [anon_sym_BSLASHglspl] = ACTIONS(4555), + [anon_sym_BSLASHGlspl] = ACTIONS(4555), + [anon_sym_BSLASHGLSpl] = ACTIONS(4555), + [anon_sym_BSLASHglsdisp] = ACTIONS(4555), + [anon_sym_BSLASHglslink] = ACTIONS(4555), + [anon_sym_BSLASHglstext] = ACTIONS(4555), + [anon_sym_BSLASHGlstext] = ACTIONS(4555), + [anon_sym_BSLASHGLStext] = ACTIONS(4555), + [anon_sym_BSLASHglsfirst] = ACTIONS(4555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4555), + [anon_sym_BSLASHglsplural] = ACTIONS(4555), + [anon_sym_BSLASHGlsplural] = ACTIONS(4555), + [anon_sym_BSLASHGLSplural] = ACTIONS(4555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHglsname] = ACTIONS(4555), + [anon_sym_BSLASHGlsname] = ACTIONS(4555), + [anon_sym_BSLASHGLSname] = ACTIONS(4555), + [anon_sym_BSLASHglssymbol] = ACTIONS(4555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4555), + [anon_sym_BSLASHglsdesc] = ACTIONS(4555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4555), + [anon_sym_BSLASHglsuseri] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4555), + [anon_sym_BSLASHglsuserii] = ACTIONS(4555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4555), + [anon_sym_BSLASHglsuserv] = ACTIONS(4555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4555), + [anon_sym_BSLASHglsuservi] = ACTIONS(4555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4555), + [anon_sym_BSLASHnewacronym] = ACTIONS(4555), + [anon_sym_BSLASHacrshort] = ACTIONS(4555), + [anon_sym_BSLASHAcrshort] = ACTIONS(4555), + [anon_sym_BSLASHACRshort] = ACTIONS(4555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4555), + [anon_sym_BSLASHacrlong] = ACTIONS(4555), + [anon_sym_BSLASHAcrlong] = ACTIONS(4555), + [anon_sym_BSLASHACRlong] = ACTIONS(4555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4555), + [anon_sym_BSLASHacrfull] = ACTIONS(4555), + [anon_sym_BSLASHAcrfull] = ACTIONS(4555), + [anon_sym_BSLASHACRfull] = ACTIONS(4555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4555), + [anon_sym_BSLASHacs] = ACTIONS(4555), + [anon_sym_BSLASHAcs] = ACTIONS(4555), + [anon_sym_BSLASHacsp] = ACTIONS(4555), + [anon_sym_BSLASHAcsp] = ACTIONS(4555), + [anon_sym_BSLASHacl] = ACTIONS(4555), + [anon_sym_BSLASHAcl] = ACTIONS(4555), + [anon_sym_BSLASHaclp] = ACTIONS(4555), + [anon_sym_BSLASHAclp] = ACTIONS(4555), + [anon_sym_BSLASHacf] = ACTIONS(4555), + [anon_sym_BSLASHAcf] = ACTIONS(4555), + [anon_sym_BSLASHacfp] = ACTIONS(4555), + [anon_sym_BSLASHAcfp] = ACTIONS(4555), + [anon_sym_BSLASHac] = ACTIONS(4555), + [anon_sym_BSLASHAc] = ACTIONS(4555), + [anon_sym_BSLASHacp] = ACTIONS(4555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4555), + [anon_sym_BSLASHcolor] = ACTIONS(4555), + [anon_sym_BSLASHcolorbox] = ACTIONS(4555), + [anon_sym_BSLASHtextcolor] = ACTIONS(4555), + [anon_sym_BSLASHpagecolor] = ACTIONS(4555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4555), + [anon_sym_BSLASHtext] = ACTIONS(4555), + [anon_sym_BSLASHintertext] = ACTIONS(4555), + [anon_sym_shortintertext] = ACTIONS(4555), + }, + [330] = { + [sym_curly_group] = STATE(698), + [sym_mixed_group] = STATE(698), + [aux_sym_generic_command_repeat1] = STATE(272), + [ts_builtin_sym_end] = ACTIONS(4563), + [sym_command_name] = ACTIONS(4565), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_RPAREN] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4453), + [anon_sym_RBRACK] = ACTIONS(4563), + [anon_sym_COMMA] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_BSLASHpart] = ACTIONS(4565), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddpart] = ACTIONS(4565), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4563), + [anon_sym_BSLASHchapter] = ACTIONS(4565), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddchap] = ACTIONS(4565), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsection] = ACTIONS(4565), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddsec] = ACTIONS(4565), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubsection] = ACTIONS(4565), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4565), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHparagraph] = ACTIONS(4565), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4565), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4563), + [anon_sym_BSLASHitem] = ACTIONS(4565), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(4563), + [sym_word] = ACTIONS(4565), + [sym_placeholder] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4565), + [anon_sym_DASH] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_SLASH] = ACTIONS(4565), + [anon_sym_CARET] = ACTIONS(4565), + [anon_sym__] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4565), + [anon_sym_GT] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_PIPE] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4565), + [anon_sym_SQUOTE] = ACTIONS(4565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), + [anon_sym_DOLLAR] = ACTIONS(4565), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), + [anon_sym_BSLASHbegin] = ACTIONS(4565), + [anon_sym_BSLASHusepackage] = ACTIONS(4565), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), + [anon_sym_BSLASHinclude] = ACTIONS(4565), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), + [anon_sym_BSLASHinput] = ACTIONS(4565), + [anon_sym_BSLASHsubfile] = ACTIONS(4565), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), + [anon_sym_BSLASHbibliography] = ACTIONS(4565), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), + [anon_sym_BSLASHincludesvg] = ACTIONS(4565), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), + [anon_sym_BSLASHimport] = ACTIONS(4565), + [anon_sym_BSLASHsubimport] = ACTIONS(4565), + [anon_sym_BSLASHinputfrom] = ACTIONS(4565), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), + [anon_sym_BSLASHincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHcaption] = ACTIONS(4565), + [anon_sym_BSLASHcite] = ACTIONS(4565), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCite] = ACTIONS(4565), + [anon_sym_BSLASHnocite] = ACTIONS(4565), + [anon_sym_BSLASHcitet] = ACTIONS(4565), + [anon_sym_BSLASHcitep] = ACTIONS(4565), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteauthor] = ACTIONS(4565), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitetitle] = ACTIONS(4565), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteyear] = ACTIONS(4565), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitedate] = ACTIONS(4565), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteurl] = ACTIONS(4565), + [anon_sym_BSLASHfullcite] = ACTIONS(4565), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), + [anon_sym_BSLASHcitealt] = ACTIONS(4565), + [anon_sym_BSLASHcitealp] = ACTIONS(4565), + [anon_sym_BSLASHcitetext] = ACTIONS(4565), + [anon_sym_BSLASHparencite] = ACTIONS(4565), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHParencite] = ACTIONS(4565), + [anon_sym_BSLASHfootcite] = ACTIONS(4565), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), + [anon_sym_BSLASHtextcite] = ACTIONS(4565), + [anon_sym_BSLASHTextcite] = ACTIONS(4565), + [anon_sym_BSLASHsmartcite] = ACTIONS(4565), + [anon_sym_BSLASHSmartcite] = ACTIONS(4565), + [anon_sym_BSLASHsupercite] = ACTIONS(4565), + [anon_sym_BSLASHautocite] = ACTIONS(4565), + [anon_sym_BSLASHAutocite] = ACTIONS(4565), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHvolcite] = ACTIONS(4565), + [anon_sym_BSLASHVolcite] = ACTIONS(4565), + [anon_sym_BSLASHpvolcite] = ACTIONS(4565), + [anon_sym_BSLASHPvolcite] = ACTIONS(4565), + [anon_sym_BSLASHfvolcite] = ACTIONS(4565), + [anon_sym_BSLASHftvolcite] = ACTIONS(4565), + [anon_sym_BSLASHsvolcite] = ACTIONS(4565), + [anon_sym_BSLASHSvolcite] = ACTIONS(4565), + [anon_sym_BSLASHtvolcite] = ACTIONS(4565), + [anon_sym_BSLASHTvolcite] = ACTIONS(4565), + [anon_sym_BSLASHavolcite] = ACTIONS(4565), + [anon_sym_BSLASHAvolcite] = ACTIONS(4565), + [anon_sym_BSLASHnotecite] = ACTIONS(4565), + [anon_sym_BSLASHNotecite] = ACTIONS(4565), + [anon_sym_BSLASHpnotecite] = ACTIONS(4565), + [anon_sym_BSLASHPnotecite] = ACTIONS(4565), + [anon_sym_BSLASHfnotecite] = ACTIONS(4565), + [anon_sym_BSLASHlabel] = ACTIONS(4565), + [anon_sym_BSLASHref] = ACTIONS(4565), + [anon_sym_BSLASHeqref] = ACTIONS(4565), + [anon_sym_BSLASHvref] = ACTIONS(4565), + [anon_sym_BSLASHVref] = ACTIONS(4565), + [anon_sym_BSLASHautoref] = ACTIONS(4565), + [anon_sym_BSLASHpageref] = ACTIONS(4565), + [anon_sym_BSLASHcref] = ACTIONS(4565), + [anon_sym_BSLASHCref] = ACTIONS(4565), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnameCref] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHlabelcref] = ACTIONS(4565), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCrefrange] = ACTIONS(4565), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnewlabel] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), + [anon_sym_BSLASHdef] = ACTIONS(4565), + [anon_sym_BSLASHlet] = ACTIONS(4565), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), + [anon_sym_BSLASHgls] = ACTIONS(4565), + [anon_sym_BSLASHGls] = ACTIONS(4565), + [anon_sym_BSLASHGLS] = ACTIONS(4565), + [anon_sym_BSLASHglspl] = ACTIONS(4565), + [anon_sym_BSLASHGlspl] = ACTIONS(4565), + [anon_sym_BSLASHGLSpl] = ACTIONS(4565), + [anon_sym_BSLASHglsdisp] = ACTIONS(4565), + [anon_sym_BSLASHglslink] = ACTIONS(4565), + [anon_sym_BSLASHglstext] = ACTIONS(4565), + [anon_sym_BSLASHGlstext] = ACTIONS(4565), + [anon_sym_BSLASHGLStext] = ACTIONS(4565), + [anon_sym_BSLASHglsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), + [anon_sym_BSLASHglsplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSplural] = ACTIONS(4565), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHglsname] = ACTIONS(4565), + [anon_sym_BSLASHGlsname] = ACTIONS(4565), + [anon_sym_BSLASHGLSname] = ACTIONS(4565), + [anon_sym_BSLASHglssymbol] = ACTIONS(4565), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), + [anon_sym_BSLASHglsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), + [anon_sym_BSLASHglsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), + [anon_sym_BSLASHglsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), + [anon_sym_BSLASHglsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), + [anon_sym_BSLASHglsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), + [anon_sym_BSLASHnewacronym] = ACTIONS(4565), + [anon_sym_BSLASHacrshort] = ACTIONS(4565), + [anon_sym_BSLASHAcrshort] = ACTIONS(4565), + [anon_sym_BSLASHACRshort] = ACTIONS(4565), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), + [anon_sym_BSLASHacrlong] = ACTIONS(4565), + [anon_sym_BSLASHAcrlong] = ACTIONS(4565), + [anon_sym_BSLASHACRlong] = ACTIONS(4565), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), + [anon_sym_BSLASHacrfull] = ACTIONS(4565), + [anon_sym_BSLASHAcrfull] = ACTIONS(4565), + [anon_sym_BSLASHACRfull] = ACTIONS(4565), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), + [anon_sym_BSLASHacs] = ACTIONS(4565), + [anon_sym_BSLASHAcs] = ACTIONS(4565), + [anon_sym_BSLASHacsp] = ACTIONS(4565), + [anon_sym_BSLASHAcsp] = ACTIONS(4565), + [anon_sym_BSLASHacl] = ACTIONS(4565), + [anon_sym_BSLASHAcl] = ACTIONS(4565), + [anon_sym_BSLASHaclp] = ACTIONS(4565), + [anon_sym_BSLASHAclp] = ACTIONS(4565), + [anon_sym_BSLASHacf] = ACTIONS(4565), + [anon_sym_BSLASHAcf] = ACTIONS(4565), + [anon_sym_BSLASHacfp] = ACTIONS(4565), + [anon_sym_BSLASHAcfp] = ACTIONS(4565), + [anon_sym_BSLASHac] = ACTIONS(4565), + [anon_sym_BSLASHAc] = ACTIONS(4565), + [anon_sym_BSLASHacp] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), + [anon_sym_BSLASHcolor] = ACTIONS(4565), + [anon_sym_BSLASHcolorbox] = ACTIONS(4565), + [anon_sym_BSLASHtextcolor] = ACTIONS(4565), + [anon_sym_BSLASHpagecolor] = ACTIONS(4565), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), + [anon_sym_BSLASHtext] = ACTIONS(4565), + [anon_sym_BSLASHintertext] = ACTIONS(4565), + [anon_sym_shortintertext] = ACTIONS(4565), + }, + [331] = { + [sym__part_declaration] = STATE(123), + [sym_part] = STATE(331), + [aux_sym__section_repeat1] = STATE(331), + [ts_builtin_sym_end] = ACTIONS(4567), + [sym_command_name] = ACTIONS(4569), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4567), + [anon_sym_RBRACK] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_BSLASHpart] = ACTIONS(4571), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4574), + [anon_sym_BSLASHaddpart] = ACTIONS(4571), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4574), + [anon_sym_BSLASHchapter] = ACTIONS(4569), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4567), + [anon_sym_BSLASHaddchap] = ACTIONS(4569), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsection] = ACTIONS(4569), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHaddsec] = ACTIONS(4569), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubsection] = ACTIONS(4569), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4569), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHparagraph] = ACTIONS(4569), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4569), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4567), + [anon_sym_BSLASHitem] = ACTIONS(4569), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_RBRACE] = ACTIONS(4567), + [sym_word] = ACTIONS(4569), + [sym_placeholder] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_STAR] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym__] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_PIPE] = ACTIONS(4569), + [anon_sym_COLON] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4569), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4569), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4567), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4567), + [anon_sym_BSLASHbegin] = ACTIONS(4569), + [anon_sym_BSLASHusepackage] = ACTIONS(4569), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4569), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4569), + [anon_sym_BSLASHinclude] = ACTIONS(4569), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4569), + [anon_sym_BSLASHinput] = ACTIONS(4569), + [anon_sym_BSLASHsubfile] = ACTIONS(4569), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4569), + [anon_sym_BSLASHbibliography] = ACTIONS(4569), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4569), + [anon_sym_BSLASHincludesvg] = ACTIONS(4569), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4569), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4569), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4569), + [anon_sym_BSLASHimport] = ACTIONS(4569), + [anon_sym_BSLASHsubimport] = ACTIONS(4569), + [anon_sym_BSLASHinputfrom] = ACTIONS(4569), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4569), + [anon_sym_BSLASHincludefrom] = ACTIONS(4569), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4569), + [anon_sym_BSLASHcaption] = ACTIONS(4569), + [anon_sym_BSLASHcite] = ACTIONS(4569), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCite] = ACTIONS(4569), + [anon_sym_BSLASHnocite] = ACTIONS(4569), + [anon_sym_BSLASHcitet] = ACTIONS(4569), + [anon_sym_BSLASHcitep] = ACTIONS(4569), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteauthor] = ACTIONS(4569), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4569), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitetitle] = ACTIONS(4569), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteyear] = ACTIONS(4569), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitedate] = ACTIONS(4569), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteurl] = ACTIONS(4569), + [anon_sym_BSLASHfullcite] = ACTIONS(4569), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4569), + [anon_sym_BSLASHcitealt] = ACTIONS(4569), + [anon_sym_BSLASHcitealp] = ACTIONS(4569), + [anon_sym_BSLASHcitetext] = ACTIONS(4569), + [anon_sym_BSLASHparencite] = ACTIONS(4569), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHParencite] = ACTIONS(4569), + [anon_sym_BSLASHfootcite] = ACTIONS(4569), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4569), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4569), + [anon_sym_BSLASHtextcite] = ACTIONS(4569), + [anon_sym_BSLASHTextcite] = ACTIONS(4569), + [anon_sym_BSLASHsmartcite] = ACTIONS(4569), + [anon_sym_BSLASHSmartcite] = ACTIONS(4569), + [anon_sym_BSLASHsupercite] = ACTIONS(4569), + [anon_sym_BSLASHautocite] = ACTIONS(4569), + [anon_sym_BSLASHAutocite] = ACTIONS(4569), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHvolcite] = ACTIONS(4569), + [anon_sym_BSLASHVolcite] = ACTIONS(4569), + [anon_sym_BSLASHpvolcite] = ACTIONS(4569), + [anon_sym_BSLASHPvolcite] = ACTIONS(4569), + [anon_sym_BSLASHfvolcite] = ACTIONS(4569), + [anon_sym_BSLASHftvolcite] = ACTIONS(4569), + [anon_sym_BSLASHsvolcite] = ACTIONS(4569), + [anon_sym_BSLASHSvolcite] = ACTIONS(4569), + [anon_sym_BSLASHtvolcite] = ACTIONS(4569), + [anon_sym_BSLASHTvolcite] = ACTIONS(4569), + [anon_sym_BSLASHavolcite] = ACTIONS(4569), + [anon_sym_BSLASHAvolcite] = ACTIONS(4569), + [anon_sym_BSLASHnotecite] = ACTIONS(4569), + [anon_sym_BSLASHNotecite] = ACTIONS(4569), + [anon_sym_BSLASHpnotecite] = ACTIONS(4569), + [anon_sym_BSLASHPnotecite] = ACTIONS(4569), + [anon_sym_BSLASHfnotecite] = ACTIONS(4569), + [anon_sym_BSLASHlabel] = ACTIONS(4569), + [anon_sym_BSLASHref] = ACTIONS(4569), + [anon_sym_BSLASHeqref] = ACTIONS(4569), + [anon_sym_BSLASHvref] = ACTIONS(4569), + [anon_sym_BSLASHVref] = ACTIONS(4569), + [anon_sym_BSLASHautoref] = ACTIONS(4569), + [anon_sym_BSLASHpageref] = ACTIONS(4569), + [anon_sym_BSLASHcref] = ACTIONS(4569), + [anon_sym_BSLASHCref] = ACTIONS(4569), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), + [anon_sym_BSLASHnamecref] = ACTIONS(4569), + [anon_sym_BSLASHnameCref] = ACTIONS(4569), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4569), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4569), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4569), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4569), + [anon_sym_BSLASHlabelcref] = ACTIONS(4569), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4569), + [anon_sym_BSLASHcrefrange] = ACTIONS(4569), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCrefrange] = ACTIONS(4569), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4567), + [anon_sym_BSLASHnewlabel] = ACTIONS(4569), + [anon_sym_BSLASHnewcommand] = ACTIONS(4569), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4569), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4569), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4569), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4567), + [anon_sym_BSLASHdef] = ACTIONS(4569), + [anon_sym_BSLASHlet] = ACTIONS(4569), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4569), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4569), + [anon_sym_BSLASHgls] = ACTIONS(4569), + [anon_sym_BSLASHGls] = ACTIONS(4569), + [anon_sym_BSLASHGLS] = ACTIONS(4569), + [anon_sym_BSLASHglspl] = ACTIONS(4569), + [anon_sym_BSLASHGlspl] = ACTIONS(4569), + [anon_sym_BSLASHGLSpl] = ACTIONS(4569), + [anon_sym_BSLASHglsdisp] = ACTIONS(4569), + [anon_sym_BSLASHglslink] = ACTIONS(4569), + [anon_sym_BSLASHglstext] = ACTIONS(4569), + [anon_sym_BSLASHGlstext] = ACTIONS(4569), + [anon_sym_BSLASHGLStext] = ACTIONS(4569), + [anon_sym_BSLASHglsfirst] = ACTIONS(4569), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4569), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4569), + [anon_sym_BSLASHglsplural] = ACTIONS(4569), + [anon_sym_BSLASHGlsplural] = ACTIONS(4569), + [anon_sym_BSLASHGLSplural] = ACTIONS(4569), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHglsname] = ACTIONS(4569), + [anon_sym_BSLASHGlsname] = ACTIONS(4569), + [anon_sym_BSLASHGLSname] = ACTIONS(4569), + [anon_sym_BSLASHglssymbol] = ACTIONS(4569), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4569), + [anon_sym_BSLASHglsdesc] = ACTIONS(4569), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4569), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4569), + [anon_sym_BSLASHglsuseri] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4569), + [anon_sym_BSLASHglsuserii] = ACTIONS(4569), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4569), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4569), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4569), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4569), + [anon_sym_BSLASHglsuserv] = ACTIONS(4569), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4569), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4569), + [anon_sym_BSLASHglsuservi] = ACTIONS(4569), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4569), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4569), + [anon_sym_BSLASHnewacronym] = ACTIONS(4569), + [anon_sym_BSLASHacrshort] = ACTIONS(4569), + [anon_sym_BSLASHAcrshort] = ACTIONS(4569), + [anon_sym_BSLASHACRshort] = ACTIONS(4569), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4569), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4569), + [anon_sym_BSLASHacrlong] = ACTIONS(4569), + [anon_sym_BSLASHAcrlong] = ACTIONS(4569), + [anon_sym_BSLASHACRlong] = ACTIONS(4569), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4569), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4569), + [anon_sym_BSLASHacrfull] = ACTIONS(4569), + [anon_sym_BSLASHAcrfull] = ACTIONS(4569), + [anon_sym_BSLASHACRfull] = ACTIONS(4569), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4569), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4569), + [anon_sym_BSLASHacs] = ACTIONS(4569), + [anon_sym_BSLASHAcs] = ACTIONS(4569), + [anon_sym_BSLASHacsp] = ACTIONS(4569), + [anon_sym_BSLASHAcsp] = ACTIONS(4569), + [anon_sym_BSLASHacl] = ACTIONS(4569), + [anon_sym_BSLASHAcl] = ACTIONS(4569), + [anon_sym_BSLASHaclp] = ACTIONS(4569), + [anon_sym_BSLASHAclp] = ACTIONS(4569), + [anon_sym_BSLASHacf] = ACTIONS(4569), + [anon_sym_BSLASHAcf] = ACTIONS(4569), + [anon_sym_BSLASHacfp] = ACTIONS(4569), + [anon_sym_BSLASHAcfp] = ACTIONS(4569), + [anon_sym_BSLASHac] = ACTIONS(4569), + [anon_sym_BSLASHAc] = ACTIONS(4569), + [anon_sym_BSLASHacp] = ACTIONS(4569), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4569), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4569), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4569), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4569), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4569), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4569), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4569), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4569), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4569), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4569), + [anon_sym_BSLASHcolor] = ACTIONS(4569), + [anon_sym_BSLASHcolorbox] = ACTIONS(4569), + [anon_sym_BSLASHtextcolor] = ACTIONS(4569), + [anon_sym_BSLASHpagecolor] = ACTIONS(4569), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4569), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4569), + [anon_sym_BSLASHtext] = ACTIONS(4569), + [anon_sym_BSLASHintertext] = ACTIONS(4569), + [anon_sym_shortintertext] = ACTIONS(4569), + }, + [332] = { [sym__enum_itemdeclaration] = STATE(194), - [sym_enum_item] = STATE(316), - [aux_sym__section_repeat8] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(1884), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym_command_name] = ACTIONS(1965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1963), + [anon_sym_EQ] = ACTIONS(1963), + [anon_sym_BSLASHpart] = ACTIONS(1965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddpart] = ACTIONS(1965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHchapter] = ACTIONS(1965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddchap] = ACTIONS(1965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsection] = ACTIONS(1965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddsec] = ACTIONS(1965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHparagraph] = ACTIONS(1965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), [anon_sym_BSLASHitem] = ACTIONS(41), [anon_sym_BSLASHitem_STAR] = ACTIONS(43), - [anon_sym_LBRACE] = ACTIONS(1884), - [anon_sym_RBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1963), + [anon_sym_RBRACE] = ACTIONS(1963), + [sym_word] = ACTIONS(1965), + [sym_placeholder] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1965), + [anon_sym_SLASH] = ACTIONS(1965), + [anon_sym_CARET] = ACTIONS(1965), + [anon_sym__] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1965), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1963), + [anon_sym_BSLASHbegin] = ACTIONS(1965), + [anon_sym_BSLASHusepackage] = ACTIONS(1965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1965), + [anon_sym_BSLASHinclude] = ACTIONS(1965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1965), + [anon_sym_BSLASHinput] = ACTIONS(1965), + [anon_sym_BSLASHsubfile] = ACTIONS(1965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1965), + [anon_sym_BSLASHbibliography] = ACTIONS(1965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1965), + [anon_sym_BSLASHincludesvg] = ACTIONS(1965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1965), + [anon_sym_BSLASHimport] = ACTIONS(1965), + [anon_sym_BSLASHsubimport] = ACTIONS(1965), + [anon_sym_BSLASHinputfrom] = ACTIONS(1965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1965), + [anon_sym_BSLASHincludefrom] = ACTIONS(1965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1965), + [anon_sym_BSLASHcaption] = ACTIONS(1965), + [anon_sym_BSLASHcite] = ACTIONS(1965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCite] = ACTIONS(1965), + [anon_sym_BSLASHnocite] = ACTIONS(1965), + [anon_sym_BSLASHcitet] = ACTIONS(1965), + [anon_sym_BSLASHcitep] = ACTIONS(1965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteauthor] = ACTIONS(1965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitetitle] = ACTIONS(1965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteyear] = ACTIONS(1965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitedate] = ACTIONS(1965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteurl] = ACTIONS(1965), + [anon_sym_BSLASHfullcite] = ACTIONS(1965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1965), + [anon_sym_BSLASHcitealt] = ACTIONS(1965), + [anon_sym_BSLASHcitealp] = ACTIONS(1965), + [anon_sym_BSLASHcitetext] = ACTIONS(1965), + [anon_sym_BSLASHparencite] = ACTIONS(1965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHParencite] = ACTIONS(1965), + [anon_sym_BSLASHfootcite] = ACTIONS(1965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1965), + [anon_sym_BSLASHtextcite] = ACTIONS(1965), + [anon_sym_BSLASHTextcite] = ACTIONS(1965), + [anon_sym_BSLASHsmartcite] = ACTIONS(1965), + [anon_sym_BSLASHSmartcite] = ACTIONS(1965), + [anon_sym_BSLASHsupercite] = ACTIONS(1965), + [anon_sym_BSLASHautocite] = ACTIONS(1965), + [anon_sym_BSLASHAutocite] = ACTIONS(1965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHvolcite] = ACTIONS(1965), + [anon_sym_BSLASHVolcite] = ACTIONS(1965), + [anon_sym_BSLASHpvolcite] = ACTIONS(1965), + [anon_sym_BSLASHPvolcite] = ACTIONS(1965), + [anon_sym_BSLASHfvolcite] = ACTIONS(1965), + [anon_sym_BSLASHftvolcite] = ACTIONS(1965), + [anon_sym_BSLASHsvolcite] = ACTIONS(1965), + [anon_sym_BSLASHSvolcite] = ACTIONS(1965), + [anon_sym_BSLASHtvolcite] = ACTIONS(1965), + [anon_sym_BSLASHTvolcite] = ACTIONS(1965), + [anon_sym_BSLASHavolcite] = ACTIONS(1965), + [anon_sym_BSLASHAvolcite] = ACTIONS(1965), + [anon_sym_BSLASHnotecite] = ACTIONS(1965), + [anon_sym_BSLASHNotecite] = ACTIONS(1965), + [anon_sym_BSLASHpnotecite] = ACTIONS(1965), + [anon_sym_BSLASHPnotecite] = ACTIONS(1965), + [anon_sym_BSLASHfnotecite] = ACTIONS(1965), + [anon_sym_BSLASHlabel] = ACTIONS(1965), + [anon_sym_BSLASHref] = ACTIONS(1965), + [anon_sym_BSLASHeqref] = ACTIONS(1965), + [anon_sym_BSLASHvref] = ACTIONS(1965), + [anon_sym_BSLASHVref] = ACTIONS(1965), + [anon_sym_BSLASHautoref] = ACTIONS(1965), + [anon_sym_BSLASHpageref] = ACTIONS(1965), + [anon_sym_BSLASHcref] = ACTIONS(1965), + [anon_sym_BSLASHCref] = ACTIONS(1965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1963), + [anon_sym_BSLASHnamecref] = ACTIONS(1965), + [anon_sym_BSLASHnameCref] = ACTIONS(1965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1965), + [anon_sym_BSLASHlabelcref] = ACTIONS(1965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1965), + [anon_sym_BSLASHcrefrange] = ACTIONS(1965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCrefrange] = ACTIONS(1965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1963), + [anon_sym_BSLASHnewlabel] = ACTIONS(1965), + [anon_sym_BSLASHnewcommand] = ACTIONS(1965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1963), + [anon_sym_BSLASHdef] = ACTIONS(1965), + [anon_sym_BSLASHlet] = ACTIONS(1965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1965), + [anon_sym_BSLASHgls] = ACTIONS(1965), + [anon_sym_BSLASHGls] = ACTIONS(1965), + [anon_sym_BSLASHGLS] = ACTIONS(1965), + [anon_sym_BSLASHglspl] = ACTIONS(1965), + [anon_sym_BSLASHGlspl] = ACTIONS(1965), + [anon_sym_BSLASHGLSpl] = ACTIONS(1965), + [anon_sym_BSLASHglsdisp] = ACTIONS(1965), + [anon_sym_BSLASHglslink] = ACTIONS(1965), + [anon_sym_BSLASHglstext] = ACTIONS(1965), + [anon_sym_BSLASHGlstext] = ACTIONS(1965), + [anon_sym_BSLASHGLStext] = ACTIONS(1965), + [anon_sym_BSLASHglsfirst] = ACTIONS(1965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1965), + [anon_sym_BSLASHglsplural] = ACTIONS(1965), + [anon_sym_BSLASHGlsplural] = ACTIONS(1965), + [anon_sym_BSLASHGLSplural] = ACTIONS(1965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHglsname] = ACTIONS(1965), + [anon_sym_BSLASHGlsname] = ACTIONS(1965), + [anon_sym_BSLASHGLSname] = ACTIONS(1965), + [anon_sym_BSLASHglssymbol] = ACTIONS(1965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1965), + [anon_sym_BSLASHglsdesc] = ACTIONS(1965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1965), + [anon_sym_BSLASHglsuseri] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1965), + [anon_sym_BSLASHglsuserii] = ACTIONS(1965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1965), + [anon_sym_BSLASHglsuserv] = ACTIONS(1965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1965), + [anon_sym_BSLASHglsuservi] = ACTIONS(1965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1965), + [anon_sym_BSLASHnewacronym] = ACTIONS(1965), + [anon_sym_BSLASHacrshort] = ACTIONS(1965), + [anon_sym_BSLASHAcrshort] = ACTIONS(1965), + [anon_sym_BSLASHACRshort] = ACTIONS(1965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1965), + [anon_sym_BSLASHacrlong] = ACTIONS(1965), + [anon_sym_BSLASHAcrlong] = ACTIONS(1965), + [anon_sym_BSLASHACRlong] = ACTIONS(1965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1965), + [anon_sym_BSLASHacrfull] = ACTIONS(1965), + [anon_sym_BSLASHAcrfull] = ACTIONS(1965), + [anon_sym_BSLASHACRfull] = ACTIONS(1965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1965), + [anon_sym_BSLASHacs] = ACTIONS(1965), + [anon_sym_BSLASHAcs] = ACTIONS(1965), + [anon_sym_BSLASHacsp] = ACTIONS(1965), + [anon_sym_BSLASHAcsp] = ACTIONS(1965), + [anon_sym_BSLASHacl] = ACTIONS(1965), + [anon_sym_BSLASHAcl] = ACTIONS(1965), + [anon_sym_BSLASHaclp] = ACTIONS(1965), + [anon_sym_BSLASHAclp] = ACTIONS(1965), + [anon_sym_BSLASHacf] = ACTIONS(1965), + [anon_sym_BSLASHAcf] = ACTIONS(1965), + [anon_sym_BSLASHacfp] = ACTIONS(1965), + [anon_sym_BSLASHAcfp] = ACTIONS(1965), + [anon_sym_BSLASHac] = ACTIONS(1965), + [anon_sym_BSLASHAc] = ACTIONS(1965), + [anon_sym_BSLASHacp] = ACTIONS(1965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1965), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1965), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1965), + [anon_sym_BSLASHcolor] = ACTIONS(1965), + [anon_sym_BSLASHcolorbox] = ACTIONS(1965), + [anon_sym_BSLASHtextcolor] = ACTIONS(1965), + [anon_sym_BSLASHpagecolor] = ACTIONS(1965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1965), + [anon_sym_BSLASHtext] = ACTIONS(1965), + [anon_sym_BSLASHintertext] = ACTIONS(1965), + [anon_sym_shortintertext] = ACTIONS(1965), }, - [341] = { + [333] = { + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(1945), + [sym_command_name] = ACTIONS(1947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1945), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1947), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [sym_word] = ACTIONS(1947), + [sym_placeholder] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), + [anon_sym__] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), + [anon_sym_BSLASHbegin] = ACTIONS(1947), + [anon_sym_BSLASHusepackage] = ACTIONS(1947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), + [anon_sym_BSLASHinclude] = ACTIONS(1947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), + [anon_sym_BSLASHinput] = ACTIONS(1947), + [anon_sym_BSLASHsubfile] = ACTIONS(1947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), + [anon_sym_BSLASHbibliography] = ACTIONS(1947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), + [anon_sym_BSLASHincludesvg] = ACTIONS(1947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), + [anon_sym_BSLASHimport] = ACTIONS(1947), + [anon_sym_BSLASHsubimport] = ACTIONS(1947), + [anon_sym_BSLASHinputfrom] = ACTIONS(1947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), + [anon_sym_BSLASHincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHcaption] = ACTIONS(1947), + [anon_sym_BSLASHcite] = ACTIONS(1947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCite] = ACTIONS(1947), + [anon_sym_BSLASHnocite] = ACTIONS(1947), + [anon_sym_BSLASHcitet] = ACTIONS(1947), + [anon_sym_BSLASHcitep] = ACTIONS(1947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteauthor] = ACTIONS(1947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitetitle] = ACTIONS(1947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteyear] = ACTIONS(1947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitedate] = ACTIONS(1947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteurl] = ACTIONS(1947), + [anon_sym_BSLASHfullcite] = ACTIONS(1947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), + [anon_sym_BSLASHcitealt] = ACTIONS(1947), + [anon_sym_BSLASHcitealp] = ACTIONS(1947), + [anon_sym_BSLASHcitetext] = ACTIONS(1947), + [anon_sym_BSLASHparencite] = ACTIONS(1947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHParencite] = ACTIONS(1947), + [anon_sym_BSLASHfootcite] = ACTIONS(1947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), + [anon_sym_BSLASHtextcite] = ACTIONS(1947), + [anon_sym_BSLASHTextcite] = ACTIONS(1947), + [anon_sym_BSLASHsmartcite] = ACTIONS(1947), + [anon_sym_BSLASHSmartcite] = ACTIONS(1947), + [anon_sym_BSLASHsupercite] = ACTIONS(1947), + [anon_sym_BSLASHautocite] = ACTIONS(1947), + [anon_sym_BSLASHAutocite] = ACTIONS(1947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHvolcite] = ACTIONS(1947), + [anon_sym_BSLASHVolcite] = ACTIONS(1947), + [anon_sym_BSLASHpvolcite] = ACTIONS(1947), + [anon_sym_BSLASHPvolcite] = ACTIONS(1947), + [anon_sym_BSLASHfvolcite] = ACTIONS(1947), + [anon_sym_BSLASHftvolcite] = ACTIONS(1947), + [anon_sym_BSLASHsvolcite] = ACTIONS(1947), + [anon_sym_BSLASHSvolcite] = ACTIONS(1947), + [anon_sym_BSLASHtvolcite] = ACTIONS(1947), + [anon_sym_BSLASHTvolcite] = ACTIONS(1947), + [anon_sym_BSLASHavolcite] = ACTIONS(1947), + [anon_sym_BSLASHAvolcite] = ACTIONS(1947), + [anon_sym_BSLASHnotecite] = ACTIONS(1947), + [anon_sym_BSLASHNotecite] = ACTIONS(1947), + [anon_sym_BSLASHpnotecite] = ACTIONS(1947), + [anon_sym_BSLASHPnotecite] = ACTIONS(1947), + [anon_sym_BSLASHfnotecite] = ACTIONS(1947), + [anon_sym_BSLASHlabel] = ACTIONS(1947), + [anon_sym_BSLASHref] = ACTIONS(1947), + [anon_sym_BSLASHeqref] = ACTIONS(1947), + [anon_sym_BSLASHvref] = ACTIONS(1947), + [anon_sym_BSLASHVref] = ACTIONS(1947), + [anon_sym_BSLASHautoref] = ACTIONS(1947), + [anon_sym_BSLASHpageref] = ACTIONS(1947), + [anon_sym_BSLASHcref] = ACTIONS(1947), + [anon_sym_BSLASHCref] = ACTIONS(1947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnameCref] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHlabelcref] = ACTIONS(1947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCrefrange] = ACTIONS(1947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnewlabel] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), + [anon_sym_BSLASHdef] = ACTIONS(1947), + [anon_sym_BSLASHlet] = ACTIONS(1947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), + [anon_sym_BSLASHgls] = ACTIONS(1947), + [anon_sym_BSLASHGls] = ACTIONS(1947), + [anon_sym_BSLASHGLS] = ACTIONS(1947), + [anon_sym_BSLASHglspl] = ACTIONS(1947), + [anon_sym_BSLASHGlspl] = ACTIONS(1947), + [anon_sym_BSLASHGLSpl] = ACTIONS(1947), + [anon_sym_BSLASHglsdisp] = ACTIONS(1947), + [anon_sym_BSLASHglslink] = ACTIONS(1947), + [anon_sym_BSLASHglstext] = ACTIONS(1947), + [anon_sym_BSLASHGlstext] = ACTIONS(1947), + [anon_sym_BSLASHGLStext] = ACTIONS(1947), + [anon_sym_BSLASHglsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), + [anon_sym_BSLASHglsplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSplural] = ACTIONS(1947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHglsname] = ACTIONS(1947), + [anon_sym_BSLASHGlsname] = ACTIONS(1947), + [anon_sym_BSLASHGLSname] = ACTIONS(1947), + [anon_sym_BSLASHglssymbol] = ACTIONS(1947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), + [anon_sym_BSLASHglsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), + [anon_sym_BSLASHglsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), + [anon_sym_BSLASHglsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), + [anon_sym_BSLASHglsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), + [anon_sym_BSLASHglsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), + [anon_sym_BSLASHnewacronym] = ACTIONS(1947), + [anon_sym_BSLASHacrshort] = ACTIONS(1947), + [anon_sym_BSLASHAcrshort] = ACTIONS(1947), + [anon_sym_BSLASHACRshort] = ACTIONS(1947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), + [anon_sym_BSLASHacrlong] = ACTIONS(1947), + [anon_sym_BSLASHAcrlong] = ACTIONS(1947), + [anon_sym_BSLASHACRlong] = ACTIONS(1947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), + [anon_sym_BSLASHacrfull] = ACTIONS(1947), + [anon_sym_BSLASHAcrfull] = ACTIONS(1947), + [anon_sym_BSLASHACRfull] = ACTIONS(1947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), + [anon_sym_BSLASHacs] = ACTIONS(1947), + [anon_sym_BSLASHAcs] = ACTIONS(1947), + [anon_sym_BSLASHacsp] = ACTIONS(1947), + [anon_sym_BSLASHAcsp] = ACTIONS(1947), + [anon_sym_BSLASHacl] = ACTIONS(1947), + [anon_sym_BSLASHAcl] = ACTIONS(1947), + [anon_sym_BSLASHaclp] = ACTIONS(1947), + [anon_sym_BSLASHAclp] = ACTIONS(1947), + [anon_sym_BSLASHacf] = ACTIONS(1947), + [anon_sym_BSLASHAcf] = ACTIONS(1947), + [anon_sym_BSLASHacfp] = ACTIONS(1947), + [anon_sym_BSLASHAcfp] = ACTIONS(1947), + [anon_sym_BSLASHac] = ACTIONS(1947), + [anon_sym_BSLASHAc] = ACTIONS(1947), + [anon_sym_BSLASHacp] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), + [anon_sym_BSLASHcolor] = ACTIONS(1947), + [anon_sym_BSLASHcolorbox] = ACTIONS(1947), + [anon_sym_BSLASHtextcolor] = ACTIONS(1947), + [anon_sym_BSLASHpagecolor] = ACTIONS(1947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), + [anon_sym_BSLASHtext] = ACTIONS(1947), + [anon_sym_BSLASHintertext] = ACTIONS(1947), + [anon_sym_shortintertext] = ACTIONS(1947), + }, + [334] = { + [sym__subparagraph_declaration] = STATE(182), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(1945), + [sym_command_name] = ACTIONS(1947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1945), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(1947), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_RBRACE] = ACTIONS(1945), + [sym_word] = ACTIONS(1947), + [sym_placeholder] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), + [anon_sym__] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), + [anon_sym_BSLASHbegin] = ACTIONS(1947), + [anon_sym_BSLASHusepackage] = ACTIONS(1947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), + [anon_sym_BSLASHinclude] = ACTIONS(1947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), + [anon_sym_BSLASHinput] = ACTIONS(1947), + [anon_sym_BSLASHsubfile] = ACTIONS(1947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), + [anon_sym_BSLASHbibliography] = ACTIONS(1947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), + [anon_sym_BSLASHincludesvg] = ACTIONS(1947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), + [anon_sym_BSLASHimport] = ACTIONS(1947), + [anon_sym_BSLASHsubimport] = ACTIONS(1947), + [anon_sym_BSLASHinputfrom] = ACTIONS(1947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), + [anon_sym_BSLASHincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHcaption] = ACTIONS(1947), + [anon_sym_BSLASHcite] = ACTIONS(1947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCite] = ACTIONS(1947), + [anon_sym_BSLASHnocite] = ACTIONS(1947), + [anon_sym_BSLASHcitet] = ACTIONS(1947), + [anon_sym_BSLASHcitep] = ACTIONS(1947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteauthor] = ACTIONS(1947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitetitle] = ACTIONS(1947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteyear] = ACTIONS(1947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitedate] = ACTIONS(1947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteurl] = ACTIONS(1947), + [anon_sym_BSLASHfullcite] = ACTIONS(1947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), + [anon_sym_BSLASHcitealt] = ACTIONS(1947), + [anon_sym_BSLASHcitealp] = ACTIONS(1947), + [anon_sym_BSLASHcitetext] = ACTIONS(1947), + [anon_sym_BSLASHparencite] = ACTIONS(1947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHParencite] = ACTIONS(1947), + [anon_sym_BSLASHfootcite] = ACTIONS(1947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), + [anon_sym_BSLASHtextcite] = ACTIONS(1947), + [anon_sym_BSLASHTextcite] = ACTIONS(1947), + [anon_sym_BSLASHsmartcite] = ACTIONS(1947), + [anon_sym_BSLASHSmartcite] = ACTIONS(1947), + [anon_sym_BSLASHsupercite] = ACTIONS(1947), + [anon_sym_BSLASHautocite] = ACTIONS(1947), + [anon_sym_BSLASHAutocite] = ACTIONS(1947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHvolcite] = ACTIONS(1947), + [anon_sym_BSLASHVolcite] = ACTIONS(1947), + [anon_sym_BSLASHpvolcite] = ACTIONS(1947), + [anon_sym_BSLASHPvolcite] = ACTIONS(1947), + [anon_sym_BSLASHfvolcite] = ACTIONS(1947), + [anon_sym_BSLASHftvolcite] = ACTIONS(1947), + [anon_sym_BSLASHsvolcite] = ACTIONS(1947), + [anon_sym_BSLASHSvolcite] = ACTIONS(1947), + [anon_sym_BSLASHtvolcite] = ACTIONS(1947), + [anon_sym_BSLASHTvolcite] = ACTIONS(1947), + [anon_sym_BSLASHavolcite] = ACTIONS(1947), + [anon_sym_BSLASHAvolcite] = ACTIONS(1947), + [anon_sym_BSLASHnotecite] = ACTIONS(1947), + [anon_sym_BSLASHNotecite] = ACTIONS(1947), + [anon_sym_BSLASHpnotecite] = ACTIONS(1947), + [anon_sym_BSLASHPnotecite] = ACTIONS(1947), + [anon_sym_BSLASHfnotecite] = ACTIONS(1947), + [anon_sym_BSLASHlabel] = ACTIONS(1947), + [anon_sym_BSLASHref] = ACTIONS(1947), + [anon_sym_BSLASHeqref] = ACTIONS(1947), + [anon_sym_BSLASHvref] = ACTIONS(1947), + [anon_sym_BSLASHVref] = ACTIONS(1947), + [anon_sym_BSLASHautoref] = ACTIONS(1947), + [anon_sym_BSLASHpageref] = ACTIONS(1947), + [anon_sym_BSLASHcref] = ACTIONS(1947), + [anon_sym_BSLASHCref] = ACTIONS(1947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnameCref] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHlabelcref] = ACTIONS(1947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCrefrange] = ACTIONS(1947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnewlabel] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), + [anon_sym_BSLASHdef] = ACTIONS(1947), + [anon_sym_BSLASHlet] = ACTIONS(1947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), + [anon_sym_BSLASHgls] = ACTIONS(1947), + [anon_sym_BSLASHGls] = ACTIONS(1947), + [anon_sym_BSLASHGLS] = ACTIONS(1947), + [anon_sym_BSLASHglspl] = ACTIONS(1947), + [anon_sym_BSLASHGlspl] = ACTIONS(1947), + [anon_sym_BSLASHGLSpl] = ACTIONS(1947), + [anon_sym_BSLASHglsdisp] = ACTIONS(1947), + [anon_sym_BSLASHglslink] = ACTIONS(1947), + [anon_sym_BSLASHglstext] = ACTIONS(1947), + [anon_sym_BSLASHGlstext] = ACTIONS(1947), + [anon_sym_BSLASHGLStext] = ACTIONS(1947), + [anon_sym_BSLASHglsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), + [anon_sym_BSLASHglsplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSplural] = ACTIONS(1947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHglsname] = ACTIONS(1947), + [anon_sym_BSLASHGlsname] = ACTIONS(1947), + [anon_sym_BSLASHGLSname] = ACTIONS(1947), + [anon_sym_BSLASHglssymbol] = ACTIONS(1947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), + [anon_sym_BSLASHglsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), + [anon_sym_BSLASHglsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), + [anon_sym_BSLASHglsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), + [anon_sym_BSLASHglsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), + [anon_sym_BSLASHglsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), + [anon_sym_BSLASHnewacronym] = ACTIONS(1947), + [anon_sym_BSLASHacrshort] = ACTIONS(1947), + [anon_sym_BSLASHAcrshort] = ACTIONS(1947), + [anon_sym_BSLASHACRshort] = ACTIONS(1947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), + [anon_sym_BSLASHacrlong] = ACTIONS(1947), + [anon_sym_BSLASHAcrlong] = ACTIONS(1947), + [anon_sym_BSLASHACRlong] = ACTIONS(1947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), + [anon_sym_BSLASHacrfull] = ACTIONS(1947), + [anon_sym_BSLASHAcrfull] = ACTIONS(1947), + [anon_sym_BSLASHACRfull] = ACTIONS(1947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), + [anon_sym_BSLASHacs] = ACTIONS(1947), + [anon_sym_BSLASHAcs] = ACTIONS(1947), + [anon_sym_BSLASHacsp] = ACTIONS(1947), + [anon_sym_BSLASHAcsp] = ACTIONS(1947), + [anon_sym_BSLASHacl] = ACTIONS(1947), + [anon_sym_BSLASHAcl] = ACTIONS(1947), + [anon_sym_BSLASHaclp] = ACTIONS(1947), + [anon_sym_BSLASHAclp] = ACTIONS(1947), + [anon_sym_BSLASHacf] = ACTIONS(1947), + [anon_sym_BSLASHAcf] = ACTIONS(1947), + [anon_sym_BSLASHacfp] = ACTIONS(1947), + [anon_sym_BSLASHAcfp] = ACTIONS(1947), + [anon_sym_BSLASHac] = ACTIONS(1947), + [anon_sym_BSLASHAc] = ACTIONS(1947), + [anon_sym_BSLASHacp] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), + [anon_sym_BSLASHcolor] = ACTIONS(1947), + [anon_sym_BSLASHcolorbox] = ACTIONS(1947), + [anon_sym_BSLASHtextcolor] = ACTIONS(1947), + [anon_sym_BSLASHpagecolor] = ACTIONS(1947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), + [anon_sym_BSLASHtext] = ACTIONS(1947), + [anon_sym_BSLASHintertext] = ACTIONS(1947), + [anon_sym_shortintertext] = ACTIONS(1947), + }, + [335] = { + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(1923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), + }, + [336] = { + [sym__subparagraph_declaration] = STATE(182), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(1923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(1923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), + }, + [337] = { [sym__paragraph_declaration] = STATE(172), - [sym_paragraph] = STATE(281), - [aux_sym__section_repeat6] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(1896), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), + [sym_paragraph] = STATE(325), + [aux_sym__section_repeat6] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), [anon_sym_BSLASHparagraph] = ACTIONS(33), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1898), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHitem] = ACTIONS(1898), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHitem] = ACTIONS(1923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_RBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), }, - [342] = { + [338] = { + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(1909), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [339] = { [sym__subparagraph_declaration] = STATE(182), - [sym_subparagraph] = STATE(322), - [aux_sym__section_repeat7] = STATE(322), - [ts_builtin_sym_end] = ACTIONS(1896), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(1898), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1896), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(1909), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), [anon_sym_BSLASHsubparagraph] = ACTIONS(37), [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), - [anon_sym_BSLASHitem] = ACTIONS(1898), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [anon_sym_RBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [340] = { + [sym__paragraph_declaration] = STATE(172), + [sym_paragraph] = STATE(325), + [aux_sym__section_repeat6] = STATE(325), + [ts_builtin_sym_end] = ACTIONS(1909), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(33), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(35), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [341] = { + [sym__subsubsection_declaration] = STATE(163), + [sym_subsubsection] = STATE(326), + [aux_sym__section_repeat5] = STATE(326), + [ts_builtin_sym_end] = ACTIONS(1909), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(29), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(31), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_RBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [342] = { + [sym__enum_itemdeclaration] = STATE(194), + [sym_enum_item] = STATE(323), + [aux_sym__section_repeat8] = STATE(323), + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(41), + [anon_sym_BSLASHitem_STAR] = ACTIONS(43), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), }, [343] = { - [sym__section_declaration] = STATE(142), - [sym_section] = STATE(343), - [aux_sym__section_repeat3] = STATE(343), - [ts_builtin_sym_end] = ACTIONS(4511), - [sym_command_name] = ACTIONS(4513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4513), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_RPAREN] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_RBRACK] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_EQ] = ACTIONS(4511), - [anon_sym_BSLASHpart] = ACTIONS(4513), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4511), - [anon_sym_BSLASHaddpart] = ACTIONS(4513), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4511), - [anon_sym_BSLASHchapter] = ACTIONS(4513), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4511), - [anon_sym_BSLASHaddchap] = ACTIONS(4513), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsection] = ACTIONS(4515), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4518), - [anon_sym_BSLASHaddsec] = ACTIONS(4515), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4518), - [anon_sym_BSLASHsubsection] = ACTIONS(4513), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4513), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4511), - [anon_sym_BSLASHparagraph] = ACTIONS(4513), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4513), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4511), - [anon_sym_BSLASHitem] = ACTIONS(4513), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4511), - [anon_sym_LBRACE] = ACTIONS(4511), - [anon_sym_RBRACE] = ACTIONS(4511), - [sym_word] = ACTIONS(4513), - [sym_placeholder] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_STAR] = ACTIONS(4513), - [anon_sym_SLASH] = ACTIONS(4513), - [anon_sym_CARET] = ACTIONS(4513), - [anon_sym__] = ACTIONS(4513), - [anon_sym_LT] = ACTIONS(4513), - [anon_sym_GT] = ACTIONS(4513), - [anon_sym_BANG] = ACTIONS(4513), - [anon_sym_PIPE] = ACTIONS(4513), - [anon_sym_COLON] = ACTIONS(4513), - [anon_sym_SQUOTE] = ACTIONS(4513), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4511), - [anon_sym_DOLLAR] = ACTIONS(4513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4511), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4511), - [anon_sym_BSLASHbegin] = ACTIONS(4513), - [anon_sym_BSLASHusepackage] = ACTIONS(4513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4513), - [anon_sym_BSLASHinclude] = ACTIONS(4513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4513), - [anon_sym_BSLASHinput] = ACTIONS(4513), - [anon_sym_BSLASHsubfile] = ACTIONS(4513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4513), - [anon_sym_BSLASHbibliography] = ACTIONS(4513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4513), - [anon_sym_BSLASHincludesvg] = ACTIONS(4513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4513), - [anon_sym_BSLASHimport] = ACTIONS(4513), - [anon_sym_BSLASHsubimport] = ACTIONS(4513), - [anon_sym_BSLASHinputfrom] = ACTIONS(4513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4513), - [anon_sym_BSLASHincludefrom] = ACTIONS(4513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4513), - [anon_sym_BSLASHcaption] = ACTIONS(4513), - [anon_sym_BSLASHcite] = ACTIONS(4513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCite] = ACTIONS(4513), - [anon_sym_BSLASHnocite] = ACTIONS(4513), - [anon_sym_BSLASHcitet] = ACTIONS(4513), - [anon_sym_BSLASHcitep] = ACTIONS(4513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteauthor] = ACTIONS(4513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitetitle] = ACTIONS(4513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteyear] = ACTIONS(4513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitedate] = ACTIONS(4513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteurl] = ACTIONS(4513), - [anon_sym_BSLASHfullcite] = ACTIONS(4513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4513), - [anon_sym_BSLASHcitealt] = ACTIONS(4513), - [anon_sym_BSLASHcitealp] = ACTIONS(4513), - [anon_sym_BSLASHcitetext] = ACTIONS(4513), - [anon_sym_BSLASHparencite] = ACTIONS(4513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHParencite] = ACTIONS(4513), - [anon_sym_BSLASHfootcite] = ACTIONS(4513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4513), - [anon_sym_BSLASHtextcite] = ACTIONS(4513), - [anon_sym_BSLASHTextcite] = ACTIONS(4513), - [anon_sym_BSLASHsmartcite] = ACTIONS(4513), - [anon_sym_BSLASHSmartcite] = ACTIONS(4513), - [anon_sym_BSLASHsupercite] = ACTIONS(4513), - [anon_sym_BSLASHautocite] = ACTIONS(4513), - [anon_sym_BSLASHAutocite] = ACTIONS(4513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHvolcite] = ACTIONS(4513), - [anon_sym_BSLASHVolcite] = ACTIONS(4513), - [anon_sym_BSLASHpvolcite] = ACTIONS(4513), - [anon_sym_BSLASHPvolcite] = ACTIONS(4513), - [anon_sym_BSLASHfvolcite] = ACTIONS(4513), - [anon_sym_BSLASHftvolcite] = ACTIONS(4513), - [anon_sym_BSLASHsvolcite] = ACTIONS(4513), - [anon_sym_BSLASHSvolcite] = ACTIONS(4513), - [anon_sym_BSLASHtvolcite] = ACTIONS(4513), - [anon_sym_BSLASHTvolcite] = ACTIONS(4513), - [anon_sym_BSLASHavolcite] = ACTIONS(4513), - [anon_sym_BSLASHAvolcite] = ACTIONS(4513), - [anon_sym_BSLASHnotecite] = ACTIONS(4513), - [anon_sym_BSLASHNotecite] = ACTIONS(4513), - [anon_sym_BSLASHpnotecite] = ACTIONS(4513), - [anon_sym_BSLASHPnotecite] = ACTIONS(4513), - [anon_sym_BSLASHfnotecite] = ACTIONS(4513), - [anon_sym_BSLASHlabel] = ACTIONS(4513), - [anon_sym_BSLASHref] = ACTIONS(4513), - [anon_sym_BSLASHeqref] = ACTIONS(4513), - [anon_sym_BSLASHvref] = ACTIONS(4513), - [anon_sym_BSLASHVref] = ACTIONS(4513), - [anon_sym_BSLASHautoref] = ACTIONS(4513), - [anon_sym_BSLASHpageref] = ACTIONS(4513), - [anon_sym_BSLASHcref] = ACTIONS(4513), - [anon_sym_BSLASHCref] = ACTIONS(4513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4511), - [anon_sym_BSLASHnamecref] = ACTIONS(4513), - [anon_sym_BSLASHnameCref] = ACTIONS(4513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4513), - [anon_sym_BSLASHlabelcref] = ACTIONS(4513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4513), - [anon_sym_BSLASHcrefrange] = ACTIONS(4513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCrefrange] = ACTIONS(4513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4511), - [anon_sym_BSLASHnewlabel] = ACTIONS(4513), - [anon_sym_BSLASHnewcommand] = ACTIONS(4513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4511), - [anon_sym_BSLASHdef] = ACTIONS(4513), - [anon_sym_BSLASHlet] = ACTIONS(4513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4513), - [anon_sym_BSLASHgls] = ACTIONS(4513), - [anon_sym_BSLASHGls] = ACTIONS(4513), - [anon_sym_BSLASHGLS] = ACTIONS(4513), - [anon_sym_BSLASHglspl] = ACTIONS(4513), - [anon_sym_BSLASHGlspl] = ACTIONS(4513), - [anon_sym_BSLASHGLSpl] = ACTIONS(4513), - [anon_sym_BSLASHglsdisp] = ACTIONS(4513), - [anon_sym_BSLASHglslink] = ACTIONS(4513), - [anon_sym_BSLASHglstext] = ACTIONS(4513), - [anon_sym_BSLASHGlstext] = ACTIONS(4513), - [anon_sym_BSLASHGLStext] = ACTIONS(4513), - [anon_sym_BSLASHglsfirst] = ACTIONS(4513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4513), - [anon_sym_BSLASHglsplural] = ACTIONS(4513), - [anon_sym_BSLASHGlsplural] = ACTIONS(4513), - [anon_sym_BSLASHGLSplural] = ACTIONS(4513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHglsname] = ACTIONS(4513), - [anon_sym_BSLASHGlsname] = ACTIONS(4513), - [anon_sym_BSLASHGLSname] = ACTIONS(4513), - [anon_sym_BSLASHglssymbol] = ACTIONS(4513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4513), - [anon_sym_BSLASHglsdesc] = ACTIONS(4513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4513), - [anon_sym_BSLASHglsuseri] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4513), - [anon_sym_BSLASHglsuserii] = ACTIONS(4513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4513), - [anon_sym_BSLASHglsuserv] = ACTIONS(4513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4513), - [anon_sym_BSLASHglsuservi] = ACTIONS(4513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4513), - [anon_sym_BSLASHnewacronym] = ACTIONS(4513), - [anon_sym_BSLASHacrshort] = ACTIONS(4513), - [anon_sym_BSLASHAcrshort] = ACTIONS(4513), - [anon_sym_BSLASHACRshort] = ACTIONS(4513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4513), - [anon_sym_BSLASHacrlong] = ACTIONS(4513), - [anon_sym_BSLASHAcrlong] = ACTIONS(4513), - [anon_sym_BSLASHACRlong] = ACTIONS(4513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4513), - [anon_sym_BSLASHacrfull] = ACTIONS(4513), - [anon_sym_BSLASHAcrfull] = ACTIONS(4513), - [anon_sym_BSLASHACRfull] = ACTIONS(4513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4513), - [anon_sym_BSLASHacs] = ACTIONS(4513), - [anon_sym_BSLASHAcs] = ACTIONS(4513), - [anon_sym_BSLASHacsp] = ACTIONS(4513), - [anon_sym_BSLASHAcsp] = ACTIONS(4513), - [anon_sym_BSLASHacl] = ACTIONS(4513), - [anon_sym_BSLASHAcl] = ACTIONS(4513), - [anon_sym_BSLASHaclp] = ACTIONS(4513), - [anon_sym_BSLASHAclp] = ACTIONS(4513), - [anon_sym_BSLASHacf] = ACTIONS(4513), - [anon_sym_BSLASHAcf] = ACTIONS(4513), - [anon_sym_BSLASHacfp] = ACTIONS(4513), - [anon_sym_BSLASHAcfp] = ACTIONS(4513), - [anon_sym_BSLASHac] = ACTIONS(4513), - [anon_sym_BSLASHAc] = ACTIONS(4513), - [anon_sym_BSLASHacp] = ACTIONS(4513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4513), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4513), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4513), - [anon_sym_BSLASHcolor] = ACTIONS(4513), - [anon_sym_BSLASHcolorbox] = ACTIONS(4513), - [anon_sym_BSLASHtextcolor] = ACTIONS(4513), - [anon_sym_BSLASHpagecolor] = ACTIONS(4513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4513), + [sym__subparagraph_declaration] = STATE(182), + [sym_subparagraph] = STATE(324), + [aux_sym__section_repeat7] = STATE(324), + [ts_builtin_sym_end] = ACTIONS(1891), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(37), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(39), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [anon_sym_RBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), }, [344] = { - [sym_curly_group] = STATE(1113), - [sym_mixed_group] = STATE(1113), - [aux_sym_generic_command_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(4469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4469), - [anon_sym_LPAREN] = ACTIONS(4521), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4521), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_EQ] = ACTIONS(4467), - [anon_sym_BSLASHpart] = ACTIONS(4469), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddpart] = ACTIONS(4469), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4467), - [anon_sym_BSLASHchapter] = ACTIONS(4469), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddchap] = ACTIONS(4469), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsection] = ACTIONS(4469), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddsec] = ACTIONS(4469), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubsection] = ACTIONS(4469), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHparagraph] = ACTIONS(4469), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4467), - [anon_sym_BSLASHitem] = ACTIONS(4469), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(4524), - [sym_word] = ACTIONS(4469), - [sym_placeholder] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_CARET] = ACTIONS(4469), - [anon_sym__] = ACTIONS(4469), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_PIPE] = ACTIONS(4469), - [anon_sym_COLON] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4467), - [anon_sym_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4467), - [anon_sym_BSLASHbegin] = ACTIONS(4469), - [anon_sym_BSLASHend] = ACTIONS(4469), - [anon_sym_BSLASHusepackage] = ACTIONS(4469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4469), - [anon_sym_BSLASHinclude] = ACTIONS(4469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4469), - [anon_sym_BSLASHinput] = ACTIONS(4469), - [anon_sym_BSLASHsubfile] = ACTIONS(4469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4469), - [anon_sym_BSLASHbibliography] = ACTIONS(4469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4469), - [anon_sym_BSLASHincludesvg] = ACTIONS(4469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4469), - [anon_sym_BSLASHimport] = ACTIONS(4469), - [anon_sym_BSLASHsubimport] = ACTIONS(4469), - [anon_sym_BSLASHinputfrom] = ACTIONS(4469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4469), - [anon_sym_BSLASHincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHcaption] = ACTIONS(4469), - [anon_sym_BSLASHcite] = ACTIONS(4469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCite] = ACTIONS(4469), - [anon_sym_BSLASHnocite] = ACTIONS(4469), - [anon_sym_BSLASHcitet] = ACTIONS(4469), - [anon_sym_BSLASHcitep] = ACTIONS(4469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteauthor] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitetitle] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteyear] = ACTIONS(4469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitedate] = ACTIONS(4469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteurl] = ACTIONS(4469), - [anon_sym_BSLASHfullcite] = ACTIONS(4469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4469), - [anon_sym_BSLASHcitealt] = ACTIONS(4469), - [anon_sym_BSLASHcitealp] = ACTIONS(4469), - [anon_sym_BSLASHcitetext] = ACTIONS(4469), - [anon_sym_BSLASHparencite] = ACTIONS(4469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHParencite] = ACTIONS(4469), - [anon_sym_BSLASHfootcite] = ACTIONS(4469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4469), - [anon_sym_BSLASHtextcite] = ACTIONS(4469), - [anon_sym_BSLASHTextcite] = ACTIONS(4469), - [anon_sym_BSLASHsmartcite] = ACTIONS(4469), - [anon_sym_BSLASHSmartcite] = ACTIONS(4469), - [anon_sym_BSLASHsupercite] = ACTIONS(4469), - [anon_sym_BSLASHautocite] = ACTIONS(4469), - [anon_sym_BSLASHAutocite] = ACTIONS(4469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHvolcite] = ACTIONS(4469), - [anon_sym_BSLASHVolcite] = ACTIONS(4469), - [anon_sym_BSLASHpvolcite] = ACTIONS(4469), - [anon_sym_BSLASHPvolcite] = ACTIONS(4469), - [anon_sym_BSLASHfvolcite] = ACTIONS(4469), - [anon_sym_BSLASHftvolcite] = ACTIONS(4469), - [anon_sym_BSLASHsvolcite] = ACTIONS(4469), - [anon_sym_BSLASHSvolcite] = ACTIONS(4469), - [anon_sym_BSLASHtvolcite] = ACTIONS(4469), - [anon_sym_BSLASHTvolcite] = ACTIONS(4469), - [anon_sym_BSLASHavolcite] = ACTIONS(4469), - [anon_sym_BSLASHAvolcite] = ACTIONS(4469), - [anon_sym_BSLASHnotecite] = ACTIONS(4469), - [anon_sym_BSLASHNotecite] = ACTIONS(4469), - [anon_sym_BSLASHpnotecite] = ACTIONS(4469), - [anon_sym_BSLASHPnotecite] = ACTIONS(4469), - [anon_sym_BSLASHfnotecite] = ACTIONS(4469), - [anon_sym_BSLASHlabel] = ACTIONS(4469), - [anon_sym_BSLASHref] = ACTIONS(4469), - [anon_sym_BSLASHeqref] = ACTIONS(4469), - [anon_sym_BSLASHvref] = ACTIONS(4469), - [anon_sym_BSLASHVref] = ACTIONS(4469), - [anon_sym_BSLASHautoref] = ACTIONS(4469), - [anon_sym_BSLASHpageref] = ACTIONS(4469), - [anon_sym_BSLASHcref] = ACTIONS(4469), - [anon_sym_BSLASHCref] = ACTIONS(4469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnameCref] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHlabelcref] = ACTIONS(4469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCrefrange] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnewlabel] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4467), - [anon_sym_BSLASHdef] = ACTIONS(4469), - [anon_sym_BSLASHlet] = ACTIONS(4469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4469), - [anon_sym_BSLASHgls] = ACTIONS(4469), - [anon_sym_BSLASHGls] = ACTIONS(4469), - [anon_sym_BSLASHGLS] = ACTIONS(4469), - [anon_sym_BSLASHglspl] = ACTIONS(4469), - [anon_sym_BSLASHGlspl] = ACTIONS(4469), - [anon_sym_BSLASHGLSpl] = ACTIONS(4469), - [anon_sym_BSLASHglsdisp] = ACTIONS(4469), - [anon_sym_BSLASHglslink] = ACTIONS(4469), - [anon_sym_BSLASHglstext] = ACTIONS(4469), - [anon_sym_BSLASHGlstext] = ACTIONS(4469), - [anon_sym_BSLASHGLStext] = ACTIONS(4469), - [anon_sym_BSLASHglsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4469), - [anon_sym_BSLASHglsplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSplural] = ACTIONS(4469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHglsname] = ACTIONS(4469), - [anon_sym_BSLASHGlsname] = ACTIONS(4469), - [anon_sym_BSLASHGLSname] = ACTIONS(4469), - [anon_sym_BSLASHglssymbol] = ACTIONS(4469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4469), - [anon_sym_BSLASHglsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4469), - [anon_sym_BSLASHglsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4469), - [anon_sym_BSLASHglsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4469), - [anon_sym_BSLASHglsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4469), - [anon_sym_BSLASHglsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4469), - [anon_sym_BSLASHnewacronym] = ACTIONS(4469), - [anon_sym_BSLASHacrshort] = ACTIONS(4469), - [anon_sym_BSLASHAcrshort] = ACTIONS(4469), - [anon_sym_BSLASHACRshort] = ACTIONS(4469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4469), - [anon_sym_BSLASHacrlong] = ACTIONS(4469), - [anon_sym_BSLASHAcrlong] = ACTIONS(4469), - [anon_sym_BSLASHACRlong] = ACTIONS(4469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4469), - [anon_sym_BSLASHacrfull] = ACTIONS(4469), - [anon_sym_BSLASHAcrfull] = ACTIONS(4469), - [anon_sym_BSLASHACRfull] = ACTIONS(4469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4469), - [anon_sym_BSLASHacs] = ACTIONS(4469), - [anon_sym_BSLASHAcs] = ACTIONS(4469), - [anon_sym_BSLASHacsp] = ACTIONS(4469), - [anon_sym_BSLASHAcsp] = ACTIONS(4469), - [anon_sym_BSLASHacl] = ACTIONS(4469), - [anon_sym_BSLASHAcl] = ACTIONS(4469), - [anon_sym_BSLASHaclp] = ACTIONS(4469), - [anon_sym_BSLASHAclp] = ACTIONS(4469), - [anon_sym_BSLASHacf] = ACTIONS(4469), - [anon_sym_BSLASHAcf] = ACTIONS(4469), - [anon_sym_BSLASHacfp] = ACTIONS(4469), - [anon_sym_BSLASHAcfp] = ACTIONS(4469), - [anon_sym_BSLASHac] = ACTIONS(4469), - [anon_sym_BSLASHAc] = ACTIONS(4469), - [anon_sym_BSLASHacp] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4469), - [anon_sym_BSLASHcolor] = ACTIONS(4469), - [anon_sym_BSLASHcolorbox] = ACTIONS(4469), - [anon_sym_BSLASHtextcolor] = ACTIONS(4469), - [anon_sym_BSLASHpagecolor] = ACTIONS(4469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4469), + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(633), + [aux_sym__section_repeat5] = STATE(633), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, [345] = { - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(470), - [aux_sym__section_repeat4] = STATE(470), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(448), + [aux_sym__section_repeat6] = STATE(448), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, [346] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(4395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_BSLASHpart] = ACTIONS(4395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddpart] = ACTIONS(4395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHchapter] = ACTIONS(4395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddchap] = ACTIONS(4395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsection] = ACTIONS(4395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddsec] = ACTIONS(4395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHparagraph] = ACTIONS(4395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4395), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(4393), - [sym_word] = ACTIONS(4395), - [sym_placeholder] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym__] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_PIPE] = ACTIONS(4395), - [anon_sym_COLON] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4393), - [anon_sym_BSLASHbegin] = ACTIONS(4395), - [anon_sym_BSLASHend] = ACTIONS(4395), - [anon_sym_BSLASHusepackage] = ACTIONS(4395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4395), - [anon_sym_BSLASHinclude] = ACTIONS(4395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4395), - [anon_sym_BSLASHinput] = ACTIONS(4395), - [anon_sym_BSLASHsubfile] = ACTIONS(4395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4395), - [anon_sym_BSLASHbibliography] = ACTIONS(4395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4395), - [anon_sym_BSLASHincludesvg] = ACTIONS(4395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4395), - [anon_sym_BSLASHsubimport] = ACTIONS(4395), - [anon_sym_BSLASHinputfrom] = ACTIONS(4395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4395), - [anon_sym_BSLASHincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHcaption] = ACTIONS(4395), - [anon_sym_BSLASHcite] = ACTIONS(4395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCite] = ACTIONS(4395), - [anon_sym_BSLASHnocite] = ACTIONS(4395), - [anon_sym_BSLASHcitet] = ACTIONS(4395), - [anon_sym_BSLASHcitep] = ACTIONS(4395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteauthor] = ACTIONS(4395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitetitle] = ACTIONS(4395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteyear] = ACTIONS(4395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitedate] = ACTIONS(4395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteurl] = ACTIONS(4395), - [anon_sym_BSLASHfullcite] = ACTIONS(4395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4395), - [anon_sym_BSLASHcitealt] = ACTIONS(4395), - [anon_sym_BSLASHcitealp] = ACTIONS(4395), - [anon_sym_BSLASHcitetext] = ACTIONS(4395), - [anon_sym_BSLASHparencite] = ACTIONS(4395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHParencite] = ACTIONS(4395), - [anon_sym_BSLASHfootcite] = ACTIONS(4395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4395), - [anon_sym_BSLASHtextcite] = ACTIONS(4395), - [anon_sym_BSLASHTextcite] = ACTIONS(4395), - [anon_sym_BSLASHsmartcite] = ACTIONS(4395), - [anon_sym_BSLASHSmartcite] = ACTIONS(4395), - [anon_sym_BSLASHsupercite] = ACTIONS(4395), - [anon_sym_BSLASHautocite] = ACTIONS(4395), - [anon_sym_BSLASHAutocite] = ACTIONS(4395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHvolcite] = ACTIONS(4395), - [anon_sym_BSLASHVolcite] = ACTIONS(4395), - [anon_sym_BSLASHpvolcite] = ACTIONS(4395), - [anon_sym_BSLASHPvolcite] = ACTIONS(4395), - [anon_sym_BSLASHfvolcite] = ACTIONS(4395), - [anon_sym_BSLASHftvolcite] = ACTIONS(4395), - [anon_sym_BSLASHsvolcite] = ACTIONS(4395), - [anon_sym_BSLASHSvolcite] = ACTIONS(4395), - [anon_sym_BSLASHtvolcite] = ACTIONS(4395), - [anon_sym_BSLASHTvolcite] = ACTIONS(4395), - [anon_sym_BSLASHavolcite] = ACTIONS(4395), - [anon_sym_BSLASHAvolcite] = ACTIONS(4395), - [anon_sym_BSLASHnotecite] = ACTIONS(4395), - [anon_sym_BSLASHNotecite] = ACTIONS(4395), - [anon_sym_BSLASHpnotecite] = ACTIONS(4395), - [anon_sym_BSLASHPnotecite] = ACTIONS(4395), - [anon_sym_BSLASHfnotecite] = ACTIONS(4395), - [anon_sym_BSLASHlabel] = ACTIONS(4395), - [anon_sym_BSLASHref] = ACTIONS(4395), - [anon_sym_BSLASHeqref] = ACTIONS(4395), - [anon_sym_BSLASHvref] = ACTIONS(4395), - [anon_sym_BSLASHVref] = ACTIONS(4395), - [anon_sym_BSLASHautoref] = ACTIONS(4395), - [anon_sym_BSLASHpageref] = ACTIONS(4395), - [anon_sym_BSLASHcref] = ACTIONS(4395), - [anon_sym_BSLASHCref] = ACTIONS(4395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnameCref] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHlabelcref] = ACTIONS(4395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCrefrange] = ACTIONS(4395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnewlabel] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4393), - [anon_sym_BSLASHdef] = ACTIONS(4395), - [anon_sym_BSLASHlet] = ACTIONS(4395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4395), - [anon_sym_BSLASHgls] = ACTIONS(4395), - [anon_sym_BSLASHGls] = ACTIONS(4395), - [anon_sym_BSLASHGLS] = ACTIONS(4395), - [anon_sym_BSLASHglspl] = ACTIONS(4395), - [anon_sym_BSLASHGlspl] = ACTIONS(4395), - [anon_sym_BSLASHGLSpl] = ACTIONS(4395), - [anon_sym_BSLASHglsdisp] = ACTIONS(4395), - [anon_sym_BSLASHglslink] = ACTIONS(4395), - [anon_sym_BSLASHglstext] = ACTIONS(4395), - [anon_sym_BSLASHGlstext] = ACTIONS(4395), - [anon_sym_BSLASHGLStext] = ACTIONS(4395), - [anon_sym_BSLASHglsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4395), - [anon_sym_BSLASHglsplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSplural] = ACTIONS(4395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHglsname] = ACTIONS(4395), - [anon_sym_BSLASHGlsname] = ACTIONS(4395), - [anon_sym_BSLASHGLSname] = ACTIONS(4395), - [anon_sym_BSLASHglssymbol] = ACTIONS(4395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4395), - [anon_sym_BSLASHglsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4395), - [anon_sym_BSLASHglsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4395), - [anon_sym_BSLASHglsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4395), - [anon_sym_BSLASHglsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4395), - [anon_sym_BSLASHglsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4395), - [anon_sym_BSLASHnewacronym] = ACTIONS(4395), - [anon_sym_BSLASHacrshort] = ACTIONS(4395), - [anon_sym_BSLASHAcrshort] = ACTIONS(4395), - [anon_sym_BSLASHACRshort] = ACTIONS(4395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4395), - [anon_sym_BSLASHacrlong] = ACTIONS(4395), - [anon_sym_BSLASHAcrlong] = ACTIONS(4395), - [anon_sym_BSLASHACRlong] = ACTIONS(4395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4395), - [anon_sym_BSLASHacrfull] = ACTIONS(4395), - [anon_sym_BSLASHAcrfull] = ACTIONS(4395), - [anon_sym_BSLASHACRfull] = ACTIONS(4395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4395), - [anon_sym_BSLASHacs] = ACTIONS(4395), - [anon_sym_BSLASHAcs] = ACTIONS(4395), - [anon_sym_BSLASHacsp] = ACTIONS(4395), - [anon_sym_BSLASHAcsp] = ACTIONS(4395), - [anon_sym_BSLASHacl] = ACTIONS(4395), - [anon_sym_BSLASHAcl] = ACTIONS(4395), - [anon_sym_BSLASHaclp] = ACTIONS(4395), - [anon_sym_BSLASHAclp] = ACTIONS(4395), - [anon_sym_BSLASHacf] = ACTIONS(4395), - [anon_sym_BSLASHAcf] = ACTIONS(4395), - [anon_sym_BSLASHacfp] = ACTIONS(4395), - [anon_sym_BSLASHAcfp] = ACTIONS(4395), - [anon_sym_BSLASHac] = ACTIONS(4395), - [anon_sym_BSLASHAc] = ACTIONS(4395), - [anon_sym_BSLASHacp] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4395), - [anon_sym_BSLASHcolor] = ACTIONS(4395), - [anon_sym_BSLASHcolorbox] = ACTIONS(4395), - [anon_sym_BSLASHtextcolor] = ACTIONS(4395), - [anon_sym_BSLASHpagecolor] = ACTIONS(4395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4395), + [sym_curly_group] = STATE(898), + [sym_mixed_group] = STATE(898), + [aux_sym_generic_command_repeat1] = STATE(411), + [sym_command_name] = ACTIONS(4565), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4577), + [anon_sym_RPAREN] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_RBRACK] = ACTIONS(4563), + [anon_sym_COMMA] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_BSLASHpart] = ACTIONS(4565), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddpart] = ACTIONS(4565), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4563), + [anon_sym_BSLASHchapter] = ACTIONS(4565), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddchap] = ACTIONS(4565), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsection] = ACTIONS(4565), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddsec] = ACTIONS(4565), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubsection] = ACTIONS(4565), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4565), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHparagraph] = ACTIONS(4565), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4565), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4563), + [anon_sym_BSLASHitem] = ACTIONS(4565), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(4565), + [sym_placeholder] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4565), + [anon_sym_DASH] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_SLASH] = ACTIONS(4565), + [anon_sym_CARET] = ACTIONS(4565), + [anon_sym__] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4565), + [anon_sym_GT] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_PIPE] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4565), + [anon_sym_SQUOTE] = ACTIONS(4565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), + [anon_sym_DOLLAR] = ACTIONS(4565), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4563), + [anon_sym_BSLASHbegin] = ACTIONS(4565), + [anon_sym_BSLASHusepackage] = ACTIONS(4565), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), + [anon_sym_BSLASHinclude] = ACTIONS(4565), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), + [anon_sym_BSLASHinput] = ACTIONS(4565), + [anon_sym_BSLASHsubfile] = ACTIONS(4565), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), + [anon_sym_BSLASHbibliography] = ACTIONS(4565), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), + [anon_sym_BSLASHincludesvg] = ACTIONS(4565), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), + [anon_sym_BSLASHimport] = ACTIONS(4565), + [anon_sym_BSLASHsubimport] = ACTIONS(4565), + [anon_sym_BSLASHinputfrom] = ACTIONS(4565), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), + [anon_sym_BSLASHincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHcaption] = ACTIONS(4565), + [anon_sym_BSLASHcite] = ACTIONS(4565), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCite] = ACTIONS(4565), + [anon_sym_BSLASHnocite] = ACTIONS(4565), + [anon_sym_BSLASHcitet] = ACTIONS(4565), + [anon_sym_BSLASHcitep] = ACTIONS(4565), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteauthor] = ACTIONS(4565), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitetitle] = ACTIONS(4565), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteyear] = ACTIONS(4565), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitedate] = ACTIONS(4565), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteurl] = ACTIONS(4565), + [anon_sym_BSLASHfullcite] = ACTIONS(4565), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), + [anon_sym_BSLASHcitealt] = ACTIONS(4565), + [anon_sym_BSLASHcitealp] = ACTIONS(4565), + [anon_sym_BSLASHcitetext] = ACTIONS(4565), + [anon_sym_BSLASHparencite] = ACTIONS(4565), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHParencite] = ACTIONS(4565), + [anon_sym_BSLASHfootcite] = ACTIONS(4565), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), + [anon_sym_BSLASHtextcite] = ACTIONS(4565), + [anon_sym_BSLASHTextcite] = ACTIONS(4565), + [anon_sym_BSLASHsmartcite] = ACTIONS(4565), + [anon_sym_BSLASHSmartcite] = ACTIONS(4565), + [anon_sym_BSLASHsupercite] = ACTIONS(4565), + [anon_sym_BSLASHautocite] = ACTIONS(4565), + [anon_sym_BSLASHAutocite] = ACTIONS(4565), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHvolcite] = ACTIONS(4565), + [anon_sym_BSLASHVolcite] = ACTIONS(4565), + [anon_sym_BSLASHpvolcite] = ACTIONS(4565), + [anon_sym_BSLASHPvolcite] = ACTIONS(4565), + [anon_sym_BSLASHfvolcite] = ACTIONS(4565), + [anon_sym_BSLASHftvolcite] = ACTIONS(4565), + [anon_sym_BSLASHsvolcite] = ACTIONS(4565), + [anon_sym_BSLASHSvolcite] = ACTIONS(4565), + [anon_sym_BSLASHtvolcite] = ACTIONS(4565), + [anon_sym_BSLASHTvolcite] = ACTIONS(4565), + [anon_sym_BSLASHavolcite] = ACTIONS(4565), + [anon_sym_BSLASHAvolcite] = ACTIONS(4565), + [anon_sym_BSLASHnotecite] = ACTIONS(4565), + [anon_sym_BSLASHNotecite] = ACTIONS(4565), + [anon_sym_BSLASHpnotecite] = ACTIONS(4565), + [anon_sym_BSLASHPnotecite] = ACTIONS(4565), + [anon_sym_BSLASHfnotecite] = ACTIONS(4565), + [anon_sym_BSLASHlabel] = ACTIONS(4565), + [anon_sym_BSLASHref] = ACTIONS(4565), + [anon_sym_BSLASHeqref] = ACTIONS(4565), + [anon_sym_BSLASHvref] = ACTIONS(4565), + [anon_sym_BSLASHVref] = ACTIONS(4565), + [anon_sym_BSLASHautoref] = ACTIONS(4565), + [anon_sym_BSLASHpageref] = ACTIONS(4565), + [anon_sym_BSLASHcref] = ACTIONS(4565), + [anon_sym_BSLASHCref] = ACTIONS(4565), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnameCref] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHlabelcref] = ACTIONS(4565), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCrefrange] = ACTIONS(4565), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnewlabel] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), + [anon_sym_BSLASHdef] = ACTIONS(4565), + [anon_sym_BSLASHlet] = ACTIONS(4565), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), + [anon_sym_BSLASHgls] = ACTIONS(4565), + [anon_sym_BSLASHGls] = ACTIONS(4565), + [anon_sym_BSLASHGLS] = ACTIONS(4565), + [anon_sym_BSLASHglspl] = ACTIONS(4565), + [anon_sym_BSLASHGlspl] = ACTIONS(4565), + [anon_sym_BSLASHGLSpl] = ACTIONS(4565), + [anon_sym_BSLASHglsdisp] = ACTIONS(4565), + [anon_sym_BSLASHglslink] = ACTIONS(4565), + [anon_sym_BSLASHglstext] = ACTIONS(4565), + [anon_sym_BSLASHGlstext] = ACTIONS(4565), + [anon_sym_BSLASHGLStext] = ACTIONS(4565), + [anon_sym_BSLASHglsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), + [anon_sym_BSLASHglsplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSplural] = ACTIONS(4565), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHglsname] = ACTIONS(4565), + [anon_sym_BSLASHGlsname] = ACTIONS(4565), + [anon_sym_BSLASHGLSname] = ACTIONS(4565), + [anon_sym_BSLASHglssymbol] = ACTIONS(4565), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), + [anon_sym_BSLASHglsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), + [anon_sym_BSLASHglsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), + [anon_sym_BSLASHglsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), + [anon_sym_BSLASHglsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), + [anon_sym_BSLASHglsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), + [anon_sym_BSLASHnewacronym] = ACTIONS(4565), + [anon_sym_BSLASHacrshort] = ACTIONS(4565), + [anon_sym_BSLASHAcrshort] = ACTIONS(4565), + [anon_sym_BSLASHACRshort] = ACTIONS(4565), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), + [anon_sym_BSLASHacrlong] = ACTIONS(4565), + [anon_sym_BSLASHAcrlong] = ACTIONS(4565), + [anon_sym_BSLASHACRlong] = ACTIONS(4565), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), + [anon_sym_BSLASHacrfull] = ACTIONS(4565), + [anon_sym_BSLASHAcrfull] = ACTIONS(4565), + [anon_sym_BSLASHACRfull] = ACTIONS(4565), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), + [anon_sym_BSLASHacs] = ACTIONS(4565), + [anon_sym_BSLASHAcs] = ACTIONS(4565), + [anon_sym_BSLASHacsp] = ACTIONS(4565), + [anon_sym_BSLASHAcsp] = ACTIONS(4565), + [anon_sym_BSLASHacl] = ACTIONS(4565), + [anon_sym_BSLASHAcl] = ACTIONS(4565), + [anon_sym_BSLASHaclp] = ACTIONS(4565), + [anon_sym_BSLASHAclp] = ACTIONS(4565), + [anon_sym_BSLASHacf] = ACTIONS(4565), + [anon_sym_BSLASHAcf] = ACTIONS(4565), + [anon_sym_BSLASHacfp] = ACTIONS(4565), + [anon_sym_BSLASHAcfp] = ACTIONS(4565), + [anon_sym_BSLASHac] = ACTIONS(4565), + [anon_sym_BSLASHAc] = ACTIONS(4565), + [anon_sym_BSLASHacp] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), + [anon_sym_BSLASHcolor] = ACTIONS(4565), + [anon_sym_BSLASHcolorbox] = ACTIONS(4565), + [anon_sym_BSLASHtextcolor] = ACTIONS(4565), + [anon_sym_BSLASHpagecolor] = ACTIONS(4565), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), + [anon_sym_BSLASHtext] = ACTIONS(4565), + [anon_sym_BSLASHintertext] = ACTIONS(4565), + [anon_sym_shortintertext] = ACTIONS(4565), }, [347] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(4395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_BSLASHpart] = ACTIONS(4395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddpart] = ACTIONS(4395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHchapter] = ACTIONS(4395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddchap] = ACTIONS(4395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsection] = ACTIONS(4395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddsec] = ACTIONS(4395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHparagraph] = ACTIONS(4395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(4395), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [sym_word] = ACTIONS(4395), - [sym_placeholder] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym__] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_PIPE] = ACTIONS(4395), - [anon_sym_COLON] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4393), - [anon_sym_BSLASHbegin] = ACTIONS(4395), - [anon_sym_BSLASHend] = ACTIONS(4395), - [anon_sym_BSLASHusepackage] = ACTIONS(4395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4395), - [anon_sym_BSLASHinclude] = ACTIONS(4395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4395), - [anon_sym_BSLASHinput] = ACTIONS(4395), - [anon_sym_BSLASHsubfile] = ACTIONS(4395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4395), - [anon_sym_BSLASHbibliography] = ACTIONS(4395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4395), - [anon_sym_BSLASHincludesvg] = ACTIONS(4395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4395), - [anon_sym_BSLASHsubimport] = ACTIONS(4395), - [anon_sym_BSLASHinputfrom] = ACTIONS(4395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4395), - [anon_sym_BSLASHincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHcaption] = ACTIONS(4395), - [anon_sym_BSLASHcite] = ACTIONS(4395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCite] = ACTIONS(4395), - [anon_sym_BSLASHnocite] = ACTIONS(4395), - [anon_sym_BSLASHcitet] = ACTIONS(4395), - [anon_sym_BSLASHcitep] = ACTIONS(4395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteauthor] = ACTIONS(4395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitetitle] = ACTIONS(4395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteyear] = ACTIONS(4395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitedate] = ACTIONS(4395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteurl] = ACTIONS(4395), - [anon_sym_BSLASHfullcite] = ACTIONS(4395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4395), - [anon_sym_BSLASHcitealt] = ACTIONS(4395), - [anon_sym_BSLASHcitealp] = ACTIONS(4395), - [anon_sym_BSLASHcitetext] = ACTIONS(4395), - [anon_sym_BSLASHparencite] = ACTIONS(4395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHParencite] = ACTIONS(4395), - [anon_sym_BSLASHfootcite] = ACTIONS(4395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4395), - [anon_sym_BSLASHtextcite] = ACTIONS(4395), - [anon_sym_BSLASHTextcite] = ACTIONS(4395), - [anon_sym_BSLASHsmartcite] = ACTIONS(4395), - [anon_sym_BSLASHSmartcite] = ACTIONS(4395), - [anon_sym_BSLASHsupercite] = ACTIONS(4395), - [anon_sym_BSLASHautocite] = ACTIONS(4395), - [anon_sym_BSLASHAutocite] = ACTIONS(4395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHvolcite] = ACTIONS(4395), - [anon_sym_BSLASHVolcite] = ACTIONS(4395), - [anon_sym_BSLASHpvolcite] = ACTIONS(4395), - [anon_sym_BSLASHPvolcite] = ACTIONS(4395), - [anon_sym_BSLASHfvolcite] = ACTIONS(4395), - [anon_sym_BSLASHftvolcite] = ACTIONS(4395), - [anon_sym_BSLASHsvolcite] = ACTIONS(4395), - [anon_sym_BSLASHSvolcite] = ACTIONS(4395), - [anon_sym_BSLASHtvolcite] = ACTIONS(4395), - [anon_sym_BSLASHTvolcite] = ACTIONS(4395), - [anon_sym_BSLASHavolcite] = ACTIONS(4395), - [anon_sym_BSLASHAvolcite] = ACTIONS(4395), - [anon_sym_BSLASHnotecite] = ACTIONS(4395), - [anon_sym_BSLASHNotecite] = ACTIONS(4395), - [anon_sym_BSLASHpnotecite] = ACTIONS(4395), - [anon_sym_BSLASHPnotecite] = ACTIONS(4395), - [anon_sym_BSLASHfnotecite] = ACTIONS(4395), - [anon_sym_BSLASHlabel] = ACTIONS(4395), - [anon_sym_BSLASHref] = ACTIONS(4395), - [anon_sym_BSLASHeqref] = ACTIONS(4395), - [anon_sym_BSLASHvref] = ACTIONS(4395), - [anon_sym_BSLASHVref] = ACTIONS(4395), - [anon_sym_BSLASHautoref] = ACTIONS(4395), - [anon_sym_BSLASHpageref] = ACTIONS(4395), - [anon_sym_BSLASHcref] = ACTIONS(4395), - [anon_sym_BSLASHCref] = ACTIONS(4395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnameCref] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHlabelcref] = ACTIONS(4395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCrefrange] = ACTIONS(4395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnewlabel] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4393), - [anon_sym_BSLASHdef] = ACTIONS(4395), - [anon_sym_BSLASHlet] = ACTIONS(4395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4395), - [anon_sym_BSLASHgls] = ACTIONS(4395), - [anon_sym_BSLASHGls] = ACTIONS(4395), - [anon_sym_BSLASHGLS] = ACTIONS(4395), - [anon_sym_BSLASHglspl] = ACTIONS(4395), - [anon_sym_BSLASHGlspl] = ACTIONS(4395), - [anon_sym_BSLASHGLSpl] = ACTIONS(4395), - [anon_sym_BSLASHglsdisp] = ACTIONS(4395), - [anon_sym_BSLASHglslink] = ACTIONS(4395), - [anon_sym_BSLASHglstext] = ACTIONS(4395), - [anon_sym_BSLASHGlstext] = ACTIONS(4395), - [anon_sym_BSLASHGLStext] = ACTIONS(4395), - [anon_sym_BSLASHglsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4395), - [anon_sym_BSLASHglsplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSplural] = ACTIONS(4395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHglsname] = ACTIONS(4395), - [anon_sym_BSLASHGlsname] = ACTIONS(4395), - [anon_sym_BSLASHGLSname] = ACTIONS(4395), - [anon_sym_BSLASHglssymbol] = ACTIONS(4395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4395), - [anon_sym_BSLASHglsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4395), - [anon_sym_BSLASHglsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4395), - [anon_sym_BSLASHglsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4395), - [anon_sym_BSLASHglsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4395), - [anon_sym_BSLASHglsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4395), - [anon_sym_BSLASHnewacronym] = ACTIONS(4395), - [anon_sym_BSLASHacrshort] = ACTIONS(4395), - [anon_sym_BSLASHAcrshort] = ACTIONS(4395), - [anon_sym_BSLASHACRshort] = ACTIONS(4395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4395), - [anon_sym_BSLASHacrlong] = ACTIONS(4395), - [anon_sym_BSLASHAcrlong] = ACTIONS(4395), - [anon_sym_BSLASHACRlong] = ACTIONS(4395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4395), - [anon_sym_BSLASHacrfull] = ACTIONS(4395), - [anon_sym_BSLASHAcrfull] = ACTIONS(4395), - [anon_sym_BSLASHACRfull] = ACTIONS(4395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4395), - [anon_sym_BSLASHacs] = ACTIONS(4395), - [anon_sym_BSLASHAcs] = ACTIONS(4395), - [anon_sym_BSLASHacsp] = ACTIONS(4395), - [anon_sym_BSLASHAcsp] = ACTIONS(4395), - [anon_sym_BSLASHacl] = ACTIONS(4395), - [anon_sym_BSLASHAcl] = ACTIONS(4395), - [anon_sym_BSLASHaclp] = ACTIONS(4395), - [anon_sym_BSLASHAclp] = ACTIONS(4395), - [anon_sym_BSLASHacf] = ACTIONS(4395), - [anon_sym_BSLASHAcf] = ACTIONS(4395), - [anon_sym_BSLASHacfp] = ACTIONS(4395), - [anon_sym_BSLASHAcfp] = ACTIONS(4395), - [anon_sym_BSLASHac] = ACTIONS(4395), - [anon_sym_BSLASHAc] = ACTIONS(4395), - [anon_sym_BSLASHacp] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4395), - [anon_sym_BSLASHcolor] = ACTIONS(4395), - [anon_sym_BSLASHcolorbox] = ACTIONS(4395), - [anon_sym_BSLASHtextcolor] = ACTIONS(4395), - [anon_sym_BSLASHpagecolor] = ACTIONS(4395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4395), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHend] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, [348] = { - [sym_curly_group] = STATE(894), - [sym_mixed_group] = STATE(894), - [aux_sym_generic_command_repeat1] = STATE(364), - [sym_command_name] = ACTIONS(4449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4527), - [anon_sym_RBRACK] = ACTIONS(4447), - [anon_sym_COMMA] = ACTIONS(4447), - [anon_sym_EQ] = ACTIONS(4447), - [anon_sym_BSLASHpart] = ACTIONS(4449), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddpart] = ACTIONS(4449), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4447), - [anon_sym_BSLASHchapter] = ACTIONS(4449), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddchap] = ACTIONS(4449), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsection] = ACTIONS(4449), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddsec] = ACTIONS(4449), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubsection] = ACTIONS(4449), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4449), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHparagraph] = ACTIONS(4449), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4449), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4447), - [anon_sym_BSLASHitem] = ACTIONS(4449), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(4449), - [sym_placeholder] = ACTIONS(4447), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [anon_sym_SLASH] = ACTIONS(4449), - [anon_sym_CARET] = ACTIONS(4449), - [anon_sym__] = ACTIONS(4449), - [anon_sym_LT] = ACTIONS(4449), - [anon_sym_GT] = ACTIONS(4449), - [anon_sym_BANG] = ACTIONS(4449), - [anon_sym_PIPE] = ACTIONS(4449), - [anon_sym_COLON] = ACTIONS(4449), - [anon_sym_SQUOTE] = ACTIONS(4449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4447), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4447), - [anon_sym_BSLASHbegin] = ACTIONS(4449), - [anon_sym_BSLASHusepackage] = ACTIONS(4449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4449), - [anon_sym_BSLASHinclude] = ACTIONS(4449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4449), - [anon_sym_BSLASHinput] = ACTIONS(4449), - [anon_sym_BSLASHsubfile] = ACTIONS(4449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4449), - [anon_sym_BSLASHbibliography] = ACTIONS(4449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4449), - [anon_sym_BSLASHincludesvg] = ACTIONS(4449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4449), - [anon_sym_BSLASHimport] = ACTIONS(4449), - [anon_sym_BSLASHsubimport] = ACTIONS(4449), - [anon_sym_BSLASHinputfrom] = ACTIONS(4449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4449), - [anon_sym_BSLASHincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHcaption] = ACTIONS(4449), - [anon_sym_BSLASHcite] = ACTIONS(4449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCite] = ACTIONS(4449), - [anon_sym_BSLASHnocite] = ACTIONS(4449), - [anon_sym_BSLASHcitet] = ACTIONS(4449), - [anon_sym_BSLASHcitep] = ACTIONS(4449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteyear] = ACTIONS(4449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitedate] = ACTIONS(4449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteurl] = ACTIONS(4449), - [anon_sym_BSLASHfullcite] = ACTIONS(4449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4449), - [anon_sym_BSLASHcitealt] = ACTIONS(4449), - [anon_sym_BSLASHcitealp] = ACTIONS(4449), - [anon_sym_BSLASHcitetext] = ACTIONS(4449), - [anon_sym_BSLASHparencite] = ACTIONS(4449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHParencite] = ACTIONS(4449), - [anon_sym_BSLASHfootcite] = ACTIONS(4449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4449), - [anon_sym_BSLASHtextcite] = ACTIONS(4449), - [anon_sym_BSLASHTextcite] = ACTIONS(4449), - [anon_sym_BSLASHsmartcite] = ACTIONS(4449), - [anon_sym_BSLASHSmartcite] = ACTIONS(4449), - [anon_sym_BSLASHsupercite] = ACTIONS(4449), - [anon_sym_BSLASHautocite] = ACTIONS(4449), - [anon_sym_BSLASHAutocite] = ACTIONS(4449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHvolcite] = ACTIONS(4449), - [anon_sym_BSLASHVolcite] = ACTIONS(4449), - [anon_sym_BSLASHpvolcite] = ACTIONS(4449), - [anon_sym_BSLASHPvolcite] = ACTIONS(4449), - [anon_sym_BSLASHfvolcite] = ACTIONS(4449), - [anon_sym_BSLASHftvolcite] = ACTIONS(4449), - [anon_sym_BSLASHsvolcite] = ACTIONS(4449), - [anon_sym_BSLASHSvolcite] = ACTIONS(4449), - [anon_sym_BSLASHtvolcite] = ACTIONS(4449), - [anon_sym_BSLASHTvolcite] = ACTIONS(4449), - [anon_sym_BSLASHavolcite] = ACTIONS(4449), - [anon_sym_BSLASHAvolcite] = ACTIONS(4449), - [anon_sym_BSLASHnotecite] = ACTIONS(4449), - [anon_sym_BSLASHNotecite] = ACTIONS(4449), - [anon_sym_BSLASHpnotecite] = ACTIONS(4449), - [anon_sym_BSLASHPnotecite] = ACTIONS(4449), - [anon_sym_BSLASHfnotecite] = ACTIONS(4449), - [anon_sym_BSLASHlabel] = ACTIONS(4449), - [anon_sym_BSLASHref] = ACTIONS(4449), - [anon_sym_BSLASHeqref] = ACTIONS(4449), - [anon_sym_BSLASHvref] = ACTIONS(4449), - [anon_sym_BSLASHVref] = ACTIONS(4449), - [anon_sym_BSLASHautoref] = ACTIONS(4449), - [anon_sym_BSLASHpageref] = ACTIONS(4449), - [anon_sym_BSLASHcref] = ACTIONS(4449), - [anon_sym_BSLASHCref] = ACTIONS(4449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnameCref] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHlabelcref] = ACTIONS(4449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnewlabel] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4447), - [anon_sym_BSLASHdef] = ACTIONS(4449), - [anon_sym_BSLASHlet] = ACTIONS(4449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4449), - [anon_sym_BSLASHgls] = ACTIONS(4449), - [anon_sym_BSLASHGls] = ACTIONS(4449), - [anon_sym_BSLASHGLS] = ACTIONS(4449), - [anon_sym_BSLASHglspl] = ACTIONS(4449), - [anon_sym_BSLASHGlspl] = ACTIONS(4449), - [anon_sym_BSLASHGLSpl] = ACTIONS(4449), - [anon_sym_BSLASHglsdisp] = ACTIONS(4449), - [anon_sym_BSLASHglslink] = ACTIONS(4449), - [anon_sym_BSLASHglstext] = ACTIONS(4449), - [anon_sym_BSLASHGlstext] = ACTIONS(4449), - [anon_sym_BSLASHGLStext] = ACTIONS(4449), - [anon_sym_BSLASHglsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4449), - [anon_sym_BSLASHglsplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSplural] = ACTIONS(4449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHglsname] = ACTIONS(4449), - [anon_sym_BSLASHGlsname] = ACTIONS(4449), - [anon_sym_BSLASHGLSname] = ACTIONS(4449), - [anon_sym_BSLASHglssymbol] = ACTIONS(4449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4449), - [anon_sym_BSLASHglsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4449), - [anon_sym_BSLASHglsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4449), - [anon_sym_BSLASHglsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4449), - [anon_sym_BSLASHglsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4449), - [anon_sym_BSLASHglsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4449), - [anon_sym_BSLASHnewacronym] = ACTIONS(4449), - [anon_sym_BSLASHacrshort] = ACTIONS(4449), - [anon_sym_BSLASHAcrshort] = ACTIONS(4449), - [anon_sym_BSLASHACRshort] = ACTIONS(4449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4449), - [anon_sym_BSLASHacrlong] = ACTIONS(4449), - [anon_sym_BSLASHAcrlong] = ACTIONS(4449), - [anon_sym_BSLASHACRlong] = ACTIONS(4449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4449), - [anon_sym_BSLASHacrfull] = ACTIONS(4449), - [anon_sym_BSLASHAcrfull] = ACTIONS(4449), - [anon_sym_BSLASHACRfull] = ACTIONS(4449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4449), - [anon_sym_BSLASHacs] = ACTIONS(4449), - [anon_sym_BSLASHAcs] = ACTIONS(4449), - [anon_sym_BSLASHacsp] = ACTIONS(4449), - [anon_sym_BSLASHAcsp] = ACTIONS(4449), - [anon_sym_BSLASHacl] = ACTIONS(4449), - [anon_sym_BSLASHAcl] = ACTIONS(4449), - [anon_sym_BSLASHaclp] = ACTIONS(4449), - [anon_sym_BSLASHAclp] = ACTIONS(4449), - [anon_sym_BSLASHacf] = ACTIONS(4449), - [anon_sym_BSLASHAcf] = ACTIONS(4449), - [anon_sym_BSLASHacfp] = ACTIONS(4449), - [anon_sym_BSLASHAcfp] = ACTIONS(4449), - [anon_sym_BSLASHac] = ACTIONS(4449), - [anon_sym_BSLASHAc] = ACTIONS(4449), - [anon_sym_BSLASHacp] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4449), - [anon_sym_BSLASHcolor] = ACTIONS(4449), - [anon_sym_BSLASHcolorbox] = ACTIONS(4449), - [anon_sym_BSLASHtextcolor] = ACTIONS(4449), - [anon_sym_BSLASHpagecolor] = ACTIONS(4449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4449), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHend] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, [349] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(4441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHend] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(4491), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4489), + [anon_sym_RPAREN] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4489), + [anon_sym_RBRACK] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4489), + [anon_sym_BSLASHpart] = ACTIONS(4491), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddpart] = ACTIONS(4491), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4489), + [anon_sym_BSLASHchapter] = ACTIONS(4491), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddchap] = ACTIONS(4491), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsection] = ACTIONS(4491), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddsec] = ACTIONS(4491), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubsection] = ACTIONS(4491), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4491), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHparagraph] = ACTIONS(4491), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4491), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4489), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(4489), + [sym_word] = ACTIONS(4491), + [sym_placeholder] = ACTIONS(4489), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_CARET] = ACTIONS(4491), + [anon_sym__] = ACTIONS(4491), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_BANG] = ACTIONS(4491), + [anon_sym_PIPE] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [anon_sym_SQUOTE] = ACTIONS(4491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4489), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4489), + [anon_sym_DOLLAR] = ACTIONS(4491), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4489), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4489), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4489), + [anon_sym_BSLASHbegin] = ACTIONS(4491), + [anon_sym_BSLASHusepackage] = ACTIONS(4491), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4491), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4491), + [anon_sym_BSLASHinclude] = ACTIONS(4491), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4491), + [anon_sym_BSLASHinput] = ACTIONS(4491), + [anon_sym_BSLASHsubfile] = ACTIONS(4491), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4491), + [anon_sym_BSLASHbibliography] = ACTIONS(4491), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4491), + [anon_sym_BSLASHincludesvg] = ACTIONS(4491), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4491), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4491), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4491), + [anon_sym_BSLASHimport] = ACTIONS(4491), + [anon_sym_BSLASHsubimport] = ACTIONS(4491), + [anon_sym_BSLASHinputfrom] = ACTIONS(4491), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4491), + [anon_sym_BSLASHincludefrom] = ACTIONS(4491), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4491), + [anon_sym_BSLASHcaption] = ACTIONS(4491), + [anon_sym_BSLASHcite] = ACTIONS(4491), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCite] = ACTIONS(4491), + [anon_sym_BSLASHnocite] = ACTIONS(4491), + [anon_sym_BSLASHcitet] = ACTIONS(4491), + [anon_sym_BSLASHcitep] = ACTIONS(4491), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteauthor] = ACTIONS(4491), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4491), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitetitle] = ACTIONS(4491), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteyear] = ACTIONS(4491), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitedate] = ACTIONS(4491), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteurl] = ACTIONS(4491), + [anon_sym_BSLASHfullcite] = ACTIONS(4491), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4491), + [anon_sym_BSLASHcitealt] = ACTIONS(4491), + [anon_sym_BSLASHcitealp] = ACTIONS(4491), + [anon_sym_BSLASHcitetext] = ACTIONS(4491), + [anon_sym_BSLASHparencite] = ACTIONS(4491), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHParencite] = ACTIONS(4491), + [anon_sym_BSLASHfootcite] = ACTIONS(4491), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4491), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4491), + [anon_sym_BSLASHtextcite] = ACTIONS(4491), + [anon_sym_BSLASHTextcite] = ACTIONS(4491), + [anon_sym_BSLASHsmartcite] = ACTIONS(4491), + [anon_sym_BSLASHSmartcite] = ACTIONS(4491), + [anon_sym_BSLASHsupercite] = ACTIONS(4491), + [anon_sym_BSLASHautocite] = ACTIONS(4491), + [anon_sym_BSLASHAutocite] = ACTIONS(4491), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHvolcite] = ACTIONS(4491), + [anon_sym_BSLASHVolcite] = ACTIONS(4491), + [anon_sym_BSLASHpvolcite] = ACTIONS(4491), + [anon_sym_BSLASHPvolcite] = ACTIONS(4491), + [anon_sym_BSLASHfvolcite] = ACTIONS(4491), + [anon_sym_BSLASHftvolcite] = ACTIONS(4491), + [anon_sym_BSLASHsvolcite] = ACTIONS(4491), + [anon_sym_BSLASHSvolcite] = ACTIONS(4491), + [anon_sym_BSLASHtvolcite] = ACTIONS(4491), + [anon_sym_BSLASHTvolcite] = ACTIONS(4491), + [anon_sym_BSLASHavolcite] = ACTIONS(4491), + [anon_sym_BSLASHAvolcite] = ACTIONS(4491), + [anon_sym_BSLASHnotecite] = ACTIONS(4491), + [anon_sym_BSLASHNotecite] = ACTIONS(4491), + [anon_sym_BSLASHpnotecite] = ACTIONS(4491), + [anon_sym_BSLASHPnotecite] = ACTIONS(4491), + [anon_sym_BSLASHfnotecite] = ACTIONS(4491), + [anon_sym_BSLASHlabel] = ACTIONS(4491), + [anon_sym_BSLASHref] = ACTIONS(4491), + [anon_sym_BSLASHeqref] = ACTIONS(4491), + [anon_sym_BSLASHvref] = ACTIONS(4491), + [anon_sym_BSLASHVref] = ACTIONS(4491), + [anon_sym_BSLASHautoref] = ACTIONS(4491), + [anon_sym_BSLASHpageref] = ACTIONS(4491), + [anon_sym_BSLASHcref] = ACTIONS(4491), + [anon_sym_BSLASHCref] = ACTIONS(4491), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4489), + [anon_sym_BSLASHnamecref] = ACTIONS(4491), + [anon_sym_BSLASHnameCref] = ACTIONS(4491), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4491), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4491), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4491), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4491), + [anon_sym_BSLASHlabelcref] = ACTIONS(4491), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4491), + [anon_sym_BSLASHcrefrange] = ACTIONS(4491), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCrefrange] = ACTIONS(4491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4489), + [anon_sym_BSLASHnewlabel] = ACTIONS(4491), + [anon_sym_BSLASHnewcommand] = ACTIONS(4491), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4491), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4491), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4491), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4489), + [anon_sym_BSLASHdef] = ACTIONS(4491), + [anon_sym_BSLASHlet] = ACTIONS(4491), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4491), + [anon_sym_BSLASHgls] = ACTIONS(4491), + [anon_sym_BSLASHGls] = ACTIONS(4491), + [anon_sym_BSLASHGLS] = ACTIONS(4491), + [anon_sym_BSLASHglspl] = ACTIONS(4491), + [anon_sym_BSLASHGlspl] = ACTIONS(4491), + [anon_sym_BSLASHGLSpl] = ACTIONS(4491), + [anon_sym_BSLASHglsdisp] = ACTIONS(4491), + [anon_sym_BSLASHglslink] = ACTIONS(4491), + [anon_sym_BSLASHglstext] = ACTIONS(4491), + [anon_sym_BSLASHGlstext] = ACTIONS(4491), + [anon_sym_BSLASHGLStext] = ACTIONS(4491), + [anon_sym_BSLASHglsfirst] = ACTIONS(4491), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4491), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4491), + [anon_sym_BSLASHglsplural] = ACTIONS(4491), + [anon_sym_BSLASHGlsplural] = ACTIONS(4491), + [anon_sym_BSLASHGLSplural] = ACTIONS(4491), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHglsname] = ACTIONS(4491), + [anon_sym_BSLASHGlsname] = ACTIONS(4491), + [anon_sym_BSLASHGLSname] = ACTIONS(4491), + [anon_sym_BSLASHglssymbol] = ACTIONS(4491), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4491), + [anon_sym_BSLASHglsdesc] = ACTIONS(4491), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4491), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4491), + [anon_sym_BSLASHglsuseri] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4491), + [anon_sym_BSLASHglsuserii] = ACTIONS(4491), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4491), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4491), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4491), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4491), + [anon_sym_BSLASHglsuserv] = ACTIONS(4491), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4491), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4491), + [anon_sym_BSLASHglsuservi] = ACTIONS(4491), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4491), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4491), + [anon_sym_BSLASHnewacronym] = ACTIONS(4491), + [anon_sym_BSLASHacrshort] = ACTIONS(4491), + [anon_sym_BSLASHAcrshort] = ACTIONS(4491), + [anon_sym_BSLASHACRshort] = ACTIONS(4491), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4491), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4491), + [anon_sym_BSLASHacrlong] = ACTIONS(4491), + [anon_sym_BSLASHAcrlong] = ACTIONS(4491), + [anon_sym_BSLASHACRlong] = ACTIONS(4491), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4491), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4491), + [anon_sym_BSLASHacrfull] = ACTIONS(4491), + [anon_sym_BSLASHAcrfull] = ACTIONS(4491), + [anon_sym_BSLASHACRfull] = ACTIONS(4491), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4491), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4491), + [anon_sym_BSLASHacs] = ACTIONS(4491), + [anon_sym_BSLASHAcs] = ACTIONS(4491), + [anon_sym_BSLASHacsp] = ACTIONS(4491), + [anon_sym_BSLASHAcsp] = ACTIONS(4491), + [anon_sym_BSLASHacl] = ACTIONS(4491), + [anon_sym_BSLASHAcl] = ACTIONS(4491), + [anon_sym_BSLASHaclp] = ACTIONS(4491), + [anon_sym_BSLASHAclp] = ACTIONS(4491), + [anon_sym_BSLASHacf] = ACTIONS(4491), + [anon_sym_BSLASHAcf] = ACTIONS(4491), + [anon_sym_BSLASHacfp] = ACTIONS(4491), + [anon_sym_BSLASHAcfp] = ACTIONS(4491), + [anon_sym_BSLASHac] = ACTIONS(4491), + [anon_sym_BSLASHAc] = ACTIONS(4491), + [anon_sym_BSLASHacp] = ACTIONS(4491), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4491), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4491), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4491), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4491), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4491), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4491), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4491), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4491), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4491), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4491), + [anon_sym_BSLASHcolor] = ACTIONS(4491), + [anon_sym_BSLASHcolorbox] = ACTIONS(4491), + [anon_sym_BSLASHtextcolor] = ACTIONS(4491), + [anon_sym_BSLASHpagecolor] = ACTIONS(4491), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4491), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4491), + [anon_sym_BSLASHtext] = ACTIONS(4491), + [anon_sym_BSLASHintertext] = ACTIONS(4491), + [anon_sym_shortintertext] = ACTIONS(4491), }, [350] = { - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(599), - [aux_sym__section_repeat1] = STATE(599), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(762), - [anon_sym_BSLASHpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHaddpart] = ACTIONS(762), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(764), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(389), + [aux_sym__section_repeat6] = STATE(389), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHend] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, [351] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(4441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(4441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4439), - [anon_sym_LBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHend] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(390), + [aux_sym__section_repeat5] = STATE(390), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHend] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, [352] = { - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(441), - [aux_sym__section_repeat6] = STATE(441), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHitem] = ACTIONS(4441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4439), - [anon_sym_LBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHend] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(392), + [aux_sym__section_repeat4] = STATE(392), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHend] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, [353] = { - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(600), - [aux_sym__section_repeat2] = STATE(600), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(4487), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4485), + [anon_sym_RPAREN] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_BSLASHpart] = ACTIONS(4487), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddpart] = ACTIONS(4487), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHchapter] = ACTIONS(4487), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddchap] = ACTIONS(4487), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsection] = ACTIONS(4487), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddsec] = ACTIONS(4487), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHparagraph] = ACTIONS(4487), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4487), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(4485), + [sym_word] = ACTIONS(4487), + [sym_placeholder] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4487), + [anon_sym_STAR] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym__] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4487), + [anon_sym_PIPE] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [anon_sym_SQUOTE] = ACTIONS(4487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), + [anon_sym_DOLLAR] = ACTIONS(4487), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), + [anon_sym_BSLASHbegin] = ACTIONS(4487), + [anon_sym_BSLASHusepackage] = ACTIONS(4487), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), + [anon_sym_BSLASHinclude] = ACTIONS(4487), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), + [anon_sym_BSLASHinput] = ACTIONS(4487), + [anon_sym_BSLASHsubfile] = ACTIONS(4487), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), + [anon_sym_BSLASHbibliography] = ACTIONS(4487), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), + [anon_sym_BSLASHincludesvg] = ACTIONS(4487), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), + [anon_sym_BSLASHimport] = ACTIONS(4487), + [anon_sym_BSLASHsubimport] = ACTIONS(4487), + [anon_sym_BSLASHinputfrom] = ACTIONS(4487), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), + [anon_sym_BSLASHincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHcaption] = ACTIONS(4487), + [anon_sym_BSLASHcite] = ACTIONS(4487), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCite] = ACTIONS(4487), + [anon_sym_BSLASHnocite] = ACTIONS(4487), + [anon_sym_BSLASHcitet] = ACTIONS(4487), + [anon_sym_BSLASHcitep] = ACTIONS(4487), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteauthor] = ACTIONS(4487), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitetitle] = ACTIONS(4487), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteyear] = ACTIONS(4487), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitedate] = ACTIONS(4487), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteurl] = ACTIONS(4487), + [anon_sym_BSLASHfullcite] = ACTIONS(4487), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), + [anon_sym_BSLASHcitealt] = ACTIONS(4487), + [anon_sym_BSLASHcitealp] = ACTIONS(4487), + [anon_sym_BSLASHcitetext] = ACTIONS(4487), + [anon_sym_BSLASHparencite] = ACTIONS(4487), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHParencite] = ACTIONS(4487), + [anon_sym_BSLASHfootcite] = ACTIONS(4487), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), + [anon_sym_BSLASHtextcite] = ACTIONS(4487), + [anon_sym_BSLASHTextcite] = ACTIONS(4487), + [anon_sym_BSLASHsmartcite] = ACTIONS(4487), + [anon_sym_BSLASHSmartcite] = ACTIONS(4487), + [anon_sym_BSLASHsupercite] = ACTIONS(4487), + [anon_sym_BSLASHautocite] = ACTIONS(4487), + [anon_sym_BSLASHAutocite] = ACTIONS(4487), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHvolcite] = ACTIONS(4487), + [anon_sym_BSLASHVolcite] = ACTIONS(4487), + [anon_sym_BSLASHpvolcite] = ACTIONS(4487), + [anon_sym_BSLASHPvolcite] = ACTIONS(4487), + [anon_sym_BSLASHfvolcite] = ACTIONS(4487), + [anon_sym_BSLASHftvolcite] = ACTIONS(4487), + [anon_sym_BSLASHsvolcite] = ACTIONS(4487), + [anon_sym_BSLASHSvolcite] = ACTIONS(4487), + [anon_sym_BSLASHtvolcite] = ACTIONS(4487), + [anon_sym_BSLASHTvolcite] = ACTIONS(4487), + [anon_sym_BSLASHavolcite] = ACTIONS(4487), + [anon_sym_BSLASHAvolcite] = ACTIONS(4487), + [anon_sym_BSLASHnotecite] = ACTIONS(4487), + [anon_sym_BSLASHNotecite] = ACTIONS(4487), + [anon_sym_BSLASHpnotecite] = ACTIONS(4487), + [anon_sym_BSLASHPnotecite] = ACTIONS(4487), + [anon_sym_BSLASHfnotecite] = ACTIONS(4487), + [anon_sym_BSLASHlabel] = ACTIONS(4487), + [anon_sym_BSLASHref] = ACTIONS(4487), + [anon_sym_BSLASHeqref] = ACTIONS(4487), + [anon_sym_BSLASHvref] = ACTIONS(4487), + [anon_sym_BSLASHVref] = ACTIONS(4487), + [anon_sym_BSLASHautoref] = ACTIONS(4487), + [anon_sym_BSLASHpageref] = ACTIONS(4487), + [anon_sym_BSLASHcref] = ACTIONS(4487), + [anon_sym_BSLASHCref] = ACTIONS(4487), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnameCref] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHlabelcref] = ACTIONS(4487), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCrefrange] = ACTIONS(4487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnewlabel] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), + [anon_sym_BSLASHdef] = ACTIONS(4487), + [anon_sym_BSLASHlet] = ACTIONS(4487), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), + [anon_sym_BSLASHgls] = ACTIONS(4487), + [anon_sym_BSLASHGls] = ACTIONS(4487), + [anon_sym_BSLASHGLS] = ACTIONS(4487), + [anon_sym_BSLASHglspl] = ACTIONS(4487), + [anon_sym_BSLASHGlspl] = ACTIONS(4487), + [anon_sym_BSLASHGLSpl] = ACTIONS(4487), + [anon_sym_BSLASHglsdisp] = ACTIONS(4487), + [anon_sym_BSLASHglslink] = ACTIONS(4487), + [anon_sym_BSLASHglstext] = ACTIONS(4487), + [anon_sym_BSLASHGlstext] = ACTIONS(4487), + [anon_sym_BSLASHGLStext] = ACTIONS(4487), + [anon_sym_BSLASHglsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), + [anon_sym_BSLASHglsplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSplural] = ACTIONS(4487), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHglsname] = ACTIONS(4487), + [anon_sym_BSLASHGlsname] = ACTIONS(4487), + [anon_sym_BSLASHGLSname] = ACTIONS(4487), + [anon_sym_BSLASHglssymbol] = ACTIONS(4487), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), + [anon_sym_BSLASHglsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), + [anon_sym_BSLASHglsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), + [anon_sym_BSLASHglsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), + [anon_sym_BSLASHglsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), + [anon_sym_BSLASHglsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), + [anon_sym_BSLASHnewacronym] = ACTIONS(4487), + [anon_sym_BSLASHacrshort] = ACTIONS(4487), + [anon_sym_BSLASHAcrshort] = ACTIONS(4487), + [anon_sym_BSLASHACRshort] = ACTIONS(4487), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), + [anon_sym_BSLASHacrlong] = ACTIONS(4487), + [anon_sym_BSLASHAcrlong] = ACTIONS(4487), + [anon_sym_BSLASHACRlong] = ACTIONS(4487), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), + [anon_sym_BSLASHacrfull] = ACTIONS(4487), + [anon_sym_BSLASHAcrfull] = ACTIONS(4487), + [anon_sym_BSLASHACRfull] = ACTIONS(4487), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), + [anon_sym_BSLASHacs] = ACTIONS(4487), + [anon_sym_BSLASHAcs] = ACTIONS(4487), + [anon_sym_BSLASHacsp] = ACTIONS(4487), + [anon_sym_BSLASHAcsp] = ACTIONS(4487), + [anon_sym_BSLASHacl] = ACTIONS(4487), + [anon_sym_BSLASHAcl] = ACTIONS(4487), + [anon_sym_BSLASHaclp] = ACTIONS(4487), + [anon_sym_BSLASHAclp] = ACTIONS(4487), + [anon_sym_BSLASHacf] = ACTIONS(4487), + [anon_sym_BSLASHAcf] = ACTIONS(4487), + [anon_sym_BSLASHacfp] = ACTIONS(4487), + [anon_sym_BSLASHAcfp] = ACTIONS(4487), + [anon_sym_BSLASHac] = ACTIONS(4487), + [anon_sym_BSLASHAc] = ACTIONS(4487), + [anon_sym_BSLASHacp] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), + [anon_sym_BSLASHcolor] = ACTIONS(4487), + [anon_sym_BSLASHcolorbox] = ACTIONS(4487), + [anon_sym_BSLASHtextcolor] = ACTIONS(4487), + [anon_sym_BSLASHpagecolor] = ACTIONS(4487), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), + [anon_sym_BSLASHtext] = ACTIONS(4487), + [anon_sym_BSLASHintertext] = ACTIONS(4487), + [anon_sym_shortintertext] = ACTIONS(4487), }, [354] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHend] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHend] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, [355] = { - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(601), - [aux_sym__section_repeat3] = STATE(601), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(4487), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4485), + [anon_sym_RPAREN] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_BSLASHpart] = ACTIONS(4487), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddpart] = ACTIONS(4487), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHchapter] = ACTIONS(4487), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddchap] = ACTIONS(4487), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsection] = ACTIONS(4487), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddsec] = ACTIONS(4487), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHparagraph] = ACTIONS(4487), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(4487), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4485), + [sym_word] = ACTIONS(4487), + [sym_placeholder] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4487), + [anon_sym_STAR] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym__] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4487), + [anon_sym_PIPE] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [anon_sym_SQUOTE] = ACTIONS(4487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), + [anon_sym_DOLLAR] = ACTIONS(4487), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), + [anon_sym_BSLASHbegin] = ACTIONS(4487), + [anon_sym_BSLASHusepackage] = ACTIONS(4487), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), + [anon_sym_BSLASHinclude] = ACTIONS(4487), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), + [anon_sym_BSLASHinput] = ACTIONS(4487), + [anon_sym_BSLASHsubfile] = ACTIONS(4487), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), + [anon_sym_BSLASHbibliography] = ACTIONS(4487), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), + [anon_sym_BSLASHincludesvg] = ACTIONS(4487), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), + [anon_sym_BSLASHimport] = ACTIONS(4487), + [anon_sym_BSLASHsubimport] = ACTIONS(4487), + [anon_sym_BSLASHinputfrom] = ACTIONS(4487), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), + [anon_sym_BSLASHincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHcaption] = ACTIONS(4487), + [anon_sym_BSLASHcite] = ACTIONS(4487), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCite] = ACTIONS(4487), + [anon_sym_BSLASHnocite] = ACTIONS(4487), + [anon_sym_BSLASHcitet] = ACTIONS(4487), + [anon_sym_BSLASHcitep] = ACTIONS(4487), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteauthor] = ACTIONS(4487), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitetitle] = ACTIONS(4487), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteyear] = ACTIONS(4487), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitedate] = ACTIONS(4487), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteurl] = ACTIONS(4487), + [anon_sym_BSLASHfullcite] = ACTIONS(4487), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), + [anon_sym_BSLASHcitealt] = ACTIONS(4487), + [anon_sym_BSLASHcitealp] = ACTIONS(4487), + [anon_sym_BSLASHcitetext] = ACTIONS(4487), + [anon_sym_BSLASHparencite] = ACTIONS(4487), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHParencite] = ACTIONS(4487), + [anon_sym_BSLASHfootcite] = ACTIONS(4487), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), + [anon_sym_BSLASHtextcite] = ACTIONS(4487), + [anon_sym_BSLASHTextcite] = ACTIONS(4487), + [anon_sym_BSLASHsmartcite] = ACTIONS(4487), + [anon_sym_BSLASHSmartcite] = ACTIONS(4487), + [anon_sym_BSLASHsupercite] = ACTIONS(4487), + [anon_sym_BSLASHautocite] = ACTIONS(4487), + [anon_sym_BSLASHAutocite] = ACTIONS(4487), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHvolcite] = ACTIONS(4487), + [anon_sym_BSLASHVolcite] = ACTIONS(4487), + [anon_sym_BSLASHpvolcite] = ACTIONS(4487), + [anon_sym_BSLASHPvolcite] = ACTIONS(4487), + [anon_sym_BSLASHfvolcite] = ACTIONS(4487), + [anon_sym_BSLASHftvolcite] = ACTIONS(4487), + [anon_sym_BSLASHsvolcite] = ACTIONS(4487), + [anon_sym_BSLASHSvolcite] = ACTIONS(4487), + [anon_sym_BSLASHtvolcite] = ACTIONS(4487), + [anon_sym_BSLASHTvolcite] = ACTIONS(4487), + [anon_sym_BSLASHavolcite] = ACTIONS(4487), + [anon_sym_BSLASHAvolcite] = ACTIONS(4487), + [anon_sym_BSLASHnotecite] = ACTIONS(4487), + [anon_sym_BSLASHNotecite] = ACTIONS(4487), + [anon_sym_BSLASHpnotecite] = ACTIONS(4487), + [anon_sym_BSLASHPnotecite] = ACTIONS(4487), + [anon_sym_BSLASHfnotecite] = ACTIONS(4487), + [anon_sym_BSLASHlabel] = ACTIONS(4487), + [anon_sym_BSLASHref] = ACTIONS(4487), + [anon_sym_BSLASHeqref] = ACTIONS(4487), + [anon_sym_BSLASHvref] = ACTIONS(4487), + [anon_sym_BSLASHVref] = ACTIONS(4487), + [anon_sym_BSLASHautoref] = ACTIONS(4487), + [anon_sym_BSLASHpageref] = ACTIONS(4487), + [anon_sym_BSLASHcref] = ACTIONS(4487), + [anon_sym_BSLASHCref] = ACTIONS(4487), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnameCref] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHlabelcref] = ACTIONS(4487), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCrefrange] = ACTIONS(4487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnewlabel] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), + [anon_sym_BSLASHdef] = ACTIONS(4487), + [anon_sym_BSLASHlet] = ACTIONS(4487), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), + [anon_sym_BSLASHgls] = ACTIONS(4487), + [anon_sym_BSLASHGls] = ACTIONS(4487), + [anon_sym_BSLASHGLS] = ACTIONS(4487), + [anon_sym_BSLASHglspl] = ACTIONS(4487), + [anon_sym_BSLASHGlspl] = ACTIONS(4487), + [anon_sym_BSLASHGLSpl] = ACTIONS(4487), + [anon_sym_BSLASHglsdisp] = ACTIONS(4487), + [anon_sym_BSLASHglslink] = ACTIONS(4487), + [anon_sym_BSLASHglstext] = ACTIONS(4487), + [anon_sym_BSLASHGlstext] = ACTIONS(4487), + [anon_sym_BSLASHGLStext] = ACTIONS(4487), + [anon_sym_BSLASHglsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), + [anon_sym_BSLASHglsplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSplural] = ACTIONS(4487), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHglsname] = ACTIONS(4487), + [anon_sym_BSLASHGlsname] = ACTIONS(4487), + [anon_sym_BSLASHGLSname] = ACTIONS(4487), + [anon_sym_BSLASHglssymbol] = ACTIONS(4487), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), + [anon_sym_BSLASHglsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), + [anon_sym_BSLASHglsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), + [anon_sym_BSLASHglsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), + [anon_sym_BSLASHglsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), + [anon_sym_BSLASHglsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), + [anon_sym_BSLASHnewacronym] = ACTIONS(4487), + [anon_sym_BSLASHacrshort] = ACTIONS(4487), + [anon_sym_BSLASHAcrshort] = ACTIONS(4487), + [anon_sym_BSLASHACRshort] = ACTIONS(4487), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), + [anon_sym_BSLASHacrlong] = ACTIONS(4487), + [anon_sym_BSLASHAcrlong] = ACTIONS(4487), + [anon_sym_BSLASHACRlong] = ACTIONS(4487), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), + [anon_sym_BSLASHacrfull] = ACTIONS(4487), + [anon_sym_BSLASHAcrfull] = ACTIONS(4487), + [anon_sym_BSLASHACRfull] = ACTIONS(4487), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), + [anon_sym_BSLASHacs] = ACTIONS(4487), + [anon_sym_BSLASHAcs] = ACTIONS(4487), + [anon_sym_BSLASHacsp] = ACTIONS(4487), + [anon_sym_BSLASHAcsp] = ACTIONS(4487), + [anon_sym_BSLASHacl] = ACTIONS(4487), + [anon_sym_BSLASHAcl] = ACTIONS(4487), + [anon_sym_BSLASHaclp] = ACTIONS(4487), + [anon_sym_BSLASHAclp] = ACTIONS(4487), + [anon_sym_BSLASHacf] = ACTIONS(4487), + [anon_sym_BSLASHAcf] = ACTIONS(4487), + [anon_sym_BSLASHacfp] = ACTIONS(4487), + [anon_sym_BSLASHAcfp] = ACTIONS(4487), + [anon_sym_BSLASHac] = ACTIONS(4487), + [anon_sym_BSLASHAc] = ACTIONS(4487), + [anon_sym_BSLASHacp] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), + [anon_sym_BSLASHcolor] = ACTIONS(4487), + [anon_sym_BSLASHcolorbox] = ACTIONS(4487), + [anon_sym_BSLASHtextcolor] = ACTIONS(4487), + [anon_sym_BSLASHpagecolor] = ACTIONS(4487), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), + [anon_sym_BSLASHtext] = ACTIONS(4487), + [anon_sym_BSLASHintertext] = ACTIONS(4487), + [anon_sym_shortintertext] = ACTIONS(4487), }, [356] = { - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(602), - [aux_sym__section_repeat4] = STATE(602), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHend] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, [357] = { - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(603), - [aux_sym__section_repeat5] = STATE(603), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(389), + [aux_sym__section_repeat6] = STATE(389), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHend] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, [358] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHend] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(4483), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), }, [359] = { - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(604), - [aux_sym__section_repeat6] = STATE(604), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(390), + [aux_sym__section_repeat5] = STATE(390), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHend] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, [360] = { - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(441), - [aux_sym__section_repeat6] = STATE(441), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHend] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(4483), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(4483), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), }, [361] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(448), + [aux_sym__section_repeat6] = STATE(448), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHitem] = ACTIONS(4483), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), }, [362] = { - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(442), - [aux_sym__section_repeat5] = STATE(442), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHend] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), - }, - [363] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [364] = { - [sym_curly_group] = STATE(894), - [sym_mixed_group] = STATE(894), - [aux_sym_generic_command_repeat1] = STATE(629), - [sym_command_name] = ACTIONS(4465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4465), - [anon_sym_LPAREN] = ACTIONS(4527), - [anon_sym_RPAREN] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4527), - [anon_sym_RBRACK] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_EQ] = ACTIONS(4463), - [anon_sym_BSLASHpart] = ACTIONS(4465), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddpart] = ACTIONS(4465), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4463), - [anon_sym_BSLASHchapter] = ACTIONS(4465), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddchap] = ACTIONS(4465), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsection] = ACTIONS(4465), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddsec] = ACTIONS(4465), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubsection] = ACTIONS(4465), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4465), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHparagraph] = ACTIONS(4465), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4465), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4463), - [anon_sym_BSLASHitem] = ACTIONS(4465), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4463), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(4465), - [sym_placeholder] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_CARET] = ACTIONS(4465), - [anon_sym__] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_PIPE] = ACTIONS(4465), - [anon_sym_COLON] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4465), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4463), - [anon_sym_DOLLAR] = ACTIONS(4465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4463), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4463), - [anon_sym_BSLASHbegin] = ACTIONS(4465), - [anon_sym_BSLASHusepackage] = ACTIONS(4465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4465), - [anon_sym_BSLASHinclude] = ACTIONS(4465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4465), - [anon_sym_BSLASHinput] = ACTIONS(4465), - [anon_sym_BSLASHsubfile] = ACTIONS(4465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4465), - [anon_sym_BSLASHbibliography] = ACTIONS(4465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4465), - [anon_sym_BSLASHincludesvg] = ACTIONS(4465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4465), - [anon_sym_BSLASHimport] = ACTIONS(4465), - [anon_sym_BSLASHsubimport] = ACTIONS(4465), - [anon_sym_BSLASHinputfrom] = ACTIONS(4465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4465), - [anon_sym_BSLASHincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHcaption] = ACTIONS(4465), - [anon_sym_BSLASHcite] = ACTIONS(4465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCite] = ACTIONS(4465), - [anon_sym_BSLASHnocite] = ACTIONS(4465), - [anon_sym_BSLASHcitet] = ACTIONS(4465), - [anon_sym_BSLASHcitep] = ACTIONS(4465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteauthor] = ACTIONS(4465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitetitle] = ACTIONS(4465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteyear] = ACTIONS(4465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitedate] = ACTIONS(4465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteurl] = ACTIONS(4465), - [anon_sym_BSLASHfullcite] = ACTIONS(4465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4465), - [anon_sym_BSLASHcitealt] = ACTIONS(4465), - [anon_sym_BSLASHcitealp] = ACTIONS(4465), - [anon_sym_BSLASHcitetext] = ACTIONS(4465), - [anon_sym_BSLASHparencite] = ACTIONS(4465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHParencite] = ACTIONS(4465), - [anon_sym_BSLASHfootcite] = ACTIONS(4465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4465), - [anon_sym_BSLASHtextcite] = ACTIONS(4465), - [anon_sym_BSLASHTextcite] = ACTIONS(4465), - [anon_sym_BSLASHsmartcite] = ACTIONS(4465), - [anon_sym_BSLASHSmartcite] = ACTIONS(4465), - [anon_sym_BSLASHsupercite] = ACTIONS(4465), - [anon_sym_BSLASHautocite] = ACTIONS(4465), - [anon_sym_BSLASHAutocite] = ACTIONS(4465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHvolcite] = ACTIONS(4465), - [anon_sym_BSLASHVolcite] = ACTIONS(4465), - [anon_sym_BSLASHpvolcite] = ACTIONS(4465), - [anon_sym_BSLASHPvolcite] = ACTIONS(4465), - [anon_sym_BSLASHfvolcite] = ACTIONS(4465), - [anon_sym_BSLASHftvolcite] = ACTIONS(4465), - [anon_sym_BSLASHsvolcite] = ACTIONS(4465), - [anon_sym_BSLASHSvolcite] = ACTIONS(4465), - [anon_sym_BSLASHtvolcite] = ACTIONS(4465), - [anon_sym_BSLASHTvolcite] = ACTIONS(4465), - [anon_sym_BSLASHavolcite] = ACTIONS(4465), - [anon_sym_BSLASHAvolcite] = ACTIONS(4465), - [anon_sym_BSLASHnotecite] = ACTIONS(4465), - [anon_sym_BSLASHNotecite] = ACTIONS(4465), - [anon_sym_BSLASHpnotecite] = ACTIONS(4465), - [anon_sym_BSLASHPnotecite] = ACTIONS(4465), - [anon_sym_BSLASHfnotecite] = ACTIONS(4465), - [anon_sym_BSLASHlabel] = ACTIONS(4465), - [anon_sym_BSLASHref] = ACTIONS(4465), - [anon_sym_BSLASHeqref] = ACTIONS(4465), - [anon_sym_BSLASHvref] = ACTIONS(4465), - [anon_sym_BSLASHVref] = ACTIONS(4465), - [anon_sym_BSLASHautoref] = ACTIONS(4465), - [anon_sym_BSLASHpageref] = ACTIONS(4465), - [anon_sym_BSLASHcref] = ACTIONS(4465), - [anon_sym_BSLASHCref] = ACTIONS(4465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnameCref] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHlabelcref] = ACTIONS(4465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCrefrange] = ACTIONS(4465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnewlabel] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4463), - [anon_sym_BSLASHdef] = ACTIONS(4465), - [anon_sym_BSLASHlet] = ACTIONS(4465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4465), - [anon_sym_BSLASHgls] = ACTIONS(4465), - [anon_sym_BSLASHGls] = ACTIONS(4465), - [anon_sym_BSLASHGLS] = ACTIONS(4465), - [anon_sym_BSLASHglspl] = ACTIONS(4465), - [anon_sym_BSLASHGlspl] = ACTIONS(4465), - [anon_sym_BSLASHGLSpl] = ACTIONS(4465), - [anon_sym_BSLASHglsdisp] = ACTIONS(4465), - [anon_sym_BSLASHglslink] = ACTIONS(4465), - [anon_sym_BSLASHglstext] = ACTIONS(4465), - [anon_sym_BSLASHGlstext] = ACTIONS(4465), - [anon_sym_BSLASHGLStext] = ACTIONS(4465), - [anon_sym_BSLASHglsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4465), - [anon_sym_BSLASHglsplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSplural] = ACTIONS(4465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHglsname] = ACTIONS(4465), - [anon_sym_BSLASHGlsname] = ACTIONS(4465), - [anon_sym_BSLASHGLSname] = ACTIONS(4465), - [anon_sym_BSLASHglssymbol] = ACTIONS(4465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4465), - [anon_sym_BSLASHglsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4465), - [anon_sym_BSLASHglsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4465), - [anon_sym_BSLASHglsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4465), - [anon_sym_BSLASHglsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4465), - [anon_sym_BSLASHglsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4465), - [anon_sym_BSLASHnewacronym] = ACTIONS(4465), - [anon_sym_BSLASHacrshort] = ACTIONS(4465), - [anon_sym_BSLASHAcrshort] = ACTIONS(4465), - [anon_sym_BSLASHACRshort] = ACTIONS(4465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4465), - [anon_sym_BSLASHacrlong] = ACTIONS(4465), - [anon_sym_BSLASHAcrlong] = ACTIONS(4465), - [anon_sym_BSLASHACRlong] = ACTIONS(4465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4465), - [anon_sym_BSLASHacrfull] = ACTIONS(4465), - [anon_sym_BSLASHAcrfull] = ACTIONS(4465), - [anon_sym_BSLASHACRfull] = ACTIONS(4465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4465), - [anon_sym_BSLASHacs] = ACTIONS(4465), - [anon_sym_BSLASHAcs] = ACTIONS(4465), - [anon_sym_BSLASHacsp] = ACTIONS(4465), - [anon_sym_BSLASHAcsp] = ACTIONS(4465), - [anon_sym_BSLASHacl] = ACTIONS(4465), - [anon_sym_BSLASHAcl] = ACTIONS(4465), - [anon_sym_BSLASHaclp] = ACTIONS(4465), - [anon_sym_BSLASHAclp] = ACTIONS(4465), - [anon_sym_BSLASHacf] = ACTIONS(4465), - [anon_sym_BSLASHAcf] = ACTIONS(4465), - [anon_sym_BSLASHacfp] = ACTIONS(4465), - [anon_sym_BSLASHAcfp] = ACTIONS(4465), - [anon_sym_BSLASHac] = ACTIONS(4465), - [anon_sym_BSLASHAc] = ACTIONS(4465), - [anon_sym_BSLASHacp] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4465), - [anon_sym_BSLASHcolor] = ACTIONS(4465), - [anon_sym_BSLASHcolorbox] = ACTIONS(4465), - [anon_sym_BSLASHtextcolor] = ACTIONS(4465), - [anon_sym_BSLASHpagecolor] = ACTIONS(4465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4465), - }, - [365] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(4445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4443), - [anon_sym_RPAREN] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4443), - [anon_sym_RBRACK] = ACTIONS(4443), - [anon_sym_COMMA] = ACTIONS(4443), - [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_BSLASHpart] = ACTIONS(4445), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddpart] = ACTIONS(4445), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4443), - [anon_sym_BSLASHchapter] = ACTIONS(4445), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddchap] = ACTIONS(4445), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsection] = ACTIONS(4445), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddsec] = ACTIONS(4445), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubsection] = ACTIONS(4445), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHparagraph] = ACTIONS(4445), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4443), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(4443), - [sym_word] = ACTIONS(4445), - [sym_placeholder] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4445), - [anon_sym_DASH] = ACTIONS(4445), - [anon_sym_STAR] = ACTIONS(4445), - [anon_sym_SLASH] = ACTIONS(4445), - [anon_sym_CARET] = ACTIONS(4445), - [anon_sym__] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4445), - [anon_sym_GT] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4445), - [anon_sym_PIPE] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(4445), - [anon_sym_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4443), - [anon_sym_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4443), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4443), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4443), - [anon_sym_BSLASHbegin] = ACTIONS(4445), - [anon_sym_BSLASHusepackage] = ACTIONS(4445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4445), - [anon_sym_BSLASHinclude] = ACTIONS(4445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4445), - [anon_sym_BSLASHinput] = ACTIONS(4445), - [anon_sym_BSLASHsubfile] = ACTIONS(4445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4445), - [anon_sym_BSLASHbibliography] = ACTIONS(4445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4445), - [anon_sym_BSLASHincludesvg] = ACTIONS(4445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4445), - [anon_sym_BSLASHimport] = ACTIONS(4445), - [anon_sym_BSLASHsubimport] = ACTIONS(4445), - [anon_sym_BSLASHinputfrom] = ACTIONS(4445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4445), - [anon_sym_BSLASHincludefrom] = ACTIONS(4445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4445), - [anon_sym_BSLASHcaption] = ACTIONS(4445), - [anon_sym_BSLASHcite] = ACTIONS(4445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCite] = ACTIONS(4445), - [anon_sym_BSLASHnocite] = ACTIONS(4445), - [anon_sym_BSLASHcitet] = ACTIONS(4445), - [anon_sym_BSLASHcitep] = ACTIONS(4445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteauthor] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitetitle] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteyear] = ACTIONS(4445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitedate] = ACTIONS(4445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteurl] = ACTIONS(4445), - [anon_sym_BSLASHfullcite] = ACTIONS(4445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4445), - [anon_sym_BSLASHcitealt] = ACTIONS(4445), - [anon_sym_BSLASHcitealp] = ACTIONS(4445), - [anon_sym_BSLASHcitetext] = ACTIONS(4445), - [anon_sym_BSLASHparencite] = ACTIONS(4445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHParencite] = ACTIONS(4445), - [anon_sym_BSLASHfootcite] = ACTIONS(4445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4445), - [anon_sym_BSLASHtextcite] = ACTIONS(4445), - [anon_sym_BSLASHTextcite] = ACTIONS(4445), - [anon_sym_BSLASHsmartcite] = ACTIONS(4445), - [anon_sym_BSLASHSmartcite] = ACTIONS(4445), - [anon_sym_BSLASHsupercite] = ACTIONS(4445), - [anon_sym_BSLASHautocite] = ACTIONS(4445), - [anon_sym_BSLASHAutocite] = ACTIONS(4445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHvolcite] = ACTIONS(4445), - [anon_sym_BSLASHVolcite] = ACTIONS(4445), - [anon_sym_BSLASHpvolcite] = ACTIONS(4445), - [anon_sym_BSLASHPvolcite] = ACTIONS(4445), - [anon_sym_BSLASHfvolcite] = ACTIONS(4445), - [anon_sym_BSLASHftvolcite] = ACTIONS(4445), - [anon_sym_BSLASHsvolcite] = ACTIONS(4445), - [anon_sym_BSLASHSvolcite] = ACTIONS(4445), - [anon_sym_BSLASHtvolcite] = ACTIONS(4445), - [anon_sym_BSLASHTvolcite] = ACTIONS(4445), - [anon_sym_BSLASHavolcite] = ACTIONS(4445), - [anon_sym_BSLASHAvolcite] = ACTIONS(4445), - [anon_sym_BSLASHnotecite] = ACTIONS(4445), - [anon_sym_BSLASHNotecite] = ACTIONS(4445), - [anon_sym_BSLASHpnotecite] = ACTIONS(4445), - [anon_sym_BSLASHPnotecite] = ACTIONS(4445), - [anon_sym_BSLASHfnotecite] = ACTIONS(4445), - [anon_sym_BSLASHlabel] = ACTIONS(4445), - [anon_sym_BSLASHref] = ACTIONS(4445), - [anon_sym_BSLASHeqref] = ACTIONS(4445), - [anon_sym_BSLASHvref] = ACTIONS(4445), - [anon_sym_BSLASHVref] = ACTIONS(4445), - [anon_sym_BSLASHautoref] = ACTIONS(4445), - [anon_sym_BSLASHpageref] = ACTIONS(4445), - [anon_sym_BSLASHcref] = ACTIONS(4445), - [anon_sym_BSLASHCref] = ACTIONS(4445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4443), - [anon_sym_BSLASHnamecref] = ACTIONS(4445), - [anon_sym_BSLASHnameCref] = ACTIONS(4445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4445), - [anon_sym_BSLASHlabelcref] = ACTIONS(4445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4445), - [anon_sym_BSLASHcrefrange] = ACTIONS(4445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCrefrange] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4443), - [anon_sym_BSLASHnewlabel] = ACTIONS(4445), - [anon_sym_BSLASHnewcommand] = ACTIONS(4445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4443), - [anon_sym_BSLASHdef] = ACTIONS(4445), - [anon_sym_BSLASHlet] = ACTIONS(4445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4445), - [anon_sym_BSLASHgls] = ACTIONS(4445), - [anon_sym_BSLASHGls] = ACTIONS(4445), - [anon_sym_BSLASHGLS] = ACTIONS(4445), - [anon_sym_BSLASHglspl] = ACTIONS(4445), - [anon_sym_BSLASHGlspl] = ACTIONS(4445), - [anon_sym_BSLASHGLSpl] = ACTIONS(4445), - [anon_sym_BSLASHglsdisp] = ACTIONS(4445), - [anon_sym_BSLASHglslink] = ACTIONS(4445), - [anon_sym_BSLASHglstext] = ACTIONS(4445), - [anon_sym_BSLASHGlstext] = ACTIONS(4445), - [anon_sym_BSLASHGLStext] = ACTIONS(4445), - [anon_sym_BSLASHglsfirst] = ACTIONS(4445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4445), - [anon_sym_BSLASHglsplural] = ACTIONS(4445), - [anon_sym_BSLASHGlsplural] = ACTIONS(4445), - [anon_sym_BSLASHGLSplural] = ACTIONS(4445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHglsname] = ACTIONS(4445), - [anon_sym_BSLASHGlsname] = ACTIONS(4445), - [anon_sym_BSLASHGLSname] = ACTIONS(4445), - [anon_sym_BSLASHglssymbol] = ACTIONS(4445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4445), - [anon_sym_BSLASHglsdesc] = ACTIONS(4445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4445), - [anon_sym_BSLASHglsuseri] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4445), - [anon_sym_BSLASHglsuserii] = ACTIONS(4445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4445), - [anon_sym_BSLASHglsuserv] = ACTIONS(4445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4445), - [anon_sym_BSLASHglsuservi] = ACTIONS(4445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4445), - [anon_sym_BSLASHnewacronym] = ACTIONS(4445), - [anon_sym_BSLASHacrshort] = ACTIONS(4445), - [anon_sym_BSLASHAcrshort] = ACTIONS(4445), - [anon_sym_BSLASHACRshort] = ACTIONS(4445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4445), - [anon_sym_BSLASHacrlong] = ACTIONS(4445), - [anon_sym_BSLASHAcrlong] = ACTIONS(4445), - [anon_sym_BSLASHACRlong] = ACTIONS(4445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4445), - [anon_sym_BSLASHacrfull] = ACTIONS(4445), - [anon_sym_BSLASHAcrfull] = ACTIONS(4445), - [anon_sym_BSLASHACRfull] = ACTIONS(4445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4445), - [anon_sym_BSLASHacs] = ACTIONS(4445), - [anon_sym_BSLASHAcs] = ACTIONS(4445), - [anon_sym_BSLASHacsp] = ACTIONS(4445), - [anon_sym_BSLASHAcsp] = ACTIONS(4445), - [anon_sym_BSLASHacl] = ACTIONS(4445), - [anon_sym_BSLASHAcl] = ACTIONS(4445), - [anon_sym_BSLASHaclp] = ACTIONS(4445), - [anon_sym_BSLASHAclp] = ACTIONS(4445), - [anon_sym_BSLASHacf] = ACTIONS(4445), - [anon_sym_BSLASHAcf] = ACTIONS(4445), - [anon_sym_BSLASHacfp] = ACTIONS(4445), - [anon_sym_BSLASHAcfp] = ACTIONS(4445), - [anon_sym_BSLASHac] = ACTIONS(4445), - [anon_sym_BSLASHAc] = ACTIONS(4445), - [anon_sym_BSLASHacp] = ACTIONS(4445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4445), - [anon_sym_BSLASHcolor] = ACTIONS(4445), - [anon_sym_BSLASHcolorbox] = ACTIONS(4445), - [anon_sym_BSLASHtextcolor] = ACTIONS(4445), - [anon_sym_BSLASHpagecolor] = ACTIONS(4445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4445), - }, - [366] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHend] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [367] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(4395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_BSLASHpart] = ACTIONS(4395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddpart] = ACTIONS(4395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHchapter] = ACTIONS(4395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddchap] = ACTIONS(4395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsection] = ACTIONS(4395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddsec] = ACTIONS(4395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHparagraph] = ACTIONS(4395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4395), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(4393), - [sym_word] = ACTIONS(4395), - [sym_placeholder] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym__] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_PIPE] = ACTIONS(4395), - [anon_sym_COLON] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4393), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4393), - [anon_sym_BSLASHbegin] = ACTIONS(4395), - [anon_sym_BSLASHusepackage] = ACTIONS(4395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4395), - [anon_sym_BSLASHinclude] = ACTIONS(4395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4395), - [anon_sym_BSLASHinput] = ACTIONS(4395), - [anon_sym_BSLASHsubfile] = ACTIONS(4395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4395), - [anon_sym_BSLASHbibliography] = ACTIONS(4395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4395), - [anon_sym_BSLASHincludesvg] = ACTIONS(4395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4395), - [anon_sym_BSLASHsubimport] = ACTIONS(4395), - [anon_sym_BSLASHinputfrom] = ACTIONS(4395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4395), - [anon_sym_BSLASHincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHcaption] = ACTIONS(4395), - [anon_sym_BSLASHcite] = ACTIONS(4395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCite] = ACTIONS(4395), - [anon_sym_BSLASHnocite] = ACTIONS(4395), - [anon_sym_BSLASHcitet] = ACTIONS(4395), - [anon_sym_BSLASHcitep] = ACTIONS(4395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteauthor] = ACTIONS(4395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitetitle] = ACTIONS(4395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteyear] = ACTIONS(4395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitedate] = ACTIONS(4395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteurl] = ACTIONS(4395), - [anon_sym_BSLASHfullcite] = ACTIONS(4395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4395), - [anon_sym_BSLASHcitealt] = ACTIONS(4395), - [anon_sym_BSLASHcitealp] = ACTIONS(4395), - [anon_sym_BSLASHcitetext] = ACTIONS(4395), - [anon_sym_BSLASHparencite] = ACTIONS(4395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHParencite] = ACTIONS(4395), - [anon_sym_BSLASHfootcite] = ACTIONS(4395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4395), - [anon_sym_BSLASHtextcite] = ACTIONS(4395), - [anon_sym_BSLASHTextcite] = ACTIONS(4395), - [anon_sym_BSLASHsmartcite] = ACTIONS(4395), - [anon_sym_BSLASHSmartcite] = ACTIONS(4395), - [anon_sym_BSLASHsupercite] = ACTIONS(4395), - [anon_sym_BSLASHautocite] = ACTIONS(4395), - [anon_sym_BSLASHAutocite] = ACTIONS(4395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHvolcite] = ACTIONS(4395), - [anon_sym_BSLASHVolcite] = ACTIONS(4395), - [anon_sym_BSLASHpvolcite] = ACTIONS(4395), - [anon_sym_BSLASHPvolcite] = ACTIONS(4395), - [anon_sym_BSLASHfvolcite] = ACTIONS(4395), - [anon_sym_BSLASHftvolcite] = ACTIONS(4395), - [anon_sym_BSLASHsvolcite] = ACTIONS(4395), - [anon_sym_BSLASHSvolcite] = ACTIONS(4395), - [anon_sym_BSLASHtvolcite] = ACTIONS(4395), - [anon_sym_BSLASHTvolcite] = ACTIONS(4395), - [anon_sym_BSLASHavolcite] = ACTIONS(4395), - [anon_sym_BSLASHAvolcite] = ACTIONS(4395), - [anon_sym_BSLASHnotecite] = ACTIONS(4395), - [anon_sym_BSLASHNotecite] = ACTIONS(4395), - [anon_sym_BSLASHpnotecite] = ACTIONS(4395), - [anon_sym_BSLASHPnotecite] = ACTIONS(4395), - [anon_sym_BSLASHfnotecite] = ACTIONS(4395), - [anon_sym_BSLASHlabel] = ACTIONS(4395), - [anon_sym_BSLASHref] = ACTIONS(4395), - [anon_sym_BSLASHeqref] = ACTIONS(4395), - [anon_sym_BSLASHvref] = ACTIONS(4395), - [anon_sym_BSLASHVref] = ACTIONS(4395), - [anon_sym_BSLASHautoref] = ACTIONS(4395), - [anon_sym_BSLASHpageref] = ACTIONS(4395), - [anon_sym_BSLASHcref] = ACTIONS(4395), - [anon_sym_BSLASHCref] = ACTIONS(4395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnameCref] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHlabelcref] = ACTIONS(4395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCrefrange] = ACTIONS(4395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnewlabel] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4393), - [anon_sym_BSLASHdef] = ACTIONS(4395), - [anon_sym_BSLASHlet] = ACTIONS(4395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4395), - [anon_sym_BSLASHgls] = ACTIONS(4395), - [anon_sym_BSLASHGls] = ACTIONS(4395), - [anon_sym_BSLASHGLS] = ACTIONS(4395), - [anon_sym_BSLASHglspl] = ACTIONS(4395), - [anon_sym_BSLASHGlspl] = ACTIONS(4395), - [anon_sym_BSLASHGLSpl] = ACTIONS(4395), - [anon_sym_BSLASHglsdisp] = ACTIONS(4395), - [anon_sym_BSLASHglslink] = ACTIONS(4395), - [anon_sym_BSLASHglstext] = ACTIONS(4395), - [anon_sym_BSLASHGlstext] = ACTIONS(4395), - [anon_sym_BSLASHGLStext] = ACTIONS(4395), - [anon_sym_BSLASHglsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4395), - [anon_sym_BSLASHglsplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSplural] = ACTIONS(4395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHglsname] = ACTIONS(4395), - [anon_sym_BSLASHGlsname] = ACTIONS(4395), - [anon_sym_BSLASHGLSname] = ACTIONS(4395), - [anon_sym_BSLASHglssymbol] = ACTIONS(4395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4395), - [anon_sym_BSLASHglsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4395), - [anon_sym_BSLASHglsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4395), - [anon_sym_BSLASHglsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4395), - [anon_sym_BSLASHglsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4395), - [anon_sym_BSLASHglsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4395), - [anon_sym_BSLASHnewacronym] = ACTIONS(4395), - [anon_sym_BSLASHacrshort] = ACTIONS(4395), - [anon_sym_BSLASHAcrshort] = ACTIONS(4395), - [anon_sym_BSLASHACRshort] = ACTIONS(4395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4395), - [anon_sym_BSLASHacrlong] = ACTIONS(4395), - [anon_sym_BSLASHAcrlong] = ACTIONS(4395), - [anon_sym_BSLASHACRlong] = ACTIONS(4395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4395), - [anon_sym_BSLASHacrfull] = ACTIONS(4395), - [anon_sym_BSLASHAcrfull] = ACTIONS(4395), - [anon_sym_BSLASHACRfull] = ACTIONS(4395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4395), - [anon_sym_BSLASHacs] = ACTIONS(4395), - [anon_sym_BSLASHAcs] = ACTIONS(4395), - [anon_sym_BSLASHacsp] = ACTIONS(4395), - [anon_sym_BSLASHAcsp] = ACTIONS(4395), - [anon_sym_BSLASHacl] = ACTIONS(4395), - [anon_sym_BSLASHAcl] = ACTIONS(4395), - [anon_sym_BSLASHaclp] = ACTIONS(4395), - [anon_sym_BSLASHAclp] = ACTIONS(4395), - [anon_sym_BSLASHacf] = ACTIONS(4395), - [anon_sym_BSLASHAcf] = ACTIONS(4395), - [anon_sym_BSLASHacfp] = ACTIONS(4395), - [anon_sym_BSLASHAcfp] = ACTIONS(4395), - [anon_sym_BSLASHac] = ACTIONS(4395), - [anon_sym_BSLASHAc] = ACTIONS(4395), - [anon_sym_BSLASHacp] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4395), - [anon_sym_BSLASHcolor] = ACTIONS(4395), - [anon_sym_BSLASHcolorbox] = ACTIONS(4395), - [anon_sym_BSLASHtextcolor] = ACTIONS(4395), - [anon_sym_BSLASHpagecolor] = ACTIONS(4395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4395), - }, - [368] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHend] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [369] = { - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(441), - [aux_sym__section_repeat6] = STATE(441), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHend] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [370] = { - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(442), - [aux_sym__section_repeat5] = STATE(442), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHend] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [371] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(443), - [aux_sym__section_repeat4] = STATE(443), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHend] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [372] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(4395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_BSLASHpart] = ACTIONS(4395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddpart] = ACTIONS(4395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHchapter] = ACTIONS(4395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddchap] = ACTIONS(4395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsection] = ACTIONS(4395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddsec] = ACTIONS(4395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHparagraph] = ACTIONS(4395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(4395), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [sym_word] = ACTIONS(4395), - [sym_placeholder] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym__] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_PIPE] = ACTIONS(4395), - [anon_sym_COLON] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4393), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4393), - [anon_sym_BSLASHbegin] = ACTIONS(4395), - [anon_sym_BSLASHusepackage] = ACTIONS(4395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4395), - [anon_sym_BSLASHinclude] = ACTIONS(4395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4395), - [anon_sym_BSLASHinput] = ACTIONS(4395), - [anon_sym_BSLASHsubfile] = ACTIONS(4395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4395), - [anon_sym_BSLASHbibliography] = ACTIONS(4395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4395), - [anon_sym_BSLASHincludesvg] = ACTIONS(4395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4395), - [anon_sym_BSLASHsubimport] = ACTIONS(4395), - [anon_sym_BSLASHinputfrom] = ACTIONS(4395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4395), - [anon_sym_BSLASHincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHcaption] = ACTIONS(4395), - [anon_sym_BSLASHcite] = ACTIONS(4395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCite] = ACTIONS(4395), - [anon_sym_BSLASHnocite] = ACTIONS(4395), - [anon_sym_BSLASHcitet] = ACTIONS(4395), - [anon_sym_BSLASHcitep] = ACTIONS(4395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteauthor] = ACTIONS(4395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitetitle] = ACTIONS(4395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteyear] = ACTIONS(4395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitedate] = ACTIONS(4395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteurl] = ACTIONS(4395), - [anon_sym_BSLASHfullcite] = ACTIONS(4395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4395), - [anon_sym_BSLASHcitealt] = ACTIONS(4395), - [anon_sym_BSLASHcitealp] = ACTIONS(4395), - [anon_sym_BSLASHcitetext] = ACTIONS(4395), - [anon_sym_BSLASHparencite] = ACTIONS(4395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHParencite] = ACTIONS(4395), - [anon_sym_BSLASHfootcite] = ACTIONS(4395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4395), - [anon_sym_BSLASHtextcite] = ACTIONS(4395), - [anon_sym_BSLASHTextcite] = ACTIONS(4395), - [anon_sym_BSLASHsmartcite] = ACTIONS(4395), - [anon_sym_BSLASHSmartcite] = ACTIONS(4395), - [anon_sym_BSLASHsupercite] = ACTIONS(4395), - [anon_sym_BSLASHautocite] = ACTIONS(4395), - [anon_sym_BSLASHAutocite] = ACTIONS(4395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHvolcite] = ACTIONS(4395), - [anon_sym_BSLASHVolcite] = ACTIONS(4395), - [anon_sym_BSLASHpvolcite] = ACTIONS(4395), - [anon_sym_BSLASHPvolcite] = ACTIONS(4395), - [anon_sym_BSLASHfvolcite] = ACTIONS(4395), - [anon_sym_BSLASHftvolcite] = ACTIONS(4395), - [anon_sym_BSLASHsvolcite] = ACTIONS(4395), - [anon_sym_BSLASHSvolcite] = ACTIONS(4395), - [anon_sym_BSLASHtvolcite] = ACTIONS(4395), - [anon_sym_BSLASHTvolcite] = ACTIONS(4395), - [anon_sym_BSLASHavolcite] = ACTIONS(4395), - [anon_sym_BSLASHAvolcite] = ACTIONS(4395), - [anon_sym_BSLASHnotecite] = ACTIONS(4395), - [anon_sym_BSLASHNotecite] = ACTIONS(4395), - [anon_sym_BSLASHpnotecite] = ACTIONS(4395), - [anon_sym_BSLASHPnotecite] = ACTIONS(4395), - [anon_sym_BSLASHfnotecite] = ACTIONS(4395), - [anon_sym_BSLASHlabel] = ACTIONS(4395), - [anon_sym_BSLASHref] = ACTIONS(4395), - [anon_sym_BSLASHeqref] = ACTIONS(4395), - [anon_sym_BSLASHvref] = ACTIONS(4395), - [anon_sym_BSLASHVref] = ACTIONS(4395), - [anon_sym_BSLASHautoref] = ACTIONS(4395), - [anon_sym_BSLASHpageref] = ACTIONS(4395), - [anon_sym_BSLASHcref] = ACTIONS(4395), - [anon_sym_BSLASHCref] = ACTIONS(4395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnameCref] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHlabelcref] = ACTIONS(4395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCrefrange] = ACTIONS(4395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnewlabel] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4393), - [anon_sym_BSLASHdef] = ACTIONS(4395), - [anon_sym_BSLASHlet] = ACTIONS(4395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4395), - [anon_sym_BSLASHgls] = ACTIONS(4395), - [anon_sym_BSLASHGls] = ACTIONS(4395), - [anon_sym_BSLASHGLS] = ACTIONS(4395), - [anon_sym_BSLASHglspl] = ACTIONS(4395), - [anon_sym_BSLASHGlspl] = ACTIONS(4395), - [anon_sym_BSLASHGLSpl] = ACTIONS(4395), - [anon_sym_BSLASHglsdisp] = ACTIONS(4395), - [anon_sym_BSLASHglslink] = ACTIONS(4395), - [anon_sym_BSLASHglstext] = ACTIONS(4395), - [anon_sym_BSLASHGlstext] = ACTIONS(4395), - [anon_sym_BSLASHGLStext] = ACTIONS(4395), - [anon_sym_BSLASHglsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4395), - [anon_sym_BSLASHglsplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSplural] = ACTIONS(4395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHglsname] = ACTIONS(4395), - [anon_sym_BSLASHGlsname] = ACTIONS(4395), - [anon_sym_BSLASHGLSname] = ACTIONS(4395), - [anon_sym_BSLASHglssymbol] = ACTIONS(4395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4395), - [anon_sym_BSLASHglsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4395), - [anon_sym_BSLASHglsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4395), - [anon_sym_BSLASHglsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4395), - [anon_sym_BSLASHglsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4395), - [anon_sym_BSLASHglsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4395), - [anon_sym_BSLASHnewacronym] = ACTIONS(4395), - [anon_sym_BSLASHacrshort] = ACTIONS(4395), - [anon_sym_BSLASHAcrshort] = ACTIONS(4395), - [anon_sym_BSLASHACRshort] = ACTIONS(4395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4395), - [anon_sym_BSLASHacrlong] = ACTIONS(4395), - [anon_sym_BSLASHAcrlong] = ACTIONS(4395), - [anon_sym_BSLASHACRlong] = ACTIONS(4395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4395), - [anon_sym_BSLASHacrfull] = ACTIONS(4395), - [anon_sym_BSLASHAcrfull] = ACTIONS(4395), - [anon_sym_BSLASHACRfull] = ACTIONS(4395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4395), - [anon_sym_BSLASHacs] = ACTIONS(4395), - [anon_sym_BSLASHAcs] = ACTIONS(4395), - [anon_sym_BSLASHacsp] = ACTIONS(4395), - [anon_sym_BSLASHAcsp] = ACTIONS(4395), - [anon_sym_BSLASHacl] = ACTIONS(4395), - [anon_sym_BSLASHAcl] = ACTIONS(4395), - [anon_sym_BSLASHaclp] = ACTIONS(4395), - [anon_sym_BSLASHAclp] = ACTIONS(4395), - [anon_sym_BSLASHacf] = ACTIONS(4395), - [anon_sym_BSLASHAcf] = ACTIONS(4395), - [anon_sym_BSLASHacfp] = ACTIONS(4395), - [anon_sym_BSLASHAcfp] = ACTIONS(4395), - [anon_sym_BSLASHac] = ACTIONS(4395), - [anon_sym_BSLASHAc] = ACTIONS(4395), - [anon_sym_BSLASHacp] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4395), - [anon_sym_BSLASHcolor] = ACTIONS(4395), - [anon_sym_BSLASHcolorbox] = ACTIONS(4395), - [anon_sym_BSLASHtextcolor] = ACTIONS(4395), - [anon_sym_BSLASHpagecolor] = ACTIONS(4395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4395), - }, - [373] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHend] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [374] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(4441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), - }, - [375] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHend] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [376] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(4441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(4441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4439), - [anon_sym_LBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), - }, - [377] = { - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(441), - [aux_sym__section_repeat6] = STATE(441), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHend] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [378] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(461), - [aux_sym__section_repeat6] = STATE(461), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHitem] = ACTIONS(4441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4439), - [anon_sym_LBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), - }, - [379] = { - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(442), - [aux_sym__section_repeat5] = STATE(442), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHend] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(4479), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHparagraph] = ACTIONS(4479), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [380] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), + [363] = { + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(392), + [aux_sym__section_repeat4] = STATE(392), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHend] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [381] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(443), - [aux_sym__section_repeat4] = STATE(443), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHend] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [382] = { - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(444), - [aux_sym__section_repeat3] = STATE(444), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHend] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [383] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHend] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [384] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHend] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [385] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), - }, - [386] = { - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(441), - [aux_sym__section_repeat6] = STATE(441), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHend] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [387] = { - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(442), - [aux_sym__section_repeat5] = STATE(442), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHend] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [388] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(443), - [aux_sym__section_repeat4] = STATE(443), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHend] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [389] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(461), - [aux_sym__section_repeat6] = STATE(461), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), - }, - [390] = { - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(444), - [aux_sym__section_repeat3] = STATE(444), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHend] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [391] = { - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(445), - [aux_sym__section_repeat2] = STATE(445), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHend] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [392] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(466), - [aux_sym__section_repeat5] = STATE(466), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), - }, - [393] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [394] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [395] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(461), - [aux_sym__section_repeat6] = STATE(461), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [396] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(466), - [aux_sym__section_repeat5] = STATE(466), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [397] = { - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(470), - [aux_sym__section_repeat4] = STATE(470), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [398] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [399] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [400] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(461), - [aux_sym__section_repeat6] = STATE(461), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [401] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(466), - [aux_sym__section_repeat5] = STATE(466), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [402] = { - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(470), - [aux_sym__section_repeat4] = STATE(470), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [403] = { - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(480), - [aux_sym__section_repeat3] = STATE(480), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [404] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [405] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [406] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(461), - [aux_sym__section_repeat6] = STATE(461), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [407] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(466), - [aux_sym__section_repeat5] = STATE(466), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [408] = { - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(470), - [aux_sym__section_repeat4] = STATE(470), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [409] = { - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(480), - [aux_sym__section_repeat3] = STATE(480), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [410] = { - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(487), - [aux_sym__section_repeat2] = STATE(487), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [411] = { - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(600), - [aux_sym__section_repeat2] = STATE(600), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [412] = { - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(601), - [aux_sym__section_repeat3] = STATE(601), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [413] = { - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(602), - [aux_sym__section_repeat4] = STATE(602), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [414] = { - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(603), - [aux_sym__section_repeat5] = STATE(603), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [415] = { - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(604), - [aux_sym__section_repeat6] = STATE(604), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [416] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [417] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [418] = { - [sym_curly_group] = STATE(1168), - [sym_mixed_group] = STATE(1168), - [aux_sym_generic_command_repeat1] = STATE(453), - [sym_command_name] = ACTIONS(4449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(4529), - [anon_sym_RPAREN] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_RBRACK] = ACTIONS(4447), - [anon_sym_COMMA] = ACTIONS(4447), - [anon_sym_EQ] = ACTIONS(4447), - [anon_sym_BSLASHpart] = ACTIONS(4449), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddpart] = ACTIONS(4449), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4447), - [anon_sym_BSLASHchapter] = ACTIONS(4449), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddchap] = ACTIONS(4449), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsection] = ACTIONS(4449), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddsec] = ACTIONS(4449), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubsection] = ACTIONS(4449), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4449), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHparagraph] = ACTIONS(4449), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4449), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4447), - [anon_sym_BSLASHitem] = ACTIONS(4449), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(4449), - [sym_placeholder] = ACTIONS(4447), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [anon_sym_SLASH] = ACTIONS(4449), - [anon_sym_CARET] = ACTIONS(4449), - [anon_sym__] = ACTIONS(4449), - [anon_sym_LT] = ACTIONS(4449), - [anon_sym_GT] = ACTIONS(4449), - [anon_sym_BANG] = ACTIONS(4449), - [anon_sym_PIPE] = ACTIONS(4449), - [anon_sym_COLON] = ACTIONS(4449), - [anon_sym_SQUOTE] = ACTIONS(4449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4447), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4447), - [anon_sym_BSLASHbegin] = ACTIONS(4449), - [anon_sym_BSLASHusepackage] = ACTIONS(4449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4449), - [anon_sym_BSLASHinclude] = ACTIONS(4449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4449), - [anon_sym_BSLASHinput] = ACTIONS(4449), - [anon_sym_BSLASHsubfile] = ACTIONS(4449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4449), - [anon_sym_BSLASHbibliography] = ACTIONS(4449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4449), - [anon_sym_BSLASHincludesvg] = ACTIONS(4449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4449), - [anon_sym_BSLASHimport] = ACTIONS(4449), - [anon_sym_BSLASHsubimport] = ACTIONS(4449), - [anon_sym_BSLASHinputfrom] = ACTIONS(4449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4449), - [anon_sym_BSLASHincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHcaption] = ACTIONS(4449), - [anon_sym_BSLASHcite] = ACTIONS(4449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCite] = ACTIONS(4449), - [anon_sym_BSLASHnocite] = ACTIONS(4449), - [anon_sym_BSLASHcitet] = ACTIONS(4449), - [anon_sym_BSLASHcitep] = ACTIONS(4449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteyear] = ACTIONS(4449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitedate] = ACTIONS(4449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteurl] = ACTIONS(4449), - [anon_sym_BSLASHfullcite] = ACTIONS(4449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4449), - [anon_sym_BSLASHcitealt] = ACTIONS(4449), - [anon_sym_BSLASHcitealp] = ACTIONS(4449), - [anon_sym_BSLASHcitetext] = ACTIONS(4449), - [anon_sym_BSLASHparencite] = ACTIONS(4449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHParencite] = ACTIONS(4449), - [anon_sym_BSLASHfootcite] = ACTIONS(4449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4449), - [anon_sym_BSLASHtextcite] = ACTIONS(4449), - [anon_sym_BSLASHTextcite] = ACTIONS(4449), - [anon_sym_BSLASHsmartcite] = ACTIONS(4449), - [anon_sym_BSLASHSmartcite] = ACTIONS(4449), - [anon_sym_BSLASHsupercite] = ACTIONS(4449), - [anon_sym_BSLASHautocite] = ACTIONS(4449), - [anon_sym_BSLASHAutocite] = ACTIONS(4449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHvolcite] = ACTIONS(4449), - [anon_sym_BSLASHVolcite] = ACTIONS(4449), - [anon_sym_BSLASHpvolcite] = ACTIONS(4449), - [anon_sym_BSLASHPvolcite] = ACTIONS(4449), - [anon_sym_BSLASHfvolcite] = ACTIONS(4449), - [anon_sym_BSLASHftvolcite] = ACTIONS(4449), - [anon_sym_BSLASHsvolcite] = ACTIONS(4449), - [anon_sym_BSLASHSvolcite] = ACTIONS(4449), - [anon_sym_BSLASHtvolcite] = ACTIONS(4449), - [anon_sym_BSLASHTvolcite] = ACTIONS(4449), - [anon_sym_BSLASHavolcite] = ACTIONS(4449), - [anon_sym_BSLASHAvolcite] = ACTIONS(4449), - [anon_sym_BSLASHnotecite] = ACTIONS(4449), - [anon_sym_BSLASHNotecite] = ACTIONS(4449), - [anon_sym_BSLASHpnotecite] = ACTIONS(4449), - [anon_sym_BSLASHPnotecite] = ACTIONS(4449), - [anon_sym_BSLASHfnotecite] = ACTIONS(4449), - [anon_sym_BSLASHlabel] = ACTIONS(4449), - [anon_sym_BSLASHref] = ACTIONS(4449), - [anon_sym_BSLASHeqref] = ACTIONS(4449), - [anon_sym_BSLASHvref] = ACTIONS(4449), - [anon_sym_BSLASHVref] = ACTIONS(4449), - [anon_sym_BSLASHautoref] = ACTIONS(4449), - [anon_sym_BSLASHpageref] = ACTIONS(4449), - [anon_sym_BSLASHcref] = ACTIONS(4449), - [anon_sym_BSLASHCref] = ACTIONS(4449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnameCref] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHlabelcref] = ACTIONS(4449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnewlabel] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4447), - [anon_sym_BSLASHdef] = ACTIONS(4449), - [anon_sym_BSLASHlet] = ACTIONS(4449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4449), - [anon_sym_BSLASHgls] = ACTIONS(4449), - [anon_sym_BSLASHGls] = ACTIONS(4449), - [anon_sym_BSLASHGLS] = ACTIONS(4449), - [anon_sym_BSLASHglspl] = ACTIONS(4449), - [anon_sym_BSLASHGlspl] = ACTIONS(4449), - [anon_sym_BSLASHGLSpl] = ACTIONS(4449), - [anon_sym_BSLASHglsdisp] = ACTIONS(4449), - [anon_sym_BSLASHglslink] = ACTIONS(4449), - [anon_sym_BSLASHglstext] = ACTIONS(4449), - [anon_sym_BSLASHGlstext] = ACTIONS(4449), - [anon_sym_BSLASHGLStext] = ACTIONS(4449), - [anon_sym_BSLASHglsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4449), - [anon_sym_BSLASHglsplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSplural] = ACTIONS(4449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHglsname] = ACTIONS(4449), - [anon_sym_BSLASHGlsname] = ACTIONS(4449), - [anon_sym_BSLASHGLSname] = ACTIONS(4449), - [anon_sym_BSLASHglssymbol] = ACTIONS(4449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4449), - [anon_sym_BSLASHglsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4449), - [anon_sym_BSLASHglsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4449), - [anon_sym_BSLASHglsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4449), - [anon_sym_BSLASHglsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4449), - [anon_sym_BSLASHglsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4449), - [anon_sym_BSLASHnewacronym] = ACTIONS(4449), - [anon_sym_BSLASHacrshort] = ACTIONS(4449), - [anon_sym_BSLASHAcrshort] = ACTIONS(4449), - [anon_sym_BSLASHACRshort] = ACTIONS(4449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4449), - [anon_sym_BSLASHacrlong] = ACTIONS(4449), - [anon_sym_BSLASHAcrlong] = ACTIONS(4449), - [anon_sym_BSLASHACRlong] = ACTIONS(4449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4449), - [anon_sym_BSLASHacrfull] = ACTIONS(4449), - [anon_sym_BSLASHAcrfull] = ACTIONS(4449), - [anon_sym_BSLASHACRfull] = ACTIONS(4449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4449), - [anon_sym_BSLASHacs] = ACTIONS(4449), - [anon_sym_BSLASHAcs] = ACTIONS(4449), - [anon_sym_BSLASHacsp] = ACTIONS(4449), - [anon_sym_BSLASHAcsp] = ACTIONS(4449), - [anon_sym_BSLASHacl] = ACTIONS(4449), - [anon_sym_BSLASHAcl] = ACTIONS(4449), - [anon_sym_BSLASHaclp] = ACTIONS(4449), - [anon_sym_BSLASHAclp] = ACTIONS(4449), - [anon_sym_BSLASHacf] = ACTIONS(4449), - [anon_sym_BSLASHAcf] = ACTIONS(4449), - [anon_sym_BSLASHacfp] = ACTIONS(4449), - [anon_sym_BSLASHAcfp] = ACTIONS(4449), - [anon_sym_BSLASHac] = ACTIONS(4449), - [anon_sym_BSLASHAc] = ACTIONS(4449), - [anon_sym_BSLASHacp] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4449), - [anon_sym_BSLASHcolor] = ACTIONS(4449), - [anon_sym_BSLASHcolorbox] = ACTIONS(4449), - [anon_sym_BSLASHtextcolor] = ACTIONS(4449), - [anon_sym_BSLASHpagecolor] = ACTIONS(4449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4449), - }, - [419] = { - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(601), - [aux_sym__section_repeat3] = STATE(601), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [420] = { - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(602), - [aux_sym__section_repeat4] = STATE(602), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [421] = { - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(603), - [aux_sym__section_repeat5] = STATE(603), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [422] = { - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(604), - [aux_sym__section_repeat6] = STATE(604), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [423] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [424] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [425] = { - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(602), - [aux_sym__section_repeat4] = STATE(602), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [426] = { - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(603), - [aux_sym__section_repeat5] = STATE(603), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [427] = { - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(511), - [aux_sym__section_repeat1] = STATE(511), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHaddpart] = ACTIONS(185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(187), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [428] = { - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(512), - [aux_sym__section_repeat2] = STATE(512), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [429] = { - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(513), - [aux_sym__section_repeat3] = STATE(513), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [430] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(514), - [aux_sym__section_repeat4] = STATE(514), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [431] = { - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(515), - [aux_sym__section_repeat5] = STATE(515), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [432] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(516), - [aux_sym__section_repeat6] = STATE(516), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [433] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [434] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [435] = { - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(604), - [aux_sym__section_repeat6] = STATE(604), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [436] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [437] = { - [sym_curly_group] = STATE(961), - [sym_mixed_group] = STATE(961), - [aux_sym_generic_command_repeat1] = STATE(437), - [sym_command_name] = ACTIONS(4469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4469), - [anon_sym_LPAREN] = ACTIONS(4531), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4531), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_EQ] = ACTIONS(4467), - [anon_sym_BSLASHpart] = ACTIONS(4469), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddpart] = ACTIONS(4469), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4467), - [anon_sym_BSLASHchapter] = ACTIONS(4469), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddchap] = ACTIONS(4469), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsection] = ACTIONS(4469), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddsec] = ACTIONS(4469), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubsection] = ACTIONS(4469), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHparagraph] = ACTIONS(4469), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4467), - [anon_sym_BSLASHitem] = ACTIONS(4469), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(4534), - [sym_word] = ACTIONS(4469), - [sym_placeholder] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_CARET] = ACTIONS(4469), - [anon_sym__] = ACTIONS(4469), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_PIPE] = ACTIONS(4469), - [anon_sym_COLON] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4467), - [anon_sym_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4467), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4467), - [anon_sym_BSLASHbegin] = ACTIONS(4469), - [anon_sym_BSLASHusepackage] = ACTIONS(4469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4469), - [anon_sym_BSLASHinclude] = ACTIONS(4469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4469), - [anon_sym_BSLASHinput] = ACTIONS(4469), - [anon_sym_BSLASHsubfile] = ACTIONS(4469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4469), - [anon_sym_BSLASHbibliography] = ACTIONS(4469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4469), - [anon_sym_BSLASHincludesvg] = ACTIONS(4469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4469), - [anon_sym_BSLASHimport] = ACTIONS(4469), - [anon_sym_BSLASHsubimport] = ACTIONS(4469), - [anon_sym_BSLASHinputfrom] = ACTIONS(4469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4469), - [anon_sym_BSLASHincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHcaption] = ACTIONS(4469), - [anon_sym_BSLASHcite] = ACTIONS(4469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCite] = ACTIONS(4469), - [anon_sym_BSLASHnocite] = ACTIONS(4469), - [anon_sym_BSLASHcitet] = ACTIONS(4469), - [anon_sym_BSLASHcitep] = ACTIONS(4469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteauthor] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitetitle] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteyear] = ACTIONS(4469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitedate] = ACTIONS(4469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteurl] = ACTIONS(4469), - [anon_sym_BSLASHfullcite] = ACTIONS(4469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4469), - [anon_sym_BSLASHcitealt] = ACTIONS(4469), - [anon_sym_BSLASHcitealp] = ACTIONS(4469), - [anon_sym_BSLASHcitetext] = ACTIONS(4469), - [anon_sym_BSLASHparencite] = ACTIONS(4469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHParencite] = ACTIONS(4469), - [anon_sym_BSLASHfootcite] = ACTIONS(4469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4469), - [anon_sym_BSLASHtextcite] = ACTIONS(4469), - [anon_sym_BSLASHTextcite] = ACTIONS(4469), - [anon_sym_BSLASHsmartcite] = ACTIONS(4469), - [anon_sym_BSLASHSmartcite] = ACTIONS(4469), - [anon_sym_BSLASHsupercite] = ACTIONS(4469), - [anon_sym_BSLASHautocite] = ACTIONS(4469), - [anon_sym_BSLASHAutocite] = ACTIONS(4469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHvolcite] = ACTIONS(4469), - [anon_sym_BSLASHVolcite] = ACTIONS(4469), - [anon_sym_BSLASHpvolcite] = ACTIONS(4469), - [anon_sym_BSLASHPvolcite] = ACTIONS(4469), - [anon_sym_BSLASHfvolcite] = ACTIONS(4469), - [anon_sym_BSLASHftvolcite] = ACTIONS(4469), - [anon_sym_BSLASHsvolcite] = ACTIONS(4469), - [anon_sym_BSLASHSvolcite] = ACTIONS(4469), - [anon_sym_BSLASHtvolcite] = ACTIONS(4469), - [anon_sym_BSLASHTvolcite] = ACTIONS(4469), - [anon_sym_BSLASHavolcite] = ACTIONS(4469), - [anon_sym_BSLASHAvolcite] = ACTIONS(4469), - [anon_sym_BSLASHnotecite] = ACTIONS(4469), - [anon_sym_BSLASHNotecite] = ACTIONS(4469), - [anon_sym_BSLASHpnotecite] = ACTIONS(4469), - [anon_sym_BSLASHPnotecite] = ACTIONS(4469), - [anon_sym_BSLASHfnotecite] = ACTIONS(4469), - [anon_sym_BSLASHlabel] = ACTIONS(4469), - [anon_sym_BSLASHref] = ACTIONS(4469), - [anon_sym_BSLASHeqref] = ACTIONS(4469), - [anon_sym_BSLASHvref] = ACTIONS(4469), - [anon_sym_BSLASHVref] = ACTIONS(4469), - [anon_sym_BSLASHautoref] = ACTIONS(4469), - [anon_sym_BSLASHpageref] = ACTIONS(4469), - [anon_sym_BSLASHcref] = ACTIONS(4469), - [anon_sym_BSLASHCref] = ACTIONS(4469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnameCref] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHlabelcref] = ACTIONS(4469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCrefrange] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnewlabel] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4467), - [anon_sym_BSLASHdef] = ACTIONS(4469), - [anon_sym_BSLASHlet] = ACTIONS(4469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4469), - [anon_sym_BSLASHgls] = ACTIONS(4469), - [anon_sym_BSLASHGls] = ACTIONS(4469), - [anon_sym_BSLASHGLS] = ACTIONS(4469), - [anon_sym_BSLASHglspl] = ACTIONS(4469), - [anon_sym_BSLASHGlspl] = ACTIONS(4469), - [anon_sym_BSLASHGLSpl] = ACTIONS(4469), - [anon_sym_BSLASHglsdisp] = ACTIONS(4469), - [anon_sym_BSLASHglslink] = ACTIONS(4469), - [anon_sym_BSLASHglstext] = ACTIONS(4469), - [anon_sym_BSLASHGlstext] = ACTIONS(4469), - [anon_sym_BSLASHGLStext] = ACTIONS(4469), - [anon_sym_BSLASHglsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4469), - [anon_sym_BSLASHglsplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSplural] = ACTIONS(4469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHglsname] = ACTIONS(4469), - [anon_sym_BSLASHGlsname] = ACTIONS(4469), - [anon_sym_BSLASHGLSname] = ACTIONS(4469), - [anon_sym_BSLASHglssymbol] = ACTIONS(4469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4469), - [anon_sym_BSLASHglsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4469), - [anon_sym_BSLASHglsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4469), - [anon_sym_BSLASHglsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4469), - [anon_sym_BSLASHglsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4469), - [anon_sym_BSLASHglsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4469), - [anon_sym_BSLASHnewacronym] = ACTIONS(4469), - [anon_sym_BSLASHacrshort] = ACTIONS(4469), - [anon_sym_BSLASHAcrshort] = ACTIONS(4469), - [anon_sym_BSLASHACRshort] = ACTIONS(4469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4469), - [anon_sym_BSLASHacrlong] = ACTIONS(4469), - [anon_sym_BSLASHAcrlong] = ACTIONS(4469), - [anon_sym_BSLASHACRlong] = ACTIONS(4469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4469), - [anon_sym_BSLASHacrfull] = ACTIONS(4469), - [anon_sym_BSLASHAcrfull] = ACTIONS(4469), - [anon_sym_BSLASHACRfull] = ACTIONS(4469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4469), - [anon_sym_BSLASHacs] = ACTIONS(4469), - [anon_sym_BSLASHAcs] = ACTIONS(4469), - [anon_sym_BSLASHacsp] = ACTIONS(4469), - [anon_sym_BSLASHAcsp] = ACTIONS(4469), - [anon_sym_BSLASHacl] = ACTIONS(4469), - [anon_sym_BSLASHAcl] = ACTIONS(4469), - [anon_sym_BSLASHaclp] = ACTIONS(4469), - [anon_sym_BSLASHAclp] = ACTIONS(4469), - [anon_sym_BSLASHacf] = ACTIONS(4469), - [anon_sym_BSLASHAcf] = ACTIONS(4469), - [anon_sym_BSLASHacfp] = ACTIONS(4469), - [anon_sym_BSLASHAcfp] = ACTIONS(4469), - [anon_sym_BSLASHac] = ACTIONS(4469), - [anon_sym_BSLASHAc] = ACTIONS(4469), - [anon_sym_BSLASHacp] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4469), - [anon_sym_BSLASHcolor] = ACTIONS(4469), - [anon_sym_BSLASHcolorbox] = ACTIONS(4469), - [anon_sym_BSLASHtextcolor] = ACTIONS(4469), - [anon_sym_BSLASHpagecolor] = ACTIONS(4469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4469), - }, - [438] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [439] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(4455), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4453), - [anon_sym_RPAREN] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4453), - [anon_sym_RBRACK] = ACTIONS(4453), - [anon_sym_COMMA] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(4453), - [anon_sym_BSLASHpart] = ACTIONS(4455), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddpart] = ACTIONS(4455), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4453), - [anon_sym_BSLASHchapter] = ACTIONS(4455), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddchap] = ACTIONS(4455), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsection] = ACTIONS(4455), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddsec] = ACTIONS(4455), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubsection] = ACTIONS(4455), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHparagraph] = ACTIONS(4455), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4453), - [anon_sym_BSLASHitem] = ACTIONS(4537), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4540), - [anon_sym_LBRACE] = ACTIONS(4453), - [sym_word] = ACTIONS(4455), - [sym_placeholder] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(4455), - [anon_sym_STAR] = ACTIONS(4455), - [anon_sym_SLASH] = ACTIONS(4455), - [anon_sym_CARET] = ACTIONS(4455), - [anon_sym__] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4455), - [anon_sym_GT] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4455), - [anon_sym_PIPE] = ACTIONS(4455), - [anon_sym_COLON] = ACTIONS(4455), - [anon_sym_SQUOTE] = ACTIONS(4455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4453), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4453), - [anon_sym_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4453), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4453), - [anon_sym_BSLASHbegin] = ACTIONS(4455), - [anon_sym_BSLASHend] = ACTIONS(4455), - [anon_sym_BSLASHusepackage] = ACTIONS(4455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4455), - [anon_sym_BSLASHinclude] = ACTIONS(4455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4455), - [anon_sym_BSLASHinput] = ACTIONS(4455), - [anon_sym_BSLASHsubfile] = ACTIONS(4455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4455), - [anon_sym_BSLASHbibliography] = ACTIONS(4455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4455), - [anon_sym_BSLASHincludesvg] = ACTIONS(4455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4455), - [anon_sym_BSLASHimport] = ACTIONS(4455), - [anon_sym_BSLASHsubimport] = ACTIONS(4455), - [anon_sym_BSLASHinputfrom] = ACTIONS(4455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4455), - [anon_sym_BSLASHincludefrom] = ACTIONS(4455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4455), - [anon_sym_BSLASHcaption] = ACTIONS(4455), - [anon_sym_BSLASHcite] = ACTIONS(4455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCite] = ACTIONS(4455), - [anon_sym_BSLASHnocite] = ACTIONS(4455), - [anon_sym_BSLASHcitet] = ACTIONS(4455), - [anon_sym_BSLASHcitep] = ACTIONS(4455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteauthor] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitetitle] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteyear] = ACTIONS(4455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitedate] = ACTIONS(4455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteurl] = ACTIONS(4455), - [anon_sym_BSLASHfullcite] = ACTIONS(4455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4455), - [anon_sym_BSLASHcitealt] = ACTIONS(4455), - [anon_sym_BSLASHcitealp] = ACTIONS(4455), - [anon_sym_BSLASHcitetext] = ACTIONS(4455), - [anon_sym_BSLASHparencite] = ACTIONS(4455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHParencite] = ACTIONS(4455), - [anon_sym_BSLASHfootcite] = ACTIONS(4455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4455), - [anon_sym_BSLASHtextcite] = ACTIONS(4455), - [anon_sym_BSLASHTextcite] = ACTIONS(4455), - [anon_sym_BSLASHsmartcite] = ACTIONS(4455), - [anon_sym_BSLASHSmartcite] = ACTIONS(4455), - [anon_sym_BSLASHsupercite] = ACTIONS(4455), - [anon_sym_BSLASHautocite] = ACTIONS(4455), - [anon_sym_BSLASHAutocite] = ACTIONS(4455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHvolcite] = ACTIONS(4455), - [anon_sym_BSLASHVolcite] = ACTIONS(4455), - [anon_sym_BSLASHpvolcite] = ACTIONS(4455), - [anon_sym_BSLASHPvolcite] = ACTIONS(4455), - [anon_sym_BSLASHfvolcite] = ACTIONS(4455), - [anon_sym_BSLASHftvolcite] = ACTIONS(4455), - [anon_sym_BSLASHsvolcite] = ACTIONS(4455), - [anon_sym_BSLASHSvolcite] = ACTIONS(4455), - [anon_sym_BSLASHtvolcite] = ACTIONS(4455), - [anon_sym_BSLASHTvolcite] = ACTIONS(4455), - [anon_sym_BSLASHavolcite] = ACTIONS(4455), - [anon_sym_BSLASHAvolcite] = ACTIONS(4455), - [anon_sym_BSLASHnotecite] = ACTIONS(4455), - [anon_sym_BSLASHNotecite] = ACTIONS(4455), - [anon_sym_BSLASHpnotecite] = ACTIONS(4455), - [anon_sym_BSLASHPnotecite] = ACTIONS(4455), - [anon_sym_BSLASHfnotecite] = ACTIONS(4455), - [anon_sym_BSLASHlabel] = ACTIONS(4455), - [anon_sym_BSLASHref] = ACTIONS(4455), - [anon_sym_BSLASHeqref] = ACTIONS(4455), - [anon_sym_BSLASHvref] = ACTIONS(4455), - [anon_sym_BSLASHVref] = ACTIONS(4455), - [anon_sym_BSLASHautoref] = ACTIONS(4455), - [anon_sym_BSLASHpageref] = ACTIONS(4455), - [anon_sym_BSLASHcref] = ACTIONS(4455), - [anon_sym_BSLASHCref] = ACTIONS(4455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4453), - [anon_sym_BSLASHnamecref] = ACTIONS(4455), - [anon_sym_BSLASHnameCref] = ACTIONS(4455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4455), - [anon_sym_BSLASHlabelcref] = ACTIONS(4455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4455), - [anon_sym_BSLASHcrefrange] = ACTIONS(4455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCrefrange] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4453), - [anon_sym_BSLASHnewlabel] = ACTIONS(4455), - [anon_sym_BSLASHnewcommand] = ACTIONS(4455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4453), - [anon_sym_BSLASHdef] = ACTIONS(4455), - [anon_sym_BSLASHlet] = ACTIONS(4455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4455), - [anon_sym_BSLASHgls] = ACTIONS(4455), - [anon_sym_BSLASHGls] = ACTIONS(4455), - [anon_sym_BSLASHGLS] = ACTIONS(4455), - [anon_sym_BSLASHglspl] = ACTIONS(4455), - [anon_sym_BSLASHGlspl] = ACTIONS(4455), - [anon_sym_BSLASHGLSpl] = ACTIONS(4455), - [anon_sym_BSLASHglsdisp] = ACTIONS(4455), - [anon_sym_BSLASHglslink] = ACTIONS(4455), - [anon_sym_BSLASHglstext] = ACTIONS(4455), - [anon_sym_BSLASHGlstext] = ACTIONS(4455), - [anon_sym_BSLASHGLStext] = ACTIONS(4455), - [anon_sym_BSLASHglsfirst] = ACTIONS(4455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4455), - [anon_sym_BSLASHglsplural] = ACTIONS(4455), - [anon_sym_BSLASHGlsplural] = ACTIONS(4455), - [anon_sym_BSLASHGLSplural] = ACTIONS(4455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHglsname] = ACTIONS(4455), - [anon_sym_BSLASHGlsname] = ACTIONS(4455), - [anon_sym_BSLASHGLSname] = ACTIONS(4455), - [anon_sym_BSLASHglssymbol] = ACTIONS(4455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4455), - [anon_sym_BSLASHglsdesc] = ACTIONS(4455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4455), - [anon_sym_BSLASHglsuseri] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4455), - [anon_sym_BSLASHglsuserii] = ACTIONS(4455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4455), - [anon_sym_BSLASHglsuserv] = ACTIONS(4455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4455), - [anon_sym_BSLASHglsuservi] = ACTIONS(4455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4455), - [anon_sym_BSLASHnewacronym] = ACTIONS(4455), - [anon_sym_BSLASHacrshort] = ACTIONS(4455), - [anon_sym_BSLASHAcrshort] = ACTIONS(4455), - [anon_sym_BSLASHACRshort] = ACTIONS(4455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4455), - [anon_sym_BSLASHacrlong] = ACTIONS(4455), - [anon_sym_BSLASHAcrlong] = ACTIONS(4455), - [anon_sym_BSLASHACRlong] = ACTIONS(4455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4455), - [anon_sym_BSLASHacrfull] = ACTIONS(4455), - [anon_sym_BSLASHAcrfull] = ACTIONS(4455), - [anon_sym_BSLASHACRfull] = ACTIONS(4455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4455), - [anon_sym_BSLASHacs] = ACTIONS(4455), - [anon_sym_BSLASHAcs] = ACTIONS(4455), - [anon_sym_BSLASHacsp] = ACTIONS(4455), - [anon_sym_BSLASHAcsp] = ACTIONS(4455), - [anon_sym_BSLASHacl] = ACTIONS(4455), - [anon_sym_BSLASHAcl] = ACTIONS(4455), - [anon_sym_BSLASHaclp] = ACTIONS(4455), - [anon_sym_BSLASHAclp] = ACTIONS(4455), - [anon_sym_BSLASHacf] = ACTIONS(4455), - [anon_sym_BSLASHAcf] = ACTIONS(4455), - [anon_sym_BSLASHacfp] = ACTIONS(4455), - [anon_sym_BSLASHAcfp] = ACTIONS(4455), - [anon_sym_BSLASHac] = ACTIONS(4455), - [anon_sym_BSLASHAc] = ACTIONS(4455), - [anon_sym_BSLASHacp] = ACTIONS(4455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4455), - [anon_sym_BSLASHcolor] = ACTIONS(4455), - [anon_sym_BSLASHcolorbox] = ACTIONS(4455), - [anon_sym_BSLASHtextcolor] = ACTIONS(4455), - [anon_sym_BSLASHpagecolor] = ACTIONS(4455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4455), - }, - [440] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), + [364] = { + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -155656,8 +134116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), [anon_sym_BSLASHparagraph] = ACTIONS(4479), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4543), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4546), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), [anon_sym_BSLASHitem] = ACTIONS(4479), [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), [anon_sym_LBRACE] = ACTIONS(4477), @@ -155679,9 +134139,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), [anon_sym_DOLLAR] = ACTIONS(4479), [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4477), [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), [anon_sym_BSLASHbegin] = ACTIONS(4479), - [anon_sym_BSLASHend] = ACTIONS(4479), [anon_sym_BSLASHusepackage] = ACTIONS(4479), [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), @@ -155895,4363 +134355,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(4479), [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [441] = { - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(441), - [aux_sym__section_repeat6] = STATE(441), - [sym_command_name] = ACTIONS(4409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_RPAREN] = ACTIONS(4407), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_RBRACK] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_BSLASHpart] = ACTIONS(4409), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddpart] = ACTIONS(4409), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4407), - [anon_sym_BSLASHchapter] = ACTIONS(4409), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddchap] = ACTIONS(4409), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsection] = ACTIONS(4409), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddsec] = ACTIONS(4409), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsubsection] = ACTIONS(4409), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4409), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHparagraph] = ACTIONS(4549), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4552), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4409), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4407), - [anon_sym_BSLASHitem] = ACTIONS(4409), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4407), - [anon_sym_LBRACE] = ACTIONS(4407), - [sym_word] = ACTIONS(4409), - [sym_placeholder] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4409), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_STAR] = ACTIONS(4409), - [anon_sym_SLASH] = ACTIONS(4409), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym__] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4409), - [anon_sym_GT] = ACTIONS(4409), - [anon_sym_BANG] = ACTIONS(4409), - [anon_sym_PIPE] = ACTIONS(4409), - [anon_sym_COLON] = ACTIONS(4409), - [anon_sym_SQUOTE] = ACTIONS(4409), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4407), - [anon_sym_DOLLAR] = ACTIONS(4409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4407), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4407), - [anon_sym_BSLASHbegin] = ACTIONS(4409), - [anon_sym_BSLASHend] = ACTIONS(4409), - [anon_sym_BSLASHusepackage] = ACTIONS(4409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4409), - [anon_sym_BSLASHinclude] = ACTIONS(4409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4409), - [anon_sym_BSLASHinput] = ACTIONS(4409), - [anon_sym_BSLASHsubfile] = ACTIONS(4409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4409), - [anon_sym_BSLASHbibliography] = ACTIONS(4409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4409), - [anon_sym_BSLASHincludesvg] = ACTIONS(4409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4409), - [anon_sym_BSLASHimport] = ACTIONS(4409), - [anon_sym_BSLASHsubimport] = ACTIONS(4409), - [anon_sym_BSLASHinputfrom] = ACTIONS(4409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4409), - [anon_sym_BSLASHincludefrom] = ACTIONS(4409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4409), - [anon_sym_BSLASHcaption] = ACTIONS(4409), - [anon_sym_BSLASHcite] = ACTIONS(4409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCite] = ACTIONS(4409), - [anon_sym_BSLASHnocite] = ACTIONS(4409), - [anon_sym_BSLASHcitet] = ACTIONS(4409), - [anon_sym_BSLASHcitep] = ACTIONS(4409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteauthor] = ACTIONS(4409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitetitle] = ACTIONS(4409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteyear] = ACTIONS(4409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitedate] = ACTIONS(4409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteurl] = ACTIONS(4409), - [anon_sym_BSLASHfullcite] = ACTIONS(4409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4409), - [anon_sym_BSLASHcitealt] = ACTIONS(4409), - [anon_sym_BSLASHcitealp] = ACTIONS(4409), - [anon_sym_BSLASHcitetext] = ACTIONS(4409), - [anon_sym_BSLASHparencite] = ACTIONS(4409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHParencite] = ACTIONS(4409), - [anon_sym_BSLASHfootcite] = ACTIONS(4409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4409), - [anon_sym_BSLASHtextcite] = ACTIONS(4409), - [anon_sym_BSLASHTextcite] = ACTIONS(4409), - [anon_sym_BSLASHsmartcite] = ACTIONS(4409), - [anon_sym_BSLASHSmartcite] = ACTIONS(4409), - [anon_sym_BSLASHsupercite] = ACTIONS(4409), - [anon_sym_BSLASHautocite] = ACTIONS(4409), - [anon_sym_BSLASHAutocite] = ACTIONS(4409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHvolcite] = ACTIONS(4409), - [anon_sym_BSLASHVolcite] = ACTIONS(4409), - [anon_sym_BSLASHpvolcite] = ACTIONS(4409), - [anon_sym_BSLASHPvolcite] = ACTIONS(4409), - [anon_sym_BSLASHfvolcite] = ACTIONS(4409), - [anon_sym_BSLASHftvolcite] = ACTIONS(4409), - [anon_sym_BSLASHsvolcite] = ACTIONS(4409), - [anon_sym_BSLASHSvolcite] = ACTIONS(4409), - [anon_sym_BSLASHtvolcite] = ACTIONS(4409), - [anon_sym_BSLASHTvolcite] = ACTIONS(4409), - [anon_sym_BSLASHavolcite] = ACTIONS(4409), - [anon_sym_BSLASHAvolcite] = ACTIONS(4409), - [anon_sym_BSLASHnotecite] = ACTIONS(4409), - [anon_sym_BSLASHNotecite] = ACTIONS(4409), - [anon_sym_BSLASHpnotecite] = ACTIONS(4409), - [anon_sym_BSLASHPnotecite] = ACTIONS(4409), - [anon_sym_BSLASHfnotecite] = ACTIONS(4409), - [anon_sym_BSLASHlabel] = ACTIONS(4409), - [anon_sym_BSLASHref] = ACTIONS(4409), - [anon_sym_BSLASHeqref] = ACTIONS(4409), - [anon_sym_BSLASHvref] = ACTIONS(4409), - [anon_sym_BSLASHVref] = ACTIONS(4409), - [anon_sym_BSLASHautoref] = ACTIONS(4409), - [anon_sym_BSLASHpageref] = ACTIONS(4409), - [anon_sym_BSLASHcref] = ACTIONS(4409), - [anon_sym_BSLASHCref] = ACTIONS(4409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4407), - [anon_sym_BSLASHnamecref] = ACTIONS(4409), - [anon_sym_BSLASHnameCref] = ACTIONS(4409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4409), - [anon_sym_BSLASHlabelcref] = ACTIONS(4409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4409), - [anon_sym_BSLASHcrefrange] = ACTIONS(4409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCrefrange] = ACTIONS(4409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4407), - [anon_sym_BSLASHnewlabel] = ACTIONS(4409), - [anon_sym_BSLASHnewcommand] = ACTIONS(4409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4407), - [anon_sym_BSLASHdef] = ACTIONS(4409), - [anon_sym_BSLASHlet] = ACTIONS(4409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4409), - [anon_sym_BSLASHgls] = ACTIONS(4409), - [anon_sym_BSLASHGls] = ACTIONS(4409), - [anon_sym_BSLASHGLS] = ACTIONS(4409), - [anon_sym_BSLASHglspl] = ACTIONS(4409), - [anon_sym_BSLASHGlspl] = ACTIONS(4409), - [anon_sym_BSLASHGLSpl] = ACTIONS(4409), - [anon_sym_BSLASHglsdisp] = ACTIONS(4409), - [anon_sym_BSLASHglslink] = ACTIONS(4409), - [anon_sym_BSLASHglstext] = ACTIONS(4409), - [anon_sym_BSLASHGlstext] = ACTIONS(4409), - [anon_sym_BSLASHGLStext] = ACTIONS(4409), - [anon_sym_BSLASHglsfirst] = ACTIONS(4409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4409), - [anon_sym_BSLASHglsplural] = ACTIONS(4409), - [anon_sym_BSLASHGlsplural] = ACTIONS(4409), - [anon_sym_BSLASHGLSplural] = ACTIONS(4409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHglsname] = ACTIONS(4409), - [anon_sym_BSLASHGlsname] = ACTIONS(4409), - [anon_sym_BSLASHGLSname] = ACTIONS(4409), - [anon_sym_BSLASHglssymbol] = ACTIONS(4409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4409), - [anon_sym_BSLASHglsdesc] = ACTIONS(4409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4409), - [anon_sym_BSLASHglsuseri] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4409), - [anon_sym_BSLASHglsuserii] = ACTIONS(4409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4409), - [anon_sym_BSLASHglsuserv] = ACTIONS(4409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4409), - [anon_sym_BSLASHglsuservi] = ACTIONS(4409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4409), - [anon_sym_BSLASHnewacronym] = ACTIONS(4409), - [anon_sym_BSLASHacrshort] = ACTIONS(4409), - [anon_sym_BSLASHAcrshort] = ACTIONS(4409), - [anon_sym_BSLASHACRshort] = ACTIONS(4409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4409), - [anon_sym_BSLASHacrlong] = ACTIONS(4409), - [anon_sym_BSLASHAcrlong] = ACTIONS(4409), - [anon_sym_BSLASHACRlong] = ACTIONS(4409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4409), - [anon_sym_BSLASHacrfull] = ACTIONS(4409), - [anon_sym_BSLASHAcrfull] = ACTIONS(4409), - [anon_sym_BSLASHACRfull] = ACTIONS(4409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4409), - [anon_sym_BSLASHacs] = ACTIONS(4409), - [anon_sym_BSLASHAcs] = ACTIONS(4409), - [anon_sym_BSLASHacsp] = ACTIONS(4409), - [anon_sym_BSLASHAcsp] = ACTIONS(4409), - [anon_sym_BSLASHacl] = ACTIONS(4409), - [anon_sym_BSLASHAcl] = ACTIONS(4409), - [anon_sym_BSLASHaclp] = ACTIONS(4409), - [anon_sym_BSLASHAclp] = ACTIONS(4409), - [anon_sym_BSLASHacf] = ACTIONS(4409), - [anon_sym_BSLASHAcf] = ACTIONS(4409), - [anon_sym_BSLASHacfp] = ACTIONS(4409), - [anon_sym_BSLASHAcfp] = ACTIONS(4409), - [anon_sym_BSLASHac] = ACTIONS(4409), - [anon_sym_BSLASHAc] = ACTIONS(4409), - [anon_sym_BSLASHacp] = ACTIONS(4409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4409), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4409), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4409), - [anon_sym_BSLASHcolor] = ACTIONS(4409), - [anon_sym_BSLASHcolorbox] = ACTIONS(4409), - [anon_sym_BSLASHtextcolor] = ACTIONS(4409), - [anon_sym_BSLASHpagecolor] = ACTIONS(4409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4409), - }, - [442] = { - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(442), - [aux_sym__section_repeat5] = STATE(442), - [sym_command_name] = ACTIONS(4399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4399), - [anon_sym_LPAREN] = ACTIONS(4397), - [anon_sym_RPAREN] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4397), - [anon_sym_RBRACK] = ACTIONS(4397), - [anon_sym_COMMA] = ACTIONS(4397), - [anon_sym_EQ] = ACTIONS(4397), - [anon_sym_BSLASHpart] = ACTIONS(4399), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddpart] = ACTIONS(4399), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4397), - [anon_sym_BSLASHchapter] = ACTIONS(4399), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddchap] = ACTIONS(4399), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsection] = ACTIONS(4399), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddsec] = ACTIONS(4399), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubsection] = ACTIONS(4399), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4555), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4558), - [anon_sym_BSLASHparagraph] = ACTIONS(4399), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4399), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4397), - [anon_sym_BSLASHitem] = ACTIONS(4399), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(4397), - [sym_word] = ACTIONS(4399), - [sym_placeholder] = ACTIONS(4397), - [anon_sym_PLUS] = ACTIONS(4399), - [anon_sym_DASH] = ACTIONS(4399), - [anon_sym_STAR] = ACTIONS(4399), - [anon_sym_SLASH] = ACTIONS(4399), - [anon_sym_CARET] = ACTIONS(4399), - [anon_sym__] = ACTIONS(4399), - [anon_sym_LT] = ACTIONS(4399), - [anon_sym_GT] = ACTIONS(4399), - [anon_sym_BANG] = ACTIONS(4399), - [anon_sym_PIPE] = ACTIONS(4399), - [anon_sym_COLON] = ACTIONS(4399), - [anon_sym_SQUOTE] = ACTIONS(4399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4397), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4397), - [anon_sym_DOLLAR] = ACTIONS(4399), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4397), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4397), - [anon_sym_BSLASHbegin] = ACTIONS(4399), - [anon_sym_BSLASHend] = ACTIONS(4399), - [anon_sym_BSLASHusepackage] = ACTIONS(4399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4399), - [anon_sym_BSLASHinclude] = ACTIONS(4399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4399), - [anon_sym_BSLASHinput] = ACTIONS(4399), - [anon_sym_BSLASHsubfile] = ACTIONS(4399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4399), - [anon_sym_BSLASHbibliography] = ACTIONS(4399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4399), - [anon_sym_BSLASHincludesvg] = ACTIONS(4399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4399), - [anon_sym_BSLASHimport] = ACTIONS(4399), - [anon_sym_BSLASHsubimport] = ACTIONS(4399), - [anon_sym_BSLASHinputfrom] = ACTIONS(4399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4399), - [anon_sym_BSLASHincludefrom] = ACTIONS(4399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4399), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCite] = ACTIONS(4399), - [anon_sym_BSLASHnocite] = ACTIONS(4399), - [anon_sym_BSLASHcitet] = ACTIONS(4399), - [anon_sym_BSLASHcitep] = ACTIONS(4399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteauthor] = ACTIONS(4399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitetitle] = ACTIONS(4399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteyear] = ACTIONS(4399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitedate] = ACTIONS(4399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteurl] = ACTIONS(4399), - [anon_sym_BSLASHfullcite] = ACTIONS(4399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4399), - [anon_sym_BSLASHcitealt] = ACTIONS(4399), - [anon_sym_BSLASHcitealp] = ACTIONS(4399), - [anon_sym_BSLASHcitetext] = ACTIONS(4399), - [anon_sym_BSLASHparencite] = ACTIONS(4399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHParencite] = ACTIONS(4399), - [anon_sym_BSLASHfootcite] = ACTIONS(4399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4399), - [anon_sym_BSLASHtextcite] = ACTIONS(4399), - [anon_sym_BSLASHTextcite] = ACTIONS(4399), - [anon_sym_BSLASHsmartcite] = ACTIONS(4399), - [anon_sym_BSLASHSmartcite] = ACTIONS(4399), - [anon_sym_BSLASHsupercite] = ACTIONS(4399), - [anon_sym_BSLASHautocite] = ACTIONS(4399), - [anon_sym_BSLASHAutocite] = ACTIONS(4399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHvolcite] = ACTIONS(4399), - [anon_sym_BSLASHVolcite] = ACTIONS(4399), - [anon_sym_BSLASHpvolcite] = ACTIONS(4399), - [anon_sym_BSLASHPvolcite] = ACTIONS(4399), - [anon_sym_BSLASHfvolcite] = ACTIONS(4399), - [anon_sym_BSLASHftvolcite] = ACTIONS(4399), - [anon_sym_BSLASHsvolcite] = ACTIONS(4399), - [anon_sym_BSLASHSvolcite] = ACTIONS(4399), - [anon_sym_BSLASHtvolcite] = ACTIONS(4399), - [anon_sym_BSLASHTvolcite] = ACTIONS(4399), - [anon_sym_BSLASHavolcite] = ACTIONS(4399), - [anon_sym_BSLASHAvolcite] = ACTIONS(4399), - [anon_sym_BSLASHnotecite] = ACTIONS(4399), - [anon_sym_BSLASHNotecite] = ACTIONS(4399), - [anon_sym_BSLASHpnotecite] = ACTIONS(4399), - [anon_sym_BSLASHPnotecite] = ACTIONS(4399), - [anon_sym_BSLASHfnotecite] = ACTIONS(4399), - [anon_sym_BSLASHlabel] = ACTIONS(4399), - [anon_sym_BSLASHref] = ACTIONS(4399), - [anon_sym_BSLASHeqref] = ACTIONS(4399), - [anon_sym_BSLASHvref] = ACTIONS(4399), - [anon_sym_BSLASHVref] = ACTIONS(4399), - [anon_sym_BSLASHautoref] = ACTIONS(4399), - [anon_sym_BSLASHpageref] = ACTIONS(4399), - [anon_sym_BSLASHcref] = ACTIONS(4399), - [anon_sym_BSLASHCref] = ACTIONS(4399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4397), - [anon_sym_BSLASHnamecref] = ACTIONS(4399), - [anon_sym_BSLASHnameCref] = ACTIONS(4399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4399), - [anon_sym_BSLASHlabelcref] = ACTIONS(4399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4399), - [anon_sym_BSLASHcrefrange] = ACTIONS(4399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCrefrange] = ACTIONS(4399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4397), - [anon_sym_BSLASHnewlabel] = ACTIONS(4399), - [anon_sym_BSLASHnewcommand] = ACTIONS(4399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4397), - [anon_sym_BSLASHdef] = ACTIONS(4399), - [anon_sym_BSLASHlet] = ACTIONS(4399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4399), - [anon_sym_BSLASHgls] = ACTIONS(4399), - [anon_sym_BSLASHGls] = ACTIONS(4399), - [anon_sym_BSLASHGLS] = ACTIONS(4399), - [anon_sym_BSLASHglspl] = ACTIONS(4399), - [anon_sym_BSLASHGlspl] = ACTIONS(4399), - [anon_sym_BSLASHGLSpl] = ACTIONS(4399), - [anon_sym_BSLASHglsdisp] = ACTIONS(4399), - [anon_sym_BSLASHglslink] = ACTIONS(4399), - [anon_sym_BSLASHglstext] = ACTIONS(4399), - [anon_sym_BSLASHGlstext] = ACTIONS(4399), - [anon_sym_BSLASHGLStext] = ACTIONS(4399), - [anon_sym_BSLASHglsfirst] = ACTIONS(4399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4399), - [anon_sym_BSLASHglsplural] = ACTIONS(4399), - [anon_sym_BSLASHGlsplural] = ACTIONS(4399), - [anon_sym_BSLASHGLSplural] = ACTIONS(4399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHglsname] = ACTIONS(4399), - [anon_sym_BSLASHGlsname] = ACTIONS(4399), - [anon_sym_BSLASHGLSname] = ACTIONS(4399), - [anon_sym_BSLASHglssymbol] = ACTIONS(4399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4399), - [anon_sym_BSLASHglsdesc] = ACTIONS(4399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4399), - [anon_sym_BSLASHglsuseri] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4399), - [anon_sym_BSLASHglsuserii] = ACTIONS(4399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4399), - [anon_sym_BSLASHglsuserv] = ACTIONS(4399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4399), - [anon_sym_BSLASHglsuservi] = ACTIONS(4399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4399), - [anon_sym_BSLASHnewacronym] = ACTIONS(4399), - [anon_sym_BSLASHacrshort] = ACTIONS(4399), - [anon_sym_BSLASHAcrshort] = ACTIONS(4399), - [anon_sym_BSLASHACRshort] = ACTIONS(4399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4399), - [anon_sym_BSLASHacrlong] = ACTIONS(4399), - [anon_sym_BSLASHAcrlong] = ACTIONS(4399), - [anon_sym_BSLASHACRlong] = ACTIONS(4399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4399), - [anon_sym_BSLASHacrfull] = ACTIONS(4399), - [anon_sym_BSLASHAcrfull] = ACTIONS(4399), - [anon_sym_BSLASHACRfull] = ACTIONS(4399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4399), - [anon_sym_BSLASHacs] = ACTIONS(4399), - [anon_sym_BSLASHAcs] = ACTIONS(4399), - [anon_sym_BSLASHacsp] = ACTIONS(4399), - [anon_sym_BSLASHAcsp] = ACTIONS(4399), - [anon_sym_BSLASHacl] = ACTIONS(4399), - [anon_sym_BSLASHAcl] = ACTIONS(4399), - [anon_sym_BSLASHaclp] = ACTIONS(4399), - [anon_sym_BSLASHAclp] = ACTIONS(4399), - [anon_sym_BSLASHacf] = ACTIONS(4399), - [anon_sym_BSLASHAcf] = ACTIONS(4399), - [anon_sym_BSLASHacfp] = ACTIONS(4399), - [anon_sym_BSLASHAcfp] = ACTIONS(4399), - [anon_sym_BSLASHac] = ACTIONS(4399), - [anon_sym_BSLASHAc] = ACTIONS(4399), - [anon_sym_BSLASHacp] = ACTIONS(4399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4399), - [anon_sym_BSLASHcolor] = ACTIONS(4399), - [anon_sym_BSLASHcolorbox] = ACTIONS(4399), - [anon_sym_BSLASHtextcolor] = ACTIONS(4399), - [anon_sym_BSLASHpagecolor] = ACTIONS(4399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4399), - }, - [443] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(443), - [aux_sym__section_repeat4] = STATE(443), - [sym_command_name] = ACTIONS(4423), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4423), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_RPAREN] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_RBRACK] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_EQ] = ACTIONS(4421), - [anon_sym_BSLASHpart] = ACTIONS(4423), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddpart] = ACTIONS(4423), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4421), - [anon_sym_BSLASHchapter] = ACTIONS(4423), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddchap] = ACTIONS(4423), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsection] = ACTIONS(4423), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddsec] = ACTIONS(4423), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsubsection] = ACTIONS(4561), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4564), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4423), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4421), - [anon_sym_BSLASHparagraph] = ACTIONS(4423), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4423), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4421), - [anon_sym_BSLASHitem] = ACTIONS(4423), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4421), - [anon_sym_LBRACE] = ACTIONS(4421), - [sym_word] = ACTIONS(4423), - [sym_placeholder] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_CARET] = ACTIONS(4423), - [anon_sym__] = ACTIONS(4423), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_PIPE] = ACTIONS(4423), - [anon_sym_COLON] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4421), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4421), - [anon_sym_DOLLAR] = ACTIONS(4423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4421), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4421), - [anon_sym_BSLASHbegin] = ACTIONS(4423), - [anon_sym_BSLASHend] = ACTIONS(4423), - [anon_sym_BSLASHusepackage] = ACTIONS(4423), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4423), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4423), - [anon_sym_BSLASHinclude] = ACTIONS(4423), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4423), - [anon_sym_BSLASHinput] = ACTIONS(4423), - [anon_sym_BSLASHsubfile] = ACTIONS(4423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4423), - [anon_sym_BSLASHbibliography] = ACTIONS(4423), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4423), - [anon_sym_BSLASHincludesvg] = ACTIONS(4423), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4423), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4423), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4423), - [anon_sym_BSLASHimport] = ACTIONS(4423), - [anon_sym_BSLASHsubimport] = ACTIONS(4423), - [anon_sym_BSLASHinputfrom] = ACTIONS(4423), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4423), - [anon_sym_BSLASHincludefrom] = ACTIONS(4423), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4423), - [anon_sym_BSLASHcaption] = ACTIONS(4423), - [anon_sym_BSLASHcite] = ACTIONS(4423), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCite] = ACTIONS(4423), - [anon_sym_BSLASHnocite] = ACTIONS(4423), - [anon_sym_BSLASHcitet] = ACTIONS(4423), - [anon_sym_BSLASHcitep] = ACTIONS(4423), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteauthor] = ACTIONS(4423), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4423), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitetitle] = ACTIONS(4423), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteyear] = ACTIONS(4423), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitedate] = ACTIONS(4423), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteurl] = ACTIONS(4423), - [anon_sym_BSLASHfullcite] = ACTIONS(4423), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4423), - [anon_sym_BSLASHcitealt] = ACTIONS(4423), - [anon_sym_BSLASHcitealp] = ACTIONS(4423), - [anon_sym_BSLASHcitetext] = ACTIONS(4423), - [anon_sym_BSLASHparencite] = ACTIONS(4423), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHParencite] = ACTIONS(4423), - [anon_sym_BSLASHfootcite] = ACTIONS(4423), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4423), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4423), - [anon_sym_BSLASHtextcite] = ACTIONS(4423), - [anon_sym_BSLASHTextcite] = ACTIONS(4423), - [anon_sym_BSLASHsmartcite] = ACTIONS(4423), - [anon_sym_BSLASHSmartcite] = ACTIONS(4423), - [anon_sym_BSLASHsupercite] = ACTIONS(4423), - [anon_sym_BSLASHautocite] = ACTIONS(4423), - [anon_sym_BSLASHAutocite] = ACTIONS(4423), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHvolcite] = ACTIONS(4423), - [anon_sym_BSLASHVolcite] = ACTIONS(4423), - [anon_sym_BSLASHpvolcite] = ACTIONS(4423), - [anon_sym_BSLASHPvolcite] = ACTIONS(4423), - [anon_sym_BSLASHfvolcite] = ACTIONS(4423), - [anon_sym_BSLASHftvolcite] = ACTIONS(4423), - [anon_sym_BSLASHsvolcite] = ACTIONS(4423), - [anon_sym_BSLASHSvolcite] = ACTIONS(4423), - [anon_sym_BSLASHtvolcite] = ACTIONS(4423), - [anon_sym_BSLASHTvolcite] = ACTIONS(4423), - [anon_sym_BSLASHavolcite] = ACTIONS(4423), - [anon_sym_BSLASHAvolcite] = ACTIONS(4423), - [anon_sym_BSLASHnotecite] = ACTIONS(4423), - [anon_sym_BSLASHNotecite] = ACTIONS(4423), - [anon_sym_BSLASHpnotecite] = ACTIONS(4423), - [anon_sym_BSLASHPnotecite] = ACTIONS(4423), - [anon_sym_BSLASHfnotecite] = ACTIONS(4423), - [anon_sym_BSLASHlabel] = ACTIONS(4423), - [anon_sym_BSLASHref] = ACTIONS(4423), - [anon_sym_BSLASHeqref] = ACTIONS(4423), - [anon_sym_BSLASHvref] = ACTIONS(4423), - [anon_sym_BSLASHVref] = ACTIONS(4423), - [anon_sym_BSLASHautoref] = ACTIONS(4423), - [anon_sym_BSLASHpageref] = ACTIONS(4423), - [anon_sym_BSLASHcref] = ACTIONS(4423), - [anon_sym_BSLASHCref] = ACTIONS(4423), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4421), - [anon_sym_BSLASHnamecref] = ACTIONS(4423), - [anon_sym_BSLASHnameCref] = ACTIONS(4423), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4423), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4423), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4423), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4423), - [anon_sym_BSLASHlabelcref] = ACTIONS(4423), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4423), - [anon_sym_BSLASHcrefrange] = ACTIONS(4423), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCrefrange] = ACTIONS(4423), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4421), - [anon_sym_BSLASHnewlabel] = ACTIONS(4423), - [anon_sym_BSLASHnewcommand] = ACTIONS(4423), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4423), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4423), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4423), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4421), - [anon_sym_BSLASHdef] = ACTIONS(4423), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4423), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4423), - [anon_sym_BSLASHgls] = ACTIONS(4423), - [anon_sym_BSLASHGls] = ACTIONS(4423), - [anon_sym_BSLASHGLS] = ACTIONS(4423), - [anon_sym_BSLASHglspl] = ACTIONS(4423), - [anon_sym_BSLASHGlspl] = ACTIONS(4423), - [anon_sym_BSLASHGLSpl] = ACTIONS(4423), - [anon_sym_BSLASHglsdisp] = ACTIONS(4423), - [anon_sym_BSLASHglslink] = ACTIONS(4423), - [anon_sym_BSLASHglstext] = ACTIONS(4423), - [anon_sym_BSLASHGlstext] = ACTIONS(4423), - [anon_sym_BSLASHGLStext] = ACTIONS(4423), - [anon_sym_BSLASHglsfirst] = ACTIONS(4423), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4423), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4423), - [anon_sym_BSLASHglsplural] = ACTIONS(4423), - [anon_sym_BSLASHGlsplural] = ACTIONS(4423), - [anon_sym_BSLASHGLSplural] = ACTIONS(4423), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHglsname] = ACTIONS(4423), - [anon_sym_BSLASHGlsname] = ACTIONS(4423), - [anon_sym_BSLASHGLSname] = ACTIONS(4423), - [anon_sym_BSLASHglssymbol] = ACTIONS(4423), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4423), - [anon_sym_BSLASHglsdesc] = ACTIONS(4423), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4423), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4423), - [anon_sym_BSLASHglsuseri] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4423), - [anon_sym_BSLASHglsuserii] = ACTIONS(4423), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4423), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4423), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4423), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4423), - [anon_sym_BSLASHglsuserv] = ACTIONS(4423), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4423), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4423), - [anon_sym_BSLASHglsuservi] = ACTIONS(4423), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4423), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4423), - [anon_sym_BSLASHnewacronym] = ACTIONS(4423), - [anon_sym_BSLASHacrshort] = ACTIONS(4423), - [anon_sym_BSLASHAcrshort] = ACTIONS(4423), - [anon_sym_BSLASHACRshort] = ACTIONS(4423), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4423), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4423), - [anon_sym_BSLASHacrlong] = ACTIONS(4423), - [anon_sym_BSLASHAcrlong] = ACTIONS(4423), - [anon_sym_BSLASHACRlong] = ACTIONS(4423), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4423), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4423), - [anon_sym_BSLASHacrfull] = ACTIONS(4423), - [anon_sym_BSLASHAcrfull] = ACTIONS(4423), - [anon_sym_BSLASHACRfull] = ACTIONS(4423), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4423), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4423), - [anon_sym_BSLASHacs] = ACTIONS(4423), - [anon_sym_BSLASHAcs] = ACTIONS(4423), - [anon_sym_BSLASHacsp] = ACTIONS(4423), - [anon_sym_BSLASHAcsp] = ACTIONS(4423), - [anon_sym_BSLASHacl] = ACTIONS(4423), - [anon_sym_BSLASHAcl] = ACTIONS(4423), - [anon_sym_BSLASHaclp] = ACTIONS(4423), - [anon_sym_BSLASHAclp] = ACTIONS(4423), - [anon_sym_BSLASHacf] = ACTIONS(4423), - [anon_sym_BSLASHAcf] = ACTIONS(4423), - [anon_sym_BSLASHacfp] = ACTIONS(4423), - [anon_sym_BSLASHAcfp] = ACTIONS(4423), - [anon_sym_BSLASHac] = ACTIONS(4423), - [anon_sym_BSLASHAc] = ACTIONS(4423), - [anon_sym_BSLASHacp] = ACTIONS(4423), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4423), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4423), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4423), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4423), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4423), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4423), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4423), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4423), - [anon_sym_BSLASHcolor] = ACTIONS(4423), - [anon_sym_BSLASHcolorbox] = ACTIONS(4423), - [anon_sym_BSLASHtextcolor] = ACTIONS(4423), - [anon_sym_BSLASHpagecolor] = ACTIONS(4423), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4423), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4423), - }, - [444] = { - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(444), - [aux_sym__section_repeat3] = STATE(444), - [sym_command_name] = ACTIONS(4513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4513), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_RPAREN] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_RBRACK] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_EQ] = ACTIONS(4511), - [anon_sym_BSLASHpart] = ACTIONS(4513), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4511), - [anon_sym_BSLASHaddpart] = ACTIONS(4513), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4511), - [anon_sym_BSLASHchapter] = ACTIONS(4513), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4511), - [anon_sym_BSLASHaddchap] = ACTIONS(4513), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsection] = ACTIONS(4567), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4570), - [anon_sym_BSLASHaddsec] = ACTIONS(4567), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4570), - [anon_sym_BSLASHsubsection] = ACTIONS(4513), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4513), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4511), - [anon_sym_BSLASHparagraph] = ACTIONS(4513), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4513), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4511), - [anon_sym_BSLASHitem] = ACTIONS(4513), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4511), - [anon_sym_LBRACE] = ACTIONS(4511), - [sym_word] = ACTIONS(4513), - [sym_placeholder] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_STAR] = ACTIONS(4513), - [anon_sym_SLASH] = ACTIONS(4513), - [anon_sym_CARET] = ACTIONS(4513), - [anon_sym__] = ACTIONS(4513), - [anon_sym_LT] = ACTIONS(4513), - [anon_sym_GT] = ACTIONS(4513), - [anon_sym_BANG] = ACTIONS(4513), - [anon_sym_PIPE] = ACTIONS(4513), - [anon_sym_COLON] = ACTIONS(4513), - [anon_sym_SQUOTE] = ACTIONS(4513), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4511), - [anon_sym_DOLLAR] = ACTIONS(4513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4511), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4511), - [anon_sym_BSLASHbegin] = ACTIONS(4513), - [anon_sym_BSLASHend] = ACTIONS(4513), - [anon_sym_BSLASHusepackage] = ACTIONS(4513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4513), - [anon_sym_BSLASHinclude] = ACTIONS(4513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4513), - [anon_sym_BSLASHinput] = ACTIONS(4513), - [anon_sym_BSLASHsubfile] = ACTIONS(4513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4513), - [anon_sym_BSLASHbibliography] = ACTIONS(4513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4513), - [anon_sym_BSLASHincludesvg] = ACTIONS(4513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4513), - [anon_sym_BSLASHimport] = ACTIONS(4513), - [anon_sym_BSLASHsubimport] = ACTIONS(4513), - [anon_sym_BSLASHinputfrom] = ACTIONS(4513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4513), - [anon_sym_BSLASHincludefrom] = ACTIONS(4513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4513), - [anon_sym_BSLASHcaption] = ACTIONS(4513), - [anon_sym_BSLASHcite] = ACTIONS(4513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCite] = ACTIONS(4513), - [anon_sym_BSLASHnocite] = ACTIONS(4513), - [anon_sym_BSLASHcitet] = ACTIONS(4513), - [anon_sym_BSLASHcitep] = ACTIONS(4513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteauthor] = ACTIONS(4513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitetitle] = ACTIONS(4513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteyear] = ACTIONS(4513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitedate] = ACTIONS(4513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteurl] = ACTIONS(4513), - [anon_sym_BSLASHfullcite] = ACTIONS(4513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4513), - [anon_sym_BSLASHcitealt] = ACTIONS(4513), - [anon_sym_BSLASHcitealp] = ACTIONS(4513), - [anon_sym_BSLASHcitetext] = ACTIONS(4513), - [anon_sym_BSLASHparencite] = ACTIONS(4513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHParencite] = ACTIONS(4513), - [anon_sym_BSLASHfootcite] = ACTIONS(4513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4513), - [anon_sym_BSLASHtextcite] = ACTIONS(4513), - [anon_sym_BSLASHTextcite] = ACTIONS(4513), - [anon_sym_BSLASHsmartcite] = ACTIONS(4513), - [anon_sym_BSLASHSmartcite] = ACTIONS(4513), - [anon_sym_BSLASHsupercite] = ACTIONS(4513), - [anon_sym_BSLASHautocite] = ACTIONS(4513), - [anon_sym_BSLASHAutocite] = ACTIONS(4513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHvolcite] = ACTIONS(4513), - [anon_sym_BSLASHVolcite] = ACTIONS(4513), - [anon_sym_BSLASHpvolcite] = ACTIONS(4513), - [anon_sym_BSLASHPvolcite] = ACTIONS(4513), - [anon_sym_BSLASHfvolcite] = ACTIONS(4513), - [anon_sym_BSLASHftvolcite] = ACTIONS(4513), - [anon_sym_BSLASHsvolcite] = ACTIONS(4513), - [anon_sym_BSLASHSvolcite] = ACTIONS(4513), - [anon_sym_BSLASHtvolcite] = ACTIONS(4513), - [anon_sym_BSLASHTvolcite] = ACTIONS(4513), - [anon_sym_BSLASHavolcite] = ACTIONS(4513), - [anon_sym_BSLASHAvolcite] = ACTIONS(4513), - [anon_sym_BSLASHnotecite] = ACTIONS(4513), - [anon_sym_BSLASHNotecite] = ACTIONS(4513), - [anon_sym_BSLASHpnotecite] = ACTIONS(4513), - [anon_sym_BSLASHPnotecite] = ACTIONS(4513), - [anon_sym_BSLASHfnotecite] = ACTIONS(4513), - [anon_sym_BSLASHlabel] = ACTIONS(4513), - [anon_sym_BSLASHref] = ACTIONS(4513), - [anon_sym_BSLASHeqref] = ACTIONS(4513), - [anon_sym_BSLASHvref] = ACTIONS(4513), - [anon_sym_BSLASHVref] = ACTIONS(4513), - [anon_sym_BSLASHautoref] = ACTIONS(4513), - [anon_sym_BSLASHpageref] = ACTIONS(4513), - [anon_sym_BSLASHcref] = ACTIONS(4513), - [anon_sym_BSLASHCref] = ACTIONS(4513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4511), - [anon_sym_BSLASHnamecref] = ACTIONS(4513), - [anon_sym_BSLASHnameCref] = ACTIONS(4513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4513), - [anon_sym_BSLASHlabelcref] = ACTIONS(4513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4513), - [anon_sym_BSLASHcrefrange] = ACTIONS(4513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCrefrange] = ACTIONS(4513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4511), - [anon_sym_BSLASHnewlabel] = ACTIONS(4513), - [anon_sym_BSLASHnewcommand] = ACTIONS(4513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4511), - [anon_sym_BSLASHdef] = ACTIONS(4513), - [anon_sym_BSLASHlet] = ACTIONS(4513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4513), - [anon_sym_BSLASHgls] = ACTIONS(4513), - [anon_sym_BSLASHGls] = ACTIONS(4513), - [anon_sym_BSLASHGLS] = ACTIONS(4513), - [anon_sym_BSLASHglspl] = ACTIONS(4513), - [anon_sym_BSLASHGlspl] = ACTIONS(4513), - [anon_sym_BSLASHGLSpl] = ACTIONS(4513), - [anon_sym_BSLASHglsdisp] = ACTIONS(4513), - [anon_sym_BSLASHglslink] = ACTIONS(4513), - [anon_sym_BSLASHglstext] = ACTIONS(4513), - [anon_sym_BSLASHGlstext] = ACTIONS(4513), - [anon_sym_BSLASHGLStext] = ACTIONS(4513), - [anon_sym_BSLASHglsfirst] = ACTIONS(4513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4513), - [anon_sym_BSLASHglsplural] = ACTIONS(4513), - [anon_sym_BSLASHGlsplural] = ACTIONS(4513), - [anon_sym_BSLASHGLSplural] = ACTIONS(4513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHglsname] = ACTIONS(4513), - [anon_sym_BSLASHGlsname] = ACTIONS(4513), - [anon_sym_BSLASHGLSname] = ACTIONS(4513), - [anon_sym_BSLASHglssymbol] = ACTIONS(4513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4513), - [anon_sym_BSLASHglsdesc] = ACTIONS(4513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4513), - [anon_sym_BSLASHglsuseri] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4513), - [anon_sym_BSLASHglsuserii] = ACTIONS(4513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4513), - [anon_sym_BSLASHglsuserv] = ACTIONS(4513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4513), - [anon_sym_BSLASHglsuservi] = ACTIONS(4513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4513), - [anon_sym_BSLASHnewacronym] = ACTIONS(4513), - [anon_sym_BSLASHacrshort] = ACTIONS(4513), - [anon_sym_BSLASHAcrshort] = ACTIONS(4513), - [anon_sym_BSLASHACRshort] = ACTIONS(4513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4513), - [anon_sym_BSLASHacrlong] = ACTIONS(4513), - [anon_sym_BSLASHAcrlong] = ACTIONS(4513), - [anon_sym_BSLASHACRlong] = ACTIONS(4513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4513), - [anon_sym_BSLASHacrfull] = ACTIONS(4513), - [anon_sym_BSLASHAcrfull] = ACTIONS(4513), - [anon_sym_BSLASHACRfull] = ACTIONS(4513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4513), - [anon_sym_BSLASHacs] = ACTIONS(4513), - [anon_sym_BSLASHAcs] = ACTIONS(4513), - [anon_sym_BSLASHacsp] = ACTIONS(4513), - [anon_sym_BSLASHAcsp] = ACTIONS(4513), - [anon_sym_BSLASHacl] = ACTIONS(4513), - [anon_sym_BSLASHAcl] = ACTIONS(4513), - [anon_sym_BSLASHaclp] = ACTIONS(4513), - [anon_sym_BSLASHAclp] = ACTIONS(4513), - [anon_sym_BSLASHacf] = ACTIONS(4513), - [anon_sym_BSLASHAcf] = ACTIONS(4513), - [anon_sym_BSLASHacfp] = ACTIONS(4513), - [anon_sym_BSLASHAcfp] = ACTIONS(4513), - [anon_sym_BSLASHac] = ACTIONS(4513), - [anon_sym_BSLASHAc] = ACTIONS(4513), - [anon_sym_BSLASHacp] = ACTIONS(4513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4513), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4513), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4513), - [anon_sym_BSLASHcolor] = ACTIONS(4513), - [anon_sym_BSLASHcolorbox] = ACTIONS(4513), - [anon_sym_BSLASHtextcolor] = ACTIONS(4513), - [anon_sym_BSLASHpagecolor] = ACTIONS(4513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4513), - }, - [445] = { - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(445), - [aux_sym__section_repeat2] = STATE(445), - [sym_command_name] = ACTIONS(4503), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4501), - [anon_sym_RPAREN] = ACTIONS(4501), - [anon_sym_LBRACK] = ACTIONS(4501), - [anon_sym_RBRACK] = ACTIONS(4501), - [anon_sym_COMMA] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_BSLASHpart] = ACTIONS(4503), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4501), - [anon_sym_BSLASHaddpart] = ACTIONS(4503), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4501), - [anon_sym_BSLASHchapter] = ACTIONS(4573), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4576), - [anon_sym_BSLASHaddchap] = ACTIONS(4573), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4576), - [anon_sym_BSLASHsection] = ACTIONS(4503), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHaddsec] = ACTIONS(4503), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubsection] = ACTIONS(4503), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4503), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHparagraph] = ACTIONS(4503), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4503), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4501), - [anon_sym_BSLASHitem] = ACTIONS(4503), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(4501), - [sym_word] = ACTIONS(4503), - [sym_placeholder] = ACTIONS(4501), - [anon_sym_PLUS] = ACTIONS(4503), - [anon_sym_DASH] = ACTIONS(4503), - [anon_sym_STAR] = ACTIONS(4503), - [anon_sym_SLASH] = ACTIONS(4503), - [anon_sym_CARET] = ACTIONS(4503), - [anon_sym__] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4503), - [anon_sym_GT] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4503), - [anon_sym_PIPE] = ACTIONS(4503), - [anon_sym_COLON] = ACTIONS(4503), - [anon_sym_SQUOTE] = ACTIONS(4503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4501), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4501), - [anon_sym_DOLLAR] = ACTIONS(4503), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4501), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4501), - [anon_sym_BSLASHbegin] = ACTIONS(4503), - [anon_sym_BSLASHend] = ACTIONS(4503), - [anon_sym_BSLASHusepackage] = ACTIONS(4503), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4503), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4503), - [anon_sym_BSLASHinclude] = ACTIONS(4503), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4503), - [anon_sym_BSLASHinput] = ACTIONS(4503), - [anon_sym_BSLASHsubfile] = ACTIONS(4503), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4503), - [anon_sym_BSLASHbibliography] = ACTIONS(4503), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4503), - [anon_sym_BSLASHincludesvg] = ACTIONS(4503), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4503), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4503), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4503), - [anon_sym_BSLASHimport] = ACTIONS(4503), - [anon_sym_BSLASHsubimport] = ACTIONS(4503), - [anon_sym_BSLASHinputfrom] = ACTIONS(4503), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4503), - [anon_sym_BSLASHincludefrom] = ACTIONS(4503), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4503), - [anon_sym_BSLASHcaption] = ACTIONS(4503), - [anon_sym_BSLASHcite] = ACTIONS(4503), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCite] = ACTIONS(4503), - [anon_sym_BSLASHnocite] = ACTIONS(4503), - [anon_sym_BSLASHcitet] = ACTIONS(4503), - [anon_sym_BSLASHcitep] = ACTIONS(4503), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteauthor] = ACTIONS(4503), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4503), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitetitle] = ACTIONS(4503), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteyear] = ACTIONS(4503), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitedate] = ACTIONS(4503), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteurl] = ACTIONS(4503), - [anon_sym_BSLASHfullcite] = ACTIONS(4503), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4503), - [anon_sym_BSLASHcitealt] = ACTIONS(4503), - [anon_sym_BSLASHcitealp] = ACTIONS(4503), - [anon_sym_BSLASHcitetext] = ACTIONS(4503), - [anon_sym_BSLASHparencite] = ACTIONS(4503), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHParencite] = ACTIONS(4503), - [anon_sym_BSLASHfootcite] = ACTIONS(4503), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4503), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4503), - [anon_sym_BSLASHtextcite] = ACTIONS(4503), - [anon_sym_BSLASHTextcite] = ACTIONS(4503), - [anon_sym_BSLASHsmartcite] = ACTIONS(4503), - [anon_sym_BSLASHSmartcite] = ACTIONS(4503), - [anon_sym_BSLASHsupercite] = ACTIONS(4503), - [anon_sym_BSLASHautocite] = ACTIONS(4503), - [anon_sym_BSLASHAutocite] = ACTIONS(4503), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHvolcite] = ACTIONS(4503), - [anon_sym_BSLASHVolcite] = ACTIONS(4503), - [anon_sym_BSLASHpvolcite] = ACTIONS(4503), - [anon_sym_BSLASHPvolcite] = ACTIONS(4503), - [anon_sym_BSLASHfvolcite] = ACTIONS(4503), - [anon_sym_BSLASHftvolcite] = ACTIONS(4503), - [anon_sym_BSLASHsvolcite] = ACTIONS(4503), - [anon_sym_BSLASHSvolcite] = ACTIONS(4503), - [anon_sym_BSLASHtvolcite] = ACTIONS(4503), - [anon_sym_BSLASHTvolcite] = ACTIONS(4503), - [anon_sym_BSLASHavolcite] = ACTIONS(4503), - [anon_sym_BSLASHAvolcite] = ACTIONS(4503), - [anon_sym_BSLASHnotecite] = ACTIONS(4503), - [anon_sym_BSLASHNotecite] = ACTIONS(4503), - [anon_sym_BSLASHpnotecite] = ACTIONS(4503), - [anon_sym_BSLASHPnotecite] = ACTIONS(4503), - [anon_sym_BSLASHfnotecite] = ACTIONS(4503), - [anon_sym_BSLASHlabel] = ACTIONS(4503), - [anon_sym_BSLASHref] = ACTIONS(4503), - [anon_sym_BSLASHeqref] = ACTIONS(4503), - [anon_sym_BSLASHvref] = ACTIONS(4503), - [anon_sym_BSLASHVref] = ACTIONS(4503), - [anon_sym_BSLASHautoref] = ACTIONS(4503), - [anon_sym_BSLASHpageref] = ACTIONS(4503), - [anon_sym_BSLASHcref] = ACTIONS(4503), - [anon_sym_BSLASHCref] = ACTIONS(4503), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4501), - [anon_sym_BSLASHnamecref] = ACTIONS(4503), - [anon_sym_BSLASHnameCref] = ACTIONS(4503), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4503), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4503), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4503), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4503), - [anon_sym_BSLASHlabelcref] = ACTIONS(4503), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4503), - [anon_sym_BSLASHcrefrange] = ACTIONS(4503), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCrefrange] = ACTIONS(4503), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4501), - [anon_sym_BSLASHnewlabel] = ACTIONS(4503), - [anon_sym_BSLASHnewcommand] = ACTIONS(4503), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4503), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4503), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4503), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4501), - [anon_sym_BSLASHdef] = ACTIONS(4503), - [anon_sym_BSLASHlet] = ACTIONS(4503), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4503), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4503), - [anon_sym_BSLASHgls] = ACTIONS(4503), - [anon_sym_BSLASHGls] = ACTIONS(4503), - [anon_sym_BSLASHGLS] = ACTIONS(4503), - [anon_sym_BSLASHglspl] = ACTIONS(4503), - [anon_sym_BSLASHGlspl] = ACTIONS(4503), - [anon_sym_BSLASHGLSpl] = ACTIONS(4503), - [anon_sym_BSLASHglsdisp] = ACTIONS(4503), - [anon_sym_BSLASHglslink] = ACTIONS(4503), - [anon_sym_BSLASHglstext] = ACTIONS(4503), - [anon_sym_BSLASHGlstext] = ACTIONS(4503), - [anon_sym_BSLASHGLStext] = ACTIONS(4503), - [anon_sym_BSLASHglsfirst] = ACTIONS(4503), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4503), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4503), - [anon_sym_BSLASHglsplural] = ACTIONS(4503), - [anon_sym_BSLASHGlsplural] = ACTIONS(4503), - [anon_sym_BSLASHGLSplural] = ACTIONS(4503), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHglsname] = ACTIONS(4503), - [anon_sym_BSLASHGlsname] = ACTIONS(4503), - [anon_sym_BSLASHGLSname] = ACTIONS(4503), - [anon_sym_BSLASHglssymbol] = ACTIONS(4503), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4503), - [anon_sym_BSLASHglsdesc] = ACTIONS(4503), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4503), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4503), - [anon_sym_BSLASHglsuseri] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4503), - [anon_sym_BSLASHglsuserii] = ACTIONS(4503), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4503), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4503), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4503), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4503), - [anon_sym_BSLASHglsuserv] = ACTIONS(4503), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4503), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4503), - [anon_sym_BSLASHglsuservi] = ACTIONS(4503), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4503), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4503), - [anon_sym_BSLASHnewacronym] = ACTIONS(4503), - [anon_sym_BSLASHacrshort] = ACTIONS(4503), - [anon_sym_BSLASHAcrshort] = ACTIONS(4503), - [anon_sym_BSLASHACRshort] = ACTIONS(4503), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4503), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4503), - [anon_sym_BSLASHacrlong] = ACTIONS(4503), - [anon_sym_BSLASHAcrlong] = ACTIONS(4503), - [anon_sym_BSLASHACRlong] = ACTIONS(4503), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4503), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4503), - [anon_sym_BSLASHacrfull] = ACTIONS(4503), - [anon_sym_BSLASHAcrfull] = ACTIONS(4503), - [anon_sym_BSLASHACRfull] = ACTIONS(4503), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4503), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4503), - [anon_sym_BSLASHacs] = ACTIONS(4503), - [anon_sym_BSLASHAcs] = ACTIONS(4503), - [anon_sym_BSLASHacsp] = ACTIONS(4503), - [anon_sym_BSLASHAcsp] = ACTIONS(4503), - [anon_sym_BSLASHacl] = ACTIONS(4503), - [anon_sym_BSLASHAcl] = ACTIONS(4503), - [anon_sym_BSLASHaclp] = ACTIONS(4503), - [anon_sym_BSLASHAclp] = ACTIONS(4503), - [anon_sym_BSLASHacf] = ACTIONS(4503), - [anon_sym_BSLASHAcf] = ACTIONS(4503), - [anon_sym_BSLASHacfp] = ACTIONS(4503), - [anon_sym_BSLASHAcfp] = ACTIONS(4503), - [anon_sym_BSLASHac] = ACTIONS(4503), - [anon_sym_BSLASHAc] = ACTIONS(4503), - [anon_sym_BSLASHacp] = ACTIONS(4503), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4503), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4503), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4503), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4503), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4503), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4503), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4503), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4503), - [anon_sym_BSLASHcolor] = ACTIONS(4503), - [anon_sym_BSLASHcolorbox] = ACTIONS(4503), - [anon_sym_BSLASHtextcolor] = ACTIONS(4503), - [anon_sym_BSLASHpagecolor] = ACTIONS(4503), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4503), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4503), - }, - [446] = { - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(446), - [aux_sym__section_repeat1] = STATE(446), - [sym_command_name] = ACTIONS(4493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4493), - [anon_sym_LPAREN] = ACTIONS(4491), - [anon_sym_RPAREN] = ACTIONS(4491), - [anon_sym_LBRACK] = ACTIONS(4491), - [anon_sym_RBRACK] = ACTIONS(4491), - [anon_sym_COMMA] = ACTIONS(4491), - [anon_sym_EQ] = ACTIONS(4491), - [anon_sym_BSLASHpart] = ACTIONS(4579), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4582), - [anon_sym_BSLASHaddpart] = ACTIONS(4579), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4582), - [anon_sym_BSLASHchapter] = ACTIONS(4493), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4491), - [anon_sym_BSLASHaddchap] = ACTIONS(4493), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsection] = ACTIONS(4493), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHaddsec] = ACTIONS(4493), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubsection] = ACTIONS(4493), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4493), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHparagraph] = ACTIONS(4493), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4493), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4491), - [anon_sym_BSLASHitem] = ACTIONS(4493), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4491), - [sym_word] = ACTIONS(4493), - [sym_placeholder] = ACTIONS(4491), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_CARET] = ACTIONS(4493), - [anon_sym__] = ACTIONS(4493), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_PIPE] = ACTIONS(4493), - [anon_sym_COLON] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4491), - [anon_sym_DOLLAR] = ACTIONS(4493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4491), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4491), - [anon_sym_BSLASHbegin] = ACTIONS(4493), - [anon_sym_BSLASHend] = ACTIONS(4493), - [anon_sym_BSLASHusepackage] = ACTIONS(4493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4493), - [anon_sym_BSLASHinclude] = ACTIONS(4493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4493), - [anon_sym_BSLASHinput] = ACTIONS(4493), - [anon_sym_BSLASHsubfile] = ACTIONS(4493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4493), - [anon_sym_BSLASHbibliography] = ACTIONS(4493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4493), - [anon_sym_BSLASHincludesvg] = ACTIONS(4493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4493), - [anon_sym_BSLASHimport] = ACTIONS(4493), - [anon_sym_BSLASHsubimport] = ACTIONS(4493), - [anon_sym_BSLASHinputfrom] = ACTIONS(4493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4493), - [anon_sym_BSLASHincludefrom] = ACTIONS(4493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4493), - [anon_sym_BSLASHcaption] = ACTIONS(4493), - [anon_sym_BSLASHcite] = ACTIONS(4493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCite] = ACTIONS(4493), - [anon_sym_BSLASHnocite] = ACTIONS(4493), - [anon_sym_BSLASHcitet] = ACTIONS(4493), - [anon_sym_BSLASHcitep] = ACTIONS(4493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteauthor] = ACTIONS(4493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitetitle] = ACTIONS(4493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteyear] = ACTIONS(4493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitedate] = ACTIONS(4493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteurl] = ACTIONS(4493), - [anon_sym_BSLASHfullcite] = ACTIONS(4493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4493), - [anon_sym_BSLASHcitealt] = ACTIONS(4493), - [anon_sym_BSLASHcitealp] = ACTIONS(4493), - [anon_sym_BSLASHcitetext] = ACTIONS(4493), - [anon_sym_BSLASHparencite] = ACTIONS(4493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHParencite] = ACTIONS(4493), - [anon_sym_BSLASHfootcite] = ACTIONS(4493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4493), - [anon_sym_BSLASHtextcite] = ACTIONS(4493), - [anon_sym_BSLASHTextcite] = ACTIONS(4493), - [anon_sym_BSLASHsmartcite] = ACTIONS(4493), - [anon_sym_BSLASHSmartcite] = ACTIONS(4493), - [anon_sym_BSLASHsupercite] = ACTIONS(4493), - [anon_sym_BSLASHautocite] = ACTIONS(4493), - [anon_sym_BSLASHAutocite] = ACTIONS(4493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHvolcite] = ACTIONS(4493), - [anon_sym_BSLASHVolcite] = ACTIONS(4493), - [anon_sym_BSLASHpvolcite] = ACTIONS(4493), - [anon_sym_BSLASHPvolcite] = ACTIONS(4493), - [anon_sym_BSLASHfvolcite] = ACTIONS(4493), - [anon_sym_BSLASHftvolcite] = ACTIONS(4493), - [anon_sym_BSLASHsvolcite] = ACTIONS(4493), - [anon_sym_BSLASHSvolcite] = ACTIONS(4493), - [anon_sym_BSLASHtvolcite] = ACTIONS(4493), - [anon_sym_BSLASHTvolcite] = ACTIONS(4493), - [anon_sym_BSLASHavolcite] = ACTIONS(4493), - [anon_sym_BSLASHAvolcite] = ACTIONS(4493), - [anon_sym_BSLASHnotecite] = ACTIONS(4493), - [anon_sym_BSLASHNotecite] = ACTIONS(4493), - [anon_sym_BSLASHpnotecite] = ACTIONS(4493), - [anon_sym_BSLASHPnotecite] = ACTIONS(4493), - [anon_sym_BSLASHfnotecite] = ACTIONS(4493), - [anon_sym_BSLASHlabel] = ACTIONS(4493), - [anon_sym_BSLASHref] = ACTIONS(4493), - [anon_sym_BSLASHeqref] = ACTIONS(4493), - [anon_sym_BSLASHvref] = ACTIONS(4493), - [anon_sym_BSLASHVref] = ACTIONS(4493), - [anon_sym_BSLASHautoref] = ACTIONS(4493), - [anon_sym_BSLASHpageref] = ACTIONS(4493), - [anon_sym_BSLASHcref] = ACTIONS(4493), - [anon_sym_BSLASHCref] = ACTIONS(4493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4491), - [anon_sym_BSLASHnamecref] = ACTIONS(4493), - [anon_sym_BSLASHnameCref] = ACTIONS(4493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4493), - [anon_sym_BSLASHlabelcref] = ACTIONS(4493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4493), - [anon_sym_BSLASHcrefrange] = ACTIONS(4493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCrefrange] = ACTIONS(4493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4491), - [anon_sym_BSLASHnewlabel] = ACTIONS(4493), - [anon_sym_BSLASHnewcommand] = ACTIONS(4493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4491), - [anon_sym_BSLASHdef] = ACTIONS(4493), - [anon_sym_BSLASHlet] = ACTIONS(4493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4493), - [anon_sym_BSLASHgls] = ACTIONS(4493), - [anon_sym_BSLASHGls] = ACTIONS(4493), - [anon_sym_BSLASHGLS] = ACTIONS(4493), - [anon_sym_BSLASHglspl] = ACTIONS(4493), - [anon_sym_BSLASHGlspl] = ACTIONS(4493), - [anon_sym_BSLASHGLSpl] = ACTIONS(4493), - [anon_sym_BSLASHglsdisp] = ACTIONS(4493), - [anon_sym_BSLASHglslink] = ACTIONS(4493), - [anon_sym_BSLASHglstext] = ACTIONS(4493), - [anon_sym_BSLASHGlstext] = ACTIONS(4493), - [anon_sym_BSLASHGLStext] = ACTIONS(4493), - [anon_sym_BSLASHglsfirst] = ACTIONS(4493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4493), - [anon_sym_BSLASHglsplural] = ACTIONS(4493), - [anon_sym_BSLASHGlsplural] = ACTIONS(4493), - [anon_sym_BSLASHGLSplural] = ACTIONS(4493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHglsname] = ACTIONS(4493), - [anon_sym_BSLASHGlsname] = ACTIONS(4493), - [anon_sym_BSLASHGLSname] = ACTIONS(4493), - [anon_sym_BSLASHglssymbol] = ACTIONS(4493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4493), - [anon_sym_BSLASHglsdesc] = ACTIONS(4493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4493), - [anon_sym_BSLASHglsuseri] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4493), - [anon_sym_BSLASHglsuserii] = ACTIONS(4493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4493), - [anon_sym_BSLASHglsuserv] = ACTIONS(4493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4493), - [anon_sym_BSLASHglsuservi] = ACTIONS(4493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4493), - [anon_sym_BSLASHnewacronym] = ACTIONS(4493), - [anon_sym_BSLASHacrshort] = ACTIONS(4493), - [anon_sym_BSLASHAcrshort] = ACTIONS(4493), - [anon_sym_BSLASHACRshort] = ACTIONS(4493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4493), - [anon_sym_BSLASHacrlong] = ACTIONS(4493), - [anon_sym_BSLASHAcrlong] = ACTIONS(4493), - [anon_sym_BSLASHACRlong] = ACTIONS(4493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4493), - [anon_sym_BSLASHacrfull] = ACTIONS(4493), - [anon_sym_BSLASHAcrfull] = ACTIONS(4493), - [anon_sym_BSLASHACRfull] = ACTIONS(4493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4493), - [anon_sym_BSLASHacs] = ACTIONS(4493), - [anon_sym_BSLASHAcs] = ACTIONS(4493), - [anon_sym_BSLASHacsp] = ACTIONS(4493), - [anon_sym_BSLASHAcsp] = ACTIONS(4493), - [anon_sym_BSLASHacl] = ACTIONS(4493), - [anon_sym_BSLASHAcl] = ACTIONS(4493), - [anon_sym_BSLASHaclp] = ACTIONS(4493), - [anon_sym_BSLASHAclp] = ACTIONS(4493), - [anon_sym_BSLASHacf] = ACTIONS(4493), - [anon_sym_BSLASHAcf] = ACTIONS(4493), - [anon_sym_BSLASHacfp] = ACTIONS(4493), - [anon_sym_BSLASHAcfp] = ACTIONS(4493), - [anon_sym_BSLASHac] = ACTIONS(4493), - [anon_sym_BSLASHAc] = ACTIONS(4493), - [anon_sym_BSLASHacp] = ACTIONS(4493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4493), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4493), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4493), - [anon_sym_BSLASHcolor] = ACTIONS(4493), - [anon_sym_BSLASHcolorbox] = ACTIONS(4493), - [anon_sym_BSLASHtextcolor] = ACTIONS(4493), - [anon_sym_BSLASHpagecolor] = ACTIONS(4493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4493), - }, - [447] = { - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(603), - [aux_sym__section_repeat5] = STATE(603), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), - }, - [448] = { - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(604), - [aux_sym__section_repeat6] = STATE(604), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), - }, - [449] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), - }, - [450] = { - [sym_curly_group] = STATE(657), - [sym_brack_group_text] = STATE(1983), - [ts_builtin_sym_end] = ACTIONS(4585), - [sym_command_name] = ACTIONS(4587), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4585), - [anon_sym_RPAREN] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4585), - [anon_sym_COMMA] = ACTIONS(4585), - [anon_sym_EQ] = ACTIONS(4585), - [anon_sym_BSLASHpart] = ACTIONS(4587), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddpart] = ACTIONS(4587), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4585), - [anon_sym_BSLASHchapter] = ACTIONS(4587), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddchap] = ACTIONS(4587), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsection] = ACTIONS(4587), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddsec] = ACTIONS(4587), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubsection] = ACTIONS(4587), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4587), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHparagraph] = ACTIONS(4587), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4587), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4585), - [anon_sym_BSLASHitem] = ACTIONS(4587), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4585), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4585), - [sym_word] = ACTIONS(4587), - [sym_placeholder] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_CARET] = ACTIONS(4587), - [anon_sym__] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4585), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4585), - [anon_sym_BSLASHbegin] = ACTIONS(4587), - [anon_sym_BSLASHusepackage] = ACTIONS(4587), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4587), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4587), - [anon_sym_BSLASHinclude] = ACTIONS(4587), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4587), - [anon_sym_BSLASHinput] = ACTIONS(4587), - [anon_sym_BSLASHsubfile] = ACTIONS(4587), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4587), - [anon_sym_BSLASHbibliography] = ACTIONS(4587), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4587), - [anon_sym_BSLASHincludesvg] = ACTIONS(4587), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4587), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4587), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4587), - [anon_sym_BSLASHimport] = ACTIONS(4587), - [anon_sym_BSLASHsubimport] = ACTIONS(4587), - [anon_sym_BSLASHinputfrom] = ACTIONS(4587), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4587), - [anon_sym_BSLASHincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHcaption] = ACTIONS(4587), - [anon_sym_BSLASHcite] = ACTIONS(4587), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCite] = ACTIONS(4587), - [anon_sym_BSLASHnocite] = ACTIONS(4587), - [anon_sym_BSLASHcitet] = ACTIONS(4587), - [anon_sym_BSLASHcitep] = ACTIONS(4587), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteauthor] = ACTIONS(4587), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4587), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitetitle] = ACTIONS(4587), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteyear] = ACTIONS(4587), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitedate] = ACTIONS(4587), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteurl] = ACTIONS(4587), - [anon_sym_BSLASHfullcite] = ACTIONS(4587), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4587), - [anon_sym_BSLASHcitealt] = ACTIONS(4587), - [anon_sym_BSLASHcitealp] = ACTIONS(4587), - [anon_sym_BSLASHcitetext] = ACTIONS(4587), - [anon_sym_BSLASHparencite] = ACTIONS(4587), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHParencite] = ACTIONS(4587), - [anon_sym_BSLASHfootcite] = ACTIONS(4587), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4587), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4587), - [anon_sym_BSLASHtextcite] = ACTIONS(4587), - [anon_sym_BSLASHTextcite] = ACTIONS(4587), - [anon_sym_BSLASHsmartcite] = ACTIONS(4587), - [anon_sym_BSLASHSmartcite] = ACTIONS(4587), - [anon_sym_BSLASHsupercite] = ACTIONS(4587), - [anon_sym_BSLASHautocite] = ACTIONS(4587), - [anon_sym_BSLASHAutocite] = ACTIONS(4587), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHvolcite] = ACTIONS(4587), - [anon_sym_BSLASHVolcite] = ACTIONS(4587), - [anon_sym_BSLASHpvolcite] = ACTIONS(4587), - [anon_sym_BSLASHPvolcite] = ACTIONS(4587), - [anon_sym_BSLASHfvolcite] = ACTIONS(4587), - [anon_sym_BSLASHftvolcite] = ACTIONS(4587), - [anon_sym_BSLASHsvolcite] = ACTIONS(4587), - [anon_sym_BSLASHSvolcite] = ACTIONS(4587), - [anon_sym_BSLASHtvolcite] = ACTIONS(4587), - [anon_sym_BSLASHTvolcite] = ACTIONS(4587), - [anon_sym_BSLASHavolcite] = ACTIONS(4587), - [anon_sym_BSLASHAvolcite] = ACTIONS(4587), - [anon_sym_BSLASHnotecite] = ACTIONS(4587), - [anon_sym_BSLASHNotecite] = ACTIONS(4587), - [anon_sym_BSLASHpnotecite] = ACTIONS(4587), - [anon_sym_BSLASHPnotecite] = ACTIONS(4587), - [anon_sym_BSLASHfnotecite] = ACTIONS(4587), - [anon_sym_BSLASHlabel] = ACTIONS(4587), - [anon_sym_BSLASHref] = ACTIONS(4587), - [anon_sym_BSLASHeqref] = ACTIONS(4587), - [anon_sym_BSLASHvref] = ACTIONS(4587), - [anon_sym_BSLASHVref] = ACTIONS(4587), - [anon_sym_BSLASHautoref] = ACTIONS(4587), - [anon_sym_BSLASHpageref] = ACTIONS(4587), - [anon_sym_BSLASHcref] = ACTIONS(4587), - [anon_sym_BSLASHCref] = ACTIONS(4587), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnameCref] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHlabelcref] = ACTIONS(4587), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCrefrange] = ACTIONS(4587), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnewlabel] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4587), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4587), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4587), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4585), - [anon_sym_BSLASHdef] = ACTIONS(4587), - [anon_sym_BSLASHlet] = ACTIONS(4587), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4587), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4587), - [anon_sym_BSLASHGls] = ACTIONS(4587), - [anon_sym_BSLASHGLS] = ACTIONS(4587), - [anon_sym_BSLASHglspl] = ACTIONS(4587), - [anon_sym_BSLASHGlspl] = ACTIONS(4587), - [anon_sym_BSLASHGLSpl] = ACTIONS(4587), - [anon_sym_BSLASHglsdisp] = ACTIONS(4587), - [anon_sym_BSLASHglslink] = ACTIONS(4587), - [anon_sym_BSLASHglstext] = ACTIONS(4587), - [anon_sym_BSLASHGlstext] = ACTIONS(4587), - [anon_sym_BSLASHGLStext] = ACTIONS(4587), - [anon_sym_BSLASHglsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4587), - [anon_sym_BSLASHglsplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSplural] = ACTIONS(4587), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHglsname] = ACTIONS(4587), - [anon_sym_BSLASHGlsname] = ACTIONS(4587), - [anon_sym_BSLASHGLSname] = ACTIONS(4587), - [anon_sym_BSLASHglssymbol] = ACTIONS(4587), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4587), - [anon_sym_BSLASHglsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4587), - [anon_sym_BSLASHglsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4587), - [anon_sym_BSLASHglsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4587), - [anon_sym_BSLASHglsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4587), - [anon_sym_BSLASHglsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4587), - [anon_sym_BSLASHnewacronym] = ACTIONS(4587), - [anon_sym_BSLASHacrshort] = ACTIONS(4587), - [anon_sym_BSLASHAcrshort] = ACTIONS(4587), - [anon_sym_BSLASHACRshort] = ACTIONS(4587), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4587), - [anon_sym_BSLASHacrlong] = ACTIONS(4587), - [anon_sym_BSLASHAcrlong] = ACTIONS(4587), - [anon_sym_BSLASHACRlong] = ACTIONS(4587), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4587), - [anon_sym_BSLASHacrfull] = ACTIONS(4587), - [anon_sym_BSLASHAcrfull] = ACTIONS(4587), - [anon_sym_BSLASHACRfull] = ACTIONS(4587), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4587), - [anon_sym_BSLASHacs] = ACTIONS(4587), - [anon_sym_BSLASHAcs] = ACTIONS(4587), - [anon_sym_BSLASHacsp] = ACTIONS(4587), - [anon_sym_BSLASHAcsp] = ACTIONS(4587), - [anon_sym_BSLASHacl] = ACTIONS(4587), - [anon_sym_BSLASHAcl] = ACTIONS(4587), - [anon_sym_BSLASHaclp] = ACTIONS(4587), - [anon_sym_BSLASHAclp] = ACTIONS(4587), - [anon_sym_BSLASHacf] = ACTIONS(4587), - [anon_sym_BSLASHAcf] = ACTIONS(4587), - [anon_sym_BSLASHacfp] = ACTIONS(4587), - [anon_sym_BSLASHAcfp] = ACTIONS(4587), - [anon_sym_BSLASHac] = ACTIONS(4587), - [anon_sym_BSLASHAc] = ACTIONS(4587), - [anon_sym_BSLASHacp] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4587), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4587), - [anon_sym_BSLASHcolor] = ACTIONS(4587), - [anon_sym_BSLASHcolorbox] = ACTIONS(4587), - [anon_sym_BSLASHtextcolor] = ACTIONS(4587), - [anon_sym_BSLASHpagecolor] = ACTIONS(4587), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4587), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4587), + [365] = { + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(393), + [aux_sym__section_repeat3] = STATE(393), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHend] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [451] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), - }, - [452] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(1940), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1938), - [anon_sym_BSLASHpart] = ACTIONS(1940), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddpart] = ACTIONS(1940), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHchapter] = ACTIONS(1940), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddchap] = ACTIONS(1940), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsection] = ACTIONS(1940), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddsec] = ACTIONS(1940), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHparagraph] = ACTIONS(1940), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1940), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1938), - [sym_word] = ACTIONS(1940), - [sym_placeholder] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_SLASH] = ACTIONS(1940), - [anon_sym_CARET] = ACTIONS(1940), - [anon_sym__] = ACTIONS(1940), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_COLON] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1938), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1938), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1938), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1938), - [anon_sym_BSLASHbegin] = ACTIONS(1940), - [anon_sym_BSLASHend] = ACTIONS(1940), - [anon_sym_BSLASHusepackage] = ACTIONS(1940), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1940), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1940), - [anon_sym_BSLASHinclude] = ACTIONS(1940), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1940), - [anon_sym_BSLASHinput] = ACTIONS(1940), - [anon_sym_BSLASHsubfile] = ACTIONS(1940), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1940), - [anon_sym_BSLASHbibliography] = ACTIONS(1940), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1940), - [anon_sym_BSLASHincludesvg] = ACTIONS(1940), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1940), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1940), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1940), - [anon_sym_BSLASHimport] = ACTIONS(1940), - [anon_sym_BSLASHsubimport] = ACTIONS(1940), - [anon_sym_BSLASHinputfrom] = ACTIONS(1940), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1940), - [anon_sym_BSLASHincludefrom] = ACTIONS(1940), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1940), - [anon_sym_BSLASHcaption] = ACTIONS(1940), - [anon_sym_BSLASHcite] = ACTIONS(1940), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCite] = ACTIONS(1940), - [anon_sym_BSLASHnocite] = ACTIONS(1940), - [anon_sym_BSLASHcitet] = ACTIONS(1940), - [anon_sym_BSLASHcitep] = ACTIONS(1940), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteauthor] = ACTIONS(1940), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1940), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitetitle] = ACTIONS(1940), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteyear] = ACTIONS(1940), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitedate] = ACTIONS(1940), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteurl] = ACTIONS(1940), - [anon_sym_BSLASHfullcite] = ACTIONS(1940), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1940), - [anon_sym_BSLASHcitealt] = ACTIONS(1940), - [anon_sym_BSLASHcitealp] = ACTIONS(1940), - [anon_sym_BSLASHcitetext] = ACTIONS(1940), - [anon_sym_BSLASHparencite] = ACTIONS(1940), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHParencite] = ACTIONS(1940), - [anon_sym_BSLASHfootcite] = ACTIONS(1940), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1940), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1940), - [anon_sym_BSLASHtextcite] = ACTIONS(1940), - [anon_sym_BSLASHTextcite] = ACTIONS(1940), - [anon_sym_BSLASHsmartcite] = ACTIONS(1940), - [anon_sym_BSLASHSmartcite] = ACTIONS(1940), - [anon_sym_BSLASHsupercite] = ACTIONS(1940), - [anon_sym_BSLASHautocite] = ACTIONS(1940), - [anon_sym_BSLASHAutocite] = ACTIONS(1940), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHvolcite] = ACTIONS(1940), - [anon_sym_BSLASHVolcite] = ACTIONS(1940), - [anon_sym_BSLASHpvolcite] = ACTIONS(1940), - [anon_sym_BSLASHPvolcite] = ACTIONS(1940), - [anon_sym_BSLASHfvolcite] = ACTIONS(1940), - [anon_sym_BSLASHftvolcite] = ACTIONS(1940), - [anon_sym_BSLASHsvolcite] = ACTIONS(1940), - [anon_sym_BSLASHSvolcite] = ACTIONS(1940), - [anon_sym_BSLASHtvolcite] = ACTIONS(1940), - [anon_sym_BSLASHTvolcite] = ACTIONS(1940), - [anon_sym_BSLASHavolcite] = ACTIONS(1940), - [anon_sym_BSLASHAvolcite] = ACTIONS(1940), - [anon_sym_BSLASHnotecite] = ACTIONS(1940), - [anon_sym_BSLASHNotecite] = ACTIONS(1940), - [anon_sym_BSLASHpnotecite] = ACTIONS(1940), - [anon_sym_BSLASHPnotecite] = ACTIONS(1940), - [anon_sym_BSLASHfnotecite] = ACTIONS(1940), - [anon_sym_BSLASHlabel] = ACTIONS(1940), - [anon_sym_BSLASHref] = ACTIONS(1940), - [anon_sym_BSLASHeqref] = ACTIONS(1940), - [anon_sym_BSLASHvref] = ACTIONS(1940), - [anon_sym_BSLASHVref] = ACTIONS(1940), - [anon_sym_BSLASHautoref] = ACTIONS(1940), - [anon_sym_BSLASHpageref] = ACTIONS(1940), - [anon_sym_BSLASHcref] = ACTIONS(1940), - [anon_sym_BSLASHCref] = ACTIONS(1940), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1938), - [anon_sym_BSLASHnamecref] = ACTIONS(1940), - [anon_sym_BSLASHnameCref] = ACTIONS(1940), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1940), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1940), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1940), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1940), - [anon_sym_BSLASHlabelcref] = ACTIONS(1940), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1940), - [anon_sym_BSLASHcrefrange] = ACTIONS(1940), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCrefrange] = ACTIONS(1940), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1938), - [anon_sym_BSLASHnewlabel] = ACTIONS(1940), - [anon_sym_BSLASHnewcommand] = ACTIONS(1940), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1940), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1940), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1940), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1938), - [anon_sym_BSLASHdef] = ACTIONS(1940), - [anon_sym_BSLASHlet] = ACTIONS(1940), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1940), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1940), - [anon_sym_BSLASHgls] = ACTIONS(1940), - [anon_sym_BSLASHGls] = ACTIONS(1940), - [anon_sym_BSLASHGLS] = ACTIONS(1940), - [anon_sym_BSLASHglspl] = ACTIONS(1940), - [anon_sym_BSLASHGlspl] = ACTIONS(1940), - [anon_sym_BSLASHGLSpl] = ACTIONS(1940), - [anon_sym_BSLASHglsdisp] = ACTIONS(1940), - [anon_sym_BSLASHglslink] = ACTIONS(1940), - [anon_sym_BSLASHglstext] = ACTIONS(1940), - [anon_sym_BSLASHGlstext] = ACTIONS(1940), - [anon_sym_BSLASHGLStext] = ACTIONS(1940), - [anon_sym_BSLASHglsfirst] = ACTIONS(1940), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1940), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1940), - [anon_sym_BSLASHglsplural] = ACTIONS(1940), - [anon_sym_BSLASHGlsplural] = ACTIONS(1940), - [anon_sym_BSLASHGLSplural] = ACTIONS(1940), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHglsname] = ACTIONS(1940), - [anon_sym_BSLASHGlsname] = ACTIONS(1940), - [anon_sym_BSLASHGLSname] = ACTIONS(1940), - [anon_sym_BSLASHglssymbol] = ACTIONS(1940), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1940), - [anon_sym_BSLASHglsdesc] = ACTIONS(1940), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1940), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1940), - [anon_sym_BSLASHglsuseri] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1940), - [anon_sym_BSLASHglsuserii] = ACTIONS(1940), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1940), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1940), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1940), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1940), - [anon_sym_BSLASHglsuserv] = ACTIONS(1940), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1940), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1940), - [anon_sym_BSLASHglsuservi] = ACTIONS(1940), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1940), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1940), - [anon_sym_BSLASHnewacronym] = ACTIONS(1940), - [anon_sym_BSLASHacrshort] = ACTIONS(1940), - [anon_sym_BSLASHAcrshort] = ACTIONS(1940), - [anon_sym_BSLASHACRshort] = ACTIONS(1940), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1940), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1940), - [anon_sym_BSLASHacrlong] = ACTIONS(1940), - [anon_sym_BSLASHAcrlong] = ACTIONS(1940), - [anon_sym_BSLASHACRlong] = ACTIONS(1940), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1940), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1940), - [anon_sym_BSLASHacrfull] = ACTIONS(1940), - [anon_sym_BSLASHAcrfull] = ACTIONS(1940), - [anon_sym_BSLASHACRfull] = ACTIONS(1940), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1940), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1940), - [anon_sym_BSLASHacs] = ACTIONS(1940), - [anon_sym_BSLASHAcs] = ACTIONS(1940), - [anon_sym_BSLASHacsp] = ACTIONS(1940), - [anon_sym_BSLASHAcsp] = ACTIONS(1940), - [anon_sym_BSLASHacl] = ACTIONS(1940), - [anon_sym_BSLASHAcl] = ACTIONS(1940), - [anon_sym_BSLASHaclp] = ACTIONS(1940), - [anon_sym_BSLASHAclp] = ACTIONS(1940), - [anon_sym_BSLASHacf] = ACTIONS(1940), - [anon_sym_BSLASHAcf] = ACTIONS(1940), - [anon_sym_BSLASHacfp] = ACTIONS(1940), - [anon_sym_BSLASHAcfp] = ACTIONS(1940), - [anon_sym_BSLASHac] = ACTIONS(1940), - [anon_sym_BSLASHAc] = ACTIONS(1940), - [anon_sym_BSLASHacp] = ACTIONS(1940), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1940), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1940), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1940), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1940), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1940), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1940), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1940), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1940), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1940), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1940), - [anon_sym_BSLASHcolor] = ACTIONS(1940), - [anon_sym_BSLASHcolorbox] = ACTIONS(1940), - [anon_sym_BSLASHtextcolor] = ACTIONS(1940), - [anon_sym_BSLASHpagecolor] = ACTIONS(1940), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1940), - }, - [453] = { - [sym_curly_group] = STATE(1168), - [sym_mixed_group] = STATE(1168), - [aux_sym_generic_command_repeat1] = STATE(528), - [sym_command_name] = ACTIONS(4465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4465), - [anon_sym_LPAREN] = ACTIONS(4529), - [anon_sym_RPAREN] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4529), - [anon_sym_RBRACK] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_EQ] = ACTIONS(4463), - [anon_sym_BSLASHpart] = ACTIONS(4465), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddpart] = ACTIONS(4465), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4463), - [anon_sym_BSLASHchapter] = ACTIONS(4465), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddchap] = ACTIONS(4465), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsection] = ACTIONS(4465), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddsec] = ACTIONS(4465), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubsection] = ACTIONS(4465), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4465), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHparagraph] = ACTIONS(4465), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4465), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4463), - [anon_sym_BSLASHitem] = ACTIONS(4465), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4463), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(4465), - [sym_placeholder] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_CARET] = ACTIONS(4465), - [anon_sym__] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_PIPE] = ACTIONS(4465), - [anon_sym_COLON] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4465), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4463), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4463), - [anon_sym_DOLLAR] = ACTIONS(4465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4463), - [anon_sym_BSLASHbegin] = ACTIONS(4465), - [anon_sym_BSLASHusepackage] = ACTIONS(4465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4465), - [anon_sym_BSLASHinclude] = ACTIONS(4465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4465), - [anon_sym_BSLASHinput] = ACTIONS(4465), - [anon_sym_BSLASHsubfile] = ACTIONS(4465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4465), - [anon_sym_BSLASHbibliography] = ACTIONS(4465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4465), - [anon_sym_BSLASHincludesvg] = ACTIONS(4465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4465), - [anon_sym_BSLASHimport] = ACTIONS(4465), - [anon_sym_BSLASHsubimport] = ACTIONS(4465), - [anon_sym_BSLASHinputfrom] = ACTIONS(4465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4465), - [anon_sym_BSLASHincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHcaption] = ACTIONS(4465), - [anon_sym_BSLASHcite] = ACTIONS(4465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCite] = ACTIONS(4465), - [anon_sym_BSLASHnocite] = ACTIONS(4465), - [anon_sym_BSLASHcitet] = ACTIONS(4465), - [anon_sym_BSLASHcitep] = ACTIONS(4465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteauthor] = ACTIONS(4465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitetitle] = ACTIONS(4465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteyear] = ACTIONS(4465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitedate] = ACTIONS(4465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteurl] = ACTIONS(4465), - [anon_sym_BSLASHfullcite] = ACTIONS(4465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4465), - [anon_sym_BSLASHcitealt] = ACTIONS(4465), - [anon_sym_BSLASHcitealp] = ACTIONS(4465), - [anon_sym_BSLASHcitetext] = ACTIONS(4465), - [anon_sym_BSLASHparencite] = ACTIONS(4465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHParencite] = ACTIONS(4465), - [anon_sym_BSLASHfootcite] = ACTIONS(4465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4465), - [anon_sym_BSLASHtextcite] = ACTIONS(4465), - [anon_sym_BSLASHTextcite] = ACTIONS(4465), - [anon_sym_BSLASHsmartcite] = ACTIONS(4465), - [anon_sym_BSLASHSmartcite] = ACTIONS(4465), - [anon_sym_BSLASHsupercite] = ACTIONS(4465), - [anon_sym_BSLASHautocite] = ACTIONS(4465), - [anon_sym_BSLASHAutocite] = ACTIONS(4465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHvolcite] = ACTIONS(4465), - [anon_sym_BSLASHVolcite] = ACTIONS(4465), - [anon_sym_BSLASHpvolcite] = ACTIONS(4465), - [anon_sym_BSLASHPvolcite] = ACTIONS(4465), - [anon_sym_BSLASHfvolcite] = ACTIONS(4465), - [anon_sym_BSLASHftvolcite] = ACTIONS(4465), - [anon_sym_BSLASHsvolcite] = ACTIONS(4465), - [anon_sym_BSLASHSvolcite] = ACTIONS(4465), - [anon_sym_BSLASHtvolcite] = ACTIONS(4465), - [anon_sym_BSLASHTvolcite] = ACTIONS(4465), - [anon_sym_BSLASHavolcite] = ACTIONS(4465), - [anon_sym_BSLASHAvolcite] = ACTIONS(4465), - [anon_sym_BSLASHnotecite] = ACTIONS(4465), - [anon_sym_BSLASHNotecite] = ACTIONS(4465), - [anon_sym_BSLASHpnotecite] = ACTIONS(4465), - [anon_sym_BSLASHPnotecite] = ACTIONS(4465), - [anon_sym_BSLASHfnotecite] = ACTIONS(4465), - [anon_sym_BSLASHlabel] = ACTIONS(4465), - [anon_sym_BSLASHref] = ACTIONS(4465), - [anon_sym_BSLASHeqref] = ACTIONS(4465), - [anon_sym_BSLASHvref] = ACTIONS(4465), - [anon_sym_BSLASHVref] = ACTIONS(4465), - [anon_sym_BSLASHautoref] = ACTIONS(4465), - [anon_sym_BSLASHpageref] = ACTIONS(4465), - [anon_sym_BSLASHcref] = ACTIONS(4465), - [anon_sym_BSLASHCref] = ACTIONS(4465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnameCref] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHlabelcref] = ACTIONS(4465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCrefrange] = ACTIONS(4465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnewlabel] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4463), - [anon_sym_BSLASHdef] = ACTIONS(4465), - [anon_sym_BSLASHlet] = ACTIONS(4465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4465), - [anon_sym_BSLASHgls] = ACTIONS(4465), - [anon_sym_BSLASHGls] = ACTIONS(4465), - [anon_sym_BSLASHGLS] = ACTIONS(4465), - [anon_sym_BSLASHglspl] = ACTIONS(4465), - [anon_sym_BSLASHGlspl] = ACTIONS(4465), - [anon_sym_BSLASHGLSpl] = ACTIONS(4465), - [anon_sym_BSLASHglsdisp] = ACTIONS(4465), - [anon_sym_BSLASHglslink] = ACTIONS(4465), - [anon_sym_BSLASHglstext] = ACTIONS(4465), - [anon_sym_BSLASHGlstext] = ACTIONS(4465), - [anon_sym_BSLASHGLStext] = ACTIONS(4465), - [anon_sym_BSLASHglsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4465), - [anon_sym_BSLASHglsplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSplural] = ACTIONS(4465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHglsname] = ACTIONS(4465), - [anon_sym_BSLASHGlsname] = ACTIONS(4465), - [anon_sym_BSLASHGLSname] = ACTIONS(4465), - [anon_sym_BSLASHglssymbol] = ACTIONS(4465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4465), - [anon_sym_BSLASHglsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4465), - [anon_sym_BSLASHglsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4465), - [anon_sym_BSLASHglsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4465), - [anon_sym_BSLASHglsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4465), - [anon_sym_BSLASHglsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4465), - [anon_sym_BSLASHnewacronym] = ACTIONS(4465), - [anon_sym_BSLASHacrshort] = ACTIONS(4465), - [anon_sym_BSLASHAcrshort] = ACTIONS(4465), - [anon_sym_BSLASHACRshort] = ACTIONS(4465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4465), - [anon_sym_BSLASHacrlong] = ACTIONS(4465), - [anon_sym_BSLASHAcrlong] = ACTIONS(4465), - [anon_sym_BSLASHACRlong] = ACTIONS(4465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4465), - [anon_sym_BSLASHacrfull] = ACTIONS(4465), - [anon_sym_BSLASHAcrfull] = ACTIONS(4465), - [anon_sym_BSLASHACRfull] = ACTIONS(4465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4465), - [anon_sym_BSLASHacs] = ACTIONS(4465), - [anon_sym_BSLASHAcs] = ACTIONS(4465), - [anon_sym_BSLASHacsp] = ACTIONS(4465), - [anon_sym_BSLASHAcsp] = ACTIONS(4465), - [anon_sym_BSLASHacl] = ACTIONS(4465), - [anon_sym_BSLASHAcl] = ACTIONS(4465), - [anon_sym_BSLASHaclp] = ACTIONS(4465), - [anon_sym_BSLASHAclp] = ACTIONS(4465), - [anon_sym_BSLASHacf] = ACTIONS(4465), - [anon_sym_BSLASHAcf] = ACTIONS(4465), - [anon_sym_BSLASHacfp] = ACTIONS(4465), - [anon_sym_BSLASHAcfp] = ACTIONS(4465), - [anon_sym_BSLASHac] = ACTIONS(4465), - [anon_sym_BSLASHAc] = ACTIONS(4465), - [anon_sym_BSLASHacp] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4465), - [anon_sym_BSLASHcolor] = ACTIONS(4465), - [anon_sym_BSLASHcolorbox] = ACTIONS(4465), - [anon_sym_BSLASHtextcolor] = ACTIONS(4465), - [anon_sym_BSLASHpagecolor] = ACTIONS(4465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4465), - }, - [454] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(4455), + [366] = { + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(448), + [aux_sym__section_repeat6] = STATE(448), + [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4453), - [anon_sym_RPAREN] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4453), - [anon_sym_RBRACK] = ACTIONS(4453), - [anon_sym_COMMA] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(4453), - [anon_sym_BSLASHpart] = ACTIONS(4455), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddpart] = ACTIONS(4455), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4453), - [anon_sym_BSLASHchapter] = ACTIONS(4455), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddchap] = ACTIONS(4455), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsection] = ACTIONS(4455), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddsec] = ACTIONS(4455), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubsection] = ACTIONS(4455), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHparagraph] = ACTIONS(4455), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4453), - [anon_sym_BSLASHitem] = ACTIONS(4591), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4594), - [anon_sym_LBRACE] = ACTIONS(4453), - [sym_word] = ACTIONS(4455), - [sym_placeholder] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(4455), - [anon_sym_STAR] = ACTIONS(4455), - [anon_sym_SLASH] = ACTIONS(4455), - [anon_sym_CARET] = ACTIONS(4455), - [anon_sym__] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4455), - [anon_sym_GT] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4455), - [anon_sym_PIPE] = ACTIONS(4455), - [anon_sym_COLON] = ACTIONS(4455), - [anon_sym_SQUOTE] = ACTIONS(4455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4453), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4453), - [anon_sym_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4453), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4453), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4453), - [anon_sym_BSLASHbegin] = ACTIONS(4455), - [anon_sym_BSLASHusepackage] = ACTIONS(4455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4455), - [anon_sym_BSLASHinclude] = ACTIONS(4455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4455), - [anon_sym_BSLASHinput] = ACTIONS(4455), - [anon_sym_BSLASHsubfile] = ACTIONS(4455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4455), - [anon_sym_BSLASHbibliography] = ACTIONS(4455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4455), - [anon_sym_BSLASHincludesvg] = ACTIONS(4455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4455), - [anon_sym_BSLASHimport] = ACTIONS(4455), - [anon_sym_BSLASHsubimport] = ACTIONS(4455), - [anon_sym_BSLASHinputfrom] = ACTIONS(4455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4455), - [anon_sym_BSLASHincludefrom] = ACTIONS(4455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4455), - [anon_sym_BSLASHcaption] = ACTIONS(4455), - [anon_sym_BSLASHcite] = ACTIONS(4455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCite] = ACTIONS(4455), - [anon_sym_BSLASHnocite] = ACTIONS(4455), - [anon_sym_BSLASHcitet] = ACTIONS(4455), - [anon_sym_BSLASHcitep] = ACTIONS(4455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteauthor] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitetitle] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteyear] = ACTIONS(4455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitedate] = ACTIONS(4455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteurl] = ACTIONS(4455), - [anon_sym_BSLASHfullcite] = ACTIONS(4455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4455), - [anon_sym_BSLASHcitealt] = ACTIONS(4455), - [anon_sym_BSLASHcitealp] = ACTIONS(4455), - [anon_sym_BSLASHcitetext] = ACTIONS(4455), - [anon_sym_BSLASHparencite] = ACTIONS(4455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHParencite] = ACTIONS(4455), - [anon_sym_BSLASHfootcite] = ACTIONS(4455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4455), - [anon_sym_BSLASHtextcite] = ACTIONS(4455), - [anon_sym_BSLASHTextcite] = ACTIONS(4455), - [anon_sym_BSLASHsmartcite] = ACTIONS(4455), - [anon_sym_BSLASHSmartcite] = ACTIONS(4455), - [anon_sym_BSLASHsupercite] = ACTIONS(4455), - [anon_sym_BSLASHautocite] = ACTIONS(4455), - [anon_sym_BSLASHAutocite] = ACTIONS(4455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHvolcite] = ACTIONS(4455), - [anon_sym_BSLASHVolcite] = ACTIONS(4455), - [anon_sym_BSLASHpvolcite] = ACTIONS(4455), - [anon_sym_BSLASHPvolcite] = ACTIONS(4455), - [anon_sym_BSLASHfvolcite] = ACTIONS(4455), - [anon_sym_BSLASHftvolcite] = ACTIONS(4455), - [anon_sym_BSLASHsvolcite] = ACTIONS(4455), - [anon_sym_BSLASHSvolcite] = ACTIONS(4455), - [anon_sym_BSLASHtvolcite] = ACTIONS(4455), - [anon_sym_BSLASHTvolcite] = ACTIONS(4455), - [anon_sym_BSLASHavolcite] = ACTIONS(4455), - [anon_sym_BSLASHAvolcite] = ACTIONS(4455), - [anon_sym_BSLASHnotecite] = ACTIONS(4455), - [anon_sym_BSLASHNotecite] = ACTIONS(4455), - [anon_sym_BSLASHpnotecite] = ACTIONS(4455), - [anon_sym_BSLASHPnotecite] = ACTIONS(4455), - [anon_sym_BSLASHfnotecite] = ACTIONS(4455), - [anon_sym_BSLASHlabel] = ACTIONS(4455), - [anon_sym_BSLASHref] = ACTIONS(4455), - [anon_sym_BSLASHeqref] = ACTIONS(4455), - [anon_sym_BSLASHvref] = ACTIONS(4455), - [anon_sym_BSLASHVref] = ACTIONS(4455), - [anon_sym_BSLASHautoref] = ACTIONS(4455), - [anon_sym_BSLASHpageref] = ACTIONS(4455), - [anon_sym_BSLASHcref] = ACTIONS(4455), - [anon_sym_BSLASHCref] = ACTIONS(4455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4453), - [anon_sym_BSLASHnamecref] = ACTIONS(4455), - [anon_sym_BSLASHnameCref] = ACTIONS(4455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4455), - [anon_sym_BSLASHlabelcref] = ACTIONS(4455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4455), - [anon_sym_BSLASHcrefrange] = ACTIONS(4455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCrefrange] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4453), - [anon_sym_BSLASHnewlabel] = ACTIONS(4455), - [anon_sym_BSLASHnewcommand] = ACTIONS(4455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4453), - [anon_sym_BSLASHdef] = ACTIONS(4455), - [anon_sym_BSLASHlet] = ACTIONS(4455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4455), - [anon_sym_BSLASHgls] = ACTIONS(4455), - [anon_sym_BSLASHGls] = ACTIONS(4455), - [anon_sym_BSLASHGLS] = ACTIONS(4455), - [anon_sym_BSLASHglspl] = ACTIONS(4455), - [anon_sym_BSLASHGlspl] = ACTIONS(4455), - [anon_sym_BSLASHGLSpl] = ACTIONS(4455), - [anon_sym_BSLASHglsdisp] = ACTIONS(4455), - [anon_sym_BSLASHglslink] = ACTIONS(4455), - [anon_sym_BSLASHglstext] = ACTIONS(4455), - [anon_sym_BSLASHGlstext] = ACTIONS(4455), - [anon_sym_BSLASHGLStext] = ACTIONS(4455), - [anon_sym_BSLASHglsfirst] = ACTIONS(4455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4455), - [anon_sym_BSLASHglsplural] = ACTIONS(4455), - [anon_sym_BSLASHGlsplural] = ACTIONS(4455), - [anon_sym_BSLASHGLSplural] = ACTIONS(4455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHglsname] = ACTIONS(4455), - [anon_sym_BSLASHGlsname] = ACTIONS(4455), - [anon_sym_BSLASHGLSname] = ACTIONS(4455), - [anon_sym_BSLASHglssymbol] = ACTIONS(4455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4455), - [anon_sym_BSLASHglsdesc] = ACTIONS(4455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4455), - [anon_sym_BSLASHglsuseri] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4455), - [anon_sym_BSLASHglsuserii] = ACTIONS(4455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4455), - [anon_sym_BSLASHglsuserv] = ACTIONS(4455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4455), - [anon_sym_BSLASHglsuservi] = ACTIONS(4455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4455), - [anon_sym_BSLASHnewacronym] = ACTIONS(4455), - [anon_sym_BSLASHacrshort] = ACTIONS(4455), - [anon_sym_BSLASHAcrshort] = ACTIONS(4455), - [anon_sym_BSLASHACRshort] = ACTIONS(4455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4455), - [anon_sym_BSLASHacrlong] = ACTIONS(4455), - [anon_sym_BSLASHAcrlong] = ACTIONS(4455), - [anon_sym_BSLASHACRlong] = ACTIONS(4455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4455), - [anon_sym_BSLASHacrfull] = ACTIONS(4455), - [anon_sym_BSLASHAcrfull] = ACTIONS(4455), - [anon_sym_BSLASHACRfull] = ACTIONS(4455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4455), - [anon_sym_BSLASHacs] = ACTIONS(4455), - [anon_sym_BSLASHAcs] = ACTIONS(4455), - [anon_sym_BSLASHacsp] = ACTIONS(4455), - [anon_sym_BSLASHAcsp] = ACTIONS(4455), - [anon_sym_BSLASHacl] = ACTIONS(4455), - [anon_sym_BSLASHAcl] = ACTIONS(4455), - [anon_sym_BSLASHaclp] = ACTIONS(4455), - [anon_sym_BSLASHAclp] = ACTIONS(4455), - [anon_sym_BSLASHacf] = ACTIONS(4455), - [anon_sym_BSLASHAcf] = ACTIONS(4455), - [anon_sym_BSLASHacfp] = ACTIONS(4455), - [anon_sym_BSLASHAcfp] = ACTIONS(4455), - [anon_sym_BSLASHac] = ACTIONS(4455), - [anon_sym_BSLASHAc] = ACTIONS(4455), - [anon_sym_BSLASHacp] = ACTIONS(4455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4455), - [anon_sym_BSLASHcolor] = ACTIONS(4455), - [anon_sym_BSLASHcolorbox] = ACTIONS(4455), - [anon_sym_BSLASHtextcolor] = ACTIONS(4455), - [anon_sym_BSLASHpagecolor] = ACTIONS(4455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4455), - }, - [455] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(1922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1922), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1920), - [sym_word] = ACTIONS(1922), - [sym_placeholder] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_SLASH] = ACTIONS(1922), - [anon_sym_CARET] = ACTIONS(1922), - [anon_sym__] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_COLON] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1920), - [anon_sym_BSLASHbegin] = ACTIONS(1922), - [anon_sym_BSLASHend] = ACTIONS(1922), - [anon_sym_BSLASHusepackage] = ACTIONS(1922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1922), - [anon_sym_BSLASHinclude] = ACTIONS(1922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1922), - [anon_sym_BSLASHinput] = ACTIONS(1922), - [anon_sym_BSLASHsubfile] = ACTIONS(1922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1922), - [anon_sym_BSLASHbibliography] = ACTIONS(1922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1922), - [anon_sym_BSLASHincludesvg] = ACTIONS(1922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1922), - [anon_sym_BSLASHimport] = ACTIONS(1922), - [anon_sym_BSLASHsubimport] = ACTIONS(1922), - [anon_sym_BSLASHinputfrom] = ACTIONS(1922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1922), - [anon_sym_BSLASHincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHcaption] = ACTIONS(1922), - [anon_sym_BSLASHcite] = ACTIONS(1922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCite] = ACTIONS(1922), - [anon_sym_BSLASHnocite] = ACTIONS(1922), - [anon_sym_BSLASHcitet] = ACTIONS(1922), - [anon_sym_BSLASHcitep] = ACTIONS(1922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteauthor] = ACTIONS(1922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitetitle] = ACTIONS(1922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteyear] = ACTIONS(1922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitedate] = ACTIONS(1922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteurl] = ACTIONS(1922), - [anon_sym_BSLASHfullcite] = ACTIONS(1922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1922), - [anon_sym_BSLASHcitealt] = ACTIONS(1922), - [anon_sym_BSLASHcitealp] = ACTIONS(1922), - [anon_sym_BSLASHcitetext] = ACTIONS(1922), - [anon_sym_BSLASHparencite] = ACTIONS(1922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHParencite] = ACTIONS(1922), - [anon_sym_BSLASHfootcite] = ACTIONS(1922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1922), - [anon_sym_BSLASHtextcite] = ACTIONS(1922), - [anon_sym_BSLASHTextcite] = ACTIONS(1922), - [anon_sym_BSLASHsmartcite] = ACTIONS(1922), - [anon_sym_BSLASHSmartcite] = ACTIONS(1922), - [anon_sym_BSLASHsupercite] = ACTIONS(1922), - [anon_sym_BSLASHautocite] = ACTIONS(1922), - [anon_sym_BSLASHAutocite] = ACTIONS(1922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHvolcite] = ACTIONS(1922), - [anon_sym_BSLASHVolcite] = ACTIONS(1922), - [anon_sym_BSLASHpvolcite] = ACTIONS(1922), - [anon_sym_BSLASHPvolcite] = ACTIONS(1922), - [anon_sym_BSLASHfvolcite] = ACTIONS(1922), - [anon_sym_BSLASHftvolcite] = ACTIONS(1922), - [anon_sym_BSLASHsvolcite] = ACTIONS(1922), - [anon_sym_BSLASHSvolcite] = ACTIONS(1922), - [anon_sym_BSLASHtvolcite] = ACTIONS(1922), - [anon_sym_BSLASHTvolcite] = ACTIONS(1922), - [anon_sym_BSLASHavolcite] = ACTIONS(1922), - [anon_sym_BSLASHAvolcite] = ACTIONS(1922), - [anon_sym_BSLASHnotecite] = ACTIONS(1922), - [anon_sym_BSLASHNotecite] = ACTIONS(1922), - [anon_sym_BSLASHpnotecite] = ACTIONS(1922), - [anon_sym_BSLASHPnotecite] = ACTIONS(1922), - [anon_sym_BSLASHfnotecite] = ACTIONS(1922), - [anon_sym_BSLASHlabel] = ACTIONS(1922), - [anon_sym_BSLASHref] = ACTIONS(1922), - [anon_sym_BSLASHeqref] = ACTIONS(1922), - [anon_sym_BSLASHvref] = ACTIONS(1922), - [anon_sym_BSLASHVref] = ACTIONS(1922), - [anon_sym_BSLASHautoref] = ACTIONS(1922), - [anon_sym_BSLASHpageref] = ACTIONS(1922), - [anon_sym_BSLASHcref] = ACTIONS(1922), - [anon_sym_BSLASHCref] = ACTIONS(1922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnameCref] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHlabelcref] = ACTIONS(1922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCrefrange] = ACTIONS(1922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnewlabel] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1920), - [anon_sym_BSLASHdef] = ACTIONS(1922), - [anon_sym_BSLASHlet] = ACTIONS(1922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1922), - [anon_sym_BSLASHgls] = ACTIONS(1922), - [anon_sym_BSLASHGls] = ACTIONS(1922), - [anon_sym_BSLASHGLS] = ACTIONS(1922), - [anon_sym_BSLASHglspl] = ACTIONS(1922), - [anon_sym_BSLASHGlspl] = ACTIONS(1922), - [anon_sym_BSLASHGLSpl] = ACTIONS(1922), - [anon_sym_BSLASHglsdisp] = ACTIONS(1922), - [anon_sym_BSLASHglslink] = ACTIONS(1922), - [anon_sym_BSLASHglstext] = ACTIONS(1922), - [anon_sym_BSLASHGlstext] = ACTIONS(1922), - [anon_sym_BSLASHGLStext] = ACTIONS(1922), - [anon_sym_BSLASHglsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1922), - [anon_sym_BSLASHglsplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSplural] = ACTIONS(1922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHglsname] = ACTIONS(1922), - [anon_sym_BSLASHGlsname] = ACTIONS(1922), - [anon_sym_BSLASHGLSname] = ACTIONS(1922), - [anon_sym_BSLASHglssymbol] = ACTIONS(1922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1922), - [anon_sym_BSLASHglsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1922), - [anon_sym_BSLASHglsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1922), - [anon_sym_BSLASHglsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1922), - [anon_sym_BSLASHglsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1922), - [anon_sym_BSLASHglsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1922), - [anon_sym_BSLASHnewacronym] = ACTIONS(1922), - [anon_sym_BSLASHacrshort] = ACTIONS(1922), - [anon_sym_BSLASHAcrshort] = ACTIONS(1922), - [anon_sym_BSLASHACRshort] = ACTIONS(1922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1922), - [anon_sym_BSLASHacrlong] = ACTIONS(1922), - [anon_sym_BSLASHAcrlong] = ACTIONS(1922), - [anon_sym_BSLASHACRlong] = ACTIONS(1922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1922), - [anon_sym_BSLASHacrfull] = ACTIONS(1922), - [anon_sym_BSLASHAcrfull] = ACTIONS(1922), - [anon_sym_BSLASHACRfull] = ACTIONS(1922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1922), - [anon_sym_BSLASHacs] = ACTIONS(1922), - [anon_sym_BSLASHAcs] = ACTIONS(1922), - [anon_sym_BSLASHacsp] = ACTIONS(1922), - [anon_sym_BSLASHAcsp] = ACTIONS(1922), - [anon_sym_BSLASHacl] = ACTIONS(1922), - [anon_sym_BSLASHAcl] = ACTIONS(1922), - [anon_sym_BSLASHaclp] = ACTIONS(1922), - [anon_sym_BSLASHAclp] = ACTIONS(1922), - [anon_sym_BSLASHacf] = ACTIONS(1922), - [anon_sym_BSLASHAcf] = ACTIONS(1922), - [anon_sym_BSLASHacfp] = ACTIONS(1922), - [anon_sym_BSLASHAcfp] = ACTIONS(1922), - [anon_sym_BSLASHac] = ACTIONS(1922), - [anon_sym_BSLASHAc] = ACTIONS(1922), - [anon_sym_BSLASHacp] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1922), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1922), - [anon_sym_BSLASHcolor] = ACTIONS(1922), - [anon_sym_BSLASHcolorbox] = ACTIONS(1922), - [anon_sym_BSLASHtextcolor] = ACTIONS(1922), - [anon_sym_BSLASHpagecolor] = ACTIONS(1922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1922), - }, - [456] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(1922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(1922), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [sym_word] = ACTIONS(1922), - [sym_placeholder] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_SLASH] = ACTIONS(1922), - [anon_sym_CARET] = ACTIONS(1922), - [anon_sym__] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_COLON] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1920), - [anon_sym_BSLASHbegin] = ACTIONS(1922), - [anon_sym_BSLASHend] = ACTIONS(1922), - [anon_sym_BSLASHusepackage] = ACTIONS(1922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1922), - [anon_sym_BSLASHinclude] = ACTIONS(1922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1922), - [anon_sym_BSLASHinput] = ACTIONS(1922), - [anon_sym_BSLASHsubfile] = ACTIONS(1922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1922), - [anon_sym_BSLASHbibliography] = ACTIONS(1922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1922), - [anon_sym_BSLASHincludesvg] = ACTIONS(1922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1922), - [anon_sym_BSLASHimport] = ACTIONS(1922), - [anon_sym_BSLASHsubimport] = ACTIONS(1922), - [anon_sym_BSLASHinputfrom] = ACTIONS(1922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1922), - [anon_sym_BSLASHincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHcaption] = ACTIONS(1922), - [anon_sym_BSLASHcite] = ACTIONS(1922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCite] = ACTIONS(1922), - [anon_sym_BSLASHnocite] = ACTIONS(1922), - [anon_sym_BSLASHcitet] = ACTIONS(1922), - [anon_sym_BSLASHcitep] = ACTIONS(1922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteauthor] = ACTIONS(1922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitetitle] = ACTIONS(1922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteyear] = ACTIONS(1922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitedate] = ACTIONS(1922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteurl] = ACTIONS(1922), - [anon_sym_BSLASHfullcite] = ACTIONS(1922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1922), - [anon_sym_BSLASHcitealt] = ACTIONS(1922), - [anon_sym_BSLASHcitealp] = ACTIONS(1922), - [anon_sym_BSLASHcitetext] = ACTIONS(1922), - [anon_sym_BSLASHparencite] = ACTIONS(1922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHParencite] = ACTIONS(1922), - [anon_sym_BSLASHfootcite] = ACTIONS(1922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1922), - [anon_sym_BSLASHtextcite] = ACTIONS(1922), - [anon_sym_BSLASHTextcite] = ACTIONS(1922), - [anon_sym_BSLASHsmartcite] = ACTIONS(1922), - [anon_sym_BSLASHSmartcite] = ACTIONS(1922), - [anon_sym_BSLASHsupercite] = ACTIONS(1922), - [anon_sym_BSLASHautocite] = ACTIONS(1922), - [anon_sym_BSLASHAutocite] = ACTIONS(1922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHvolcite] = ACTIONS(1922), - [anon_sym_BSLASHVolcite] = ACTIONS(1922), - [anon_sym_BSLASHpvolcite] = ACTIONS(1922), - [anon_sym_BSLASHPvolcite] = ACTIONS(1922), - [anon_sym_BSLASHfvolcite] = ACTIONS(1922), - [anon_sym_BSLASHftvolcite] = ACTIONS(1922), - [anon_sym_BSLASHsvolcite] = ACTIONS(1922), - [anon_sym_BSLASHSvolcite] = ACTIONS(1922), - [anon_sym_BSLASHtvolcite] = ACTIONS(1922), - [anon_sym_BSLASHTvolcite] = ACTIONS(1922), - [anon_sym_BSLASHavolcite] = ACTIONS(1922), - [anon_sym_BSLASHAvolcite] = ACTIONS(1922), - [anon_sym_BSLASHnotecite] = ACTIONS(1922), - [anon_sym_BSLASHNotecite] = ACTIONS(1922), - [anon_sym_BSLASHpnotecite] = ACTIONS(1922), - [anon_sym_BSLASHPnotecite] = ACTIONS(1922), - [anon_sym_BSLASHfnotecite] = ACTIONS(1922), - [anon_sym_BSLASHlabel] = ACTIONS(1922), - [anon_sym_BSLASHref] = ACTIONS(1922), - [anon_sym_BSLASHeqref] = ACTIONS(1922), - [anon_sym_BSLASHvref] = ACTIONS(1922), - [anon_sym_BSLASHVref] = ACTIONS(1922), - [anon_sym_BSLASHautoref] = ACTIONS(1922), - [anon_sym_BSLASHpageref] = ACTIONS(1922), - [anon_sym_BSLASHcref] = ACTIONS(1922), - [anon_sym_BSLASHCref] = ACTIONS(1922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnameCref] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHlabelcref] = ACTIONS(1922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCrefrange] = ACTIONS(1922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnewlabel] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1920), - [anon_sym_BSLASHdef] = ACTIONS(1922), - [anon_sym_BSLASHlet] = ACTIONS(1922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1922), - [anon_sym_BSLASHgls] = ACTIONS(1922), - [anon_sym_BSLASHGls] = ACTIONS(1922), - [anon_sym_BSLASHGLS] = ACTIONS(1922), - [anon_sym_BSLASHglspl] = ACTIONS(1922), - [anon_sym_BSLASHGlspl] = ACTIONS(1922), - [anon_sym_BSLASHGLSpl] = ACTIONS(1922), - [anon_sym_BSLASHglsdisp] = ACTIONS(1922), - [anon_sym_BSLASHglslink] = ACTIONS(1922), - [anon_sym_BSLASHglstext] = ACTIONS(1922), - [anon_sym_BSLASHGlstext] = ACTIONS(1922), - [anon_sym_BSLASHGLStext] = ACTIONS(1922), - [anon_sym_BSLASHglsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1922), - [anon_sym_BSLASHglsplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSplural] = ACTIONS(1922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHglsname] = ACTIONS(1922), - [anon_sym_BSLASHGlsname] = ACTIONS(1922), - [anon_sym_BSLASHGLSname] = ACTIONS(1922), - [anon_sym_BSLASHglssymbol] = ACTIONS(1922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1922), - [anon_sym_BSLASHglsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1922), - [anon_sym_BSLASHglsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1922), - [anon_sym_BSLASHglsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1922), - [anon_sym_BSLASHglsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1922), - [anon_sym_BSLASHglsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1922), - [anon_sym_BSLASHnewacronym] = ACTIONS(1922), - [anon_sym_BSLASHacrshort] = ACTIONS(1922), - [anon_sym_BSLASHAcrshort] = ACTIONS(1922), - [anon_sym_BSLASHACRshort] = ACTIONS(1922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1922), - [anon_sym_BSLASHacrlong] = ACTIONS(1922), - [anon_sym_BSLASHAcrlong] = ACTIONS(1922), - [anon_sym_BSLASHACRlong] = ACTIONS(1922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1922), - [anon_sym_BSLASHacrfull] = ACTIONS(1922), - [anon_sym_BSLASHAcrfull] = ACTIONS(1922), - [anon_sym_BSLASHACRfull] = ACTIONS(1922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1922), - [anon_sym_BSLASHacs] = ACTIONS(1922), - [anon_sym_BSLASHAcs] = ACTIONS(1922), - [anon_sym_BSLASHacsp] = ACTIONS(1922), - [anon_sym_BSLASHAcsp] = ACTIONS(1922), - [anon_sym_BSLASHacl] = ACTIONS(1922), - [anon_sym_BSLASHAcl] = ACTIONS(1922), - [anon_sym_BSLASHaclp] = ACTIONS(1922), - [anon_sym_BSLASHAclp] = ACTIONS(1922), - [anon_sym_BSLASHacf] = ACTIONS(1922), - [anon_sym_BSLASHAcf] = ACTIONS(1922), - [anon_sym_BSLASHacfp] = ACTIONS(1922), - [anon_sym_BSLASHAcfp] = ACTIONS(1922), - [anon_sym_BSLASHac] = ACTIONS(1922), - [anon_sym_BSLASHAc] = ACTIONS(1922), - [anon_sym_BSLASHacp] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1922), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1922), - [anon_sym_BSLASHcolor] = ACTIONS(1922), - [anon_sym_BSLASHcolorbox] = ACTIONS(1922), - [anon_sym_BSLASHtextcolor] = ACTIONS(1922), - [anon_sym_BSLASHpagecolor] = ACTIONS(1922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1922), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHitem] = ACTIONS(4479), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [457] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), + [367] = { + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(449), + [aux_sym__section_repeat5] = STATE(449), [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -160276,12 +134937,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), [anon_sym_BSLASHsubsection] = ACTIONS(4479), [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), [anon_sym_BSLASHparagraph] = ACTIONS(4479), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4597), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4600), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), [anon_sym_BSLASHitem] = ACTIONS(4479), [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), [anon_sym_LBRACE] = ACTIONS(4477), @@ -160519,16059 +135180,13764 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(4479), [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [458] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(1898), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1898), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHend] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), - }, - [459] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(1898), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(1898), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHend] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), - }, - [460] = { - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(441), - [aux_sym__section_repeat6] = STATE(441), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1898), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHitem] = ACTIONS(1898), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHend] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), + [368] = { + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, - [461] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(461), - [aux_sym__section_repeat6] = STATE(461), - [sym_command_name] = ACTIONS(4409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_RPAREN] = ACTIONS(4407), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_RBRACK] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_BSLASHpart] = ACTIONS(4409), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddpart] = ACTIONS(4409), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4407), - [anon_sym_BSLASHchapter] = ACTIONS(4409), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddchap] = ACTIONS(4409), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsection] = ACTIONS(4409), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddsec] = ACTIONS(4409), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsubsection] = ACTIONS(4409), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4409), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHparagraph] = ACTIONS(4603), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4606), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4409), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4407), - [anon_sym_BSLASHitem] = ACTIONS(4409), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4407), - [anon_sym_LBRACE] = ACTIONS(4407), - [sym_word] = ACTIONS(4409), - [sym_placeholder] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4409), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_STAR] = ACTIONS(4409), - [anon_sym_SLASH] = ACTIONS(4409), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym__] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4409), - [anon_sym_GT] = ACTIONS(4409), - [anon_sym_BANG] = ACTIONS(4409), - [anon_sym_PIPE] = ACTIONS(4409), - [anon_sym_COLON] = ACTIONS(4409), - [anon_sym_SQUOTE] = ACTIONS(4409), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4407), - [anon_sym_DOLLAR] = ACTIONS(4409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4407), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4407), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4407), - [anon_sym_BSLASHbegin] = ACTIONS(4409), - [anon_sym_BSLASHusepackage] = ACTIONS(4409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4409), - [anon_sym_BSLASHinclude] = ACTIONS(4409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4409), - [anon_sym_BSLASHinput] = ACTIONS(4409), - [anon_sym_BSLASHsubfile] = ACTIONS(4409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4409), - [anon_sym_BSLASHbibliography] = ACTIONS(4409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4409), - [anon_sym_BSLASHincludesvg] = ACTIONS(4409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4409), - [anon_sym_BSLASHimport] = ACTIONS(4409), - [anon_sym_BSLASHsubimport] = ACTIONS(4409), - [anon_sym_BSLASHinputfrom] = ACTIONS(4409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4409), - [anon_sym_BSLASHincludefrom] = ACTIONS(4409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4409), - [anon_sym_BSLASHcaption] = ACTIONS(4409), - [anon_sym_BSLASHcite] = ACTIONS(4409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCite] = ACTIONS(4409), - [anon_sym_BSLASHnocite] = ACTIONS(4409), - [anon_sym_BSLASHcitet] = ACTIONS(4409), - [anon_sym_BSLASHcitep] = ACTIONS(4409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteauthor] = ACTIONS(4409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitetitle] = ACTIONS(4409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteyear] = ACTIONS(4409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitedate] = ACTIONS(4409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteurl] = ACTIONS(4409), - [anon_sym_BSLASHfullcite] = ACTIONS(4409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4409), - [anon_sym_BSLASHcitealt] = ACTIONS(4409), - [anon_sym_BSLASHcitealp] = ACTIONS(4409), - [anon_sym_BSLASHcitetext] = ACTIONS(4409), - [anon_sym_BSLASHparencite] = ACTIONS(4409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHParencite] = ACTIONS(4409), - [anon_sym_BSLASHfootcite] = ACTIONS(4409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4409), - [anon_sym_BSLASHtextcite] = ACTIONS(4409), - [anon_sym_BSLASHTextcite] = ACTIONS(4409), - [anon_sym_BSLASHsmartcite] = ACTIONS(4409), - [anon_sym_BSLASHSmartcite] = ACTIONS(4409), - [anon_sym_BSLASHsupercite] = ACTIONS(4409), - [anon_sym_BSLASHautocite] = ACTIONS(4409), - [anon_sym_BSLASHAutocite] = ACTIONS(4409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHvolcite] = ACTIONS(4409), - [anon_sym_BSLASHVolcite] = ACTIONS(4409), - [anon_sym_BSLASHpvolcite] = ACTIONS(4409), - [anon_sym_BSLASHPvolcite] = ACTIONS(4409), - [anon_sym_BSLASHfvolcite] = ACTIONS(4409), - [anon_sym_BSLASHftvolcite] = ACTIONS(4409), - [anon_sym_BSLASHsvolcite] = ACTIONS(4409), - [anon_sym_BSLASHSvolcite] = ACTIONS(4409), - [anon_sym_BSLASHtvolcite] = ACTIONS(4409), - [anon_sym_BSLASHTvolcite] = ACTIONS(4409), - [anon_sym_BSLASHavolcite] = ACTIONS(4409), - [anon_sym_BSLASHAvolcite] = ACTIONS(4409), - [anon_sym_BSLASHnotecite] = ACTIONS(4409), - [anon_sym_BSLASHNotecite] = ACTIONS(4409), - [anon_sym_BSLASHpnotecite] = ACTIONS(4409), - [anon_sym_BSLASHPnotecite] = ACTIONS(4409), - [anon_sym_BSLASHfnotecite] = ACTIONS(4409), - [anon_sym_BSLASHlabel] = ACTIONS(4409), - [anon_sym_BSLASHref] = ACTIONS(4409), - [anon_sym_BSLASHeqref] = ACTIONS(4409), - [anon_sym_BSLASHvref] = ACTIONS(4409), - [anon_sym_BSLASHVref] = ACTIONS(4409), - [anon_sym_BSLASHautoref] = ACTIONS(4409), - [anon_sym_BSLASHpageref] = ACTIONS(4409), - [anon_sym_BSLASHcref] = ACTIONS(4409), - [anon_sym_BSLASHCref] = ACTIONS(4409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4407), - [anon_sym_BSLASHnamecref] = ACTIONS(4409), - [anon_sym_BSLASHnameCref] = ACTIONS(4409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4409), - [anon_sym_BSLASHlabelcref] = ACTIONS(4409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4409), - [anon_sym_BSLASHcrefrange] = ACTIONS(4409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCrefrange] = ACTIONS(4409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4407), - [anon_sym_BSLASHnewlabel] = ACTIONS(4409), - [anon_sym_BSLASHnewcommand] = ACTIONS(4409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4407), - [anon_sym_BSLASHdef] = ACTIONS(4409), - [anon_sym_BSLASHlet] = ACTIONS(4409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4409), - [anon_sym_BSLASHgls] = ACTIONS(4409), - [anon_sym_BSLASHGls] = ACTIONS(4409), - [anon_sym_BSLASHGLS] = ACTIONS(4409), - [anon_sym_BSLASHglspl] = ACTIONS(4409), - [anon_sym_BSLASHGlspl] = ACTIONS(4409), - [anon_sym_BSLASHGLSpl] = ACTIONS(4409), - [anon_sym_BSLASHglsdisp] = ACTIONS(4409), - [anon_sym_BSLASHglslink] = ACTIONS(4409), - [anon_sym_BSLASHglstext] = ACTIONS(4409), - [anon_sym_BSLASHGlstext] = ACTIONS(4409), - [anon_sym_BSLASHGLStext] = ACTIONS(4409), - [anon_sym_BSLASHglsfirst] = ACTIONS(4409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4409), - [anon_sym_BSLASHglsplural] = ACTIONS(4409), - [anon_sym_BSLASHGlsplural] = ACTIONS(4409), - [anon_sym_BSLASHGLSplural] = ACTIONS(4409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHglsname] = ACTIONS(4409), - [anon_sym_BSLASHGlsname] = ACTIONS(4409), - [anon_sym_BSLASHGLSname] = ACTIONS(4409), - [anon_sym_BSLASHglssymbol] = ACTIONS(4409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4409), - [anon_sym_BSLASHglsdesc] = ACTIONS(4409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4409), - [anon_sym_BSLASHglsuseri] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4409), - [anon_sym_BSLASHglsuserii] = ACTIONS(4409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4409), - [anon_sym_BSLASHglsuserv] = ACTIONS(4409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4409), - [anon_sym_BSLASHglsuservi] = ACTIONS(4409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4409), - [anon_sym_BSLASHnewacronym] = ACTIONS(4409), - [anon_sym_BSLASHacrshort] = ACTIONS(4409), - [anon_sym_BSLASHAcrshort] = ACTIONS(4409), - [anon_sym_BSLASHACRshort] = ACTIONS(4409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4409), - [anon_sym_BSLASHacrlong] = ACTIONS(4409), - [anon_sym_BSLASHAcrlong] = ACTIONS(4409), - [anon_sym_BSLASHACRlong] = ACTIONS(4409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4409), - [anon_sym_BSLASHacrfull] = ACTIONS(4409), - [anon_sym_BSLASHAcrfull] = ACTIONS(4409), - [anon_sym_BSLASHACRfull] = ACTIONS(4409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4409), - [anon_sym_BSLASHacs] = ACTIONS(4409), - [anon_sym_BSLASHAcs] = ACTIONS(4409), - [anon_sym_BSLASHacsp] = ACTIONS(4409), - [anon_sym_BSLASHAcsp] = ACTIONS(4409), - [anon_sym_BSLASHacl] = ACTIONS(4409), - [anon_sym_BSLASHAcl] = ACTIONS(4409), - [anon_sym_BSLASHaclp] = ACTIONS(4409), - [anon_sym_BSLASHAclp] = ACTIONS(4409), - [anon_sym_BSLASHacf] = ACTIONS(4409), - [anon_sym_BSLASHAcf] = ACTIONS(4409), - [anon_sym_BSLASHacfp] = ACTIONS(4409), - [anon_sym_BSLASHAcfp] = ACTIONS(4409), - [anon_sym_BSLASHac] = ACTIONS(4409), - [anon_sym_BSLASHAc] = ACTIONS(4409), - [anon_sym_BSLASHacp] = ACTIONS(4409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4409), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4409), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4409), - [anon_sym_BSLASHcolor] = ACTIONS(4409), - [anon_sym_BSLASHcolorbox] = ACTIONS(4409), - [anon_sym_BSLASHtextcolor] = ACTIONS(4409), - [anon_sym_BSLASHpagecolor] = ACTIONS(4409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4409), + [369] = { + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, - [462] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHend] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [370] = { + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHend] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [463] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHend] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [371] = { + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(448), + [aux_sym__section_repeat6] = STATE(448), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, - [464] = { - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(441), - [aux_sym__section_repeat6] = STATE(441), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHend] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [372] = { + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHend] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [465] = { - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(442), - [aux_sym__section_repeat5] = STATE(442), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHend] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [373] = { + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(389), + [aux_sym__section_repeat6] = STATE(389), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHend] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [466] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(466), - [aux_sym__section_repeat5] = STATE(466), - [sym_command_name] = ACTIONS(4399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4399), - [anon_sym_LPAREN] = ACTIONS(4397), - [anon_sym_RPAREN] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4397), - [anon_sym_RBRACK] = ACTIONS(4397), - [anon_sym_COMMA] = ACTIONS(4397), - [anon_sym_EQ] = ACTIONS(4397), - [anon_sym_BSLASHpart] = ACTIONS(4399), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddpart] = ACTIONS(4399), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4397), - [anon_sym_BSLASHchapter] = ACTIONS(4399), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddchap] = ACTIONS(4399), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsection] = ACTIONS(4399), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddsec] = ACTIONS(4399), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubsection] = ACTIONS(4399), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4609), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4612), - [anon_sym_BSLASHparagraph] = ACTIONS(4399), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4399), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4397), - [anon_sym_BSLASHitem] = ACTIONS(4399), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(4397), - [sym_word] = ACTIONS(4399), - [sym_placeholder] = ACTIONS(4397), - [anon_sym_PLUS] = ACTIONS(4399), - [anon_sym_DASH] = ACTIONS(4399), - [anon_sym_STAR] = ACTIONS(4399), - [anon_sym_SLASH] = ACTIONS(4399), - [anon_sym_CARET] = ACTIONS(4399), - [anon_sym__] = ACTIONS(4399), - [anon_sym_LT] = ACTIONS(4399), - [anon_sym_GT] = ACTIONS(4399), - [anon_sym_BANG] = ACTIONS(4399), - [anon_sym_PIPE] = ACTIONS(4399), - [anon_sym_COLON] = ACTIONS(4399), - [anon_sym_SQUOTE] = ACTIONS(4399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4397), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4397), - [anon_sym_DOLLAR] = ACTIONS(4399), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4397), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4397), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4397), - [anon_sym_BSLASHbegin] = ACTIONS(4399), - [anon_sym_BSLASHusepackage] = ACTIONS(4399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4399), - [anon_sym_BSLASHinclude] = ACTIONS(4399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4399), - [anon_sym_BSLASHinput] = ACTIONS(4399), - [anon_sym_BSLASHsubfile] = ACTIONS(4399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4399), - [anon_sym_BSLASHbibliography] = ACTIONS(4399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4399), - [anon_sym_BSLASHincludesvg] = ACTIONS(4399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4399), - [anon_sym_BSLASHimport] = ACTIONS(4399), - [anon_sym_BSLASHsubimport] = ACTIONS(4399), - [anon_sym_BSLASHinputfrom] = ACTIONS(4399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4399), - [anon_sym_BSLASHincludefrom] = ACTIONS(4399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4399), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCite] = ACTIONS(4399), - [anon_sym_BSLASHnocite] = ACTIONS(4399), - [anon_sym_BSLASHcitet] = ACTIONS(4399), - [anon_sym_BSLASHcitep] = ACTIONS(4399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteauthor] = ACTIONS(4399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitetitle] = ACTIONS(4399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteyear] = ACTIONS(4399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitedate] = ACTIONS(4399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteurl] = ACTIONS(4399), - [anon_sym_BSLASHfullcite] = ACTIONS(4399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4399), - [anon_sym_BSLASHcitealt] = ACTIONS(4399), - [anon_sym_BSLASHcitealp] = ACTIONS(4399), - [anon_sym_BSLASHcitetext] = ACTIONS(4399), - [anon_sym_BSLASHparencite] = ACTIONS(4399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHParencite] = ACTIONS(4399), - [anon_sym_BSLASHfootcite] = ACTIONS(4399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4399), - [anon_sym_BSLASHtextcite] = ACTIONS(4399), - [anon_sym_BSLASHTextcite] = ACTIONS(4399), - [anon_sym_BSLASHsmartcite] = ACTIONS(4399), - [anon_sym_BSLASHSmartcite] = ACTIONS(4399), - [anon_sym_BSLASHsupercite] = ACTIONS(4399), - [anon_sym_BSLASHautocite] = ACTIONS(4399), - [anon_sym_BSLASHAutocite] = ACTIONS(4399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHvolcite] = ACTIONS(4399), - [anon_sym_BSLASHVolcite] = ACTIONS(4399), - [anon_sym_BSLASHpvolcite] = ACTIONS(4399), - [anon_sym_BSLASHPvolcite] = ACTIONS(4399), - [anon_sym_BSLASHfvolcite] = ACTIONS(4399), - [anon_sym_BSLASHftvolcite] = ACTIONS(4399), - [anon_sym_BSLASHsvolcite] = ACTIONS(4399), - [anon_sym_BSLASHSvolcite] = ACTIONS(4399), - [anon_sym_BSLASHtvolcite] = ACTIONS(4399), - [anon_sym_BSLASHTvolcite] = ACTIONS(4399), - [anon_sym_BSLASHavolcite] = ACTIONS(4399), - [anon_sym_BSLASHAvolcite] = ACTIONS(4399), - [anon_sym_BSLASHnotecite] = ACTIONS(4399), - [anon_sym_BSLASHNotecite] = ACTIONS(4399), - [anon_sym_BSLASHpnotecite] = ACTIONS(4399), - [anon_sym_BSLASHPnotecite] = ACTIONS(4399), - [anon_sym_BSLASHfnotecite] = ACTIONS(4399), - [anon_sym_BSLASHlabel] = ACTIONS(4399), - [anon_sym_BSLASHref] = ACTIONS(4399), - [anon_sym_BSLASHeqref] = ACTIONS(4399), - [anon_sym_BSLASHvref] = ACTIONS(4399), - [anon_sym_BSLASHVref] = ACTIONS(4399), - [anon_sym_BSLASHautoref] = ACTIONS(4399), - [anon_sym_BSLASHpageref] = ACTIONS(4399), - [anon_sym_BSLASHcref] = ACTIONS(4399), - [anon_sym_BSLASHCref] = ACTIONS(4399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4397), - [anon_sym_BSLASHnamecref] = ACTIONS(4399), - [anon_sym_BSLASHnameCref] = ACTIONS(4399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4399), - [anon_sym_BSLASHlabelcref] = ACTIONS(4399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4399), - [anon_sym_BSLASHcrefrange] = ACTIONS(4399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCrefrange] = ACTIONS(4399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4397), - [anon_sym_BSLASHnewlabel] = ACTIONS(4399), - [anon_sym_BSLASHnewcommand] = ACTIONS(4399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4397), - [anon_sym_BSLASHdef] = ACTIONS(4399), - [anon_sym_BSLASHlet] = ACTIONS(4399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4399), - [anon_sym_BSLASHgls] = ACTIONS(4399), - [anon_sym_BSLASHGls] = ACTIONS(4399), - [anon_sym_BSLASHGLS] = ACTIONS(4399), - [anon_sym_BSLASHglspl] = ACTIONS(4399), - [anon_sym_BSLASHGlspl] = ACTIONS(4399), - [anon_sym_BSLASHGLSpl] = ACTIONS(4399), - [anon_sym_BSLASHglsdisp] = ACTIONS(4399), - [anon_sym_BSLASHglslink] = ACTIONS(4399), - [anon_sym_BSLASHglstext] = ACTIONS(4399), - [anon_sym_BSLASHGlstext] = ACTIONS(4399), - [anon_sym_BSLASHGLStext] = ACTIONS(4399), - [anon_sym_BSLASHglsfirst] = ACTIONS(4399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4399), - [anon_sym_BSLASHglsplural] = ACTIONS(4399), - [anon_sym_BSLASHGlsplural] = ACTIONS(4399), - [anon_sym_BSLASHGLSplural] = ACTIONS(4399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHglsname] = ACTIONS(4399), - [anon_sym_BSLASHGlsname] = ACTIONS(4399), - [anon_sym_BSLASHGLSname] = ACTIONS(4399), - [anon_sym_BSLASHglssymbol] = ACTIONS(4399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4399), - [anon_sym_BSLASHglsdesc] = ACTIONS(4399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4399), - [anon_sym_BSLASHglsuseri] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4399), - [anon_sym_BSLASHglsuserii] = ACTIONS(4399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4399), - [anon_sym_BSLASHglsuserv] = ACTIONS(4399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4399), - [anon_sym_BSLASHglsuservi] = ACTIONS(4399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4399), - [anon_sym_BSLASHnewacronym] = ACTIONS(4399), - [anon_sym_BSLASHacrshort] = ACTIONS(4399), - [anon_sym_BSLASHAcrshort] = ACTIONS(4399), - [anon_sym_BSLASHACRshort] = ACTIONS(4399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4399), - [anon_sym_BSLASHacrlong] = ACTIONS(4399), - [anon_sym_BSLASHAcrlong] = ACTIONS(4399), - [anon_sym_BSLASHACRlong] = ACTIONS(4399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4399), - [anon_sym_BSLASHacrfull] = ACTIONS(4399), - [anon_sym_BSLASHAcrfull] = ACTIONS(4399), - [anon_sym_BSLASHACRfull] = ACTIONS(4399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4399), - [anon_sym_BSLASHacs] = ACTIONS(4399), - [anon_sym_BSLASHAcs] = ACTIONS(4399), - [anon_sym_BSLASHacsp] = ACTIONS(4399), - [anon_sym_BSLASHAcsp] = ACTIONS(4399), - [anon_sym_BSLASHacl] = ACTIONS(4399), - [anon_sym_BSLASHAcl] = ACTIONS(4399), - [anon_sym_BSLASHaclp] = ACTIONS(4399), - [anon_sym_BSLASHAclp] = ACTIONS(4399), - [anon_sym_BSLASHacf] = ACTIONS(4399), - [anon_sym_BSLASHAcf] = ACTIONS(4399), - [anon_sym_BSLASHacfp] = ACTIONS(4399), - [anon_sym_BSLASHAcfp] = ACTIONS(4399), - [anon_sym_BSLASHac] = ACTIONS(4399), - [anon_sym_BSLASHAc] = ACTIONS(4399), - [anon_sym_BSLASHacp] = ACTIONS(4399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4399), - [anon_sym_BSLASHcolor] = ACTIONS(4399), - [anon_sym_BSLASHcolorbox] = ACTIONS(4399), - [anon_sym_BSLASHtextcolor] = ACTIONS(4399), - [anon_sym_BSLASHpagecolor] = ACTIONS(4399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4399), + [374] = { + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(390), + [aux_sym__section_repeat5] = STATE(390), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHend] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [467] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHend] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), + [375] = { + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(392), + [aux_sym__section_repeat4] = STATE(392), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHend] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [468] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHend] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), + [376] = { + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(449), + [aux_sym__section_repeat5] = STATE(449), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, - [469] = { - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(441), - [aux_sym__section_repeat6] = STATE(441), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHend] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), + [377] = { + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(393), + [aux_sym__section_repeat3] = STATE(393), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHend] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [470] = { + [378] = { [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(470), - [aux_sym__section_repeat4] = STATE(470), - [sym_command_name] = ACTIONS(4423), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4423), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_RPAREN] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_RBRACK] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_EQ] = ACTIONS(4421), - [anon_sym_BSLASHpart] = ACTIONS(4423), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddpart] = ACTIONS(4423), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4421), - [anon_sym_BSLASHchapter] = ACTIONS(4423), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddchap] = ACTIONS(4423), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsection] = ACTIONS(4423), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddsec] = ACTIONS(4423), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsubsection] = ACTIONS(4615), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4618), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4423), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4421), - [anon_sym_BSLASHparagraph] = ACTIONS(4423), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4423), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4421), - [anon_sym_BSLASHitem] = ACTIONS(4423), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4421), - [anon_sym_LBRACE] = ACTIONS(4421), - [sym_word] = ACTIONS(4423), - [sym_placeholder] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_CARET] = ACTIONS(4423), - [anon_sym__] = ACTIONS(4423), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_PIPE] = ACTIONS(4423), - [anon_sym_COLON] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4421), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4421), - [anon_sym_DOLLAR] = ACTIONS(4423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4421), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4421), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4421), - [anon_sym_BSLASHbegin] = ACTIONS(4423), - [anon_sym_BSLASHusepackage] = ACTIONS(4423), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4423), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4423), - [anon_sym_BSLASHinclude] = ACTIONS(4423), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4423), - [anon_sym_BSLASHinput] = ACTIONS(4423), - [anon_sym_BSLASHsubfile] = ACTIONS(4423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4423), - [anon_sym_BSLASHbibliography] = ACTIONS(4423), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4423), - [anon_sym_BSLASHincludesvg] = ACTIONS(4423), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4423), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4423), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4423), - [anon_sym_BSLASHimport] = ACTIONS(4423), - [anon_sym_BSLASHsubimport] = ACTIONS(4423), - [anon_sym_BSLASHinputfrom] = ACTIONS(4423), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4423), - [anon_sym_BSLASHincludefrom] = ACTIONS(4423), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4423), - [anon_sym_BSLASHcaption] = ACTIONS(4423), - [anon_sym_BSLASHcite] = ACTIONS(4423), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCite] = ACTIONS(4423), - [anon_sym_BSLASHnocite] = ACTIONS(4423), - [anon_sym_BSLASHcitet] = ACTIONS(4423), - [anon_sym_BSLASHcitep] = ACTIONS(4423), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteauthor] = ACTIONS(4423), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4423), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitetitle] = ACTIONS(4423), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteyear] = ACTIONS(4423), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitedate] = ACTIONS(4423), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteurl] = ACTIONS(4423), - [anon_sym_BSLASHfullcite] = ACTIONS(4423), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4423), - [anon_sym_BSLASHcitealt] = ACTIONS(4423), - [anon_sym_BSLASHcitealp] = ACTIONS(4423), - [anon_sym_BSLASHcitetext] = ACTIONS(4423), - [anon_sym_BSLASHparencite] = ACTIONS(4423), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHParencite] = ACTIONS(4423), - [anon_sym_BSLASHfootcite] = ACTIONS(4423), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4423), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4423), - [anon_sym_BSLASHtextcite] = ACTIONS(4423), - [anon_sym_BSLASHTextcite] = ACTIONS(4423), - [anon_sym_BSLASHsmartcite] = ACTIONS(4423), - [anon_sym_BSLASHSmartcite] = ACTIONS(4423), - [anon_sym_BSLASHsupercite] = ACTIONS(4423), - [anon_sym_BSLASHautocite] = ACTIONS(4423), - [anon_sym_BSLASHAutocite] = ACTIONS(4423), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHvolcite] = ACTIONS(4423), - [anon_sym_BSLASHVolcite] = ACTIONS(4423), - [anon_sym_BSLASHpvolcite] = ACTIONS(4423), - [anon_sym_BSLASHPvolcite] = ACTIONS(4423), - [anon_sym_BSLASHfvolcite] = ACTIONS(4423), - [anon_sym_BSLASHftvolcite] = ACTIONS(4423), - [anon_sym_BSLASHsvolcite] = ACTIONS(4423), - [anon_sym_BSLASHSvolcite] = ACTIONS(4423), - [anon_sym_BSLASHtvolcite] = ACTIONS(4423), - [anon_sym_BSLASHTvolcite] = ACTIONS(4423), - [anon_sym_BSLASHavolcite] = ACTIONS(4423), - [anon_sym_BSLASHAvolcite] = ACTIONS(4423), - [anon_sym_BSLASHnotecite] = ACTIONS(4423), - [anon_sym_BSLASHNotecite] = ACTIONS(4423), - [anon_sym_BSLASHpnotecite] = ACTIONS(4423), - [anon_sym_BSLASHPnotecite] = ACTIONS(4423), - [anon_sym_BSLASHfnotecite] = ACTIONS(4423), - [anon_sym_BSLASHlabel] = ACTIONS(4423), - [anon_sym_BSLASHref] = ACTIONS(4423), - [anon_sym_BSLASHeqref] = ACTIONS(4423), - [anon_sym_BSLASHvref] = ACTIONS(4423), - [anon_sym_BSLASHVref] = ACTIONS(4423), - [anon_sym_BSLASHautoref] = ACTIONS(4423), - [anon_sym_BSLASHpageref] = ACTIONS(4423), - [anon_sym_BSLASHcref] = ACTIONS(4423), - [anon_sym_BSLASHCref] = ACTIONS(4423), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4421), - [anon_sym_BSLASHnamecref] = ACTIONS(4423), - [anon_sym_BSLASHnameCref] = ACTIONS(4423), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4423), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4423), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4423), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4423), - [anon_sym_BSLASHlabelcref] = ACTIONS(4423), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4423), - [anon_sym_BSLASHcrefrange] = ACTIONS(4423), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCrefrange] = ACTIONS(4423), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4421), - [anon_sym_BSLASHnewlabel] = ACTIONS(4423), - [anon_sym_BSLASHnewcommand] = ACTIONS(4423), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4423), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4423), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4423), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4421), - [anon_sym_BSLASHdef] = ACTIONS(4423), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4423), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4423), - [anon_sym_BSLASHgls] = ACTIONS(4423), - [anon_sym_BSLASHGls] = ACTIONS(4423), - [anon_sym_BSLASHGLS] = ACTIONS(4423), - [anon_sym_BSLASHglspl] = ACTIONS(4423), - [anon_sym_BSLASHGlspl] = ACTIONS(4423), - [anon_sym_BSLASHGLSpl] = ACTIONS(4423), - [anon_sym_BSLASHglsdisp] = ACTIONS(4423), - [anon_sym_BSLASHglslink] = ACTIONS(4423), - [anon_sym_BSLASHglstext] = ACTIONS(4423), - [anon_sym_BSLASHGlstext] = ACTIONS(4423), - [anon_sym_BSLASHGLStext] = ACTIONS(4423), - [anon_sym_BSLASHglsfirst] = ACTIONS(4423), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4423), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4423), - [anon_sym_BSLASHglsplural] = ACTIONS(4423), - [anon_sym_BSLASHGlsplural] = ACTIONS(4423), - [anon_sym_BSLASHGLSplural] = ACTIONS(4423), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHglsname] = ACTIONS(4423), - [anon_sym_BSLASHGlsname] = ACTIONS(4423), - [anon_sym_BSLASHGLSname] = ACTIONS(4423), - [anon_sym_BSLASHglssymbol] = ACTIONS(4423), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4423), - [anon_sym_BSLASHglsdesc] = ACTIONS(4423), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4423), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4423), - [anon_sym_BSLASHglsuseri] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4423), - [anon_sym_BSLASHglsuserii] = ACTIONS(4423), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4423), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4423), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4423), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4423), - [anon_sym_BSLASHglsuserv] = ACTIONS(4423), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4423), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4423), - [anon_sym_BSLASHglsuservi] = ACTIONS(4423), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4423), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4423), - [anon_sym_BSLASHnewacronym] = ACTIONS(4423), - [anon_sym_BSLASHacrshort] = ACTIONS(4423), - [anon_sym_BSLASHAcrshort] = ACTIONS(4423), - [anon_sym_BSLASHACRshort] = ACTIONS(4423), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4423), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4423), - [anon_sym_BSLASHacrlong] = ACTIONS(4423), - [anon_sym_BSLASHAcrlong] = ACTIONS(4423), - [anon_sym_BSLASHACRlong] = ACTIONS(4423), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4423), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4423), - [anon_sym_BSLASHacrfull] = ACTIONS(4423), - [anon_sym_BSLASHAcrfull] = ACTIONS(4423), - [anon_sym_BSLASHACRfull] = ACTIONS(4423), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4423), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4423), - [anon_sym_BSLASHacs] = ACTIONS(4423), - [anon_sym_BSLASHAcs] = ACTIONS(4423), - [anon_sym_BSLASHacsp] = ACTIONS(4423), - [anon_sym_BSLASHAcsp] = ACTIONS(4423), - [anon_sym_BSLASHacl] = ACTIONS(4423), - [anon_sym_BSLASHAcl] = ACTIONS(4423), - [anon_sym_BSLASHaclp] = ACTIONS(4423), - [anon_sym_BSLASHAclp] = ACTIONS(4423), - [anon_sym_BSLASHacf] = ACTIONS(4423), - [anon_sym_BSLASHAcf] = ACTIONS(4423), - [anon_sym_BSLASHacfp] = ACTIONS(4423), - [anon_sym_BSLASHAcfp] = ACTIONS(4423), - [anon_sym_BSLASHac] = ACTIONS(4423), - [anon_sym_BSLASHAc] = ACTIONS(4423), - [anon_sym_BSLASHacp] = ACTIONS(4423), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4423), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4423), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4423), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4423), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4423), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4423), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4423), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4423), - [anon_sym_BSLASHcolor] = ACTIONS(4423), - [anon_sym_BSLASHcolorbox] = ACTIONS(4423), - [anon_sym_BSLASHtextcolor] = ACTIONS(4423), - [anon_sym_BSLASHpagecolor] = ACTIONS(4423), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4423), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4423), - }, - [471] = { - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(442), - [aux_sym__section_repeat5] = STATE(442), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHend] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [472] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(443), - [aux_sym__section_repeat4] = STATE(443), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHend] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [473] = { - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(512), - [aux_sym__section_repeat2] = STATE(512), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), + [sym_subsection] = STATE(451), + [aux_sym__section_repeat4] = STATE(451), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), }, - [474] = { - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(513), - [aux_sym__section_repeat3] = STATE(513), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), + [379] = { + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(399), + [aux_sym__section_repeat2] = STATE(399), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHend] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [475] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(514), - [aux_sym__section_repeat4] = STATE(514), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), + [380] = { + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [476] = { - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(515), - [aux_sym__section_repeat5] = STATE(515), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), + [381] = { + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [477] = { + [382] = { [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(516), - [aux_sym__section_repeat6] = STATE(516), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [478] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [479] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [480] = { - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(480), - [aux_sym__section_repeat3] = STATE(480), - [sym_command_name] = ACTIONS(4513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4513), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_RPAREN] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_RBRACK] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_EQ] = ACTIONS(4511), - [anon_sym_BSLASHpart] = ACTIONS(4513), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4511), - [anon_sym_BSLASHaddpart] = ACTIONS(4513), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4511), - [anon_sym_BSLASHchapter] = ACTIONS(4513), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4511), - [anon_sym_BSLASHaddchap] = ACTIONS(4513), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsection] = ACTIONS(4621), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4624), - [anon_sym_BSLASHaddsec] = ACTIONS(4621), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4624), - [anon_sym_BSLASHsubsection] = ACTIONS(4513), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4513), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4511), - [anon_sym_BSLASHparagraph] = ACTIONS(4513), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4513), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4511), - [anon_sym_BSLASHitem] = ACTIONS(4513), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4511), - [anon_sym_LBRACE] = ACTIONS(4511), - [sym_word] = ACTIONS(4513), - [sym_placeholder] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_STAR] = ACTIONS(4513), - [anon_sym_SLASH] = ACTIONS(4513), - [anon_sym_CARET] = ACTIONS(4513), - [anon_sym__] = ACTIONS(4513), - [anon_sym_LT] = ACTIONS(4513), - [anon_sym_GT] = ACTIONS(4513), - [anon_sym_BANG] = ACTIONS(4513), - [anon_sym_PIPE] = ACTIONS(4513), - [anon_sym_COLON] = ACTIONS(4513), - [anon_sym_SQUOTE] = ACTIONS(4513), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4511), - [anon_sym_DOLLAR] = ACTIONS(4513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4511), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4511), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4511), - [anon_sym_BSLASHbegin] = ACTIONS(4513), - [anon_sym_BSLASHusepackage] = ACTIONS(4513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4513), - [anon_sym_BSLASHinclude] = ACTIONS(4513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4513), - [anon_sym_BSLASHinput] = ACTIONS(4513), - [anon_sym_BSLASHsubfile] = ACTIONS(4513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4513), - [anon_sym_BSLASHbibliography] = ACTIONS(4513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4513), - [anon_sym_BSLASHincludesvg] = ACTIONS(4513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4513), - [anon_sym_BSLASHimport] = ACTIONS(4513), - [anon_sym_BSLASHsubimport] = ACTIONS(4513), - [anon_sym_BSLASHinputfrom] = ACTIONS(4513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4513), - [anon_sym_BSLASHincludefrom] = ACTIONS(4513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4513), - [anon_sym_BSLASHcaption] = ACTIONS(4513), - [anon_sym_BSLASHcite] = ACTIONS(4513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCite] = ACTIONS(4513), - [anon_sym_BSLASHnocite] = ACTIONS(4513), - [anon_sym_BSLASHcitet] = ACTIONS(4513), - [anon_sym_BSLASHcitep] = ACTIONS(4513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteauthor] = ACTIONS(4513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitetitle] = ACTIONS(4513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteyear] = ACTIONS(4513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitedate] = ACTIONS(4513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteurl] = ACTIONS(4513), - [anon_sym_BSLASHfullcite] = ACTIONS(4513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4513), - [anon_sym_BSLASHcitealt] = ACTIONS(4513), - [anon_sym_BSLASHcitealp] = ACTIONS(4513), - [anon_sym_BSLASHcitetext] = ACTIONS(4513), - [anon_sym_BSLASHparencite] = ACTIONS(4513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHParencite] = ACTIONS(4513), - [anon_sym_BSLASHfootcite] = ACTIONS(4513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4513), - [anon_sym_BSLASHtextcite] = ACTIONS(4513), - [anon_sym_BSLASHTextcite] = ACTIONS(4513), - [anon_sym_BSLASHsmartcite] = ACTIONS(4513), - [anon_sym_BSLASHSmartcite] = ACTIONS(4513), - [anon_sym_BSLASHsupercite] = ACTIONS(4513), - [anon_sym_BSLASHautocite] = ACTIONS(4513), - [anon_sym_BSLASHAutocite] = ACTIONS(4513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHvolcite] = ACTIONS(4513), - [anon_sym_BSLASHVolcite] = ACTIONS(4513), - [anon_sym_BSLASHpvolcite] = ACTIONS(4513), - [anon_sym_BSLASHPvolcite] = ACTIONS(4513), - [anon_sym_BSLASHfvolcite] = ACTIONS(4513), - [anon_sym_BSLASHftvolcite] = ACTIONS(4513), - [anon_sym_BSLASHsvolcite] = ACTIONS(4513), - [anon_sym_BSLASHSvolcite] = ACTIONS(4513), - [anon_sym_BSLASHtvolcite] = ACTIONS(4513), - [anon_sym_BSLASHTvolcite] = ACTIONS(4513), - [anon_sym_BSLASHavolcite] = ACTIONS(4513), - [anon_sym_BSLASHAvolcite] = ACTIONS(4513), - [anon_sym_BSLASHnotecite] = ACTIONS(4513), - [anon_sym_BSLASHNotecite] = ACTIONS(4513), - [anon_sym_BSLASHpnotecite] = ACTIONS(4513), - [anon_sym_BSLASHPnotecite] = ACTIONS(4513), - [anon_sym_BSLASHfnotecite] = ACTIONS(4513), - [anon_sym_BSLASHlabel] = ACTIONS(4513), - [anon_sym_BSLASHref] = ACTIONS(4513), - [anon_sym_BSLASHeqref] = ACTIONS(4513), - [anon_sym_BSLASHvref] = ACTIONS(4513), - [anon_sym_BSLASHVref] = ACTIONS(4513), - [anon_sym_BSLASHautoref] = ACTIONS(4513), - [anon_sym_BSLASHpageref] = ACTIONS(4513), - [anon_sym_BSLASHcref] = ACTIONS(4513), - [anon_sym_BSLASHCref] = ACTIONS(4513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4511), - [anon_sym_BSLASHnamecref] = ACTIONS(4513), - [anon_sym_BSLASHnameCref] = ACTIONS(4513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4513), - [anon_sym_BSLASHlabelcref] = ACTIONS(4513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4513), - [anon_sym_BSLASHcrefrange] = ACTIONS(4513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCrefrange] = ACTIONS(4513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4511), - [anon_sym_BSLASHnewlabel] = ACTIONS(4513), - [anon_sym_BSLASHnewcommand] = ACTIONS(4513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4511), - [anon_sym_BSLASHdef] = ACTIONS(4513), - [anon_sym_BSLASHlet] = ACTIONS(4513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4513), - [anon_sym_BSLASHgls] = ACTIONS(4513), - [anon_sym_BSLASHGls] = ACTIONS(4513), - [anon_sym_BSLASHGLS] = ACTIONS(4513), - [anon_sym_BSLASHglspl] = ACTIONS(4513), - [anon_sym_BSLASHGlspl] = ACTIONS(4513), - [anon_sym_BSLASHGLSpl] = ACTIONS(4513), - [anon_sym_BSLASHglsdisp] = ACTIONS(4513), - [anon_sym_BSLASHglslink] = ACTIONS(4513), - [anon_sym_BSLASHglstext] = ACTIONS(4513), - [anon_sym_BSLASHGlstext] = ACTIONS(4513), - [anon_sym_BSLASHGLStext] = ACTIONS(4513), - [anon_sym_BSLASHglsfirst] = ACTIONS(4513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4513), - [anon_sym_BSLASHglsplural] = ACTIONS(4513), - [anon_sym_BSLASHGlsplural] = ACTIONS(4513), - [anon_sym_BSLASHGLSplural] = ACTIONS(4513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHglsname] = ACTIONS(4513), - [anon_sym_BSLASHGlsname] = ACTIONS(4513), - [anon_sym_BSLASHGLSname] = ACTIONS(4513), - [anon_sym_BSLASHglssymbol] = ACTIONS(4513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4513), - [anon_sym_BSLASHglsdesc] = ACTIONS(4513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4513), - [anon_sym_BSLASHglsuseri] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4513), - [anon_sym_BSLASHglsuserii] = ACTIONS(4513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4513), - [anon_sym_BSLASHglsuserv] = ACTIONS(4513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4513), - [anon_sym_BSLASHglsuservi] = ACTIONS(4513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4513), - [anon_sym_BSLASHnewacronym] = ACTIONS(4513), - [anon_sym_BSLASHacrshort] = ACTIONS(4513), - [anon_sym_BSLASHAcrshort] = ACTIONS(4513), - [anon_sym_BSLASHACRshort] = ACTIONS(4513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4513), - [anon_sym_BSLASHacrlong] = ACTIONS(4513), - [anon_sym_BSLASHAcrlong] = ACTIONS(4513), - [anon_sym_BSLASHACRlong] = ACTIONS(4513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4513), - [anon_sym_BSLASHacrfull] = ACTIONS(4513), - [anon_sym_BSLASHAcrfull] = ACTIONS(4513), - [anon_sym_BSLASHACRfull] = ACTIONS(4513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4513), - [anon_sym_BSLASHacs] = ACTIONS(4513), - [anon_sym_BSLASHAcs] = ACTIONS(4513), - [anon_sym_BSLASHacsp] = ACTIONS(4513), - [anon_sym_BSLASHAcsp] = ACTIONS(4513), - [anon_sym_BSLASHacl] = ACTIONS(4513), - [anon_sym_BSLASHAcl] = ACTIONS(4513), - [anon_sym_BSLASHaclp] = ACTIONS(4513), - [anon_sym_BSLASHAclp] = ACTIONS(4513), - [anon_sym_BSLASHacf] = ACTIONS(4513), - [anon_sym_BSLASHAcf] = ACTIONS(4513), - [anon_sym_BSLASHacfp] = ACTIONS(4513), - [anon_sym_BSLASHAcfp] = ACTIONS(4513), - [anon_sym_BSLASHac] = ACTIONS(4513), - [anon_sym_BSLASHAc] = ACTIONS(4513), - [anon_sym_BSLASHacp] = ACTIONS(4513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4513), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4513), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4513), - [anon_sym_BSLASHcolor] = ACTIONS(4513), - [anon_sym_BSLASHcolorbox] = ACTIONS(4513), - [anon_sym_BSLASHtextcolor] = ACTIONS(4513), - [anon_sym_BSLASHpagecolor] = ACTIONS(4513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4513), - }, - [481] = { - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(513), - [aux_sym__section_repeat3] = STATE(513), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [482] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(514), - [aux_sym__section_repeat4] = STATE(514), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), + [sym_paragraph] = STATE(448), + [aux_sym__section_repeat6] = STATE(448), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [483] = { - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(515), - [aux_sym__section_repeat5] = STATE(515), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), + [383] = { + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(449), + [aux_sym__section_repeat5] = STATE(449), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [484] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(516), - [aux_sym__section_repeat6] = STATE(516), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), + [384] = { + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(451), + [aux_sym__section_repeat4] = STATE(451), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [485] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), + [385] = { + [sym_curly_group] = STATE(1118), + [sym_mixed_group] = STATE(1118), + [aux_sym_generic_command_repeat1] = STATE(385), + [sym_command_name] = ACTIONS(4461), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4579), + [anon_sym_RPAREN] = ACTIONS(4459), + [anon_sym_LBRACK] = ACTIONS(4579), + [anon_sym_RBRACK] = ACTIONS(4459), + [anon_sym_COMMA] = ACTIONS(4459), + [anon_sym_EQ] = ACTIONS(4459), + [anon_sym_BSLASHpart] = ACTIONS(4461), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddpart] = ACTIONS(4461), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4459), + [anon_sym_BSLASHchapter] = ACTIONS(4461), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddchap] = ACTIONS(4461), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsection] = ACTIONS(4461), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddsec] = ACTIONS(4461), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubsection] = ACTIONS(4461), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4461), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHparagraph] = ACTIONS(4461), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4461), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4459), + [anon_sym_BSLASHitem] = ACTIONS(4461), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4459), + [anon_sym_LBRACE] = ACTIONS(4582), + [sym_word] = ACTIONS(4461), + [sym_placeholder] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_STAR] = ACTIONS(4461), + [anon_sym_SLASH] = ACTIONS(4461), + [anon_sym_CARET] = ACTIONS(4461), + [anon_sym__] = ACTIONS(4461), + [anon_sym_LT] = ACTIONS(4461), + [anon_sym_GT] = ACTIONS(4461), + [anon_sym_BANG] = ACTIONS(4461), + [anon_sym_PIPE] = ACTIONS(4461), + [anon_sym_COLON] = ACTIONS(4461), + [anon_sym_SQUOTE] = ACTIONS(4461), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), + [anon_sym_DOLLAR] = ACTIONS(4461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), + [anon_sym_BSLASHbegin] = ACTIONS(4461), + [anon_sym_BSLASHend] = ACTIONS(4461), + [anon_sym_BSLASHusepackage] = ACTIONS(4461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), + [anon_sym_BSLASHinclude] = ACTIONS(4461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), + [anon_sym_BSLASHinput] = ACTIONS(4461), + [anon_sym_BSLASHsubfile] = ACTIONS(4461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), + [anon_sym_BSLASHbibliography] = ACTIONS(4461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), + [anon_sym_BSLASHincludesvg] = ACTIONS(4461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), + [anon_sym_BSLASHimport] = ACTIONS(4461), + [anon_sym_BSLASHsubimport] = ACTIONS(4461), + [anon_sym_BSLASHinputfrom] = ACTIONS(4461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), + [anon_sym_BSLASHincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHcaption] = ACTIONS(4461), + [anon_sym_BSLASHcite] = ACTIONS(4461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCite] = ACTIONS(4461), + [anon_sym_BSLASHnocite] = ACTIONS(4461), + [anon_sym_BSLASHcitet] = ACTIONS(4461), + [anon_sym_BSLASHcitep] = ACTIONS(4461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteauthor] = ACTIONS(4461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitetitle] = ACTIONS(4461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteyear] = ACTIONS(4461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitedate] = ACTIONS(4461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteurl] = ACTIONS(4461), + [anon_sym_BSLASHfullcite] = ACTIONS(4461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), + [anon_sym_BSLASHcitealt] = ACTIONS(4461), + [anon_sym_BSLASHcitealp] = ACTIONS(4461), + [anon_sym_BSLASHcitetext] = ACTIONS(4461), + [anon_sym_BSLASHparencite] = ACTIONS(4461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHParencite] = ACTIONS(4461), + [anon_sym_BSLASHfootcite] = ACTIONS(4461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), + [anon_sym_BSLASHtextcite] = ACTIONS(4461), + [anon_sym_BSLASHTextcite] = ACTIONS(4461), + [anon_sym_BSLASHsmartcite] = ACTIONS(4461), + [anon_sym_BSLASHSmartcite] = ACTIONS(4461), + [anon_sym_BSLASHsupercite] = ACTIONS(4461), + [anon_sym_BSLASHautocite] = ACTIONS(4461), + [anon_sym_BSLASHAutocite] = ACTIONS(4461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHvolcite] = ACTIONS(4461), + [anon_sym_BSLASHVolcite] = ACTIONS(4461), + [anon_sym_BSLASHpvolcite] = ACTIONS(4461), + [anon_sym_BSLASHPvolcite] = ACTIONS(4461), + [anon_sym_BSLASHfvolcite] = ACTIONS(4461), + [anon_sym_BSLASHftvolcite] = ACTIONS(4461), + [anon_sym_BSLASHsvolcite] = ACTIONS(4461), + [anon_sym_BSLASHSvolcite] = ACTIONS(4461), + [anon_sym_BSLASHtvolcite] = ACTIONS(4461), + [anon_sym_BSLASHTvolcite] = ACTIONS(4461), + [anon_sym_BSLASHavolcite] = ACTIONS(4461), + [anon_sym_BSLASHAvolcite] = ACTIONS(4461), + [anon_sym_BSLASHnotecite] = ACTIONS(4461), + [anon_sym_BSLASHNotecite] = ACTIONS(4461), + [anon_sym_BSLASHpnotecite] = ACTIONS(4461), + [anon_sym_BSLASHPnotecite] = ACTIONS(4461), + [anon_sym_BSLASHfnotecite] = ACTIONS(4461), + [anon_sym_BSLASHlabel] = ACTIONS(4461), + [anon_sym_BSLASHref] = ACTIONS(4461), + [anon_sym_BSLASHeqref] = ACTIONS(4461), + [anon_sym_BSLASHvref] = ACTIONS(4461), + [anon_sym_BSLASHVref] = ACTIONS(4461), + [anon_sym_BSLASHautoref] = ACTIONS(4461), + [anon_sym_BSLASHpageref] = ACTIONS(4461), + [anon_sym_BSLASHcref] = ACTIONS(4461), + [anon_sym_BSLASHCref] = ACTIONS(4461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnameCref] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHlabelcref] = ACTIONS(4461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCrefrange] = ACTIONS(4461), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnewlabel] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), + [anon_sym_BSLASHdef] = ACTIONS(4461), + [anon_sym_BSLASHlet] = ACTIONS(4461), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), + [anon_sym_BSLASHgls] = ACTIONS(4461), + [anon_sym_BSLASHGls] = ACTIONS(4461), + [anon_sym_BSLASHGLS] = ACTIONS(4461), + [anon_sym_BSLASHglspl] = ACTIONS(4461), + [anon_sym_BSLASHGlspl] = ACTIONS(4461), + [anon_sym_BSLASHGLSpl] = ACTIONS(4461), + [anon_sym_BSLASHglsdisp] = ACTIONS(4461), + [anon_sym_BSLASHglslink] = ACTIONS(4461), + [anon_sym_BSLASHglstext] = ACTIONS(4461), + [anon_sym_BSLASHGlstext] = ACTIONS(4461), + [anon_sym_BSLASHGLStext] = ACTIONS(4461), + [anon_sym_BSLASHglsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), + [anon_sym_BSLASHglsplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSplural] = ACTIONS(4461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHglsname] = ACTIONS(4461), + [anon_sym_BSLASHGlsname] = ACTIONS(4461), + [anon_sym_BSLASHGLSname] = ACTIONS(4461), + [anon_sym_BSLASHglssymbol] = ACTIONS(4461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), + [anon_sym_BSLASHglsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), + [anon_sym_BSLASHglsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), + [anon_sym_BSLASHglsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), + [anon_sym_BSLASHglsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), + [anon_sym_BSLASHglsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), + [anon_sym_BSLASHnewacronym] = ACTIONS(4461), + [anon_sym_BSLASHacrshort] = ACTIONS(4461), + [anon_sym_BSLASHAcrshort] = ACTIONS(4461), + [anon_sym_BSLASHACRshort] = ACTIONS(4461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), + [anon_sym_BSLASHacrlong] = ACTIONS(4461), + [anon_sym_BSLASHAcrlong] = ACTIONS(4461), + [anon_sym_BSLASHACRlong] = ACTIONS(4461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), + [anon_sym_BSLASHacrfull] = ACTIONS(4461), + [anon_sym_BSLASHAcrfull] = ACTIONS(4461), + [anon_sym_BSLASHACRfull] = ACTIONS(4461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), + [anon_sym_BSLASHacs] = ACTIONS(4461), + [anon_sym_BSLASHAcs] = ACTIONS(4461), + [anon_sym_BSLASHacsp] = ACTIONS(4461), + [anon_sym_BSLASHAcsp] = ACTIONS(4461), + [anon_sym_BSLASHacl] = ACTIONS(4461), + [anon_sym_BSLASHAcl] = ACTIONS(4461), + [anon_sym_BSLASHaclp] = ACTIONS(4461), + [anon_sym_BSLASHAclp] = ACTIONS(4461), + [anon_sym_BSLASHacf] = ACTIONS(4461), + [anon_sym_BSLASHAcf] = ACTIONS(4461), + [anon_sym_BSLASHacfp] = ACTIONS(4461), + [anon_sym_BSLASHAcfp] = ACTIONS(4461), + [anon_sym_BSLASHac] = ACTIONS(4461), + [anon_sym_BSLASHAc] = ACTIONS(4461), + [anon_sym_BSLASHacp] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), + [anon_sym_BSLASHcolor] = ACTIONS(4461), + [anon_sym_BSLASHcolorbox] = ACTIONS(4461), + [anon_sym_BSLASHtextcolor] = ACTIONS(4461), + [anon_sym_BSLASHpagecolor] = ACTIONS(4461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), + [anon_sym_BSLASHtext] = ACTIONS(4461), + [anon_sym_BSLASHintertext] = ACTIONS(4461), + [anon_sym_shortintertext] = ACTIONS(4461), }, - [486] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), + [386] = { + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(4495), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_RPAREN] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_RBRACK] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_BSLASHpart] = ACTIONS(4495), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddpart] = ACTIONS(4495), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4493), + [anon_sym_BSLASHchapter] = ACTIONS(4495), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddchap] = ACTIONS(4495), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsection] = ACTIONS(4495), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddsec] = ACTIONS(4495), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubsection] = ACTIONS(4495), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4495), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHparagraph] = ACTIONS(4495), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4495), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4493), + [anon_sym_BSLASHitem] = ACTIONS(4585), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4588), + [anon_sym_LBRACE] = ACTIONS(4493), + [sym_word] = ACTIONS(4495), + [sym_placeholder] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4495), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_CARET] = ACTIONS(4495), + [anon_sym__] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4493), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4493), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4493), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4493), + [anon_sym_BSLASHbegin] = ACTIONS(4495), + [anon_sym_BSLASHend] = ACTIONS(4495), + [anon_sym_BSLASHusepackage] = ACTIONS(4495), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4495), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4495), + [anon_sym_BSLASHinclude] = ACTIONS(4495), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4495), + [anon_sym_BSLASHinput] = ACTIONS(4495), + [anon_sym_BSLASHsubfile] = ACTIONS(4495), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4495), + [anon_sym_BSLASHbibliography] = ACTIONS(4495), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4495), + [anon_sym_BSLASHincludesvg] = ACTIONS(4495), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4495), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4495), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4495), + [anon_sym_BSLASHimport] = ACTIONS(4495), + [anon_sym_BSLASHsubimport] = ACTIONS(4495), + [anon_sym_BSLASHinputfrom] = ACTIONS(4495), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4495), + [anon_sym_BSLASHincludefrom] = ACTIONS(4495), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4495), + [anon_sym_BSLASHcaption] = ACTIONS(4495), + [anon_sym_BSLASHcite] = ACTIONS(4495), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCite] = ACTIONS(4495), + [anon_sym_BSLASHnocite] = ACTIONS(4495), + [anon_sym_BSLASHcitet] = ACTIONS(4495), + [anon_sym_BSLASHcitep] = ACTIONS(4495), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteauthor] = ACTIONS(4495), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4495), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitetitle] = ACTIONS(4495), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteyear] = ACTIONS(4495), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitedate] = ACTIONS(4495), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteurl] = ACTIONS(4495), + [anon_sym_BSLASHfullcite] = ACTIONS(4495), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4495), + [anon_sym_BSLASHcitealt] = ACTIONS(4495), + [anon_sym_BSLASHcitealp] = ACTIONS(4495), + [anon_sym_BSLASHcitetext] = ACTIONS(4495), + [anon_sym_BSLASHparencite] = ACTIONS(4495), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHParencite] = ACTIONS(4495), + [anon_sym_BSLASHfootcite] = ACTIONS(4495), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4495), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4495), + [anon_sym_BSLASHtextcite] = ACTIONS(4495), + [anon_sym_BSLASHTextcite] = ACTIONS(4495), + [anon_sym_BSLASHsmartcite] = ACTIONS(4495), + [anon_sym_BSLASHSmartcite] = ACTIONS(4495), + [anon_sym_BSLASHsupercite] = ACTIONS(4495), + [anon_sym_BSLASHautocite] = ACTIONS(4495), + [anon_sym_BSLASHAutocite] = ACTIONS(4495), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHvolcite] = ACTIONS(4495), + [anon_sym_BSLASHVolcite] = ACTIONS(4495), + [anon_sym_BSLASHpvolcite] = ACTIONS(4495), + [anon_sym_BSLASHPvolcite] = ACTIONS(4495), + [anon_sym_BSLASHfvolcite] = ACTIONS(4495), + [anon_sym_BSLASHftvolcite] = ACTIONS(4495), + [anon_sym_BSLASHsvolcite] = ACTIONS(4495), + [anon_sym_BSLASHSvolcite] = ACTIONS(4495), + [anon_sym_BSLASHtvolcite] = ACTIONS(4495), + [anon_sym_BSLASHTvolcite] = ACTIONS(4495), + [anon_sym_BSLASHavolcite] = ACTIONS(4495), + [anon_sym_BSLASHAvolcite] = ACTIONS(4495), + [anon_sym_BSLASHnotecite] = ACTIONS(4495), + [anon_sym_BSLASHNotecite] = ACTIONS(4495), + [anon_sym_BSLASHpnotecite] = ACTIONS(4495), + [anon_sym_BSLASHPnotecite] = ACTIONS(4495), + [anon_sym_BSLASHfnotecite] = ACTIONS(4495), + [anon_sym_BSLASHlabel] = ACTIONS(4495), + [anon_sym_BSLASHref] = ACTIONS(4495), + [anon_sym_BSLASHeqref] = ACTIONS(4495), + [anon_sym_BSLASHvref] = ACTIONS(4495), + [anon_sym_BSLASHVref] = ACTIONS(4495), + [anon_sym_BSLASHautoref] = ACTIONS(4495), + [anon_sym_BSLASHpageref] = ACTIONS(4495), + [anon_sym_BSLASHcref] = ACTIONS(4495), + [anon_sym_BSLASHCref] = ACTIONS(4495), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4493), + [anon_sym_BSLASHnamecref] = ACTIONS(4495), + [anon_sym_BSLASHnameCref] = ACTIONS(4495), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4495), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4495), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4495), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4495), + [anon_sym_BSLASHlabelcref] = ACTIONS(4495), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4495), + [anon_sym_BSLASHcrefrange] = ACTIONS(4495), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCrefrange] = ACTIONS(4495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4493), + [anon_sym_BSLASHnewlabel] = ACTIONS(4495), + [anon_sym_BSLASHnewcommand] = ACTIONS(4495), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4495), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4495), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4495), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4493), + [anon_sym_BSLASHdef] = ACTIONS(4495), + [anon_sym_BSLASHlet] = ACTIONS(4495), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4495), + [anon_sym_BSLASHgls] = ACTIONS(4495), + [anon_sym_BSLASHGls] = ACTIONS(4495), + [anon_sym_BSLASHGLS] = ACTIONS(4495), + [anon_sym_BSLASHglspl] = ACTIONS(4495), + [anon_sym_BSLASHGlspl] = ACTIONS(4495), + [anon_sym_BSLASHGLSpl] = ACTIONS(4495), + [anon_sym_BSLASHglsdisp] = ACTIONS(4495), + [anon_sym_BSLASHglslink] = ACTIONS(4495), + [anon_sym_BSLASHglstext] = ACTIONS(4495), + [anon_sym_BSLASHGlstext] = ACTIONS(4495), + [anon_sym_BSLASHGLStext] = ACTIONS(4495), + [anon_sym_BSLASHglsfirst] = ACTIONS(4495), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4495), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4495), + [anon_sym_BSLASHglsplural] = ACTIONS(4495), + [anon_sym_BSLASHGlsplural] = ACTIONS(4495), + [anon_sym_BSLASHGLSplural] = ACTIONS(4495), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHglsname] = ACTIONS(4495), + [anon_sym_BSLASHGlsname] = ACTIONS(4495), + [anon_sym_BSLASHGLSname] = ACTIONS(4495), + [anon_sym_BSLASHglssymbol] = ACTIONS(4495), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4495), + [anon_sym_BSLASHglsdesc] = ACTIONS(4495), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4495), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4495), + [anon_sym_BSLASHglsuseri] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4495), + [anon_sym_BSLASHglsuserii] = ACTIONS(4495), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4495), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4495), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4495), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4495), + [anon_sym_BSLASHglsuserv] = ACTIONS(4495), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4495), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4495), + [anon_sym_BSLASHglsuservi] = ACTIONS(4495), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4495), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4495), + [anon_sym_BSLASHnewacronym] = ACTIONS(4495), + [anon_sym_BSLASHacrshort] = ACTIONS(4495), + [anon_sym_BSLASHAcrshort] = ACTIONS(4495), + [anon_sym_BSLASHACRshort] = ACTIONS(4495), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4495), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4495), + [anon_sym_BSLASHacrlong] = ACTIONS(4495), + [anon_sym_BSLASHAcrlong] = ACTIONS(4495), + [anon_sym_BSLASHACRlong] = ACTIONS(4495), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4495), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4495), + [anon_sym_BSLASHacrfull] = ACTIONS(4495), + [anon_sym_BSLASHAcrfull] = ACTIONS(4495), + [anon_sym_BSLASHACRfull] = ACTIONS(4495), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4495), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4495), + [anon_sym_BSLASHacs] = ACTIONS(4495), + [anon_sym_BSLASHAcs] = ACTIONS(4495), + [anon_sym_BSLASHacsp] = ACTIONS(4495), + [anon_sym_BSLASHAcsp] = ACTIONS(4495), + [anon_sym_BSLASHacl] = ACTIONS(4495), + [anon_sym_BSLASHAcl] = ACTIONS(4495), + [anon_sym_BSLASHaclp] = ACTIONS(4495), + [anon_sym_BSLASHAclp] = ACTIONS(4495), + [anon_sym_BSLASHacf] = ACTIONS(4495), + [anon_sym_BSLASHAcf] = ACTIONS(4495), + [anon_sym_BSLASHacfp] = ACTIONS(4495), + [anon_sym_BSLASHAcfp] = ACTIONS(4495), + [anon_sym_BSLASHac] = ACTIONS(4495), + [anon_sym_BSLASHAc] = ACTIONS(4495), + [anon_sym_BSLASHacp] = ACTIONS(4495), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4495), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4495), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4495), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4495), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4495), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4495), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4495), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4495), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4495), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4495), + [anon_sym_BSLASHcolor] = ACTIONS(4495), + [anon_sym_BSLASHcolorbox] = ACTIONS(4495), + [anon_sym_BSLASHtextcolor] = ACTIONS(4495), + [anon_sym_BSLASHpagecolor] = ACTIONS(4495), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4495), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4495), + [anon_sym_BSLASHtext] = ACTIONS(4495), + [anon_sym_BSLASHintertext] = ACTIONS(4495), + [anon_sym_shortintertext] = ACTIONS(4495), }, - [487] = { - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(487), - [aux_sym__section_repeat2] = STATE(487), - [sym_command_name] = ACTIONS(4503), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4501), - [anon_sym_RPAREN] = ACTIONS(4501), - [anon_sym_LBRACK] = ACTIONS(4501), - [anon_sym_RBRACK] = ACTIONS(4501), - [anon_sym_COMMA] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_BSLASHpart] = ACTIONS(4503), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4501), - [anon_sym_BSLASHaddpart] = ACTIONS(4503), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4501), - [anon_sym_BSLASHchapter] = ACTIONS(4627), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4630), - [anon_sym_BSLASHaddchap] = ACTIONS(4627), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4630), - [anon_sym_BSLASHsection] = ACTIONS(4503), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHaddsec] = ACTIONS(4503), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubsection] = ACTIONS(4503), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4503), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHparagraph] = ACTIONS(4503), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4503), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4501), - [anon_sym_BSLASHitem] = ACTIONS(4503), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(4501), - [sym_word] = ACTIONS(4503), - [sym_placeholder] = ACTIONS(4501), - [anon_sym_PLUS] = ACTIONS(4503), - [anon_sym_DASH] = ACTIONS(4503), - [anon_sym_STAR] = ACTIONS(4503), - [anon_sym_SLASH] = ACTIONS(4503), - [anon_sym_CARET] = ACTIONS(4503), - [anon_sym__] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4503), - [anon_sym_GT] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4503), - [anon_sym_PIPE] = ACTIONS(4503), - [anon_sym_COLON] = ACTIONS(4503), - [anon_sym_SQUOTE] = ACTIONS(4503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4501), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4501), - [anon_sym_DOLLAR] = ACTIONS(4503), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4501), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4501), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4501), - [anon_sym_BSLASHbegin] = ACTIONS(4503), - [anon_sym_BSLASHusepackage] = ACTIONS(4503), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4503), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4503), - [anon_sym_BSLASHinclude] = ACTIONS(4503), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4503), - [anon_sym_BSLASHinput] = ACTIONS(4503), - [anon_sym_BSLASHsubfile] = ACTIONS(4503), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4503), - [anon_sym_BSLASHbibliography] = ACTIONS(4503), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4503), - [anon_sym_BSLASHincludesvg] = ACTIONS(4503), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4503), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4503), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4503), - [anon_sym_BSLASHimport] = ACTIONS(4503), - [anon_sym_BSLASHsubimport] = ACTIONS(4503), - [anon_sym_BSLASHinputfrom] = ACTIONS(4503), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4503), - [anon_sym_BSLASHincludefrom] = ACTIONS(4503), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4503), - [anon_sym_BSLASHcaption] = ACTIONS(4503), - [anon_sym_BSLASHcite] = ACTIONS(4503), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCite] = ACTIONS(4503), - [anon_sym_BSLASHnocite] = ACTIONS(4503), - [anon_sym_BSLASHcitet] = ACTIONS(4503), - [anon_sym_BSLASHcitep] = ACTIONS(4503), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteauthor] = ACTIONS(4503), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4503), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitetitle] = ACTIONS(4503), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteyear] = ACTIONS(4503), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitedate] = ACTIONS(4503), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteurl] = ACTIONS(4503), - [anon_sym_BSLASHfullcite] = ACTIONS(4503), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4503), - [anon_sym_BSLASHcitealt] = ACTIONS(4503), - [anon_sym_BSLASHcitealp] = ACTIONS(4503), - [anon_sym_BSLASHcitetext] = ACTIONS(4503), - [anon_sym_BSLASHparencite] = ACTIONS(4503), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHParencite] = ACTIONS(4503), - [anon_sym_BSLASHfootcite] = ACTIONS(4503), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4503), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4503), - [anon_sym_BSLASHtextcite] = ACTIONS(4503), - [anon_sym_BSLASHTextcite] = ACTIONS(4503), - [anon_sym_BSLASHsmartcite] = ACTIONS(4503), - [anon_sym_BSLASHSmartcite] = ACTIONS(4503), - [anon_sym_BSLASHsupercite] = ACTIONS(4503), - [anon_sym_BSLASHautocite] = ACTIONS(4503), - [anon_sym_BSLASHAutocite] = ACTIONS(4503), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHvolcite] = ACTIONS(4503), - [anon_sym_BSLASHVolcite] = ACTIONS(4503), - [anon_sym_BSLASHpvolcite] = ACTIONS(4503), - [anon_sym_BSLASHPvolcite] = ACTIONS(4503), - [anon_sym_BSLASHfvolcite] = ACTIONS(4503), - [anon_sym_BSLASHftvolcite] = ACTIONS(4503), - [anon_sym_BSLASHsvolcite] = ACTIONS(4503), - [anon_sym_BSLASHSvolcite] = ACTIONS(4503), - [anon_sym_BSLASHtvolcite] = ACTIONS(4503), - [anon_sym_BSLASHTvolcite] = ACTIONS(4503), - [anon_sym_BSLASHavolcite] = ACTIONS(4503), - [anon_sym_BSLASHAvolcite] = ACTIONS(4503), - [anon_sym_BSLASHnotecite] = ACTIONS(4503), - [anon_sym_BSLASHNotecite] = ACTIONS(4503), - [anon_sym_BSLASHpnotecite] = ACTIONS(4503), - [anon_sym_BSLASHPnotecite] = ACTIONS(4503), - [anon_sym_BSLASHfnotecite] = ACTIONS(4503), - [anon_sym_BSLASHlabel] = ACTIONS(4503), - [anon_sym_BSLASHref] = ACTIONS(4503), - [anon_sym_BSLASHeqref] = ACTIONS(4503), - [anon_sym_BSLASHvref] = ACTIONS(4503), - [anon_sym_BSLASHVref] = ACTIONS(4503), - [anon_sym_BSLASHautoref] = ACTIONS(4503), - [anon_sym_BSLASHpageref] = ACTIONS(4503), - [anon_sym_BSLASHcref] = ACTIONS(4503), - [anon_sym_BSLASHCref] = ACTIONS(4503), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4501), - [anon_sym_BSLASHnamecref] = ACTIONS(4503), - [anon_sym_BSLASHnameCref] = ACTIONS(4503), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4503), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4503), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4503), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4503), - [anon_sym_BSLASHlabelcref] = ACTIONS(4503), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4503), - [anon_sym_BSLASHcrefrange] = ACTIONS(4503), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCrefrange] = ACTIONS(4503), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4501), - [anon_sym_BSLASHnewlabel] = ACTIONS(4503), - [anon_sym_BSLASHnewcommand] = ACTIONS(4503), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4503), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4503), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4503), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4501), - [anon_sym_BSLASHdef] = ACTIONS(4503), - [anon_sym_BSLASHlet] = ACTIONS(4503), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4503), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4503), - [anon_sym_BSLASHgls] = ACTIONS(4503), - [anon_sym_BSLASHGls] = ACTIONS(4503), - [anon_sym_BSLASHGLS] = ACTIONS(4503), - [anon_sym_BSLASHglspl] = ACTIONS(4503), - [anon_sym_BSLASHGlspl] = ACTIONS(4503), - [anon_sym_BSLASHGLSpl] = ACTIONS(4503), - [anon_sym_BSLASHglsdisp] = ACTIONS(4503), - [anon_sym_BSLASHglslink] = ACTIONS(4503), - [anon_sym_BSLASHglstext] = ACTIONS(4503), - [anon_sym_BSLASHGlstext] = ACTIONS(4503), - [anon_sym_BSLASHGLStext] = ACTIONS(4503), - [anon_sym_BSLASHglsfirst] = ACTIONS(4503), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4503), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4503), - [anon_sym_BSLASHglsplural] = ACTIONS(4503), - [anon_sym_BSLASHGlsplural] = ACTIONS(4503), - [anon_sym_BSLASHGLSplural] = ACTIONS(4503), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHglsname] = ACTIONS(4503), - [anon_sym_BSLASHGlsname] = ACTIONS(4503), - [anon_sym_BSLASHGLSname] = ACTIONS(4503), - [anon_sym_BSLASHglssymbol] = ACTIONS(4503), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4503), - [anon_sym_BSLASHglsdesc] = ACTIONS(4503), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4503), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4503), - [anon_sym_BSLASHglsuseri] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4503), - [anon_sym_BSLASHglsuserii] = ACTIONS(4503), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4503), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4503), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4503), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4503), - [anon_sym_BSLASHglsuserv] = ACTIONS(4503), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4503), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4503), - [anon_sym_BSLASHglsuservi] = ACTIONS(4503), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4503), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4503), - [anon_sym_BSLASHnewacronym] = ACTIONS(4503), - [anon_sym_BSLASHacrshort] = ACTIONS(4503), - [anon_sym_BSLASHAcrshort] = ACTIONS(4503), - [anon_sym_BSLASHACRshort] = ACTIONS(4503), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4503), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4503), - [anon_sym_BSLASHacrlong] = ACTIONS(4503), - [anon_sym_BSLASHAcrlong] = ACTIONS(4503), - [anon_sym_BSLASHACRlong] = ACTIONS(4503), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4503), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4503), - [anon_sym_BSLASHacrfull] = ACTIONS(4503), - [anon_sym_BSLASHAcrfull] = ACTIONS(4503), - [anon_sym_BSLASHACRfull] = ACTIONS(4503), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4503), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4503), - [anon_sym_BSLASHacs] = ACTIONS(4503), - [anon_sym_BSLASHAcs] = ACTIONS(4503), - [anon_sym_BSLASHacsp] = ACTIONS(4503), - [anon_sym_BSLASHAcsp] = ACTIONS(4503), - [anon_sym_BSLASHacl] = ACTIONS(4503), - [anon_sym_BSLASHAcl] = ACTIONS(4503), - [anon_sym_BSLASHaclp] = ACTIONS(4503), - [anon_sym_BSLASHAclp] = ACTIONS(4503), - [anon_sym_BSLASHacf] = ACTIONS(4503), - [anon_sym_BSLASHAcf] = ACTIONS(4503), - [anon_sym_BSLASHacfp] = ACTIONS(4503), - [anon_sym_BSLASHAcfp] = ACTIONS(4503), - [anon_sym_BSLASHac] = ACTIONS(4503), - [anon_sym_BSLASHAc] = ACTIONS(4503), - [anon_sym_BSLASHacp] = ACTIONS(4503), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4503), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4503), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4503), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4503), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4503), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4503), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4503), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4503), - [anon_sym_BSLASHcolor] = ACTIONS(4503), - [anon_sym_BSLASHcolorbox] = ACTIONS(4503), - [anon_sym_BSLASHtextcolor] = ACTIONS(4503), - [anon_sym_BSLASHpagecolor] = ACTIONS(4503), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4503), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4503), + [387] = { + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(456), + [aux_sym__section_repeat3] = STATE(456), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [488] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(514), - [aux_sym__section_repeat4] = STATE(514), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), + [388] = { + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(4505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4503), + [anon_sym_RBRACK] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_BSLASHpart] = ACTIONS(4505), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddpart] = ACTIONS(4505), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4503), + [anon_sym_BSLASHchapter] = ACTIONS(4505), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddchap] = ACTIONS(4505), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsection] = ACTIONS(4505), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddsec] = ACTIONS(4505), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubsection] = ACTIONS(4505), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4505), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHparagraph] = ACTIONS(4505), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4591), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4594), + [anon_sym_BSLASHitem] = ACTIONS(4505), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [sym_word] = ACTIONS(4505), + [sym_placeholder] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym__] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4505), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4503), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4503), + [anon_sym_BSLASHbegin] = ACTIONS(4505), + [anon_sym_BSLASHend] = ACTIONS(4505), + [anon_sym_BSLASHusepackage] = ACTIONS(4505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4505), + [anon_sym_BSLASHinclude] = ACTIONS(4505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4505), + [anon_sym_BSLASHinput] = ACTIONS(4505), + [anon_sym_BSLASHsubfile] = ACTIONS(4505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4505), + [anon_sym_BSLASHbibliography] = ACTIONS(4505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4505), + [anon_sym_BSLASHincludesvg] = ACTIONS(4505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4505), + [anon_sym_BSLASHimport] = ACTIONS(4505), + [anon_sym_BSLASHsubimport] = ACTIONS(4505), + [anon_sym_BSLASHinputfrom] = ACTIONS(4505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4505), + [anon_sym_BSLASHincludefrom] = ACTIONS(4505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4505), + [anon_sym_BSLASHcaption] = ACTIONS(4505), + [anon_sym_BSLASHcite] = ACTIONS(4505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCite] = ACTIONS(4505), + [anon_sym_BSLASHnocite] = ACTIONS(4505), + [anon_sym_BSLASHcitet] = ACTIONS(4505), + [anon_sym_BSLASHcitep] = ACTIONS(4505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteauthor] = ACTIONS(4505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitetitle] = ACTIONS(4505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteyear] = ACTIONS(4505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitedate] = ACTIONS(4505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteurl] = ACTIONS(4505), + [anon_sym_BSLASHfullcite] = ACTIONS(4505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4505), + [anon_sym_BSLASHcitealt] = ACTIONS(4505), + [anon_sym_BSLASHcitealp] = ACTIONS(4505), + [anon_sym_BSLASHcitetext] = ACTIONS(4505), + [anon_sym_BSLASHparencite] = ACTIONS(4505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHParencite] = ACTIONS(4505), + [anon_sym_BSLASHfootcite] = ACTIONS(4505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4505), + [anon_sym_BSLASHtextcite] = ACTIONS(4505), + [anon_sym_BSLASHTextcite] = ACTIONS(4505), + [anon_sym_BSLASHsmartcite] = ACTIONS(4505), + [anon_sym_BSLASHSmartcite] = ACTIONS(4505), + [anon_sym_BSLASHsupercite] = ACTIONS(4505), + [anon_sym_BSLASHautocite] = ACTIONS(4505), + [anon_sym_BSLASHAutocite] = ACTIONS(4505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHvolcite] = ACTIONS(4505), + [anon_sym_BSLASHVolcite] = ACTIONS(4505), + [anon_sym_BSLASHpvolcite] = ACTIONS(4505), + [anon_sym_BSLASHPvolcite] = ACTIONS(4505), + [anon_sym_BSLASHfvolcite] = ACTIONS(4505), + [anon_sym_BSLASHftvolcite] = ACTIONS(4505), + [anon_sym_BSLASHsvolcite] = ACTIONS(4505), + [anon_sym_BSLASHSvolcite] = ACTIONS(4505), + [anon_sym_BSLASHtvolcite] = ACTIONS(4505), + [anon_sym_BSLASHTvolcite] = ACTIONS(4505), + [anon_sym_BSLASHavolcite] = ACTIONS(4505), + [anon_sym_BSLASHAvolcite] = ACTIONS(4505), + [anon_sym_BSLASHnotecite] = ACTIONS(4505), + [anon_sym_BSLASHNotecite] = ACTIONS(4505), + [anon_sym_BSLASHpnotecite] = ACTIONS(4505), + [anon_sym_BSLASHPnotecite] = ACTIONS(4505), + [anon_sym_BSLASHfnotecite] = ACTIONS(4505), + [anon_sym_BSLASHlabel] = ACTIONS(4505), + [anon_sym_BSLASHref] = ACTIONS(4505), + [anon_sym_BSLASHeqref] = ACTIONS(4505), + [anon_sym_BSLASHvref] = ACTIONS(4505), + [anon_sym_BSLASHVref] = ACTIONS(4505), + [anon_sym_BSLASHautoref] = ACTIONS(4505), + [anon_sym_BSLASHpageref] = ACTIONS(4505), + [anon_sym_BSLASHcref] = ACTIONS(4505), + [anon_sym_BSLASHCref] = ACTIONS(4505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4503), + [anon_sym_BSLASHnamecref] = ACTIONS(4505), + [anon_sym_BSLASHnameCref] = ACTIONS(4505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4505), + [anon_sym_BSLASHlabelcref] = ACTIONS(4505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4505), + [anon_sym_BSLASHcrefrange] = ACTIONS(4505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCrefrange] = ACTIONS(4505), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4503), + [anon_sym_BSLASHnewlabel] = ACTIONS(4505), + [anon_sym_BSLASHnewcommand] = ACTIONS(4505), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4505), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4505), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4503), + [anon_sym_BSLASHdef] = ACTIONS(4505), + [anon_sym_BSLASHlet] = ACTIONS(4505), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4505), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4505), + [anon_sym_BSLASHgls] = ACTIONS(4505), + [anon_sym_BSLASHGls] = ACTIONS(4505), + [anon_sym_BSLASHGLS] = ACTIONS(4505), + [anon_sym_BSLASHglspl] = ACTIONS(4505), + [anon_sym_BSLASHGlspl] = ACTIONS(4505), + [anon_sym_BSLASHGLSpl] = ACTIONS(4505), + [anon_sym_BSLASHglsdisp] = ACTIONS(4505), + [anon_sym_BSLASHglslink] = ACTIONS(4505), + [anon_sym_BSLASHglstext] = ACTIONS(4505), + [anon_sym_BSLASHGlstext] = ACTIONS(4505), + [anon_sym_BSLASHGLStext] = ACTIONS(4505), + [anon_sym_BSLASHglsfirst] = ACTIONS(4505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4505), + [anon_sym_BSLASHglsplural] = ACTIONS(4505), + [anon_sym_BSLASHGlsplural] = ACTIONS(4505), + [anon_sym_BSLASHGLSplural] = ACTIONS(4505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHglsname] = ACTIONS(4505), + [anon_sym_BSLASHGlsname] = ACTIONS(4505), + [anon_sym_BSLASHGLSname] = ACTIONS(4505), + [anon_sym_BSLASHglssymbol] = ACTIONS(4505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4505), + [anon_sym_BSLASHglsdesc] = ACTIONS(4505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4505), + [anon_sym_BSLASHglsuseri] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4505), + [anon_sym_BSLASHglsuserii] = ACTIONS(4505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4505), + [anon_sym_BSLASHglsuserv] = ACTIONS(4505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4505), + [anon_sym_BSLASHglsuservi] = ACTIONS(4505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4505), + [anon_sym_BSLASHnewacronym] = ACTIONS(4505), + [anon_sym_BSLASHacrshort] = ACTIONS(4505), + [anon_sym_BSLASHAcrshort] = ACTIONS(4505), + [anon_sym_BSLASHACRshort] = ACTIONS(4505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4505), + [anon_sym_BSLASHacrlong] = ACTIONS(4505), + [anon_sym_BSLASHAcrlong] = ACTIONS(4505), + [anon_sym_BSLASHACRlong] = ACTIONS(4505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4505), + [anon_sym_BSLASHacrfull] = ACTIONS(4505), + [anon_sym_BSLASHAcrfull] = ACTIONS(4505), + [anon_sym_BSLASHACRfull] = ACTIONS(4505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4505), + [anon_sym_BSLASHacs] = ACTIONS(4505), + [anon_sym_BSLASHAcs] = ACTIONS(4505), + [anon_sym_BSLASHacsp] = ACTIONS(4505), + [anon_sym_BSLASHAcsp] = ACTIONS(4505), + [anon_sym_BSLASHacl] = ACTIONS(4505), + [anon_sym_BSLASHAcl] = ACTIONS(4505), + [anon_sym_BSLASHaclp] = ACTIONS(4505), + [anon_sym_BSLASHAclp] = ACTIONS(4505), + [anon_sym_BSLASHacf] = ACTIONS(4505), + [anon_sym_BSLASHAcf] = ACTIONS(4505), + [anon_sym_BSLASHacfp] = ACTIONS(4505), + [anon_sym_BSLASHAcfp] = ACTIONS(4505), + [anon_sym_BSLASHac] = ACTIONS(4505), + [anon_sym_BSLASHAc] = ACTIONS(4505), + [anon_sym_BSLASHacp] = ACTIONS(4505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4505), + [anon_sym_BSLASHcolor] = ACTIONS(4505), + [anon_sym_BSLASHcolorbox] = ACTIONS(4505), + [anon_sym_BSLASHtextcolor] = ACTIONS(4505), + [anon_sym_BSLASHpagecolor] = ACTIONS(4505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4505), + [anon_sym_BSLASHtext] = ACTIONS(4505), + [anon_sym_BSLASHintertext] = ACTIONS(4505), + [anon_sym_shortintertext] = ACTIONS(4505), }, - [489] = { - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(515), - [aux_sym__section_repeat5] = STATE(515), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), + [389] = { + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(389), + [aux_sym__section_repeat6] = STATE(389), + [sym_command_name] = ACTIONS(4515), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym_RPAREN] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_RBRACK] = ACTIONS(4513), + [anon_sym_COMMA] = ACTIONS(4513), + [anon_sym_EQ] = ACTIONS(4513), + [anon_sym_BSLASHpart] = ACTIONS(4515), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddpart] = ACTIONS(4515), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4513), + [anon_sym_BSLASHchapter] = ACTIONS(4515), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddchap] = ACTIONS(4515), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsection] = ACTIONS(4515), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddsec] = ACTIONS(4515), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsubsection] = ACTIONS(4515), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4515), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHparagraph] = ACTIONS(4597), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4600), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4515), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4513), + [anon_sym_BSLASHitem] = ACTIONS(4515), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4513), + [sym_word] = ACTIONS(4515), + [sym_placeholder] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_CARET] = ACTIONS(4515), + [anon_sym__] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4513), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4513), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4513), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4513), + [anon_sym_BSLASHbegin] = ACTIONS(4515), + [anon_sym_BSLASHend] = ACTIONS(4515), + [anon_sym_BSLASHusepackage] = ACTIONS(4515), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4515), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4515), + [anon_sym_BSLASHinclude] = ACTIONS(4515), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4515), + [anon_sym_BSLASHinput] = ACTIONS(4515), + [anon_sym_BSLASHsubfile] = ACTIONS(4515), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4515), + [anon_sym_BSLASHbibliography] = ACTIONS(4515), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4515), + [anon_sym_BSLASHincludesvg] = ACTIONS(4515), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4515), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4515), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4515), + [anon_sym_BSLASHimport] = ACTIONS(4515), + [anon_sym_BSLASHsubimport] = ACTIONS(4515), + [anon_sym_BSLASHinputfrom] = ACTIONS(4515), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4515), + [anon_sym_BSLASHincludefrom] = ACTIONS(4515), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4515), + [anon_sym_BSLASHcaption] = ACTIONS(4515), + [anon_sym_BSLASHcite] = ACTIONS(4515), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCite] = ACTIONS(4515), + [anon_sym_BSLASHnocite] = ACTIONS(4515), + [anon_sym_BSLASHcitet] = ACTIONS(4515), + [anon_sym_BSLASHcitep] = ACTIONS(4515), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteauthor] = ACTIONS(4515), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4515), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitetitle] = ACTIONS(4515), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteyear] = ACTIONS(4515), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitedate] = ACTIONS(4515), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteurl] = ACTIONS(4515), + [anon_sym_BSLASHfullcite] = ACTIONS(4515), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4515), + [anon_sym_BSLASHcitealt] = ACTIONS(4515), + [anon_sym_BSLASHcitealp] = ACTIONS(4515), + [anon_sym_BSLASHcitetext] = ACTIONS(4515), + [anon_sym_BSLASHparencite] = ACTIONS(4515), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHParencite] = ACTIONS(4515), + [anon_sym_BSLASHfootcite] = ACTIONS(4515), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4515), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4515), + [anon_sym_BSLASHtextcite] = ACTIONS(4515), + [anon_sym_BSLASHTextcite] = ACTIONS(4515), + [anon_sym_BSLASHsmartcite] = ACTIONS(4515), + [anon_sym_BSLASHSmartcite] = ACTIONS(4515), + [anon_sym_BSLASHsupercite] = ACTIONS(4515), + [anon_sym_BSLASHautocite] = ACTIONS(4515), + [anon_sym_BSLASHAutocite] = ACTIONS(4515), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHvolcite] = ACTIONS(4515), + [anon_sym_BSLASHVolcite] = ACTIONS(4515), + [anon_sym_BSLASHpvolcite] = ACTIONS(4515), + [anon_sym_BSLASHPvolcite] = ACTIONS(4515), + [anon_sym_BSLASHfvolcite] = ACTIONS(4515), + [anon_sym_BSLASHftvolcite] = ACTIONS(4515), + [anon_sym_BSLASHsvolcite] = ACTIONS(4515), + [anon_sym_BSLASHSvolcite] = ACTIONS(4515), + [anon_sym_BSLASHtvolcite] = ACTIONS(4515), + [anon_sym_BSLASHTvolcite] = ACTIONS(4515), + [anon_sym_BSLASHavolcite] = ACTIONS(4515), + [anon_sym_BSLASHAvolcite] = ACTIONS(4515), + [anon_sym_BSLASHnotecite] = ACTIONS(4515), + [anon_sym_BSLASHNotecite] = ACTIONS(4515), + [anon_sym_BSLASHpnotecite] = ACTIONS(4515), + [anon_sym_BSLASHPnotecite] = ACTIONS(4515), + [anon_sym_BSLASHfnotecite] = ACTIONS(4515), + [anon_sym_BSLASHlabel] = ACTIONS(4515), + [anon_sym_BSLASHref] = ACTIONS(4515), + [anon_sym_BSLASHeqref] = ACTIONS(4515), + [anon_sym_BSLASHvref] = ACTIONS(4515), + [anon_sym_BSLASHVref] = ACTIONS(4515), + [anon_sym_BSLASHautoref] = ACTIONS(4515), + [anon_sym_BSLASHpageref] = ACTIONS(4515), + [anon_sym_BSLASHcref] = ACTIONS(4515), + [anon_sym_BSLASHCref] = ACTIONS(4515), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4513), + [anon_sym_BSLASHnamecref] = ACTIONS(4515), + [anon_sym_BSLASHnameCref] = ACTIONS(4515), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4515), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4515), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4515), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4515), + [anon_sym_BSLASHlabelcref] = ACTIONS(4515), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4515), + [anon_sym_BSLASHcrefrange] = ACTIONS(4515), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCrefrange] = ACTIONS(4515), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4513), + [anon_sym_BSLASHnewlabel] = ACTIONS(4515), + [anon_sym_BSLASHnewcommand] = ACTIONS(4515), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4515), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4515), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4515), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4513), + [anon_sym_BSLASHdef] = ACTIONS(4515), + [anon_sym_BSLASHlet] = ACTIONS(4515), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4515), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4515), + [anon_sym_BSLASHgls] = ACTIONS(4515), + [anon_sym_BSLASHGls] = ACTIONS(4515), + [anon_sym_BSLASHGLS] = ACTIONS(4515), + [anon_sym_BSLASHglspl] = ACTIONS(4515), + [anon_sym_BSLASHGlspl] = ACTIONS(4515), + [anon_sym_BSLASHGLSpl] = ACTIONS(4515), + [anon_sym_BSLASHglsdisp] = ACTIONS(4515), + [anon_sym_BSLASHglslink] = ACTIONS(4515), + [anon_sym_BSLASHglstext] = ACTIONS(4515), + [anon_sym_BSLASHGlstext] = ACTIONS(4515), + [anon_sym_BSLASHGLStext] = ACTIONS(4515), + [anon_sym_BSLASHglsfirst] = ACTIONS(4515), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4515), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4515), + [anon_sym_BSLASHglsplural] = ACTIONS(4515), + [anon_sym_BSLASHGlsplural] = ACTIONS(4515), + [anon_sym_BSLASHGLSplural] = ACTIONS(4515), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHglsname] = ACTIONS(4515), + [anon_sym_BSLASHGlsname] = ACTIONS(4515), + [anon_sym_BSLASHGLSname] = ACTIONS(4515), + [anon_sym_BSLASHglssymbol] = ACTIONS(4515), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4515), + [anon_sym_BSLASHglsdesc] = ACTIONS(4515), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4515), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4515), + [anon_sym_BSLASHglsuseri] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4515), + [anon_sym_BSLASHglsuserii] = ACTIONS(4515), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4515), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4515), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4515), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4515), + [anon_sym_BSLASHglsuserv] = ACTIONS(4515), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4515), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4515), + [anon_sym_BSLASHglsuservi] = ACTIONS(4515), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4515), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4515), + [anon_sym_BSLASHnewacronym] = ACTIONS(4515), + [anon_sym_BSLASHacrshort] = ACTIONS(4515), + [anon_sym_BSLASHAcrshort] = ACTIONS(4515), + [anon_sym_BSLASHACRshort] = ACTIONS(4515), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4515), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4515), + [anon_sym_BSLASHacrlong] = ACTIONS(4515), + [anon_sym_BSLASHAcrlong] = ACTIONS(4515), + [anon_sym_BSLASHACRlong] = ACTIONS(4515), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4515), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4515), + [anon_sym_BSLASHacrfull] = ACTIONS(4515), + [anon_sym_BSLASHAcrfull] = ACTIONS(4515), + [anon_sym_BSLASHACRfull] = ACTIONS(4515), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4515), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4515), + [anon_sym_BSLASHacs] = ACTIONS(4515), + [anon_sym_BSLASHAcs] = ACTIONS(4515), + [anon_sym_BSLASHacsp] = ACTIONS(4515), + [anon_sym_BSLASHAcsp] = ACTIONS(4515), + [anon_sym_BSLASHacl] = ACTIONS(4515), + [anon_sym_BSLASHAcl] = ACTIONS(4515), + [anon_sym_BSLASHaclp] = ACTIONS(4515), + [anon_sym_BSLASHAclp] = ACTIONS(4515), + [anon_sym_BSLASHacf] = ACTIONS(4515), + [anon_sym_BSLASHAcf] = ACTIONS(4515), + [anon_sym_BSLASHacfp] = ACTIONS(4515), + [anon_sym_BSLASHAcfp] = ACTIONS(4515), + [anon_sym_BSLASHac] = ACTIONS(4515), + [anon_sym_BSLASHAc] = ACTIONS(4515), + [anon_sym_BSLASHacp] = ACTIONS(4515), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4515), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4515), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4515), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4515), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4515), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4515), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4515), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4515), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4515), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4515), + [anon_sym_BSLASHcolor] = ACTIONS(4515), + [anon_sym_BSLASHcolorbox] = ACTIONS(4515), + [anon_sym_BSLASHtextcolor] = ACTIONS(4515), + [anon_sym_BSLASHpagecolor] = ACTIONS(4515), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4515), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4515), + [anon_sym_BSLASHtext] = ACTIONS(4515), + [anon_sym_BSLASHintertext] = ACTIONS(4515), + [anon_sym_shortintertext] = ACTIONS(4515), }, - [490] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(516), - [aux_sym__section_repeat6] = STATE(516), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), + [390] = { + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(390), + [aux_sym__section_repeat5] = STATE(390), + [sym_command_name] = ACTIONS(4525), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_RBRACK] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_BSLASHpart] = ACTIONS(4525), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddpart] = ACTIONS(4525), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4523), + [anon_sym_BSLASHchapter] = ACTIONS(4525), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddchap] = ACTIONS(4525), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsection] = ACTIONS(4525), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddsec] = ACTIONS(4525), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubsection] = ACTIONS(4525), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4603), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4606), + [anon_sym_BSLASHparagraph] = ACTIONS(4525), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4525), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4523), + [anon_sym_BSLASHitem] = ACTIONS(4525), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [sym_word] = ACTIONS(4525), + [sym_placeholder] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym__] = ACTIONS(4525), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(4525), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4523), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4523), + [anon_sym_BSLASHbegin] = ACTIONS(4525), + [anon_sym_BSLASHend] = ACTIONS(4525), + [anon_sym_BSLASHusepackage] = ACTIONS(4525), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4525), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4525), + [anon_sym_BSLASHinclude] = ACTIONS(4525), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4525), + [anon_sym_BSLASHinput] = ACTIONS(4525), + [anon_sym_BSLASHsubfile] = ACTIONS(4525), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4525), + [anon_sym_BSLASHbibliography] = ACTIONS(4525), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4525), + [anon_sym_BSLASHincludesvg] = ACTIONS(4525), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4525), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4525), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4525), + [anon_sym_BSLASHimport] = ACTIONS(4525), + [anon_sym_BSLASHsubimport] = ACTIONS(4525), + [anon_sym_BSLASHinputfrom] = ACTIONS(4525), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4525), + [anon_sym_BSLASHincludefrom] = ACTIONS(4525), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4525), + [anon_sym_BSLASHcaption] = ACTIONS(4525), + [anon_sym_BSLASHcite] = ACTIONS(4525), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCite] = ACTIONS(4525), + [anon_sym_BSLASHnocite] = ACTIONS(4525), + [anon_sym_BSLASHcitet] = ACTIONS(4525), + [anon_sym_BSLASHcitep] = ACTIONS(4525), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteauthor] = ACTIONS(4525), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4525), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitetitle] = ACTIONS(4525), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteyear] = ACTIONS(4525), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitedate] = ACTIONS(4525), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteurl] = ACTIONS(4525), + [anon_sym_BSLASHfullcite] = ACTIONS(4525), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4525), + [anon_sym_BSLASHcitealt] = ACTIONS(4525), + [anon_sym_BSLASHcitealp] = ACTIONS(4525), + [anon_sym_BSLASHcitetext] = ACTIONS(4525), + [anon_sym_BSLASHparencite] = ACTIONS(4525), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHParencite] = ACTIONS(4525), + [anon_sym_BSLASHfootcite] = ACTIONS(4525), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4525), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4525), + [anon_sym_BSLASHtextcite] = ACTIONS(4525), + [anon_sym_BSLASHTextcite] = ACTIONS(4525), + [anon_sym_BSLASHsmartcite] = ACTIONS(4525), + [anon_sym_BSLASHSmartcite] = ACTIONS(4525), + [anon_sym_BSLASHsupercite] = ACTIONS(4525), + [anon_sym_BSLASHautocite] = ACTIONS(4525), + [anon_sym_BSLASHAutocite] = ACTIONS(4525), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHvolcite] = ACTIONS(4525), + [anon_sym_BSLASHVolcite] = ACTIONS(4525), + [anon_sym_BSLASHpvolcite] = ACTIONS(4525), + [anon_sym_BSLASHPvolcite] = ACTIONS(4525), + [anon_sym_BSLASHfvolcite] = ACTIONS(4525), + [anon_sym_BSLASHftvolcite] = ACTIONS(4525), + [anon_sym_BSLASHsvolcite] = ACTIONS(4525), + [anon_sym_BSLASHSvolcite] = ACTIONS(4525), + [anon_sym_BSLASHtvolcite] = ACTIONS(4525), + [anon_sym_BSLASHTvolcite] = ACTIONS(4525), + [anon_sym_BSLASHavolcite] = ACTIONS(4525), + [anon_sym_BSLASHAvolcite] = ACTIONS(4525), + [anon_sym_BSLASHnotecite] = ACTIONS(4525), + [anon_sym_BSLASHNotecite] = ACTIONS(4525), + [anon_sym_BSLASHpnotecite] = ACTIONS(4525), + [anon_sym_BSLASHPnotecite] = ACTIONS(4525), + [anon_sym_BSLASHfnotecite] = ACTIONS(4525), + [anon_sym_BSLASHlabel] = ACTIONS(4525), + [anon_sym_BSLASHref] = ACTIONS(4525), + [anon_sym_BSLASHeqref] = ACTIONS(4525), + [anon_sym_BSLASHvref] = ACTIONS(4525), + [anon_sym_BSLASHVref] = ACTIONS(4525), + [anon_sym_BSLASHautoref] = ACTIONS(4525), + [anon_sym_BSLASHpageref] = ACTIONS(4525), + [anon_sym_BSLASHcref] = ACTIONS(4525), + [anon_sym_BSLASHCref] = ACTIONS(4525), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4523), + [anon_sym_BSLASHnamecref] = ACTIONS(4525), + [anon_sym_BSLASHnameCref] = ACTIONS(4525), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4525), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4525), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4525), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4525), + [anon_sym_BSLASHlabelcref] = ACTIONS(4525), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4525), + [anon_sym_BSLASHcrefrange] = ACTIONS(4525), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCrefrange] = ACTIONS(4525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4523), + [anon_sym_BSLASHnewlabel] = ACTIONS(4525), + [anon_sym_BSLASHnewcommand] = ACTIONS(4525), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4525), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4525), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4525), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4523), + [anon_sym_BSLASHdef] = ACTIONS(4525), + [anon_sym_BSLASHlet] = ACTIONS(4525), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4525), + [anon_sym_BSLASHgls] = ACTIONS(4525), + [anon_sym_BSLASHGls] = ACTIONS(4525), + [anon_sym_BSLASHGLS] = ACTIONS(4525), + [anon_sym_BSLASHglspl] = ACTIONS(4525), + [anon_sym_BSLASHGlspl] = ACTIONS(4525), + [anon_sym_BSLASHGLSpl] = ACTIONS(4525), + [anon_sym_BSLASHglsdisp] = ACTIONS(4525), + [anon_sym_BSLASHglslink] = ACTIONS(4525), + [anon_sym_BSLASHglstext] = ACTIONS(4525), + [anon_sym_BSLASHGlstext] = ACTIONS(4525), + [anon_sym_BSLASHGLStext] = ACTIONS(4525), + [anon_sym_BSLASHglsfirst] = ACTIONS(4525), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4525), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4525), + [anon_sym_BSLASHglsplural] = ACTIONS(4525), + [anon_sym_BSLASHGlsplural] = ACTIONS(4525), + [anon_sym_BSLASHGLSplural] = ACTIONS(4525), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHglsname] = ACTIONS(4525), + [anon_sym_BSLASHGlsname] = ACTIONS(4525), + [anon_sym_BSLASHGLSname] = ACTIONS(4525), + [anon_sym_BSLASHglssymbol] = ACTIONS(4525), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4525), + [anon_sym_BSLASHglsdesc] = ACTIONS(4525), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4525), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4525), + [anon_sym_BSLASHglsuseri] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4525), + [anon_sym_BSLASHglsuserii] = ACTIONS(4525), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4525), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4525), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4525), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4525), + [anon_sym_BSLASHglsuserv] = ACTIONS(4525), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4525), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4525), + [anon_sym_BSLASHglsuservi] = ACTIONS(4525), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4525), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4525), + [anon_sym_BSLASHnewacronym] = ACTIONS(4525), + [anon_sym_BSLASHacrshort] = ACTIONS(4525), + [anon_sym_BSLASHAcrshort] = ACTIONS(4525), + [anon_sym_BSLASHACRshort] = ACTIONS(4525), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4525), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4525), + [anon_sym_BSLASHacrlong] = ACTIONS(4525), + [anon_sym_BSLASHAcrlong] = ACTIONS(4525), + [anon_sym_BSLASHACRlong] = ACTIONS(4525), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4525), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4525), + [anon_sym_BSLASHacrfull] = ACTIONS(4525), + [anon_sym_BSLASHAcrfull] = ACTIONS(4525), + [anon_sym_BSLASHACRfull] = ACTIONS(4525), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4525), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4525), + [anon_sym_BSLASHacs] = ACTIONS(4525), + [anon_sym_BSLASHAcs] = ACTIONS(4525), + [anon_sym_BSLASHacsp] = ACTIONS(4525), + [anon_sym_BSLASHAcsp] = ACTIONS(4525), + [anon_sym_BSLASHacl] = ACTIONS(4525), + [anon_sym_BSLASHAcl] = ACTIONS(4525), + [anon_sym_BSLASHaclp] = ACTIONS(4525), + [anon_sym_BSLASHAclp] = ACTIONS(4525), + [anon_sym_BSLASHacf] = ACTIONS(4525), + [anon_sym_BSLASHAcf] = ACTIONS(4525), + [anon_sym_BSLASHacfp] = ACTIONS(4525), + [anon_sym_BSLASHAcfp] = ACTIONS(4525), + [anon_sym_BSLASHac] = ACTIONS(4525), + [anon_sym_BSLASHAc] = ACTIONS(4525), + [anon_sym_BSLASHacp] = ACTIONS(4525), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4525), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4525), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4525), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4525), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4525), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4525), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4525), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4525), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4525), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4525), + [anon_sym_BSLASHcolor] = ACTIONS(4525), + [anon_sym_BSLASHcolorbox] = ACTIONS(4525), + [anon_sym_BSLASHtextcolor] = ACTIONS(4525), + [anon_sym_BSLASHpagecolor] = ACTIONS(4525), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4525), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4525), + [anon_sym_BSLASHtext] = ACTIONS(4525), + [anon_sym_BSLASHintertext] = ACTIONS(4525), + [anon_sym_shortintertext] = ACTIONS(4525), }, - [491] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), + [391] = { + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [492] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), + [392] = { + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(392), + [aux_sym__section_repeat4] = STATE(392), + [sym_command_name] = ACTIONS(4535), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4535), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(4533), + [anon_sym_BSLASHpart] = ACTIONS(4535), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddpart] = ACTIONS(4535), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4533), + [anon_sym_BSLASHchapter] = ACTIONS(4535), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddchap] = ACTIONS(4535), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsection] = ACTIONS(4535), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddsec] = ACTIONS(4535), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsubsection] = ACTIONS(4609), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4612), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4535), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4533), + [anon_sym_BSLASHparagraph] = ACTIONS(4535), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4535), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4533), + [anon_sym_BSLASHitem] = ACTIONS(4535), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4533), + [anon_sym_LBRACE] = ACTIONS(4533), + [sym_word] = ACTIONS(4535), + [sym_placeholder] = ACTIONS(4533), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4535), + [anon_sym__] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_BANG] = ACTIONS(4535), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_SQUOTE] = ACTIONS(4535), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4533), + [anon_sym_DOLLAR] = ACTIONS(4535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4533), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4533), + [anon_sym_BSLASHbegin] = ACTIONS(4535), + [anon_sym_BSLASHend] = ACTIONS(4535), + [anon_sym_BSLASHusepackage] = ACTIONS(4535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4535), + [anon_sym_BSLASHinclude] = ACTIONS(4535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4535), + [anon_sym_BSLASHinput] = ACTIONS(4535), + [anon_sym_BSLASHsubfile] = ACTIONS(4535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4535), + [anon_sym_BSLASHbibliography] = ACTIONS(4535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4535), + [anon_sym_BSLASHincludesvg] = ACTIONS(4535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4535), + [anon_sym_BSLASHimport] = ACTIONS(4535), + [anon_sym_BSLASHsubimport] = ACTIONS(4535), + [anon_sym_BSLASHinputfrom] = ACTIONS(4535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4535), + [anon_sym_BSLASHincludefrom] = ACTIONS(4535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4535), + [anon_sym_BSLASHcaption] = ACTIONS(4535), + [anon_sym_BSLASHcite] = ACTIONS(4535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCite] = ACTIONS(4535), + [anon_sym_BSLASHnocite] = ACTIONS(4535), + [anon_sym_BSLASHcitet] = ACTIONS(4535), + [anon_sym_BSLASHcitep] = ACTIONS(4535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteauthor] = ACTIONS(4535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitetitle] = ACTIONS(4535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteyear] = ACTIONS(4535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitedate] = ACTIONS(4535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteurl] = ACTIONS(4535), + [anon_sym_BSLASHfullcite] = ACTIONS(4535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4535), + [anon_sym_BSLASHcitealt] = ACTIONS(4535), + [anon_sym_BSLASHcitealp] = ACTIONS(4535), + [anon_sym_BSLASHcitetext] = ACTIONS(4535), + [anon_sym_BSLASHparencite] = ACTIONS(4535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHParencite] = ACTIONS(4535), + [anon_sym_BSLASHfootcite] = ACTIONS(4535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4535), + [anon_sym_BSLASHtextcite] = ACTIONS(4535), + [anon_sym_BSLASHTextcite] = ACTIONS(4535), + [anon_sym_BSLASHsmartcite] = ACTIONS(4535), + [anon_sym_BSLASHSmartcite] = ACTIONS(4535), + [anon_sym_BSLASHsupercite] = ACTIONS(4535), + [anon_sym_BSLASHautocite] = ACTIONS(4535), + [anon_sym_BSLASHAutocite] = ACTIONS(4535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHvolcite] = ACTIONS(4535), + [anon_sym_BSLASHVolcite] = ACTIONS(4535), + [anon_sym_BSLASHpvolcite] = ACTIONS(4535), + [anon_sym_BSLASHPvolcite] = ACTIONS(4535), + [anon_sym_BSLASHfvolcite] = ACTIONS(4535), + [anon_sym_BSLASHftvolcite] = ACTIONS(4535), + [anon_sym_BSLASHsvolcite] = ACTIONS(4535), + [anon_sym_BSLASHSvolcite] = ACTIONS(4535), + [anon_sym_BSLASHtvolcite] = ACTIONS(4535), + [anon_sym_BSLASHTvolcite] = ACTIONS(4535), + [anon_sym_BSLASHavolcite] = ACTIONS(4535), + [anon_sym_BSLASHAvolcite] = ACTIONS(4535), + [anon_sym_BSLASHnotecite] = ACTIONS(4535), + [anon_sym_BSLASHNotecite] = ACTIONS(4535), + [anon_sym_BSLASHpnotecite] = ACTIONS(4535), + [anon_sym_BSLASHPnotecite] = ACTIONS(4535), + [anon_sym_BSLASHfnotecite] = ACTIONS(4535), + [anon_sym_BSLASHlabel] = ACTIONS(4535), + [anon_sym_BSLASHref] = ACTIONS(4535), + [anon_sym_BSLASHeqref] = ACTIONS(4535), + [anon_sym_BSLASHvref] = ACTIONS(4535), + [anon_sym_BSLASHVref] = ACTIONS(4535), + [anon_sym_BSLASHautoref] = ACTIONS(4535), + [anon_sym_BSLASHpageref] = ACTIONS(4535), + [anon_sym_BSLASHcref] = ACTIONS(4535), + [anon_sym_BSLASHCref] = ACTIONS(4535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4533), + [anon_sym_BSLASHnamecref] = ACTIONS(4535), + [anon_sym_BSLASHnameCref] = ACTIONS(4535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4535), + [anon_sym_BSLASHlabelcref] = ACTIONS(4535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4535), + [anon_sym_BSLASHcrefrange] = ACTIONS(4535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCrefrange] = ACTIONS(4535), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4533), + [anon_sym_BSLASHnewlabel] = ACTIONS(4535), + [anon_sym_BSLASHnewcommand] = ACTIONS(4535), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4535), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4535), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4533), + [anon_sym_BSLASHdef] = ACTIONS(4535), + [anon_sym_BSLASHlet] = ACTIONS(4535), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4535), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4535), + [anon_sym_BSLASHgls] = ACTIONS(4535), + [anon_sym_BSLASHGls] = ACTIONS(4535), + [anon_sym_BSLASHGLS] = ACTIONS(4535), + [anon_sym_BSLASHglspl] = ACTIONS(4535), + [anon_sym_BSLASHGlspl] = ACTIONS(4535), + [anon_sym_BSLASHGLSpl] = ACTIONS(4535), + [anon_sym_BSLASHglsdisp] = ACTIONS(4535), + [anon_sym_BSLASHglslink] = ACTIONS(4535), + [anon_sym_BSLASHglstext] = ACTIONS(4535), + [anon_sym_BSLASHGlstext] = ACTIONS(4535), + [anon_sym_BSLASHGLStext] = ACTIONS(4535), + [anon_sym_BSLASHglsfirst] = ACTIONS(4535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4535), + [anon_sym_BSLASHglsplural] = ACTIONS(4535), + [anon_sym_BSLASHGlsplural] = ACTIONS(4535), + [anon_sym_BSLASHGLSplural] = ACTIONS(4535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHglsname] = ACTIONS(4535), + [anon_sym_BSLASHGlsname] = ACTIONS(4535), + [anon_sym_BSLASHGLSname] = ACTIONS(4535), + [anon_sym_BSLASHglssymbol] = ACTIONS(4535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4535), + [anon_sym_BSLASHglsdesc] = ACTIONS(4535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4535), + [anon_sym_BSLASHglsuseri] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4535), + [anon_sym_BSLASHglsuserii] = ACTIONS(4535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4535), + [anon_sym_BSLASHglsuserv] = ACTIONS(4535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4535), + [anon_sym_BSLASHglsuservi] = ACTIONS(4535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4535), + [anon_sym_BSLASHnewacronym] = ACTIONS(4535), + [anon_sym_BSLASHacrshort] = ACTIONS(4535), + [anon_sym_BSLASHAcrshort] = ACTIONS(4535), + [anon_sym_BSLASHACRshort] = ACTIONS(4535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4535), + [anon_sym_BSLASHacrlong] = ACTIONS(4535), + [anon_sym_BSLASHAcrlong] = ACTIONS(4535), + [anon_sym_BSLASHACRlong] = ACTIONS(4535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4535), + [anon_sym_BSLASHacrfull] = ACTIONS(4535), + [anon_sym_BSLASHAcrfull] = ACTIONS(4535), + [anon_sym_BSLASHACRfull] = ACTIONS(4535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4535), + [anon_sym_BSLASHacs] = ACTIONS(4535), + [anon_sym_BSLASHAcs] = ACTIONS(4535), + [anon_sym_BSLASHacsp] = ACTIONS(4535), + [anon_sym_BSLASHAcsp] = ACTIONS(4535), + [anon_sym_BSLASHacl] = ACTIONS(4535), + [anon_sym_BSLASHAcl] = ACTIONS(4535), + [anon_sym_BSLASHaclp] = ACTIONS(4535), + [anon_sym_BSLASHAclp] = ACTIONS(4535), + [anon_sym_BSLASHacf] = ACTIONS(4535), + [anon_sym_BSLASHAcf] = ACTIONS(4535), + [anon_sym_BSLASHacfp] = ACTIONS(4535), + [anon_sym_BSLASHAcfp] = ACTIONS(4535), + [anon_sym_BSLASHac] = ACTIONS(4535), + [anon_sym_BSLASHAc] = ACTIONS(4535), + [anon_sym_BSLASHacp] = ACTIONS(4535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4535), + [anon_sym_BSLASHcolor] = ACTIONS(4535), + [anon_sym_BSLASHcolorbox] = ACTIONS(4535), + [anon_sym_BSLASHtextcolor] = ACTIONS(4535), + [anon_sym_BSLASHpagecolor] = ACTIONS(4535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4535), + [anon_sym_BSLASHtext] = ACTIONS(4535), + [anon_sym_BSLASHintertext] = ACTIONS(4535), + [anon_sym_shortintertext] = ACTIONS(4535), }, - [493] = { - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(493), - [aux_sym__section_repeat1] = STATE(493), - [sym_command_name] = ACTIONS(4493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4493), - [anon_sym_LPAREN] = ACTIONS(4491), - [anon_sym_RPAREN] = ACTIONS(4491), - [anon_sym_LBRACK] = ACTIONS(4491), - [anon_sym_RBRACK] = ACTIONS(4491), - [anon_sym_COMMA] = ACTIONS(4491), - [anon_sym_EQ] = ACTIONS(4491), - [anon_sym_BSLASHpart] = ACTIONS(4633), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4636), - [anon_sym_BSLASHaddpart] = ACTIONS(4633), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4636), - [anon_sym_BSLASHchapter] = ACTIONS(4493), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4491), - [anon_sym_BSLASHaddchap] = ACTIONS(4493), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsection] = ACTIONS(4493), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHaddsec] = ACTIONS(4493), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubsection] = ACTIONS(4493), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4493), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHparagraph] = ACTIONS(4493), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4493), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4491), - [anon_sym_BSLASHitem] = ACTIONS(4493), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4491), - [sym_word] = ACTIONS(4493), - [sym_placeholder] = ACTIONS(4491), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_CARET] = ACTIONS(4493), - [anon_sym__] = ACTIONS(4493), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_PIPE] = ACTIONS(4493), - [anon_sym_COLON] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4491), - [anon_sym_DOLLAR] = ACTIONS(4493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4491), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4491), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4491), - [anon_sym_BSLASHbegin] = ACTIONS(4493), - [anon_sym_BSLASHusepackage] = ACTIONS(4493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4493), - [anon_sym_BSLASHinclude] = ACTIONS(4493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4493), - [anon_sym_BSLASHinput] = ACTIONS(4493), - [anon_sym_BSLASHsubfile] = ACTIONS(4493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4493), - [anon_sym_BSLASHbibliography] = ACTIONS(4493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4493), - [anon_sym_BSLASHincludesvg] = ACTIONS(4493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4493), - [anon_sym_BSLASHimport] = ACTIONS(4493), - [anon_sym_BSLASHsubimport] = ACTIONS(4493), - [anon_sym_BSLASHinputfrom] = ACTIONS(4493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4493), - [anon_sym_BSLASHincludefrom] = ACTIONS(4493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4493), - [anon_sym_BSLASHcaption] = ACTIONS(4493), - [anon_sym_BSLASHcite] = ACTIONS(4493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCite] = ACTIONS(4493), - [anon_sym_BSLASHnocite] = ACTIONS(4493), - [anon_sym_BSLASHcitet] = ACTIONS(4493), - [anon_sym_BSLASHcitep] = ACTIONS(4493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteauthor] = ACTIONS(4493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitetitle] = ACTIONS(4493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteyear] = ACTIONS(4493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitedate] = ACTIONS(4493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteurl] = ACTIONS(4493), - [anon_sym_BSLASHfullcite] = ACTIONS(4493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4493), - [anon_sym_BSLASHcitealt] = ACTIONS(4493), - [anon_sym_BSLASHcitealp] = ACTIONS(4493), - [anon_sym_BSLASHcitetext] = ACTIONS(4493), - [anon_sym_BSLASHparencite] = ACTIONS(4493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHParencite] = ACTIONS(4493), - [anon_sym_BSLASHfootcite] = ACTIONS(4493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4493), - [anon_sym_BSLASHtextcite] = ACTIONS(4493), - [anon_sym_BSLASHTextcite] = ACTIONS(4493), - [anon_sym_BSLASHsmartcite] = ACTIONS(4493), - [anon_sym_BSLASHSmartcite] = ACTIONS(4493), - [anon_sym_BSLASHsupercite] = ACTIONS(4493), - [anon_sym_BSLASHautocite] = ACTIONS(4493), - [anon_sym_BSLASHAutocite] = ACTIONS(4493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHvolcite] = ACTIONS(4493), - [anon_sym_BSLASHVolcite] = ACTIONS(4493), - [anon_sym_BSLASHpvolcite] = ACTIONS(4493), - [anon_sym_BSLASHPvolcite] = ACTIONS(4493), - [anon_sym_BSLASHfvolcite] = ACTIONS(4493), - [anon_sym_BSLASHftvolcite] = ACTIONS(4493), - [anon_sym_BSLASHsvolcite] = ACTIONS(4493), - [anon_sym_BSLASHSvolcite] = ACTIONS(4493), - [anon_sym_BSLASHtvolcite] = ACTIONS(4493), - [anon_sym_BSLASHTvolcite] = ACTIONS(4493), - [anon_sym_BSLASHavolcite] = ACTIONS(4493), - [anon_sym_BSLASHAvolcite] = ACTIONS(4493), - [anon_sym_BSLASHnotecite] = ACTIONS(4493), - [anon_sym_BSLASHNotecite] = ACTIONS(4493), - [anon_sym_BSLASHpnotecite] = ACTIONS(4493), - [anon_sym_BSLASHPnotecite] = ACTIONS(4493), - [anon_sym_BSLASHfnotecite] = ACTIONS(4493), - [anon_sym_BSLASHlabel] = ACTIONS(4493), - [anon_sym_BSLASHref] = ACTIONS(4493), - [anon_sym_BSLASHeqref] = ACTIONS(4493), - [anon_sym_BSLASHvref] = ACTIONS(4493), - [anon_sym_BSLASHVref] = ACTIONS(4493), - [anon_sym_BSLASHautoref] = ACTIONS(4493), - [anon_sym_BSLASHpageref] = ACTIONS(4493), - [anon_sym_BSLASHcref] = ACTIONS(4493), - [anon_sym_BSLASHCref] = ACTIONS(4493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4491), - [anon_sym_BSLASHnamecref] = ACTIONS(4493), - [anon_sym_BSLASHnameCref] = ACTIONS(4493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4493), - [anon_sym_BSLASHlabelcref] = ACTIONS(4493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4493), - [anon_sym_BSLASHcrefrange] = ACTIONS(4493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCrefrange] = ACTIONS(4493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4491), - [anon_sym_BSLASHnewlabel] = ACTIONS(4493), - [anon_sym_BSLASHnewcommand] = ACTIONS(4493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4491), - [anon_sym_BSLASHdef] = ACTIONS(4493), - [anon_sym_BSLASHlet] = ACTIONS(4493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4493), - [anon_sym_BSLASHgls] = ACTIONS(4493), - [anon_sym_BSLASHGls] = ACTIONS(4493), - [anon_sym_BSLASHGLS] = ACTIONS(4493), - [anon_sym_BSLASHglspl] = ACTIONS(4493), - [anon_sym_BSLASHGlspl] = ACTIONS(4493), - [anon_sym_BSLASHGLSpl] = ACTIONS(4493), - [anon_sym_BSLASHglsdisp] = ACTIONS(4493), - [anon_sym_BSLASHglslink] = ACTIONS(4493), - [anon_sym_BSLASHglstext] = ACTIONS(4493), - [anon_sym_BSLASHGlstext] = ACTIONS(4493), - [anon_sym_BSLASHGLStext] = ACTIONS(4493), - [anon_sym_BSLASHglsfirst] = ACTIONS(4493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4493), - [anon_sym_BSLASHglsplural] = ACTIONS(4493), - [anon_sym_BSLASHGlsplural] = ACTIONS(4493), - [anon_sym_BSLASHGLSplural] = ACTIONS(4493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHglsname] = ACTIONS(4493), - [anon_sym_BSLASHGlsname] = ACTIONS(4493), - [anon_sym_BSLASHGLSname] = ACTIONS(4493), - [anon_sym_BSLASHglssymbol] = ACTIONS(4493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4493), - [anon_sym_BSLASHglsdesc] = ACTIONS(4493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4493), - [anon_sym_BSLASHglsuseri] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4493), - [anon_sym_BSLASHglsuserii] = ACTIONS(4493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4493), - [anon_sym_BSLASHglsuserv] = ACTIONS(4493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4493), - [anon_sym_BSLASHglsuservi] = ACTIONS(4493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4493), - [anon_sym_BSLASHnewacronym] = ACTIONS(4493), - [anon_sym_BSLASHacrshort] = ACTIONS(4493), - [anon_sym_BSLASHAcrshort] = ACTIONS(4493), - [anon_sym_BSLASHACRshort] = ACTIONS(4493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4493), - [anon_sym_BSLASHacrlong] = ACTIONS(4493), - [anon_sym_BSLASHAcrlong] = ACTIONS(4493), - [anon_sym_BSLASHACRlong] = ACTIONS(4493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4493), - [anon_sym_BSLASHacrfull] = ACTIONS(4493), - [anon_sym_BSLASHAcrfull] = ACTIONS(4493), - [anon_sym_BSLASHACRfull] = ACTIONS(4493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4493), - [anon_sym_BSLASHacs] = ACTIONS(4493), - [anon_sym_BSLASHAcs] = ACTIONS(4493), - [anon_sym_BSLASHacsp] = ACTIONS(4493), - [anon_sym_BSLASHAcsp] = ACTIONS(4493), - [anon_sym_BSLASHacl] = ACTIONS(4493), - [anon_sym_BSLASHAcl] = ACTIONS(4493), - [anon_sym_BSLASHaclp] = ACTIONS(4493), - [anon_sym_BSLASHAclp] = ACTIONS(4493), - [anon_sym_BSLASHacf] = ACTIONS(4493), - [anon_sym_BSLASHAcf] = ACTIONS(4493), - [anon_sym_BSLASHacfp] = ACTIONS(4493), - [anon_sym_BSLASHAcfp] = ACTIONS(4493), - [anon_sym_BSLASHac] = ACTIONS(4493), - [anon_sym_BSLASHAc] = ACTIONS(4493), - [anon_sym_BSLASHacp] = ACTIONS(4493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4493), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4493), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4493), - [anon_sym_BSLASHcolor] = ACTIONS(4493), - [anon_sym_BSLASHcolorbox] = ACTIONS(4493), - [anon_sym_BSLASHtextcolor] = ACTIONS(4493), - [anon_sym_BSLASHpagecolor] = ACTIONS(4493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4493), + [393] = { + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(393), + [aux_sym__section_repeat3] = STATE(393), + [sym_command_name] = ACTIONS(4545), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_RPAREN] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_RBRACK] = ACTIONS(4543), + [anon_sym_COMMA] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_BSLASHpart] = ACTIONS(4545), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4543), + [anon_sym_BSLASHaddpart] = ACTIONS(4545), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4543), + [anon_sym_BSLASHchapter] = ACTIONS(4545), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4543), + [anon_sym_BSLASHaddchap] = ACTIONS(4545), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsection] = ACTIONS(4615), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4618), + [anon_sym_BSLASHaddsec] = ACTIONS(4615), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4618), + [anon_sym_BSLASHsubsection] = ACTIONS(4545), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4545), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4543), + [anon_sym_BSLASHparagraph] = ACTIONS(4545), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4545), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4543), + [anon_sym_BSLASHitem] = ACTIONS(4545), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4543), + [sym_word] = ACTIONS(4545), + [sym_placeholder] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4545), + [anon_sym_STAR] = ACTIONS(4545), + [anon_sym_SLASH] = ACTIONS(4545), + [anon_sym_CARET] = ACTIONS(4545), + [anon_sym__] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4545), + [anon_sym_BANG] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4545), + [anon_sym_SQUOTE] = ACTIONS(4545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4543), + [anon_sym_DOLLAR] = ACTIONS(4545), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4543), + [anon_sym_BSLASHbegin] = ACTIONS(4545), + [anon_sym_BSLASHend] = ACTIONS(4545), + [anon_sym_BSLASHusepackage] = ACTIONS(4545), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4545), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4545), + [anon_sym_BSLASHinclude] = ACTIONS(4545), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4545), + [anon_sym_BSLASHinput] = ACTIONS(4545), + [anon_sym_BSLASHsubfile] = ACTIONS(4545), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4545), + [anon_sym_BSLASHbibliography] = ACTIONS(4545), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4545), + [anon_sym_BSLASHincludesvg] = ACTIONS(4545), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4545), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4545), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4545), + [anon_sym_BSLASHimport] = ACTIONS(4545), + [anon_sym_BSLASHsubimport] = ACTIONS(4545), + [anon_sym_BSLASHinputfrom] = ACTIONS(4545), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4545), + [anon_sym_BSLASHincludefrom] = ACTIONS(4545), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4545), + [anon_sym_BSLASHcaption] = ACTIONS(4545), + [anon_sym_BSLASHcite] = ACTIONS(4545), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCite] = ACTIONS(4545), + [anon_sym_BSLASHnocite] = ACTIONS(4545), + [anon_sym_BSLASHcitet] = ACTIONS(4545), + [anon_sym_BSLASHcitep] = ACTIONS(4545), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteauthor] = ACTIONS(4545), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4545), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitetitle] = ACTIONS(4545), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteyear] = ACTIONS(4545), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitedate] = ACTIONS(4545), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteurl] = ACTIONS(4545), + [anon_sym_BSLASHfullcite] = ACTIONS(4545), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4545), + [anon_sym_BSLASHcitealt] = ACTIONS(4545), + [anon_sym_BSLASHcitealp] = ACTIONS(4545), + [anon_sym_BSLASHcitetext] = ACTIONS(4545), + [anon_sym_BSLASHparencite] = ACTIONS(4545), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHParencite] = ACTIONS(4545), + [anon_sym_BSLASHfootcite] = ACTIONS(4545), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4545), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4545), + [anon_sym_BSLASHtextcite] = ACTIONS(4545), + [anon_sym_BSLASHTextcite] = ACTIONS(4545), + [anon_sym_BSLASHsmartcite] = ACTIONS(4545), + [anon_sym_BSLASHSmartcite] = ACTIONS(4545), + [anon_sym_BSLASHsupercite] = ACTIONS(4545), + [anon_sym_BSLASHautocite] = ACTIONS(4545), + [anon_sym_BSLASHAutocite] = ACTIONS(4545), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHvolcite] = ACTIONS(4545), + [anon_sym_BSLASHVolcite] = ACTIONS(4545), + [anon_sym_BSLASHpvolcite] = ACTIONS(4545), + [anon_sym_BSLASHPvolcite] = ACTIONS(4545), + [anon_sym_BSLASHfvolcite] = ACTIONS(4545), + [anon_sym_BSLASHftvolcite] = ACTIONS(4545), + [anon_sym_BSLASHsvolcite] = ACTIONS(4545), + [anon_sym_BSLASHSvolcite] = ACTIONS(4545), + [anon_sym_BSLASHtvolcite] = ACTIONS(4545), + [anon_sym_BSLASHTvolcite] = ACTIONS(4545), + [anon_sym_BSLASHavolcite] = ACTIONS(4545), + [anon_sym_BSLASHAvolcite] = ACTIONS(4545), + [anon_sym_BSLASHnotecite] = ACTIONS(4545), + [anon_sym_BSLASHNotecite] = ACTIONS(4545), + [anon_sym_BSLASHpnotecite] = ACTIONS(4545), + [anon_sym_BSLASHPnotecite] = ACTIONS(4545), + [anon_sym_BSLASHfnotecite] = ACTIONS(4545), + [anon_sym_BSLASHlabel] = ACTIONS(4545), + [anon_sym_BSLASHref] = ACTIONS(4545), + [anon_sym_BSLASHeqref] = ACTIONS(4545), + [anon_sym_BSLASHvref] = ACTIONS(4545), + [anon_sym_BSLASHVref] = ACTIONS(4545), + [anon_sym_BSLASHautoref] = ACTIONS(4545), + [anon_sym_BSLASHpageref] = ACTIONS(4545), + [anon_sym_BSLASHcref] = ACTIONS(4545), + [anon_sym_BSLASHCref] = ACTIONS(4545), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4543), + [anon_sym_BSLASHnamecref] = ACTIONS(4545), + [anon_sym_BSLASHnameCref] = ACTIONS(4545), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4545), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4545), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4545), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4545), + [anon_sym_BSLASHlabelcref] = ACTIONS(4545), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4545), + [anon_sym_BSLASHcrefrange] = ACTIONS(4545), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCrefrange] = ACTIONS(4545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4543), + [anon_sym_BSLASHnewlabel] = ACTIONS(4545), + [anon_sym_BSLASHnewcommand] = ACTIONS(4545), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4545), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4545), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4545), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4543), + [anon_sym_BSLASHdef] = ACTIONS(4545), + [anon_sym_BSLASHlet] = ACTIONS(4545), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4545), + [anon_sym_BSLASHgls] = ACTIONS(4545), + [anon_sym_BSLASHGls] = ACTIONS(4545), + [anon_sym_BSLASHGLS] = ACTIONS(4545), + [anon_sym_BSLASHglspl] = ACTIONS(4545), + [anon_sym_BSLASHGlspl] = ACTIONS(4545), + [anon_sym_BSLASHGLSpl] = ACTIONS(4545), + [anon_sym_BSLASHglsdisp] = ACTIONS(4545), + [anon_sym_BSLASHglslink] = ACTIONS(4545), + [anon_sym_BSLASHglstext] = ACTIONS(4545), + [anon_sym_BSLASHGlstext] = ACTIONS(4545), + [anon_sym_BSLASHGLStext] = ACTIONS(4545), + [anon_sym_BSLASHglsfirst] = ACTIONS(4545), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4545), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4545), + [anon_sym_BSLASHglsplural] = ACTIONS(4545), + [anon_sym_BSLASHGlsplural] = ACTIONS(4545), + [anon_sym_BSLASHGLSplural] = ACTIONS(4545), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHglsname] = ACTIONS(4545), + [anon_sym_BSLASHGlsname] = ACTIONS(4545), + [anon_sym_BSLASHGLSname] = ACTIONS(4545), + [anon_sym_BSLASHglssymbol] = ACTIONS(4545), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4545), + [anon_sym_BSLASHglsdesc] = ACTIONS(4545), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4545), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4545), + [anon_sym_BSLASHglsuseri] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4545), + [anon_sym_BSLASHglsuserii] = ACTIONS(4545), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4545), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4545), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4545), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4545), + [anon_sym_BSLASHglsuserv] = ACTIONS(4545), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4545), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4545), + [anon_sym_BSLASHglsuservi] = ACTIONS(4545), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4545), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4545), + [anon_sym_BSLASHnewacronym] = ACTIONS(4545), + [anon_sym_BSLASHacrshort] = ACTIONS(4545), + [anon_sym_BSLASHAcrshort] = ACTIONS(4545), + [anon_sym_BSLASHACRshort] = ACTIONS(4545), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4545), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4545), + [anon_sym_BSLASHacrlong] = ACTIONS(4545), + [anon_sym_BSLASHAcrlong] = ACTIONS(4545), + [anon_sym_BSLASHACRlong] = ACTIONS(4545), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4545), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4545), + [anon_sym_BSLASHacrfull] = ACTIONS(4545), + [anon_sym_BSLASHAcrfull] = ACTIONS(4545), + [anon_sym_BSLASHACRfull] = ACTIONS(4545), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4545), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4545), + [anon_sym_BSLASHacs] = ACTIONS(4545), + [anon_sym_BSLASHAcs] = ACTIONS(4545), + [anon_sym_BSLASHacsp] = ACTIONS(4545), + [anon_sym_BSLASHAcsp] = ACTIONS(4545), + [anon_sym_BSLASHacl] = ACTIONS(4545), + [anon_sym_BSLASHAcl] = ACTIONS(4545), + [anon_sym_BSLASHaclp] = ACTIONS(4545), + [anon_sym_BSLASHAclp] = ACTIONS(4545), + [anon_sym_BSLASHacf] = ACTIONS(4545), + [anon_sym_BSLASHAcf] = ACTIONS(4545), + [anon_sym_BSLASHacfp] = ACTIONS(4545), + [anon_sym_BSLASHAcfp] = ACTIONS(4545), + [anon_sym_BSLASHac] = ACTIONS(4545), + [anon_sym_BSLASHAc] = ACTIONS(4545), + [anon_sym_BSLASHacp] = ACTIONS(4545), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4545), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4545), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4545), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4545), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4545), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4545), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4545), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4545), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4545), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4545), + [anon_sym_BSLASHcolor] = ACTIONS(4545), + [anon_sym_BSLASHcolorbox] = ACTIONS(4545), + [anon_sym_BSLASHtextcolor] = ACTIONS(4545), + [anon_sym_BSLASHpagecolor] = ACTIONS(4545), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4545), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4545), + [anon_sym_BSLASHtext] = ACTIONS(4545), + [anon_sym_BSLASHintertext] = ACTIONS(4545), + [anon_sym_shortintertext] = ACTIONS(4545), }, - [494] = { - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(515), - [aux_sym__section_repeat5] = STATE(515), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [394] = { + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [495] = { + [395] = { [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(516), - [aux_sym__section_repeat6] = STATE(516), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [sym_paragraph] = STATE(448), + [aux_sym__section_repeat6] = STATE(448), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [496] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [396] = { + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(4487), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4485), + [anon_sym_RPAREN] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_BSLASHpart] = ACTIONS(4487), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddpart] = ACTIONS(4487), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHchapter] = ACTIONS(4487), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddchap] = ACTIONS(4487), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsection] = ACTIONS(4487), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddsec] = ACTIONS(4487), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHparagraph] = ACTIONS(4487), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4487), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(4485), + [sym_word] = ACTIONS(4487), + [sym_placeholder] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4487), + [anon_sym_STAR] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym__] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4487), + [anon_sym_PIPE] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [anon_sym_SQUOTE] = ACTIONS(4487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), + [anon_sym_DOLLAR] = ACTIONS(4487), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), + [anon_sym_BSLASHbegin] = ACTIONS(4487), + [anon_sym_BSLASHend] = ACTIONS(4487), + [anon_sym_BSLASHusepackage] = ACTIONS(4487), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), + [anon_sym_BSLASHinclude] = ACTIONS(4487), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), + [anon_sym_BSLASHinput] = ACTIONS(4487), + [anon_sym_BSLASHsubfile] = ACTIONS(4487), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), + [anon_sym_BSLASHbibliography] = ACTIONS(4487), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), + [anon_sym_BSLASHincludesvg] = ACTIONS(4487), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), + [anon_sym_BSLASHimport] = ACTIONS(4487), + [anon_sym_BSLASHsubimport] = ACTIONS(4487), + [anon_sym_BSLASHinputfrom] = ACTIONS(4487), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), + [anon_sym_BSLASHincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHcaption] = ACTIONS(4487), + [anon_sym_BSLASHcite] = ACTIONS(4487), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCite] = ACTIONS(4487), + [anon_sym_BSLASHnocite] = ACTIONS(4487), + [anon_sym_BSLASHcitet] = ACTIONS(4487), + [anon_sym_BSLASHcitep] = ACTIONS(4487), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteauthor] = ACTIONS(4487), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitetitle] = ACTIONS(4487), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteyear] = ACTIONS(4487), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitedate] = ACTIONS(4487), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteurl] = ACTIONS(4487), + [anon_sym_BSLASHfullcite] = ACTIONS(4487), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), + [anon_sym_BSLASHcitealt] = ACTIONS(4487), + [anon_sym_BSLASHcitealp] = ACTIONS(4487), + [anon_sym_BSLASHcitetext] = ACTIONS(4487), + [anon_sym_BSLASHparencite] = ACTIONS(4487), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHParencite] = ACTIONS(4487), + [anon_sym_BSLASHfootcite] = ACTIONS(4487), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), + [anon_sym_BSLASHtextcite] = ACTIONS(4487), + [anon_sym_BSLASHTextcite] = ACTIONS(4487), + [anon_sym_BSLASHsmartcite] = ACTIONS(4487), + [anon_sym_BSLASHSmartcite] = ACTIONS(4487), + [anon_sym_BSLASHsupercite] = ACTIONS(4487), + [anon_sym_BSLASHautocite] = ACTIONS(4487), + [anon_sym_BSLASHAutocite] = ACTIONS(4487), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHvolcite] = ACTIONS(4487), + [anon_sym_BSLASHVolcite] = ACTIONS(4487), + [anon_sym_BSLASHpvolcite] = ACTIONS(4487), + [anon_sym_BSLASHPvolcite] = ACTIONS(4487), + [anon_sym_BSLASHfvolcite] = ACTIONS(4487), + [anon_sym_BSLASHftvolcite] = ACTIONS(4487), + [anon_sym_BSLASHsvolcite] = ACTIONS(4487), + [anon_sym_BSLASHSvolcite] = ACTIONS(4487), + [anon_sym_BSLASHtvolcite] = ACTIONS(4487), + [anon_sym_BSLASHTvolcite] = ACTIONS(4487), + [anon_sym_BSLASHavolcite] = ACTIONS(4487), + [anon_sym_BSLASHAvolcite] = ACTIONS(4487), + [anon_sym_BSLASHnotecite] = ACTIONS(4487), + [anon_sym_BSLASHNotecite] = ACTIONS(4487), + [anon_sym_BSLASHpnotecite] = ACTIONS(4487), + [anon_sym_BSLASHPnotecite] = ACTIONS(4487), + [anon_sym_BSLASHfnotecite] = ACTIONS(4487), + [anon_sym_BSLASHlabel] = ACTIONS(4487), + [anon_sym_BSLASHref] = ACTIONS(4487), + [anon_sym_BSLASHeqref] = ACTIONS(4487), + [anon_sym_BSLASHvref] = ACTIONS(4487), + [anon_sym_BSLASHVref] = ACTIONS(4487), + [anon_sym_BSLASHautoref] = ACTIONS(4487), + [anon_sym_BSLASHpageref] = ACTIONS(4487), + [anon_sym_BSLASHcref] = ACTIONS(4487), + [anon_sym_BSLASHCref] = ACTIONS(4487), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnameCref] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHlabelcref] = ACTIONS(4487), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCrefrange] = ACTIONS(4487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnewlabel] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), + [anon_sym_BSLASHdef] = ACTIONS(4487), + [anon_sym_BSLASHlet] = ACTIONS(4487), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), + [anon_sym_BSLASHgls] = ACTIONS(4487), + [anon_sym_BSLASHGls] = ACTIONS(4487), + [anon_sym_BSLASHGLS] = ACTIONS(4487), + [anon_sym_BSLASHglspl] = ACTIONS(4487), + [anon_sym_BSLASHGlspl] = ACTIONS(4487), + [anon_sym_BSLASHGLSpl] = ACTIONS(4487), + [anon_sym_BSLASHglsdisp] = ACTIONS(4487), + [anon_sym_BSLASHglslink] = ACTIONS(4487), + [anon_sym_BSLASHglstext] = ACTIONS(4487), + [anon_sym_BSLASHGlstext] = ACTIONS(4487), + [anon_sym_BSLASHGLStext] = ACTIONS(4487), + [anon_sym_BSLASHglsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), + [anon_sym_BSLASHglsplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSplural] = ACTIONS(4487), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHglsname] = ACTIONS(4487), + [anon_sym_BSLASHGlsname] = ACTIONS(4487), + [anon_sym_BSLASHGLSname] = ACTIONS(4487), + [anon_sym_BSLASHglssymbol] = ACTIONS(4487), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), + [anon_sym_BSLASHglsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), + [anon_sym_BSLASHglsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), + [anon_sym_BSLASHglsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), + [anon_sym_BSLASHglsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), + [anon_sym_BSLASHglsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), + [anon_sym_BSLASHnewacronym] = ACTIONS(4487), + [anon_sym_BSLASHacrshort] = ACTIONS(4487), + [anon_sym_BSLASHAcrshort] = ACTIONS(4487), + [anon_sym_BSLASHACRshort] = ACTIONS(4487), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), + [anon_sym_BSLASHacrlong] = ACTIONS(4487), + [anon_sym_BSLASHAcrlong] = ACTIONS(4487), + [anon_sym_BSLASHACRlong] = ACTIONS(4487), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), + [anon_sym_BSLASHacrfull] = ACTIONS(4487), + [anon_sym_BSLASHAcrfull] = ACTIONS(4487), + [anon_sym_BSLASHACRfull] = ACTIONS(4487), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), + [anon_sym_BSLASHacs] = ACTIONS(4487), + [anon_sym_BSLASHAcs] = ACTIONS(4487), + [anon_sym_BSLASHacsp] = ACTIONS(4487), + [anon_sym_BSLASHAcsp] = ACTIONS(4487), + [anon_sym_BSLASHacl] = ACTIONS(4487), + [anon_sym_BSLASHAcl] = ACTIONS(4487), + [anon_sym_BSLASHaclp] = ACTIONS(4487), + [anon_sym_BSLASHAclp] = ACTIONS(4487), + [anon_sym_BSLASHacf] = ACTIONS(4487), + [anon_sym_BSLASHAcf] = ACTIONS(4487), + [anon_sym_BSLASHacfp] = ACTIONS(4487), + [anon_sym_BSLASHAcfp] = ACTIONS(4487), + [anon_sym_BSLASHac] = ACTIONS(4487), + [anon_sym_BSLASHAc] = ACTIONS(4487), + [anon_sym_BSLASHacp] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), + [anon_sym_BSLASHcolor] = ACTIONS(4487), + [anon_sym_BSLASHcolorbox] = ACTIONS(4487), + [anon_sym_BSLASHtextcolor] = ACTIONS(4487), + [anon_sym_BSLASHpagecolor] = ACTIONS(4487), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), + [anon_sym_BSLASHtext] = ACTIONS(4487), + [anon_sym_BSLASHintertext] = ACTIONS(4487), + [anon_sym_shortintertext] = ACTIONS(4487), }, - [497] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [397] = { + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(449), + [aux_sym__section_repeat5] = STATE(449), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [498] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(1940), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1938), - [anon_sym_BSLASHpart] = ACTIONS(1940), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddpart] = ACTIONS(1940), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHchapter] = ACTIONS(1940), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddchap] = ACTIONS(1940), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsection] = ACTIONS(1940), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddsec] = ACTIONS(1940), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHparagraph] = ACTIONS(1940), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1940), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(1938), - [sym_word] = ACTIONS(1940), - [sym_placeholder] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_SLASH] = ACTIONS(1940), - [anon_sym_CARET] = ACTIONS(1940), - [anon_sym__] = ACTIONS(1940), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_COLON] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1938), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1938), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1938), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1938), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1938), - [anon_sym_BSLASHbegin] = ACTIONS(1940), - [anon_sym_BSLASHusepackage] = ACTIONS(1940), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1940), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1940), - [anon_sym_BSLASHinclude] = ACTIONS(1940), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1940), - [anon_sym_BSLASHinput] = ACTIONS(1940), - [anon_sym_BSLASHsubfile] = ACTIONS(1940), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1940), - [anon_sym_BSLASHbibliography] = ACTIONS(1940), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1940), - [anon_sym_BSLASHincludesvg] = ACTIONS(1940), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1940), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1940), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1940), - [anon_sym_BSLASHimport] = ACTIONS(1940), - [anon_sym_BSLASHsubimport] = ACTIONS(1940), - [anon_sym_BSLASHinputfrom] = ACTIONS(1940), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1940), - [anon_sym_BSLASHincludefrom] = ACTIONS(1940), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1940), - [anon_sym_BSLASHcaption] = ACTIONS(1940), - [anon_sym_BSLASHcite] = ACTIONS(1940), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCite] = ACTIONS(1940), - [anon_sym_BSLASHnocite] = ACTIONS(1940), - [anon_sym_BSLASHcitet] = ACTIONS(1940), - [anon_sym_BSLASHcitep] = ACTIONS(1940), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteauthor] = ACTIONS(1940), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1940), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitetitle] = ACTIONS(1940), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteyear] = ACTIONS(1940), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitedate] = ACTIONS(1940), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteurl] = ACTIONS(1940), - [anon_sym_BSLASHfullcite] = ACTIONS(1940), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1940), - [anon_sym_BSLASHcitealt] = ACTIONS(1940), - [anon_sym_BSLASHcitealp] = ACTIONS(1940), - [anon_sym_BSLASHcitetext] = ACTIONS(1940), - [anon_sym_BSLASHparencite] = ACTIONS(1940), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHParencite] = ACTIONS(1940), - [anon_sym_BSLASHfootcite] = ACTIONS(1940), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1940), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1940), - [anon_sym_BSLASHtextcite] = ACTIONS(1940), - [anon_sym_BSLASHTextcite] = ACTIONS(1940), - [anon_sym_BSLASHsmartcite] = ACTIONS(1940), - [anon_sym_BSLASHSmartcite] = ACTIONS(1940), - [anon_sym_BSLASHsupercite] = ACTIONS(1940), - [anon_sym_BSLASHautocite] = ACTIONS(1940), - [anon_sym_BSLASHAutocite] = ACTIONS(1940), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHvolcite] = ACTIONS(1940), - [anon_sym_BSLASHVolcite] = ACTIONS(1940), - [anon_sym_BSLASHpvolcite] = ACTIONS(1940), - [anon_sym_BSLASHPvolcite] = ACTIONS(1940), - [anon_sym_BSLASHfvolcite] = ACTIONS(1940), - [anon_sym_BSLASHftvolcite] = ACTIONS(1940), - [anon_sym_BSLASHsvolcite] = ACTIONS(1940), - [anon_sym_BSLASHSvolcite] = ACTIONS(1940), - [anon_sym_BSLASHtvolcite] = ACTIONS(1940), - [anon_sym_BSLASHTvolcite] = ACTIONS(1940), - [anon_sym_BSLASHavolcite] = ACTIONS(1940), - [anon_sym_BSLASHAvolcite] = ACTIONS(1940), - [anon_sym_BSLASHnotecite] = ACTIONS(1940), - [anon_sym_BSLASHNotecite] = ACTIONS(1940), - [anon_sym_BSLASHpnotecite] = ACTIONS(1940), - [anon_sym_BSLASHPnotecite] = ACTIONS(1940), - [anon_sym_BSLASHfnotecite] = ACTIONS(1940), - [anon_sym_BSLASHlabel] = ACTIONS(1940), - [anon_sym_BSLASHref] = ACTIONS(1940), - [anon_sym_BSLASHeqref] = ACTIONS(1940), - [anon_sym_BSLASHvref] = ACTIONS(1940), - [anon_sym_BSLASHVref] = ACTIONS(1940), - [anon_sym_BSLASHautoref] = ACTIONS(1940), - [anon_sym_BSLASHpageref] = ACTIONS(1940), - [anon_sym_BSLASHcref] = ACTIONS(1940), - [anon_sym_BSLASHCref] = ACTIONS(1940), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1938), - [anon_sym_BSLASHnamecref] = ACTIONS(1940), - [anon_sym_BSLASHnameCref] = ACTIONS(1940), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1940), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1940), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1940), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1940), - [anon_sym_BSLASHlabelcref] = ACTIONS(1940), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1940), - [anon_sym_BSLASHcrefrange] = ACTIONS(1940), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCrefrange] = ACTIONS(1940), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1938), - [anon_sym_BSLASHnewlabel] = ACTIONS(1940), - [anon_sym_BSLASHnewcommand] = ACTIONS(1940), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1940), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1940), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1940), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1938), - [anon_sym_BSLASHdef] = ACTIONS(1940), - [anon_sym_BSLASHlet] = ACTIONS(1940), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1940), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1940), - [anon_sym_BSLASHgls] = ACTIONS(1940), - [anon_sym_BSLASHGls] = ACTIONS(1940), - [anon_sym_BSLASHGLS] = ACTIONS(1940), - [anon_sym_BSLASHglspl] = ACTIONS(1940), - [anon_sym_BSLASHGlspl] = ACTIONS(1940), - [anon_sym_BSLASHGLSpl] = ACTIONS(1940), - [anon_sym_BSLASHglsdisp] = ACTIONS(1940), - [anon_sym_BSLASHglslink] = ACTIONS(1940), - [anon_sym_BSLASHglstext] = ACTIONS(1940), - [anon_sym_BSLASHGlstext] = ACTIONS(1940), - [anon_sym_BSLASHGLStext] = ACTIONS(1940), - [anon_sym_BSLASHglsfirst] = ACTIONS(1940), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1940), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1940), - [anon_sym_BSLASHglsplural] = ACTIONS(1940), - [anon_sym_BSLASHGlsplural] = ACTIONS(1940), - [anon_sym_BSLASHGLSplural] = ACTIONS(1940), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHglsname] = ACTIONS(1940), - [anon_sym_BSLASHGlsname] = ACTIONS(1940), - [anon_sym_BSLASHGLSname] = ACTIONS(1940), - [anon_sym_BSLASHglssymbol] = ACTIONS(1940), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1940), - [anon_sym_BSLASHglsdesc] = ACTIONS(1940), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1940), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1940), - [anon_sym_BSLASHglsuseri] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1940), - [anon_sym_BSLASHglsuserii] = ACTIONS(1940), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1940), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1940), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1940), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1940), - [anon_sym_BSLASHglsuserv] = ACTIONS(1940), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1940), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1940), - [anon_sym_BSLASHglsuservi] = ACTIONS(1940), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1940), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1940), - [anon_sym_BSLASHnewacronym] = ACTIONS(1940), - [anon_sym_BSLASHacrshort] = ACTIONS(1940), - [anon_sym_BSLASHAcrshort] = ACTIONS(1940), - [anon_sym_BSLASHACRshort] = ACTIONS(1940), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1940), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1940), - [anon_sym_BSLASHacrlong] = ACTIONS(1940), - [anon_sym_BSLASHAcrlong] = ACTIONS(1940), - [anon_sym_BSLASHACRlong] = ACTIONS(1940), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1940), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1940), - [anon_sym_BSLASHacrfull] = ACTIONS(1940), - [anon_sym_BSLASHAcrfull] = ACTIONS(1940), - [anon_sym_BSLASHACRfull] = ACTIONS(1940), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1940), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1940), - [anon_sym_BSLASHacs] = ACTIONS(1940), - [anon_sym_BSLASHAcs] = ACTIONS(1940), - [anon_sym_BSLASHacsp] = ACTIONS(1940), - [anon_sym_BSLASHAcsp] = ACTIONS(1940), - [anon_sym_BSLASHacl] = ACTIONS(1940), - [anon_sym_BSLASHAcl] = ACTIONS(1940), - [anon_sym_BSLASHaclp] = ACTIONS(1940), - [anon_sym_BSLASHAclp] = ACTIONS(1940), - [anon_sym_BSLASHacf] = ACTIONS(1940), - [anon_sym_BSLASHAcf] = ACTIONS(1940), - [anon_sym_BSLASHacfp] = ACTIONS(1940), - [anon_sym_BSLASHAcfp] = ACTIONS(1940), - [anon_sym_BSLASHac] = ACTIONS(1940), - [anon_sym_BSLASHAc] = ACTIONS(1940), - [anon_sym_BSLASHacp] = ACTIONS(1940), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1940), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1940), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1940), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1940), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1940), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1940), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1940), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1940), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1940), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1940), - [anon_sym_BSLASHcolor] = ACTIONS(1940), - [anon_sym_BSLASHcolorbox] = ACTIONS(1940), - [anon_sym_BSLASHtextcolor] = ACTIONS(1940), - [anon_sym_BSLASHpagecolor] = ACTIONS(1940), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1940), + [398] = { + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(451), + [aux_sym__section_repeat4] = STATE(451), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [499] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(516), - [aux_sym__section_repeat6] = STATE(516), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1898), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHitem] = ACTIONS(1898), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), + [399] = { + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(399), + [aux_sym__section_repeat2] = STATE(399), + [sym_command_name] = ACTIONS(4555), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_RBRACK] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4553), + [anon_sym_BSLASHpart] = ACTIONS(4555), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4553), + [anon_sym_BSLASHaddpart] = ACTIONS(4555), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4553), + [anon_sym_BSLASHchapter] = ACTIONS(4621), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4624), + [anon_sym_BSLASHaddchap] = ACTIONS(4621), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4624), + [anon_sym_BSLASHsection] = ACTIONS(4555), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHaddsec] = ACTIONS(4555), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubsection] = ACTIONS(4555), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4555), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHparagraph] = ACTIONS(4555), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4555), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4553), + [anon_sym_BSLASHitem] = ACTIONS(4555), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [sym_word] = ACTIONS(4555), + [sym_placeholder] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4555), + [anon_sym__] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_SQUOTE] = ACTIONS(4555), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4553), + [anon_sym_DOLLAR] = ACTIONS(4555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4553), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4553), + [anon_sym_BSLASHbegin] = ACTIONS(4555), + [anon_sym_BSLASHend] = ACTIONS(4555), + [anon_sym_BSLASHusepackage] = ACTIONS(4555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4555), + [anon_sym_BSLASHinclude] = ACTIONS(4555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4555), + [anon_sym_BSLASHinput] = ACTIONS(4555), + [anon_sym_BSLASHsubfile] = ACTIONS(4555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4555), + [anon_sym_BSLASHbibliography] = ACTIONS(4555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4555), + [anon_sym_BSLASHincludesvg] = ACTIONS(4555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4555), + [anon_sym_BSLASHimport] = ACTIONS(4555), + [anon_sym_BSLASHsubimport] = ACTIONS(4555), + [anon_sym_BSLASHinputfrom] = ACTIONS(4555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), + [anon_sym_BSLASHincludefrom] = ACTIONS(4555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), + [anon_sym_BSLASHcaption] = ACTIONS(4555), + [anon_sym_BSLASHcite] = ACTIONS(4555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCite] = ACTIONS(4555), + [anon_sym_BSLASHnocite] = ACTIONS(4555), + [anon_sym_BSLASHcitet] = ACTIONS(4555), + [anon_sym_BSLASHcitep] = ACTIONS(4555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteauthor] = ACTIONS(4555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitetitle] = ACTIONS(4555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteyear] = ACTIONS(4555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitedate] = ACTIONS(4555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteurl] = ACTIONS(4555), + [anon_sym_BSLASHfullcite] = ACTIONS(4555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4555), + [anon_sym_BSLASHcitealt] = ACTIONS(4555), + [anon_sym_BSLASHcitealp] = ACTIONS(4555), + [anon_sym_BSLASHcitetext] = ACTIONS(4555), + [anon_sym_BSLASHparencite] = ACTIONS(4555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHParencite] = ACTIONS(4555), + [anon_sym_BSLASHfootcite] = ACTIONS(4555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4555), + [anon_sym_BSLASHtextcite] = ACTIONS(4555), + [anon_sym_BSLASHTextcite] = ACTIONS(4555), + [anon_sym_BSLASHsmartcite] = ACTIONS(4555), + [anon_sym_BSLASHSmartcite] = ACTIONS(4555), + [anon_sym_BSLASHsupercite] = ACTIONS(4555), + [anon_sym_BSLASHautocite] = ACTIONS(4555), + [anon_sym_BSLASHAutocite] = ACTIONS(4555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHvolcite] = ACTIONS(4555), + [anon_sym_BSLASHVolcite] = ACTIONS(4555), + [anon_sym_BSLASHpvolcite] = ACTIONS(4555), + [anon_sym_BSLASHPvolcite] = ACTIONS(4555), + [anon_sym_BSLASHfvolcite] = ACTIONS(4555), + [anon_sym_BSLASHftvolcite] = ACTIONS(4555), + [anon_sym_BSLASHsvolcite] = ACTIONS(4555), + [anon_sym_BSLASHSvolcite] = ACTIONS(4555), + [anon_sym_BSLASHtvolcite] = ACTIONS(4555), + [anon_sym_BSLASHTvolcite] = ACTIONS(4555), + [anon_sym_BSLASHavolcite] = ACTIONS(4555), + [anon_sym_BSLASHAvolcite] = ACTIONS(4555), + [anon_sym_BSLASHnotecite] = ACTIONS(4555), + [anon_sym_BSLASHNotecite] = ACTIONS(4555), + [anon_sym_BSLASHpnotecite] = ACTIONS(4555), + [anon_sym_BSLASHPnotecite] = ACTIONS(4555), + [anon_sym_BSLASHfnotecite] = ACTIONS(4555), + [anon_sym_BSLASHlabel] = ACTIONS(4555), + [anon_sym_BSLASHref] = ACTIONS(4555), + [anon_sym_BSLASHeqref] = ACTIONS(4555), + [anon_sym_BSLASHvref] = ACTIONS(4555), + [anon_sym_BSLASHVref] = ACTIONS(4555), + [anon_sym_BSLASHautoref] = ACTIONS(4555), + [anon_sym_BSLASHpageref] = ACTIONS(4555), + [anon_sym_BSLASHcref] = ACTIONS(4555), + [anon_sym_BSLASHCref] = ACTIONS(4555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4553), + [anon_sym_BSLASHnamecref] = ACTIONS(4555), + [anon_sym_BSLASHnameCref] = ACTIONS(4555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4555), + [anon_sym_BSLASHlabelcref] = ACTIONS(4555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4555), + [anon_sym_BSLASHcrefrange] = ACTIONS(4555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCrefrange] = ACTIONS(4555), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4553), + [anon_sym_BSLASHnewlabel] = ACTIONS(4555), + [anon_sym_BSLASHnewcommand] = ACTIONS(4555), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4555), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4555), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4553), + [anon_sym_BSLASHdef] = ACTIONS(4555), + [anon_sym_BSLASHlet] = ACTIONS(4555), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4555), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4555), + [anon_sym_BSLASHgls] = ACTIONS(4555), + [anon_sym_BSLASHGls] = ACTIONS(4555), + [anon_sym_BSLASHGLS] = ACTIONS(4555), + [anon_sym_BSLASHglspl] = ACTIONS(4555), + [anon_sym_BSLASHGlspl] = ACTIONS(4555), + [anon_sym_BSLASHGLSpl] = ACTIONS(4555), + [anon_sym_BSLASHglsdisp] = ACTIONS(4555), + [anon_sym_BSLASHglslink] = ACTIONS(4555), + [anon_sym_BSLASHglstext] = ACTIONS(4555), + [anon_sym_BSLASHGlstext] = ACTIONS(4555), + [anon_sym_BSLASHGLStext] = ACTIONS(4555), + [anon_sym_BSLASHglsfirst] = ACTIONS(4555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4555), + [anon_sym_BSLASHglsplural] = ACTIONS(4555), + [anon_sym_BSLASHGlsplural] = ACTIONS(4555), + [anon_sym_BSLASHGLSplural] = ACTIONS(4555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHglsname] = ACTIONS(4555), + [anon_sym_BSLASHGlsname] = ACTIONS(4555), + [anon_sym_BSLASHGLSname] = ACTIONS(4555), + [anon_sym_BSLASHglssymbol] = ACTIONS(4555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4555), + [anon_sym_BSLASHglsdesc] = ACTIONS(4555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4555), + [anon_sym_BSLASHglsuseri] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4555), + [anon_sym_BSLASHglsuserii] = ACTIONS(4555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4555), + [anon_sym_BSLASHglsuserv] = ACTIONS(4555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4555), + [anon_sym_BSLASHglsuservi] = ACTIONS(4555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4555), + [anon_sym_BSLASHnewacronym] = ACTIONS(4555), + [anon_sym_BSLASHacrshort] = ACTIONS(4555), + [anon_sym_BSLASHAcrshort] = ACTIONS(4555), + [anon_sym_BSLASHACRshort] = ACTIONS(4555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4555), + [anon_sym_BSLASHacrlong] = ACTIONS(4555), + [anon_sym_BSLASHAcrlong] = ACTIONS(4555), + [anon_sym_BSLASHACRlong] = ACTIONS(4555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4555), + [anon_sym_BSLASHacrfull] = ACTIONS(4555), + [anon_sym_BSLASHAcrfull] = ACTIONS(4555), + [anon_sym_BSLASHACRfull] = ACTIONS(4555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4555), + [anon_sym_BSLASHacs] = ACTIONS(4555), + [anon_sym_BSLASHAcs] = ACTIONS(4555), + [anon_sym_BSLASHacsp] = ACTIONS(4555), + [anon_sym_BSLASHAcsp] = ACTIONS(4555), + [anon_sym_BSLASHacl] = ACTIONS(4555), + [anon_sym_BSLASHAcl] = ACTIONS(4555), + [anon_sym_BSLASHaclp] = ACTIONS(4555), + [anon_sym_BSLASHAclp] = ACTIONS(4555), + [anon_sym_BSLASHacf] = ACTIONS(4555), + [anon_sym_BSLASHAcf] = ACTIONS(4555), + [anon_sym_BSLASHacfp] = ACTIONS(4555), + [anon_sym_BSLASHAcfp] = ACTIONS(4555), + [anon_sym_BSLASHac] = ACTIONS(4555), + [anon_sym_BSLASHAc] = ACTIONS(4555), + [anon_sym_BSLASHacp] = ACTIONS(4555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4555), + [anon_sym_BSLASHcolor] = ACTIONS(4555), + [anon_sym_BSLASHcolorbox] = ACTIONS(4555), + [anon_sym_BSLASHtextcolor] = ACTIONS(4555), + [anon_sym_BSLASHpagecolor] = ACTIONS(4555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4555), + [anon_sym_BSLASHtext] = ACTIONS(4555), + [anon_sym_BSLASHintertext] = ACTIONS(4555), + [anon_sym_shortintertext] = ACTIONS(4555), }, - [500] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(1898), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(1898), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), + [400] = { + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(456), + [aux_sym__section_repeat3] = STATE(456), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [501] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(1898), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1898), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), + [401] = { + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(462), + [aux_sym__section_repeat2] = STATE(462), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [502] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(1922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1922), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(1920), - [sym_word] = ACTIONS(1922), - [sym_placeholder] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_SLASH] = ACTIONS(1922), - [anon_sym_CARET] = ACTIONS(1922), - [anon_sym__] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_COLON] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1920), - [anon_sym_BSLASHbegin] = ACTIONS(1922), - [anon_sym_BSLASHusepackage] = ACTIONS(1922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1922), - [anon_sym_BSLASHinclude] = ACTIONS(1922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1922), - [anon_sym_BSLASHinput] = ACTIONS(1922), - [anon_sym_BSLASHsubfile] = ACTIONS(1922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1922), - [anon_sym_BSLASHbibliography] = ACTIONS(1922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1922), - [anon_sym_BSLASHincludesvg] = ACTIONS(1922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1922), - [anon_sym_BSLASHimport] = ACTIONS(1922), - [anon_sym_BSLASHsubimport] = ACTIONS(1922), - [anon_sym_BSLASHinputfrom] = ACTIONS(1922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1922), - [anon_sym_BSLASHincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHcaption] = ACTIONS(1922), - [anon_sym_BSLASHcite] = ACTIONS(1922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCite] = ACTIONS(1922), - [anon_sym_BSLASHnocite] = ACTIONS(1922), - [anon_sym_BSLASHcitet] = ACTIONS(1922), - [anon_sym_BSLASHcitep] = ACTIONS(1922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteauthor] = ACTIONS(1922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitetitle] = ACTIONS(1922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteyear] = ACTIONS(1922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitedate] = ACTIONS(1922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteurl] = ACTIONS(1922), - [anon_sym_BSLASHfullcite] = ACTIONS(1922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1922), - [anon_sym_BSLASHcitealt] = ACTIONS(1922), - [anon_sym_BSLASHcitealp] = ACTIONS(1922), - [anon_sym_BSLASHcitetext] = ACTIONS(1922), - [anon_sym_BSLASHparencite] = ACTIONS(1922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHParencite] = ACTIONS(1922), - [anon_sym_BSLASHfootcite] = ACTIONS(1922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1922), - [anon_sym_BSLASHtextcite] = ACTIONS(1922), - [anon_sym_BSLASHTextcite] = ACTIONS(1922), - [anon_sym_BSLASHsmartcite] = ACTIONS(1922), - [anon_sym_BSLASHSmartcite] = ACTIONS(1922), - [anon_sym_BSLASHsupercite] = ACTIONS(1922), - [anon_sym_BSLASHautocite] = ACTIONS(1922), - [anon_sym_BSLASHAutocite] = ACTIONS(1922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHvolcite] = ACTIONS(1922), - [anon_sym_BSLASHVolcite] = ACTIONS(1922), - [anon_sym_BSLASHpvolcite] = ACTIONS(1922), - [anon_sym_BSLASHPvolcite] = ACTIONS(1922), - [anon_sym_BSLASHfvolcite] = ACTIONS(1922), - [anon_sym_BSLASHftvolcite] = ACTIONS(1922), - [anon_sym_BSLASHsvolcite] = ACTIONS(1922), - [anon_sym_BSLASHSvolcite] = ACTIONS(1922), - [anon_sym_BSLASHtvolcite] = ACTIONS(1922), - [anon_sym_BSLASHTvolcite] = ACTIONS(1922), - [anon_sym_BSLASHavolcite] = ACTIONS(1922), - [anon_sym_BSLASHAvolcite] = ACTIONS(1922), - [anon_sym_BSLASHnotecite] = ACTIONS(1922), - [anon_sym_BSLASHNotecite] = ACTIONS(1922), - [anon_sym_BSLASHpnotecite] = ACTIONS(1922), - [anon_sym_BSLASHPnotecite] = ACTIONS(1922), - [anon_sym_BSLASHfnotecite] = ACTIONS(1922), - [anon_sym_BSLASHlabel] = ACTIONS(1922), - [anon_sym_BSLASHref] = ACTIONS(1922), - [anon_sym_BSLASHeqref] = ACTIONS(1922), - [anon_sym_BSLASHvref] = ACTIONS(1922), - [anon_sym_BSLASHVref] = ACTIONS(1922), - [anon_sym_BSLASHautoref] = ACTIONS(1922), - [anon_sym_BSLASHpageref] = ACTIONS(1922), - [anon_sym_BSLASHcref] = ACTIONS(1922), - [anon_sym_BSLASHCref] = ACTIONS(1922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnameCref] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHlabelcref] = ACTIONS(1922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCrefrange] = ACTIONS(1922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnewlabel] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1920), - [anon_sym_BSLASHdef] = ACTIONS(1922), - [anon_sym_BSLASHlet] = ACTIONS(1922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1922), - [anon_sym_BSLASHgls] = ACTIONS(1922), - [anon_sym_BSLASHGls] = ACTIONS(1922), - [anon_sym_BSLASHGLS] = ACTIONS(1922), - [anon_sym_BSLASHglspl] = ACTIONS(1922), - [anon_sym_BSLASHGlspl] = ACTIONS(1922), - [anon_sym_BSLASHGLSpl] = ACTIONS(1922), - [anon_sym_BSLASHglsdisp] = ACTIONS(1922), - [anon_sym_BSLASHglslink] = ACTIONS(1922), - [anon_sym_BSLASHglstext] = ACTIONS(1922), - [anon_sym_BSLASHGlstext] = ACTIONS(1922), - [anon_sym_BSLASHGLStext] = ACTIONS(1922), - [anon_sym_BSLASHglsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1922), - [anon_sym_BSLASHglsplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSplural] = ACTIONS(1922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHglsname] = ACTIONS(1922), - [anon_sym_BSLASHGlsname] = ACTIONS(1922), - [anon_sym_BSLASHGLSname] = ACTIONS(1922), - [anon_sym_BSLASHglssymbol] = ACTIONS(1922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1922), - [anon_sym_BSLASHglsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1922), - [anon_sym_BSLASHglsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1922), - [anon_sym_BSLASHglsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1922), - [anon_sym_BSLASHglsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1922), - [anon_sym_BSLASHglsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1922), - [anon_sym_BSLASHnewacronym] = ACTIONS(1922), - [anon_sym_BSLASHacrshort] = ACTIONS(1922), - [anon_sym_BSLASHAcrshort] = ACTIONS(1922), - [anon_sym_BSLASHACRshort] = ACTIONS(1922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1922), - [anon_sym_BSLASHacrlong] = ACTIONS(1922), - [anon_sym_BSLASHAcrlong] = ACTIONS(1922), - [anon_sym_BSLASHACRlong] = ACTIONS(1922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1922), - [anon_sym_BSLASHacrfull] = ACTIONS(1922), - [anon_sym_BSLASHAcrfull] = ACTIONS(1922), - [anon_sym_BSLASHACRfull] = ACTIONS(1922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1922), - [anon_sym_BSLASHacs] = ACTIONS(1922), - [anon_sym_BSLASHAcs] = ACTIONS(1922), - [anon_sym_BSLASHacsp] = ACTIONS(1922), - [anon_sym_BSLASHAcsp] = ACTIONS(1922), - [anon_sym_BSLASHacl] = ACTIONS(1922), - [anon_sym_BSLASHAcl] = ACTIONS(1922), - [anon_sym_BSLASHaclp] = ACTIONS(1922), - [anon_sym_BSLASHAclp] = ACTIONS(1922), - [anon_sym_BSLASHacf] = ACTIONS(1922), - [anon_sym_BSLASHAcf] = ACTIONS(1922), - [anon_sym_BSLASHacfp] = ACTIONS(1922), - [anon_sym_BSLASHAcfp] = ACTIONS(1922), - [anon_sym_BSLASHac] = ACTIONS(1922), - [anon_sym_BSLASHAc] = ACTIONS(1922), - [anon_sym_BSLASHacp] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1922), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1922), - [anon_sym_BSLASHcolor] = ACTIONS(1922), - [anon_sym_BSLASHcolorbox] = ACTIONS(1922), - [anon_sym_BSLASHtextcolor] = ACTIONS(1922), - [anon_sym_BSLASHpagecolor] = ACTIONS(1922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1922), + [402] = { + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(628), + [aux_sym__section_repeat1] = STATE(628), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(651), + [anon_sym_BSLASHpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHaddpart] = ACTIONS(651), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(653), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [503] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(1922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(1922), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [sym_word] = ACTIONS(1922), - [sym_placeholder] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_SLASH] = ACTIONS(1922), - [anon_sym_CARET] = ACTIONS(1922), - [anon_sym__] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_COLON] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1920), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1920), - [anon_sym_BSLASHbegin] = ACTIONS(1922), - [anon_sym_BSLASHusepackage] = ACTIONS(1922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1922), - [anon_sym_BSLASHinclude] = ACTIONS(1922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1922), - [anon_sym_BSLASHinput] = ACTIONS(1922), - [anon_sym_BSLASHsubfile] = ACTIONS(1922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1922), - [anon_sym_BSLASHbibliography] = ACTIONS(1922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1922), - [anon_sym_BSLASHincludesvg] = ACTIONS(1922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1922), - [anon_sym_BSLASHimport] = ACTIONS(1922), - [anon_sym_BSLASHsubimport] = ACTIONS(1922), - [anon_sym_BSLASHinputfrom] = ACTIONS(1922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1922), - [anon_sym_BSLASHincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHcaption] = ACTIONS(1922), - [anon_sym_BSLASHcite] = ACTIONS(1922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCite] = ACTIONS(1922), - [anon_sym_BSLASHnocite] = ACTIONS(1922), - [anon_sym_BSLASHcitet] = ACTIONS(1922), - [anon_sym_BSLASHcitep] = ACTIONS(1922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteauthor] = ACTIONS(1922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitetitle] = ACTIONS(1922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteyear] = ACTIONS(1922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitedate] = ACTIONS(1922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteurl] = ACTIONS(1922), - [anon_sym_BSLASHfullcite] = ACTIONS(1922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1922), - [anon_sym_BSLASHcitealt] = ACTIONS(1922), - [anon_sym_BSLASHcitealp] = ACTIONS(1922), - [anon_sym_BSLASHcitetext] = ACTIONS(1922), - [anon_sym_BSLASHparencite] = ACTIONS(1922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHParencite] = ACTIONS(1922), - [anon_sym_BSLASHfootcite] = ACTIONS(1922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1922), - [anon_sym_BSLASHtextcite] = ACTIONS(1922), - [anon_sym_BSLASHTextcite] = ACTIONS(1922), - [anon_sym_BSLASHsmartcite] = ACTIONS(1922), - [anon_sym_BSLASHSmartcite] = ACTIONS(1922), - [anon_sym_BSLASHsupercite] = ACTIONS(1922), - [anon_sym_BSLASHautocite] = ACTIONS(1922), - [anon_sym_BSLASHAutocite] = ACTIONS(1922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHvolcite] = ACTIONS(1922), - [anon_sym_BSLASHVolcite] = ACTIONS(1922), - [anon_sym_BSLASHpvolcite] = ACTIONS(1922), - [anon_sym_BSLASHPvolcite] = ACTIONS(1922), - [anon_sym_BSLASHfvolcite] = ACTIONS(1922), - [anon_sym_BSLASHftvolcite] = ACTIONS(1922), - [anon_sym_BSLASHsvolcite] = ACTIONS(1922), - [anon_sym_BSLASHSvolcite] = ACTIONS(1922), - [anon_sym_BSLASHtvolcite] = ACTIONS(1922), - [anon_sym_BSLASHTvolcite] = ACTIONS(1922), - [anon_sym_BSLASHavolcite] = ACTIONS(1922), - [anon_sym_BSLASHAvolcite] = ACTIONS(1922), - [anon_sym_BSLASHnotecite] = ACTIONS(1922), - [anon_sym_BSLASHNotecite] = ACTIONS(1922), - [anon_sym_BSLASHpnotecite] = ACTIONS(1922), - [anon_sym_BSLASHPnotecite] = ACTIONS(1922), - [anon_sym_BSLASHfnotecite] = ACTIONS(1922), - [anon_sym_BSLASHlabel] = ACTIONS(1922), - [anon_sym_BSLASHref] = ACTIONS(1922), - [anon_sym_BSLASHeqref] = ACTIONS(1922), - [anon_sym_BSLASHvref] = ACTIONS(1922), - [anon_sym_BSLASHVref] = ACTIONS(1922), - [anon_sym_BSLASHautoref] = ACTIONS(1922), - [anon_sym_BSLASHpageref] = ACTIONS(1922), - [anon_sym_BSLASHcref] = ACTIONS(1922), - [anon_sym_BSLASHCref] = ACTIONS(1922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnameCref] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHlabelcref] = ACTIONS(1922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCrefrange] = ACTIONS(1922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnewlabel] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1920), - [anon_sym_BSLASHdef] = ACTIONS(1922), - [anon_sym_BSLASHlet] = ACTIONS(1922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1922), - [anon_sym_BSLASHgls] = ACTIONS(1922), - [anon_sym_BSLASHGls] = ACTIONS(1922), - [anon_sym_BSLASHGLS] = ACTIONS(1922), - [anon_sym_BSLASHglspl] = ACTIONS(1922), - [anon_sym_BSLASHGlspl] = ACTIONS(1922), - [anon_sym_BSLASHGLSpl] = ACTIONS(1922), - [anon_sym_BSLASHglsdisp] = ACTIONS(1922), - [anon_sym_BSLASHglslink] = ACTIONS(1922), - [anon_sym_BSLASHglstext] = ACTIONS(1922), - [anon_sym_BSLASHGlstext] = ACTIONS(1922), - [anon_sym_BSLASHGLStext] = ACTIONS(1922), - [anon_sym_BSLASHglsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1922), - [anon_sym_BSLASHglsplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSplural] = ACTIONS(1922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHglsname] = ACTIONS(1922), - [anon_sym_BSLASHGlsname] = ACTIONS(1922), - [anon_sym_BSLASHGLSname] = ACTIONS(1922), - [anon_sym_BSLASHglssymbol] = ACTIONS(1922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1922), - [anon_sym_BSLASHglsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1922), - [anon_sym_BSLASHglsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1922), - [anon_sym_BSLASHglsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1922), - [anon_sym_BSLASHglsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1922), - [anon_sym_BSLASHglsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1922), - [anon_sym_BSLASHnewacronym] = ACTIONS(1922), - [anon_sym_BSLASHacrshort] = ACTIONS(1922), - [anon_sym_BSLASHAcrshort] = ACTIONS(1922), - [anon_sym_BSLASHACRshort] = ACTIONS(1922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1922), - [anon_sym_BSLASHacrlong] = ACTIONS(1922), - [anon_sym_BSLASHAcrlong] = ACTIONS(1922), - [anon_sym_BSLASHACRlong] = ACTIONS(1922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1922), - [anon_sym_BSLASHacrfull] = ACTIONS(1922), - [anon_sym_BSLASHAcrfull] = ACTIONS(1922), - [anon_sym_BSLASHACRfull] = ACTIONS(1922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1922), - [anon_sym_BSLASHacs] = ACTIONS(1922), - [anon_sym_BSLASHAcs] = ACTIONS(1922), - [anon_sym_BSLASHacsp] = ACTIONS(1922), - [anon_sym_BSLASHAcsp] = ACTIONS(1922), - [anon_sym_BSLASHacl] = ACTIONS(1922), - [anon_sym_BSLASHAcl] = ACTIONS(1922), - [anon_sym_BSLASHaclp] = ACTIONS(1922), - [anon_sym_BSLASHAclp] = ACTIONS(1922), - [anon_sym_BSLASHacf] = ACTIONS(1922), - [anon_sym_BSLASHAcf] = ACTIONS(1922), - [anon_sym_BSLASHacfp] = ACTIONS(1922), - [anon_sym_BSLASHAcfp] = ACTIONS(1922), - [anon_sym_BSLASHac] = ACTIONS(1922), - [anon_sym_BSLASHAc] = ACTIONS(1922), - [anon_sym_BSLASHacp] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1922), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1922), - [anon_sym_BSLASHcolor] = ACTIONS(1922), - [anon_sym_BSLASHcolorbox] = ACTIONS(1922), - [anon_sym_BSLASHtextcolor] = ACTIONS(1922), - [anon_sym_BSLASHpagecolor] = ACTIONS(1922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1922), + [403] = { + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(630), + [aux_sym__section_repeat2] = STATE(630), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [504] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(1922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1922), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(1920), - [sym_word] = ACTIONS(1922), - [sym_placeholder] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_SLASH] = ACTIONS(1922), - [anon_sym_CARET] = ACTIONS(1922), - [anon_sym__] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_COLON] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1920), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1920), - [anon_sym_BSLASHbegin] = ACTIONS(1922), - [anon_sym_BSLASHusepackage] = ACTIONS(1922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1922), - [anon_sym_BSLASHinclude] = ACTIONS(1922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1922), - [anon_sym_BSLASHinput] = ACTIONS(1922), - [anon_sym_BSLASHsubfile] = ACTIONS(1922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1922), - [anon_sym_BSLASHbibliography] = ACTIONS(1922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1922), - [anon_sym_BSLASHincludesvg] = ACTIONS(1922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1922), - [anon_sym_BSLASHimport] = ACTIONS(1922), - [anon_sym_BSLASHsubimport] = ACTIONS(1922), - [anon_sym_BSLASHinputfrom] = ACTIONS(1922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1922), - [anon_sym_BSLASHincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHcaption] = ACTIONS(1922), - [anon_sym_BSLASHcite] = ACTIONS(1922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCite] = ACTIONS(1922), - [anon_sym_BSLASHnocite] = ACTIONS(1922), - [anon_sym_BSLASHcitet] = ACTIONS(1922), - [anon_sym_BSLASHcitep] = ACTIONS(1922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteauthor] = ACTIONS(1922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitetitle] = ACTIONS(1922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteyear] = ACTIONS(1922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitedate] = ACTIONS(1922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteurl] = ACTIONS(1922), - [anon_sym_BSLASHfullcite] = ACTIONS(1922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1922), - [anon_sym_BSLASHcitealt] = ACTIONS(1922), - [anon_sym_BSLASHcitealp] = ACTIONS(1922), - [anon_sym_BSLASHcitetext] = ACTIONS(1922), - [anon_sym_BSLASHparencite] = ACTIONS(1922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHParencite] = ACTIONS(1922), - [anon_sym_BSLASHfootcite] = ACTIONS(1922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1922), - [anon_sym_BSLASHtextcite] = ACTIONS(1922), - [anon_sym_BSLASHTextcite] = ACTIONS(1922), - [anon_sym_BSLASHsmartcite] = ACTIONS(1922), - [anon_sym_BSLASHSmartcite] = ACTIONS(1922), - [anon_sym_BSLASHsupercite] = ACTIONS(1922), - [anon_sym_BSLASHautocite] = ACTIONS(1922), - [anon_sym_BSLASHAutocite] = ACTIONS(1922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHvolcite] = ACTIONS(1922), - [anon_sym_BSLASHVolcite] = ACTIONS(1922), - [anon_sym_BSLASHpvolcite] = ACTIONS(1922), - [anon_sym_BSLASHPvolcite] = ACTIONS(1922), - [anon_sym_BSLASHfvolcite] = ACTIONS(1922), - [anon_sym_BSLASHftvolcite] = ACTIONS(1922), - [anon_sym_BSLASHsvolcite] = ACTIONS(1922), - [anon_sym_BSLASHSvolcite] = ACTIONS(1922), - [anon_sym_BSLASHtvolcite] = ACTIONS(1922), - [anon_sym_BSLASHTvolcite] = ACTIONS(1922), - [anon_sym_BSLASHavolcite] = ACTIONS(1922), - [anon_sym_BSLASHAvolcite] = ACTIONS(1922), - [anon_sym_BSLASHnotecite] = ACTIONS(1922), - [anon_sym_BSLASHNotecite] = ACTIONS(1922), - [anon_sym_BSLASHpnotecite] = ACTIONS(1922), - [anon_sym_BSLASHPnotecite] = ACTIONS(1922), - [anon_sym_BSLASHfnotecite] = ACTIONS(1922), - [anon_sym_BSLASHlabel] = ACTIONS(1922), - [anon_sym_BSLASHref] = ACTIONS(1922), - [anon_sym_BSLASHeqref] = ACTIONS(1922), - [anon_sym_BSLASHvref] = ACTIONS(1922), - [anon_sym_BSLASHVref] = ACTIONS(1922), - [anon_sym_BSLASHautoref] = ACTIONS(1922), - [anon_sym_BSLASHpageref] = ACTIONS(1922), - [anon_sym_BSLASHcref] = ACTIONS(1922), - [anon_sym_BSLASHCref] = ACTIONS(1922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnameCref] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHlabelcref] = ACTIONS(1922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCrefrange] = ACTIONS(1922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnewlabel] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1920), - [anon_sym_BSLASHdef] = ACTIONS(1922), - [anon_sym_BSLASHlet] = ACTIONS(1922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1922), - [anon_sym_BSLASHgls] = ACTIONS(1922), - [anon_sym_BSLASHGls] = ACTIONS(1922), - [anon_sym_BSLASHGLS] = ACTIONS(1922), - [anon_sym_BSLASHglspl] = ACTIONS(1922), - [anon_sym_BSLASHGlspl] = ACTIONS(1922), - [anon_sym_BSLASHGLSpl] = ACTIONS(1922), - [anon_sym_BSLASHglsdisp] = ACTIONS(1922), - [anon_sym_BSLASHglslink] = ACTIONS(1922), - [anon_sym_BSLASHglstext] = ACTIONS(1922), - [anon_sym_BSLASHGlstext] = ACTIONS(1922), - [anon_sym_BSLASHGLStext] = ACTIONS(1922), - [anon_sym_BSLASHglsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1922), - [anon_sym_BSLASHglsplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSplural] = ACTIONS(1922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHglsname] = ACTIONS(1922), - [anon_sym_BSLASHGlsname] = ACTIONS(1922), - [anon_sym_BSLASHGLSname] = ACTIONS(1922), - [anon_sym_BSLASHglssymbol] = ACTIONS(1922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1922), - [anon_sym_BSLASHglsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1922), - [anon_sym_BSLASHglsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1922), - [anon_sym_BSLASHglsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1922), - [anon_sym_BSLASHglsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1922), - [anon_sym_BSLASHglsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1922), - [anon_sym_BSLASHnewacronym] = ACTIONS(1922), - [anon_sym_BSLASHacrshort] = ACTIONS(1922), - [anon_sym_BSLASHAcrshort] = ACTIONS(1922), - [anon_sym_BSLASHACRshort] = ACTIONS(1922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1922), - [anon_sym_BSLASHacrlong] = ACTIONS(1922), - [anon_sym_BSLASHAcrlong] = ACTIONS(1922), - [anon_sym_BSLASHACRlong] = ACTIONS(1922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1922), - [anon_sym_BSLASHacrfull] = ACTIONS(1922), - [anon_sym_BSLASHAcrfull] = ACTIONS(1922), - [anon_sym_BSLASHACRfull] = ACTIONS(1922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1922), - [anon_sym_BSLASHacs] = ACTIONS(1922), - [anon_sym_BSLASHAcs] = ACTIONS(1922), - [anon_sym_BSLASHacsp] = ACTIONS(1922), - [anon_sym_BSLASHAcsp] = ACTIONS(1922), - [anon_sym_BSLASHacl] = ACTIONS(1922), - [anon_sym_BSLASHAcl] = ACTIONS(1922), - [anon_sym_BSLASHaclp] = ACTIONS(1922), - [anon_sym_BSLASHAclp] = ACTIONS(1922), - [anon_sym_BSLASHacf] = ACTIONS(1922), - [anon_sym_BSLASHAcf] = ACTIONS(1922), - [anon_sym_BSLASHacfp] = ACTIONS(1922), - [anon_sym_BSLASHAcfp] = ACTIONS(1922), - [anon_sym_BSLASHac] = ACTIONS(1922), - [anon_sym_BSLASHAc] = ACTIONS(1922), - [anon_sym_BSLASHacp] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1922), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1922), - [anon_sym_BSLASHcolor] = ACTIONS(1922), - [anon_sym_BSLASHcolorbox] = ACTIONS(1922), - [anon_sym_BSLASHtextcolor] = ACTIONS(1922), - [anon_sym_BSLASHpagecolor] = ACTIONS(1922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1922), + [404] = { + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(631), + [aux_sym__section_repeat3] = STATE(631), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [505] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(1922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(1922), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [sym_word] = ACTIONS(1922), - [sym_placeholder] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_SLASH] = ACTIONS(1922), - [anon_sym_CARET] = ACTIONS(1922), - [anon_sym__] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_COLON] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1920), - [anon_sym_BSLASHbegin] = ACTIONS(1922), - [anon_sym_BSLASHusepackage] = ACTIONS(1922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1922), - [anon_sym_BSLASHinclude] = ACTIONS(1922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1922), - [anon_sym_BSLASHinput] = ACTIONS(1922), - [anon_sym_BSLASHsubfile] = ACTIONS(1922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1922), - [anon_sym_BSLASHbibliography] = ACTIONS(1922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1922), - [anon_sym_BSLASHincludesvg] = ACTIONS(1922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1922), - [anon_sym_BSLASHimport] = ACTIONS(1922), - [anon_sym_BSLASHsubimport] = ACTIONS(1922), - [anon_sym_BSLASHinputfrom] = ACTIONS(1922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1922), - [anon_sym_BSLASHincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHcaption] = ACTIONS(1922), - [anon_sym_BSLASHcite] = ACTIONS(1922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCite] = ACTIONS(1922), - [anon_sym_BSLASHnocite] = ACTIONS(1922), - [anon_sym_BSLASHcitet] = ACTIONS(1922), - [anon_sym_BSLASHcitep] = ACTIONS(1922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteauthor] = ACTIONS(1922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitetitle] = ACTIONS(1922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteyear] = ACTIONS(1922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitedate] = ACTIONS(1922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteurl] = ACTIONS(1922), - [anon_sym_BSLASHfullcite] = ACTIONS(1922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1922), - [anon_sym_BSLASHcitealt] = ACTIONS(1922), - [anon_sym_BSLASHcitealp] = ACTIONS(1922), - [anon_sym_BSLASHcitetext] = ACTIONS(1922), - [anon_sym_BSLASHparencite] = ACTIONS(1922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHParencite] = ACTIONS(1922), - [anon_sym_BSLASHfootcite] = ACTIONS(1922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1922), - [anon_sym_BSLASHtextcite] = ACTIONS(1922), - [anon_sym_BSLASHTextcite] = ACTIONS(1922), - [anon_sym_BSLASHsmartcite] = ACTIONS(1922), - [anon_sym_BSLASHSmartcite] = ACTIONS(1922), - [anon_sym_BSLASHsupercite] = ACTIONS(1922), - [anon_sym_BSLASHautocite] = ACTIONS(1922), - [anon_sym_BSLASHAutocite] = ACTIONS(1922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHvolcite] = ACTIONS(1922), - [anon_sym_BSLASHVolcite] = ACTIONS(1922), - [anon_sym_BSLASHpvolcite] = ACTIONS(1922), - [anon_sym_BSLASHPvolcite] = ACTIONS(1922), - [anon_sym_BSLASHfvolcite] = ACTIONS(1922), - [anon_sym_BSLASHftvolcite] = ACTIONS(1922), - [anon_sym_BSLASHsvolcite] = ACTIONS(1922), - [anon_sym_BSLASHSvolcite] = ACTIONS(1922), - [anon_sym_BSLASHtvolcite] = ACTIONS(1922), - [anon_sym_BSLASHTvolcite] = ACTIONS(1922), - [anon_sym_BSLASHavolcite] = ACTIONS(1922), - [anon_sym_BSLASHAvolcite] = ACTIONS(1922), - [anon_sym_BSLASHnotecite] = ACTIONS(1922), - [anon_sym_BSLASHNotecite] = ACTIONS(1922), - [anon_sym_BSLASHpnotecite] = ACTIONS(1922), - [anon_sym_BSLASHPnotecite] = ACTIONS(1922), - [anon_sym_BSLASHfnotecite] = ACTIONS(1922), - [anon_sym_BSLASHlabel] = ACTIONS(1922), - [anon_sym_BSLASHref] = ACTIONS(1922), - [anon_sym_BSLASHeqref] = ACTIONS(1922), - [anon_sym_BSLASHvref] = ACTIONS(1922), - [anon_sym_BSLASHVref] = ACTIONS(1922), - [anon_sym_BSLASHautoref] = ACTIONS(1922), - [anon_sym_BSLASHpageref] = ACTIONS(1922), - [anon_sym_BSLASHcref] = ACTIONS(1922), - [anon_sym_BSLASHCref] = ACTIONS(1922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnameCref] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHlabelcref] = ACTIONS(1922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCrefrange] = ACTIONS(1922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnewlabel] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1920), - [anon_sym_BSLASHdef] = ACTIONS(1922), - [anon_sym_BSLASHlet] = ACTIONS(1922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1922), - [anon_sym_BSLASHgls] = ACTIONS(1922), - [anon_sym_BSLASHGls] = ACTIONS(1922), - [anon_sym_BSLASHGLS] = ACTIONS(1922), - [anon_sym_BSLASHglspl] = ACTIONS(1922), - [anon_sym_BSLASHGlspl] = ACTIONS(1922), - [anon_sym_BSLASHGLSpl] = ACTIONS(1922), - [anon_sym_BSLASHglsdisp] = ACTIONS(1922), - [anon_sym_BSLASHglslink] = ACTIONS(1922), - [anon_sym_BSLASHglstext] = ACTIONS(1922), - [anon_sym_BSLASHGlstext] = ACTIONS(1922), - [anon_sym_BSLASHGLStext] = ACTIONS(1922), - [anon_sym_BSLASHglsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1922), - [anon_sym_BSLASHglsplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSplural] = ACTIONS(1922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHglsname] = ACTIONS(1922), - [anon_sym_BSLASHGlsname] = ACTIONS(1922), - [anon_sym_BSLASHGLSname] = ACTIONS(1922), - [anon_sym_BSLASHglssymbol] = ACTIONS(1922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1922), - [anon_sym_BSLASHglsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1922), - [anon_sym_BSLASHglsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1922), - [anon_sym_BSLASHglsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1922), - [anon_sym_BSLASHglsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1922), - [anon_sym_BSLASHglsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1922), - [anon_sym_BSLASHnewacronym] = ACTIONS(1922), - [anon_sym_BSLASHacrshort] = ACTIONS(1922), - [anon_sym_BSLASHAcrshort] = ACTIONS(1922), - [anon_sym_BSLASHACRshort] = ACTIONS(1922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1922), - [anon_sym_BSLASHacrlong] = ACTIONS(1922), - [anon_sym_BSLASHAcrlong] = ACTIONS(1922), - [anon_sym_BSLASHACRlong] = ACTIONS(1922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1922), - [anon_sym_BSLASHacrfull] = ACTIONS(1922), - [anon_sym_BSLASHAcrfull] = ACTIONS(1922), - [anon_sym_BSLASHACRfull] = ACTIONS(1922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1922), - [anon_sym_BSLASHacs] = ACTIONS(1922), - [anon_sym_BSLASHAcs] = ACTIONS(1922), - [anon_sym_BSLASHacsp] = ACTIONS(1922), - [anon_sym_BSLASHAcsp] = ACTIONS(1922), - [anon_sym_BSLASHacl] = ACTIONS(1922), - [anon_sym_BSLASHAcl] = ACTIONS(1922), - [anon_sym_BSLASHaclp] = ACTIONS(1922), - [anon_sym_BSLASHAclp] = ACTIONS(1922), - [anon_sym_BSLASHacf] = ACTIONS(1922), - [anon_sym_BSLASHAcf] = ACTIONS(1922), - [anon_sym_BSLASHacfp] = ACTIONS(1922), - [anon_sym_BSLASHAcfp] = ACTIONS(1922), - [anon_sym_BSLASHac] = ACTIONS(1922), - [anon_sym_BSLASHAc] = ACTIONS(1922), - [anon_sym_BSLASHacp] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1922), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1922), - [anon_sym_BSLASHcolor] = ACTIONS(1922), - [anon_sym_BSLASHcolorbox] = ACTIONS(1922), - [anon_sym_BSLASHtextcolor] = ACTIONS(1922), - [anon_sym_BSLASHpagecolor] = ACTIONS(1922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1922), + [405] = { + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(405), + [aux_sym__section_repeat1] = STATE(405), + [sym_command_name] = ACTIONS(4569), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4567), + [anon_sym_RBRACK] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_BSLASHpart] = ACTIONS(4627), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4630), + [anon_sym_BSLASHaddpart] = ACTIONS(4627), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4630), + [anon_sym_BSLASHchapter] = ACTIONS(4569), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4567), + [anon_sym_BSLASHaddchap] = ACTIONS(4569), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsection] = ACTIONS(4569), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHaddsec] = ACTIONS(4569), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubsection] = ACTIONS(4569), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4569), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHparagraph] = ACTIONS(4569), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4569), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4567), + [anon_sym_BSLASHitem] = ACTIONS(4569), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [sym_word] = ACTIONS(4569), + [sym_placeholder] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_STAR] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym__] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_PIPE] = ACTIONS(4569), + [anon_sym_COLON] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4569), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4569), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4567), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4567), + [anon_sym_BSLASHbegin] = ACTIONS(4569), + [anon_sym_BSLASHend] = ACTIONS(4569), + [anon_sym_BSLASHusepackage] = ACTIONS(4569), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4569), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4569), + [anon_sym_BSLASHinclude] = ACTIONS(4569), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4569), + [anon_sym_BSLASHinput] = ACTIONS(4569), + [anon_sym_BSLASHsubfile] = ACTIONS(4569), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4569), + [anon_sym_BSLASHbibliography] = ACTIONS(4569), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4569), + [anon_sym_BSLASHincludesvg] = ACTIONS(4569), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4569), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4569), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4569), + [anon_sym_BSLASHimport] = ACTIONS(4569), + [anon_sym_BSLASHsubimport] = ACTIONS(4569), + [anon_sym_BSLASHinputfrom] = ACTIONS(4569), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4569), + [anon_sym_BSLASHincludefrom] = ACTIONS(4569), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4569), + [anon_sym_BSLASHcaption] = ACTIONS(4569), + [anon_sym_BSLASHcite] = ACTIONS(4569), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCite] = ACTIONS(4569), + [anon_sym_BSLASHnocite] = ACTIONS(4569), + [anon_sym_BSLASHcitet] = ACTIONS(4569), + [anon_sym_BSLASHcitep] = ACTIONS(4569), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteauthor] = ACTIONS(4569), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4569), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitetitle] = ACTIONS(4569), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteyear] = ACTIONS(4569), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitedate] = ACTIONS(4569), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteurl] = ACTIONS(4569), + [anon_sym_BSLASHfullcite] = ACTIONS(4569), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4569), + [anon_sym_BSLASHcitealt] = ACTIONS(4569), + [anon_sym_BSLASHcitealp] = ACTIONS(4569), + [anon_sym_BSLASHcitetext] = ACTIONS(4569), + [anon_sym_BSLASHparencite] = ACTIONS(4569), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHParencite] = ACTIONS(4569), + [anon_sym_BSLASHfootcite] = ACTIONS(4569), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4569), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4569), + [anon_sym_BSLASHtextcite] = ACTIONS(4569), + [anon_sym_BSLASHTextcite] = ACTIONS(4569), + [anon_sym_BSLASHsmartcite] = ACTIONS(4569), + [anon_sym_BSLASHSmartcite] = ACTIONS(4569), + [anon_sym_BSLASHsupercite] = ACTIONS(4569), + [anon_sym_BSLASHautocite] = ACTIONS(4569), + [anon_sym_BSLASHAutocite] = ACTIONS(4569), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHvolcite] = ACTIONS(4569), + [anon_sym_BSLASHVolcite] = ACTIONS(4569), + [anon_sym_BSLASHpvolcite] = ACTIONS(4569), + [anon_sym_BSLASHPvolcite] = ACTIONS(4569), + [anon_sym_BSLASHfvolcite] = ACTIONS(4569), + [anon_sym_BSLASHftvolcite] = ACTIONS(4569), + [anon_sym_BSLASHsvolcite] = ACTIONS(4569), + [anon_sym_BSLASHSvolcite] = ACTIONS(4569), + [anon_sym_BSLASHtvolcite] = ACTIONS(4569), + [anon_sym_BSLASHTvolcite] = ACTIONS(4569), + [anon_sym_BSLASHavolcite] = ACTIONS(4569), + [anon_sym_BSLASHAvolcite] = ACTIONS(4569), + [anon_sym_BSLASHnotecite] = ACTIONS(4569), + [anon_sym_BSLASHNotecite] = ACTIONS(4569), + [anon_sym_BSLASHpnotecite] = ACTIONS(4569), + [anon_sym_BSLASHPnotecite] = ACTIONS(4569), + [anon_sym_BSLASHfnotecite] = ACTIONS(4569), + [anon_sym_BSLASHlabel] = ACTIONS(4569), + [anon_sym_BSLASHref] = ACTIONS(4569), + [anon_sym_BSLASHeqref] = ACTIONS(4569), + [anon_sym_BSLASHvref] = ACTIONS(4569), + [anon_sym_BSLASHVref] = ACTIONS(4569), + [anon_sym_BSLASHautoref] = ACTIONS(4569), + [anon_sym_BSLASHpageref] = ACTIONS(4569), + [anon_sym_BSLASHcref] = ACTIONS(4569), + [anon_sym_BSLASHCref] = ACTIONS(4569), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), + [anon_sym_BSLASHnamecref] = ACTIONS(4569), + [anon_sym_BSLASHnameCref] = ACTIONS(4569), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4569), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4569), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4569), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4569), + [anon_sym_BSLASHlabelcref] = ACTIONS(4569), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4569), + [anon_sym_BSLASHcrefrange] = ACTIONS(4569), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCrefrange] = ACTIONS(4569), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4567), + [anon_sym_BSLASHnewlabel] = ACTIONS(4569), + [anon_sym_BSLASHnewcommand] = ACTIONS(4569), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4569), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4569), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4569), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4567), + [anon_sym_BSLASHdef] = ACTIONS(4569), + [anon_sym_BSLASHlet] = ACTIONS(4569), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4569), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4569), + [anon_sym_BSLASHgls] = ACTIONS(4569), + [anon_sym_BSLASHGls] = ACTIONS(4569), + [anon_sym_BSLASHGLS] = ACTIONS(4569), + [anon_sym_BSLASHglspl] = ACTIONS(4569), + [anon_sym_BSLASHGlspl] = ACTIONS(4569), + [anon_sym_BSLASHGLSpl] = ACTIONS(4569), + [anon_sym_BSLASHglsdisp] = ACTIONS(4569), + [anon_sym_BSLASHglslink] = ACTIONS(4569), + [anon_sym_BSLASHglstext] = ACTIONS(4569), + [anon_sym_BSLASHGlstext] = ACTIONS(4569), + [anon_sym_BSLASHGLStext] = ACTIONS(4569), + [anon_sym_BSLASHglsfirst] = ACTIONS(4569), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4569), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4569), + [anon_sym_BSLASHglsplural] = ACTIONS(4569), + [anon_sym_BSLASHGlsplural] = ACTIONS(4569), + [anon_sym_BSLASHGLSplural] = ACTIONS(4569), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHglsname] = ACTIONS(4569), + [anon_sym_BSLASHGlsname] = ACTIONS(4569), + [anon_sym_BSLASHGLSname] = ACTIONS(4569), + [anon_sym_BSLASHglssymbol] = ACTIONS(4569), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4569), + [anon_sym_BSLASHglsdesc] = ACTIONS(4569), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4569), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4569), + [anon_sym_BSLASHglsuseri] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4569), + [anon_sym_BSLASHglsuserii] = ACTIONS(4569), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4569), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4569), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4569), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4569), + [anon_sym_BSLASHglsuserv] = ACTIONS(4569), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4569), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4569), + [anon_sym_BSLASHglsuservi] = ACTIONS(4569), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4569), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4569), + [anon_sym_BSLASHnewacronym] = ACTIONS(4569), + [anon_sym_BSLASHacrshort] = ACTIONS(4569), + [anon_sym_BSLASHAcrshort] = ACTIONS(4569), + [anon_sym_BSLASHACRshort] = ACTIONS(4569), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4569), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4569), + [anon_sym_BSLASHacrlong] = ACTIONS(4569), + [anon_sym_BSLASHAcrlong] = ACTIONS(4569), + [anon_sym_BSLASHACRlong] = ACTIONS(4569), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4569), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4569), + [anon_sym_BSLASHacrfull] = ACTIONS(4569), + [anon_sym_BSLASHAcrfull] = ACTIONS(4569), + [anon_sym_BSLASHACRfull] = ACTIONS(4569), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4569), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4569), + [anon_sym_BSLASHacs] = ACTIONS(4569), + [anon_sym_BSLASHAcs] = ACTIONS(4569), + [anon_sym_BSLASHacsp] = ACTIONS(4569), + [anon_sym_BSLASHAcsp] = ACTIONS(4569), + [anon_sym_BSLASHacl] = ACTIONS(4569), + [anon_sym_BSLASHAcl] = ACTIONS(4569), + [anon_sym_BSLASHaclp] = ACTIONS(4569), + [anon_sym_BSLASHAclp] = ACTIONS(4569), + [anon_sym_BSLASHacf] = ACTIONS(4569), + [anon_sym_BSLASHAcf] = ACTIONS(4569), + [anon_sym_BSLASHacfp] = ACTIONS(4569), + [anon_sym_BSLASHAcfp] = ACTIONS(4569), + [anon_sym_BSLASHac] = ACTIONS(4569), + [anon_sym_BSLASHAc] = ACTIONS(4569), + [anon_sym_BSLASHacp] = ACTIONS(4569), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4569), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4569), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4569), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4569), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4569), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4569), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4569), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4569), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4569), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4569), + [anon_sym_BSLASHcolor] = ACTIONS(4569), + [anon_sym_BSLASHcolorbox] = ACTIONS(4569), + [anon_sym_BSLASHtextcolor] = ACTIONS(4569), + [anon_sym_BSLASHpagecolor] = ACTIONS(4569), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4569), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4569), + [anon_sym_BSLASHtext] = ACTIONS(4569), + [anon_sym_BSLASHintertext] = ACTIONS(4569), + [anon_sym_shortintertext] = ACTIONS(4569), }, - [506] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(1940), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1938), - [anon_sym_BSLASHpart] = ACTIONS(1940), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddpart] = ACTIONS(1940), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHchapter] = ACTIONS(1940), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddchap] = ACTIONS(1940), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsection] = ACTIONS(1940), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddsec] = ACTIONS(1940), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHparagraph] = ACTIONS(1940), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1940), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(1938), - [sym_word] = ACTIONS(1940), - [sym_placeholder] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_SLASH] = ACTIONS(1940), - [anon_sym_CARET] = ACTIONS(1940), - [anon_sym__] = ACTIONS(1940), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_COLON] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1938), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1938), - [anon_sym_BSLASH_RBRACK] = ACTIONS(1938), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1938), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1938), - [anon_sym_BSLASHbegin] = ACTIONS(1940), - [anon_sym_BSLASHusepackage] = ACTIONS(1940), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1940), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1940), - [anon_sym_BSLASHinclude] = ACTIONS(1940), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1940), - [anon_sym_BSLASHinput] = ACTIONS(1940), - [anon_sym_BSLASHsubfile] = ACTIONS(1940), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1940), - [anon_sym_BSLASHbibliography] = ACTIONS(1940), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1940), - [anon_sym_BSLASHincludesvg] = ACTIONS(1940), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1940), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1940), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1940), - [anon_sym_BSLASHimport] = ACTIONS(1940), - [anon_sym_BSLASHsubimport] = ACTIONS(1940), - [anon_sym_BSLASHinputfrom] = ACTIONS(1940), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1940), - [anon_sym_BSLASHincludefrom] = ACTIONS(1940), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1940), - [anon_sym_BSLASHcaption] = ACTIONS(1940), - [anon_sym_BSLASHcite] = ACTIONS(1940), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCite] = ACTIONS(1940), - [anon_sym_BSLASHnocite] = ACTIONS(1940), - [anon_sym_BSLASHcitet] = ACTIONS(1940), - [anon_sym_BSLASHcitep] = ACTIONS(1940), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteauthor] = ACTIONS(1940), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1940), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitetitle] = ACTIONS(1940), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteyear] = ACTIONS(1940), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitedate] = ACTIONS(1940), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteurl] = ACTIONS(1940), - [anon_sym_BSLASHfullcite] = ACTIONS(1940), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1940), - [anon_sym_BSLASHcitealt] = ACTIONS(1940), - [anon_sym_BSLASHcitealp] = ACTIONS(1940), - [anon_sym_BSLASHcitetext] = ACTIONS(1940), - [anon_sym_BSLASHparencite] = ACTIONS(1940), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHParencite] = ACTIONS(1940), - [anon_sym_BSLASHfootcite] = ACTIONS(1940), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1940), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1940), - [anon_sym_BSLASHtextcite] = ACTIONS(1940), - [anon_sym_BSLASHTextcite] = ACTIONS(1940), - [anon_sym_BSLASHsmartcite] = ACTIONS(1940), - [anon_sym_BSLASHSmartcite] = ACTIONS(1940), - [anon_sym_BSLASHsupercite] = ACTIONS(1940), - [anon_sym_BSLASHautocite] = ACTIONS(1940), - [anon_sym_BSLASHAutocite] = ACTIONS(1940), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHvolcite] = ACTIONS(1940), - [anon_sym_BSLASHVolcite] = ACTIONS(1940), - [anon_sym_BSLASHpvolcite] = ACTIONS(1940), - [anon_sym_BSLASHPvolcite] = ACTIONS(1940), - [anon_sym_BSLASHfvolcite] = ACTIONS(1940), - [anon_sym_BSLASHftvolcite] = ACTIONS(1940), - [anon_sym_BSLASHsvolcite] = ACTIONS(1940), - [anon_sym_BSLASHSvolcite] = ACTIONS(1940), - [anon_sym_BSLASHtvolcite] = ACTIONS(1940), - [anon_sym_BSLASHTvolcite] = ACTIONS(1940), - [anon_sym_BSLASHavolcite] = ACTIONS(1940), - [anon_sym_BSLASHAvolcite] = ACTIONS(1940), - [anon_sym_BSLASHnotecite] = ACTIONS(1940), - [anon_sym_BSLASHNotecite] = ACTIONS(1940), - [anon_sym_BSLASHpnotecite] = ACTIONS(1940), - [anon_sym_BSLASHPnotecite] = ACTIONS(1940), - [anon_sym_BSLASHfnotecite] = ACTIONS(1940), - [anon_sym_BSLASHlabel] = ACTIONS(1940), - [anon_sym_BSLASHref] = ACTIONS(1940), - [anon_sym_BSLASHeqref] = ACTIONS(1940), - [anon_sym_BSLASHvref] = ACTIONS(1940), - [anon_sym_BSLASHVref] = ACTIONS(1940), - [anon_sym_BSLASHautoref] = ACTIONS(1940), - [anon_sym_BSLASHpageref] = ACTIONS(1940), - [anon_sym_BSLASHcref] = ACTIONS(1940), - [anon_sym_BSLASHCref] = ACTIONS(1940), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1938), - [anon_sym_BSLASHnamecref] = ACTIONS(1940), - [anon_sym_BSLASHnameCref] = ACTIONS(1940), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1940), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1940), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1940), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1940), - [anon_sym_BSLASHlabelcref] = ACTIONS(1940), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1940), - [anon_sym_BSLASHcrefrange] = ACTIONS(1940), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCrefrange] = ACTIONS(1940), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1938), - [anon_sym_BSLASHnewlabel] = ACTIONS(1940), - [anon_sym_BSLASHnewcommand] = ACTIONS(1940), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1940), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1940), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1940), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1938), - [anon_sym_BSLASHdef] = ACTIONS(1940), - [anon_sym_BSLASHlet] = ACTIONS(1940), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1940), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1940), - [anon_sym_BSLASHgls] = ACTIONS(1940), - [anon_sym_BSLASHGls] = ACTIONS(1940), - [anon_sym_BSLASHGLS] = ACTIONS(1940), - [anon_sym_BSLASHglspl] = ACTIONS(1940), - [anon_sym_BSLASHGlspl] = ACTIONS(1940), - [anon_sym_BSLASHGLSpl] = ACTIONS(1940), - [anon_sym_BSLASHglsdisp] = ACTIONS(1940), - [anon_sym_BSLASHglslink] = ACTIONS(1940), - [anon_sym_BSLASHglstext] = ACTIONS(1940), - [anon_sym_BSLASHGlstext] = ACTIONS(1940), - [anon_sym_BSLASHGLStext] = ACTIONS(1940), - [anon_sym_BSLASHglsfirst] = ACTIONS(1940), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1940), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1940), - [anon_sym_BSLASHglsplural] = ACTIONS(1940), - [anon_sym_BSLASHGlsplural] = ACTIONS(1940), - [anon_sym_BSLASHGLSplural] = ACTIONS(1940), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHglsname] = ACTIONS(1940), - [anon_sym_BSLASHGlsname] = ACTIONS(1940), - [anon_sym_BSLASHGLSname] = ACTIONS(1940), - [anon_sym_BSLASHglssymbol] = ACTIONS(1940), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1940), - [anon_sym_BSLASHglsdesc] = ACTIONS(1940), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1940), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1940), - [anon_sym_BSLASHglsuseri] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1940), - [anon_sym_BSLASHglsuserii] = ACTIONS(1940), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1940), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1940), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1940), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1940), - [anon_sym_BSLASHglsuserv] = ACTIONS(1940), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1940), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1940), - [anon_sym_BSLASHglsuservi] = ACTIONS(1940), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1940), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1940), - [anon_sym_BSLASHnewacronym] = ACTIONS(1940), - [anon_sym_BSLASHacrshort] = ACTIONS(1940), - [anon_sym_BSLASHAcrshort] = ACTIONS(1940), - [anon_sym_BSLASHACRshort] = ACTIONS(1940), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1940), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1940), - [anon_sym_BSLASHacrlong] = ACTIONS(1940), - [anon_sym_BSLASHAcrlong] = ACTIONS(1940), - [anon_sym_BSLASHACRlong] = ACTIONS(1940), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1940), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1940), - [anon_sym_BSLASHacrfull] = ACTIONS(1940), - [anon_sym_BSLASHAcrfull] = ACTIONS(1940), - [anon_sym_BSLASHACRfull] = ACTIONS(1940), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1940), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1940), - [anon_sym_BSLASHacs] = ACTIONS(1940), - [anon_sym_BSLASHAcs] = ACTIONS(1940), - [anon_sym_BSLASHacsp] = ACTIONS(1940), - [anon_sym_BSLASHAcsp] = ACTIONS(1940), - [anon_sym_BSLASHacl] = ACTIONS(1940), - [anon_sym_BSLASHAcl] = ACTIONS(1940), - [anon_sym_BSLASHaclp] = ACTIONS(1940), - [anon_sym_BSLASHAclp] = ACTIONS(1940), - [anon_sym_BSLASHacf] = ACTIONS(1940), - [anon_sym_BSLASHAcf] = ACTIONS(1940), - [anon_sym_BSLASHacfp] = ACTIONS(1940), - [anon_sym_BSLASHAcfp] = ACTIONS(1940), - [anon_sym_BSLASHac] = ACTIONS(1940), - [anon_sym_BSLASHAc] = ACTIONS(1940), - [anon_sym_BSLASHacp] = ACTIONS(1940), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1940), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1940), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1940), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1940), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1940), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1940), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1940), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1940), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1940), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1940), - [anon_sym_BSLASHcolor] = ACTIONS(1940), - [anon_sym_BSLASHcolorbox] = ACTIONS(1940), - [anon_sym_BSLASHtextcolor] = ACTIONS(1940), - [anon_sym_BSLASHpagecolor] = ACTIONS(1940), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1940), + [406] = { + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(632), + [aux_sym__section_repeat4] = STATE(632), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [507] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(1898), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1898), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), + [407] = { + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(633), + [aux_sym__section_repeat5] = STATE(633), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [508] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(1898), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(1898), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), + [408] = { + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(634), + [aux_sym__section_repeat6] = STATE(634), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [509] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(461), - [aux_sym__section_repeat6] = STATE(461), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1898), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHitem] = ACTIONS(1898), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), + [409] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [510] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), + [410] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [511] = { - [sym__part_declaration] = STATE(130), - [sym_part] = STATE(511), - [aux_sym__section_repeat1] = STATE(511), - [sym_command_name] = ACTIONS(4493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4493), - [anon_sym_LPAREN] = ACTIONS(4491), - [anon_sym_RPAREN] = ACTIONS(4491), - [anon_sym_LBRACK] = ACTIONS(4491), - [anon_sym_RBRACK] = ACTIONS(4491), - [anon_sym_COMMA] = ACTIONS(4491), - [anon_sym_EQ] = ACTIONS(4491), - [anon_sym_BSLASHpart] = ACTIONS(4639), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4642), - [anon_sym_BSLASHaddpart] = ACTIONS(4639), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4642), - [anon_sym_BSLASHchapter] = ACTIONS(4493), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4491), - [anon_sym_BSLASHaddchap] = ACTIONS(4493), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsection] = ACTIONS(4493), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHaddsec] = ACTIONS(4493), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubsection] = ACTIONS(4493), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4493), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHparagraph] = ACTIONS(4493), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4493), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4491), - [anon_sym_BSLASHitem] = ACTIONS(4493), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4491), - [sym_word] = ACTIONS(4493), - [sym_placeholder] = ACTIONS(4491), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_CARET] = ACTIONS(4493), - [anon_sym__] = ACTIONS(4493), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_PIPE] = ACTIONS(4493), - [anon_sym_COLON] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4491), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4491), - [anon_sym_DOLLAR] = ACTIONS(4493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4491), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4491), - [anon_sym_BSLASHbegin] = ACTIONS(4493), - [anon_sym_BSLASHusepackage] = ACTIONS(4493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4493), - [anon_sym_BSLASHinclude] = ACTIONS(4493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4493), - [anon_sym_BSLASHinput] = ACTIONS(4493), - [anon_sym_BSLASHsubfile] = ACTIONS(4493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4493), - [anon_sym_BSLASHbibliography] = ACTIONS(4493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4493), - [anon_sym_BSLASHincludesvg] = ACTIONS(4493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4493), - [anon_sym_BSLASHimport] = ACTIONS(4493), - [anon_sym_BSLASHsubimport] = ACTIONS(4493), - [anon_sym_BSLASHinputfrom] = ACTIONS(4493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4493), - [anon_sym_BSLASHincludefrom] = ACTIONS(4493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4493), - [anon_sym_BSLASHcaption] = ACTIONS(4493), - [anon_sym_BSLASHcite] = ACTIONS(4493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCite] = ACTIONS(4493), - [anon_sym_BSLASHnocite] = ACTIONS(4493), - [anon_sym_BSLASHcitet] = ACTIONS(4493), - [anon_sym_BSLASHcitep] = ACTIONS(4493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteauthor] = ACTIONS(4493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitetitle] = ACTIONS(4493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteyear] = ACTIONS(4493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitedate] = ACTIONS(4493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteurl] = ACTIONS(4493), - [anon_sym_BSLASHfullcite] = ACTIONS(4493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4493), - [anon_sym_BSLASHcitealt] = ACTIONS(4493), - [anon_sym_BSLASHcitealp] = ACTIONS(4493), - [anon_sym_BSLASHcitetext] = ACTIONS(4493), - [anon_sym_BSLASHparencite] = ACTIONS(4493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHParencite] = ACTIONS(4493), - [anon_sym_BSLASHfootcite] = ACTIONS(4493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4493), - [anon_sym_BSLASHtextcite] = ACTIONS(4493), - [anon_sym_BSLASHTextcite] = ACTIONS(4493), - [anon_sym_BSLASHsmartcite] = ACTIONS(4493), - [anon_sym_BSLASHSmartcite] = ACTIONS(4493), - [anon_sym_BSLASHsupercite] = ACTIONS(4493), - [anon_sym_BSLASHautocite] = ACTIONS(4493), - [anon_sym_BSLASHAutocite] = ACTIONS(4493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHvolcite] = ACTIONS(4493), - [anon_sym_BSLASHVolcite] = ACTIONS(4493), - [anon_sym_BSLASHpvolcite] = ACTIONS(4493), - [anon_sym_BSLASHPvolcite] = ACTIONS(4493), - [anon_sym_BSLASHfvolcite] = ACTIONS(4493), - [anon_sym_BSLASHftvolcite] = ACTIONS(4493), - [anon_sym_BSLASHsvolcite] = ACTIONS(4493), - [anon_sym_BSLASHSvolcite] = ACTIONS(4493), - [anon_sym_BSLASHtvolcite] = ACTIONS(4493), - [anon_sym_BSLASHTvolcite] = ACTIONS(4493), - [anon_sym_BSLASHavolcite] = ACTIONS(4493), - [anon_sym_BSLASHAvolcite] = ACTIONS(4493), - [anon_sym_BSLASHnotecite] = ACTIONS(4493), - [anon_sym_BSLASHNotecite] = ACTIONS(4493), - [anon_sym_BSLASHpnotecite] = ACTIONS(4493), - [anon_sym_BSLASHPnotecite] = ACTIONS(4493), - [anon_sym_BSLASHfnotecite] = ACTIONS(4493), - [anon_sym_BSLASHlabel] = ACTIONS(4493), - [anon_sym_BSLASHref] = ACTIONS(4493), - [anon_sym_BSLASHeqref] = ACTIONS(4493), - [anon_sym_BSLASHvref] = ACTIONS(4493), - [anon_sym_BSLASHVref] = ACTIONS(4493), - [anon_sym_BSLASHautoref] = ACTIONS(4493), - [anon_sym_BSLASHpageref] = ACTIONS(4493), - [anon_sym_BSLASHcref] = ACTIONS(4493), - [anon_sym_BSLASHCref] = ACTIONS(4493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4491), - [anon_sym_BSLASHnamecref] = ACTIONS(4493), - [anon_sym_BSLASHnameCref] = ACTIONS(4493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4493), - [anon_sym_BSLASHlabelcref] = ACTIONS(4493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4493), - [anon_sym_BSLASHcrefrange] = ACTIONS(4493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCrefrange] = ACTIONS(4493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4491), - [anon_sym_BSLASHnewlabel] = ACTIONS(4493), - [anon_sym_BSLASHnewcommand] = ACTIONS(4493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4491), - [anon_sym_BSLASHdef] = ACTIONS(4493), - [anon_sym_BSLASHlet] = ACTIONS(4493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4493), - [anon_sym_BSLASHgls] = ACTIONS(4493), - [anon_sym_BSLASHGls] = ACTIONS(4493), - [anon_sym_BSLASHGLS] = ACTIONS(4493), - [anon_sym_BSLASHglspl] = ACTIONS(4493), - [anon_sym_BSLASHGlspl] = ACTIONS(4493), - [anon_sym_BSLASHGLSpl] = ACTIONS(4493), - [anon_sym_BSLASHglsdisp] = ACTIONS(4493), - [anon_sym_BSLASHglslink] = ACTIONS(4493), - [anon_sym_BSLASHglstext] = ACTIONS(4493), - [anon_sym_BSLASHGlstext] = ACTIONS(4493), - [anon_sym_BSLASHGLStext] = ACTIONS(4493), - [anon_sym_BSLASHglsfirst] = ACTIONS(4493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4493), - [anon_sym_BSLASHglsplural] = ACTIONS(4493), - [anon_sym_BSLASHGlsplural] = ACTIONS(4493), - [anon_sym_BSLASHGLSplural] = ACTIONS(4493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHglsname] = ACTIONS(4493), - [anon_sym_BSLASHGlsname] = ACTIONS(4493), - [anon_sym_BSLASHGLSname] = ACTIONS(4493), - [anon_sym_BSLASHglssymbol] = ACTIONS(4493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4493), - [anon_sym_BSLASHglsdesc] = ACTIONS(4493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4493), - [anon_sym_BSLASHglsuseri] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4493), - [anon_sym_BSLASHglsuserii] = ACTIONS(4493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4493), - [anon_sym_BSLASHglsuserv] = ACTIONS(4493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4493), - [anon_sym_BSLASHglsuservi] = ACTIONS(4493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4493), - [anon_sym_BSLASHnewacronym] = ACTIONS(4493), - [anon_sym_BSLASHacrshort] = ACTIONS(4493), - [anon_sym_BSLASHAcrshort] = ACTIONS(4493), - [anon_sym_BSLASHACRshort] = ACTIONS(4493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4493), - [anon_sym_BSLASHacrlong] = ACTIONS(4493), - [anon_sym_BSLASHAcrlong] = ACTIONS(4493), - [anon_sym_BSLASHACRlong] = ACTIONS(4493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4493), - [anon_sym_BSLASHacrfull] = ACTIONS(4493), - [anon_sym_BSLASHAcrfull] = ACTIONS(4493), - [anon_sym_BSLASHACRfull] = ACTIONS(4493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4493), - [anon_sym_BSLASHacs] = ACTIONS(4493), - [anon_sym_BSLASHAcs] = ACTIONS(4493), - [anon_sym_BSLASHacsp] = ACTIONS(4493), - [anon_sym_BSLASHAcsp] = ACTIONS(4493), - [anon_sym_BSLASHacl] = ACTIONS(4493), - [anon_sym_BSLASHAcl] = ACTIONS(4493), - [anon_sym_BSLASHaclp] = ACTIONS(4493), - [anon_sym_BSLASHAclp] = ACTIONS(4493), - [anon_sym_BSLASHacf] = ACTIONS(4493), - [anon_sym_BSLASHAcf] = ACTIONS(4493), - [anon_sym_BSLASHacfp] = ACTIONS(4493), - [anon_sym_BSLASHAcfp] = ACTIONS(4493), - [anon_sym_BSLASHac] = ACTIONS(4493), - [anon_sym_BSLASHAc] = ACTIONS(4493), - [anon_sym_BSLASHacp] = ACTIONS(4493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4493), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4493), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4493), - [anon_sym_BSLASHcolor] = ACTIONS(4493), - [anon_sym_BSLASHcolorbox] = ACTIONS(4493), - [anon_sym_BSLASHtextcolor] = ACTIONS(4493), - [anon_sym_BSLASHpagecolor] = ACTIONS(4493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4493), + [411] = { + [sym_curly_group] = STATE(898), + [sym_mixed_group] = STATE(898), + [aux_sym_generic_command_repeat1] = STATE(629), + [sym_command_name] = ACTIONS(4451), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4577), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_BSLASHpart] = ACTIONS(4451), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddpart] = ACTIONS(4451), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4449), + [anon_sym_BSLASHchapter] = ACTIONS(4451), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddchap] = ACTIONS(4451), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsection] = ACTIONS(4451), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddsec] = ACTIONS(4451), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubsection] = ACTIONS(4451), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4451), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHparagraph] = ACTIONS(4451), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4451), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4449), + [anon_sym_BSLASHitem] = ACTIONS(4451), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4449), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(4451), + [sym_placeholder] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(4451), + [anon_sym__] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_PIPE] = ACTIONS(4451), + [anon_sym_COLON] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), + [anon_sym_DOLLAR] = ACTIONS(4451), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4449), + [anon_sym_BSLASHbegin] = ACTIONS(4451), + [anon_sym_BSLASHusepackage] = ACTIONS(4451), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), + [anon_sym_BSLASHinclude] = ACTIONS(4451), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), + [anon_sym_BSLASHinput] = ACTIONS(4451), + [anon_sym_BSLASHsubfile] = ACTIONS(4451), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), + [anon_sym_BSLASHbibliography] = ACTIONS(4451), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), + [anon_sym_BSLASHincludesvg] = ACTIONS(4451), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), + [anon_sym_BSLASHimport] = ACTIONS(4451), + [anon_sym_BSLASHsubimport] = ACTIONS(4451), + [anon_sym_BSLASHinputfrom] = ACTIONS(4451), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), + [anon_sym_BSLASHincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHcaption] = ACTIONS(4451), + [anon_sym_BSLASHcite] = ACTIONS(4451), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCite] = ACTIONS(4451), + [anon_sym_BSLASHnocite] = ACTIONS(4451), + [anon_sym_BSLASHcitet] = ACTIONS(4451), + [anon_sym_BSLASHcitep] = ACTIONS(4451), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteauthor] = ACTIONS(4451), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitetitle] = ACTIONS(4451), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteyear] = ACTIONS(4451), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitedate] = ACTIONS(4451), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteurl] = ACTIONS(4451), + [anon_sym_BSLASHfullcite] = ACTIONS(4451), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), + [anon_sym_BSLASHcitealt] = ACTIONS(4451), + [anon_sym_BSLASHcitealp] = ACTIONS(4451), + [anon_sym_BSLASHcitetext] = ACTIONS(4451), + [anon_sym_BSLASHparencite] = ACTIONS(4451), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHParencite] = ACTIONS(4451), + [anon_sym_BSLASHfootcite] = ACTIONS(4451), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), + [anon_sym_BSLASHtextcite] = ACTIONS(4451), + [anon_sym_BSLASHTextcite] = ACTIONS(4451), + [anon_sym_BSLASHsmartcite] = ACTIONS(4451), + [anon_sym_BSLASHSmartcite] = ACTIONS(4451), + [anon_sym_BSLASHsupercite] = ACTIONS(4451), + [anon_sym_BSLASHautocite] = ACTIONS(4451), + [anon_sym_BSLASHAutocite] = ACTIONS(4451), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHvolcite] = ACTIONS(4451), + [anon_sym_BSLASHVolcite] = ACTIONS(4451), + [anon_sym_BSLASHpvolcite] = ACTIONS(4451), + [anon_sym_BSLASHPvolcite] = ACTIONS(4451), + [anon_sym_BSLASHfvolcite] = ACTIONS(4451), + [anon_sym_BSLASHftvolcite] = ACTIONS(4451), + [anon_sym_BSLASHsvolcite] = ACTIONS(4451), + [anon_sym_BSLASHSvolcite] = ACTIONS(4451), + [anon_sym_BSLASHtvolcite] = ACTIONS(4451), + [anon_sym_BSLASHTvolcite] = ACTIONS(4451), + [anon_sym_BSLASHavolcite] = ACTIONS(4451), + [anon_sym_BSLASHAvolcite] = ACTIONS(4451), + [anon_sym_BSLASHnotecite] = ACTIONS(4451), + [anon_sym_BSLASHNotecite] = ACTIONS(4451), + [anon_sym_BSLASHpnotecite] = ACTIONS(4451), + [anon_sym_BSLASHPnotecite] = ACTIONS(4451), + [anon_sym_BSLASHfnotecite] = ACTIONS(4451), + [anon_sym_BSLASHlabel] = ACTIONS(4451), + [anon_sym_BSLASHref] = ACTIONS(4451), + [anon_sym_BSLASHeqref] = ACTIONS(4451), + [anon_sym_BSLASHvref] = ACTIONS(4451), + [anon_sym_BSLASHVref] = ACTIONS(4451), + [anon_sym_BSLASHautoref] = ACTIONS(4451), + [anon_sym_BSLASHpageref] = ACTIONS(4451), + [anon_sym_BSLASHcref] = ACTIONS(4451), + [anon_sym_BSLASHCref] = ACTIONS(4451), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnameCref] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHlabelcref] = ACTIONS(4451), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCrefrange] = ACTIONS(4451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnewlabel] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), + [anon_sym_BSLASHdef] = ACTIONS(4451), + [anon_sym_BSLASHlet] = ACTIONS(4451), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), + [anon_sym_BSLASHgls] = ACTIONS(4451), + [anon_sym_BSLASHGls] = ACTIONS(4451), + [anon_sym_BSLASHGLS] = ACTIONS(4451), + [anon_sym_BSLASHglspl] = ACTIONS(4451), + [anon_sym_BSLASHGlspl] = ACTIONS(4451), + [anon_sym_BSLASHGLSpl] = ACTIONS(4451), + [anon_sym_BSLASHglsdisp] = ACTIONS(4451), + [anon_sym_BSLASHglslink] = ACTIONS(4451), + [anon_sym_BSLASHglstext] = ACTIONS(4451), + [anon_sym_BSLASHGlstext] = ACTIONS(4451), + [anon_sym_BSLASHGLStext] = ACTIONS(4451), + [anon_sym_BSLASHglsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), + [anon_sym_BSLASHglsplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSplural] = ACTIONS(4451), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHglsname] = ACTIONS(4451), + [anon_sym_BSLASHGlsname] = ACTIONS(4451), + [anon_sym_BSLASHGLSname] = ACTIONS(4451), + [anon_sym_BSLASHglssymbol] = ACTIONS(4451), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), + [anon_sym_BSLASHglsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), + [anon_sym_BSLASHglsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), + [anon_sym_BSLASHglsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), + [anon_sym_BSLASHglsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), + [anon_sym_BSLASHglsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), + [anon_sym_BSLASHnewacronym] = ACTIONS(4451), + [anon_sym_BSLASHacrshort] = ACTIONS(4451), + [anon_sym_BSLASHAcrshort] = ACTIONS(4451), + [anon_sym_BSLASHACRshort] = ACTIONS(4451), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), + [anon_sym_BSLASHacrlong] = ACTIONS(4451), + [anon_sym_BSLASHAcrlong] = ACTIONS(4451), + [anon_sym_BSLASHACRlong] = ACTIONS(4451), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), + [anon_sym_BSLASHacrfull] = ACTIONS(4451), + [anon_sym_BSLASHAcrfull] = ACTIONS(4451), + [anon_sym_BSLASHACRfull] = ACTIONS(4451), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), + [anon_sym_BSLASHacs] = ACTIONS(4451), + [anon_sym_BSLASHAcs] = ACTIONS(4451), + [anon_sym_BSLASHacsp] = ACTIONS(4451), + [anon_sym_BSLASHAcsp] = ACTIONS(4451), + [anon_sym_BSLASHacl] = ACTIONS(4451), + [anon_sym_BSLASHAcl] = ACTIONS(4451), + [anon_sym_BSLASHaclp] = ACTIONS(4451), + [anon_sym_BSLASHAclp] = ACTIONS(4451), + [anon_sym_BSLASHacf] = ACTIONS(4451), + [anon_sym_BSLASHAcf] = ACTIONS(4451), + [anon_sym_BSLASHacfp] = ACTIONS(4451), + [anon_sym_BSLASHAcfp] = ACTIONS(4451), + [anon_sym_BSLASHac] = ACTIONS(4451), + [anon_sym_BSLASHAc] = ACTIONS(4451), + [anon_sym_BSLASHacp] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), + [anon_sym_BSLASHcolor] = ACTIONS(4451), + [anon_sym_BSLASHcolorbox] = ACTIONS(4451), + [anon_sym_BSLASHtextcolor] = ACTIONS(4451), + [anon_sym_BSLASHpagecolor] = ACTIONS(4451), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), + [anon_sym_BSLASHtext] = ACTIONS(4451), + [anon_sym_BSLASHintertext] = ACTIONS(4451), + [anon_sym_shortintertext] = ACTIONS(4451), }, - [512] = { + [412] = { [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(512), - [aux_sym__section_repeat2] = STATE(512), - [sym_command_name] = ACTIONS(4503), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4501), - [anon_sym_RPAREN] = ACTIONS(4501), - [anon_sym_LBRACK] = ACTIONS(4501), - [anon_sym_RBRACK] = ACTIONS(4501), - [anon_sym_COMMA] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_BSLASHpart] = ACTIONS(4503), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4501), - [anon_sym_BSLASHaddpart] = ACTIONS(4503), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4501), - [anon_sym_BSLASHchapter] = ACTIONS(4645), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4648), - [anon_sym_BSLASHaddchap] = ACTIONS(4645), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4648), - [anon_sym_BSLASHsection] = ACTIONS(4503), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHaddsec] = ACTIONS(4503), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubsection] = ACTIONS(4503), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4503), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHparagraph] = ACTIONS(4503), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4503), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4501), - [anon_sym_BSLASHitem] = ACTIONS(4503), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(4501), - [sym_word] = ACTIONS(4503), - [sym_placeholder] = ACTIONS(4501), - [anon_sym_PLUS] = ACTIONS(4503), - [anon_sym_DASH] = ACTIONS(4503), - [anon_sym_STAR] = ACTIONS(4503), - [anon_sym_SLASH] = ACTIONS(4503), - [anon_sym_CARET] = ACTIONS(4503), - [anon_sym__] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4503), - [anon_sym_GT] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4503), - [anon_sym_PIPE] = ACTIONS(4503), - [anon_sym_COLON] = ACTIONS(4503), - [anon_sym_SQUOTE] = ACTIONS(4503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4501), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4501), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4501), - [anon_sym_DOLLAR] = ACTIONS(4503), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4501), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4501), - [anon_sym_BSLASHbegin] = ACTIONS(4503), - [anon_sym_BSLASHusepackage] = ACTIONS(4503), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4503), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4503), - [anon_sym_BSLASHinclude] = ACTIONS(4503), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4503), - [anon_sym_BSLASHinput] = ACTIONS(4503), - [anon_sym_BSLASHsubfile] = ACTIONS(4503), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4503), - [anon_sym_BSLASHbibliography] = ACTIONS(4503), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4503), - [anon_sym_BSLASHincludesvg] = ACTIONS(4503), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4503), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4503), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4503), - [anon_sym_BSLASHimport] = ACTIONS(4503), - [anon_sym_BSLASHsubimport] = ACTIONS(4503), - [anon_sym_BSLASHinputfrom] = ACTIONS(4503), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4503), - [anon_sym_BSLASHincludefrom] = ACTIONS(4503), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4503), - [anon_sym_BSLASHcaption] = ACTIONS(4503), - [anon_sym_BSLASHcite] = ACTIONS(4503), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCite] = ACTIONS(4503), - [anon_sym_BSLASHnocite] = ACTIONS(4503), - [anon_sym_BSLASHcitet] = ACTIONS(4503), - [anon_sym_BSLASHcitep] = ACTIONS(4503), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteauthor] = ACTIONS(4503), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4503), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitetitle] = ACTIONS(4503), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteyear] = ACTIONS(4503), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitedate] = ACTIONS(4503), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteurl] = ACTIONS(4503), - [anon_sym_BSLASHfullcite] = ACTIONS(4503), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4503), - [anon_sym_BSLASHcitealt] = ACTIONS(4503), - [anon_sym_BSLASHcitealp] = ACTIONS(4503), - [anon_sym_BSLASHcitetext] = ACTIONS(4503), - [anon_sym_BSLASHparencite] = ACTIONS(4503), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHParencite] = ACTIONS(4503), - [anon_sym_BSLASHfootcite] = ACTIONS(4503), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4503), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4503), - [anon_sym_BSLASHtextcite] = ACTIONS(4503), - [anon_sym_BSLASHTextcite] = ACTIONS(4503), - [anon_sym_BSLASHsmartcite] = ACTIONS(4503), - [anon_sym_BSLASHSmartcite] = ACTIONS(4503), - [anon_sym_BSLASHsupercite] = ACTIONS(4503), - [anon_sym_BSLASHautocite] = ACTIONS(4503), - [anon_sym_BSLASHAutocite] = ACTIONS(4503), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHvolcite] = ACTIONS(4503), - [anon_sym_BSLASHVolcite] = ACTIONS(4503), - [anon_sym_BSLASHpvolcite] = ACTIONS(4503), - [anon_sym_BSLASHPvolcite] = ACTIONS(4503), - [anon_sym_BSLASHfvolcite] = ACTIONS(4503), - [anon_sym_BSLASHftvolcite] = ACTIONS(4503), - [anon_sym_BSLASHsvolcite] = ACTIONS(4503), - [anon_sym_BSLASHSvolcite] = ACTIONS(4503), - [anon_sym_BSLASHtvolcite] = ACTIONS(4503), - [anon_sym_BSLASHTvolcite] = ACTIONS(4503), - [anon_sym_BSLASHavolcite] = ACTIONS(4503), - [anon_sym_BSLASHAvolcite] = ACTIONS(4503), - [anon_sym_BSLASHnotecite] = ACTIONS(4503), - [anon_sym_BSLASHNotecite] = ACTIONS(4503), - [anon_sym_BSLASHpnotecite] = ACTIONS(4503), - [anon_sym_BSLASHPnotecite] = ACTIONS(4503), - [anon_sym_BSLASHfnotecite] = ACTIONS(4503), - [anon_sym_BSLASHlabel] = ACTIONS(4503), - [anon_sym_BSLASHref] = ACTIONS(4503), - [anon_sym_BSLASHeqref] = ACTIONS(4503), - [anon_sym_BSLASHvref] = ACTIONS(4503), - [anon_sym_BSLASHVref] = ACTIONS(4503), - [anon_sym_BSLASHautoref] = ACTIONS(4503), - [anon_sym_BSLASHpageref] = ACTIONS(4503), - [anon_sym_BSLASHcref] = ACTIONS(4503), - [anon_sym_BSLASHCref] = ACTIONS(4503), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4501), - [anon_sym_BSLASHnamecref] = ACTIONS(4503), - [anon_sym_BSLASHnameCref] = ACTIONS(4503), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4503), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4503), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4503), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4503), - [anon_sym_BSLASHlabelcref] = ACTIONS(4503), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4503), - [anon_sym_BSLASHcrefrange] = ACTIONS(4503), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCrefrange] = ACTIONS(4503), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4501), - [anon_sym_BSLASHnewlabel] = ACTIONS(4503), - [anon_sym_BSLASHnewcommand] = ACTIONS(4503), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4503), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4503), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4503), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4501), - [anon_sym_BSLASHdef] = ACTIONS(4503), - [anon_sym_BSLASHlet] = ACTIONS(4503), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4503), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4503), - [anon_sym_BSLASHgls] = ACTIONS(4503), - [anon_sym_BSLASHGls] = ACTIONS(4503), - [anon_sym_BSLASHGLS] = ACTIONS(4503), - [anon_sym_BSLASHglspl] = ACTIONS(4503), - [anon_sym_BSLASHGlspl] = ACTIONS(4503), - [anon_sym_BSLASHGLSpl] = ACTIONS(4503), - [anon_sym_BSLASHglsdisp] = ACTIONS(4503), - [anon_sym_BSLASHglslink] = ACTIONS(4503), - [anon_sym_BSLASHglstext] = ACTIONS(4503), - [anon_sym_BSLASHGlstext] = ACTIONS(4503), - [anon_sym_BSLASHGLStext] = ACTIONS(4503), - [anon_sym_BSLASHglsfirst] = ACTIONS(4503), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4503), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4503), - [anon_sym_BSLASHglsplural] = ACTIONS(4503), - [anon_sym_BSLASHGlsplural] = ACTIONS(4503), - [anon_sym_BSLASHGLSplural] = ACTIONS(4503), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHglsname] = ACTIONS(4503), - [anon_sym_BSLASHGlsname] = ACTIONS(4503), - [anon_sym_BSLASHGLSname] = ACTIONS(4503), - [anon_sym_BSLASHglssymbol] = ACTIONS(4503), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4503), - [anon_sym_BSLASHglsdesc] = ACTIONS(4503), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4503), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4503), - [anon_sym_BSLASHglsuseri] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4503), - [anon_sym_BSLASHglsuserii] = ACTIONS(4503), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4503), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4503), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4503), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4503), - [anon_sym_BSLASHglsuserv] = ACTIONS(4503), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4503), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4503), - [anon_sym_BSLASHglsuservi] = ACTIONS(4503), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4503), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4503), - [anon_sym_BSLASHnewacronym] = ACTIONS(4503), - [anon_sym_BSLASHacrshort] = ACTIONS(4503), - [anon_sym_BSLASHAcrshort] = ACTIONS(4503), - [anon_sym_BSLASHACRshort] = ACTIONS(4503), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4503), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4503), - [anon_sym_BSLASHacrlong] = ACTIONS(4503), - [anon_sym_BSLASHAcrlong] = ACTIONS(4503), - [anon_sym_BSLASHACRlong] = ACTIONS(4503), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4503), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4503), - [anon_sym_BSLASHacrfull] = ACTIONS(4503), - [anon_sym_BSLASHAcrfull] = ACTIONS(4503), - [anon_sym_BSLASHACRfull] = ACTIONS(4503), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4503), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4503), - [anon_sym_BSLASHacs] = ACTIONS(4503), - [anon_sym_BSLASHAcs] = ACTIONS(4503), - [anon_sym_BSLASHacsp] = ACTIONS(4503), - [anon_sym_BSLASHAcsp] = ACTIONS(4503), - [anon_sym_BSLASHacl] = ACTIONS(4503), - [anon_sym_BSLASHAcl] = ACTIONS(4503), - [anon_sym_BSLASHaclp] = ACTIONS(4503), - [anon_sym_BSLASHAclp] = ACTIONS(4503), - [anon_sym_BSLASHacf] = ACTIONS(4503), - [anon_sym_BSLASHAcf] = ACTIONS(4503), - [anon_sym_BSLASHacfp] = ACTIONS(4503), - [anon_sym_BSLASHAcfp] = ACTIONS(4503), - [anon_sym_BSLASHac] = ACTIONS(4503), - [anon_sym_BSLASHAc] = ACTIONS(4503), - [anon_sym_BSLASHacp] = ACTIONS(4503), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4503), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4503), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4503), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4503), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4503), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4503), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4503), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4503), - [anon_sym_BSLASHcolor] = ACTIONS(4503), - [anon_sym_BSLASHcolorbox] = ACTIONS(4503), - [anon_sym_BSLASHtextcolor] = ACTIONS(4503), - [anon_sym_BSLASHpagecolor] = ACTIONS(4503), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4503), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4503), + [sym_chapter] = STATE(630), + [aux_sym__section_repeat2] = STATE(630), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [513] = { - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(513), - [aux_sym__section_repeat3] = STATE(513), - [sym_command_name] = ACTIONS(4513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4513), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_RPAREN] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_RBRACK] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_EQ] = ACTIONS(4511), - [anon_sym_BSLASHpart] = ACTIONS(4513), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4511), - [anon_sym_BSLASHaddpart] = ACTIONS(4513), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4511), - [anon_sym_BSLASHchapter] = ACTIONS(4513), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4511), - [anon_sym_BSLASHaddchap] = ACTIONS(4513), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsection] = ACTIONS(4651), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4654), - [anon_sym_BSLASHaddsec] = ACTIONS(4651), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4654), - [anon_sym_BSLASHsubsection] = ACTIONS(4513), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4513), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4511), - [anon_sym_BSLASHparagraph] = ACTIONS(4513), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4513), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4511), - [anon_sym_BSLASHitem] = ACTIONS(4513), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4511), - [anon_sym_LBRACE] = ACTIONS(4511), - [sym_word] = ACTIONS(4513), - [sym_placeholder] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_STAR] = ACTIONS(4513), - [anon_sym_SLASH] = ACTIONS(4513), - [anon_sym_CARET] = ACTIONS(4513), - [anon_sym__] = ACTIONS(4513), - [anon_sym_LT] = ACTIONS(4513), - [anon_sym_GT] = ACTIONS(4513), - [anon_sym_BANG] = ACTIONS(4513), - [anon_sym_PIPE] = ACTIONS(4513), - [anon_sym_COLON] = ACTIONS(4513), - [anon_sym_SQUOTE] = ACTIONS(4513), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4511), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4511), - [anon_sym_DOLLAR] = ACTIONS(4513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4511), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4511), - [anon_sym_BSLASHbegin] = ACTIONS(4513), - [anon_sym_BSLASHusepackage] = ACTIONS(4513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4513), - [anon_sym_BSLASHinclude] = ACTIONS(4513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4513), - [anon_sym_BSLASHinput] = ACTIONS(4513), - [anon_sym_BSLASHsubfile] = ACTIONS(4513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4513), - [anon_sym_BSLASHbibliography] = ACTIONS(4513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4513), - [anon_sym_BSLASHincludesvg] = ACTIONS(4513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4513), - [anon_sym_BSLASHimport] = ACTIONS(4513), - [anon_sym_BSLASHsubimport] = ACTIONS(4513), - [anon_sym_BSLASHinputfrom] = ACTIONS(4513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4513), - [anon_sym_BSLASHincludefrom] = ACTIONS(4513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4513), - [anon_sym_BSLASHcaption] = ACTIONS(4513), - [anon_sym_BSLASHcite] = ACTIONS(4513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCite] = ACTIONS(4513), - [anon_sym_BSLASHnocite] = ACTIONS(4513), - [anon_sym_BSLASHcitet] = ACTIONS(4513), - [anon_sym_BSLASHcitep] = ACTIONS(4513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteauthor] = ACTIONS(4513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitetitle] = ACTIONS(4513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteyear] = ACTIONS(4513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitedate] = ACTIONS(4513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteurl] = ACTIONS(4513), - [anon_sym_BSLASHfullcite] = ACTIONS(4513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4513), - [anon_sym_BSLASHcitealt] = ACTIONS(4513), - [anon_sym_BSLASHcitealp] = ACTIONS(4513), - [anon_sym_BSLASHcitetext] = ACTIONS(4513), - [anon_sym_BSLASHparencite] = ACTIONS(4513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHParencite] = ACTIONS(4513), - [anon_sym_BSLASHfootcite] = ACTIONS(4513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4513), - [anon_sym_BSLASHtextcite] = ACTIONS(4513), - [anon_sym_BSLASHTextcite] = ACTIONS(4513), - [anon_sym_BSLASHsmartcite] = ACTIONS(4513), - [anon_sym_BSLASHSmartcite] = ACTIONS(4513), - [anon_sym_BSLASHsupercite] = ACTIONS(4513), - [anon_sym_BSLASHautocite] = ACTIONS(4513), - [anon_sym_BSLASHAutocite] = ACTIONS(4513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHvolcite] = ACTIONS(4513), - [anon_sym_BSLASHVolcite] = ACTIONS(4513), - [anon_sym_BSLASHpvolcite] = ACTIONS(4513), - [anon_sym_BSLASHPvolcite] = ACTIONS(4513), - [anon_sym_BSLASHfvolcite] = ACTIONS(4513), - [anon_sym_BSLASHftvolcite] = ACTIONS(4513), - [anon_sym_BSLASHsvolcite] = ACTIONS(4513), - [anon_sym_BSLASHSvolcite] = ACTIONS(4513), - [anon_sym_BSLASHtvolcite] = ACTIONS(4513), - [anon_sym_BSLASHTvolcite] = ACTIONS(4513), - [anon_sym_BSLASHavolcite] = ACTIONS(4513), - [anon_sym_BSLASHAvolcite] = ACTIONS(4513), - [anon_sym_BSLASHnotecite] = ACTIONS(4513), - [anon_sym_BSLASHNotecite] = ACTIONS(4513), - [anon_sym_BSLASHpnotecite] = ACTIONS(4513), - [anon_sym_BSLASHPnotecite] = ACTIONS(4513), - [anon_sym_BSLASHfnotecite] = ACTIONS(4513), - [anon_sym_BSLASHlabel] = ACTIONS(4513), - [anon_sym_BSLASHref] = ACTIONS(4513), - [anon_sym_BSLASHeqref] = ACTIONS(4513), - [anon_sym_BSLASHvref] = ACTIONS(4513), - [anon_sym_BSLASHVref] = ACTIONS(4513), - [anon_sym_BSLASHautoref] = ACTIONS(4513), - [anon_sym_BSLASHpageref] = ACTIONS(4513), - [anon_sym_BSLASHcref] = ACTIONS(4513), - [anon_sym_BSLASHCref] = ACTIONS(4513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4511), - [anon_sym_BSLASHnamecref] = ACTIONS(4513), - [anon_sym_BSLASHnameCref] = ACTIONS(4513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4513), - [anon_sym_BSLASHlabelcref] = ACTIONS(4513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4513), - [anon_sym_BSLASHcrefrange] = ACTIONS(4513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCrefrange] = ACTIONS(4513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4511), - [anon_sym_BSLASHnewlabel] = ACTIONS(4513), - [anon_sym_BSLASHnewcommand] = ACTIONS(4513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4511), - [anon_sym_BSLASHdef] = ACTIONS(4513), - [anon_sym_BSLASHlet] = ACTIONS(4513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4513), - [anon_sym_BSLASHgls] = ACTIONS(4513), - [anon_sym_BSLASHGls] = ACTIONS(4513), - [anon_sym_BSLASHGLS] = ACTIONS(4513), - [anon_sym_BSLASHglspl] = ACTIONS(4513), - [anon_sym_BSLASHGlspl] = ACTIONS(4513), - [anon_sym_BSLASHGLSpl] = ACTIONS(4513), - [anon_sym_BSLASHglsdisp] = ACTIONS(4513), - [anon_sym_BSLASHglslink] = ACTIONS(4513), - [anon_sym_BSLASHglstext] = ACTIONS(4513), - [anon_sym_BSLASHGlstext] = ACTIONS(4513), - [anon_sym_BSLASHGLStext] = ACTIONS(4513), - [anon_sym_BSLASHglsfirst] = ACTIONS(4513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4513), - [anon_sym_BSLASHglsplural] = ACTIONS(4513), - [anon_sym_BSLASHGlsplural] = ACTIONS(4513), - [anon_sym_BSLASHGLSplural] = ACTIONS(4513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHglsname] = ACTIONS(4513), - [anon_sym_BSLASHGlsname] = ACTIONS(4513), - [anon_sym_BSLASHGLSname] = ACTIONS(4513), - [anon_sym_BSLASHglssymbol] = ACTIONS(4513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4513), - [anon_sym_BSLASHglsdesc] = ACTIONS(4513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4513), - [anon_sym_BSLASHglsuseri] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4513), - [anon_sym_BSLASHglsuserii] = ACTIONS(4513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4513), - [anon_sym_BSLASHglsuserv] = ACTIONS(4513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4513), - [anon_sym_BSLASHglsuservi] = ACTIONS(4513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4513), - [anon_sym_BSLASHnewacronym] = ACTIONS(4513), - [anon_sym_BSLASHacrshort] = ACTIONS(4513), - [anon_sym_BSLASHAcrshort] = ACTIONS(4513), - [anon_sym_BSLASHACRshort] = ACTIONS(4513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4513), - [anon_sym_BSLASHacrlong] = ACTIONS(4513), - [anon_sym_BSLASHAcrlong] = ACTIONS(4513), - [anon_sym_BSLASHACRlong] = ACTIONS(4513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4513), - [anon_sym_BSLASHacrfull] = ACTIONS(4513), - [anon_sym_BSLASHAcrfull] = ACTIONS(4513), - [anon_sym_BSLASHACRfull] = ACTIONS(4513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4513), - [anon_sym_BSLASHacs] = ACTIONS(4513), - [anon_sym_BSLASHAcs] = ACTIONS(4513), - [anon_sym_BSLASHacsp] = ACTIONS(4513), - [anon_sym_BSLASHAcsp] = ACTIONS(4513), - [anon_sym_BSLASHacl] = ACTIONS(4513), - [anon_sym_BSLASHAcl] = ACTIONS(4513), - [anon_sym_BSLASHaclp] = ACTIONS(4513), - [anon_sym_BSLASHAclp] = ACTIONS(4513), - [anon_sym_BSLASHacf] = ACTIONS(4513), - [anon_sym_BSLASHAcf] = ACTIONS(4513), - [anon_sym_BSLASHacfp] = ACTIONS(4513), - [anon_sym_BSLASHAcfp] = ACTIONS(4513), - [anon_sym_BSLASHac] = ACTIONS(4513), - [anon_sym_BSLASHAc] = ACTIONS(4513), - [anon_sym_BSLASHacp] = ACTIONS(4513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4513), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4513), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4513), - [anon_sym_BSLASHcolor] = ACTIONS(4513), - [anon_sym_BSLASHcolorbox] = ACTIONS(4513), - [anon_sym_BSLASHtextcolor] = ACTIONS(4513), - [anon_sym_BSLASHpagecolor] = ACTIONS(4513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4513), + [413] = { + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(631), + [aux_sym__section_repeat3] = STATE(631), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [514] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(514), - [aux_sym__section_repeat4] = STATE(514), - [sym_command_name] = ACTIONS(4423), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4423), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_RPAREN] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_RBRACK] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_EQ] = ACTIONS(4421), - [anon_sym_BSLASHpart] = ACTIONS(4423), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddpart] = ACTIONS(4423), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4421), - [anon_sym_BSLASHchapter] = ACTIONS(4423), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddchap] = ACTIONS(4423), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsection] = ACTIONS(4423), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddsec] = ACTIONS(4423), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsubsection] = ACTIONS(4657), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4660), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4423), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4421), - [anon_sym_BSLASHparagraph] = ACTIONS(4423), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4423), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4421), - [anon_sym_BSLASHitem] = ACTIONS(4423), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4421), - [anon_sym_LBRACE] = ACTIONS(4421), - [sym_word] = ACTIONS(4423), - [sym_placeholder] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_CARET] = ACTIONS(4423), - [anon_sym__] = ACTIONS(4423), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_PIPE] = ACTIONS(4423), - [anon_sym_COLON] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4421), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4421), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4421), - [anon_sym_DOLLAR] = ACTIONS(4423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4421), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4421), - [anon_sym_BSLASHbegin] = ACTIONS(4423), - [anon_sym_BSLASHusepackage] = ACTIONS(4423), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4423), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4423), - [anon_sym_BSLASHinclude] = ACTIONS(4423), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4423), - [anon_sym_BSLASHinput] = ACTIONS(4423), - [anon_sym_BSLASHsubfile] = ACTIONS(4423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4423), - [anon_sym_BSLASHbibliography] = ACTIONS(4423), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4423), - [anon_sym_BSLASHincludesvg] = ACTIONS(4423), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4423), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4423), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4423), - [anon_sym_BSLASHimport] = ACTIONS(4423), - [anon_sym_BSLASHsubimport] = ACTIONS(4423), - [anon_sym_BSLASHinputfrom] = ACTIONS(4423), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4423), - [anon_sym_BSLASHincludefrom] = ACTIONS(4423), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4423), - [anon_sym_BSLASHcaption] = ACTIONS(4423), - [anon_sym_BSLASHcite] = ACTIONS(4423), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCite] = ACTIONS(4423), - [anon_sym_BSLASHnocite] = ACTIONS(4423), - [anon_sym_BSLASHcitet] = ACTIONS(4423), - [anon_sym_BSLASHcitep] = ACTIONS(4423), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteauthor] = ACTIONS(4423), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4423), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitetitle] = ACTIONS(4423), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteyear] = ACTIONS(4423), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitedate] = ACTIONS(4423), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteurl] = ACTIONS(4423), - [anon_sym_BSLASHfullcite] = ACTIONS(4423), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4423), - [anon_sym_BSLASHcitealt] = ACTIONS(4423), - [anon_sym_BSLASHcitealp] = ACTIONS(4423), - [anon_sym_BSLASHcitetext] = ACTIONS(4423), - [anon_sym_BSLASHparencite] = ACTIONS(4423), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHParencite] = ACTIONS(4423), - [anon_sym_BSLASHfootcite] = ACTIONS(4423), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4423), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4423), - [anon_sym_BSLASHtextcite] = ACTIONS(4423), - [anon_sym_BSLASHTextcite] = ACTIONS(4423), - [anon_sym_BSLASHsmartcite] = ACTIONS(4423), - [anon_sym_BSLASHSmartcite] = ACTIONS(4423), - [anon_sym_BSLASHsupercite] = ACTIONS(4423), - [anon_sym_BSLASHautocite] = ACTIONS(4423), - [anon_sym_BSLASHAutocite] = ACTIONS(4423), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHvolcite] = ACTIONS(4423), - [anon_sym_BSLASHVolcite] = ACTIONS(4423), - [anon_sym_BSLASHpvolcite] = ACTIONS(4423), - [anon_sym_BSLASHPvolcite] = ACTIONS(4423), - [anon_sym_BSLASHfvolcite] = ACTIONS(4423), - [anon_sym_BSLASHftvolcite] = ACTIONS(4423), - [anon_sym_BSLASHsvolcite] = ACTIONS(4423), - [anon_sym_BSLASHSvolcite] = ACTIONS(4423), - [anon_sym_BSLASHtvolcite] = ACTIONS(4423), - [anon_sym_BSLASHTvolcite] = ACTIONS(4423), - [anon_sym_BSLASHavolcite] = ACTIONS(4423), - [anon_sym_BSLASHAvolcite] = ACTIONS(4423), - [anon_sym_BSLASHnotecite] = ACTIONS(4423), - [anon_sym_BSLASHNotecite] = ACTIONS(4423), - [anon_sym_BSLASHpnotecite] = ACTIONS(4423), - [anon_sym_BSLASHPnotecite] = ACTIONS(4423), - [anon_sym_BSLASHfnotecite] = ACTIONS(4423), - [anon_sym_BSLASHlabel] = ACTIONS(4423), - [anon_sym_BSLASHref] = ACTIONS(4423), - [anon_sym_BSLASHeqref] = ACTIONS(4423), - [anon_sym_BSLASHvref] = ACTIONS(4423), - [anon_sym_BSLASHVref] = ACTIONS(4423), - [anon_sym_BSLASHautoref] = ACTIONS(4423), - [anon_sym_BSLASHpageref] = ACTIONS(4423), - [anon_sym_BSLASHcref] = ACTIONS(4423), - [anon_sym_BSLASHCref] = ACTIONS(4423), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4421), - [anon_sym_BSLASHnamecref] = ACTIONS(4423), - [anon_sym_BSLASHnameCref] = ACTIONS(4423), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4423), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4423), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4423), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4423), - [anon_sym_BSLASHlabelcref] = ACTIONS(4423), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4423), - [anon_sym_BSLASHcrefrange] = ACTIONS(4423), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCrefrange] = ACTIONS(4423), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4421), - [anon_sym_BSLASHnewlabel] = ACTIONS(4423), - [anon_sym_BSLASHnewcommand] = ACTIONS(4423), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4423), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4423), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4423), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4421), - [anon_sym_BSLASHdef] = ACTIONS(4423), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4423), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4423), - [anon_sym_BSLASHgls] = ACTIONS(4423), - [anon_sym_BSLASHGls] = ACTIONS(4423), - [anon_sym_BSLASHGLS] = ACTIONS(4423), - [anon_sym_BSLASHglspl] = ACTIONS(4423), - [anon_sym_BSLASHGlspl] = ACTIONS(4423), - [anon_sym_BSLASHGLSpl] = ACTIONS(4423), - [anon_sym_BSLASHglsdisp] = ACTIONS(4423), - [anon_sym_BSLASHglslink] = ACTIONS(4423), - [anon_sym_BSLASHglstext] = ACTIONS(4423), - [anon_sym_BSLASHGlstext] = ACTIONS(4423), - [anon_sym_BSLASHGLStext] = ACTIONS(4423), - [anon_sym_BSLASHglsfirst] = ACTIONS(4423), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4423), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4423), - [anon_sym_BSLASHglsplural] = ACTIONS(4423), - [anon_sym_BSLASHGlsplural] = ACTIONS(4423), - [anon_sym_BSLASHGLSplural] = ACTIONS(4423), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHglsname] = ACTIONS(4423), - [anon_sym_BSLASHGlsname] = ACTIONS(4423), - [anon_sym_BSLASHGLSname] = ACTIONS(4423), - [anon_sym_BSLASHglssymbol] = ACTIONS(4423), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4423), - [anon_sym_BSLASHglsdesc] = ACTIONS(4423), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4423), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4423), - [anon_sym_BSLASHglsuseri] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4423), - [anon_sym_BSLASHglsuserii] = ACTIONS(4423), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4423), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4423), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4423), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4423), - [anon_sym_BSLASHglsuserv] = ACTIONS(4423), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4423), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4423), - [anon_sym_BSLASHglsuservi] = ACTIONS(4423), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4423), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4423), - [anon_sym_BSLASHnewacronym] = ACTIONS(4423), - [anon_sym_BSLASHacrshort] = ACTIONS(4423), - [anon_sym_BSLASHAcrshort] = ACTIONS(4423), - [anon_sym_BSLASHACRshort] = ACTIONS(4423), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4423), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4423), - [anon_sym_BSLASHacrlong] = ACTIONS(4423), - [anon_sym_BSLASHAcrlong] = ACTIONS(4423), - [anon_sym_BSLASHACRlong] = ACTIONS(4423), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4423), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4423), - [anon_sym_BSLASHacrfull] = ACTIONS(4423), - [anon_sym_BSLASHAcrfull] = ACTIONS(4423), - [anon_sym_BSLASHACRfull] = ACTIONS(4423), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4423), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4423), - [anon_sym_BSLASHacs] = ACTIONS(4423), - [anon_sym_BSLASHAcs] = ACTIONS(4423), - [anon_sym_BSLASHacsp] = ACTIONS(4423), - [anon_sym_BSLASHAcsp] = ACTIONS(4423), - [anon_sym_BSLASHacl] = ACTIONS(4423), - [anon_sym_BSLASHAcl] = ACTIONS(4423), - [anon_sym_BSLASHaclp] = ACTIONS(4423), - [anon_sym_BSLASHAclp] = ACTIONS(4423), - [anon_sym_BSLASHacf] = ACTIONS(4423), - [anon_sym_BSLASHAcf] = ACTIONS(4423), - [anon_sym_BSLASHacfp] = ACTIONS(4423), - [anon_sym_BSLASHAcfp] = ACTIONS(4423), - [anon_sym_BSLASHac] = ACTIONS(4423), - [anon_sym_BSLASHAc] = ACTIONS(4423), - [anon_sym_BSLASHacp] = ACTIONS(4423), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4423), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4423), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4423), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4423), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4423), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4423), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4423), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4423), - [anon_sym_BSLASHcolor] = ACTIONS(4423), - [anon_sym_BSLASHcolorbox] = ACTIONS(4423), - [anon_sym_BSLASHtextcolor] = ACTIONS(4423), - [anon_sym_BSLASHpagecolor] = ACTIONS(4423), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4423), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4423), + [414] = { + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(632), + [aux_sym__section_repeat4] = STATE(632), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [515] = { - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(515), - [aux_sym__section_repeat5] = STATE(515), - [sym_command_name] = ACTIONS(4399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4399), - [anon_sym_LPAREN] = ACTIONS(4397), - [anon_sym_RPAREN] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4397), - [anon_sym_RBRACK] = ACTIONS(4397), - [anon_sym_COMMA] = ACTIONS(4397), - [anon_sym_EQ] = ACTIONS(4397), - [anon_sym_BSLASHpart] = ACTIONS(4399), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddpart] = ACTIONS(4399), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4397), - [anon_sym_BSLASHchapter] = ACTIONS(4399), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddchap] = ACTIONS(4399), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsection] = ACTIONS(4399), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddsec] = ACTIONS(4399), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubsection] = ACTIONS(4399), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4663), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4666), - [anon_sym_BSLASHparagraph] = ACTIONS(4399), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4399), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4397), - [anon_sym_BSLASHitem] = ACTIONS(4399), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(4397), - [sym_word] = ACTIONS(4399), - [sym_placeholder] = ACTIONS(4397), - [anon_sym_PLUS] = ACTIONS(4399), - [anon_sym_DASH] = ACTIONS(4399), - [anon_sym_STAR] = ACTIONS(4399), - [anon_sym_SLASH] = ACTIONS(4399), - [anon_sym_CARET] = ACTIONS(4399), - [anon_sym__] = ACTIONS(4399), - [anon_sym_LT] = ACTIONS(4399), - [anon_sym_GT] = ACTIONS(4399), - [anon_sym_BANG] = ACTIONS(4399), - [anon_sym_PIPE] = ACTIONS(4399), - [anon_sym_COLON] = ACTIONS(4399), - [anon_sym_SQUOTE] = ACTIONS(4399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4397), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4397), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4397), - [anon_sym_DOLLAR] = ACTIONS(4399), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4397), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4397), - [anon_sym_BSLASHbegin] = ACTIONS(4399), - [anon_sym_BSLASHusepackage] = ACTIONS(4399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4399), - [anon_sym_BSLASHinclude] = ACTIONS(4399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4399), - [anon_sym_BSLASHinput] = ACTIONS(4399), - [anon_sym_BSLASHsubfile] = ACTIONS(4399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4399), - [anon_sym_BSLASHbibliography] = ACTIONS(4399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4399), - [anon_sym_BSLASHincludesvg] = ACTIONS(4399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4399), - [anon_sym_BSLASHimport] = ACTIONS(4399), - [anon_sym_BSLASHsubimport] = ACTIONS(4399), - [anon_sym_BSLASHinputfrom] = ACTIONS(4399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4399), - [anon_sym_BSLASHincludefrom] = ACTIONS(4399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4399), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCite] = ACTIONS(4399), - [anon_sym_BSLASHnocite] = ACTIONS(4399), - [anon_sym_BSLASHcitet] = ACTIONS(4399), - [anon_sym_BSLASHcitep] = ACTIONS(4399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteauthor] = ACTIONS(4399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitetitle] = ACTIONS(4399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteyear] = ACTIONS(4399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitedate] = ACTIONS(4399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteurl] = ACTIONS(4399), - [anon_sym_BSLASHfullcite] = ACTIONS(4399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4399), - [anon_sym_BSLASHcitealt] = ACTIONS(4399), - [anon_sym_BSLASHcitealp] = ACTIONS(4399), - [anon_sym_BSLASHcitetext] = ACTIONS(4399), - [anon_sym_BSLASHparencite] = ACTIONS(4399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHParencite] = ACTIONS(4399), - [anon_sym_BSLASHfootcite] = ACTIONS(4399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4399), - [anon_sym_BSLASHtextcite] = ACTIONS(4399), - [anon_sym_BSLASHTextcite] = ACTIONS(4399), - [anon_sym_BSLASHsmartcite] = ACTIONS(4399), - [anon_sym_BSLASHSmartcite] = ACTIONS(4399), - [anon_sym_BSLASHsupercite] = ACTIONS(4399), - [anon_sym_BSLASHautocite] = ACTIONS(4399), - [anon_sym_BSLASHAutocite] = ACTIONS(4399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHvolcite] = ACTIONS(4399), - [anon_sym_BSLASHVolcite] = ACTIONS(4399), - [anon_sym_BSLASHpvolcite] = ACTIONS(4399), - [anon_sym_BSLASHPvolcite] = ACTIONS(4399), - [anon_sym_BSLASHfvolcite] = ACTIONS(4399), - [anon_sym_BSLASHftvolcite] = ACTIONS(4399), - [anon_sym_BSLASHsvolcite] = ACTIONS(4399), - [anon_sym_BSLASHSvolcite] = ACTIONS(4399), - [anon_sym_BSLASHtvolcite] = ACTIONS(4399), - [anon_sym_BSLASHTvolcite] = ACTIONS(4399), - [anon_sym_BSLASHavolcite] = ACTIONS(4399), - [anon_sym_BSLASHAvolcite] = ACTIONS(4399), - [anon_sym_BSLASHnotecite] = ACTIONS(4399), - [anon_sym_BSLASHNotecite] = ACTIONS(4399), - [anon_sym_BSLASHpnotecite] = ACTIONS(4399), - [anon_sym_BSLASHPnotecite] = ACTIONS(4399), - [anon_sym_BSLASHfnotecite] = ACTIONS(4399), - [anon_sym_BSLASHlabel] = ACTIONS(4399), - [anon_sym_BSLASHref] = ACTIONS(4399), - [anon_sym_BSLASHeqref] = ACTIONS(4399), - [anon_sym_BSLASHvref] = ACTIONS(4399), - [anon_sym_BSLASHVref] = ACTIONS(4399), - [anon_sym_BSLASHautoref] = ACTIONS(4399), - [anon_sym_BSLASHpageref] = ACTIONS(4399), - [anon_sym_BSLASHcref] = ACTIONS(4399), - [anon_sym_BSLASHCref] = ACTIONS(4399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4397), - [anon_sym_BSLASHnamecref] = ACTIONS(4399), - [anon_sym_BSLASHnameCref] = ACTIONS(4399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4399), - [anon_sym_BSLASHlabelcref] = ACTIONS(4399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4399), - [anon_sym_BSLASHcrefrange] = ACTIONS(4399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCrefrange] = ACTIONS(4399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4397), - [anon_sym_BSLASHnewlabel] = ACTIONS(4399), - [anon_sym_BSLASHnewcommand] = ACTIONS(4399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4397), - [anon_sym_BSLASHdef] = ACTIONS(4399), - [anon_sym_BSLASHlet] = ACTIONS(4399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4399), - [anon_sym_BSLASHgls] = ACTIONS(4399), - [anon_sym_BSLASHGls] = ACTIONS(4399), - [anon_sym_BSLASHGLS] = ACTIONS(4399), - [anon_sym_BSLASHglspl] = ACTIONS(4399), - [anon_sym_BSLASHGlspl] = ACTIONS(4399), - [anon_sym_BSLASHGLSpl] = ACTIONS(4399), - [anon_sym_BSLASHglsdisp] = ACTIONS(4399), - [anon_sym_BSLASHglslink] = ACTIONS(4399), - [anon_sym_BSLASHglstext] = ACTIONS(4399), - [anon_sym_BSLASHGlstext] = ACTIONS(4399), - [anon_sym_BSLASHGLStext] = ACTIONS(4399), - [anon_sym_BSLASHglsfirst] = ACTIONS(4399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4399), - [anon_sym_BSLASHglsplural] = ACTIONS(4399), - [anon_sym_BSLASHGlsplural] = ACTIONS(4399), - [anon_sym_BSLASHGLSplural] = ACTIONS(4399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHglsname] = ACTIONS(4399), - [anon_sym_BSLASHGlsname] = ACTIONS(4399), - [anon_sym_BSLASHGLSname] = ACTIONS(4399), - [anon_sym_BSLASHglssymbol] = ACTIONS(4399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4399), - [anon_sym_BSLASHglsdesc] = ACTIONS(4399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4399), - [anon_sym_BSLASHglsuseri] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4399), - [anon_sym_BSLASHglsuserii] = ACTIONS(4399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4399), - [anon_sym_BSLASHglsuserv] = ACTIONS(4399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4399), - [anon_sym_BSLASHglsuservi] = ACTIONS(4399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4399), - [anon_sym_BSLASHnewacronym] = ACTIONS(4399), - [anon_sym_BSLASHacrshort] = ACTIONS(4399), - [anon_sym_BSLASHAcrshort] = ACTIONS(4399), - [anon_sym_BSLASHACRshort] = ACTIONS(4399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4399), - [anon_sym_BSLASHacrlong] = ACTIONS(4399), - [anon_sym_BSLASHAcrlong] = ACTIONS(4399), - [anon_sym_BSLASHACRlong] = ACTIONS(4399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4399), - [anon_sym_BSLASHacrfull] = ACTIONS(4399), - [anon_sym_BSLASHAcrfull] = ACTIONS(4399), - [anon_sym_BSLASHACRfull] = ACTIONS(4399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4399), - [anon_sym_BSLASHacs] = ACTIONS(4399), - [anon_sym_BSLASHAcs] = ACTIONS(4399), - [anon_sym_BSLASHacsp] = ACTIONS(4399), - [anon_sym_BSLASHAcsp] = ACTIONS(4399), - [anon_sym_BSLASHacl] = ACTIONS(4399), - [anon_sym_BSLASHAcl] = ACTIONS(4399), - [anon_sym_BSLASHaclp] = ACTIONS(4399), - [anon_sym_BSLASHAclp] = ACTIONS(4399), - [anon_sym_BSLASHacf] = ACTIONS(4399), - [anon_sym_BSLASHAcf] = ACTIONS(4399), - [anon_sym_BSLASHacfp] = ACTIONS(4399), - [anon_sym_BSLASHAcfp] = ACTIONS(4399), - [anon_sym_BSLASHac] = ACTIONS(4399), - [anon_sym_BSLASHAc] = ACTIONS(4399), - [anon_sym_BSLASHacp] = ACTIONS(4399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4399), - [anon_sym_BSLASHcolor] = ACTIONS(4399), - [anon_sym_BSLASHcolorbox] = ACTIONS(4399), - [anon_sym_BSLASHtextcolor] = ACTIONS(4399), - [anon_sym_BSLASHpagecolor] = ACTIONS(4399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4399), + [415] = { + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(633), + [aux_sym__section_repeat5] = STATE(633), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [516] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(516), - [aux_sym__section_repeat6] = STATE(516), - [sym_command_name] = ACTIONS(4409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_RPAREN] = ACTIONS(4407), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_RBRACK] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_BSLASHpart] = ACTIONS(4409), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddpart] = ACTIONS(4409), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4407), - [anon_sym_BSLASHchapter] = ACTIONS(4409), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddchap] = ACTIONS(4409), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsection] = ACTIONS(4409), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddsec] = ACTIONS(4409), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsubsection] = ACTIONS(4409), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4409), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHparagraph] = ACTIONS(4669), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4672), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4409), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4407), - [anon_sym_BSLASHitem] = ACTIONS(4409), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4407), - [anon_sym_LBRACE] = ACTIONS(4407), - [sym_word] = ACTIONS(4409), - [sym_placeholder] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4409), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_STAR] = ACTIONS(4409), - [anon_sym_SLASH] = ACTIONS(4409), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym__] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4409), - [anon_sym_GT] = ACTIONS(4409), - [anon_sym_BANG] = ACTIONS(4409), - [anon_sym_PIPE] = ACTIONS(4409), - [anon_sym_COLON] = ACTIONS(4409), - [anon_sym_SQUOTE] = ACTIONS(4409), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4407), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4407), - [anon_sym_DOLLAR] = ACTIONS(4409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4407), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4407), - [anon_sym_BSLASHbegin] = ACTIONS(4409), - [anon_sym_BSLASHusepackage] = ACTIONS(4409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4409), - [anon_sym_BSLASHinclude] = ACTIONS(4409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4409), - [anon_sym_BSLASHinput] = ACTIONS(4409), - [anon_sym_BSLASHsubfile] = ACTIONS(4409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4409), - [anon_sym_BSLASHbibliography] = ACTIONS(4409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4409), - [anon_sym_BSLASHincludesvg] = ACTIONS(4409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4409), - [anon_sym_BSLASHimport] = ACTIONS(4409), - [anon_sym_BSLASHsubimport] = ACTIONS(4409), - [anon_sym_BSLASHinputfrom] = ACTIONS(4409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4409), - [anon_sym_BSLASHincludefrom] = ACTIONS(4409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4409), - [anon_sym_BSLASHcaption] = ACTIONS(4409), - [anon_sym_BSLASHcite] = ACTIONS(4409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCite] = ACTIONS(4409), - [anon_sym_BSLASHnocite] = ACTIONS(4409), - [anon_sym_BSLASHcitet] = ACTIONS(4409), - [anon_sym_BSLASHcitep] = ACTIONS(4409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteauthor] = ACTIONS(4409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitetitle] = ACTIONS(4409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteyear] = ACTIONS(4409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitedate] = ACTIONS(4409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteurl] = ACTIONS(4409), - [anon_sym_BSLASHfullcite] = ACTIONS(4409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4409), - [anon_sym_BSLASHcitealt] = ACTIONS(4409), - [anon_sym_BSLASHcitealp] = ACTIONS(4409), - [anon_sym_BSLASHcitetext] = ACTIONS(4409), - [anon_sym_BSLASHparencite] = ACTIONS(4409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHParencite] = ACTIONS(4409), - [anon_sym_BSLASHfootcite] = ACTIONS(4409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4409), - [anon_sym_BSLASHtextcite] = ACTIONS(4409), - [anon_sym_BSLASHTextcite] = ACTIONS(4409), - [anon_sym_BSLASHsmartcite] = ACTIONS(4409), - [anon_sym_BSLASHSmartcite] = ACTIONS(4409), - [anon_sym_BSLASHsupercite] = ACTIONS(4409), - [anon_sym_BSLASHautocite] = ACTIONS(4409), - [anon_sym_BSLASHAutocite] = ACTIONS(4409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHvolcite] = ACTIONS(4409), - [anon_sym_BSLASHVolcite] = ACTIONS(4409), - [anon_sym_BSLASHpvolcite] = ACTIONS(4409), - [anon_sym_BSLASHPvolcite] = ACTIONS(4409), - [anon_sym_BSLASHfvolcite] = ACTIONS(4409), - [anon_sym_BSLASHftvolcite] = ACTIONS(4409), - [anon_sym_BSLASHsvolcite] = ACTIONS(4409), - [anon_sym_BSLASHSvolcite] = ACTIONS(4409), - [anon_sym_BSLASHtvolcite] = ACTIONS(4409), - [anon_sym_BSLASHTvolcite] = ACTIONS(4409), - [anon_sym_BSLASHavolcite] = ACTIONS(4409), - [anon_sym_BSLASHAvolcite] = ACTIONS(4409), - [anon_sym_BSLASHnotecite] = ACTIONS(4409), - [anon_sym_BSLASHNotecite] = ACTIONS(4409), - [anon_sym_BSLASHpnotecite] = ACTIONS(4409), - [anon_sym_BSLASHPnotecite] = ACTIONS(4409), - [anon_sym_BSLASHfnotecite] = ACTIONS(4409), - [anon_sym_BSLASHlabel] = ACTIONS(4409), - [anon_sym_BSLASHref] = ACTIONS(4409), - [anon_sym_BSLASHeqref] = ACTIONS(4409), - [anon_sym_BSLASHvref] = ACTIONS(4409), - [anon_sym_BSLASHVref] = ACTIONS(4409), - [anon_sym_BSLASHautoref] = ACTIONS(4409), - [anon_sym_BSLASHpageref] = ACTIONS(4409), - [anon_sym_BSLASHcref] = ACTIONS(4409), - [anon_sym_BSLASHCref] = ACTIONS(4409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4407), - [anon_sym_BSLASHnamecref] = ACTIONS(4409), - [anon_sym_BSLASHnameCref] = ACTIONS(4409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4409), - [anon_sym_BSLASHlabelcref] = ACTIONS(4409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4409), - [anon_sym_BSLASHcrefrange] = ACTIONS(4409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCrefrange] = ACTIONS(4409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4407), - [anon_sym_BSLASHnewlabel] = ACTIONS(4409), - [anon_sym_BSLASHnewcommand] = ACTIONS(4409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4407), - [anon_sym_BSLASHdef] = ACTIONS(4409), - [anon_sym_BSLASHlet] = ACTIONS(4409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4409), - [anon_sym_BSLASHgls] = ACTIONS(4409), - [anon_sym_BSLASHGls] = ACTIONS(4409), - [anon_sym_BSLASHGLS] = ACTIONS(4409), - [anon_sym_BSLASHglspl] = ACTIONS(4409), - [anon_sym_BSLASHGlspl] = ACTIONS(4409), - [anon_sym_BSLASHGLSpl] = ACTIONS(4409), - [anon_sym_BSLASHglsdisp] = ACTIONS(4409), - [anon_sym_BSLASHglslink] = ACTIONS(4409), - [anon_sym_BSLASHglstext] = ACTIONS(4409), - [anon_sym_BSLASHGlstext] = ACTIONS(4409), - [anon_sym_BSLASHGLStext] = ACTIONS(4409), - [anon_sym_BSLASHglsfirst] = ACTIONS(4409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4409), - [anon_sym_BSLASHglsplural] = ACTIONS(4409), - [anon_sym_BSLASHGlsplural] = ACTIONS(4409), - [anon_sym_BSLASHGLSplural] = ACTIONS(4409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHglsname] = ACTIONS(4409), - [anon_sym_BSLASHGlsname] = ACTIONS(4409), - [anon_sym_BSLASHGLSname] = ACTIONS(4409), - [anon_sym_BSLASHglssymbol] = ACTIONS(4409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4409), - [anon_sym_BSLASHglsdesc] = ACTIONS(4409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4409), - [anon_sym_BSLASHglsuseri] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4409), - [anon_sym_BSLASHglsuserii] = ACTIONS(4409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4409), - [anon_sym_BSLASHglsuserv] = ACTIONS(4409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4409), - [anon_sym_BSLASHglsuservi] = ACTIONS(4409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4409), - [anon_sym_BSLASHnewacronym] = ACTIONS(4409), - [anon_sym_BSLASHacrshort] = ACTIONS(4409), - [anon_sym_BSLASHAcrshort] = ACTIONS(4409), - [anon_sym_BSLASHACRshort] = ACTIONS(4409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4409), - [anon_sym_BSLASHacrlong] = ACTIONS(4409), - [anon_sym_BSLASHAcrlong] = ACTIONS(4409), - [anon_sym_BSLASHACRlong] = ACTIONS(4409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4409), - [anon_sym_BSLASHacrfull] = ACTIONS(4409), - [anon_sym_BSLASHAcrfull] = ACTIONS(4409), - [anon_sym_BSLASHACRfull] = ACTIONS(4409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4409), - [anon_sym_BSLASHacs] = ACTIONS(4409), - [anon_sym_BSLASHAcs] = ACTIONS(4409), - [anon_sym_BSLASHacsp] = ACTIONS(4409), - [anon_sym_BSLASHAcsp] = ACTIONS(4409), - [anon_sym_BSLASHacl] = ACTIONS(4409), - [anon_sym_BSLASHAcl] = ACTIONS(4409), - [anon_sym_BSLASHaclp] = ACTIONS(4409), - [anon_sym_BSLASHAclp] = ACTIONS(4409), - [anon_sym_BSLASHacf] = ACTIONS(4409), - [anon_sym_BSLASHAcf] = ACTIONS(4409), - [anon_sym_BSLASHacfp] = ACTIONS(4409), - [anon_sym_BSLASHAcfp] = ACTIONS(4409), - [anon_sym_BSLASHac] = ACTIONS(4409), - [anon_sym_BSLASHAc] = ACTIONS(4409), - [anon_sym_BSLASHacp] = ACTIONS(4409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4409), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4409), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4409), - [anon_sym_BSLASHcolor] = ACTIONS(4409), - [anon_sym_BSLASHcolorbox] = ACTIONS(4409), - [anon_sym_BSLASHtextcolor] = ACTIONS(4409), - [anon_sym_BSLASHpagecolor] = ACTIONS(4409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4409), + [416] = { + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(634), + [aux_sym__section_repeat6] = STATE(634), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [517] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), + [417] = { + [sym_curly_group] = STATE(952), + [sym_mixed_group] = STATE(952), + [aux_sym_generic_command_repeat1] = STATE(417), + [sym_command_name] = ACTIONS(4461), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4633), + [anon_sym_RPAREN] = ACTIONS(4459), + [anon_sym_LBRACK] = ACTIONS(4633), + [anon_sym_RBRACK] = ACTIONS(4459), + [anon_sym_COMMA] = ACTIONS(4459), + [anon_sym_EQ] = ACTIONS(4459), + [anon_sym_BSLASHpart] = ACTIONS(4461), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddpart] = ACTIONS(4461), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4459), + [anon_sym_BSLASHchapter] = ACTIONS(4461), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddchap] = ACTIONS(4461), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsection] = ACTIONS(4461), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddsec] = ACTIONS(4461), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubsection] = ACTIONS(4461), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4461), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHparagraph] = ACTIONS(4461), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4461), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4459), + [anon_sym_BSLASHitem] = ACTIONS(4461), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4459), + [anon_sym_LBRACE] = ACTIONS(4636), + [sym_word] = ACTIONS(4461), + [sym_placeholder] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_STAR] = ACTIONS(4461), + [anon_sym_SLASH] = ACTIONS(4461), + [anon_sym_CARET] = ACTIONS(4461), + [anon_sym__] = ACTIONS(4461), + [anon_sym_LT] = ACTIONS(4461), + [anon_sym_GT] = ACTIONS(4461), + [anon_sym_BANG] = ACTIONS(4461), + [anon_sym_PIPE] = ACTIONS(4461), + [anon_sym_COLON] = ACTIONS(4461), + [anon_sym_SQUOTE] = ACTIONS(4461), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), + [anon_sym_DOLLAR] = ACTIONS(4461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), + [anon_sym_BSLASHbegin] = ACTIONS(4461), + [anon_sym_BSLASHusepackage] = ACTIONS(4461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), + [anon_sym_BSLASHinclude] = ACTIONS(4461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), + [anon_sym_BSLASHinput] = ACTIONS(4461), + [anon_sym_BSLASHsubfile] = ACTIONS(4461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), + [anon_sym_BSLASHbibliography] = ACTIONS(4461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), + [anon_sym_BSLASHincludesvg] = ACTIONS(4461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), + [anon_sym_BSLASHimport] = ACTIONS(4461), + [anon_sym_BSLASHsubimport] = ACTIONS(4461), + [anon_sym_BSLASHinputfrom] = ACTIONS(4461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), + [anon_sym_BSLASHincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHcaption] = ACTIONS(4461), + [anon_sym_BSLASHcite] = ACTIONS(4461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCite] = ACTIONS(4461), + [anon_sym_BSLASHnocite] = ACTIONS(4461), + [anon_sym_BSLASHcitet] = ACTIONS(4461), + [anon_sym_BSLASHcitep] = ACTIONS(4461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteauthor] = ACTIONS(4461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitetitle] = ACTIONS(4461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteyear] = ACTIONS(4461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitedate] = ACTIONS(4461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteurl] = ACTIONS(4461), + [anon_sym_BSLASHfullcite] = ACTIONS(4461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), + [anon_sym_BSLASHcitealt] = ACTIONS(4461), + [anon_sym_BSLASHcitealp] = ACTIONS(4461), + [anon_sym_BSLASHcitetext] = ACTIONS(4461), + [anon_sym_BSLASHparencite] = ACTIONS(4461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHParencite] = ACTIONS(4461), + [anon_sym_BSLASHfootcite] = ACTIONS(4461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), + [anon_sym_BSLASHtextcite] = ACTIONS(4461), + [anon_sym_BSLASHTextcite] = ACTIONS(4461), + [anon_sym_BSLASHsmartcite] = ACTIONS(4461), + [anon_sym_BSLASHSmartcite] = ACTIONS(4461), + [anon_sym_BSLASHsupercite] = ACTIONS(4461), + [anon_sym_BSLASHautocite] = ACTIONS(4461), + [anon_sym_BSLASHAutocite] = ACTIONS(4461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHvolcite] = ACTIONS(4461), + [anon_sym_BSLASHVolcite] = ACTIONS(4461), + [anon_sym_BSLASHpvolcite] = ACTIONS(4461), + [anon_sym_BSLASHPvolcite] = ACTIONS(4461), + [anon_sym_BSLASHfvolcite] = ACTIONS(4461), + [anon_sym_BSLASHftvolcite] = ACTIONS(4461), + [anon_sym_BSLASHsvolcite] = ACTIONS(4461), + [anon_sym_BSLASHSvolcite] = ACTIONS(4461), + [anon_sym_BSLASHtvolcite] = ACTIONS(4461), + [anon_sym_BSLASHTvolcite] = ACTIONS(4461), + [anon_sym_BSLASHavolcite] = ACTIONS(4461), + [anon_sym_BSLASHAvolcite] = ACTIONS(4461), + [anon_sym_BSLASHnotecite] = ACTIONS(4461), + [anon_sym_BSLASHNotecite] = ACTIONS(4461), + [anon_sym_BSLASHpnotecite] = ACTIONS(4461), + [anon_sym_BSLASHPnotecite] = ACTIONS(4461), + [anon_sym_BSLASHfnotecite] = ACTIONS(4461), + [anon_sym_BSLASHlabel] = ACTIONS(4461), + [anon_sym_BSLASHref] = ACTIONS(4461), + [anon_sym_BSLASHeqref] = ACTIONS(4461), + [anon_sym_BSLASHvref] = ACTIONS(4461), + [anon_sym_BSLASHVref] = ACTIONS(4461), + [anon_sym_BSLASHautoref] = ACTIONS(4461), + [anon_sym_BSLASHpageref] = ACTIONS(4461), + [anon_sym_BSLASHcref] = ACTIONS(4461), + [anon_sym_BSLASHCref] = ACTIONS(4461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnameCref] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHlabelcref] = ACTIONS(4461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCrefrange] = ACTIONS(4461), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnewlabel] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), + [anon_sym_BSLASHdef] = ACTIONS(4461), + [anon_sym_BSLASHlet] = ACTIONS(4461), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), + [anon_sym_BSLASHgls] = ACTIONS(4461), + [anon_sym_BSLASHGls] = ACTIONS(4461), + [anon_sym_BSLASHGLS] = ACTIONS(4461), + [anon_sym_BSLASHglspl] = ACTIONS(4461), + [anon_sym_BSLASHGlspl] = ACTIONS(4461), + [anon_sym_BSLASHGLSpl] = ACTIONS(4461), + [anon_sym_BSLASHglsdisp] = ACTIONS(4461), + [anon_sym_BSLASHglslink] = ACTIONS(4461), + [anon_sym_BSLASHglstext] = ACTIONS(4461), + [anon_sym_BSLASHGlstext] = ACTIONS(4461), + [anon_sym_BSLASHGLStext] = ACTIONS(4461), + [anon_sym_BSLASHglsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), + [anon_sym_BSLASHglsplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSplural] = ACTIONS(4461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHglsname] = ACTIONS(4461), + [anon_sym_BSLASHGlsname] = ACTIONS(4461), + [anon_sym_BSLASHGLSname] = ACTIONS(4461), + [anon_sym_BSLASHglssymbol] = ACTIONS(4461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), + [anon_sym_BSLASHglsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), + [anon_sym_BSLASHglsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), + [anon_sym_BSLASHglsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), + [anon_sym_BSLASHglsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), + [anon_sym_BSLASHglsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), + [anon_sym_BSLASHnewacronym] = ACTIONS(4461), + [anon_sym_BSLASHacrshort] = ACTIONS(4461), + [anon_sym_BSLASHAcrshort] = ACTIONS(4461), + [anon_sym_BSLASHACRshort] = ACTIONS(4461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), + [anon_sym_BSLASHacrlong] = ACTIONS(4461), + [anon_sym_BSLASHAcrlong] = ACTIONS(4461), + [anon_sym_BSLASHACRlong] = ACTIONS(4461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), + [anon_sym_BSLASHacrfull] = ACTIONS(4461), + [anon_sym_BSLASHAcrfull] = ACTIONS(4461), + [anon_sym_BSLASHACRfull] = ACTIONS(4461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), + [anon_sym_BSLASHacs] = ACTIONS(4461), + [anon_sym_BSLASHAcs] = ACTIONS(4461), + [anon_sym_BSLASHacsp] = ACTIONS(4461), + [anon_sym_BSLASHAcsp] = ACTIONS(4461), + [anon_sym_BSLASHacl] = ACTIONS(4461), + [anon_sym_BSLASHAcl] = ACTIONS(4461), + [anon_sym_BSLASHaclp] = ACTIONS(4461), + [anon_sym_BSLASHAclp] = ACTIONS(4461), + [anon_sym_BSLASHacf] = ACTIONS(4461), + [anon_sym_BSLASHAcf] = ACTIONS(4461), + [anon_sym_BSLASHacfp] = ACTIONS(4461), + [anon_sym_BSLASHAcfp] = ACTIONS(4461), + [anon_sym_BSLASHac] = ACTIONS(4461), + [anon_sym_BSLASHAc] = ACTIONS(4461), + [anon_sym_BSLASHacp] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), + [anon_sym_BSLASHcolor] = ACTIONS(4461), + [anon_sym_BSLASHcolorbox] = ACTIONS(4461), + [anon_sym_BSLASHtextcolor] = ACTIONS(4461), + [anon_sym_BSLASHpagecolor] = ACTIONS(4461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), + [anon_sym_BSLASHtext] = ACTIONS(4461), + [anon_sym_BSLASHintertext] = ACTIONS(4461), + [anon_sym_shortintertext] = ACTIONS(4461), + }, + [418] = { + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(389), + [aux_sym__section_repeat6] = STATE(389), [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -176598,10 +148964,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), - [anon_sym_BSLASHparagraph] = ACTIONS(4479), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4675), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4678), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), [anon_sym_BSLASHitem] = ACTIONS(4479), [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), [anon_sym_LBRACE] = ACTIONS(4477), @@ -176621,11 +148987,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(4479), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4477), [anon_sym_DOLLAR] = ACTIONS(4479), [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHend] = ACTIONS(4479), [anon_sym_BSLASHusepackage] = ACTIONS(4479), [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), @@ -176839,23676 +149205,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(4479), [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [518] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(4455), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4453), - [anon_sym_RPAREN] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4453), - [anon_sym_RBRACK] = ACTIONS(4453), - [anon_sym_COMMA] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(4453), - [anon_sym_BSLASHpart] = ACTIONS(4455), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddpart] = ACTIONS(4455), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4453), - [anon_sym_BSLASHchapter] = ACTIONS(4455), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddchap] = ACTIONS(4455), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsection] = ACTIONS(4455), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddsec] = ACTIONS(4455), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubsection] = ACTIONS(4455), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHparagraph] = ACTIONS(4455), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4453), - [anon_sym_BSLASHitem] = ACTIONS(4681), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4684), - [anon_sym_LBRACE] = ACTIONS(4453), - [sym_word] = ACTIONS(4455), - [sym_placeholder] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(4455), - [anon_sym_STAR] = ACTIONS(4455), - [anon_sym_SLASH] = ACTIONS(4455), - [anon_sym_CARET] = ACTIONS(4455), - [anon_sym__] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4455), - [anon_sym_GT] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4455), - [anon_sym_PIPE] = ACTIONS(4455), - [anon_sym_COLON] = ACTIONS(4455), - [anon_sym_SQUOTE] = ACTIONS(4455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4453), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4453), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4453), - [anon_sym_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4453), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4453), - [anon_sym_BSLASHbegin] = ACTIONS(4455), - [anon_sym_BSLASHusepackage] = ACTIONS(4455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4455), - [anon_sym_BSLASHinclude] = ACTIONS(4455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4455), - [anon_sym_BSLASHinput] = ACTIONS(4455), - [anon_sym_BSLASHsubfile] = ACTIONS(4455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4455), - [anon_sym_BSLASHbibliography] = ACTIONS(4455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4455), - [anon_sym_BSLASHincludesvg] = ACTIONS(4455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4455), - [anon_sym_BSLASHimport] = ACTIONS(4455), - [anon_sym_BSLASHsubimport] = ACTIONS(4455), - [anon_sym_BSLASHinputfrom] = ACTIONS(4455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4455), - [anon_sym_BSLASHincludefrom] = ACTIONS(4455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4455), - [anon_sym_BSLASHcaption] = ACTIONS(4455), - [anon_sym_BSLASHcite] = ACTIONS(4455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCite] = ACTIONS(4455), - [anon_sym_BSLASHnocite] = ACTIONS(4455), - [anon_sym_BSLASHcitet] = ACTIONS(4455), - [anon_sym_BSLASHcitep] = ACTIONS(4455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteauthor] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitetitle] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteyear] = ACTIONS(4455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitedate] = ACTIONS(4455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteurl] = ACTIONS(4455), - [anon_sym_BSLASHfullcite] = ACTIONS(4455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4455), - [anon_sym_BSLASHcitealt] = ACTIONS(4455), - [anon_sym_BSLASHcitealp] = ACTIONS(4455), - [anon_sym_BSLASHcitetext] = ACTIONS(4455), - [anon_sym_BSLASHparencite] = ACTIONS(4455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHParencite] = ACTIONS(4455), - [anon_sym_BSLASHfootcite] = ACTIONS(4455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4455), - [anon_sym_BSLASHtextcite] = ACTIONS(4455), - [anon_sym_BSLASHTextcite] = ACTIONS(4455), - [anon_sym_BSLASHsmartcite] = ACTIONS(4455), - [anon_sym_BSLASHSmartcite] = ACTIONS(4455), - [anon_sym_BSLASHsupercite] = ACTIONS(4455), - [anon_sym_BSLASHautocite] = ACTIONS(4455), - [anon_sym_BSLASHAutocite] = ACTIONS(4455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHvolcite] = ACTIONS(4455), - [anon_sym_BSLASHVolcite] = ACTIONS(4455), - [anon_sym_BSLASHpvolcite] = ACTIONS(4455), - [anon_sym_BSLASHPvolcite] = ACTIONS(4455), - [anon_sym_BSLASHfvolcite] = ACTIONS(4455), - [anon_sym_BSLASHftvolcite] = ACTIONS(4455), - [anon_sym_BSLASHsvolcite] = ACTIONS(4455), - [anon_sym_BSLASHSvolcite] = ACTIONS(4455), - [anon_sym_BSLASHtvolcite] = ACTIONS(4455), - [anon_sym_BSLASHTvolcite] = ACTIONS(4455), - [anon_sym_BSLASHavolcite] = ACTIONS(4455), - [anon_sym_BSLASHAvolcite] = ACTIONS(4455), - [anon_sym_BSLASHnotecite] = ACTIONS(4455), - [anon_sym_BSLASHNotecite] = ACTIONS(4455), - [anon_sym_BSLASHpnotecite] = ACTIONS(4455), - [anon_sym_BSLASHPnotecite] = ACTIONS(4455), - [anon_sym_BSLASHfnotecite] = ACTIONS(4455), - [anon_sym_BSLASHlabel] = ACTIONS(4455), - [anon_sym_BSLASHref] = ACTIONS(4455), - [anon_sym_BSLASHeqref] = ACTIONS(4455), - [anon_sym_BSLASHvref] = ACTIONS(4455), - [anon_sym_BSLASHVref] = ACTIONS(4455), - [anon_sym_BSLASHautoref] = ACTIONS(4455), - [anon_sym_BSLASHpageref] = ACTIONS(4455), - [anon_sym_BSLASHcref] = ACTIONS(4455), - [anon_sym_BSLASHCref] = ACTIONS(4455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4453), - [anon_sym_BSLASHnamecref] = ACTIONS(4455), - [anon_sym_BSLASHnameCref] = ACTIONS(4455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4455), - [anon_sym_BSLASHlabelcref] = ACTIONS(4455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4455), - [anon_sym_BSLASHcrefrange] = ACTIONS(4455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCrefrange] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4453), - [anon_sym_BSLASHnewlabel] = ACTIONS(4455), - [anon_sym_BSLASHnewcommand] = ACTIONS(4455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4453), - [anon_sym_BSLASHdef] = ACTIONS(4455), - [anon_sym_BSLASHlet] = ACTIONS(4455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4455), - [anon_sym_BSLASHgls] = ACTIONS(4455), - [anon_sym_BSLASHGls] = ACTIONS(4455), - [anon_sym_BSLASHGLS] = ACTIONS(4455), - [anon_sym_BSLASHglspl] = ACTIONS(4455), - [anon_sym_BSLASHGlspl] = ACTIONS(4455), - [anon_sym_BSLASHGLSpl] = ACTIONS(4455), - [anon_sym_BSLASHglsdisp] = ACTIONS(4455), - [anon_sym_BSLASHglslink] = ACTIONS(4455), - [anon_sym_BSLASHglstext] = ACTIONS(4455), - [anon_sym_BSLASHGlstext] = ACTIONS(4455), - [anon_sym_BSLASHGLStext] = ACTIONS(4455), - [anon_sym_BSLASHglsfirst] = ACTIONS(4455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4455), - [anon_sym_BSLASHglsplural] = ACTIONS(4455), - [anon_sym_BSLASHGlsplural] = ACTIONS(4455), - [anon_sym_BSLASHGLSplural] = ACTIONS(4455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHglsname] = ACTIONS(4455), - [anon_sym_BSLASHGlsname] = ACTIONS(4455), - [anon_sym_BSLASHGLSname] = ACTIONS(4455), - [anon_sym_BSLASHglssymbol] = ACTIONS(4455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4455), - [anon_sym_BSLASHglsdesc] = ACTIONS(4455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4455), - [anon_sym_BSLASHglsuseri] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4455), - [anon_sym_BSLASHglsuserii] = ACTIONS(4455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4455), - [anon_sym_BSLASHglsuserv] = ACTIONS(4455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4455), - [anon_sym_BSLASHglsuservi] = ACTIONS(4455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4455), - [anon_sym_BSLASHnewacronym] = ACTIONS(4455), - [anon_sym_BSLASHacrshort] = ACTIONS(4455), - [anon_sym_BSLASHAcrshort] = ACTIONS(4455), - [anon_sym_BSLASHACRshort] = ACTIONS(4455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4455), - [anon_sym_BSLASHacrlong] = ACTIONS(4455), - [anon_sym_BSLASHAcrlong] = ACTIONS(4455), - [anon_sym_BSLASHACRlong] = ACTIONS(4455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4455), - [anon_sym_BSLASHacrfull] = ACTIONS(4455), - [anon_sym_BSLASHAcrfull] = ACTIONS(4455), - [anon_sym_BSLASHACRfull] = ACTIONS(4455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4455), - [anon_sym_BSLASHacs] = ACTIONS(4455), - [anon_sym_BSLASHAcs] = ACTIONS(4455), - [anon_sym_BSLASHacsp] = ACTIONS(4455), - [anon_sym_BSLASHAcsp] = ACTIONS(4455), - [anon_sym_BSLASHacl] = ACTIONS(4455), - [anon_sym_BSLASHAcl] = ACTIONS(4455), - [anon_sym_BSLASHaclp] = ACTIONS(4455), - [anon_sym_BSLASHAclp] = ACTIONS(4455), - [anon_sym_BSLASHacf] = ACTIONS(4455), - [anon_sym_BSLASHAcf] = ACTIONS(4455), - [anon_sym_BSLASHacfp] = ACTIONS(4455), - [anon_sym_BSLASHAcfp] = ACTIONS(4455), - [anon_sym_BSLASHac] = ACTIONS(4455), - [anon_sym_BSLASHAc] = ACTIONS(4455), - [anon_sym_BSLASHacp] = ACTIONS(4455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4455), - [anon_sym_BSLASHcolor] = ACTIONS(4455), - [anon_sym_BSLASHcolorbox] = ACTIONS(4455), - [anon_sym_BSLASHtextcolor] = ACTIONS(4455), - [anon_sym_BSLASHpagecolor] = ACTIONS(4455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4455), - }, - [519] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), - }, - [520] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHend] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [521] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHend] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [522] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(461), - [aux_sym__section_repeat6] = STATE(461), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), - }, - [523] = { - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(441), - [aux_sym__section_repeat6] = STATE(441), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHend] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [524] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(466), - [aux_sym__section_repeat5] = STATE(466), - [sym_command_name] = ACTIONS(1886), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1886), - [anon_sym_LPAREN] = ACTIONS(1884), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1884), - [anon_sym_RBRACK] = ACTIONS(1884), - [anon_sym_COMMA] = ACTIONS(1884), - [anon_sym_EQ] = ACTIONS(1884), - [anon_sym_BSLASHpart] = ACTIONS(1886), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddpart] = ACTIONS(1886), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1884), - [anon_sym_BSLASHchapter] = ACTIONS(1886), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddchap] = ACTIONS(1886), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsection] = ACTIONS(1886), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHaddsec] = ACTIONS(1886), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsection] = ACTIONS(1886), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(1886), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1886), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1884), - [anon_sym_BSLASHitem] = ACTIONS(1886), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1884), - [sym_word] = ACTIONS(1886), - [sym_placeholder] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1886), - [anon_sym_DASH] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1886), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym__] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(1886), - [anon_sym_SQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1884), - [anon_sym_DOLLAR] = ACTIONS(1886), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1884), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1884), - [anon_sym_BSLASHbegin] = ACTIONS(1886), - [anon_sym_BSLASHusepackage] = ACTIONS(1886), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1886), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1886), - [anon_sym_BSLASHinclude] = ACTIONS(1886), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1886), - [anon_sym_BSLASHinput] = ACTIONS(1886), - [anon_sym_BSLASHsubfile] = ACTIONS(1886), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1886), - [anon_sym_BSLASHbibliography] = ACTIONS(1886), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1886), - [anon_sym_BSLASHincludesvg] = ACTIONS(1886), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1886), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1886), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1886), - [anon_sym_BSLASHimport] = ACTIONS(1886), - [anon_sym_BSLASHsubimport] = ACTIONS(1886), - [anon_sym_BSLASHinputfrom] = ACTIONS(1886), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1886), - [anon_sym_BSLASHincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1886), - [anon_sym_BSLASHcaption] = ACTIONS(1886), - [anon_sym_BSLASHcite] = ACTIONS(1886), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCite] = ACTIONS(1886), - [anon_sym_BSLASHnocite] = ACTIONS(1886), - [anon_sym_BSLASHcitet] = ACTIONS(1886), - [anon_sym_BSLASHcitep] = ACTIONS(1886), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteauthor] = ACTIONS(1886), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1886), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitetitle] = ACTIONS(1886), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteyear] = ACTIONS(1886), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1884), - [anon_sym_BSLASHcitedate] = ACTIONS(1886), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1884), - [anon_sym_BSLASHciteurl] = ACTIONS(1886), - [anon_sym_BSLASHfullcite] = ACTIONS(1886), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1886), - [anon_sym_BSLASHcitealt] = ACTIONS(1886), - [anon_sym_BSLASHcitealp] = ACTIONS(1886), - [anon_sym_BSLASHcitetext] = ACTIONS(1886), - [anon_sym_BSLASHparencite] = ACTIONS(1886), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHParencite] = ACTIONS(1886), - [anon_sym_BSLASHfootcite] = ACTIONS(1886), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1886), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1886), - [anon_sym_BSLASHtextcite] = ACTIONS(1886), - [anon_sym_BSLASHTextcite] = ACTIONS(1886), - [anon_sym_BSLASHsmartcite] = ACTIONS(1886), - [anon_sym_BSLASHSmartcite] = ACTIONS(1886), - [anon_sym_BSLASHsupercite] = ACTIONS(1886), - [anon_sym_BSLASHautocite] = ACTIONS(1886), - [anon_sym_BSLASHAutocite] = ACTIONS(1886), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1884), - [anon_sym_BSLASHvolcite] = ACTIONS(1886), - [anon_sym_BSLASHVolcite] = ACTIONS(1886), - [anon_sym_BSLASHpvolcite] = ACTIONS(1886), - [anon_sym_BSLASHPvolcite] = ACTIONS(1886), - [anon_sym_BSLASHfvolcite] = ACTIONS(1886), - [anon_sym_BSLASHftvolcite] = ACTIONS(1886), - [anon_sym_BSLASHsvolcite] = ACTIONS(1886), - [anon_sym_BSLASHSvolcite] = ACTIONS(1886), - [anon_sym_BSLASHtvolcite] = ACTIONS(1886), - [anon_sym_BSLASHTvolcite] = ACTIONS(1886), - [anon_sym_BSLASHavolcite] = ACTIONS(1886), - [anon_sym_BSLASHAvolcite] = ACTIONS(1886), - [anon_sym_BSLASHnotecite] = ACTIONS(1886), - [anon_sym_BSLASHNotecite] = ACTIONS(1886), - [anon_sym_BSLASHpnotecite] = ACTIONS(1886), - [anon_sym_BSLASHPnotecite] = ACTIONS(1886), - [anon_sym_BSLASHfnotecite] = ACTIONS(1886), - [anon_sym_BSLASHlabel] = ACTIONS(1886), - [anon_sym_BSLASHref] = ACTIONS(1886), - [anon_sym_BSLASHeqref] = ACTIONS(1886), - [anon_sym_BSLASHvref] = ACTIONS(1886), - [anon_sym_BSLASHVref] = ACTIONS(1886), - [anon_sym_BSLASHautoref] = ACTIONS(1886), - [anon_sym_BSLASHpageref] = ACTIONS(1886), - [anon_sym_BSLASHcref] = ACTIONS(1886), - [anon_sym_BSLASHCref] = ACTIONS(1886), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnameCref] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1886), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1886), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1886), - [anon_sym_BSLASHlabelcref] = ACTIONS(1886), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange] = ACTIONS(1886), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHCrefrange] = ACTIONS(1886), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1884), - [anon_sym_BSLASHnewlabel] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand] = ACTIONS(1886), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1886), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1886), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1884), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1886), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1884), - [anon_sym_BSLASHdef] = ACTIONS(1886), - [anon_sym_BSLASHlet] = ACTIONS(1886), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1886), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1886), - [anon_sym_BSLASHgls] = ACTIONS(1886), - [anon_sym_BSLASHGls] = ACTIONS(1886), - [anon_sym_BSLASHGLS] = ACTIONS(1886), - [anon_sym_BSLASHglspl] = ACTIONS(1886), - [anon_sym_BSLASHGlspl] = ACTIONS(1886), - [anon_sym_BSLASHGLSpl] = ACTIONS(1886), - [anon_sym_BSLASHglsdisp] = ACTIONS(1886), - [anon_sym_BSLASHglslink] = ACTIONS(1886), - [anon_sym_BSLASHglstext] = ACTIONS(1886), - [anon_sym_BSLASHGlstext] = ACTIONS(1886), - [anon_sym_BSLASHGLStext] = ACTIONS(1886), - [anon_sym_BSLASHglsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1886), - [anon_sym_BSLASHglsplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSplural] = ACTIONS(1886), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1886), - [anon_sym_BSLASHglsname] = ACTIONS(1886), - [anon_sym_BSLASHGlsname] = ACTIONS(1886), - [anon_sym_BSLASHGLSname] = ACTIONS(1886), - [anon_sym_BSLASHglssymbol] = ACTIONS(1886), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1886), - [anon_sym_BSLASHglsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1886), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1886), - [anon_sym_BSLASHglsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1886), - [anon_sym_BSLASHglsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1886), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1886), - [anon_sym_BSLASHglsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1886), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1886), - [anon_sym_BSLASHglsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1886), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1886), - [anon_sym_BSLASHnewacronym] = ACTIONS(1886), - [anon_sym_BSLASHacrshort] = ACTIONS(1886), - [anon_sym_BSLASHAcrshort] = ACTIONS(1886), - [anon_sym_BSLASHACRshort] = ACTIONS(1886), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1886), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1886), - [anon_sym_BSLASHacrlong] = ACTIONS(1886), - [anon_sym_BSLASHAcrlong] = ACTIONS(1886), - [anon_sym_BSLASHACRlong] = ACTIONS(1886), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1886), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1886), - [anon_sym_BSLASHacrfull] = ACTIONS(1886), - [anon_sym_BSLASHAcrfull] = ACTIONS(1886), - [anon_sym_BSLASHACRfull] = ACTIONS(1886), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1886), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1886), - [anon_sym_BSLASHacs] = ACTIONS(1886), - [anon_sym_BSLASHAcs] = ACTIONS(1886), - [anon_sym_BSLASHacsp] = ACTIONS(1886), - [anon_sym_BSLASHAcsp] = ACTIONS(1886), - [anon_sym_BSLASHacl] = ACTIONS(1886), - [anon_sym_BSLASHAcl] = ACTIONS(1886), - [anon_sym_BSLASHaclp] = ACTIONS(1886), - [anon_sym_BSLASHAclp] = ACTIONS(1886), - [anon_sym_BSLASHacf] = ACTIONS(1886), - [anon_sym_BSLASHAcf] = ACTIONS(1886), - [anon_sym_BSLASHacfp] = ACTIONS(1886), - [anon_sym_BSLASHAcfp] = ACTIONS(1886), - [anon_sym_BSLASHac] = ACTIONS(1886), - [anon_sym_BSLASHAc] = ACTIONS(1886), - [anon_sym_BSLASHacp] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1886), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1886), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1886), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1886), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1886), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1886), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1886), - [anon_sym_BSLASHcolor] = ACTIONS(1886), - [anon_sym_BSLASHcolorbox] = ACTIONS(1886), - [anon_sym_BSLASHtextcolor] = ACTIONS(1886), - [anon_sym_BSLASHpagecolor] = ACTIONS(1886), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1886), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1886), - }, - [525] = { - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(442), - [aux_sym__section_repeat5] = STATE(442), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHend] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [526] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(443), - [aux_sym__section_repeat4] = STATE(443), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHend] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [527] = { - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(444), - [aux_sym__section_repeat3] = STATE(444), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHend] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [528] = { - [sym_curly_group] = STATE(1168), - [sym_mixed_group] = STATE(1168), - [aux_sym_generic_command_repeat1] = STATE(528), - [sym_command_name] = ACTIONS(4469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4469), - [anon_sym_LPAREN] = ACTIONS(4687), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_EQ] = ACTIONS(4467), - [anon_sym_BSLASHpart] = ACTIONS(4469), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddpart] = ACTIONS(4469), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4467), - [anon_sym_BSLASHchapter] = ACTIONS(4469), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddchap] = ACTIONS(4469), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsection] = ACTIONS(4469), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddsec] = ACTIONS(4469), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubsection] = ACTIONS(4469), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHparagraph] = ACTIONS(4469), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4467), - [anon_sym_BSLASHitem] = ACTIONS(4469), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(4690), - [sym_word] = ACTIONS(4469), - [sym_placeholder] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_CARET] = ACTIONS(4469), - [anon_sym__] = ACTIONS(4469), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_PIPE] = ACTIONS(4469), - [anon_sym_COLON] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4467), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4467), - [anon_sym_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4467), - [anon_sym_BSLASHbegin] = ACTIONS(4469), - [anon_sym_BSLASHusepackage] = ACTIONS(4469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4469), - [anon_sym_BSLASHinclude] = ACTIONS(4469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4469), - [anon_sym_BSLASHinput] = ACTIONS(4469), - [anon_sym_BSLASHsubfile] = ACTIONS(4469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4469), - [anon_sym_BSLASHbibliography] = ACTIONS(4469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4469), - [anon_sym_BSLASHincludesvg] = ACTIONS(4469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4469), - [anon_sym_BSLASHimport] = ACTIONS(4469), - [anon_sym_BSLASHsubimport] = ACTIONS(4469), - [anon_sym_BSLASHinputfrom] = ACTIONS(4469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4469), - [anon_sym_BSLASHincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHcaption] = ACTIONS(4469), - [anon_sym_BSLASHcite] = ACTIONS(4469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCite] = ACTIONS(4469), - [anon_sym_BSLASHnocite] = ACTIONS(4469), - [anon_sym_BSLASHcitet] = ACTIONS(4469), - [anon_sym_BSLASHcitep] = ACTIONS(4469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteauthor] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitetitle] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteyear] = ACTIONS(4469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitedate] = ACTIONS(4469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteurl] = ACTIONS(4469), - [anon_sym_BSLASHfullcite] = ACTIONS(4469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4469), - [anon_sym_BSLASHcitealt] = ACTIONS(4469), - [anon_sym_BSLASHcitealp] = ACTIONS(4469), - [anon_sym_BSLASHcitetext] = ACTIONS(4469), - [anon_sym_BSLASHparencite] = ACTIONS(4469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHParencite] = ACTIONS(4469), - [anon_sym_BSLASHfootcite] = ACTIONS(4469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4469), - [anon_sym_BSLASHtextcite] = ACTIONS(4469), - [anon_sym_BSLASHTextcite] = ACTIONS(4469), - [anon_sym_BSLASHsmartcite] = ACTIONS(4469), - [anon_sym_BSLASHSmartcite] = ACTIONS(4469), - [anon_sym_BSLASHsupercite] = ACTIONS(4469), - [anon_sym_BSLASHautocite] = ACTIONS(4469), - [anon_sym_BSLASHAutocite] = ACTIONS(4469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHvolcite] = ACTIONS(4469), - [anon_sym_BSLASHVolcite] = ACTIONS(4469), - [anon_sym_BSLASHpvolcite] = ACTIONS(4469), - [anon_sym_BSLASHPvolcite] = ACTIONS(4469), - [anon_sym_BSLASHfvolcite] = ACTIONS(4469), - [anon_sym_BSLASHftvolcite] = ACTIONS(4469), - [anon_sym_BSLASHsvolcite] = ACTIONS(4469), - [anon_sym_BSLASHSvolcite] = ACTIONS(4469), - [anon_sym_BSLASHtvolcite] = ACTIONS(4469), - [anon_sym_BSLASHTvolcite] = ACTIONS(4469), - [anon_sym_BSLASHavolcite] = ACTIONS(4469), - [anon_sym_BSLASHAvolcite] = ACTIONS(4469), - [anon_sym_BSLASHnotecite] = ACTIONS(4469), - [anon_sym_BSLASHNotecite] = ACTIONS(4469), - [anon_sym_BSLASHpnotecite] = ACTIONS(4469), - [anon_sym_BSLASHPnotecite] = ACTIONS(4469), - [anon_sym_BSLASHfnotecite] = ACTIONS(4469), - [anon_sym_BSLASHlabel] = ACTIONS(4469), - [anon_sym_BSLASHref] = ACTIONS(4469), - [anon_sym_BSLASHeqref] = ACTIONS(4469), - [anon_sym_BSLASHvref] = ACTIONS(4469), - [anon_sym_BSLASHVref] = ACTIONS(4469), - [anon_sym_BSLASHautoref] = ACTIONS(4469), - [anon_sym_BSLASHpageref] = ACTIONS(4469), - [anon_sym_BSLASHcref] = ACTIONS(4469), - [anon_sym_BSLASHCref] = ACTIONS(4469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnameCref] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHlabelcref] = ACTIONS(4469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCrefrange] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnewlabel] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4467), - [anon_sym_BSLASHdef] = ACTIONS(4469), - [anon_sym_BSLASHlet] = ACTIONS(4469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4469), - [anon_sym_BSLASHgls] = ACTIONS(4469), - [anon_sym_BSLASHGls] = ACTIONS(4469), - [anon_sym_BSLASHGLS] = ACTIONS(4469), - [anon_sym_BSLASHglspl] = ACTIONS(4469), - [anon_sym_BSLASHGlspl] = ACTIONS(4469), - [anon_sym_BSLASHGLSpl] = ACTIONS(4469), - [anon_sym_BSLASHglsdisp] = ACTIONS(4469), - [anon_sym_BSLASHglslink] = ACTIONS(4469), - [anon_sym_BSLASHglstext] = ACTIONS(4469), - [anon_sym_BSLASHGlstext] = ACTIONS(4469), - [anon_sym_BSLASHGLStext] = ACTIONS(4469), - [anon_sym_BSLASHglsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4469), - [anon_sym_BSLASHglsplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSplural] = ACTIONS(4469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHglsname] = ACTIONS(4469), - [anon_sym_BSLASHGlsname] = ACTIONS(4469), - [anon_sym_BSLASHGLSname] = ACTIONS(4469), - [anon_sym_BSLASHglssymbol] = ACTIONS(4469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4469), - [anon_sym_BSLASHglsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4469), - [anon_sym_BSLASHglsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4469), - [anon_sym_BSLASHglsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4469), - [anon_sym_BSLASHglsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4469), - [anon_sym_BSLASHglsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4469), - [anon_sym_BSLASHnewacronym] = ACTIONS(4469), - [anon_sym_BSLASHacrshort] = ACTIONS(4469), - [anon_sym_BSLASHAcrshort] = ACTIONS(4469), - [anon_sym_BSLASHACRshort] = ACTIONS(4469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4469), - [anon_sym_BSLASHacrlong] = ACTIONS(4469), - [anon_sym_BSLASHAcrlong] = ACTIONS(4469), - [anon_sym_BSLASHACRlong] = ACTIONS(4469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4469), - [anon_sym_BSLASHacrfull] = ACTIONS(4469), - [anon_sym_BSLASHAcrfull] = ACTIONS(4469), - [anon_sym_BSLASHACRfull] = ACTIONS(4469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4469), - [anon_sym_BSLASHacs] = ACTIONS(4469), - [anon_sym_BSLASHAcs] = ACTIONS(4469), - [anon_sym_BSLASHacsp] = ACTIONS(4469), - [anon_sym_BSLASHAcsp] = ACTIONS(4469), - [anon_sym_BSLASHacl] = ACTIONS(4469), - [anon_sym_BSLASHAcl] = ACTIONS(4469), - [anon_sym_BSLASHaclp] = ACTIONS(4469), - [anon_sym_BSLASHAclp] = ACTIONS(4469), - [anon_sym_BSLASHacf] = ACTIONS(4469), - [anon_sym_BSLASHAcf] = ACTIONS(4469), - [anon_sym_BSLASHacfp] = ACTIONS(4469), - [anon_sym_BSLASHAcfp] = ACTIONS(4469), - [anon_sym_BSLASHac] = ACTIONS(4469), - [anon_sym_BSLASHAc] = ACTIONS(4469), - [anon_sym_BSLASHacp] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4469), - [anon_sym_BSLASHcolor] = ACTIONS(4469), - [anon_sym_BSLASHcolorbox] = ACTIONS(4469), - [anon_sym_BSLASHtextcolor] = ACTIONS(4469), - [anon_sym_BSLASHpagecolor] = ACTIONS(4469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4469), - }, - [529] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [530] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHend] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [531] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHend] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [532] = { - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(441), - [aux_sym__section_repeat6] = STATE(441), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHend] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [533] = { - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(442), - [aux_sym__section_repeat5] = STATE(442), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHend] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [534] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(443), - [aux_sym__section_repeat4] = STATE(443), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHend] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [535] = { - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(444), - [aux_sym__section_repeat3] = STATE(444), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHend] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [536] = { - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(445), - [aux_sym__section_repeat2] = STATE(445), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHend] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [537] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [538] = { - [sym_curly_group] = STATE(1113), - [sym_mixed_group] = STATE(1113), - [aux_sym_generic_command_repeat1] = STATE(344), - [sym_command_name] = ACTIONS(4465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4465), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_EQ] = ACTIONS(4463), - [anon_sym_BSLASHpart] = ACTIONS(4465), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddpart] = ACTIONS(4465), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4463), - [anon_sym_BSLASHchapter] = ACTIONS(4465), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddchap] = ACTIONS(4465), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsection] = ACTIONS(4465), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddsec] = ACTIONS(4465), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubsection] = ACTIONS(4465), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4465), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHparagraph] = ACTIONS(4465), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4465), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4463), - [anon_sym_BSLASHitem] = ACTIONS(4465), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4463), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(4465), - [sym_placeholder] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_CARET] = ACTIONS(4465), - [anon_sym__] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_PIPE] = ACTIONS(4465), - [anon_sym_COLON] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4465), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4463), - [anon_sym_DOLLAR] = ACTIONS(4465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4463), - [anon_sym_BSLASHbegin] = ACTIONS(4465), - [anon_sym_BSLASHend] = ACTIONS(4465), - [anon_sym_BSLASHusepackage] = ACTIONS(4465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4465), - [anon_sym_BSLASHinclude] = ACTIONS(4465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4465), - [anon_sym_BSLASHinput] = ACTIONS(4465), - [anon_sym_BSLASHsubfile] = ACTIONS(4465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4465), - [anon_sym_BSLASHbibliography] = ACTIONS(4465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4465), - [anon_sym_BSLASHincludesvg] = ACTIONS(4465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4465), - [anon_sym_BSLASHimport] = ACTIONS(4465), - [anon_sym_BSLASHsubimport] = ACTIONS(4465), - [anon_sym_BSLASHinputfrom] = ACTIONS(4465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4465), - [anon_sym_BSLASHincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHcaption] = ACTIONS(4465), - [anon_sym_BSLASHcite] = ACTIONS(4465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCite] = ACTIONS(4465), - [anon_sym_BSLASHnocite] = ACTIONS(4465), - [anon_sym_BSLASHcitet] = ACTIONS(4465), - [anon_sym_BSLASHcitep] = ACTIONS(4465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteauthor] = ACTIONS(4465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitetitle] = ACTIONS(4465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteyear] = ACTIONS(4465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitedate] = ACTIONS(4465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteurl] = ACTIONS(4465), - [anon_sym_BSLASHfullcite] = ACTIONS(4465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4465), - [anon_sym_BSLASHcitealt] = ACTIONS(4465), - [anon_sym_BSLASHcitealp] = ACTIONS(4465), - [anon_sym_BSLASHcitetext] = ACTIONS(4465), - [anon_sym_BSLASHparencite] = ACTIONS(4465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHParencite] = ACTIONS(4465), - [anon_sym_BSLASHfootcite] = ACTIONS(4465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4465), - [anon_sym_BSLASHtextcite] = ACTIONS(4465), - [anon_sym_BSLASHTextcite] = ACTIONS(4465), - [anon_sym_BSLASHsmartcite] = ACTIONS(4465), - [anon_sym_BSLASHSmartcite] = ACTIONS(4465), - [anon_sym_BSLASHsupercite] = ACTIONS(4465), - [anon_sym_BSLASHautocite] = ACTIONS(4465), - [anon_sym_BSLASHAutocite] = ACTIONS(4465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHvolcite] = ACTIONS(4465), - [anon_sym_BSLASHVolcite] = ACTIONS(4465), - [anon_sym_BSLASHpvolcite] = ACTIONS(4465), - [anon_sym_BSLASHPvolcite] = ACTIONS(4465), - [anon_sym_BSLASHfvolcite] = ACTIONS(4465), - [anon_sym_BSLASHftvolcite] = ACTIONS(4465), - [anon_sym_BSLASHsvolcite] = ACTIONS(4465), - [anon_sym_BSLASHSvolcite] = ACTIONS(4465), - [anon_sym_BSLASHtvolcite] = ACTIONS(4465), - [anon_sym_BSLASHTvolcite] = ACTIONS(4465), - [anon_sym_BSLASHavolcite] = ACTIONS(4465), - [anon_sym_BSLASHAvolcite] = ACTIONS(4465), - [anon_sym_BSLASHnotecite] = ACTIONS(4465), - [anon_sym_BSLASHNotecite] = ACTIONS(4465), - [anon_sym_BSLASHpnotecite] = ACTIONS(4465), - [anon_sym_BSLASHPnotecite] = ACTIONS(4465), - [anon_sym_BSLASHfnotecite] = ACTIONS(4465), - [anon_sym_BSLASHlabel] = ACTIONS(4465), - [anon_sym_BSLASHref] = ACTIONS(4465), - [anon_sym_BSLASHeqref] = ACTIONS(4465), - [anon_sym_BSLASHvref] = ACTIONS(4465), - [anon_sym_BSLASHVref] = ACTIONS(4465), - [anon_sym_BSLASHautoref] = ACTIONS(4465), - [anon_sym_BSLASHpageref] = ACTIONS(4465), - [anon_sym_BSLASHcref] = ACTIONS(4465), - [anon_sym_BSLASHCref] = ACTIONS(4465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnameCref] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHlabelcref] = ACTIONS(4465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCrefrange] = ACTIONS(4465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnewlabel] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4463), - [anon_sym_BSLASHdef] = ACTIONS(4465), - [anon_sym_BSLASHlet] = ACTIONS(4465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4465), - [anon_sym_BSLASHgls] = ACTIONS(4465), - [anon_sym_BSLASHGls] = ACTIONS(4465), - [anon_sym_BSLASHGLS] = ACTIONS(4465), - [anon_sym_BSLASHglspl] = ACTIONS(4465), - [anon_sym_BSLASHGlspl] = ACTIONS(4465), - [anon_sym_BSLASHGLSpl] = ACTIONS(4465), - [anon_sym_BSLASHglsdisp] = ACTIONS(4465), - [anon_sym_BSLASHglslink] = ACTIONS(4465), - [anon_sym_BSLASHglstext] = ACTIONS(4465), - [anon_sym_BSLASHGlstext] = ACTIONS(4465), - [anon_sym_BSLASHGLStext] = ACTIONS(4465), - [anon_sym_BSLASHglsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4465), - [anon_sym_BSLASHglsplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSplural] = ACTIONS(4465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHglsname] = ACTIONS(4465), - [anon_sym_BSLASHGlsname] = ACTIONS(4465), - [anon_sym_BSLASHGLSname] = ACTIONS(4465), - [anon_sym_BSLASHglssymbol] = ACTIONS(4465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4465), - [anon_sym_BSLASHglsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4465), - [anon_sym_BSLASHglsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4465), - [anon_sym_BSLASHglsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4465), - [anon_sym_BSLASHglsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4465), - [anon_sym_BSLASHglsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4465), - [anon_sym_BSLASHnewacronym] = ACTIONS(4465), - [anon_sym_BSLASHacrshort] = ACTIONS(4465), - [anon_sym_BSLASHAcrshort] = ACTIONS(4465), - [anon_sym_BSLASHACRshort] = ACTIONS(4465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4465), - [anon_sym_BSLASHacrlong] = ACTIONS(4465), - [anon_sym_BSLASHAcrlong] = ACTIONS(4465), - [anon_sym_BSLASHACRlong] = ACTIONS(4465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4465), - [anon_sym_BSLASHacrfull] = ACTIONS(4465), - [anon_sym_BSLASHAcrfull] = ACTIONS(4465), - [anon_sym_BSLASHACRfull] = ACTIONS(4465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4465), - [anon_sym_BSLASHacs] = ACTIONS(4465), - [anon_sym_BSLASHAcs] = ACTIONS(4465), - [anon_sym_BSLASHacsp] = ACTIONS(4465), - [anon_sym_BSLASHAcsp] = ACTIONS(4465), - [anon_sym_BSLASHacl] = ACTIONS(4465), - [anon_sym_BSLASHAcl] = ACTIONS(4465), - [anon_sym_BSLASHaclp] = ACTIONS(4465), - [anon_sym_BSLASHAclp] = ACTIONS(4465), - [anon_sym_BSLASHacf] = ACTIONS(4465), - [anon_sym_BSLASHAcf] = ACTIONS(4465), - [anon_sym_BSLASHacfp] = ACTIONS(4465), - [anon_sym_BSLASHAcfp] = ACTIONS(4465), - [anon_sym_BSLASHac] = ACTIONS(4465), - [anon_sym_BSLASHAc] = ACTIONS(4465), - [anon_sym_BSLASHacp] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4465), - [anon_sym_BSLASHcolor] = ACTIONS(4465), - [anon_sym_BSLASHcolorbox] = ACTIONS(4465), - [anon_sym_BSLASHtextcolor] = ACTIONS(4465), - [anon_sym_BSLASHpagecolor] = ACTIONS(4465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4465), - }, - [539] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(461), - [aux_sym__section_repeat6] = STATE(461), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [540] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(466), - [aux_sym__section_repeat5] = STATE(466), - [sym_command_name] = ACTIONS(1868), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_RPAREN] = ACTIONS(1866), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_RBRACK] = ACTIONS(1866), - [anon_sym_COMMA] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1866), - [anon_sym_BSLASHpart] = ACTIONS(1868), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddpart] = ACTIONS(1868), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1866), - [anon_sym_BSLASHchapter] = ACTIONS(1868), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddchap] = ACTIONS(1868), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsection] = ACTIONS(1868), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHaddsec] = ACTIONS(1868), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsection] = ACTIONS(1868), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(1868), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1868), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1866), - [anon_sym_BSLASHitem] = ACTIONS(1868), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1866), - [anon_sym_LBRACE] = ACTIONS(1866), - [sym_word] = ACTIONS(1868), - [sym_placeholder] = ACTIONS(1866), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1868), - [anon_sym__] = ACTIONS(1868), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_COLON] = ACTIONS(1868), - [anon_sym_SQUOTE] = ACTIONS(1868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1866), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1866), - [anon_sym_BSLASHbegin] = ACTIONS(1868), - [anon_sym_BSLASHusepackage] = ACTIONS(1868), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1868), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1868), - [anon_sym_BSLASHinclude] = ACTIONS(1868), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1868), - [anon_sym_BSLASHinput] = ACTIONS(1868), - [anon_sym_BSLASHsubfile] = ACTIONS(1868), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1868), - [anon_sym_BSLASHbibliography] = ACTIONS(1868), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1868), - [anon_sym_BSLASHincludesvg] = ACTIONS(1868), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1868), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1868), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1868), - [anon_sym_BSLASHimport] = ACTIONS(1868), - [anon_sym_BSLASHsubimport] = ACTIONS(1868), - [anon_sym_BSLASHinputfrom] = ACTIONS(1868), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1868), - [anon_sym_BSLASHincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1868), - [anon_sym_BSLASHcaption] = ACTIONS(1868), - [anon_sym_BSLASHcite] = ACTIONS(1868), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCite] = ACTIONS(1868), - [anon_sym_BSLASHnocite] = ACTIONS(1868), - [anon_sym_BSLASHcitet] = ACTIONS(1868), - [anon_sym_BSLASHcitep] = ACTIONS(1868), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteauthor] = ACTIONS(1868), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1868), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitetitle] = ACTIONS(1868), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteyear] = ACTIONS(1868), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1866), - [anon_sym_BSLASHcitedate] = ACTIONS(1868), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1866), - [anon_sym_BSLASHciteurl] = ACTIONS(1868), - [anon_sym_BSLASHfullcite] = ACTIONS(1868), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1868), - [anon_sym_BSLASHcitealt] = ACTIONS(1868), - [anon_sym_BSLASHcitealp] = ACTIONS(1868), - [anon_sym_BSLASHcitetext] = ACTIONS(1868), - [anon_sym_BSLASHparencite] = ACTIONS(1868), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHParencite] = ACTIONS(1868), - [anon_sym_BSLASHfootcite] = ACTIONS(1868), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1868), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1868), - [anon_sym_BSLASHtextcite] = ACTIONS(1868), - [anon_sym_BSLASHTextcite] = ACTIONS(1868), - [anon_sym_BSLASHsmartcite] = ACTIONS(1868), - [anon_sym_BSLASHSmartcite] = ACTIONS(1868), - [anon_sym_BSLASHsupercite] = ACTIONS(1868), - [anon_sym_BSLASHautocite] = ACTIONS(1868), - [anon_sym_BSLASHAutocite] = ACTIONS(1868), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1866), - [anon_sym_BSLASHvolcite] = ACTIONS(1868), - [anon_sym_BSLASHVolcite] = ACTIONS(1868), - [anon_sym_BSLASHpvolcite] = ACTIONS(1868), - [anon_sym_BSLASHPvolcite] = ACTIONS(1868), - [anon_sym_BSLASHfvolcite] = ACTIONS(1868), - [anon_sym_BSLASHftvolcite] = ACTIONS(1868), - [anon_sym_BSLASHsvolcite] = ACTIONS(1868), - [anon_sym_BSLASHSvolcite] = ACTIONS(1868), - [anon_sym_BSLASHtvolcite] = ACTIONS(1868), - [anon_sym_BSLASHTvolcite] = ACTIONS(1868), - [anon_sym_BSLASHavolcite] = ACTIONS(1868), - [anon_sym_BSLASHAvolcite] = ACTIONS(1868), - [anon_sym_BSLASHnotecite] = ACTIONS(1868), - [anon_sym_BSLASHNotecite] = ACTIONS(1868), - [anon_sym_BSLASHpnotecite] = ACTIONS(1868), - [anon_sym_BSLASHPnotecite] = ACTIONS(1868), - [anon_sym_BSLASHfnotecite] = ACTIONS(1868), - [anon_sym_BSLASHlabel] = ACTIONS(1868), - [anon_sym_BSLASHref] = ACTIONS(1868), - [anon_sym_BSLASHeqref] = ACTIONS(1868), - [anon_sym_BSLASHvref] = ACTIONS(1868), - [anon_sym_BSLASHVref] = ACTIONS(1868), - [anon_sym_BSLASHautoref] = ACTIONS(1868), - [anon_sym_BSLASHpageref] = ACTIONS(1868), - [anon_sym_BSLASHcref] = ACTIONS(1868), - [anon_sym_BSLASHCref] = ACTIONS(1868), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnameCref] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1868), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1868), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1868), - [anon_sym_BSLASHlabelcref] = ACTIONS(1868), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange] = ACTIONS(1868), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHCrefrange] = ACTIONS(1868), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1866), - [anon_sym_BSLASHnewlabel] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand] = ACTIONS(1868), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1868), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1868), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1866), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1868), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1866), - [anon_sym_BSLASHdef] = ACTIONS(1868), - [anon_sym_BSLASHlet] = ACTIONS(1868), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1868), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1868), - [anon_sym_BSLASHgls] = ACTIONS(1868), - [anon_sym_BSLASHGls] = ACTIONS(1868), - [anon_sym_BSLASHGLS] = ACTIONS(1868), - [anon_sym_BSLASHglspl] = ACTIONS(1868), - [anon_sym_BSLASHGlspl] = ACTIONS(1868), - [anon_sym_BSLASHGLSpl] = ACTIONS(1868), - [anon_sym_BSLASHglsdisp] = ACTIONS(1868), - [anon_sym_BSLASHglslink] = ACTIONS(1868), - [anon_sym_BSLASHglstext] = ACTIONS(1868), - [anon_sym_BSLASHGlstext] = ACTIONS(1868), - [anon_sym_BSLASHGLStext] = ACTIONS(1868), - [anon_sym_BSLASHglsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1868), - [anon_sym_BSLASHglsplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSplural] = ACTIONS(1868), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1868), - [anon_sym_BSLASHglsname] = ACTIONS(1868), - [anon_sym_BSLASHGlsname] = ACTIONS(1868), - [anon_sym_BSLASHGLSname] = ACTIONS(1868), - [anon_sym_BSLASHglssymbol] = ACTIONS(1868), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1868), - [anon_sym_BSLASHglsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1868), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1868), - [anon_sym_BSLASHglsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1868), - [anon_sym_BSLASHglsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1868), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1868), - [anon_sym_BSLASHglsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1868), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1868), - [anon_sym_BSLASHglsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1868), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1868), - [anon_sym_BSLASHnewacronym] = ACTIONS(1868), - [anon_sym_BSLASHacrshort] = ACTIONS(1868), - [anon_sym_BSLASHAcrshort] = ACTIONS(1868), - [anon_sym_BSLASHACRshort] = ACTIONS(1868), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1868), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1868), - [anon_sym_BSLASHacrlong] = ACTIONS(1868), - [anon_sym_BSLASHAcrlong] = ACTIONS(1868), - [anon_sym_BSLASHACRlong] = ACTIONS(1868), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1868), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1868), - [anon_sym_BSLASHacrfull] = ACTIONS(1868), - [anon_sym_BSLASHAcrfull] = ACTIONS(1868), - [anon_sym_BSLASHACRfull] = ACTIONS(1868), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1868), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1868), - [anon_sym_BSLASHacs] = ACTIONS(1868), - [anon_sym_BSLASHAcs] = ACTIONS(1868), - [anon_sym_BSLASHacsp] = ACTIONS(1868), - [anon_sym_BSLASHAcsp] = ACTIONS(1868), - [anon_sym_BSLASHacl] = ACTIONS(1868), - [anon_sym_BSLASHAcl] = ACTIONS(1868), - [anon_sym_BSLASHaclp] = ACTIONS(1868), - [anon_sym_BSLASHAclp] = ACTIONS(1868), - [anon_sym_BSLASHacf] = ACTIONS(1868), - [anon_sym_BSLASHAcf] = ACTIONS(1868), - [anon_sym_BSLASHacfp] = ACTIONS(1868), - [anon_sym_BSLASHAcfp] = ACTIONS(1868), - [anon_sym_BSLASHac] = ACTIONS(1868), - [anon_sym_BSLASHAc] = ACTIONS(1868), - [anon_sym_BSLASHacp] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1868), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1868), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1868), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1868), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1868), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1868), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1868), - [anon_sym_BSLASHcolor] = ACTIONS(1868), - [anon_sym_BSLASHcolorbox] = ACTIONS(1868), - [anon_sym_BSLASHtextcolor] = ACTIONS(1868), - [anon_sym_BSLASHpagecolor] = ACTIONS(1868), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1868), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1868), - }, - [541] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(4445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4443), - [anon_sym_RPAREN] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4443), - [anon_sym_RBRACK] = ACTIONS(4443), - [anon_sym_COMMA] = ACTIONS(4443), - [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_BSLASHpart] = ACTIONS(4445), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddpart] = ACTIONS(4445), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4443), - [anon_sym_BSLASHchapter] = ACTIONS(4445), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddchap] = ACTIONS(4445), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsection] = ACTIONS(4445), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddsec] = ACTIONS(4445), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubsection] = ACTIONS(4445), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHparagraph] = ACTIONS(4445), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4443), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(4443), - [sym_word] = ACTIONS(4445), - [sym_placeholder] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4445), - [anon_sym_DASH] = ACTIONS(4445), - [anon_sym_STAR] = ACTIONS(4445), - [anon_sym_SLASH] = ACTIONS(4445), - [anon_sym_CARET] = ACTIONS(4445), - [anon_sym__] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4445), - [anon_sym_GT] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4445), - [anon_sym_PIPE] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(4445), - [anon_sym_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4443), - [anon_sym_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4443), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4443), - [anon_sym_BSLASHbegin] = ACTIONS(4445), - [anon_sym_BSLASHend] = ACTIONS(4445), - [anon_sym_BSLASHusepackage] = ACTIONS(4445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4445), - [anon_sym_BSLASHinclude] = ACTIONS(4445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4445), - [anon_sym_BSLASHinput] = ACTIONS(4445), - [anon_sym_BSLASHsubfile] = ACTIONS(4445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4445), - [anon_sym_BSLASHbibliography] = ACTIONS(4445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4445), - [anon_sym_BSLASHincludesvg] = ACTIONS(4445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4445), - [anon_sym_BSLASHimport] = ACTIONS(4445), - [anon_sym_BSLASHsubimport] = ACTIONS(4445), - [anon_sym_BSLASHinputfrom] = ACTIONS(4445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4445), - [anon_sym_BSLASHincludefrom] = ACTIONS(4445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4445), - [anon_sym_BSLASHcaption] = ACTIONS(4445), - [anon_sym_BSLASHcite] = ACTIONS(4445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCite] = ACTIONS(4445), - [anon_sym_BSLASHnocite] = ACTIONS(4445), - [anon_sym_BSLASHcitet] = ACTIONS(4445), - [anon_sym_BSLASHcitep] = ACTIONS(4445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteauthor] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitetitle] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteyear] = ACTIONS(4445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitedate] = ACTIONS(4445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteurl] = ACTIONS(4445), - [anon_sym_BSLASHfullcite] = ACTIONS(4445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4445), - [anon_sym_BSLASHcitealt] = ACTIONS(4445), - [anon_sym_BSLASHcitealp] = ACTIONS(4445), - [anon_sym_BSLASHcitetext] = ACTIONS(4445), - [anon_sym_BSLASHparencite] = ACTIONS(4445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHParencite] = ACTIONS(4445), - [anon_sym_BSLASHfootcite] = ACTIONS(4445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4445), - [anon_sym_BSLASHtextcite] = ACTIONS(4445), - [anon_sym_BSLASHTextcite] = ACTIONS(4445), - [anon_sym_BSLASHsmartcite] = ACTIONS(4445), - [anon_sym_BSLASHSmartcite] = ACTIONS(4445), - [anon_sym_BSLASHsupercite] = ACTIONS(4445), - [anon_sym_BSLASHautocite] = ACTIONS(4445), - [anon_sym_BSLASHAutocite] = ACTIONS(4445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHvolcite] = ACTIONS(4445), - [anon_sym_BSLASHVolcite] = ACTIONS(4445), - [anon_sym_BSLASHpvolcite] = ACTIONS(4445), - [anon_sym_BSLASHPvolcite] = ACTIONS(4445), - [anon_sym_BSLASHfvolcite] = ACTIONS(4445), - [anon_sym_BSLASHftvolcite] = ACTIONS(4445), - [anon_sym_BSLASHsvolcite] = ACTIONS(4445), - [anon_sym_BSLASHSvolcite] = ACTIONS(4445), - [anon_sym_BSLASHtvolcite] = ACTIONS(4445), - [anon_sym_BSLASHTvolcite] = ACTIONS(4445), - [anon_sym_BSLASHavolcite] = ACTIONS(4445), - [anon_sym_BSLASHAvolcite] = ACTIONS(4445), - [anon_sym_BSLASHnotecite] = ACTIONS(4445), - [anon_sym_BSLASHNotecite] = ACTIONS(4445), - [anon_sym_BSLASHpnotecite] = ACTIONS(4445), - [anon_sym_BSLASHPnotecite] = ACTIONS(4445), - [anon_sym_BSLASHfnotecite] = ACTIONS(4445), - [anon_sym_BSLASHlabel] = ACTIONS(4445), - [anon_sym_BSLASHref] = ACTIONS(4445), - [anon_sym_BSLASHeqref] = ACTIONS(4445), - [anon_sym_BSLASHvref] = ACTIONS(4445), - [anon_sym_BSLASHVref] = ACTIONS(4445), - [anon_sym_BSLASHautoref] = ACTIONS(4445), - [anon_sym_BSLASHpageref] = ACTIONS(4445), - [anon_sym_BSLASHcref] = ACTIONS(4445), - [anon_sym_BSLASHCref] = ACTIONS(4445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4443), - [anon_sym_BSLASHnamecref] = ACTIONS(4445), - [anon_sym_BSLASHnameCref] = ACTIONS(4445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4445), - [anon_sym_BSLASHlabelcref] = ACTIONS(4445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4445), - [anon_sym_BSLASHcrefrange] = ACTIONS(4445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCrefrange] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4443), - [anon_sym_BSLASHnewlabel] = ACTIONS(4445), - [anon_sym_BSLASHnewcommand] = ACTIONS(4445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4443), - [anon_sym_BSLASHdef] = ACTIONS(4445), - [anon_sym_BSLASHlet] = ACTIONS(4445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4445), - [anon_sym_BSLASHgls] = ACTIONS(4445), - [anon_sym_BSLASHGls] = ACTIONS(4445), - [anon_sym_BSLASHGLS] = ACTIONS(4445), - [anon_sym_BSLASHglspl] = ACTIONS(4445), - [anon_sym_BSLASHGlspl] = ACTIONS(4445), - [anon_sym_BSLASHGLSpl] = ACTIONS(4445), - [anon_sym_BSLASHglsdisp] = ACTIONS(4445), - [anon_sym_BSLASHglslink] = ACTIONS(4445), - [anon_sym_BSLASHglstext] = ACTIONS(4445), - [anon_sym_BSLASHGlstext] = ACTIONS(4445), - [anon_sym_BSLASHGLStext] = ACTIONS(4445), - [anon_sym_BSLASHglsfirst] = ACTIONS(4445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4445), - [anon_sym_BSLASHglsplural] = ACTIONS(4445), - [anon_sym_BSLASHGlsplural] = ACTIONS(4445), - [anon_sym_BSLASHGLSplural] = ACTIONS(4445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHglsname] = ACTIONS(4445), - [anon_sym_BSLASHGlsname] = ACTIONS(4445), - [anon_sym_BSLASHGLSname] = ACTIONS(4445), - [anon_sym_BSLASHglssymbol] = ACTIONS(4445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4445), - [anon_sym_BSLASHglsdesc] = ACTIONS(4445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4445), - [anon_sym_BSLASHglsuseri] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4445), - [anon_sym_BSLASHglsuserii] = ACTIONS(4445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4445), - [anon_sym_BSLASHglsuserv] = ACTIONS(4445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4445), - [anon_sym_BSLASHglsuservi] = ACTIONS(4445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4445), - [anon_sym_BSLASHnewacronym] = ACTIONS(4445), - [anon_sym_BSLASHacrshort] = ACTIONS(4445), - [anon_sym_BSLASHAcrshort] = ACTIONS(4445), - [anon_sym_BSLASHACRshort] = ACTIONS(4445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4445), - [anon_sym_BSLASHacrlong] = ACTIONS(4445), - [anon_sym_BSLASHAcrlong] = ACTIONS(4445), - [anon_sym_BSLASHACRlong] = ACTIONS(4445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4445), - [anon_sym_BSLASHacrfull] = ACTIONS(4445), - [anon_sym_BSLASHAcrfull] = ACTIONS(4445), - [anon_sym_BSLASHACRfull] = ACTIONS(4445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4445), - [anon_sym_BSLASHacs] = ACTIONS(4445), - [anon_sym_BSLASHAcs] = ACTIONS(4445), - [anon_sym_BSLASHacsp] = ACTIONS(4445), - [anon_sym_BSLASHAcsp] = ACTIONS(4445), - [anon_sym_BSLASHacl] = ACTIONS(4445), - [anon_sym_BSLASHAcl] = ACTIONS(4445), - [anon_sym_BSLASHaclp] = ACTIONS(4445), - [anon_sym_BSLASHAclp] = ACTIONS(4445), - [anon_sym_BSLASHacf] = ACTIONS(4445), - [anon_sym_BSLASHAcf] = ACTIONS(4445), - [anon_sym_BSLASHacfp] = ACTIONS(4445), - [anon_sym_BSLASHAcfp] = ACTIONS(4445), - [anon_sym_BSLASHac] = ACTIONS(4445), - [anon_sym_BSLASHAc] = ACTIONS(4445), - [anon_sym_BSLASHacp] = ACTIONS(4445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4445), - [anon_sym_BSLASHcolor] = ACTIONS(4445), - [anon_sym_BSLASHcolorbox] = ACTIONS(4445), - [anon_sym_BSLASHtextcolor] = ACTIONS(4445), - [anon_sym_BSLASHpagecolor] = ACTIONS(4445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4445), - }, - [542] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [543] = { - [sym__enum_itemdeclaration] = STATE(206), - [sym_enum_item] = STATE(439), - [aux_sym__section_repeat8] = STATE(439), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(253), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHend] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [544] = { - [sym__subparagraph_declaration] = STATE(187), - [sym_subparagraph] = STATE(440), - [aux_sym__section_repeat7] = STATE(440), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(249), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHend] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [545] = { - [sym__paragraph_declaration] = STATE(181), - [sym_paragraph] = STATE(441), - [aux_sym__section_repeat6] = STATE(441), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHend] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [546] = { - [sym__subsubsection_declaration] = STATE(168), - [sym_subsubsection] = STATE(442), - [aux_sym__section_repeat5] = STATE(442), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(241), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHend] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [547] = { - [sym__subsection_declaration] = STATE(161), - [sym_subsection] = STATE(443), - [aux_sym__section_repeat4] = STATE(443), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHend] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [548] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [549] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(461), - [aux_sym__section_repeat6] = STATE(461), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [550] = { - [sym__chapter_declaration] = STATE(135), - [sym_chapter] = STATE(512), - [aux_sym__section_repeat2] = STATE(512), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(191), - [anon_sym_BSLASHaddchap] = ACTIONS(189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(191), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [551] = { - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(513), - [aux_sym__section_repeat3] = STATE(513), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [552] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(514), - [aux_sym__section_repeat4] = STATE(514), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [553] = { - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(515), - [aux_sym__section_repeat5] = STATE(515), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [554] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(516), - [aux_sym__section_repeat6] = STATE(516), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [555] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [556] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), - }, - [557] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(466), - [aux_sym__section_repeat5] = STATE(466), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [558] = { - [sym__section_declaration] = STATE(149), - [sym_section] = STATE(513), - [aux_sym__section_repeat3] = STATE(513), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(195), - [anon_sym_BSLASHaddsec] = ACTIONS(193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(195), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [559] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(514), - [aux_sym__section_repeat4] = STATE(514), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [560] = { - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(515), - [aux_sym__section_repeat5] = STATE(515), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [561] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(516), - [aux_sym__section_repeat6] = STATE(516), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [562] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [563] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), - }, - [564] = { - [sym__subsection_declaration] = STATE(159), - [sym_subsection] = STATE(514), - [aux_sym__section_repeat4] = STATE(514), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [565] = { - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(515), - [aux_sym__section_repeat5] = STATE(515), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [566] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(516), - [aux_sym__section_repeat6] = STATE(516), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [567] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [568] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), - }, - [569] = { - [sym__subsubsection_declaration] = STATE(164), - [sym_subsubsection] = STATE(515), - [aux_sym__section_repeat5] = STATE(515), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(203), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), - }, - [570] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(516), - [aux_sym__section_repeat6] = STATE(516), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), - }, - [571] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), - }, - [572] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), - }, - [573] = { - [sym__paragraph_declaration] = STATE(180), - [sym_paragraph] = STATE(516), - [aux_sym__section_repeat6] = STATE(516), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHitem] = ACTIONS(4441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4439), - [anon_sym_LBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), - }, - [574] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(4441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(4441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4439), - [anon_sym_LBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), - }, - [575] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(4441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), - }, - [576] = { - [sym__subparagraph_declaration] = STATE(188), - [sym_subparagraph] = STATE(517), - [aux_sym__section_repeat7] = STATE(517), - [sym_command_name] = ACTIONS(4395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_BSLASHpart] = ACTIONS(4395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddpart] = ACTIONS(4395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHchapter] = ACTIONS(4395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddchap] = ACTIONS(4395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsection] = ACTIONS(4395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddsec] = ACTIONS(4395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHparagraph] = ACTIONS(4395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(211), - [anon_sym_BSLASHitem] = ACTIONS(4395), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [sym_word] = ACTIONS(4395), - [sym_placeholder] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym__] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_PIPE] = ACTIONS(4395), - [anon_sym_COLON] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4393), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4393), - [anon_sym_BSLASHbegin] = ACTIONS(4395), - [anon_sym_BSLASHusepackage] = ACTIONS(4395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4395), - [anon_sym_BSLASHinclude] = ACTIONS(4395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4395), - [anon_sym_BSLASHinput] = ACTIONS(4395), - [anon_sym_BSLASHsubfile] = ACTIONS(4395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4395), - [anon_sym_BSLASHbibliography] = ACTIONS(4395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4395), - [anon_sym_BSLASHincludesvg] = ACTIONS(4395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4395), - [anon_sym_BSLASHsubimport] = ACTIONS(4395), - [anon_sym_BSLASHinputfrom] = ACTIONS(4395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4395), - [anon_sym_BSLASHincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHcaption] = ACTIONS(4395), - [anon_sym_BSLASHcite] = ACTIONS(4395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCite] = ACTIONS(4395), - [anon_sym_BSLASHnocite] = ACTIONS(4395), - [anon_sym_BSLASHcitet] = ACTIONS(4395), - [anon_sym_BSLASHcitep] = ACTIONS(4395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteauthor] = ACTIONS(4395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitetitle] = ACTIONS(4395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteyear] = ACTIONS(4395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitedate] = ACTIONS(4395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteurl] = ACTIONS(4395), - [anon_sym_BSLASHfullcite] = ACTIONS(4395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4395), - [anon_sym_BSLASHcitealt] = ACTIONS(4395), - [anon_sym_BSLASHcitealp] = ACTIONS(4395), - [anon_sym_BSLASHcitetext] = ACTIONS(4395), - [anon_sym_BSLASHparencite] = ACTIONS(4395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHParencite] = ACTIONS(4395), - [anon_sym_BSLASHfootcite] = ACTIONS(4395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4395), - [anon_sym_BSLASHtextcite] = ACTIONS(4395), - [anon_sym_BSLASHTextcite] = ACTIONS(4395), - [anon_sym_BSLASHsmartcite] = ACTIONS(4395), - [anon_sym_BSLASHSmartcite] = ACTIONS(4395), - [anon_sym_BSLASHsupercite] = ACTIONS(4395), - [anon_sym_BSLASHautocite] = ACTIONS(4395), - [anon_sym_BSLASHAutocite] = ACTIONS(4395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHvolcite] = ACTIONS(4395), - [anon_sym_BSLASHVolcite] = ACTIONS(4395), - [anon_sym_BSLASHpvolcite] = ACTIONS(4395), - [anon_sym_BSLASHPvolcite] = ACTIONS(4395), - [anon_sym_BSLASHfvolcite] = ACTIONS(4395), - [anon_sym_BSLASHftvolcite] = ACTIONS(4395), - [anon_sym_BSLASHsvolcite] = ACTIONS(4395), - [anon_sym_BSLASHSvolcite] = ACTIONS(4395), - [anon_sym_BSLASHtvolcite] = ACTIONS(4395), - [anon_sym_BSLASHTvolcite] = ACTIONS(4395), - [anon_sym_BSLASHavolcite] = ACTIONS(4395), - [anon_sym_BSLASHAvolcite] = ACTIONS(4395), - [anon_sym_BSLASHnotecite] = ACTIONS(4395), - [anon_sym_BSLASHNotecite] = ACTIONS(4395), - [anon_sym_BSLASHpnotecite] = ACTIONS(4395), - [anon_sym_BSLASHPnotecite] = ACTIONS(4395), - [anon_sym_BSLASHfnotecite] = ACTIONS(4395), - [anon_sym_BSLASHlabel] = ACTIONS(4395), - [anon_sym_BSLASHref] = ACTIONS(4395), - [anon_sym_BSLASHeqref] = ACTIONS(4395), - [anon_sym_BSLASHvref] = ACTIONS(4395), - [anon_sym_BSLASHVref] = ACTIONS(4395), - [anon_sym_BSLASHautoref] = ACTIONS(4395), - [anon_sym_BSLASHpageref] = ACTIONS(4395), - [anon_sym_BSLASHcref] = ACTIONS(4395), - [anon_sym_BSLASHCref] = ACTIONS(4395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnameCref] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHlabelcref] = ACTIONS(4395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCrefrange] = ACTIONS(4395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnewlabel] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4393), - [anon_sym_BSLASHdef] = ACTIONS(4395), - [anon_sym_BSLASHlet] = ACTIONS(4395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4395), - [anon_sym_BSLASHgls] = ACTIONS(4395), - [anon_sym_BSLASHGls] = ACTIONS(4395), - [anon_sym_BSLASHGLS] = ACTIONS(4395), - [anon_sym_BSLASHglspl] = ACTIONS(4395), - [anon_sym_BSLASHGlspl] = ACTIONS(4395), - [anon_sym_BSLASHGLSpl] = ACTIONS(4395), - [anon_sym_BSLASHglsdisp] = ACTIONS(4395), - [anon_sym_BSLASHglslink] = ACTIONS(4395), - [anon_sym_BSLASHglstext] = ACTIONS(4395), - [anon_sym_BSLASHGlstext] = ACTIONS(4395), - [anon_sym_BSLASHGLStext] = ACTIONS(4395), - [anon_sym_BSLASHglsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4395), - [anon_sym_BSLASHglsplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSplural] = ACTIONS(4395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHglsname] = ACTIONS(4395), - [anon_sym_BSLASHGlsname] = ACTIONS(4395), - [anon_sym_BSLASHGLSname] = ACTIONS(4395), - [anon_sym_BSLASHglssymbol] = ACTIONS(4395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4395), - [anon_sym_BSLASHglsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4395), - [anon_sym_BSLASHglsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4395), - [anon_sym_BSLASHglsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4395), - [anon_sym_BSLASHglsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4395), - [anon_sym_BSLASHglsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4395), - [anon_sym_BSLASHnewacronym] = ACTIONS(4395), - [anon_sym_BSLASHacrshort] = ACTIONS(4395), - [anon_sym_BSLASHAcrshort] = ACTIONS(4395), - [anon_sym_BSLASHACRshort] = ACTIONS(4395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4395), - [anon_sym_BSLASHacrlong] = ACTIONS(4395), - [anon_sym_BSLASHAcrlong] = ACTIONS(4395), - [anon_sym_BSLASHACRlong] = ACTIONS(4395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4395), - [anon_sym_BSLASHacrfull] = ACTIONS(4395), - [anon_sym_BSLASHAcrfull] = ACTIONS(4395), - [anon_sym_BSLASHACRfull] = ACTIONS(4395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4395), - [anon_sym_BSLASHacs] = ACTIONS(4395), - [anon_sym_BSLASHAcs] = ACTIONS(4395), - [anon_sym_BSLASHacsp] = ACTIONS(4395), - [anon_sym_BSLASHAcsp] = ACTIONS(4395), - [anon_sym_BSLASHacl] = ACTIONS(4395), - [anon_sym_BSLASHAcl] = ACTIONS(4395), - [anon_sym_BSLASHaclp] = ACTIONS(4395), - [anon_sym_BSLASHAclp] = ACTIONS(4395), - [anon_sym_BSLASHacf] = ACTIONS(4395), - [anon_sym_BSLASHAcf] = ACTIONS(4395), - [anon_sym_BSLASHacfp] = ACTIONS(4395), - [anon_sym_BSLASHAcfp] = ACTIONS(4395), - [anon_sym_BSLASHac] = ACTIONS(4395), - [anon_sym_BSLASHAc] = ACTIONS(4395), - [anon_sym_BSLASHacp] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4395), - [anon_sym_BSLASHcolor] = ACTIONS(4395), - [anon_sym_BSLASHcolorbox] = ACTIONS(4395), - [anon_sym_BSLASHtextcolor] = ACTIONS(4395), - [anon_sym_BSLASHpagecolor] = ACTIONS(4395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4395), - }, - [577] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(4395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_BSLASHpart] = ACTIONS(4395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddpart] = ACTIONS(4395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHchapter] = ACTIONS(4395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddchap] = ACTIONS(4395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsection] = ACTIONS(4395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddsec] = ACTIONS(4395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHparagraph] = ACTIONS(4395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4395), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(4393), - [sym_word] = ACTIONS(4395), - [sym_placeholder] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym__] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_PIPE] = ACTIONS(4395), - [anon_sym_COLON] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4393), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4393), - [anon_sym_BSLASHbegin] = ACTIONS(4395), - [anon_sym_BSLASHusepackage] = ACTIONS(4395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4395), - [anon_sym_BSLASHinclude] = ACTIONS(4395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4395), - [anon_sym_BSLASHinput] = ACTIONS(4395), - [anon_sym_BSLASHsubfile] = ACTIONS(4395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4395), - [anon_sym_BSLASHbibliography] = ACTIONS(4395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4395), - [anon_sym_BSLASHincludesvg] = ACTIONS(4395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4395), - [anon_sym_BSLASHsubimport] = ACTIONS(4395), - [anon_sym_BSLASHinputfrom] = ACTIONS(4395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4395), - [anon_sym_BSLASHincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHcaption] = ACTIONS(4395), - [anon_sym_BSLASHcite] = ACTIONS(4395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCite] = ACTIONS(4395), - [anon_sym_BSLASHnocite] = ACTIONS(4395), - [anon_sym_BSLASHcitet] = ACTIONS(4395), - [anon_sym_BSLASHcitep] = ACTIONS(4395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteauthor] = ACTIONS(4395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitetitle] = ACTIONS(4395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteyear] = ACTIONS(4395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitedate] = ACTIONS(4395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteurl] = ACTIONS(4395), - [anon_sym_BSLASHfullcite] = ACTIONS(4395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4395), - [anon_sym_BSLASHcitealt] = ACTIONS(4395), - [anon_sym_BSLASHcitealp] = ACTIONS(4395), - [anon_sym_BSLASHcitetext] = ACTIONS(4395), - [anon_sym_BSLASHparencite] = ACTIONS(4395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHParencite] = ACTIONS(4395), - [anon_sym_BSLASHfootcite] = ACTIONS(4395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4395), - [anon_sym_BSLASHtextcite] = ACTIONS(4395), - [anon_sym_BSLASHTextcite] = ACTIONS(4395), - [anon_sym_BSLASHsmartcite] = ACTIONS(4395), - [anon_sym_BSLASHSmartcite] = ACTIONS(4395), - [anon_sym_BSLASHsupercite] = ACTIONS(4395), - [anon_sym_BSLASHautocite] = ACTIONS(4395), - [anon_sym_BSLASHAutocite] = ACTIONS(4395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHvolcite] = ACTIONS(4395), - [anon_sym_BSLASHVolcite] = ACTIONS(4395), - [anon_sym_BSLASHpvolcite] = ACTIONS(4395), - [anon_sym_BSLASHPvolcite] = ACTIONS(4395), - [anon_sym_BSLASHfvolcite] = ACTIONS(4395), - [anon_sym_BSLASHftvolcite] = ACTIONS(4395), - [anon_sym_BSLASHsvolcite] = ACTIONS(4395), - [anon_sym_BSLASHSvolcite] = ACTIONS(4395), - [anon_sym_BSLASHtvolcite] = ACTIONS(4395), - [anon_sym_BSLASHTvolcite] = ACTIONS(4395), - [anon_sym_BSLASHavolcite] = ACTIONS(4395), - [anon_sym_BSLASHAvolcite] = ACTIONS(4395), - [anon_sym_BSLASHnotecite] = ACTIONS(4395), - [anon_sym_BSLASHNotecite] = ACTIONS(4395), - [anon_sym_BSLASHpnotecite] = ACTIONS(4395), - [anon_sym_BSLASHPnotecite] = ACTIONS(4395), - [anon_sym_BSLASHfnotecite] = ACTIONS(4395), - [anon_sym_BSLASHlabel] = ACTIONS(4395), - [anon_sym_BSLASHref] = ACTIONS(4395), - [anon_sym_BSLASHeqref] = ACTIONS(4395), - [anon_sym_BSLASHvref] = ACTIONS(4395), - [anon_sym_BSLASHVref] = ACTIONS(4395), - [anon_sym_BSLASHautoref] = ACTIONS(4395), - [anon_sym_BSLASHpageref] = ACTIONS(4395), - [anon_sym_BSLASHcref] = ACTIONS(4395), - [anon_sym_BSLASHCref] = ACTIONS(4395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnameCref] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHlabelcref] = ACTIONS(4395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCrefrange] = ACTIONS(4395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnewlabel] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4393), - [anon_sym_BSLASHdef] = ACTIONS(4395), - [anon_sym_BSLASHlet] = ACTIONS(4395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4395), - [anon_sym_BSLASHgls] = ACTIONS(4395), - [anon_sym_BSLASHGls] = ACTIONS(4395), - [anon_sym_BSLASHGLS] = ACTIONS(4395), - [anon_sym_BSLASHglspl] = ACTIONS(4395), - [anon_sym_BSLASHGlspl] = ACTIONS(4395), - [anon_sym_BSLASHGLSpl] = ACTIONS(4395), - [anon_sym_BSLASHglsdisp] = ACTIONS(4395), - [anon_sym_BSLASHglslink] = ACTIONS(4395), - [anon_sym_BSLASHglstext] = ACTIONS(4395), - [anon_sym_BSLASHGlstext] = ACTIONS(4395), - [anon_sym_BSLASHGLStext] = ACTIONS(4395), - [anon_sym_BSLASHglsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4395), - [anon_sym_BSLASHglsplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSplural] = ACTIONS(4395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHglsname] = ACTIONS(4395), - [anon_sym_BSLASHGlsname] = ACTIONS(4395), - [anon_sym_BSLASHGLSname] = ACTIONS(4395), - [anon_sym_BSLASHglssymbol] = ACTIONS(4395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4395), - [anon_sym_BSLASHglsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4395), - [anon_sym_BSLASHglsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4395), - [anon_sym_BSLASHglsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4395), - [anon_sym_BSLASHglsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4395), - [anon_sym_BSLASHglsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4395), - [anon_sym_BSLASHnewacronym] = ACTIONS(4395), - [anon_sym_BSLASHacrshort] = ACTIONS(4395), - [anon_sym_BSLASHAcrshort] = ACTIONS(4395), - [anon_sym_BSLASHACRshort] = ACTIONS(4395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4395), - [anon_sym_BSLASHacrlong] = ACTIONS(4395), - [anon_sym_BSLASHAcrlong] = ACTIONS(4395), - [anon_sym_BSLASHACRlong] = ACTIONS(4395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4395), - [anon_sym_BSLASHacrfull] = ACTIONS(4395), - [anon_sym_BSLASHAcrfull] = ACTIONS(4395), - [anon_sym_BSLASHACRfull] = ACTIONS(4395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4395), - [anon_sym_BSLASHacs] = ACTIONS(4395), - [anon_sym_BSLASHAcs] = ACTIONS(4395), - [anon_sym_BSLASHacsp] = ACTIONS(4395), - [anon_sym_BSLASHAcsp] = ACTIONS(4395), - [anon_sym_BSLASHacl] = ACTIONS(4395), - [anon_sym_BSLASHAcl] = ACTIONS(4395), - [anon_sym_BSLASHaclp] = ACTIONS(4395), - [anon_sym_BSLASHAclp] = ACTIONS(4395), - [anon_sym_BSLASHacf] = ACTIONS(4395), - [anon_sym_BSLASHAcf] = ACTIONS(4395), - [anon_sym_BSLASHacfp] = ACTIONS(4395), - [anon_sym_BSLASHAcfp] = ACTIONS(4395), - [anon_sym_BSLASHac] = ACTIONS(4395), - [anon_sym_BSLASHAc] = ACTIONS(4395), - [anon_sym_BSLASHacp] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4395), - [anon_sym_BSLASHcolor] = ACTIONS(4395), - [anon_sym_BSLASHcolorbox] = ACTIONS(4395), - [anon_sym_BSLASHtextcolor] = ACTIONS(4395), - [anon_sym_BSLASHpagecolor] = ACTIONS(4395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4395), - }, - [578] = { - [sym__enum_itemdeclaration] = STATE(201), - [sym_enum_item] = STATE(518), - [aux_sym__section_repeat8] = STATE(518), - [sym_command_name] = ACTIONS(4445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4443), - [anon_sym_RPAREN] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4443), - [anon_sym_RBRACK] = ACTIONS(4443), - [anon_sym_COMMA] = ACTIONS(4443), - [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_BSLASHpart] = ACTIONS(4445), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddpart] = ACTIONS(4445), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4443), - [anon_sym_BSLASHchapter] = ACTIONS(4445), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddchap] = ACTIONS(4445), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsection] = ACTIONS(4445), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddsec] = ACTIONS(4445), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubsection] = ACTIONS(4445), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHparagraph] = ACTIONS(4445), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4443), - [anon_sym_BSLASHitem] = ACTIONS(213), - [anon_sym_BSLASHitem_STAR] = ACTIONS(215), - [anon_sym_LBRACE] = ACTIONS(4443), - [sym_word] = ACTIONS(4445), - [sym_placeholder] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4445), - [anon_sym_DASH] = ACTIONS(4445), - [anon_sym_STAR] = ACTIONS(4445), - [anon_sym_SLASH] = ACTIONS(4445), - [anon_sym_CARET] = ACTIONS(4445), - [anon_sym__] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4445), - [anon_sym_GT] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4445), - [anon_sym_PIPE] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(4445), - [anon_sym_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4443), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4443), - [anon_sym_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4443), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4443), - [anon_sym_BSLASHbegin] = ACTIONS(4445), - [anon_sym_BSLASHusepackage] = ACTIONS(4445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4445), - [anon_sym_BSLASHinclude] = ACTIONS(4445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4445), - [anon_sym_BSLASHinput] = ACTIONS(4445), - [anon_sym_BSLASHsubfile] = ACTIONS(4445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4445), - [anon_sym_BSLASHbibliography] = ACTIONS(4445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4445), - [anon_sym_BSLASHincludesvg] = ACTIONS(4445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4445), - [anon_sym_BSLASHimport] = ACTIONS(4445), - [anon_sym_BSLASHsubimport] = ACTIONS(4445), - [anon_sym_BSLASHinputfrom] = ACTIONS(4445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4445), - [anon_sym_BSLASHincludefrom] = ACTIONS(4445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4445), - [anon_sym_BSLASHcaption] = ACTIONS(4445), - [anon_sym_BSLASHcite] = ACTIONS(4445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCite] = ACTIONS(4445), - [anon_sym_BSLASHnocite] = ACTIONS(4445), - [anon_sym_BSLASHcitet] = ACTIONS(4445), - [anon_sym_BSLASHcitep] = ACTIONS(4445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteauthor] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitetitle] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteyear] = ACTIONS(4445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitedate] = ACTIONS(4445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteurl] = ACTIONS(4445), - [anon_sym_BSLASHfullcite] = ACTIONS(4445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4445), - [anon_sym_BSLASHcitealt] = ACTIONS(4445), - [anon_sym_BSLASHcitealp] = ACTIONS(4445), - [anon_sym_BSLASHcitetext] = ACTIONS(4445), - [anon_sym_BSLASHparencite] = ACTIONS(4445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHParencite] = ACTIONS(4445), - [anon_sym_BSLASHfootcite] = ACTIONS(4445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4445), - [anon_sym_BSLASHtextcite] = ACTIONS(4445), - [anon_sym_BSLASHTextcite] = ACTIONS(4445), - [anon_sym_BSLASHsmartcite] = ACTIONS(4445), - [anon_sym_BSLASHSmartcite] = ACTIONS(4445), - [anon_sym_BSLASHsupercite] = ACTIONS(4445), - [anon_sym_BSLASHautocite] = ACTIONS(4445), - [anon_sym_BSLASHAutocite] = ACTIONS(4445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHvolcite] = ACTIONS(4445), - [anon_sym_BSLASHVolcite] = ACTIONS(4445), - [anon_sym_BSLASHpvolcite] = ACTIONS(4445), - [anon_sym_BSLASHPvolcite] = ACTIONS(4445), - [anon_sym_BSLASHfvolcite] = ACTIONS(4445), - [anon_sym_BSLASHftvolcite] = ACTIONS(4445), - [anon_sym_BSLASHsvolcite] = ACTIONS(4445), - [anon_sym_BSLASHSvolcite] = ACTIONS(4445), - [anon_sym_BSLASHtvolcite] = ACTIONS(4445), - [anon_sym_BSLASHTvolcite] = ACTIONS(4445), - [anon_sym_BSLASHavolcite] = ACTIONS(4445), - [anon_sym_BSLASHAvolcite] = ACTIONS(4445), - [anon_sym_BSLASHnotecite] = ACTIONS(4445), - [anon_sym_BSLASHNotecite] = ACTIONS(4445), - [anon_sym_BSLASHpnotecite] = ACTIONS(4445), - [anon_sym_BSLASHPnotecite] = ACTIONS(4445), - [anon_sym_BSLASHfnotecite] = ACTIONS(4445), - [anon_sym_BSLASHlabel] = ACTIONS(4445), - [anon_sym_BSLASHref] = ACTIONS(4445), - [anon_sym_BSLASHeqref] = ACTIONS(4445), - [anon_sym_BSLASHvref] = ACTIONS(4445), - [anon_sym_BSLASHVref] = ACTIONS(4445), - [anon_sym_BSLASHautoref] = ACTIONS(4445), - [anon_sym_BSLASHpageref] = ACTIONS(4445), - [anon_sym_BSLASHcref] = ACTIONS(4445), - [anon_sym_BSLASHCref] = ACTIONS(4445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4443), - [anon_sym_BSLASHnamecref] = ACTIONS(4445), - [anon_sym_BSLASHnameCref] = ACTIONS(4445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4445), - [anon_sym_BSLASHlabelcref] = ACTIONS(4445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4445), - [anon_sym_BSLASHcrefrange] = ACTIONS(4445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCrefrange] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4443), - [anon_sym_BSLASHnewlabel] = ACTIONS(4445), - [anon_sym_BSLASHnewcommand] = ACTIONS(4445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4443), - [anon_sym_BSLASHdef] = ACTIONS(4445), - [anon_sym_BSLASHlet] = ACTIONS(4445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4445), - [anon_sym_BSLASHgls] = ACTIONS(4445), - [anon_sym_BSLASHGls] = ACTIONS(4445), - [anon_sym_BSLASHGLS] = ACTIONS(4445), - [anon_sym_BSLASHglspl] = ACTIONS(4445), - [anon_sym_BSLASHGlspl] = ACTIONS(4445), - [anon_sym_BSLASHGLSpl] = ACTIONS(4445), - [anon_sym_BSLASHglsdisp] = ACTIONS(4445), - [anon_sym_BSLASHglslink] = ACTIONS(4445), - [anon_sym_BSLASHglstext] = ACTIONS(4445), - [anon_sym_BSLASHGlstext] = ACTIONS(4445), - [anon_sym_BSLASHGLStext] = ACTIONS(4445), - [anon_sym_BSLASHglsfirst] = ACTIONS(4445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4445), - [anon_sym_BSLASHglsplural] = ACTIONS(4445), - [anon_sym_BSLASHGlsplural] = ACTIONS(4445), - [anon_sym_BSLASHGLSplural] = ACTIONS(4445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHglsname] = ACTIONS(4445), - [anon_sym_BSLASHGlsname] = ACTIONS(4445), - [anon_sym_BSLASHGLSname] = ACTIONS(4445), - [anon_sym_BSLASHglssymbol] = ACTIONS(4445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4445), - [anon_sym_BSLASHglsdesc] = ACTIONS(4445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4445), - [anon_sym_BSLASHglsuseri] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4445), - [anon_sym_BSLASHglsuserii] = ACTIONS(4445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4445), - [anon_sym_BSLASHglsuserv] = ACTIONS(4445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4445), - [anon_sym_BSLASHglsuservi] = ACTIONS(4445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4445), - [anon_sym_BSLASHnewacronym] = ACTIONS(4445), - [anon_sym_BSLASHacrshort] = ACTIONS(4445), - [anon_sym_BSLASHAcrshort] = ACTIONS(4445), - [anon_sym_BSLASHACRshort] = ACTIONS(4445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4445), - [anon_sym_BSLASHacrlong] = ACTIONS(4445), - [anon_sym_BSLASHAcrlong] = ACTIONS(4445), - [anon_sym_BSLASHACRlong] = ACTIONS(4445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4445), - [anon_sym_BSLASHacrfull] = ACTIONS(4445), - [anon_sym_BSLASHAcrfull] = ACTIONS(4445), - [anon_sym_BSLASHACRfull] = ACTIONS(4445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4445), - [anon_sym_BSLASHacs] = ACTIONS(4445), - [anon_sym_BSLASHAcs] = ACTIONS(4445), - [anon_sym_BSLASHacsp] = ACTIONS(4445), - [anon_sym_BSLASHAcsp] = ACTIONS(4445), - [anon_sym_BSLASHacl] = ACTIONS(4445), - [anon_sym_BSLASHAcl] = ACTIONS(4445), - [anon_sym_BSLASHaclp] = ACTIONS(4445), - [anon_sym_BSLASHAclp] = ACTIONS(4445), - [anon_sym_BSLASHacf] = ACTIONS(4445), - [anon_sym_BSLASHAcf] = ACTIONS(4445), - [anon_sym_BSLASHacfp] = ACTIONS(4445), - [anon_sym_BSLASHAcfp] = ACTIONS(4445), - [anon_sym_BSLASHac] = ACTIONS(4445), - [anon_sym_BSLASHAc] = ACTIONS(4445), - [anon_sym_BSLASHacp] = ACTIONS(4445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4445), - [anon_sym_BSLASHcolor] = ACTIONS(4445), - [anon_sym_BSLASHcolorbox] = ACTIONS(4445), - [anon_sym_BSLASHtextcolor] = ACTIONS(4445), - [anon_sym_BSLASHpagecolor] = ACTIONS(4445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4445), - }, - [579] = { - [sym__section_declaration] = STATE(151), - [sym_section] = STATE(444), - [aux_sym__section_repeat3] = STATE(444), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(233), - [anon_sym_BSLASHaddsec] = ACTIONS(231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(233), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHend] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [580] = { - [sym__chapter_declaration] = STATE(137), - [sym_chapter] = STATE(445), - [aux_sym__section_repeat2] = STATE(445), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(227), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(229), - [anon_sym_BSLASHaddchap] = ACTIONS(227), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(229), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHend] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [581] = { - [sym__part_declaration] = STATE(129), - [sym_part] = STATE(446), - [aux_sym__section_repeat1] = STATE(446), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(223), - [anon_sym_BSLASHpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHaddpart] = ACTIONS(223), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(225), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHend] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), - }, - [582] = { - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(470), - [aux_sym__section_repeat4] = STATE(470), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(1844), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddsec] = ACTIONS(1844), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [583] = { - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(480), - [aux_sym__section_repeat3] = STATE(480), - [sym_command_name] = ACTIONS(1844), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_RPAREN] = ACTIONS(1842), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_RBRACK] = ACTIONS(1842), - [anon_sym_COMMA] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1842), - [anon_sym_BSLASHpart] = ACTIONS(1844), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddpart] = ACTIONS(1844), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1842), - [anon_sym_BSLASHchapter] = ACTIONS(1844), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1842), - [anon_sym_BSLASHaddchap] = ACTIONS(1844), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1844), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1842), - [anon_sym_BSLASHparagraph] = ACTIONS(1844), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1844), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1842), - [anon_sym_BSLASHitem] = ACTIONS(1844), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1842), - [anon_sym_LBRACE] = ACTIONS(1842), - [sym_word] = ACTIONS(1844), - [sym_placeholder] = ACTIONS(1842), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_STAR] = ACTIONS(1844), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1844), - [anon_sym__] = ACTIONS(1844), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_COLON] = ACTIONS(1844), - [anon_sym_SQUOTE] = ACTIONS(1844), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1842), - [anon_sym_DOLLAR] = ACTIONS(1844), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1842), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1842), - [anon_sym_BSLASHbegin] = ACTIONS(1844), - [anon_sym_BSLASHusepackage] = ACTIONS(1844), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1844), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1844), - [anon_sym_BSLASHinclude] = ACTIONS(1844), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1844), - [anon_sym_BSLASHinput] = ACTIONS(1844), - [anon_sym_BSLASHsubfile] = ACTIONS(1844), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1844), - [anon_sym_BSLASHbibliography] = ACTIONS(1844), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1844), - [anon_sym_BSLASHincludesvg] = ACTIONS(1844), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1844), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1844), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1844), - [anon_sym_BSLASHimport] = ACTIONS(1844), - [anon_sym_BSLASHsubimport] = ACTIONS(1844), - [anon_sym_BSLASHinputfrom] = ACTIONS(1844), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1844), - [anon_sym_BSLASHincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1844), - [anon_sym_BSLASHcaption] = ACTIONS(1844), - [anon_sym_BSLASHcite] = ACTIONS(1844), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCite] = ACTIONS(1844), - [anon_sym_BSLASHnocite] = ACTIONS(1844), - [anon_sym_BSLASHcitet] = ACTIONS(1844), - [anon_sym_BSLASHcitep] = ACTIONS(1844), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteauthor] = ACTIONS(1844), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1844), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitetitle] = ACTIONS(1844), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteyear] = ACTIONS(1844), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1842), - [anon_sym_BSLASHcitedate] = ACTIONS(1844), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1842), - [anon_sym_BSLASHciteurl] = ACTIONS(1844), - [anon_sym_BSLASHfullcite] = ACTIONS(1844), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1844), - [anon_sym_BSLASHcitealt] = ACTIONS(1844), - [anon_sym_BSLASHcitealp] = ACTIONS(1844), - [anon_sym_BSLASHcitetext] = ACTIONS(1844), - [anon_sym_BSLASHparencite] = ACTIONS(1844), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHParencite] = ACTIONS(1844), - [anon_sym_BSLASHfootcite] = ACTIONS(1844), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1844), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1844), - [anon_sym_BSLASHtextcite] = ACTIONS(1844), - [anon_sym_BSLASHTextcite] = ACTIONS(1844), - [anon_sym_BSLASHsmartcite] = ACTIONS(1844), - [anon_sym_BSLASHSmartcite] = ACTIONS(1844), - [anon_sym_BSLASHsupercite] = ACTIONS(1844), - [anon_sym_BSLASHautocite] = ACTIONS(1844), - [anon_sym_BSLASHAutocite] = ACTIONS(1844), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1842), - [anon_sym_BSLASHvolcite] = ACTIONS(1844), - [anon_sym_BSLASHVolcite] = ACTIONS(1844), - [anon_sym_BSLASHpvolcite] = ACTIONS(1844), - [anon_sym_BSLASHPvolcite] = ACTIONS(1844), - [anon_sym_BSLASHfvolcite] = ACTIONS(1844), - [anon_sym_BSLASHftvolcite] = ACTIONS(1844), - [anon_sym_BSLASHsvolcite] = ACTIONS(1844), - [anon_sym_BSLASHSvolcite] = ACTIONS(1844), - [anon_sym_BSLASHtvolcite] = ACTIONS(1844), - [anon_sym_BSLASHTvolcite] = ACTIONS(1844), - [anon_sym_BSLASHavolcite] = ACTIONS(1844), - [anon_sym_BSLASHAvolcite] = ACTIONS(1844), - [anon_sym_BSLASHnotecite] = ACTIONS(1844), - [anon_sym_BSLASHNotecite] = ACTIONS(1844), - [anon_sym_BSLASHpnotecite] = ACTIONS(1844), - [anon_sym_BSLASHPnotecite] = ACTIONS(1844), - [anon_sym_BSLASHfnotecite] = ACTIONS(1844), - [anon_sym_BSLASHlabel] = ACTIONS(1844), - [anon_sym_BSLASHref] = ACTIONS(1844), - [anon_sym_BSLASHeqref] = ACTIONS(1844), - [anon_sym_BSLASHvref] = ACTIONS(1844), - [anon_sym_BSLASHVref] = ACTIONS(1844), - [anon_sym_BSLASHautoref] = ACTIONS(1844), - [anon_sym_BSLASHpageref] = ACTIONS(1844), - [anon_sym_BSLASHcref] = ACTIONS(1844), - [anon_sym_BSLASHCref] = ACTIONS(1844), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnameCref] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1844), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1844), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1844), - [anon_sym_BSLASHlabelcref] = ACTIONS(1844), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange] = ACTIONS(1844), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHCrefrange] = ACTIONS(1844), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1842), - [anon_sym_BSLASHnewlabel] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand] = ACTIONS(1844), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1844), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1844), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1842), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1844), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1842), - [anon_sym_BSLASHdef] = ACTIONS(1844), - [anon_sym_BSLASHlet] = ACTIONS(1844), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1844), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1844), - [anon_sym_BSLASHgls] = ACTIONS(1844), - [anon_sym_BSLASHGls] = ACTIONS(1844), - [anon_sym_BSLASHGLS] = ACTIONS(1844), - [anon_sym_BSLASHglspl] = ACTIONS(1844), - [anon_sym_BSLASHGlspl] = ACTIONS(1844), - [anon_sym_BSLASHGLSpl] = ACTIONS(1844), - [anon_sym_BSLASHglsdisp] = ACTIONS(1844), - [anon_sym_BSLASHglslink] = ACTIONS(1844), - [anon_sym_BSLASHglstext] = ACTIONS(1844), - [anon_sym_BSLASHGlstext] = ACTIONS(1844), - [anon_sym_BSLASHGLStext] = ACTIONS(1844), - [anon_sym_BSLASHglsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1844), - [anon_sym_BSLASHglsplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSplural] = ACTIONS(1844), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1844), - [anon_sym_BSLASHglsname] = ACTIONS(1844), - [anon_sym_BSLASHGlsname] = ACTIONS(1844), - [anon_sym_BSLASHGLSname] = ACTIONS(1844), - [anon_sym_BSLASHglssymbol] = ACTIONS(1844), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1844), - [anon_sym_BSLASHglsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1844), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1844), - [anon_sym_BSLASHglsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1844), - [anon_sym_BSLASHglsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1844), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1844), - [anon_sym_BSLASHglsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1844), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1844), - [anon_sym_BSLASHglsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1844), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1844), - [anon_sym_BSLASHnewacronym] = ACTIONS(1844), - [anon_sym_BSLASHacrshort] = ACTIONS(1844), - [anon_sym_BSLASHAcrshort] = ACTIONS(1844), - [anon_sym_BSLASHACRshort] = ACTIONS(1844), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1844), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1844), - [anon_sym_BSLASHacrlong] = ACTIONS(1844), - [anon_sym_BSLASHAcrlong] = ACTIONS(1844), - [anon_sym_BSLASHACRlong] = ACTIONS(1844), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1844), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1844), - [anon_sym_BSLASHacrfull] = ACTIONS(1844), - [anon_sym_BSLASHAcrfull] = ACTIONS(1844), - [anon_sym_BSLASHACRfull] = ACTIONS(1844), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1844), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1844), - [anon_sym_BSLASHacs] = ACTIONS(1844), - [anon_sym_BSLASHAcs] = ACTIONS(1844), - [anon_sym_BSLASHacsp] = ACTIONS(1844), - [anon_sym_BSLASHAcsp] = ACTIONS(1844), - [anon_sym_BSLASHacl] = ACTIONS(1844), - [anon_sym_BSLASHAcl] = ACTIONS(1844), - [anon_sym_BSLASHaclp] = ACTIONS(1844), - [anon_sym_BSLASHAclp] = ACTIONS(1844), - [anon_sym_BSLASHacf] = ACTIONS(1844), - [anon_sym_BSLASHAcf] = ACTIONS(1844), - [anon_sym_BSLASHacfp] = ACTIONS(1844), - [anon_sym_BSLASHAcfp] = ACTIONS(1844), - [anon_sym_BSLASHac] = ACTIONS(1844), - [anon_sym_BSLASHAc] = ACTIONS(1844), - [anon_sym_BSLASHacp] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1844), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1844), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1844), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1844), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1844), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1844), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1844), - [anon_sym_BSLASHcolor] = ACTIONS(1844), - [anon_sym_BSLASHcolorbox] = ACTIONS(1844), - [anon_sym_BSLASHtextcolor] = ACTIONS(1844), - [anon_sym_BSLASHpagecolor] = ACTIONS(1844), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1844), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1844), - }, - [584] = { - [ts_builtin_sym_end] = ACTIONS(4695), - [sym_command_name] = ACTIONS(4697), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4697), - [anon_sym_BSLASHfi] = ACTIONS(4699), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_RPAREN] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_RBRACK] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_BSLASHpart] = ACTIONS(4697), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddpart] = ACTIONS(4697), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4695), - [anon_sym_BSLASHchapter] = ACTIONS(4697), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddchap] = ACTIONS(4697), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsection] = ACTIONS(4697), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddsec] = ACTIONS(4697), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubsection] = ACTIONS(4697), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHparagraph] = ACTIONS(4697), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4695), - [anon_sym_BSLASHitem] = ACTIONS(4697), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4695), - [anon_sym_RBRACE] = ACTIONS(4695), - [sym_word] = ACTIONS(4697), - [sym_placeholder] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_CARET] = ACTIONS(4697), - [anon_sym__] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4697), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4695), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4695), - [anon_sym_BSLASHbegin] = ACTIONS(4697), - [anon_sym_BSLASHusepackage] = ACTIONS(4697), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4697), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4697), - [anon_sym_BSLASHinclude] = ACTIONS(4697), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4697), - [anon_sym_BSLASHinput] = ACTIONS(4697), - [anon_sym_BSLASHsubfile] = ACTIONS(4697), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4697), - [anon_sym_BSLASHbibliography] = ACTIONS(4697), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4697), - [anon_sym_BSLASHincludesvg] = ACTIONS(4697), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4697), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4697), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4697), - [anon_sym_BSLASHimport] = ACTIONS(4697), - [anon_sym_BSLASHsubimport] = ACTIONS(4697), - [anon_sym_BSLASHinputfrom] = ACTIONS(4697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4697), - [anon_sym_BSLASHincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHcaption] = ACTIONS(4697), - [anon_sym_BSLASHcite] = ACTIONS(4697), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCite] = ACTIONS(4697), - [anon_sym_BSLASHnocite] = ACTIONS(4697), - [anon_sym_BSLASHcitet] = ACTIONS(4697), - [anon_sym_BSLASHcitep] = ACTIONS(4697), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteyear] = ACTIONS(4697), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitedate] = ACTIONS(4697), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteurl] = ACTIONS(4697), - [anon_sym_BSLASHfullcite] = ACTIONS(4697), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4697), - [anon_sym_BSLASHcitealt] = ACTIONS(4697), - [anon_sym_BSLASHcitealp] = ACTIONS(4697), - [anon_sym_BSLASHcitetext] = ACTIONS(4697), - [anon_sym_BSLASHparencite] = ACTIONS(4697), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHParencite] = ACTIONS(4697), - [anon_sym_BSLASHfootcite] = ACTIONS(4697), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4697), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4697), - [anon_sym_BSLASHtextcite] = ACTIONS(4697), - [anon_sym_BSLASHTextcite] = ACTIONS(4697), - [anon_sym_BSLASHsmartcite] = ACTIONS(4697), - [anon_sym_BSLASHSmartcite] = ACTIONS(4697), - [anon_sym_BSLASHsupercite] = ACTIONS(4697), - [anon_sym_BSLASHautocite] = ACTIONS(4697), - [anon_sym_BSLASHAutocite] = ACTIONS(4697), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHvolcite] = ACTIONS(4697), - [anon_sym_BSLASHVolcite] = ACTIONS(4697), - [anon_sym_BSLASHpvolcite] = ACTIONS(4697), - [anon_sym_BSLASHPvolcite] = ACTIONS(4697), - [anon_sym_BSLASHfvolcite] = ACTIONS(4697), - [anon_sym_BSLASHftvolcite] = ACTIONS(4697), - [anon_sym_BSLASHsvolcite] = ACTIONS(4697), - [anon_sym_BSLASHSvolcite] = ACTIONS(4697), - [anon_sym_BSLASHtvolcite] = ACTIONS(4697), - [anon_sym_BSLASHTvolcite] = ACTIONS(4697), - [anon_sym_BSLASHavolcite] = ACTIONS(4697), - [anon_sym_BSLASHAvolcite] = ACTIONS(4697), - [anon_sym_BSLASHnotecite] = ACTIONS(4697), - [anon_sym_BSLASHNotecite] = ACTIONS(4697), - [anon_sym_BSLASHpnotecite] = ACTIONS(4697), - [anon_sym_BSLASHPnotecite] = ACTIONS(4697), - [anon_sym_BSLASHfnotecite] = ACTIONS(4697), - [anon_sym_BSLASHlabel] = ACTIONS(4697), - [anon_sym_BSLASHref] = ACTIONS(4697), - [anon_sym_BSLASHeqref] = ACTIONS(4697), - [anon_sym_BSLASHvref] = ACTIONS(4697), - [anon_sym_BSLASHVref] = ACTIONS(4697), - [anon_sym_BSLASHautoref] = ACTIONS(4697), - [anon_sym_BSLASHpageref] = ACTIONS(4697), - [anon_sym_BSLASHcref] = ACTIONS(4697), - [anon_sym_BSLASHCref] = ACTIONS(4697), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnameCref] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHlabelcref] = ACTIONS(4697), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnewlabel] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4695), - [anon_sym_BSLASHdef] = ACTIONS(4697), - [anon_sym_BSLASHlet] = ACTIONS(4697), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4697), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4697), - [anon_sym_BSLASHgls] = ACTIONS(4697), - [anon_sym_BSLASHGls] = ACTIONS(4697), - [anon_sym_BSLASHGLS] = ACTIONS(4697), - [anon_sym_BSLASHglspl] = ACTIONS(4697), - [anon_sym_BSLASHGlspl] = ACTIONS(4697), - [anon_sym_BSLASHGLSpl] = ACTIONS(4697), - [anon_sym_BSLASHglsdisp] = ACTIONS(4697), - [anon_sym_BSLASHglslink] = ACTIONS(4697), - [anon_sym_BSLASHglstext] = ACTIONS(4697), - [anon_sym_BSLASHGlstext] = ACTIONS(4697), - [anon_sym_BSLASHGLStext] = ACTIONS(4697), - [anon_sym_BSLASHglsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4697), - [anon_sym_BSLASHglsplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSplural] = ACTIONS(4697), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHglsname] = ACTIONS(4697), - [anon_sym_BSLASHGlsname] = ACTIONS(4697), - [anon_sym_BSLASHGLSname] = ACTIONS(4697), - [anon_sym_BSLASHglssymbol] = ACTIONS(4697), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4697), - [anon_sym_BSLASHglsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4697), - [anon_sym_BSLASHglsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4697), - [anon_sym_BSLASHglsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4697), - [anon_sym_BSLASHglsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4697), - [anon_sym_BSLASHglsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4697), - [anon_sym_BSLASHnewacronym] = ACTIONS(4697), - [anon_sym_BSLASHacrshort] = ACTIONS(4697), - [anon_sym_BSLASHAcrshort] = ACTIONS(4697), - [anon_sym_BSLASHACRshort] = ACTIONS(4697), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4697), - [anon_sym_BSLASHacrlong] = ACTIONS(4697), - [anon_sym_BSLASHAcrlong] = ACTIONS(4697), - [anon_sym_BSLASHACRlong] = ACTIONS(4697), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4697), - [anon_sym_BSLASHacrfull] = ACTIONS(4697), - [anon_sym_BSLASHAcrfull] = ACTIONS(4697), - [anon_sym_BSLASHACRfull] = ACTIONS(4697), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4697), - [anon_sym_BSLASHacs] = ACTIONS(4697), - [anon_sym_BSLASHAcs] = ACTIONS(4697), - [anon_sym_BSLASHacsp] = ACTIONS(4697), - [anon_sym_BSLASHAcsp] = ACTIONS(4697), - [anon_sym_BSLASHacl] = ACTIONS(4697), - [anon_sym_BSLASHAcl] = ACTIONS(4697), - [anon_sym_BSLASHaclp] = ACTIONS(4697), - [anon_sym_BSLASHAclp] = ACTIONS(4697), - [anon_sym_BSLASHacf] = ACTIONS(4697), - [anon_sym_BSLASHAcf] = ACTIONS(4697), - [anon_sym_BSLASHacfp] = ACTIONS(4697), - [anon_sym_BSLASHAcfp] = ACTIONS(4697), - [anon_sym_BSLASHac] = ACTIONS(4697), - [anon_sym_BSLASHAc] = ACTIONS(4697), - [anon_sym_BSLASHacp] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4697), - [anon_sym_BSLASHcolor] = ACTIONS(4697), - [anon_sym_BSLASHcolorbox] = ACTIONS(4697), - [anon_sym_BSLASHtextcolor] = ACTIONS(4697), - [anon_sym_BSLASHpagecolor] = ACTIONS(4697), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4697), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4697), - [sym__trivia_raw_fi] = ACTIONS(4701), - }, - [585] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [586] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [587] = { - [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(461), - [aux_sym__section_repeat6] = STATE(461), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [588] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(466), - [aux_sym__section_repeat5] = STATE(466), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [589] = { - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(470), - [aux_sym__section_repeat4] = STATE(470), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [590] = { - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(480), - [aux_sym__section_repeat3] = STATE(480), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(1816), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddchap] = ACTIONS(1816), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [591] = { - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(487), - [aux_sym__section_repeat2] = STATE(487), - [sym_command_name] = ACTIONS(1816), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1812), - [anon_sym_RPAREN] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1812), - [anon_sym_RBRACK] = ACTIONS(1812), - [anon_sym_COMMA] = ACTIONS(1812), - [anon_sym_EQ] = ACTIONS(1812), - [anon_sym_BSLASHpart] = ACTIONS(1816), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddpart] = ACTIONS(1816), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1812), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(1816), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHaddsec] = ACTIONS(1816), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1816), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1812), - [anon_sym_BSLASHparagraph] = ACTIONS(1816), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1816), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1812), - [anon_sym_BSLASHitem] = ACTIONS(1816), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1812), - [sym_word] = ACTIONS(1816), - [sym_placeholder] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1816), - [anon_sym__] = ACTIONS(1816), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_COLON] = ACTIONS(1816), - [anon_sym_SQUOTE] = ACTIONS(1816), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1812), - [anon_sym_DOLLAR] = ACTIONS(1816), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_RPAREN] = ACTIONS(1812), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1812), - [anon_sym_BSLASHbegin] = ACTIONS(1816), - [anon_sym_BSLASHusepackage] = ACTIONS(1816), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1816), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1816), - [anon_sym_BSLASHinclude] = ACTIONS(1816), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1816), - [anon_sym_BSLASHinput] = ACTIONS(1816), - [anon_sym_BSLASHsubfile] = ACTIONS(1816), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1816), - [anon_sym_BSLASHbibliography] = ACTIONS(1816), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1816), - [anon_sym_BSLASHincludesvg] = ACTIONS(1816), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1816), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1816), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1816), - [anon_sym_BSLASHimport] = ACTIONS(1816), - [anon_sym_BSLASHsubimport] = ACTIONS(1816), - [anon_sym_BSLASHinputfrom] = ACTIONS(1816), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1816), - [anon_sym_BSLASHincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1816), - [anon_sym_BSLASHcaption] = ACTIONS(1816), - [anon_sym_BSLASHcite] = ACTIONS(1816), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCite] = ACTIONS(1816), - [anon_sym_BSLASHnocite] = ACTIONS(1816), - [anon_sym_BSLASHcitet] = ACTIONS(1816), - [anon_sym_BSLASHcitep] = ACTIONS(1816), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteauthor] = ACTIONS(1816), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1816), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitetitle] = ACTIONS(1816), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteyear] = ACTIONS(1816), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1812), - [anon_sym_BSLASHcitedate] = ACTIONS(1816), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1812), - [anon_sym_BSLASHciteurl] = ACTIONS(1816), - [anon_sym_BSLASHfullcite] = ACTIONS(1816), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1816), - [anon_sym_BSLASHcitealt] = ACTIONS(1816), - [anon_sym_BSLASHcitealp] = ACTIONS(1816), - [anon_sym_BSLASHcitetext] = ACTIONS(1816), - [anon_sym_BSLASHparencite] = ACTIONS(1816), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHParencite] = ACTIONS(1816), - [anon_sym_BSLASHfootcite] = ACTIONS(1816), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1816), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1816), - [anon_sym_BSLASHtextcite] = ACTIONS(1816), - [anon_sym_BSLASHTextcite] = ACTIONS(1816), - [anon_sym_BSLASHsmartcite] = ACTIONS(1816), - [anon_sym_BSLASHSmartcite] = ACTIONS(1816), - [anon_sym_BSLASHsupercite] = ACTIONS(1816), - [anon_sym_BSLASHautocite] = ACTIONS(1816), - [anon_sym_BSLASHAutocite] = ACTIONS(1816), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1812), - [anon_sym_BSLASHvolcite] = ACTIONS(1816), - [anon_sym_BSLASHVolcite] = ACTIONS(1816), - [anon_sym_BSLASHpvolcite] = ACTIONS(1816), - [anon_sym_BSLASHPvolcite] = ACTIONS(1816), - [anon_sym_BSLASHfvolcite] = ACTIONS(1816), - [anon_sym_BSLASHftvolcite] = ACTIONS(1816), - [anon_sym_BSLASHsvolcite] = ACTIONS(1816), - [anon_sym_BSLASHSvolcite] = ACTIONS(1816), - [anon_sym_BSLASHtvolcite] = ACTIONS(1816), - [anon_sym_BSLASHTvolcite] = ACTIONS(1816), - [anon_sym_BSLASHavolcite] = ACTIONS(1816), - [anon_sym_BSLASHAvolcite] = ACTIONS(1816), - [anon_sym_BSLASHnotecite] = ACTIONS(1816), - [anon_sym_BSLASHNotecite] = ACTIONS(1816), - [anon_sym_BSLASHpnotecite] = ACTIONS(1816), - [anon_sym_BSLASHPnotecite] = ACTIONS(1816), - [anon_sym_BSLASHfnotecite] = ACTIONS(1816), - [anon_sym_BSLASHlabel] = ACTIONS(1816), - [anon_sym_BSLASHref] = ACTIONS(1816), - [anon_sym_BSLASHeqref] = ACTIONS(1816), - [anon_sym_BSLASHvref] = ACTIONS(1816), - [anon_sym_BSLASHVref] = ACTIONS(1816), - [anon_sym_BSLASHautoref] = ACTIONS(1816), - [anon_sym_BSLASHpageref] = ACTIONS(1816), - [anon_sym_BSLASHcref] = ACTIONS(1816), - [anon_sym_BSLASHCref] = ACTIONS(1816), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnameCref] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1816), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1816), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1816), - [anon_sym_BSLASHlabelcref] = ACTIONS(1816), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange] = ACTIONS(1816), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHCrefrange] = ACTIONS(1816), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1812), - [anon_sym_BSLASHnewlabel] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand] = ACTIONS(1816), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1816), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1816), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1812), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1816), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1812), - [anon_sym_BSLASHdef] = ACTIONS(1816), - [anon_sym_BSLASHlet] = ACTIONS(1816), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1816), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1816), - [anon_sym_BSLASHgls] = ACTIONS(1816), - [anon_sym_BSLASHGls] = ACTIONS(1816), - [anon_sym_BSLASHGLS] = ACTIONS(1816), - [anon_sym_BSLASHglspl] = ACTIONS(1816), - [anon_sym_BSLASHGlspl] = ACTIONS(1816), - [anon_sym_BSLASHGLSpl] = ACTIONS(1816), - [anon_sym_BSLASHglsdisp] = ACTIONS(1816), - [anon_sym_BSLASHglslink] = ACTIONS(1816), - [anon_sym_BSLASHglstext] = ACTIONS(1816), - [anon_sym_BSLASHGlstext] = ACTIONS(1816), - [anon_sym_BSLASHGLStext] = ACTIONS(1816), - [anon_sym_BSLASHglsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1816), - [anon_sym_BSLASHglsplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSplural] = ACTIONS(1816), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1816), - [anon_sym_BSLASHglsname] = ACTIONS(1816), - [anon_sym_BSLASHGlsname] = ACTIONS(1816), - [anon_sym_BSLASHGLSname] = ACTIONS(1816), - [anon_sym_BSLASHglssymbol] = ACTIONS(1816), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1816), - [anon_sym_BSLASHglsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1816), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1816), - [anon_sym_BSLASHglsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1816), - [anon_sym_BSLASHglsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1816), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1816), - [anon_sym_BSLASHglsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1816), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1816), - [anon_sym_BSLASHglsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1816), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1816), - [anon_sym_BSLASHnewacronym] = ACTIONS(1816), - [anon_sym_BSLASHacrshort] = ACTIONS(1816), - [anon_sym_BSLASHAcrshort] = ACTIONS(1816), - [anon_sym_BSLASHACRshort] = ACTIONS(1816), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1816), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1816), - [anon_sym_BSLASHacrlong] = ACTIONS(1816), - [anon_sym_BSLASHAcrlong] = ACTIONS(1816), - [anon_sym_BSLASHACRlong] = ACTIONS(1816), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1816), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1816), - [anon_sym_BSLASHacrfull] = ACTIONS(1816), - [anon_sym_BSLASHAcrfull] = ACTIONS(1816), - [anon_sym_BSLASHACRfull] = ACTIONS(1816), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1816), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1816), - [anon_sym_BSLASHacs] = ACTIONS(1816), - [anon_sym_BSLASHAcs] = ACTIONS(1816), - [anon_sym_BSLASHacsp] = ACTIONS(1816), - [anon_sym_BSLASHAcsp] = ACTIONS(1816), - [anon_sym_BSLASHacl] = ACTIONS(1816), - [anon_sym_BSLASHAcl] = ACTIONS(1816), - [anon_sym_BSLASHaclp] = ACTIONS(1816), - [anon_sym_BSLASHAclp] = ACTIONS(1816), - [anon_sym_BSLASHacf] = ACTIONS(1816), - [anon_sym_BSLASHAcf] = ACTIONS(1816), - [anon_sym_BSLASHacfp] = ACTIONS(1816), - [anon_sym_BSLASHAcfp] = ACTIONS(1816), - [anon_sym_BSLASHac] = ACTIONS(1816), - [anon_sym_BSLASHAc] = ACTIONS(1816), - [anon_sym_BSLASHacp] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1816), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1816), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1816), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1816), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1816), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1816), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1816), - [anon_sym_BSLASHcolor] = ACTIONS(1816), - [anon_sym_BSLASHcolorbox] = ACTIONS(1816), - [anon_sym_BSLASHtextcolor] = ACTIONS(1816), - [anon_sym_BSLASHpagecolor] = ACTIONS(1816), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1816), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1816), - }, - [592] = { - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(604), - [aux_sym__section_repeat6] = STATE(604), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1898), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHitem] = ACTIONS(1898), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), - }, - [593] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(1898), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(1898), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), - }, - [594] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(1898), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_RPAREN] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1896), - [anon_sym_RBRACK] = ACTIONS(1896), - [anon_sym_COMMA] = ACTIONS(1896), - [anon_sym_EQ] = ACTIONS(1896), - [anon_sym_BSLASHpart] = ACTIONS(1898), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddpart] = ACTIONS(1898), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1896), - [anon_sym_BSLASHchapter] = ACTIONS(1898), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddchap] = ACTIONS(1898), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsection] = ACTIONS(1898), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHaddsec] = ACTIONS(1898), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1898), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1896), - [anon_sym_BSLASHparagraph] = ACTIONS(1898), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1898), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1896), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(1896), - [sym_word] = ACTIONS(1898), - [sym_placeholder] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1898), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym__] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1898), - [anon_sym_PIPE] = ACTIONS(1898), - [anon_sym_COLON] = ACTIONS(1898), - [anon_sym_SQUOTE] = ACTIONS(1898), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1898), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1896), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1896), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1896), - [anon_sym_BSLASHbegin] = ACTIONS(1898), - [anon_sym_BSLASHusepackage] = ACTIONS(1898), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1898), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1898), - [anon_sym_BSLASHinclude] = ACTIONS(1898), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1898), - [anon_sym_BSLASHinput] = ACTIONS(1898), - [anon_sym_BSLASHsubfile] = ACTIONS(1898), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1898), - [anon_sym_BSLASHbibliography] = ACTIONS(1898), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1898), - [anon_sym_BSLASHincludesvg] = ACTIONS(1898), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1898), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1898), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1898), - [anon_sym_BSLASHimport] = ACTIONS(1898), - [anon_sym_BSLASHsubimport] = ACTIONS(1898), - [anon_sym_BSLASHinputfrom] = ACTIONS(1898), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1898), - [anon_sym_BSLASHincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1898), - [anon_sym_BSLASHcaption] = ACTIONS(1898), - [anon_sym_BSLASHcite] = ACTIONS(1898), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCite] = ACTIONS(1898), - [anon_sym_BSLASHnocite] = ACTIONS(1898), - [anon_sym_BSLASHcitet] = ACTIONS(1898), - [anon_sym_BSLASHcitep] = ACTIONS(1898), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteauthor] = ACTIONS(1898), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1898), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitetitle] = ACTIONS(1898), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteyear] = ACTIONS(1898), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1896), - [anon_sym_BSLASHcitedate] = ACTIONS(1898), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1896), - [anon_sym_BSLASHciteurl] = ACTIONS(1898), - [anon_sym_BSLASHfullcite] = ACTIONS(1898), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1898), - [anon_sym_BSLASHcitealt] = ACTIONS(1898), - [anon_sym_BSLASHcitealp] = ACTIONS(1898), - [anon_sym_BSLASHcitetext] = ACTIONS(1898), - [anon_sym_BSLASHparencite] = ACTIONS(1898), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHParencite] = ACTIONS(1898), - [anon_sym_BSLASHfootcite] = ACTIONS(1898), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1898), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1898), - [anon_sym_BSLASHtextcite] = ACTIONS(1898), - [anon_sym_BSLASHTextcite] = ACTIONS(1898), - [anon_sym_BSLASHsmartcite] = ACTIONS(1898), - [anon_sym_BSLASHSmartcite] = ACTIONS(1898), - [anon_sym_BSLASHsupercite] = ACTIONS(1898), - [anon_sym_BSLASHautocite] = ACTIONS(1898), - [anon_sym_BSLASHAutocite] = ACTIONS(1898), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1896), - [anon_sym_BSLASHvolcite] = ACTIONS(1898), - [anon_sym_BSLASHVolcite] = ACTIONS(1898), - [anon_sym_BSLASHpvolcite] = ACTIONS(1898), - [anon_sym_BSLASHPvolcite] = ACTIONS(1898), - [anon_sym_BSLASHfvolcite] = ACTIONS(1898), - [anon_sym_BSLASHftvolcite] = ACTIONS(1898), - [anon_sym_BSLASHsvolcite] = ACTIONS(1898), - [anon_sym_BSLASHSvolcite] = ACTIONS(1898), - [anon_sym_BSLASHtvolcite] = ACTIONS(1898), - [anon_sym_BSLASHTvolcite] = ACTIONS(1898), - [anon_sym_BSLASHavolcite] = ACTIONS(1898), - [anon_sym_BSLASHAvolcite] = ACTIONS(1898), - [anon_sym_BSLASHnotecite] = ACTIONS(1898), - [anon_sym_BSLASHNotecite] = ACTIONS(1898), - [anon_sym_BSLASHpnotecite] = ACTIONS(1898), - [anon_sym_BSLASHPnotecite] = ACTIONS(1898), - [anon_sym_BSLASHfnotecite] = ACTIONS(1898), - [anon_sym_BSLASHlabel] = ACTIONS(1898), - [anon_sym_BSLASHref] = ACTIONS(1898), - [anon_sym_BSLASHeqref] = ACTIONS(1898), - [anon_sym_BSLASHvref] = ACTIONS(1898), - [anon_sym_BSLASHVref] = ACTIONS(1898), - [anon_sym_BSLASHautoref] = ACTIONS(1898), - [anon_sym_BSLASHpageref] = ACTIONS(1898), - [anon_sym_BSLASHcref] = ACTIONS(1898), - [anon_sym_BSLASHCref] = ACTIONS(1898), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnameCref] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1898), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1898), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1898), - [anon_sym_BSLASHlabelcref] = ACTIONS(1898), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange] = ACTIONS(1898), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHCrefrange] = ACTIONS(1898), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1896), - [anon_sym_BSLASHnewlabel] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand] = ACTIONS(1898), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1898), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1898), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1896), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1898), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1896), - [anon_sym_BSLASHdef] = ACTIONS(1898), - [anon_sym_BSLASHlet] = ACTIONS(1898), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1898), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1898), - [anon_sym_BSLASHgls] = ACTIONS(1898), - [anon_sym_BSLASHGls] = ACTIONS(1898), - [anon_sym_BSLASHGLS] = ACTIONS(1898), - [anon_sym_BSLASHglspl] = ACTIONS(1898), - [anon_sym_BSLASHGlspl] = ACTIONS(1898), - [anon_sym_BSLASHGLSpl] = ACTIONS(1898), - [anon_sym_BSLASHglsdisp] = ACTIONS(1898), - [anon_sym_BSLASHglslink] = ACTIONS(1898), - [anon_sym_BSLASHglstext] = ACTIONS(1898), - [anon_sym_BSLASHGlstext] = ACTIONS(1898), - [anon_sym_BSLASHGLStext] = ACTIONS(1898), - [anon_sym_BSLASHglsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1898), - [anon_sym_BSLASHglsplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSplural] = ACTIONS(1898), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1898), - [anon_sym_BSLASHglsname] = ACTIONS(1898), - [anon_sym_BSLASHGlsname] = ACTIONS(1898), - [anon_sym_BSLASHGLSname] = ACTIONS(1898), - [anon_sym_BSLASHglssymbol] = ACTIONS(1898), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1898), - [anon_sym_BSLASHglsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1898), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1898), - [anon_sym_BSLASHglsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1898), - [anon_sym_BSLASHglsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1898), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1898), - [anon_sym_BSLASHglsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1898), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1898), - [anon_sym_BSLASHglsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1898), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1898), - [anon_sym_BSLASHnewacronym] = ACTIONS(1898), - [anon_sym_BSLASHacrshort] = ACTIONS(1898), - [anon_sym_BSLASHAcrshort] = ACTIONS(1898), - [anon_sym_BSLASHACRshort] = ACTIONS(1898), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1898), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1898), - [anon_sym_BSLASHacrlong] = ACTIONS(1898), - [anon_sym_BSLASHAcrlong] = ACTIONS(1898), - [anon_sym_BSLASHACRlong] = ACTIONS(1898), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1898), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1898), - [anon_sym_BSLASHacrfull] = ACTIONS(1898), - [anon_sym_BSLASHAcrfull] = ACTIONS(1898), - [anon_sym_BSLASHACRfull] = ACTIONS(1898), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1898), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1898), - [anon_sym_BSLASHacs] = ACTIONS(1898), - [anon_sym_BSLASHAcs] = ACTIONS(1898), - [anon_sym_BSLASHacsp] = ACTIONS(1898), - [anon_sym_BSLASHAcsp] = ACTIONS(1898), - [anon_sym_BSLASHacl] = ACTIONS(1898), - [anon_sym_BSLASHAcl] = ACTIONS(1898), - [anon_sym_BSLASHaclp] = ACTIONS(1898), - [anon_sym_BSLASHAclp] = ACTIONS(1898), - [anon_sym_BSLASHacf] = ACTIONS(1898), - [anon_sym_BSLASHAcf] = ACTIONS(1898), - [anon_sym_BSLASHacfp] = ACTIONS(1898), - [anon_sym_BSLASHAcfp] = ACTIONS(1898), - [anon_sym_BSLASHac] = ACTIONS(1898), - [anon_sym_BSLASHAc] = ACTIONS(1898), - [anon_sym_BSLASHacp] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1898), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1898), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1898), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1898), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1898), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1898), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1898), - [anon_sym_BSLASHcolor] = ACTIONS(1898), - [anon_sym_BSLASHcolorbox] = ACTIONS(1898), - [anon_sym_BSLASHtextcolor] = ACTIONS(1898), - [anon_sym_BSLASHpagecolor] = ACTIONS(1898), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1898), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1898), - }, - [595] = { - [sym_curly_group] = STATE(1113), - [sym_mixed_group] = STATE(1113), - [aux_sym_generic_command_repeat1] = STATE(538), - [sym_command_name] = ACTIONS(4449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(4693), - [anon_sym_RPAREN] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4693), - [anon_sym_RBRACK] = ACTIONS(4447), - [anon_sym_COMMA] = ACTIONS(4447), - [anon_sym_EQ] = ACTIONS(4447), - [anon_sym_BSLASHpart] = ACTIONS(4449), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddpart] = ACTIONS(4449), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4447), - [anon_sym_BSLASHchapter] = ACTIONS(4449), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddchap] = ACTIONS(4449), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsection] = ACTIONS(4449), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddsec] = ACTIONS(4449), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubsection] = ACTIONS(4449), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4449), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHparagraph] = ACTIONS(4449), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4449), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4447), - [anon_sym_BSLASHitem] = ACTIONS(4449), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(4449), - [sym_placeholder] = ACTIONS(4447), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [anon_sym_SLASH] = ACTIONS(4449), - [anon_sym_CARET] = ACTIONS(4449), - [anon_sym__] = ACTIONS(4449), - [anon_sym_LT] = ACTIONS(4449), - [anon_sym_GT] = ACTIONS(4449), - [anon_sym_BANG] = ACTIONS(4449), - [anon_sym_PIPE] = ACTIONS(4449), - [anon_sym_COLON] = ACTIONS(4449), - [anon_sym_SQUOTE] = ACTIONS(4449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4447), - [anon_sym_BSLASHbegin] = ACTIONS(4449), - [anon_sym_BSLASHend] = ACTIONS(4449), - [anon_sym_BSLASHusepackage] = ACTIONS(4449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4449), - [anon_sym_BSLASHinclude] = ACTIONS(4449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4449), - [anon_sym_BSLASHinput] = ACTIONS(4449), - [anon_sym_BSLASHsubfile] = ACTIONS(4449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4449), - [anon_sym_BSLASHbibliography] = ACTIONS(4449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4449), - [anon_sym_BSLASHincludesvg] = ACTIONS(4449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4449), - [anon_sym_BSLASHimport] = ACTIONS(4449), - [anon_sym_BSLASHsubimport] = ACTIONS(4449), - [anon_sym_BSLASHinputfrom] = ACTIONS(4449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4449), - [anon_sym_BSLASHincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHcaption] = ACTIONS(4449), - [anon_sym_BSLASHcite] = ACTIONS(4449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCite] = ACTIONS(4449), - [anon_sym_BSLASHnocite] = ACTIONS(4449), - [anon_sym_BSLASHcitet] = ACTIONS(4449), - [anon_sym_BSLASHcitep] = ACTIONS(4449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteyear] = ACTIONS(4449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitedate] = ACTIONS(4449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteurl] = ACTIONS(4449), - [anon_sym_BSLASHfullcite] = ACTIONS(4449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4449), - [anon_sym_BSLASHcitealt] = ACTIONS(4449), - [anon_sym_BSLASHcitealp] = ACTIONS(4449), - [anon_sym_BSLASHcitetext] = ACTIONS(4449), - [anon_sym_BSLASHparencite] = ACTIONS(4449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHParencite] = ACTIONS(4449), - [anon_sym_BSLASHfootcite] = ACTIONS(4449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4449), - [anon_sym_BSLASHtextcite] = ACTIONS(4449), - [anon_sym_BSLASHTextcite] = ACTIONS(4449), - [anon_sym_BSLASHsmartcite] = ACTIONS(4449), - [anon_sym_BSLASHSmartcite] = ACTIONS(4449), - [anon_sym_BSLASHsupercite] = ACTIONS(4449), - [anon_sym_BSLASHautocite] = ACTIONS(4449), - [anon_sym_BSLASHAutocite] = ACTIONS(4449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHvolcite] = ACTIONS(4449), - [anon_sym_BSLASHVolcite] = ACTIONS(4449), - [anon_sym_BSLASHpvolcite] = ACTIONS(4449), - [anon_sym_BSLASHPvolcite] = ACTIONS(4449), - [anon_sym_BSLASHfvolcite] = ACTIONS(4449), - [anon_sym_BSLASHftvolcite] = ACTIONS(4449), - [anon_sym_BSLASHsvolcite] = ACTIONS(4449), - [anon_sym_BSLASHSvolcite] = ACTIONS(4449), - [anon_sym_BSLASHtvolcite] = ACTIONS(4449), - [anon_sym_BSLASHTvolcite] = ACTIONS(4449), - [anon_sym_BSLASHavolcite] = ACTIONS(4449), - [anon_sym_BSLASHAvolcite] = ACTIONS(4449), - [anon_sym_BSLASHnotecite] = ACTIONS(4449), - [anon_sym_BSLASHNotecite] = ACTIONS(4449), - [anon_sym_BSLASHpnotecite] = ACTIONS(4449), - [anon_sym_BSLASHPnotecite] = ACTIONS(4449), - [anon_sym_BSLASHfnotecite] = ACTIONS(4449), - [anon_sym_BSLASHlabel] = ACTIONS(4449), - [anon_sym_BSLASHref] = ACTIONS(4449), - [anon_sym_BSLASHeqref] = ACTIONS(4449), - [anon_sym_BSLASHvref] = ACTIONS(4449), - [anon_sym_BSLASHVref] = ACTIONS(4449), - [anon_sym_BSLASHautoref] = ACTIONS(4449), - [anon_sym_BSLASHpageref] = ACTIONS(4449), - [anon_sym_BSLASHcref] = ACTIONS(4449), - [anon_sym_BSLASHCref] = ACTIONS(4449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnameCref] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHlabelcref] = ACTIONS(4449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnewlabel] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4447), - [anon_sym_BSLASHdef] = ACTIONS(4449), - [anon_sym_BSLASHlet] = ACTIONS(4449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4449), - [anon_sym_BSLASHgls] = ACTIONS(4449), - [anon_sym_BSLASHGls] = ACTIONS(4449), - [anon_sym_BSLASHGLS] = ACTIONS(4449), - [anon_sym_BSLASHglspl] = ACTIONS(4449), - [anon_sym_BSLASHGlspl] = ACTIONS(4449), - [anon_sym_BSLASHGLSpl] = ACTIONS(4449), - [anon_sym_BSLASHglsdisp] = ACTIONS(4449), - [anon_sym_BSLASHglslink] = ACTIONS(4449), - [anon_sym_BSLASHglstext] = ACTIONS(4449), - [anon_sym_BSLASHGlstext] = ACTIONS(4449), - [anon_sym_BSLASHGLStext] = ACTIONS(4449), - [anon_sym_BSLASHglsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4449), - [anon_sym_BSLASHglsplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSplural] = ACTIONS(4449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHglsname] = ACTIONS(4449), - [anon_sym_BSLASHGlsname] = ACTIONS(4449), - [anon_sym_BSLASHGLSname] = ACTIONS(4449), - [anon_sym_BSLASHglssymbol] = ACTIONS(4449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4449), - [anon_sym_BSLASHglsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4449), - [anon_sym_BSLASHglsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4449), - [anon_sym_BSLASHglsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4449), - [anon_sym_BSLASHglsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4449), - [anon_sym_BSLASHglsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4449), - [anon_sym_BSLASHnewacronym] = ACTIONS(4449), - [anon_sym_BSLASHacrshort] = ACTIONS(4449), - [anon_sym_BSLASHAcrshort] = ACTIONS(4449), - [anon_sym_BSLASHACRshort] = ACTIONS(4449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4449), - [anon_sym_BSLASHacrlong] = ACTIONS(4449), - [anon_sym_BSLASHAcrlong] = ACTIONS(4449), - [anon_sym_BSLASHACRlong] = ACTIONS(4449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4449), - [anon_sym_BSLASHacrfull] = ACTIONS(4449), - [anon_sym_BSLASHAcrfull] = ACTIONS(4449), - [anon_sym_BSLASHACRfull] = ACTIONS(4449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4449), - [anon_sym_BSLASHacs] = ACTIONS(4449), - [anon_sym_BSLASHAcs] = ACTIONS(4449), - [anon_sym_BSLASHacsp] = ACTIONS(4449), - [anon_sym_BSLASHAcsp] = ACTIONS(4449), - [anon_sym_BSLASHacl] = ACTIONS(4449), - [anon_sym_BSLASHAcl] = ACTIONS(4449), - [anon_sym_BSLASHaclp] = ACTIONS(4449), - [anon_sym_BSLASHAclp] = ACTIONS(4449), - [anon_sym_BSLASHacf] = ACTIONS(4449), - [anon_sym_BSLASHAcf] = ACTIONS(4449), - [anon_sym_BSLASHacfp] = ACTIONS(4449), - [anon_sym_BSLASHAcfp] = ACTIONS(4449), - [anon_sym_BSLASHac] = ACTIONS(4449), - [anon_sym_BSLASHAc] = ACTIONS(4449), - [anon_sym_BSLASHacp] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4449), - [anon_sym_BSLASHcolor] = ACTIONS(4449), - [anon_sym_BSLASHcolorbox] = ACTIONS(4449), - [anon_sym_BSLASHtextcolor] = ACTIONS(4449), - [anon_sym_BSLASHpagecolor] = ACTIONS(4449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4449), - }, - [596] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(1922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(1922), - [anon_sym_BSLASHitem_STAR] = ACTIONS(1920), - [anon_sym_LBRACE] = ACTIONS(1920), - [sym_word] = ACTIONS(1922), - [sym_placeholder] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_SLASH] = ACTIONS(1922), - [anon_sym_CARET] = ACTIONS(1922), - [anon_sym__] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_COLON] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1920), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1920), - [anon_sym_BSLASHbegin] = ACTIONS(1922), - [anon_sym_BSLASHusepackage] = ACTIONS(1922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1922), - [anon_sym_BSLASHinclude] = ACTIONS(1922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1922), - [anon_sym_BSLASHinput] = ACTIONS(1922), - [anon_sym_BSLASHsubfile] = ACTIONS(1922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1922), - [anon_sym_BSLASHbibliography] = ACTIONS(1922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1922), - [anon_sym_BSLASHincludesvg] = ACTIONS(1922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1922), - [anon_sym_BSLASHimport] = ACTIONS(1922), - [anon_sym_BSLASHsubimport] = ACTIONS(1922), - [anon_sym_BSLASHinputfrom] = ACTIONS(1922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1922), - [anon_sym_BSLASHincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHcaption] = ACTIONS(1922), - [anon_sym_BSLASHcite] = ACTIONS(1922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCite] = ACTIONS(1922), - [anon_sym_BSLASHnocite] = ACTIONS(1922), - [anon_sym_BSLASHcitet] = ACTIONS(1922), - [anon_sym_BSLASHcitep] = ACTIONS(1922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteauthor] = ACTIONS(1922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitetitle] = ACTIONS(1922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteyear] = ACTIONS(1922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitedate] = ACTIONS(1922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteurl] = ACTIONS(1922), - [anon_sym_BSLASHfullcite] = ACTIONS(1922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1922), - [anon_sym_BSLASHcitealt] = ACTIONS(1922), - [anon_sym_BSLASHcitealp] = ACTIONS(1922), - [anon_sym_BSLASHcitetext] = ACTIONS(1922), - [anon_sym_BSLASHparencite] = ACTIONS(1922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHParencite] = ACTIONS(1922), - [anon_sym_BSLASHfootcite] = ACTIONS(1922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1922), - [anon_sym_BSLASHtextcite] = ACTIONS(1922), - [anon_sym_BSLASHTextcite] = ACTIONS(1922), - [anon_sym_BSLASHsmartcite] = ACTIONS(1922), - [anon_sym_BSLASHSmartcite] = ACTIONS(1922), - [anon_sym_BSLASHsupercite] = ACTIONS(1922), - [anon_sym_BSLASHautocite] = ACTIONS(1922), - [anon_sym_BSLASHAutocite] = ACTIONS(1922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHvolcite] = ACTIONS(1922), - [anon_sym_BSLASHVolcite] = ACTIONS(1922), - [anon_sym_BSLASHpvolcite] = ACTIONS(1922), - [anon_sym_BSLASHPvolcite] = ACTIONS(1922), - [anon_sym_BSLASHfvolcite] = ACTIONS(1922), - [anon_sym_BSLASHftvolcite] = ACTIONS(1922), - [anon_sym_BSLASHsvolcite] = ACTIONS(1922), - [anon_sym_BSLASHSvolcite] = ACTIONS(1922), - [anon_sym_BSLASHtvolcite] = ACTIONS(1922), - [anon_sym_BSLASHTvolcite] = ACTIONS(1922), - [anon_sym_BSLASHavolcite] = ACTIONS(1922), - [anon_sym_BSLASHAvolcite] = ACTIONS(1922), - [anon_sym_BSLASHnotecite] = ACTIONS(1922), - [anon_sym_BSLASHNotecite] = ACTIONS(1922), - [anon_sym_BSLASHpnotecite] = ACTIONS(1922), - [anon_sym_BSLASHPnotecite] = ACTIONS(1922), - [anon_sym_BSLASHfnotecite] = ACTIONS(1922), - [anon_sym_BSLASHlabel] = ACTIONS(1922), - [anon_sym_BSLASHref] = ACTIONS(1922), - [anon_sym_BSLASHeqref] = ACTIONS(1922), - [anon_sym_BSLASHvref] = ACTIONS(1922), - [anon_sym_BSLASHVref] = ACTIONS(1922), - [anon_sym_BSLASHautoref] = ACTIONS(1922), - [anon_sym_BSLASHpageref] = ACTIONS(1922), - [anon_sym_BSLASHcref] = ACTIONS(1922), - [anon_sym_BSLASHCref] = ACTIONS(1922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnameCref] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHlabelcref] = ACTIONS(1922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCrefrange] = ACTIONS(1922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnewlabel] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1920), - [anon_sym_BSLASHdef] = ACTIONS(1922), - [anon_sym_BSLASHlet] = ACTIONS(1922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1922), - [anon_sym_BSLASHgls] = ACTIONS(1922), - [anon_sym_BSLASHGls] = ACTIONS(1922), - [anon_sym_BSLASHGLS] = ACTIONS(1922), - [anon_sym_BSLASHglspl] = ACTIONS(1922), - [anon_sym_BSLASHGlspl] = ACTIONS(1922), - [anon_sym_BSLASHGLSpl] = ACTIONS(1922), - [anon_sym_BSLASHglsdisp] = ACTIONS(1922), - [anon_sym_BSLASHglslink] = ACTIONS(1922), - [anon_sym_BSLASHglstext] = ACTIONS(1922), - [anon_sym_BSLASHGlstext] = ACTIONS(1922), - [anon_sym_BSLASHGLStext] = ACTIONS(1922), - [anon_sym_BSLASHglsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1922), - [anon_sym_BSLASHglsplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSplural] = ACTIONS(1922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHglsname] = ACTIONS(1922), - [anon_sym_BSLASHGlsname] = ACTIONS(1922), - [anon_sym_BSLASHGLSname] = ACTIONS(1922), - [anon_sym_BSLASHglssymbol] = ACTIONS(1922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1922), - [anon_sym_BSLASHglsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1922), - [anon_sym_BSLASHglsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1922), - [anon_sym_BSLASHglsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1922), - [anon_sym_BSLASHglsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1922), - [anon_sym_BSLASHglsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1922), - [anon_sym_BSLASHnewacronym] = ACTIONS(1922), - [anon_sym_BSLASHacrshort] = ACTIONS(1922), - [anon_sym_BSLASHAcrshort] = ACTIONS(1922), - [anon_sym_BSLASHACRshort] = ACTIONS(1922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1922), - [anon_sym_BSLASHacrlong] = ACTIONS(1922), - [anon_sym_BSLASHAcrlong] = ACTIONS(1922), - [anon_sym_BSLASHACRlong] = ACTIONS(1922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1922), - [anon_sym_BSLASHacrfull] = ACTIONS(1922), - [anon_sym_BSLASHAcrfull] = ACTIONS(1922), - [anon_sym_BSLASHACRfull] = ACTIONS(1922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1922), - [anon_sym_BSLASHacs] = ACTIONS(1922), - [anon_sym_BSLASHAcs] = ACTIONS(1922), - [anon_sym_BSLASHacsp] = ACTIONS(1922), - [anon_sym_BSLASHAcsp] = ACTIONS(1922), - [anon_sym_BSLASHacl] = ACTIONS(1922), - [anon_sym_BSLASHAcl] = ACTIONS(1922), - [anon_sym_BSLASHaclp] = ACTIONS(1922), - [anon_sym_BSLASHAclp] = ACTIONS(1922), - [anon_sym_BSLASHacf] = ACTIONS(1922), - [anon_sym_BSLASHAcf] = ACTIONS(1922), - [anon_sym_BSLASHacfp] = ACTIONS(1922), - [anon_sym_BSLASHAcfp] = ACTIONS(1922), - [anon_sym_BSLASHac] = ACTIONS(1922), - [anon_sym_BSLASHAc] = ACTIONS(1922), - [anon_sym_BSLASHacp] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1922), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1922), - [anon_sym_BSLASHcolor] = ACTIONS(1922), - [anon_sym_BSLASHcolorbox] = ACTIONS(1922), - [anon_sym_BSLASHtextcolor] = ACTIONS(1922), - [anon_sym_BSLASHpagecolor] = ACTIONS(1922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1922), - }, - [597] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(1922), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1922), - [anon_sym_LPAREN] = ACTIONS(1920), - [anon_sym_RPAREN] = ACTIONS(1920), - [anon_sym_LBRACK] = ACTIONS(1920), - [anon_sym_RBRACK] = ACTIONS(1920), - [anon_sym_COMMA] = ACTIONS(1920), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_BSLASHpart] = ACTIONS(1922), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddpart] = ACTIONS(1922), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1920), - [anon_sym_BSLASHchapter] = ACTIONS(1922), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddchap] = ACTIONS(1922), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsection] = ACTIONS(1922), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHaddsec] = ACTIONS(1922), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1922), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1920), - [anon_sym_BSLASHparagraph] = ACTIONS(1922), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1922), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1920), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(1920), - [sym_word] = ACTIONS(1922), - [sym_placeholder] = ACTIONS(1920), - [anon_sym_PLUS] = ACTIONS(1922), - [anon_sym_DASH] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1922), - [anon_sym_SLASH] = ACTIONS(1922), - [anon_sym_CARET] = ACTIONS(1922), - [anon_sym__] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1922), - [anon_sym_GT] = ACTIONS(1922), - [anon_sym_BANG] = ACTIONS(1922), - [anon_sym_PIPE] = ACTIONS(1922), - [anon_sym_COLON] = ACTIONS(1922), - [anon_sym_SQUOTE] = ACTIONS(1922), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1920), - [anon_sym_DOLLAR] = ACTIONS(1922), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1920), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1920), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1920), - [anon_sym_BSLASHbegin] = ACTIONS(1922), - [anon_sym_BSLASHusepackage] = ACTIONS(1922), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1922), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1922), - [anon_sym_BSLASHinclude] = ACTIONS(1922), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1922), - [anon_sym_BSLASHinput] = ACTIONS(1922), - [anon_sym_BSLASHsubfile] = ACTIONS(1922), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1922), - [anon_sym_BSLASHbibliography] = ACTIONS(1922), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1922), - [anon_sym_BSLASHincludesvg] = ACTIONS(1922), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1922), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1922), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1922), - [anon_sym_BSLASHimport] = ACTIONS(1922), - [anon_sym_BSLASHsubimport] = ACTIONS(1922), - [anon_sym_BSLASHinputfrom] = ACTIONS(1922), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1922), - [anon_sym_BSLASHincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1922), - [anon_sym_BSLASHcaption] = ACTIONS(1922), - [anon_sym_BSLASHcite] = ACTIONS(1922), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCite] = ACTIONS(1922), - [anon_sym_BSLASHnocite] = ACTIONS(1922), - [anon_sym_BSLASHcitet] = ACTIONS(1922), - [anon_sym_BSLASHcitep] = ACTIONS(1922), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteauthor] = ACTIONS(1922), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1922), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitetitle] = ACTIONS(1922), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteyear] = ACTIONS(1922), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1920), - [anon_sym_BSLASHcitedate] = ACTIONS(1922), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1920), - [anon_sym_BSLASHciteurl] = ACTIONS(1922), - [anon_sym_BSLASHfullcite] = ACTIONS(1922), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1922), - [anon_sym_BSLASHcitealt] = ACTIONS(1922), - [anon_sym_BSLASHcitealp] = ACTIONS(1922), - [anon_sym_BSLASHcitetext] = ACTIONS(1922), - [anon_sym_BSLASHparencite] = ACTIONS(1922), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHParencite] = ACTIONS(1922), - [anon_sym_BSLASHfootcite] = ACTIONS(1922), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1922), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1922), - [anon_sym_BSLASHtextcite] = ACTIONS(1922), - [anon_sym_BSLASHTextcite] = ACTIONS(1922), - [anon_sym_BSLASHsmartcite] = ACTIONS(1922), - [anon_sym_BSLASHSmartcite] = ACTIONS(1922), - [anon_sym_BSLASHsupercite] = ACTIONS(1922), - [anon_sym_BSLASHautocite] = ACTIONS(1922), - [anon_sym_BSLASHAutocite] = ACTIONS(1922), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1920), - [anon_sym_BSLASHvolcite] = ACTIONS(1922), - [anon_sym_BSLASHVolcite] = ACTIONS(1922), - [anon_sym_BSLASHpvolcite] = ACTIONS(1922), - [anon_sym_BSLASHPvolcite] = ACTIONS(1922), - [anon_sym_BSLASHfvolcite] = ACTIONS(1922), - [anon_sym_BSLASHftvolcite] = ACTIONS(1922), - [anon_sym_BSLASHsvolcite] = ACTIONS(1922), - [anon_sym_BSLASHSvolcite] = ACTIONS(1922), - [anon_sym_BSLASHtvolcite] = ACTIONS(1922), - [anon_sym_BSLASHTvolcite] = ACTIONS(1922), - [anon_sym_BSLASHavolcite] = ACTIONS(1922), - [anon_sym_BSLASHAvolcite] = ACTIONS(1922), - [anon_sym_BSLASHnotecite] = ACTIONS(1922), - [anon_sym_BSLASHNotecite] = ACTIONS(1922), - [anon_sym_BSLASHpnotecite] = ACTIONS(1922), - [anon_sym_BSLASHPnotecite] = ACTIONS(1922), - [anon_sym_BSLASHfnotecite] = ACTIONS(1922), - [anon_sym_BSLASHlabel] = ACTIONS(1922), - [anon_sym_BSLASHref] = ACTIONS(1922), - [anon_sym_BSLASHeqref] = ACTIONS(1922), - [anon_sym_BSLASHvref] = ACTIONS(1922), - [anon_sym_BSLASHVref] = ACTIONS(1922), - [anon_sym_BSLASHautoref] = ACTIONS(1922), - [anon_sym_BSLASHpageref] = ACTIONS(1922), - [anon_sym_BSLASHcref] = ACTIONS(1922), - [anon_sym_BSLASHCref] = ACTIONS(1922), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnameCref] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1922), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1922), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1922), - [anon_sym_BSLASHlabelcref] = ACTIONS(1922), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange] = ACTIONS(1922), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHCrefrange] = ACTIONS(1922), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1920), - [anon_sym_BSLASHnewlabel] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand] = ACTIONS(1922), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1922), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1922), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1920), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1922), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1920), - [anon_sym_BSLASHdef] = ACTIONS(1922), - [anon_sym_BSLASHlet] = ACTIONS(1922), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1922), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1922), - [anon_sym_BSLASHgls] = ACTIONS(1922), - [anon_sym_BSLASHGls] = ACTIONS(1922), - [anon_sym_BSLASHGLS] = ACTIONS(1922), - [anon_sym_BSLASHglspl] = ACTIONS(1922), - [anon_sym_BSLASHGlspl] = ACTIONS(1922), - [anon_sym_BSLASHGLSpl] = ACTIONS(1922), - [anon_sym_BSLASHglsdisp] = ACTIONS(1922), - [anon_sym_BSLASHglslink] = ACTIONS(1922), - [anon_sym_BSLASHglstext] = ACTIONS(1922), - [anon_sym_BSLASHGlstext] = ACTIONS(1922), - [anon_sym_BSLASHGLStext] = ACTIONS(1922), - [anon_sym_BSLASHglsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1922), - [anon_sym_BSLASHglsplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSplural] = ACTIONS(1922), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1922), - [anon_sym_BSLASHglsname] = ACTIONS(1922), - [anon_sym_BSLASHGlsname] = ACTIONS(1922), - [anon_sym_BSLASHGLSname] = ACTIONS(1922), - [anon_sym_BSLASHglssymbol] = ACTIONS(1922), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1922), - [anon_sym_BSLASHglsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1922), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1922), - [anon_sym_BSLASHglsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1922), - [anon_sym_BSLASHglsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1922), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1922), - [anon_sym_BSLASHglsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1922), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1922), - [anon_sym_BSLASHglsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1922), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1922), - [anon_sym_BSLASHnewacronym] = ACTIONS(1922), - [anon_sym_BSLASHacrshort] = ACTIONS(1922), - [anon_sym_BSLASHAcrshort] = ACTIONS(1922), - [anon_sym_BSLASHACRshort] = ACTIONS(1922), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1922), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1922), - [anon_sym_BSLASHacrlong] = ACTIONS(1922), - [anon_sym_BSLASHAcrlong] = ACTIONS(1922), - [anon_sym_BSLASHACRlong] = ACTIONS(1922), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1922), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1922), - [anon_sym_BSLASHacrfull] = ACTIONS(1922), - [anon_sym_BSLASHAcrfull] = ACTIONS(1922), - [anon_sym_BSLASHACRfull] = ACTIONS(1922), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1922), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1922), - [anon_sym_BSLASHacs] = ACTIONS(1922), - [anon_sym_BSLASHAcs] = ACTIONS(1922), - [anon_sym_BSLASHacsp] = ACTIONS(1922), - [anon_sym_BSLASHAcsp] = ACTIONS(1922), - [anon_sym_BSLASHacl] = ACTIONS(1922), - [anon_sym_BSLASHAcl] = ACTIONS(1922), - [anon_sym_BSLASHaclp] = ACTIONS(1922), - [anon_sym_BSLASHAclp] = ACTIONS(1922), - [anon_sym_BSLASHacf] = ACTIONS(1922), - [anon_sym_BSLASHAcf] = ACTIONS(1922), - [anon_sym_BSLASHacfp] = ACTIONS(1922), - [anon_sym_BSLASHAcfp] = ACTIONS(1922), - [anon_sym_BSLASHac] = ACTIONS(1922), - [anon_sym_BSLASHAc] = ACTIONS(1922), - [anon_sym_BSLASHacp] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1922), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1922), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1922), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1922), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1922), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1922), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1922), - [anon_sym_BSLASHcolor] = ACTIONS(1922), - [anon_sym_BSLASHcolorbox] = ACTIONS(1922), - [anon_sym_BSLASHtextcolor] = ACTIONS(1922), - [anon_sym_BSLASHpagecolor] = ACTIONS(1922), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1922), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1922), - }, - [598] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(1940), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_RPAREN] = ACTIONS(1938), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_RBRACK] = ACTIONS(1938), - [anon_sym_COMMA] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1938), - [anon_sym_BSLASHpart] = ACTIONS(1940), - [anon_sym_BSLASHpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddpart] = ACTIONS(1940), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1938), - [anon_sym_BSLASHchapter] = ACTIONS(1940), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddchap] = ACTIONS(1940), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsection] = ACTIONS(1940), - [anon_sym_BSLASHsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHaddsec] = ACTIONS(1940), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubsubsection] = ACTIONS(1940), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1938), - [anon_sym_BSLASHparagraph] = ACTIONS(1940), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHsubparagraph] = ACTIONS(1940), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1938), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(1938), - [sym_word] = ACTIONS(1940), - [sym_placeholder] = ACTIONS(1938), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_STAR] = ACTIONS(1940), - [anon_sym_SLASH] = ACTIONS(1940), - [anon_sym_CARET] = ACTIONS(1940), - [anon_sym__] = ACTIONS(1940), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_COLON] = ACTIONS(1940), - [anon_sym_SQUOTE] = ACTIONS(1940), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1938), - [anon_sym_BSLASH_LBRACK] = ACTIONS(1938), - [anon_sym_DOLLAR] = ACTIONS(1940), - [anon_sym_BSLASH_LPAREN] = ACTIONS(1938), - [anon_sym_BSLASH_LBRACE] = ACTIONS(1938), - [anon_sym_BSLASH_RBRACE] = ACTIONS(1938), - [anon_sym_BSLASHbegin] = ACTIONS(1940), - [anon_sym_BSLASHusepackage] = ACTIONS(1940), - [anon_sym_BSLASHRequirePackage] = ACTIONS(1940), - [anon_sym_BSLASHdocumentclass] = ACTIONS(1940), - [anon_sym_BSLASHinclude] = ACTIONS(1940), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(1940), - [anon_sym_BSLASHinput] = ACTIONS(1940), - [anon_sym_BSLASHsubfile] = ACTIONS(1940), - [anon_sym_BSLASHaddbibresource] = ACTIONS(1940), - [anon_sym_BSLASHbibliography] = ACTIONS(1940), - [anon_sym_BSLASHincludegraphics] = ACTIONS(1940), - [anon_sym_BSLASHincludesvg] = ACTIONS(1940), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(1940), - [anon_sym_BSLASHverbatiminput] = ACTIONS(1940), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(1940), - [anon_sym_BSLASHimport] = ACTIONS(1940), - [anon_sym_BSLASHsubimport] = ACTIONS(1940), - [anon_sym_BSLASHinputfrom] = ACTIONS(1940), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(1940), - [anon_sym_BSLASHincludefrom] = ACTIONS(1940), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(1940), - [anon_sym_BSLASHcaption] = ACTIONS(1940), - [anon_sym_BSLASHcite] = ACTIONS(1940), - [anon_sym_BSLASHcite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCite] = ACTIONS(1940), - [anon_sym_BSLASHnocite] = ACTIONS(1940), - [anon_sym_BSLASHcitet] = ACTIONS(1940), - [anon_sym_BSLASHcitep] = ACTIONS(1940), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteauthor] = ACTIONS(1940), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCiteauthor] = ACTIONS(1940), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitetitle] = ACTIONS(1940), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteyear] = ACTIONS(1940), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1938), - [anon_sym_BSLASHcitedate] = ACTIONS(1940), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1938), - [anon_sym_BSLASHciteurl] = ACTIONS(1940), - [anon_sym_BSLASHfullcite] = ACTIONS(1940), - [anon_sym_BSLASHciteyearpar] = ACTIONS(1940), - [anon_sym_BSLASHcitealt] = ACTIONS(1940), - [anon_sym_BSLASHcitealp] = ACTIONS(1940), - [anon_sym_BSLASHcitetext] = ACTIONS(1940), - [anon_sym_BSLASHparencite] = ACTIONS(1940), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHParencite] = ACTIONS(1940), - [anon_sym_BSLASHfootcite] = ACTIONS(1940), - [anon_sym_BSLASHfootfullcite] = ACTIONS(1940), - [anon_sym_BSLASHfootcitetext] = ACTIONS(1940), - [anon_sym_BSLASHtextcite] = ACTIONS(1940), - [anon_sym_BSLASHTextcite] = ACTIONS(1940), - [anon_sym_BSLASHsmartcite] = ACTIONS(1940), - [anon_sym_BSLASHSmartcite] = ACTIONS(1940), - [anon_sym_BSLASHsupercite] = ACTIONS(1940), - [anon_sym_BSLASHautocite] = ACTIONS(1940), - [anon_sym_BSLASHAutocite] = ACTIONS(1940), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1938), - [anon_sym_BSLASHvolcite] = ACTIONS(1940), - [anon_sym_BSLASHVolcite] = ACTIONS(1940), - [anon_sym_BSLASHpvolcite] = ACTIONS(1940), - [anon_sym_BSLASHPvolcite] = ACTIONS(1940), - [anon_sym_BSLASHfvolcite] = ACTIONS(1940), - [anon_sym_BSLASHftvolcite] = ACTIONS(1940), - [anon_sym_BSLASHsvolcite] = ACTIONS(1940), - [anon_sym_BSLASHSvolcite] = ACTIONS(1940), - [anon_sym_BSLASHtvolcite] = ACTIONS(1940), - [anon_sym_BSLASHTvolcite] = ACTIONS(1940), - [anon_sym_BSLASHavolcite] = ACTIONS(1940), - [anon_sym_BSLASHAvolcite] = ACTIONS(1940), - [anon_sym_BSLASHnotecite] = ACTIONS(1940), - [anon_sym_BSLASHNotecite] = ACTIONS(1940), - [anon_sym_BSLASHpnotecite] = ACTIONS(1940), - [anon_sym_BSLASHPnotecite] = ACTIONS(1940), - [anon_sym_BSLASHfnotecite] = ACTIONS(1940), - [anon_sym_BSLASHlabel] = ACTIONS(1940), - [anon_sym_BSLASHref] = ACTIONS(1940), - [anon_sym_BSLASHeqref] = ACTIONS(1940), - [anon_sym_BSLASHvref] = ACTIONS(1940), - [anon_sym_BSLASHVref] = ACTIONS(1940), - [anon_sym_BSLASHautoref] = ACTIONS(1940), - [anon_sym_BSLASHpageref] = ACTIONS(1940), - [anon_sym_BSLASHcref] = ACTIONS(1940), - [anon_sym_BSLASHCref] = ACTIONS(1940), - [anon_sym_BSLASHcref_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCref_STAR] = ACTIONS(1938), - [anon_sym_BSLASHnamecref] = ACTIONS(1940), - [anon_sym_BSLASHnameCref] = ACTIONS(1940), - [anon_sym_BSLASHlcnamecref] = ACTIONS(1940), - [anon_sym_BSLASHnamecrefs] = ACTIONS(1940), - [anon_sym_BSLASHnameCrefs] = ACTIONS(1940), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1940), - [anon_sym_BSLASHlabelcref] = ACTIONS(1940), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(1940), - [anon_sym_BSLASHcrefrange] = ACTIONS(1940), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1938), - [anon_sym_BSLASHCrefrange] = ACTIONS(1940), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1938), - [anon_sym_BSLASHnewlabel] = ACTIONS(1940), - [anon_sym_BSLASHnewcommand] = ACTIONS(1940), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHrenewcommand] = ACTIONS(1940), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1940), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1938), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1940), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1938), - [anon_sym_BSLASHdef] = ACTIONS(1940), - [anon_sym_BSLASHlet] = ACTIONS(1940), - [anon_sym_BSLASHnewenvironment] = ACTIONS(1940), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1940), - [anon_sym_BSLASHgls] = ACTIONS(1940), - [anon_sym_BSLASHGls] = ACTIONS(1940), - [anon_sym_BSLASHGLS] = ACTIONS(1940), - [anon_sym_BSLASHglspl] = ACTIONS(1940), - [anon_sym_BSLASHGlspl] = ACTIONS(1940), - [anon_sym_BSLASHGLSpl] = ACTIONS(1940), - [anon_sym_BSLASHglsdisp] = ACTIONS(1940), - [anon_sym_BSLASHglslink] = ACTIONS(1940), - [anon_sym_BSLASHglstext] = ACTIONS(1940), - [anon_sym_BSLASHGlstext] = ACTIONS(1940), - [anon_sym_BSLASHGLStext] = ACTIONS(1940), - [anon_sym_BSLASHglsfirst] = ACTIONS(1940), - [anon_sym_BSLASHGlsfirst] = ACTIONS(1940), - [anon_sym_BSLASHGLSfirst] = ACTIONS(1940), - [anon_sym_BSLASHglsplural] = ACTIONS(1940), - [anon_sym_BSLASHGlsplural] = ACTIONS(1940), - [anon_sym_BSLASHGLSplural] = ACTIONS(1940), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1940), - [anon_sym_BSLASHglsname] = ACTIONS(1940), - [anon_sym_BSLASHGlsname] = ACTIONS(1940), - [anon_sym_BSLASHGLSname] = ACTIONS(1940), - [anon_sym_BSLASHglssymbol] = ACTIONS(1940), - [anon_sym_BSLASHGlssymbol] = ACTIONS(1940), - [anon_sym_BSLASHglsdesc] = ACTIONS(1940), - [anon_sym_BSLASHGlsdesc] = ACTIONS(1940), - [anon_sym_BSLASHGLSdesc] = ACTIONS(1940), - [anon_sym_BSLASHglsuseri] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseri] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseri] = ACTIONS(1940), - [anon_sym_BSLASHglsuserii] = ACTIONS(1940), - [anon_sym_BSLASHGlsuserii] = ACTIONS(1940), - [anon_sym_BSLASHGLSuserii] = ACTIONS(1940), - [anon_sym_BSLASHglsuseriii] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(1940), - [anon_sym_BSLASHglsuseriv] = ACTIONS(1940), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(1940), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(1940), - [anon_sym_BSLASHglsuserv] = ACTIONS(1940), - [anon_sym_BSLASHGlsuserv] = ACTIONS(1940), - [anon_sym_BSLASHGLSuserv] = ACTIONS(1940), - [anon_sym_BSLASHglsuservi] = ACTIONS(1940), - [anon_sym_BSLASHGlsuservi] = ACTIONS(1940), - [anon_sym_BSLASHGLSuservi] = ACTIONS(1940), - [anon_sym_BSLASHnewacronym] = ACTIONS(1940), - [anon_sym_BSLASHacrshort] = ACTIONS(1940), - [anon_sym_BSLASHAcrshort] = ACTIONS(1940), - [anon_sym_BSLASHACRshort] = ACTIONS(1940), - [anon_sym_BSLASHacrshortpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(1940), - [anon_sym_BSLASHACRshortpl] = ACTIONS(1940), - [anon_sym_BSLASHacrlong] = ACTIONS(1940), - [anon_sym_BSLASHAcrlong] = ACTIONS(1940), - [anon_sym_BSLASHACRlong] = ACTIONS(1940), - [anon_sym_BSLASHacrlongpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(1940), - [anon_sym_BSLASHACRlongpl] = ACTIONS(1940), - [anon_sym_BSLASHacrfull] = ACTIONS(1940), - [anon_sym_BSLASHAcrfull] = ACTIONS(1940), - [anon_sym_BSLASHACRfull] = ACTIONS(1940), - [anon_sym_BSLASHacrfullpl] = ACTIONS(1940), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(1940), - [anon_sym_BSLASHACRfullpl] = ACTIONS(1940), - [anon_sym_BSLASHacs] = ACTIONS(1940), - [anon_sym_BSLASHAcs] = ACTIONS(1940), - [anon_sym_BSLASHacsp] = ACTIONS(1940), - [anon_sym_BSLASHAcsp] = ACTIONS(1940), - [anon_sym_BSLASHacl] = ACTIONS(1940), - [anon_sym_BSLASHAcl] = ACTIONS(1940), - [anon_sym_BSLASHaclp] = ACTIONS(1940), - [anon_sym_BSLASHAclp] = ACTIONS(1940), - [anon_sym_BSLASHacf] = ACTIONS(1940), - [anon_sym_BSLASHAcf] = ACTIONS(1940), - [anon_sym_BSLASHacfp] = ACTIONS(1940), - [anon_sym_BSLASHAcfp] = ACTIONS(1940), - [anon_sym_BSLASHac] = ACTIONS(1940), - [anon_sym_BSLASHAc] = ACTIONS(1940), - [anon_sym_BSLASHacp] = ACTIONS(1940), - [anon_sym_BSLASHglsentrylong] = ACTIONS(1940), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(1940), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1940), - [anon_sym_BSLASHglsentryshort] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(1940), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1940), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1940), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1940), - [anon_sym_BSLASHnewtheorem] = ACTIONS(1940), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1940), - [anon_sym_BSLASHdefinecolor] = ACTIONS(1940), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(1940), - [anon_sym_BSLASHcolor] = ACTIONS(1940), - [anon_sym_BSLASHcolorbox] = ACTIONS(1940), - [anon_sym_BSLASHtextcolor] = ACTIONS(1940), - [anon_sym_BSLASHpagecolor] = ACTIONS(1940), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(1940), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1940), - }, - [599] = { - [sym__part_declaration] = STATE(125), - [sym_part] = STATE(599), - [aux_sym__section_repeat1] = STATE(599), - [sym_command_name] = ACTIONS(4493), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4493), - [anon_sym_LPAREN] = ACTIONS(4491), - [anon_sym_RPAREN] = ACTIONS(4491), - [anon_sym_LBRACK] = ACTIONS(4491), - [anon_sym_RBRACK] = ACTIONS(4491), - [anon_sym_COMMA] = ACTIONS(4491), - [anon_sym_EQ] = ACTIONS(4491), - [anon_sym_BSLASHpart] = ACTIONS(4703), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4706), - [anon_sym_BSLASHaddpart] = ACTIONS(4703), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4706), - [anon_sym_BSLASHchapter] = ACTIONS(4493), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4491), - [anon_sym_BSLASHaddchap] = ACTIONS(4493), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsection] = ACTIONS(4493), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHaddsec] = ACTIONS(4493), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubsection] = ACTIONS(4493), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4493), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4491), - [anon_sym_BSLASHparagraph] = ACTIONS(4493), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4491), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4493), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4491), - [anon_sym_BSLASHitem] = ACTIONS(4493), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4491), - [sym_word] = ACTIONS(4493), - [sym_placeholder] = ACTIONS(4491), - [anon_sym_PLUS] = ACTIONS(4493), - [anon_sym_DASH] = ACTIONS(4493), - [anon_sym_STAR] = ACTIONS(4493), - [anon_sym_SLASH] = ACTIONS(4493), - [anon_sym_CARET] = ACTIONS(4493), - [anon_sym__] = ACTIONS(4493), - [anon_sym_LT] = ACTIONS(4493), - [anon_sym_GT] = ACTIONS(4493), - [anon_sym_BANG] = ACTIONS(4493), - [anon_sym_PIPE] = ACTIONS(4493), - [anon_sym_COLON] = ACTIONS(4493), - [anon_sym_SQUOTE] = ACTIONS(4493), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4491), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4491), - [anon_sym_DOLLAR] = ACTIONS(4493), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4491), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4491), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4491), - [anon_sym_BSLASHbegin] = ACTIONS(4493), - [anon_sym_BSLASHusepackage] = ACTIONS(4493), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4493), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4493), - [anon_sym_BSLASHinclude] = ACTIONS(4493), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4493), - [anon_sym_BSLASHinput] = ACTIONS(4493), - [anon_sym_BSLASHsubfile] = ACTIONS(4493), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4493), - [anon_sym_BSLASHbibliography] = ACTIONS(4493), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4493), - [anon_sym_BSLASHincludesvg] = ACTIONS(4493), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4493), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4493), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4493), - [anon_sym_BSLASHimport] = ACTIONS(4493), - [anon_sym_BSLASHsubimport] = ACTIONS(4493), - [anon_sym_BSLASHinputfrom] = ACTIONS(4493), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4493), - [anon_sym_BSLASHincludefrom] = ACTIONS(4493), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4493), - [anon_sym_BSLASHcaption] = ACTIONS(4493), - [anon_sym_BSLASHcite] = ACTIONS(4493), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCite] = ACTIONS(4493), - [anon_sym_BSLASHnocite] = ACTIONS(4493), - [anon_sym_BSLASHcitet] = ACTIONS(4493), - [anon_sym_BSLASHcitep] = ACTIONS(4493), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteauthor] = ACTIONS(4493), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4493), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitetitle] = ACTIONS(4493), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteyear] = ACTIONS(4493), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4491), - [anon_sym_BSLASHcitedate] = ACTIONS(4493), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4491), - [anon_sym_BSLASHciteurl] = ACTIONS(4493), - [anon_sym_BSLASHfullcite] = ACTIONS(4493), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4493), - [anon_sym_BSLASHcitealt] = ACTIONS(4493), - [anon_sym_BSLASHcitealp] = ACTIONS(4493), - [anon_sym_BSLASHcitetext] = ACTIONS(4493), - [anon_sym_BSLASHparencite] = ACTIONS(4493), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHParencite] = ACTIONS(4493), - [anon_sym_BSLASHfootcite] = ACTIONS(4493), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4493), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4493), - [anon_sym_BSLASHtextcite] = ACTIONS(4493), - [anon_sym_BSLASHTextcite] = ACTIONS(4493), - [anon_sym_BSLASHsmartcite] = ACTIONS(4493), - [anon_sym_BSLASHSmartcite] = ACTIONS(4493), - [anon_sym_BSLASHsupercite] = ACTIONS(4493), - [anon_sym_BSLASHautocite] = ACTIONS(4493), - [anon_sym_BSLASHAutocite] = ACTIONS(4493), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4491), - [anon_sym_BSLASHvolcite] = ACTIONS(4493), - [anon_sym_BSLASHVolcite] = ACTIONS(4493), - [anon_sym_BSLASHpvolcite] = ACTIONS(4493), - [anon_sym_BSLASHPvolcite] = ACTIONS(4493), - [anon_sym_BSLASHfvolcite] = ACTIONS(4493), - [anon_sym_BSLASHftvolcite] = ACTIONS(4493), - [anon_sym_BSLASHsvolcite] = ACTIONS(4493), - [anon_sym_BSLASHSvolcite] = ACTIONS(4493), - [anon_sym_BSLASHtvolcite] = ACTIONS(4493), - [anon_sym_BSLASHTvolcite] = ACTIONS(4493), - [anon_sym_BSLASHavolcite] = ACTIONS(4493), - [anon_sym_BSLASHAvolcite] = ACTIONS(4493), - [anon_sym_BSLASHnotecite] = ACTIONS(4493), - [anon_sym_BSLASHNotecite] = ACTIONS(4493), - [anon_sym_BSLASHpnotecite] = ACTIONS(4493), - [anon_sym_BSLASHPnotecite] = ACTIONS(4493), - [anon_sym_BSLASHfnotecite] = ACTIONS(4493), - [anon_sym_BSLASHlabel] = ACTIONS(4493), - [anon_sym_BSLASHref] = ACTIONS(4493), - [anon_sym_BSLASHeqref] = ACTIONS(4493), - [anon_sym_BSLASHvref] = ACTIONS(4493), - [anon_sym_BSLASHVref] = ACTIONS(4493), - [anon_sym_BSLASHautoref] = ACTIONS(4493), - [anon_sym_BSLASHpageref] = ACTIONS(4493), - [anon_sym_BSLASHcref] = ACTIONS(4493), - [anon_sym_BSLASHCref] = ACTIONS(4493), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4491), - [anon_sym_BSLASHnamecref] = ACTIONS(4493), - [anon_sym_BSLASHnameCref] = ACTIONS(4493), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4493), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4493), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4493), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4493), - [anon_sym_BSLASHlabelcref] = ACTIONS(4493), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4493), - [anon_sym_BSLASHcrefrange] = ACTIONS(4493), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4491), - [anon_sym_BSLASHCrefrange] = ACTIONS(4493), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4491), - [anon_sym_BSLASHnewlabel] = ACTIONS(4493), - [anon_sym_BSLASHnewcommand] = ACTIONS(4493), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4493), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4493), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4491), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4493), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4491), - [anon_sym_BSLASHdef] = ACTIONS(4493), - [anon_sym_BSLASHlet] = ACTIONS(4493), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4493), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4493), - [anon_sym_BSLASHgls] = ACTIONS(4493), - [anon_sym_BSLASHGls] = ACTIONS(4493), - [anon_sym_BSLASHGLS] = ACTIONS(4493), - [anon_sym_BSLASHglspl] = ACTIONS(4493), - [anon_sym_BSLASHGlspl] = ACTIONS(4493), - [anon_sym_BSLASHGLSpl] = ACTIONS(4493), - [anon_sym_BSLASHglsdisp] = ACTIONS(4493), - [anon_sym_BSLASHglslink] = ACTIONS(4493), - [anon_sym_BSLASHglstext] = ACTIONS(4493), - [anon_sym_BSLASHGlstext] = ACTIONS(4493), - [anon_sym_BSLASHGLStext] = ACTIONS(4493), - [anon_sym_BSLASHglsfirst] = ACTIONS(4493), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4493), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4493), - [anon_sym_BSLASHglsplural] = ACTIONS(4493), - [anon_sym_BSLASHGlsplural] = ACTIONS(4493), - [anon_sym_BSLASHGLSplural] = ACTIONS(4493), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4493), - [anon_sym_BSLASHglsname] = ACTIONS(4493), - [anon_sym_BSLASHGlsname] = ACTIONS(4493), - [anon_sym_BSLASHGLSname] = ACTIONS(4493), - [anon_sym_BSLASHglssymbol] = ACTIONS(4493), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4493), - [anon_sym_BSLASHglsdesc] = ACTIONS(4493), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4493), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4493), - [anon_sym_BSLASHglsuseri] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4493), - [anon_sym_BSLASHglsuserii] = ACTIONS(4493), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4493), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4493), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4493), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4493), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4493), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4493), - [anon_sym_BSLASHglsuserv] = ACTIONS(4493), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4493), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4493), - [anon_sym_BSLASHglsuservi] = ACTIONS(4493), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4493), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4493), - [anon_sym_BSLASHnewacronym] = ACTIONS(4493), - [anon_sym_BSLASHacrshort] = ACTIONS(4493), - [anon_sym_BSLASHAcrshort] = ACTIONS(4493), - [anon_sym_BSLASHACRshort] = ACTIONS(4493), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4493), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4493), - [anon_sym_BSLASHacrlong] = ACTIONS(4493), - [anon_sym_BSLASHAcrlong] = ACTIONS(4493), - [anon_sym_BSLASHACRlong] = ACTIONS(4493), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4493), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4493), - [anon_sym_BSLASHacrfull] = ACTIONS(4493), - [anon_sym_BSLASHAcrfull] = ACTIONS(4493), - [anon_sym_BSLASHACRfull] = ACTIONS(4493), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4493), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4493), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4493), - [anon_sym_BSLASHacs] = ACTIONS(4493), - [anon_sym_BSLASHAcs] = ACTIONS(4493), - [anon_sym_BSLASHacsp] = ACTIONS(4493), - [anon_sym_BSLASHAcsp] = ACTIONS(4493), - [anon_sym_BSLASHacl] = ACTIONS(4493), - [anon_sym_BSLASHAcl] = ACTIONS(4493), - [anon_sym_BSLASHaclp] = ACTIONS(4493), - [anon_sym_BSLASHAclp] = ACTIONS(4493), - [anon_sym_BSLASHacf] = ACTIONS(4493), - [anon_sym_BSLASHAcf] = ACTIONS(4493), - [anon_sym_BSLASHacfp] = ACTIONS(4493), - [anon_sym_BSLASHAcfp] = ACTIONS(4493), - [anon_sym_BSLASHac] = ACTIONS(4493), - [anon_sym_BSLASHAc] = ACTIONS(4493), - [anon_sym_BSLASHacp] = ACTIONS(4493), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4493), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4493), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4493), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4493), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4493), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4493), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4493), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4493), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4493), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4493), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4493), - [anon_sym_BSLASHcolor] = ACTIONS(4493), - [anon_sym_BSLASHcolorbox] = ACTIONS(4493), - [anon_sym_BSLASHtextcolor] = ACTIONS(4493), - [anon_sym_BSLASHpagecolor] = ACTIONS(4493), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4493), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4493), - }, - [600] = { - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(600), - [aux_sym__section_repeat2] = STATE(600), - [sym_command_name] = ACTIONS(4503), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4501), - [anon_sym_RPAREN] = ACTIONS(4501), - [anon_sym_LBRACK] = ACTIONS(4501), - [anon_sym_RBRACK] = ACTIONS(4501), - [anon_sym_COMMA] = ACTIONS(4501), - [anon_sym_EQ] = ACTIONS(4501), - [anon_sym_BSLASHpart] = ACTIONS(4503), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4501), - [anon_sym_BSLASHaddpart] = ACTIONS(4503), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4501), - [anon_sym_BSLASHchapter] = ACTIONS(4709), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4712), - [anon_sym_BSLASHaddchap] = ACTIONS(4709), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4712), - [anon_sym_BSLASHsection] = ACTIONS(4503), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHaddsec] = ACTIONS(4503), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubsection] = ACTIONS(4503), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4503), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4501), - [anon_sym_BSLASHparagraph] = ACTIONS(4503), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4501), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4503), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4501), - [anon_sym_BSLASHitem] = ACTIONS(4503), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4501), - [anon_sym_LBRACE] = ACTIONS(4501), - [sym_word] = ACTIONS(4503), - [sym_placeholder] = ACTIONS(4501), - [anon_sym_PLUS] = ACTIONS(4503), - [anon_sym_DASH] = ACTIONS(4503), - [anon_sym_STAR] = ACTIONS(4503), - [anon_sym_SLASH] = ACTIONS(4503), - [anon_sym_CARET] = ACTIONS(4503), - [anon_sym__] = ACTIONS(4503), - [anon_sym_LT] = ACTIONS(4503), - [anon_sym_GT] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4503), - [anon_sym_PIPE] = ACTIONS(4503), - [anon_sym_COLON] = ACTIONS(4503), - [anon_sym_SQUOTE] = ACTIONS(4503), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4501), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4501), - [anon_sym_DOLLAR] = ACTIONS(4503), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4501), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4501), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4501), - [anon_sym_BSLASHbegin] = ACTIONS(4503), - [anon_sym_BSLASHusepackage] = ACTIONS(4503), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4503), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4503), - [anon_sym_BSLASHinclude] = ACTIONS(4503), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4503), - [anon_sym_BSLASHinput] = ACTIONS(4503), - [anon_sym_BSLASHsubfile] = ACTIONS(4503), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4503), - [anon_sym_BSLASHbibliography] = ACTIONS(4503), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4503), - [anon_sym_BSLASHincludesvg] = ACTIONS(4503), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4503), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4503), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4503), - [anon_sym_BSLASHimport] = ACTIONS(4503), - [anon_sym_BSLASHsubimport] = ACTIONS(4503), - [anon_sym_BSLASHinputfrom] = ACTIONS(4503), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4503), - [anon_sym_BSLASHincludefrom] = ACTIONS(4503), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4503), - [anon_sym_BSLASHcaption] = ACTIONS(4503), - [anon_sym_BSLASHcite] = ACTIONS(4503), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCite] = ACTIONS(4503), - [anon_sym_BSLASHnocite] = ACTIONS(4503), - [anon_sym_BSLASHcitet] = ACTIONS(4503), - [anon_sym_BSLASHcitep] = ACTIONS(4503), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteauthor] = ACTIONS(4503), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4503), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitetitle] = ACTIONS(4503), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteyear] = ACTIONS(4503), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4501), - [anon_sym_BSLASHcitedate] = ACTIONS(4503), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4501), - [anon_sym_BSLASHciteurl] = ACTIONS(4503), - [anon_sym_BSLASHfullcite] = ACTIONS(4503), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4503), - [anon_sym_BSLASHcitealt] = ACTIONS(4503), - [anon_sym_BSLASHcitealp] = ACTIONS(4503), - [anon_sym_BSLASHcitetext] = ACTIONS(4503), - [anon_sym_BSLASHparencite] = ACTIONS(4503), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHParencite] = ACTIONS(4503), - [anon_sym_BSLASHfootcite] = ACTIONS(4503), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4503), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4503), - [anon_sym_BSLASHtextcite] = ACTIONS(4503), - [anon_sym_BSLASHTextcite] = ACTIONS(4503), - [anon_sym_BSLASHsmartcite] = ACTIONS(4503), - [anon_sym_BSLASHSmartcite] = ACTIONS(4503), - [anon_sym_BSLASHsupercite] = ACTIONS(4503), - [anon_sym_BSLASHautocite] = ACTIONS(4503), - [anon_sym_BSLASHAutocite] = ACTIONS(4503), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4501), - [anon_sym_BSLASHvolcite] = ACTIONS(4503), - [anon_sym_BSLASHVolcite] = ACTIONS(4503), - [anon_sym_BSLASHpvolcite] = ACTIONS(4503), - [anon_sym_BSLASHPvolcite] = ACTIONS(4503), - [anon_sym_BSLASHfvolcite] = ACTIONS(4503), - [anon_sym_BSLASHftvolcite] = ACTIONS(4503), - [anon_sym_BSLASHsvolcite] = ACTIONS(4503), - [anon_sym_BSLASHSvolcite] = ACTIONS(4503), - [anon_sym_BSLASHtvolcite] = ACTIONS(4503), - [anon_sym_BSLASHTvolcite] = ACTIONS(4503), - [anon_sym_BSLASHavolcite] = ACTIONS(4503), - [anon_sym_BSLASHAvolcite] = ACTIONS(4503), - [anon_sym_BSLASHnotecite] = ACTIONS(4503), - [anon_sym_BSLASHNotecite] = ACTIONS(4503), - [anon_sym_BSLASHpnotecite] = ACTIONS(4503), - [anon_sym_BSLASHPnotecite] = ACTIONS(4503), - [anon_sym_BSLASHfnotecite] = ACTIONS(4503), - [anon_sym_BSLASHlabel] = ACTIONS(4503), - [anon_sym_BSLASHref] = ACTIONS(4503), - [anon_sym_BSLASHeqref] = ACTIONS(4503), - [anon_sym_BSLASHvref] = ACTIONS(4503), - [anon_sym_BSLASHVref] = ACTIONS(4503), - [anon_sym_BSLASHautoref] = ACTIONS(4503), - [anon_sym_BSLASHpageref] = ACTIONS(4503), - [anon_sym_BSLASHcref] = ACTIONS(4503), - [anon_sym_BSLASHCref] = ACTIONS(4503), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4501), - [anon_sym_BSLASHnamecref] = ACTIONS(4503), - [anon_sym_BSLASHnameCref] = ACTIONS(4503), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4503), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4503), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4503), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4503), - [anon_sym_BSLASHlabelcref] = ACTIONS(4503), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4503), - [anon_sym_BSLASHcrefrange] = ACTIONS(4503), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4501), - [anon_sym_BSLASHCrefrange] = ACTIONS(4503), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4501), - [anon_sym_BSLASHnewlabel] = ACTIONS(4503), - [anon_sym_BSLASHnewcommand] = ACTIONS(4503), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4503), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4503), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4501), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4503), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4501), - [anon_sym_BSLASHdef] = ACTIONS(4503), - [anon_sym_BSLASHlet] = ACTIONS(4503), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4503), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4503), - [anon_sym_BSLASHgls] = ACTIONS(4503), - [anon_sym_BSLASHGls] = ACTIONS(4503), - [anon_sym_BSLASHGLS] = ACTIONS(4503), - [anon_sym_BSLASHglspl] = ACTIONS(4503), - [anon_sym_BSLASHGlspl] = ACTIONS(4503), - [anon_sym_BSLASHGLSpl] = ACTIONS(4503), - [anon_sym_BSLASHglsdisp] = ACTIONS(4503), - [anon_sym_BSLASHglslink] = ACTIONS(4503), - [anon_sym_BSLASHglstext] = ACTIONS(4503), - [anon_sym_BSLASHGlstext] = ACTIONS(4503), - [anon_sym_BSLASHGLStext] = ACTIONS(4503), - [anon_sym_BSLASHglsfirst] = ACTIONS(4503), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4503), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4503), - [anon_sym_BSLASHglsplural] = ACTIONS(4503), - [anon_sym_BSLASHGlsplural] = ACTIONS(4503), - [anon_sym_BSLASHGLSplural] = ACTIONS(4503), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4503), - [anon_sym_BSLASHglsname] = ACTIONS(4503), - [anon_sym_BSLASHGlsname] = ACTIONS(4503), - [anon_sym_BSLASHGLSname] = ACTIONS(4503), - [anon_sym_BSLASHglssymbol] = ACTIONS(4503), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4503), - [anon_sym_BSLASHglsdesc] = ACTIONS(4503), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4503), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4503), - [anon_sym_BSLASHglsuseri] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4503), - [anon_sym_BSLASHglsuserii] = ACTIONS(4503), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4503), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4503), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4503), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4503), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4503), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4503), - [anon_sym_BSLASHglsuserv] = ACTIONS(4503), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4503), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4503), - [anon_sym_BSLASHglsuservi] = ACTIONS(4503), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4503), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4503), - [anon_sym_BSLASHnewacronym] = ACTIONS(4503), - [anon_sym_BSLASHacrshort] = ACTIONS(4503), - [anon_sym_BSLASHAcrshort] = ACTIONS(4503), - [anon_sym_BSLASHACRshort] = ACTIONS(4503), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4503), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4503), - [anon_sym_BSLASHacrlong] = ACTIONS(4503), - [anon_sym_BSLASHAcrlong] = ACTIONS(4503), - [anon_sym_BSLASHACRlong] = ACTIONS(4503), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4503), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4503), - [anon_sym_BSLASHacrfull] = ACTIONS(4503), - [anon_sym_BSLASHAcrfull] = ACTIONS(4503), - [anon_sym_BSLASHACRfull] = ACTIONS(4503), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4503), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4503), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4503), - [anon_sym_BSLASHacs] = ACTIONS(4503), - [anon_sym_BSLASHAcs] = ACTIONS(4503), - [anon_sym_BSLASHacsp] = ACTIONS(4503), - [anon_sym_BSLASHAcsp] = ACTIONS(4503), - [anon_sym_BSLASHacl] = ACTIONS(4503), - [anon_sym_BSLASHAcl] = ACTIONS(4503), - [anon_sym_BSLASHaclp] = ACTIONS(4503), - [anon_sym_BSLASHAclp] = ACTIONS(4503), - [anon_sym_BSLASHacf] = ACTIONS(4503), - [anon_sym_BSLASHAcf] = ACTIONS(4503), - [anon_sym_BSLASHacfp] = ACTIONS(4503), - [anon_sym_BSLASHAcfp] = ACTIONS(4503), - [anon_sym_BSLASHac] = ACTIONS(4503), - [anon_sym_BSLASHAc] = ACTIONS(4503), - [anon_sym_BSLASHacp] = ACTIONS(4503), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4503), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4503), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4503), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4503), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4503), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4503), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4503), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4503), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4503), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4503), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4503), - [anon_sym_BSLASHcolor] = ACTIONS(4503), - [anon_sym_BSLASHcolorbox] = ACTIONS(4503), - [anon_sym_BSLASHtextcolor] = ACTIONS(4503), - [anon_sym_BSLASHpagecolor] = ACTIONS(4503), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4503), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4503), - }, - [601] = { - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(601), - [aux_sym__section_repeat3] = STATE(601), - [sym_command_name] = ACTIONS(4513), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4513), - [anon_sym_LPAREN] = ACTIONS(4511), - [anon_sym_RPAREN] = ACTIONS(4511), - [anon_sym_LBRACK] = ACTIONS(4511), - [anon_sym_RBRACK] = ACTIONS(4511), - [anon_sym_COMMA] = ACTIONS(4511), - [anon_sym_EQ] = ACTIONS(4511), - [anon_sym_BSLASHpart] = ACTIONS(4513), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4511), - [anon_sym_BSLASHaddpart] = ACTIONS(4513), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4511), - [anon_sym_BSLASHchapter] = ACTIONS(4513), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4511), - [anon_sym_BSLASHaddchap] = ACTIONS(4513), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsection] = ACTIONS(4715), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4718), - [anon_sym_BSLASHaddsec] = ACTIONS(4715), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4718), - [anon_sym_BSLASHsubsection] = ACTIONS(4513), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4513), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4511), - [anon_sym_BSLASHparagraph] = ACTIONS(4513), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4511), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4513), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4511), - [anon_sym_BSLASHitem] = ACTIONS(4513), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4511), - [anon_sym_LBRACE] = ACTIONS(4511), - [sym_word] = ACTIONS(4513), - [sym_placeholder] = ACTIONS(4511), - [anon_sym_PLUS] = ACTIONS(4513), - [anon_sym_DASH] = ACTIONS(4513), - [anon_sym_STAR] = ACTIONS(4513), - [anon_sym_SLASH] = ACTIONS(4513), - [anon_sym_CARET] = ACTIONS(4513), - [anon_sym__] = ACTIONS(4513), - [anon_sym_LT] = ACTIONS(4513), - [anon_sym_GT] = ACTIONS(4513), - [anon_sym_BANG] = ACTIONS(4513), - [anon_sym_PIPE] = ACTIONS(4513), - [anon_sym_COLON] = ACTIONS(4513), - [anon_sym_SQUOTE] = ACTIONS(4513), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4511), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4511), - [anon_sym_DOLLAR] = ACTIONS(4513), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4511), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4511), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4511), - [anon_sym_BSLASHbegin] = ACTIONS(4513), - [anon_sym_BSLASHusepackage] = ACTIONS(4513), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4513), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4513), - [anon_sym_BSLASHinclude] = ACTIONS(4513), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4513), - [anon_sym_BSLASHinput] = ACTIONS(4513), - [anon_sym_BSLASHsubfile] = ACTIONS(4513), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4513), - [anon_sym_BSLASHbibliography] = ACTIONS(4513), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4513), - [anon_sym_BSLASHincludesvg] = ACTIONS(4513), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4513), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4513), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4513), - [anon_sym_BSLASHimport] = ACTIONS(4513), - [anon_sym_BSLASHsubimport] = ACTIONS(4513), - [anon_sym_BSLASHinputfrom] = ACTIONS(4513), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4513), - [anon_sym_BSLASHincludefrom] = ACTIONS(4513), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4513), - [anon_sym_BSLASHcaption] = ACTIONS(4513), - [anon_sym_BSLASHcite] = ACTIONS(4513), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCite] = ACTIONS(4513), - [anon_sym_BSLASHnocite] = ACTIONS(4513), - [anon_sym_BSLASHcitet] = ACTIONS(4513), - [anon_sym_BSLASHcitep] = ACTIONS(4513), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteauthor] = ACTIONS(4513), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4513), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitetitle] = ACTIONS(4513), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteyear] = ACTIONS(4513), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4511), - [anon_sym_BSLASHcitedate] = ACTIONS(4513), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4511), - [anon_sym_BSLASHciteurl] = ACTIONS(4513), - [anon_sym_BSLASHfullcite] = ACTIONS(4513), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4513), - [anon_sym_BSLASHcitealt] = ACTIONS(4513), - [anon_sym_BSLASHcitealp] = ACTIONS(4513), - [anon_sym_BSLASHcitetext] = ACTIONS(4513), - [anon_sym_BSLASHparencite] = ACTIONS(4513), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHParencite] = ACTIONS(4513), - [anon_sym_BSLASHfootcite] = ACTIONS(4513), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4513), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4513), - [anon_sym_BSLASHtextcite] = ACTIONS(4513), - [anon_sym_BSLASHTextcite] = ACTIONS(4513), - [anon_sym_BSLASHsmartcite] = ACTIONS(4513), - [anon_sym_BSLASHSmartcite] = ACTIONS(4513), - [anon_sym_BSLASHsupercite] = ACTIONS(4513), - [anon_sym_BSLASHautocite] = ACTIONS(4513), - [anon_sym_BSLASHAutocite] = ACTIONS(4513), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4511), - [anon_sym_BSLASHvolcite] = ACTIONS(4513), - [anon_sym_BSLASHVolcite] = ACTIONS(4513), - [anon_sym_BSLASHpvolcite] = ACTIONS(4513), - [anon_sym_BSLASHPvolcite] = ACTIONS(4513), - [anon_sym_BSLASHfvolcite] = ACTIONS(4513), - [anon_sym_BSLASHftvolcite] = ACTIONS(4513), - [anon_sym_BSLASHsvolcite] = ACTIONS(4513), - [anon_sym_BSLASHSvolcite] = ACTIONS(4513), - [anon_sym_BSLASHtvolcite] = ACTIONS(4513), - [anon_sym_BSLASHTvolcite] = ACTIONS(4513), - [anon_sym_BSLASHavolcite] = ACTIONS(4513), - [anon_sym_BSLASHAvolcite] = ACTIONS(4513), - [anon_sym_BSLASHnotecite] = ACTIONS(4513), - [anon_sym_BSLASHNotecite] = ACTIONS(4513), - [anon_sym_BSLASHpnotecite] = ACTIONS(4513), - [anon_sym_BSLASHPnotecite] = ACTIONS(4513), - [anon_sym_BSLASHfnotecite] = ACTIONS(4513), - [anon_sym_BSLASHlabel] = ACTIONS(4513), - [anon_sym_BSLASHref] = ACTIONS(4513), - [anon_sym_BSLASHeqref] = ACTIONS(4513), - [anon_sym_BSLASHvref] = ACTIONS(4513), - [anon_sym_BSLASHVref] = ACTIONS(4513), - [anon_sym_BSLASHautoref] = ACTIONS(4513), - [anon_sym_BSLASHpageref] = ACTIONS(4513), - [anon_sym_BSLASHcref] = ACTIONS(4513), - [anon_sym_BSLASHCref] = ACTIONS(4513), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4511), - [anon_sym_BSLASHnamecref] = ACTIONS(4513), - [anon_sym_BSLASHnameCref] = ACTIONS(4513), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4513), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4513), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4513), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4513), - [anon_sym_BSLASHlabelcref] = ACTIONS(4513), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4513), - [anon_sym_BSLASHcrefrange] = ACTIONS(4513), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4511), - [anon_sym_BSLASHCrefrange] = ACTIONS(4513), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4511), - [anon_sym_BSLASHnewlabel] = ACTIONS(4513), - [anon_sym_BSLASHnewcommand] = ACTIONS(4513), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4513), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4513), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4511), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4513), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4511), - [anon_sym_BSLASHdef] = ACTIONS(4513), - [anon_sym_BSLASHlet] = ACTIONS(4513), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4513), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4513), - [anon_sym_BSLASHgls] = ACTIONS(4513), - [anon_sym_BSLASHGls] = ACTIONS(4513), - [anon_sym_BSLASHGLS] = ACTIONS(4513), - [anon_sym_BSLASHglspl] = ACTIONS(4513), - [anon_sym_BSLASHGlspl] = ACTIONS(4513), - [anon_sym_BSLASHGLSpl] = ACTIONS(4513), - [anon_sym_BSLASHglsdisp] = ACTIONS(4513), - [anon_sym_BSLASHglslink] = ACTIONS(4513), - [anon_sym_BSLASHglstext] = ACTIONS(4513), - [anon_sym_BSLASHGlstext] = ACTIONS(4513), - [anon_sym_BSLASHGLStext] = ACTIONS(4513), - [anon_sym_BSLASHglsfirst] = ACTIONS(4513), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4513), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4513), - [anon_sym_BSLASHglsplural] = ACTIONS(4513), - [anon_sym_BSLASHGlsplural] = ACTIONS(4513), - [anon_sym_BSLASHGLSplural] = ACTIONS(4513), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4513), - [anon_sym_BSLASHglsname] = ACTIONS(4513), - [anon_sym_BSLASHGlsname] = ACTIONS(4513), - [anon_sym_BSLASHGLSname] = ACTIONS(4513), - [anon_sym_BSLASHglssymbol] = ACTIONS(4513), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4513), - [anon_sym_BSLASHglsdesc] = ACTIONS(4513), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4513), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4513), - [anon_sym_BSLASHglsuseri] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4513), - [anon_sym_BSLASHglsuserii] = ACTIONS(4513), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4513), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4513), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4513), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4513), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4513), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4513), - [anon_sym_BSLASHglsuserv] = ACTIONS(4513), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4513), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4513), - [anon_sym_BSLASHglsuservi] = ACTIONS(4513), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4513), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4513), - [anon_sym_BSLASHnewacronym] = ACTIONS(4513), - [anon_sym_BSLASHacrshort] = ACTIONS(4513), - [anon_sym_BSLASHAcrshort] = ACTIONS(4513), - [anon_sym_BSLASHACRshort] = ACTIONS(4513), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4513), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4513), - [anon_sym_BSLASHacrlong] = ACTIONS(4513), - [anon_sym_BSLASHAcrlong] = ACTIONS(4513), - [anon_sym_BSLASHACRlong] = ACTIONS(4513), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4513), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4513), - [anon_sym_BSLASHacrfull] = ACTIONS(4513), - [anon_sym_BSLASHAcrfull] = ACTIONS(4513), - [anon_sym_BSLASHACRfull] = ACTIONS(4513), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4513), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4513), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4513), - [anon_sym_BSLASHacs] = ACTIONS(4513), - [anon_sym_BSLASHAcs] = ACTIONS(4513), - [anon_sym_BSLASHacsp] = ACTIONS(4513), - [anon_sym_BSLASHAcsp] = ACTIONS(4513), - [anon_sym_BSLASHacl] = ACTIONS(4513), - [anon_sym_BSLASHAcl] = ACTIONS(4513), - [anon_sym_BSLASHaclp] = ACTIONS(4513), - [anon_sym_BSLASHAclp] = ACTIONS(4513), - [anon_sym_BSLASHacf] = ACTIONS(4513), - [anon_sym_BSLASHAcf] = ACTIONS(4513), - [anon_sym_BSLASHacfp] = ACTIONS(4513), - [anon_sym_BSLASHAcfp] = ACTIONS(4513), - [anon_sym_BSLASHac] = ACTIONS(4513), - [anon_sym_BSLASHAc] = ACTIONS(4513), - [anon_sym_BSLASHacp] = ACTIONS(4513), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4513), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4513), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4513), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4513), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4513), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4513), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4513), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4513), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4513), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4513), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4513), - [anon_sym_BSLASHcolor] = ACTIONS(4513), - [anon_sym_BSLASHcolorbox] = ACTIONS(4513), - [anon_sym_BSLASHtextcolor] = ACTIONS(4513), - [anon_sym_BSLASHpagecolor] = ACTIONS(4513), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4513), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4513), - }, - [602] = { - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(602), - [aux_sym__section_repeat4] = STATE(602), - [sym_command_name] = ACTIONS(4423), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4423), - [anon_sym_LPAREN] = ACTIONS(4421), - [anon_sym_RPAREN] = ACTIONS(4421), - [anon_sym_LBRACK] = ACTIONS(4421), - [anon_sym_RBRACK] = ACTIONS(4421), - [anon_sym_COMMA] = ACTIONS(4421), - [anon_sym_EQ] = ACTIONS(4421), - [anon_sym_BSLASHpart] = ACTIONS(4423), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddpart] = ACTIONS(4423), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4421), - [anon_sym_BSLASHchapter] = ACTIONS(4423), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddchap] = ACTIONS(4423), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsection] = ACTIONS(4423), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4421), - [anon_sym_BSLASHaddsec] = ACTIONS(4423), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsubsection] = ACTIONS(4721), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4724), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4423), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4421), - [anon_sym_BSLASHparagraph] = ACTIONS(4423), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4421), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4423), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4421), - [anon_sym_BSLASHitem] = ACTIONS(4423), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4421), - [anon_sym_LBRACE] = ACTIONS(4421), - [sym_word] = ACTIONS(4423), - [sym_placeholder] = ACTIONS(4421), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_SLASH] = ACTIONS(4423), - [anon_sym_CARET] = ACTIONS(4423), - [anon_sym__] = ACTIONS(4423), - [anon_sym_LT] = ACTIONS(4423), - [anon_sym_GT] = ACTIONS(4423), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_PIPE] = ACTIONS(4423), - [anon_sym_COLON] = ACTIONS(4423), - [anon_sym_SQUOTE] = ACTIONS(4423), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4421), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4421), - [anon_sym_DOLLAR] = ACTIONS(4423), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4421), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4421), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4421), - [anon_sym_BSLASHbegin] = ACTIONS(4423), - [anon_sym_BSLASHusepackage] = ACTIONS(4423), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4423), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4423), - [anon_sym_BSLASHinclude] = ACTIONS(4423), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4423), - [anon_sym_BSLASHinput] = ACTIONS(4423), - [anon_sym_BSLASHsubfile] = ACTIONS(4423), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4423), - [anon_sym_BSLASHbibliography] = ACTIONS(4423), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4423), - [anon_sym_BSLASHincludesvg] = ACTIONS(4423), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4423), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4423), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4423), - [anon_sym_BSLASHimport] = ACTIONS(4423), - [anon_sym_BSLASHsubimport] = ACTIONS(4423), - [anon_sym_BSLASHinputfrom] = ACTIONS(4423), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4423), - [anon_sym_BSLASHincludefrom] = ACTIONS(4423), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4423), - [anon_sym_BSLASHcaption] = ACTIONS(4423), - [anon_sym_BSLASHcite] = ACTIONS(4423), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCite] = ACTIONS(4423), - [anon_sym_BSLASHnocite] = ACTIONS(4423), - [anon_sym_BSLASHcitet] = ACTIONS(4423), - [anon_sym_BSLASHcitep] = ACTIONS(4423), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteauthor] = ACTIONS(4423), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4423), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitetitle] = ACTIONS(4423), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteyear] = ACTIONS(4423), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4421), - [anon_sym_BSLASHcitedate] = ACTIONS(4423), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4421), - [anon_sym_BSLASHciteurl] = ACTIONS(4423), - [anon_sym_BSLASHfullcite] = ACTIONS(4423), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4423), - [anon_sym_BSLASHcitealt] = ACTIONS(4423), - [anon_sym_BSLASHcitealp] = ACTIONS(4423), - [anon_sym_BSLASHcitetext] = ACTIONS(4423), - [anon_sym_BSLASHparencite] = ACTIONS(4423), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHParencite] = ACTIONS(4423), - [anon_sym_BSLASHfootcite] = ACTIONS(4423), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4423), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4423), - [anon_sym_BSLASHtextcite] = ACTIONS(4423), - [anon_sym_BSLASHTextcite] = ACTIONS(4423), - [anon_sym_BSLASHsmartcite] = ACTIONS(4423), - [anon_sym_BSLASHSmartcite] = ACTIONS(4423), - [anon_sym_BSLASHsupercite] = ACTIONS(4423), - [anon_sym_BSLASHautocite] = ACTIONS(4423), - [anon_sym_BSLASHAutocite] = ACTIONS(4423), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4421), - [anon_sym_BSLASHvolcite] = ACTIONS(4423), - [anon_sym_BSLASHVolcite] = ACTIONS(4423), - [anon_sym_BSLASHpvolcite] = ACTIONS(4423), - [anon_sym_BSLASHPvolcite] = ACTIONS(4423), - [anon_sym_BSLASHfvolcite] = ACTIONS(4423), - [anon_sym_BSLASHftvolcite] = ACTIONS(4423), - [anon_sym_BSLASHsvolcite] = ACTIONS(4423), - [anon_sym_BSLASHSvolcite] = ACTIONS(4423), - [anon_sym_BSLASHtvolcite] = ACTIONS(4423), - [anon_sym_BSLASHTvolcite] = ACTIONS(4423), - [anon_sym_BSLASHavolcite] = ACTIONS(4423), - [anon_sym_BSLASHAvolcite] = ACTIONS(4423), - [anon_sym_BSLASHnotecite] = ACTIONS(4423), - [anon_sym_BSLASHNotecite] = ACTIONS(4423), - [anon_sym_BSLASHpnotecite] = ACTIONS(4423), - [anon_sym_BSLASHPnotecite] = ACTIONS(4423), - [anon_sym_BSLASHfnotecite] = ACTIONS(4423), - [anon_sym_BSLASHlabel] = ACTIONS(4423), - [anon_sym_BSLASHref] = ACTIONS(4423), - [anon_sym_BSLASHeqref] = ACTIONS(4423), - [anon_sym_BSLASHvref] = ACTIONS(4423), - [anon_sym_BSLASHVref] = ACTIONS(4423), - [anon_sym_BSLASHautoref] = ACTIONS(4423), - [anon_sym_BSLASHpageref] = ACTIONS(4423), - [anon_sym_BSLASHcref] = ACTIONS(4423), - [anon_sym_BSLASHCref] = ACTIONS(4423), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4421), - [anon_sym_BSLASHnamecref] = ACTIONS(4423), - [anon_sym_BSLASHnameCref] = ACTIONS(4423), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4423), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4423), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4423), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4423), - [anon_sym_BSLASHlabelcref] = ACTIONS(4423), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4423), - [anon_sym_BSLASHcrefrange] = ACTIONS(4423), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4421), - [anon_sym_BSLASHCrefrange] = ACTIONS(4423), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4421), - [anon_sym_BSLASHnewlabel] = ACTIONS(4423), - [anon_sym_BSLASHnewcommand] = ACTIONS(4423), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4423), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4423), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4421), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4423), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4421), - [anon_sym_BSLASHdef] = ACTIONS(4423), - [anon_sym_BSLASHlet] = ACTIONS(4423), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4423), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4423), - [anon_sym_BSLASHgls] = ACTIONS(4423), - [anon_sym_BSLASHGls] = ACTIONS(4423), - [anon_sym_BSLASHGLS] = ACTIONS(4423), - [anon_sym_BSLASHglspl] = ACTIONS(4423), - [anon_sym_BSLASHGlspl] = ACTIONS(4423), - [anon_sym_BSLASHGLSpl] = ACTIONS(4423), - [anon_sym_BSLASHglsdisp] = ACTIONS(4423), - [anon_sym_BSLASHglslink] = ACTIONS(4423), - [anon_sym_BSLASHglstext] = ACTIONS(4423), - [anon_sym_BSLASHGlstext] = ACTIONS(4423), - [anon_sym_BSLASHGLStext] = ACTIONS(4423), - [anon_sym_BSLASHglsfirst] = ACTIONS(4423), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4423), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4423), - [anon_sym_BSLASHglsplural] = ACTIONS(4423), - [anon_sym_BSLASHGlsplural] = ACTIONS(4423), - [anon_sym_BSLASHGLSplural] = ACTIONS(4423), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4423), - [anon_sym_BSLASHglsname] = ACTIONS(4423), - [anon_sym_BSLASHGlsname] = ACTIONS(4423), - [anon_sym_BSLASHGLSname] = ACTIONS(4423), - [anon_sym_BSLASHglssymbol] = ACTIONS(4423), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4423), - [anon_sym_BSLASHglsdesc] = ACTIONS(4423), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4423), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4423), - [anon_sym_BSLASHglsuseri] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4423), - [anon_sym_BSLASHglsuserii] = ACTIONS(4423), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4423), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4423), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4423), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4423), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4423), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4423), - [anon_sym_BSLASHglsuserv] = ACTIONS(4423), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4423), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4423), - [anon_sym_BSLASHglsuservi] = ACTIONS(4423), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4423), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4423), - [anon_sym_BSLASHnewacronym] = ACTIONS(4423), - [anon_sym_BSLASHacrshort] = ACTIONS(4423), - [anon_sym_BSLASHAcrshort] = ACTIONS(4423), - [anon_sym_BSLASHACRshort] = ACTIONS(4423), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4423), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4423), - [anon_sym_BSLASHacrlong] = ACTIONS(4423), - [anon_sym_BSLASHAcrlong] = ACTIONS(4423), - [anon_sym_BSLASHACRlong] = ACTIONS(4423), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4423), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4423), - [anon_sym_BSLASHacrfull] = ACTIONS(4423), - [anon_sym_BSLASHAcrfull] = ACTIONS(4423), - [anon_sym_BSLASHACRfull] = ACTIONS(4423), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4423), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4423), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4423), - [anon_sym_BSLASHacs] = ACTIONS(4423), - [anon_sym_BSLASHAcs] = ACTIONS(4423), - [anon_sym_BSLASHacsp] = ACTIONS(4423), - [anon_sym_BSLASHAcsp] = ACTIONS(4423), - [anon_sym_BSLASHacl] = ACTIONS(4423), - [anon_sym_BSLASHAcl] = ACTIONS(4423), - [anon_sym_BSLASHaclp] = ACTIONS(4423), - [anon_sym_BSLASHAclp] = ACTIONS(4423), - [anon_sym_BSLASHacf] = ACTIONS(4423), - [anon_sym_BSLASHAcf] = ACTIONS(4423), - [anon_sym_BSLASHacfp] = ACTIONS(4423), - [anon_sym_BSLASHAcfp] = ACTIONS(4423), - [anon_sym_BSLASHac] = ACTIONS(4423), - [anon_sym_BSLASHAc] = ACTIONS(4423), - [anon_sym_BSLASHacp] = ACTIONS(4423), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4423), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4423), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4423), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4423), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4423), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4423), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4423), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4423), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4423), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4423), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4423), - [anon_sym_BSLASHcolor] = ACTIONS(4423), - [anon_sym_BSLASHcolorbox] = ACTIONS(4423), - [anon_sym_BSLASHtextcolor] = ACTIONS(4423), - [anon_sym_BSLASHpagecolor] = ACTIONS(4423), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4423), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4423), - }, - [603] = { - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(603), - [aux_sym__section_repeat5] = STATE(603), - [sym_command_name] = ACTIONS(4399), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4399), - [anon_sym_LPAREN] = ACTIONS(4397), - [anon_sym_RPAREN] = ACTIONS(4397), - [anon_sym_LBRACK] = ACTIONS(4397), - [anon_sym_RBRACK] = ACTIONS(4397), - [anon_sym_COMMA] = ACTIONS(4397), - [anon_sym_EQ] = ACTIONS(4397), - [anon_sym_BSLASHpart] = ACTIONS(4399), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddpart] = ACTIONS(4399), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4397), - [anon_sym_BSLASHchapter] = ACTIONS(4399), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddchap] = ACTIONS(4399), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsection] = ACTIONS(4399), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4397), - [anon_sym_BSLASHaddsec] = ACTIONS(4399), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubsection] = ACTIONS(4399), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4727), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4730), - [anon_sym_BSLASHparagraph] = ACTIONS(4399), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4397), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4399), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4397), - [anon_sym_BSLASHitem] = ACTIONS(4399), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4397), - [anon_sym_LBRACE] = ACTIONS(4397), - [sym_word] = ACTIONS(4399), - [sym_placeholder] = ACTIONS(4397), - [anon_sym_PLUS] = ACTIONS(4399), - [anon_sym_DASH] = ACTIONS(4399), - [anon_sym_STAR] = ACTIONS(4399), - [anon_sym_SLASH] = ACTIONS(4399), - [anon_sym_CARET] = ACTIONS(4399), - [anon_sym__] = ACTIONS(4399), - [anon_sym_LT] = ACTIONS(4399), - [anon_sym_GT] = ACTIONS(4399), - [anon_sym_BANG] = ACTIONS(4399), - [anon_sym_PIPE] = ACTIONS(4399), - [anon_sym_COLON] = ACTIONS(4399), - [anon_sym_SQUOTE] = ACTIONS(4399), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4397), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4397), - [anon_sym_DOLLAR] = ACTIONS(4399), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4397), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4397), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4397), - [anon_sym_BSLASHbegin] = ACTIONS(4399), - [anon_sym_BSLASHusepackage] = ACTIONS(4399), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4399), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4399), - [anon_sym_BSLASHinclude] = ACTIONS(4399), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4399), - [anon_sym_BSLASHinput] = ACTIONS(4399), - [anon_sym_BSLASHsubfile] = ACTIONS(4399), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4399), - [anon_sym_BSLASHbibliography] = ACTIONS(4399), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4399), - [anon_sym_BSLASHincludesvg] = ACTIONS(4399), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4399), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4399), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4399), - [anon_sym_BSLASHimport] = ACTIONS(4399), - [anon_sym_BSLASHsubimport] = ACTIONS(4399), - [anon_sym_BSLASHinputfrom] = ACTIONS(4399), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4399), - [anon_sym_BSLASHincludefrom] = ACTIONS(4399), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4399), - [anon_sym_BSLASHcaption] = ACTIONS(4399), - [anon_sym_BSLASHcite] = ACTIONS(4399), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCite] = ACTIONS(4399), - [anon_sym_BSLASHnocite] = ACTIONS(4399), - [anon_sym_BSLASHcitet] = ACTIONS(4399), - [anon_sym_BSLASHcitep] = ACTIONS(4399), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteauthor] = ACTIONS(4399), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4399), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitetitle] = ACTIONS(4399), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteyear] = ACTIONS(4399), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4397), - [anon_sym_BSLASHcitedate] = ACTIONS(4399), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4397), - [anon_sym_BSLASHciteurl] = ACTIONS(4399), - [anon_sym_BSLASHfullcite] = ACTIONS(4399), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4399), - [anon_sym_BSLASHcitealt] = ACTIONS(4399), - [anon_sym_BSLASHcitealp] = ACTIONS(4399), - [anon_sym_BSLASHcitetext] = ACTIONS(4399), - [anon_sym_BSLASHparencite] = ACTIONS(4399), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHParencite] = ACTIONS(4399), - [anon_sym_BSLASHfootcite] = ACTIONS(4399), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4399), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4399), - [anon_sym_BSLASHtextcite] = ACTIONS(4399), - [anon_sym_BSLASHTextcite] = ACTIONS(4399), - [anon_sym_BSLASHsmartcite] = ACTIONS(4399), - [anon_sym_BSLASHSmartcite] = ACTIONS(4399), - [anon_sym_BSLASHsupercite] = ACTIONS(4399), - [anon_sym_BSLASHautocite] = ACTIONS(4399), - [anon_sym_BSLASHAutocite] = ACTIONS(4399), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4397), - [anon_sym_BSLASHvolcite] = ACTIONS(4399), - [anon_sym_BSLASHVolcite] = ACTIONS(4399), - [anon_sym_BSLASHpvolcite] = ACTIONS(4399), - [anon_sym_BSLASHPvolcite] = ACTIONS(4399), - [anon_sym_BSLASHfvolcite] = ACTIONS(4399), - [anon_sym_BSLASHftvolcite] = ACTIONS(4399), - [anon_sym_BSLASHsvolcite] = ACTIONS(4399), - [anon_sym_BSLASHSvolcite] = ACTIONS(4399), - [anon_sym_BSLASHtvolcite] = ACTIONS(4399), - [anon_sym_BSLASHTvolcite] = ACTIONS(4399), - [anon_sym_BSLASHavolcite] = ACTIONS(4399), - [anon_sym_BSLASHAvolcite] = ACTIONS(4399), - [anon_sym_BSLASHnotecite] = ACTIONS(4399), - [anon_sym_BSLASHNotecite] = ACTIONS(4399), - [anon_sym_BSLASHpnotecite] = ACTIONS(4399), - [anon_sym_BSLASHPnotecite] = ACTIONS(4399), - [anon_sym_BSLASHfnotecite] = ACTIONS(4399), - [anon_sym_BSLASHlabel] = ACTIONS(4399), - [anon_sym_BSLASHref] = ACTIONS(4399), - [anon_sym_BSLASHeqref] = ACTIONS(4399), - [anon_sym_BSLASHvref] = ACTIONS(4399), - [anon_sym_BSLASHVref] = ACTIONS(4399), - [anon_sym_BSLASHautoref] = ACTIONS(4399), - [anon_sym_BSLASHpageref] = ACTIONS(4399), - [anon_sym_BSLASHcref] = ACTIONS(4399), - [anon_sym_BSLASHCref] = ACTIONS(4399), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4397), - [anon_sym_BSLASHnamecref] = ACTIONS(4399), - [anon_sym_BSLASHnameCref] = ACTIONS(4399), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4399), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4399), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4399), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4399), - [anon_sym_BSLASHlabelcref] = ACTIONS(4399), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4399), - [anon_sym_BSLASHcrefrange] = ACTIONS(4399), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4397), - [anon_sym_BSLASHCrefrange] = ACTIONS(4399), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4397), - [anon_sym_BSLASHnewlabel] = ACTIONS(4399), - [anon_sym_BSLASHnewcommand] = ACTIONS(4399), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4399), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4399), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4397), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4399), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4397), - [anon_sym_BSLASHdef] = ACTIONS(4399), - [anon_sym_BSLASHlet] = ACTIONS(4399), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4399), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4399), - [anon_sym_BSLASHgls] = ACTIONS(4399), - [anon_sym_BSLASHGls] = ACTIONS(4399), - [anon_sym_BSLASHGLS] = ACTIONS(4399), - [anon_sym_BSLASHglspl] = ACTIONS(4399), - [anon_sym_BSLASHGlspl] = ACTIONS(4399), - [anon_sym_BSLASHGLSpl] = ACTIONS(4399), - [anon_sym_BSLASHglsdisp] = ACTIONS(4399), - [anon_sym_BSLASHglslink] = ACTIONS(4399), - [anon_sym_BSLASHglstext] = ACTIONS(4399), - [anon_sym_BSLASHGlstext] = ACTIONS(4399), - [anon_sym_BSLASHGLStext] = ACTIONS(4399), - [anon_sym_BSLASHglsfirst] = ACTIONS(4399), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4399), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4399), - [anon_sym_BSLASHglsplural] = ACTIONS(4399), - [anon_sym_BSLASHGlsplural] = ACTIONS(4399), - [anon_sym_BSLASHGLSplural] = ACTIONS(4399), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4399), - [anon_sym_BSLASHglsname] = ACTIONS(4399), - [anon_sym_BSLASHGlsname] = ACTIONS(4399), - [anon_sym_BSLASHGLSname] = ACTIONS(4399), - [anon_sym_BSLASHglssymbol] = ACTIONS(4399), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4399), - [anon_sym_BSLASHglsdesc] = ACTIONS(4399), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4399), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4399), - [anon_sym_BSLASHglsuseri] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4399), - [anon_sym_BSLASHglsuserii] = ACTIONS(4399), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4399), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4399), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4399), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4399), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4399), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4399), - [anon_sym_BSLASHglsuserv] = ACTIONS(4399), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4399), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4399), - [anon_sym_BSLASHglsuservi] = ACTIONS(4399), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4399), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4399), - [anon_sym_BSLASHnewacronym] = ACTIONS(4399), - [anon_sym_BSLASHacrshort] = ACTIONS(4399), - [anon_sym_BSLASHAcrshort] = ACTIONS(4399), - [anon_sym_BSLASHACRshort] = ACTIONS(4399), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4399), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4399), - [anon_sym_BSLASHacrlong] = ACTIONS(4399), - [anon_sym_BSLASHAcrlong] = ACTIONS(4399), - [anon_sym_BSLASHACRlong] = ACTIONS(4399), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4399), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4399), - [anon_sym_BSLASHacrfull] = ACTIONS(4399), - [anon_sym_BSLASHAcrfull] = ACTIONS(4399), - [anon_sym_BSLASHACRfull] = ACTIONS(4399), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4399), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4399), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4399), - [anon_sym_BSLASHacs] = ACTIONS(4399), - [anon_sym_BSLASHAcs] = ACTIONS(4399), - [anon_sym_BSLASHacsp] = ACTIONS(4399), - [anon_sym_BSLASHAcsp] = ACTIONS(4399), - [anon_sym_BSLASHacl] = ACTIONS(4399), - [anon_sym_BSLASHAcl] = ACTIONS(4399), - [anon_sym_BSLASHaclp] = ACTIONS(4399), - [anon_sym_BSLASHAclp] = ACTIONS(4399), - [anon_sym_BSLASHacf] = ACTIONS(4399), - [anon_sym_BSLASHAcf] = ACTIONS(4399), - [anon_sym_BSLASHacfp] = ACTIONS(4399), - [anon_sym_BSLASHAcfp] = ACTIONS(4399), - [anon_sym_BSLASHac] = ACTIONS(4399), - [anon_sym_BSLASHAc] = ACTIONS(4399), - [anon_sym_BSLASHacp] = ACTIONS(4399), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4399), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4399), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4399), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4399), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4399), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4399), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4399), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4399), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4399), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4399), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4399), - [anon_sym_BSLASHcolor] = ACTIONS(4399), - [anon_sym_BSLASHcolorbox] = ACTIONS(4399), - [anon_sym_BSLASHtextcolor] = ACTIONS(4399), - [anon_sym_BSLASHpagecolor] = ACTIONS(4399), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4399), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4399), - }, - [604] = { - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(604), - [aux_sym__section_repeat6] = STATE(604), - [sym_command_name] = ACTIONS(4409), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4409), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym_RPAREN] = ACTIONS(4407), - [anon_sym_LBRACK] = ACTIONS(4407), - [anon_sym_RBRACK] = ACTIONS(4407), - [anon_sym_COMMA] = ACTIONS(4407), - [anon_sym_EQ] = ACTIONS(4407), - [anon_sym_BSLASHpart] = ACTIONS(4409), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddpart] = ACTIONS(4409), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4407), - [anon_sym_BSLASHchapter] = ACTIONS(4409), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddchap] = ACTIONS(4409), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsection] = ACTIONS(4409), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHaddsec] = ACTIONS(4409), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsubsection] = ACTIONS(4409), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4409), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4407), - [anon_sym_BSLASHparagraph] = ACTIONS(4733), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4736), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4409), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4407), - [anon_sym_BSLASHitem] = ACTIONS(4409), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4407), - [anon_sym_LBRACE] = ACTIONS(4407), - [sym_word] = ACTIONS(4409), - [sym_placeholder] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4409), - [anon_sym_DASH] = ACTIONS(4409), - [anon_sym_STAR] = ACTIONS(4409), - [anon_sym_SLASH] = ACTIONS(4409), - [anon_sym_CARET] = ACTIONS(4409), - [anon_sym__] = ACTIONS(4409), - [anon_sym_LT] = ACTIONS(4409), - [anon_sym_GT] = ACTIONS(4409), - [anon_sym_BANG] = ACTIONS(4409), - [anon_sym_PIPE] = ACTIONS(4409), - [anon_sym_COLON] = ACTIONS(4409), - [anon_sym_SQUOTE] = ACTIONS(4409), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4407), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4407), - [anon_sym_DOLLAR] = ACTIONS(4409), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4407), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4407), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4407), - [anon_sym_BSLASHbegin] = ACTIONS(4409), - [anon_sym_BSLASHusepackage] = ACTIONS(4409), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4409), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4409), - [anon_sym_BSLASHinclude] = ACTIONS(4409), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4409), - [anon_sym_BSLASHinput] = ACTIONS(4409), - [anon_sym_BSLASHsubfile] = ACTIONS(4409), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4409), - [anon_sym_BSLASHbibliography] = ACTIONS(4409), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4409), - [anon_sym_BSLASHincludesvg] = ACTIONS(4409), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4409), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4409), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4409), - [anon_sym_BSLASHimport] = ACTIONS(4409), - [anon_sym_BSLASHsubimport] = ACTIONS(4409), - [anon_sym_BSLASHinputfrom] = ACTIONS(4409), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4409), - [anon_sym_BSLASHincludefrom] = ACTIONS(4409), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4409), - [anon_sym_BSLASHcaption] = ACTIONS(4409), - [anon_sym_BSLASHcite] = ACTIONS(4409), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCite] = ACTIONS(4409), - [anon_sym_BSLASHnocite] = ACTIONS(4409), - [anon_sym_BSLASHcitet] = ACTIONS(4409), - [anon_sym_BSLASHcitep] = ACTIONS(4409), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteauthor] = ACTIONS(4409), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4409), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitetitle] = ACTIONS(4409), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteyear] = ACTIONS(4409), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4407), - [anon_sym_BSLASHcitedate] = ACTIONS(4409), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4407), - [anon_sym_BSLASHciteurl] = ACTIONS(4409), - [anon_sym_BSLASHfullcite] = ACTIONS(4409), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4409), - [anon_sym_BSLASHcitealt] = ACTIONS(4409), - [anon_sym_BSLASHcitealp] = ACTIONS(4409), - [anon_sym_BSLASHcitetext] = ACTIONS(4409), - [anon_sym_BSLASHparencite] = ACTIONS(4409), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHParencite] = ACTIONS(4409), - [anon_sym_BSLASHfootcite] = ACTIONS(4409), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4409), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4409), - [anon_sym_BSLASHtextcite] = ACTIONS(4409), - [anon_sym_BSLASHTextcite] = ACTIONS(4409), - [anon_sym_BSLASHsmartcite] = ACTIONS(4409), - [anon_sym_BSLASHSmartcite] = ACTIONS(4409), - [anon_sym_BSLASHsupercite] = ACTIONS(4409), - [anon_sym_BSLASHautocite] = ACTIONS(4409), - [anon_sym_BSLASHAutocite] = ACTIONS(4409), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4407), - [anon_sym_BSLASHvolcite] = ACTIONS(4409), - [anon_sym_BSLASHVolcite] = ACTIONS(4409), - [anon_sym_BSLASHpvolcite] = ACTIONS(4409), - [anon_sym_BSLASHPvolcite] = ACTIONS(4409), - [anon_sym_BSLASHfvolcite] = ACTIONS(4409), - [anon_sym_BSLASHftvolcite] = ACTIONS(4409), - [anon_sym_BSLASHsvolcite] = ACTIONS(4409), - [anon_sym_BSLASHSvolcite] = ACTIONS(4409), - [anon_sym_BSLASHtvolcite] = ACTIONS(4409), - [anon_sym_BSLASHTvolcite] = ACTIONS(4409), - [anon_sym_BSLASHavolcite] = ACTIONS(4409), - [anon_sym_BSLASHAvolcite] = ACTIONS(4409), - [anon_sym_BSLASHnotecite] = ACTIONS(4409), - [anon_sym_BSLASHNotecite] = ACTIONS(4409), - [anon_sym_BSLASHpnotecite] = ACTIONS(4409), - [anon_sym_BSLASHPnotecite] = ACTIONS(4409), - [anon_sym_BSLASHfnotecite] = ACTIONS(4409), - [anon_sym_BSLASHlabel] = ACTIONS(4409), - [anon_sym_BSLASHref] = ACTIONS(4409), - [anon_sym_BSLASHeqref] = ACTIONS(4409), - [anon_sym_BSLASHvref] = ACTIONS(4409), - [anon_sym_BSLASHVref] = ACTIONS(4409), - [anon_sym_BSLASHautoref] = ACTIONS(4409), - [anon_sym_BSLASHpageref] = ACTIONS(4409), - [anon_sym_BSLASHcref] = ACTIONS(4409), - [anon_sym_BSLASHCref] = ACTIONS(4409), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4407), - [anon_sym_BSLASHnamecref] = ACTIONS(4409), - [anon_sym_BSLASHnameCref] = ACTIONS(4409), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4409), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4409), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4409), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4409), - [anon_sym_BSLASHlabelcref] = ACTIONS(4409), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4409), - [anon_sym_BSLASHcrefrange] = ACTIONS(4409), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4407), - [anon_sym_BSLASHCrefrange] = ACTIONS(4409), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4407), - [anon_sym_BSLASHnewlabel] = ACTIONS(4409), - [anon_sym_BSLASHnewcommand] = ACTIONS(4409), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4409), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4409), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4407), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4409), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4407), - [anon_sym_BSLASHdef] = ACTIONS(4409), - [anon_sym_BSLASHlet] = ACTIONS(4409), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4409), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4409), - [anon_sym_BSLASHgls] = ACTIONS(4409), - [anon_sym_BSLASHGls] = ACTIONS(4409), - [anon_sym_BSLASHGLS] = ACTIONS(4409), - [anon_sym_BSLASHglspl] = ACTIONS(4409), - [anon_sym_BSLASHGlspl] = ACTIONS(4409), - [anon_sym_BSLASHGLSpl] = ACTIONS(4409), - [anon_sym_BSLASHglsdisp] = ACTIONS(4409), - [anon_sym_BSLASHglslink] = ACTIONS(4409), - [anon_sym_BSLASHglstext] = ACTIONS(4409), - [anon_sym_BSLASHGlstext] = ACTIONS(4409), - [anon_sym_BSLASHGLStext] = ACTIONS(4409), - [anon_sym_BSLASHglsfirst] = ACTIONS(4409), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4409), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4409), - [anon_sym_BSLASHglsplural] = ACTIONS(4409), - [anon_sym_BSLASHGlsplural] = ACTIONS(4409), - [anon_sym_BSLASHGLSplural] = ACTIONS(4409), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4409), - [anon_sym_BSLASHglsname] = ACTIONS(4409), - [anon_sym_BSLASHGlsname] = ACTIONS(4409), - [anon_sym_BSLASHGLSname] = ACTIONS(4409), - [anon_sym_BSLASHglssymbol] = ACTIONS(4409), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4409), - [anon_sym_BSLASHglsdesc] = ACTIONS(4409), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4409), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4409), - [anon_sym_BSLASHglsuseri] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4409), - [anon_sym_BSLASHglsuserii] = ACTIONS(4409), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4409), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4409), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4409), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4409), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4409), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4409), - [anon_sym_BSLASHglsuserv] = ACTIONS(4409), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4409), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4409), - [anon_sym_BSLASHglsuservi] = ACTIONS(4409), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4409), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4409), - [anon_sym_BSLASHnewacronym] = ACTIONS(4409), - [anon_sym_BSLASHacrshort] = ACTIONS(4409), - [anon_sym_BSLASHAcrshort] = ACTIONS(4409), - [anon_sym_BSLASHACRshort] = ACTIONS(4409), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4409), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4409), - [anon_sym_BSLASHacrlong] = ACTIONS(4409), - [anon_sym_BSLASHAcrlong] = ACTIONS(4409), - [anon_sym_BSLASHACRlong] = ACTIONS(4409), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4409), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4409), - [anon_sym_BSLASHacrfull] = ACTIONS(4409), - [anon_sym_BSLASHAcrfull] = ACTIONS(4409), - [anon_sym_BSLASHACRfull] = ACTIONS(4409), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4409), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4409), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4409), - [anon_sym_BSLASHacs] = ACTIONS(4409), - [anon_sym_BSLASHAcs] = ACTIONS(4409), - [anon_sym_BSLASHacsp] = ACTIONS(4409), - [anon_sym_BSLASHAcsp] = ACTIONS(4409), - [anon_sym_BSLASHacl] = ACTIONS(4409), - [anon_sym_BSLASHAcl] = ACTIONS(4409), - [anon_sym_BSLASHaclp] = ACTIONS(4409), - [anon_sym_BSLASHAclp] = ACTIONS(4409), - [anon_sym_BSLASHacf] = ACTIONS(4409), - [anon_sym_BSLASHAcf] = ACTIONS(4409), - [anon_sym_BSLASHacfp] = ACTIONS(4409), - [anon_sym_BSLASHAcfp] = ACTIONS(4409), - [anon_sym_BSLASHac] = ACTIONS(4409), - [anon_sym_BSLASHAc] = ACTIONS(4409), - [anon_sym_BSLASHacp] = ACTIONS(4409), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4409), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4409), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4409), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4409), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4409), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4409), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4409), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4409), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4409), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4409), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4409), - [anon_sym_BSLASHcolor] = ACTIONS(4409), - [anon_sym_BSLASHcolorbox] = ACTIONS(4409), - [anon_sym_BSLASHtextcolor] = ACTIONS(4409), - [anon_sym_BSLASHpagecolor] = ACTIONS(4409), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4409), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4409), - }, - [605] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(4479), + [419] = { + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(4479), @@ -200536,8 +149241,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), [anon_sym_BSLASHparagraph] = ACTIONS(4479), [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4739), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4742), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), [anon_sym_BSLASHitem] = ACTIONS(4479), [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), [anon_sym_LBRACE] = ACTIONS(4477), @@ -200560,8 +149265,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(4479), [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4477), [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHend] = ACTIONS(4479), [anon_sym_BSLASHusepackage] = ACTIONS(4479), [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), @@ -200775,88842 +149480,83754 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(4479), [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [606] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(4445), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4445), - [anon_sym_LPAREN] = ACTIONS(4443), - [anon_sym_RPAREN] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4443), - [anon_sym_RBRACK] = ACTIONS(4443), - [anon_sym_COMMA] = ACTIONS(4443), - [anon_sym_EQ] = ACTIONS(4443), - [anon_sym_BSLASHpart] = ACTIONS(4445), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddpart] = ACTIONS(4445), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4443), - [anon_sym_BSLASHchapter] = ACTIONS(4445), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddchap] = ACTIONS(4445), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsection] = ACTIONS(4445), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHaddsec] = ACTIONS(4445), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubsection] = ACTIONS(4445), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4445), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4443), - [anon_sym_BSLASHparagraph] = ACTIONS(4445), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4443), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4445), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4443), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(4443), - [sym_word] = ACTIONS(4445), - [sym_placeholder] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4445), - [anon_sym_DASH] = ACTIONS(4445), - [anon_sym_STAR] = ACTIONS(4445), - [anon_sym_SLASH] = ACTIONS(4445), - [anon_sym_CARET] = ACTIONS(4445), - [anon_sym__] = ACTIONS(4445), - [anon_sym_LT] = ACTIONS(4445), - [anon_sym_GT] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4445), - [anon_sym_PIPE] = ACTIONS(4445), - [anon_sym_COLON] = ACTIONS(4445), - [anon_sym_SQUOTE] = ACTIONS(4445), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4443), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4443), - [anon_sym_DOLLAR] = ACTIONS(4445), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4443), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4443), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4443), - [anon_sym_BSLASHbegin] = ACTIONS(4445), - [anon_sym_BSLASHusepackage] = ACTIONS(4445), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4445), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4445), - [anon_sym_BSLASHinclude] = ACTIONS(4445), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4445), - [anon_sym_BSLASHinput] = ACTIONS(4445), - [anon_sym_BSLASHsubfile] = ACTIONS(4445), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4445), - [anon_sym_BSLASHbibliography] = ACTIONS(4445), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4445), - [anon_sym_BSLASHincludesvg] = ACTIONS(4445), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4445), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4445), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4445), - [anon_sym_BSLASHimport] = ACTIONS(4445), - [anon_sym_BSLASHsubimport] = ACTIONS(4445), - [anon_sym_BSLASHinputfrom] = ACTIONS(4445), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4445), - [anon_sym_BSLASHincludefrom] = ACTIONS(4445), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4445), - [anon_sym_BSLASHcaption] = ACTIONS(4445), - [anon_sym_BSLASHcite] = ACTIONS(4445), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCite] = ACTIONS(4445), - [anon_sym_BSLASHnocite] = ACTIONS(4445), - [anon_sym_BSLASHcitet] = ACTIONS(4445), - [anon_sym_BSLASHcitep] = ACTIONS(4445), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteauthor] = ACTIONS(4445), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4445), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitetitle] = ACTIONS(4445), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteyear] = ACTIONS(4445), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4443), - [anon_sym_BSLASHcitedate] = ACTIONS(4445), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4443), - [anon_sym_BSLASHciteurl] = ACTIONS(4445), - [anon_sym_BSLASHfullcite] = ACTIONS(4445), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4445), - [anon_sym_BSLASHcitealt] = ACTIONS(4445), - [anon_sym_BSLASHcitealp] = ACTIONS(4445), - [anon_sym_BSLASHcitetext] = ACTIONS(4445), - [anon_sym_BSLASHparencite] = ACTIONS(4445), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHParencite] = ACTIONS(4445), - [anon_sym_BSLASHfootcite] = ACTIONS(4445), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4445), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4445), - [anon_sym_BSLASHtextcite] = ACTIONS(4445), - [anon_sym_BSLASHTextcite] = ACTIONS(4445), - [anon_sym_BSLASHsmartcite] = ACTIONS(4445), - [anon_sym_BSLASHSmartcite] = ACTIONS(4445), - [anon_sym_BSLASHsupercite] = ACTIONS(4445), - [anon_sym_BSLASHautocite] = ACTIONS(4445), - [anon_sym_BSLASHAutocite] = ACTIONS(4445), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4443), - [anon_sym_BSLASHvolcite] = ACTIONS(4445), - [anon_sym_BSLASHVolcite] = ACTIONS(4445), - [anon_sym_BSLASHpvolcite] = ACTIONS(4445), - [anon_sym_BSLASHPvolcite] = ACTIONS(4445), - [anon_sym_BSLASHfvolcite] = ACTIONS(4445), - [anon_sym_BSLASHftvolcite] = ACTIONS(4445), - [anon_sym_BSLASHsvolcite] = ACTIONS(4445), - [anon_sym_BSLASHSvolcite] = ACTIONS(4445), - [anon_sym_BSLASHtvolcite] = ACTIONS(4445), - [anon_sym_BSLASHTvolcite] = ACTIONS(4445), - [anon_sym_BSLASHavolcite] = ACTIONS(4445), - [anon_sym_BSLASHAvolcite] = ACTIONS(4445), - [anon_sym_BSLASHnotecite] = ACTIONS(4445), - [anon_sym_BSLASHNotecite] = ACTIONS(4445), - [anon_sym_BSLASHpnotecite] = ACTIONS(4445), - [anon_sym_BSLASHPnotecite] = ACTIONS(4445), - [anon_sym_BSLASHfnotecite] = ACTIONS(4445), - [anon_sym_BSLASHlabel] = ACTIONS(4445), - [anon_sym_BSLASHref] = ACTIONS(4445), - [anon_sym_BSLASHeqref] = ACTIONS(4445), - [anon_sym_BSLASHvref] = ACTIONS(4445), - [anon_sym_BSLASHVref] = ACTIONS(4445), - [anon_sym_BSLASHautoref] = ACTIONS(4445), - [anon_sym_BSLASHpageref] = ACTIONS(4445), - [anon_sym_BSLASHcref] = ACTIONS(4445), - [anon_sym_BSLASHCref] = ACTIONS(4445), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4443), - [anon_sym_BSLASHnamecref] = ACTIONS(4445), - [anon_sym_BSLASHnameCref] = ACTIONS(4445), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4445), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4445), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4445), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4445), - [anon_sym_BSLASHlabelcref] = ACTIONS(4445), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4445), - [anon_sym_BSLASHcrefrange] = ACTIONS(4445), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4443), - [anon_sym_BSLASHCrefrange] = ACTIONS(4445), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4443), - [anon_sym_BSLASHnewlabel] = ACTIONS(4445), - [anon_sym_BSLASHnewcommand] = ACTIONS(4445), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4445), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4445), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4443), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4445), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4443), - [anon_sym_BSLASHdef] = ACTIONS(4445), - [anon_sym_BSLASHlet] = ACTIONS(4445), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4445), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4445), - [anon_sym_BSLASHgls] = ACTIONS(4445), - [anon_sym_BSLASHGls] = ACTIONS(4445), - [anon_sym_BSLASHGLS] = ACTIONS(4445), - [anon_sym_BSLASHglspl] = ACTIONS(4445), - [anon_sym_BSLASHGlspl] = ACTIONS(4445), - [anon_sym_BSLASHGLSpl] = ACTIONS(4445), - [anon_sym_BSLASHglsdisp] = ACTIONS(4445), - [anon_sym_BSLASHglslink] = ACTIONS(4445), - [anon_sym_BSLASHglstext] = ACTIONS(4445), - [anon_sym_BSLASHGlstext] = ACTIONS(4445), - [anon_sym_BSLASHGLStext] = ACTIONS(4445), - [anon_sym_BSLASHglsfirst] = ACTIONS(4445), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4445), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4445), - [anon_sym_BSLASHglsplural] = ACTIONS(4445), - [anon_sym_BSLASHGlsplural] = ACTIONS(4445), - [anon_sym_BSLASHGLSplural] = ACTIONS(4445), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4445), - [anon_sym_BSLASHglsname] = ACTIONS(4445), - [anon_sym_BSLASHGlsname] = ACTIONS(4445), - [anon_sym_BSLASHGLSname] = ACTIONS(4445), - [anon_sym_BSLASHglssymbol] = ACTIONS(4445), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4445), - [anon_sym_BSLASHglsdesc] = ACTIONS(4445), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4445), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4445), - [anon_sym_BSLASHglsuseri] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4445), - [anon_sym_BSLASHglsuserii] = ACTIONS(4445), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4445), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4445), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4445), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4445), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4445), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4445), - [anon_sym_BSLASHglsuserv] = ACTIONS(4445), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4445), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4445), - [anon_sym_BSLASHglsuservi] = ACTIONS(4445), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4445), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4445), - [anon_sym_BSLASHnewacronym] = ACTIONS(4445), - [anon_sym_BSLASHacrshort] = ACTIONS(4445), - [anon_sym_BSLASHAcrshort] = ACTIONS(4445), - [anon_sym_BSLASHACRshort] = ACTIONS(4445), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4445), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4445), - [anon_sym_BSLASHacrlong] = ACTIONS(4445), - [anon_sym_BSLASHAcrlong] = ACTIONS(4445), - [anon_sym_BSLASHACRlong] = ACTIONS(4445), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4445), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4445), - [anon_sym_BSLASHacrfull] = ACTIONS(4445), - [anon_sym_BSLASHAcrfull] = ACTIONS(4445), - [anon_sym_BSLASHACRfull] = ACTIONS(4445), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4445), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4445), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4445), - [anon_sym_BSLASHacs] = ACTIONS(4445), - [anon_sym_BSLASHAcs] = ACTIONS(4445), - [anon_sym_BSLASHacsp] = ACTIONS(4445), - [anon_sym_BSLASHAcsp] = ACTIONS(4445), - [anon_sym_BSLASHacl] = ACTIONS(4445), - [anon_sym_BSLASHAcl] = ACTIONS(4445), - [anon_sym_BSLASHaclp] = ACTIONS(4445), - [anon_sym_BSLASHAclp] = ACTIONS(4445), - [anon_sym_BSLASHacf] = ACTIONS(4445), - [anon_sym_BSLASHAcf] = ACTIONS(4445), - [anon_sym_BSLASHacfp] = ACTIONS(4445), - [anon_sym_BSLASHAcfp] = ACTIONS(4445), - [anon_sym_BSLASHac] = ACTIONS(4445), - [anon_sym_BSLASHAc] = ACTIONS(4445), - [anon_sym_BSLASHacp] = ACTIONS(4445), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4445), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4445), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4445), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4445), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4445), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4445), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4445), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4445), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4445), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4445), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4445), - [anon_sym_BSLASHcolor] = ACTIONS(4445), - [anon_sym_BSLASHcolorbox] = ACTIONS(4445), - [anon_sym_BSLASHtextcolor] = ACTIONS(4445), - [anon_sym_BSLASHpagecolor] = ACTIONS(4445), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4445), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4445), + [420] = { + [sym_curly_group] = STATE(1162), + [sym_mixed_group] = STATE(1162), + [aux_sym_generic_command_repeat1] = STATE(455), + [sym_command_name] = ACTIONS(4565), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4639), + [anon_sym_RPAREN] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4639), + [anon_sym_RBRACK] = ACTIONS(4563), + [anon_sym_COMMA] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_BSLASHpart] = ACTIONS(4565), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddpart] = ACTIONS(4565), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4563), + [anon_sym_BSLASHchapter] = ACTIONS(4565), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddchap] = ACTIONS(4565), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsection] = ACTIONS(4565), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddsec] = ACTIONS(4565), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubsection] = ACTIONS(4565), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4565), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHparagraph] = ACTIONS(4565), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4565), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4563), + [anon_sym_BSLASHitem] = ACTIONS(4565), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(4565), + [sym_placeholder] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4565), + [anon_sym_DASH] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_SLASH] = ACTIONS(4565), + [anon_sym_CARET] = ACTIONS(4565), + [anon_sym__] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4565), + [anon_sym_GT] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_PIPE] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4565), + [anon_sym_SQUOTE] = ACTIONS(4565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4563), + [anon_sym_DOLLAR] = ACTIONS(4565), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), + [anon_sym_BSLASHbegin] = ACTIONS(4565), + [anon_sym_BSLASHusepackage] = ACTIONS(4565), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), + [anon_sym_BSLASHinclude] = ACTIONS(4565), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), + [anon_sym_BSLASHinput] = ACTIONS(4565), + [anon_sym_BSLASHsubfile] = ACTIONS(4565), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), + [anon_sym_BSLASHbibliography] = ACTIONS(4565), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), + [anon_sym_BSLASHincludesvg] = ACTIONS(4565), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), + [anon_sym_BSLASHimport] = ACTIONS(4565), + [anon_sym_BSLASHsubimport] = ACTIONS(4565), + [anon_sym_BSLASHinputfrom] = ACTIONS(4565), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), + [anon_sym_BSLASHincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHcaption] = ACTIONS(4565), + [anon_sym_BSLASHcite] = ACTIONS(4565), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCite] = ACTIONS(4565), + [anon_sym_BSLASHnocite] = ACTIONS(4565), + [anon_sym_BSLASHcitet] = ACTIONS(4565), + [anon_sym_BSLASHcitep] = ACTIONS(4565), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteauthor] = ACTIONS(4565), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitetitle] = ACTIONS(4565), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteyear] = ACTIONS(4565), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitedate] = ACTIONS(4565), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteurl] = ACTIONS(4565), + [anon_sym_BSLASHfullcite] = ACTIONS(4565), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), + [anon_sym_BSLASHcitealt] = ACTIONS(4565), + [anon_sym_BSLASHcitealp] = ACTIONS(4565), + [anon_sym_BSLASHcitetext] = ACTIONS(4565), + [anon_sym_BSLASHparencite] = ACTIONS(4565), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHParencite] = ACTIONS(4565), + [anon_sym_BSLASHfootcite] = ACTIONS(4565), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), + [anon_sym_BSLASHtextcite] = ACTIONS(4565), + [anon_sym_BSLASHTextcite] = ACTIONS(4565), + [anon_sym_BSLASHsmartcite] = ACTIONS(4565), + [anon_sym_BSLASHSmartcite] = ACTIONS(4565), + [anon_sym_BSLASHsupercite] = ACTIONS(4565), + [anon_sym_BSLASHautocite] = ACTIONS(4565), + [anon_sym_BSLASHAutocite] = ACTIONS(4565), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHvolcite] = ACTIONS(4565), + [anon_sym_BSLASHVolcite] = ACTIONS(4565), + [anon_sym_BSLASHpvolcite] = ACTIONS(4565), + [anon_sym_BSLASHPvolcite] = ACTIONS(4565), + [anon_sym_BSLASHfvolcite] = ACTIONS(4565), + [anon_sym_BSLASHftvolcite] = ACTIONS(4565), + [anon_sym_BSLASHsvolcite] = ACTIONS(4565), + [anon_sym_BSLASHSvolcite] = ACTIONS(4565), + [anon_sym_BSLASHtvolcite] = ACTIONS(4565), + [anon_sym_BSLASHTvolcite] = ACTIONS(4565), + [anon_sym_BSLASHavolcite] = ACTIONS(4565), + [anon_sym_BSLASHAvolcite] = ACTIONS(4565), + [anon_sym_BSLASHnotecite] = ACTIONS(4565), + [anon_sym_BSLASHNotecite] = ACTIONS(4565), + [anon_sym_BSLASHpnotecite] = ACTIONS(4565), + [anon_sym_BSLASHPnotecite] = ACTIONS(4565), + [anon_sym_BSLASHfnotecite] = ACTIONS(4565), + [anon_sym_BSLASHlabel] = ACTIONS(4565), + [anon_sym_BSLASHref] = ACTIONS(4565), + [anon_sym_BSLASHeqref] = ACTIONS(4565), + [anon_sym_BSLASHvref] = ACTIONS(4565), + [anon_sym_BSLASHVref] = ACTIONS(4565), + [anon_sym_BSLASHautoref] = ACTIONS(4565), + [anon_sym_BSLASHpageref] = ACTIONS(4565), + [anon_sym_BSLASHcref] = ACTIONS(4565), + [anon_sym_BSLASHCref] = ACTIONS(4565), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnameCref] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHlabelcref] = ACTIONS(4565), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCrefrange] = ACTIONS(4565), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnewlabel] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), + [anon_sym_BSLASHdef] = ACTIONS(4565), + [anon_sym_BSLASHlet] = ACTIONS(4565), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), + [anon_sym_BSLASHgls] = ACTIONS(4565), + [anon_sym_BSLASHGls] = ACTIONS(4565), + [anon_sym_BSLASHGLS] = ACTIONS(4565), + [anon_sym_BSLASHglspl] = ACTIONS(4565), + [anon_sym_BSLASHGlspl] = ACTIONS(4565), + [anon_sym_BSLASHGLSpl] = ACTIONS(4565), + [anon_sym_BSLASHglsdisp] = ACTIONS(4565), + [anon_sym_BSLASHglslink] = ACTIONS(4565), + [anon_sym_BSLASHglstext] = ACTIONS(4565), + [anon_sym_BSLASHGlstext] = ACTIONS(4565), + [anon_sym_BSLASHGLStext] = ACTIONS(4565), + [anon_sym_BSLASHglsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), + [anon_sym_BSLASHglsplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSplural] = ACTIONS(4565), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHglsname] = ACTIONS(4565), + [anon_sym_BSLASHGlsname] = ACTIONS(4565), + [anon_sym_BSLASHGLSname] = ACTIONS(4565), + [anon_sym_BSLASHglssymbol] = ACTIONS(4565), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), + [anon_sym_BSLASHglsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), + [anon_sym_BSLASHglsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), + [anon_sym_BSLASHglsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), + [anon_sym_BSLASHglsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), + [anon_sym_BSLASHglsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), + [anon_sym_BSLASHnewacronym] = ACTIONS(4565), + [anon_sym_BSLASHacrshort] = ACTIONS(4565), + [anon_sym_BSLASHAcrshort] = ACTIONS(4565), + [anon_sym_BSLASHACRshort] = ACTIONS(4565), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), + [anon_sym_BSLASHacrlong] = ACTIONS(4565), + [anon_sym_BSLASHAcrlong] = ACTIONS(4565), + [anon_sym_BSLASHACRlong] = ACTIONS(4565), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), + [anon_sym_BSLASHacrfull] = ACTIONS(4565), + [anon_sym_BSLASHAcrfull] = ACTIONS(4565), + [anon_sym_BSLASHACRfull] = ACTIONS(4565), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), + [anon_sym_BSLASHacs] = ACTIONS(4565), + [anon_sym_BSLASHAcs] = ACTIONS(4565), + [anon_sym_BSLASHacsp] = ACTIONS(4565), + [anon_sym_BSLASHAcsp] = ACTIONS(4565), + [anon_sym_BSLASHacl] = ACTIONS(4565), + [anon_sym_BSLASHAcl] = ACTIONS(4565), + [anon_sym_BSLASHaclp] = ACTIONS(4565), + [anon_sym_BSLASHAclp] = ACTIONS(4565), + [anon_sym_BSLASHacf] = ACTIONS(4565), + [anon_sym_BSLASHAcf] = ACTIONS(4565), + [anon_sym_BSLASHacfp] = ACTIONS(4565), + [anon_sym_BSLASHAcfp] = ACTIONS(4565), + [anon_sym_BSLASHac] = ACTIONS(4565), + [anon_sym_BSLASHAc] = ACTIONS(4565), + [anon_sym_BSLASHacp] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), + [anon_sym_BSLASHcolor] = ACTIONS(4565), + [anon_sym_BSLASHcolorbox] = ACTIONS(4565), + [anon_sym_BSLASHtextcolor] = ACTIONS(4565), + [anon_sym_BSLASHpagecolor] = ACTIONS(4565), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), + [anon_sym_BSLASHtext] = ACTIONS(4565), + [anon_sym_BSLASHintertext] = ACTIONS(4565), + [anon_sym_shortintertext] = ACTIONS(4565), }, - [607] = { + [421] = { [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(4395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_BSLASHpart] = ACTIONS(4395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddpart] = ACTIONS(4395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHchapter] = ACTIONS(4395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddchap] = ACTIONS(4395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsection] = ACTIONS(4395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddsec] = ACTIONS(4395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHparagraph] = ACTIONS(4395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4395), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(4393), - [sym_word] = ACTIONS(4395), - [sym_placeholder] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym__] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_PIPE] = ACTIONS(4395), - [anon_sym_COLON] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4393), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4393), - [anon_sym_BSLASHbegin] = ACTIONS(4395), - [anon_sym_BSLASHusepackage] = ACTIONS(4395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4395), - [anon_sym_BSLASHinclude] = ACTIONS(4395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4395), - [anon_sym_BSLASHinput] = ACTIONS(4395), - [anon_sym_BSLASHsubfile] = ACTIONS(4395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4395), - [anon_sym_BSLASHbibliography] = ACTIONS(4395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4395), - [anon_sym_BSLASHincludesvg] = ACTIONS(4395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4395), - [anon_sym_BSLASHsubimport] = ACTIONS(4395), - [anon_sym_BSLASHinputfrom] = ACTIONS(4395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4395), - [anon_sym_BSLASHincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHcaption] = ACTIONS(4395), - [anon_sym_BSLASHcite] = ACTIONS(4395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCite] = ACTIONS(4395), - [anon_sym_BSLASHnocite] = ACTIONS(4395), - [anon_sym_BSLASHcitet] = ACTIONS(4395), - [anon_sym_BSLASHcitep] = ACTIONS(4395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteauthor] = ACTIONS(4395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitetitle] = ACTIONS(4395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteyear] = ACTIONS(4395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitedate] = ACTIONS(4395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteurl] = ACTIONS(4395), - [anon_sym_BSLASHfullcite] = ACTIONS(4395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4395), - [anon_sym_BSLASHcitealt] = ACTIONS(4395), - [anon_sym_BSLASHcitealp] = ACTIONS(4395), - [anon_sym_BSLASHcitetext] = ACTIONS(4395), - [anon_sym_BSLASHparencite] = ACTIONS(4395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHParencite] = ACTIONS(4395), - [anon_sym_BSLASHfootcite] = ACTIONS(4395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4395), - [anon_sym_BSLASHtextcite] = ACTIONS(4395), - [anon_sym_BSLASHTextcite] = ACTIONS(4395), - [anon_sym_BSLASHsmartcite] = ACTIONS(4395), - [anon_sym_BSLASHSmartcite] = ACTIONS(4395), - [anon_sym_BSLASHsupercite] = ACTIONS(4395), - [anon_sym_BSLASHautocite] = ACTIONS(4395), - [anon_sym_BSLASHAutocite] = ACTIONS(4395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHvolcite] = ACTIONS(4395), - [anon_sym_BSLASHVolcite] = ACTIONS(4395), - [anon_sym_BSLASHpvolcite] = ACTIONS(4395), - [anon_sym_BSLASHPvolcite] = ACTIONS(4395), - [anon_sym_BSLASHfvolcite] = ACTIONS(4395), - [anon_sym_BSLASHftvolcite] = ACTIONS(4395), - [anon_sym_BSLASHsvolcite] = ACTIONS(4395), - [anon_sym_BSLASHSvolcite] = ACTIONS(4395), - [anon_sym_BSLASHtvolcite] = ACTIONS(4395), - [anon_sym_BSLASHTvolcite] = ACTIONS(4395), - [anon_sym_BSLASHavolcite] = ACTIONS(4395), - [anon_sym_BSLASHAvolcite] = ACTIONS(4395), - [anon_sym_BSLASHnotecite] = ACTIONS(4395), - [anon_sym_BSLASHNotecite] = ACTIONS(4395), - [anon_sym_BSLASHpnotecite] = ACTIONS(4395), - [anon_sym_BSLASHPnotecite] = ACTIONS(4395), - [anon_sym_BSLASHfnotecite] = ACTIONS(4395), - [anon_sym_BSLASHlabel] = ACTIONS(4395), - [anon_sym_BSLASHref] = ACTIONS(4395), - [anon_sym_BSLASHeqref] = ACTIONS(4395), - [anon_sym_BSLASHvref] = ACTIONS(4395), - [anon_sym_BSLASHVref] = ACTIONS(4395), - [anon_sym_BSLASHautoref] = ACTIONS(4395), - [anon_sym_BSLASHpageref] = ACTIONS(4395), - [anon_sym_BSLASHcref] = ACTIONS(4395), - [anon_sym_BSLASHCref] = ACTIONS(4395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnameCref] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHlabelcref] = ACTIONS(4395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCrefrange] = ACTIONS(4395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnewlabel] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4393), - [anon_sym_BSLASHdef] = ACTIONS(4395), - [anon_sym_BSLASHlet] = ACTIONS(4395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4395), - [anon_sym_BSLASHgls] = ACTIONS(4395), - [anon_sym_BSLASHGls] = ACTIONS(4395), - [anon_sym_BSLASHGLS] = ACTIONS(4395), - [anon_sym_BSLASHglspl] = ACTIONS(4395), - [anon_sym_BSLASHGlspl] = ACTIONS(4395), - [anon_sym_BSLASHGLSpl] = ACTIONS(4395), - [anon_sym_BSLASHglsdisp] = ACTIONS(4395), - [anon_sym_BSLASHglslink] = ACTIONS(4395), - [anon_sym_BSLASHglstext] = ACTIONS(4395), - [anon_sym_BSLASHGlstext] = ACTIONS(4395), - [anon_sym_BSLASHGLStext] = ACTIONS(4395), - [anon_sym_BSLASHglsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4395), - [anon_sym_BSLASHglsplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSplural] = ACTIONS(4395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHglsname] = ACTIONS(4395), - [anon_sym_BSLASHGlsname] = ACTIONS(4395), - [anon_sym_BSLASHGLSname] = ACTIONS(4395), - [anon_sym_BSLASHglssymbol] = ACTIONS(4395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4395), - [anon_sym_BSLASHglsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4395), - [anon_sym_BSLASHglsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4395), - [anon_sym_BSLASHglsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4395), - [anon_sym_BSLASHglsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4395), - [anon_sym_BSLASHglsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4395), - [anon_sym_BSLASHnewacronym] = ACTIONS(4395), - [anon_sym_BSLASHacrshort] = ACTIONS(4395), - [anon_sym_BSLASHAcrshort] = ACTIONS(4395), - [anon_sym_BSLASHACRshort] = ACTIONS(4395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4395), - [anon_sym_BSLASHacrlong] = ACTIONS(4395), - [anon_sym_BSLASHAcrlong] = ACTIONS(4395), - [anon_sym_BSLASHACRlong] = ACTIONS(4395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4395), - [anon_sym_BSLASHacrfull] = ACTIONS(4395), - [anon_sym_BSLASHAcrfull] = ACTIONS(4395), - [anon_sym_BSLASHACRfull] = ACTIONS(4395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4395), - [anon_sym_BSLASHacs] = ACTIONS(4395), - [anon_sym_BSLASHAcs] = ACTIONS(4395), - [anon_sym_BSLASHacsp] = ACTIONS(4395), - [anon_sym_BSLASHAcsp] = ACTIONS(4395), - [anon_sym_BSLASHacl] = ACTIONS(4395), - [anon_sym_BSLASHAcl] = ACTIONS(4395), - [anon_sym_BSLASHaclp] = ACTIONS(4395), - [anon_sym_BSLASHAclp] = ACTIONS(4395), - [anon_sym_BSLASHacf] = ACTIONS(4395), - [anon_sym_BSLASHAcf] = ACTIONS(4395), - [anon_sym_BSLASHacfp] = ACTIONS(4395), - [anon_sym_BSLASHAcfp] = ACTIONS(4395), - [anon_sym_BSLASHac] = ACTIONS(4395), - [anon_sym_BSLASHAc] = ACTIONS(4395), - [anon_sym_BSLASHacp] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4395), - [anon_sym_BSLASHcolor] = ACTIONS(4395), - [anon_sym_BSLASHcolorbox] = ACTIONS(4395), - [anon_sym_BSLASHtextcolor] = ACTIONS(4395), - [anon_sym_BSLASHpagecolor] = ACTIONS(4395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4395), - }, - [608] = { - [sym_curly_group] = STATE(961), - [sym_mixed_group] = STATE(961), - [aux_sym_generic_command_repeat1] = STATE(437), - [sym_command_name] = ACTIONS(4465), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4465), - [anon_sym_LPAREN] = ACTIONS(4745), - [anon_sym_RPAREN] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_RBRACK] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_EQ] = ACTIONS(4463), - [anon_sym_BSLASHpart] = ACTIONS(4465), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddpart] = ACTIONS(4465), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4463), - [anon_sym_BSLASHchapter] = ACTIONS(4465), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddchap] = ACTIONS(4465), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsection] = ACTIONS(4465), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHaddsec] = ACTIONS(4465), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubsection] = ACTIONS(4465), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4465), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4463), - [anon_sym_BSLASHparagraph] = ACTIONS(4465), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4463), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4465), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4463), - [anon_sym_BSLASHitem] = ACTIONS(4465), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4463), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(4465), - [sym_placeholder] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_CARET] = ACTIONS(4465), - [anon_sym__] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_PIPE] = ACTIONS(4465), - [anon_sym_COLON] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4465), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4463), - [anon_sym_DOLLAR] = ACTIONS(4465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4463), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4463), - [anon_sym_BSLASHbegin] = ACTIONS(4465), - [anon_sym_BSLASHusepackage] = ACTIONS(4465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4465), - [anon_sym_BSLASHinclude] = ACTIONS(4465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4465), - [anon_sym_BSLASHinput] = ACTIONS(4465), - [anon_sym_BSLASHsubfile] = ACTIONS(4465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4465), - [anon_sym_BSLASHbibliography] = ACTIONS(4465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4465), - [anon_sym_BSLASHincludesvg] = ACTIONS(4465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4465), - [anon_sym_BSLASHimport] = ACTIONS(4465), - [anon_sym_BSLASHsubimport] = ACTIONS(4465), - [anon_sym_BSLASHinputfrom] = ACTIONS(4465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4465), - [anon_sym_BSLASHincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHcaption] = ACTIONS(4465), - [anon_sym_BSLASHcite] = ACTIONS(4465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCite] = ACTIONS(4465), - [anon_sym_BSLASHnocite] = ACTIONS(4465), - [anon_sym_BSLASHcitet] = ACTIONS(4465), - [anon_sym_BSLASHcitep] = ACTIONS(4465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteauthor] = ACTIONS(4465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitetitle] = ACTIONS(4465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteyear] = ACTIONS(4465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitedate] = ACTIONS(4465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteurl] = ACTIONS(4465), - [anon_sym_BSLASHfullcite] = ACTIONS(4465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4465), - [anon_sym_BSLASHcitealt] = ACTIONS(4465), - [anon_sym_BSLASHcitealp] = ACTIONS(4465), - [anon_sym_BSLASHcitetext] = ACTIONS(4465), - [anon_sym_BSLASHparencite] = ACTIONS(4465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHParencite] = ACTIONS(4465), - [anon_sym_BSLASHfootcite] = ACTIONS(4465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4465), - [anon_sym_BSLASHtextcite] = ACTIONS(4465), - [anon_sym_BSLASHTextcite] = ACTIONS(4465), - [anon_sym_BSLASHsmartcite] = ACTIONS(4465), - [anon_sym_BSLASHSmartcite] = ACTIONS(4465), - [anon_sym_BSLASHsupercite] = ACTIONS(4465), - [anon_sym_BSLASHautocite] = ACTIONS(4465), - [anon_sym_BSLASHAutocite] = ACTIONS(4465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHvolcite] = ACTIONS(4465), - [anon_sym_BSLASHVolcite] = ACTIONS(4465), - [anon_sym_BSLASHpvolcite] = ACTIONS(4465), - [anon_sym_BSLASHPvolcite] = ACTIONS(4465), - [anon_sym_BSLASHfvolcite] = ACTIONS(4465), - [anon_sym_BSLASHftvolcite] = ACTIONS(4465), - [anon_sym_BSLASHsvolcite] = ACTIONS(4465), - [anon_sym_BSLASHSvolcite] = ACTIONS(4465), - [anon_sym_BSLASHtvolcite] = ACTIONS(4465), - [anon_sym_BSLASHTvolcite] = ACTIONS(4465), - [anon_sym_BSLASHavolcite] = ACTIONS(4465), - [anon_sym_BSLASHAvolcite] = ACTIONS(4465), - [anon_sym_BSLASHnotecite] = ACTIONS(4465), - [anon_sym_BSLASHNotecite] = ACTIONS(4465), - [anon_sym_BSLASHpnotecite] = ACTIONS(4465), - [anon_sym_BSLASHPnotecite] = ACTIONS(4465), - [anon_sym_BSLASHfnotecite] = ACTIONS(4465), - [anon_sym_BSLASHlabel] = ACTIONS(4465), - [anon_sym_BSLASHref] = ACTIONS(4465), - [anon_sym_BSLASHeqref] = ACTIONS(4465), - [anon_sym_BSLASHvref] = ACTIONS(4465), - [anon_sym_BSLASHVref] = ACTIONS(4465), - [anon_sym_BSLASHautoref] = ACTIONS(4465), - [anon_sym_BSLASHpageref] = ACTIONS(4465), - [anon_sym_BSLASHcref] = ACTIONS(4465), - [anon_sym_BSLASHCref] = ACTIONS(4465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnameCref] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHlabelcref] = ACTIONS(4465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCrefrange] = ACTIONS(4465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnewlabel] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4463), - [anon_sym_BSLASHdef] = ACTIONS(4465), - [anon_sym_BSLASHlet] = ACTIONS(4465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4465), - [anon_sym_BSLASHgls] = ACTIONS(4465), - [anon_sym_BSLASHGls] = ACTIONS(4465), - [anon_sym_BSLASHGLS] = ACTIONS(4465), - [anon_sym_BSLASHglspl] = ACTIONS(4465), - [anon_sym_BSLASHGlspl] = ACTIONS(4465), - [anon_sym_BSLASHGLSpl] = ACTIONS(4465), - [anon_sym_BSLASHglsdisp] = ACTIONS(4465), - [anon_sym_BSLASHglslink] = ACTIONS(4465), - [anon_sym_BSLASHglstext] = ACTIONS(4465), - [anon_sym_BSLASHGlstext] = ACTIONS(4465), - [anon_sym_BSLASHGLStext] = ACTIONS(4465), - [anon_sym_BSLASHglsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4465), - [anon_sym_BSLASHglsplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSplural] = ACTIONS(4465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHglsname] = ACTIONS(4465), - [anon_sym_BSLASHGlsname] = ACTIONS(4465), - [anon_sym_BSLASHGLSname] = ACTIONS(4465), - [anon_sym_BSLASHglssymbol] = ACTIONS(4465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4465), - [anon_sym_BSLASHglsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4465), - [anon_sym_BSLASHglsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4465), - [anon_sym_BSLASHglsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4465), - [anon_sym_BSLASHglsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4465), - [anon_sym_BSLASHglsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4465), - [anon_sym_BSLASHnewacronym] = ACTIONS(4465), - [anon_sym_BSLASHacrshort] = ACTIONS(4465), - [anon_sym_BSLASHAcrshort] = ACTIONS(4465), - [anon_sym_BSLASHACRshort] = ACTIONS(4465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4465), - [anon_sym_BSLASHacrlong] = ACTIONS(4465), - [anon_sym_BSLASHAcrlong] = ACTIONS(4465), - [anon_sym_BSLASHACRlong] = ACTIONS(4465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4465), - [anon_sym_BSLASHacrfull] = ACTIONS(4465), - [anon_sym_BSLASHAcrfull] = ACTIONS(4465), - [anon_sym_BSLASHACRfull] = ACTIONS(4465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4465), - [anon_sym_BSLASHacs] = ACTIONS(4465), - [anon_sym_BSLASHAcs] = ACTIONS(4465), - [anon_sym_BSLASHacsp] = ACTIONS(4465), - [anon_sym_BSLASHAcsp] = ACTIONS(4465), - [anon_sym_BSLASHacl] = ACTIONS(4465), - [anon_sym_BSLASHAcl] = ACTIONS(4465), - [anon_sym_BSLASHaclp] = ACTIONS(4465), - [anon_sym_BSLASHAclp] = ACTIONS(4465), - [anon_sym_BSLASHacf] = ACTIONS(4465), - [anon_sym_BSLASHAcf] = ACTIONS(4465), - [anon_sym_BSLASHacfp] = ACTIONS(4465), - [anon_sym_BSLASHAcfp] = ACTIONS(4465), - [anon_sym_BSLASHac] = ACTIONS(4465), - [anon_sym_BSLASHAc] = ACTIONS(4465), - [anon_sym_BSLASHacp] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4465), - [anon_sym_BSLASHcolor] = ACTIONS(4465), - [anon_sym_BSLASHcolorbox] = ACTIONS(4465), - [anon_sym_BSLASHtextcolor] = ACTIONS(4465), - [anon_sym_BSLASHpagecolor] = ACTIONS(4465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4465), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHparagraph] = ACTIONS(4479), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHend] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [609] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(4395), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4393), - [anon_sym_RPAREN] = ACTIONS(4393), - [anon_sym_LBRACK] = ACTIONS(4393), - [anon_sym_RBRACK] = ACTIONS(4393), - [anon_sym_COMMA] = ACTIONS(4393), - [anon_sym_EQ] = ACTIONS(4393), - [anon_sym_BSLASHpart] = ACTIONS(4395), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddpart] = ACTIONS(4395), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4393), - [anon_sym_BSLASHchapter] = ACTIONS(4395), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddchap] = ACTIONS(4395), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsection] = ACTIONS(4395), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHaddsec] = ACTIONS(4395), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4395), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4393), - [anon_sym_BSLASHparagraph] = ACTIONS(4395), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4393), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(4395), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4393), - [anon_sym_LBRACE] = ACTIONS(4393), - [sym_word] = ACTIONS(4395), - [sym_placeholder] = ACTIONS(4393), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_SLASH] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym__] = ACTIONS(4395), - [anon_sym_LT] = ACTIONS(4395), - [anon_sym_GT] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_PIPE] = ACTIONS(4395), - [anon_sym_COLON] = ACTIONS(4395), - [anon_sym_SQUOTE] = ACTIONS(4395), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4393), - [anon_sym_DOLLAR] = ACTIONS(4395), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4393), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4393), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4393), - [anon_sym_BSLASHbegin] = ACTIONS(4395), - [anon_sym_BSLASHusepackage] = ACTIONS(4395), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4395), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4395), - [anon_sym_BSLASHinclude] = ACTIONS(4395), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4395), - [anon_sym_BSLASHinput] = ACTIONS(4395), - [anon_sym_BSLASHsubfile] = ACTIONS(4395), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4395), - [anon_sym_BSLASHbibliography] = ACTIONS(4395), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4395), - [anon_sym_BSLASHincludesvg] = ACTIONS(4395), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4395), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), - [anon_sym_BSLASHimport] = ACTIONS(4395), - [anon_sym_BSLASHsubimport] = ACTIONS(4395), - [anon_sym_BSLASHinputfrom] = ACTIONS(4395), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4395), - [anon_sym_BSLASHincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4395), - [anon_sym_BSLASHcaption] = ACTIONS(4395), - [anon_sym_BSLASHcite] = ACTIONS(4395), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCite] = ACTIONS(4395), - [anon_sym_BSLASHnocite] = ACTIONS(4395), - [anon_sym_BSLASHcitet] = ACTIONS(4395), - [anon_sym_BSLASHcitep] = ACTIONS(4395), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteauthor] = ACTIONS(4395), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4395), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitetitle] = ACTIONS(4395), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteyear] = ACTIONS(4395), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4393), - [anon_sym_BSLASHcitedate] = ACTIONS(4395), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4393), - [anon_sym_BSLASHciteurl] = ACTIONS(4395), - [anon_sym_BSLASHfullcite] = ACTIONS(4395), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4395), - [anon_sym_BSLASHcitealt] = ACTIONS(4395), - [anon_sym_BSLASHcitealp] = ACTIONS(4395), - [anon_sym_BSLASHcitetext] = ACTIONS(4395), - [anon_sym_BSLASHparencite] = ACTIONS(4395), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHParencite] = ACTIONS(4395), - [anon_sym_BSLASHfootcite] = ACTIONS(4395), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4395), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4395), - [anon_sym_BSLASHtextcite] = ACTIONS(4395), - [anon_sym_BSLASHTextcite] = ACTIONS(4395), - [anon_sym_BSLASHsmartcite] = ACTIONS(4395), - [anon_sym_BSLASHSmartcite] = ACTIONS(4395), - [anon_sym_BSLASHsupercite] = ACTIONS(4395), - [anon_sym_BSLASHautocite] = ACTIONS(4395), - [anon_sym_BSLASHAutocite] = ACTIONS(4395), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4393), - [anon_sym_BSLASHvolcite] = ACTIONS(4395), - [anon_sym_BSLASHVolcite] = ACTIONS(4395), - [anon_sym_BSLASHpvolcite] = ACTIONS(4395), - [anon_sym_BSLASHPvolcite] = ACTIONS(4395), - [anon_sym_BSLASHfvolcite] = ACTIONS(4395), - [anon_sym_BSLASHftvolcite] = ACTIONS(4395), - [anon_sym_BSLASHsvolcite] = ACTIONS(4395), - [anon_sym_BSLASHSvolcite] = ACTIONS(4395), - [anon_sym_BSLASHtvolcite] = ACTIONS(4395), - [anon_sym_BSLASHTvolcite] = ACTIONS(4395), - [anon_sym_BSLASHavolcite] = ACTIONS(4395), - [anon_sym_BSLASHAvolcite] = ACTIONS(4395), - [anon_sym_BSLASHnotecite] = ACTIONS(4395), - [anon_sym_BSLASHNotecite] = ACTIONS(4395), - [anon_sym_BSLASHpnotecite] = ACTIONS(4395), - [anon_sym_BSLASHPnotecite] = ACTIONS(4395), - [anon_sym_BSLASHfnotecite] = ACTIONS(4395), - [anon_sym_BSLASHlabel] = ACTIONS(4395), - [anon_sym_BSLASHref] = ACTIONS(4395), - [anon_sym_BSLASHeqref] = ACTIONS(4395), - [anon_sym_BSLASHvref] = ACTIONS(4395), - [anon_sym_BSLASHVref] = ACTIONS(4395), - [anon_sym_BSLASHautoref] = ACTIONS(4395), - [anon_sym_BSLASHpageref] = ACTIONS(4395), - [anon_sym_BSLASHcref] = ACTIONS(4395), - [anon_sym_BSLASHCref] = ACTIONS(4395), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnameCref] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4395), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4395), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4395), - [anon_sym_BSLASHlabelcref] = ACTIONS(4395), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange] = ACTIONS(4395), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHCrefrange] = ACTIONS(4395), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4393), - [anon_sym_BSLASHnewlabel] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand] = ACTIONS(4395), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4395), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4395), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4393), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4395), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4393), - [anon_sym_BSLASHdef] = ACTIONS(4395), - [anon_sym_BSLASHlet] = ACTIONS(4395), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4395), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4395), - [anon_sym_BSLASHgls] = ACTIONS(4395), - [anon_sym_BSLASHGls] = ACTIONS(4395), - [anon_sym_BSLASHGLS] = ACTIONS(4395), - [anon_sym_BSLASHglspl] = ACTIONS(4395), - [anon_sym_BSLASHGlspl] = ACTIONS(4395), - [anon_sym_BSLASHGLSpl] = ACTIONS(4395), - [anon_sym_BSLASHglsdisp] = ACTIONS(4395), - [anon_sym_BSLASHglslink] = ACTIONS(4395), - [anon_sym_BSLASHglstext] = ACTIONS(4395), - [anon_sym_BSLASHGlstext] = ACTIONS(4395), - [anon_sym_BSLASHGLStext] = ACTIONS(4395), - [anon_sym_BSLASHglsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4395), - [anon_sym_BSLASHglsplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSplural] = ACTIONS(4395), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4395), - [anon_sym_BSLASHglsname] = ACTIONS(4395), - [anon_sym_BSLASHGlsname] = ACTIONS(4395), - [anon_sym_BSLASHGLSname] = ACTIONS(4395), - [anon_sym_BSLASHglssymbol] = ACTIONS(4395), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4395), - [anon_sym_BSLASHglsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4395), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4395), - [anon_sym_BSLASHglsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4395), - [anon_sym_BSLASHglsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4395), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4395), - [anon_sym_BSLASHglsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4395), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4395), - [anon_sym_BSLASHglsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4395), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4395), - [anon_sym_BSLASHnewacronym] = ACTIONS(4395), - [anon_sym_BSLASHacrshort] = ACTIONS(4395), - [anon_sym_BSLASHAcrshort] = ACTIONS(4395), - [anon_sym_BSLASHACRshort] = ACTIONS(4395), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4395), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4395), - [anon_sym_BSLASHacrlong] = ACTIONS(4395), - [anon_sym_BSLASHAcrlong] = ACTIONS(4395), - [anon_sym_BSLASHACRlong] = ACTIONS(4395), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4395), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4395), - [anon_sym_BSLASHacrfull] = ACTIONS(4395), - [anon_sym_BSLASHAcrfull] = ACTIONS(4395), - [anon_sym_BSLASHACRfull] = ACTIONS(4395), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4395), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4395), - [anon_sym_BSLASHacs] = ACTIONS(4395), - [anon_sym_BSLASHAcs] = ACTIONS(4395), - [anon_sym_BSLASHacsp] = ACTIONS(4395), - [anon_sym_BSLASHAcsp] = ACTIONS(4395), - [anon_sym_BSLASHacl] = ACTIONS(4395), - [anon_sym_BSLASHAcl] = ACTIONS(4395), - [anon_sym_BSLASHaclp] = ACTIONS(4395), - [anon_sym_BSLASHAclp] = ACTIONS(4395), - [anon_sym_BSLASHacf] = ACTIONS(4395), - [anon_sym_BSLASHAcf] = ACTIONS(4395), - [anon_sym_BSLASHacfp] = ACTIONS(4395), - [anon_sym_BSLASHAcfp] = ACTIONS(4395), - [anon_sym_BSLASHac] = ACTIONS(4395), - [anon_sym_BSLASHAc] = ACTIONS(4395), - [anon_sym_BSLASHacp] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4395), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4395), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4395), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4395), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4395), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4395), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4395), - [anon_sym_BSLASHcolor] = ACTIONS(4395), - [anon_sym_BSLASHcolorbox] = ACTIONS(4395), - [anon_sym_BSLASHtextcolor] = ACTIONS(4395), - [anon_sym_BSLASHpagecolor] = ACTIONS(4395), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4395), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4395), + [422] = { + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(389), + [aux_sym__section_repeat6] = STATE(389), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHitem] = ACTIONS(4483), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHend] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), }, - [610] = { - [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(4441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), + [423] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [611] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(4441), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(4441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4439), - [anon_sym_LBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), + [424] = { + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(4483), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(4483), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHend] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), }, - [612] = { - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(604), - [aux_sym__section_repeat6] = STATE(604), - [sym_command_name] = ACTIONS(4441), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4441), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym_RPAREN] = ACTIONS(4439), - [anon_sym_LBRACK] = ACTIONS(4439), - [anon_sym_RBRACK] = ACTIONS(4439), - [anon_sym_COMMA] = ACTIONS(4439), - [anon_sym_EQ] = ACTIONS(4439), - [anon_sym_BSLASHpart] = ACTIONS(4441), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddpart] = ACTIONS(4441), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4439), - [anon_sym_BSLASHchapter] = ACTIONS(4441), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddchap] = ACTIONS(4441), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsection] = ACTIONS(4441), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHaddsec] = ACTIONS(4441), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4441), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4439), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4441), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4439), - [anon_sym_BSLASHitem] = ACTIONS(4441), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4439), - [anon_sym_LBRACE] = ACTIONS(4439), - [sym_word] = ACTIONS(4441), - [sym_placeholder] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4441), - [anon_sym_DASH] = ACTIONS(4441), - [anon_sym_STAR] = ACTIONS(4441), - [anon_sym_SLASH] = ACTIONS(4441), - [anon_sym_CARET] = ACTIONS(4441), - [anon_sym__] = ACTIONS(4441), - [anon_sym_LT] = ACTIONS(4441), - [anon_sym_GT] = ACTIONS(4441), - [anon_sym_BANG] = ACTIONS(4441), - [anon_sym_PIPE] = ACTIONS(4441), - [anon_sym_COLON] = ACTIONS(4441), - [anon_sym_SQUOTE] = ACTIONS(4441), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4439), - [anon_sym_DOLLAR] = ACTIONS(4441), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4439), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4439), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4439), - [anon_sym_BSLASHbegin] = ACTIONS(4441), - [anon_sym_BSLASHusepackage] = ACTIONS(4441), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4441), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4441), - [anon_sym_BSLASHinclude] = ACTIONS(4441), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4441), - [anon_sym_BSLASHinput] = ACTIONS(4441), - [anon_sym_BSLASHsubfile] = ACTIONS(4441), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4441), - [anon_sym_BSLASHbibliography] = ACTIONS(4441), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4441), - [anon_sym_BSLASHincludesvg] = ACTIONS(4441), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4441), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4441), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4441), - [anon_sym_BSLASHimport] = ACTIONS(4441), - [anon_sym_BSLASHsubimport] = ACTIONS(4441), - [anon_sym_BSLASHinputfrom] = ACTIONS(4441), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4441), - [anon_sym_BSLASHincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4441), - [anon_sym_BSLASHcaption] = ACTIONS(4441), - [anon_sym_BSLASHcite] = ACTIONS(4441), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCite] = ACTIONS(4441), - [anon_sym_BSLASHnocite] = ACTIONS(4441), - [anon_sym_BSLASHcitet] = ACTIONS(4441), - [anon_sym_BSLASHcitep] = ACTIONS(4441), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteauthor] = ACTIONS(4441), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4441), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitetitle] = ACTIONS(4441), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteyear] = ACTIONS(4441), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4439), - [anon_sym_BSLASHcitedate] = ACTIONS(4441), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4439), - [anon_sym_BSLASHciteurl] = ACTIONS(4441), - [anon_sym_BSLASHfullcite] = ACTIONS(4441), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4441), - [anon_sym_BSLASHcitealt] = ACTIONS(4441), - [anon_sym_BSLASHcitealp] = ACTIONS(4441), - [anon_sym_BSLASHcitetext] = ACTIONS(4441), - [anon_sym_BSLASHparencite] = ACTIONS(4441), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHParencite] = ACTIONS(4441), - [anon_sym_BSLASHfootcite] = ACTIONS(4441), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4441), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4441), - [anon_sym_BSLASHtextcite] = ACTIONS(4441), - [anon_sym_BSLASHTextcite] = ACTIONS(4441), - [anon_sym_BSLASHsmartcite] = ACTIONS(4441), - [anon_sym_BSLASHSmartcite] = ACTIONS(4441), - [anon_sym_BSLASHsupercite] = ACTIONS(4441), - [anon_sym_BSLASHautocite] = ACTIONS(4441), - [anon_sym_BSLASHAutocite] = ACTIONS(4441), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4439), - [anon_sym_BSLASHvolcite] = ACTIONS(4441), - [anon_sym_BSLASHVolcite] = ACTIONS(4441), - [anon_sym_BSLASHpvolcite] = ACTIONS(4441), - [anon_sym_BSLASHPvolcite] = ACTIONS(4441), - [anon_sym_BSLASHfvolcite] = ACTIONS(4441), - [anon_sym_BSLASHftvolcite] = ACTIONS(4441), - [anon_sym_BSLASHsvolcite] = ACTIONS(4441), - [anon_sym_BSLASHSvolcite] = ACTIONS(4441), - [anon_sym_BSLASHtvolcite] = ACTIONS(4441), - [anon_sym_BSLASHTvolcite] = ACTIONS(4441), - [anon_sym_BSLASHavolcite] = ACTIONS(4441), - [anon_sym_BSLASHAvolcite] = ACTIONS(4441), - [anon_sym_BSLASHnotecite] = ACTIONS(4441), - [anon_sym_BSLASHNotecite] = ACTIONS(4441), - [anon_sym_BSLASHpnotecite] = ACTIONS(4441), - [anon_sym_BSLASHPnotecite] = ACTIONS(4441), - [anon_sym_BSLASHfnotecite] = ACTIONS(4441), - [anon_sym_BSLASHlabel] = ACTIONS(4441), - [anon_sym_BSLASHref] = ACTIONS(4441), - [anon_sym_BSLASHeqref] = ACTIONS(4441), - [anon_sym_BSLASHvref] = ACTIONS(4441), - [anon_sym_BSLASHVref] = ACTIONS(4441), - [anon_sym_BSLASHautoref] = ACTIONS(4441), - [anon_sym_BSLASHpageref] = ACTIONS(4441), - [anon_sym_BSLASHcref] = ACTIONS(4441), - [anon_sym_BSLASHCref] = ACTIONS(4441), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnameCref] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4441), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4441), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4441), - [anon_sym_BSLASHlabelcref] = ACTIONS(4441), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange] = ACTIONS(4441), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHCrefrange] = ACTIONS(4441), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4439), - [anon_sym_BSLASHnewlabel] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand] = ACTIONS(4441), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4441), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4441), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4439), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4441), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4439), - [anon_sym_BSLASHdef] = ACTIONS(4441), - [anon_sym_BSLASHlet] = ACTIONS(4441), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4441), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4441), - [anon_sym_BSLASHgls] = ACTIONS(4441), - [anon_sym_BSLASHGls] = ACTIONS(4441), - [anon_sym_BSLASHGLS] = ACTIONS(4441), - [anon_sym_BSLASHglspl] = ACTIONS(4441), - [anon_sym_BSLASHGlspl] = ACTIONS(4441), - [anon_sym_BSLASHGLSpl] = ACTIONS(4441), - [anon_sym_BSLASHglsdisp] = ACTIONS(4441), - [anon_sym_BSLASHglslink] = ACTIONS(4441), - [anon_sym_BSLASHglstext] = ACTIONS(4441), - [anon_sym_BSLASHGlstext] = ACTIONS(4441), - [anon_sym_BSLASHGLStext] = ACTIONS(4441), - [anon_sym_BSLASHglsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4441), - [anon_sym_BSLASHglsplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSplural] = ACTIONS(4441), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4441), - [anon_sym_BSLASHglsname] = ACTIONS(4441), - [anon_sym_BSLASHGlsname] = ACTIONS(4441), - [anon_sym_BSLASHGLSname] = ACTIONS(4441), - [anon_sym_BSLASHglssymbol] = ACTIONS(4441), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4441), - [anon_sym_BSLASHglsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4441), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4441), - [anon_sym_BSLASHglsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4441), - [anon_sym_BSLASHglsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4441), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4441), - [anon_sym_BSLASHglsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4441), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4441), - [anon_sym_BSLASHglsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4441), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4441), - [anon_sym_BSLASHnewacronym] = ACTIONS(4441), - [anon_sym_BSLASHacrshort] = ACTIONS(4441), - [anon_sym_BSLASHAcrshort] = ACTIONS(4441), - [anon_sym_BSLASHACRshort] = ACTIONS(4441), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4441), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4441), - [anon_sym_BSLASHacrlong] = ACTIONS(4441), - [anon_sym_BSLASHAcrlong] = ACTIONS(4441), - [anon_sym_BSLASHACRlong] = ACTIONS(4441), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4441), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4441), - [anon_sym_BSLASHacrfull] = ACTIONS(4441), - [anon_sym_BSLASHAcrfull] = ACTIONS(4441), - [anon_sym_BSLASHACRfull] = ACTIONS(4441), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4441), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4441), - [anon_sym_BSLASHacs] = ACTIONS(4441), - [anon_sym_BSLASHAcs] = ACTIONS(4441), - [anon_sym_BSLASHacsp] = ACTIONS(4441), - [anon_sym_BSLASHAcsp] = ACTIONS(4441), - [anon_sym_BSLASHacl] = ACTIONS(4441), - [anon_sym_BSLASHAcl] = ACTIONS(4441), - [anon_sym_BSLASHaclp] = ACTIONS(4441), - [anon_sym_BSLASHAclp] = ACTIONS(4441), - [anon_sym_BSLASHacf] = ACTIONS(4441), - [anon_sym_BSLASHAcf] = ACTIONS(4441), - [anon_sym_BSLASHacfp] = ACTIONS(4441), - [anon_sym_BSLASHAcfp] = ACTIONS(4441), - [anon_sym_BSLASHac] = ACTIONS(4441), - [anon_sym_BSLASHAc] = ACTIONS(4441), - [anon_sym_BSLASHacp] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4441), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4441), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4441), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4441), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4441), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4441), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4441), - [anon_sym_BSLASHcolor] = ACTIONS(4441), - [anon_sym_BSLASHcolorbox] = ACTIONS(4441), - [anon_sym_BSLASHtextcolor] = ACTIONS(4441), - [anon_sym_BSLASHpagecolor] = ACTIONS(4441), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4441), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4441), + [425] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [613] = { + [426] = { [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(4483), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHend] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), }, - [614] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), + [427] = { + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(4487), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4485), + [anon_sym_RPAREN] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_BSLASHpart] = ACTIONS(4487), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddpart] = ACTIONS(4487), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHchapter] = ACTIONS(4487), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddchap] = ACTIONS(4487), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsection] = ACTIONS(4487), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddsec] = ACTIONS(4487), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHparagraph] = ACTIONS(4487), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(4487), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4485), + [sym_word] = ACTIONS(4487), + [sym_placeholder] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4487), + [anon_sym_STAR] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym__] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4487), + [anon_sym_PIPE] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [anon_sym_SQUOTE] = ACTIONS(4487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), + [anon_sym_DOLLAR] = ACTIONS(4487), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), + [anon_sym_BSLASHbegin] = ACTIONS(4487), + [anon_sym_BSLASHend] = ACTIONS(4487), + [anon_sym_BSLASHusepackage] = ACTIONS(4487), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), + [anon_sym_BSLASHinclude] = ACTIONS(4487), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), + [anon_sym_BSLASHinput] = ACTIONS(4487), + [anon_sym_BSLASHsubfile] = ACTIONS(4487), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), + [anon_sym_BSLASHbibliography] = ACTIONS(4487), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), + [anon_sym_BSLASHincludesvg] = ACTIONS(4487), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), + [anon_sym_BSLASHimport] = ACTIONS(4487), + [anon_sym_BSLASHsubimport] = ACTIONS(4487), + [anon_sym_BSLASHinputfrom] = ACTIONS(4487), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), + [anon_sym_BSLASHincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHcaption] = ACTIONS(4487), + [anon_sym_BSLASHcite] = ACTIONS(4487), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCite] = ACTIONS(4487), + [anon_sym_BSLASHnocite] = ACTIONS(4487), + [anon_sym_BSLASHcitet] = ACTIONS(4487), + [anon_sym_BSLASHcitep] = ACTIONS(4487), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteauthor] = ACTIONS(4487), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitetitle] = ACTIONS(4487), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteyear] = ACTIONS(4487), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitedate] = ACTIONS(4487), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteurl] = ACTIONS(4487), + [anon_sym_BSLASHfullcite] = ACTIONS(4487), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), + [anon_sym_BSLASHcitealt] = ACTIONS(4487), + [anon_sym_BSLASHcitealp] = ACTIONS(4487), + [anon_sym_BSLASHcitetext] = ACTIONS(4487), + [anon_sym_BSLASHparencite] = ACTIONS(4487), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHParencite] = ACTIONS(4487), + [anon_sym_BSLASHfootcite] = ACTIONS(4487), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), + [anon_sym_BSLASHtextcite] = ACTIONS(4487), + [anon_sym_BSLASHTextcite] = ACTIONS(4487), + [anon_sym_BSLASHsmartcite] = ACTIONS(4487), + [anon_sym_BSLASHSmartcite] = ACTIONS(4487), + [anon_sym_BSLASHsupercite] = ACTIONS(4487), + [anon_sym_BSLASHautocite] = ACTIONS(4487), + [anon_sym_BSLASHAutocite] = ACTIONS(4487), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHvolcite] = ACTIONS(4487), + [anon_sym_BSLASHVolcite] = ACTIONS(4487), + [anon_sym_BSLASHpvolcite] = ACTIONS(4487), + [anon_sym_BSLASHPvolcite] = ACTIONS(4487), + [anon_sym_BSLASHfvolcite] = ACTIONS(4487), + [anon_sym_BSLASHftvolcite] = ACTIONS(4487), + [anon_sym_BSLASHsvolcite] = ACTIONS(4487), + [anon_sym_BSLASHSvolcite] = ACTIONS(4487), + [anon_sym_BSLASHtvolcite] = ACTIONS(4487), + [anon_sym_BSLASHTvolcite] = ACTIONS(4487), + [anon_sym_BSLASHavolcite] = ACTIONS(4487), + [anon_sym_BSLASHAvolcite] = ACTIONS(4487), + [anon_sym_BSLASHnotecite] = ACTIONS(4487), + [anon_sym_BSLASHNotecite] = ACTIONS(4487), + [anon_sym_BSLASHpnotecite] = ACTIONS(4487), + [anon_sym_BSLASHPnotecite] = ACTIONS(4487), + [anon_sym_BSLASHfnotecite] = ACTIONS(4487), + [anon_sym_BSLASHlabel] = ACTIONS(4487), + [anon_sym_BSLASHref] = ACTIONS(4487), + [anon_sym_BSLASHeqref] = ACTIONS(4487), + [anon_sym_BSLASHvref] = ACTIONS(4487), + [anon_sym_BSLASHVref] = ACTIONS(4487), + [anon_sym_BSLASHautoref] = ACTIONS(4487), + [anon_sym_BSLASHpageref] = ACTIONS(4487), + [anon_sym_BSLASHcref] = ACTIONS(4487), + [anon_sym_BSLASHCref] = ACTIONS(4487), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnameCref] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHlabelcref] = ACTIONS(4487), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCrefrange] = ACTIONS(4487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnewlabel] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), + [anon_sym_BSLASHdef] = ACTIONS(4487), + [anon_sym_BSLASHlet] = ACTIONS(4487), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), + [anon_sym_BSLASHgls] = ACTIONS(4487), + [anon_sym_BSLASHGls] = ACTIONS(4487), + [anon_sym_BSLASHGLS] = ACTIONS(4487), + [anon_sym_BSLASHglspl] = ACTIONS(4487), + [anon_sym_BSLASHGlspl] = ACTIONS(4487), + [anon_sym_BSLASHGLSpl] = ACTIONS(4487), + [anon_sym_BSLASHglsdisp] = ACTIONS(4487), + [anon_sym_BSLASHglslink] = ACTIONS(4487), + [anon_sym_BSLASHglstext] = ACTIONS(4487), + [anon_sym_BSLASHGlstext] = ACTIONS(4487), + [anon_sym_BSLASHGLStext] = ACTIONS(4487), + [anon_sym_BSLASHglsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), + [anon_sym_BSLASHglsplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSplural] = ACTIONS(4487), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHglsname] = ACTIONS(4487), + [anon_sym_BSLASHGlsname] = ACTIONS(4487), + [anon_sym_BSLASHGLSname] = ACTIONS(4487), + [anon_sym_BSLASHglssymbol] = ACTIONS(4487), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), + [anon_sym_BSLASHglsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), + [anon_sym_BSLASHglsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), + [anon_sym_BSLASHglsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), + [anon_sym_BSLASHglsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), + [anon_sym_BSLASHglsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), + [anon_sym_BSLASHnewacronym] = ACTIONS(4487), + [anon_sym_BSLASHacrshort] = ACTIONS(4487), + [anon_sym_BSLASHAcrshort] = ACTIONS(4487), + [anon_sym_BSLASHACRshort] = ACTIONS(4487), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), + [anon_sym_BSLASHacrlong] = ACTIONS(4487), + [anon_sym_BSLASHAcrlong] = ACTIONS(4487), + [anon_sym_BSLASHACRlong] = ACTIONS(4487), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), + [anon_sym_BSLASHacrfull] = ACTIONS(4487), + [anon_sym_BSLASHAcrfull] = ACTIONS(4487), + [anon_sym_BSLASHACRfull] = ACTIONS(4487), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), + [anon_sym_BSLASHacs] = ACTIONS(4487), + [anon_sym_BSLASHAcs] = ACTIONS(4487), + [anon_sym_BSLASHacsp] = ACTIONS(4487), + [anon_sym_BSLASHAcsp] = ACTIONS(4487), + [anon_sym_BSLASHacl] = ACTIONS(4487), + [anon_sym_BSLASHAcl] = ACTIONS(4487), + [anon_sym_BSLASHaclp] = ACTIONS(4487), + [anon_sym_BSLASHAclp] = ACTIONS(4487), + [anon_sym_BSLASHacf] = ACTIONS(4487), + [anon_sym_BSLASHAcf] = ACTIONS(4487), + [anon_sym_BSLASHacfp] = ACTIONS(4487), + [anon_sym_BSLASHAcfp] = ACTIONS(4487), + [anon_sym_BSLASHac] = ACTIONS(4487), + [anon_sym_BSLASHAc] = ACTIONS(4487), + [anon_sym_BSLASHacp] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), + [anon_sym_BSLASHcolor] = ACTIONS(4487), + [anon_sym_BSLASHcolorbox] = ACTIONS(4487), + [anon_sym_BSLASHtextcolor] = ACTIONS(4487), + [anon_sym_BSLASHpagecolor] = ACTIONS(4487), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), + [anon_sym_BSLASHtext] = ACTIONS(4487), + [anon_sym_BSLASHintertext] = ACTIONS(4487), + [anon_sym_shortintertext] = ACTIONS(4487), }, - [615] = { - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(604), - [aux_sym__section_repeat6] = STATE(604), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), + [428] = { + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(631), + [aux_sym__section_repeat3] = STATE(631), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [616] = { - [sym_curly_group] = STATE(666), - [sym_brack_group_text] = STATE(2068), - [ts_builtin_sym_end] = ACTIONS(4747), - [sym_command_name] = ACTIONS(4749), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_BSLASHpart] = ACTIONS(4749), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddpart] = ACTIONS(4749), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4747), - [anon_sym_BSLASHchapter] = ACTIONS(4749), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddchap] = ACTIONS(4749), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsection] = ACTIONS(4749), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddsec] = ACTIONS(4749), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubsection] = ACTIONS(4749), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4749), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHparagraph] = ACTIONS(4749), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4749), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4747), - [anon_sym_BSLASHitem] = ACTIONS(4749), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4747), - [sym_word] = ACTIONS(4749), - [sym_placeholder] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4749), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_CARET] = ACTIONS(4749), - [anon_sym__] = ACTIONS(4749), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_COLON] = ACTIONS(4749), - [anon_sym_SQUOTE] = ACTIONS(4749), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4747), - [anon_sym_DOLLAR] = ACTIONS(4749), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4747), - [anon_sym_BSLASHbegin] = ACTIONS(4749), - [anon_sym_BSLASHusepackage] = ACTIONS(4749), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4749), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4749), - [anon_sym_BSLASHinclude] = ACTIONS(4749), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4749), - [anon_sym_BSLASHinput] = ACTIONS(4749), - [anon_sym_BSLASHsubfile] = ACTIONS(4749), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4749), - [anon_sym_BSLASHbibliography] = ACTIONS(4749), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4749), - [anon_sym_BSLASHincludesvg] = ACTIONS(4749), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4749), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4749), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4749), - [anon_sym_BSLASHimport] = ACTIONS(4749), - [anon_sym_BSLASHsubimport] = ACTIONS(4749), - [anon_sym_BSLASHinputfrom] = ACTIONS(4749), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4749), - [anon_sym_BSLASHincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHcaption] = ACTIONS(4749), - [anon_sym_BSLASHcite] = ACTIONS(4749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCite] = ACTIONS(4749), - [anon_sym_BSLASHnocite] = ACTIONS(4749), - [anon_sym_BSLASHcitet] = ACTIONS(4749), - [anon_sym_BSLASHcitep] = ACTIONS(4749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteauthor] = ACTIONS(4749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitetitle] = ACTIONS(4749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteyear] = ACTIONS(4749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitedate] = ACTIONS(4749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteurl] = ACTIONS(4749), - [anon_sym_BSLASHfullcite] = ACTIONS(4749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4749), - [anon_sym_BSLASHcitealt] = ACTIONS(4749), - [anon_sym_BSLASHcitealp] = ACTIONS(4749), - [anon_sym_BSLASHcitetext] = ACTIONS(4749), - [anon_sym_BSLASHparencite] = ACTIONS(4749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHParencite] = ACTIONS(4749), - [anon_sym_BSLASHfootcite] = ACTIONS(4749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4749), - [anon_sym_BSLASHtextcite] = ACTIONS(4749), - [anon_sym_BSLASHTextcite] = ACTIONS(4749), - [anon_sym_BSLASHsmartcite] = ACTIONS(4749), - [anon_sym_BSLASHSmartcite] = ACTIONS(4749), - [anon_sym_BSLASHsupercite] = ACTIONS(4749), - [anon_sym_BSLASHautocite] = ACTIONS(4749), - [anon_sym_BSLASHAutocite] = ACTIONS(4749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHvolcite] = ACTIONS(4749), - [anon_sym_BSLASHVolcite] = ACTIONS(4749), - [anon_sym_BSLASHpvolcite] = ACTIONS(4749), - [anon_sym_BSLASHPvolcite] = ACTIONS(4749), - [anon_sym_BSLASHfvolcite] = ACTIONS(4749), - [anon_sym_BSLASHftvolcite] = ACTIONS(4749), - [anon_sym_BSLASHsvolcite] = ACTIONS(4749), - [anon_sym_BSLASHSvolcite] = ACTIONS(4749), - [anon_sym_BSLASHtvolcite] = ACTIONS(4749), - [anon_sym_BSLASHTvolcite] = ACTIONS(4749), - [anon_sym_BSLASHavolcite] = ACTIONS(4749), - [anon_sym_BSLASHAvolcite] = ACTIONS(4749), - [anon_sym_BSLASHnotecite] = ACTIONS(4749), - [anon_sym_BSLASHNotecite] = ACTIONS(4749), - [anon_sym_BSLASHpnotecite] = ACTIONS(4749), - [anon_sym_BSLASHPnotecite] = ACTIONS(4749), - [anon_sym_BSLASHfnotecite] = ACTIONS(4749), - [anon_sym_BSLASHlabel] = ACTIONS(4749), - [anon_sym_BSLASHref] = ACTIONS(4749), - [anon_sym_BSLASHeqref] = ACTIONS(4749), - [anon_sym_BSLASHvref] = ACTIONS(4749), - [anon_sym_BSLASHVref] = ACTIONS(4749), - [anon_sym_BSLASHautoref] = ACTIONS(4749), - [anon_sym_BSLASHpageref] = ACTIONS(4749), - [anon_sym_BSLASHcref] = ACTIONS(4749), - [anon_sym_BSLASHCref] = ACTIONS(4749), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnameCref] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHlabelcref] = ACTIONS(4749), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCrefrange] = ACTIONS(4749), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnewlabel] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4749), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4749), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4749), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4747), - [anon_sym_BSLASHdef] = ACTIONS(4749), - [anon_sym_BSLASHlet] = ACTIONS(4749), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4749), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4749), - [anon_sym_BSLASHgls] = ACTIONS(4749), - [anon_sym_BSLASHGls] = ACTIONS(4749), - [anon_sym_BSLASHGLS] = ACTIONS(4749), - [anon_sym_BSLASHglspl] = ACTIONS(4749), - [anon_sym_BSLASHGlspl] = ACTIONS(4749), - [anon_sym_BSLASHGLSpl] = ACTIONS(4749), - [anon_sym_BSLASHglsdisp] = ACTIONS(4749), - [anon_sym_BSLASHglslink] = ACTIONS(4749), - [anon_sym_BSLASHglstext] = ACTIONS(4749), - [anon_sym_BSLASHGlstext] = ACTIONS(4749), - [anon_sym_BSLASHGLStext] = ACTIONS(4749), - [anon_sym_BSLASHglsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4749), - [anon_sym_BSLASHglsplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSplural] = ACTIONS(4749), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHglsname] = ACTIONS(4749), - [anon_sym_BSLASHGlsname] = ACTIONS(4749), - [anon_sym_BSLASHGLSname] = ACTIONS(4749), - [anon_sym_BSLASHglssymbol] = ACTIONS(4749), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4749), - [anon_sym_BSLASHglsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4749), - [anon_sym_BSLASHglsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4749), - [anon_sym_BSLASHglsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4749), - [anon_sym_BSLASHglsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4749), - [anon_sym_BSLASHglsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4749), - [anon_sym_BSLASHnewacronym] = ACTIONS(4749), - [anon_sym_BSLASHacrshort] = ACTIONS(4749), - [anon_sym_BSLASHAcrshort] = ACTIONS(4749), - [anon_sym_BSLASHACRshort] = ACTIONS(4749), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4749), - [anon_sym_BSLASHacrlong] = ACTIONS(4749), - [anon_sym_BSLASHAcrlong] = ACTIONS(4749), - [anon_sym_BSLASHACRlong] = ACTIONS(4749), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4749), - [anon_sym_BSLASHacrfull] = ACTIONS(4749), - [anon_sym_BSLASHAcrfull] = ACTIONS(4749), - [anon_sym_BSLASHACRfull] = ACTIONS(4749), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4749), - [anon_sym_BSLASHacs] = ACTIONS(4749), - [anon_sym_BSLASHAcs] = ACTIONS(4749), - [anon_sym_BSLASHacsp] = ACTIONS(4749), - [anon_sym_BSLASHAcsp] = ACTIONS(4749), - [anon_sym_BSLASHacl] = ACTIONS(4749), - [anon_sym_BSLASHAcl] = ACTIONS(4749), - [anon_sym_BSLASHaclp] = ACTIONS(4749), - [anon_sym_BSLASHAclp] = ACTIONS(4749), - [anon_sym_BSLASHacf] = ACTIONS(4749), - [anon_sym_BSLASHAcf] = ACTIONS(4749), - [anon_sym_BSLASHacfp] = ACTIONS(4749), - [anon_sym_BSLASHAcfp] = ACTIONS(4749), - [anon_sym_BSLASHac] = ACTIONS(4749), - [anon_sym_BSLASHAc] = ACTIONS(4749), - [anon_sym_BSLASHacp] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4749), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4749), - [anon_sym_BSLASHcolor] = ACTIONS(4749), - [anon_sym_BSLASHcolorbox] = ACTIONS(4749), - [anon_sym_BSLASHtextcolor] = ACTIONS(4749), - [anon_sym_BSLASHpagecolor] = ACTIONS(4749), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4749), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4749), + [429] = { + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(514), + [aux_sym__section_repeat1] = STATE(514), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHaddpart] = ACTIONS(315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(317), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [617] = { - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(603), - [aux_sym__section_repeat5] = STATE(603), - [sym_command_name] = ACTIONS(4437), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4437), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym_RPAREN] = ACTIONS(4435), - [anon_sym_LBRACK] = ACTIONS(4435), - [anon_sym_RBRACK] = ACTIONS(4435), - [anon_sym_COMMA] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4435), - [anon_sym_BSLASHpart] = ACTIONS(4437), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddpart] = ACTIONS(4437), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4435), - [anon_sym_BSLASHchapter] = ACTIONS(4437), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddchap] = ACTIONS(4437), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsection] = ACTIONS(4437), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHaddsec] = ACTIONS(4437), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsection] = ACTIONS(4437), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(4437), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4437), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4435), - [anon_sym_BSLASHitem] = ACTIONS(4437), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [sym_word] = ACTIONS(4437), - [sym_placeholder] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_STAR] = ACTIONS(4437), - [anon_sym_SLASH] = ACTIONS(4437), - [anon_sym_CARET] = ACTIONS(4437), - [anon_sym__] = ACTIONS(4437), - [anon_sym_LT] = ACTIONS(4437), - [anon_sym_GT] = ACTIONS(4437), - [anon_sym_BANG] = ACTIONS(4437), - [anon_sym_PIPE] = ACTIONS(4437), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_SQUOTE] = ACTIONS(4437), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4435), - [anon_sym_DOLLAR] = ACTIONS(4437), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4435), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4435), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4435), - [anon_sym_BSLASHbegin] = ACTIONS(4437), - [anon_sym_BSLASHusepackage] = ACTIONS(4437), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4437), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4437), - [anon_sym_BSLASHinclude] = ACTIONS(4437), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4437), - [anon_sym_BSLASHinput] = ACTIONS(4437), - [anon_sym_BSLASHsubfile] = ACTIONS(4437), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4437), - [anon_sym_BSLASHbibliography] = ACTIONS(4437), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4437), - [anon_sym_BSLASHincludesvg] = ACTIONS(4437), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4437), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4437), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4437), - [anon_sym_BSLASHimport] = ACTIONS(4437), - [anon_sym_BSLASHsubimport] = ACTIONS(4437), - [anon_sym_BSLASHinputfrom] = ACTIONS(4437), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4437), - [anon_sym_BSLASHincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4437), - [anon_sym_BSLASHcaption] = ACTIONS(4437), - [anon_sym_BSLASHcite] = ACTIONS(4437), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCite] = ACTIONS(4437), - [anon_sym_BSLASHnocite] = ACTIONS(4437), - [anon_sym_BSLASHcitet] = ACTIONS(4437), - [anon_sym_BSLASHcitep] = ACTIONS(4437), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteauthor] = ACTIONS(4437), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4437), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitetitle] = ACTIONS(4437), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteyear] = ACTIONS(4437), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4435), - [anon_sym_BSLASHcitedate] = ACTIONS(4437), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4435), - [anon_sym_BSLASHciteurl] = ACTIONS(4437), - [anon_sym_BSLASHfullcite] = ACTIONS(4437), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4437), - [anon_sym_BSLASHcitealt] = ACTIONS(4437), - [anon_sym_BSLASHcitealp] = ACTIONS(4437), - [anon_sym_BSLASHcitetext] = ACTIONS(4437), - [anon_sym_BSLASHparencite] = ACTIONS(4437), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHParencite] = ACTIONS(4437), - [anon_sym_BSLASHfootcite] = ACTIONS(4437), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4437), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4437), - [anon_sym_BSLASHtextcite] = ACTIONS(4437), - [anon_sym_BSLASHTextcite] = ACTIONS(4437), - [anon_sym_BSLASHsmartcite] = ACTIONS(4437), - [anon_sym_BSLASHSmartcite] = ACTIONS(4437), - [anon_sym_BSLASHsupercite] = ACTIONS(4437), - [anon_sym_BSLASHautocite] = ACTIONS(4437), - [anon_sym_BSLASHAutocite] = ACTIONS(4437), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4435), - [anon_sym_BSLASHvolcite] = ACTIONS(4437), - [anon_sym_BSLASHVolcite] = ACTIONS(4437), - [anon_sym_BSLASHpvolcite] = ACTIONS(4437), - [anon_sym_BSLASHPvolcite] = ACTIONS(4437), - [anon_sym_BSLASHfvolcite] = ACTIONS(4437), - [anon_sym_BSLASHftvolcite] = ACTIONS(4437), - [anon_sym_BSLASHsvolcite] = ACTIONS(4437), - [anon_sym_BSLASHSvolcite] = ACTIONS(4437), - [anon_sym_BSLASHtvolcite] = ACTIONS(4437), - [anon_sym_BSLASHTvolcite] = ACTIONS(4437), - [anon_sym_BSLASHavolcite] = ACTIONS(4437), - [anon_sym_BSLASHAvolcite] = ACTIONS(4437), - [anon_sym_BSLASHnotecite] = ACTIONS(4437), - [anon_sym_BSLASHNotecite] = ACTIONS(4437), - [anon_sym_BSLASHpnotecite] = ACTIONS(4437), - [anon_sym_BSLASHPnotecite] = ACTIONS(4437), - [anon_sym_BSLASHfnotecite] = ACTIONS(4437), - [anon_sym_BSLASHlabel] = ACTIONS(4437), - [anon_sym_BSLASHref] = ACTIONS(4437), - [anon_sym_BSLASHeqref] = ACTIONS(4437), - [anon_sym_BSLASHvref] = ACTIONS(4437), - [anon_sym_BSLASHVref] = ACTIONS(4437), - [anon_sym_BSLASHautoref] = ACTIONS(4437), - [anon_sym_BSLASHpageref] = ACTIONS(4437), - [anon_sym_BSLASHcref] = ACTIONS(4437), - [anon_sym_BSLASHCref] = ACTIONS(4437), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnameCref] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4437), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4437), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4437), - [anon_sym_BSLASHlabelcref] = ACTIONS(4437), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange] = ACTIONS(4437), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHCrefrange] = ACTIONS(4437), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4435), - [anon_sym_BSLASHnewlabel] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand] = ACTIONS(4437), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4437), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4437), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4435), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4437), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4435), - [anon_sym_BSLASHdef] = ACTIONS(4437), - [anon_sym_BSLASHlet] = ACTIONS(4437), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4437), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4437), - [anon_sym_BSLASHgls] = ACTIONS(4437), - [anon_sym_BSLASHGls] = ACTIONS(4437), - [anon_sym_BSLASHGLS] = ACTIONS(4437), - [anon_sym_BSLASHglspl] = ACTIONS(4437), - [anon_sym_BSLASHGlspl] = ACTIONS(4437), - [anon_sym_BSLASHGLSpl] = ACTIONS(4437), - [anon_sym_BSLASHglsdisp] = ACTIONS(4437), - [anon_sym_BSLASHglslink] = ACTIONS(4437), - [anon_sym_BSLASHglstext] = ACTIONS(4437), - [anon_sym_BSLASHGlstext] = ACTIONS(4437), - [anon_sym_BSLASHGLStext] = ACTIONS(4437), - [anon_sym_BSLASHglsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4437), - [anon_sym_BSLASHglsplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSplural] = ACTIONS(4437), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4437), - [anon_sym_BSLASHglsname] = ACTIONS(4437), - [anon_sym_BSLASHGlsname] = ACTIONS(4437), - [anon_sym_BSLASHGLSname] = ACTIONS(4437), - [anon_sym_BSLASHglssymbol] = ACTIONS(4437), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4437), - [anon_sym_BSLASHglsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4437), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4437), - [anon_sym_BSLASHglsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4437), - [anon_sym_BSLASHglsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4437), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4437), - [anon_sym_BSLASHglsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4437), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4437), - [anon_sym_BSLASHglsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4437), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4437), - [anon_sym_BSLASHnewacronym] = ACTIONS(4437), - [anon_sym_BSLASHacrshort] = ACTIONS(4437), - [anon_sym_BSLASHAcrshort] = ACTIONS(4437), - [anon_sym_BSLASHACRshort] = ACTIONS(4437), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4437), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4437), - [anon_sym_BSLASHacrlong] = ACTIONS(4437), - [anon_sym_BSLASHAcrlong] = ACTIONS(4437), - [anon_sym_BSLASHACRlong] = ACTIONS(4437), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4437), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4437), - [anon_sym_BSLASHacrfull] = ACTIONS(4437), - [anon_sym_BSLASHAcrfull] = ACTIONS(4437), - [anon_sym_BSLASHACRfull] = ACTIONS(4437), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4437), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4437), - [anon_sym_BSLASHacs] = ACTIONS(4437), - [anon_sym_BSLASHAcs] = ACTIONS(4437), - [anon_sym_BSLASHacsp] = ACTIONS(4437), - [anon_sym_BSLASHAcsp] = ACTIONS(4437), - [anon_sym_BSLASHacl] = ACTIONS(4437), - [anon_sym_BSLASHAcl] = ACTIONS(4437), - [anon_sym_BSLASHaclp] = ACTIONS(4437), - [anon_sym_BSLASHAclp] = ACTIONS(4437), - [anon_sym_BSLASHacf] = ACTIONS(4437), - [anon_sym_BSLASHAcf] = ACTIONS(4437), - [anon_sym_BSLASHacfp] = ACTIONS(4437), - [anon_sym_BSLASHAcfp] = ACTIONS(4437), - [anon_sym_BSLASHac] = ACTIONS(4437), - [anon_sym_BSLASHAc] = ACTIONS(4437), - [anon_sym_BSLASHacp] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4437), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4437), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4437), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4437), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4437), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4437), - [anon_sym_BSLASHcolor] = ACTIONS(4437), - [anon_sym_BSLASHcolorbox] = ACTIONS(4437), - [anon_sym_BSLASHtextcolor] = ACTIONS(4437), - [anon_sym_BSLASHpagecolor] = ACTIONS(4437), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4437), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4437), + [430] = { + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(515), + [aux_sym__section_repeat2] = STATE(515), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [618] = { + [431] = { + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(516), + [aux_sym__section_repeat3] = STATE(516), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [432] = { + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(517), + [aux_sym__section_repeat4] = STATE(517), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [433] = { + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(518), + [aux_sym__section_repeat5] = STATE(518), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [434] = { + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(519), + [aux_sym__section_repeat6] = STATE(519), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [435] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [436] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [437] = { [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(4491), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4489), + [anon_sym_RPAREN] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4489), + [anon_sym_RBRACK] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4489), + [anon_sym_BSLASHpart] = ACTIONS(4491), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddpart] = ACTIONS(4491), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4489), + [anon_sym_BSLASHchapter] = ACTIONS(4491), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddchap] = ACTIONS(4491), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsection] = ACTIONS(4491), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddsec] = ACTIONS(4491), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubsection] = ACTIONS(4491), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4491), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHparagraph] = ACTIONS(4491), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4491), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4489), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(4489), + [sym_word] = ACTIONS(4491), + [sym_placeholder] = ACTIONS(4489), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_CARET] = ACTIONS(4491), + [anon_sym__] = ACTIONS(4491), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_BANG] = ACTIONS(4491), + [anon_sym_PIPE] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [anon_sym_SQUOTE] = ACTIONS(4491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4489), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4489), + [anon_sym_DOLLAR] = ACTIONS(4491), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4489), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4489), + [anon_sym_BSLASHbegin] = ACTIONS(4491), + [anon_sym_BSLASHend] = ACTIONS(4491), + [anon_sym_BSLASHusepackage] = ACTIONS(4491), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4491), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4491), + [anon_sym_BSLASHinclude] = ACTIONS(4491), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4491), + [anon_sym_BSLASHinput] = ACTIONS(4491), + [anon_sym_BSLASHsubfile] = ACTIONS(4491), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4491), + [anon_sym_BSLASHbibliography] = ACTIONS(4491), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4491), + [anon_sym_BSLASHincludesvg] = ACTIONS(4491), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4491), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4491), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4491), + [anon_sym_BSLASHimport] = ACTIONS(4491), + [anon_sym_BSLASHsubimport] = ACTIONS(4491), + [anon_sym_BSLASHinputfrom] = ACTIONS(4491), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4491), + [anon_sym_BSLASHincludefrom] = ACTIONS(4491), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4491), + [anon_sym_BSLASHcaption] = ACTIONS(4491), + [anon_sym_BSLASHcite] = ACTIONS(4491), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCite] = ACTIONS(4491), + [anon_sym_BSLASHnocite] = ACTIONS(4491), + [anon_sym_BSLASHcitet] = ACTIONS(4491), + [anon_sym_BSLASHcitep] = ACTIONS(4491), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteauthor] = ACTIONS(4491), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4491), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitetitle] = ACTIONS(4491), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteyear] = ACTIONS(4491), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitedate] = ACTIONS(4491), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteurl] = ACTIONS(4491), + [anon_sym_BSLASHfullcite] = ACTIONS(4491), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4491), + [anon_sym_BSLASHcitealt] = ACTIONS(4491), + [anon_sym_BSLASHcitealp] = ACTIONS(4491), + [anon_sym_BSLASHcitetext] = ACTIONS(4491), + [anon_sym_BSLASHparencite] = ACTIONS(4491), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHParencite] = ACTIONS(4491), + [anon_sym_BSLASHfootcite] = ACTIONS(4491), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4491), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4491), + [anon_sym_BSLASHtextcite] = ACTIONS(4491), + [anon_sym_BSLASHTextcite] = ACTIONS(4491), + [anon_sym_BSLASHsmartcite] = ACTIONS(4491), + [anon_sym_BSLASHSmartcite] = ACTIONS(4491), + [anon_sym_BSLASHsupercite] = ACTIONS(4491), + [anon_sym_BSLASHautocite] = ACTIONS(4491), + [anon_sym_BSLASHAutocite] = ACTIONS(4491), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHvolcite] = ACTIONS(4491), + [anon_sym_BSLASHVolcite] = ACTIONS(4491), + [anon_sym_BSLASHpvolcite] = ACTIONS(4491), + [anon_sym_BSLASHPvolcite] = ACTIONS(4491), + [anon_sym_BSLASHfvolcite] = ACTIONS(4491), + [anon_sym_BSLASHftvolcite] = ACTIONS(4491), + [anon_sym_BSLASHsvolcite] = ACTIONS(4491), + [anon_sym_BSLASHSvolcite] = ACTIONS(4491), + [anon_sym_BSLASHtvolcite] = ACTIONS(4491), + [anon_sym_BSLASHTvolcite] = ACTIONS(4491), + [anon_sym_BSLASHavolcite] = ACTIONS(4491), + [anon_sym_BSLASHAvolcite] = ACTIONS(4491), + [anon_sym_BSLASHnotecite] = ACTIONS(4491), + [anon_sym_BSLASHNotecite] = ACTIONS(4491), + [anon_sym_BSLASHpnotecite] = ACTIONS(4491), + [anon_sym_BSLASHPnotecite] = ACTIONS(4491), + [anon_sym_BSLASHfnotecite] = ACTIONS(4491), + [anon_sym_BSLASHlabel] = ACTIONS(4491), + [anon_sym_BSLASHref] = ACTIONS(4491), + [anon_sym_BSLASHeqref] = ACTIONS(4491), + [anon_sym_BSLASHvref] = ACTIONS(4491), + [anon_sym_BSLASHVref] = ACTIONS(4491), + [anon_sym_BSLASHautoref] = ACTIONS(4491), + [anon_sym_BSLASHpageref] = ACTIONS(4491), + [anon_sym_BSLASHcref] = ACTIONS(4491), + [anon_sym_BSLASHCref] = ACTIONS(4491), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4489), + [anon_sym_BSLASHnamecref] = ACTIONS(4491), + [anon_sym_BSLASHnameCref] = ACTIONS(4491), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4491), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4491), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4491), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4491), + [anon_sym_BSLASHlabelcref] = ACTIONS(4491), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4491), + [anon_sym_BSLASHcrefrange] = ACTIONS(4491), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCrefrange] = ACTIONS(4491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4489), + [anon_sym_BSLASHnewlabel] = ACTIONS(4491), + [anon_sym_BSLASHnewcommand] = ACTIONS(4491), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4491), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4491), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4491), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4489), + [anon_sym_BSLASHdef] = ACTIONS(4491), + [anon_sym_BSLASHlet] = ACTIONS(4491), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4491), + [anon_sym_BSLASHgls] = ACTIONS(4491), + [anon_sym_BSLASHGls] = ACTIONS(4491), + [anon_sym_BSLASHGLS] = ACTIONS(4491), + [anon_sym_BSLASHglspl] = ACTIONS(4491), + [anon_sym_BSLASHGlspl] = ACTIONS(4491), + [anon_sym_BSLASHGLSpl] = ACTIONS(4491), + [anon_sym_BSLASHglsdisp] = ACTIONS(4491), + [anon_sym_BSLASHglslink] = ACTIONS(4491), + [anon_sym_BSLASHglstext] = ACTIONS(4491), + [anon_sym_BSLASHGlstext] = ACTIONS(4491), + [anon_sym_BSLASHGLStext] = ACTIONS(4491), + [anon_sym_BSLASHglsfirst] = ACTIONS(4491), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4491), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4491), + [anon_sym_BSLASHglsplural] = ACTIONS(4491), + [anon_sym_BSLASHGlsplural] = ACTIONS(4491), + [anon_sym_BSLASHGLSplural] = ACTIONS(4491), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHglsname] = ACTIONS(4491), + [anon_sym_BSLASHGlsname] = ACTIONS(4491), + [anon_sym_BSLASHGLSname] = ACTIONS(4491), + [anon_sym_BSLASHglssymbol] = ACTIONS(4491), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4491), + [anon_sym_BSLASHglsdesc] = ACTIONS(4491), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4491), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4491), + [anon_sym_BSLASHglsuseri] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4491), + [anon_sym_BSLASHglsuserii] = ACTIONS(4491), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4491), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4491), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4491), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4491), + [anon_sym_BSLASHglsuserv] = ACTIONS(4491), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4491), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4491), + [anon_sym_BSLASHglsuservi] = ACTIONS(4491), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4491), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4491), + [anon_sym_BSLASHnewacronym] = ACTIONS(4491), + [anon_sym_BSLASHacrshort] = ACTIONS(4491), + [anon_sym_BSLASHAcrshort] = ACTIONS(4491), + [anon_sym_BSLASHACRshort] = ACTIONS(4491), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4491), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4491), + [anon_sym_BSLASHacrlong] = ACTIONS(4491), + [anon_sym_BSLASHAcrlong] = ACTIONS(4491), + [anon_sym_BSLASHACRlong] = ACTIONS(4491), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4491), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4491), + [anon_sym_BSLASHacrfull] = ACTIONS(4491), + [anon_sym_BSLASHAcrfull] = ACTIONS(4491), + [anon_sym_BSLASHACRfull] = ACTIONS(4491), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4491), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4491), + [anon_sym_BSLASHacs] = ACTIONS(4491), + [anon_sym_BSLASHAcs] = ACTIONS(4491), + [anon_sym_BSLASHacsp] = ACTIONS(4491), + [anon_sym_BSLASHAcsp] = ACTIONS(4491), + [anon_sym_BSLASHacl] = ACTIONS(4491), + [anon_sym_BSLASHAcl] = ACTIONS(4491), + [anon_sym_BSLASHaclp] = ACTIONS(4491), + [anon_sym_BSLASHAclp] = ACTIONS(4491), + [anon_sym_BSLASHacf] = ACTIONS(4491), + [anon_sym_BSLASHAcf] = ACTIONS(4491), + [anon_sym_BSLASHacfp] = ACTIONS(4491), + [anon_sym_BSLASHAcfp] = ACTIONS(4491), + [anon_sym_BSLASHac] = ACTIONS(4491), + [anon_sym_BSLASHAc] = ACTIONS(4491), + [anon_sym_BSLASHacp] = ACTIONS(4491), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4491), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4491), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4491), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4491), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4491), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4491), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4491), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4491), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4491), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4491), + [anon_sym_BSLASHcolor] = ACTIONS(4491), + [anon_sym_BSLASHcolorbox] = ACTIONS(4491), + [anon_sym_BSLASHtextcolor] = ACTIONS(4491), + [anon_sym_BSLASHpagecolor] = ACTIONS(4491), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4491), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4491), + [anon_sym_BSLASHtext] = ACTIONS(4491), + [anon_sym_BSLASHintertext] = ACTIONS(4491), + [anon_sym_shortintertext] = ACTIONS(4491), }, - [619] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), + [438] = { + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(632), + [aux_sym__section_repeat4] = STATE(632), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [620] = { - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(604), - [aux_sym__section_repeat6] = STATE(604), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), + [439] = { + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(633), + [aux_sym__section_repeat5] = STATE(633), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [621] = { - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(603), - [aux_sym__section_repeat5] = STATE(603), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), + [440] = { + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(1965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1963), + [anon_sym_EQ] = ACTIONS(1963), + [anon_sym_BSLASHpart] = ACTIONS(1965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddpart] = ACTIONS(1965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHchapter] = ACTIONS(1965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddchap] = ACTIONS(1965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsection] = ACTIONS(1965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddsec] = ACTIONS(1965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHparagraph] = ACTIONS(1965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(1963), + [sym_word] = ACTIONS(1965), + [sym_placeholder] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1965), + [anon_sym_SLASH] = ACTIONS(1965), + [anon_sym_CARET] = ACTIONS(1965), + [anon_sym__] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1965), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1963), + [anon_sym_BSLASHbegin] = ACTIONS(1965), + [anon_sym_BSLASHend] = ACTIONS(1965), + [anon_sym_BSLASHusepackage] = ACTIONS(1965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1965), + [anon_sym_BSLASHinclude] = ACTIONS(1965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1965), + [anon_sym_BSLASHinput] = ACTIONS(1965), + [anon_sym_BSLASHsubfile] = ACTIONS(1965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1965), + [anon_sym_BSLASHbibliography] = ACTIONS(1965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1965), + [anon_sym_BSLASHincludesvg] = ACTIONS(1965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1965), + [anon_sym_BSLASHimport] = ACTIONS(1965), + [anon_sym_BSLASHsubimport] = ACTIONS(1965), + [anon_sym_BSLASHinputfrom] = ACTIONS(1965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1965), + [anon_sym_BSLASHincludefrom] = ACTIONS(1965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1965), + [anon_sym_BSLASHcaption] = ACTIONS(1965), + [anon_sym_BSLASHcite] = ACTIONS(1965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCite] = ACTIONS(1965), + [anon_sym_BSLASHnocite] = ACTIONS(1965), + [anon_sym_BSLASHcitet] = ACTIONS(1965), + [anon_sym_BSLASHcitep] = ACTIONS(1965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteauthor] = ACTIONS(1965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitetitle] = ACTIONS(1965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteyear] = ACTIONS(1965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitedate] = ACTIONS(1965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteurl] = ACTIONS(1965), + [anon_sym_BSLASHfullcite] = ACTIONS(1965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1965), + [anon_sym_BSLASHcitealt] = ACTIONS(1965), + [anon_sym_BSLASHcitealp] = ACTIONS(1965), + [anon_sym_BSLASHcitetext] = ACTIONS(1965), + [anon_sym_BSLASHparencite] = ACTIONS(1965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHParencite] = ACTIONS(1965), + [anon_sym_BSLASHfootcite] = ACTIONS(1965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1965), + [anon_sym_BSLASHtextcite] = ACTIONS(1965), + [anon_sym_BSLASHTextcite] = ACTIONS(1965), + [anon_sym_BSLASHsmartcite] = ACTIONS(1965), + [anon_sym_BSLASHSmartcite] = ACTIONS(1965), + [anon_sym_BSLASHsupercite] = ACTIONS(1965), + [anon_sym_BSLASHautocite] = ACTIONS(1965), + [anon_sym_BSLASHAutocite] = ACTIONS(1965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHvolcite] = ACTIONS(1965), + [anon_sym_BSLASHVolcite] = ACTIONS(1965), + [anon_sym_BSLASHpvolcite] = ACTIONS(1965), + [anon_sym_BSLASHPvolcite] = ACTIONS(1965), + [anon_sym_BSLASHfvolcite] = ACTIONS(1965), + [anon_sym_BSLASHftvolcite] = ACTIONS(1965), + [anon_sym_BSLASHsvolcite] = ACTIONS(1965), + [anon_sym_BSLASHSvolcite] = ACTIONS(1965), + [anon_sym_BSLASHtvolcite] = ACTIONS(1965), + [anon_sym_BSLASHTvolcite] = ACTIONS(1965), + [anon_sym_BSLASHavolcite] = ACTIONS(1965), + [anon_sym_BSLASHAvolcite] = ACTIONS(1965), + [anon_sym_BSLASHnotecite] = ACTIONS(1965), + [anon_sym_BSLASHNotecite] = ACTIONS(1965), + [anon_sym_BSLASHpnotecite] = ACTIONS(1965), + [anon_sym_BSLASHPnotecite] = ACTIONS(1965), + [anon_sym_BSLASHfnotecite] = ACTIONS(1965), + [anon_sym_BSLASHlabel] = ACTIONS(1965), + [anon_sym_BSLASHref] = ACTIONS(1965), + [anon_sym_BSLASHeqref] = ACTIONS(1965), + [anon_sym_BSLASHvref] = ACTIONS(1965), + [anon_sym_BSLASHVref] = ACTIONS(1965), + [anon_sym_BSLASHautoref] = ACTIONS(1965), + [anon_sym_BSLASHpageref] = ACTIONS(1965), + [anon_sym_BSLASHcref] = ACTIONS(1965), + [anon_sym_BSLASHCref] = ACTIONS(1965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1963), + [anon_sym_BSLASHnamecref] = ACTIONS(1965), + [anon_sym_BSLASHnameCref] = ACTIONS(1965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1965), + [anon_sym_BSLASHlabelcref] = ACTIONS(1965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1965), + [anon_sym_BSLASHcrefrange] = ACTIONS(1965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCrefrange] = ACTIONS(1965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1963), + [anon_sym_BSLASHnewlabel] = ACTIONS(1965), + [anon_sym_BSLASHnewcommand] = ACTIONS(1965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1963), + [anon_sym_BSLASHdef] = ACTIONS(1965), + [anon_sym_BSLASHlet] = ACTIONS(1965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1965), + [anon_sym_BSLASHgls] = ACTIONS(1965), + [anon_sym_BSLASHGls] = ACTIONS(1965), + [anon_sym_BSLASHGLS] = ACTIONS(1965), + [anon_sym_BSLASHglspl] = ACTIONS(1965), + [anon_sym_BSLASHGlspl] = ACTIONS(1965), + [anon_sym_BSLASHGLSpl] = ACTIONS(1965), + [anon_sym_BSLASHglsdisp] = ACTIONS(1965), + [anon_sym_BSLASHglslink] = ACTIONS(1965), + [anon_sym_BSLASHglstext] = ACTIONS(1965), + [anon_sym_BSLASHGlstext] = ACTIONS(1965), + [anon_sym_BSLASHGLStext] = ACTIONS(1965), + [anon_sym_BSLASHglsfirst] = ACTIONS(1965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1965), + [anon_sym_BSLASHglsplural] = ACTIONS(1965), + [anon_sym_BSLASHGlsplural] = ACTIONS(1965), + [anon_sym_BSLASHGLSplural] = ACTIONS(1965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHglsname] = ACTIONS(1965), + [anon_sym_BSLASHGlsname] = ACTIONS(1965), + [anon_sym_BSLASHGLSname] = ACTIONS(1965), + [anon_sym_BSLASHglssymbol] = ACTIONS(1965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1965), + [anon_sym_BSLASHglsdesc] = ACTIONS(1965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1965), + [anon_sym_BSLASHglsuseri] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1965), + [anon_sym_BSLASHglsuserii] = ACTIONS(1965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1965), + [anon_sym_BSLASHglsuserv] = ACTIONS(1965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1965), + [anon_sym_BSLASHglsuservi] = ACTIONS(1965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1965), + [anon_sym_BSLASHnewacronym] = ACTIONS(1965), + [anon_sym_BSLASHacrshort] = ACTIONS(1965), + [anon_sym_BSLASHAcrshort] = ACTIONS(1965), + [anon_sym_BSLASHACRshort] = ACTIONS(1965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1965), + [anon_sym_BSLASHacrlong] = ACTIONS(1965), + [anon_sym_BSLASHAcrlong] = ACTIONS(1965), + [anon_sym_BSLASHACRlong] = ACTIONS(1965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1965), + [anon_sym_BSLASHacrfull] = ACTIONS(1965), + [anon_sym_BSLASHAcrfull] = ACTIONS(1965), + [anon_sym_BSLASHACRfull] = ACTIONS(1965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1965), + [anon_sym_BSLASHacs] = ACTIONS(1965), + [anon_sym_BSLASHAcs] = ACTIONS(1965), + [anon_sym_BSLASHacsp] = ACTIONS(1965), + [anon_sym_BSLASHAcsp] = ACTIONS(1965), + [anon_sym_BSLASHacl] = ACTIONS(1965), + [anon_sym_BSLASHAcl] = ACTIONS(1965), + [anon_sym_BSLASHaclp] = ACTIONS(1965), + [anon_sym_BSLASHAclp] = ACTIONS(1965), + [anon_sym_BSLASHacf] = ACTIONS(1965), + [anon_sym_BSLASHAcf] = ACTIONS(1965), + [anon_sym_BSLASHacfp] = ACTIONS(1965), + [anon_sym_BSLASHAcfp] = ACTIONS(1965), + [anon_sym_BSLASHac] = ACTIONS(1965), + [anon_sym_BSLASHAc] = ACTIONS(1965), + [anon_sym_BSLASHacp] = ACTIONS(1965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1965), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1965), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1965), + [anon_sym_BSLASHcolor] = ACTIONS(1965), + [anon_sym_BSLASHcolorbox] = ACTIONS(1965), + [anon_sym_BSLASHtextcolor] = ACTIONS(1965), + [anon_sym_BSLASHpagecolor] = ACTIONS(1965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1965), + [anon_sym_BSLASHtext] = ACTIONS(1965), + [anon_sym_BSLASHintertext] = ACTIONS(1965), + [anon_sym_shortintertext] = ACTIONS(1965), }, - [622] = { - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(602), - [aux_sym__section_repeat4] = STATE(602), - [sym_command_name] = ACTIONS(4391), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4389), - [anon_sym_RPAREN] = ACTIONS(4389), - [anon_sym_LBRACK] = ACTIONS(4389), - [anon_sym_RBRACK] = ACTIONS(4389), - [anon_sym_COMMA] = ACTIONS(4389), - [anon_sym_EQ] = ACTIONS(4389), - [anon_sym_BSLASHpart] = ACTIONS(4391), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddpart] = ACTIONS(4391), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4389), - [anon_sym_BSLASHchapter] = ACTIONS(4391), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddchap] = ACTIONS(4391), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsection] = ACTIONS(4391), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHaddsec] = ACTIONS(4391), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4391), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4389), - [anon_sym_BSLASHparagraph] = ACTIONS(4391), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4391), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4389), - [anon_sym_BSLASHitem] = ACTIONS(4391), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4389), - [anon_sym_LBRACE] = ACTIONS(4389), - [sym_word] = ACTIONS(4391), - [sym_placeholder] = ACTIONS(4389), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_SLASH] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym__] = ACTIONS(4391), - [anon_sym_LT] = ACTIONS(4391), - [anon_sym_GT] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_PIPE] = ACTIONS(4391), - [anon_sym_COLON] = ACTIONS(4391), - [anon_sym_SQUOTE] = ACTIONS(4391), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4389), - [anon_sym_DOLLAR] = ACTIONS(4391), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4389), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4389), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4389), - [anon_sym_BSLASHbegin] = ACTIONS(4391), - [anon_sym_BSLASHusepackage] = ACTIONS(4391), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4391), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4391), - [anon_sym_BSLASHinclude] = ACTIONS(4391), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4391), - [anon_sym_BSLASHinput] = ACTIONS(4391), - [anon_sym_BSLASHsubfile] = ACTIONS(4391), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4391), - [anon_sym_BSLASHbibliography] = ACTIONS(4391), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4391), - [anon_sym_BSLASHincludesvg] = ACTIONS(4391), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4391), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4391), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4391), - [anon_sym_BSLASHimport] = ACTIONS(4391), - [anon_sym_BSLASHsubimport] = ACTIONS(4391), - [anon_sym_BSLASHinputfrom] = ACTIONS(4391), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4391), - [anon_sym_BSLASHincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4391), - [anon_sym_BSLASHcaption] = ACTIONS(4391), - [anon_sym_BSLASHcite] = ACTIONS(4391), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCite] = ACTIONS(4391), - [anon_sym_BSLASHnocite] = ACTIONS(4391), - [anon_sym_BSLASHcitet] = ACTIONS(4391), - [anon_sym_BSLASHcitep] = ACTIONS(4391), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteauthor] = ACTIONS(4391), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4391), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitetitle] = ACTIONS(4391), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteyear] = ACTIONS(4391), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4389), - [anon_sym_BSLASHcitedate] = ACTIONS(4391), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4389), - [anon_sym_BSLASHciteurl] = ACTIONS(4391), - [anon_sym_BSLASHfullcite] = ACTIONS(4391), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4391), - [anon_sym_BSLASHcitealt] = ACTIONS(4391), - [anon_sym_BSLASHcitealp] = ACTIONS(4391), - [anon_sym_BSLASHcitetext] = ACTIONS(4391), - [anon_sym_BSLASHparencite] = ACTIONS(4391), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHParencite] = ACTIONS(4391), - [anon_sym_BSLASHfootcite] = ACTIONS(4391), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4391), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4391), - [anon_sym_BSLASHtextcite] = ACTIONS(4391), - [anon_sym_BSLASHTextcite] = ACTIONS(4391), - [anon_sym_BSLASHsmartcite] = ACTIONS(4391), - [anon_sym_BSLASHSmartcite] = ACTIONS(4391), - [anon_sym_BSLASHsupercite] = ACTIONS(4391), - [anon_sym_BSLASHautocite] = ACTIONS(4391), - [anon_sym_BSLASHAutocite] = ACTIONS(4391), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4389), - [anon_sym_BSLASHvolcite] = ACTIONS(4391), - [anon_sym_BSLASHVolcite] = ACTIONS(4391), - [anon_sym_BSLASHpvolcite] = ACTIONS(4391), - [anon_sym_BSLASHPvolcite] = ACTIONS(4391), - [anon_sym_BSLASHfvolcite] = ACTIONS(4391), - [anon_sym_BSLASHftvolcite] = ACTIONS(4391), - [anon_sym_BSLASHsvolcite] = ACTIONS(4391), - [anon_sym_BSLASHSvolcite] = ACTIONS(4391), - [anon_sym_BSLASHtvolcite] = ACTIONS(4391), - [anon_sym_BSLASHTvolcite] = ACTIONS(4391), - [anon_sym_BSLASHavolcite] = ACTIONS(4391), - [anon_sym_BSLASHAvolcite] = ACTIONS(4391), - [anon_sym_BSLASHnotecite] = ACTIONS(4391), - [anon_sym_BSLASHNotecite] = ACTIONS(4391), - [anon_sym_BSLASHpnotecite] = ACTIONS(4391), - [anon_sym_BSLASHPnotecite] = ACTIONS(4391), - [anon_sym_BSLASHfnotecite] = ACTIONS(4391), - [anon_sym_BSLASHlabel] = ACTIONS(4391), - [anon_sym_BSLASHref] = ACTIONS(4391), - [anon_sym_BSLASHeqref] = ACTIONS(4391), - [anon_sym_BSLASHvref] = ACTIONS(4391), - [anon_sym_BSLASHVref] = ACTIONS(4391), - [anon_sym_BSLASHautoref] = ACTIONS(4391), - [anon_sym_BSLASHpageref] = ACTIONS(4391), - [anon_sym_BSLASHcref] = ACTIONS(4391), - [anon_sym_BSLASHCref] = ACTIONS(4391), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnameCref] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4391), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4391), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4391), - [anon_sym_BSLASHlabelcref] = ACTIONS(4391), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange] = ACTIONS(4391), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHCrefrange] = ACTIONS(4391), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4389), - [anon_sym_BSLASHnewlabel] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand] = ACTIONS(4391), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4391), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4391), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4389), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4391), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4389), - [anon_sym_BSLASHdef] = ACTIONS(4391), - [anon_sym_BSLASHlet] = ACTIONS(4391), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4391), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4391), - [anon_sym_BSLASHgls] = ACTIONS(4391), - [anon_sym_BSLASHGls] = ACTIONS(4391), - [anon_sym_BSLASHGLS] = ACTIONS(4391), - [anon_sym_BSLASHglspl] = ACTIONS(4391), - [anon_sym_BSLASHGlspl] = ACTIONS(4391), - [anon_sym_BSLASHGLSpl] = ACTIONS(4391), - [anon_sym_BSLASHglsdisp] = ACTIONS(4391), - [anon_sym_BSLASHglslink] = ACTIONS(4391), - [anon_sym_BSLASHglstext] = ACTIONS(4391), - [anon_sym_BSLASHGlstext] = ACTIONS(4391), - [anon_sym_BSLASHGLStext] = ACTIONS(4391), - [anon_sym_BSLASHglsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4391), - [anon_sym_BSLASHglsplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSplural] = ACTIONS(4391), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4391), - [anon_sym_BSLASHglsname] = ACTIONS(4391), - [anon_sym_BSLASHGlsname] = ACTIONS(4391), - [anon_sym_BSLASHGLSname] = ACTIONS(4391), - [anon_sym_BSLASHglssymbol] = ACTIONS(4391), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4391), - [anon_sym_BSLASHglsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4391), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4391), - [anon_sym_BSLASHglsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4391), - [anon_sym_BSLASHglsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4391), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4391), - [anon_sym_BSLASHglsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4391), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4391), - [anon_sym_BSLASHglsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4391), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4391), - [anon_sym_BSLASHnewacronym] = ACTIONS(4391), - [anon_sym_BSLASHacrshort] = ACTIONS(4391), - [anon_sym_BSLASHAcrshort] = ACTIONS(4391), - [anon_sym_BSLASHACRshort] = ACTIONS(4391), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4391), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4391), - [anon_sym_BSLASHacrlong] = ACTIONS(4391), - [anon_sym_BSLASHAcrlong] = ACTIONS(4391), - [anon_sym_BSLASHACRlong] = ACTIONS(4391), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4391), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4391), - [anon_sym_BSLASHacrfull] = ACTIONS(4391), - [anon_sym_BSLASHAcrfull] = ACTIONS(4391), - [anon_sym_BSLASHACRfull] = ACTIONS(4391), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4391), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4391), - [anon_sym_BSLASHacs] = ACTIONS(4391), - [anon_sym_BSLASHAcs] = ACTIONS(4391), - [anon_sym_BSLASHacsp] = ACTIONS(4391), - [anon_sym_BSLASHAcsp] = ACTIONS(4391), - [anon_sym_BSLASHacl] = ACTIONS(4391), - [anon_sym_BSLASHAcl] = ACTIONS(4391), - [anon_sym_BSLASHaclp] = ACTIONS(4391), - [anon_sym_BSLASHAclp] = ACTIONS(4391), - [anon_sym_BSLASHacf] = ACTIONS(4391), - [anon_sym_BSLASHAcf] = ACTIONS(4391), - [anon_sym_BSLASHacfp] = ACTIONS(4391), - [anon_sym_BSLASHAcfp] = ACTIONS(4391), - [anon_sym_BSLASHac] = ACTIONS(4391), - [anon_sym_BSLASHAc] = ACTIONS(4391), - [anon_sym_BSLASHacp] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4391), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4391), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4391), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4391), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4391), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4391), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4391), - [anon_sym_BSLASHcolor] = ACTIONS(4391), - [anon_sym_BSLASHcolorbox] = ACTIONS(4391), - [anon_sym_BSLASHtextcolor] = ACTIONS(4391), - [anon_sym_BSLASHpagecolor] = ACTIONS(4391), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4391), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4391), + [441] = { + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(4495), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_RPAREN] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_RBRACK] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_BSLASHpart] = ACTIONS(4495), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddpart] = ACTIONS(4495), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4493), + [anon_sym_BSLASHchapter] = ACTIONS(4495), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddchap] = ACTIONS(4495), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsection] = ACTIONS(4495), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddsec] = ACTIONS(4495), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubsection] = ACTIONS(4495), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4495), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHparagraph] = ACTIONS(4495), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4495), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4493), + [anon_sym_BSLASHitem] = ACTIONS(4641), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4493), + [sym_word] = ACTIONS(4495), + [sym_placeholder] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4495), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_CARET] = ACTIONS(4495), + [anon_sym__] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4493), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4493), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4493), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4493), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4493), + [anon_sym_BSLASHbegin] = ACTIONS(4495), + [anon_sym_BSLASHusepackage] = ACTIONS(4495), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4495), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4495), + [anon_sym_BSLASHinclude] = ACTIONS(4495), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4495), + [anon_sym_BSLASHinput] = ACTIONS(4495), + [anon_sym_BSLASHsubfile] = ACTIONS(4495), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4495), + [anon_sym_BSLASHbibliography] = ACTIONS(4495), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4495), + [anon_sym_BSLASHincludesvg] = ACTIONS(4495), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4495), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4495), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4495), + [anon_sym_BSLASHimport] = ACTIONS(4495), + [anon_sym_BSLASHsubimport] = ACTIONS(4495), + [anon_sym_BSLASHinputfrom] = ACTIONS(4495), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4495), + [anon_sym_BSLASHincludefrom] = ACTIONS(4495), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4495), + [anon_sym_BSLASHcaption] = ACTIONS(4495), + [anon_sym_BSLASHcite] = ACTIONS(4495), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCite] = ACTIONS(4495), + [anon_sym_BSLASHnocite] = ACTIONS(4495), + [anon_sym_BSLASHcitet] = ACTIONS(4495), + [anon_sym_BSLASHcitep] = ACTIONS(4495), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteauthor] = ACTIONS(4495), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4495), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitetitle] = ACTIONS(4495), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteyear] = ACTIONS(4495), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitedate] = ACTIONS(4495), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteurl] = ACTIONS(4495), + [anon_sym_BSLASHfullcite] = ACTIONS(4495), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4495), + [anon_sym_BSLASHcitealt] = ACTIONS(4495), + [anon_sym_BSLASHcitealp] = ACTIONS(4495), + [anon_sym_BSLASHcitetext] = ACTIONS(4495), + [anon_sym_BSLASHparencite] = ACTIONS(4495), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHParencite] = ACTIONS(4495), + [anon_sym_BSLASHfootcite] = ACTIONS(4495), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4495), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4495), + [anon_sym_BSLASHtextcite] = ACTIONS(4495), + [anon_sym_BSLASHTextcite] = ACTIONS(4495), + [anon_sym_BSLASHsmartcite] = ACTIONS(4495), + [anon_sym_BSLASHSmartcite] = ACTIONS(4495), + [anon_sym_BSLASHsupercite] = ACTIONS(4495), + [anon_sym_BSLASHautocite] = ACTIONS(4495), + [anon_sym_BSLASHAutocite] = ACTIONS(4495), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHvolcite] = ACTIONS(4495), + [anon_sym_BSLASHVolcite] = ACTIONS(4495), + [anon_sym_BSLASHpvolcite] = ACTIONS(4495), + [anon_sym_BSLASHPvolcite] = ACTIONS(4495), + [anon_sym_BSLASHfvolcite] = ACTIONS(4495), + [anon_sym_BSLASHftvolcite] = ACTIONS(4495), + [anon_sym_BSLASHsvolcite] = ACTIONS(4495), + [anon_sym_BSLASHSvolcite] = ACTIONS(4495), + [anon_sym_BSLASHtvolcite] = ACTIONS(4495), + [anon_sym_BSLASHTvolcite] = ACTIONS(4495), + [anon_sym_BSLASHavolcite] = ACTIONS(4495), + [anon_sym_BSLASHAvolcite] = ACTIONS(4495), + [anon_sym_BSLASHnotecite] = ACTIONS(4495), + [anon_sym_BSLASHNotecite] = ACTIONS(4495), + [anon_sym_BSLASHpnotecite] = ACTIONS(4495), + [anon_sym_BSLASHPnotecite] = ACTIONS(4495), + [anon_sym_BSLASHfnotecite] = ACTIONS(4495), + [anon_sym_BSLASHlabel] = ACTIONS(4495), + [anon_sym_BSLASHref] = ACTIONS(4495), + [anon_sym_BSLASHeqref] = ACTIONS(4495), + [anon_sym_BSLASHvref] = ACTIONS(4495), + [anon_sym_BSLASHVref] = ACTIONS(4495), + [anon_sym_BSLASHautoref] = ACTIONS(4495), + [anon_sym_BSLASHpageref] = ACTIONS(4495), + [anon_sym_BSLASHcref] = ACTIONS(4495), + [anon_sym_BSLASHCref] = ACTIONS(4495), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4493), + [anon_sym_BSLASHnamecref] = ACTIONS(4495), + [anon_sym_BSLASHnameCref] = ACTIONS(4495), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4495), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4495), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4495), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4495), + [anon_sym_BSLASHlabelcref] = ACTIONS(4495), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4495), + [anon_sym_BSLASHcrefrange] = ACTIONS(4495), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCrefrange] = ACTIONS(4495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4493), + [anon_sym_BSLASHnewlabel] = ACTIONS(4495), + [anon_sym_BSLASHnewcommand] = ACTIONS(4495), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4495), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4495), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4495), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4493), + [anon_sym_BSLASHdef] = ACTIONS(4495), + [anon_sym_BSLASHlet] = ACTIONS(4495), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4495), + [anon_sym_BSLASHgls] = ACTIONS(4495), + [anon_sym_BSLASHGls] = ACTIONS(4495), + [anon_sym_BSLASHGLS] = ACTIONS(4495), + [anon_sym_BSLASHglspl] = ACTIONS(4495), + [anon_sym_BSLASHGlspl] = ACTIONS(4495), + [anon_sym_BSLASHGLSpl] = ACTIONS(4495), + [anon_sym_BSLASHglsdisp] = ACTIONS(4495), + [anon_sym_BSLASHglslink] = ACTIONS(4495), + [anon_sym_BSLASHglstext] = ACTIONS(4495), + [anon_sym_BSLASHGlstext] = ACTIONS(4495), + [anon_sym_BSLASHGLStext] = ACTIONS(4495), + [anon_sym_BSLASHglsfirst] = ACTIONS(4495), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4495), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4495), + [anon_sym_BSLASHglsplural] = ACTIONS(4495), + [anon_sym_BSLASHGlsplural] = ACTIONS(4495), + [anon_sym_BSLASHGLSplural] = ACTIONS(4495), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHglsname] = ACTIONS(4495), + [anon_sym_BSLASHGlsname] = ACTIONS(4495), + [anon_sym_BSLASHGLSname] = ACTIONS(4495), + [anon_sym_BSLASHglssymbol] = ACTIONS(4495), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4495), + [anon_sym_BSLASHglsdesc] = ACTIONS(4495), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4495), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4495), + [anon_sym_BSLASHglsuseri] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4495), + [anon_sym_BSLASHglsuserii] = ACTIONS(4495), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4495), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4495), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4495), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4495), + [anon_sym_BSLASHglsuserv] = ACTIONS(4495), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4495), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4495), + [anon_sym_BSLASHglsuservi] = ACTIONS(4495), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4495), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4495), + [anon_sym_BSLASHnewacronym] = ACTIONS(4495), + [anon_sym_BSLASHacrshort] = ACTIONS(4495), + [anon_sym_BSLASHAcrshort] = ACTIONS(4495), + [anon_sym_BSLASHACRshort] = ACTIONS(4495), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4495), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4495), + [anon_sym_BSLASHacrlong] = ACTIONS(4495), + [anon_sym_BSLASHAcrlong] = ACTIONS(4495), + [anon_sym_BSLASHACRlong] = ACTIONS(4495), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4495), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4495), + [anon_sym_BSLASHacrfull] = ACTIONS(4495), + [anon_sym_BSLASHAcrfull] = ACTIONS(4495), + [anon_sym_BSLASHACRfull] = ACTIONS(4495), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4495), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4495), + [anon_sym_BSLASHacs] = ACTIONS(4495), + [anon_sym_BSLASHAcs] = ACTIONS(4495), + [anon_sym_BSLASHacsp] = ACTIONS(4495), + [anon_sym_BSLASHAcsp] = ACTIONS(4495), + [anon_sym_BSLASHacl] = ACTIONS(4495), + [anon_sym_BSLASHAcl] = ACTIONS(4495), + [anon_sym_BSLASHaclp] = ACTIONS(4495), + [anon_sym_BSLASHAclp] = ACTIONS(4495), + [anon_sym_BSLASHacf] = ACTIONS(4495), + [anon_sym_BSLASHAcf] = ACTIONS(4495), + [anon_sym_BSLASHacfp] = ACTIONS(4495), + [anon_sym_BSLASHAcfp] = ACTIONS(4495), + [anon_sym_BSLASHac] = ACTIONS(4495), + [anon_sym_BSLASHAc] = ACTIONS(4495), + [anon_sym_BSLASHacp] = ACTIONS(4495), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4495), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4495), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4495), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4495), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4495), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4495), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4495), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4495), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4495), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4495), + [anon_sym_BSLASHcolor] = ACTIONS(4495), + [anon_sym_BSLASHcolorbox] = ACTIONS(4495), + [anon_sym_BSLASHtextcolor] = ACTIONS(4495), + [anon_sym_BSLASHpagecolor] = ACTIONS(4495), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4495), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4495), + [anon_sym_BSLASHtext] = ACTIONS(4495), + [anon_sym_BSLASHintertext] = ACTIONS(4495), + [anon_sym_shortintertext] = ACTIONS(4495), }, - [623] = { + [442] = { [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(1947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1945), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1947), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(1945), + [sym_word] = ACTIONS(1947), + [sym_placeholder] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), + [anon_sym__] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), + [anon_sym_BSLASHbegin] = ACTIONS(1947), + [anon_sym_BSLASHend] = ACTIONS(1947), + [anon_sym_BSLASHusepackage] = ACTIONS(1947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), + [anon_sym_BSLASHinclude] = ACTIONS(1947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), + [anon_sym_BSLASHinput] = ACTIONS(1947), + [anon_sym_BSLASHsubfile] = ACTIONS(1947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), + [anon_sym_BSLASHbibliography] = ACTIONS(1947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), + [anon_sym_BSLASHincludesvg] = ACTIONS(1947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), + [anon_sym_BSLASHimport] = ACTIONS(1947), + [anon_sym_BSLASHsubimport] = ACTIONS(1947), + [anon_sym_BSLASHinputfrom] = ACTIONS(1947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), + [anon_sym_BSLASHincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHcaption] = ACTIONS(1947), + [anon_sym_BSLASHcite] = ACTIONS(1947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCite] = ACTIONS(1947), + [anon_sym_BSLASHnocite] = ACTIONS(1947), + [anon_sym_BSLASHcitet] = ACTIONS(1947), + [anon_sym_BSLASHcitep] = ACTIONS(1947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteauthor] = ACTIONS(1947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitetitle] = ACTIONS(1947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteyear] = ACTIONS(1947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitedate] = ACTIONS(1947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteurl] = ACTIONS(1947), + [anon_sym_BSLASHfullcite] = ACTIONS(1947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), + [anon_sym_BSLASHcitealt] = ACTIONS(1947), + [anon_sym_BSLASHcitealp] = ACTIONS(1947), + [anon_sym_BSLASHcitetext] = ACTIONS(1947), + [anon_sym_BSLASHparencite] = ACTIONS(1947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHParencite] = ACTIONS(1947), + [anon_sym_BSLASHfootcite] = ACTIONS(1947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), + [anon_sym_BSLASHtextcite] = ACTIONS(1947), + [anon_sym_BSLASHTextcite] = ACTIONS(1947), + [anon_sym_BSLASHsmartcite] = ACTIONS(1947), + [anon_sym_BSLASHSmartcite] = ACTIONS(1947), + [anon_sym_BSLASHsupercite] = ACTIONS(1947), + [anon_sym_BSLASHautocite] = ACTIONS(1947), + [anon_sym_BSLASHAutocite] = ACTIONS(1947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHvolcite] = ACTIONS(1947), + [anon_sym_BSLASHVolcite] = ACTIONS(1947), + [anon_sym_BSLASHpvolcite] = ACTIONS(1947), + [anon_sym_BSLASHPvolcite] = ACTIONS(1947), + [anon_sym_BSLASHfvolcite] = ACTIONS(1947), + [anon_sym_BSLASHftvolcite] = ACTIONS(1947), + [anon_sym_BSLASHsvolcite] = ACTIONS(1947), + [anon_sym_BSLASHSvolcite] = ACTIONS(1947), + [anon_sym_BSLASHtvolcite] = ACTIONS(1947), + [anon_sym_BSLASHTvolcite] = ACTIONS(1947), + [anon_sym_BSLASHavolcite] = ACTIONS(1947), + [anon_sym_BSLASHAvolcite] = ACTIONS(1947), + [anon_sym_BSLASHnotecite] = ACTIONS(1947), + [anon_sym_BSLASHNotecite] = ACTIONS(1947), + [anon_sym_BSLASHpnotecite] = ACTIONS(1947), + [anon_sym_BSLASHPnotecite] = ACTIONS(1947), + [anon_sym_BSLASHfnotecite] = ACTIONS(1947), + [anon_sym_BSLASHlabel] = ACTIONS(1947), + [anon_sym_BSLASHref] = ACTIONS(1947), + [anon_sym_BSLASHeqref] = ACTIONS(1947), + [anon_sym_BSLASHvref] = ACTIONS(1947), + [anon_sym_BSLASHVref] = ACTIONS(1947), + [anon_sym_BSLASHautoref] = ACTIONS(1947), + [anon_sym_BSLASHpageref] = ACTIONS(1947), + [anon_sym_BSLASHcref] = ACTIONS(1947), + [anon_sym_BSLASHCref] = ACTIONS(1947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnameCref] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHlabelcref] = ACTIONS(1947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCrefrange] = ACTIONS(1947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnewlabel] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), + [anon_sym_BSLASHdef] = ACTIONS(1947), + [anon_sym_BSLASHlet] = ACTIONS(1947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), + [anon_sym_BSLASHgls] = ACTIONS(1947), + [anon_sym_BSLASHGls] = ACTIONS(1947), + [anon_sym_BSLASHGLS] = ACTIONS(1947), + [anon_sym_BSLASHglspl] = ACTIONS(1947), + [anon_sym_BSLASHGlspl] = ACTIONS(1947), + [anon_sym_BSLASHGLSpl] = ACTIONS(1947), + [anon_sym_BSLASHglsdisp] = ACTIONS(1947), + [anon_sym_BSLASHglslink] = ACTIONS(1947), + [anon_sym_BSLASHglstext] = ACTIONS(1947), + [anon_sym_BSLASHGlstext] = ACTIONS(1947), + [anon_sym_BSLASHGLStext] = ACTIONS(1947), + [anon_sym_BSLASHglsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), + [anon_sym_BSLASHglsplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSplural] = ACTIONS(1947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHglsname] = ACTIONS(1947), + [anon_sym_BSLASHGlsname] = ACTIONS(1947), + [anon_sym_BSLASHGLSname] = ACTIONS(1947), + [anon_sym_BSLASHglssymbol] = ACTIONS(1947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), + [anon_sym_BSLASHglsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), + [anon_sym_BSLASHglsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), + [anon_sym_BSLASHglsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), + [anon_sym_BSLASHglsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), + [anon_sym_BSLASHglsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), + [anon_sym_BSLASHnewacronym] = ACTIONS(1947), + [anon_sym_BSLASHacrshort] = ACTIONS(1947), + [anon_sym_BSLASHAcrshort] = ACTIONS(1947), + [anon_sym_BSLASHACRshort] = ACTIONS(1947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), + [anon_sym_BSLASHacrlong] = ACTIONS(1947), + [anon_sym_BSLASHAcrlong] = ACTIONS(1947), + [anon_sym_BSLASHACRlong] = ACTIONS(1947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), + [anon_sym_BSLASHacrfull] = ACTIONS(1947), + [anon_sym_BSLASHAcrfull] = ACTIONS(1947), + [anon_sym_BSLASHACRfull] = ACTIONS(1947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), + [anon_sym_BSLASHacs] = ACTIONS(1947), + [anon_sym_BSLASHAcs] = ACTIONS(1947), + [anon_sym_BSLASHacsp] = ACTIONS(1947), + [anon_sym_BSLASHAcsp] = ACTIONS(1947), + [anon_sym_BSLASHacl] = ACTIONS(1947), + [anon_sym_BSLASHAcl] = ACTIONS(1947), + [anon_sym_BSLASHaclp] = ACTIONS(1947), + [anon_sym_BSLASHAclp] = ACTIONS(1947), + [anon_sym_BSLASHacf] = ACTIONS(1947), + [anon_sym_BSLASHAcf] = ACTIONS(1947), + [anon_sym_BSLASHacfp] = ACTIONS(1947), + [anon_sym_BSLASHAcfp] = ACTIONS(1947), + [anon_sym_BSLASHac] = ACTIONS(1947), + [anon_sym_BSLASHAc] = ACTIONS(1947), + [anon_sym_BSLASHacp] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), + [anon_sym_BSLASHcolor] = ACTIONS(1947), + [anon_sym_BSLASHcolorbox] = ACTIONS(1947), + [anon_sym_BSLASHtextcolor] = ACTIONS(1947), + [anon_sym_BSLASHpagecolor] = ACTIONS(1947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), + [anon_sym_BSLASHtext] = ACTIONS(1947), + [anon_sym_BSLASHintertext] = ACTIONS(1947), + [anon_sym_shortintertext] = ACTIONS(1947), }, - [624] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [443] = { + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(1947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1945), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(1947), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [sym_word] = ACTIONS(1947), + [sym_placeholder] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), + [anon_sym__] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), + [anon_sym_BSLASHbegin] = ACTIONS(1947), + [anon_sym_BSLASHend] = ACTIONS(1947), + [anon_sym_BSLASHusepackage] = ACTIONS(1947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), + [anon_sym_BSLASHinclude] = ACTIONS(1947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), + [anon_sym_BSLASHinput] = ACTIONS(1947), + [anon_sym_BSLASHsubfile] = ACTIONS(1947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), + [anon_sym_BSLASHbibliography] = ACTIONS(1947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), + [anon_sym_BSLASHincludesvg] = ACTIONS(1947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), + [anon_sym_BSLASHimport] = ACTIONS(1947), + [anon_sym_BSLASHsubimport] = ACTIONS(1947), + [anon_sym_BSLASHinputfrom] = ACTIONS(1947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), + [anon_sym_BSLASHincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHcaption] = ACTIONS(1947), + [anon_sym_BSLASHcite] = ACTIONS(1947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCite] = ACTIONS(1947), + [anon_sym_BSLASHnocite] = ACTIONS(1947), + [anon_sym_BSLASHcitet] = ACTIONS(1947), + [anon_sym_BSLASHcitep] = ACTIONS(1947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteauthor] = ACTIONS(1947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitetitle] = ACTIONS(1947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteyear] = ACTIONS(1947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitedate] = ACTIONS(1947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteurl] = ACTIONS(1947), + [anon_sym_BSLASHfullcite] = ACTIONS(1947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), + [anon_sym_BSLASHcitealt] = ACTIONS(1947), + [anon_sym_BSLASHcitealp] = ACTIONS(1947), + [anon_sym_BSLASHcitetext] = ACTIONS(1947), + [anon_sym_BSLASHparencite] = ACTIONS(1947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHParencite] = ACTIONS(1947), + [anon_sym_BSLASHfootcite] = ACTIONS(1947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), + [anon_sym_BSLASHtextcite] = ACTIONS(1947), + [anon_sym_BSLASHTextcite] = ACTIONS(1947), + [anon_sym_BSLASHsmartcite] = ACTIONS(1947), + [anon_sym_BSLASHSmartcite] = ACTIONS(1947), + [anon_sym_BSLASHsupercite] = ACTIONS(1947), + [anon_sym_BSLASHautocite] = ACTIONS(1947), + [anon_sym_BSLASHAutocite] = ACTIONS(1947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHvolcite] = ACTIONS(1947), + [anon_sym_BSLASHVolcite] = ACTIONS(1947), + [anon_sym_BSLASHpvolcite] = ACTIONS(1947), + [anon_sym_BSLASHPvolcite] = ACTIONS(1947), + [anon_sym_BSLASHfvolcite] = ACTIONS(1947), + [anon_sym_BSLASHftvolcite] = ACTIONS(1947), + [anon_sym_BSLASHsvolcite] = ACTIONS(1947), + [anon_sym_BSLASHSvolcite] = ACTIONS(1947), + [anon_sym_BSLASHtvolcite] = ACTIONS(1947), + [anon_sym_BSLASHTvolcite] = ACTIONS(1947), + [anon_sym_BSLASHavolcite] = ACTIONS(1947), + [anon_sym_BSLASHAvolcite] = ACTIONS(1947), + [anon_sym_BSLASHnotecite] = ACTIONS(1947), + [anon_sym_BSLASHNotecite] = ACTIONS(1947), + [anon_sym_BSLASHpnotecite] = ACTIONS(1947), + [anon_sym_BSLASHPnotecite] = ACTIONS(1947), + [anon_sym_BSLASHfnotecite] = ACTIONS(1947), + [anon_sym_BSLASHlabel] = ACTIONS(1947), + [anon_sym_BSLASHref] = ACTIONS(1947), + [anon_sym_BSLASHeqref] = ACTIONS(1947), + [anon_sym_BSLASHvref] = ACTIONS(1947), + [anon_sym_BSLASHVref] = ACTIONS(1947), + [anon_sym_BSLASHautoref] = ACTIONS(1947), + [anon_sym_BSLASHpageref] = ACTIONS(1947), + [anon_sym_BSLASHcref] = ACTIONS(1947), + [anon_sym_BSLASHCref] = ACTIONS(1947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnameCref] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHlabelcref] = ACTIONS(1947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCrefrange] = ACTIONS(1947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnewlabel] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), + [anon_sym_BSLASHdef] = ACTIONS(1947), + [anon_sym_BSLASHlet] = ACTIONS(1947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), + [anon_sym_BSLASHgls] = ACTIONS(1947), + [anon_sym_BSLASHGls] = ACTIONS(1947), + [anon_sym_BSLASHGLS] = ACTIONS(1947), + [anon_sym_BSLASHglspl] = ACTIONS(1947), + [anon_sym_BSLASHGlspl] = ACTIONS(1947), + [anon_sym_BSLASHGLSpl] = ACTIONS(1947), + [anon_sym_BSLASHglsdisp] = ACTIONS(1947), + [anon_sym_BSLASHglslink] = ACTIONS(1947), + [anon_sym_BSLASHglstext] = ACTIONS(1947), + [anon_sym_BSLASHGlstext] = ACTIONS(1947), + [anon_sym_BSLASHGLStext] = ACTIONS(1947), + [anon_sym_BSLASHglsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), + [anon_sym_BSLASHglsplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSplural] = ACTIONS(1947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHglsname] = ACTIONS(1947), + [anon_sym_BSLASHGlsname] = ACTIONS(1947), + [anon_sym_BSLASHGLSname] = ACTIONS(1947), + [anon_sym_BSLASHglssymbol] = ACTIONS(1947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), + [anon_sym_BSLASHglsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), + [anon_sym_BSLASHglsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), + [anon_sym_BSLASHglsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), + [anon_sym_BSLASHglsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), + [anon_sym_BSLASHglsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), + [anon_sym_BSLASHnewacronym] = ACTIONS(1947), + [anon_sym_BSLASHacrshort] = ACTIONS(1947), + [anon_sym_BSLASHAcrshort] = ACTIONS(1947), + [anon_sym_BSLASHACRshort] = ACTIONS(1947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), + [anon_sym_BSLASHacrlong] = ACTIONS(1947), + [anon_sym_BSLASHAcrlong] = ACTIONS(1947), + [anon_sym_BSLASHACRlong] = ACTIONS(1947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), + [anon_sym_BSLASHacrfull] = ACTIONS(1947), + [anon_sym_BSLASHAcrfull] = ACTIONS(1947), + [anon_sym_BSLASHACRfull] = ACTIONS(1947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), + [anon_sym_BSLASHacs] = ACTIONS(1947), + [anon_sym_BSLASHAcs] = ACTIONS(1947), + [anon_sym_BSLASHacsp] = ACTIONS(1947), + [anon_sym_BSLASHAcsp] = ACTIONS(1947), + [anon_sym_BSLASHacl] = ACTIONS(1947), + [anon_sym_BSLASHAcl] = ACTIONS(1947), + [anon_sym_BSLASHaclp] = ACTIONS(1947), + [anon_sym_BSLASHAclp] = ACTIONS(1947), + [anon_sym_BSLASHacf] = ACTIONS(1947), + [anon_sym_BSLASHAcf] = ACTIONS(1947), + [anon_sym_BSLASHacfp] = ACTIONS(1947), + [anon_sym_BSLASHAcfp] = ACTIONS(1947), + [anon_sym_BSLASHac] = ACTIONS(1947), + [anon_sym_BSLASHAc] = ACTIONS(1947), + [anon_sym_BSLASHacp] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), + [anon_sym_BSLASHcolor] = ACTIONS(1947), + [anon_sym_BSLASHcolorbox] = ACTIONS(1947), + [anon_sym_BSLASHtextcolor] = ACTIONS(1947), + [anon_sym_BSLASHpagecolor] = ACTIONS(1947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), + [anon_sym_BSLASHtext] = ACTIONS(1947), + [anon_sym_BSLASHintertext] = ACTIONS(1947), + [anon_sym_shortintertext] = ACTIONS(1947), }, - [625] = { - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(604), - [aux_sym__section_repeat6] = STATE(604), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [444] = { + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(4505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4503), + [anon_sym_RBRACK] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_BSLASHpart] = ACTIONS(4505), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddpart] = ACTIONS(4505), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4503), + [anon_sym_BSLASHchapter] = ACTIONS(4505), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddchap] = ACTIONS(4505), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsection] = ACTIONS(4505), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddsec] = ACTIONS(4505), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubsection] = ACTIONS(4505), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4505), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHparagraph] = ACTIONS(4505), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4647), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4650), + [anon_sym_BSLASHitem] = ACTIONS(4505), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [sym_word] = ACTIONS(4505), + [sym_placeholder] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym__] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4505), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4503), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4503), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4503), + [anon_sym_BSLASHbegin] = ACTIONS(4505), + [anon_sym_BSLASHusepackage] = ACTIONS(4505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4505), + [anon_sym_BSLASHinclude] = ACTIONS(4505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4505), + [anon_sym_BSLASHinput] = ACTIONS(4505), + [anon_sym_BSLASHsubfile] = ACTIONS(4505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4505), + [anon_sym_BSLASHbibliography] = ACTIONS(4505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4505), + [anon_sym_BSLASHincludesvg] = ACTIONS(4505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4505), + [anon_sym_BSLASHimport] = ACTIONS(4505), + [anon_sym_BSLASHsubimport] = ACTIONS(4505), + [anon_sym_BSLASHinputfrom] = ACTIONS(4505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4505), + [anon_sym_BSLASHincludefrom] = ACTIONS(4505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4505), + [anon_sym_BSLASHcaption] = ACTIONS(4505), + [anon_sym_BSLASHcite] = ACTIONS(4505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCite] = ACTIONS(4505), + [anon_sym_BSLASHnocite] = ACTIONS(4505), + [anon_sym_BSLASHcitet] = ACTIONS(4505), + [anon_sym_BSLASHcitep] = ACTIONS(4505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteauthor] = ACTIONS(4505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitetitle] = ACTIONS(4505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteyear] = ACTIONS(4505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitedate] = ACTIONS(4505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteurl] = ACTIONS(4505), + [anon_sym_BSLASHfullcite] = ACTIONS(4505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4505), + [anon_sym_BSLASHcitealt] = ACTIONS(4505), + [anon_sym_BSLASHcitealp] = ACTIONS(4505), + [anon_sym_BSLASHcitetext] = ACTIONS(4505), + [anon_sym_BSLASHparencite] = ACTIONS(4505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHParencite] = ACTIONS(4505), + [anon_sym_BSLASHfootcite] = ACTIONS(4505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4505), + [anon_sym_BSLASHtextcite] = ACTIONS(4505), + [anon_sym_BSLASHTextcite] = ACTIONS(4505), + [anon_sym_BSLASHsmartcite] = ACTIONS(4505), + [anon_sym_BSLASHSmartcite] = ACTIONS(4505), + [anon_sym_BSLASHsupercite] = ACTIONS(4505), + [anon_sym_BSLASHautocite] = ACTIONS(4505), + [anon_sym_BSLASHAutocite] = ACTIONS(4505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHvolcite] = ACTIONS(4505), + [anon_sym_BSLASHVolcite] = ACTIONS(4505), + [anon_sym_BSLASHpvolcite] = ACTIONS(4505), + [anon_sym_BSLASHPvolcite] = ACTIONS(4505), + [anon_sym_BSLASHfvolcite] = ACTIONS(4505), + [anon_sym_BSLASHftvolcite] = ACTIONS(4505), + [anon_sym_BSLASHsvolcite] = ACTIONS(4505), + [anon_sym_BSLASHSvolcite] = ACTIONS(4505), + [anon_sym_BSLASHtvolcite] = ACTIONS(4505), + [anon_sym_BSLASHTvolcite] = ACTIONS(4505), + [anon_sym_BSLASHavolcite] = ACTIONS(4505), + [anon_sym_BSLASHAvolcite] = ACTIONS(4505), + [anon_sym_BSLASHnotecite] = ACTIONS(4505), + [anon_sym_BSLASHNotecite] = ACTIONS(4505), + [anon_sym_BSLASHpnotecite] = ACTIONS(4505), + [anon_sym_BSLASHPnotecite] = ACTIONS(4505), + [anon_sym_BSLASHfnotecite] = ACTIONS(4505), + [anon_sym_BSLASHlabel] = ACTIONS(4505), + [anon_sym_BSLASHref] = ACTIONS(4505), + [anon_sym_BSLASHeqref] = ACTIONS(4505), + [anon_sym_BSLASHvref] = ACTIONS(4505), + [anon_sym_BSLASHVref] = ACTIONS(4505), + [anon_sym_BSLASHautoref] = ACTIONS(4505), + [anon_sym_BSLASHpageref] = ACTIONS(4505), + [anon_sym_BSLASHcref] = ACTIONS(4505), + [anon_sym_BSLASHCref] = ACTIONS(4505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4503), + [anon_sym_BSLASHnamecref] = ACTIONS(4505), + [anon_sym_BSLASHnameCref] = ACTIONS(4505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4505), + [anon_sym_BSLASHlabelcref] = ACTIONS(4505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4505), + [anon_sym_BSLASHcrefrange] = ACTIONS(4505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCrefrange] = ACTIONS(4505), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4503), + [anon_sym_BSLASHnewlabel] = ACTIONS(4505), + [anon_sym_BSLASHnewcommand] = ACTIONS(4505), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4505), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4505), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4503), + [anon_sym_BSLASHdef] = ACTIONS(4505), + [anon_sym_BSLASHlet] = ACTIONS(4505), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4505), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4505), + [anon_sym_BSLASHgls] = ACTIONS(4505), + [anon_sym_BSLASHGls] = ACTIONS(4505), + [anon_sym_BSLASHGLS] = ACTIONS(4505), + [anon_sym_BSLASHglspl] = ACTIONS(4505), + [anon_sym_BSLASHGlspl] = ACTIONS(4505), + [anon_sym_BSLASHGLSpl] = ACTIONS(4505), + [anon_sym_BSLASHglsdisp] = ACTIONS(4505), + [anon_sym_BSLASHglslink] = ACTIONS(4505), + [anon_sym_BSLASHglstext] = ACTIONS(4505), + [anon_sym_BSLASHGlstext] = ACTIONS(4505), + [anon_sym_BSLASHGLStext] = ACTIONS(4505), + [anon_sym_BSLASHglsfirst] = ACTIONS(4505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4505), + [anon_sym_BSLASHglsplural] = ACTIONS(4505), + [anon_sym_BSLASHGlsplural] = ACTIONS(4505), + [anon_sym_BSLASHGLSplural] = ACTIONS(4505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHglsname] = ACTIONS(4505), + [anon_sym_BSLASHGlsname] = ACTIONS(4505), + [anon_sym_BSLASHGLSname] = ACTIONS(4505), + [anon_sym_BSLASHglssymbol] = ACTIONS(4505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4505), + [anon_sym_BSLASHglsdesc] = ACTIONS(4505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4505), + [anon_sym_BSLASHglsuseri] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4505), + [anon_sym_BSLASHglsuserii] = ACTIONS(4505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4505), + [anon_sym_BSLASHglsuserv] = ACTIONS(4505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4505), + [anon_sym_BSLASHglsuservi] = ACTIONS(4505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4505), + [anon_sym_BSLASHnewacronym] = ACTIONS(4505), + [anon_sym_BSLASHacrshort] = ACTIONS(4505), + [anon_sym_BSLASHAcrshort] = ACTIONS(4505), + [anon_sym_BSLASHACRshort] = ACTIONS(4505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4505), + [anon_sym_BSLASHacrlong] = ACTIONS(4505), + [anon_sym_BSLASHAcrlong] = ACTIONS(4505), + [anon_sym_BSLASHACRlong] = ACTIONS(4505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4505), + [anon_sym_BSLASHacrfull] = ACTIONS(4505), + [anon_sym_BSLASHAcrfull] = ACTIONS(4505), + [anon_sym_BSLASHACRfull] = ACTIONS(4505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4505), + [anon_sym_BSLASHacs] = ACTIONS(4505), + [anon_sym_BSLASHAcs] = ACTIONS(4505), + [anon_sym_BSLASHacsp] = ACTIONS(4505), + [anon_sym_BSLASHAcsp] = ACTIONS(4505), + [anon_sym_BSLASHacl] = ACTIONS(4505), + [anon_sym_BSLASHAcl] = ACTIONS(4505), + [anon_sym_BSLASHaclp] = ACTIONS(4505), + [anon_sym_BSLASHAclp] = ACTIONS(4505), + [anon_sym_BSLASHacf] = ACTIONS(4505), + [anon_sym_BSLASHAcf] = ACTIONS(4505), + [anon_sym_BSLASHacfp] = ACTIONS(4505), + [anon_sym_BSLASHAcfp] = ACTIONS(4505), + [anon_sym_BSLASHac] = ACTIONS(4505), + [anon_sym_BSLASHAc] = ACTIONS(4505), + [anon_sym_BSLASHacp] = ACTIONS(4505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4505), + [anon_sym_BSLASHcolor] = ACTIONS(4505), + [anon_sym_BSLASHcolorbox] = ACTIONS(4505), + [anon_sym_BSLASHtextcolor] = ACTIONS(4505), + [anon_sym_BSLASHpagecolor] = ACTIONS(4505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4505), + [anon_sym_BSLASHtext] = ACTIONS(4505), + [anon_sym_BSLASHintertext] = ACTIONS(4505), + [anon_sym_shortintertext] = ACTIONS(4505), }, - [626] = { - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(603), - [aux_sym__section_repeat5] = STATE(603), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [445] = { + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(1923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHend] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), }, - [627] = { - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(602), - [aux_sym__section_repeat4] = STATE(602), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(4433), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddsec] = ACTIONS(4433), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [446] = { + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(1923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(1923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHend] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), }, - [628] = { + [447] = { + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(389), + [aux_sym__section_repeat6] = STATE(389), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHitem] = ACTIONS(1923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHend] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), + }, + [448] = { + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(448), + [aux_sym__section_repeat6] = STATE(448), + [sym_command_name] = ACTIONS(4515), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym_RPAREN] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_RBRACK] = ACTIONS(4513), + [anon_sym_COMMA] = ACTIONS(4513), + [anon_sym_EQ] = ACTIONS(4513), + [anon_sym_BSLASHpart] = ACTIONS(4515), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddpart] = ACTIONS(4515), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4513), + [anon_sym_BSLASHchapter] = ACTIONS(4515), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddchap] = ACTIONS(4515), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsection] = ACTIONS(4515), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddsec] = ACTIONS(4515), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsubsection] = ACTIONS(4515), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4515), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHparagraph] = ACTIONS(4653), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4656), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4515), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4513), + [anon_sym_BSLASHitem] = ACTIONS(4515), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4513), + [sym_word] = ACTIONS(4515), + [sym_placeholder] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_CARET] = ACTIONS(4515), + [anon_sym__] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4513), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4513), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4513), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4513), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4513), + [anon_sym_BSLASHbegin] = ACTIONS(4515), + [anon_sym_BSLASHusepackage] = ACTIONS(4515), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4515), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4515), + [anon_sym_BSLASHinclude] = ACTIONS(4515), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4515), + [anon_sym_BSLASHinput] = ACTIONS(4515), + [anon_sym_BSLASHsubfile] = ACTIONS(4515), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4515), + [anon_sym_BSLASHbibliography] = ACTIONS(4515), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4515), + [anon_sym_BSLASHincludesvg] = ACTIONS(4515), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4515), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4515), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4515), + [anon_sym_BSLASHimport] = ACTIONS(4515), + [anon_sym_BSLASHsubimport] = ACTIONS(4515), + [anon_sym_BSLASHinputfrom] = ACTIONS(4515), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4515), + [anon_sym_BSLASHincludefrom] = ACTIONS(4515), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4515), + [anon_sym_BSLASHcaption] = ACTIONS(4515), + [anon_sym_BSLASHcite] = ACTIONS(4515), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCite] = ACTIONS(4515), + [anon_sym_BSLASHnocite] = ACTIONS(4515), + [anon_sym_BSLASHcitet] = ACTIONS(4515), + [anon_sym_BSLASHcitep] = ACTIONS(4515), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteauthor] = ACTIONS(4515), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4515), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitetitle] = ACTIONS(4515), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteyear] = ACTIONS(4515), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitedate] = ACTIONS(4515), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteurl] = ACTIONS(4515), + [anon_sym_BSLASHfullcite] = ACTIONS(4515), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4515), + [anon_sym_BSLASHcitealt] = ACTIONS(4515), + [anon_sym_BSLASHcitealp] = ACTIONS(4515), + [anon_sym_BSLASHcitetext] = ACTIONS(4515), + [anon_sym_BSLASHparencite] = ACTIONS(4515), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHParencite] = ACTIONS(4515), + [anon_sym_BSLASHfootcite] = ACTIONS(4515), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4515), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4515), + [anon_sym_BSLASHtextcite] = ACTIONS(4515), + [anon_sym_BSLASHTextcite] = ACTIONS(4515), + [anon_sym_BSLASHsmartcite] = ACTIONS(4515), + [anon_sym_BSLASHSmartcite] = ACTIONS(4515), + [anon_sym_BSLASHsupercite] = ACTIONS(4515), + [anon_sym_BSLASHautocite] = ACTIONS(4515), + [anon_sym_BSLASHAutocite] = ACTIONS(4515), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHvolcite] = ACTIONS(4515), + [anon_sym_BSLASHVolcite] = ACTIONS(4515), + [anon_sym_BSLASHpvolcite] = ACTIONS(4515), + [anon_sym_BSLASHPvolcite] = ACTIONS(4515), + [anon_sym_BSLASHfvolcite] = ACTIONS(4515), + [anon_sym_BSLASHftvolcite] = ACTIONS(4515), + [anon_sym_BSLASHsvolcite] = ACTIONS(4515), + [anon_sym_BSLASHSvolcite] = ACTIONS(4515), + [anon_sym_BSLASHtvolcite] = ACTIONS(4515), + [anon_sym_BSLASHTvolcite] = ACTIONS(4515), + [anon_sym_BSLASHavolcite] = ACTIONS(4515), + [anon_sym_BSLASHAvolcite] = ACTIONS(4515), + [anon_sym_BSLASHnotecite] = ACTIONS(4515), + [anon_sym_BSLASHNotecite] = ACTIONS(4515), + [anon_sym_BSLASHpnotecite] = ACTIONS(4515), + [anon_sym_BSLASHPnotecite] = ACTIONS(4515), + [anon_sym_BSLASHfnotecite] = ACTIONS(4515), + [anon_sym_BSLASHlabel] = ACTIONS(4515), + [anon_sym_BSLASHref] = ACTIONS(4515), + [anon_sym_BSLASHeqref] = ACTIONS(4515), + [anon_sym_BSLASHvref] = ACTIONS(4515), + [anon_sym_BSLASHVref] = ACTIONS(4515), + [anon_sym_BSLASHautoref] = ACTIONS(4515), + [anon_sym_BSLASHpageref] = ACTIONS(4515), + [anon_sym_BSLASHcref] = ACTIONS(4515), + [anon_sym_BSLASHCref] = ACTIONS(4515), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4513), + [anon_sym_BSLASHnamecref] = ACTIONS(4515), + [anon_sym_BSLASHnameCref] = ACTIONS(4515), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4515), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4515), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4515), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4515), + [anon_sym_BSLASHlabelcref] = ACTIONS(4515), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4515), + [anon_sym_BSLASHcrefrange] = ACTIONS(4515), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCrefrange] = ACTIONS(4515), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4513), + [anon_sym_BSLASHnewlabel] = ACTIONS(4515), + [anon_sym_BSLASHnewcommand] = ACTIONS(4515), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4515), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4515), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4515), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4513), + [anon_sym_BSLASHdef] = ACTIONS(4515), + [anon_sym_BSLASHlet] = ACTIONS(4515), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4515), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4515), + [anon_sym_BSLASHgls] = ACTIONS(4515), + [anon_sym_BSLASHGls] = ACTIONS(4515), + [anon_sym_BSLASHGLS] = ACTIONS(4515), + [anon_sym_BSLASHglspl] = ACTIONS(4515), + [anon_sym_BSLASHGlspl] = ACTIONS(4515), + [anon_sym_BSLASHGLSpl] = ACTIONS(4515), + [anon_sym_BSLASHglsdisp] = ACTIONS(4515), + [anon_sym_BSLASHglslink] = ACTIONS(4515), + [anon_sym_BSLASHglstext] = ACTIONS(4515), + [anon_sym_BSLASHGlstext] = ACTIONS(4515), + [anon_sym_BSLASHGLStext] = ACTIONS(4515), + [anon_sym_BSLASHglsfirst] = ACTIONS(4515), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4515), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4515), + [anon_sym_BSLASHglsplural] = ACTIONS(4515), + [anon_sym_BSLASHGlsplural] = ACTIONS(4515), + [anon_sym_BSLASHGLSplural] = ACTIONS(4515), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHglsname] = ACTIONS(4515), + [anon_sym_BSLASHGlsname] = ACTIONS(4515), + [anon_sym_BSLASHGLSname] = ACTIONS(4515), + [anon_sym_BSLASHglssymbol] = ACTIONS(4515), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4515), + [anon_sym_BSLASHglsdesc] = ACTIONS(4515), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4515), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4515), + [anon_sym_BSLASHglsuseri] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4515), + [anon_sym_BSLASHglsuserii] = ACTIONS(4515), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4515), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4515), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4515), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4515), + [anon_sym_BSLASHglsuserv] = ACTIONS(4515), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4515), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4515), + [anon_sym_BSLASHglsuservi] = ACTIONS(4515), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4515), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4515), + [anon_sym_BSLASHnewacronym] = ACTIONS(4515), + [anon_sym_BSLASHacrshort] = ACTIONS(4515), + [anon_sym_BSLASHAcrshort] = ACTIONS(4515), + [anon_sym_BSLASHACRshort] = ACTIONS(4515), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4515), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4515), + [anon_sym_BSLASHacrlong] = ACTIONS(4515), + [anon_sym_BSLASHAcrlong] = ACTIONS(4515), + [anon_sym_BSLASHACRlong] = ACTIONS(4515), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4515), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4515), + [anon_sym_BSLASHacrfull] = ACTIONS(4515), + [anon_sym_BSLASHAcrfull] = ACTIONS(4515), + [anon_sym_BSLASHACRfull] = ACTIONS(4515), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4515), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4515), + [anon_sym_BSLASHacs] = ACTIONS(4515), + [anon_sym_BSLASHAcs] = ACTIONS(4515), + [anon_sym_BSLASHacsp] = ACTIONS(4515), + [anon_sym_BSLASHAcsp] = ACTIONS(4515), + [anon_sym_BSLASHacl] = ACTIONS(4515), + [anon_sym_BSLASHAcl] = ACTIONS(4515), + [anon_sym_BSLASHaclp] = ACTIONS(4515), + [anon_sym_BSLASHAclp] = ACTIONS(4515), + [anon_sym_BSLASHacf] = ACTIONS(4515), + [anon_sym_BSLASHAcf] = ACTIONS(4515), + [anon_sym_BSLASHacfp] = ACTIONS(4515), + [anon_sym_BSLASHAcfp] = ACTIONS(4515), + [anon_sym_BSLASHac] = ACTIONS(4515), + [anon_sym_BSLASHAc] = ACTIONS(4515), + [anon_sym_BSLASHacp] = ACTIONS(4515), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4515), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4515), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4515), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4515), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4515), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4515), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4515), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4515), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4515), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4515), + [anon_sym_BSLASHcolor] = ACTIONS(4515), + [anon_sym_BSLASHcolorbox] = ACTIONS(4515), + [anon_sym_BSLASHtextcolor] = ACTIONS(4515), + [anon_sym_BSLASHpagecolor] = ACTIONS(4515), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4515), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4515), + [anon_sym_BSLASHtext] = ACTIONS(4515), + [anon_sym_BSLASHintertext] = ACTIONS(4515), + [anon_sym_shortintertext] = ACTIONS(4515), + }, + [449] = { + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(449), + [aux_sym__section_repeat5] = STATE(449), + [sym_command_name] = ACTIONS(4525), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_RBRACK] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_BSLASHpart] = ACTIONS(4525), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddpart] = ACTIONS(4525), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4523), + [anon_sym_BSLASHchapter] = ACTIONS(4525), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddchap] = ACTIONS(4525), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsection] = ACTIONS(4525), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddsec] = ACTIONS(4525), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubsection] = ACTIONS(4525), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4659), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4662), + [anon_sym_BSLASHparagraph] = ACTIONS(4525), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4525), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4523), + [anon_sym_BSLASHitem] = ACTIONS(4525), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [sym_word] = ACTIONS(4525), + [sym_placeholder] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym__] = ACTIONS(4525), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(4525), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4523), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4523), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4523), + [anon_sym_BSLASHbegin] = ACTIONS(4525), + [anon_sym_BSLASHusepackage] = ACTIONS(4525), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4525), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4525), + [anon_sym_BSLASHinclude] = ACTIONS(4525), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4525), + [anon_sym_BSLASHinput] = ACTIONS(4525), + [anon_sym_BSLASHsubfile] = ACTIONS(4525), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4525), + [anon_sym_BSLASHbibliography] = ACTIONS(4525), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4525), + [anon_sym_BSLASHincludesvg] = ACTIONS(4525), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4525), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4525), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4525), + [anon_sym_BSLASHimport] = ACTIONS(4525), + [anon_sym_BSLASHsubimport] = ACTIONS(4525), + [anon_sym_BSLASHinputfrom] = ACTIONS(4525), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4525), + [anon_sym_BSLASHincludefrom] = ACTIONS(4525), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4525), + [anon_sym_BSLASHcaption] = ACTIONS(4525), + [anon_sym_BSLASHcite] = ACTIONS(4525), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCite] = ACTIONS(4525), + [anon_sym_BSLASHnocite] = ACTIONS(4525), + [anon_sym_BSLASHcitet] = ACTIONS(4525), + [anon_sym_BSLASHcitep] = ACTIONS(4525), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteauthor] = ACTIONS(4525), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4525), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitetitle] = ACTIONS(4525), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteyear] = ACTIONS(4525), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitedate] = ACTIONS(4525), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteurl] = ACTIONS(4525), + [anon_sym_BSLASHfullcite] = ACTIONS(4525), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4525), + [anon_sym_BSLASHcitealt] = ACTIONS(4525), + [anon_sym_BSLASHcitealp] = ACTIONS(4525), + [anon_sym_BSLASHcitetext] = ACTIONS(4525), + [anon_sym_BSLASHparencite] = ACTIONS(4525), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHParencite] = ACTIONS(4525), + [anon_sym_BSLASHfootcite] = ACTIONS(4525), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4525), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4525), + [anon_sym_BSLASHtextcite] = ACTIONS(4525), + [anon_sym_BSLASHTextcite] = ACTIONS(4525), + [anon_sym_BSLASHsmartcite] = ACTIONS(4525), + [anon_sym_BSLASHSmartcite] = ACTIONS(4525), + [anon_sym_BSLASHsupercite] = ACTIONS(4525), + [anon_sym_BSLASHautocite] = ACTIONS(4525), + [anon_sym_BSLASHAutocite] = ACTIONS(4525), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHvolcite] = ACTIONS(4525), + [anon_sym_BSLASHVolcite] = ACTIONS(4525), + [anon_sym_BSLASHpvolcite] = ACTIONS(4525), + [anon_sym_BSLASHPvolcite] = ACTIONS(4525), + [anon_sym_BSLASHfvolcite] = ACTIONS(4525), + [anon_sym_BSLASHftvolcite] = ACTIONS(4525), + [anon_sym_BSLASHsvolcite] = ACTIONS(4525), + [anon_sym_BSLASHSvolcite] = ACTIONS(4525), + [anon_sym_BSLASHtvolcite] = ACTIONS(4525), + [anon_sym_BSLASHTvolcite] = ACTIONS(4525), + [anon_sym_BSLASHavolcite] = ACTIONS(4525), + [anon_sym_BSLASHAvolcite] = ACTIONS(4525), + [anon_sym_BSLASHnotecite] = ACTIONS(4525), + [anon_sym_BSLASHNotecite] = ACTIONS(4525), + [anon_sym_BSLASHpnotecite] = ACTIONS(4525), + [anon_sym_BSLASHPnotecite] = ACTIONS(4525), + [anon_sym_BSLASHfnotecite] = ACTIONS(4525), + [anon_sym_BSLASHlabel] = ACTIONS(4525), + [anon_sym_BSLASHref] = ACTIONS(4525), + [anon_sym_BSLASHeqref] = ACTIONS(4525), + [anon_sym_BSLASHvref] = ACTIONS(4525), + [anon_sym_BSLASHVref] = ACTIONS(4525), + [anon_sym_BSLASHautoref] = ACTIONS(4525), + [anon_sym_BSLASHpageref] = ACTIONS(4525), + [anon_sym_BSLASHcref] = ACTIONS(4525), + [anon_sym_BSLASHCref] = ACTIONS(4525), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4523), + [anon_sym_BSLASHnamecref] = ACTIONS(4525), + [anon_sym_BSLASHnameCref] = ACTIONS(4525), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4525), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4525), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4525), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4525), + [anon_sym_BSLASHlabelcref] = ACTIONS(4525), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4525), + [anon_sym_BSLASHcrefrange] = ACTIONS(4525), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCrefrange] = ACTIONS(4525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4523), + [anon_sym_BSLASHnewlabel] = ACTIONS(4525), + [anon_sym_BSLASHnewcommand] = ACTIONS(4525), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4525), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4525), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4525), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4523), + [anon_sym_BSLASHdef] = ACTIONS(4525), + [anon_sym_BSLASHlet] = ACTIONS(4525), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4525), + [anon_sym_BSLASHgls] = ACTIONS(4525), + [anon_sym_BSLASHGls] = ACTIONS(4525), + [anon_sym_BSLASHGLS] = ACTIONS(4525), + [anon_sym_BSLASHglspl] = ACTIONS(4525), + [anon_sym_BSLASHGlspl] = ACTIONS(4525), + [anon_sym_BSLASHGLSpl] = ACTIONS(4525), + [anon_sym_BSLASHglsdisp] = ACTIONS(4525), + [anon_sym_BSLASHglslink] = ACTIONS(4525), + [anon_sym_BSLASHglstext] = ACTIONS(4525), + [anon_sym_BSLASHGlstext] = ACTIONS(4525), + [anon_sym_BSLASHGLStext] = ACTIONS(4525), + [anon_sym_BSLASHglsfirst] = ACTIONS(4525), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4525), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4525), + [anon_sym_BSLASHglsplural] = ACTIONS(4525), + [anon_sym_BSLASHGlsplural] = ACTIONS(4525), + [anon_sym_BSLASHGLSplural] = ACTIONS(4525), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHglsname] = ACTIONS(4525), + [anon_sym_BSLASHGlsname] = ACTIONS(4525), + [anon_sym_BSLASHGLSname] = ACTIONS(4525), + [anon_sym_BSLASHglssymbol] = ACTIONS(4525), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4525), + [anon_sym_BSLASHglsdesc] = ACTIONS(4525), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4525), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4525), + [anon_sym_BSLASHglsuseri] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4525), + [anon_sym_BSLASHglsuserii] = ACTIONS(4525), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4525), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4525), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4525), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4525), + [anon_sym_BSLASHglsuserv] = ACTIONS(4525), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4525), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4525), + [anon_sym_BSLASHglsuservi] = ACTIONS(4525), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4525), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4525), + [anon_sym_BSLASHnewacronym] = ACTIONS(4525), + [anon_sym_BSLASHacrshort] = ACTIONS(4525), + [anon_sym_BSLASHAcrshort] = ACTIONS(4525), + [anon_sym_BSLASHACRshort] = ACTIONS(4525), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4525), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4525), + [anon_sym_BSLASHacrlong] = ACTIONS(4525), + [anon_sym_BSLASHAcrlong] = ACTIONS(4525), + [anon_sym_BSLASHACRlong] = ACTIONS(4525), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4525), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4525), + [anon_sym_BSLASHacrfull] = ACTIONS(4525), + [anon_sym_BSLASHAcrfull] = ACTIONS(4525), + [anon_sym_BSLASHACRfull] = ACTIONS(4525), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4525), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4525), + [anon_sym_BSLASHacs] = ACTIONS(4525), + [anon_sym_BSLASHAcs] = ACTIONS(4525), + [anon_sym_BSLASHacsp] = ACTIONS(4525), + [anon_sym_BSLASHAcsp] = ACTIONS(4525), + [anon_sym_BSLASHacl] = ACTIONS(4525), + [anon_sym_BSLASHAcl] = ACTIONS(4525), + [anon_sym_BSLASHaclp] = ACTIONS(4525), + [anon_sym_BSLASHAclp] = ACTIONS(4525), + [anon_sym_BSLASHacf] = ACTIONS(4525), + [anon_sym_BSLASHAcf] = ACTIONS(4525), + [anon_sym_BSLASHacfp] = ACTIONS(4525), + [anon_sym_BSLASHAcfp] = ACTIONS(4525), + [anon_sym_BSLASHac] = ACTIONS(4525), + [anon_sym_BSLASHAc] = ACTIONS(4525), + [anon_sym_BSLASHacp] = ACTIONS(4525), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4525), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4525), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4525), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4525), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4525), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4525), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4525), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4525), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4525), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4525), + [anon_sym_BSLASHcolor] = ACTIONS(4525), + [anon_sym_BSLASHcolorbox] = ACTIONS(4525), + [anon_sym_BSLASHtextcolor] = ACTIONS(4525), + [anon_sym_BSLASHpagecolor] = ACTIONS(4525), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4525), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4525), + [anon_sym_BSLASHtext] = ACTIONS(4525), + [anon_sym_BSLASHintertext] = ACTIONS(4525), + [anon_sym_shortintertext] = ACTIONS(4525), + }, + [450] = { [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(4455), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4453), - [anon_sym_RPAREN] = ACTIONS(4453), - [anon_sym_LBRACK] = ACTIONS(4453), - [anon_sym_RBRACK] = ACTIONS(4453), - [anon_sym_COMMA] = ACTIONS(4453), - [anon_sym_EQ] = ACTIONS(4453), - [anon_sym_BSLASHpart] = ACTIONS(4455), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddpart] = ACTIONS(4455), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4453), - [anon_sym_BSLASHchapter] = ACTIONS(4455), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddchap] = ACTIONS(4455), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsection] = ACTIONS(4455), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHaddsec] = ACTIONS(4455), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubsection] = ACTIONS(4455), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4455), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4453), - [anon_sym_BSLASHparagraph] = ACTIONS(4455), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4453), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4455), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4453), - [anon_sym_BSLASHitem] = ACTIONS(4751), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4754), - [anon_sym_LBRACE] = ACTIONS(4453), - [sym_word] = ACTIONS(4455), - [sym_placeholder] = ACTIONS(4453), - [anon_sym_PLUS] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(4455), - [anon_sym_STAR] = ACTIONS(4455), - [anon_sym_SLASH] = ACTIONS(4455), - [anon_sym_CARET] = ACTIONS(4455), - [anon_sym__] = ACTIONS(4455), - [anon_sym_LT] = ACTIONS(4455), - [anon_sym_GT] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4455), - [anon_sym_PIPE] = ACTIONS(4455), - [anon_sym_COLON] = ACTIONS(4455), - [anon_sym_SQUOTE] = ACTIONS(4455), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4453), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4453), - [anon_sym_DOLLAR] = ACTIONS(4455), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4453), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4453), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4453), - [anon_sym_BSLASHbegin] = ACTIONS(4455), - [anon_sym_BSLASHusepackage] = ACTIONS(4455), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4455), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4455), - [anon_sym_BSLASHinclude] = ACTIONS(4455), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4455), - [anon_sym_BSLASHinput] = ACTIONS(4455), - [anon_sym_BSLASHsubfile] = ACTIONS(4455), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4455), - [anon_sym_BSLASHbibliography] = ACTIONS(4455), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4455), - [anon_sym_BSLASHincludesvg] = ACTIONS(4455), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4455), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4455), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4455), - [anon_sym_BSLASHimport] = ACTIONS(4455), - [anon_sym_BSLASHsubimport] = ACTIONS(4455), - [anon_sym_BSLASHinputfrom] = ACTIONS(4455), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4455), - [anon_sym_BSLASHincludefrom] = ACTIONS(4455), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4455), - [anon_sym_BSLASHcaption] = ACTIONS(4455), - [anon_sym_BSLASHcite] = ACTIONS(4455), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCite] = ACTIONS(4455), - [anon_sym_BSLASHnocite] = ACTIONS(4455), - [anon_sym_BSLASHcitet] = ACTIONS(4455), - [anon_sym_BSLASHcitep] = ACTIONS(4455), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteauthor] = ACTIONS(4455), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4455), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitetitle] = ACTIONS(4455), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteyear] = ACTIONS(4455), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4453), - [anon_sym_BSLASHcitedate] = ACTIONS(4455), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4453), - [anon_sym_BSLASHciteurl] = ACTIONS(4455), - [anon_sym_BSLASHfullcite] = ACTIONS(4455), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4455), - [anon_sym_BSLASHcitealt] = ACTIONS(4455), - [anon_sym_BSLASHcitealp] = ACTIONS(4455), - [anon_sym_BSLASHcitetext] = ACTIONS(4455), - [anon_sym_BSLASHparencite] = ACTIONS(4455), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHParencite] = ACTIONS(4455), - [anon_sym_BSLASHfootcite] = ACTIONS(4455), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4455), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4455), - [anon_sym_BSLASHtextcite] = ACTIONS(4455), - [anon_sym_BSLASHTextcite] = ACTIONS(4455), - [anon_sym_BSLASHsmartcite] = ACTIONS(4455), - [anon_sym_BSLASHSmartcite] = ACTIONS(4455), - [anon_sym_BSLASHsupercite] = ACTIONS(4455), - [anon_sym_BSLASHautocite] = ACTIONS(4455), - [anon_sym_BSLASHAutocite] = ACTIONS(4455), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4453), - [anon_sym_BSLASHvolcite] = ACTIONS(4455), - [anon_sym_BSLASHVolcite] = ACTIONS(4455), - [anon_sym_BSLASHpvolcite] = ACTIONS(4455), - [anon_sym_BSLASHPvolcite] = ACTIONS(4455), - [anon_sym_BSLASHfvolcite] = ACTIONS(4455), - [anon_sym_BSLASHftvolcite] = ACTIONS(4455), - [anon_sym_BSLASHsvolcite] = ACTIONS(4455), - [anon_sym_BSLASHSvolcite] = ACTIONS(4455), - [anon_sym_BSLASHtvolcite] = ACTIONS(4455), - [anon_sym_BSLASHTvolcite] = ACTIONS(4455), - [anon_sym_BSLASHavolcite] = ACTIONS(4455), - [anon_sym_BSLASHAvolcite] = ACTIONS(4455), - [anon_sym_BSLASHnotecite] = ACTIONS(4455), - [anon_sym_BSLASHNotecite] = ACTIONS(4455), - [anon_sym_BSLASHpnotecite] = ACTIONS(4455), - [anon_sym_BSLASHPnotecite] = ACTIONS(4455), - [anon_sym_BSLASHfnotecite] = ACTIONS(4455), - [anon_sym_BSLASHlabel] = ACTIONS(4455), - [anon_sym_BSLASHref] = ACTIONS(4455), - [anon_sym_BSLASHeqref] = ACTIONS(4455), - [anon_sym_BSLASHvref] = ACTIONS(4455), - [anon_sym_BSLASHVref] = ACTIONS(4455), - [anon_sym_BSLASHautoref] = ACTIONS(4455), - [anon_sym_BSLASHpageref] = ACTIONS(4455), - [anon_sym_BSLASHcref] = ACTIONS(4455), - [anon_sym_BSLASHCref] = ACTIONS(4455), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4453), - [anon_sym_BSLASHnamecref] = ACTIONS(4455), - [anon_sym_BSLASHnameCref] = ACTIONS(4455), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4455), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4455), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4455), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4455), - [anon_sym_BSLASHlabelcref] = ACTIONS(4455), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4455), - [anon_sym_BSLASHcrefrange] = ACTIONS(4455), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4453), - [anon_sym_BSLASHCrefrange] = ACTIONS(4455), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4453), - [anon_sym_BSLASHnewlabel] = ACTIONS(4455), - [anon_sym_BSLASHnewcommand] = ACTIONS(4455), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4455), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4455), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4453), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4455), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4453), - [anon_sym_BSLASHdef] = ACTIONS(4455), - [anon_sym_BSLASHlet] = ACTIONS(4455), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4455), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4455), - [anon_sym_BSLASHgls] = ACTIONS(4455), - [anon_sym_BSLASHGls] = ACTIONS(4455), - [anon_sym_BSLASHGLS] = ACTIONS(4455), - [anon_sym_BSLASHglspl] = ACTIONS(4455), - [anon_sym_BSLASHGlspl] = ACTIONS(4455), - [anon_sym_BSLASHGLSpl] = ACTIONS(4455), - [anon_sym_BSLASHglsdisp] = ACTIONS(4455), - [anon_sym_BSLASHglslink] = ACTIONS(4455), - [anon_sym_BSLASHglstext] = ACTIONS(4455), - [anon_sym_BSLASHGlstext] = ACTIONS(4455), - [anon_sym_BSLASHGLStext] = ACTIONS(4455), - [anon_sym_BSLASHglsfirst] = ACTIONS(4455), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4455), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4455), - [anon_sym_BSLASHglsplural] = ACTIONS(4455), - [anon_sym_BSLASHGlsplural] = ACTIONS(4455), - [anon_sym_BSLASHGLSplural] = ACTIONS(4455), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4455), - [anon_sym_BSLASHglsname] = ACTIONS(4455), - [anon_sym_BSLASHGlsname] = ACTIONS(4455), - [anon_sym_BSLASHGLSname] = ACTIONS(4455), - [anon_sym_BSLASHglssymbol] = ACTIONS(4455), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4455), - [anon_sym_BSLASHglsdesc] = ACTIONS(4455), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4455), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4455), - [anon_sym_BSLASHglsuseri] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4455), - [anon_sym_BSLASHglsuserii] = ACTIONS(4455), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4455), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4455), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4455), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4455), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4455), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4455), - [anon_sym_BSLASHglsuserv] = ACTIONS(4455), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4455), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4455), - [anon_sym_BSLASHglsuservi] = ACTIONS(4455), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4455), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4455), - [anon_sym_BSLASHnewacronym] = ACTIONS(4455), - [anon_sym_BSLASHacrshort] = ACTIONS(4455), - [anon_sym_BSLASHAcrshort] = ACTIONS(4455), - [anon_sym_BSLASHACRshort] = ACTIONS(4455), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4455), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4455), - [anon_sym_BSLASHacrlong] = ACTIONS(4455), - [anon_sym_BSLASHAcrlong] = ACTIONS(4455), - [anon_sym_BSLASHACRlong] = ACTIONS(4455), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4455), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4455), - [anon_sym_BSLASHacrfull] = ACTIONS(4455), - [anon_sym_BSLASHAcrfull] = ACTIONS(4455), - [anon_sym_BSLASHACRfull] = ACTIONS(4455), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4455), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4455), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4455), - [anon_sym_BSLASHacs] = ACTIONS(4455), - [anon_sym_BSLASHAcs] = ACTIONS(4455), - [anon_sym_BSLASHacsp] = ACTIONS(4455), - [anon_sym_BSLASHAcsp] = ACTIONS(4455), - [anon_sym_BSLASHacl] = ACTIONS(4455), - [anon_sym_BSLASHAcl] = ACTIONS(4455), - [anon_sym_BSLASHaclp] = ACTIONS(4455), - [anon_sym_BSLASHAclp] = ACTIONS(4455), - [anon_sym_BSLASHacf] = ACTIONS(4455), - [anon_sym_BSLASHAcf] = ACTIONS(4455), - [anon_sym_BSLASHacfp] = ACTIONS(4455), - [anon_sym_BSLASHAcfp] = ACTIONS(4455), - [anon_sym_BSLASHac] = ACTIONS(4455), - [anon_sym_BSLASHAc] = ACTIONS(4455), - [anon_sym_BSLASHacp] = ACTIONS(4455), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4455), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4455), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4455), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4455), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4455), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4455), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4455), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4455), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4455), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4455), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4455), - [anon_sym_BSLASHcolor] = ACTIONS(4455), - [anon_sym_BSLASHcolorbox] = ACTIONS(4455), - [anon_sym_BSLASHtextcolor] = ACTIONS(4455), - [anon_sym_BSLASHpagecolor] = ACTIONS(4455), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4455), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4455), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHend] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), }, - [629] = { - [sym_curly_group] = STATE(894), - [sym_mixed_group] = STATE(894), - [aux_sym_generic_command_repeat1] = STATE(629), - [sym_command_name] = ACTIONS(4469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4469), - [anon_sym_LPAREN] = ACTIONS(4757), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(4757), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_EQ] = ACTIONS(4467), - [anon_sym_BSLASHpart] = ACTIONS(4469), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddpart] = ACTIONS(4469), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4467), - [anon_sym_BSLASHchapter] = ACTIONS(4469), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddchap] = ACTIONS(4469), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsection] = ACTIONS(4469), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHaddsec] = ACTIONS(4469), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubsection] = ACTIONS(4469), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4469), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4467), - [anon_sym_BSLASHparagraph] = ACTIONS(4469), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4467), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4469), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4467), - [anon_sym_BSLASHitem] = ACTIONS(4469), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(4760), - [sym_word] = ACTIONS(4469), - [sym_placeholder] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_CARET] = ACTIONS(4469), - [anon_sym__] = ACTIONS(4469), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_PIPE] = ACTIONS(4469), - [anon_sym_COLON] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4467), - [anon_sym_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4467), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4467), - [anon_sym_BSLASHbegin] = ACTIONS(4469), - [anon_sym_BSLASHusepackage] = ACTIONS(4469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4469), - [anon_sym_BSLASHinclude] = ACTIONS(4469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4469), - [anon_sym_BSLASHinput] = ACTIONS(4469), - [anon_sym_BSLASHsubfile] = ACTIONS(4469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4469), - [anon_sym_BSLASHbibliography] = ACTIONS(4469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4469), - [anon_sym_BSLASHincludesvg] = ACTIONS(4469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4469), - [anon_sym_BSLASHimport] = ACTIONS(4469), - [anon_sym_BSLASHsubimport] = ACTIONS(4469), - [anon_sym_BSLASHinputfrom] = ACTIONS(4469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4469), - [anon_sym_BSLASHincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHcaption] = ACTIONS(4469), - [anon_sym_BSLASHcite] = ACTIONS(4469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCite] = ACTIONS(4469), - [anon_sym_BSLASHnocite] = ACTIONS(4469), - [anon_sym_BSLASHcitet] = ACTIONS(4469), - [anon_sym_BSLASHcitep] = ACTIONS(4469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteauthor] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitetitle] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteyear] = ACTIONS(4469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitedate] = ACTIONS(4469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteurl] = ACTIONS(4469), - [anon_sym_BSLASHfullcite] = ACTIONS(4469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4469), - [anon_sym_BSLASHcitealt] = ACTIONS(4469), - [anon_sym_BSLASHcitealp] = ACTIONS(4469), - [anon_sym_BSLASHcitetext] = ACTIONS(4469), - [anon_sym_BSLASHparencite] = ACTIONS(4469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHParencite] = ACTIONS(4469), - [anon_sym_BSLASHfootcite] = ACTIONS(4469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4469), - [anon_sym_BSLASHtextcite] = ACTIONS(4469), - [anon_sym_BSLASHTextcite] = ACTIONS(4469), - [anon_sym_BSLASHsmartcite] = ACTIONS(4469), - [anon_sym_BSLASHSmartcite] = ACTIONS(4469), - [anon_sym_BSLASHsupercite] = ACTIONS(4469), - [anon_sym_BSLASHautocite] = ACTIONS(4469), - [anon_sym_BSLASHAutocite] = ACTIONS(4469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHvolcite] = ACTIONS(4469), - [anon_sym_BSLASHVolcite] = ACTIONS(4469), - [anon_sym_BSLASHpvolcite] = ACTIONS(4469), - [anon_sym_BSLASHPvolcite] = ACTIONS(4469), - [anon_sym_BSLASHfvolcite] = ACTIONS(4469), - [anon_sym_BSLASHftvolcite] = ACTIONS(4469), - [anon_sym_BSLASHsvolcite] = ACTIONS(4469), - [anon_sym_BSLASHSvolcite] = ACTIONS(4469), - [anon_sym_BSLASHtvolcite] = ACTIONS(4469), - [anon_sym_BSLASHTvolcite] = ACTIONS(4469), - [anon_sym_BSLASHavolcite] = ACTIONS(4469), - [anon_sym_BSLASHAvolcite] = ACTIONS(4469), - [anon_sym_BSLASHnotecite] = ACTIONS(4469), - [anon_sym_BSLASHNotecite] = ACTIONS(4469), - [anon_sym_BSLASHpnotecite] = ACTIONS(4469), - [anon_sym_BSLASHPnotecite] = ACTIONS(4469), - [anon_sym_BSLASHfnotecite] = ACTIONS(4469), - [anon_sym_BSLASHlabel] = ACTIONS(4469), - [anon_sym_BSLASHref] = ACTIONS(4469), - [anon_sym_BSLASHeqref] = ACTIONS(4469), - [anon_sym_BSLASHvref] = ACTIONS(4469), - [anon_sym_BSLASHVref] = ACTIONS(4469), - [anon_sym_BSLASHautoref] = ACTIONS(4469), - [anon_sym_BSLASHpageref] = ACTIONS(4469), - [anon_sym_BSLASHcref] = ACTIONS(4469), - [anon_sym_BSLASHCref] = ACTIONS(4469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnameCref] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHlabelcref] = ACTIONS(4469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCrefrange] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnewlabel] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4467), - [anon_sym_BSLASHdef] = ACTIONS(4469), - [anon_sym_BSLASHlet] = ACTIONS(4469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4469), - [anon_sym_BSLASHgls] = ACTIONS(4469), - [anon_sym_BSLASHGls] = ACTIONS(4469), - [anon_sym_BSLASHGLS] = ACTIONS(4469), - [anon_sym_BSLASHglspl] = ACTIONS(4469), - [anon_sym_BSLASHGlspl] = ACTIONS(4469), - [anon_sym_BSLASHGLSpl] = ACTIONS(4469), - [anon_sym_BSLASHglsdisp] = ACTIONS(4469), - [anon_sym_BSLASHglslink] = ACTIONS(4469), - [anon_sym_BSLASHglstext] = ACTIONS(4469), - [anon_sym_BSLASHGlstext] = ACTIONS(4469), - [anon_sym_BSLASHGLStext] = ACTIONS(4469), - [anon_sym_BSLASHglsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4469), - [anon_sym_BSLASHglsplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSplural] = ACTIONS(4469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHglsname] = ACTIONS(4469), - [anon_sym_BSLASHGlsname] = ACTIONS(4469), - [anon_sym_BSLASHGLSname] = ACTIONS(4469), - [anon_sym_BSLASHglssymbol] = ACTIONS(4469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4469), - [anon_sym_BSLASHglsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4469), - [anon_sym_BSLASHglsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4469), - [anon_sym_BSLASHglsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4469), - [anon_sym_BSLASHglsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4469), - [anon_sym_BSLASHglsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4469), - [anon_sym_BSLASHnewacronym] = ACTIONS(4469), - [anon_sym_BSLASHacrshort] = ACTIONS(4469), - [anon_sym_BSLASHAcrshort] = ACTIONS(4469), - [anon_sym_BSLASHACRshort] = ACTIONS(4469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4469), - [anon_sym_BSLASHacrlong] = ACTIONS(4469), - [anon_sym_BSLASHAcrlong] = ACTIONS(4469), - [anon_sym_BSLASHACRlong] = ACTIONS(4469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4469), - [anon_sym_BSLASHacrfull] = ACTIONS(4469), - [anon_sym_BSLASHAcrfull] = ACTIONS(4469), - [anon_sym_BSLASHACRfull] = ACTIONS(4469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4469), - [anon_sym_BSLASHacs] = ACTIONS(4469), - [anon_sym_BSLASHAcs] = ACTIONS(4469), - [anon_sym_BSLASHacsp] = ACTIONS(4469), - [anon_sym_BSLASHAcsp] = ACTIONS(4469), - [anon_sym_BSLASHacl] = ACTIONS(4469), - [anon_sym_BSLASHAcl] = ACTIONS(4469), - [anon_sym_BSLASHaclp] = ACTIONS(4469), - [anon_sym_BSLASHAclp] = ACTIONS(4469), - [anon_sym_BSLASHacf] = ACTIONS(4469), - [anon_sym_BSLASHAcf] = ACTIONS(4469), - [anon_sym_BSLASHacfp] = ACTIONS(4469), - [anon_sym_BSLASHAcfp] = ACTIONS(4469), - [anon_sym_BSLASHac] = ACTIONS(4469), - [anon_sym_BSLASHAc] = ACTIONS(4469), - [anon_sym_BSLASHacp] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4469), - [anon_sym_BSLASHcolor] = ACTIONS(4469), - [anon_sym_BSLASHcolorbox] = ACTIONS(4469), - [anon_sym_BSLASHtextcolor] = ACTIONS(4469), - [anon_sym_BSLASHpagecolor] = ACTIONS(4469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4469), + [451] = { + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(451), + [aux_sym__section_repeat4] = STATE(451), + [sym_command_name] = ACTIONS(4535), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4535), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(4533), + [anon_sym_BSLASHpart] = ACTIONS(4535), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddpart] = ACTIONS(4535), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4533), + [anon_sym_BSLASHchapter] = ACTIONS(4535), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddchap] = ACTIONS(4535), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsection] = ACTIONS(4535), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddsec] = ACTIONS(4535), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsubsection] = ACTIONS(4665), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4668), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4535), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4533), + [anon_sym_BSLASHparagraph] = ACTIONS(4535), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4535), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4533), + [anon_sym_BSLASHitem] = ACTIONS(4535), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4533), + [anon_sym_LBRACE] = ACTIONS(4533), + [sym_word] = ACTIONS(4535), + [sym_placeholder] = ACTIONS(4533), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4535), + [anon_sym__] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_BANG] = ACTIONS(4535), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_SQUOTE] = ACTIONS(4535), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4533), + [anon_sym_DOLLAR] = ACTIONS(4535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4533), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4533), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4533), + [anon_sym_BSLASHbegin] = ACTIONS(4535), + [anon_sym_BSLASHusepackage] = ACTIONS(4535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4535), + [anon_sym_BSLASHinclude] = ACTIONS(4535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4535), + [anon_sym_BSLASHinput] = ACTIONS(4535), + [anon_sym_BSLASHsubfile] = ACTIONS(4535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4535), + [anon_sym_BSLASHbibliography] = ACTIONS(4535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4535), + [anon_sym_BSLASHincludesvg] = ACTIONS(4535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4535), + [anon_sym_BSLASHimport] = ACTIONS(4535), + [anon_sym_BSLASHsubimport] = ACTIONS(4535), + [anon_sym_BSLASHinputfrom] = ACTIONS(4535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4535), + [anon_sym_BSLASHincludefrom] = ACTIONS(4535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4535), + [anon_sym_BSLASHcaption] = ACTIONS(4535), + [anon_sym_BSLASHcite] = ACTIONS(4535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCite] = ACTIONS(4535), + [anon_sym_BSLASHnocite] = ACTIONS(4535), + [anon_sym_BSLASHcitet] = ACTIONS(4535), + [anon_sym_BSLASHcitep] = ACTIONS(4535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteauthor] = ACTIONS(4535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitetitle] = ACTIONS(4535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteyear] = ACTIONS(4535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitedate] = ACTIONS(4535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteurl] = ACTIONS(4535), + [anon_sym_BSLASHfullcite] = ACTIONS(4535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4535), + [anon_sym_BSLASHcitealt] = ACTIONS(4535), + [anon_sym_BSLASHcitealp] = ACTIONS(4535), + [anon_sym_BSLASHcitetext] = ACTIONS(4535), + [anon_sym_BSLASHparencite] = ACTIONS(4535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHParencite] = ACTIONS(4535), + [anon_sym_BSLASHfootcite] = ACTIONS(4535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4535), + [anon_sym_BSLASHtextcite] = ACTIONS(4535), + [anon_sym_BSLASHTextcite] = ACTIONS(4535), + [anon_sym_BSLASHsmartcite] = ACTIONS(4535), + [anon_sym_BSLASHSmartcite] = ACTIONS(4535), + [anon_sym_BSLASHsupercite] = ACTIONS(4535), + [anon_sym_BSLASHautocite] = ACTIONS(4535), + [anon_sym_BSLASHAutocite] = ACTIONS(4535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHvolcite] = ACTIONS(4535), + [anon_sym_BSLASHVolcite] = ACTIONS(4535), + [anon_sym_BSLASHpvolcite] = ACTIONS(4535), + [anon_sym_BSLASHPvolcite] = ACTIONS(4535), + [anon_sym_BSLASHfvolcite] = ACTIONS(4535), + [anon_sym_BSLASHftvolcite] = ACTIONS(4535), + [anon_sym_BSLASHsvolcite] = ACTIONS(4535), + [anon_sym_BSLASHSvolcite] = ACTIONS(4535), + [anon_sym_BSLASHtvolcite] = ACTIONS(4535), + [anon_sym_BSLASHTvolcite] = ACTIONS(4535), + [anon_sym_BSLASHavolcite] = ACTIONS(4535), + [anon_sym_BSLASHAvolcite] = ACTIONS(4535), + [anon_sym_BSLASHnotecite] = ACTIONS(4535), + [anon_sym_BSLASHNotecite] = ACTIONS(4535), + [anon_sym_BSLASHpnotecite] = ACTIONS(4535), + [anon_sym_BSLASHPnotecite] = ACTIONS(4535), + [anon_sym_BSLASHfnotecite] = ACTIONS(4535), + [anon_sym_BSLASHlabel] = ACTIONS(4535), + [anon_sym_BSLASHref] = ACTIONS(4535), + [anon_sym_BSLASHeqref] = ACTIONS(4535), + [anon_sym_BSLASHvref] = ACTIONS(4535), + [anon_sym_BSLASHVref] = ACTIONS(4535), + [anon_sym_BSLASHautoref] = ACTIONS(4535), + [anon_sym_BSLASHpageref] = ACTIONS(4535), + [anon_sym_BSLASHcref] = ACTIONS(4535), + [anon_sym_BSLASHCref] = ACTIONS(4535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4533), + [anon_sym_BSLASHnamecref] = ACTIONS(4535), + [anon_sym_BSLASHnameCref] = ACTIONS(4535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4535), + [anon_sym_BSLASHlabelcref] = ACTIONS(4535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4535), + [anon_sym_BSLASHcrefrange] = ACTIONS(4535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCrefrange] = ACTIONS(4535), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4533), + [anon_sym_BSLASHnewlabel] = ACTIONS(4535), + [anon_sym_BSLASHnewcommand] = ACTIONS(4535), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4535), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4535), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4533), + [anon_sym_BSLASHdef] = ACTIONS(4535), + [anon_sym_BSLASHlet] = ACTIONS(4535), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4535), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4535), + [anon_sym_BSLASHgls] = ACTIONS(4535), + [anon_sym_BSLASHGls] = ACTIONS(4535), + [anon_sym_BSLASHGLS] = ACTIONS(4535), + [anon_sym_BSLASHglspl] = ACTIONS(4535), + [anon_sym_BSLASHGlspl] = ACTIONS(4535), + [anon_sym_BSLASHGLSpl] = ACTIONS(4535), + [anon_sym_BSLASHglsdisp] = ACTIONS(4535), + [anon_sym_BSLASHglslink] = ACTIONS(4535), + [anon_sym_BSLASHglstext] = ACTIONS(4535), + [anon_sym_BSLASHGlstext] = ACTIONS(4535), + [anon_sym_BSLASHGLStext] = ACTIONS(4535), + [anon_sym_BSLASHglsfirst] = ACTIONS(4535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4535), + [anon_sym_BSLASHglsplural] = ACTIONS(4535), + [anon_sym_BSLASHGlsplural] = ACTIONS(4535), + [anon_sym_BSLASHGLSplural] = ACTIONS(4535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHglsname] = ACTIONS(4535), + [anon_sym_BSLASHGlsname] = ACTIONS(4535), + [anon_sym_BSLASHGLSname] = ACTIONS(4535), + [anon_sym_BSLASHglssymbol] = ACTIONS(4535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4535), + [anon_sym_BSLASHglsdesc] = ACTIONS(4535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4535), + [anon_sym_BSLASHglsuseri] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4535), + [anon_sym_BSLASHglsuserii] = ACTIONS(4535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4535), + [anon_sym_BSLASHglsuserv] = ACTIONS(4535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4535), + [anon_sym_BSLASHglsuservi] = ACTIONS(4535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4535), + [anon_sym_BSLASHnewacronym] = ACTIONS(4535), + [anon_sym_BSLASHacrshort] = ACTIONS(4535), + [anon_sym_BSLASHAcrshort] = ACTIONS(4535), + [anon_sym_BSLASHACRshort] = ACTIONS(4535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4535), + [anon_sym_BSLASHacrlong] = ACTIONS(4535), + [anon_sym_BSLASHAcrlong] = ACTIONS(4535), + [anon_sym_BSLASHACRlong] = ACTIONS(4535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4535), + [anon_sym_BSLASHacrfull] = ACTIONS(4535), + [anon_sym_BSLASHAcrfull] = ACTIONS(4535), + [anon_sym_BSLASHACRfull] = ACTIONS(4535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4535), + [anon_sym_BSLASHacs] = ACTIONS(4535), + [anon_sym_BSLASHAcs] = ACTIONS(4535), + [anon_sym_BSLASHacsp] = ACTIONS(4535), + [anon_sym_BSLASHAcsp] = ACTIONS(4535), + [anon_sym_BSLASHacl] = ACTIONS(4535), + [anon_sym_BSLASHAcl] = ACTIONS(4535), + [anon_sym_BSLASHaclp] = ACTIONS(4535), + [anon_sym_BSLASHAclp] = ACTIONS(4535), + [anon_sym_BSLASHacf] = ACTIONS(4535), + [anon_sym_BSLASHAcf] = ACTIONS(4535), + [anon_sym_BSLASHacfp] = ACTIONS(4535), + [anon_sym_BSLASHAcfp] = ACTIONS(4535), + [anon_sym_BSLASHac] = ACTIONS(4535), + [anon_sym_BSLASHAc] = ACTIONS(4535), + [anon_sym_BSLASHacp] = ACTIONS(4535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4535), + [anon_sym_BSLASHcolor] = ACTIONS(4535), + [anon_sym_BSLASHcolorbox] = ACTIONS(4535), + [anon_sym_BSLASHtextcolor] = ACTIONS(4535), + [anon_sym_BSLASHpagecolor] = ACTIONS(4535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4535), + [anon_sym_BSLASHtext] = ACTIONS(4535), + [anon_sym_BSLASHintertext] = ACTIONS(4535), + [anon_sym_shortintertext] = ACTIONS(4535), }, - [630] = { - [sym__chapter_declaration] = STATE(140), - [sym_chapter] = STATE(600), - [aux_sym__section_repeat2] = STATE(600), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(766), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(768), - [anon_sym_BSLASHaddchap] = ACTIONS(766), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(768), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), + [452] = { + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHend] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), }, - [631] = { - [sym__section_declaration] = STATE(145), - [sym_section] = STATE(601), - [aux_sym__section_repeat3] = STATE(601), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), + [453] = { + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(389), + [aux_sym__section_repeat6] = STATE(389), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHend] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), }, - [632] = { - [sym__subsection_declaration] = STATE(155), - [sym_subsection] = STATE(602), - [aux_sym__section_repeat4] = STATE(602), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(774), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(776), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), + [454] = { + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(390), + [aux_sym__section_repeat5] = STATE(390), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHend] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), }, - [633] = { - [sym__subsubsection_declaration] = STATE(166), - [sym_subsubsection] = STATE(603), - [aux_sym__section_repeat5] = STATE(603), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(778), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(780), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), + [455] = { + [sym_curly_group] = STATE(1162), + [sym_mixed_group] = STATE(1162), + [aux_sym_generic_command_repeat1] = STATE(531), + [sym_command_name] = ACTIONS(4451), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4639), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4639), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_BSLASHpart] = ACTIONS(4451), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddpart] = ACTIONS(4451), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4449), + [anon_sym_BSLASHchapter] = ACTIONS(4451), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddchap] = ACTIONS(4451), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsection] = ACTIONS(4451), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddsec] = ACTIONS(4451), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubsection] = ACTIONS(4451), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4451), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHparagraph] = ACTIONS(4451), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4451), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4449), + [anon_sym_BSLASHitem] = ACTIONS(4451), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4449), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(4451), + [sym_placeholder] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(4451), + [anon_sym__] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_PIPE] = ACTIONS(4451), + [anon_sym_COLON] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4449), + [anon_sym_DOLLAR] = ACTIONS(4451), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), + [anon_sym_BSLASHbegin] = ACTIONS(4451), + [anon_sym_BSLASHusepackage] = ACTIONS(4451), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), + [anon_sym_BSLASHinclude] = ACTIONS(4451), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), + [anon_sym_BSLASHinput] = ACTIONS(4451), + [anon_sym_BSLASHsubfile] = ACTIONS(4451), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), + [anon_sym_BSLASHbibliography] = ACTIONS(4451), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), + [anon_sym_BSLASHincludesvg] = ACTIONS(4451), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), + [anon_sym_BSLASHimport] = ACTIONS(4451), + [anon_sym_BSLASHsubimport] = ACTIONS(4451), + [anon_sym_BSLASHinputfrom] = ACTIONS(4451), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), + [anon_sym_BSLASHincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHcaption] = ACTIONS(4451), + [anon_sym_BSLASHcite] = ACTIONS(4451), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCite] = ACTIONS(4451), + [anon_sym_BSLASHnocite] = ACTIONS(4451), + [anon_sym_BSLASHcitet] = ACTIONS(4451), + [anon_sym_BSLASHcitep] = ACTIONS(4451), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteauthor] = ACTIONS(4451), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitetitle] = ACTIONS(4451), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteyear] = ACTIONS(4451), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitedate] = ACTIONS(4451), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteurl] = ACTIONS(4451), + [anon_sym_BSLASHfullcite] = ACTIONS(4451), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), + [anon_sym_BSLASHcitealt] = ACTIONS(4451), + [anon_sym_BSLASHcitealp] = ACTIONS(4451), + [anon_sym_BSLASHcitetext] = ACTIONS(4451), + [anon_sym_BSLASHparencite] = ACTIONS(4451), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHParencite] = ACTIONS(4451), + [anon_sym_BSLASHfootcite] = ACTIONS(4451), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), + [anon_sym_BSLASHtextcite] = ACTIONS(4451), + [anon_sym_BSLASHTextcite] = ACTIONS(4451), + [anon_sym_BSLASHsmartcite] = ACTIONS(4451), + [anon_sym_BSLASHSmartcite] = ACTIONS(4451), + [anon_sym_BSLASHsupercite] = ACTIONS(4451), + [anon_sym_BSLASHautocite] = ACTIONS(4451), + [anon_sym_BSLASHAutocite] = ACTIONS(4451), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHvolcite] = ACTIONS(4451), + [anon_sym_BSLASHVolcite] = ACTIONS(4451), + [anon_sym_BSLASHpvolcite] = ACTIONS(4451), + [anon_sym_BSLASHPvolcite] = ACTIONS(4451), + [anon_sym_BSLASHfvolcite] = ACTIONS(4451), + [anon_sym_BSLASHftvolcite] = ACTIONS(4451), + [anon_sym_BSLASHsvolcite] = ACTIONS(4451), + [anon_sym_BSLASHSvolcite] = ACTIONS(4451), + [anon_sym_BSLASHtvolcite] = ACTIONS(4451), + [anon_sym_BSLASHTvolcite] = ACTIONS(4451), + [anon_sym_BSLASHavolcite] = ACTIONS(4451), + [anon_sym_BSLASHAvolcite] = ACTIONS(4451), + [anon_sym_BSLASHnotecite] = ACTIONS(4451), + [anon_sym_BSLASHNotecite] = ACTIONS(4451), + [anon_sym_BSLASHpnotecite] = ACTIONS(4451), + [anon_sym_BSLASHPnotecite] = ACTIONS(4451), + [anon_sym_BSLASHfnotecite] = ACTIONS(4451), + [anon_sym_BSLASHlabel] = ACTIONS(4451), + [anon_sym_BSLASHref] = ACTIONS(4451), + [anon_sym_BSLASHeqref] = ACTIONS(4451), + [anon_sym_BSLASHvref] = ACTIONS(4451), + [anon_sym_BSLASHVref] = ACTIONS(4451), + [anon_sym_BSLASHautoref] = ACTIONS(4451), + [anon_sym_BSLASHpageref] = ACTIONS(4451), + [anon_sym_BSLASHcref] = ACTIONS(4451), + [anon_sym_BSLASHCref] = ACTIONS(4451), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnameCref] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHlabelcref] = ACTIONS(4451), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCrefrange] = ACTIONS(4451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnewlabel] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), + [anon_sym_BSLASHdef] = ACTIONS(4451), + [anon_sym_BSLASHlet] = ACTIONS(4451), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), + [anon_sym_BSLASHgls] = ACTIONS(4451), + [anon_sym_BSLASHGls] = ACTIONS(4451), + [anon_sym_BSLASHGLS] = ACTIONS(4451), + [anon_sym_BSLASHglspl] = ACTIONS(4451), + [anon_sym_BSLASHGlspl] = ACTIONS(4451), + [anon_sym_BSLASHGLSpl] = ACTIONS(4451), + [anon_sym_BSLASHglsdisp] = ACTIONS(4451), + [anon_sym_BSLASHglslink] = ACTIONS(4451), + [anon_sym_BSLASHglstext] = ACTIONS(4451), + [anon_sym_BSLASHGlstext] = ACTIONS(4451), + [anon_sym_BSLASHGLStext] = ACTIONS(4451), + [anon_sym_BSLASHglsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), + [anon_sym_BSLASHglsplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSplural] = ACTIONS(4451), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHglsname] = ACTIONS(4451), + [anon_sym_BSLASHGlsname] = ACTIONS(4451), + [anon_sym_BSLASHGLSname] = ACTIONS(4451), + [anon_sym_BSLASHglssymbol] = ACTIONS(4451), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), + [anon_sym_BSLASHglsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), + [anon_sym_BSLASHglsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), + [anon_sym_BSLASHglsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), + [anon_sym_BSLASHglsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), + [anon_sym_BSLASHglsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), + [anon_sym_BSLASHnewacronym] = ACTIONS(4451), + [anon_sym_BSLASHacrshort] = ACTIONS(4451), + [anon_sym_BSLASHAcrshort] = ACTIONS(4451), + [anon_sym_BSLASHACRshort] = ACTIONS(4451), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), + [anon_sym_BSLASHacrlong] = ACTIONS(4451), + [anon_sym_BSLASHAcrlong] = ACTIONS(4451), + [anon_sym_BSLASHACRlong] = ACTIONS(4451), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), + [anon_sym_BSLASHacrfull] = ACTIONS(4451), + [anon_sym_BSLASHAcrfull] = ACTIONS(4451), + [anon_sym_BSLASHACRfull] = ACTIONS(4451), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), + [anon_sym_BSLASHacs] = ACTIONS(4451), + [anon_sym_BSLASHAcs] = ACTIONS(4451), + [anon_sym_BSLASHacsp] = ACTIONS(4451), + [anon_sym_BSLASHAcsp] = ACTIONS(4451), + [anon_sym_BSLASHacl] = ACTIONS(4451), + [anon_sym_BSLASHAcl] = ACTIONS(4451), + [anon_sym_BSLASHaclp] = ACTIONS(4451), + [anon_sym_BSLASHAclp] = ACTIONS(4451), + [anon_sym_BSLASHacf] = ACTIONS(4451), + [anon_sym_BSLASHAcf] = ACTIONS(4451), + [anon_sym_BSLASHacfp] = ACTIONS(4451), + [anon_sym_BSLASHAcfp] = ACTIONS(4451), + [anon_sym_BSLASHac] = ACTIONS(4451), + [anon_sym_BSLASHAc] = ACTIONS(4451), + [anon_sym_BSLASHacp] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), + [anon_sym_BSLASHcolor] = ACTIONS(4451), + [anon_sym_BSLASHcolorbox] = ACTIONS(4451), + [anon_sym_BSLASHtextcolor] = ACTIONS(4451), + [anon_sym_BSLASHpagecolor] = ACTIONS(4451), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), + [anon_sym_BSLASHtext] = ACTIONS(4451), + [anon_sym_BSLASHintertext] = ACTIONS(4451), + [anon_sym_shortintertext] = ACTIONS(4451), }, - [634] = { - [sym__paragraph_declaration] = STATE(178), - [sym_paragraph] = STATE(604), - [aux_sym__section_repeat6] = STATE(604), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(782), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(784), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), + [456] = { + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(456), + [aux_sym__section_repeat3] = STATE(456), + [sym_command_name] = ACTIONS(4545), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_RPAREN] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_RBRACK] = ACTIONS(4543), + [anon_sym_COMMA] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_BSLASHpart] = ACTIONS(4545), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4543), + [anon_sym_BSLASHaddpart] = ACTIONS(4545), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4543), + [anon_sym_BSLASHchapter] = ACTIONS(4545), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4543), + [anon_sym_BSLASHaddchap] = ACTIONS(4545), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsection] = ACTIONS(4671), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4674), + [anon_sym_BSLASHaddsec] = ACTIONS(4671), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4674), + [anon_sym_BSLASHsubsection] = ACTIONS(4545), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4545), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4543), + [anon_sym_BSLASHparagraph] = ACTIONS(4545), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4545), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4543), + [anon_sym_BSLASHitem] = ACTIONS(4545), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4543), + [sym_word] = ACTIONS(4545), + [sym_placeholder] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4545), + [anon_sym_STAR] = ACTIONS(4545), + [anon_sym_SLASH] = ACTIONS(4545), + [anon_sym_CARET] = ACTIONS(4545), + [anon_sym__] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4545), + [anon_sym_BANG] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4545), + [anon_sym_SQUOTE] = ACTIONS(4545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4543), + [anon_sym_DOLLAR] = ACTIONS(4545), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4543), + [anon_sym_BSLASHbegin] = ACTIONS(4545), + [anon_sym_BSLASHusepackage] = ACTIONS(4545), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4545), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4545), + [anon_sym_BSLASHinclude] = ACTIONS(4545), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4545), + [anon_sym_BSLASHinput] = ACTIONS(4545), + [anon_sym_BSLASHsubfile] = ACTIONS(4545), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4545), + [anon_sym_BSLASHbibliography] = ACTIONS(4545), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4545), + [anon_sym_BSLASHincludesvg] = ACTIONS(4545), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4545), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4545), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4545), + [anon_sym_BSLASHimport] = ACTIONS(4545), + [anon_sym_BSLASHsubimport] = ACTIONS(4545), + [anon_sym_BSLASHinputfrom] = ACTIONS(4545), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4545), + [anon_sym_BSLASHincludefrom] = ACTIONS(4545), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4545), + [anon_sym_BSLASHcaption] = ACTIONS(4545), + [anon_sym_BSLASHcite] = ACTIONS(4545), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCite] = ACTIONS(4545), + [anon_sym_BSLASHnocite] = ACTIONS(4545), + [anon_sym_BSLASHcitet] = ACTIONS(4545), + [anon_sym_BSLASHcitep] = ACTIONS(4545), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteauthor] = ACTIONS(4545), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4545), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitetitle] = ACTIONS(4545), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteyear] = ACTIONS(4545), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitedate] = ACTIONS(4545), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteurl] = ACTIONS(4545), + [anon_sym_BSLASHfullcite] = ACTIONS(4545), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4545), + [anon_sym_BSLASHcitealt] = ACTIONS(4545), + [anon_sym_BSLASHcitealp] = ACTIONS(4545), + [anon_sym_BSLASHcitetext] = ACTIONS(4545), + [anon_sym_BSLASHparencite] = ACTIONS(4545), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHParencite] = ACTIONS(4545), + [anon_sym_BSLASHfootcite] = ACTIONS(4545), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4545), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4545), + [anon_sym_BSLASHtextcite] = ACTIONS(4545), + [anon_sym_BSLASHTextcite] = ACTIONS(4545), + [anon_sym_BSLASHsmartcite] = ACTIONS(4545), + [anon_sym_BSLASHSmartcite] = ACTIONS(4545), + [anon_sym_BSLASHsupercite] = ACTIONS(4545), + [anon_sym_BSLASHautocite] = ACTIONS(4545), + [anon_sym_BSLASHAutocite] = ACTIONS(4545), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHvolcite] = ACTIONS(4545), + [anon_sym_BSLASHVolcite] = ACTIONS(4545), + [anon_sym_BSLASHpvolcite] = ACTIONS(4545), + [anon_sym_BSLASHPvolcite] = ACTIONS(4545), + [anon_sym_BSLASHfvolcite] = ACTIONS(4545), + [anon_sym_BSLASHftvolcite] = ACTIONS(4545), + [anon_sym_BSLASHsvolcite] = ACTIONS(4545), + [anon_sym_BSLASHSvolcite] = ACTIONS(4545), + [anon_sym_BSLASHtvolcite] = ACTIONS(4545), + [anon_sym_BSLASHTvolcite] = ACTIONS(4545), + [anon_sym_BSLASHavolcite] = ACTIONS(4545), + [anon_sym_BSLASHAvolcite] = ACTIONS(4545), + [anon_sym_BSLASHnotecite] = ACTIONS(4545), + [anon_sym_BSLASHNotecite] = ACTIONS(4545), + [anon_sym_BSLASHpnotecite] = ACTIONS(4545), + [anon_sym_BSLASHPnotecite] = ACTIONS(4545), + [anon_sym_BSLASHfnotecite] = ACTIONS(4545), + [anon_sym_BSLASHlabel] = ACTIONS(4545), + [anon_sym_BSLASHref] = ACTIONS(4545), + [anon_sym_BSLASHeqref] = ACTIONS(4545), + [anon_sym_BSLASHvref] = ACTIONS(4545), + [anon_sym_BSLASHVref] = ACTIONS(4545), + [anon_sym_BSLASHautoref] = ACTIONS(4545), + [anon_sym_BSLASHpageref] = ACTIONS(4545), + [anon_sym_BSLASHcref] = ACTIONS(4545), + [anon_sym_BSLASHCref] = ACTIONS(4545), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4543), + [anon_sym_BSLASHnamecref] = ACTIONS(4545), + [anon_sym_BSLASHnameCref] = ACTIONS(4545), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4545), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4545), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4545), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4545), + [anon_sym_BSLASHlabelcref] = ACTIONS(4545), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4545), + [anon_sym_BSLASHcrefrange] = ACTIONS(4545), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCrefrange] = ACTIONS(4545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4543), + [anon_sym_BSLASHnewlabel] = ACTIONS(4545), + [anon_sym_BSLASHnewcommand] = ACTIONS(4545), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4545), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4545), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4545), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4543), + [anon_sym_BSLASHdef] = ACTIONS(4545), + [anon_sym_BSLASHlet] = ACTIONS(4545), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4545), + [anon_sym_BSLASHgls] = ACTIONS(4545), + [anon_sym_BSLASHGls] = ACTIONS(4545), + [anon_sym_BSLASHGLS] = ACTIONS(4545), + [anon_sym_BSLASHglspl] = ACTIONS(4545), + [anon_sym_BSLASHGlspl] = ACTIONS(4545), + [anon_sym_BSLASHGLSpl] = ACTIONS(4545), + [anon_sym_BSLASHglsdisp] = ACTIONS(4545), + [anon_sym_BSLASHglslink] = ACTIONS(4545), + [anon_sym_BSLASHglstext] = ACTIONS(4545), + [anon_sym_BSLASHGlstext] = ACTIONS(4545), + [anon_sym_BSLASHGLStext] = ACTIONS(4545), + [anon_sym_BSLASHglsfirst] = ACTIONS(4545), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4545), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4545), + [anon_sym_BSLASHglsplural] = ACTIONS(4545), + [anon_sym_BSLASHGlsplural] = ACTIONS(4545), + [anon_sym_BSLASHGLSplural] = ACTIONS(4545), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHglsname] = ACTIONS(4545), + [anon_sym_BSLASHGlsname] = ACTIONS(4545), + [anon_sym_BSLASHGLSname] = ACTIONS(4545), + [anon_sym_BSLASHglssymbol] = ACTIONS(4545), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4545), + [anon_sym_BSLASHglsdesc] = ACTIONS(4545), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4545), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4545), + [anon_sym_BSLASHglsuseri] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4545), + [anon_sym_BSLASHglsuserii] = ACTIONS(4545), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4545), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4545), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4545), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4545), + [anon_sym_BSLASHglsuserv] = ACTIONS(4545), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4545), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4545), + [anon_sym_BSLASHglsuservi] = ACTIONS(4545), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4545), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4545), + [anon_sym_BSLASHnewacronym] = ACTIONS(4545), + [anon_sym_BSLASHacrshort] = ACTIONS(4545), + [anon_sym_BSLASHAcrshort] = ACTIONS(4545), + [anon_sym_BSLASHACRshort] = ACTIONS(4545), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4545), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4545), + [anon_sym_BSLASHacrlong] = ACTIONS(4545), + [anon_sym_BSLASHAcrlong] = ACTIONS(4545), + [anon_sym_BSLASHACRlong] = ACTIONS(4545), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4545), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4545), + [anon_sym_BSLASHacrfull] = ACTIONS(4545), + [anon_sym_BSLASHAcrfull] = ACTIONS(4545), + [anon_sym_BSLASHACRfull] = ACTIONS(4545), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4545), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4545), + [anon_sym_BSLASHacs] = ACTIONS(4545), + [anon_sym_BSLASHAcs] = ACTIONS(4545), + [anon_sym_BSLASHacsp] = ACTIONS(4545), + [anon_sym_BSLASHAcsp] = ACTIONS(4545), + [anon_sym_BSLASHacl] = ACTIONS(4545), + [anon_sym_BSLASHAcl] = ACTIONS(4545), + [anon_sym_BSLASHaclp] = ACTIONS(4545), + [anon_sym_BSLASHAclp] = ACTIONS(4545), + [anon_sym_BSLASHacf] = ACTIONS(4545), + [anon_sym_BSLASHAcf] = ACTIONS(4545), + [anon_sym_BSLASHacfp] = ACTIONS(4545), + [anon_sym_BSLASHAcfp] = ACTIONS(4545), + [anon_sym_BSLASHac] = ACTIONS(4545), + [anon_sym_BSLASHAc] = ACTIONS(4545), + [anon_sym_BSLASHacp] = ACTIONS(4545), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4545), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4545), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4545), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4545), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4545), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4545), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4545), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4545), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4545), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4545), + [anon_sym_BSLASHcolor] = ACTIONS(4545), + [anon_sym_BSLASHcolorbox] = ACTIONS(4545), + [anon_sym_BSLASHtextcolor] = ACTIONS(4545), + [anon_sym_BSLASHpagecolor] = ACTIONS(4545), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4545), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4545), + [anon_sym_BSLASHtext] = ACTIONS(4545), + [anon_sym_BSLASHintertext] = ACTIONS(4545), + [anon_sym_shortintertext] = ACTIONS(4545), }, - [635] = { - [sym__subparagraph_declaration] = STATE(184), - [sym_subparagraph] = STATE(605), - [aux_sym__section_repeat7] = STATE(605), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(786), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(788), - [anon_sym_BSLASHitem] = ACTIONS(4419), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4417), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), + [457] = { + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHend] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), }, - [636] = { + [458] = { + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHend] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [459] = { + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(389), + [aux_sym__section_repeat6] = STATE(389), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHend] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [460] = { + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(390), + [aux_sym__section_repeat5] = STATE(390), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHend] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [461] = { + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(392), + [aux_sym__section_repeat4] = STATE(392), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHend] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [462] = { + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(462), + [aux_sym__section_repeat2] = STATE(462), + [sym_command_name] = ACTIONS(4555), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_RBRACK] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4553), + [anon_sym_BSLASHpart] = ACTIONS(4555), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4553), + [anon_sym_BSLASHaddpart] = ACTIONS(4555), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4553), + [anon_sym_BSLASHchapter] = ACTIONS(4677), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4680), + [anon_sym_BSLASHaddchap] = ACTIONS(4677), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4680), + [anon_sym_BSLASHsection] = ACTIONS(4555), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHaddsec] = ACTIONS(4555), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubsection] = ACTIONS(4555), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4555), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHparagraph] = ACTIONS(4555), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4555), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4553), + [anon_sym_BSLASHitem] = ACTIONS(4555), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [sym_word] = ACTIONS(4555), + [sym_placeholder] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4555), + [anon_sym__] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_SQUOTE] = ACTIONS(4555), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4553), + [anon_sym_DOLLAR] = ACTIONS(4555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4553), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4553), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4553), + [anon_sym_BSLASHbegin] = ACTIONS(4555), + [anon_sym_BSLASHusepackage] = ACTIONS(4555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4555), + [anon_sym_BSLASHinclude] = ACTIONS(4555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4555), + [anon_sym_BSLASHinput] = ACTIONS(4555), + [anon_sym_BSLASHsubfile] = ACTIONS(4555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4555), + [anon_sym_BSLASHbibliography] = ACTIONS(4555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4555), + [anon_sym_BSLASHincludesvg] = ACTIONS(4555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4555), + [anon_sym_BSLASHimport] = ACTIONS(4555), + [anon_sym_BSLASHsubimport] = ACTIONS(4555), + [anon_sym_BSLASHinputfrom] = ACTIONS(4555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), + [anon_sym_BSLASHincludefrom] = ACTIONS(4555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), + [anon_sym_BSLASHcaption] = ACTIONS(4555), + [anon_sym_BSLASHcite] = ACTIONS(4555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCite] = ACTIONS(4555), + [anon_sym_BSLASHnocite] = ACTIONS(4555), + [anon_sym_BSLASHcitet] = ACTIONS(4555), + [anon_sym_BSLASHcitep] = ACTIONS(4555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteauthor] = ACTIONS(4555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitetitle] = ACTIONS(4555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteyear] = ACTIONS(4555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitedate] = ACTIONS(4555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteurl] = ACTIONS(4555), + [anon_sym_BSLASHfullcite] = ACTIONS(4555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4555), + [anon_sym_BSLASHcitealt] = ACTIONS(4555), + [anon_sym_BSLASHcitealp] = ACTIONS(4555), + [anon_sym_BSLASHcitetext] = ACTIONS(4555), + [anon_sym_BSLASHparencite] = ACTIONS(4555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHParencite] = ACTIONS(4555), + [anon_sym_BSLASHfootcite] = ACTIONS(4555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4555), + [anon_sym_BSLASHtextcite] = ACTIONS(4555), + [anon_sym_BSLASHTextcite] = ACTIONS(4555), + [anon_sym_BSLASHsmartcite] = ACTIONS(4555), + [anon_sym_BSLASHSmartcite] = ACTIONS(4555), + [anon_sym_BSLASHsupercite] = ACTIONS(4555), + [anon_sym_BSLASHautocite] = ACTIONS(4555), + [anon_sym_BSLASHAutocite] = ACTIONS(4555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHvolcite] = ACTIONS(4555), + [anon_sym_BSLASHVolcite] = ACTIONS(4555), + [anon_sym_BSLASHpvolcite] = ACTIONS(4555), + [anon_sym_BSLASHPvolcite] = ACTIONS(4555), + [anon_sym_BSLASHfvolcite] = ACTIONS(4555), + [anon_sym_BSLASHftvolcite] = ACTIONS(4555), + [anon_sym_BSLASHsvolcite] = ACTIONS(4555), + [anon_sym_BSLASHSvolcite] = ACTIONS(4555), + [anon_sym_BSLASHtvolcite] = ACTIONS(4555), + [anon_sym_BSLASHTvolcite] = ACTIONS(4555), + [anon_sym_BSLASHavolcite] = ACTIONS(4555), + [anon_sym_BSLASHAvolcite] = ACTIONS(4555), + [anon_sym_BSLASHnotecite] = ACTIONS(4555), + [anon_sym_BSLASHNotecite] = ACTIONS(4555), + [anon_sym_BSLASHpnotecite] = ACTIONS(4555), + [anon_sym_BSLASHPnotecite] = ACTIONS(4555), + [anon_sym_BSLASHfnotecite] = ACTIONS(4555), + [anon_sym_BSLASHlabel] = ACTIONS(4555), + [anon_sym_BSLASHref] = ACTIONS(4555), + [anon_sym_BSLASHeqref] = ACTIONS(4555), + [anon_sym_BSLASHvref] = ACTIONS(4555), + [anon_sym_BSLASHVref] = ACTIONS(4555), + [anon_sym_BSLASHautoref] = ACTIONS(4555), + [anon_sym_BSLASHpageref] = ACTIONS(4555), + [anon_sym_BSLASHcref] = ACTIONS(4555), + [anon_sym_BSLASHCref] = ACTIONS(4555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4553), + [anon_sym_BSLASHnamecref] = ACTIONS(4555), + [anon_sym_BSLASHnameCref] = ACTIONS(4555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4555), + [anon_sym_BSLASHlabelcref] = ACTIONS(4555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4555), + [anon_sym_BSLASHcrefrange] = ACTIONS(4555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCrefrange] = ACTIONS(4555), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4553), + [anon_sym_BSLASHnewlabel] = ACTIONS(4555), + [anon_sym_BSLASHnewcommand] = ACTIONS(4555), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4555), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4555), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4553), + [anon_sym_BSLASHdef] = ACTIONS(4555), + [anon_sym_BSLASHlet] = ACTIONS(4555), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4555), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4555), + [anon_sym_BSLASHgls] = ACTIONS(4555), + [anon_sym_BSLASHGls] = ACTIONS(4555), + [anon_sym_BSLASHGLS] = ACTIONS(4555), + [anon_sym_BSLASHglspl] = ACTIONS(4555), + [anon_sym_BSLASHGlspl] = ACTIONS(4555), + [anon_sym_BSLASHGLSpl] = ACTIONS(4555), + [anon_sym_BSLASHglsdisp] = ACTIONS(4555), + [anon_sym_BSLASHglslink] = ACTIONS(4555), + [anon_sym_BSLASHglstext] = ACTIONS(4555), + [anon_sym_BSLASHGlstext] = ACTIONS(4555), + [anon_sym_BSLASHGLStext] = ACTIONS(4555), + [anon_sym_BSLASHglsfirst] = ACTIONS(4555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4555), + [anon_sym_BSLASHglsplural] = ACTIONS(4555), + [anon_sym_BSLASHGlsplural] = ACTIONS(4555), + [anon_sym_BSLASHGLSplural] = ACTIONS(4555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHglsname] = ACTIONS(4555), + [anon_sym_BSLASHGlsname] = ACTIONS(4555), + [anon_sym_BSLASHGLSname] = ACTIONS(4555), + [anon_sym_BSLASHglssymbol] = ACTIONS(4555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4555), + [anon_sym_BSLASHglsdesc] = ACTIONS(4555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4555), + [anon_sym_BSLASHglsuseri] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4555), + [anon_sym_BSLASHglsuserii] = ACTIONS(4555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4555), + [anon_sym_BSLASHglsuserv] = ACTIONS(4555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4555), + [anon_sym_BSLASHglsuservi] = ACTIONS(4555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4555), + [anon_sym_BSLASHnewacronym] = ACTIONS(4555), + [anon_sym_BSLASHacrshort] = ACTIONS(4555), + [anon_sym_BSLASHAcrshort] = ACTIONS(4555), + [anon_sym_BSLASHACRshort] = ACTIONS(4555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4555), + [anon_sym_BSLASHacrlong] = ACTIONS(4555), + [anon_sym_BSLASHAcrlong] = ACTIONS(4555), + [anon_sym_BSLASHACRlong] = ACTIONS(4555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4555), + [anon_sym_BSLASHacrfull] = ACTIONS(4555), + [anon_sym_BSLASHAcrfull] = ACTIONS(4555), + [anon_sym_BSLASHACRfull] = ACTIONS(4555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4555), + [anon_sym_BSLASHacs] = ACTIONS(4555), + [anon_sym_BSLASHAcs] = ACTIONS(4555), + [anon_sym_BSLASHacsp] = ACTIONS(4555), + [anon_sym_BSLASHAcsp] = ACTIONS(4555), + [anon_sym_BSLASHacl] = ACTIONS(4555), + [anon_sym_BSLASHAcl] = ACTIONS(4555), + [anon_sym_BSLASHaclp] = ACTIONS(4555), + [anon_sym_BSLASHAclp] = ACTIONS(4555), + [anon_sym_BSLASHacf] = ACTIONS(4555), + [anon_sym_BSLASHAcf] = ACTIONS(4555), + [anon_sym_BSLASHacfp] = ACTIONS(4555), + [anon_sym_BSLASHAcfp] = ACTIONS(4555), + [anon_sym_BSLASHac] = ACTIONS(4555), + [anon_sym_BSLASHAc] = ACTIONS(4555), + [anon_sym_BSLASHacp] = ACTIONS(4555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4555), + [anon_sym_BSLASHcolor] = ACTIONS(4555), + [anon_sym_BSLASHcolorbox] = ACTIONS(4555), + [anon_sym_BSLASHtextcolor] = ACTIONS(4555), + [anon_sym_BSLASHpagecolor] = ACTIONS(4555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4555), + [anon_sym_BSLASHtext] = ACTIONS(4555), + [anon_sym_BSLASHintertext] = ACTIONS(4555), + [anon_sym_shortintertext] = ACTIONS(4555), + }, + [463] = { [sym__enum_itemdeclaration] = STATE(204), - [sym_enum_item] = STATE(628), - [aux_sym__section_repeat8] = STATE(628), - [sym_command_name] = ACTIONS(4419), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4417), - [anon_sym_RPAREN] = ACTIONS(4417), - [anon_sym_LBRACK] = ACTIONS(4417), - [anon_sym_RBRACK] = ACTIONS(4417), - [anon_sym_COMMA] = ACTIONS(4417), - [anon_sym_EQ] = ACTIONS(4417), - [anon_sym_BSLASHpart] = ACTIONS(4419), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddpart] = ACTIONS(4419), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4417), - [anon_sym_BSLASHchapter] = ACTIONS(4419), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddchap] = ACTIONS(4419), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsection] = ACTIONS(4419), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHaddsec] = ACTIONS(4419), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4419), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4417), - [anon_sym_BSLASHparagraph] = ACTIONS(4419), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4419), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4417), - [anon_sym_BSLASHitem] = ACTIONS(790), - [anon_sym_BSLASHitem_STAR] = ACTIONS(792), - [anon_sym_LBRACE] = ACTIONS(4417), - [sym_word] = ACTIONS(4419), - [sym_placeholder] = ACTIONS(4417), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_SLASH] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym__] = ACTIONS(4419), - [anon_sym_LT] = ACTIONS(4419), - [anon_sym_GT] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_PIPE] = ACTIONS(4419), - [anon_sym_COLON] = ACTIONS(4419), - [anon_sym_SQUOTE] = ACTIONS(4419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4417), - [anon_sym_DOLLAR] = ACTIONS(4419), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4417), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4417), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4417), - [anon_sym_BSLASHbegin] = ACTIONS(4419), - [anon_sym_BSLASHusepackage] = ACTIONS(4419), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4419), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4419), - [anon_sym_BSLASHinclude] = ACTIONS(4419), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4419), - [anon_sym_BSLASHinput] = ACTIONS(4419), - [anon_sym_BSLASHsubfile] = ACTIONS(4419), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4419), - [anon_sym_BSLASHbibliography] = ACTIONS(4419), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4419), - [anon_sym_BSLASHincludesvg] = ACTIONS(4419), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4419), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4419), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4419), - [anon_sym_BSLASHimport] = ACTIONS(4419), - [anon_sym_BSLASHsubimport] = ACTIONS(4419), - [anon_sym_BSLASHinputfrom] = ACTIONS(4419), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4419), - [anon_sym_BSLASHincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4419), - [anon_sym_BSLASHcaption] = ACTIONS(4419), - [anon_sym_BSLASHcite] = ACTIONS(4419), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCite] = ACTIONS(4419), - [anon_sym_BSLASHnocite] = ACTIONS(4419), - [anon_sym_BSLASHcitet] = ACTIONS(4419), - [anon_sym_BSLASHcitep] = ACTIONS(4419), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteauthor] = ACTIONS(4419), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4419), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitetitle] = ACTIONS(4419), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteyear] = ACTIONS(4419), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4417), - [anon_sym_BSLASHcitedate] = ACTIONS(4419), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4417), - [anon_sym_BSLASHciteurl] = ACTIONS(4419), - [anon_sym_BSLASHfullcite] = ACTIONS(4419), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4419), - [anon_sym_BSLASHcitealt] = ACTIONS(4419), - [anon_sym_BSLASHcitealp] = ACTIONS(4419), - [anon_sym_BSLASHcitetext] = ACTIONS(4419), - [anon_sym_BSLASHparencite] = ACTIONS(4419), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHParencite] = ACTIONS(4419), - [anon_sym_BSLASHfootcite] = ACTIONS(4419), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4419), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4419), - [anon_sym_BSLASHtextcite] = ACTIONS(4419), - [anon_sym_BSLASHTextcite] = ACTIONS(4419), - [anon_sym_BSLASHsmartcite] = ACTIONS(4419), - [anon_sym_BSLASHSmartcite] = ACTIONS(4419), - [anon_sym_BSLASHsupercite] = ACTIONS(4419), - [anon_sym_BSLASHautocite] = ACTIONS(4419), - [anon_sym_BSLASHAutocite] = ACTIONS(4419), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4417), - [anon_sym_BSLASHvolcite] = ACTIONS(4419), - [anon_sym_BSLASHVolcite] = ACTIONS(4419), - [anon_sym_BSLASHpvolcite] = ACTIONS(4419), - [anon_sym_BSLASHPvolcite] = ACTIONS(4419), - [anon_sym_BSLASHfvolcite] = ACTIONS(4419), - [anon_sym_BSLASHftvolcite] = ACTIONS(4419), - [anon_sym_BSLASHsvolcite] = ACTIONS(4419), - [anon_sym_BSLASHSvolcite] = ACTIONS(4419), - [anon_sym_BSLASHtvolcite] = ACTIONS(4419), - [anon_sym_BSLASHTvolcite] = ACTIONS(4419), - [anon_sym_BSLASHavolcite] = ACTIONS(4419), - [anon_sym_BSLASHAvolcite] = ACTIONS(4419), - [anon_sym_BSLASHnotecite] = ACTIONS(4419), - [anon_sym_BSLASHNotecite] = ACTIONS(4419), - [anon_sym_BSLASHpnotecite] = ACTIONS(4419), - [anon_sym_BSLASHPnotecite] = ACTIONS(4419), - [anon_sym_BSLASHfnotecite] = ACTIONS(4419), - [anon_sym_BSLASHlabel] = ACTIONS(4419), - [anon_sym_BSLASHref] = ACTIONS(4419), - [anon_sym_BSLASHeqref] = ACTIONS(4419), - [anon_sym_BSLASHvref] = ACTIONS(4419), - [anon_sym_BSLASHVref] = ACTIONS(4419), - [anon_sym_BSLASHautoref] = ACTIONS(4419), - [anon_sym_BSLASHpageref] = ACTIONS(4419), - [anon_sym_BSLASHcref] = ACTIONS(4419), - [anon_sym_BSLASHCref] = ACTIONS(4419), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnameCref] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4419), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4419), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4419), - [anon_sym_BSLASHlabelcref] = ACTIONS(4419), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange] = ACTIONS(4419), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHCrefrange] = ACTIONS(4419), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4417), - [anon_sym_BSLASHnewlabel] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand] = ACTIONS(4419), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4419), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4419), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4417), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4419), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4417), - [anon_sym_BSLASHdef] = ACTIONS(4419), - [anon_sym_BSLASHlet] = ACTIONS(4419), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4419), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4419), - [anon_sym_BSLASHgls] = ACTIONS(4419), - [anon_sym_BSLASHGls] = ACTIONS(4419), - [anon_sym_BSLASHGLS] = ACTIONS(4419), - [anon_sym_BSLASHglspl] = ACTIONS(4419), - [anon_sym_BSLASHGlspl] = ACTIONS(4419), - [anon_sym_BSLASHGLSpl] = ACTIONS(4419), - [anon_sym_BSLASHglsdisp] = ACTIONS(4419), - [anon_sym_BSLASHglslink] = ACTIONS(4419), - [anon_sym_BSLASHglstext] = ACTIONS(4419), - [anon_sym_BSLASHGlstext] = ACTIONS(4419), - [anon_sym_BSLASHGLStext] = ACTIONS(4419), - [anon_sym_BSLASHglsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4419), - [anon_sym_BSLASHglsplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSplural] = ACTIONS(4419), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4419), - [anon_sym_BSLASHglsname] = ACTIONS(4419), - [anon_sym_BSLASHGlsname] = ACTIONS(4419), - [anon_sym_BSLASHGLSname] = ACTIONS(4419), - [anon_sym_BSLASHglssymbol] = ACTIONS(4419), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4419), - [anon_sym_BSLASHglsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4419), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4419), - [anon_sym_BSLASHglsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4419), - [anon_sym_BSLASHglsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4419), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4419), - [anon_sym_BSLASHglsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4419), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4419), - [anon_sym_BSLASHglsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4419), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4419), - [anon_sym_BSLASHnewacronym] = ACTIONS(4419), - [anon_sym_BSLASHacrshort] = ACTIONS(4419), - [anon_sym_BSLASHAcrshort] = ACTIONS(4419), - [anon_sym_BSLASHACRshort] = ACTIONS(4419), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4419), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4419), - [anon_sym_BSLASHacrlong] = ACTIONS(4419), - [anon_sym_BSLASHAcrlong] = ACTIONS(4419), - [anon_sym_BSLASHACRlong] = ACTIONS(4419), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4419), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4419), - [anon_sym_BSLASHacrfull] = ACTIONS(4419), - [anon_sym_BSLASHAcrfull] = ACTIONS(4419), - [anon_sym_BSLASHACRfull] = ACTIONS(4419), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4419), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4419), - [anon_sym_BSLASHacs] = ACTIONS(4419), - [anon_sym_BSLASHAcs] = ACTIONS(4419), - [anon_sym_BSLASHacsp] = ACTIONS(4419), - [anon_sym_BSLASHAcsp] = ACTIONS(4419), - [anon_sym_BSLASHacl] = ACTIONS(4419), - [anon_sym_BSLASHAcl] = ACTIONS(4419), - [anon_sym_BSLASHaclp] = ACTIONS(4419), - [anon_sym_BSLASHAclp] = ACTIONS(4419), - [anon_sym_BSLASHacf] = ACTIONS(4419), - [anon_sym_BSLASHAcf] = ACTIONS(4419), - [anon_sym_BSLASHacfp] = ACTIONS(4419), - [anon_sym_BSLASHAcfp] = ACTIONS(4419), - [anon_sym_BSLASHac] = ACTIONS(4419), - [anon_sym_BSLASHAc] = ACTIONS(4419), - [anon_sym_BSLASHacp] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4419), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4419), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4419), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4419), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4419), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4419), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4419), - [anon_sym_BSLASHcolor] = ACTIONS(4419), - [anon_sym_BSLASHcolorbox] = ACTIONS(4419), - [anon_sym_BSLASHtextcolor] = ACTIONS(4419), - [anon_sym_BSLASHpagecolor] = ACTIONS(4419), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4419), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4419), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHend] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [637] = { + [464] = { + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHend] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [465] = { + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(389), + [aux_sym__section_repeat6] = STATE(389), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHend] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [466] = { + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(390), + [aux_sym__section_repeat5] = STATE(390), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHend] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [467] = { + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(392), + [aux_sym__section_repeat4] = STATE(392), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHend] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [468] = { [sym__section_declaration] = STATE(145), - [sym_section] = STATE(601), - [aux_sym__section_repeat3] = STATE(601), - [sym_command_name] = ACTIONS(4433), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4433), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym_RPAREN] = ACTIONS(4431), - [anon_sym_LBRACK] = ACTIONS(4431), - [anon_sym_RBRACK] = ACTIONS(4431), - [anon_sym_COMMA] = ACTIONS(4431), - [anon_sym_EQ] = ACTIONS(4431), - [anon_sym_BSLASHpart] = ACTIONS(4433), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddpart] = ACTIONS(4433), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4431), - [anon_sym_BSLASHchapter] = ACTIONS(4433), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4431), - [anon_sym_BSLASHaddchap] = ACTIONS(4433), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsection] = ACTIONS(770), - [anon_sym_BSLASHsection_STAR] = ACTIONS(772), - [anon_sym_BSLASHaddsec] = ACTIONS(770), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(772), - [anon_sym_BSLASHsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4433), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4431), - [anon_sym_BSLASHparagraph] = ACTIONS(4433), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4433), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4431), - [anon_sym_BSLASHitem] = ACTIONS(4433), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [sym_word] = ACTIONS(4433), - [sym_placeholder] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4433), - [anon_sym_DASH] = ACTIONS(4433), - [anon_sym_STAR] = ACTIONS(4433), - [anon_sym_SLASH] = ACTIONS(4433), - [anon_sym_CARET] = ACTIONS(4433), - [anon_sym__] = ACTIONS(4433), - [anon_sym_LT] = ACTIONS(4433), - [anon_sym_GT] = ACTIONS(4433), - [anon_sym_BANG] = ACTIONS(4433), - [anon_sym_PIPE] = ACTIONS(4433), - [anon_sym_COLON] = ACTIONS(4433), - [anon_sym_SQUOTE] = ACTIONS(4433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4431), - [anon_sym_DOLLAR] = ACTIONS(4433), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4431), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4431), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4431), - [anon_sym_BSLASHbegin] = ACTIONS(4433), - [anon_sym_BSLASHusepackage] = ACTIONS(4433), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4433), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4433), - [anon_sym_BSLASHinclude] = ACTIONS(4433), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4433), - [anon_sym_BSLASHinput] = ACTIONS(4433), - [anon_sym_BSLASHsubfile] = ACTIONS(4433), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4433), - [anon_sym_BSLASHbibliography] = ACTIONS(4433), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4433), - [anon_sym_BSLASHincludesvg] = ACTIONS(4433), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4433), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4433), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4433), - [anon_sym_BSLASHimport] = ACTIONS(4433), - [anon_sym_BSLASHsubimport] = ACTIONS(4433), - [anon_sym_BSLASHinputfrom] = ACTIONS(4433), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4433), - [anon_sym_BSLASHincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4433), - [anon_sym_BSLASHcaption] = ACTIONS(4433), - [anon_sym_BSLASHcite] = ACTIONS(4433), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCite] = ACTIONS(4433), - [anon_sym_BSLASHnocite] = ACTIONS(4433), - [anon_sym_BSLASHcitet] = ACTIONS(4433), - [anon_sym_BSLASHcitep] = ACTIONS(4433), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteauthor] = ACTIONS(4433), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4433), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitetitle] = ACTIONS(4433), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteyear] = ACTIONS(4433), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4431), - [anon_sym_BSLASHcitedate] = ACTIONS(4433), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4431), - [anon_sym_BSLASHciteurl] = ACTIONS(4433), - [anon_sym_BSLASHfullcite] = ACTIONS(4433), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4433), - [anon_sym_BSLASHcitealt] = ACTIONS(4433), - [anon_sym_BSLASHcitealp] = ACTIONS(4433), - [anon_sym_BSLASHcitetext] = ACTIONS(4433), - [anon_sym_BSLASHparencite] = ACTIONS(4433), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHParencite] = ACTIONS(4433), - [anon_sym_BSLASHfootcite] = ACTIONS(4433), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4433), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4433), - [anon_sym_BSLASHtextcite] = ACTIONS(4433), - [anon_sym_BSLASHTextcite] = ACTIONS(4433), - [anon_sym_BSLASHsmartcite] = ACTIONS(4433), - [anon_sym_BSLASHSmartcite] = ACTIONS(4433), - [anon_sym_BSLASHsupercite] = ACTIONS(4433), - [anon_sym_BSLASHautocite] = ACTIONS(4433), - [anon_sym_BSLASHAutocite] = ACTIONS(4433), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4431), - [anon_sym_BSLASHvolcite] = ACTIONS(4433), - [anon_sym_BSLASHVolcite] = ACTIONS(4433), - [anon_sym_BSLASHpvolcite] = ACTIONS(4433), - [anon_sym_BSLASHPvolcite] = ACTIONS(4433), - [anon_sym_BSLASHfvolcite] = ACTIONS(4433), - [anon_sym_BSLASHftvolcite] = ACTIONS(4433), - [anon_sym_BSLASHsvolcite] = ACTIONS(4433), - [anon_sym_BSLASHSvolcite] = ACTIONS(4433), - [anon_sym_BSLASHtvolcite] = ACTIONS(4433), - [anon_sym_BSLASHTvolcite] = ACTIONS(4433), - [anon_sym_BSLASHavolcite] = ACTIONS(4433), - [anon_sym_BSLASHAvolcite] = ACTIONS(4433), - [anon_sym_BSLASHnotecite] = ACTIONS(4433), - [anon_sym_BSLASHNotecite] = ACTIONS(4433), - [anon_sym_BSLASHpnotecite] = ACTIONS(4433), - [anon_sym_BSLASHPnotecite] = ACTIONS(4433), - [anon_sym_BSLASHfnotecite] = ACTIONS(4433), - [anon_sym_BSLASHlabel] = ACTIONS(4433), - [anon_sym_BSLASHref] = ACTIONS(4433), - [anon_sym_BSLASHeqref] = ACTIONS(4433), - [anon_sym_BSLASHvref] = ACTIONS(4433), - [anon_sym_BSLASHVref] = ACTIONS(4433), - [anon_sym_BSLASHautoref] = ACTIONS(4433), - [anon_sym_BSLASHpageref] = ACTIONS(4433), - [anon_sym_BSLASHcref] = ACTIONS(4433), - [anon_sym_BSLASHCref] = ACTIONS(4433), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnameCref] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4433), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4433), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4433), - [anon_sym_BSLASHlabelcref] = ACTIONS(4433), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange] = ACTIONS(4433), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHCrefrange] = ACTIONS(4433), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4431), - [anon_sym_BSLASHnewlabel] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand] = ACTIONS(4433), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4433), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4433), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4431), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4433), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4431), - [anon_sym_BSLASHdef] = ACTIONS(4433), - [anon_sym_BSLASHlet] = ACTIONS(4433), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4433), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4433), - [anon_sym_BSLASHgls] = ACTIONS(4433), - [anon_sym_BSLASHGls] = ACTIONS(4433), - [anon_sym_BSLASHGLS] = ACTIONS(4433), - [anon_sym_BSLASHglspl] = ACTIONS(4433), - [anon_sym_BSLASHGlspl] = ACTIONS(4433), - [anon_sym_BSLASHGLSpl] = ACTIONS(4433), - [anon_sym_BSLASHglsdisp] = ACTIONS(4433), - [anon_sym_BSLASHglslink] = ACTIONS(4433), - [anon_sym_BSLASHglstext] = ACTIONS(4433), - [anon_sym_BSLASHGlstext] = ACTIONS(4433), - [anon_sym_BSLASHGLStext] = ACTIONS(4433), - [anon_sym_BSLASHglsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4433), - [anon_sym_BSLASHglsplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSplural] = ACTIONS(4433), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4433), - [anon_sym_BSLASHglsname] = ACTIONS(4433), - [anon_sym_BSLASHGlsname] = ACTIONS(4433), - [anon_sym_BSLASHGLSname] = ACTIONS(4433), - [anon_sym_BSLASHglssymbol] = ACTIONS(4433), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4433), - [anon_sym_BSLASHglsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4433), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4433), - [anon_sym_BSLASHglsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4433), - [anon_sym_BSLASHglsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4433), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4433), - [anon_sym_BSLASHglsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4433), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4433), - [anon_sym_BSLASHglsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4433), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4433), - [anon_sym_BSLASHnewacronym] = ACTIONS(4433), - [anon_sym_BSLASHacrshort] = ACTIONS(4433), - [anon_sym_BSLASHAcrshort] = ACTIONS(4433), - [anon_sym_BSLASHACRshort] = ACTIONS(4433), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), - [anon_sym_BSLASHacrlong] = ACTIONS(4433), - [anon_sym_BSLASHAcrlong] = ACTIONS(4433), - [anon_sym_BSLASHACRlong] = ACTIONS(4433), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), - [anon_sym_BSLASHacrfull] = ACTIONS(4433), - [anon_sym_BSLASHAcrfull] = ACTIONS(4433), - [anon_sym_BSLASHACRfull] = ACTIONS(4433), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), - [anon_sym_BSLASHacs] = ACTIONS(4433), - [anon_sym_BSLASHAcs] = ACTIONS(4433), - [anon_sym_BSLASHacsp] = ACTIONS(4433), - [anon_sym_BSLASHAcsp] = ACTIONS(4433), - [anon_sym_BSLASHacl] = ACTIONS(4433), - [anon_sym_BSLASHAcl] = ACTIONS(4433), - [anon_sym_BSLASHaclp] = ACTIONS(4433), - [anon_sym_BSLASHAclp] = ACTIONS(4433), - [anon_sym_BSLASHacf] = ACTIONS(4433), - [anon_sym_BSLASHAcf] = ACTIONS(4433), - [anon_sym_BSLASHacfp] = ACTIONS(4433), - [anon_sym_BSLASHAcfp] = ACTIONS(4433), - [anon_sym_BSLASHac] = ACTIONS(4433), - [anon_sym_BSLASHAc] = ACTIONS(4433), - [anon_sym_BSLASHacp] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4433), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4433), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4433), - [anon_sym_BSLASHcolor] = ACTIONS(4433), - [anon_sym_BSLASHcolorbox] = ACTIONS(4433), - [anon_sym_BSLASHtextcolor] = ACTIONS(4433), - [anon_sym_BSLASHpagecolor] = ACTIONS(4433), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4433), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4433), + [sym_section] = STATE(393), + [aux_sym__section_repeat3] = STATE(393), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHend] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [638] = { - [sym__enum_itemdeclaration] = STATE(198), - [sym_enum_item] = STATE(454), - [aux_sym__section_repeat8] = STATE(454), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(181), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [469] = { + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(469), + [aux_sym__section_repeat1] = STATE(469), + [sym_command_name] = ACTIONS(4569), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4567), + [anon_sym_RBRACK] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_BSLASHpart] = ACTIONS(4683), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4686), + [anon_sym_BSLASHaddpart] = ACTIONS(4683), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4686), + [anon_sym_BSLASHchapter] = ACTIONS(4569), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4567), + [anon_sym_BSLASHaddchap] = ACTIONS(4569), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsection] = ACTIONS(4569), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHaddsec] = ACTIONS(4569), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubsection] = ACTIONS(4569), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4569), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHparagraph] = ACTIONS(4569), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4569), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4567), + [anon_sym_BSLASHitem] = ACTIONS(4569), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [sym_word] = ACTIONS(4569), + [sym_placeholder] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_STAR] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym__] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_PIPE] = ACTIONS(4569), + [anon_sym_COLON] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4569), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4569), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4567), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4567), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4567), + [anon_sym_BSLASHbegin] = ACTIONS(4569), + [anon_sym_BSLASHusepackage] = ACTIONS(4569), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4569), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4569), + [anon_sym_BSLASHinclude] = ACTIONS(4569), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4569), + [anon_sym_BSLASHinput] = ACTIONS(4569), + [anon_sym_BSLASHsubfile] = ACTIONS(4569), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4569), + [anon_sym_BSLASHbibliography] = ACTIONS(4569), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4569), + [anon_sym_BSLASHincludesvg] = ACTIONS(4569), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4569), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4569), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4569), + [anon_sym_BSLASHimport] = ACTIONS(4569), + [anon_sym_BSLASHsubimport] = ACTIONS(4569), + [anon_sym_BSLASHinputfrom] = ACTIONS(4569), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4569), + [anon_sym_BSLASHincludefrom] = ACTIONS(4569), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4569), + [anon_sym_BSLASHcaption] = ACTIONS(4569), + [anon_sym_BSLASHcite] = ACTIONS(4569), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCite] = ACTIONS(4569), + [anon_sym_BSLASHnocite] = ACTIONS(4569), + [anon_sym_BSLASHcitet] = ACTIONS(4569), + [anon_sym_BSLASHcitep] = ACTIONS(4569), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteauthor] = ACTIONS(4569), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4569), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitetitle] = ACTIONS(4569), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteyear] = ACTIONS(4569), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitedate] = ACTIONS(4569), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteurl] = ACTIONS(4569), + [anon_sym_BSLASHfullcite] = ACTIONS(4569), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4569), + [anon_sym_BSLASHcitealt] = ACTIONS(4569), + [anon_sym_BSLASHcitealp] = ACTIONS(4569), + [anon_sym_BSLASHcitetext] = ACTIONS(4569), + [anon_sym_BSLASHparencite] = ACTIONS(4569), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHParencite] = ACTIONS(4569), + [anon_sym_BSLASHfootcite] = ACTIONS(4569), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4569), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4569), + [anon_sym_BSLASHtextcite] = ACTIONS(4569), + [anon_sym_BSLASHTextcite] = ACTIONS(4569), + [anon_sym_BSLASHsmartcite] = ACTIONS(4569), + [anon_sym_BSLASHSmartcite] = ACTIONS(4569), + [anon_sym_BSLASHsupercite] = ACTIONS(4569), + [anon_sym_BSLASHautocite] = ACTIONS(4569), + [anon_sym_BSLASHAutocite] = ACTIONS(4569), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHvolcite] = ACTIONS(4569), + [anon_sym_BSLASHVolcite] = ACTIONS(4569), + [anon_sym_BSLASHpvolcite] = ACTIONS(4569), + [anon_sym_BSLASHPvolcite] = ACTIONS(4569), + [anon_sym_BSLASHfvolcite] = ACTIONS(4569), + [anon_sym_BSLASHftvolcite] = ACTIONS(4569), + [anon_sym_BSLASHsvolcite] = ACTIONS(4569), + [anon_sym_BSLASHSvolcite] = ACTIONS(4569), + [anon_sym_BSLASHtvolcite] = ACTIONS(4569), + [anon_sym_BSLASHTvolcite] = ACTIONS(4569), + [anon_sym_BSLASHavolcite] = ACTIONS(4569), + [anon_sym_BSLASHAvolcite] = ACTIONS(4569), + [anon_sym_BSLASHnotecite] = ACTIONS(4569), + [anon_sym_BSLASHNotecite] = ACTIONS(4569), + [anon_sym_BSLASHpnotecite] = ACTIONS(4569), + [anon_sym_BSLASHPnotecite] = ACTIONS(4569), + [anon_sym_BSLASHfnotecite] = ACTIONS(4569), + [anon_sym_BSLASHlabel] = ACTIONS(4569), + [anon_sym_BSLASHref] = ACTIONS(4569), + [anon_sym_BSLASHeqref] = ACTIONS(4569), + [anon_sym_BSLASHvref] = ACTIONS(4569), + [anon_sym_BSLASHVref] = ACTIONS(4569), + [anon_sym_BSLASHautoref] = ACTIONS(4569), + [anon_sym_BSLASHpageref] = ACTIONS(4569), + [anon_sym_BSLASHcref] = ACTIONS(4569), + [anon_sym_BSLASHCref] = ACTIONS(4569), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), + [anon_sym_BSLASHnamecref] = ACTIONS(4569), + [anon_sym_BSLASHnameCref] = ACTIONS(4569), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4569), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4569), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4569), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4569), + [anon_sym_BSLASHlabelcref] = ACTIONS(4569), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4569), + [anon_sym_BSLASHcrefrange] = ACTIONS(4569), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCrefrange] = ACTIONS(4569), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4567), + [anon_sym_BSLASHnewlabel] = ACTIONS(4569), + [anon_sym_BSLASHnewcommand] = ACTIONS(4569), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4569), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4569), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4569), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4567), + [anon_sym_BSLASHdef] = ACTIONS(4569), + [anon_sym_BSLASHlet] = ACTIONS(4569), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4569), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4569), + [anon_sym_BSLASHgls] = ACTIONS(4569), + [anon_sym_BSLASHGls] = ACTIONS(4569), + [anon_sym_BSLASHGLS] = ACTIONS(4569), + [anon_sym_BSLASHglspl] = ACTIONS(4569), + [anon_sym_BSLASHGlspl] = ACTIONS(4569), + [anon_sym_BSLASHGLSpl] = ACTIONS(4569), + [anon_sym_BSLASHglsdisp] = ACTIONS(4569), + [anon_sym_BSLASHglslink] = ACTIONS(4569), + [anon_sym_BSLASHglstext] = ACTIONS(4569), + [anon_sym_BSLASHGlstext] = ACTIONS(4569), + [anon_sym_BSLASHGLStext] = ACTIONS(4569), + [anon_sym_BSLASHglsfirst] = ACTIONS(4569), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4569), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4569), + [anon_sym_BSLASHglsplural] = ACTIONS(4569), + [anon_sym_BSLASHGlsplural] = ACTIONS(4569), + [anon_sym_BSLASHGLSplural] = ACTIONS(4569), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHglsname] = ACTIONS(4569), + [anon_sym_BSLASHGlsname] = ACTIONS(4569), + [anon_sym_BSLASHGLSname] = ACTIONS(4569), + [anon_sym_BSLASHglssymbol] = ACTIONS(4569), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4569), + [anon_sym_BSLASHglsdesc] = ACTIONS(4569), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4569), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4569), + [anon_sym_BSLASHglsuseri] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4569), + [anon_sym_BSLASHglsuserii] = ACTIONS(4569), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4569), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4569), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4569), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4569), + [anon_sym_BSLASHglsuserv] = ACTIONS(4569), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4569), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4569), + [anon_sym_BSLASHglsuservi] = ACTIONS(4569), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4569), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4569), + [anon_sym_BSLASHnewacronym] = ACTIONS(4569), + [anon_sym_BSLASHacrshort] = ACTIONS(4569), + [anon_sym_BSLASHAcrshort] = ACTIONS(4569), + [anon_sym_BSLASHACRshort] = ACTIONS(4569), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4569), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4569), + [anon_sym_BSLASHacrlong] = ACTIONS(4569), + [anon_sym_BSLASHAcrlong] = ACTIONS(4569), + [anon_sym_BSLASHACRlong] = ACTIONS(4569), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4569), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4569), + [anon_sym_BSLASHacrfull] = ACTIONS(4569), + [anon_sym_BSLASHAcrfull] = ACTIONS(4569), + [anon_sym_BSLASHACRfull] = ACTIONS(4569), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4569), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4569), + [anon_sym_BSLASHacs] = ACTIONS(4569), + [anon_sym_BSLASHAcs] = ACTIONS(4569), + [anon_sym_BSLASHacsp] = ACTIONS(4569), + [anon_sym_BSLASHAcsp] = ACTIONS(4569), + [anon_sym_BSLASHacl] = ACTIONS(4569), + [anon_sym_BSLASHAcl] = ACTIONS(4569), + [anon_sym_BSLASHaclp] = ACTIONS(4569), + [anon_sym_BSLASHAclp] = ACTIONS(4569), + [anon_sym_BSLASHacf] = ACTIONS(4569), + [anon_sym_BSLASHAcf] = ACTIONS(4569), + [anon_sym_BSLASHacfp] = ACTIONS(4569), + [anon_sym_BSLASHAcfp] = ACTIONS(4569), + [anon_sym_BSLASHac] = ACTIONS(4569), + [anon_sym_BSLASHAc] = ACTIONS(4569), + [anon_sym_BSLASHacp] = ACTIONS(4569), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4569), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4569), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4569), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4569), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4569), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4569), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4569), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4569), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4569), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4569), + [anon_sym_BSLASHcolor] = ACTIONS(4569), + [anon_sym_BSLASHcolorbox] = ACTIONS(4569), + [anon_sym_BSLASHtextcolor] = ACTIONS(4569), + [anon_sym_BSLASHpagecolor] = ACTIONS(4569), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4569), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4569), + [anon_sym_BSLASHtext] = ACTIONS(4569), + [anon_sym_BSLASHintertext] = ACTIONS(4569), + [anon_sym_shortintertext] = ACTIONS(4569), }, - [639] = { - [sym_curly_group] = STATE(961), - [sym_mixed_group] = STATE(961), - [aux_sym_generic_command_repeat1] = STATE(608), - [sym_command_name] = ACTIONS(4449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(4745), - [anon_sym_RPAREN] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(4745), - [anon_sym_RBRACK] = ACTIONS(4447), - [anon_sym_COMMA] = ACTIONS(4447), - [anon_sym_EQ] = ACTIONS(4447), - [anon_sym_BSLASHpart] = ACTIONS(4449), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddpart] = ACTIONS(4449), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4447), - [anon_sym_BSLASHchapter] = ACTIONS(4449), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddchap] = ACTIONS(4449), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsection] = ACTIONS(4449), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHaddsec] = ACTIONS(4449), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubsection] = ACTIONS(4449), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4449), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4447), - [anon_sym_BSLASHparagraph] = ACTIONS(4449), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4447), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4449), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4447), - [anon_sym_BSLASHitem] = ACTIONS(4449), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(4449), - [sym_placeholder] = ACTIONS(4447), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [anon_sym_SLASH] = ACTIONS(4449), - [anon_sym_CARET] = ACTIONS(4449), - [anon_sym__] = ACTIONS(4449), - [anon_sym_LT] = ACTIONS(4449), - [anon_sym_GT] = ACTIONS(4449), - [anon_sym_BANG] = ACTIONS(4449), - [anon_sym_PIPE] = ACTIONS(4449), - [anon_sym_COLON] = ACTIONS(4449), - [anon_sym_SQUOTE] = ACTIONS(4449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4447), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4447), - [anon_sym_BSLASHbegin] = ACTIONS(4449), - [anon_sym_BSLASHusepackage] = ACTIONS(4449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4449), - [anon_sym_BSLASHinclude] = ACTIONS(4449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4449), - [anon_sym_BSLASHinput] = ACTIONS(4449), - [anon_sym_BSLASHsubfile] = ACTIONS(4449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4449), - [anon_sym_BSLASHbibliography] = ACTIONS(4449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4449), - [anon_sym_BSLASHincludesvg] = ACTIONS(4449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4449), - [anon_sym_BSLASHimport] = ACTIONS(4449), - [anon_sym_BSLASHsubimport] = ACTIONS(4449), - [anon_sym_BSLASHinputfrom] = ACTIONS(4449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4449), - [anon_sym_BSLASHincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHcaption] = ACTIONS(4449), - [anon_sym_BSLASHcite] = ACTIONS(4449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCite] = ACTIONS(4449), - [anon_sym_BSLASHnocite] = ACTIONS(4449), - [anon_sym_BSLASHcitet] = ACTIONS(4449), - [anon_sym_BSLASHcitep] = ACTIONS(4449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteyear] = ACTIONS(4449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitedate] = ACTIONS(4449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteurl] = ACTIONS(4449), - [anon_sym_BSLASHfullcite] = ACTIONS(4449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4449), - [anon_sym_BSLASHcitealt] = ACTIONS(4449), - [anon_sym_BSLASHcitealp] = ACTIONS(4449), - [anon_sym_BSLASHcitetext] = ACTIONS(4449), - [anon_sym_BSLASHparencite] = ACTIONS(4449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHParencite] = ACTIONS(4449), - [anon_sym_BSLASHfootcite] = ACTIONS(4449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4449), - [anon_sym_BSLASHtextcite] = ACTIONS(4449), - [anon_sym_BSLASHTextcite] = ACTIONS(4449), - [anon_sym_BSLASHsmartcite] = ACTIONS(4449), - [anon_sym_BSLASHSmartcite] = ACTIONS(4449), - [anon_sym_BSLASHsupercite] = ACTIONS(4449), - [anon_sym_BSLASHautocite] = ACTIONS(4449), - [anon_sym_BSLASHAutocite] = ACTIONS(4449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHvolcite] = ACTIONS(4449), - [anon_sym_BSLASHVolcite] = ACTIONS(4449), - [anon_sym_BSLASHpvolcite] = ACTIONS(4449), - [anon_sym_BSLASHPvolcite] = ACTIONS(4449), - [anon_sym_BSLASHfvolcite] = ACTIONS(4449), - [anon_sym_BSLASHftvolcite] = ACTIONS(4449), - [anon_sym_BSLASHsvolcite] = ACTIONS(4449), - [anon_sym_BSLASHSvolcite] = ACTIONS(4449), - [anon_sym_BSLASHtvolcite] = ACTIONS(4449), - [anon_sym_BSLASHTvolcite] = ACTIONS(4449), - [anon_sym_BSLASHavolcite] = ACTIONS(4449), - [anon_sym_BSLASHAvolcite] = ACTIONS(4449), - [anon_sym_BSLASHnotecite] = ACTIONS(4449), - [anon_sym_BSLASHNotecite] = ACTIONS(4449), - [anon_sym_BSLASHpnotecite] = ACTIONS(4449), - [anon_sym_BSLASHPnotecite] = ACTIONS(4449), - [anon_sym_BSLASHfnotecite] = ACTIONS(4449), - [anon_sym_BSLASHlabel] = ACTIONS(4449), - [anon_sym_BSLASHref] = ACTIONS(4449), - [anon_sym_BSLASHeqref] = ACTIONS(4449), - [anon_sym_BSLASHvref] = ACTIONS(4449), - [anon_sym_BSLASHVref] = ACTIONS(4449), - [anon_sym_BSLASHautoref] = ACTIONS(4449), - [anon_sym_BSLASHpageref] = ACTIONS(4449), - [anon_sym_BSLASHcref] = ACTIONS(4449), - [anon_sym_BSLASHCref] = ACTIONS(4449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnameCref] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHlabelcref] = ACTIONS(4449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnewlabel] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4447), - [anon_sym_BSLASHdef] = ACTIONS(4449), - [anon_sym_BSLASHlet] = ACTIONS(4449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4449), - [anon_sym_BSLASHgls] = ACTIONS(4449), - [anon_sym_BSLASHGls] = ACTIONS(4449), - [anon_sym_BSLASHGLS] = ACTIONS(4449), - [anon_sym_BSLASHglspl] = ACTIONS(4449), - [anon_sym_BSLASHGlspl] = ACTIONS(4449), - [anon_sym_BSLASHGLSpl] = ACTIONS(4449), - [anon_sym_BSLASHglsdisp] = ACTIONS(4449), - [anon_sym_BSLASHglslink] = ACTIONS(4449), - [anon_sym_BSLASHglstext] = ACTIONS(4449), - [anon_sym_BSLASHGlstext] = ACTIONS(4449), - [anon_sym_BSLASHGLStext] = ACTIONS(4449), - [anon_sym_BSLASHglsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4449), - [anon_sym_BSLASHglsplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSplural] = ACTIONS(4449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHglsname] = ACTIONS(4449), - [anon_sym_BSLASHGlsname] = ACTIONS(4449), - [anon_sym_BSLASHGLSname] = ACTIONS(4449), - [anon_sym_BSLASHglssymbol] = ACTIONS(4449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4449), - [anon_sym_BSLASHglsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4449), - [anon_sym_BSLASHglsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4449), - [anon_sym_BSLASHglsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4449), - [anon_sym_BSLASHglsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4449), - [anon_sym_BSLASHglsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4449), - [anon_sym_BSLASHnewacronym] = ACTIONS(4449), - [anon_sym_BSLASHacrshort] = ACTIONS(4449), - [anon_sym_BSLASHAcrshort] = ACTIONS(4449), - [anon_sym_BSLASHACRshort] = ACTIONS(4449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4449), - [anon_sym_BSLASHacrlong] = ACTIONS(4449), - [anon_sym_BSLASHAcrlong] = ACTIONS(4449), - [anon_sym_BSLASHACRlong] = ACTIONS(4449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4449), - [anon_sym_BSLASHacrfull] = ACTIONS(4449), - [anon_sym_BSLASHAcrfull] = ACTIONS(4449), - [anon_sym_BSLASHACRfull] = ACTIONS(4449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4449), - [anon_sym_BSLASHacs] = ACTIONS(4449), - [anon_sym_BSLASHAcs] = ACTIONS(4449), - [anon_sym_BSLASHacsp] = ACTIONS(4449), - [anon_sym_BSLASHAcsp] = ACTIONS(4449), - [anon_sym_BSLASHacl] = ACTIONS(4449), - [anon_sym_BSLASHAcl] = ACTIONS(4449), - [anon_sym_BSLASHaclp] = ACTIONS(4449), - [anon_sym_BSLASHAclp] = ACTIONS(4449), - [anon_sym_BSLASHacf] = ACTIONS(4449), - [anon_sym_BSLASHAcf] = ACTIONS(4449), - [anon_sym_BSLASHacfp] = ACTIONS(4449), - [anon_sym_BSLASHAcfp] = ACTIONS(4449), - [anon_sym_BSLASHac] = ACTIONS(4449), - [anon_sym_BSLASHAc] = ACTIONS(4449), - [anon_sym_BSLASHacp] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4449), - [anon_sym_BSLASHcolor] = ACTIONS(4449), - [anon_sym_BSLASHcolorbox] = ACTIONS(4449), - [anon_sym_BSLASHtextcolor] = ACTIONS(4449), - [anon_sym_BSLASHpagecolor] = ACTIONS(4449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4449), + [470] = { + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHend] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [640] = { - [sym__subparagraph_declaration] = STATE(185), - [sym_subparagraph] = STATE(457), - [aux_sym__section_repeat7] = STATE(457), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(177), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [471] = { + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHend] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [641] = { + [472] = { + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(634), + [aux_sym__section_repeat6] = STATE(634), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [473] = { [sym__paragraph_declaration] = STATE(179), - [sym_paragraph] = STATE(461), - [aux_sym__section_repeat6] = STATE(461), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [sym_paragraph] = STATE(389), + [aux_sym__section_repeat6] = STATE(389), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHend] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [642] = { - [sym__subsubsection_declaration] = STATE(171), - [sym_subsubsection] = STATE(466), - [aux_sym__section_repeat5] = STATE(466), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(169), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [474] = { + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(390), + [aux_sym__section_repeat5] = STATE(390), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHend] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [643] = { - [sym__subsection_declaration] = STATE(154), - [sym_subsection] = STATE(470), - [aux_sym__section_repeat4] = STATE(470), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [475] = { + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(392), + [aux_sym__section_repeat4] = STATE(392), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHend] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [644] = { - [sym__section_declaration] = STATE(150), - [sym_section] = STATE(480), - [aux_sym__section_repeat3] = STATE(480), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(161), - [anon_sym_BSLASHaddsec] = ACTIONS(159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(161), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [476] = { + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(515), + [aux_sym__section_repeat2] = STATE(515), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [645] = { - [sym__chapter_declaration] = STATE(136), - [sym_chapter] = STATE(487), - [aux_sym__section_repeat2] = STATE(487), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(4489), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddpart] = ACTIONS(4489), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4487), - [anon_sym_BSLASHchapter] = ACTIONS(155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(157), - [anon_sym_BSLASHaddchap] = ACTIONS(155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(157), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [477] = { + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(516), + [aux_sym__section_repeat3] = STATE(516), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [646] = { - [sym__part_declaration] = STATE(124), - [sym_part] = STATE(493), - [aux_sym__section_repeat1] = STATE(493), - [sym_command_name] = ACTIONS(4489), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym_RPAREN] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_RBRACK] = ACTIONS(4487), - [anon_sym_COMMA] = ACTIONS(4487), - [anon_sym_EQ] = ACTIONS(4487), - [anon_sym_BSLASHpart] = ACTIONS(151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHaddpart] = ACTIONS(151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(153), - [anon_sym_BSLASHchapter] = ACTIONS(4489), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddchap] = ACTIONS(4489), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsection] = ACTIONS(4489), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHaddsec] = ACTIONS(4489), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4489), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4487), - [anon_sym_BSLASHparagraph] = ACTIONS(4489), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4489), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4487), - [anon_sym_BSLASHitem] = ACTIONS(4489), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [sym_word] = ACTIONS(4489), - [sym_placeholder] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_STAR] = ACTIONS(4489), - [anon_sym_SLASH] = ACTIONS(4489), - [anon_sym_CARET] = ACTIONS(4489), - [anon_sym__] = ACTIONS(4489), - [anon_sym_LT] = ACTIONS(4489), - [anon_sym_GT] = ACTIONS(4489), - [anon_sym_BANG] = ACTIONS(4489), - [anon_sym_PIPE] = ACTIONS(4489), - [anon_sym_COLON] = ACTIONS(4489), - [anon_sym_SQUOTE] = ACTIONS(4489), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4487), - [anon_sym_DOLLAR] = ACTIONS(4489), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4487), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4487), - [anon_sym_BSLASHbegin] = ACTIONS(4489), - [anon_sym_BSLASHusepackage] = ACTIONS(4489), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4489), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4489), - [anon_sym_BSLASHinclude] = ACTIONS(4489), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4489), - [anon_sym_BSLASHinput] = ACTIONS(4489), - [anon_sym_BSLASHsubfile] = ACTIONS(4489), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4489), - [anon_sym_BSLASHbibliography] = ACTIONS(4489), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4489), - [anon_sym_BSLASHincludesvg] = ACTIONS(4489), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4489), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4489), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4489), - [anon_sym_BSLASHimport] = ACTIONS(4489), - [anon_sym_BSLASHsubimport] = ACTIONS(4489), - [anon_sym_BSLASHinputfrom] = ACTIONS(4489), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4489), - [anon_sym_BSLASHincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4489), - [anon_sym_BSLASHcaption] = ACTIONS(4489), - [anon_sym_BSLASHcite] = ACTIONS(4489), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCite] = ACTIONS(4489), - [anon_sym_BSLASHnocite] = ACTIONS(4489), - [anon_sym_BSLASHcitet] = ACTIONS(4489), - [anon_sym_BSLASHcitep] = ACTIONS(4489), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteauthor] = ACTIONS(4489), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4489), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitetitle] = ACTIONS(4489), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteyear] = ACTIONS(4489), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4487), - [anon_sym_BSLASHcitedate] = ACTIONS(4489), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4487), - [anon_sym_BSLASHciteurl] = ACTIONS(4489), - [anon_sym_BSLASHfullcite] = ACTIONS(4489), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4489), - [anon_sym_BSLASHcitealt] = ACTIONS(4489), - [anon_sym_BSLASHcitealp] = ACTIONS(4489), - [anon_sym_BSLASHcitetext] = ACTIONS(4489), - [anon_sym_BSLASHparencite] = ACTIONS(4489), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHParencite] = ACTIONS(4489), - [anon_sym_BSLASHfootcite] = ACTIONS(4489), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4489), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4489), - [anon_sym_BSLASHtextcite] = ACTIONS(4489), - [anon_sym_BSLASHTextcite] = ACTIONS(4489), - [anon_sym_BSLASHsmartcite] = ACTIONS(4489), - [anon_sym_BSLASHSmartcite] = ACTIONS(4489), - [anon_sym_BSLASHsupercite] = ACTIONS(4489), - [anon_sym_BSLASHautocite] = ACTIONS(4489), - [anon_sym_BSLASHAutocite] = ACTIONS(4489), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4487), - [anon_sym_BSLASHvolcite] = ACTIONS(4489), - [anon_sym_BSLASHVolcite] = ACTIONS(4489), - [anon_sym_BSLASHpvolcite] = ACTIONS(4489), - [anon_sym_BSLASHPvolcite] = ACTIONS(4489), - [anon_sym_BSLASHfvolcite] = ACTIONS(4489), - [anon_sym_BSLASHftvolcite] = ACTIONS(4489), - [anon_sym_BSLASHsvolcite] = ACTIONS(4489), - [anon_sym_BSLASHSvolcite] = ACTIONS(4489), - [anon_sym_BSLASHtvolcite] = ACTIONS(4489), - [anon_sym_BSLASHTvolcite] = ACTIONS(4489), - [anon_sym_BSLASHavolcite] = ACTIONS(4489), - [anon_sym_BSLASHAvolcite] = ACTIONS(4489), - [anon_sym_BSLASHnotecite] = ACTIONS(4489), - [anon_sym_BSLASHNotecite] = ACTIONS(4489), - [anon_sym_BSLASHpnotecite] = ACTIONS(4489), - [anon_sym_BSLASHPnotecite] = ACTIONS(4489), - [anon_sym_BSLASHfnotecite] = ACTIONS(4489), - [anon_sym_BSLASHlabel] = ACTIONS(4489), - [anon_sym_BSLASHref] = ACTIONS(4489), - [anon_sym_BSLASHeqref] = ACTIONS(4489), - [anon_sym_BSLASHvref] = ACTIONS(4489), - [anon_sym_BSLASHVref] = ACTIONS(4489), - [anon_sym_BSLASHautoref] = ACTIONS(4489), - [anon_sym_BSLASHpageref] = ACTIONS(4489), - [anon_sym_BSLASHcref] = ACTIONS(4489), - [anon_sym_BSLASHCref] = ACTIONS(4489), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnameCref] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4489), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4489), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4489), - [anon_sym_BSLASHlabelcref] = ACTIONS(4489), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange] = ACTIONS(4489), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHCrefrange] = ACTIONS(4489), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4487), - [anon_sym_BSLASHnewlabel] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand] = ACTIONS(4489), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4489), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4489), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4487), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4489), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4487), - [anon_sym_BSLASHdef] = ACTIONS(4489), - [anon_sym_BSLASHlet] = ACTIONS(4489), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4489), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4489), - [anon_sym_BSLASHgls] = ACTIONS(4489), - [anon_sym_BSLASHGls] = ACTIONS(4489), - [anon_sym_BSLASHGLS] = ACTIONS(4489), - [anon_sym_BSLASHglspl] = ACTIONS(4489), - [anon_sym_BSLASHGlspl] = ACTIONS(4489), - [anon_sym_BSLASHGLSpl] = ACTIONS(4489), - [anon_sym_BSLASHglsdisp] = ACTIONS(4489), - [anon_sym_BSLASHglslink] = ACTIONS(4489), - [anon_sym_BSLASHglstext] = ACTIONS(4489), - [anon_sym_BSLASHGlstext] = ACTIONS(4489), - [anon_sym_BSLASHGLStext] = ACTIONS(4489), - [anon_sym_BSLASHglsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4489), - [anon_sym_BSLASHglsplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSplural] = ACTIONS(4489), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4489), - [anon_sym_BSLASHglsname] = ACTIONS(4489), - [anon_sym_BSLASHGlsname] = ACTIONS(4489), - [anon_sym_BSLASHGLSname] = ACTIONS(4489), - [anon_sym_BSLASHglssymbol] = ACTIONS(4489), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4489), - [anon_sym_BSLASHglsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4489), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4489), - [anon_sym_BSLASHglsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4489), - [anon_sym_BSLASHglsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4489), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4489), - [anon_sym_BSLASHglsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4489), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4489), - [anon_sym_BSLASHglsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4489), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4489), - [anon_sym_BSLASHnewacronym] = ACTIONS(4489), - [anon_sym_BSLASHacrshort] = ACTIONS(4489), - [anon_sym_BSLASHAcrshort] = ACTIONS(4489), - [anon_sym_BSLASHACRshort] = ACTIONS(4489), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4489), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4489), - [anon_sym_BSLASHacrlong] = ACTIONS(4489), - [anon_sym_BSLASHAcrlong] = ACTIONS(4489), - [anon_sym_BSLASHACRlong] = ACTIONS(4489), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4489), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4489), - [anon_sym_BSLASHacrfull] = ACTIONS(4489), - [anon_sym_BSLASHAcrfull] = ACTIONS(4489), - [anon_sym_BSLASHACRfull] = ACTIONS(4489), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4489), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4489), - [anon_sym_BSLASHacs] = ACTIONS(4489), - [anon_sym_BSLASHAcs] = ACTIONS(4489), - [anon_sym_BSLASHacsp] = ACTIONS(4489), - [anon_sym_BSLASHAcsp] = ACTIONS(4489), - [anon_sym_BSLASHacl] = ACTIONS(4489), - [anon_sym_BSLASHAcl] = ACTIONS(4489), - [anon_sym_BSLASHaclp] = ACTIONS(4489), - [anon_sym_BSLASHAclp] = ACTIONS(4489), - [anon_sym_BSLASHacf] = ACTIONS(4489), - [anon_sym_BSLASHAcf] = ACTIONS(4489), - [anon_sym_BSLASHacfp] = ACTIONS(4489), - [anon_sym_BSLASHAcfp] = ACTIONS(4489), - [anon_sym_BSLASHac] = ACTIONS(4489), - [anon_sym_BSLASHAc] = ACTIONS(4489), - [anon_sym_BSLASHacp] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4489), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4489), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4489), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4489), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4489), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4489), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4489), - [anon_sym_BSLASHcolor] = ACTIONS(4489), - [anon_sym_BSLASHcolorbox] = ACTIONS(4489), - [anon_sym_BSLASHtextcolor] = ACTIONS(4489), - [anon_sym_BSLASHpagecolor] = ACTIONS(4489), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4489), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4489), + [478] = { + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(517), + [aux_sym__section_repeat4] = STATE(517), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [647] = { - [sym_curly_group] = STATE(779), - [sym_brack_group_text] = STATE(1953), - [sym_command_name] = ACTIONS(4749), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_BSLASHpart] = ACTIONS(4749), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddpart] = ACTIONS(4749), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4747), - [anon_sym_BSLASHchapter] = ACTIONS(4749), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddchap] = ACTIONS(4749), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsection] = ACTIONS(4749), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddsec] = ACTIONS(4749), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubsection] = ACTIONS(4749), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4749), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHparagraph] = ACTIONS(4749), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4749), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4747), - [anon_sym_BSLASHitem] = ACTIONS(4749), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(4749), - [sym_placeholder] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4749), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_CARET] = ACTIONS(4749), - [anon_sym__] = ACTIONS(4749), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_COLON] = ACTIONS(4749), - [anon_sym_SQUOTE] = ACTIONS(4749), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4747), - [anon_sym_DOLLAR] = ACTIONS(4749), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4747), - [anon_sym_BSLASHbegin] = ACTIONS(4749), - [anon_sym_BSLASHend] = ACTIONS(4749), - [anon_sym_BSLASHusepackage] = ACTIONS(4749), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4749), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4749), - [anon_sym_BSLASHinclude] = ACTIONS(4749), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4749), - [anon_sym_BSLASHinput] = ACTIONS(4749), - [anon_sym_BSLASHsubfile] = ACTIONS(4749), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4749), - [anon_sym_BSLASHbibliography] = ACTIONS(4749), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4749), - [anon_sym_BSLASHincludesvg] = ACTIONS(4749), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4749), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4749), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4749), - [anon_sym_BSLASHimport] = ACTIONS(4749), - [anon_sym_BSLASHsubimport] = ACTIONS(4749), - [anon_sym_BSLASHinputfrom] = ACTIONS(4749), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4749), - [anon_sym_BSLASHincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHcaption] = ACTIONS(4749), - [anon_sym_BSLASHcite] = ACTIONS(4749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCite] = ACTIONS(4749), - [anon_sym_BSLASHnocite] = ACTIONS(4749), - [anon_sym_BSLASHcitet] = ACTIONS(4749), - [anon_sym_BSLASHcitep] = ACTIONS(4749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteauthor] = ACTIONS(4749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitetitle] = ACTIONS(4749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteyear] = ACTIONS(4749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitedate] = ACTIONS(4749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteurl] = ACTIONS(4749), - [anon_sym_BSLASHfullcite] = ACTIONS(4749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4749), - [anon_sym_BSLASHcitealt] = ACTIONS(4749), - [anon_sym_BSLASHcitealp] = ACTIONS(4749), - [anon_sym_BSLASHcitetext] = ACTIONS(4749), - [anon_sym_BSLASHparencite] = ACTIONS(4749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHParencite] = ACTIONS(4749), - [anon_sym_BSLASHfootcite] = ACTIONS(4749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4749), - [anon_sym_BSLASHtextcite] = ACTIONS(4749), - [anon_sym_BSLASHTextcite] = ACTIONS(4749), - [anon_sym_BSLASHsmartcite] = ACTIONS(4749), - [anon_sym_BSLASHSmartcite] = ACTIONS(4749), - [anon_sym_BSLASHsupercite] = ACTIONS(4749), - [anon_sym_BSLASHautocite] = ACTIONS(4749), - [anon_sym_BSLASHAutocite] = ACTIONS(4749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHvolcite] = ACTIONS(4749), - [anon_sym_BSLASHVolcite] = ACTIONS(4749), - [anon_sym_BSLASHpvolcite] = ACTIONS(4749), - [anon_sym_BSLASHPvolcite] = ACTIONS(4749), - [anon_sym_BSLASHfvolcite] = ACTIONS(4749), - [anon_sym_BSLASHftvolcite] = ACTIONS(4749), - [anon_sym_BSLASHsvolcite] = ACTIONS(4749), - [anon_sym_BSLASHSvolcite] = ACTIONS(4749), - [anon_sym_BSLASHtvolcite] = ACTIONS(4749), - [anon_sym_BSLASHTvolcite] = ACTIONS(4749), - [anon_sym_BSLASHavolcite] = ACTIONS(4749), - [anon_sym_BSLASHAvolcite] = ACTIONS(4749), - [anon_sym_BSLASHnotecite] = ACTIONS(4749), - [anon_sym_BSLASHNotecite] = ACTIONS(4749), - [anon_sym_BSLASHpnotecite] = ACTIONS(4749), - [anon_sym_BSLASHPnotecite] = ACTIONS(4749), - [anon_sym_BSLASHfnotecite] = ACTIONS(4749), - [anon_sym_BSLASHlabel] = ACTIONS(4749), - [anon_sym_BSLASHref] = ACTIONS(4749), - [anon_sym_BSLASHeqref] = ACTIONS(4749), - [anon_sym_BSLASHvref] = ACTIONS(4749), - [anon_sym_BSLASHVref] = ACTIONS(4749), - [anon_sym_BSLASHautoref] = ACTIONS(4749), - [anon_sym_BSLASHpageref] = ACTIONS(4749), - [anon_sym_BSLASHcref] = ACTIONS(4749), - [anon_sym_BSLASHCref] = ACTIONS(4749), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnameCref] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHlabelcref] = ACTIONS(4749), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCrefrange] = ACTIONS(4749), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnewlabel] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4749), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4749), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4749), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4747), - [anon_sym_BSLASHdef] = ACTIONS(4749), - [anon_sym_BSLASHlet] = ACTIONS(4749), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4749), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4749), - [anon_sym_BSLASHgls] = ACTIONS(4749), - [anon_sym_BSLASHGls] = ACTIONS(4749), - [anon_sym_BSLASHGLS] = ACTIONS(4749), - [anon_sym_BSLASHglspl] = ACTIONS(4749), - [anon_sym_BSLASHGlspl] = ACTIONS(4749), - [anon_sym_BSLASHGLSpl] = ACTIONS(4749), - [anon_sym_BSLASHglsdisp] = ACTIONS(4749), - [anon_sym_BSLASHglslink] = ACTIONS(4749), - [anon_sym_BSLASHglstext] = ACTIONS(4749), - [anon_sym_BSLASHGlstext] = ACTIONS(4749), - [anon_sym_BSLASHGLStext] = ACTIONS(4749), - [anon_sym_BSLASHglsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4749), - [anon_sym_BSLASHglsplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSplural] = ACTIONS(4749), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHglsname] = ACTIONS(4749), - [anon_sym_BSLASHGlsname] = ACTIONS(4749), - [anon_sym_BSLASHGLSname] = ACTIONS(4749), - [anon_sym_BSLASHglssymbol] = ACTIONS(4749), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4749), - [anon_sym_BSLASHglsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4749), - [anon_sym_BSLASHglsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4749), - [anon_sym_BSLASHglsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4749), - [anon_sym_BSLASHglsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4749), - [anon_sym_BSLASHglsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4749), - [anon_sym_BSLASHnewacronym] = ACTIONS(4749), - [anon_sym_BSLASHacrshort] = ACTIONS(4749), - [anon_sym_BSLASHAcrshort] = ACTIONS(4749), - [anon_sym_BSLASHACRshort] = ACTIONS(4749), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4749), - [anon_sym_BSLASHacrlong] = ACTIONS(4749), - [anon_sym_BSLASHAcrlong] = ACTIONS(4749), - [anon_sym_BSLASHACRlong] = ACTIONS(4749), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4749), - [anon_sym_BSLASHacrfull] = ACTIONS(4749), - [anon_sym_BSLASHAcrfull] = ACTIONS(4749), - [anon_sym_BSLASHACRfull] = ACTIONS(4749), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4749), - [anon_sym_BSLASHacs] = ACTIONS(4749), - [anon_sym_BSLASHAcs] = ACTIONS(4749), - [anon_sym_BSLASHacsp] = ACTIONS(4749), - [anon_sym_BSLASHAcsp] = ACTIONS(4749), - [anon_sym_BSLASHacl] = ACTIONS(4749), - [anon_sym_BSLASHAcl] = ACTIONS(4749), - [anon_sym_BSLASHaclp] = ACTIONS(4749), - [anon_sym_BSLASHAclp] = ACTIONS(4749), - [anon_sym_BSLASHacf] = ACTIONS(4749), - [anon_sym_BSLASHAcf] = ACTIONS(4749), - [anon_sym_BSLASHacfp] = ACTIONS(4749), - [anon_sym_BSLASHAcfp] = ACTIONS(4749), - [anon_sym_BSLASHac] = ACTIONS(4749), - [anon_sym_BSLASHAc] = ACTIONS(4749), - [anon_sym_BSLASHacp] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4749), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4749), - [anon_sym_BSLASHcolor] = ACTIONS(4749), - [anon_sym_BSLASHcolorbox] = ACTIONS(4749), - [anon_sym_BSLASHtextcolor] = ACTIONS(4749), - [anon_sym_BSLASHpagecolor] = ACTIONS(4749), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4749), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4749), + [479] = { + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(518), + [aux_sym__section_repeat5] = STATE(518), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [648] = { - [sym_curly_group] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(4763), - [sym_command_name] = ACTIONS(4765), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4765), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_RPAREN] = ACTIONS(4763), - [anon_sym_LBRACK] = ACTIONS(4763), - [anon_sym_RBRACK] = ACTIONS(4763), - [anon_sym_COMMA] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(4763), - [anon_sym_BSLASHpart] = ACTIONS(4765), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddpart] = ACTIONS(4765), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4763), - [anon_sym_BSLASHchapter] = ACTIONS(4765), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddchap] = ACTIONS(4765), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsection] = ACTIONS(4765), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddsec] = ACTIONS(4765), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubsection] = ACTIONS(4765), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4765), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHparagraph] = ACTIONS(4765), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4765), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4763), - [anon_sym_BSLASHitem] = ACTIONS(4765), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4763), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4763), - [sym_word] = ACTIONS(4765), - [sym_placeholder] = ACTIONS(4763), - [anon_sym_PLUS] = ACTIONS(4765), - [anon_sym_DASH] = ACTIONS(4765), - [anon_sym_STAR] = ACTIONS(4765), - [anon_sym_SLASH] = ACTIONS(4765), - [anon_sym_CARET] = ACTIONS(4765), - [anon_sym__] = ACTIONS(4765), - [anon_sym_LT] = ACTIONS(4765), - [anon_sym_GT] = ACTIONS(4765), - [anon_sym_BANG] = ACTIONS(4765), - [anon_sym_PIPE] = ACTIONS(4765), - [anon_sym_COLON] = ACTIONS(4765), - [anon_sym_SQUOTE] = ACTIONS(4765), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4763), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4763), - [anon_sym_DOLLAR] = ACTIONS(4765), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4763), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4763), - [anon_sym_BSLASHbegin] = ACTIONS(4765), - [anon_sym_BSLASHusepackage] = ACTIONS(4765), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4765), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4765), - [anon_sym_BSLASHinclude] = ACTIONS(4765), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4765), - [anon_sym_BSLASHinput] = ACTIONS(4765), - [anon_sym_BSLASHsubfile] = ACTIONS(4765), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4765), - [anon_sym_BSLASHbibliography] = ACTIONS(4765), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4765), - [anon_sym_BSLASHincludesvg] = ACTIONS(4765), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4765), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4765), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4765), - [anon_sym_BSLASHimport] = ACTIONS(4765), - [anon_sym_BSLASHsubimport] = ACTIONS(4765), - [anon_sym_BSLASHinputfrom] = ACTIONS(4765), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4765), - [anon_sym_BSLASHincludefrom] = ACTIONS(4765), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4765), - [anon_sym_BSLASHcaption] = ACTIONS(4765), - [anon_sym_BSLASHcite] = ACTIONS(4765), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCite] = ACTIONS(4765), - [anon_sym_BSLASHnocite] = ACTIONS(4765), - [anon_sym_BSLASHcitet] = ACTIONS(4765), - [anon_sym_BSLASHcitep] = ACTIONS(4765), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteauthor] = ACTIONS(4765), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4765), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitetitle] = ACTIONS(4765), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteyear] = ACTIONS(4765), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitedate] = ACTIONS(4765), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteurl] = ACTIONS(4765), - [anon_sym_BSLASHfullcite] = ACTIONS(4765), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4765), - [anon_sym_BSLASHcitealt] = ACTIONS(4765), - [anon_sym_BSLASHcitealp] = ACTIONS(4765), - [anon_sym_BSLASHcitetext] = ACTIONS(4765), - [anon_sym_BSLASHparencite] = ACTIONS(4765), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHParencite] = ACTIONS(4765), - [anon_sym_BSLASHfootcite] = ACTIONS(4765), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4765), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4765), - [anon_sym_BSLASHtextcite] = ACTIONS(4765), - [anon_sym_BSLASHTextcite] = ACTIONS(4765), - [anon_sym_BSLASHsmartcite] = ACTIONS(4765), - [anon_sym_BSLASHSmartcite] = ACTIONS(4765), - [anon_sym_BSLASHsupercite] = ACTIONS(4765), - [anon_sym_BSLASHautocite] = ACTIONS(4765), - [anon_sym_BSLASHAutocite] = ACTIONS(4765), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHvolcite] = ACTIONS(4765), - [anon_sym_BSLASHVolcite] = ACTIONS(4765), - [anon_sym_BSLASHpvolcite] = ACTIONS(4765), - [anon_sym_BSLASHPvolcite] = ACTIONS(4765), - [anon_sym_BSLASHfvolcite] = ACTIONS(4765), - [anon_sym_BSLASHftvolcite] = ACTIONS(4765), - [anon_sym_BSLASHsvolcite] = ACTIONS(4765), - [anon_sym_BSLASHSvolcite] = ACTIONS(4765), - [anon_sym_BSLASHtvolcite] = ACTIONS(4765), - [anon_sym_BSLASHTvolcite] = ACTIONS(4765), - [anon_sym_BSLASHavolcite] = ACTIONS(4765), - [anon_sym_BSLASHAvolcite] = ACTIONS(4765), - [anon_sym_BSLASHnotecite] = ACTIONS(4765), - [anon_sym_BSLASHNotecite] = ACTIONS(4765), - [anon_sym_BSLASHpnotecite] = ACTIONS(4765), - [anon_sym_BSLASHPnotecite] = ACTIONS(4765), - [anon_sym_BSLASHfnotecite] = ACTIONS(4765), - [anon_sym_BSLASHlabel] = ACTIONS(4765), - [anon_sym_BSLASHref] = ACTIONS(4765), - [anon_sym_BSLASHeqref] = ACTIONS(4765), - [anon_sym_BSLASHvref] = ACTIONS(4765), - [anon_sym_BSLASHVref] = ACTIONS(4765), - [anon_sym_BSLASHautoref] = ACTIONS(4765), - [anon_sym_BSLASHpageref] = ACTIONS(4765), - [anon_sym_BSLASHcref] = ACTIONS(4765), - [anon_sym_BSLASHCref] = ACTIONS(4765), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4763), - [anon_sym_BSLASHnamecref] = ACTIONS(4765), - [anon_sym_BSLASHnameCref] = ACTIONS(4765), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4765), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4765), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4765), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4765), - [anon_sym_BSLASHlabelcref] = ACTIONS(4765), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4765), - [anon_sym_BSLASHcrefrange] = ACTIONS(4765), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCrefrange] = ACTIONS(4765), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4763), - [anon_sym_BSLASHnewlabel] = ACTIONS(4765), - [anon_sym_BSLASHnewcommand] = ACTIONS(4765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4763), - [anon_sym_BSLASHdef] = ACTIONS(4765), - [anon_sym_BSLASHlet] = ACTIONS(4765), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4765), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4765), - [anon_sym_BSLASHgls] = ACTIONS(4765), - [anon_sym_BSLASHGls] = ACTIONS(4765), - [anon_sym_BSLASHGLS] = ACTIONS(4765), - [anon_sym_BSLASHglspl] = ACTIONS(4765), - [anon_sym_BSLASHGlspl] = ACTIONS(4765), - [anon_sym_BSLASHGLSpl] = ACTIONS(4765), - [anon_sym_BSLASHglsdisp] = ACTIONS(4765), - [anon_sym_BSLASHglslink] = ACTIONS(4765), - [anon_sym_BSLASHglstext] = ACTIONS(4765), - [anon_sym_BSLASHGlstext] = ACTIONS(4765), - [anon_sym_BSLASHGLStext] = ACTIONS(4765), - [anon_sym_BSLASHglsfirst] = ACTIONS(4765), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4765), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4765), - [anon_sym_BSLASHglsplural] = ACTIONS(4765), - [anon_sym_BSLASHGlsplural] = ACTIONS(4765), - [anon_sym_BSLASHGLSplural] = ACTIONS(4765), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHglsname] = ACTIONS(4765), - [anon_sym_BSLASHGlsname] = ACTIONS(4765), - [anon_sym_BSLASHGLSname] = ACTIONS(4765), - [anon_sym_BSLASHglssymbol] = ACTIONS(4765), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4765), - [anon_sym_BSLASHglsdesc] = ACTIONS(4765), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4765), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4765), - [anon_sym_BSLASHglsuseri] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4765), - [anon_sym_BSLASHglsuserii] = ACTIONS(4765), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4765), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4765), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4765), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4765), - [anon_sym_BSLASHglsuserv] = ACTIONS(4765), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4765), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4765), - [anon_sym_BSLASHglsuservi] = ACTIONS(4765), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4765), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4765), - [anon_sym_BSLASHnewacronym] = ACTIONS(4765), - [anon_sym_BSLASHacrshort] = ACTIONS(4765), - [anon_sym_BSLASHAcrshort] = ACTIONS(4765), - [anon_sym_BSLASHACRshort] = ACTIONS(4765), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4765), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4765), - [anon_sym_BSLASHacrlong] = ACTIONS(4765), - [anon_sym_BSLASHAcrlong] = ACTIONS(4765), - [anon_sym_BSLASHACRlong] = ACTIONS(4765), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4765), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4765), - [anon_sym_BSLASHacrfull] = ACTIONS(4765), - [anon_sym_BSLASHAcrfull] = ACTIONS(4765), - [anon_sym_BSLASHACRfull] = ACTIONS(4765), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4765), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4765), - [anon_sym_BSLASHacs] = ACTIONS(4765), - [anon_sym_BSLASHAcs] = ACTIONS(4765), - [anon_sym_BSLASHacsp] = ACTIONS(4765), - [anon_sym_BSLASHAcsp] = ACTIONS(4765), - [anon_sym_BSLASHacl] = ACTIONS(4765), - [anon_sym_BSLASHAcl] = ACTIONS(4765), - [anon_sym_BSLASHaclp] = ACTIONS(4765), - [anon_sym_BSLASHAclp] = ACTIONS(4765), - [anon_sym_BSLASHacf] = ACTIONS(4765), - [anon_sym_BSLASHAcf] = ACTIONS(4765), - [anon_sym_BSLASHacfp] = ACTIONS(4765), - [anon_sym_BSLASHAcfp] = ACTIONS(4765), - [anon_sym_BSLASHac] = ACTIONS(4765), - [anon_sym_BSLASHAc] = ACTIONS(4765), - [anon_sym_BSLASHacp] = ACTIONS(4765), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4765), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4765), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4765), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4765), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4765), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4765), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4765), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4765), - [anon_sym_BSLASHcolor] = ACTIONS(4765), - [anon_sym_BSLASHcolorbox] = ACTIONS(4765), - [anon_sym_BSLASHtextcolor] = ACTIONS(4765), - [anon_sym_BSLASHpagecolor] = ACTIONS(4765), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4765), + [480] = { + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(519), + [aux_sym__section_repeat6] = STATE(519), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [649] = { - [sym_curly_group] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(4767), - [sym_command_name] = ACTIONS(4769), + [481] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), + }, + [482] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), + }, + [483] = { + [sym_curly_group] = STATE(657), + [sym_brack_group_text] = STATE(1988), + [ts_builtin_sym_end] = ACTIONS(4689), + [sym_command_name] = ACTIONS(4691), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4767), - [anon_sym_RPAREN] = ACTIONS(4767), - [anon_sym_LBRACK] = ACTIONS(4767), - [anon_sym_RBRACK] = ACTIONS(4767), - [anon_sym_COMMA] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_BSLASHpart] = ACTIONS(4769), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddpart] = ACTIONS(4769), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4767), - [anon_sym_BSLASHchapter] = ACTIONS(4769), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddchap] = ACTIONS(4769), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsection] = ACTIONS(4769), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddsec] = ACTIONS(4769), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubsection] = ACTIONS(4769), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4769), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHparagraph] = ACTIONS(4769), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4769), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4767), - [anon_sym_BSLASHitem] = ACTIONS(4769), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4767), + [anon_sym_BSLASHiffalse] = ACTIONS(4691), + [anon_sym_LPAREN] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4689), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4689), + [anon_sym_COMMA] = ACTIONS(4689), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_BSLASHpart] = ACTIONS(4691), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddpart] = ACTIONS(4691), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), + [anon_sym_BSLASHchapter] = ACTIONS(4691), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddchap] = ACTIONS(4691), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsection] = ACTIONS(4691), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddsec] = ACTIONS(4691), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubsection] = ACTIONS(4691), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHparagraph] = ACTIONS(4691), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), + [anon_sym_BSLASHitem] = ACTIONS(4691), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4767), - [sym_word] = ACTIONS(4769), - [sym_placeholder] = ACTIONS(4767), - [anon_sym_PLUS] = ACTIONS(4769), - [anon_sym_DASH] = ACTIONS(4769), - [anon_sym_STAR] = ACTIONS(4769), - [anon_sym_SLASH] = ACTIONS(4769), - [anon_sym_CARET] = ACTIONS(4769), - [anon_sym__] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4769), - [anon_sym_GT] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4769), - [anon_sym_PIPE] = ACTIONS(4769), - [anon_sym_COLON] = ACTIONS(4769), - [anon_sym_SQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4767), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4767), - [anon_sym_DOLLAR] = ACTIONS(4769), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4767), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4767), - [anon_sym_BSLASHbegin] = ACTIONS(4769), - [anon_sym_BSLASHusepackage] = ACTIONS(4769), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4769), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4769), - [anon_sym_BSLASHinclude] = ACTIONS(4769), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4769), - [anon_sym_BSLASHinput] = ACTIONS(4769), - [anon_sym_BSLASHsubfile] = ACTIONS(4769), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4769), - [anon_sym_BSLASHbibliography] = ACTIONS(4769), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4769), - [anon_sym_BSLASHincludesvg] = ACTIONS(4769), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4769), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4769), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4769), - [anon_sym_BSLASHimport] = ACTIONS(4769), - [anon_sym_BSLASHsubimport] = ACTIONS(4769), - [anon_sym_BSLASHinputfrom] = ACTIONS(4769), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4769), - [anon_sym_BSLASHincludefrom] = ACTIONS(4769), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4769), - [anon_sym_BSLASHcaption] = ACTIONS(4769), - [anon_sym_BSLASHcite] = ACTIONS(4769), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCite] = ACTIONS(4769), - [anon_sym_BSLASHnocite] = ACTIONS(4769), - [anon_sym_BSLASHcitet] = ACTIONS(4769), - [anon_sym_BSLASHcitep] = ACTIONS(4769), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteauthor] = ACTIONS(4769), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4769), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitetitle] = ACTIONS(4769), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteyear] = ACTIONS(4769), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitedate] = ACTIONS(4769), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteurl] = ACTIONS(4769), - [anon_sym_BSLASHfullcite] = ACTIONS(4769), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4769), - [anon_sym_BSLASHcitealt] = ACTIONS(4769), - [anon_sym_BSLASHcitealp] = ACTIONS(4769), - [anon_sym_BSLASHcitetext] = ACTIONS(4769), - [anon_sym_BSLASHparencite] = ACTIONS(4769), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHParencite] = ACTIONS(4769), - [anon_sym_BSLASHfootcite] = ACTIONS(4769), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4769), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4769), - [anon_sym_BSLASHtextcite] = ACTIONS(4769), - [anon_sym_BSLASHTextcite] = ACTIONS(4769), - [anon_sym_BSLASHsmartcite] = ACTIONS(4769), - [anon_sym_BSLASHSmartcite] = ACTIONS(4769), - [anon_sym_BSLASHsupercite] = ACTIONS(4769), - [anon_sym_BSLASHautocite] = ACTIONS(4769), - [anon_sym_BSLASHAutocite] = ACTIONS(4769), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHvolcite] = ACTIONS(4769), - [anon_sym_BSLASHVolcite] = ACTIONS(4769), - [anon_sym_BSLASHpvolcite] = ACTIONS(4769), - [anon_sym_BSLASHPvolcite] = ACTIONS(4769), - [anon_sym_BSLASHfvolcite] = ACTIONS(4769), - [anon_sym_BSLASHftvolcite] = ACTIONS(4769), - [anon_sym_BSLASHsvolcite] = ACTIONS(4769), - [anon_sym_BSLASHSvolcite] = ACTIONS(4769), - [anon_sym_BSLASHtvolcite] = ACTIONS(4769), - [anon_sym_BSLASHTvolcite] = ACTIONS(4769), - [anon_sym_BSLASHavolcite] = ACTIONS(4769), - [anon_sym_BSLASHAvolcite] = ACTIONS(4769), - [anon_sym_BSLASHnotecite] = ACTIONS(4769), - [anon_sym_BSLASHNotecite] = ACTIONS(4769), - [anon_sym_BSLASHpnotecite] = ACTIONS(4769), - [anon_sym_BSLASHPnotecite] = ACTIONS(4769), - [anon_sym_BSLASHfnotecite] = ACTIONS(4769), - [anon_sym_BSLASHlabel] = ACTIONS(4769), - [anon_sym_BSLASHref] = ACTIONS(4769), - [anon_sym_BSLASHeqref] = ACTIONS(4769), - [anon_sym_BSLASHvref] = ACTIONS(4769), - [anon_sym_BSLASHVref] = ACTIONS(4769), - [anon_sym_BSLASHautoref] = ACTIONS(4769), - [anon_sym_BSLASHpageref] = ACTIONS(4769), - [anon_sym_BSLASHcref] = ACTIONS(4769), - [anon_sym_BSLASHCref] = ACTIONS(4769), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4767), - [anon_sym_BSLASHnamecref] = ACTIONS(4769), - [anon_sym_BSLASHnameCref] = ACTIONS(4769), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4769), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4769), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4769), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4769), - [anon_sym_BSLASHlabelcref] = ACTIONS(4769), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4769), - [anon_sym_BSLASHcrefrange] = ACTIONS(4769), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCrefrange] = ACTIONS(4769), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4767), - [anon_sym_BSLASHnewlabel] = ACTIONS(4769), - [anon_sym_BSLASHnewcommand] = ACTIONS(4769), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4769), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4769), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4769), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4767), - [anon_sym_BSLASHdef] = ACTIONS(4769), - [anon_sym_BSLASHlet] = ACTIONS(4769), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4769), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4769), - [anon_sym_BSLASHgls] = ACTIONS(4769), - [anon_sym_BSLASHGls] = ACTIONS(4769), - [anon_sym_BSLASHGLS] = ACTIONS(4769), - [anon_sym_BSLASHglspl] = ACTIONS(4769), - [anon_sym_BSLASHGlspl] = ACTIONS(4769), - [anon_sym_BSLASHGLSpl] = ACTIONS(4769), - [anon_sym_BSLASHglsdisp] = ACTIONS(4769), - [anon_sym_BSLASHglslink] = ACTIONS(4769), - [anon_sym_BSLASHglstext] = ACTIONS(4769), - [anon_sym_BSLASHGlstext] = ACTIONS(4769), - [anon_sym_BSLASHGLStext] = ACTIONS(4769), - [anon_sym_BSLASHglsfirst] = ACTIONS(4769), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4769), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4769), - [anon_sym_BSLASHglsplural] = ACTIONS(4769), - [anon_sym_BSLASHGlsplural] = ACTIONS(4769), - [anon_sym_BSLASHGLSplural] = ACTIONS(4769), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHglsname] = ACTIONS(4769), - [anon_sym_BSLASHGlsname] = ACTIONS(4769), - [anon_sym_BSLASHGLSname] = ACTIONS(4769), - [anon_sym_BSLASHglssymbol] = ACTIONS(4769), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4769), - [anon_sym_BSLASHglsdesc] = ACTIONS(4769), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4769), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4769), - [anon_sym_BSLASHglsuseri] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4769), - [anon_sym_BSLASHglsuserii] = ACTIONS(4769), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4769), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4769), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4769), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4769), - [anon_sym_BSLASHglsuserv] = ACTIONS(4769), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4769), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4769), - [anon_sym_BSLASHglsuservi] = ACTIONS(4769), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4769), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4769), - [anon_sym_BSLASHnewacronym] = ACTIONS(4769), - [anon_sym_BSLASHacrshort] = ACTIONS(4769), - [anon_sym_BSLASHAcrshort] = ACTIONS(4769), - [anon_sym_BSLASHACRshort] = ACTIONS(4769), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4769), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4769), - [anon_sym_BSLASHacrlong] = ACTIONS(4769), - [anon_sym_BSLASHAcrlong] = ACTIONS(4769), - [anon_sym_BSLASHACRlong] = ACTIONS(4769), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4769), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4769), - [anon_sym_BSLASHacrfull] = ACTIONS(4769), - [anon_sym_BSLASHAcrfull] = ACTIONS(4769), - [anon_sym_BSLASHACRfull] = ACTIONS(4769), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4769), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4769), - [anon_sym_BSLASHacs] = ACTIONS(4769), - [anon_sym_BSLASHAcs] = ACTIONS(4769), - [anon_sym_BSLASHacsp] = ACTIONS(4769), - [anon_sym_BSLASHAcsp] = ACTIONS(4769), - [anon_sym_BSLASHacl] = ACTIONS(4769), - [anon_sym_BSLASHAcl] = ACTIONS(4769), - [anon_sym_BSLASHaclp] = ACTIONS(4769), - [anon_sym_BSLASHAclp] = ACTIONS(4769), - [anon_sym_BSLASHacf] = ACTIONS(4769), - [anon_sym_BSLASHAcf] = ACTIONS(4769), - [anon_sym_BSLASHacfp] = ACTIONS(4769), - [anon_sym_BSLASHAcfp] = ACTIONS(4769), - [anon_sym_BSLASHac] = ACTIONS(4769), - [anon_sym_BSLASHAc] = ACTIONS(4769), - [anon_sym_BSLASHacp] = ACTIONS(4769), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4769), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4769), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4769), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4769), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4769), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4769), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4769), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4769), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4769), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4769), - [anon_sym_BSLASHcolor] = ACTIONS(4769), - [anon_sym_BSLASHcolorbox] = ACTIONS(4769), - [anon_sym_BSLASHtextcolor] = ACTIONS(4769), - [anon_sym_BSLASHpagecolor] = ACTIONS(4769), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4769), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4769), + [anon_sym_RBRACE] = ACTIONS(4689), + [sym_word] = ACTIONS(4691), + [sym_placeholder] = ACTIONS(4689), + [anon_sym_PLUS] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(4691), + [anon_sym_STAR] = ACTIONS(4691), + [anon_sym_SLASH] = ACTIONS(4691), + [anon_sym_CARET] = ACTIONS(4691), + [anon_sym__] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4691), + [anon_sym_GT] = ACTIONS(4691), + [anon_sym_BANG] = ACTIONS(4691), + [anon_sym_PIPE] = ACTIONS(4691), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_SQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), + [anon_sym_DOLLAR] = ACTIONS(4691), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), + [anon_sym_BSLASHbegin] = ACTIONS(4691), + [anon_sym_BSLASHusepackage] = ACTIONS(4691), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), + [anon_sym_BSLASHinclude] = ACTIONS(4691), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), + [anon_sym_BSLASHinput] = ACTIONS(4691), + [anon_sym_BSLASHsubfile] = ACTIONS(4691), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), + [anon_sym_BSLASHbibliography] = ACTIONS(4691), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), + [anon_sym_BSLASHincludesvg] = ACTIONS(4691), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), + [anon_sym_BSLASHimport] = ACTIONS(4691), + [anon_sym_BSLASHsubimport] = ACTIONS(4691), + [anon_sym_BSLASHinputfrom] = ACTIONS(4691), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), + [anon_sym_BSLASHincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHcaption] = ACTIONS(4691), + [anon_sym_BSLASHcite] = ACTIONS(4691), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCite] = ACTIONS(4691), + [anon_sym_BSLASHnocite] = ACTIONS(4691), + [anon_sym_BSLASHcitet] = ACTIONS(4691), + [anon_sym_BSLASHcitep] = ACTIONS(4691), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteauthor] = ACTIONS(4691), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitetitle] = ACTIONS(4691), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteyear] = ACTIONS(4691), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitedate] = ACTIONS(4691), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteurl] = ACTIONS(4691), + [anon_sym_BSLASHfullcite] = ACTIONS(4691), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), + [anon_sym_BSLASHcitealt] = ACTIONS(4691), + [anon_sym_BSLASHcitealp] = ACTIONS(4691), + [anon_sym_BSLASHcitetext] = ACTIONS(4691), + [anon_sym_BSLASHparencite] = ACTIONS(4691), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHParencite] = ACTIONS(4691), + [anon_sym_BSLASHfootcite] = ACTIONS(4691), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), + [anon_sym_BSLASHtextcite] = ACTIONS(4691), + [anon_sym_BSLASHTextcite] = ACTIONS(4691), + [anon_sym_BSLASHsmartcite] = ACTIONS(4691), + [anon_sym_BSLASHSmartcite] = ACTIONS(4691), + [anon_sym_BSLASHsupercite] = ACTIONS(4691), + [anon_sym_BSLASHautocite] = ACTIONS(4691), + [anon_sym_BSLASHAutocite] = ACTIONS(4691), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHvolcite] = ACTIONS(4691), + [anon_sym_BSLASHVolcite] = ACTIONS(4691), + [anon_sym_BSLASHpvolcite] = ACTIONS(4691), + [anon_sym_BSLASHPvolcite] = ACTIONS(4691), + [anon_sym_BSLASHfvolcite] = ACTIONS(4691), + [anon_sym_BSLASHftvolcite] = ACTIONS(4691), + [anon_sym_BSLASHsvolcite] = ACTIONS(4691), + [anon_sym_BSLASHSvolcite] = ACTIONS(4691), + [anon_sym_BSLASHtvolcite] = ACTIONS(4691), + [anon_sym_BSLASHTvolcite] = ACTIONS(4691), + [anon_sym_BSLASHavolcite] = ACTIONS(4691), + [anon_sym_BSLASHAvolcite] = ACTIONS(4691), + [anon_sym_BSLASHnotecite] = ACTIONS(4691), + [anon_sym_BSLASHNotecite] = ACTIONS(4691), + [anon_sym_BSLASHpnotecite] = ACTIONS(4691), + [anon_sym_BSLASHPnotecite] = ACTIONS(4691), + [anon_sym_BSLASHfnotecite] = ACTIONS(4691), + [anon_sym_BSLASHlabel] = ACTIONS(4691), + [anon_sym_BSLASHref] = ACTIONS(4691), + [anon_sym_BSLASHeqref] = ACTIONS(4691), + [anon_sym_BSLASHvref] = ACTIONS(4691), + [anon_sym_BSLASHVref] = ACTIONS(4691), + [anon_sym_BSLASHautoref] = ACTIONS(4691), + [anon_sym_BSLASHpageref] = ACTIONS(4691), + [anon_sym_BSLASHcref] = ACTIONS(4691), + [anon_sym_BSLASHCref] = ACTIONS(4691), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnameCref] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHlabelcref] = ACTIONS(4691), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCrefrange] = ACTIONS(4691), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnewlabel] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), + [anon_sym_BSLASHdef] = ACTIONS(4691), + [anon_sym_BSLASHlet] = ACTIONS(4691), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), + [anon_sym_BSLASHgls] = ACTIONS(4691), + [anon_sym_BSLASHGls] = ACTIONS(4691), + [anon_sym_BSLASHGLS] = ACTIONS(4691), + [anon_sym_BSLASHglspl] = ACTIONS(4691), + [anon_sym_BSLASHGlspl] = ACTIONS(4691), + [anon_sym_BSLASHGLSpl] = ACTIONS(4691), + [anon_sym_BSLASHglsdisp] = ACTIONS(4691), + [anon_sym_BSLASHglslink] = ACTIONS(4691), + [anon_sym_BSLASHglstext] = ACTIONS(4691), + [anon_sym_BSLASHGlstext] = ACTIONS(4691), + [anon_sym_BSLASHGLStext] = ACTIONS(4691), + [anon_sym_BSLASHglsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), + [anon_sym_BSLASHglsplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSplural] = ACTIONS(4691), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHglsname] = ACTIONS(4691), + [anon_sym_BSLASHGlsname] = ACTIONS(4691), + [anon_sym_BSLASHGLSname] = ACTIONS(4691), + [anon_sym_BSLASHglssymbol] = ACTIONS(4691), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), + [anon_sym_BSLASHglsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), + [anon_sym_BSLASHglsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), + [anon_sym_BSLASHglsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), + [anon_sym_BSLASHglsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), + [anon_sym_BSLASHglsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), + [anon_sym_BSLASHnewacronym] = ACTIONS(4691), + [anon_sym_BSLASHacrshort] = ACTIONS(4691), + [anon_sym_BSLASHAcrshort] = ACTIONS(4691), + [anon_sym_BSLASHACRshort] = ACTIONS(4691), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), + [anon_sym_BSLASHacrlong] = ACTIONS(4691), + [anon_sym_BSLASHAcrlong] = ACTIONS(4691), + [anon_sym_BSLASHACRlong] = ACTIONS(4691), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), + [anon_sym_BSLASHacrfull] = ACTIONS(4691), + [anon_sym_BSLASHAcrfull] = ACTIONS(4691), + [anon_sym_BSLASHACRfull] = ACTIONS(4691), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), + [anon_sym_BSLASHacs] = ACTIONS(4691), + [anon_sym_BSLASHAcs] = ACTIONS(4691), + [anon_sym_BSLASHacsp] = ACTIONS(4691), + [anon_sym_BSLASHAcsp] = ACTIONS(4691), + [anon_sym_BSLASHacl] = ACTIONS(4691), + [anon_sym_BSLASHAcl] = ACTIONS(4691), + [anon_sym_BSLASHaclp] = ACTIONS(4691), + [anon_sym_BSLASHAclp] = ACTIONS(4691), + [anon_sym_BSLASHacf] = ACTIONS(4691), + [anon_sym_BSLASHAcf] = ACTIONS(4691), + [anon_sym_BSLASHacfp] = ACTIONS(4691), + [anon_sym_BSLASHAcfp] = ACTIONS(4691), + [anon_sym_BSLASHac] = ACTIONS(4691), + [anon_sym_BSLASHAc] = ACTIONS(4691), + [anon_sym_BSLASHacp] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), + [anon_sym_BSLASHcolor] = ACTIONS(4691), + [anon_sym_BSLASHcolorbox] = ACTIONS(4691), + [anon_sym_BSLASHtextcolor] = ACTIONS(4691), + [anon_sym_BSLASHpagecolor] = ACTIONS(4691), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), + [anon_sym_BSLASHtext] = ACTIONS(4691), + [anon_sym_BSLASHintertext] = ACTIONS(4691), + [anon_sym_shortintertext] = ACTIONS(4691), }, - [650] = { - [sym_curly_group] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(4771), - [sym_command_name] = ACTIONS(4773), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4773), - [anon_sym_LPAREN] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4771), - [anon_sym_LBRACK] = ACTIONS(4771), - [anon_sym_RBRACK] = ACTIONS(4771), - [anon_sym_COMMA] = ACTIONS(4771), - [anon_sym_EQ] = ACTIONS(4771), - [anon_sym_BSLASHpart] = ACTIONS(4773), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddpart] = ACTIONS(4773), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4771), - [anon_sym_BSLASHchapter] = ACTIONS(4773), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddchap] = ACTIONS(4773), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsection] = ACTIONS(4773), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddsec] = ACTIONS(4773), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubsection] = ACTIONS(4773), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4773), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHparagraph] = ACTIONS(4773), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4773), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4771), - [anon_sym_BSLASHitem] = ACTIONS(4773), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4771), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4771), - [sym_word] = ACTIONS(4773), - [sym_placeholder] = ACTIONS(4771), - [anon_sym_PLUS] = ACTIONS(4773), - [anon_sym_DASH] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4773), - [anon_sym_SLASH] = ACTIONS(4773), - [anon_sym_CARET] = ACTIONS(4773), - [anon_sym__] = ACTIONS(4773), - [anon_sym_LT] = ACTIONS(4773), - [anon_sym_GT] = ACTIONS(4773), - [anon_sym_BANG] = ACTIONS(4773), - [anon_sym_PIPE] = ACTIONS(4773), - [anon_sym_COLON] = ACTIONS(4773), - [anon_sym_SQUOTE] = ACTIONS(4773), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4771), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4771), - [anon_sym_DOLLAR] = ACTIONS(4773), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4771), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4771), - [anon_sym_BSLASHbegin] = ACTIONS(4773), - [anon_sym_BSLASHusepackage] = ACTIONS(4773), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4773), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4773), - [anon_sym_BSLASHinclude] = ACTIONS(4773), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4773), - [anon_sym_BSLASHinput] = ACTIONS(4773), - [anon_sym_BSLASHsubfile] = ACTIONS(4773), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4773), - [anon_sym_BSLASHbibliography] = ACTIONS(4773), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4773), - [anon_sym_BSLASHincludesvg] = ACTIONS(4773), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4773), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4773), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4773), - [anon_sym_BSLASHimport] = ACTIONS(4773), - [anon_sym_BSLASHsubimport] = ACTIONS(4773), - [anon_sym_BSLASHinputfrom] = ACTIONS(4773), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4773), - [anon_sym_BSLASHincludefrom] = ACTIONS(4773), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4773), - [anon_sym_BSLASHcaption] = ACTIONS(4773), - [anon_sym_BSLASHcite] = ACTIONS(4773), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCite] = ACTIONS(4773), - [anon_sym_BSLASHnocite] = ACTIONS(4773), - [anon_sym_BSLASHcitet] = ACTIONS(4773), - [anon_sym_BSLASHcitep] = ACTIONS(4773), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteauthor] = ACTIONS(4773), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4773), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitetitle] = ACTIONS(4773), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteyear] = ACTIONS(4773), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitedate] = ACTIONS(4773), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteurl] = ACTIONS(4773), - [anon_sym_BSLASHfullcite] = ACTIONS(4773), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4773), - [anon_sym_BSLASHcitealt] = ACTIONS(4773), - [anon_sym_BSLASHcitealp] = ACTIONS(4773), - [anon_sym_BSLASHcitetext] = ACTIONS(4773), - [anon_sym_BSLASHparencite] = ACTIONS(4773), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHParencite] = ACTIONS(4773), - [anon_sym_BSLASHfootcite] = ACTIONS(4773), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4773), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4773), - [anon_sym_BSLASHtextcite] = ACTIONS(4773), - [anon_sym_BSLASHTextcite] = ACTIONS(4773), - [anon_sym_BSLASHsmartcite] = ACTIONS(4773), - [anon_sym_BSLASHSmartcite] = ACTIONS(4773), - [anon_sym_BSLASHsupercite] = ACTIONS(4773), - [anon_sym_BSLASHautocite] = ACTIONS(4773), - [anon_sym_BSLASHAutocite] = ACTIONS(4773), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHvolcite] = ACTIONS(4773), - [anon_sym_BSLASHVolcite] = ACTIONS(4773), - [anon_sym_BSLASHpvolcite] = ACTIONS(4773), - [anon_sym_BSLASHPvolcite] = ACTIONS(4773), - [anon_sym_BSLASHfvolcite] = ACTIONS(4773), - [anon_sym_BSLASHftvolcite] = ACTIONS(4773), - [anon_sym_BSLASHsvolcite] = ACTIONS(4773), - [anon_sym_BSLASHSvolcite] = ACTIONS(4773), - [anon_sym_BSLASHtvolcite] = ACTIONS(4773), - [anon_sym_BSLASHTvolcite] = ACTIONS(4773), - [anon_sym_BSLASHavolcite] = ACTIONS(4773), - [anon_sym_BSLASHAvolcite] = ACTIONS(4773), - [anon_sym_BSLASHnotecite] = ACTIONS(4773), - [anon_sym_BSLASHNotecite] = ACTIONS(4773), - [anon_sym_BSLASHpnotecite] = ACTIONS(4773), - [anon_sym_BSLASHPnotecite] = ACTIONS(4773), - [anon_sym_BSLASHfnotecite] = ACTIONS(4773), - [anon_sym_BSLASHlabel] = ACTIONS(4773), - [anon_sym_BSLASHref] = ACTIONS(4773), - [anon_sym_BSLASHeqref] = ACTIONS(4773), - [anon_sym_BSLASHvref] = ACTIONS(4773), - [anon_sym_BSLASHVref] = ACTIONS(4773), - [anon_sym_BSLASHautoref] = ACTIONS(4773), - [anon_sym_BSLASHpageref] = ACTIONS(4773), - [anon_sym_BSLASHcref] = ACTIONS(4773), - [anon_sym_BSLASHCref] = ACTIONS(4773), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4771), - [anon_sym_BSLASHnamecref] = ACTIONS(4773), - [anon_sym_BSLASHnameCref] = ACTIONS(4773), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4773), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4773), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4773), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4773), - [anon_sym_BSLASHlabelcref] = ACTIONS(4773), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4773), - [anon_sym_BSLASHcrefrange] = ACTIONS(4773), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCrefrange] = ACTIONS(4773), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4771), - [anon_sym_BSLASHnewlabel] = ACTIONS(4773), - [anon_sym_BSLASHnewcommand] = ACTIONS(4773), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4773), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4773), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4773), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4771), - [anon_sym_BSLASHdef] = ACTIONS(4773), - [anon_sym_BSLASHlet] = ACTIONS(4773), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4773), - [anon_sym_BSLASHgls] = ACTIONS(4773), - [anon_sym_BSLASHGls] = ACTIONS(4773), - [anon_sym_BSLASHGLS] = ACTIONS(4773), - [anon_sym_BSLASHglspl] = ACTIONS(4773), - [anon_sym_BSLASHGlspl] = ACTIONS(4773), - [anon_sym_BSLASHGLSpl] = ACTIONS(4773), - [anon_sym_BSLASHglsdisp] = ACTIONS(4773), - [anon_sym_BSLASHglslink] = ACTIONS(4773), - [anon_sym_BSLASHglstext] = ACTIONS(4773), - [anon_sym_BSLASHGlstext] = ACTIONS(4773), - [anon_sym_BSLASHGLStext] = ACTIONS(4773), - [anon_sym_BSLASHglsfirst] = ACTIONS(4773), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4773), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4773), - [anon_sym_BSLASHglsplural] = ACTIONS(4773), - [anon_sym_BSLASHGlsplural] = ACTIONS(4773), - [anon_sym_BSLASHGLSplural] = ACTIONS(4773), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHglsname] = ACTIONS(4773), - [anon_sym_BSLASHGlsname] = ACTIONS(4773), - [anon_sym_BSLASHGLSname] = ACTIONS(4773), - [anon_sym_BSLASHglssymbol] = ACTIONS(4773), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4773), - [anon_sym_BSLASHglsdesc] = ACTIONS(4773), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4773), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4773), - [anon_sym_BSLASHglsuseri] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4773), - [anon_sym_BSLASHglsuserii] = ACTIONS(4773), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4773), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4773), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4773), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4773), - [anon_sym_BSLASHglsuserv] = ACTIONS(4773), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4773), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4773), - [anon_sym_BSLASHglsuservi] = ACTIONS(4773), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4773), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4773), - [anon_sym_BSLASHnewacronym] = ACTIONS(4773), - [anon_sym_BSLASHacrshort] = ACTIONS(4773), - [anon_sym_BSLASHAcrshort] = ACTIONS(4773), - [anon_sym_BSLASHACRshort] = ACTIONS(4773), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4773), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4773), - [anon_sym_BSLASHacrlong] = ACTIONS(4773), - [anon_sym_BSLASHAcrlong] = ACTIONS(4773), - [anon_sym_BSLASHACRlong] = ACTIONS(4773), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4773), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4773), - [anon_sym_BSLASHacrfull] = ACTIONS(4773), - [anon_sym_BSLASHAcrfull] = ACTIONS(4773), - [anon_sym_BSLASHACRfull] = ACTIONS(4773), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4773), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4773), - [anon_sym_BSLASHacs] = ACTIONS(4773), - [anon_sym_BSLASHAcs] = ACTIONS(4773), - [anon_sym_BSLASHacsp] = ACTIONS(4773), - [anon_sym_BSLASHAcsp] = ACTIONS(4773), - [anon_sym_BSLASHacl] = ACTIONS(4773), - [anon_sym_BSLASHAcl] = ACTIONS(4773), - [anon_sym_BSLASHaclp] = ACTIONS(4773), - [anon_sym_BSLASHAclp] = ACTIONS(4773), - [anon_sym_BSLASHacf] = ACTIONS(4773), - [anon_sym_BSLASHAcf] = ACTIONS(4773), - [anon_sym_BSLASHacfp] = ACTIONS(4773), - [anon_sym_BSLASHAcfp] = ACTIONS(4773), - [anon_sym_BSLASHac] = ACTIONS(4773), - [anon_sym_BSLASHAc] = ACTIONS(4773), - [anon_sym_BSLASHacp] = ACTIONS(4773), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4773), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4773), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4773), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4773), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4773), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4773), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4773), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4773), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4773), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4773), - [anon_sym_BSLASHcolor] = ACTIONS(4773), - [anon_sym_BSLASHcolorbox] = ACTIONS(4773), - [anon_sym_BSLASHtextcolor] = ACTIONS(4773), - [anon_sym_BSLASHpagecolor] = ACTIONS(4773), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4773), + [484] = { + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(516), + [aux_sym__section_repeat3] = STATE(516), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [651] = { - [sym_curly_group] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(4775), - [sym_command_name] = ACTIONS(4777), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4777), - [anon_sym_LPAREN] = ACTIONS(4775), - [anon_sym_RPAREN] = ACTIONS(4775), - [anon_sym_LBRACK] = ACTIONS(4775), - [anon_sym_RBRACK] = ACTIONS(4775), - [anon_sym_COMMA] = ACTIONS(4775), - [anon_sym_EQ] = ACTIONS(4775), - [anon_sym_BSLASHpart] = ACTIONS(4777), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddpart] = ACTIONS(4777), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4775), - [anon_sym_BSLASHchapter] = ACTIONS(4777), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddchap] = ACTIONS(4777), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsection] = ACTIONS(4777), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddsec] = ACTIONS(4777), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubsection] = ACTIONS(4777), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4777), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHparagraph] = ACTIONS(4777), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4777), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4775), - [anon_sym_BSLASHitem] = ACTIONS(4777), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4775), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4775), - [sym_word] = ACTIONS(4777), - [sym_placeholder] = ACTIONS(4775), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_CARET] = ACTIONS(4777), - [anon_sym__] = ACTIONS(4777), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_PIPE] = ACTIONS(4777), - [anon_sym_COLON] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4777), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4775), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4775), - [anon_sym_DOLLAR] = ACTIONS(4777), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4775), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4775), - [anon_sym_BSLASHbegin] = ACTIONS(4777), - [anon_sym_BSLASHusepackage] = ACTIONS(4777), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4777), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4777), - [anon_sym_BSLASHinclude] = ACTIONS(4777), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4777), - [anon_sym_BSLASHinput] = ACTIONS(4777), - [anon_sym_BSLASHsubfile] = ACTIONS(4777), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4777), - [anon_sym_BSLASHbibliography] = ACTIONS(4777), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4777), - [anon_sym_BSLASHincludesvg] = ACTIONS(4777), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4777), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4777), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4777), - [anon_sym_BSLASHimport] = ACTIONS(4777), - [anon_sym_BSLASHsubimport] = ACTIONS(4777), - [anon_sym_BSLASHinputfrom] = ACTIONS(4777), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4777), - [anon_sym_BSLASHincludefrom] = ACTIONS(4777), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4777), - [anon_sym_BSLASHcaption] = ACTIONS(4777), - [anon_sym_BSLASHcite] = ACTIONS(4777), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCite] = ACTIONS(4777), - [anon_sym_BSLASHnocite] = ACTIONS(4777), - [anon_sym_BSLASHcitet] = ACTIONS(4777), - [anon_sym_BSLASHcitep] = ACTIONS(4777), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteauthor] = ACTIONS(4777), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4777), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitetitle] = ACTIONS(4777), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteyear] = ACTIONS(4777), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitedate] = ACTIONS(4777), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteurl] = ACTIONS(4777), - [anon_sym_BSLASHfullcite] = ACTIONS(4777), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4777), - [anon_sym_BSLASHcitealt] = ACTIONS(4777), - [anon_sym_BSLASHcitealp] = ACTIONS(4777), - [anon_sym_BSLASHcitetext] = ACTIONS(4777), - [anon_sym_BSLASHparencite] = ACTIONS(4777), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHParencite] = ACTIONS(4777), - [anon_sym_BSLASHfootcite] = ACTIONS(4777), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4777), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4777), - [anon_sym_BSLASHtextcite] = ACTIONS(4777), - [anon_sym_BSLASHTextcite] = ACTIONS(4777), - [anon_sym_BSLASHsmartcite] = ACTIONS(4777), - [anon_sym_BSLASHSmartcite] = ACTIONS(4777), - [anon_sym_BSLASHsupercite] = ACTIONS(4777), - [anon_sym_BSLASHautocite] = ACTIONS(4777), - [anon_sym_BSLASHAutocite] = ACTIONS(4777), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHvolcite] = ACTIONS(4777), - [anon_sym_BSLASHVolcite] = ACTIONS(4777), - [anon_sym_BSLASHpvolcite] = ACTIONS(4777), - [anon_sym_BSLASHPvolcite] = ACTIONS(4777), - [anon_sym_BSLASHfvolcite] = ACTIONS(4777), - [anon_sym_BSLASHftvolcite] = ACTIONS(4777), - [anon_sym_BSLASHsvolcite] = ACTIONS(4777), - [anon_sym_BSLASHSvolcite] = ACTIONS(4777), - [anon_sym_BSLASHtvolcite] = ACTIONS(4777), - [anon_sym_BSLASHTvolcite] = ACTIONS(4777), - [anon_sym_BSLASHavolcite] = ACTIONS(4777), - [anon_sym_BSLASHAvolcite] = ACTIONS(4777), - [anon_sym_BSLASHnotecite] = ACTIONS(4777), - [anon_sym_BSLASHNotecite] = ACTIONS(4777), - [anon_sym_BSLASHpnotecite] = ACTIONS(4777), - [anon_sym_BSLASHPnotecite] = ACTIONS(4777), - [anon_sym_BSLASHfnotecite] = ACTIONS(4777), - [anon_sym_BSLASHlabel] = ACTIONS(4777), - [anon_sym_BSLASHref] = ACTIONS(4777), - [anon_sym_BSLASHeqref] = ACTIONS(4777), - [anon_sym_BSLASHvref] = ACTIONS(4777), - [anon_sym_BSLASHVref] = ACTIONS(4777), - [anon_sym_BSLASHautoref] = ACTIONS(4777), - [anon_sym_BSLASHpageref] = ACTIONS(4777), - [anon_sym_BSLASHcref] = ACTIONS(4777), - [anon_sym_BSLASHCref] = ACTIONS(4777), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4775), - [anon_sym_BSLASHnamecref] = ACTIONS(4777), - [anon_sym_BSLASHnameCref] = ACTIONS(4777), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4777), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4777), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4777), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4777), - [anon_sym_BSLASHlabelcref] = ACTIONS(4777), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4777), - [anon_sym_BSLASHcrefrange] = ACTIONS(4777), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCrefrange] = ACTIONS(4777), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4775), - [anon_sym_BSLASHnewlabel] = ACTIONS(4777), - [anon_sym_BSLASHnewcommand] = ACTIONS(4777), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4777), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4777), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4777), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4775), - [anon_sym_BSLASHdef] = ACTIONS(4777), - [anon_sym_BSLASHlet] = ACTIONS(4777), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4777), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4777), - [anon_sym_BSLASHgls] = ACTIONS(4777), - [anon_sym_BSLASHGls] = ACTIONS(4777), - [anon_sym_BSLASHGLS] = ACTIONS(4777), - [anon_sym_BSLASHglspl] = ACTIONS(4777), - [anon_sym_BSLASHGlspl] = ACTIONS(4777), - [anon_sym_BSLASHGLSpl] = ACTIONS(4777), - [anon_sym_BSLASHglsdisp] = ACTIONS(4777), - [anon_sym_BSLASHglslink] = ACTIONS(4777), - [anon_sym_BSLASHglstext] = ACTIONS(4777), - [anon_sym_BSLASHGlstext] = ACTIONS(4777), - [anon_sym_BSLASHGLStext] = ACTIONS(4777), - [anon_sym_BSLASHglsfirst] = ACTIONS(4777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4777), - [anon_sym_BSLASHglsplural] = ACTIONS(4777), - [anon_sym_BSLASHGlsplural] = ACTIONS(4777), - [anon_sym_BSLASHGLSplural] = ACTIONS(4777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHglsname] = ACTIONS(4777), - [anon_sym_BSLASHGlsname] = ACTIONS(4777), - [anon_sym_BSLASHGLSname] = ACTIONS(4777), - [anon_sym_BSLASHglssymbol] = ACTIONS(4777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4777), - [anon_sym_BSLASHglsdesc] = ACTIONS(4777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4777), - [anon_sym_BSLASHglsuseri] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4777), - [anon_sym_BSLASHglsuserii] = ACTIONS(4777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4777), - [anon_sym_BSLASHglsuserv] = ACTIONS(4777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4777), - [anon_sym_BSLASHglsuservi] = ACTIONS(4777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4777), - [anon_sym_BSLASHnewacronym] = ACTIONS(4777), - [anon_sym_BSLASHacrshort] = ACTIONS(4777), - [anon_sym_BSLASHAcrshort] = ACTIONS(4777), - [anon_sym_BSLASHACRshort] = ACTIONS(4777), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4777), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4777), - [anon_sym_BSLASHacrlong] = ACTIONS(4777), - [anon_sym_BSLASHAcrlong] = ACTIONS(4777), - [anon_sym_BSLASHACRlong] = ACTIONS(4777), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4777), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4777), - [anon_sym_BSLASHacrfull] = ACTIONS(4777), - [anon_sym_BSLASHAcrfull] = ACTIONS(4777), - [anon_sym_BSLASHACRfull] = ACTIONS(4777), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4777), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4777), - [anon_sym_BSLASHacs] = ACTIONS(4777), - [anon_sym_BSLASHAcs] = ACTIONS(4777), - [anon_sym_BSLASHacsp] = ACTIONS(4777), - [anon_sym_BSLASHAcsp] = ACTIONS(4777), - [anon_sym_BSLASHacl] = ACTIONS(4777), - [anon_sym_BSLASHAcl] = ACTIONS(4777), - [anon_sym_BSLASHaclp] = ACTIONS(4777), - [anon_sym_BSLASHAclp] = ACTIONS(4777), - [anon_sym_BSLASHacf] = ACTIONS(4777), - [anon_sym_BSLASHAcf] = ACTIONS(4777), - [anon_sym_BSLASHacfp] = ACTIONS(4777), - [anon_sym_BSLASHAcfp] = ACTIONS(4777), - [anon_sym_BSLASHac] = ACTIONS(4777), - [anon_sym_BSLASHAc] = ACTIONS(4777), - [anon_sym_BSLASHacp] = ACTIONS(4777), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4777), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4777), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4777), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4777), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4777), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4777), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4777), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4777), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4777), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4777), - [anon_sym_BSLASHcolor] = ACTIONS(4777), - [anon_sym_BSLASHcolorbox] = ACTIONS(4777), - [anon_sym_BSLASHtextcolor] = ACTIONS(4777), - [anon_sym_BSLASHpagecolor] = ACTIONS(4777), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4777), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4777), + [485] = { + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(517), + [aux_sym__section_repeat4] = STATE(517), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [652] = { - [sym_curly_group] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(4779), - [sym_command_name] = ACTIONS(4781), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4779), - [anon_sym_RPAREN] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_RBRACK] = ACTIONS(4779), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_EQ] = ACTIONS(4779), - [anon_sym_BSLASHpart] = ACTIONS(4781), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddpart] = ACTIONS(4781), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4779), - [anon_sym_BSLASHchapter] = ACTIONS(4781), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddchap] = ACTIONS(4781), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsection] = ACTIONS(4781), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddsec] = ACTIONS(4781), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubsection] = ACTIONS(4781), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4781), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHparagraph] = ACTIONS(4781), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4781), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4779), - [anon_sym_BSLASHitem] = ACTIONS(4781), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4779), - [sym_word] = ACTIONS(4781), - [sym_placeholder] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4781), - [anon_sym_DASH] = ACTIONS(4781), - [anon_sym_STAR] = ACTIONS(4781), - [anon_sym_SLASH] = ACTIONS(4781), - [anon_sym_CARET] = ACTIONS(4781), - [anon_sym__] = ACTIONS(4781), - [anon_sym_LT] = ACTIONS(4781), - [anon_sym_GT] = ACTIONS(4781), - [anon_sym_BANG] = ACTIONS(4781), - [anon_sym_PIPE] = ACTIONS(4781), - [anon_sym_COLON] = ACTIONS(4781), - [anon_sym_SQUOTE] = ACTIONS(4781), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4779), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4779), - [anon_sym_DOLLAR] = ACTIONS(4781), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4779), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4779), - [anon_sym_BSLASHbegin] = ACTIONS(4781), - [anon_sym_BSLASHusepackage] = ACTIONS(4781), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4781), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4781), - [anon_sym_BSLASHinclude] = ACTIONS(4781), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4781), - [anon_sym_BSLASHinput] = ACTIONS(4781), - [anon_sym_BSLASHsubfile] = ACTIONS(4781), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4781), - [anon_sym_BSLASHbibliography] = ACTIONS(4781), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4781), - [anon_sym_BSLASHincludesvg] = ACTIONS(4781), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4781), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4781), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4781), - [anon_sym_BSLASHimport] = ACTIONS(4781), - [anon_sym_BSLASHsubimport] = ACTIONS(4781), - [anon_sym_BSLASHinputfrom] = ACTIONS(4781), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4781), - [anon_sym_BSLASHincludefrom] = ACTIONS(4781), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4781), - [anon_sym_BSLASHcaption] = ACTIONS(4781), - [anon_sym_BSLASHcite] = ACTIONS(4781), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCite] = ACTIONS(4781), - [anon_sym_BSLASHnocite] = ACTIONS(4781), - [anon_sym_BSLASHcitet] = ACTIONS(4781), - [anon_sym_BSLASHcitep] = ACTIONS(4781), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteauthor] = ACTIONS(4781), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4781), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitetitle] = ACTIONS(4781), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteyear] = ACTIONS(4781), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitedate] = ACTIONS(4781), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteurl] = ACTIONS(4781), - [anon_sym_BSLASHfullcite] = ACTIONS(4781), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4781), - [anon_sym_BSLASHcitealt] = ACTIONS(4781), - [anon_sym_BSLASHcitealp] = ACTIONS(4781), - [anon_sym_BSLASHcitetext] = ACTIONS(4781), - [anon_sym_BSLASHparencite] = ACTIONS(4781), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHParencite] = ACTIONS(4781), - [anon_sym_BSLASHfootcite] = ACTIONS(4781), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4781), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4781), - [anon_sym_BSLASHtextcite] = ACTIONS(4781), - [anon_sym_BSLASHTextcite] = ACTIONS(4781), - [anon_sym_BSLASHsmartcite] = ACTIONS(4781), - [anon_sym_BSLASHSmartcite] = ACTIONS(4781), - [anon_sym_BSLASHsupercite] = ACTIONS(4781), - [anon_sym_BSLASHautocite] = ACTIONS(4781), - [anon_sym_BSLASHAutocite] = ACTIONS(4781), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHvolcite] = ACTIONS(4781), - [anon_sym_BSLASHVolcite] = ACTIONS(4781), - [anon_sym_BSLASHpvolcite] = ACTIONS(4781), - [anon_sym_BSLASHPvolcite] = ACTIONS(4781), - [anon_sym_BSLASHfvolcite] = ACTIONS(4781), - [anon_sym_BSLASHftvolcite] = ACTIONS(4781), - [anon_sym_BSLASHsvolcite] = ACTIONS(4781), - [anon_sym_BSLASHSvolcite] = ACTIONS(4781), - [anon_sym_BSLASHtvolcite] = ACTIONS(4781), - [anon_sym_BSLASHTvolcite] = ACTIONS(4781), - [anon_sym_BSLASHavolcite] = ACTIONS(4781), - [anon_sym_BSLASHAvolcite] = ACTIONS(4781), - [anon_sym_BSLASHnotecite] = ACTIONS(4781), - [anon_sym_BSLASHNotecite] = ACTIONS(4781), - [anon_sym_BSLASHpnotecite] = ACTIONS(4781), - [anon_sym_BSLASHPnotecite] = ACTIONS(4781), - [anon_sym_BSLASHfnotecite] = ACTIONS(4781), - [anon_sym_BSLASHlabel] = ACTIONS(4781), - [anon_sym_BSLASHref] = ACTIONS(4781), - [anon_sym_BSLASHeqref] = ACTIONS(4781), - [anon_sym_BSLASHvref] = ACTIONS(4781), - [anon_sym_BSLASHVref] = ACTIONS(4781), - [anon_sym_BSLASHautoref] = ACTIONS(4781), - [anon_sym_BSLASHpageref] = ACTIONS(4781), - [anon_sym_BSLASHcref] = ACTIONS(4781), - [anon_sym_BSLASHCref] = ACTIONS(4781), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4779), - [anon_sym_BSLASHnamecref] = ACTIONS(4781), - [anon_sym_BSLASHnameCref] = ACTIONS(4781), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4781), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4781), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4781), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4781), - [anon_sym_BSLASHlabelcref] = ACTIONS(4781), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4781), - [anon_sym_BSLASHcrefrange] = ACTIONS(4781), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCrefrange] = ACTIONS(4781), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4779), - [anon_sym_BSLASHnewlabel] = ACTIONS(4781), - [anon_sym_BSLASHnewcommand] = ACTIONS(4781), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4781), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4781), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4781), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4779), - [anon_sym_BSLASHdef] = ACTIONS(4781), - [anon_sym_BSLASHlet] = ACTIONS(4781), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4781), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4781), - [anon_sym_BSLASHgls] = ACTIONS(4781), - [anon_sym_BSLASHGls] = ACTIONS(4781), - [anon_sym_BSLASHGLS] = ACTIONS(4781), - [anon_sym_BSLASHglspl] = ACTIONS(4781), - [anon_sym_BSLASHGlspl] = ACTIONS(4781), - [anon_sym_BSLASHGLSpl] = ACTIONS(4781), - [anon_sym_BSLASHglsdisp] = ACTIONS(4781), - [anon_sym_BSLASHglslink] = ACTIONS(4781), - [anon_sym_BSLASHglstext] = ACTIONS(4781), - [anon_sym_BSLASHGlstext] = ACTIONS(4781), - [anon_sym_BSLASHGLStext] = ACTIONS(4781), - [anon_sym_BSLASHglsfirst] = ACTIONS(4781), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4781), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4781), - [anon_sym_BSLASHglsplural] = ACTIONS(4781), - [anon_sym_BSLASHGlsplural] = ACTIONS(4781), - [anon_sym_BSLASHGLSplural] = ACTIONS(4781), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHglsname] = ACTIONS(4781), - [anon_sym_BSLASHGlsname] = ACTIONS(4781), - [anon_sym_BSLASHGLSname] = ACTIONS(4781), - [anon_sym_BSLASHglssymbol] = ACTIONS(4781), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4781), - [anon_sym_BSLASHglsdesc] = ACTIONS(4781), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4781), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4781), - [anon_sym_BSLASHglsuseri] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4781), - [anon_sym_BSLASHglsuserii] = ACTIONS(4781), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4781), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4781), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4781), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4781), - [anon_sym_BSLASHglsuserv] = ACTIONS(4781), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4781), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4781), - [anon_sym_BSLASHglsuservi] = ACTIONS(4781), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4781), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4781), - [anon_sym_BSLASHnewacronym] = ACTIONS(4781), - [anon_sym_BSLASHacrshort] = ACTIONS(4781), - [anon_sym_BSLASHAcrshort] = ACTIONS(4781), - [anon_sym_BSLASHACRshort] = ACTIONS(4781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4781), - [anon_sym_BSLASHacrlong] = ACTIONS(4781), - [anon_sym_BSLASHAcrlong] = ACTIONS(4781), - [anon_sym_BSLASHACRlong] = ACTIONS(4781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4781), - [anon_sym_BSLASHacrfull] = ACTIONS(4781), - [anon_sym_BSLASHAcrfull] = ACTIONS(4781), - [anon_sym_BSLASHACRfull] = ACTIONS(4781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4781), - [anon_sym_BSLASHacs] = ACTIONS(4781), - [anon_sym_BSLASHAcs] = ACTIONS(4781), - [anon_sym_BSLASHacsp] = ACTIONS(4781), - [anon_sym_BSLASHAcsp] = ACTIONS(4781), - [anon_sym_BSLASHacl] = ACTIONS(4781), - [anon_sym_BSLASHAcl] = ACTIONS(4781), - [anon_sym_BSLASHaclp] = ACTIONS(4781), - [anon_sym_BSLASHAclp] = ACTIONS(4781), - [anon_sym_BSLASHacf] = ACTIONS(4781), - [anon_sym_BSLASHAcf] = ACTIONS(4781), - [anon_sym_BSLASHacfp] = ACTIONS(4781), - [anon_sym_BSLASHAcfp] = ACTIONS(4781), - [anon_sym_BSLASHac] = ACTIONS(4781), - [anon_sym_BSLASHAc] = ACTIONS(4781), - [anon_sym_BSLASHacp] = ACTIONS(4781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4781), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4781), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4781), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4781), - [anon_sym_BSLASHcolor] = ACTIONS(4781), - [anon_sym_BSLASHcolorbox] = ACTIONS(4781), - [anon_sym_BSLASHtextcolor] = ACTIONS(4781), - [anon_sym_BSLASHpagecolor] = ACTIONS(4781), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4781), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4781), + [486] = { + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(518), + [aux_sym__section_repeat5] = STATE(518), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [653] = { - [sym_curly_group] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(4783), - [sym_command_name] = ACTIONS(4785), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4785), - [anon_sym_LPAREN] = ACTIONS(4783), - [anon_sym_RPAREN] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4783), - [anon_sym_RBRACK] = ACTIONS(4783), - [anon_sym_COMMA] = ACTIONS(4783), - [anon_sym_EQ] = ACTIONS(4783), - [anon_sym_BSLASHpart] = ACTIONS(4785), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddpart] = ACTIONS(4785), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4783), - [anon_sym_BSLASHchapter] = ACTIONS(4785), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddchap] = ACTIONS(4785), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsection] = ACTIONS(4785), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddsec] = ACTIONS(4785), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubsection] = ACTIONS(4785), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4785), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHparagraph] = ACTIONS(4785), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4785), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4783), - [anon_sym_BSLASHitem] = ACTIONS(4785), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4783), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4783), - [sym_word] = ACTIONS(4785), - [sym_placeholder] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(4785), - [anon_sym_DASH] = ACTIONS(4785), - [anon_sym_STAR] = ACTIONS(4785), - [anon_sym_SLASH] = ACTIONS(4785), - [anon_sym_CARET] = ACTIONS(4785), - [anon_sym__] = ACTIONS(4785), - [anon_sym_LT] = ACTIONS(4785), - [anon_sym_GT] = ACTIONS(4785), - [anon_sym_BANG] = ACTIONS(4785), - [anon_sym_PIPE] = ACTIONS(4785), - [anon_sym_COLON] = ACTIONS(4785), - [anon_sym_SQUOTE] = ACTIONS(4785), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4783), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4783), - [anon_sym_DOLLAR] = ACTIONS(4785), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4783), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4783), - [anon_sym_BSLASHbegin] = ACTIONS(4785), - [anon_sym_BSLASHusepackage] = ACTIONS(4785), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4785), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4785), - [anon_sym_BSLASHinclude] = ACTIONS(4785), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4785), - [anon_sym_BSLASHinput] = ACTIONS(4785), - [anon_sym_BSLASHsubfile] = ACTIONS(4785), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4785), - [anon_sym_BSLASHbibliography] = ACTIONS(4785), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4785), - [anon_sym_BSLASHincludesvg] = ACTIONS(4785), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4785), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4785), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4785), - [anon_sym_BSLASHimport] = ACTIONS(4785), - [anon_sym_BSLASHsubimport] = ACTIONS(4785), - [anon_sym_BSLASHinputfrom] = ACTIONS(4785), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4785), - [anon_sym_BSLASHincludefrom] = ACTIONS(4785), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4785), - [anon_sym_BSLASHcaption] = ACTIONS(4785), - [anon_sym_BSLASHcite] = ACTIONS(4785), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCite] = ACTIONS(4785), - [anon_sym_BSLASHnocite] = ACTIONS(4785), - [anon_sym_BSLASHcitet] = ACTIONS(4785), - [anon_sym_BSLASHcitep] = ACTIONS(4785), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteauthor] = ACTIONS(4785), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4785), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitetitle] = ACTIONS(4785), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteyear] = ACTIONS(4785), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitedate] = ACTIONS(4785), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteurl] = ACTIONS(4785), - [anon_sym_BSLASHfullcite] = ACTIONS(4785), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4785), - [anon_sym_BSLASHcitealt] = ACTIONS(4785), - [anon_sym_BSLASHcitealp] = ACTIONS(4785), - [anon_sym_BSLASHcitetext] = ACTIONS(4785), - [anon_sym_BSLASHparencite] = ACTIONS(4785), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHParencite] = ACTIONS(4785), - [anon_sym_BSLASHfootcite] = ACTIONS(4785), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4785), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4785), - [anon_sym_BSLASHtextcite] = ACTIONS(4785), - [anon_sym_BSLASHTextcite] = ACTIONS(4785), - [anon_sym_BSLASHsmartcite] = ACTIONS(4785), - [anon_sym_BSLASHSmartcite] = ACTIONS(4785), - [anon_sym_BSLASHsupercite] = ACTIONS(4785), - [anon_sym_BSLASHautocite] = ACTIONS(4785), - [anon_sym_BSLASHAutocite] = ACTIONS(4785), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHvolcite] = ACTIONS(4785), - [anon_sym_BSLASHVolcite] = ACTIONS(4785), - [anon_sym_BSLASHpvolcite] = ACTIONS(4785), - [anon_sym_BSLASHPvolcite] = ACTIONS(4785), - [anon_sym_BSLASHfvolcite] = ACTIONS(4785), - [anon_sym_BSLASHftvolcite] = ACTIONS(4785), - [anon_sym_BSLASHsvolcite] = ACTIONS(4785), - [anon_sym_BSLASHSvolcite] = ACTIONS(4785), - [anon_sym_BSLASHtvolcite] = ACTIONS(4785), - [anon_sym_BSLASHTvolcite] = ACTIONS(4785), - [anon_sym_BSLASHavolcite] = ACTIONS(4785), - [anon_sym_BSLASHAvolcite] = ACTIONS(4785), - [anon_sym_BSLASHnotecite] = ACTIONS(4785), - [anon_sym_BSLASHNotecite] = ACTIONS(4785), - [anon_sym_BSLASHpnotecite] = ACTIONS(4785), - [anon_sym_BSLASHPnotecite] = ACTIONS(4785), - [anon_sym_BSLASHfnotecite] = ACTIONS(4785), - [anon_sym_BSLASHlabel] = ACTIONS(4785), - [anon_sym_BSLASHref] = ACTIONS(4785), - [anon_sym_BSLASHeqref] = ACTIONS(4785), - [anon_sym_BSLASHvref] = ACTIONS(4785), - [anon_sym_BSLASHVref] = ACTIONS(4785), - [anon_sym_BSLASHautoref] = ACTIONS(4785), - [anon_sym_BSLASHpageref] = ACTIONS(4785), - [anon_sym_BSLASHcref] = ACTIONS(4785), - [anon_sym_BSLASHCref] = ACTIONS(4785), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4783), - [anon_sym_BSLASHnamecref] = ACTIONS(4785), - [anon_sym_BSLASHnameCref] = ACTIONS(4785), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4785), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4785), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4785), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4785), - [anon_sym_BSLASHlabelcref] = ACTIONS(4785), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4785), - [anon_sym_BSLASHcrefrange] = ACTIONS(4785), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCrefrange] = ACTIONS(4785), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4783), - [anon_sym_BSLASHnewlabel] = ACTIONS(4785), - [anon_sym_BSLASHnewcommand] = ACTIONS(4785), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4785), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4785), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4785), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4783), - [anon_sym_BSLASHdef] = ACTIONS(4785), - [anon_sym_BSLASHlet] = ACTIONS(4785), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4785), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4785), - [anon_sym_BSLASHgls] = ACTIONS(4785), - [anon_sym_BSLASHGls] = ACTIONS(4785), - [anon_sym_BSLASHGLS] = ACTIONS(4785), - [anon_sym_BSLASHglspl] = ACTIONS(4785), - [anon_sym_BSLASHGlspl] = ACTIONS(4785), - [anon_sym_BSLASHGLSpl] = ACTIONS(4785), - [anon_sym_BSLASHglsdisp] = ACTIONS(4785), - [anon_sym_BSLASHglslink] = ACTIONS(4785), - [anon_sym_BSLASHglstext] = ACTIONS(4785), - [anon_sym_BSLASHGlstext] = ACTIONS(4785), - [anon_sym_BSLASHGLStext] = ACTIONS(4785), - [anon_sym_BSLASHglsfirst] = ACTIONS(4785), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4785), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4785), - [anon_sym_BSLASHglsplural] = ACTIONS(4785), - [anon_sym_BSLASHGlsplural] = ACTIONS(4785), - [anon_sym_BSLASHGLSplural] = ACTIONS(4785), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHglsname] = ACTIONS(4785), - [anon_sym_BSLASHGlsname] = ACTIONS(4785), - [anon_sym_BSLASHGLSname] = ACTIONS(4785), - [anon_sym_BSLASHglssymbol] = ACTIONS(4785), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4785), - [anon_sym_BSLASHglsdesc] = ACTIONS(4785), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4785), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4785), - [anon_sym_BSLASHglsuseri] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4785), - [anon_sym_BSLASHglsuserii] = ACTIONS(4785), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4785), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4785), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4785), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4785), - [anon_sym_BSLASHglsuserv] = ACTIONS(4785), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4785), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4785), - [anon_sym_BSLASHglsuservi] = ACTIONS(4785), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4785), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4785), - [anon_sym_BSLASHnewacronym] = ACTIONS(4785), - [anon_sym_BSLASHacrshort] = ACTIONS(4785), - [anon_sym_BSLASHAcrshort] = ACTIONS(4785), - [anon_sym_BSLASHACRshort] = ACTIONS(4785), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4785), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4785), - [anon_sym_BSLASHacrlong] = ACTIONS(4785), - [anon_sym_BSLASHAcrlong] = ACTIONS(4785), - [anon_sym_BSLASHACRlong] = ACTIONS(4785), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4785), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4785), - [anon_sym_BSLASHacrfull] = ACTIONS(4785), - [anon_sym_BSLASHAcrfull] = ACTIONS(4785), - [anon_sym_BSLASHACRfull] = ACTIONS(4785), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4785), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4785), - [anon_sym_BSLASHacs] = ACTIONS(4785), - [anon_sym_BSLASHAcs] = ACTIONS(4785), - [anon_sym_BSLASHacsp] = ACTIONS(4785), - [anon_sym_BSLASHAcsp] = ACTIONS(4785), - [anon_sym_BSLASHacl] = ACTIONS(4785), - [anon_sym_BSLASHAcl] = ACTIONS(4785), - [anon_sym_BSLASHaclp] = ACTIONS(4785), - [anon_sym_BSLASHAclp] = ACTIONS(4785), - [anon_sym_BSLASHacf] = ACTIONS(4785), - [anon_sym_BSLASHAcf] = ACTIONS(4785), - [anon_sym_BSLASHacfp] = ACTIONS(4785), - [anon_sym_BSLASHAcfp] = ACTIONS(4785), - [anon_sym_BSLASHac] = ACTIONS(4785), - [anon_sym_BSLASHAc] = ACTIONS(4785), - [anon_sym_BSLASHacp] = ACTIONS(4785), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4785), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4785), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4785), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4785), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4785), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4785), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4785), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4785), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4785), - [anon_sym_BSLASHcolor] = ACTIONS(4785), - [anon_sym_BSLASHcolorbox] = ACTIONS(4785), - [anon_sym_BSLASHtextcolor] = ACTIONS(4785), - [anon_sym_BSLASHpagecolor] = ACTIONS(4785), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4785), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4785), + [487] = { + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(519), + [aux_sym__section_repeat6] = STATE(519), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [654] = { - [sym_curly_group] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(4787), - [sym_command_name] = ACTIONS(4789), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4789), - [anon_sym_LPAREN] = ACTIONS(4787), - [anon_sym_RPAREN] = ACTIONS(4787), - [anon_sym_LBRACK] = ACTIONS(4787), - [anon_sym_RBRACK] = ACTIONS(4787), - [anon_sym_COMMA] = ACTIONS(4787), - [anon_sym_EQ] = ACTIONS(4787), - [anon_sym_BSLASHpart] = ACTIONS(4789), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddpart] = ACTIONS(4789), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4787), - [anon_sym_BSLASHchapter] = ACTIONS(4789), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddchap] = ACTIONS(4789), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsection] = ACTIONS(4789), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddsec] = ACTIONS(4789), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubsection] = ACTIONS(4789), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4789), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHparagraph] = ACTIONS(4789), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4789), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4787), - [anon_sym_BSLASHitem] = ACTIONS(4789), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4787), - [anon_sym_LBRACE] = ACTIONS(45), - [anon_sym_RBRACE] = ACTIONS(4787), - [sym_word] = ACTIONS(4789), - [sym_placeholder] = ACTIONS(4787), - [anon_sym_PLUS] = ACTIONS(4789), - [anon_sym_DASH] = ACTIONS(4789), - [anon_sym_STAR] = ACTIONS(4789), - [anon_sym_SLASH] = ACTIONS(4789), - [anon_sym_CARET] = ACTIONS(4789), - [anon_sym__] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4789), - [anon_sym_GT] = ACTIONS(4789), - [anon_sym_BANG] = ACTIONS(4789), - [anon_sym_PIPE] = ACTIONS(4789), - [anon_sym_COLON] = ACTIONS(4789), - [anon_sym_SQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4787), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4787), - [anon_sym_DOLLAR] = ACTIONS(4789), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4787), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4787), - [anon_sym_BSLASHbegin] = ACTIONS(4789), - [anon_sym_BSLASHusepackage] = ACTIONS(4789), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4789), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4789), - [anon_sym_BSLASHinclude] = ACTIONS(4789), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4789), - [anon_sym_BSLASHinput] = ACTIONS(4789), - [anon_sym_BSLASHsubfile] = ACTIONS(4789), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4789), - [anon_sym_BSLASHbibliography] = ACTIONS(4789), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4789), - [anon_sym_BSLASHincludesvg] = ACTIONS(4789), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4789), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4789), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4789), - [anon_sym_BSLASHimport] = ACTIONS(4789), - [anon_sym_BSLASHsubimport] = ACTIONS(4789), - [anon_sym_BSLASHinputfrom] = ACTIONS(4789), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4789), - [anon_sym_BSLASHincludefrom] = ACTIONS(4789), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4789), - [anon_sym_BSLASHcaption] = ACTIONS(4789), - [anon_sym_BSLASHcite] = ACTIONS(4789), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCite] = ACTIONS(4789), - [anon_sym_BSLASHnocite] = ACTIONS(4789), - [anon_sym_BSLASHcitet] = ACTIONS(4789), - [anon_sym_BSLASHcitep] = ACTIONS(4789), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteauthor] = ACTIONS(4789), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4789), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitetitle] = ACTIONS(4789), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteyear] = ACTIONS(4789), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitedate] = ACTIONS(4789), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteurl] = ACTIONS(4789), - [anon_sym_BSLASHfullcite] = ACTIONS(4789), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4789), - [anon_sym_BSLASHcitealt] = ACTIONS(4789), - [anon_sym_BSLASHcitealp] = ACTIONS(4789), - [anon_sym_BSLASHcitetext] = ACTIONS(4789), - [anon_sym_BSLASHparencite] = ACTIONS(4789), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHParencite] = ACTIONS(4789), - [anon_sym_BSLASHfootcite] = ACTIONS(4789), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4789), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4789), - [anon_sym_BSLASHtextcite] = ACTIONS(4789), - [anon_sym_BSLASHTextcite] = ACTIONS(4789), - [anon_sym_BSLASHsmartcite] = ACTIONS(4789), - [anon_sym_BSLASHSmartcite] = ACTIONS(4789), - [anon_sym_BSLASHsupercite] = ACTIONS(4789), - [anon_sym_BSLASHautocite] = ACTIONS(4789), - [anon_sym_BSLASHAutocite] = ACTIONS(4789), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHvolcite] = ACTIONS(4789), - [anon_sym_BSLASHVolcite] = ACTIONS(4789), - [anon_sym_BSLASHpvolcite] = ACTIONS(4789), - [anon_sym_BSLASHPvolcite] = ACTIONS(4789), - [anon_sym_BSLASHfvolcite] = ACTIONS(4789), - [anon_sym_BSLASHftvolcite] = ACTIONS(4789), - [anon_sym_BSLASHsvolcite] = ACTIONS(4789), - [anon_sym_BSLASHSvolcite] = ACTIONS(4789), - [anon_sym_BSLASHtvolcite] = ACTIONS(4789), - [anon_sym_BSLASHTvolcite] = ACTIONS(4789), - [anon_sym_BSLASHavolcite] = ACTIONS(4789), - [anon_sym_BSLASHAvolcite] = ACTIONS(4789), - [anon_sym_BSLASHnotecite] = ACTIONS(4789), - [anon_sym_BSLASHNotecite] = ACTIONS(4789), - [anon_sym_BSLASHpnotecite] = ACTIONS(4789), - [anon_sym_BSLASHPnotecite] = ACTIONS(4789), - [anon_sym_BSLASHfnotecite] = ACTIONS(4789), - [anon_sym_BSLASHlabel] = ACTIONS(4789), - [anon_sym_BSLASHref] = ACTIONS(4789), - [anon_sym_BSLASHeqref] = ACTIONS(4789), - [anon_sym_BSLASHvref] = ACTIONS(4789), - [anon_sym_BSLASHVref] = ACTIONS(4789), - [anon_sym_BSLASHautoref] = ACTIONS(4789), - [anon_sym_BSLASHpageref] = ACTIONS(4789), - [anon_sym_BSLASHcref] = ACTIONS(4789), - [anon_sym_BSLASHCref] = ACTIONS(4789), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4787), - [anon_sym_BSLASHnamecref] = ACTIONS(4789), - [anon_sym_BSLASHnameCref] = ACTIONS(4789), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4789), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4789), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4789), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4789), - [anon_sym_BSLASHlabelcref] = ACTIONS(4789), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4789), - [anon_sym_BSLASHcrefrange] = ACTIONS(4789), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCrefrange] = ACTIONS(4789), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4787), - [anon_sym_BSLASHnewlabel] = ACTIONS(4789), - [anon_sym_BSLASHnewcommand] = ACTIONS(4789), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4789), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4789), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4789), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4787), - [anon_sym_BSLASHdef] = ACTIONS(4789), - [anon_sym_BSLASHlet] = ACTIONS(4789), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4789), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4789), - [anon_sym_BSLASHgls] = ACTIONS(4789), - [anon_sym_BSLASHGls] = ACTIONS(4789), - [anon_sym_BSLASHGLS] = ACTIONS(4789), - [anon_sym_BSLASHglspl] = ACTIONS(4789), - [anon_sym_BSLASHGlspl] = ACTIONS(4789), - [anon_sym_BSLASHGLSpl] = ACTIONS(4789), - [anon_sym_BSLASHglsdisp] = ACTIONS(4789), - [anon_sym_BSLASHglslink] = ACTIONS(4789), - [anon_sym_BSLASHglstext] = ACTIONS(4789), - [anon_sym_BSLASHGlstext] = ACTIONS(4789), - [anon_sym_BSLASHGLStext] = ACTIONS(4789), - [anon_sym_BSLASHglsfirst] = ACTIONS(4789), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4789), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4789), - [anon_sym_BSLASHglsplural] = ACTIONS(4789), - [anon_sym_BSLASHGlsplural] = ACTIONS(4789), - [anon_sym_BSLASHGLSplural] = ACTIONS(4789), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHglsname] = ACTIONS(4789), - [anon_sym_BSLASHGlsname] = ACTIONS(4789), - [anon_sym_BSLASHGLSname] = ACTIONS(4789), - [anon_sym_BSLASHglssymbol] = ACTIONS(4789), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4789), - [anon_sym_BSLASHglsdesc] = ACTIONS(4789), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4789), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4789), - [anon_sym_BSLASHglsuseri] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4789), - [anon_sym_BSLASHglsuserii] = ACTIONS(4789), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4789), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4789), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4789), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4789), - [anon_sym_BSLASHglsuserv] = ACTIONS(4789), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4789), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4789), - [anon_sym_BSLASHglsuservi] = ACTIONS(4789), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4789), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4789), - [anon_sym_BSLASHnewacronym] = ACTIONS(4789), - [anon_sym_BSLASHacrshort] = ACTIONS(4789), - [anon_sym_BSLASHAcrshort] = ACTIONS(4789), - [anon_sym_BSLASHACRshort] = ACTIONS(4789), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4789), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4789), - [anon_sym_BSLASHacrlong] = ACTIONS(4789), - [anon_sym_BSLASHAcrlong] = ACTIONS(4789), - [anon_sym_BSLASHACRlong] = ACTIONS(4789), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4789), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4789), - [anon_sym_BSLASHacrfull] = ACTIONS(4789), - [anon_sym_BSLASHAcrfull] = ACTIONS(4789), - [anon_sym_BSLASHACRfull] = ACTIONS(4789), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4789), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4789), - [anon_sym_BSLASHacs] = ACTIONS(4789), - [anon_sym_BSLASHAcs] = ACTIONS(4789), - [anon_sym_BSLASHacsp] = ACTIONS(4789), - [anon_sym_BSLASHAcsp] = ACTIONS(4789), - [anon_sym_BSLASHacl] = ACTIONS(4789), - [anon_sym_BSLASHAcl] = ACTIONS(4789), - [anon_sym_BSLASHaclp] = ACTIONS(4789), - [anon_sym_BSLASHAclp] = ACTIONS(4789), - [anon_sym_BSLASHacf] = ACTIONS(4789), - [anon_sym_BSLASHAcf] = ACTIONS(4789), - [anon_sym_BSLASHacfp] = ACTIONS(4789), - [anon_sym_BSLASHAcfp] = ACTIONS(4789), - [anon_sym_BSLASHac] = ACTIONS(4789), - [anon_sym_BSLASHAc] = ACTIONS(4789), - [anon_sym_BSLASHacp] = ACTIONS(4789), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4789), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4789), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4789), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4789), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4789), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4789), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4789), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4789), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4789), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4789), - [anon_sym_BSLASHcolor] = ACTIONS(4789), - [anon_sym_BSLASHcolorbox] = ACTIONS(4789), - [anon_sym_BSLASHtextcolor] = ACTIONS(4789), - [anon_sym_BSLASHpagecolor] = ACTIONS(4789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4789), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4789), + [488] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [655] = { - [sym_brack_group_text] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(4791), - [sym_command_name] = ACTIONS(4793), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4791), - [anon_sym_RPAREN] = ACTIONS(4791), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4791), - [anon_sym_COMMA] = ACTIONS(4791), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_BSLASHpart] = ACTIONS(4793), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddpart] = ACTIONS(4793), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4791), - [anon_sym_BSLASHchapter] = ACTIONS(4793), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddchap] = ACTIONS(4793), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsection] = ACTIONS(4793), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddsec] = ACTIONS(4793), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubsection] = ACTIONS(4793), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4793), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHparagraph] = ACTIONS(4793), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4793), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4791), - [anon_sym_BSLASHitem] = ACTIONS(4793), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4791), - [anon_sym_LBRACE] = ACTIONS(4791), - [anon_sym_RBRACE] = ACTIONS(4791), - [sym_word] = ACTIONS(4793), - [sym_placeholder] = ACTIONS(4791), - [anon_sym_PLUS] = ACTIONS(4793), - [anon_sym_DASH] = ACTIONS(4793), - [anon_sym_STAR] = ACTIONS(4793), - [anon_sym_SLASH] = ACTIONS(4793), - [anon_sym_CARET] = ACTIONS(4793), - [anon_sym__] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4793), - [anon_sym_GT] = ACTIONS(4793), - [anon_sym_BANG] = ACTIONS(4793), - [anon_sym_PIPE] = ACTIONS(4793), - [anon_sym_COLON] = ACTIONS(4793), - [anon_sym_SQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4791), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4791), - [anon_sym_DOLLAR] = ACTIONS(4793), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4791), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4791), - [anon_sym_BSLASHbegin] = ACTIONS(4793), - [anon_sym_BSLASHusepackage] = ACTIONS(4793), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4793), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4793), - [anon_sym_BSLASHinclude] = ACTIONS(4793), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4793), - [anon_sym_BSLASHinput] = ACTIONS(4793), - [anon_sym_BSLASHsubfile] = ACTIONS(4793), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4793), - [anon_sym_BSLASHbibliography] = ACTIONS(4793), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4793), - [anon_sym_BSLASHincludesvg] = ACTIONS(4793), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4793), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4793), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4793), - [anon_sym_BSLASHimport] = ACTIONS(4793), - [anon_sym_BSLASHsubimport] = ACTIONS(4793), - [anon_sym_BSLASHinputfrom] = ACTIONS(4793), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4793), - [anon_sym_BSLASHincludefrom] = ACTIONS(4793), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4793), - [anon_sym_BSLASHcaption] = ACTIONS(4793), - [anon_sym_BSLASHcite] = ACTIONS(4793), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCite] = ACTIONS(4793), - [anon_sym_BSLASHnocite] = ACTIONS(4793), - [anon_sym_BSLASHcitet] = ACTIONS(4793), - [anon_sym_BSLASHcitep] = ACTIONS(4793), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteauthor] = ACTIONS(4793), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4793), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitetitle] = ACTIONS(4793), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteyear] = ACTIONS(4793), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitedate] = ACTIONS(4793), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteurl] = ACTIONS(4793), - [anon_sym_BSLASHfullcite] = ACTIONS(4793), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4793), - [anon_sym_BSLASHcitealt] = ACTIONS(4793), - [anon_sym_BSLASHcitealp] = ACTIONS(4793), - [anon_sym_BSLASHcitetext] = ACTIONS(4793), - [anon_sym_BSLASHparencite] = ACTIONS(4793), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHParencite] = ACTIONS(4793), - [anon_sym_BSLASHfootcite] = ACTIONS(4793), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4793), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4793), - [anon_sym_BSLASHtextcite] = ACTIONS(4793), - [anon_sym_BSLASHTextcite] = ACTIONS(4793), - [anon_sym_BSLASHsmartcite] = ACTIONS(4793), - [anon_sym_BSLASHSmartcite] = ACTIONS(4793), - [anon_sym_BSLASHsupercite] = ACTIONS(4793), - [anon_sym_BSLASHautocite] = ACTIONS(4793), - [anon_sym_BSLASHAutocite] = ACTIONS(4793), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHvolcite] = ACTIONS(4793), - [anon_sym_BSLASHVolcite] = ACTIONS(4793), - [anon_sym_BSLASHpvolcite] = ACTIONS(4793), - [anon_sym_BSLASHPvolcite] = ACTIONS(4793), - [anon_sym_BSLASHfvolcite] = ACTIONS(4793), - [anon_sym_BSLASHftvolcite] = ACTIONS(4793), - [anon_sym_BSLASHsvolcite] = ACTIONS(4793), - [anon_sym_BSLASHSvolcite] = ACTIONS(4793), - [anon_sym_BSLASHtvolcite] = ACTIONS(4793), - [anon_sym_BSLASHTvolcite] = ACTIONS(4793), - [anon_sym_BSLASHavolcite] = ACTIONS(4793), - [anon_sym_BSLASHAvolcite] = ACTIONS(4793), - [anon_sym_BSLASHnotecite] = ACTIONS(4793), - [anon_sym_BSLASHNotecite] = ACTIONS(4793), - [anon_sym_BSLASHpnotecite] = ACTIONS(4793), - [anon_sym_BSLASHPnotecite] = ACTIONS(4793), - [anon_sym_BSLASHfnotecite] = ACTIONS(4793), - [anon_sym_BSLASHlabel] = ACTIONS(4793), - [anon_sym_BSLASHref] = ACTIONS(4793), - [anon_sym_BSLASHeqref] = ACTIONS(4793), - [anon_sym_BSLASHvref] = ACTIONS(4793), - [anon_sym_BSLASHVref] = ACTIONS(4793), - [anon_sym_BSLASHautoref] = ACTIONS(4793), - [anon_sym_BSLASHpageref] = ACTIONS(4793), - [anon_sym_BSLASHcref] = ACTIONS(4793), - [anon_sym_BSLASHCref] = ACTIONS(4793), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4791), - [anon_sym_BSLASHnamecref] = ACTIONS(4793), - [anon_sym_BSLASHnameCref] = ACTIONS(4793), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4793), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4793), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4793), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4793), - [anon_sym_BSLASHlabelcref] = ACTIONS(4793), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4793), - [anon_sym_BSLASHcrefrange] = ACTIONS(4793), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCrefrange] = ACTIONS(4793), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4791), - [anon_sym_BSLASHnewlabel] = ACTIONS(4793), - [anon_sym_BSLASHnewcommand] = ACTIONS(4793), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4793), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4793), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4793), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4791), - [anon_sym_BSLASHdef] = ACTIONS(4793), - [anon_sym_BSLASHlet] = ACTIONS(4793), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4793), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4793), - [anon_sym_BSLASHgls] = ACTIONS(4793), - [anon_sym_BSLASHGls] = ACTIONS(4793), - [anon_sym_BSLASHGLS] = ACTIONS(4793), - [anon_sym_BSLASHglspl] = ACTIONS(4793), - [anon_sym_BSLASHGlspl] = ACTIONS(4793), - [anon_sym_BSLASHGLSpl] = ACTIONS(4793), - [anon_sym_BSLASHglsdisp] = ACTIONS(4793), - [anon_sym_BSLASHglslink] = ACTIONS(4793), - [anon_sym_BSLASHglstext] = ACTIONS(4793), - [anon_sym_BSLASHGlstext] = ACTIONS(4793), - [anon_sym_BSLASHGLStext] = ACTIONS(4793), - [anon_sym_BSLASHglsfirst] = ACTIONS(4793), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4793), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4793), - [anon_sym_BSLASHglsplural] = ACTIONS(4793), - [anon_sym_BSLASHGlsplural] = ACTIONS(4793), - [anon_sym_BSLASHGLSplural] = ACTIONS(4793), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHglsname] = ACTIONS(4793), - [anon_sym_BSLASHGlsname] = ACTIONS(4793), - [anon_sym_BSLASHGLSname] = ACTIONS(4793), - [anon_sym_BSLASHglssymbol] = ACTIONS(4793), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4793), - [anon_sym_BSLASHglsdesc] = ACTIONS(4793), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4793), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4793), - [anon_sym_BSLASHglsuseri] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4793), - [anon_sym_BSLASHglsuserii] = ACTIONS(4793), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4793), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4793), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4793), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4793), - [anon_sym_BSLASHglsuserv] = ACTIONS(4793), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4793), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4793), - [anon_sym_BSLASHglsuservi] = ACTIONS(4793), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4793), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4793), - [anon_sym_BSLASHnewacronym] = ACTIONS(4793), - [anon_sym_BSLASHacrshort] = ACTIONS(4793), - [anon_sym_BSLASHAcrshort] = ACTIONS(4793), - [anon_sym_BSLASHACRshort] = ACTIONS(4793), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4793), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4793), - [anon_sym_BSLASHacrlong] = ACTIONS(4793), - [anon_sym_BSLASHAcrlong] = ACTIONS(4793), - [anon_sym_BSLASHACRlong] = ACTIONS(4793), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4793), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4793), - [anon_sym_BSLASHacrfull] = ACTIONS(4793), - [anon_sym_BSLASHAcrfull] = ACTIONS(4793), - [anon_sym_BSLASHACRfull] = ACTIONS(4793), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4793), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4793), - [anon_sym_BSLASHacs] = ACTIONS(4793), - [anon_sym_BSLASHAcs] = ACTIONS(4793), - [anon_sym_BSLASHacsp] = ACTIONS(4793), - [anon_sym_BSLASHAcsp] = ACTIONS(4793), - [anon_sym_BSLASHacl] = ACTIONS(4793), - [anon_sym_BSLASHAcl] = ACTIONS(4793), - [anon_sym_BSLASHaclp] = ACTIONS(4793), - [anon_sym_BSLASHAclp] = ACTIONS(4793), - [anon_sym_BSLASHacf] = ACTIONS(4793), - [anon_sym_BSLASHAcf] = ACTIONS(4793), - [anon_sym_BSLASHacfp] = ACTIONS(4793), - [anon_sym_BSLASHAcfp] = ACTIONS(4793), - [anon_sym_BSLASHac] = ACTIONS(4793), - [anon_sym_BSLASHAc] = ACTIONS(4793), - [anon_sym_BSLASHacp] = ACTIONS(4793), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4793), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4793), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4793), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4793), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4793), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4793), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4793), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4793), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4793), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4793), - [anon_sym_BSLASHcolor] = ACTIONS(4793), - [anon_sym_BSLASHcolorbox] = ACTIONS(4793), - [anon_sym_BSLASHtextcolor] = ACTIONS(4793), - [anon_sym_BSLASHpagecolor] = ACTIONS(4793), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4793), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4793), + [489] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [656] = { - [sym_curly_group] = STATE(754), - [sym_brack_group_text] = STATE(1859), - [sym_command_name] = ACTIONS(4749), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_BSLASHpart] = ACTIONS(4749), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddpart] = ACTIONS(4749), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4747), - [anon_sym_BSLASHchapter] = ACTIONS(4749), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddchap] = ACTIONS(4749), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsection] = ACTIONS(4749), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddsec] = ACTIONS(4749), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubsection] = ACTIONS(4749), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4749), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHparagraph] = ACTIONS(4749), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4749), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4747), - [anon_sym_BSLASHitem] = ACTIONS(4749), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(4749), - [sym_placeholder] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4749), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_CARET] = ACTIONS(4749), - [anon_sym__] = ACTIONS(4749), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_COLON] = ACTIONS(4749), - [anon_sym_SQUOTE] = ACTIONS(4749), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4747), - [anon_sym_DOLLAR] = ACTIONS(4749), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4747), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4747), - [anon_sym_BSLASHbegin] = ACTIONS(4749), - [anon_sym_BSLASHusepackage] = ACTIONS(4749), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4749), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4749), - [anon_sym_BSLASHinclude] = ACTIONS(4749), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4749), - [anon_sym_BSLASHinput] = ACTIONS(4749), - [anon_sym_BSLASHsubfile] = ACTIONS(4749), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4749), - [anon_sym_BSLASHbibliography] = ACTIONS(4749), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4749), - [anon_sym_BSLASHincludesvg] = ACTIONS(4749), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4749), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4749), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4749), - [anon_sym_BSLASHimport] = ACTIONS(4749), - [anon_sym_BSLASHsubimport] = ACTIONS(4749), - [anon_sym_BSLASHinputfrom] = ACTIONS(4749), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4749), - [anon_sym_BSLASHincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHcaption] = ACTIONS(4749), - [anon_sym_BSLASHcite] = ACTIONS(4749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCite] = ACTIONS(4749), - [anon_sym_BSLASHnocite] = ACTIONS(4749), - [anon_sym_BSLASHcitet] = ACTIONS(4749), - [anon_sym_BSLASHcitep] = ACTIONS(4749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteauthor] = ACTIONS(4749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitetitle] = ACTIONS(4749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteyear] = ACTIONS(4749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitedate] = ACTIONS(4749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteurl] = ACTIONS(4749), - [anon_sym_BSLASHfullcite] = ACTIONS(4749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4749), - [anon_sym_BSLASHcitealt] = ACTIONS(4749), - [anon_sym_BSLASHcitealp] = ACTIONS(4749), - [anon_sym_BSLASHcitetext] = ACTIONS(4749), - [anon_sym_BSLASHparencite] = ACTIONS(4749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHParencite] = ACTIONS(4749), - [anon_sym_BSLASHfootcite] = ACTIONS(4749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4749), - [anon_sym_BSLASHtextcite] = ACTIONS(4749), - [anon_sym_BSLASHTextcite] = ACTIONS(4749), - [anon_sym_BSLASHsmartcite] = ACTIONS(4749), - [anon_sym_BSLASHSmartcite] = ACTIONS(4749), - [anon_sym_BSLASHsupercite] = ACTIONS(4749), - [anon_sym_BSLASHautocite] = ACTIONS(4749), - [anon_sym_BSLASHAutocite] = ACTIONS(4749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHvolcite] = ACTIONS(4749), - [anon_sym_BSLASHVolcite] = ACTIONS(4749), - [anon_sym_BSLASHpvolcite] = ACTIONS(4749), - [anon_sym_BSLASHPvolcite] = ACTIONS(4749), - [anon_sym_BSLASHfvolcite] = ACTIONS(4749), - [anon_sym_BSLASHftvolcite] = ACTIONS(4749), - [anon_sym_BSLASHsvolcite] = ACTIONS(4749), - [anon_sym_BSLASHSvolcite] = ACTIONS(4749), - [anon_sym_BSLASHtvolcite] = ACTIONS(4749), - [anon_sym_BSLASHTvolcite] = ACTIONS(4749), - [anon_sym_BSLASHavolcite] = ACTIONS(4749), - [anon_sym_BSLASHAvolcite] = ACTIONS(4749), - [anon_sym_BSLASHnotecite] = ACTIONS(4749), - [anon_sym_BSLASHNotecite] = ACTIONS(4749), - [anon_sym_BSLASHpnotecite] = ACTIONS(4749), - [anon_sym_BSLASHPnotecite] = ACTIONS(4749), - [anon_sym_BSLASHfnotecite] = ACTIONS(4749), - [anon_sym_BSLASHlabel] = ACTIONS(4749), - [anon_sym_BSLASHref] = ACTIONS(4749), - [anon_sym_BSLASHeqref] = ACTIONS(4749), - [anon_sym_BSLASHvref] = ACTIONS(4749), - [anon_sym_BSLASHVref] = ACTIONS(4749), - [anon_sym_BSLASHautoref] = ACTIONS(4749), - [anon_sym_BSLASHpageref] = ACTIONS(4749), - [anon_sym_BSLASHcref] = ACTIONS(4749), - [anon_sym_BSLASHCref] = ACTIONS(4749), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnameCref] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHlabelcref] = ACTIONS(4749), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCrefrange] = ACTIONS(4749), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnewlabel] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4749), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4749), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4749), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4747), - [anon_sym_BSLASHdef] = ACTIONS(4749), - [anon_sym_BSLASHlet] = ACTIONS(4749), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4749), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4749), - [anon_sym_BSLASHgls] = ACTIONS(4749), - [anon_sym_BSLASHGls] = ACTIONS(4749), - [anon_sym_BSLASHGLS] = ACTIONS(4749), - [anon_sym_BSLASHglspl] = ACTIONS(4749), - [anon_sym_BSLASHGlspl] = ACTIONS(4749), - [anon_sym_BSLASHGLSpl] = ACTIONS(4749), - [anon_sym_BSLASHglsdisp] = ACTIONS(4749), - [anon_sym_BSLASHglslink] = ACTIONS(4749), - [anon_sym_BSLASHglstext] = ACTIONS(4749), - [anon_sym_BSLASHGlstext] = ACTIONS(4749), - [anon_sym_BSLASHGLStext] = ACTIONS(4749), - [anon_sym_BSLASHglsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4749), - [anon_sym_BSLASHglsplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSplural] = ACTIONS(4749), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHglsname] = ACTIONS(4749), - [anon_sym_BSLASHGlsname] = ACTIONS(4749), - [anon_sym_BSLASHGLSname] = ACTIONS(4749), - [anon_sym_BSLASHglssymbol] = ACTIONS(4749), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4749), - [anon_sym_BSLASHglsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4749), - [anon_sym_BSLASHglsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4749), - [anon_sym_BSLASHglsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4749), - [anon_sym_BSLASHglsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4749), - [anon_sym_BSLASHglsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4749), - [anon_sym_BSLASHnewacronym] = ACTIONS(4749), - [anon_sym_BSLASHacrshort] = ACTIONS(4749), - [anon_sym_BSLASHAcrshort] = ACTIONS(4749), - [anon_sym_BSLASHACRshort] = ACTIONS(4749), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4749), - [anon_sym_BSLASHacrlong] = ACTIONS(4749), - [anon_sym_BSLASHAcrlong] = ACTIONS(4749), - [anon_sym_BSLASHACRlong] = ACTIONS(4749), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4749), - [anon_sym_BSLASHacrfull] = ACTIONS(4749), - [anon_sym_BSLASHAcrfull] = ACTIONS(4749), - [anon_sym_BSLASHACRfull] = ACTIONS(4749), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4749), - [anon_sym_BSLASHacs] = ACTIONS(4749), - [anon_sym_BSLASHAcs] = ACTIONS(4749), - [anon_sym_BSLASHacsp] = ACTIONS(4749), - [anon_sym_BSLASHAcsp] = ACTIONS(4749), - [anon_sym_BSLASHacl] = ACTIONS(4749), - [anon_sym_BSLASHAcl] = ACTIONS(4749), - [anon_sym_BSLASHaclp] = ACTIONS(4749), - [anon_sym_BSLASHAclp] = ACTIONS(4749), - [anon_sym_BSLASHacf] = ACTIONS(4749), - [anon_sym_BSLASHAcf] = ACTIONS(4749), - [anon_sym_BSLASHacfp] = ACTIONS(4749), - [anon_sym_BSLASHAcfp] = ACTIONS(4749), - [anon_sym_BSLASHac] = ACTIONS(4749), - [anon_sym_BSLASHAc] = ACTIONS(4749), - [anon_sym_BSLASHacp] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4749), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4749), - [anon_sym_BSLASHcolor] = ACTIONS(4749), - [anon_sym_BSLASHcolorbox] = ACTIONS(4749), - [anon_sym_BSLASHtextcolor] = ACTIONS(4749), - [anon_sym_BSLASHpagecolor] = ACTIONS(4749), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4749), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4749), + [490] = { + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(1965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1963), + [anon_sym_EQ] = ACTIONS(1963), + [anon_sym_BSLASHpart] = ACTIONS(1965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddpart] = ACTIONS(1965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHchapter] = ACTIONS(1965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddchap] = ACTIONS(1965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsection] = ACTIONS(1965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddsec] = ACTIONS(1965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHparagraph] = ACTIONS(1965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(1963), + [sym_word] = ACTIONS(1965), + [sym_placeholder] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1965), + [anon_sym_SLASH] = ACTIONS(1965), + [anon_sym_CARET] = ACTIONS(1965), + [anon_sym__] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1965), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1963), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1963), + [anon_sym_BSLASHbegin] = ACTIONS(1965), + [anon_sym_BSLASHusepackage] = ACTIONS(1965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1965), + [anon_sym_BSLASHinclude] = ACTIONS(1965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1965), + [anon_sym_BSLASHinput] = ACTIONS(1965), + [anon_sym_BSLASHsubfile] = ACTIONS(1965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1965), + [anon_sym_BSLASHbibliography] = ACTIONS(1965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1965), + [anon_sym_BSLASHincludesvg] = ACTIONS(1965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1965), + [anon_sym_BSLASHimport] = ACTIONS(1965), + [anon_sym_BSLASHsubimport] = ACTIONS(1965), + [anon_sym_BSLASHinputfrom] = ACTIONS(1965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1965), + [anon_sym_BSLASHincludefrom] = ACTIONS(1965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1965), + [anon_sym_BSLASHcaption] = ACTIONS(1965), + [anon_sym_BSLASHcite] = ACTIONS(1965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCite] = ACTIONS(1965), + [anon_sym_BSLASHnocite] = ACTIONS(1965), + [anon_sym_BSLASHcitet] = ACTIONS(1965), + [anon_sym_BSLASHcitep] = ACTIONS(1965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteauthor] = ACTIONS(1965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitetitle] = ACTIONS(1965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteyear] = ACTIONS(1965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitedate] = ACTIONS(1965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteurl] = ACTIONS(1965), + [anon_sym_BSLASHfullcite] = ACTIONS(1965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1965), + [anon_sym_BSLASHcitealt] = ACTIONS(1965), + [anon_sym_BSLASHcitealp] = ACTIONS(1965), + [anon_sym_BSLASHcitetext] = ACTIONS(1965), + [anon_sym_BSLASHparencite] = ACTIONS(1965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHParencite] = ACTIONS(1965), + [anon_sym_BSLASHfootcite] = ACTIONS(1965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1965), + [anon_sym_BSLASHtextcite] = ACTIONS(1965), + [anon_sym_BSLASHTextcite] = ACTIONS(1965), + [anon_sym_BSLASHsmartcite] = ACTIONS(1965), + [anon_sym_BSLASHSmartcite] = ACTIONS(1965), + [anon_sym_BSLASHsupercite] = ACTIONS(1965), + [anon_sym_BSLASHautocite] = ACTIONS(1965), + [anon_sym_BSLASHAutocite] = ACTIONS(1965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHvolcite] = ACTIONS(1965), + [anon_sym_BSLASHVolcite] = ACTIONS(1965), + [anon_sym_BSLASHpvolcite] = ACTIONS(1965), + [anon_sym_BSLASHPvolcite] = ACTIONS(1965), + [anon_sym_BSLASHfvolcite] = ACTIONS(1965), + [anon_sym_BSLASHftvolcite] = ACTIONS(1965), + [anon_sym_BSLASHsvolcite] = ACTIONS(1965), + [anon_sym_BSLASHSvolcite] = ACTIONS(1965), + [anon_sym_BSLASHtvolcite] = ACTIONS(1965), + [anon_sym_BSLASHTvolcite] = ACTIONS(1965), + [anon_sym_BSLASHavolcite] = ACTIONS(1965), + [anon_sym_BSLASHAvolcite] = ACTIONS(1965), + [anon_sym_BSLASHnotecite] = ACTIONS(1965), + [anon_sym_BSLASHNotecite] = ACTIONS(1965), + [anon_sym_BSLASHpnotecite] = ACTIONS(1965), + [anon_sym_BSLASHPnotecite] = ACTIONS(1965), + [anon_sym_BSLASHfnotecite] = ACTIONS(1965), + [anon_sym_BSLASHlabel] = ACTIONS(1965), + [anon_sym_BSLASHref] = ACTIONS(1965), + [anon_sym_BSLASHeqref] = ACTIONS(1965), + [anon_sym_BSLASHvref] = ACTIONS(1965), + [anon_sym_BSLASHVref] = ACTIONS(1965), + [anon_sym_BSLASHautoref] = ACTIONS(1965), + [anon_sym_BSLASHpageref] = ACTIONS(1965), + [anon_sym_BSLASHcref] = ACTIONS(1965), + [anon_sym_BSLASHCref] = ACTIONS(1965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1963), + [anon_sym_BSLASHnamecref] = ACTIONS(1965), + [anon_sym_BSLASHnameCref] = ACTIONS(1965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1965), + [anon_sym_BSLASHlabelcref] = ACTIONS(1965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1965), + [anon_sym_BSLASHcrefrange] = ACTIONS(1965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCrefrange] = ACTIONS(1965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1963), + [anon_sym_BSLASHnewlabel] = ACTIONS(1965), + [anon_sym_BSLASHnewcommand] = ACTIONS(1965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1963), + [anon_sym_BSLASHdef] = ACTIONS(1965), + [anon_sym_BSLASHlet] = ACTIONS(1965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1965), + [anon_sym_BSLASHgls] = ACTIONS(1965), + [anon_sym_BSLASHGls] = ACTIONS(1965), + [anon_sym_BSLASHGLS] = ACTIONS(1965), + [anon_sym_BSLASHglspl] = ACTIONS(1965), + [anon_sym_BSLASHGlspl] = ACTIONS(1965), + [anon_sym_BSLASHGLSpl] = ACTIONS(1965), + [anon_sym_BSLASHglsdisp] = ACTIONS(1965), + [anon_sym_BSLASHglslink] = ACTIONS(1965), + [anon_sym_BSLASHglstext] = ACTIONS(1965), + [anon_sym_BSLASHGlstext] = ACTIONS(1965), + [anon_sym_BSLASHGLStext] = ACTIONS(1965), + [anon_sym_BSLASHglsfirst] = ACTIONS(1965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1965), + [anon_sym_BSLASHglsplural] = ACTIONS(1965), + [anon_sym_BSLASHGlsplural] = ACTIONS(1965), + [anon_sym_BSLASHGLSplural] = ACTIONS(1965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHglsname] = ACTIONS(1965), + [anon_sym_BSLASHGlsname] = ACTIONS(1965), + [anon_sym_BSLASHGLSname] = ACTIONS(1965), + [anon_sym_BSLASHglssymbol] = ACTIONS(1965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1965), + [anon_sym_BSLASHglsdesc] = ACTIONS(1965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1965), + [anon_sym_BSLASHglsuseri] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1965), + [anon_sym_BSLASHglsuserii] = ACTIONS(1965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1965), + [anon_sym_BSLASHglsuserv] = ACTIONS(1965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1965), + [anon_sym_BSLASHglsuservi] = ACTIONS(1965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1965), + [anon_sym_BSLASHnewacronym] = ACTIONS(1965), + [anon_sym_BSLASHacrshort] = ACTIONS(1965), + [anon_sym_BSLASHAcrshort] = ACTIONS(1965), + [anon_sym_BSLASHACRshort] = ACTIONS(1965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1965), + [anon_sym_BSLASHacrlong] = ACTIONS(1965), + [anon_sym_BSLASHAcrlong] = ACTIONS(1965), + [anon_sym_BSLASHACRlong] = ACTIONS(1965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1965), + [anon_sym_BSLASHacrfull] = ACTIONS(1965), + [anon_sym_BSLASHAcrfull] = ACTIONS(1965), + [anon_sym_BSLASHACRfull] = ACTIONS(1965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1965), + [anon_sym_BSLASHacs] = ACTIONS(1965), + [anon_sym_BSLASHAcs] = ACTIONS(1965), + [anon_sym_BSLASHacsp] = ACTIONS(1965), + [anon_sym_BSLASHAcsp] = ACTIONS(1965), + [anon_sym_BSLASHacl] = ACTIONS(1965), + [anon_sym_BSLASHAcl] = ACTIONS(1965), + [anon_sym_BSLASHaclp] = ACTIONS(1965), + [anon_sym_BSLASHAclp] = ACTIONS(1965), + [anon_sym_BSLASHacf] = ACTIONS(1965), + [anon_sym_BSLASHAcf] = ACTIONS(1965), + [anon_sym_BSLASHacfp] = ACTIONS(1965), + [anon_sym_BSLASHAcfp] = ACTIONS(1965), + [anon_sym_BSLASHac] = ACTIONS(1965), + [anon_sym_BSLASHAc] = ACTIONS(1965), + [anon_sym_BSLASHacp] = ACTIONS(1965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1965), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1965), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1965), + [anon_sym_BSLASHcolor] = ACTIONS(1965), + [anon_sym_BSLASHcolorbox] = ACTIONS(1965), + [anon_sym_BSLASHtextcolor] = ACTIONS(1965), + [anon_sym_BSLASHpagecolor] = ACTIONS(1965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1965), + [anon_sym_BSLASHtext] = ACTIONS(1965), + [anon_sym_BSLASHintertext] = ACTIONS(1965), + [anon_sym_shortintertext] = ACTIONS(1965), }, - [657] = { - [sym_brack_group_text] = STATE(783), - [ts_builtin_sym_end] = ACTIONS(4795), - [sym_command_name] = ACTIONS(4797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4795), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4795), - [anon_sym_COMMA] = ACTIONS(4795), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_BSLASHpart] = ACTIONS(4797), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddpart] = ACTIONS(4797), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4795), - [anon_sym_BSLASHchapter] = ACTIONS(4797), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddchap] = ACTIONS(4797), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsection] = ACTIONS(4797), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddsec] = ACTIONS(4797), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubsection] = ACTIONS(4797), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4797), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHparagraph] = ACTIONS(4797), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4797), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4795), - [anon_sym_BSLASHitem] = ACTIONS(4797), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4795), - [anon_sym_RBRACE] = ACTIONS(4795), - [sym_word] = ACTIONS(4797), - [sym_placeholder] = ACTIONS(4795), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_CARET] = ACTIONS(4797), - [anon_sym__] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4797), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4795), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4795), - [anon_sym_BSLASHbegin] = ACTIONS(4797), - [anon_sym_BSLASHusepackage] = ACTIONS(4797), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4797), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4797), - [anon_sym_BSLASHinclude] = ACTIONS(4797), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4797), - [anon_sym_BSLASHinput] = ACTIONS(4797), - [anon_sym_BSLASHsubfile] = ACTIONS(4797), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4797), - [anon_sym_BSLASHbibliography] = ACTIONS(4797), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4797), - [anon_sym_BSLASHincludesvg] = ACTIONS(4797), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4797), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4797), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4797), - [anon_sym_BSLASHimport] = ACTIONS(4797), - [anon_sym_BSLASHsubimport] = ACTIONS(4797), - [anon_sym_BSLASHinputfrom] = ACTIONS(4797), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4797), - [anon_sym_BSLASHincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHcaption] = ACTIONS(4797), - [anon_sym_BSLASHcite] = ACTIONS(4797), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCite] = ACTIONS(4797), - [anon_sym_BSLASHnocite] = ACTIONS(4797), - [anon_sym_BSLASHcitet] = ACTIONS(4797), - [anon_sym_BSLASHcitep] = ACTIONS(4797), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteauthor] = ACTIONS(4797), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4797), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitetitle] = ACTIONS(4797), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteyear] = ACTIONS(4797), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitedate] = ACTIONS(4797), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteurl] = ACTIONS(4797), - [anon_sym_BSLASHfullcite] = ACTIONS(4797), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4797), - [anon_sym_BSLASHcitealt] = ACTIONS(4797), - [anon_sym_BSLASHcitealp] = ACTIONS(4797), - [anon_sym_BSLASHcitetext] = ACTIONS(4797), - [anon_sym_BSLASHparencite] = ACTIONS(4797), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHParencite] = ACTIONS(4797), - [anon_sym_BSLASHfootcite] = ACTIONS(4797), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4797), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4797), - [anon_sym_BSLASHtextcite] = ACTIONS(4797), - [anon_sym_BSLASHTextcite] = ACTIONS(4797), - [anon_sym_BSLASHsmartcite] = ACTIONS(4797), - [anon_sym_BSLASHSmartcite] = ACTIONS(4797), - [anon_sym_BSLASHsupercite] = ACTIONS(4797), - [anon_sym_BSLASHautocite] = ACTIONS(4797), - [anon_sym_BSLASHAutocite] = ACTIONS(4797), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHvolcite] = ACTIONS(4797), - [anon_sym_BSLASHVolcite] = ACTIONS(4797), - [anon_sym_BSLASHpvolcite] = ACTIONS(4797), - [anon_sym_BSLASHPvolcite] = ACTIONS(4797), - [anon_sym_BSLASHfvolcite] = ACTIONS(4797), - [anon_sym_BSLASHftvolcite] = ACTIONS(4797), - [anon_sym_BSLASHsvolcite] = ACTIONS(4797), - [anon_sym_BSLASHSvolcite] = ACTIONS(4797), - [anon_sym_BSLASHtvolcite] = ACTIONS(4797), - [anon_sym_BSLASHTvolcite] = ACTIONS(4797), - [anon_sym_BSLASHavolcite] = ACTIONS(4797), - [anon_sym_BSLASHAvolcite] = ACTIONS(4797), - [anon_sym_BSLASHnotecite] = ACTIONS(4797), - [anon_sym_BSLASHNotecite] = ACTIONS(4797), - [anon_sym_BSLASHpnotecite] = ACTIONS(4797), - [anon_sym_BSLASHPnotecite] = ACTIONS(4797), - [anon_sym_BSLASHfnotecite] = ACTIONS(4797), - [anon_sym_BSLASHlabel] = ACTIONS(4797), - [anon_sym_BSLASHref] = ACTIONS(4797), - [anon_sym_BSLASHeqref] = ACTIONS(4797), - [anon_sym_BSLASHvref] = ACTIONS(4797), - [anon_sym_BSLASHVref] = ACTIONS(4797), - [anon_sym_BSLASHautoref] = ACTIONS(4797), - [anon_sym_BSLASHpageref] = ACTIONS(4797), - [anon_sym_BSLASHcref] = ACTIONS(4797), - [anon_sym_BSLASHCref] = ACTIONS(4797), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnameCref] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHlabelcref] = ACTIONS(4797), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCrefrange] = ACTIONS(4797), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnewlabel] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4797), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4797), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4797), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4795), - [anon_sym_BSLASHdef] = ACTIONS(4797), - [anon_sym_BSLASHlet] = ACTIONS(4797), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4797), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4797), - [anon_sym_BSLASHgls] = ACTIONS(4797), - [anon_sym_BSLASHGls] = ACTIONS(4797), - [anon_sym_BSLASHGLS] = ACTIONS(4797), - [anon_sym_BSLASHglspl] = ACTIONS(4797), - [anon_sym_BSLASHGlspl] = ACTIONS(4797), - [anon_sym_BSLASHGLSpl] = ACTIONS(4797), - [anon_sym_BSLASHglsdisp] = ACTIONS(4797), - [anon_sym_BSLASHglslink] = ACTIONS(4797), - [anon_sym_BSLASHglstext] = ACTIONS(4797), - [anon_sym_BSLASHGlstext] = ACTIONS(4797), - [anon_sym_BSLASHGLStext] = ACTIONS(4797), - [anon_sym_BSLASHglsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4797), - [anon_sym_BSLASHglsplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSplural] = ACTIONS(4797), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHglsname] = ACTIONS(4797), - [anon_sym_BSLASHGlsname] = ACTIONS(4797), - [anon_sym_BSLASHGLSname] = ACTIONS(4797), - [anon_sym_BSLASHglssymbol] = ACTIONS(4797), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4797), - [anon_sym_BSLASHglsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4797), - [anon_sym_BSLASHglsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4797), - [anon_sym_BSLASHglsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4797), - [anon_sym_BSLASHglsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4797), - [anon_sym_BSLASHglsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4797), - [anon_sym_BSLASHnewacronym] = ACTIONS(4797), - [anon_sym_BSLASHacrshort] = ACTIONS(4797), - [anon_sym_BSLASHAcrshort] = ACTIONS(4797), - [anon_sym_BSLASHACRshort] = ACTIONS(4797), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4797), - [anon_sym_BSLASHacrlong] = ACTIONS(4797), - [anon_sym_BSLASHAcrlong] = ACTIONS(4797), - [anon_sym_BSLASHACRlong] = ACTIONS(4797), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4797), - [anon_sym_BSLASHacrfull] = ACTIONS(4797), - [anon_sym_BSLASHAcrfull] = ACTIONS(4797), - [anon_sym_BSLASHACRfull] = ACTIONS(4797), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4797), - [anon_sym_BSLASHacs] = ACTIONS(4797), - [anon_sym_BSLASHAcs] = ACTIONS(4797), - [anon_sym_BSLASHacsp] = ACTIONS(4797), - [anon_sym_BSLASHAcsp] = ACTIONS(4797), - [anon_sym_BSLASHacl] = ACTIONS(4797), - [anon_sym_BSLASHAcl] = ACTIONS(4797), - [anon_sym_BSLASHaclp] = ACTIONS(4797), - [anon_sym_BSLASHAclp] = ACTIONS(4797), - [anon_sym_BSLASHacf] = ACTIONS(4797), - [anon_sym_BSLASHAcf] = ACTIONS(4797), - [anon_sym_BSLASHacfp] = ACTIONS(4797), - [anon_sym_BSLASHAcfp] = ACTIONS(4797), - [anon_sym_BSLASHac] = ACTIONS(4797), - [anon_sym_BSLASHAc] = ACTIONS(4797), - [anon_sym_BSLASHacp] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4797), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4797), - [anon_sym_BSLASHcolor] = ACTIONS(4797), - [anon_sym_BSLASHcolorbox] = ACTIONS(4797), - [anon_sym_BSLASHtextcolor] = ACTIONS(4797), - [anon_sym_BSLASHpagecolor] = ACTIONS(4797), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4797), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4797), + [491] = { + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(517), + [aux_sym__section_repeat4] = STATE(517), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), }, - [658] = { - [sym_curly_group] = STATE(762), - [sym_brack_group_text] = STATE(1967), - [sym_command_name] = ACTIONS(4587), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4585), - [anon_sym_RPAREN] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4585), - [anon_sym_COMMA] = ACTIONS(4585), - [anon_sym_EQ] = ACTIONS(4585), - [anon_sym_BSLASHpart] = ACTIONS(4587), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddpart] = ACTIONS(4587), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4585), - [anon_sym_BSLASHchapter] = ACTIONS(4587), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddchap] = ACTIONS(4587), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsection] = ACTIONS(4587), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddsec] = ACTIONS(4587), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubsection] = ACTIONS(4587), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4587), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHparagraph] = ACTIONS(4587), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4587), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4585), - [anon_sym_BSLASHitem] = ACTIONS(4587), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4585), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(4587), - [sym_placeholder] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_CARET] = ACTIONS(4587), - [anon_sym__] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4585), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4585), - [anon_sym_BSLASHbegin] = ACTIONS(4587), - [anon_sym_BSLASHend] = ACTIONS(4587), - [anon_sym_BSLASHusepackage] = ACTIONS(4587), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4587), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4587), - [anon_sym_BSLASHinclude] = ACTIONS(4587), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4587), - [anon_sym_BSLASHinput] = ACTIONS(4587), - [anon_sym_BSLASHsubfile] = ACTIONS(4587), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4587), - [anon_sym_BSLASHbibliography] = ACTIONS(4587), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4587), - [anon_sym_BSLASHincludesvg] = ACTIONS(4587), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4587), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4587), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4587), - [anon_sym_BSLASHimport] = ACTIONS(4587), - [anon_sym_BSLASHsubimport] = ACTIONS(4587), - [anon_sym_BSLASHinputfrom] = ACTIONS(4587), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4587), - [anon_sym_BSLASHincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHcaption] = ACTIONS(4587), - [anon_sym_BSLASHcite] = ACTIONS(4587), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCite] = ACTIONS(4587), - [anon_sym_BSLASHnocite] = ACTIONS(4587), - [anon_sym_BSLASHcitet] = ACTIONS(4587), - [anon_sym_BSLASHcitep] = ACTIONS(4587), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteauthor] = ACTIONS(4587), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4587), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitetitle] = ACTIONS(4587), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteyear] = ACTIONS(4587), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitedate] = ACTIONS(4587), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteurl] = ACTIONS(4587), - [anon_sym_BSLASHfullcite] = ACTIONS(4587), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4587), - [anon_sym_BSLASHcitealt] = ACTIONS(4587), - [anon_sym_BSLASHcitealp] = ACTIONS(4587), - [anon_sym_BSLASHcitetext] = ACTIONS(4587), - [anon_sym_BSLASHparencite] = ACTIONS(4587), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHParencite] = ACTIONS(4587), - [anon_sym_BSLASHfootcite] = ACTIONS(4587), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4587), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4587), - [anon_sym_BSLASHtextcite] = ACTIONS(4587), - [anon_sym_BSLASHTextcite] = ACTIONS(4587), - [anon_sym_BSLASHsmartcite] = ACTIONS(4587), - [anon_sym_BSLASHSmartcite] = ACTIONS(4587), - [anon_sym_BSLASHsupercite] = ACTIONS(4587), - [anon_sym_BSLASHautocite] = ACTIONS(4587), - [anon_sym_BSLASHAutocite] = ACTIONS(4587), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHvolcite] = ACTIONS(4587), - [anon_sym_BSLASHVolcite] = ACTIONS(4587), - [anon_sym_BSLASHpvolcite] = ACTIONS(4587), - [anon_sym_BSLASHPvolcite] = ACTIONS(4587), - [anon_sym_BSLASHfvolcite] = ACTIONS(4587), - [anon_sym_BSLASHftvolcite] = ACTIONS(4587), - [anon_sym_BSLASHsvolcite] = ACTIONS(4587), - [anon_sym_BSLASHSvolcite] = ACTIONS(4587), - [anon_sym_BSLASHtvolcite] = ACTIONS(4587), - [anon_sym_BSLASHTvolcite] = ACTIONS(4587), - [anon_sym_BSLASHavolcite] = ACTIONS(4587), - [anon_sym_BSLASHAvolcite] = ACTIONS(4587), - [anon_sym_BSLASHnotecite] = ACTIONS(4587), - [anon_sym_BSLASHNotecite] = ACTIONS(4587), - [anon_sym_BSLASHpnotecite] = ACTIONS(4587), - [anon_sym_BSLASHPnotecite] = ACTIONS(4587), - [anon_sym_BSLASHfnotecite] = ACTIONS(4587), - [anon_sym_BSLASHlabel] = ACTIONS(4587), - [anon_sym_BSLASHref] = ACTIONS(4587), - [anon_sym_BSLASHeqref] = ACTIONS(4587), - [anon_sym_BSLASHvref] = ACTIONS(4587), - [anon_sym_BSLASHVref] = ACTIONS(4587), - [anon_sym_BSLASHautoref] = ACTIONS(4587), - [anon_sym_BSLASHpageref] = ACTIONS(4587), - [anon_sym_BSLASHcref] = ACTIONS(4587), - [anon_sym_BSLASHCref] = ACTIONS(4587), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnameCref] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHlabelcref] = ACTIONS(4587), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCrefrange] = ACTIONS(4587), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnewlabel] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4587), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4587), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4587), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4585), - [anon_sym_BSLASHdef] = ACTIONS(4587), - [anon_sym_BSLASHlet] = ACTIONS(4587), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4587), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4587), - [anon_sym_BSLASHGls] = ACTIONS(4587), - [anon_sym_BSLASHGLS] = ACTIONS(4587), - [anon_sym_BSLASHglspl] = ACTIONS(4587), - [anon_sym_BSLASHGlspl] = ACTIONS(4587), - [anon_sym_BSLASHGLSpl] = ACTIONS(4587), - [anon_sym_BSLASHglsdisp] = ACTIONS(4587), - [anon_sym_BSLASHglslink] = ACTIONS(4587), - [anon_sym_BSLASHglstext] = ACTIONS(4587), - [anon_sym_BSLASHGlstext] = ACTIONS(4587), - [anon_sym_BSLASHGLStext] = ACTIONS(4587), - [anon_sym_BSLASHglsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4587), - [anon_sym_BSLASHglsplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSplural] = ACTIONS(4587), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHglsname] = ACTIONS(4587), - [anon_sym_BSLASHGlsname] = ACTIONS(4587), - [anon_sym_BSLASHGLSname] = ACTIONS(4587), - [anon_sym_BSLASHglssymbol] = ACTIONS(4587), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4587), - [anon_sym_BSLASHglsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4587), - [anon_sym_BSLASHglsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4587), - [anon_sym_BSLASHglsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4587), - [anon_sym_BSLASHglsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4587), - [anon_sym_BSLASHglsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4587), - [anon_sym_BSLASHnewacronym] = ACTIONS(4587), - [anon_sym_BSLASHacrshort] = ACTIONS(4587), - [anon_sym_BSLASHAcrshort] = ACTIONS(4587), - [anon_sym_BSLASHACRshort] = ACTIONS(4587), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4587), - [anon_sym_BSLASHacrlong] = ACTIONS(4587), - [anon_sym_BSLASHAcrlong] = ACTIONS(4587), - [anon_sym_BSLASHACRlong] = ACTIONS(4587), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4587), - [anon_sym_BSLASHacrfull] = ACTIONS(4587), - [anon_sym_BSLASHAcrfull] = ACTIONS(4587), - [anon_sym_BSLASHACRfull] = ACTIONS(4587), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4587), - [anon_sym_BSLASHacs] = ACTIONS(4587), - [anon_sym_BSLASHAcs] = ACTIONS(4587), - [anon_sym_BSLASHacsp] = ACTIONS(4587), - [anon_sym_BSLASHAcsp] = ACTIONS(4587), - [anon_sym_BSLASHacl] = ACTIONS(4587), - [anon_sym_BSLASHAcl] = ACTIONS(4587), - [anon_sym_BSLASHaclp] = ACTIONS(4587), - [anon_sym_BSLASHAclp] = ACTIONS(4587), - [anon_sym_BSLASHacf] = ACTIONS(4587), - [anon_sym_BSLASHAcf] = ACTIONS(4587), - [anon_sym_BSLASHacfp] = ACTIONS(4587), - [anon_sym_BSLASHAcfp] = ACTIONS(4587), - [anon_sym_BSLASHac] = ACTIONS(4587), - [anon_sym_BSLASHAc] = ACTIONS(4587), - [anon_sym_BSLASHacp] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4587), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4587), - [anon_sym_BSLASHcolor] = ACTIONS(4587), - [anon_sym_BSLASHcolorbox] = ACTIONS(4587), - [anon_sym_BSLASHtextcolor] = ACTIONS(4587), - [anon_sym_BSLASHpagecolor] = ACTIONS(4587), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4587), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4587), + [492] = { + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(518), + [aux_sym__section_repeat5] = STATE(518), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), }, - [659] = { - [sym_command_name] = ACTIONS(4697), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4697), - [anon_sym_BSLASHfi] = ACTIONS(4799), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_RPAREN] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_RBRACK] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_BSLASHpart] = ACTIONS(4697), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddpart] = ACTIONS(4697), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4695), - [anon_sym_BSLASHchapter] = ACTIONS(4697), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddchap] = ACTIONS(4697), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsection] = ACTIONS(4697), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddsec] = ACTIONS(4697), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubsection] = ACTIONS(4697), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHparagraph] = ACTIONS(4697), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4695), - [anon_sym_BSLASHitem] = ACTIONS(4697), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4695), - [sym_word] = ACTIONS(4697), - [sym_placeholder] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_CARET] = ACTIONS(4697), - [anon_sym__] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4697), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4695), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4695), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4695), - [anon_sym_BSLASHbegin] = ACTIONS(4697), - [anon_sym_BSLASHusepackage] = ACTIONS(4697), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4697), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4697), - [anon_sym_BSLASHinclude] = ACTIONS(4697), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4697), - [anon_sym_BSLASHinput] = ACTIONS(4697), - [anon_sym_BSLASHsubfile] = ACTIONS(4697), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4697), - [anon_sym_BSLASHbibliography] = ACTIONS(4697), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4697), - [anon_sym_BSLASHincludesvg] = ACTIONS(4697), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4697), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4697), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4697), - [anon_sym_BSLASHimport] = ACTIONS(4697), - [anon_sym_BSLASHsubimport] = ACTIONS(4697), - [anon_sym_BSLASHinputfrom] = ACTIONS(4697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4697), - [anon_sym_BSLASHincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHcaption] = ACTIONS(4697), - [anon_sym_BSLASHcite] = ACTIONS(4697), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCite] = ACTIONS(4697), - [anon_sym_BSLASHnocite] = ACTIONS(4697), - [anon_sym_BSLASHcitet] = ACTIONS(4697), - [anon_sym_BSLASHcitep] = ACTIONS(4697), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteyear] = ACTIONS(4697), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitedate] = ACTIONS(4697), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteurl] = ACTIONS(4697), - [anon_sym_BSLASHfullcite] = ACTIONS(4697), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4697), - [anon_sym_BSLASHcitealt] = ACTIONS(4697), - [anon_sym_BSLASHcitealp] = ACTIONS(4697), - [anon_sym_BSLASHcitetext] = ACTIONS(4697), - [anon_sym_BSLASHparencite] = ACTIONS(4697), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHParencite] = ACTIONS(4697), - [anon_sym_BSLASHfootcite] = ACTIONS(4697), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4697), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4697), - [anon_sym_BSLASHtextcite] = ACTIONS(4697), - [anon_sym_BSLASHTextcite] = ACTIONS(4697), - [anon_sym_BSLASHsmartcite] = ACTIONS(4697), - [anon_sym_BSLASHSmartcite] = ACTIONS(4697), - [anon_sym_BSLASHsupercite] = ACTIONS(4697), - [anon_sym_BSLASHautocite] = ACTIONS(4697), - [anon_sym_BSLASHAutocite] = ACTIONS(4697), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHvolcite] = ACTIONS(4697), - [anon_sym_BSLASHVolcite] = ACTIONS(4697), - [anon_sym_BSLASHpvolcite] = ACTIONS(4697), - [anon_sym_BSLASHPvolcite] = ACTIONS(4697), - [anon_sym_BSLASHfvolcite] = ACTIONS(4697), - [anon_sym_BSLASHftvolcite] = ACTIONS(4697), - [anon_sym_BSLASHsvolcite] = ACTIONS(4697), - [anon_sym_BSLASHSvolcite] = ACTIONS(4697), - [anon_sym_BSLASHtvolcite] = ACTIONS(4697), - [anon_sym_BSLASHTvolcite] = ACTIONS(4697), - [anon_sym_BSLASHavolcite] = ACTIONS(4697), - [anon_sym_BSLASHAvolcite] = ACTIONS(4697), - [anon_sym_BSLASHnotecite] = ACTIONS(4697), - [anon_sym_BSLASHNotecite] = ACTIONS(4697), - [anon_sym_BSLASHpnotecite] = ACTIONS(4697), - [anon_sym_BSLASHPnotecite] = ACTIONS(4697), - [anon_sym_BSLASHfnotecite] = ACTIONS(4697), - [anon_sym_BSLASHlabel] = ACTIONS(4697), - [anon_sym_BSLASHref] = ACTIONS(4697), - [anon_sym_BSLASHeqref] = ACTIONS(4697), - [anon_sym_BSLASHvref] = ACTIONS(4697), - [anon_sym_BSLASHVref] = ACTIONS(4697), - [anon_sym_BSLASHautoref] = ACTIONS(4697), - [anon_sym_BSLASHpageref] = ACTIONS(4697), - [anon_sym_BSLASHcref] = ACTIONS(4697), - [anon_sym_BSLASHCref] = ACTIONS(4697), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnameCref] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHlabelcref] = ACTIONS(4697), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnewlabel] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4695), - [anon_sym_BSLASHdef] = ACTIONS(4697), - [anon_sym_BSLASHlet] = ACTIONS(4697), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4697), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4697), - [anon_sym_BSLASHgls] = ACTIONS(4697), - [anon_sym_BSLASHGls] = ACTIONS(4697), - [anon_sym_BSLASHGLS] = ACTIONS(4697), - [anon_sym_BSLASHglspl] = ACTIONS(4697), - [anon_sym_BSLASHGlspl] = ACTIONS(4697), - [anon_sym_BSLASHGLSpl] = ACTIONS(4697), - [anon_sym_BSLASHglsdisp] = ACTIONS(4697), - [anon_sym_BSLASHglslink] = ACTIONS(4697), - [anon_sym_BSLASHglstext] = ACTIONS(4697), - [anon_sym_BSLASHGlstext] = ACTIONS(4697), - [anon_sym_BSLASHGLStext] = ACTIONS(4697), - [anon_sym_BSLASHglsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4697), - [anon_sym_BSLASHglsplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSplural] = ACTIONS(4697), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHglsname] = ACTIONS(4697), - [anon_sym_BSLASHGlsname] = ACTIONS(4697), - [anon_sym_BSLASHGLSname] = ACTIONS(4697), - [anon_sym_BSLASHglssymbol] = ACTIONS(4697), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4697), - [anon_sym_BSLASHglsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4697), - [anon_sym_BSLASHglsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4697), - [anon_sym_BSLASHglsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4697), - [anon_sym_BSLASHglsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4697), - [anon_sym_BSLASHglsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4697), - [anon_sym_BSLASHnewacronym] = ACTIONS(4697), - [anon_sym_BSLASHacrshort] = ACTIONS(4697), - [anon_sym_BSLASHAcrshort] = ACTIONS(4697), - [anon_sym_BSLASHACRshort] = ACTIONS(4697), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4697), - [anon_sym_BSLASHacrlong] = ACTIONS(4697), - [anon_sym_BSLASHAcrlong] = ACTIONS(4697), - [anon_sym_BSLASHACRlong] = ACTIONS(4697), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4697), - [anon_sym_BSLASHacrfull] = ACTIONS(4697), - [anon_sym_BSLASHAcrfull] = ACTIONS(4697), - [anon_sym_BSLASHACRfull] = ACTIONS(4697), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4697), - [anon_sym_BSLASHacs] = ACTIONS(4697), - [anon_sym_BSLASHAcs] = ACTIONS(4697), - [anon_sym_BSLASHacsp] = ACTIONS(4697), - [anon_sym_BSLASHAcsp] = ACTIONS(4697), - [anon_sym_BSLASHacl] = ACTIONS(4697), - [anon_sym_BSLASHAcl] = ACTIONS(4697), - [anon_sym_BSLASHaclp] = ACTIONS(4697), - [anon_sym_BSLASHAclp] = ACTIONS(4697), - [anon_sym_BSLASHacf] = ACTIONS(4697), - [anon_sym_BSLASHAcf] = ACTIONS(4697), - [anon_sym_BSLASHacfp] = ACTIONS(4697), - [anon_sym_BSLASHAcfp] = ACTIONS(4697), - [anon_sym_BSLASHac] = ACTIONS(4697), - [anon_sym_BSLASHAc] = ACTIONS(4697), - [anon_sym_BSLASHacp] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4697), - [anon_sym_BSLASHcolor] = ACTIONS(4697), - [anon_sym_BSLASHcolorbox] = ACTIONS(4697), - [anon_sym_BSLASHtextcolor] = ACTIONS(4697), - [anon_sym_BSLASHpagecolor] = ACTIONS(4697), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4697), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4697), - [sym__trivia_raw_fi] = ACTIONS(4801), + [493] = { + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(519), + [aux_sym__section_repeat6] = STATE(519), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), }, - [660] = { - [sym_curly_group] = STATE(829), - [sym_brack_group_text] = STATE(1802), - [sym_command_name] = ACTIONS(4587), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4585), - [anon_sym_RPAREN] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4585), - [anon_sym_COMMA] = ACTIONS(4585), - [anon_sym_EQ] = ACTIONS(4585), - [anon_sym_BSLASHpart] = ACTIONS(4587), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddpart] = ACTIONS(4587), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4585), - [anon_sym_BSLASHchapter] = ACTIONS(4587), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddchap] = ACTIONS(4587), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsection] = ACTIONS(4587), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddsec] = ACTIONS(4587), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubsection] = ACTIONS(4587), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4587), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHparagraph] = ACTIONS(4587), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4587), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4585), - [anon_sym_BSLASHitem] = ACTIONS(4587), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4585), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(4587), - [sym_placeholder] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_CARET] = ACTIONS(4587), - [anon_sym__] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4585), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4585), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4585), - [anon_sym_BSLASHbegin] = ACTIONS(4587), - [anon_sym_BSLASHusepackage] = ACTIONS(4587), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4587), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4587), - [anon_sym_BSLASHinclude] = ACTIONS(4587), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4587), - [anon_sym_BSLASHinput] = ACTIONS(4587), - [anon_sym_BSLASHsubfile] = ACTIONS(4587), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4587), - [anon_sym_BSLASHbibliography] = ACTIONS(4587), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4587), - [anon_sym_BSLASHincludesvg] = ACTIONS(4587), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4587), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4587), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4587), - [anon_sym_BSLASHimport] = ACTIONS(4587), - [anon_sym_BSLASHsubimport] = ACTIONS(4587), - [anon_sym_BSLASHinputfrom] = ACTIONS(4587), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4587), - [anon_sym_BSLASHincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHcaption] = ACTIONS(4587), - [anon_sym_BSLASHcite] = ACTIONS(4587), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCite] = ACTIONS(4587), - [anon_sym_BSLASHnocite] = ACTIONS(4587), - [anon_sym_BSLASHcitet] = ACTIONS(4587), - [anon_sym_BSLASHcitep] = ACTIONS(4587), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteauthor] = ACTIONS(4587), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4587), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitetitle] = ACTIONS(4587), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteyear] = ACTIONS(4587), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitedate] = ACTIONS(4587), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteurl] = ACTIONS(4587), - [anon_sym_BSLASHfullcite] = ACTIONS(4587), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4587), - [anon_sym_BSLASHcitealt] = ACTIONS(4587), - [anon_sym_BSLASHcitealp] = ACTIONS(4587), - [anon_sym_BSLASHcitetext] = ACTIONS(4587), - [anon_sym_BSLASHparencite] = ACTIONS(4587), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHParencite] = ACTIONS(4587), - [anon_sym_BSLASHfootcite] = ACTIONS(4587), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4587), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4587), - [anon_sym_BSLASHtextcite] = ACTIONS(4587), - [anon_sym_BSLASHTextcite] = ACTIONS(4587), - [anon_sym_BSLASHsmartcite] = ACTIONS(4587), - [anon_sym_BSLASHSmartcite] = ACTIONS(4587), - [anon_sym_BSLASHsupercite] = ACTIONS(4587), - [anon_sym_BSLASHautocite] = ACTIONS(4587), - [anon_sym_BSLASHAutocite] = ACTIONS(4587), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHvolcite] = ACTIONS(4587), - [anon_sym_BSLASHVolcite] = ACTIONS(4587), - [anon_sym_BSLASHpvolcite] = ACTIONS(4587), - [anon_sym_BSLASHPvolcite] = ACTIONS(4587), - [anon_sym_BSLASHfvolcite] = ACTIONS(4587), - [anon_sym_BSLASHftvolcite] = ACTIONS(4587), - [anon_sym_BSLASHsvolcite] = ACTIONS(4587), - [anon_sym_BSLASHSvolcite] = ACTIONS(4587), - [anon_sym_BSLASHtvolcite] = ACTIONS(4587), - [anon_sym_BSLASHTvolcite] = ACTIONS(4587), - [anon_sym_BSLASHavolcite] = ACTIONS(4587), - [anon_sym_BSLASHAvolcite] = ACTIONS(4587), - [anon_sym_BSLASHnotecite] = ACTIONS(4587), - [anon_sym_BSLASHNotecite] = ACTIONS(4587), - [anon_sym_BSLASHpnotecite] = ACTIONS(4587), - [anon_sym_BSLASHPnotecite] = ACTIONS(4587), - [anon_sym_BSLASHfnotecite] = ACTIONS(4587), - [anon_sym_BSLASHlabel] = ACTIONS(4587), - [anon_sym_BSLASHref] = ACTIONS(4587), - [anon_sym_BSLASHeqref] = ACTIONS(4587), - [anon_sym_BSLASHvref] = ACTIONS(4587), - [anon_sym_BSLASHVref] = ACTIONS(4587), - [anon_sym_BSLASHautoref] = ACTIONS(4587), - [anon_sym_BSLASHpageref] = ACTIONS(4587), - [anon_sym_BSLASHcref] = ACTIONS(4587), - [anon_sym_BSLASHCref] = ACTIONS(4587), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnameCref] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHlabelcref] = ACTIONS(4587), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCrefrange] = ACTIONS(4587), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnewlabel] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4587), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4587), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4587), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4585), - [anon_sym_BSLASHdef] = ACTIONS(4587), - [anon_sym_BSLASHlet] = ACTIONS(4587), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4587), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4587), - [anon_sym_BSLASHGls] = ACTIONS(4587), - [anon_sym_BSLASHGLS] = ACTIONS(4587), - [anon_sym_BSLASHglspl] = ACTIONS(4587), - [anon_sym_BSLASHGlspl] = ACTIONS(4587), - [anon_sym_BSLASHGLSpl] = ACTIONS(4587), - [anon_sym_BSLASHglsdisp] = ACTIONS(4587), - [anon_sym_BSLASHglslink] = ACTIONS(4587), - [anon_sym_BSLASHglstext] = ACTIONS(4587), - [anon_sym_BSLASHGlstext] = ACTIONS(4587), - [anon_sym_BSLASHGLStext] = ACTIONS(4587), - [anon_sym_BSLASHglsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4587), - [anon_sym_BSLASHglsplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSplural] = ACTIONS(4587), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHglsname] = ACTIONS(4587), - [anon_sym_BSLASHGlsname] = ACTIONS(4587), - [anon_sym_BSLASHGLSname] = ACTIONS(4587), - [anon_sym_BSLASHglssymbol] = ACTIONS(4587), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4587), - [anon_sym_BSLASHglsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4587), - [anon_sym_BSLASHglsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4587), - [anon_sym_BSLASHglsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4587), - [anon_sym_BSLASHglsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4587), - [anon_sym_BSLASHglsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4587), - [anon_sym_BSLASHnewacronym] = ACTIONS(4587), - [anon_sym_BSLASHacrshort] = ACTIONS(4587), - [anon_sym_BSLASHAcrshort] = ACTIONS(4587), - [anon_sym_BSLASHACRshort] = ACTIONS(4587), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4587), - [anon_sym_BSLASHacrlong] = ACTIONS(4587), - [anon_sym_BSLASHAcrlong] = ACTIONS(4587), - [anon_sym_BSLASHACRlong] = ACTIONS(4587), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4587), - [anon_sym_BSLASHacrfull] = ACTIONS(4587), - [anon_sym_BSLASHAcrfull] = ACTIONS(4587), - [anon_sym_BSLASHACRfull] = ACTIONS(4587), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4587), - [anon_sym_BSLASHacs] = ACTIONS(4587), - [anon_sym_BSLASHAcs] = ACTIONS(4587), - [anon_sym_BSLASHacsp] = ACTIONS(4587), - [anon_sym_BSLASHAcsp] = ACTIONS(4587), - [anon_sym_BSLASHacl] = ACTIONS(4587), - [anon_sym_BSLASHAcl] = ACTIONS(4587), - [anon_sym_BSLASHaclp] = ACTIONS(4587), - [anon_sym_BSLASHAclp] = ACTIONS(4587), - [anon_sym_BSLASHacf] = ACTIONS(4587), - [anon_sym_BSLASHAcf] = ACTIONS(4587), - [anon_sym_BSLASHacfp] = ACTIONS(4587), - [anon_sym_BSLASHAcfp] = ACTIONS(4587), - [anon_sym_BSLASHac] = ACTIONS(4587), - [anon_sym_BSLASHAc] = ACTIONS(4587), - [anon_sym_BSLASHacp] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4587), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4587), - [anon_sym_BSLASHcolor] = ACTIONS(4587), - [anon_sym_BSLASHcolorbox] = ACTIONS(4587), - [anon_sym_BSLASHtextcolor] = ACTIONS(4587), - [anon_sym_BSLASHpagecolor] = ACTIONS(4587), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4587), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4587), + [494] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), }, - [661] = { - [sym_command_name] = ACTIONS(4697), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4697), - [anon_sym_BSLASHfi] = ACTIONS(4803), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_RPAREN] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_RBRACK] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_BSLASHpart] = ACTIONS(4697), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddpart] = ACTIONS(4697), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4695), - [anon_sym_BSLASHchapter] = ACTIONS(4697), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddchap] = ACTIONS(4697), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsection] = ACTIONS(4697), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddsec] = ACTIONS(4697), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubsection] = ACTIONS(4697), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHparagraph] = ACTIONS(4697), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4695), - [anon_sym_BSLASHitem] = ACTIONS(4697), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4695), - [sym_word] = ACTIONS(4697), - [sym_placeholder] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_CARET] = ACTIONS(4697), - [anon_sym__] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4697), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4695), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4695), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4695), - [anon_sym_BSLASHbegin] = ACTIONS(4697), - [anon_sym_BSLASHusepackage] = ACTIONS(4697), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4697), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4697), - [anon_sym_BSLASHinclude] = ACTIONS(4697), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4697), - [anon_sym_BSLASHinput] = ACTIONS(4697), - [anon_sym_BSLASHsubfile] = ACTIONS(4697), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4697), - [anon_sym_BSLASHbibliography] = ACTIONS(4697), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4697), - [anon_sym_BSLASHincludesvg] = ACTIONS(4697), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4697), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4697), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4697), - [anon_sym_BSLASHimport] = ACTIONS(4697), - [anon_sym_BSLASHsubimport] = ACTIONS(4697), - [anon_sym_BSLASHinputfrom] = ACTIONS(4697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4697), - [anon_sym_BSLASHincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHcaption] = ACTIONS(4697), - [anon_sym_BSLASHcite] = ACTIONS(4697), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCite] = ACTIONS(4697), - [anon_sym_BSLASHnocite] = ACTIONS(4697), - [anon_sym_BSLASHcitet] = ACTIONS(4697), - [anon_sym_BSLASHcitep] = ACTIONS(4697), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteyear] = ACTIONS(4697), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitedate] = ACTIONS(4697), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteurl] = ACTIONS(4697), - [anon_sym_BSLASHfullcite] = ACTIONS(4697), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4697), - [anon_sym_BSLASHcitealt] = ACTIONS(4697), - [anon_sym_BSLASHcitealp] = ACTIONS(4697), - [anon_sym_BSLASHcitetext] = ACTIONS(4697), - [anon_sym_BSLASHparencite] = ACTIONS(4697), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHParencite] = ACTIONS(4697), - [anon_sym_BSLASHfootcite] = ACTIONS(4697), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4697), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4697), - [anon_sym_BSLASHtextcite] = ACTIONS(4697), - [anon_sym_BSLASHTextcite] = ACTIONS(4697), - [anon_sym_BSLASHsmartcite] = ACTIONS(4697), - [anon_sym_BSLASHSmartcite] = ACTIONS(4697), - [anon_sym_BSLASHsupercite] = ACTIONS(4697), - [anon_sym_BSLASHautocite] = ACTIONS(4697), - [anon_sym_BSLASHAutocite] = ACTIONS(4697), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHvolcite] = ACTIONS(4697), - [anon_sym_BSLASHVolcite] = ACTIONS(4697), - [anon_sym_BSLASHpvolcite] = ACTIONS(4697), - [anon_sym_BSLASHPvolcite] = ACTIONS(4697), - [anon_sym_BSLASHfvolcite] = ACTIONS(4697), - [anon_sym_BSLASHftvolcite] = ACTIONS(4697), - [anon_sym_BSLASHsvolcite] = ACTIONS(4697), - [anon_sym_BSLASHSvolcite] = ACTIONS(4697), - [anon_sym_BSLASHtvolcite] = ACTIONS(4697), - [anon_sym_BSLASHTvolcite] = ACTIONS(4697), - [anon_sym_BSLASHavolcite] = ACTIONS(4697), - [anon_sym_BSLASHAvolcite] = ACTIONS(4697), - [anon_sym_BSLASHnotecite] = ACTIONS(4697), - [anon_sym_BSLASHNotecite] = ACTIONS(4697), - [anon_sym_BSLASHpnotecite] = ACTIONS(4697), - [anon_sym_BSLASHPnotecite] = ACTIONS(4697), - [anon_sym_BSLASHfnotecite] = ACTIONS(4697), - [anon_sym_BSLASHlabel] = ACTIONS(4697), - [anon_sym_BSLASHref] = ACTIONS(4697), - [anon_sym_BSLASHeqref] = ACTIONS(4697), - [anon_sym_BSLASHvref] = ACTIONS(4697), - [anon_sym_BSLASHVref] = ACTIONS(4697), - [anon_sym_BSLASHautoref] = ACTIONS(4697), - [anon_sym_BSLASHpageref] = ACTIONS(4697), - [anon_sym_BSLASHcref] = ACTIONS(4697), - [anon_sym_BSLASHCref] = ACTIONS(4697), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnameCref] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHlabelcref] = ACTIONS(4697), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnewlabel] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4695), - [anon_sym_BSLASHdef] = ACTIONS(4697), - [anon_sym_BSLASHlet] = ACTIONS(4697), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4697), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4697), - [anon_sym_BSLASHgls] = ACTIONS(4697), - [anon_sym_BSLASHGls] = ACTIONS(4697), - [anon_sym_BSLASHGLS] = ACTIONS(4697), - [anon_sym_BSLASHglspl] = ACTIONS(4697), - [anon_sym_BSLASHGlspl] = ACTIONS(4697), - [anon_sym_BSLASHGLSpl] = ACTIONS(4697), - [anon_sym_BSLASHglsdisp] = ACTIONS(4697), - [anon_sym_BSLASHglslink] = ACTIONS(4697), - [anon_sym_BSLASHglstext] = ACTIONS(4697), - [anon_sym_BSLASHGlstext] = ACTIONS(4697), - [anon_sym_BSLASHGLStext] = ACTIONS(4697), - [anon_sym_BSLASHglsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4697), - [anon_sym_BSLASHglsplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSplural] = ACTIONS(4697), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHglsname] = ACTIONS(4697), - [anon_sym_BSLASHGlsname] = ACTIONS(4697), - [anon_sym_BSLASHGLSname] = ACTIONS(4697), - [anon_sym_BSLASHglssymbol] = ACTIONS(4697), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4697), - [anon_sym_BSLASHglsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4697), - [anon_sym_BSLASHglsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4697), - [anon_sym_BSLASHglsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4697), - [anon_sym_BSLASHglsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4697), - [anon_sym_BSLASHglsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4697), - [anon_sym_BSLASHnewacronym] = ACTIONS(4697), - [anon_sym_BSLASHacrshort] = ACTIONS(4697), - [anon_sym_BSLASHAcrshort] = ACTIONS(4697), - [anon_sym_BSLASHACRshort] = ACTIONS(4697), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4697), - [anon_sym_BSLASHacrlong] = ACTIONS(4697), - [anon_sym_BSLASHAcrlong] = ACTIONS(4697), - [anon_sym_BSLASHACRlong] = ACTIONS(4697), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4697), - [anon_sym_BSLASHacrfull] = ACTIONS(4697), - [anon_sym_BSLASHAcrfull] = ACTIONS(4697), - [anon_sym_BSLASHACRfull] = ACTIONS(4697), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4697), - [anon_sym_BSLASHacs] = ACTIONS(4697), - [anon_sym_BSLASHAcs] = ACTIONS(4697), - [anon_sym_BSLASHacsp] = ACTIONS(4697), - [anon_sym_BSLASHAcsp] = ACTIONS(4697), - [anon_sym_BSLASHacl] = ACTIONS(4697), - [anon_sym_BSLASHAcl] = ACTIONS(4697), - [anon_sym_BSLASHaclp] = ACTIONS(4697), - [anon_sym_BSLASHAclp] = ACTIONS(4697), - [anon_sym_BSLASHacf] = ACTIONS(4697), - [anon_sym_BSLASHAcf] = ACTIONS(4697), - [anon_sym_BSLASHacfp] = ACTIONS(4697), - [anon_sym_BSLASHAcfp] = ACTIONS(4697), - [anon_sym_BSLASHac] = ACTIONS(4697), - [anon_sym_BSLASHAc] = ACTIONS(4697), - [anon_sym_BSLASHacp] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4697), - [anon_sym_BSLASHcolor] = ACTIONS(4697), - [anon_sym_BSLASHcolorbox] = ACTIONS(4697), - [anon_sym_BSLASHtextcolor] = ACTIONS(4697), - [anon_sym_BSLASHpagecolor] = ACTIONS(4697), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4697), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4697), - [sym__trivia_raw_fi] = ACTIONS(4805), + [495] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), }, - [662] = { - [sym_block_comment] = STATE(1509), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(663), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACK] = ACTIONS(2635), - [anon_sym_COMMA] = ACTIONS(2635), - [anon_sym_EQ] = ACTIONS(2635), - [anon_sym_RBRACE] = ACTIONS(2635), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), + [496] = { + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(1947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1945), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1947), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(1945), + [sym_word] = ACTIONS(1947), + [sym_placeholder] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), + [anon_sym__] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), + [anon_sym_BSLASHbegin] = ACTIONS(1947), + [anon_sym_BSLASHusepackage] = ACTIONS(1947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), + [anon_sym_BSLASHinclude] = ACTIONS(1947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), + [anon_sym_BSLASHinput] = ACTIONS(1947), + [anon_sym_BSLASHsubfile] = ACTIONS(1947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), + [anon_sym_BSLASHbibliography] = ACTIONS(1947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), + [anon_sym_BSLASHincludesvg] = ACTIONS(1947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), + [anon_sym_BSLASHimport] = ACTIONS(1947), + [anon_sym_BSLASHsubimport] = ACTIONS(1947), + [anon_sym_BSLASHinputfrom] = ACTIONS(1947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), + [anon_sym_BSLASHincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHcaption] = ACTIONS(1947), + [anon_sym_BSLASHcite] = ACTIONS(1947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCite] = ACTIONS(1947), + [anon_sym_BSLASHnocite] = ACTIONS(1947), + [anon_sym_BSLASHcitet] = ACTIONS(1947), + [anon_sym_BSLASHcitep] = ACTIONS(1947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteauthor] = ACTIONS(1947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitetitle] = ACTIONS(1947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteyear] = ACTIONS(1947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitedate] = ACTIONS(1947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteurl] = ACTIONS(1947), + [anon_sym_BSLASHfullcite] = ACTIONS(1947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), + [anon_sym_BSLASHcitealt] = ACTIONS(1947), + [anon_sym_BSLASHcitealp] = ACTIONS(1947), + [anon_sym_BSLASHcitetext] = ACTIONS(1947), + [anon_sym_BSLASHparencite] = ACTIONS(1947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHParencite] = ACTIONS(1947), + [anon_sym_BSLASHfootcite] = ACTIONS(1947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), + [anon_sym_BSLASHtextcite] = ACTIONS(1947), + [anon_sym_BSLASHTextcite] = ACTIONS(1947), + [anon_sym_BSLASHsmartcite] = ACTIONS(1947), + [anon_sym_BSLASHSmartcite] = ACTIONS(1947), + [anon_sym_BSLASHsupercite] = ACTIONS(1947), + [anon_sym_BSLASHautocite] = ACTIONS(1947), + [anon_sym_BSLASHAutocite] = ACTIONS(1947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHvolcite] = ACTIONS(1947), + [anon_sym_BSLASHVolcite] = ACTIONS(1947), + [anon_sym_BSLASHpvolcite] = ACTIONS(1947), + [anon_sym_BSLASHPvolcite] = ACTIONS(1947), + [anon_sym_BSLASHfvolcite] = ACTIONS(1947), + [anon_sym_BSLASHftvolcite] = ACTIONS(1947), + [anon_sym_BSLASHsvolcite] = ACTIONS(1947), + [anon_sym_BSLASHSvolcite] = ACTIONS(1947), + [anon_sym_BSLASHtvolcite] = ACTIONS(1947), + [anon_sym_BSLASHTvolcite] = ACTIONS(1947), + [anon_sym_BSLASHavolcite] = ACTIONS(1947), + [anon_sym_BSLASHAvolcite] = ACTIONS(1947), + [anon_sym_BSLASHnotecite] = ACTIONS(1947), + [anon_sym_BSLASHNotecite] = ACTIONS(1947), + [anon_sym_BSLASHpnotecite] = ACTIONS(1947), + [anon_sym_BSLASHPnotecite] = ACTIONS(1947), + [anon_sym_BSLASHfnotecite] = ACTIONS(1947), + [anon_sym_BSLASHlabel] = ACTIONS(1947), + [anon_sym_BSLASHref] = ACTIONS(1947), + [anon_sym_BSLASHeqref] = ACTIONS(1947), + [anon_sym_BSLASHvref] = ACTIONS(1947), + [anon_sym_BSLASHVref] = ACTIONS(1947), + [anon_sym_BSLASHautoref] = ACTIONS(1947), + [anon_sym_BSLASHpageref] = ACTIONS(1947), + [anon_sym_BSLASHcref] = ACTIONS(1947), + [anon_sym_BSLASHCref] = ACTIONS(1947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnameCref] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHlabelcref] = ACTIONS(1947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCrefrange] = ACTIONS(1947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnewlabel] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), + [anon_sym_BSLASHdef] = ACTIONS(1947), + [anon_sym_BSLASHlet] = ACTIONS(1947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), + [anon_sym_BSLASHgls] = ACTIONS(1947), + [anon_sym_BSLASHGls] = ACTIONS(1947), + [anon_sym_BSLASHGLS] = ACTIONS(1947), + [anon_sym_BSLASHglspl] = ACTIONS(1947), + [anon_sym_BSLASHGlspl] = ACTIONS(1947), + [anon_sym_BSLASHGLSpl] = ACTIONS(1947), + [anon_sym_BSLASHglsdisp] = ACTIONS(1947), + [anon_sym_BSLASHglslink] = ACTIONS(1947), + [anon_sym_BSLASHglstext] = ACTIONS(1947), + [anon_sym_BSLASHGlstext] = ACTIONS(1947), + [anon_sym_BSLASHGLStext] = ACTIONS(1947), + [anon_sym_BSLASHglsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), + [anon_sym_BSLASHglsplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSplural] = ACTIONS(1947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHglsname] = ACTIONS(1947), + [anon_sym_BSLASHGlsname] = ACTIONS(1947), + [anon_sym_BSLASHGLSname] = ACTIONS(1947), + [anon_sym_BSLASHglssymbol] = ACTIONS(1947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), + [anon_sym_BSLASHglsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), + [anon_sym_BSLASHglsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), + [anon_sym_BSLASHglsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), + [anon_sym_BSLASHglsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), + [anon_sym_BSLASHglsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), + [anon_sym_BSLASHnewacronym] = ACTIONS(1947), + [anon_sym_BSLASHacrshort] = ACTIONS(1947), + [anon_sym_BSLASHAcrshort] = ACTIONS(1947), + [anon_sym_BSLASHACRshort] = ACTIONS(1947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), + [anon_sym_BSLASHacrlong] = ACTIONS(1947), + [anon_sym_BSLASHAcrlong] = ACTIONS(1947), + [anon_sym_BSLASHACRlong] = ACTIONS(1947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), + [anon_sym_BSLASHacrfull] = ACTIONS(1947), + [anon_sym_BSLASHAcrfull] = ACTIONS(1947), + [anon_sym_BSLASHACRfull] = ACTIONS(1947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), + [anon_sym_BSLASHacs] = ACTIONS(1947), + [anon_sym_BSLASHAcs] = ACTIONS(1947), + [anon_sym_BSLASHacsp] = ACTIONS(1947), + [anon_sym_BSLASHAcsp] = ACTIONS(1947), + [anon_sym_BSLASHacl] = ACTIONS(1947), + [anon_sym_BSLASHAcl] = ACTIONS(1947), + [anon_sym_BSLASHaclp] = ACTIONS(1947), + [anon_sym_BSLASHAclp] = ACTIONS(1947), + [anon_sym_BSLASHacf] = ACTIONS(1947), + [anon_sym_BSLASHAcf] = ACTIONS(1947), + [anon_sym_BSLASHacfp] = ACTIONS(1947), + [anon_sym_BSLASHAcfp] = ACTIONS(1947), + [anon_sym_BSLASHac] = ACTIONS(1947), + [anon_sym_BSLASHAc] = ACTIONS(1947), + [anon_sym_BSLASHacp] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), + [anon_sym_BSLASHcolor] = ACTIONS(1947), + [anon_sym_BSLASHcolorbox] = ACTIONS(1947), + [anon_sym_BSLASHtextcolor] = ACTIONS(1947), + [anon_sym_BSLASHpagecolor] = ACTIONS(1947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), + [anon_sym_BSLASHtext] = ACTIONS(1947), + [anon_sym_BSLASHintertext] = ACTIONS(1947), + [anon_sym_shortintertext] = ACTIONS(1947), }, - [663] = { - [sym_block_comment] = STATE(1509), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(663), - [sym_command_name] = ACTIONS(4807), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4810), - [anon_sym_RBRACK] = ACTIONS(2639), - [anon_sym_COMMA] = ACTIONS(2639), - [anon_sym_EQ] = ACTIONS(2639), - [anon_sym_RBRACE] = ACTIONS(2639), - [sym_word] = ACTIONS(4813), - [sym_placeholder] = ACTIONS(4816), - [anon_sym_PLUS] = ACTIONS(4819), - [anon_sym_DASH] = ACTIONS(4819), - [anon_sym_STAR] = ACTIONS(4819), - [anon_sym_SLASH] = ACTIONS(4819), - [anon_sym_CARET] = ACTIONS(4819), - [anon_sym__] = ACTIONS(4819), - [anon_sym_LT] = ACTIONS(4819), - [anon_sym_GT] = ACTIONS(4819), - [anon_sym_BANG] = ACTIONS(4819), - [anon_sym_PIPE] = ACTIONS(4819), - [anon_sym_COLON] = ACTIONS(4819), - [anon_sym_SQUOTE] = ACTIONS(4819), - [anon_sym_BSLASHusepackage] = ACTIONS(4822), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4822), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4825), - [anon_sym_BSLASHinclude] = ACTIONS(4828), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4828), - [anon_sym_BSLASHinput] = ACTIONS(4828), - [anon_sym_BSLASHsubfile] = ACTIONS(4828), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4831), - [anon_sym_BSLASHbibliography] = ACTIONS(4834), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4837), - [anon_sym_BSLASHincludesvg] = ACTIONS(4840), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4843), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4846), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4846), - [anon_sym_BSLASHimport] = ACTIONS(4849), - [anon_sym_BSLASHsubimport] = ACTIONS(4849), - [anon_sym_BSLASHinputfrom] = ACTIONS(4849), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4849), - [anon_sym_BSLASHincludefrom] = ACTIONS(4849), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4849), - [anon_sym_BSLASHcaption] = ACTIONS(4852), - [anon_sym_BSLASHcite] = ACTIONS(4855), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4858), - [anon_sym_BSLASHCite] = ACTIONS(4855), - [anon_sym_BSLASHnocite] = ACTIONS(4855), - [anon_sym_BSLASHcitet] = ACTIONS(4855), - [anon_sym_BSLASHcitep] = ACTIONS(4855), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4858), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4858), - [anon_sym_BSLASHciteauthor] = ACTIONS(4855), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4858), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4855), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4858), - [anon_sym_BSLASHcitetitle] = ACTIONS(4855), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4858), - [anon_sym_BSLASHciteyear] = ACTIONS(4855), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4858), - [anon_sym_BSLASHcitedate] = ACTIONS(4855), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4858), - [anon_sym_BSLASHciteurl] = ACTIONS(4855), - [anon_sym_BSLASHfullcite] = ACTIONS(4855), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4855), - [anon_sym_BSLASHcitealt] = ACTIONS(4855), - [anon_sym_BSLASHcitealp] = ACTIONS(4855), - [anon_sym_BSLASHcitetext] = ACTIONS(4855), - [anon_sym_BSLASHparencite] = ACTIONS(4855), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4858), - [anon_sym_BSLASHParencite] = ACTIONS(4855), - [anon_sym_BSLASHfootcite] = ACTIONS(4855), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4855), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4855), - [anon_sym_BSLASHtextcite] = ACTIONS(4855), - [anon_sym_BSLASHTextcite] = ACTIONS(4855), - [anon_sym_BSLASHsmartcite] = ACTIONS(4855), - [anon_sym_BSLASHSmartcite] = ACTIONS(4855), - [anon_sym_BSLASHsupercite] = ACTIONS(4855), - [anon_sym_BSLASHautocite] = ACTIONS(4855), - [anon_sym_BSLASHAutocite] = ACTIONS(4855), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4858), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4858), - [anon_sym_BSLASHvolcite] = ACTIONS(4855), - [anon_sym_BSLASHVolcite] = ACTIONS(4855), - [anon_sym_BSLASHpvolcite] = ACTIONS(4855), - [anon_sym_BSLASHPvolcite] = ACTIONS(4855), - [anon_sym_BSLASHfvolcite] = ACTIONS(4855), - [anon_sym_BSLASHftvolcite] = ACTIONS(4855), - [anon_sym_BSLASHsvolcite] = ACTIONS(4855), - [anon_sym_BSLASHSvolcite] = ACTIONS(4855), - [anon_sym_BSLASHtvolcite] = ACTIONS(4855), - [anon_sym_BSLASHTvolcite] = ACTIONS(4855), - [anon_sym_BSLASHavolcite] = ACTIONS(4855), - [anon_sym_BSLASHAvolcite] = ACTIONS(4855), - [anon_sym_BSLASHnotecite] = ACTIONS(4855), - [anon_sym_BSLASHNotecite] = ACTIONS(4855), - [anon_sym_BSLASHpnotecite] = ACTIONS(4855), - [anon_sym_BSLASHPnotecite] = ACTIONS(4855), - [anon_sym_BSLASHfnotecite] = ACTIONS(4855), - [anon_sym_BSLASHlabel] = ACTIONS(4861), - [anon_sym_BSLASHref] = ACTIONS(4864), - [anon_sym_BSLASHeqref] = ACTIONS(4864), - [anon_sym_BSLASHvref] = ACTIONS(4864), - [anon_sym_BSLASHVref] = ACTIONS(4864), - [anon_sym_BSLASHautoref] = ACTIONS(4864), - [anon_sym_BSLASHpageref] = ACTIONS(4864), - [anon_sym_BSLASHcref] = ACTIONS(4864), - [anon_sym_BSLASHCref] = ACTIONS(4864), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4867), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4867), - [anon_sym_BSLASHnamecref] = ACTIONS(4864), - [anon_sym_BSLASHnameCref] = ACTIONS(4864), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4864), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4864), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4864), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4864), - [anon_sym_BSLASHlabelcref] = ACTIONS(4864), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4864), - [anon_sym_BSLASHcrefrange] = ACTIONS(4870), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4873), - [anon_sym_BSLASHCrefrange] = ACTIONS(4870), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4873), - [anon_sym_BSLASHnewlabel] = ACTIONS(4876), - [anon_sym_BSLASHnewcommand] = ACTIONS(4879), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4882), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4882), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4882), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4882), - [anon_sym_BSLASHdef] = ACTIONS(4885), - [anon_sym_BSLASHlet] = ACTIONS(4888), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4894), - [anon_sym_BSLASHgls] = ACTIONS(4897), - [anon_sym_BSLASHGls] = ACTIONS(4897), - [anon_sym_BSLASHGLS] = ACTIONS(4897), - [anon_sym_BSLASHglspl] = ACTIONS(4897), - [anon_sym_BSLASHGlspl] = ACTIONS(4897), - [anon_sym_BSLASHGLSpl] = ACTIONS(4897), - [anon_sym_BSLASHglsdisp] = ACTIONS(4897), - [anon_sym_BSLASHglslink] = ACTIONS(4897), - [anon_sym_BSLASHglstext] = ACTIONS(4897), - [anon_sym_BSLASHGlstext] = ACTIONS(4897), - [anon_sym_BSLASHGLStext] = ACTIONS(4897), - [anon_sym_BSLASHglsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), - [anon_sym_BSLASHglsplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSplural] = ACTIONS(4897), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), - [anon_sym_BSLASHglsname] = ACTIONS(4897), - [anon_sym_BSLASHGlsname] = ACTIONS(4897), - [anon_sym_BSLASHGLSname] = ACTIONS(4897), - [anon_sym_BSLASHglssymbol] = ACTIONS(4897), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), - [anon_sym_BSLASHglsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), - [anon_sym_BSLASHglsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), - [anon_sym_BSLASHglsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), - [anon_sym_BSLASHglsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), - [anon_sym_BSLASHglsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), - [anon_sym_BSLASHnewacronym] = ACTIONS(4900), - [anon_sym_BSLASHacrshort] = ACTIONS(4903), - [anon_sym_BSLASHAcrshort] = ACTIONS(4903), - [anon_sym_BSLASHACRshort] = ACTIONS(4903), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4903), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4903), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4903), - [anon_sym_BSLASHacrlong] = ACTIONS(4903), - [anon_sym_BSLASHAcrlong] = ACTIONS(4903), - [anon_sym_BSLASHACRlong] = ACTIONS(4903), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4903), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4903), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4903), - [anon_sym_BSLASHacrfull] = ACTIONS(4903), - [anon_sym_BSLASHAcrfull] = ACTIONS(4903), - [anon_sym_BSLASHACRfull] = ACTIONS(4903), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4903), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4903), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4903), - [anon_sym_BSLASHacs] = ACTIONS(4903), - [anon_sym_BSLASHAcs] = ACTIONS(4903), - [anon_sym_BSLASHacsp] = ACTIONS(4903), - [anon_sym_BSLASHAcsp] = ACTIONS(4903), - [anon_sym_BSLASHacl] = ACTIONS(4903), - [anon_sym_BSLASHAcl] = ACTIONS(4903), - [anon_sym_BSLASHaclp] = ACTIONS(4903), - [anon_sym_BSLASHAclp] = ACTIONS(4903), - [anon_sym_BSLASHacf] = ACTIONS(4903), - [anon_sym_BSLASHAcf] = ACTIONS(4903), - [anon_sym_BSLASHacfp] = ACTIONS(4903), - [anon_sym_BSLASHAcfp] = ACTIONS(4903), - [anon_sym_BSLASHac] = ACTIONS(4903), - [anon_sym_BSLASHAc] = ACTIONS(4903), - [anon_sym_BSLASHacp] = ACTIONS(4903), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4903), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4903), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4903), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4903), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4903), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4903), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4903), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4903), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4903), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4903), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4906), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4906), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4912), - [anon_sym_BSLASHcolor] = ACTIONS(4915), - [anon_sym_BSLASHcolorbox] = ACTIONS(4915), - [anon_sym_BSLASHtextcolor] = ACTIONS(4915), - [anon_sym_BSLASHpagecolor] = ACTIONS(4915), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4918), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4918), + [497] = { + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(518), + [aux_sym__section_repeat5] = STATE(518), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), }, - [664] = { - [ts_builtin_sym_end] = ACTIONS(4921), - [sym_command_name] = ACTIONS(4923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4923), - [anon_sym_BSLASHfi] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_RPAREN] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_RBRACK] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4921), - [anon_sym_EQ] = ACTIONS(4921), - [anon_sym_BSLASHpart] = ACTIONS(4923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddpart] = ACTIONS(4923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4921), - [anon_sym_BSLASHchapter] = ACTIONS(4923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddchap] = ACTIONS(4923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsection] = ACTIONS(4923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddsec] = ACTIONS(4923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubsection] = ACTIONS(4923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHparagraph] = ACTIONS(4923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4921), - [anon_sym_BSLASHitem] = ACTIONS(4923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4921), - [anon_sym_LBRACE] = ACTIONS(4921), - [anon_sym_RBRACE] = ACTIONS(4921), - [sym_word] = ACTIONS(4923), - [sym_placeholder] = ACTIONS(4921), - [anon_sym_PLUS] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_STAR] = ACTIONS(4923), - [anon_sym_SLASH] = ACTIONS(4923), - [anon_sym_CARET] = ACTIONS(4923), - [anon_sym__] = ACTIONS(4923), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_BANG] = ACTIONS(4923), - [anon_sym_PIPE] = ACTIONS(4923), - [anon_sym_COLON] = ACTIONS(4923), - [anon_sym_SQUOTE] = ACTIONS(4923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4921), - [anon_sym_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4921), - [anon_sym_BSLASHbegin] = ACTIONS(4923), - [anon_sym_BSLASHusepackage] = ACTIONS(4923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4923), - [anon_sym_BSLASHinclude] = ACTIONS(4923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4923), - [anon_sym_BSLASHinput] = ACTIONS(4923), - [anon_sym_BSLASHsubfile] = ACTIONS(4923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4923), - [anon_sym_BSLASHbibliography] = ACTIONS(4923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4923), - [anon_sym_BSLASHincludesvg] = ACTIONS(4923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4923), - [anon_sym_BSLASHimport] = ACTIONS(4923), - [anon_sym_BSLASHsubimport] = ACTIONS(4923), - [anon_sym_BSLASHinputfrom] = ACTIONS(4923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4923), - [anon_sym_BSLASHincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHcaption] = ACTIONS(4923), - [anon_sym_BSLASHcite] = ACTIONS(4923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCite] = ACTIONS(4923), - [anon_sym_BSLASHnocite] = ACTIONS(4923), - [anon_sym_BSLASHcitet] = ACTIONS(4923), - [anon_sym_BSLASHcitep] = ACTIONS(4923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteyear] = ACTIONS(4923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitedate] = ACTIONS(4923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteurl] = ACTIONS(4923), - [anon_sym_BSLASHfullcite] = ACTIONS(4923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4923), - [anon_sym_BSLASHcitealt] = ACTIONS(4923), - [anon_sym_BSLASHcitealp] = ACTIONS(4923), - [anon_sym_BSLASHcitetext] = ACTIONS(4923), - [anon_sym_BSLASHparencite] = ACTIONS(4923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHParencite] = ACTIONS(4923), - [anon_sym_BSLASHfootcite] = ACTIONS(4923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4923), - [anon_sym_BSLASHtextcite] = ACTIONS(4923), - [anon_sym_BSLASHTextcite] = ACTIONS(4923), - [anon_sym_BSLASHsmartcite] = ACTIONS(4923), - [anon_sym_BSLASHSmartcite] = ACTIONS(4923), - [anon_sym_BSLASHsupercite] = ACTIONS(4923), - [anon_sym_BSLASHautocite] = ACTIONS(4923), - [anon_sym_BSLASHAutocite] = ACTIONS(4923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHvolcite] = ACTIONS(4923), - [anon_sym_BSLASHVolcite] = ACTIONS(4923), - [anon_sym_BSLASHpvolcite] = ACTIONS(4923), - [anon_sym_BSLASHPvolcite] = ACTIONS(4923), - [anon_sym_BSLASHfvolcite] = ACTIONS(4923), - [anon_sym_BSLASHftvolcite] = ACTIONS(4923), - [anon_sym_BSLASHsvolcite] = ACTIONS(4923), - [anon_sym_BSLASHSvolcite] = ACTIONS(4923), - [anon_sym_BSLASHtvolcite] = ACTIONS(4923), - [anon_sym_BSLASHTvolcite] = ACTIONS(4923), - [anon_sym_BSLASHavolcite] = ACTIONS(4923), - [anon_sym_BSLASHAvolcite] = ACTIONS(4923), - [anon_sym_BSLASHnotecite] = ACTIONS(4923), - [anon_sym_BSLASHNotecite] = ACTIONS(4923), - [anon_sym_BSLASHpnotecite] = ACTIONS(4923), - [anon_sym_BSLASHPnotecite] = ACTIONS(4923), - [anon_sym_BSLASHfnotecite] = ACTIONS(4923), - [anon_sym_BSLASHlabel] = ACTIONS(4923), - [anon_sym_BSLASHref] = ACTIONS(4923), - [anon_sym_BSLASHeqref] = ACTIONS(4923), - [anon_sym_BSLASHvref] = ACTIONS(4923), - [anon_sym_BSLASHVref] = ACTIONS(4923), - [anon_sym_BSLASHautoref] = ACTIONS(4923), - [anon_sym_BSLASHpageref] = ACTIONS(4923), - [anon_sym_BSLASHcref] = ACTIONS(4923), - [anon_sym_BSLASHCref] = ACTIONS(4923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnameCref] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHlabelcref] = ACTIONS(4923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnewlabel] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4921), - [anon_sym_BSLASHdef] = ACTIONS(4923), - [anon_sym_BSLASHlet] = ACTIONS(4923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4923), - [anon_sym_BSLASHgls] = ACTIONS(4923), - [anon_sym_BSLASHGls] = ACTIONS(4923), - [anon_sym_BSLASHGLS] = ACTIONS(4923), - [anon_sym_BSLASHglspl] = ACTIONS(4923), - [anon_sym_BSLASHGlspl] = ACTIONS(4923), - [anon_sym_BSLASHGLSpl] = ACTIONS(4923), - [anon_sym_BSLASHglsdisp] = ACTIONS(4923), - [anon_sym_BSLASHglslink] = ACTIONS(4923), - [anon_sym_BSLASHglstext] = ACTIONS(4923), - [anon_sym_BSLASHGlstext] = ACTIONS(4923), - [anon_sym_BSLASHGLStext] = ACTIONS(4923), - [anon_sym_BSLASHglsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4923), - [anon_sym_BSLASHglsplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSplural] = ACTIONS(4923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHglsname] = ACTIONS(4923), - [anon_sym_BSLASHGlsname] = ACTIONS(4923), - [anon_sym_BSLASHGLSname] = ACTIONS(4923), - [anon_sym_BSLASHglssymbol] = ACTIONS(4923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4923), - [anon_sym_BSLASHglsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4923), - [anon_sym_BSLASHglsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4923), - [anon_sym_BSLASHglsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4923), - [anon_sym_BSLASHglsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4923), - [anon_sym_BSLASHglsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4923), - [anon_sym_BSLASHnewacronym] = ACTIONS(4923), - [anon_sym_BSLASHacrshort] = ACTIONS(4923), - [anon_sym_BSLASHAcrshort] = ACTIONS(4923), - [anon_sym_BSLASHACRshort] = ACTIONS(4923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4923), - [anon_sym_BSLASHacrlong] = ACTIONS(4923), - [anon_sym_BSLASHAcrlong] = ACTIONS(4923), - [anon_sym_BSLASHACRlong] = ACTIONS(4923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4923), - [anon_sym_BSLASHacrfull] = ACTIONS(4923), - [anon_sym_BSLASHAcrfull] = ACTIONS(4923), - [anon_sym_BSLASHACRfull] = ACTIONS(4923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4923), - [anon_sym_BSLASHacs] = ACTIONS(4923), - [anon_sym_BSLASHAcs] = ACTIONS(4923), - [anon_sym_BSLASHacsp] = ACTIONS(4923), - [anon_sym_BSLASHAcsp] = ACTIONS(4923), - [anon_sym_BSLASHacl] = ACTIONS(4923), - [anon_sym_BSLASHAcl] = ACTIONS(4923), - [anon_sym_BSLASHaclp] = ACTIONS(4923), - [anon_sym_BSLASHAclp] = ACTIONS(4923), - [anon_sym_BSLASHacf] = ACTIONS(4923), - [anon_sym_BSLASHAcf] = ACTIONS(4923), - [anon_sym_BSLASHacfp] = ACTIONS(4923), - [anon_sym_BSLASHAcfp] = ACTIONS(4923), - [anon_sym_BSLASHac] = ACTIONS(4923), - [anon_sym_BSLASHAc] = ACTIONS(4923), - [anon_sym_BSLASHacp] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4923), - [anon_sym_BSLASHcolor] = ACTIONS(4923), - [anon_sym_BSLASHcolorbox] = ACTIONS(4923), - [anon_sym_BSLASHtextcolor] = ACTIONS(4923), - [anon_sym_BSLASHpagecolor] = ACTIONS(4923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4923), + [498] = { + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(519), + [aux_sym__section_repeat6] = STATE(519), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), }, - [665] = { - [sym_curly_group] = STATE(679), - [sym_brack_group_text] = STATE(1873), - [sym_command_name] = ACTIONS(4587), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4585), - [anon_sym_RPAREN] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4585), - [anon_sym_COMMA] = ACTIONS(4585), - [anon_sym_EQ] = ACTIONS(4585), - [anon_sym_BSLASHpart] = ACTIONS(4587), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddpart] = ACTIONS(4587), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4585), - [anon_sym_BSLASHchapter] = ACTIONS(4587), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddchap] = ACTIONS(4587), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsection] = ACTIONS(4587), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddsec] = ACTIONS(4587), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubsection] = ACTIONS(4587), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4587), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHparagraph] = ACTIONS(4587), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4587), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4585), - [anon_sym_BSLASHitem] = ACTIONS(4587), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4585), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(4587), - [sym_placeholder] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_CARET] = ACTIONS(4587), - [anon_sym__] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4585), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4585), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4585), - [anon_sym_BSLASHbegin] = ACTIONS(4587), - [anon_sym_BSLASHusepackage] = ACTIONS(4587), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4587), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4587), - [anon_sym_BSLASHinclude] = ACTIONS(4587), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4587), - [anon_sym_BSLASHinput] = ACTIONS(4587), - [anon_sym_BSLASHsubfile] = ACTIONS(4587), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4587), - [anon_sym_BSLASHbibliography] = ACTIONS(4587), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4587), - [anon_sym_BSLASHincludesvg] = ACTIONS(4587), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4587), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4587), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4587), - [anon_sym_BSLASHimport] = ACTIONS(4587), - [anon_sym_BSLASHsubimport] = ACTIONS(4587), - [anon_sym_BSLASHinputfrom] = ACTIONS(4587), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4587), - [anon_sym_BSLASHincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHcaption] = ACTIONS(4587), - [anon_sym_BSLASHcite] = ACTIONS(4587), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCite] = ACTIONS(4587), - [anon_sym_BSLASHnocite] = ACTIONS(4587), - [anon_sym_BSLASHcitet] = ACTIONS(4587), - [anon_sym_BSLASHcitep] = ACTIONS(4587), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteauthor] = ACTIONS(4587), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4587), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitetitle] = ACTIONS(4587), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteyear] = ACTIONS(4587), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitedate] = ACTIONS(4587), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteurl] = ACTIONS(4587), - [anon_sym_BSLASHfullcite] = ACTIONS(4587), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4587), - [anon_sym_BSLASHcitealt] = ACTIONS(4587), - [anon_sym_BSLASHcitealp] = ACTIONS(4587), - [anon_sym_BSLASHcitetext] = ACTIONS(4587), - [anon_sym_BSLASHparencite] = ACTIONS(4587), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHParencite] = ACTIONS(4587), - [anon_sym_BSLASHfootcite] = ACTIONS(4587), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4587), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4587), - [anon_sym_BSLASHtextcite] = ACTIONS(4587), - [anon_sym_BSLASHTextcite] = ACTIONS(4587), - [anon_sym_BSLASHsmartcite] = ACTIONS(4587), - [anon_sym_BSLASHSmartcite] = ACTIONS(4587), - [anon_sym_BSLASHsupercite] = ACTIONS(4587), - [anon_sym_BSLASHautocite] = ACTIONS(4587), - [anon_sym_BSLASHAutocite] = ACTIONS(4587), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHvolcite] = ACTIONS(4587), - [anon_sym_BSLASHVolcite] = ACTIONS(4587), - [anon_sym_BSLASHpvolcite] = ACTIONS(4587), - [anon_sym_BSLASHPvolcite] = ACTIONS(4587), - [anon_sym_BSLASHfvolcite] = ACTIONS(4587), - [anon_sym_BSLASHftvolcite] = ACTIONS(4587), - [anon_sym_BSLASHsvolcite] = ACTIONS(4587), - [anon_sym_BSLASHSvolcite] = ACTIONS(4587), - [anon_sym_BSLASHtvolcite] = ACTIONS(4587), - [anon_sym_BSLASHTvolcite] = ACTIONS(4587), - [anon_sym_BSLASHavolcite] = ACTIONS(4587), - [anon_sym_BSLASHAvolcite] = ACTIONS(4587), - [anon_sym_BSLASHnotecite] = ACTIONS(4587), - [anon_sym_BSLASHNotecite] = ACTIONS(4587), - [anon_sym_BSLASHpnotecite] = ACTIONS(4587), - [anon_sym_BSLASHPnotecite] = ACTIONS(4587), - [anon_sym_BSLASHfnotecite] = ACTIONS(4587), - [anon_sym_BSLASHlabel] = ACTIONS(4587), - [anon_sym_BSLASHref] = ACTIONS(4587), - [anon_sym_BSLASHeqref] = ACTIONS(4587), - [anon_sym_BSLASHvref] = ACTIONS(4587), - [anon_sym_BSLASHVref] = ACTIONS(4587), - [anon_sym_BSLASHautoref] = ACTIONS(4587), - [anon_sym_BSLASHpageref] = ACTIONS(4587), - [anon_sym_BSLASHcref] = ACTIONS(4587), - [anon_sym_BSLASHCref] = ACTIONS(4587), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnameCref] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHlabelcref] = ACTIONS(4587), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCrefrange] = ACTIONS(4587), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnewlabel] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4587), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4587), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4587), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4585), - [anon_sym_BSLASHdef] = ACTIONS(4587), - [anon_sym_BSLASHlet] = ACTIONS(4587), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4587), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4587), - [anon_sym_BSLASHGls] = ACTIONS(4587), - [anon_sym_BSLASHGLS] = ACTIONS(4587), - [anon_sym_BSLASHglspl] = ACTIONS(4587), - [anon_sym_BSLASHGlspl] = ACTIONS(4587), - [anon_sym_BSLASHGLSpl] = ACTIONS(4587), - [anon_sym_BSLASHglsdisp] = ACTIONS(4587), - [anon_sym_BSLASHglslink] = ACTIONS(4587), - [anon_sym_BSLASHglstext] = ACTIONS(4587), - [anon_sym_BSLASHGlstext] = ACTIONS(4587), - [anon_sym_BSLASHGLStext] = ACTIONS(4587), - [anon_sym_BSLASHglsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4587), - [anon_sym_BSLASHglsplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSplural] = ACTIONS(4587), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHglsname] = ACTIONS(4587), - [anon_sym_BSLASHGlsname] = ACTIONS(4587), - [anon_sym_BSLASHGLSname] = ACTIONS(4587), - [anon_sym_BSLASHglssymbol] = ACTIONS(4587), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4587), - [anon_sym_BSLASHglsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4587), - [anon_sym_BSLASHglsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4587), - [anon_sym_BSLASHglsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4587), - [anon_sym_BSLASHglsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4587), - [anon_sym_BSLASHglsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4587), - [anon_sym_BSLASHnewacronym] = ACTIONS(4587), - [anon_sym_BSLASHacrshort] = ACTIONS(4587), - [anon_sym_BSLASHAcrshort] = ACTIONS(4587), - [anon_sym_BSLASHACRshort] = ACTIONS(4587), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4587), - [anon_sym_BSLASHacrlong] = ACTIONS(4587), - [anon_sym_BSLASHAcrlong] = ACTIONS(4587), - [anon_sym_BSLASHACRlong] = ACTIONS(4587), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4587), - [anon_sym_BSLASHacrfull] = ACTIONS(4587), - [anon_sym_BSLASHAcrfull] = ACTIONS(4587), - [anon_sym_BSLASHACRfull] = ACTIONS(4587), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4587), - [anon_sym_BSLASHacs] = ACTIONS(4587), - [anon_sym_BSLASHAcs] = ACTIONS(4587), - [anon_sym_BSLASHacsp] = ACTIONS(4587), - [anon_sym_BSLASHAcsp] = ACTIONS(4587), - [anon_sym_BSLASHacl] = ACTIONS(4587), - [anon_sym_BSLASHAcl] = ACTIONS(4587), - [anon_sym_BSLASHaclp] = ACTIONS(4587), - [anon_sym_BSLASHAclp] = ACTIONS(4587), - [anon_sym_BSLASHacf] = ACTIONS(4587), - [anon_sym_BSLASHAcf] = ACTIONS(4587), - [anon_sym_BSLASHacfp] = ACTIONS(4587), - [anon_sym_BSLASHAcfp] = ACTIONS(4587), - [anon_sym_BSLASHac] = ACTIONS(4587), - [anon_sym_BSLASHAc] = ACTIONS(4587), - [anon_sym_BSLASHacp] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4587), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4587), - [anon_sym_BSLASHcolor] = ACTIONS(4587), - [anon_sym_BSLASHcolorbox] = ACTIONS(4587), - [anon_sym_BSLASHtextcolor] = ACTIONS(4587), - [anon_sym_BSLASHpagecolor] = ACTIONS(4587), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4587), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4587), + [499] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), }, - [666] = { - [sym_brack_group_text] = STATE(806), - [ts_builtin_sym_end] = ACTIONS(4927), - [sym_command_name] = ACTIONS(4929), + [500] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [501] = { + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(1947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1945), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(1947), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [sym_word] = ACTIONS(1947), + [sym_placeholder] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), + [anon_sym__] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), + [anon_sym_BSLASHbegin] = ACTIONS(1947), + [anon_sym_BSLASHusepackage] = ACTIONS(1947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), + [anon_sym_BSLASHinclude] = ACTIONS(1947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), + [anon_sym_BSLASHinput] = ACTIONS(1947), + [anon_sym_BSLASHsubfile] = ACTIONS(1947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), + [anon_sym_BSLASHbibliography] = ACTIONS(1947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), + [anon_sym_BSLASHincludesvg] = ACTIONS(1947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), + [anon_sym_BSLASHimport] = ACTIONS(1947), + [anon_sym_BSLASHsubimport] = ACTIONS(1947), + [anon_sym_BSLASHinputfrom] = ACTIONS(1947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), + [anon_sym_BSLASHincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHcaption] = ACTIONS(1947), + [anon_sym_BSLASHcite] = ACTIONS(1947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCite] = ACTIONS(1947), + [anon_sym_BSLASHnocite] = ACTIONS(1947), + [anon_sym_BSLASHcitet] = ACTIONS(1947), + [anon_sym_BSLASHcitep] = ACTIONS(1947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteauthor] = ACTIONS(1947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitetitle] = ACTIONS(1947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteyear] = ACTIONS(1947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitedate] = ACTIONS(1947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteurl] = ACTIONS(1947), + [anon_sym_BSLASHfullcite] = ACTIONS(1947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), + [anon_sym_BSLASHcitealt] = ACTIONS(1947), + [anon_sym_BSLASHcitealp] = ACTIONS(1947), + [anon_sym_BSLASHcitetext] = ACTIONS(1947), + [anon_sym_BSLASHparencite] = ACTIONS(1947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHParencite] = ACTIONS(1947), + [anon_sym_BSLASHfootcite] = ACTIONS(1947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), + [anon_sym_BSLASHtextcite] = ACTIONS(1947), + [anon_sym_BSLASHTextcite] = ACTIONS(1947), + [anon_sym_BSLASHsmartcite] = ACTIONS(1947), + [anon_sym_BSLASHSmartcite] = ACTIONS(1947), + [anon_sym_BSLASHsupercite] = ACTIONS(1947), + [anon_sym_BSLASHautocite] = ACTIONS(1947), + [anon_sym_BSLASHAutocite] = ACTIONS(1947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHvolcite] = ACTIONS(1947), + [anon_sym_BSLASHVolcite] = ACTIONS(1947), + [anon_sym_BSLASHpvolcite] = ACTIONS(1947), + [anon_sym_BSLASHPvolcite] = ACTIONS(1947), + [anon_sym_BSLASHfvolcite] = ACTIONS(1947), + [anon_sym_BSLASHftvolcite] = ACTIONS(1947), + [anon_sym_BSLASHsvolcite] = ACTIONS(1947), + [anon_sym_BSLASHSvolcite] = ACTIONS(1947), + [anon_sym_BSLASHtvolcite] = ACTIONS(1947), + [anon_sym_BSLASHTvolcite] = ACTIONS(1947), + [anon_sym_BSLASHavolcite] = ACTIONS(1947), + [anon_sym_BSLASHAvolcite] = ACTIONS(1947), + [anon_sym_BSLASHnotecite] = ACTIONS(1947), + [anon_sym_BSLASHNotecite] = ACTIONS(1947), + [anon_sym_BSLASHpnotecite] = ACTIONS(1947), + [anon_sym_BSLASHPnotecite] = ACTIONS(1947), + [anon_sym_BSLASHfnotecite] = ACTIONS(1947), + [anon_sym_BSLASHlabel] = ACTIONS(1947), + [anon_sym_BSLASHref] = ACTIONS(1947), + [anon_sym_BSLASHeqref] = ACTIONS(1947), + [anon_sym_BSLASHvref] = ACTIONS(1947), + [anon_sym_BSLASHVref] = ACTIONS(1947), + [anon_sym_BSLASHautoref] = ACTIONS(1947), + [anon_sym_BSLASHpageref] = ACTIONS(1947), + [anon_sym_BSLASHcref] = ACTIONS(1947), + [anon_sym_BSLASHCref] = ACTIONS(1947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnameCref] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHlabelcref] = ACTIONS(1947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCrefrange] = ACTIONS(1947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnewlabel] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), + [anon_sym_BSLASHdef] = ACTIONS(1947), + [anon_sym_BSLASHlet] = ACTIONS(1947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), + [anon_sym_BSLASHgls] = ACTIONS(1947), + [anon_sym_BSLASHGls] = ACTIONS(1947), + [anon_sym_BSLASHGLS] = ACTIONS(1947), + [anon_sym_BSLASHglspl] = ACTIONS(1947), + [anon_sym_BSLASHGlspl] = ACTIONS(1947), + [anon_sym_BSLASHGLSpl] = ACTIONS(1947), + [anon_sym_BSLASHglsdisp] = ACTIONS(1947), + [anon_sym_BSLASHglslink] = ACTIONS(1947), + [anon_sym_BSLASHglstext] = ACTIONS(1947), + [anon_sym_BSLASHGlstext] = ACTIONS(1947), + [anon_sym_BSLASHGLStext] = ACTIONS(1947), + [anon_sym_BSLASHglsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), + [anon_sym_BSLASHglsplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSplural] = ACTIONS(1947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHglsname] = ACTIONS(1947), + [anon_sym_BSLASHGlsname] = ACTIONS(1947), + [anon_sym_BSLASHGLSname] = ACTIONS(1947), + [anon_sym_BSLASHglssymbol] = ACTIONS(1947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), + [anon_sym_BSLASHglsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), + [anon_sym_BSLASHglsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), + [anon_sym_BSLASHglsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), + [anon_sym_BSLASHglsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), + [anon_sym_BSLASHglsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), + [anon_sym_BSLASHnewacronym] = ACTIONS(1947), + [anon_sym_BSLASHacrshort] = ACTIONS(1947), + [anon_sym_BSLASHAcrshort] = ACTIONS(1947), + [anon_sym_BSLASHACRshort] = ACTIONS(1947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), + [anon_sym_BSLASHacrlong] = ACTIONS(1947), + [anon_sym_BSLASHAcrlong] = ACTIONS(1947), + [anon_sym_BSLASHACRlong] = ACTIONS(1947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), + [anon_sym_BSLASHacrfull] = ACTIONS(1947), + [anon_sym_BSLASHAcrfull] = ACTIONS(1947), + [anon_sym_BSLASHACRfull] = ACTIONS(1947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), + [anon_sym_BSLASHacs] = ACTIONS(1947), + [anon_sym_BSLASHAcs] = ACTIONS(1947), + [anon_sym_BSLASHacsp] = ACTIONS(1947), + [anon_sym_BSLASHAcsp] = ACTIONS(1947), + [anon_sym_BSLASHacl] = ACTIONS(1947), + [anon_sym_BSLASHAcl] = ACTIONS(1947), + [anon_sym_BSLASHaclp] = ACTIONS(1947), + [anon_sym_BSLASHAclp] = ACTIONS(1947), + [anon_sym_BSLASHacf] = ACTIONS(1947), + [anon_sym_BSLASHAcf] = ACTIONS(1947), + [anon_sym_BSLASHacfp] = ACTIONS(1947), + [anon_sym_BSLASHAcfp] = ACTIONS(1947), + [anon_sym_BSLASHac] = ACTIONS(1947), + [anon_sym_BSLASHAc] = ACTIONS(1947), + [anon_sym_BSLASHacp] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), + [anon_sym_BSLASHcolor] = ACTIONS(1947), + [anon_sym_BSLASHcolorbox] = ACTIONS(1947), + [anon_sym_BSLASHtextcolor] = ACTIONS(1947), + [anon_sym_BSLASHpagecolor] = ACTIONS(1947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), + [anon_sym_BSLASHtext] = ACTIONS(1947), + [anon_sym_BSLASHintertext] = ACTIONS(1947), + [anon_sym_shortintertext] = ACTIONS(1947), + }, + [502] = { + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(519), + [aux_sym__section_repeat6] = STATE(519), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHitem] = ACTIONS(1923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), + }, + [503] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(1923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(1923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), + }, + [504] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(1923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), + }, + [505] = { + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(1923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), + }, + [506] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(1947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1945), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(1947), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [sym_word] = ACTIONS(1947), + [sym_placeholder] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), + [anon_sym__] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), + [anon_sym_BSLASHbegin] = ACTIONS(1947), + [anon_sym_BSLASHusepackage] = ACTIONS(1947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), + [anon_sym_BSLASHinclude] = ACTIONS(1947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), + [anon_sym_BSLASHinput] = ACTIONS(1947), + [anon_sym_BSLASHsubfile] = ACTIONS(1947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), + [anon_sym_BSLASHbibliography] = ACTIONS(1947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), + [anon_sym_BSLASHincludesvg] = ACTIONS(1947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), + [anon_sym_BSLASHimport] = ACTIONS(1947), + [anon_sym_BSLASHsubimport] = ACTIONS(1947), + [anon_sym_BSLASHinputfrom] = ACTIONS(1947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), + [anon_sym_BSLASHincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHcaption] = ACTIONS(1947), + [anon_sym_BSLASHcite] = ACTIONS(1947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCite] = ACTIONS(1947), + [anon_sym_BSLASHnocite] = ACTIONS(1947), + [anon_sym_BSLASHcitet] = ACTIONS(1947), + [anon_sym_BSLASHcitep] = ACTIONS(1947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteauthor] = ACTIONS(1947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitetitle] = ACTIONS(1947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteyear] = ACTIONS(1947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitedate] = ACTIONS(1947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteurl] = ACTIONS(1947), + [anon_sym_BSLASHfullcite] = ACTIONS(1947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), + [anon_sym_BSLASHcitealt] = ACTIONS(1947), + [anon_sym_BSLASHcitealp] = ACTIONS(1947), + [anon_sym_BSLASHcitetext] = ACTIONS(1947), + [anon_sym_BSLASHparencite] = ACTIONS(1947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHParencite] = ACTIONS(1947), + [anon_sym_BSLASHfootcite] = ACTIONS(1947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), + [anon_sym_BSLASHtextcite] = ACTIONS(1947), + [anon_sym_BSLASHTextcite] = ACTIONS(1947), + [anon_sym_BSLASHsmartcite] = ACTIONS(1947), + [anon_sym_BSLASHSmartcite] = ACTIONS(1947), + [anon_sym_BSLASHsupercite] = ACTIONS(1947), + [anon_sym_BSLASHautocite] = ACTIONS(1947), + [anon_sym_BSLASHAutocite] = ACTIONS(1947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHvolcite] = ACTIONS(1947), + [anon_sym_BSLASHVolcite] = ACTIONS(1947), + [anon_sym_BSLASHpvolcite] = ACTIONS(1947), + [anon_sym_BSLASHPvolcite] = ACTIONS(1947), + [anon_sym_BSLASHfvolcite] = ACTIONS(1947), + [anon_sym_BSLASHftvolcite] = ACTIONS(1947), + [anon_sym_BSLASHsvolcite] = ACTIONS(1947), + [anon_sym_BSLASHSvolcite] = ACTIONS(1947), + [anon_sym_BSLASHtvolcite] = ACTIONS(1947), + [anon_sym_BSLASHTvolcite] = ACTIONS(1947), + [anon_sym_BSLASHavolcite] = ACTIONS(1947), + [anon_sym_BSLASHAvolcite] = ACTIONS(1947), + [anon_sym_BSLASHnotecite] = ACTIONS(1947), + [anon_sym_BSLASHNotecite] = ACTIONS(1947), + [anon_sym_BSLASHpnotecite] = ACTIONS(1947), + [anon_sym_BSLASHPnotecite] = ACTIONS(1947), + [anon_sym_BSLASHfnotecite] = ACTIONS(1947), + [anon_sym_BSLASHlabel] = ACTIONS(1947), + [anon_sym_BSLASHref] = ACTIONS(1947), + [anon_sym_BSLASHeqref] = ACTIONS(1947), + [anon_sym_BSLASHvref] = ACTIONS(1947), + [anon_sym_BSLASHVref] = ACTIONS(1947), + [anon_sym_BSLASHautoref] = ACTIONS(1947), + [anon_sym_BSLASHpageref] = ACTIONS(1947), + [anon_sym_BSLASHcref] = ACTIONS(1947), + [anon_sym_BSLASHCref] = ACTIONS(1947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnameCref] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHlabelcref] = ACTIONS(1947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCrefrange] = ACTIONS(1947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnewlabel] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), + [anon_sym_BSLASHdef] = ACTIONS(1947), + [anon_sym_BSLASHlet] = ACTIONS(1947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), + [anon_sym_BSLASHgls] = ACTIONS(1947), + [anon_sym_BSLASHGls] = ACTIONS(1947), + [anon_sym_BSLASHGLS] = ACTIONS(1947), + [anon_sym_BSLASHglspl] = ACTIONS(1947), + [anon_sym_BSLASHGlspl] = ACTIONS(1947), + [anon_sym_BSLASHGLSpl] = ACTIONS(1947), + [anon_sym_BSLASHglsdisp] = ACTIONS(1947), + [anon_sym_BSLASHglslink] = ACTIONS(1947), + [anon_sym_BSLASHglstext] = ACTIONS(1947), + [anon_sym_BSLASHGlstext] = ACTIONS(1947), + [anon_sym_BSLASHGLStext] = ACTIONS(1947), + [anon_sym_BSLASHglsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), + [anon_sym_BSLASHglsplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSplural] = ACTIONS(1947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHglsname] = ACTIONS(1947), + [anon_sym_BSLASHGlsname] = ACTIONS(1947), + [anon_sym_BSLASHGLSname] = ACTIONS(1947), + [anon_sym_BSLASHglssymbol] = ACTIONS(1947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), + [anon_sym_BSLASHglsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), + [anon_sym_BSLASHglsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), + [anon_sym_BSLASHglsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), + [anon_sym_BSLASHglsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), + [anon_sym_BSLASHglsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), + [anon_sym_BSLASHnewacronym] = ACTIONS(1947), + [anon_sym_BSLASHacrshort] = ACTIONS(1947), + [anon_sym_BSLASHAcrshort] = ACTIONS(1947), + [anon_sym_BSLASHACRshort] = ACTIONS(1947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), + [anon_sym_BSLASHacrlong] = ACTIONS(1947), + [anon_sym_BSLASHAcrlong] = ACTIONS(1947), + [anon_sym_BSLASHACRlong] = ACTIONS(1947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), + [anon_sym_BSLASHacrfull] = ACTIONS(1947), + [anon_sym_BSLASHAcrfull] = ACTIONS(1947), + [anon_sym_BSLASHACRfull] = ACTIONS(1947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), + [anon_sym_BSLASHacs] = ACTIONS(1947), + [anon_sym_BSLASHAcs] = ACTIONS(1947), + [anon_sym_BSLASHacsp] = ACTIONS(1947), + [anon_sym_BSLASHAcsp] = ACTIONS(1947), + [anon_sym_BSLASHacl] = ACTIONS(1947), + [anon_sym_BSLASHAcl] = ACTIONS(1947), + [anon_sym_BSLASHaclp] = ACTIONS(1947), + [anon_sym_BSLASHAclp] = ACTIONS(1947), + [anon_sym_BSLASHacf] = ACTIONS(1947), + [anon_sym_BSLASHAcf] = ACTIONS(1947), + [anon_sym_BSLASHacfp] = ACTIONS(1947), + [anon_sym_BSLASHAcfp] = ACTIONS(1947), + [anon_sym_BSLASHac] = ACTIONS(1947), + [anon_sym_BSLASHAc] = ACTIONS(1947), + [anon_sym_BSLASHacp] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), + [anon_sym_BSLASHcolor] = ACTIONS(1947), + [anon_sym_BSLASHcolorbox] = ACTIONS(1947), + [anon_sym_BSLASHtextcolor] = ACTIONS(1947), + [anon_sym_BSLASHpagecolor] = ACTIONS(1947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), + [anon_sym_BSLASHtext] = ACTIONS(1947), + [anon_sym_BSLASHintertext] = ACTIONS(1947), + [anon_sym_shortintertext] = ACTIONS(1947), + }, + [507] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(1947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1945), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1947), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(1945), + [sym_word] = ACTIONS(1947), + [sym_placeholder] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), + [anon_sym__] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), + [anon_sym_BSLASHbegin] = ACTIONS(1947), + [anon_sym_BSLASHusepackage] = ACTIONS(1947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), + [anon_sym_BSLASHinclude] = ACTIONS(1947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), + [anon_sym_BSLASHinput] = ACTIONS(1947), + [anon_sym_BSLASHsubfile] = ACTIONS(1947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), + [anon_sym_BSLASHbibliography] = ACTIONS(1947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), + [anon_sym_BSLASHincludesvg] = ACTIONS(1947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), + [anon_sym_BSLASHimport] = ACTIONS(1947), + [anon_sym_BSLASHsubimport] = ACTIONS(1947), + [anon_sym_BSLASHinputfrom] = ACTIONS(1947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), + [anon_sym_BSLASHincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHcaption] = ACTIONS(1947), + [anon_sym_BSLASHcite] = ACTIONS(1947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCite] = ACTIONS(1947), + [anon_sym_BSLASHnocite] = ACTIONS(1947), + [anon_sym_BSLASHcitet] = ACTIONS(1947), + [anon_sym_BSLASHcitep] = ACTIONS(1947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteauthor] = ACTIONS(1947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitetitle] = ACTIONS(1947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteyear] = ACTIONS(1947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitedate] = ACTIONS(1947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteurl] = ACTIONS(1947), + [anon_sym_BSLASHfullcite] = ACTIONS(1947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), + [anon_sym_BSLASHcitealt] = ACTIONS(1947), + [anon_sym_BSLASHcitealp] = ACTIONS(1947), + [anon_sym_BSLASHcitetext] = ACTIONS(1947), + [anon_sym_BSLASHparencite] = ACTIONS(1947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHParencite] = ACTIONS(1947), + [anon_sym_BSLASHfootcite] = ACTIONS(1947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), + [anon_sym_BSLASHtextcite] = ACTIONS(1947), + [anon_sym_BSLASHTextcite] = ACTIONS(1947), + [anon_sym_BSLASHsmartcite] = ACTIONS(1947), + [anon_sym_BSLASHSmartcite] = ACTIONS(1947), + [anon_sym_BSLASHsupercite] = ACTIONS(1947), + [anon_sym_BSLASHautocite] = ACTIONS(1947), + [anon_sym_BSLASHAutocite] = ACTIONS(1947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHvolcite] = ACTIONS(1947), + [anon_sym_BSLASHVolcite] = ACTIONS(1947), + [anon_sym_BSLASHpvolcite] = ACTIONS(1947), + [anon_sym_BSLASHPvolcite] = ACTIONS(1947), + [anon_sym_BSLASHfvolcite] = ACTIONS(1947), + [anon_sym_BSLASHftvolcite] = ACTIONS(1947), + [anon_sym_BSLASHsvolcite] = ACTIONS(1947), + [anon_sym_BSLASHSvolcite] = ACTIONS(1947), + [anon_sym_BSLASHtvolcite] = ACTIONS(1947), + [anon_sym_BSLASHTvolcite] = ACTIONS(1947), + [anon_sym_BSLASHavolcite] = ACTIONS(1947), + [anon_sym_BSLASHAvolcite] = ACTIONS(1947), + [anon_sym_BSLASHnotecite] = ACTIONS(1947), + [anon_sym_BSLASHNotecite] = ACTIONS(1947), + [anon_sym_BSLASHpnotecite] = ACTIONS(1947), + [anon_sym_BSLASHPnotecite] = ACTIONS(1947), + [anon_sym_BSLASHfnotecite] = ACTIONS(1947), + [anon_sym_BSLASHlabel] = ACTIONS(1947), + [anon_sym_BSLASHref] = ACTIONS(1947), + [anon_sym_BSLASHeqref] = ACTIONS(1947), + [anon_sym_BSLASHvref] = ACTIONS(1947), + [anon_sym_BSLASHVref] = ACTIONS(1947), + [anon_sym_BSLASHautoref] = ACTIONS(1947), + [anon_sym_BSLASHpageref] = ACTIONS(1947), + [anon_sym_BSLASHcref] = ACTIONS(1947), + [anon_sym_BSLASHCref] = ACTIONS(1947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnameCref] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHlabelcref] = ACTIONS(1947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCrefrange] = ACTIONS(1947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnewlabel] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), + [anon_sym_BSLASHdef] = ACTIONS(1947), + [anon_sym_BSLASHlet] = ACTIONS(1947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), + [anon_sym_BSLASHgls] = ACTIONS(1947), + [anon_sym_BSLASHGls] = ACTIONS(1947), + [anon_sym_BSLASHGLS] = ACTIONS(1947), + [anon_sym_BSLASHglspl] = ACTIONS(1947), + [anon_sym_BSLASHGlspl] = ACTIONS(1947), + [anon_sym_BSLASHGLSpl] = ACTIONS(1947), + [anon_sym_BSLASHglsdisp] = ACTIONS(1947), + [anon_sym_BSLASHglslink] = ACTIONS(1947), + [anon_sym_BSLASHglstext] = ACTIONS(1947), + [anon_sym_BSLASHGlstext] = ACTIONS(1947), + [anon_sym_BSLASHGLStext] = ACTIONS(1947), + [anon_sym_BSLASHglsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), + [anon_sym_BSLASHglsplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSplural] = ACTIONS(1947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHglsname] = ACTIONS(1947), + [anon_sym_BSLASHGlsname] = ACTIONS(1947), + [anon_sym_BSLASHGLSname] = ACTIONS(1947), + [anon_sym_BSLASHglssymbol] = ACTIONS(1947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), + [anon_sym_BSLASHglsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), + [anon_sym_BSLASHglsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), + [anon_sym_BSLASHglsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), + [anon_sym_BSLASHglsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), + [anon_sym_BSLASHglsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), + [anon_sym_BSLASHnewacronym] = ACTIONS(1947), + [anon_sym_BSLASHacrshort] = ACTIONS(1947), + [anon_sym_BSLASHAcrshort] = ACTIONS(1947), + [anon_sym_BSLASHACRshort] = ACTIONS(1947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), + [anon_sym_BSLASHacrlong] = ACTIONS(1947), + [anon_sym_BSLASHAcrlong] = ACTIONS(1947), + [anon_sym_BSLASHACRlong] = ACTIONS(1947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), + [anon_sym_BSLASHacrfull] = ACTIONS(1947), + [anon_sym_BSLASHAcrfull] = ACTIONS(1947), + [anon_sym_BSLASHACRfull] = ACTIONS(1947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), + [anon_sym_BSLASHacs] = ACTIONS(1947), + [anon_sym_BSLASHAcs] = ACTIONS(1947), + [anon_sym_BSLASHacsp] = ACTIONS(1947), + [anon_sym_BSLASHAcsp] = ACTIONS(1947), + [anon_sym_BSLASHacl] = ACTIONS(1947), + [anon_sym_BSLASHAcl] = ACTIONS(1947), + [anon_sym_BSLASHaclp] = ACTIONS(1947), + [anon_sym_BSLASHAclp] = ACTIONS(1947), + [anon_sym_BSLASHacf] = ACTIONS(1947), + [anon_sym_BSLASHAcf] = ACTIONS(1947), + [anon_sym_BSLASHacfp] = ACTIONS(1947), + [anon_sym_BSLASHAcfp] = ACTIONS(1947), + [anon_sym_BSLASHac] = ACTIONS(1947), + [anon_sym_BSLASHAc] = ACTIONS(1947), + [anon_sym_BSLASHacp] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), + [anon_sym_BSLASHcolor] = ACTIONS(1947), + [anon_sym_BSLASHcolorbox] = ACTIONS(1947), + [anon_sym_BSLASHtextcolor] = ACTIONS(1947), + [anon_sym_BSLASHpagecolor] = ACTIONS(1947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), + [anon_sym_BSLASHtext] = ACTIONS(1947), + [anon_sym_BSLASHintertext] = ACTIONS(1947), + [anon_sym_shortintertext] = ACTIONS(1947), + }, + [508] = { + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(1923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(1923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), + }, + [509] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(1965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1963), + [anon_sym_EQ] = ACTIONS(1963), + [anon_sym_BSLASHpart] = ACTIONS(1965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddpart] = ACTIONS(1965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHchapter] = ACTIONS(1965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddchap] = ACTIONS(1965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsection] = ACTIONS(1965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddsec] = ACTIONS(1965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHparagraph] = ACTIONS(1965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(1963), + [sym_word] = ACTIONS(1965), + [sym_placeholder] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1965), + [anon_sym_SLASH] = ACTIONS(1965), + [anon_sym_CARET] = ACTIONS(1965), + [anon_sym__] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1965), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1963), + [anon_sym_BSLASH_RBRACK] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1963), + [anon_sym_BSLASHbegin] = ACTIONS(1965), + [anon_sym_BSLASHusepackage] = ACTIONS(1965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1965), + [anon_sym_BSLASHinclude] = ACTIONS(1965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1965), + [anon_sym_BSLASHinput] = ACTIONS(1965), + [anon_sym_BSLASHsubfile] = ACTIONS(1965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1965), + [anon_sym_BSLASHbibliography] = ACTIONS(1965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1965), + [anon_sym_BSLASHincludesvg] = ACTIONS(1965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1965), + [anon_sym_BSLASHimport] = ACTIONS(1965), + [anon_sym_BSLASHsubimport] = ACTIONS(1965), + [anon_sym_BSLASHinputfrom] = ACTIONS(1965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1965), + [anon_sym_BSLASHincludefrom] = ACTIONS(1965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1965), + [anon_sym_BSLASHcaption] = ACTIONS(1965), + [anon_sym_BSLASHcite] = ACTIONS(1965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCite] = ACTIONS(1965), + [anon_sym_BSLASHnocite] = ACTIONS(1965), + [anon_sym_BSLASHcitet] = ACTIONS(1965), + [anon_sym_BSLASHcitep] = ACTIONS(1965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteauthor] = ACTIONS(1965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitetitle] = ACTIONS(1965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteyear] = ACTIONS(1965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitedate] = ACTIONS(1965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteurl] = ACTIONS(1965), + [anon_sym_BSLASHfullcite] = ACTIONS(1965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1965), + [anon_sym_BSLASHcitealt] = ACTIONS(1965), + [anon_sym_BSLASHcitealp] = ACTIONS(1965), + [anon_sym_BSLASHcitetext] = ACTIONS(1965), + [anon_sym_BSLASHparencite] = ACTIONS(1965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHParencite] = ACTIONS(1965), + [anon_sym_BSLASHfootcite] = ACTIONS(1965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1965), + [anon_sym_BSLASHtextcite] = ACTIONS(1965), + [anon_sym_BSLASHTextcite] = ACTIONS(1965), + [anon_sym_BSLASHsmartcite] = ACTIONS(1965), + [anon_sym_BSLASHSmartcite] = ACTIONS(1965), + [anon_sym_BSLASHsupercite] = ACTIONS(1965), + [anon_sym_BSLASHautocite] = ACTIONS(1965), + [anon_sym_BSLASHAutocite] = ACTIONS(1965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHvolcite] = ACTIONS(1965), + [anon_sym_BSLASHVolcite] = ACTIONS(1965), + [anon_sym_BSLASHpvolcite] = ACTIONS(1965), + [anon_sym_BSLASHPvolcite] = ACTIONS(1965), + [anon_sym_BSLASHfvolcite] = ACTIONS(1965), + [anon_sym_BSLASHftvolcite] = ACTIONS(1965), + [anon_sym_BSLASHsvolcite] = ACTIONS(1965), + [anon_sym_BSLASHSvolcite] = ACTIONS(1965), + [anon_sym_BSLASHtvolcite] = ACTIONS(1965), + [anon_sym_BSLASHTvolcite] = ACTIONS(1965), + [anon_sym_BSLASHavolcite] = ACTIONS(1965), + [anon_sym_BSLASHAvolcite] = ACTIONS(1965), + [anon_sym_BSLASHnotecite] = ACTIONS(1965), + [anon_sym_BSLASHNotecite] = ACTIONS(1965), + [anon_sym_BSLASHpnotecite] = ACTIONS(1965), + [anon_sym_BSLASHPnotecite] = ACTIONS(1965), + [anon_sym_BSLASHfnotecite] = ACTIONS(1965), + [anon_sym_BSLASHlabel] = ACTIONS(1965), + [anon_sym_BSLASHref] = ACTIONS(1965), + [anon_sym_BSLASHeqref] = ACTIONS(1965), + [anon_sym_BSLASHvref] = ACTIONS(1965), + [anon_sym_BSLASHVref] = ACTIONS(1965), + [anon_sym_BSLASHautoref] = ACTIONS(1965), + [anon_sym_BSLASHpageref] = ACTIONS(1965), + [anon_sym_BSLASHcref] = ACTIONS(1965), + [anon_sym_BSLASHCref] = ACTIONS(1965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1963), + [anon_sym_BSLASHnamecref] = ACTIONS(1965), + [anon_sym_BSLASHnameCref] = ACTIONS(1965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1965), + [anon_sym_BSLASHlabelcref] = ACTIONS(1965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1965), + [anon_sym_BSLASHcrefrange] = ACTIONS(1965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCrefrange] = ACTIONS(1965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1963), + [anon_sym_BSLASHnewlabel] = ACTIONS(1965), + [anon_sym_BSLASHnewcommand] = ACTIONS(1965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1963), + [anon_sym_BSLASHdef] = ACTIONS(1965), + [anon_sym_BSLASHlet] = ACTIONS(1965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1965), + [anon_sym_BSLASHgls] = ACTIONS(1965), + [anon_sym_BSLASHGls] = ACTIONS(1965), + [anon_sym_BSLASHGLS] = ACTIONS(1965), + [anon_sym_BSLASHglspl] = ACTIONS(1965), + [anon_sym_BSLASHGlspl] = ACTIONS(1965), + [anon_sym_BSLASHGLSpl] = ACTIONS(1965), + [anon_sym_BSLASHglsdisp] = ACTIONS(1965), + [anon_sym_BSLASHglslink] = ACTIONS(1965), + [anon_sym_BSLASHglstext] = ACTIONS(1965), + [anon_sym_BSLASHGlstext] = ACTIONS(1965), + [anon_sym_BSLASHGLStext] = ACTIONS(1965), + [anon_sym_BSLASHglsfirst] = ACTIONS(1965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1965), + [anon_sym_BSLASHglsplural] = ACTIONS(1965), + [anon_sym_BSLASHGlsplural] = ACTIONS(1965), + [anon_sym_BSLASHGLSplural] = ACTIONS(1965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHglsname] = ACTIONS(1965), + [anon_sym_BSLASHGlsname] = ACTIONS(1965), + [anon_sym_BSLASHGLSname] = ACTIONS(1965), + [anon_sym_BSLASHglssymbol] = ACTIONS(1965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1965), + [anon_sym_BSLASHglsdesc] = ACTIONS(1965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1965), + [anon_sym_BSLASHglsuseri] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1965), + [anon_sym_BSLASHglsuserii] = ACTIONS(1965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1965), + [anon_sym_BSLASHglsuserv] = ACTIONS(1965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1965), + [anon_sym_BSLASHglsuservi] = ACTIONS(1965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1965), + [anon_sym_BSLASHnewacronym] = ACTIONS(1965), + [anon_sym_BSLASHacrshort] = ACTIONS(1965), + [anon_sym_BSLASHAcrshort] = ACTIONS(1965), + [anon_sym_BSLASHACRshort] = ACTIONS(1965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1965), + [anon_sym_BSLASHacrlong] = ACTIONS(1965), + [anon_sym_BSLASHAcrlong] = ACTIONS(1965), + [anon_sym_BSLASHACRlong] = ACTIONS(1965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1965), + [anon_sym_BSLASHacrfull] = ACTIONS(1965), + [anon_sym_BSLASHAcrfull] = ACTIONS(1965), + [anon_sym_BSLASHACRfull] = ACTIONS(1965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1965), + [anon_sym_BSLASHacs] = ACTIONS(1965), + [anon_sym_BSLASHAcs] = ACTIONS(1965), + [anon_sym_BSLASHacsp] = ACTIONS(1965), + [anon_sym_BSLASHAcsp] = ACTIONS(1965), + [anon_sym_BSLASHacl] = ACTIONS(1965), + [anon_sym_BSLASHAcl] = ACTIONS(1965), + [anon_sym_BSLASHaclp] = ACTIONS(1965), + [anon_sym_BSLASHAclp] = ACTIONS(1965), + [anon_sym_BSLASHacf] = ACTIONS(1965), + [anon_sym_BSLASHAcf] = ACTIONS(1965), + [anon_sym_BSLASHacfp] = ACTIONS(1965), + [anon_sym_BSLASHAcfp] = ACTIONS(1965), + [anon_sym_BSLASHac] = ACTIONS(1965), + [anon_sym_BSLASHAc] = ACTIONS(1965), + [anon_sym_BSLASHacp] = ACTIONS(1965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1965), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1965), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1965), + [anon_sym_BSLASHcolor] = ACTIONS(1965), + [anon_sym_BSLASHcolorbox] = ACTIONS(1965), + [anon_sym_BSLASHtextcolor] = ACTIONS(1965), + [anon_sym_BSLASHpagecolor] = ACTIONS(1965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1965), + [anon_sym_BSLASHtext] = ACTIONS(1965), + [anon_sym_BSLASHintertext] = ACTIONS(1965), + [anon_sym_shortintertext] = ACTIONS(1965), + }, + [510] = { + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(448), + [aux_sym__section_repeat6] = STATE(448), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHitem] = ACTIONS(1923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), + }, + [511] = { + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [512] = { + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(393), + [aux_sym__section_repeat3] = STATE(393), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHend] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), + }, + [513] = { + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [514] = { + [sym__part_declaration] = STATE(125), + [sym_part] = STATE(514), + [aux_sym__section_repeat1] = STATE(514), + [sym_command_name] = ACTIONS(4569), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4567), + [anon_sym_RBRACK] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_BSLASHpart] = ACTIONS(4695), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4698), + [anon_sym_BSLASHaddpart] = ACTIONS(4695), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4698), + [anon_sym_BSLASHchapter] = ACTIONS(4569), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4567), + [anon_sym_BSLASHaddchap] = ACTIONS(4569), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsection] = ACTIONS(4569), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHaddsec] = ACTIONS(4569), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubsection] = ACTIONS(4569), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4569), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHparagraph] = ACTIONS(4569), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4569), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4567), + [anon_sym_BSLASHitem] = ACTIONS(4569), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [sym_word] = ACTIONS(4569), + [sym_placeholder] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_STAR] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym__] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_PIPE] = ACTIONS(4569), + [anon_sym_COLON] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4569), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4567), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4569), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4567), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4567), + [anon_sym_BSLASHbegin] = ACTIONS(4569), + [anon_sym_BSLASHusepackage] = ACTIONS(4569), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4569), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4569), + [anon_sym_BSLASHinclude] = ACTIONS(4569), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4569), + [anon_sym_BSLASHinput] = ACTIONS(4569), + [anon_sym_BSLASHsubfile] = ACTIONS(4569), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4569), + [anon_sym_BSLASHbibliography] = ACTIONS(4569), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4569), + [anon_sym_BSLASHincludesvg] = ACTIONS(4569), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4569), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4569), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4569), + [anon_sym_BSLASHimport] = ACTIONS(4569), + [anon_sym_BSLASHsubimport] = ACTIONS(4569), + [anon_sym_BSLASHinputfrom] = ACTIONS(4569), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4569), + [anon_sym_BSLASHincludefrom] = ACTIONS(4569), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4569), + [anon_sym_BSLASHcaption] = ACTIONS(4569), + [anon_sym_BSLASHcite] = ACTIONS(4569), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCite] = ACTIONS(4569), + [anon_sym_BSLASHnocite] = ACTIONS(4569), + [anon_sym_BSLASHcitet] = ACTIONS(4569), + [anon_sym_BSLASHcitep] = ACTIONS(4569), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteauthor] = ACTIONS(4569), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4569), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitetitle] = ACTIONS(4569), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteyear] = ACTIONS(4569), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitedate] = ACTIONS(4569), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteurl] = ACTIONS(4569), + [anon_sym_BSLASHfullcite] = ACTIONS(4569), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4569), + [anon_sym_BSLASHcitealt] = ACTIONS(4569), + [anon_sym_BSLASHcitealp] = ACTIONS(4569), + [anon_sym_BSLASHcitetext] = ACTIONS(4569), + [anon_sym_BSLASHparencite] = ACTIONS(4569), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHParencite] = ACTIONS(4569), + [anon_sym_BSLASHfootcite] = ACTIONS(4569), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4569), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4569), + [anon_sym_BSLASHtextcite] = ACTIONS(4569), + [anon_sym_BSLASHTextcite] = ACTIONS(4569), + [anon_sym_BSLASHsmartcite] = ACTIONS(4569), + [anon_sym_BSLASHSmartcite] = ACTIONS(4569), + [anon_sym_BSLASHsupercite] = ACTIONS(4569), + [anon_sym_BSLASHautocite] = ACTIONS(4569), + [anon_sym_BSLASHAutocite] = ACTIONS(4569), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHvolcite] = ACTIONS(4569), + [anon_sym_BSLASHVolcite] = ACTIONS(4569), + [anon_sym_BSLASHpvolcite] = ACTIONS(4569), + [anon_sym_BSLASHPvolcite] = ACTIONS(4569), + [anon_sym_BSLASHfvolcite] = ACTIONS(4569), + [anon_sym_BSLASHftvolcite] = ACTIONS(4569), + [anon_sym_BSLASHsvolcite] = ACTIONS(4569), + [anon_sym_BSLASHSvolcite] = ACTIONS(4569), + [anon_sym_BSLASHtvolcite] = ACTIONS(4569), + [anon_sym_BSLASHTvolcite] = ACTIONS(4569), + [anon_sym_BSLASHavolcite] = ACTIONS(4569), + [anon_sym_BSLASHAvolcite] = ACTIONS(4569), + [anon_sym_BSLASHnotecite] = ACTIONS(4569), + [anon_sym_BSLASHNotecite] = ACTIONS(4569), + [anon_sym_BSLASHpnotecite] = ACTIONS(4569), + [anon_sym_BSLASHPnotecite] = ACTIONS(4569), + [anon_sym_BSLASHfnotecite] = ACTIONS(4569), + [anon_sym_BSLASHlabel] = ACTIONS(4569), + [anon_sym_BSLASHref] = ACTIONS(4569), + [anon_sym_BSLASHeqref] = ACTIONS(4569), + [anon_sym_BSLASHvref] = ACTIONS(4569), + [anon_sym_BSLASHVref] = ACTIONS(4569), + [anon_sym_BSLASHautoref] = ACTIONS(4569), + [anon_sym_BSLASHpageref] = ACTIONS(4569), + [anon_sym_BSLASHcref] = ACTIONS(4569), + [anon_sym_BSLASHCref] = ACTIONS(4569), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), + [anon_sym_BSLASHnamecref] = ACTIONS(4569), + [anon_sym_BSLASHnameCref] = ACTIONS(4569), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4569), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4569), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4569), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4569), + [anon_sym_BSLASHlabelcref] = ACTIONS(4569), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4569), + [anon_sym_BSLASHcrefrange] = ACTIONS(4569), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCrefrange] = ACTIONS(4569), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4567), + [anon_sym_BSLASHnewlabel] = ACTIONS(4569), + [anon_sym_BSLASHnewcommand] = ACTIONS(4569), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4569), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4569), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4569), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4567), + [anon_sym_BSLASHdef] = ACTIONS(4569), + [anon_sym_BSLASHlet] = ACTIONS(4569), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4569), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4569), + [anon_sym_BSLASHgls] = ACTIONS(4569), + [anon_sym_BSLASHGls] = ACTIONS(4569), + [anon_sym_BSLASHGLS] = ACTIONS(4569), + [anon_sym_BSLASHglspl] = ACTIONS(4569), + [anon_sym_BSLASHGlspl] = ACTIONS(4569), + [anon_sym_BSLASHGLSpl] = ACTIONS(4569), + [anon_sym_BSLASHglsdisp] = ACTIONS(4569), + [anon_sym_BSLASHglslink] = ACTIONS(4569), + [anon_sym_BSLASHglstext] = ACTIONS(4569), + [anon_sym_BSLASHGlstext] = ACTIONS(4569), + [anon_sym_BSLASHGLStext] = ACTIONS(4569), + [anon_sym_BSLASHglsfirst] = ACTIONS(4569), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4569), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4569), + [anon_sym_BSLASHglsplural] = ACTIONS(4569), + [anon_sym_BSLASHGlsplural] = ACTIONS(4569), + [anon_sym_BSLASHGLSplural] = ACTIONS(4569), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHglsname] = ACTIONS(4569), + [anon_sym_BSLASHGlsname] = ACTIONS(4569), + [anon_sym_BSLASHGLSname] = ACTIONS(4569), + [anon_sym_BSLASHglssymbol] = ACTIONS(4569), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4569), + [anon_sym_BSLASHglsdesc] = ACTIONS(4569), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4569), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4569), + [anon_sym_BSLASHglsuseri] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4569), + [anon_sym_BSLASHglsuserii] = ACTIONS(4569), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4569), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4569), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4569), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4569), + [anon_sym_BSLASHglsuserv] = ACTIONS(4569), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4569), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4569), + [anon_sym_BSLASHglsuservi] = ACTIONS(4569), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4569), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4569), + [anon_sym_BSLASHnewacronym] = ACTIONS(4569), + [anon_sym_BSLASHacrshort] = ACTIONS(4569), + [anon_sym_BSLASHAcrshort] = ACTIONS(4569), + [anon_sym_BSLASHACRshort] = ACTIONS(4569), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4569), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4569), + [anon_sym_BSLASHacrlong] = ACTIONS(4569), + [anon_sym_BSLASHAcrlong] = ACTIONS(4569), + [anon_sym_BSLASHACRlong] = ACTIONS(4569), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4569), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4569), + [anon_sym_BSLASHacrfull] = ACTIONS(4569), + [anon_sym_BSLASHAcrfull] = ACTIONS(4569), + [anon_sym_BSLASHACRfull] = ACTIONS(4569), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4569), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4569), + [anon_sym_BSLASHacs] = ACTIONS(4569), + [anon_sym_BSLASHAcs] = ACTIONS(4569), + [anon_sym_BSLASHacsp] = ACTIONS(4569), + [anon_sym_BSLASHAcsp] = ACTIONS(4569), + [anon_sym_BSLASHacl] = ACTIONS(4569), + [anon_sym_BSLASHAcl] = ACTIONS(4569), + [anon_sym_BSLASHaclp] = ACTIONS(4569), + [anon_sym_BSLASHAclp] = ACTIONS(4569), + [anon_sym_BSLASHacf] = ACTIONS(4569), + [anon_sym_BSLASHAcf] = ACTIONS(4569), + [anon_sym_BSLASHacfp] = ACTIONS(4569), + [anon_sym_BSLASHAcfp] = ACTIONS(4569), + [anon_sym_BSLASHac] = ACTIONS(4569), + [anon_sym_BSLASHAc] = ACTIONS(4569), + [anon_sym_BSLASHacp] = ACTIONS(4569), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4569), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4569), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4569), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4569), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4569), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4569), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4569), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4569), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4569), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4569), + [anon_sym_BSLASHcolor] = ACTIONS(4569), + [anon_sym_BSLASHcolorbox] = ACTIONS(4569), + [anon_sym_BSLASHtextcolor] = ACTIONS(4569), + [anon_sym_BSLASHpagecolor] = ACTIONS(4569), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4569), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4569), + [anon_sym_BSLASHtext] = ACTIONS(4569), + [anon_sym_BSLASHintertext] = ACTIONS(4569), + [anon_sym_shortintertext] = ACTIONS(4569), + }, + [515] = { + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(515), + [aux_sym__section_repeat2] = STATE(515), + [sym_command_name] = ACTIONS(4555), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_RBRACK] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4553), + [anon_sym_BSLASHpart] = ACTIONS(4555), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4553), + [anon_sym_BSLASHaddpart] = ACTIONS(4555), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4553), + [anon_sym_BSLASHchapter] = ACTIONS(4701), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4704), + [anon_sym_BSLASHaddchap] = ACTIONS(4701), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4704), + [anon_sym_BSLASHsection] = ACTIONS(4555), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHaddsec] = ACTIONS(4555), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubsection] = ACTIONS(4555), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4555), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHparagraph] = ACTIONS(4555), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4555), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4553), + [anon_sym_BSLASHitem] = ACTIONS(4555), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [sym_word] = ACTIONS(4555), + [sym_placeholder] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4555), + [anon_sym__] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_SQUOTE] = ACTIONS(4555), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4553), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4553), + [anon_sym_DOLLAR] = ACTIONS(4555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4553), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4553), + [anon_sym_BSLASHbegin] = ACTIONS(4555), + [anon_sym_BSLASHusepackage] = ACTIONS(4555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4555), + [anon_sym_BSLASHinclude] = ACTIONS(4555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4555), + [anon_sym_BSLASHinput] = ACTIONS(4555), + [anon_sym_BSLASHsubfile] = ACTIONS(4555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4555), + [anon_sym_BSLASHbibliography] = ACTIONS(4555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4555), + [anon_sym_BSLASHincludesvg] = ACTIONS(4555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4555), + [anon_sym_BSLASHimport] = ACTIONS(4555), + [anon_sym_BSLASHsubimport] = ACTIONS(4555), + [anon_sym_BSLASHinputfrom] = ACTIONS(4555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), + [anon_sym_BSLASHincludefrom] = ACTIONS(4555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), + [anon_sym_BSLASHcaption] = ACTIONS(4555), + [anon_sym_BSLASHcite] = ACTIONS(4555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCite] = ACTIONS(4555), + [anon_sym_BSLASHnocite] = ACTIONS(4555), + [anon_sym_BSLASHcitet] = ACTIONS(4555), + [anon_sym_BSLASHcitep] = ACTIONS(4555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteauthor] = ACTIONS(4555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitetitle] = ACTIONS(4555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteyear] = ACTIONS(4555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitedate] = ACTIONS(4555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteurl] = ACTIONS(4555), + [anon_sym_BSLASHfullcite] = ACTIONS(4555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4555), + [anon_sym_BSLASHcitealt] = ACTIONS(4555), + [anon_sym_BSLASHcitealp] = ACTIONS(4555), + [anon_sym_BSLASHcitetext] = ACTIONS(4555), + [anon_sym_BSLASHparencite] = ACTIONS(4555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHParencite] = ACTIONS(4555), + [anon_sym_BSLASHfootcite] = ACTIONS(4555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4555), + [anon_sym_BSLASHtextcite] = ACTIONS(4555), + [anon_sym_BSLASHTextcite] = ACTIONS(4555), + [anon_sym_BSLASHsmartcite] = ACTIONS(4555), + [anon_sym_BSLASHSmartcite] = ACTIONS(4555), + [anon_sym_BSLASHsupercite] = ACTIONS(4555), + [anon_sym_BSLASHautocite] = ACTIONS(4555), + [anon_sym_BSLASHAutocite] = ACTIONS(4555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHvolcite] = ACTIONS(4555), + [anon_sym_BSLASHVolcite] = ACTIONS(4555), + [anon_sym_BSLASHpvolcite] = ACTIONS(4555), + [anon_sym_BSLASHPvolcite] = ACTIONS(4555), + [anon_sym_BSLASHfvolcite] = ACTIONS(4555), + [anon_sym_BSLASHftvolcite] = ACTIONS(4555), + [anon_sym_BSLASHsvolcite] = ACTIONS(4555), + [anon_sym_BSLASHSvolcite] = ACTIONS(4555), + [anon_sym_BSLASHtvolcite] = ACTIONS(4555), + [anon_sym_BSLASHTvolcite] = ACTIONS(4555), + [anon_sym_BSLASHavolcite] = ACTIONS(4555), + [anon_sym_BSLASHAvolcite] = ACTIONS(4555), + [anon_sym_BSLASHnotecite] = ACTIONS(4555), + [anon_sym_BSLASHNotecite] = ACTIONS(4555), + [anon_sym_BSLASHpnotecite] = ACTIONS(4555), + [anon_sym_BSLASHPnotecite] = ACTIONS(4555), + [anon_sym_BSLASHfnotecite] = ACTIONS(4555), + [anon_sym_BSLASHlabel] = ACTIONS(4555), + [anon_sym_BSLASHref] = ACTIONS(4555), + [anon_sym_BSLASHeqref] = ACTIONS(4555), + [anon_sym_BSLASHvref] = ACTIONS(4555), + [anon_sym_BSLASHVref] = ACTIONS(4555), + [anon_sym_BSLASHautoref] = ACTIONS(4555), + [anon_sym_BSLASHpageref] = ACTIONS(4555), + [anon_sym_BSLASHcref] = ACTIONS(4555), + [anon_sym_BSLASHCref] = ACTIONS(4555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4553), + [anon_sym_BSLASHnamecref] = ACTIONS(4555), + [anon_sym_BSLASHnameCref] = ACTIONS(4555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4555), + [anon_sym_BSLASHlabelcref] = ACTIONS(4555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4555), + [anon_sym_BSLASHcrefrange] = ACTIONS(4555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCrefrange] = ACTIONS(4555), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4553), + [anon_sym_BSLASHnewlabel] = ACTIONS(4555), + [anon_sym_BSLASHnewcommand] = ACTIONS(4555), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4555), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4555), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4553), + [anon_sym_BSLASHdef] = ACTIONS(4555), + [anon_sym_BSLASHlet] = ACTIONS(4555), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4555), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4555), + [anon_sym_BSLASHgls] = ACTIONS(4555), + [anon_sym_BSLASHGls] = ACTIONS(4555), + [anon_sym_BSLASHGLS] = ACTIONS(4555), + [anon_sym_BSLASHglspl] = ACTIONS(4555), + [anon_sym_BSLASHGlspl] = ACTIONS(4555), + [anon_sym_BSLASHGLSpl] = ACTIONS(4555), + [anon_sym_BSLASHglsdisp] = ACTIONS(4555), + [anon_sym_BSLASHglslink] = ACTIONS(4555), + [anon_sym_BSLASHglstext] = ACTIONS(4555), + [anon_sym_BSLASHGlstext] = ACTIONS(4555), + [anon_sym_BSLASHGLStext] = ACTIONS(4555), + [anon_sym_BSLASHglsfirst] = ACTIONS(4555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4555), + [anon_sym_BSLASHglsplural] = ACTIONS(4555), + [anon_sym_BSLASHGlsplural] = ACTIONS(4555), + [anon_sym_BSLASHGLSplural] = ACTIONS(4555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHglsname] = ACTIONS(4555), + [anon_sym_BSLASHGlsname] = ACTIONS(4555), + [anon_sym_BSLASHGLSname] = ACTIONS(4555), + [anon_sym_BSLASHglssymbol] = ACTIONS(4555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4555), + [anon_sym_BSLASHglsdesc] = ACTIONS(4555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4555), + [anon_sym_BSLASHglsuseri] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4555), + [anon_sym_BSLASHglsuserii] = ACTIONS(4555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4555), + [anon_sym_BSLASHglsuserv] = ACTIONS(4555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4555), + [anon_sym_BSLASHglsuservi] = ACTIONS(4555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4555), + [anon_sym_BSLASHnewacronym] = ACTIONS(4555), + [anon_sym_BSLASHacrshort] = ACTIONS(4555), + [anon_sym_BSLASHAcrshort] = ACTIONS(4555), + [anon_sym_BSLASHACRshort] = ACTIONS(4555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4555), + [anon_sym_BSLASHacrlong] = ACTIONS(4555), + [anon_sym_BSLASHAcrlong] = ACTIONS(4555), + [anon_sym_BSLASHACRlong] = ACTIONS(4555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4555), + [anon_sym_BSLASHacrfull] = ACTIONS(4555), + [anon_sym_BSLASHAcrfull] = ACTIONS(4555), + [anon_sym_BSLASHACRfull] = ACTIONS(4555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4555), + [anon_sym_BSLASHacs] = ACTIONS(4555), + [anon_sym_BSLASHAcs] = ACTIONS(4555), + [anon_sym_BSLASHacsp] = ACTIONS(4555), + [anon_sym_BSLASHAcsp] = ACTIONS(4555), + [anon_sym_BSLASHacl] = ACTIONS(4555), + [anon_sym_BSLASHAcl] = ACTIONS(4555), + [anon_sym_BSLASHaclp] = ACTIONS(4555), + [anon_sym_BSLASHAclp] = ACTIONS(4555), + [anon_sym_BSLASHacf] = ACTIONS(4555), + [anon_sym_BSLASHAcf] = ACTIONS(4555), + [anon_sym_BSLASHacfp] = ACTIONS(4555), + [anon_sym_BSLASHAcfp] = ACTIONS(4555), + [anon_sym_BSLASHac] = ACTIONS(4555), + [anon_sym_BSLASHAc] = ACTIONS(4555), + [anon_sym_BSLASHacp] = ACTIONS(4555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4555), + [anon_sym_BSLASHcolor] = ACTIONS(4555), + [anon_sym_BSLASHcolorbox] = ACTIONS(4555), + [anon_sym_BSLASHtextcolor] = ACTIONS(4555), + [anon_sym_BSLASHpagecolor] = ACTIONS(4555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4555), + [anon_sym_BSLASHtext] = ACTIONS(4555), + [anon_sym_BSLASHintertext] = ACTIONS(4555), + [anon_sym_shortintertext] = ACTIONS(4555), + }, + [516] = { + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(516), + [aux_sym__section_repeat3] = STATE(516), + [sym_command_name] = ACTIONS(4545), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_RPAREN] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_RBRACK] = ACTIONS(4543), + [anon_sym_COMMA] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_BSLASHpart] = ACTIONS(4545), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4543), + [anon_sym_BSLASHaddpart] = ACTIONS(4545), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4543), + [anon_sym_BSLASHchapter] = ACTIONS(4545), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4543), + [anon_sym_BSLASHaddchap] = ACTIONS(4545), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsection] = ACTIONS(4707), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4710), + [anon_sym_BSLASHaddsec] = ACTIONS(4707), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4710), + [anon_sym_BSLASHsubsection] = ACTIONS(4545), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4545), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4543), + [anon_sym_BSLASHparagraph] = ACTIONS(4545), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4545), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4543), + [anon_sym_BSLASHitem] = ACTIONS(4545), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4543), + [sym_word] = ACTIONS(4545), + [sym_placeholder] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4545), + [anon_sym_STAR] = ACTIONS(4545), + [anon_sym_SLASH] = ACTIONS(4545), + [anon_sym_CARET] = ACTIONS(4545), + [anon_sym__] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4545), + [anon_sym_BANG] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4545), + [anon_sym_SQUOTE] = ACTIONS(4545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4543), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4543), + [anon_sym_DOLLAR] = ACTIONS(4545), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4543), + [anon_sym_BSLASHbegin] = ACTIONS(4545), + [anon_sym_BSLASHusepackage] = ACTIONS(4545), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4545), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4545), + [anon_sym_BSLASHinclude] = ACTIONS(4545), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4545), + [anon_sym_BSLASHinput] = ACTIONS(4545), + [anon_sym_BSLASHsubfile] = ACTIONS(4545), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4545), + [anon_sym_BSLASHbibliography] = ACTIONS(4545), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4545), + [anon_sym_BSLASHincludesvg] = ACTIONS(4545), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4545), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4545), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4545), + [anon_sym_BSLASHimport] = ACTIONS(4545), + [anon_sym_BSLASHsubimport] = ACTIONS(4545), + [anon_sym_BSLASHinputfrom] = ACTIONS(4545), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4545), + [anon_sym_BSLASHincludefrom] = ACTIONS(4545), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4545), + [anon_sym_BSLASHcaption] = ACTIONS(4545), + [anon_sym_BSLASHcite] = ACTIONS(4545), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCite] = ACTIONS(4545), + [anon_sym_BSLASHnocite] = ACTIONS(4545), + [anon_sym_BSLASHcitet] = ACTIONS(4545), + [anon_sym_BSLASHcitep] = ACTIONS(4545), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteauthor] = ACTIONS(4545), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4545), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitetitle] = ACTIONS(4545), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteyear] = ACTIONS(4545), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitedate] = ACTIONS(4545), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteurl] = ACTIONS(4545), + [anon_sym_BSLASHfullcite] = ACTIONS(4545), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4545), + [anon_sym_BSLASHcitealt] = ACTIONS(4545), + [anon_sym_BSLASHcitealp] = ACTIONS(4545), + [anon_sym_BSLASHcitetext] = ACTIONS(4545), + [anon_sym_BSLASHparencite] = ACTIONS(4545), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHParencite] = ACTIONS(4545), + [anon_sym_BSLASHfootcite] = ACTIONS(4545), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4545), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4545), + [anon_sym_BSLASHtextcite] = ACTIONS(4545), + [anon_sym_BSLASHTextcite] = ACTIONS(4545), + [anon_sym_BSLASHsmartcite] = ACTIONS(4545), + [anon_sym_BSLASHSmartcite] = ACTIONS(4545), + [anon_sym_BSLASHsupercite] = ACTIONS(4545), + [anon_sym_BSLASHautocite] = ACTIONS(4545), + [anon_sym_BSLASHAutocite] = ACTIONS(4545), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHvolcite] = ACTIONS(4545), + [anon_sym_BSLASHVolcite] = ACTIONS(4545), + [anon_sym_BSLASHpvolcite] = ACTIONS(4545), + [anon_sym_BSLASHPvolcite] = ACTIONS(4545), + [anon_sym_BSLASHfvolcite] = ACTIONS(4545), + [anon_sym_BSLASHftvolcite] = ACTIONS(4545), + [anon_sym_BSLASHsvolcite] = ACTIONS(4545), + [anon_sym_BSLASHSvolcite] = ACTIONS(4545), + [anon_sym_BSLASHtvolcite] = ACTIONS(4545), + [anon_sym_BSLASHTvolcite] = ACTIONS(4545), + [anon_sym_BSLASHavolcite] = ACTIONS(4545), + [anon_sym_BSLASHAvolcite] = ACTIONS(4545), + [anon_sym_BSLASHnotecite] = ACTIONS(4545), + [anon_sym_BSLASHNotecite] = ACTIONS(4545), + [anon_sym_BSLASHpnotecite] = ACTIONS(4545), + [anon_sym_BSLASHPnotecite] = ACTIONS(4545), + [anon_sym_BSLASHfnotecite] = ACTIONS(4545), + [anon_sym_BSLASHlabel] = ACTIONS(4545), + [anon_sym_BSLASHref] = ACTIONS(4545), + [anon_sym_BSLASHeqref] = ACTIONS(4545), + [anon_sym_BSLASHvref] = ACTIONS(4545), + [anon_sym_BSLASHVref] = ACTIONS(4545), + [anon_sym_BSLASHautoref] = ACTIONS(4545), + [anon_sym_BSLASHpageref] = ACTIONS(4545), + [anon_sym_BSLASHcref] = ACTIONS(4545), + [anon_sym_BSLASHCref] = ACTIONS(4545), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4543), + [anon_sym_BSLASHnamecref] = ACTIONS(4545), + [anon_sym_BSLASHnameCref] = ACTIONS(4545), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4545), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4545), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4545), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4545), + [anon_sym_BSLASHlabelcref] = ACTIONS(4545), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4545), + [anon_sym_BSLASHcrefrange] = ACTIONS(4545), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCrefrange] = ACTIONS(4545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4543), + [anon_sym_BSLASHnewlabel] = ACTIONS(4545), + [anon_sym_BSLASHnewcommand] = ACTIONS(4545), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4545), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4545), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4545), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4543), + [anon_sym_BSLASHdef] = ACTIONS(4545), + [anon_sym_BSLASHlet] = ACTIONS(4545), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4545), + [anon_sym_BSLASHgls] = ACTIONS(4545), + [anon_sym_BSLASHGls] = ACTIONS(4545), + [anon_sym_BSLASHGLS] = ACTIONS(4545), + [anon_sym_BSLASHglspl] = ACTIONS(4545), + [anon_sym_BSLASHGlspl] = ACTIONS(4545), + [anon_sym_BSLASHGLSpl] = ACTIONS(4545), + [anon_sym_BSLASHglsdisp] = ACTIONS(4545), + [anon_sym_BSLASHglslink] = ACTIONS(4545), + [anon_sym_BSLASHglstext] = ACTIONS(4545), + [anon_sym_BSLASHGlstext] = ACTIONS(4545), + [anon_sym_BSLASHGLStext] = ACTIONS(4545), + [anon_sym_BSLASHglsfirst] = ACTIONS(4545), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4545), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4545), + [anon_sym_BSLASHglsplural] = ACTIONS(4545), + [anon_sym_BSLASHGlsplural] = ACTIONS(4545), + [anon_sym_BSLASHGLSplural] = ACTIONS(4545), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHglsname] = ACTIONS(4545), + [anon_sym_BSLASHGlsname] = ACTIONS(4545), + [anon_sym_BSLASHGLSname] = ACTIONS(4545), + [anon_sym_BSLASHglssymbol] = ACTIONS(4545), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4545), + [anon_sym_BSLASHglsdesc] = ACTIONS(4545), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4545), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4545), + [anon_sym_BSLASHglsuseri] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4545), + [anon_sym_BSLASHglsuserii] = ACTIONS(4545), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4545), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4545), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4545), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4545), + [anon_sym_BSLASHglsuserv] = ACTIONS(4545), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4545), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4545), + [anon_sym_BSLASHglsuservi] = ACTIONS(4545), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4545), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4545), + [anon_sym_BSLASHnewacronym] = ACTIONS(4545), + [anon_sym_BSLASHacrshort] = ACTIONS(4545), + [anon_sym_BSLASHAcrshort] = ACTIONS(4545), + [anon_sym_BSLASHACRshort] = ACTIONS(4545), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4545), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4545), + [anon_sym_BSLASHacrlong] = ACTIONS(4545), + [anon_sym_BSLASHAcrlong] = ACTIONS(4545), + [anon_sym_BSLASHACRlong] = ACTIONS(4545), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4545), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4545), + [anon_sym_BSLASHacrfull] = ACTIONS(4545), + [anon_sym_BSLASHAcrfull] = ACTIONS(4545), + [anon_sym_BSLASHACRfull] = ACTIONS(4545), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4545), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4545), + [anon_sym_BSLASHacs] = ACTIONS(4545), + [anon_sym_BSLASHAcs] = ACTIONS(4545), + [anon_sym_BSLASHacsp] = ACTIONS(4545), + [anon_sym_BSLASHAcsp] = ACTIONS(4545), + [anon_sym_BSLASHacl] = ACTIONS(4545), + [anon_sym_BSLASHAcl] = ACTIONS(4545), + [anon_sym_BSLASHaclp] = ACTIONS(4545), + [anon_sym_BSLASHAclp] = ACTIONS(4545), + [anon_sym_BSLASHacf] = ACTIONS(4545), + [anon_sym_BSLASHAcf] = ACTIONS(4545), + [anon_sym_BSLASHacfp] = ACTIONS(4545), + [anon_sym_BSLASHAcfp] = ACTIONS(4545), + [anon_sym_BSLASHac] = ACTIONS(4545), + [anon_sym_BSLASHAc] = ACTIONS(4545), + [anon_sym_BSLASHacp] = ACTIONS(4545), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4545), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4545), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4545), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4545), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4545), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4545), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4545), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4545), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4545), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4545), + [anon_sym_BSLASHcolor] = ACTIONS(4545), + [anon_sym_BSLASHcolorbox] = ACTIONS(4545), + [anon_sym_BSLASHtextcolor] = ACTIONS(4545), + [anon_sym_BSLASHpagecolor] = ACTIONS(4545), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4545), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4545), + [anon_sym_BSLASHtext] = ACTIONS(4545), + [anon_sym_BSLASHintertext] = ACTIONS(4545), + [anon_sym_shortintertext] = ACTIONS(4545), + }, + [517] = { + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(517), + [aux_sym__section_repeat4] = STATE(517), + [sym_command_name] = ACTIONS(4535), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4535), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(4533), + [anon_sym_BSLASHpart] = ACTIONS(4535), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddpart] = ACTIONS(4535), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4533), + [anon_sym_BSLASHchapter] = ACTIONS(4535), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddchap] = ACTIONS(4535), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsection] = ACTIONS(4535), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddsec] = ACTIONS(4535), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsubsection] = ACTIONS(4713), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4716), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4535), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4533), + [anon_sym_BSLASHparagraph] = ACTIONS(4535), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4535), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4533), + [anon_sym_BSLASHitem] = ACTIONS(4535), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4533), + [anon_sym_LBRACE] = ACTIONS(4533), + [sym_word] = ACTIONS(4535), + [sym_placeholder] = ACTIONS(4533), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4535), + [anon_sym__] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_BANG] = ACTIONS(4535), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_SQUOTE] = ACTIONS(4535), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4533), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4533), + [anon_sym_DOLLAR] = ACTIONS(4535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4533), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4533), + [anon_sym_BSLASHbegin] = ACTIONS(4535), + [anon_sym_BSLASHusepackage] = ACTIONS(4535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4535), + [anon_sym_BSLASHinclude] = ACTIONS(4535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4535), + [anon_sym_BSLASHinput] = ACTIONS(4535), + [anon_sym_BSLASHsubfile] = ACTIONS(4535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4535), + [anon_sym_BSLASHbibliography] = ACTIONS(4535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4535), + [anon_sym_BSLASHincludesvg] = ACTIONS(4535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4535), + [anon_sym_BSLASHimport] = ACTIONS(4535), + [anon_sym_BSLASHsubimport] = ACTIONS(4535), + [anon_sym_BSLASHinputfrom] = ACTIONS(4535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4535), + [anon_sym_BSLASHincludefrom] = ACTIONS(4535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4535), + [anon_sym_BSLASHcaption] = ACTIONS(4535), + [anon_sym_BSLASHcite] = ACTIONS(4535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCite] = ACTIONS(4535), + [anon_sym_BSLASHnocite] = ACTIONS(4535), + [anon_sym_BSLASHcitet] = ACTIONS(4535), + [anon_sym_BSLASHcitep] = ACTIONS(4535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteauthor] = ACTIONS(4535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitetitle] = ACTIONS(4535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteyear] = ACTIONS(4535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitedate] = ACTIONS(4535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteurl] = ACTIONS(4535), + [anon_sym_BSLASHfullcite] = ACTIONS(4535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4535), + [anon_sym_BSLASHcitealt] = ACTIONS(4535), + [anon_sym_BSLASHcitealp] = ACTIONS(4535), + [anon_sym_BSLASHcitetext] = ACTIONS(4535), + [anon_sym_BSLASHparencite] = ACTIONS(4535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHParencite] = ACTIONS(4535), + [anon_sym_BSLASHfootcite] = ACTIONS(4535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4535), + [anon_sym_BSLASHtextcite] = ACTIONS(4535), + [anon_sym_BSLASHTextcite] = ACTIONS(4535), + [anon_sym_BSLASHsmartcite] = ACTIONS(4535), + [anon_sym_BSLASHSmartcite] = ACTIONS(4535), + [anon_sym_BSLASHsupercite] = ACTIONS(4535), + [anon_sym_BSLASHautocite] = ACTIONS(4535), + [anon_sym_BSLASHAutocite] = ACTIONS(4535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHvolcite] = ACTIONS(4535), + [anon_sym_BSLASHVolcite] = ACTIONS(4535), + [anon_sym_BSLASHpvolcite] = ACTIONS(4535), + [anon_sym_BSLASHPvolcite] = ACTIONS(4535), + [anon_sym_BSLASHfvolcite] = ACTIONS(4535), + [anon_sym_BSLASHftvolcite] = ACTIONS(4535), + [anon_sym_BSLASHsvolcite] = ACTIONS(4535), + [anon_sym_BSLASHSvolcite] = ACTIONS(4535), + [anon_sym_BSLASHtvolcite] = ACTIONS(4535), + [anon_sym_BSLASHTvolcite] = ACTIONS(4535), + [anon_sym_BSLASHavolcite] = ACTIONS(4535), + [anon_sym_BSLASHAvolcite] = ACTIONS(4535), + [anon_sym_BSLASHnotecite] = ACTIONS(4535), + [anon_sym_BSLASHNotecite] = ACTIONS(4535), + [anon_sym_BSLASHpnotecite] = ACTIONS(4535), + [anon_sym_BSLASHPnotecite] = ACTIONS(4535), + [anon_sym_BSLASHfnotecite] = ACTIONS(4535), + [anon_sym_BSLASHlabel] = ACTIONS(4535), + [anon_sym_BSLASHref] = ACTIONS(4535), + [anon_sym_BSLASHeqref] = ACTIONS(4535), + [anon_sym_BSLASHvref] = ACTIONS(4535), + [anon_sym_BSLASHVref] = ACTIONS(4535), + [anon_sym_BSLASHautoref] = ACTIONS(4535), + [anon_sym_BSLASHpageref] = ACTIONS(4535), + [anon_sym_BSLASHcref] = ACTIONS(4535), + [anon_sym_BSLASHCref] = ACTIONS(4535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4533), + [anon_sym_BSLASHnamecref] = ACTIONS(4535), + [anon_sym_BSLASHnameCref] = ACTIONS(4535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4535), + [anon_sym_BSLASHlabelcref] = ACTIONS(4535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4535), + [anon_sym_BSLASHcrefrange] = ACTIONS(4535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCrefrange] = ACTIONS(4535), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4533), + [anon_sym_BSLASHnewlabel] = ACTIONS(4535), + [anon_sym_BSLASHnewcommand] = ACTIONS(4535), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4535), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4535), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4533), + [anon_sym_BSLASHdef] = ACTIONS(4535), + [anon_sym_BSLASHlet] = ACTIONS(4535), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4535), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4535), + [anon_sym_BSLASHgls] = ACTIONS(4535), + [anon_sym_BSLASHGls] = ACTIONS(4535), + [anon_sym_BSLASHGLS] = ACTIONS(4535), + [anon_sym_BSLASHglspl] = ACTIONS(4535), + [anon_sym_BSLASHGlspl] = ACTIONS(4535), + [anon_sym_BSLASHGLSpl] = ACTIONS(4535), + [anon_sym_BSLASHglsdisp] = ACTIONS(4535), + [anon_sym_BSLASHglslink] = ACTIONS(4535), + [anon_sym_BSLASHglstext] = ACTIONS(4535), + [anon_sym_BSLASHGlstext] = ACTIONS(4535), + [anon_sym_BSLASHGLStext] = ACTIONS(4535), + [anon_sym_BSLASHglsfirst] = ACTIONS(4535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4535), + [anon_sym_BSLASHglsplural] = ACTIONS(4535), + [anon_sym_BSLASHGlsplural] = ACTIONS(4535), + [anon_sym_BSLASHGLSplural] = ACTIONS(4535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHglsname] = ACTIONS(4535), + [anon_sym_BSLASHGlsname] = ACTIONS(4535), + [anon_sym_BSLASHGLSname] = ACTIONS(4535), + [anon_sym_BSLASHglssymbol] = ACTIONS(4535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4535), + [anon_sym_BSLASHglsdesc] = ACTIONS(4535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4535), + [anon_sym_BSLASHglsuseri] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4535), + [anon_sym_BSLASHglsuserii] = ACTIONS(4535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4535), + [anon_sym_BSLASHglsuserv] = ACTIONS(4535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4535), + [anon_sym_BSLASHglsuservi] = ACTIONS(4535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4535), + [anon_sym_BSLASHnewacronym] = ACTIONS(4535), + [anon_sym_BSLASHacrshort] = ACTIONS(4535), + [anon_sym_BSLASHAcrshort] = ACTIONS(4535), + [anon_sym_BSLASHACRshort] = ACTIONS(4535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4535), + [anon_sym_BSLASHacrlong] = ACTIONS(4535), + [anon_sym_BSLASHAcrlong] = ACTIONS(4535), + [anon_sym_BSLASHACRlong] = ACTIONS(4535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4535), + [anon_sym_BSLASHacrfull] = ACTIONS(4535), + [anon_sym_BSLASHAcrfull] = ACTIONS(4535), + [anon_sym_BSLASHACRfull] = ACTIONS(4535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4535), + [anon_sym_BSLASHacs] = ACTIONS(4535), + [anon_sym_BSLASHAcs] = ACTIONS(4535), + [anon_sym_BSLASHacsp] = ACTIONS(4535), + [anon_sym_BSLASHAcsp] = ACTIONS(4535), + [anon_sym_BSLASHacl] = ACTIONS(4535), + [anon_sym_BSLASHAcl] = ACTIONS(4535), + [anon_sym_BSLASHaclp] = ACTIONS(4535), + [anon_sym_BSLASHAclp] = ACTIONS(4535), + [anon_sym_BSLASHacf] = ACTIONS(4535), + [anon_sym_BSLASHAcf] = ACTIONS(4535), + [anon_sym_BSLASHacfp] = ACTIONS(4535), + [anon_sym_BSLASHAcfp] = ACTIONS(4535), + [anon_sym_BSLASHac] = ACTIONS(4535), + [anon_sym_BSLASHAc] = ACTIONS(4535), + [anon_sym_BSLASHacp] = ACTIONS(4535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4535), + [anon_sym_BSLASHcolor] = ACTIONS(4535), + [anon_sym_BSLASHcolorbox] = ACTIONS(4535), + [anon_sym_BSLASHtextcolor] = ACTIONS(4535), + [anon_sym_BSLASHpagecolor] = ACTIONS(4535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4535), + [anon_sym_BSLASHtext] = ACTIONS(4535), + [anon_sym_BSLASHintertext] = ACTIONS(4535), + [anon_sym_shortintertext] = ACTIONS(4535), + }, + [518] = { + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(518), + [aux_sym__section_repeat5] = STATE(518), + [sym_command_name] = ACTIONS(4525), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_RBRACK] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_BSLASHpart] = ACTIONS(4525), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddpart] = ACTIONS(4525), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4523), + [anon_sym_BSLASHchapter] = ACTIONS(4525), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddchap] = ACTIONS(4525), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsection] = ACTIONS(4525), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddsec] = ACTIONS(4525), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubsection] = ACTIONS(4525), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4719), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4722), + [anon_sym_BSLASHparagraph] = ACTIONS(4525), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4525), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4523), + [anon_sym_BSLASHitem] = ACTIONS(4525), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [sym_word] = ACTIONS(4525), + [sym_placeholder] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym__] = ACTIONS(4525), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(4525), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4523), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4523), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4523), + [anon_sym_BSLASHbegin] = ACTIONS(4525), + [anon_sym_BSLASHusepackage] = ACTIONS(4525), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4525), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4525), + [anon_sym_BSLASHinclude] = ACTIONS(4525), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4525), + [anon_sym_BSLASHinput] = ACTIONS(4525), + [anon_sym_BSLASHsubfile] = ACTIONS(4525), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4525), + [anon_sym_BSLASHbibliography] = ACTIONS(4525), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4525), + [anon_sym_BSLASHincludesvg] = ACTIONS(4525), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4525), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4525), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4525), + [anon_sym_BSLASHimport] = ACTIONS(4525), + [anon_sym_BSLASHsubimport] = ACTIONS(4525), + [anon_sym_BSLASHinputfrom] = ACTIONS(4525), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4525), + [anon_sym_BSLASHincludefrom] = ACTIONS(4525), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4525), + [anon_sym_BSLASHcaption] = ACTIONS(4525), + [anon_sym_BSLASHcite] = ACTIONS(4525), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCite] = ACTIONS(4525), + [anon_sym_BSLASHnocite] = ACTIONS(4525), + [anon_sym_BSLASHcitet] = ACTIONS(4525), + [anon_sym_BSLASHcitep] = ACTIONS(4525), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteauthor] = ACTIONS(4525), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4525), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitetitle] = ACTIONS(4525), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteyear] = ACTIONS(4525), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitedate] = ACTIONS(4525), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteurl] = ACTIONS(4525), + [anon_sym_BSLASHfullcite] = ACTIONS(4525), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4525), + [anon_sym_BSLASHcitealt] = ACTIONS(4525), + [anon_sym_BSLASHcitealp] = ACTIONS(4525), + [anon_sym_BSLASHcitetext] = ACTIONS(4525), + [anon_sym_BSLASHparencite] = ACTIONS(4525), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHParencite] = ACTIONS(4525), + [anon_sym_BSLASHfootcite] = ACTIONS(4525), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4525), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4525), + [anon_sym_BSLASHtextcite] = ACTIONS(4525), + [anon_sym_BSLASHTextcite] = ACTIONS(4525), + [anon_sym_BSLASHsmartcite] = ACTIONS(4525), + [anon_sym_BSLASHSmartcite] = ACTIONS(4525), + [anon_sym_BSLASHsupercite] = ACTIONS(4525), + [anon_sym_BSLASHautocite] = ACTIONS(4525), + [anon_sym_BSLASHAutocite] = ACTIONS(4525), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHvolcite] = ACTIONS(4525), + [anon_sym_BSLASHVolcite] = ACTIONS(4525), + [anon_sym_BSLASHpvolcite] = ACTIONS(4525), + [anon_sym_BSLASHPvolcite] = ACTIONS(4525), + [anon_sym_BSLASHfvolcite] = ACTIONS(4525), + [anon_sym_BSLASHftvolcite] = ACTIONS(4525), + [anon_sym_BSLASHsvolcite] = ACTIONS(4525), + [anon_sym_BSLASHSvolcite] = ACTIONS(4525), + [anon_sym_BSLASHtvolcite] = ACTIONS(4525), + [anon_sym_BSLASHTvolcite] = ACTIONS(4525), + [anon_sym_BSLASHavolcite] = ACTIONS(4525), + [anon_sym_BSLASHAvolcite] = ACTIONS(4525), + [anon_sym_BSLASHnotecite] = ACTIONS(4525), + [anon_sym_BSLASHNotecite] = ACTIONS(4525), + [anon_sym_BSLASHpnotecite] = ACTIONS(4525), + [anon_sym_BSLASHPnotecite] = ACTIONS(4525), + [anon_sym_BSLASHfnotecite] = ACTIONS(4525), + [anon_sym_BSLASHlabel] = ACTIONS(4525), + [anon_sym_BSLASHref] = ACTIONS(4525), + [anon_sym_BSLASHeqref] = ACTIONS(4525), + [anon_sym_BSLASHvref] = ACTIONS(4525), + [anon_sym_BSLASHVref] = ACTIONS(4525), + [anon_sym_BSLASHautoref] = ACTIONS(4525), + [anon_sym_BSLASHpageref] = ACTIONS(4525), + [anon_sym_BSLASHcref] = ACTIONS(4525), + [anon_sym_BSLASHCref] = ACTIONS(4525), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4523), + [anon_sym_BSLASHnamecref] = ACTIONS(4525), + [anon_sym_BSLASHnameCref] = ACTIONS(4525), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4525), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4525), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4525), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4525), + [anon_sym_BSLASHlabelcref] = ACTIONS(4525), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4525), + [anon_sym_BSLASHcrefrange] = ACTIONS(4525), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCrefrange] = ACTIONS(4525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4523), + [anon_sym_BSLASHnewlabel] = ACTIONS(4525), + [anon_sym_BSLASHnewcommand] = ACTIONS(4525), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4525), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4525), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4525), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4523), + [anon_sym_BSLASHdef] = ACTIONS(4525), + [anon_sym_BSLASHlet] = ACTIONS(4525), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4525), + [anon_sym_BSLASHgls] = ACTIONS(4525), + [anon_sym_BSLASHGls] = ACTIONS(4525), + [anon_sym_BSLASHGLS] = ACTIONS(4525), + [anon_sym_BSLASHglspl] = ACTIONS(4525), + [anon_sym_BSLASHGlspl] = ACTIONS(4525), + [anon_sym_BSLASHGLSpl] = ACTIONS(4525), + [anon_sym_BSLASHglsdisp] = ACTIONS(4525), + [anon_sym_BSLASHglslink] = ACTIONS(4525), + [anon_sym_BSLASHglstext] = ACTIONS(4525), + [anon_sym_BSLASHGlstext] = ACTIONS(4525), + [anon_sym_BSLASHGLStext] = ACTIONS(4525), + [anon_sym_BSLASHglsfirst] = ACTIONS(4525), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4525), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4525), + [anon_sym_BSLASHglsplural] = ACTIONS(4525), + [anon_sym_BSLASHGlsplural] = ACTIONS(4525), + [anon_sym_BSLASHGLSplural] = ACTIONS(4525), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHglsname] = ACTIONS(4525), + [anon_sym_BSLASHGlsname] = ACTIONS(4525), + [anon_sym_BSLASHGLSname] = ACTIONS(4525), + [anon_sym_BSLASHglssymbol] = ACTIONS(4525), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4525), + [anon_sym_BSLASHglsdesc] = ACTIONS(4525), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4525), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4525), + [anon_sym_BSLASHglsuseri] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4525), + [anon_sym_BSLASHglsuserii] = ACTIONS(4525), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4525), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4525), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4525), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4525), + [anon_sym_BSLASHglsuserv] = ACTIONS(4525), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4525), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4525), + [anon_sym_BSLASHglsuservi] = ACTIONS(4525), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4525), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4525), + [anon_sym_BSLASHnewacronym] = ACTIONS(4525), + [anon_sym_BSLASHacrshort] = ACTIONS(4525), + [anon_sym_BSLASHAcrshort] = ACTIONS(4525), + [anon_sym_BSLASHACRshort] = ACTIONS(4525), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4525), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4525), + [anon_sym_BSLASHacrlong] = ACTIONS(4525), + [anon_sym_BSLASHAcrlong] = ACTIONS(4525), + [anon_sym_BSLASHACRlong] = ACTIONS(4525), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4525), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4525), + [anon_sym_BSLASHacrfull] = ACTIONS(4525), + [anon_sym_BSLASHAcrfull] = ACTIONS(4525), + [anon_sym_BSLASHACRfull] = ACTIONS(4525), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4525), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4525), + [anon_sym_BSLASHacs] = ACTIONS(4525), + [anon_sym_BSLASHAcs] = ACTIONS(4525), + [anon_sym_BSLASHacsp] = ACTIONS(4525), + [anon_sym_BSLASHAcsp] = ACTIONS(4525), + [anon_sym_BSLASHacl] = ACTIONS(4525), + [anon_sym_BSLASHAcl] = ACTIONS(4525), + [anon_sym_BSLASHaclp] = ACTIONS(4525), + [anon_sym_BSLASHAclp] = ACTIONS(4525), + [anon_sym_BSLASHacf] = ACTIONS(4525), + [anon_sym_BSLASHAcf] = ACTIONS(4525), + [anon_sym_BSLASHacfp] = ACTIONS(4525), + [anon_sym_BSLASHAcfp] = ACTIONS(4525), + [anon_sym_BSLASHac] = ACTIONS(4525), + [anon_sym_BSLASHAc] = ACTIONS(4525), + [anon_sym_BSLASHacp] = ACTIONS(4525), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4525), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4525), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4525), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4525), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4525), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4525), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4525), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4525), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4525), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4525), + [anon_sym_BSLASHcolor] = ACTIONS(4525), + [anon_sym_BSLASHcolorbox] = ACTIONS(4525), + [anon_sym_BSLASHtextcolor] = ACTIONS(4525), + [anon_sym_BSLASHpagecolor] = ACTIONS(4525), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4525), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4525), + [anon_sym_BSLASHtext] = ACTIONS(4525), + [anon_sym_BSLASHintertext] = ACTIONS(4525), + [anon_sym_shortintertext] = ACTIONS(4525), + }, + [519] = { + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(519), + [aux_sym__section_repeat6] = STATE(519), + [sym_command_name] = ACTIONS(4515), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym_RPAREN] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_RBRACK] = ACTIONS(4513), + [anon_sym_COMMA] = ACTIONS(4513), + [anon_sym_EQ] = ACTIONS(4513), + [anon_sym_BSLASHpart] = ACTIONS(4515), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddpart] = ACTIONS(4515), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4513), + [anon_sym_BSLASHchapter] = ACTIONS(4515), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddchap] = ACTIONS(4515), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsection] = ACTIONS(4515), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddsec] = ACTIONS(4515), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsubsection] = ACTIONS(4515), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4515), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHparagraph] = ACTIONS(4725), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4728), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4515), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4513), + [anon_sym_BSLASHitem] = ACTIONS(4515), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4513), + [sym_word] = ACTIONS(4515), + [sym_placeholder] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_CARET] = ACTIONS(4515), + [anon_sym__] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4513), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4513), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4513), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4513), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4513), + [anon_sym_BSLASHbegin] = ACTIONS(4515), + [anon_sym_BSLASHusepackage] = ACTIONS(4515), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4515), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4515), + [anon_sym_BSLASHinclude] = ACTIONS(4515), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4515), + [anon_sym_BSLASHinput] = ACTIONS(4515), + [anon_sym_BSLASHsubfile] = ACTIONS(4515), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4515), + [anon_sym_BSLASHbibliography] = ACTIONS(4515), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4515), + [anon_sym_BSLASHincludesvg] = ACTIONS(4515), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4515), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4515), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4515), + [anon_sym_BSLASHimport] = ACTIONS(4515), + [anon_sym_BSLASHsubimport] = ACTIONS(4515), + [anon_sym_BSLASHinputfrom] = ACTIONS(4515), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4515), + [anon_sym_BSLASHincludefrom] = ACTIONS(4515), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4515), + [anon_sym_BSLASHcaption] = ACTIONS(4515), + [anon_sym_BSLASHcite] = ACTIONS(4515), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCite] = ACTIONS(4515), + [anon_sym_BSLASHnocite] = ACTIONS(4515), + [anon_sym_BSLASHcitet] = ACTIONS(4515), + [anon_sym_BSLASHcitep] = ACTIONS(4515), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteauthor] = ACTIONS(4515), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4515), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitetitle] = ACTIONS(4515), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteyear] = ACTIONS(4515), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitedate] = ACTIONS(4515), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteurl] = ACTIONS(4515), + [anon_sym_BSLASHfullcite] = ACTIONS(4515), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4515), + [anon_sym_BSLASHcitealt] = ACTIONS(4515), + [anon_sym_BSLASHcitealp] = ACTIONS(4515), + [anon_sym_BSLASHcitetext] = ACTIONS(4515), + [anon_sym_BSLASHparencite] = ACTIONS(4515), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHParencite] = ACTIONS(4515), + [anon_sym_BSLASHfootcite] = ACTIONS(4515), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4515), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4515), + [anon_sym_BSLASHtextcite] = ACTIONS(4515), + [anon_sym_BSLASHTextcite] = ACTIONS(4515), + [anon_sym_BSLASHsmartcite] = ACTIONS(4515), + [anon_sym_BSLASHSmartcite] = ACTIONS(4515), + [anon_sym_BSLASHsupercite] = ACTIONS(4515), + [anon_sym_BSLASHautocite] = ACTIONS(4515), + [anon_sym_BSLASHAutocite] = ACTIONS(4515), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHvolcite] = ACTIONS(4515), + [anon_sym_BSLASHVolcite] = ACTIONS(4515), + [anon_sym_BSLASHpvolcite] = ACTIONS(4515), + [anon_sym_BSLASHPvolcite] = ACTIONS(4515), + [anon_sym_BSLASHfvolcite] = ACTIONS(4515), + [anon_sym_BSLASHftvolcite] = ACTIONS(4515), + [anon_sym_BSLASHsvolcite] = ACTIONS(4515), + [anon_sym_BSLASHSvolcite] = ACTIONS(4515), + [anon_sym_BSLASHtvolcite] = ACTIONS(4515), + [anon_sym_BSLASHTvolcite] = ACTIONS(4515), + [anon_sym_BSLASHavolcite] = ACTIONS(4515), + [anon_sym_BSLASHAvolcite] = ACTIONS(4515), + [anon_sym_BSLASHnotecite] = ACTIONS(4515), + [anon_sym_BSLASHNotecite] = ACTIONS(4515), + [anon_sym_BSLASHpnotecite] = ACTIONS(4515), + [anon_sym_BSLASHPnotecite] = ACTIONS(4515), + [anon_sym_BSLASHfnotecite] = ACTIONS(4515), + [anon_sym_BSLASHlabel] = ACTIONS(4515), + [anon_sym_BSLASHref] = ACTIONS(4515), + [anon_sym_BSLASHeqref] = ACTIONS(4515), + [anon_sym_BSLASHvref] = ACTIONS(4515), + [anon_sym_BSLASHVref] = ACTIONS(4515), + [anon_sym_BSLASHautoref] = ACTIONS(4515), + [anon_sym_BSLASHpageref] = ACTIONS(4515), + [anon_sym_BSLASHcref] = ACTIONS(4515), + [anon_sym_BSLASHCref] = ACTIONS(4515), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4513), + [anon_sym_BSLASHnamecref] = ACTIONS(4515), + [anon_sym_BSLASHnameCref] = ACTIONS(4515), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4515), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4515), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4515), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4515), + [anon_sym_BSLASHlabelcref] = ACTIONS(4515), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4515), + [anon_sym_BSLASHcrefrange] = ACTIONS(4515), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCrefrange] = ACTIONS(4515), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4513), + [anon_sym_BSLASHnewlabel] = ACTIONS(4515), + [anon_sym_BSLASHnewcommand] = ACTIONS(4515), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4515), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4515), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4515), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4513), + [anon_sym_BSLASHdef] = ACTIONS(4515), + [anon_sym_BSLASHlet] = ACTIONS(4515), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4515), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4515), + [anon_sym_BSLASHgls] = ACTIONS(4515), + [anon_sym_BSLASHGls] = ACTIONS(4515), + [anon_sym_BSLASHGLS] = ACTIONS(4515), + [anon_sym_BSLASHglspl] = ACTIONS(4515), + [anon_sym_BSLASHGlspl] = ACTIONS(4515), + [anon_sym_BSLASHGLSpl] = ACTIONS(4515), + [anon_sym_BSLASHglsdisp] = ACTIONS(4515), + [anon_sym_BSLASHglslink] = ACTIONS(4515), + [anon_sym_BSLASHglstext] = ACTIONS(4515), + [anon_sym_BSLASHGlstext] = ACTIONS(4515), + [anon_sym_BSLASHGLStext] = ACTIONS(4515), + [anon_sym_BSLASHglsfirst] = ACTIONS(4515), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4515), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4515), + [anon_sym_BSLASHglsplural] = ACTIONS(4515), + [anon_sym_BSLASHGlsplural] = ACTIONS(4515), + [anon_sym_BSLASHGLSplural] = ACTIONS(4515), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHglsname] = ACTIONS(4515), + [anon_sym_BSLASHGlsname] = ACTIONS(4515), + [anon_sym_BSLASHGLSname] = ACTIONS(4515), + [anon_sym_BSLASHglssymbol] = ACTIONS(4515), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4515), + [anon_sym_BSLASHglsdesc] = ACTIONS(4515), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4515), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4515), + [anon_sym_BSLASHglsuseri] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4515), + [anon_sym_BSLASHglsuserii] = ACTIONS(4515), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4515), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4515), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4515), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4515), + [anon_sym_BSLASHglsuserv] = ACTIONS(4515), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4515), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4515), + [anon_sym_BSLASHglsuservi] = ACTIONS(4515), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4515), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4515), + [anon_sym_BSLASHnewacronym] = ACTIONS(4515), + [anon_sym_BSLASHacrshort] = ACTIONS(4515), + [anon_sym_BSLASHAcrshort] = ACTIONS(4515), + [anon_sym_BSLASHACRshort] = ACTIONS(4515), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4515), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4515), + [anon_sym_BSLASHacrlong] = ACTIONS(4515), + [anon_sym_BSLASHAcrlong] = ACTIONS(4515), + [anon_sym_BSLASHACRlong] = ACTIONS(4515), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4515), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4515), + [anon_sym_BSLASHacrfull] = ACTIONS(4515), + [anon_sym_BSLASHAcrfull] = ACTIONS(4515), + [anon_sym_BSLASHACRfull] = ACTIONS(4515), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4515), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4515), + [anon_sym_BSLASHacs] = ACTIONS(4515), + [anon_sym_BSLASHAcs] = ACTIONS(4515), + [anon_sym_BSLASHacsp] = ACTIONS(4515), + [anon_sym_BSLASHAcsp] = ACTIONS(4515), + [anon_sym_BSLASHacl] = ACTIONS(4515), + [anon_sym_BSLASHAcl] = ACTIONS(4515), + [anon_sym_BSLASHaclp] = ACTIONS(4515), + [anon_sym_BSLASHAclp] = ACTIONS(4515), + [anon_sym_BSLASHacf] = ACTIONS(4515), + [anon_sym_BSLASHAcf] = ACTIONS(4515), + [anon_sym_BSLASHacfp] = ACTIONS(4515), + [anon_sym_BSLASHAcfp] = ACTIONS(4515), + [anon_sym_BSLASHac] = ACTIONS(4515), + [anon_sym_BSLASHAc] = ACTIONS(4515), + [anon_sym_BSLASHacp] = ACTIONS(4515), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4515), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4515), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4515), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4515), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4515), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4515), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4515), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4515), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4515), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4515), + [anon_sym_BSLASHcolor] = ACTIONS(4515), + [anon_sym_BSLASHcolorbox] = ACTIONS(4515), + [anon_sym_BSLASHtextcolor] = ACTIONS(4515), + [anon_sym_BSLASHpagecolor] = ACTIONS(4515), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4515), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4515), + [anon_sym_BSLASHtext] = ACTIONS(4515), + [anon_sym_BSLASHintertext] = ACTIONS(4515), + [anon_sym_shortintertext] = ACTIONS(4515), + }, + [520] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(4505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4503), + [anon_sym_RBRACK] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_BSLASHpart] = ACTIONS(4505), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddpart] = ACTIONS(4505), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4503), + [anon_sym_BSLASHchapter] = ACTIONS(4505), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddchap] = ACTIONS(4505), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsection] = ACTIONS(4505), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddsec] = ACTIONS(4505), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubsection] = ACTIONS(4505), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4505), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHparagraph] = ACTIONS(4505), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4731), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4734), + [anon_sym_BSLASHitem] = ACTIONS(4505), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [sym_word] = ACTIONS(4505), + [sym_placeholder] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym__] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4505), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4503), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4503), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4503), + [anon_sym_BSLASHbegin] = ACTIONS(4505), + [anon_sym_BSLASHusepackage] = ACTIONS(4505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4505), + [anon_sym_BSLASHinclude] = ACTIONS(4505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4505), + [anon_sym_BSLASHinput] = ACTIONS(4505), + [anon_sym_BSLASHsubfile] = ACTIONS(4505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4505), + [anon_sym_BSLASHbibliography] = ACTIONS(4505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4505), + [anon_sym_BSLASHincludesvg] = ACTIONS(4505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4505), + [anon_sym_BSLASHimport] = ACTIONS(4505), + [anon_sym_BSLASHsubimport] = ACTIONS(4505), + [anon_sym_BSLASHinputfrom] = ACTIONS(4505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4505), + [anon_sym_BSLASHincludefrom] = ACTIONS(4505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4505), + [anon_sym_BSLASHcaption] = ACTIONS(4505), + [anon_sym_BSLASHcite] = ACTIONS(4505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCite] = ACTIONS(4505), + [anon_sym_BSLASHnocite] = ACTIONS(4505), + [anon_sym_BSLASHcitet] = ACTIONS(4505), + [anon_sym_BSLASHcitep] = ACTIONS(4505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteauthor] = ACTIONS(4505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitetitle] = ACTIONS(4505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteyear] = ACTIONS(4505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitedate] = ACTIONS(4505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteurl] = ACTIONS(4505), + [anon_sym_BSLASHfullcite] = ACTIONS(4505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4505), + [anon_sym_BSLASHcitealt] = ACTIONS(4505), + [anon_sym_BSLASHcitealp] = ACTIONS(4505), + [anon_sym_BSLASHcitetext] = ACTIONS(4505), + [anon_sym_BSLASHparencite] = ACTIONS(4505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHParencite] = ACTIONS(4505), + [anon_sym_BSLASHfootcite] = ACTIONS(4505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4505), + [anon_sym_BSLASHtextcite] = ACTIONS(4505), + [anon_sym_BSLASHTextcite] = ACTIONS(4505), + [anon_sym_BSLASHsmartcite] = ACTIONS(4505), + [anon_sym_BSLASHSmartcite] = ACTIONS(4505), + [anon_sym_BSLASHsupercite] = ACTIONS(4505), + [anon_sym_BSLASHautocite] = ACTIONS(4505), + [anon_sym_BSLASHAutocite] = ACTIONS(4505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHvolcite] = ACTIONS(4505), + [anon_sym_BSLASHVolcite] = ACTIONS(4505), + [anon_sym_BSLASHpvolcite] = ACTIONS(4505), + [anon_sym_BSLASHPvolcite] = ACTIONS(4505), + [anon_sym_BSLASHfvolcite] = ACTIONS(4505), + [anon_sym_BSLASHftvolcite] = ACTIONS(4505), + [anon_sym_BSLASHsvolcite] = ACTIONS(4505), + [anon_sym_BSLASHSvolcite] = ACTIONS(4505), + [anon_sym_BSLASHtvolcite] = ACTIONS(4505), + [anon_sym_BSLASHTvolcite] = ACTIONS(4505), + [anon_sym_BSLASHavolcite] = ACTIONS(4505), + [anon_sym_BSLASHAvolcite] = ACTIONS(4505), + [anon_sym_BSLASHnotecite] = ACTIONS(4505), + [anon_sym_BSLASHNotecite] = ACTIONS(4505), + [anon_sym_BSLASHpnotecite] = ACTIONS(4505), + [anon_sym_BSLASHPnotecite] = ACTIONS(4505), + [anon_sym_BSLASHfnotecite] = ACTIONS(4505), + [anon_sym_BSLASHlabel] = ACTIONS(4505), + [anon_sym_BSLASHref] = ACTIONS(4505), + [anon_sym_BSLASHeqref] = ACTIONS(4505), + [anon_sym_BSLASHvref] = ACTIONS(4505), + [anon_sym_BSLASHVref] = ACTIONS(4505), + [anon_sym_BSLASHautoref] = ACTIONS(4505), + [anon_sym_BSLASHpageref] = ACTIONS(4505), + [anon_sym_BSLASHcref] = ACTIONS(4505), + [anon_sym_BSLASHCref] = ACTIONS(4505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4503), + [anon_sym_BSLASHnamecref] = ACTIONS(4505), + [anon_sym_BSLASHnameCref] = ACTIONS(4505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4505), + [anon_sym_BSLASHlabelcref] = ACTIONS(4505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4505), + [anon_sym_BSLASHcrefrange] = ACTIONS(4505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCrefrange] = ACTIONS(4505), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4503), + [anon_sym_BSLASHnewlabel] = ACTIONS(4505), + [anon_sym_BSLASHnewcommand] = ACTIONS(4505), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4505), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4505), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4503), + [anon_sym_BSLASHdef] = ACTIONS(4505), + [anon_sym_BSLASHlet] = ACTIONS(4505), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4505), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4505), + [anon_sym_BSLASHgls] = ACTIONS(4505), + [anon_sym_BSLASHGls] = ACTIONS(4505), + [anon_sym_BSLASHGLS] = ACTIONS(4505), + [anon_sym_BSLASHglspl] = ACTIONS(4505), + [anon_sym_BSLASHGlspl] = ACTIONS(4505), + [anon_sym_BSLASHGLSpl] = ACTIONS(4505), + [anon_sym_BSLASHglsdisp] = ACTIONS(4505), + [anon_sym_BSLASHglslink] = ACTIONS(4505), + [anon_sym_BSLASHglstext] = ACTIONS(4505), + [anon_sym_BSLASHGlstext] = ACTIONS(4505), + [anon_sym_BSLASHGLStext] = ACTIONS(4505), + [anon_sym_BSLASHglsfirst] = ACTIONS(4505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4505), + [anon_sym_BSLASHglsplural] = ACTIONS(4505), + [anon_sym_BSLASHGlsplural] = ACTIONS(4505), + [anon_sym_BSLASHGLSplural] = ACTIONS(4505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHglsname] = ACTIONS(4505), + [anon_sym_BSLASHGlsname] = ACTIONS(4505), + [anon_sym_BSLASHGLSname] = ACTIONS(4505), + [anon_sym_BSLASHglssymbol] = ACTIONS(4505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4505), + [anon_sym_BSLASHglsdesc] = ACTIONS(4505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4505), + [anon_sym_BSLASHglsuseri] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4505), + [anon_sym_BSLASHglsuserii] = ACTIONS(4505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4505), + [anon_sym_BSLASHglsuserv] = ACTIONS(4505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4505), + [anon_sym_BSLASHglsuservi] = ACTIONS(4505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4505), + [anon_sym_BSLASHnewacronym] = ACTIONS(4505), + [anon_sym_BSLASHacrshort] = ACTIONS(4505), + [anon_sym_BSLASHAcrshort] = ACTIONS(4505), + [anon_sym_BSLASHACRshort] = ACTIONS(4505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4505), + [anon_sym_BSLASHacrlong] = ACTIONS(4505), + [anon_sym_BSLASHAcrlong] = ACTIONS(4505), + [anon_sym_BSLASHACRlong] = ACTIONS(4505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4505), + [anon_sym_BSLASHacrfull] = ACTIONS(4505), + [anon_sym_BSLASHAcrfull] = ACTIONS(4505), + [anon_sym_BSLASHACRfull] = ACTIONS(4505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4505), + [anon_sym_BSLASHacs] = ACTIONS(4505), + [anon_sym_BSLASHAcs] = ACTIONS(4505), + [anon_sym_BSLASHacsp] = ACTIONS(4505), + [anon_sym_BSLASHAcsp] = ACTIONS(4505), + [anon_sym_BSLASHacl] = ACTIONS(4505), + [anon_sym_BSLASHAcl] = ACTIONS(4505), + [anon_sym_BSLASHaclp] = ACTIONS(4505), + [anon_sym_BSLASHAclp] = ACTIONS(4505), + [anon_sym_BSLASHacf] = ACTIONS(4505), + [anon_sym_BSLASHAcf] = ACTIONS(4505), + [anon_sym_BSLASHacfp] = ACTIONS(4505), + [anon_sym_BSLASHAcfp] = ACTIONS(4505), + [anon_sym_BSLASHac] = ACTIONS(4505), + [anon_sym_BSLASHAc] = ACTIONS(4505), + [anon_sym_BSLASHacp] = ACTIONS(4505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4505), + [anon_sym_BSLASHcolor] = ACTIONS(4505), + [anon_sym_BSLASHcolorbox] = ACTIONS(4505), + [anon_sym_BSLASHtextcolor] = ACTIONS(4505), + [anon_sym_BSLASHpagecolor] = ACTIONS(4505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4505), + [anon_sym_BSLASHtext] = ACTIONS(4505), + [anon_sym_BSLASHintertext] = ACTIONS(4505), + [anon_sym_shortintertext] = ACTIONS(4505), + }, + [521] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(4495), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_RPAREN] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_RBRACK] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_BSLASHpart] = ACTIONS(4495), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddpart] = ACTIONS(4495), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4493), + [anon_sym_BSLASHchapter] = ACTIONS(4495), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddchap] = ACTIONS(4495), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsection] = ACTIONS(4495), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddsec] = ACTIONS(4495), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubsection] = ACTIONS(4495), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4495), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHparagraph] = ACTIONS(4495), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4495), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4493), + [anon_sym_BSLASHitem] = ACTIONS(4737), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4740), + [anon_sym_LBRACE] = ACTIONS(4493), + [sym_word] = ACTIONS(4495), + [sym_placeholder] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4495), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_CARET] = ACTIONS(4495), + [anon_sym__] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4493), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4493), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4493), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4493), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4493), + [anon_sym_BSLASHbegin] = ACTIONS(4495), + [anon_sym_BSLASHusepackage] = ACTIONS(4495), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4495), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4495), + [anon_sym_BSLASHinclude] = ACTIONS(4495), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4495), + [anon_sym_BSLASHinput] = ACTIONS(4495), + [anon_sym_BSLASHsubfile] = ACTIONS(4495), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4495), + [anon_sym_BSLASHbibliography] = ACTIONS(4495), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4495), + [anon_sym_BSLASHincludesvg] = ACTIONS(4495), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4495), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4495), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4495), + [anon_sym_BSLASHimport] = ACTIONS(4495), + [anon_sym_BSLASHsubimport] = ACTIONS(4495), + [anon_sym_BSLASHinputfrom] = ACTIONS(4495), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4495), + [anon_sym_BSLASHincludefrom] = ACTIONS(4495), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4495), + [anon_sym_BSLASHcaption] = ACTIONS(4495), + [anon_sym_BSLASHcite] = ACTIONS(4495), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCite] = ACTIONS(4495), + [anon_sym_BSLASHnocite] = ACTIONS(4495), + [anon_sym_BSLASHcitet] = ACTIONS(4495), + [anon_sym_BSLASHcitep] = ACTIONS(4495), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteauthor] = ACTIONS(4495), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4495), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitetitle] = ACTIONS(4495), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteyear] = ACTIONS(4495), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitedate] = ACTIONS(4495), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteurl] = ACTIONS(4495), + [anon_sym_BSLASHfullcite] = ACTIONS(4495), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4495), + [anon_sym_BSLASHcitealt] = ACTIONS(4495), + [anon_sym_BSLASHcitealp] = ACTIONS(4495), + [anon_sym_BSLASHcitetext] = ACTIONS(4495), + [anon_sym_BSLASHparencite] = ACTIONS(4495), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHParencite] = ACTIONS(4495), + [anon_sym_BSLASHfootcite] = ACTIONS(4495), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4495), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4495), + [anon_sym_BSLASHtextcite] = ACTIONS(4495), + [anon_sym_BSLASHTextcite] = ACTIONS(4495), + [anon_sym_BSLASHsmartcite] = ACTIONS(4495), + [anon_sym_BSLASHSmartcite] = ACTIONS(4495), + [anon_sym_BSLASHsupercite] = ACTIONS(4495), + [anon_sym_BSLASHautocite] = ACTIONS(4495), + [anon_sym_BSLASHAutocite] = ACTIONS(4495), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHvolcite] = ACTIONS(4495), + [anon_sym_BSLASHVolcite] = ACTIONS(4495), + [anon_sym_BSLASHpvolcite] = ACTIONS(4495), + [anon_sym_BSLASHPvolcite] = ACTIONS(4495), + [anon_sym_BSLASHfvolcite] = ACTIONS(4495), + [anon_sym_BSLASHftvolcite] = ACTIONS(4495), + [anon_sym_BSLASHsvolcite] = ACTIONS(4495), + [anon_sym_BSLASHSvolcite] = ACTIONS(4495), + [anon_sym_BSLASHtvolcite] = ACTIONS(4495), + [anon_sym_BSLASHTvolcite] = ACTIONS(4495), + [anon_sym_BSLASHavolcite] = ACTIONS(4495), + [anon_sym_BSLASHAvolcite] = ACTIONS(4495), + [anon_sym_BSLASHnotecite] = ACTIONS(4495), + [anon_sym_BSLASHNotecite] = ACTIONS(4495), + [anon_sym_BSLASHpnotecite] = ACTIONS(4495), + [anon_sym_BSLASHPnotecite] = ACTIONS(4495), + [anon_sym_BSLASHfnotecite] = ACTIONS(4495), + [anon_sym_BSLASHlabel] = ACTIONS(4495), + [anon_sym_BSLASHref] = ACTIONS(4495), + [anon_sym_BSLASHeqref] = ACTIONS(4495), + [anon_sym_BSLASHvref] = ACTIONS(4495), + [anon_sym_BSLASHVref] = ACTIONS(4495), + [anon_sym_BSLASHautoref] = ACTIONS(4495), + [anon_sym_BSLASHpageref] = ACTIONS(4495), + [anon_sym_BSLASHcref] = ACTIONS(4495), + [anon_sym_BSLASHCref] = ACTIONS(4495), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4493), + [anon_sym_BSLASHnamecref] = ACTIONS(4495), + [anon_sym_BSLASHnameCref] = ACTIONS(4495), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4495), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4495), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4495), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4495), + [anon_sym_BSLASHlabelcref] = ACTIONS(4495), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4495), + [anon_sym_BSLASHcrefrange] = ACTIONS(4495), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCrefrange] = ACTIONS(4495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4493), + [anon_sym_BSLASHnewlabel] = ACTIONS(4495), + [anon_sym_BSLASHnewcommand] = ACTIONS(4495), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4495), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4495), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4495), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4493), + [anon_sym_BSLASHdef] = ACTIONS(4495), + [anon_sym_BSLASHlet] = ACTIONS(4495), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4495), + [anon_sym_BSLASHgls] = ACTIONS(4495), + [anon_sym_BSLASHGls] = ACTIONS(4495), + [anon_sym_BSLASHGLS] = ACTIONS(4495), + [anon_sym_BSLASHglspl] = ACTIONS(4495), + [anon_sym_BSLASHGlspl] = ACTIONS(4495), + [anon_sym_BSLASHGLSpl] = ACTIONS(4495), + [anon_sym_BSLASHglsdisp] = ACTIONS(4495), + [anon_sym_BSLASHglslink] = ACTIONS(4495), + [anon_sym_BSLASHglstext] = ACTIONS(4495), + [anon_sym_BSLASHGlstext] = ACTIONS(4495), + [anon_sym_BSLASHGLStext] = ACTIONS(4495), + [anon_sym_BSLASHglsfirst] = ACTIONS(4495), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4495), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4495), + [anon_sym_BSLASHglsplural] = ACTIONS(4495), + [anon_sym_BSLASHGlsplural] = ACTIONS(4495), + [anon_sym_BSLASHGLSplural] = ACTIONS(4495), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHglsname] = ACTIONS(4495), + [anon_sym_BSLASHGlsname] = ACTIONS(4495), + [anon_sym_BSLASHGLSname] = ACTIONS(4495), + [anon_sym_BSLASHglssymbol] = ACTIONS(4495), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4495), + [anon_sym_BSLASHglsdesc] = ACTIONS(4495), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4495), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4495), + [anon_sym_BSLASHglsuseri] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4495), + [anon_sym_BSLASHglsuserii] = ACTIONS(4495), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4495), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4495), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4495), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4495), + [anon_sym_BSLASHglsuserv] = ACTIONS(4495), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4495), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4495), + [anon_sym_BSLASHglsuservi] = ACTIONS(4495), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4495), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4495), + [anon_sym_BSLASHnewacronym] = ACTIONS(4495), + [anon_sym_BSLASHacrshort] = ACTIONS(4495), + [anon_sym_BSLASHAcrshort] = ACTIONS(4495), + [anon_sym_BSLASHACRshort] = ACTIONS(4495), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4495), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4495), + [anon_sym_BSLASHacrlong] = ACTIONS(4495), + [anon_sym_BSLASHAcrlong] = ACTIONS(4495), + [anon_sym_BSLASHACRlong] = ACTIONS(4495), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4495), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4495), + [anon_sym_BSLASHacrfull] = ACTIONS(4495), + [anon_sym_BSLASHAcrfull] = ACTIONS(4495), + [anon_sym_BSLASHACRfull] = ACTIONS(4495), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4495), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4495), + [anon_sym_BSLASHacs] = ACTIONS(4495), + [anon_sym_BSLASHAcs] = ACTIONS(4495), + [anon_sym_BSLASHacsp] = ACTIONS(4495), + [anon_sym_BSLASHAcsp] = ACTIONS(4495), + [anon_sym_BSLASHacl] = ACTIONS(4495), + [anon_sym_BSLASHAcl] = ACTIONS(4495), + [anon_sym_BSLASHaclp] = ACTIONS(4495), + [anon_sym_BSLASHAclp] = ACTIONS(4495), + [anon_sym_BSLASHacf] = ACTIONS(4495), + [anon_sym_BSLASHAcf] = ACTIONS(4495), + [anon_sym_BSLASHacfp] = ACTIONS(4495), + [anon_sym_BSLASHAcfp] = ACTIONS(4495), + [anon_sym_BSLASHac] = ACTIONS(4495), + [anon_sym_BSLASHAc] = ACTIONS(4495), + [anon_sym_BSLASHacp] = ACTIONS(4495), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4495), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4495), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4495), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4495), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4495), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4495), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4495), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4495), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4495), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4495), + [anon_sym_BSLASHcolor] = ACTIONS(4495), + [anon_sym_BSLASHcolorbox] = ACTIONS(4495), + [anon_sym_BSLASHtextcolor] = ACTIONS(4495), + [anon_sym_BSLASHpagecolor] = ACTIONS(4495), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4495), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4495), + [anon_sym_BSLASHtext] = ACTIONS(4495), + [anon_sym_BSLASHintertext] = ACTIONS(4495), + [anon_sym_shortintertext] = ACTIONS(4495), + }, + [522] = { + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(448), + [aux_sym__section_repeat6] = STATE(448), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [523] = { + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(399), + [aux_sym__section_repeat2] = STATE(399), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHend] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), + }, + [524] = { + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(449), + [aux_sym__section_repeat5] = STATE(449), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [525] = { + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [526] = { + [sym_curly_group] = STATE(1118), + [sym_mixed_group] = STATE(1118), + [aux_sym_generic_command_repeat1] = STATE(385), + [sym_command_name] = ACTIONS(4451), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4743), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_BSLASHpart] = ACTIONS(4451), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddpart] = ACTIONS(4451), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4449), + [anon_sym_BSLASHchapter] = ACTIONS(4451), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddchap] = ACTIONS(4451), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsection] = ACTIONS(4451), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddsec] = ACTIONS(4451), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubsection] = ACTIONS(4451), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4451), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHparagraph] = ACTIONS(4451), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4451), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4449), + [anon_sym_BSLASHitem] = ACTIONS(4451), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4449), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(4451), + [sym_placeholder] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(4451), + [anon_sym__] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_PIPE] = ACTIONS(4451), + [anon_sym_COLON] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), + [anon_sym_DOLLAR] = ACTIONS(4451), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), + [anon_sym_BSLASHbegin] = ACTIONS(4451), + [anon_sym_BSLASHend] = ACTIONS(4451), + [anon_sym_BSLASHusepackage] = ACTIONS(4451), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), + [anon_sym_BSLASHinclude] = ACTIONS(4451), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), + [anon_sym_BSLASHinput] = ACTIONS(4451), + [anon_sym_BSLASHsubfile] = ACTIONS(4451), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), + [anon_sym_BSLASHbibliography] = ACTIONS(4451), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), + [anon_sym_BSLASHincludesvg] = ACTIONS(4451), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), + [anon_sym_BSLASHimport] = ACTIONS(4451), + [anon_sym_BSLASHsubimport] = ACTIONS(4451), + [anon_sym_BSLASHinputfrom] = ACTIONS(4451), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), + [anon_sym_BSLASHincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHcaption] = ACTIONS(4451), + [anon_sym_BSLASHcite] = ACTIONS(4451), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCite] = ACTIONS(4451), + [anon_sym_BSLASHnocite] = ACTIONS(4451), + [anon_sym_BSLASHcitet] = ACTIONS(4451), + [anon_sym_BSLASHcitep] = ACTIONS(4451), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteauthor] = ACTIONS(4451), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitetitle] = ACTIONS(4451), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteyear] = ACTIONS(4451), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitedate] = ACTIONS(4451), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteurl] = ACTIONS(4451), + [anon_sym_BSLASHfullcite] = ACTIONS(4451), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), + [anon_sym_BSLASHcitealt] = ACTIONS(4451), + [anon_sym_BSLASHcitealp] = ACTIONS(4451), + [anon_sym_BSLASHcitetext] = ACTIONS(4451), + [anon_sym_BSLASHparencite] = ACTIONS(4451), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHParencite] = ACTIONS(4451), + [anon_sym_BSLASHfootcite] = ACTIONS(4451), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), + [anon_sym_BSLASHtextcite] = ACTIONS(4451), + [anon_sym_BSLASHTextcite] = ACTIONS(4451), + [anon_sym_BSLASHsmartcite] = ACTIONS(4451), + [anon_sym_BSLASHSmartcite] = ACTIONS(4451), + [anon_sym_BSLASHsupercite] = ACTIONS(4451), + [anon_sym_BSLASHautocite] = ACTIONS(4451), + [anon_sym_BSLASHAutocite] = ACTIONS(4451), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHvolcite] = ACTIONS(4451), + [anon_sym_BSLASHVolcite] = ACTIONS(4451), + [anon_sym_BSLASHpvolcite] = ACTIONS(4451), + [anon_sym_BSLASHPvolcite] = ACTIONS(4451), + [anon_sym_BSLASHfvolcite] = ACTIONS(4451), + [anon_sym_BSLASHftvolcite] = ACTIONS(4451), + [anon_sym_BSLASHsvolcite] = ACTIONS(4451), + [anon_sym_BSLASHSvolcite] = ACTIONS(4451), + [anon_sym_BSLASHtvolcite] = ACTIONS(4451), + [anon_sym_BSLASHTvolcite] = ACTIONS(4451), + [anon_sym_BSLASHavolcite] = ACTIONS(4451), + [anon_sym_BSLASHAvolcite] = ACTIONS(4451), + [anon_sym_BSLASHnotecite] = ACTIONS(4451), + [anon_sym_BSLASHNotecite] = ACTIONS(4451), + [anon_sym_BSLASHpnotecite] = ACTIONS(4451), + [anon_sym_BSLASHPnotecite] = ACTIONS(4451), + [anon_sym_BSLASHfnotecite] = ACTIONS(4451), + [anon_sym_BSLASHlabel] = ACTIONS(4451), + [anon_sym_BSLASHref] = ACTIONS(4451), + [anon_sym_BSLASHeqref] = ACTIONS(4451), + [anon_sym_BSLASHvref] = ACTIONS(4451), + [anon_sym_BSLASHVref] = ACTIONS(4451), + [anon_sym_BSLASHautoref] = ACTIONS(4451), + [anon_sym_BSLASHpageref] = ACTIONS(4451), + [anon_sym_BSLASHcref] = ACTIONS(4451), + [anon_sym_BSLASHCref] = ACTIONS(4451), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnameCref] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHlabelcref] = ACTIONS(4451), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCrefrange] = ACTIONS(4451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnewlabel] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), + [anon_sym_BSLASHdef] = ACTIONS(4451), + [anon_sym_BSLASHlet] = ACTIONS(4451), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), + [anon_sym_BSLASHgls] = ACTIONS(4451), + [anon_sym_BSLASHGls] = ACTIONS(4451), + [anon_sym_BSLASHGLS] = ACTIONS(4451), + [anon_sym_BSLASHglspl] = ACTIONS(4451), + [anon_sym_BSLASHGlspl] = ACTIONS(4451), + [anon_sym_BSLASHGLSpl] = ACTIONS(4451), + [anon_sym_BSLASHglsdisp] = ACTIONS(4451), + [anon_sym_BSLASHglslink] = ACTIONS(4451), + [anon_sym_BSLASHglstext] = ACTIONS(4451), + [anon_sym_BSLASHGlstext] = ACTIONS(4451), + [anon_sym_BSLASHGLStext] = ACTIONS(4451), + [anon_sym_BSLASHglsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), + [anon_sym_BSLASHglsplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSplural] = ACTIONS(4451), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHglsname] = ACTIONS(4451), + [anon_sym_BSLASHGlsname] = ACTIONS(4451), + [anon_sym_BSLASHGLSname] = ACTIONS(4451), + [anon_sym_BSLASHglssymbol] = ACTIONS(4451), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), + [anon_sym_BSLASHglsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), + [anon_sym_BSLASHglsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), + [anon_sym_BSLASHglsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), + [anon_sym_BSLASHglsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), + [anon_sym_BSLASHglsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), + [anon_sym_BSLASHnewacronym] = ACTIONS(4451), + [anon_sym_BSLASHacrshort] = ACTIONS(4451), + [anon_sym_BSLASHAcrshort] = ACTIONS(4451), + [anon_sym_BSLASHACRshort] = ACTIONS(4451), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), + [anon_sym_BSLASHacrlong] = ACTIONS(4451), + [anon_sym_BSLASHAcrlong] = ACTIONS(4451), + [anon_sym_BSLASHACRlong] = ACTIONS(4451), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), + [anon_sym_BSLASHacrfull] = ACTIONS(4451), + [anon_sym_BSLASHAcrfull] = ACTIONS(4451), + [anon_sym_BSLASHACRfull] = ACTIONS(4451), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), + [anon_sym_BSLASHacs] = ACTIONS(4451), + [anon_sym_BSLASHAcs] = ACTIONS(4451), + [anon_sym_BSLASHacsp] = ACTIONS(4451), + [anon_sym_BSLASHAcsp] = ACTIONS(4451), + [anon_sym_BSLASHacl] = ACTIONS(4451), + [anon_sym_BSLASHAcl] = ACTIONS(4451), + [anon_sym_BSLASHaclp] = ACTIONS(4451), + [anon_sym_BSLASHAclp] = ACTIONS(4451), + [anon_sym_BSLASHacf] = ACTIONS(4451), + [anon_sym_BSLASHAcf] = ACTIONS(4451), + [anon_sym_BSLASHacfp] = ACTIONS(4451), + [anon_sym_BSLASHAcfp] = ACTIONS(4451), + [anon_sym_BSLASHac] = ACTIONS(4451), + [anon_sym_BSLASHAc] = ACTIONS(4451), + [anon_sym_BSLASHacp] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), + [anon_sym_BSLASHcolor] = ACTIONS(4451), + [anon_sym_BSLASHcolorbox] = ACTIONS(4451), + [anon_sym_BSLASHtextcolor] = ACTIONS(4451), + [anon_sym_BSLASHpagecolor] = ACTIONS(4451), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), + [anon_sym_BSLASHtext] = ACTIONS(4451), + [anon_sym_BSLASHintertext] = ACTIONS(4451), + [anon_sym_shortintertext] = ACTIONS(4451), + }, + [527] = { + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [528] = { + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(448), + [aux_sym__section_repeat6] = STATE(448), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [529] = { + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(449), + [aux_sym__section_repeat5] = STATE(449), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [530] = { + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(451), + [aux_sym__section_repeat4] = STATE(451), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [531] = { + [sym_curly_group] = STATE(1162), + [sym_mixed_group] = STATE(1162), + [aux_sym_generic_command_repeat1] = STATE(531), + [sym_command_name] = ACTIONS(4461), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_BSLASHpart] = ACTIONS(4929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddpart] = ACTIONS(4929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHchapter] = ACTIONS(4929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddchap] = ACTIONS(4929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsection] = ACTIONS(4929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddsec] = ACTIONS(4929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHparagraph] = ACTIONS(4929), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHitem] = ACTIONS(4929), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [anon_sym_RBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASHbegin] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), + [anon_sym_BSLASHiffalse] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4745), + [anon_sym_RPAREN] = ACTIONS(4459), + [anon_sym_LBRACK] = ACTIONS(4745), + [anon_sym_RBRACK] = ACTIONS(4459), + [anon_sym_COMMA] = ACTIONS(4459), + [anon_sym_EQ] = ACTIONS(4459), + [anon_sym_BSLASHpart] = ACTIONS(4461), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddpart] = ACTIONS(4461), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4459), + [anon_sym_BSLASHchapter] = ACTIONS(4461), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddchap] = ACTIONS(4461), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsection] = ACTIONS(4461), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddsec] = ACTIONS(4461), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubsection] = ACTIONS(4461), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4461), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHparagraph] = ACTIONS(4461), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4461), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4459), + [anon_sym_BSLASHitem] = ACTIONS(4461), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4459), + [anon_sym_LBRACE] = ACTIONS(4748), + [sym_word] = ACTIONS(4461), + [sym_placeholder] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_STAR] = ACTIONS(4461), + [anon_sym_SLASH] = ACTIONS(4461), + [anon_sym_CARET] = ACTIONS(4461), + [anon_sym__] = ACTIONS(4461), + [anon_sym_LT] = ACTIONS(4461), + [anon_sym_GT] = ACTIONS(4461), + [anon_sym_BANG] = ACTIONS(4461), + [anon_sym_PIPE] = ACTIONS(4461), + [anon_sym_COLON] = ACTIONS(4461), + [anon_sym_SQUOTE] = ACTIONS(4461), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4459), + [anon_sym_DOLLAR] = ACTIONS(4461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), + [anon_sym_BSLASHbegin] = ACTIONS(4461), + [anon_sym_BSLASHusepackage] = ACTIONS(4461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), + [anon_sym_BSLASHinclude] = ACTIONS(4461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), + [anon_sym_BSLASHinput] = ACTIONS(4461), + [anon_sym_BSLASHsubfile] = ACTIONS(4461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), + [anon_sym_BSLASHbibliography] = ACTIONS(4461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), + [anon_sym_BSLASHincludesvg] = ACTIONS(4461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), + [anon_sym_BSLASHimport] = ACTIONS(4461), + [anon_sym_BSLASHsubimport] = ACTIONS(4461), + [anon_sym_BSLASHinputfrom] = ACTIONS(4461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), + [anon_sym_BSLASHincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHcaption] = ACTIONS(4461), + [anon_sym_BSLASHcite] = ACTIONS(4461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCite] = ACTIONS(4461), + [anon_sym_BSLASHnocite] = ACTIONS(4461), + [anon_sym_BSLASHcitet] = ACTIONS(4461), + [anon_sym_BSLASHcitep] = ACTIONS(4461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteauthor] = ACTIONS(4461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitetitle] = ACTIONS(4461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteyear] = ACTIONS(4461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitedate] = ACTIONS(4461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteurl] = ACTIONS(4461), + [anon_sym_BSLASHfullcite] = ACTIONS(4461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), + [anon_sym_BSLASHcitealt] = ACTIONS(4461), + [anon_sym_BSLASHcitealp] = ACTIONS(4461), + [anon_sym_BSLASHcitetext] = ACTIONS(4461), + [anon_sym_BSLASHparencite] = ACTIONS(4461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHParencite] = ACTIONS(4461), + [anon_sym_BSLASHfootcite] = ACTIONS(4461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), + [anon_sym_BSLASHtextcite] = ACTIONS(4461), + [anon_sym_BSLASHTextcite] = ACTIONS(4461), + [anon_sym_BSLASHsmartcite] = ACTIONS(4461), + [anon_sym_BSLASHSmartcite] = ACTIONS(4461), + [anon_sym_BSLASHsupercite] = ACTIONS(4461), + [anon_sym_BSLASHautocite] = ACTIONS(4461), + [anon_sym_BSLASHAutocite] = ACTIONS(4461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHvolcite] = ACTIONS(4461), + [anon_sym_BSLASHVolcite] = ACTIONS(4461), + [anon_sym_BSLASHpvolcite] = ACTIONS(4461), + [anon_sym_BSLASHPvolcite] = ACTIONS(4461), + [anon_sym_BSLASHfvolcite] = ACTIONS(4461), + [anon_sym_BSLASHftvolcite] = ACTIONS(4461), + [anon_sym_BSLASHsvolcite] = ACTIONS(4461), + [anon_sym_BSLASHSvolcite] = ACTIONS(4461), + [anon_sym_BSLASHtvolcite] = ACTIONS(4461), + [anon_sym_BSLASHTvolcite] = ACTIONS(4461), + [anon_sym_BSLASHavolcite] = ACTIONS(4461), + [anon_sym_BSLASHAvolcite] = ACTIONS(4461), + [anon_sym_BSLASHnotecite] = ACTIONS(4461), + [anon_sym_BSLASHNotecite] = ACTIONS(4461), + [anon_sym_BSLASHpnotecite] = ACTIONS(4461), + [anon_sym_BSLASHPnotecite] = ACTIONS(4461), + [anon_sym_BSLASHfnotecite] = ACTIONS(4461), + [anon_sym_BSLASHlabel] = ACTIONS(4461), + [anon_sym_BSLASHref] = ACTIONS(4461), + [anon_sym_BSLASHeqref] = ACTIONS(4461), + [anon_sym_BSLASHvref] = ACTIONS(4461), + [anon_sym_BSLASHVref] = ACTIONS(4461), + [anon_sym_BSLASHautoref] = ACTIONS(4461), + [anon_sym_BSLASHpageref] = ACTIONS(4461), + [anon_sym_BSLASHcref] = ACTIONS(4461), + [anon_sym_BSLASHCref] = ACTIONS(4461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnameCref] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHlabelcref] = ACTIONS(4461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCrefrange] = ACTIONS(4461), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnewlabel] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), + [anon_sym_BSLASHdef] = ACTIONS(4461), + [anon_sym_BSLASHlet] = ACTIONS(4461), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), + [anon_sym_BSLASHgls] = ACTIONS(4461), + [anon_sym_BSLASHGls] = ACTIONS(4461), + [anon_sym_BSLASHGLS] = ACTIONS(4461), + [anon_sym_BSLASHglspl] = ACTIONS(4461), + [anon_sym_BSLASHGlspl] = ACTIONS(4461), + [anon_sym_BSLASHGLSpl] = ACTIONS(4461), + [anon_sym_BSLASHglsdisp] = ACTIONS(4461), + [anon_sym_BSLASHglslink] = ACTIONS(4461), + [anon_sym_BSLASHglstext] = ACTIONS(4461), + [anon_sym_BSLASHGlstext] = ACTIONS(4461), + [anon_sym_BSLASHGLStext] = ACTIONS(4461), + [anon_sym_BSLASHglsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), + [anon_sym_BSLASHglsplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSplural] = ACTIONS(4461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHglsname] = ACTIONS(4461), + [anon_sym_BSLASHGlsname] = ACTIONS(4461), + [anon_sym_BSLASHGLSname] = ACTIONS(4461), + [anon_sym_BSLASHglssymbol] = ACTIONS(4461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), + [anon_sym_BSLASHglsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), + [anon_sym_BSLASHglsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), + [anon_sym_BSLASHglsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), + [anon_sym_BSLASHglsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), + [anon_sym_BSLASHglsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), + [anon_sym_BSLASHnewacronym] = ACTIONS(4461), + [anon_sym_BSLASHacrshort] = ACTIONS(4461), + [anon_sym_BSLASHAcrshort] = ACTIONS(4461), + [anon_sym_BSLASHACRshort] = ACTIONS(4461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), + [anon_sym_BSLASHacrlong] = ACTIONS(4461), + [anon_sym_BSLASHAcrlong] = ACTIONS(4461), + [anon_sym_BSLASHACRlong] = ACTIONS(4461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), + [anon_sym_BSLASHacrfull] = ACTIONS(4461), + [anon_sym_BSLASHAcrfull] = ACTIONS(4461), + [anon_sym_BSLASHACRfull] = ACTIONS(4461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), + [anon_sym_BSLASHacs] = ACTIONS(4461), + [anon_sym_BSLASHAcs] = ACTIONS(4461), + [anon_sym_BSLASHacsp] = ACTIONS(4461), + [anon_sym_BSLASHAcsp] = ACTIONS(4461), + [anon_sym_BSLASHacl] = ACTIONS(4461), + [anon_sym_BSLASHAcl] = ACTIONS(4461), + [anon_sym_BSLASHaclp] = ACTIONS(4461), + [anon_sym_BSLASHAclp] = ACTIONS(4461), + [anon_sym_BSLASHacf] = ACTIONS(4461), + [anon_sym_BSLASHAcf] = ACTIONS(4461), + [anon_sym_BSLASHacfp] = ACTIONS(4461), + [anon_sym_BSLASHAcfp] = ACTIONS(4461), + [anon_sym_BSLASHac] = ACTIONS(4461), + [anon_sym_BSLASHAc] = ACTIONS(4461), + [anon_sym_BSLASHacp] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), + [anon_sym_BSLASHcolor] = ACTIONS(4461), + [anon_sym_BSLASHcolorbox] = ACTIONS(4461), + [anon_sym_BSLASHtextcolor] = ACTIONS(4461), + [anon_sym_BSLASHpagecolor] = ACTIONS(4461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), + [anon_sym_BSLASHtext] = ACTIONS(4461), + [anon_sym_BSLASHintertext] = ACTIONS(4461), + [anon_sym_shortintertext] = ACTIONS(4461), }, - [667] = { - [sym_curly_group] = STATE(707), - [sym_brack_group_text] = STATE(2121), - [sym_command_name] = ACTIONS(4749), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_BSLASHpart] = ACTIONS(4749), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddpart] = ACTIONS(4749), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4747), - [anon_sym_BSLASHchapter] = ACTIONS(4749), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddchap] = ACTIONS(4749), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsection] = ACTIONS(4749), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddsec] = ACTIONS(4749), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubsection] = ACTIONS(4749), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4749), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHparagraph] = ACTIONS(4749), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4749), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4747), - [anon_sym_BSLASHitem] = ACTIONS(4749), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(4749), - [sym_placeholder] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4749), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_CARET] = ACTIONS(4749), - [anon_sym__] = ACTIONS(4749), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_COLON] = ACTIONS(4749), - [anon_sym_SQUOTE] = ACTIONS(4749), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4747), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4747), - [anon_sym_DOLLAR] = ACTIONS(4749), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4747), - [anon_sym_BSLASHbegin] = ACTIONS(4749), - [anon_sym_BSLASHusepackage] = ACTIONS(4749), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4749), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4749), - [anon_sym_BSLASHinclude] = ACTIONS(4749), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4749), - [anon_sym_BSLASHinput] = ACTIONS(4749), - [anon_sym_BSLASHsubfile] = ACTIONS(4749), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4749), - [anon_sym_BSLASHbibliography] = ACTIONS(4749), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4749), - [anon_sym_BSLASHincludesvg] = ACTIONS(4749), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4749), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4749), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4749), - [anon_sym_BSLASHimport] = ACTIONS(4749), - [anon_sym_BSLASHsubimport] = ACTIONS(4749), - [anon_sym_BSLASHinputfrom] = ACTIONS(4749), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4749), - [anon_sym_BSLASHincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHcaption] = ACTIONS(4749), - [anon_sym_BSLASHcite] = ACTIONS(4749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCite] = ACTIONS(4749), - [anon_sym_BSLASHnocite] = ACTIONS(4749), - [anon_sym_BSLASHcitet] = ACTIONS(4749), - [anon_sym_BSLASHcitep] = ACTIONS(4749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteauthor] = ACTIONS(4749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitetitle] = ACTIONS(4749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteyear] = ACTIONS(4749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitedate] = ACTIONS(4749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteurl] = ACTIONS(4749), - [anon_sym_BSLASHfullcite] = ACTIONS(4749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4749), - [anon_sym_BSLASHcitealt] = ACTIONS(4749), - [anon_sym_BSLASHcitealp] = ACTIONS(4749), - [anon_sym_BSLASHcitetext] = ACTIONS(4749), - [anon_sym_BSLASHparencite] = ACTIONS(4749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHParencite] = ACTIONS(4749), - [anon_sym_BSLASHfootcite] = ACTIONS(4749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4749), - [anon_sym_BSLASHtextcite] = ACTIONS(4749), - [anon_sym_BSLASHTextcite] = ACTIONS(4749), - [anon_sym_BSLASHsmartcite] = ACTIONS(4749), - [anon_sym_BSLASHSmartcite] = ACTIONS(4749), - [anon_sym_BSLASHsupercite] = ACTIONS(4749), - [anon_sym_BSLASHautocite] = ACTIONS(4749), - [anon_sym_BSLASHAutocite] = ACTIONS(4749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHvolcite] = ACTIONS(4749), - [anon_sym_BSLASHVolcite] = ACTIONS(4749), - [anon_sym_BSLASHpvolcite] = ACTIONS(4749), - [anon_sym_BSLASHPvolcite] = ACTIONS(4749), - [anon_sym_BSLASHfvolcite] = ACTIONS(4749), - [anon_sym_BSLASHftvolcite] = ACTIONS(4749), - [anon_sym_BSLASHsvolcite] = ACTIONS(4749), - [anon_sym_BSLASHSvolcite] = ACTIONS(4749), - [anon_sym_BSLASHtvolcite] = ACTIONS(4749), - [anon_sym_BSLASHTvolcite] = ACTIONS(4749), - [anon_sym_BSLASHavolcite] = ACTIONS(4749), - [anon_sym_BSLASHAvolcite] = ACTIONS(4749), - [anon_sym_BSLASHnotecite] = ACTIONS(4749), - [anon_sym_BSLASHNotecite] = ACTIONS(4749), - [anon_sym_BSLASHpnotecite] = ACTIONS(4749), - [anon_sym_BSLASHPnotecite] = ACTIONS(4749), - [anon_sym_BSLASHfnotecite] = ACTIONS(4749), - [anon_sym_BSLASHlabel] = ACTIONS(4749), - [anon_sym_BSLASHref] = ACTIONS(4749), - [anon_sym_BSLASHeqref] = ACTIONS(4749), - [anon_sym_BSLASHvref] = ACTIONS(4749), - [anon_sym_BSLASHVref] = ACTIONS(4749), - [anon_sym_BSLASHautoref] = ACTIONS(4749), - [anon_sym_BSLASHpageref] = ACTIONS(4749), - [anon_sym_BSLASHcref] = ACTIONS(4749), - [anon_sym_BSLASHCref] = ACTIONS(4749), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnameCref] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHlabelcref] = ACTIONS(4749), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCrefrange] = ACTIONS(4749), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnewlabel] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4749), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4749), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4749), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4747), - [anon_sym_BSLASHdef] = ACTIONS(4749), - [anon_sym_BSLASHlet] = ACTIONS(4749), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4749), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4749), - [anon_sym_BSLASHgls] = ACTIONS(4749), - [anon_sym_BSLASHGls] = ACTIONS(4749), - [anon_sym_BSLASHGLS] = ACTIONS(4749), - [anon_sym_BSLASHglspl] = ACTIONS(4749), - [anon_sym_BSLASHGlspl] = ACTIONS(4749), - [anon_sym_BSLASHGLSpl] = ACTIONS(4749), - [anon_sym_BSLASHglsdisp] = ACTIONS(4749), - [anon_sym_BSLASHglslink] = ACTIONS(4749), - [anon_sym_BSLASHglstext] = ACTIONS(4749), - [anon_sym_BSLASHGlstext] = ACTIONS(4749), - [anon_sym_BSLASHGLStext] = ACTIONS(4749), - [anon_sym_BSLASHglsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4749), - [anon_sym_BSLASHglsplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSplural] = ACTIONS(4749), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHglsname] = ACTIONS(4749), - [anon_sym_BSLASHGlsname] = ACTIONS(4749), - [anon_sym_BSLASHGLSname] = ACTIONS(4749), - [anon_sym_BSLASHglssymbol] = ACTIONS(4749), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4749), - [anon_sym_BSLASHglsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4749), - [anon_sym_BSLASHglsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4749), - [anon_sym_BSLASHglsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4749), - [anon_sym_BSLASHglsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4749), - [anon_sym_BSLASHglsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4749), - [anon_sym_BSLASHnewacronym] = ACTIONS(4749), - [anon_sym_BSLASHacrshort] = ACTIONS(4749), - [anon_sym_BSLASHAcrshort] = ACTIONS(4749), - [anon_sym_BSLASHACRshort] = ACTIONS(4749), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4749), - [anon_sym_BSLASHacrlong] = ACTIONS(4749), - [anon_sym_BSLASHAcrlong] = ACTIONS(4749), - [anon_sym_BSLASHACRlong] = ACTIONS(4749), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4749), - [anon_sym_BSLASHacrfull] = ACTIONS(4749), - [anon_sym_BSLASHAcrfull] = ACTIONS(4749), - [anon_sym_BSLASHACRfull] = ACTIONS(4749), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4749), - [anon_sym_BSLASHacs] = ACTIONS(4749), - [anon_sym_BSLASHAcs] = ACTIONS(4749), - [anon_sym_BSLASHacsp] = ACTIONS(4749), - [anon_sym_BSLASHAcsp] = ACTIONS(4749), - [anon_sym_BSLASHacl] = ACTIONS(4749), - [anon_sym_BSLASHAcl] = ACTIONS(4749), - [anon_sym_BSLASHaclp] = ACTIONS(4749), - [anon_sym_BSLASHAclp] = ACTIONS(4749), - [anon_sym_BSLASHacf] = ACTIONS(4749), - [anon_sym_BSLASHAcf] = ACTIONS(4749), - [anon_sym_BSLASHacfp] = ACTIONS(4749), - [anon_sym_BSLASHAcfp] = ACTIONS(4749), - [anon_sym_BSLASHac] = ACTIONS(4749), - [anon_sym_BSLASHAc] = ACTIONS(4749), - [anon_sym_BSLASHacp] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4749), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4749), - [anon_sym_BSLASHcolor] = ACTIONS(4749), - [anon_sym_BSLASHcolorbox] = ACTIONS(4749), - [anon_sym_BSLASHtextcolor] = ACTIONS(4749), - [anon_sym_BSLASHpagecolor] = ACTIONS(4749), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4749), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4749), + [532] = { + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [668] = { - [sym_command_name] = ACTIONS(4697), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4697), - [anon_sym_BSLASHfi] = ACTIONS(4931), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_RPAREN] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_RBRACK] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_BSLASHpart] = ACTIONS(4697), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddpart] = ACTIONS(4697), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4695), - [anon_sym_BSLASHchapter] = ACTIONS(4697), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddchap] = ACTIONS(4697), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsection] = ACTIONS(4697), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddsec] = ACTIONS(4697), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubsection] = ACTIONS(4697), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHparagraph] = ACTIONS(4697), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4695), - [anon_sym_BSLASHitem] = ACTIONS(4697), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4695), - [sym_word] = ACTIONS(4697), - [sym_placeholder] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_CARET] = ACTIONS(4697), - [anon_sym__] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4697), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4695), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4695), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4695), - [anon_sym_BSLASHbegin] = ACTIONS(4697), - [anon_sym_BSLASHusepackage] = ACTIONS(4697), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4697), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4697), - [anon_sym_BSLASHinclude] = ACTIONS(4697), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4697), - [anon_sym_BSLASHinput] = ACTIONS(4697), - [anon_sym_BSLASHsubfile] = ACTIONS(4697), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4697), - [anon_sym_BSLASHbibliography] = ACTIONS(4697), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4697), - [anon_sym_BSLASHincludesvg] = ACTIONS(4697), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4697), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4697), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4697), - [anon_sym_BSLASHimport] = ACTIONS(4697), - [anon_sym_BSLASHsubimport] = ACTIONS(4697), - [anon_sym_BSLASHinputfrom] = ACTIONS(4697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4697), - [anon_sym_BSLASHincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHcaption] = ACTIONS(4697), - [anon_sym_BSLASHcite] = ACTIONS(4697), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCite] = ACTIONS(4697), - [anon_sym_BSLASHnocite] = ACTIONS(4697), - [anon_sym_BSLASHcitet] = ACTIONS(4697), - [anon_sym_BSLASHcitep] = ACTIONS(4697), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteyear] = ACTIONS(4697), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitedate] = ACTIONS(4697), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteurl] = ACTIONS(4697), - [anon_sym_BSLASHfullcite] = ACTIONS(4697), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4697), - [anon_sym_BSLASHcitealt] = ACTIONS(4697), - [anon_sym_BSLASHcitealp] = ACTIONS(4697), - [anon_sym_BSLASHcitetext] = ACTIONS(4697), - [anon_sym_BSLASHparencite] = ACTIONS(4697), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHParencite] = ACTIONS(4697), - [anon_sym_BSLASHfootcite] = ACTIONS(4697), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4697), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4697), - [anon_sym_BSLASHtextcite] = ACTIONS(4697), - [anon_sym_BSLASHTextcite] = ACTIONS(4697), - [anon_sym_BSLASHsmartcite] = ACTIONS(4697), - [anon_sym_BSLASHSmartcite] = ACTIONS(4697), - [anon_sym_BSLASHsupercite] = ACTIONS(4697), - [anon_sym_BSLASHautocite] = ACTIONS(4697), - [anon_sym_BSLASHAutocite] = ACTIONS(4697), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHvolcite] = ACTIONS(4697), - [anon_sym_BSLASHVolcite] = ACTIONS(4697), - [anon_sym_BSLASHpvolcite] = ACTIONS(4697), - [anon_sym_BSLASHPvolcite] = ACTIONS(4697), - [anon_sym_BSLASHfvolcite] = ACTIONS(4697), - [anon_sym_BSLASHftvolcite] = ACTIONS(4697), - [anon_sym_BSLASHsvolcite] = ACTIONS(4697), - [anon_sym_BSLASHSvolcite] = ACTIONS(4697), - [anon_sym_BSLASHtvolcite] = ACTIONS(4697), - [anon_sym_BSLASHTvolcite] = ACTIONS(4697), - [anon_sym_BSLASHavolcite] = ACTIONS(4697), - [anon_sym_BSLASHAvolcite] = ACTIONS(4697), - [anon_sym_BSLASHnotecite] = ACTIONS(4697), - [anon_sym_BSLASHNotecite] = ACTIONS(4697), - [anon_sym_BSLASHpnotecite] = ACTIONS(4697), - [anon_sym_BSLASHPnotecite] = ACTIONS(4697), - [anon_sym_BSLASHfnotecite] = ACTIONS(4697), - [anon_sym_BSLASHlabel] = ACTIONS(4697), - [anon_sym_BSLASHref] = ACTIONS(4697), - [anon_sym_BSLASHeqref] = ACTIONS(4697), - [anon_sym_BSLASHvref] = ACTIONS(4697), - [anon_sym_BSLASHVref] = ACTIONS(4697), - [anon_sym_BSLASHautoref] = ACTIONS(4697), - [anon_sym_BSLASHpageref] = ACTIONS(4697), - [anon_sym_BSLASHcref] = ACTIONS(4697), - [anon_sym_BSLASHCref] = ACTIONS(4697), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnameCref] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHlabelcref] = ACTIONS(4697), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnewlabel] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4695), - [anon_sym_BSLASHdef] = ACTIONS(4697), - [anon_sym_BSLASHlet] = ACTIONS(4697), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4697), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4697), - [anon_sym_BSLASHgls] = ACTIONS(4697), - [anon_sym_BSLASHGls] = ACTIONS(4697), - [anon_sym_BSLASHGLS] = ACTIONS(4697), - [anon_sym_BSLASHglspl] = ACTIONS(4697), - [anon_sym_BSLASHGlspl] = ACTIONS(4697), - [anon_sym_BSLASHGLSpl] = ACTIONS(4697), - [anon_sym_BSLASHglsdisp] = ACTIONS(4697), - [anon_sym_BSLASHglslink] = ACTIONS(4697), - [anon_sym_BSLASHglstext] = ACTIONS(4697), - [anon_sym_BSLASHGlstext] = ACTIONS(4697), - [anon_sym_BSLASHGLStext] = ACTIONS(4697), - [anon_sym_BSLASHglsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4697), - [anon_sym_BSLASHglsplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSplural] = ACTIONS(4697), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHglsname] = ACTIONS(4697), - [anon_sym_BSLASHGlsname] = ACTIONS(4697), - [anon_sym_BSLASHGLSname] = ACTIONS(4697), - [anon_sym_BSLASHglssymbol] = ACTIONS(4697), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4697), - [anon_sym_BSLASHglsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4697), - [anon_sym_BSLASHglsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4697), - [anon_sym_BSLASHglsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4697), - [anon_sym_BSLASHglsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4697), - [anon_sym_BSLASHglsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4697), - [anon_sym_BSLASHnewacronym] = ACTIONS(4697), - [anon_sym_BSLASHacrshort] = ACTIONS(4697), - [anon_sym_BSLASHAcrshort] = ACTIONS(4697), - [anon_sym_BSLASHACRshort] = ACTIONS(4697), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4697), - [anon_sym_BSLASHacrlong] = ACTIONS(4697), - [anon_sym_BSLASHAcrlong] = ACTIONS(4697), - [anon_sym_BSLASHACRlong] = ACTIONS(4697), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4697), - [anon_sym_BSLASHacrfull] = ACTIONS(4697), - [anon_sym_BSLASHAcrfull] = ACTIONS(4697), - [anon_sym_BSLASHACRfull] = ACTIONS(4697), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4697), - [anon_sym_BSLASHacs] = ACTIONS(4697), - [anon_sym_BSLASHAcs] = ACTIONS(4697), - [anon_sym_BSLASHacsp] = ACTIONS(4697), - [anon_sym_BSLASHAcsp] = ACTIONS(4697), - [anon_sym_BSLASHacl] = ACTIONS(4697), - [anon_sym_BSLASHAcl] = ACTIONS(4697), - [anon_sym_BSLASHaclp] = ACTIONS(4697), - [anon_sym_BSLASHAclp] = ACTIONS(4697), - [anon_sym_BSLASHacf] = ACTIONS(4697), - [anon_sym_BSLASHAcf] = ACTIONS(4697), - [anon_sym_BSLASHacfp] = ACTIONS(4697), - [anon_sym_BSLASHAcfp] = ACTIONS(4697), - [anon_sym_BSLASHac] = ACTIONS(4697), - [anon_sym_BSLASHAc] = ACTIONS(4697), - [anon_sym_BSLASHacp] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4697), - [anon_sym_BSLASHcolor] = ACTIONS(4697), - [anon_sym_BSLASHcolorbox] = ACTIONS(4697), - [anon_sym_BSLASHtextcolor] = ACTIONS(4697), - [anon_sym_BSLASHpagecolor] = ACTIONS(4697), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4697), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4697), - [sym__trivia_raw_fi] = ACTIONS(4933), + [533] = { + [sym__enum_itemdeclaration] = STATE(204), + [sym_enum_item] = STATE(386), + [aux_sym__section_repeat8] = STATE(386), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(219), + [anon_sym_BSLASHitem_STAR] = ACTIONS(221), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHend] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [669] = { - [sym_curly_group] = STATE(678), - [sym_brack_group_text] = STATE(2087), - [sym_command_name] = ACTIONS(4587), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4585), - [anon_sym_RPAREN] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4585), - [anon_sym_COMMA] = ACTIONS(4585), - [anon_sym_EQ] = ACTIONS(4585), - [anon_sym_BSLASHpart] = ACTIONS(4587), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddpart] = ACTIONS(4587), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4585), - [anon_sym_BSLASHchapter] = ACTIONS(4587), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddchap] = ACTIONS(4587), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsection] = ACTIONS(4587), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHaddsec] = ACTIONS(4587), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubsection] = ACTIONS(4587), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4587), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4585), - [anon_sym_BSLASHparagraph] = ACTIONS(4587), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4585), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4587), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4585), - [anon_sym_BSLASHitem] = ACTIONS(4587), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4585), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(4587), - [sym_placeholder] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_CARET] = ACTIONS(4587), - [anon_sym__] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4585), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4585), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4585), - [anon_sym_BSLASHbegin] = ACTIONS(4587), - [anon_sym_BSLASHusepackage] = ACTIONS(4587), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4587), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4587), - [anon_sym_BSLASHinclude] = ACTIONS(4587), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4587), - [anon_sym_BSLASHinput] = ACTIONS(4587), - [anon_sym_BSLASHsubfile] = ACTIONS(4587), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4587), - [anon_sym_BSLASHbibliography] = ACTIONS(4587), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4587), - [anon_sym_BSLASHincludesvg] = ACTIONS(4587), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4587), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4587), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4587), - [anon_sym_BSLASHimport] = ACTIONS(4587), - [anon_sym_BSLASHsubimport] = ACTIONS(4587), - [anon_sym_BSLASHinputfrom] = ACTIONS(4587), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4587), - [anon_sym_BSLASHincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHcaption] = ACTIONS(4587), - [anon_sym_BSLASHcite] = ACTIONS(4587), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCite] = ACTIONS(4587), - [anon_sym_BSLASHnocite] = ACTIONS(4587), - [anon_sym_BSLASHcitet] = ACTIONS(4587), - [anon_sym_BSLASHcitep] = ACTIONS(4587), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteauthor] = ACTIONS(4587), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4587), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitetitle] = ACTIONS(4587), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteyear] = ACTIONS(4587), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitedate] = ACTIONS(4587), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteurl] = ACTIONS(4587), - [anon_sym_BSLASHfullcite] = ACTIONS(4587), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4587), - [anon_sym_BSLASHcitealt] = ACTIONS(4587), - [anon_sym_BSLASHcitealp] = ACTIONS(4587), - [anon_sym_BSLASHcitetext] = ACTIONS(4587), - [anon_sym_BSLASHparencite] = ACTIONS(4587), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHParencite] = ACTIONS(4587), - [anon_sym_BSLASHfootcite] = ACTIONS(4587), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4587), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4587), - [anon_sym_BSLASHtextcite] = ACTIONS(4587), - [anon_sym_BSLASHTextcite] = ACTIONS(4587), - [anon_sym_BSLASHsmartcite] = ACTIONS(4587), - [anon_sym_BSLASHSmartcite] = ACTIONS(4587), - [anon_sym_BSLASHsupercite] = ACTIONS(4587), - [anon_sym_BSLASHautocite] = ACTIONS(4587), - [anon_sym_BSLASHAutocite] = ACTIONS(4587), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHvolcite] = ACTIONS(4587), - [anon_sym_BSLASHVolcite] = ACTIONS(4587), - [anon_sym_BSLASHpvolcite] = ACTIONS(4587), - [anon_sym_BSLASHPvolcite] = ACTIONS(4587), - [anon_sym_BSLASHfvolcite] = ACTIONS(4587), - [anon_sym_BSLASHftvolcite] = ACTIONS(4587), - [anon_sym_BSLASHsvolcite] = ACTIONS(4587), - [anon_sym_BSLASHSvolcite] = ACTIONS(4587), - [anon_sym_BSLASHtvolcite] = ACTIONS(4587), - [anon_sym_BSLASHTvolcite] = ACTIONS(4587), - [anon_sym_BSLASHavolcite] = ACTIONS(4587), - [anon_sym_BSLASHAvolcite] = ACTIONS(4587), - [anon_sym_BSLASHnotecite] = ACTIONS(4587), - [anon_sym_BSLASHNotecite] = ACTIONS(4587), - [anon_sym_BSLASHpnotecite] = ACTIONS(4587), - [anon_sym_BSLASHPnotecite] = ACTIONS(4587), - [anon_sym_BSLASHfnotecite] = ACTIONS(4587), - [anon_sym_BSLASHlabel] = ACTIONS(4587), - [anon_sym_BSLASHref] = ACTIONS(4587), - [anon_sym_BSLASHeqref] = ACTIONS(4587), - [anon_sym_BSLASHvref] = ACTIONS(4587), - [anon_sym_BSLASHVref] = ACTIONS(4587), - [anon_sym_BSLASHautoref] = ACTIONS(4587), - [anon_sym_BSLASHpageref] = ACTIONS(4587), - [anon_sym_BSLASHcref] = ACTIONS(4587), - [anon_sym_BSLASHCref] = ACTIONS(4587), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnameCref] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHlabelcref] = ACTIONS(4587), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCrefrange] = ACTIONS(4587), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnewlabel] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4587), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4587), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4587), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4585), - [anon_sym_BSLASHdef] = ACTIONS(4587), - [anon_sym_BSLASHlet] = ACTIONS(4587), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4587), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4587), - [anon_sym_BSLASHGls] = ACTIONS(4587), - [anon_sym_BSLASHGLS] = ACTIONS(4587), - [anon_sym_BSLASHglspl] = ACTIONS(4587), - [anon_sym_BSLASHGlspl] = ACTIONS(4587), - [anon_sym_BSLASHGLSpl] = ACTIONS(4587), - [anon_sym_BSLASHglsdisp] = ACTIONS(4587), - [anon_sym_BSLASHglslink] = ACTIONS(4587), - [anon_sym_BSLASHglstext] = ACTIONS(4587), - [anon_sym_BSLASHGlstext] = ACTIONS(4587), - [anon_sym_BSLASHGLStext] = ACTIONS(4587), - [anon_sym_BSLASHglsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4587), - [anon_sym_BSLASHglsplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSplural] = ACTIONS(4587), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHglsname] = ACTIONS(4587), - [anon_sym_BSLASHGlsname] = ACTIONS(4587), - [anon_sym_BSLASHGLSname] = ACTIONS(4587), - [anon_sym_BSLASHglssymbol] = ACTIONS(4587), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4587), - [anon_sym_BSLASHglsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4587), - [anon_sym_BSLASHglsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4587), - [anon_sym_BSLASHglsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4587), - [anon_sym_BSLASHglsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4587), - [anon_sym_BSLASHglsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4587), - [anon_sym_BSLASHnewacronym] = ACTIONS(4587), - [anon_sym_BSLASHacrshort] = ACTIONS(4587), - [anon_sym_BSLASHAcrshort] = ACTIONS(4587), - [anon_sym_BSLASHACRshort] = ACTIONS(4587), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4587), - [anon_sym_BSLASHacrlong] = ACTIONS(4587), - [anon_sym_BSLASHAcrlong] = ACTIONS(4587), - [anon_sym_BSLASHACRlong] = ACTIONS(4587), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4587), - [anon_sym_BSLASHacrfull] = ACTIONS(4587), - [anon_sym_BSLASHAcrfull] = ACTIONS(4587), - [anon_sym_BSLASHACRfull] = ACTIONS(4587), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4587), - [anon_sym_BSLASHacs] = ACTIONS(4587), - [anon_sym_BSLASHAcs] = ACTIONS(4587), - [anon_sym_BSLASHacsp] = ACTIONS(4587), - [anon_sym_BSLASHAcsp] = ACTIONS(4587), - [anon_sym_BSLASHacl] = ACTIONS(4587), - [anon_sym_BSLASHAcl] = ACTIONS(4587), - [anon_sym_BSLASHaclp] = ACTIONS(4587), - [anon_sym_BSLASHAclp] = ACTIONS(4587), - [anon_sym_BSLASHacf] = ACTIONS(4587), - [anon_sym_BSLASHAcf] = ACTIONS(4587), - [anon_sym_BSLASHacfp] = ACTIONS(4587), - [anon_sym_BSLASHAcfp] = ACTIONS(4587), - [anon_sym_BSLASHac] = ACTIONS(4587), - [anon_sym_BSLASHAc] = ACTIONS(4587), - [anon_sym_BSLASHacp] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4587), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4587), - [anon_sym_BSLASHcolor] = ACTIONS(4587), - [anon_sym_BSLASHcolorbox] = ACTIONS(4587), - [anon_sym_BSLASHtextcolor] = ACTIONS(4587), - [anon_sym_BSLASHpagecolor] = ACTIONS(4587), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4587), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4587), + [534] = { + [sym__subparagraph_declaration] = STATE(189), + [sym_subparagraph] = STATE(388), + [aux_sym__section_repeat7] = STATE(388), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(215), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(217), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHend] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [670] = { - [sym_curly_group] = STATE(769), - [sym_brack_group_text] = STATE(1867), - [sym_command_name] = ACTIONS(4749), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_BSLASHpart] = ACTIONS(4749), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddpart] = ACTIONS(4749), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4747), - [anon_sym_BSLASHchapter] = ACTIONS(4749), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddchap] = ACTIONS(4749), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsection] = ACTIONS(4749), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHaddsec] = ACTIONS(4749), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubsection] = ACTIONS(4749), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4749), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4747), - [anon_sym_BSLASHparagraph] = ACTIONS(4749), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4747), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4749), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4747), - [anon_sym_BSLASHitem] = ACTIONS(4749), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(4749), - [sym_placeholder] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4749), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_CARET] = ACTIONS(4749), - [anon_sym__] = ACTIONS(4749), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_COLON] = ACTIONS(4749), - [anon_sym_SQUOTE] = ACTIONS(4749), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4747), - [anon_sym_DOLLAR] = ACTIONS(4749), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4747), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4747), - [anon_sym_BSLASHbegin] = ACTIONS(4749), - [anon_sym_BSLASHusepackage] = ACTIONS(4749), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4749), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4749), - [anon_sym_BSLASHinclude] = ACTIONS(4749), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4749), - [anon_sym_BSLASHinput] = ACTIONS(4749), - [anon_sym_BSLASHsubfile] = ACTIONS(4749), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4749), - [anon_sym_BSLASHbibliography] = ACTIONS(4749), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4749), - [anon_sym_BSLASHincludesvg] = ACTIONS(4749), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4749), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4749), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4749), - [anon_sym_BSLASHimport] = ACTIONS(4749), - [anon_sym_BSLASHsubimport] = ACTIONS(4749), - [anon_sym_BSLASHinputfrom] = ACTIONS(4749), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4749), - [anon_sym_BSLASHincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHcaption] = ACTIONS(4749), - [anon_sym_BSLASHcite] = ACTIONS(4749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCite] = ACTIONS(4749), - [anon_sym_BSLASHnocite] = ACTIONS(4749), - [anon_sym_BSLASHcitet] = ACTIONS(4749), - [anon_sym_BSLASHcitep] = ACTIONS(4749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteauthor] = ACTIONS(4749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitetitle] = ACTIONS(4749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteyear] = ACTIONS(4749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitedate] = ACTIONS(4749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteurl] = ACTIONS(4749), - [anon_sym_BSLASHfullcite] = ACTIONS(4749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4749), - [anon_sym_BSLASHcitealt] = ACTIONS(4749), - [anon_sym_BSLASHcitealp] = ACTIONS(4749), - [anon_sym_BSLASHcitetext] = ACTIONS(4749), - [anon_sym_BSLASHparencite] = ACTIONS(4749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHParencite] = ACTIONS(4749), - [anon_sym_BSLASHfootcite] = ACTIONS(4749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4749), - [anon_sym_BSLASHtextcite] = ACTIONS(4749), - [anon_sym_BSLASHTextcite] = ACTIONS(4749), - [anon_sym_BSLASHsmartcite] = ACTIONS(4749), - [anon_sym_BSLASHSmartcite] = ACTIONS(4749), - [anon_sym_BSLASHsupercite] = ACTIONS(4749), - [anon_sym_BSLASHautocite] = ACTIONS(4749), - [anon_sym_BSLASHAutocite] = ACTIONS(4749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHvolcite] = ACTIONS(4749), - [anon_sym_BSLASHVolcite] = ACTIONS(4749), - [anon_sym_BSLASHpvolcite] = ACTIONS(4749), - [anon_sym_BSLASHPvolcite] = ACTIONS(4749), - [anon_sym_BSLASHfvolcite] = ACTIONS(4749), - [anon_sym_BSLASHftvolcite] = ACTIONS(4749), - [anon_sym_BSLASHsvolcite] = ACTIONS(4749), - [anon_sym_BSLASHSvolcite] = ACTIONS(4749), - [anon_sym_BSLASHtvolcite] = ACTIONS(4749), - [anon_sym_BSLASHTvolcite] = ACTIONS(4749), - [anon_sym_BSLASHavolcite] = ACTIONS(4749), - [anon_sym_BSLASHAvolcite] = ACTIONS(4749), - [anon_sym_BSLASHnotecite] = ACTIONS(4749), - [anon_sym_BSLASHNotecite] = ACTIONS(4749), - [anon_sym_BSLASHpnotecite] = ACTIONS(4749), - [anon_sym_BSLASHPnotecite] = ACTIONS(4749), - [anon_sym_BSLASHfnotecite] = ACTIONS(4749), - [anon_sym_BSLASHlabel] = ACTIONS(4749), - [anon_sym_BSLASHref] = ACTIONS(4749), - [anon_sym_BSLASHeqref] = ACTIONS(4749), - [anon_sym_BSLASHvref] = ACTIONS(4749), - [anon_sym_BSLASHVref] = ACTIONS(4749), - [anon_sym_BSLASHautoref] = ACTIONS(4749), - [anon_sym_BSLASHpageref] = ACTIONS(4749), - [anon_sym_BSLASHcref] = ACTIONS(4749), - [anon_sym_BSLASHCref] = ACTIONS(4749), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnameCref] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHlabelcref] = ACTIONS(4749), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCrefrange] = ACTIONS(4749), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnewlabel] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4749), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4749), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4749), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4747), - [anon_sym_BSLASHdef] = ACTIONS(4749), - [anon_sym_BSLASHlet] = ACTIONS(4749), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4749), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4749), - [anon_sym_BSLASHgls] = ACTIONS(4749), - [anon_sym_BSLASHGls] = ACTIONS(4749), - [anon_sym_BSLASHGLS] = ACTIONS(4749), - [anon_sym_BSLASHglspl] = ACTIONS(4749), - [anon_sym_BSLASHGlspl] = ACTIONS(4749), - [anon_sym_BSLASHGLSpl] = ACTIONS(4749), - [anon_sym_BSLASHglsdisp] = ACTIONS(4749), - [anon_sym_BSLASHglslink] = ACTIONS(4749), - [anon_sym_BSLASHglstext] = ACTIONS(4749), - [anon_sym_BSLASHGlstext] = ACTIONS(4749), - [anon_sym_BSLASHGLStext] = ACTIONS(4749), - [anon_sym_BSLASHglsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4749), - [anon_sym_BSLASHglsplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSplural] = ACTIONS(4749), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHglsname] = ACTIONS(4749), - [anon_sym_BSLASHGlsname] = ACTIONS(4749), - [anon_sym_BSLASHGLSname] = ACTIONS(4749), - [anon_sym_BSLASHglssymbol] = ACTIONS(4749), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4749), - [anon_sym_BSLASHglsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4749), - [anon_sym_BSLASHglsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4749), - [anon_sym_BSLASHglsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4749), - [anon_sym_BSLASHglsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4749), - [anon_sym_BSLASHglsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4749), - [anon_sym_BSLASHnewacronym] = ACTIONS(4749), - [anon_sym_BSLASHacrshort] = ACTIONS(4749), - [anon_sym_BSLASHAcrshort] = ACTIONS(4749), - [anon_sym_BSLASHACRshort] = ACTIONS(4749), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4749), - [anon_sym_BSLASHacrlong] = ACTIONS(4749), - [anon_sym_BSLASHAcrlong] = ACTIONS(4749), - [anon_sym_BSLASHACRlong] = ACTIONS(4749), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4749), - [anon_sym_BSLASHacrfull] = ACTIONS(4749), - [anon_sym_BSLASHAcrfull] = ACTIONS(4749), - [anon_sym_BSLASHACRfull] = ACTIONS(4749), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4749), - [anon_sym_BSLASHacs] = ACTIONS(4749), - [anon_sym_BSLASHAcs] = ACTIONS(4749), - [anon_sym_BSLASHacsp] = ACTIONS(4749), - [anon_sym_BSLASHAcsp] = ACTIONS(4749), - [anon_sym_BSLASHacl] = ACTIONS(4749), - [anon_sym_BSLASHAcl] = ACTIONS(4749), - [anon_sym_BSLASHaclp] = ACTIONS(4749), - [anon_sym_BSLASHAclp] = ACTIONS(4749), - [anon_sym_BSLASHacf] = ACTIONS(4749), - [anon_sym_BSLASHAcf] = ACTIONS(4749), - [anon_sym_BSLASHacfp] = ACTIONS(4749), - [anon_sym_BSLASHAcfp] = ACTIONS(4749), - [anon_sym_BSLASHac] = ACTIONS(4749), - [anon_sym_BSLASHAc] = ACTIONS(4749), - [anon_sym_BSLASHacp] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4749), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4749), - [anon_sym_BSLASHcolor] = ACTIONS(4749), - [anon_sym_BSLASHcolorbox] = ACTIONS(4749), - [anon_sym_BSLASHtextcolor] = ACTIONS(4749), - [anon_sym_BSLASHpagecolor] = ACTIONS(4749), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4749), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4749), + [535] = { + [sym__paragraph_declaration] = STATE(179), + [sym_paragraph] = STATE(389), + [aux_sym__section_repeat6] = STATE(389), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(211), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(213), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHend] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [671] = { - [sym_command_name] = ACTIONS(4697), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4697), - [anon_sym_BSLASHfi] = ACTIONS(4935), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_RPAREN] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_RBRACK] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_BSLASHpart] = ACTIONS(4697), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddpart] = ACTIONS(4697), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4695), - [anon_sym_BSLASHchapter] = ACTIONS(4697), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddchap] = ACTIONS(4697), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsection] = ACTIONS(4697), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHaddsec] = ACTIONS(4697), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubsection] = ACTIONS(4697), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4697), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4695), - [anon_sym_BSLASHparagraph] = ACTIONS(4697), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4695), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4697), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4695), - [anon_sym_BSLASHitem] = ACTIONS(4697), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4695), - [sym_word] = ACTIONS(4697), - [sym_placeholder] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_CARET] = ACTIONS(4697), - [anon_sym__] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4697), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4695), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4695), - [anon_sym_BSLASHbegin] = ACTIONS(4697), - [anon_sym_BSLASHend] = ACTIONS(4697), - [anon_sym_BSLASHusepackage] = ACTIONS(4697), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4697), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4697), - [anon_sym_BSLASHinclude] = ACTIONS(4697), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4697), - [anon_sym_BSLASHinput] = ACTIONS(4697), - [anon_sym_BSLASHsubfile] = ACTIONS(4697), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4697), - [anon_sym_BSLASHbibliography] = ACTIONS(4697), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4697), - [anon_sym_BSLASHincludesvg] = ACTIONS(4697), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4697), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4697), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4697), - [anon_sym_BSLASHimport] = ACTIONS(4697), - [anon_sym_BSLASHsubimport] = ACTIONS(4697), - [anon_sym_BSLASHinputfrom] = ACTIONS(4697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4697), - [anon_sym_BSLASHincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHcaption] = ACTIONS(4697), - [anon_sym_BSLASHcite] = ACTIONS(4697), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCite] = ACTIONS(4697), - [anon_sym_BSLASHnocite] = ACTIONS(4697), - [anon_sym_BSLASHcitet] = ACTIONS(4697), - [anon_sym_BSLASHcitep] = ACTIONS(4697), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteyear] = ACTIONS(4697), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitedate] = ACTIONS(4697), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteurl] = ACTIONS(4697), - [anon_sym_BSLASHfullcite] = ACTIONS(4697), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4697), - [anon_sym_BSLASHcitealt] = ACTIONS(4697), - [anon_sym_BSLASHcitealp] = ACTIONS(4697), - [anon_sym_BSLASHcitetext] = ACTIONS(4697), - [anon_sym_BSLASHparencite] = ACTIONS(4697), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHParencite] = ACTIONS(4697), - [anon_sym_BSLASHfootcite] = ACTIONS(4697), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4697), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4697), - [anon_sym_BSLASHtextcite] = ACTIONS(4697), - [anon_sym_BSLASHTextcite] = ACTIONS(4697), - [anon_sym_BSLASHsmartcite] = ACTIONS(4697), - [anon_sym_BSLASHSmartcite] = ACTIONS(4697), - [anon_sym_BSLASHsupercite] = ACTIONS(4697), - [anon_sym_BSLASHautocite] = ACTIONS(4697), - [anon_sym_BSLASHAutocite] = ACTIONS(4697), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHvolcite] = ACTIONS(4697), - [anon_sym_BSLASHVolcite] = ACTIONS(4697), - [anon_sym_BSLASHpvolcite] = ACTIONS(4697), - [anon_sym_BSLASHPvolcite] = ACTIONS(4697), - [anon_sym_BSLASHfvolcite] = ACTIONS(4697), - [anon_sym_BSLASHftvolcite] = ACTIONS(4697), - [anon_sym_BSLASHsvolcite] = ACTIONS(4697), - [anon_sym_BSLASHSvolcite] = ACTIONS(4697), - [anon_sym_BSLASHtvolcite] = ACTIONS(4697), - [anon_sym_BSLASHTvolcite] = ACTIONS(4697), - [anon_sym_BSLASHavolcite] = ACTIONS(4697), - [anon_sym_BSLASHAvolcite] = ACTIONS(4697), - [anon_sym_BSLASHnotecite] = ACTIONS(4697), - [anon_sym_BSLASHNotecite] = ACTIONS(4697), - [anon_sym_BSLASHpnotecite] = ACTIONS(4697), - [anon_sym_BSLASHPnotecite] = ACTIONS(4697), - [anon_sym_BSLASHfnotecite] = ACTIONS(4697), - [anon_sym_BSLASHlabel] = ACTIONS(4697), - [anon_sym_BSLASHref] = ACTIONS(4697), - [anon_sym_BSLASHeqref] = ACTIONS(4697), - [anon_sym_BSLASHvref] = ACTIONS(4697), - [anon_sym_BSLASHVref] = ACTIONS(4697), - [anon_sym_BSLASHautoref] = ACTIONS(4697), - [anon_sym_BSLASHpageref] = ACTIONS(4697), - [anon_sym_BSLASHcref] = ACTIONS(4697), - [anon_sym_BSLASHCref] = ACTIONS(4697), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnameCref] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHlabelcref] = ACTIONS(4697), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnewlabel] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4695), - [anon_sym_BSLASHdef] = ACTIONS(4697), - [anon_sym_BSLASHlet] = ACTIONS(4697), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4697), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4697), - [anon_sym_BSLASHgls] = ACTIONS(4697), - [anon_sym_BSLASHGls] = ACTIONS(4697), - [anon_sym_BSLASHGLS] = ACTIONS(4697), - [anon_sym_BSLASHglspl] = ACTIONS(4697), - [anon_sym_BSLASHGlspl] = ACTIONS(4697), - [anon_sym_BSLASHGLSpl] = ACTIONS(4697), - [anon_sym_BSLASHglsdisp] = ACTIONS(4697), - [anon_sym_BSLASHglslink] = ACTIONS(4697), - [anon_sym_BSLASHglstext] = ACTIONS(4697), - [anon_sym_BSLASHGlstext] = ACTIONS(4697), - [anon_sym_BSLASHGLStext] = ACTIONS(4697), - [anon_sym_BSLASHglsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4697), - [anon_sym_BSLASHglsplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSplural] = ACTIONS(4697), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHglsname] = ACTIONS(4697), - [anon_sym_BSLASHGlsname] = ACTIONS(4697), - [anon_sym_BSLASHGLSname] = ACTIONS(4697), - [anon_sym_BSLASHglssymbol] = ACTIONS(4697), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4697), - [anon_sym_BSLASHglsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4697), - [anon_sym_BSLASHglsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4697), - [anon_sym_BSLASHglsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4697), - [anon_sym_BSLASHglsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4697), - [anon_sym_BSLASHglsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4697), - [anon_sym_BSLASHnewacronym] = ACTIONS(4697), - [anon_sym_BSLASHacrshort] = ACTIONS(4697), - [anon_sym_BSLASHAcrshort] = ACTIONS(4697), - [anon_sym_BSLASHACRshort] = ACTIONS(4697), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4697), - [anon_sym_BSLASHacrlong] = ACTIONS(4697), - [anon_sym_BSLASHAcrlong] = ACTIONS(4697), - [anon_sym_BSLASHACRlong] = ACTIONS(4697), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4697), - [anon_sym_BSLASHacrfull] = ACTIONS(4697), - [anon_sym_BSLASHAcrfull] = ACTIONS(4697), - [anon_sym_BSLASHACRfull] = ACTIONS(4697), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4697), - [anon_sym_BSLASHacs] = ACTIONS(4697), - [anon_sym_BSLASHAcs] = ACTIONS(4697), - [anon_sym_BSLASHacsp] = ACTIONS(4697), - [anon_sym_BSLASHAcsp] = ACTIONS(4697), - [anon_sym_BSLASHacl] = ACTIONS(4697), - [anon_sym_BSLASHAcl] = ACTIONS(4697), - [anon_sym_BSLASHaclp] = ACTIONS(4697), - [anon_sym_BSLASHAclp] = ACTIONS(4697), - [anon_sym_BSLASHacf] = ACTIONS(4697), - [anon_sym_BSLASHAcf] = ACTIONS(4697), - [anon_sym_BSLASHacfp] = ACTIONS(4697), - [anon_sym_BSLASHAcfp] = ACTIONS(4697), - [anon_sym_BSLASHac] = ACTIONS(4697), - [anon_sym_BSLASHAc] = ACTIONS(4697), - [anon_sym_BSLASHacp] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4697), - [anon_sym_BSLASHcolor] = ACTIONS(4697), - [anon_sym_BSLASHcolorbox] = ACTIONS(4697), - [anon_sym_BSLASHtextcolor] = ACTIONS(4697), - [anon_sym_BSLASHpagecolor] = ACTIONS(4697), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4697), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4697), - [sym__trivia_raw_fi] = ACTIONS(4937), + [536] = { + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(390), + [aux_sym__section_repeat5] = STATE(390), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHend] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [672] = { - [ts_builtin_sym_end] = ACTIONS(4939), - [sym_command_name] = ACTIONS(4941), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4939), - [anon_sym_RBRACK] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_BSLASHpart] = ACTIONS(4941), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddpart] = ACTIONS(4941), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4939), - [anon_sym_BSLASHchapter] = ACTIONS(4941), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddchap] = ACTIONS(4941), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsection] = ACTIONS(4941), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddsec] = ACTIONS(4941), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubsection] = ACTIONS(4941), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4941), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHparagraph] = ACTIONS(4941), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4941), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4939), - [anon_sym_BSLASHitem] = ACTIONS(4941), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_RBRACE] = ACTIONS(4939), - [sym_word] = ACTIONS(4941), - [sym_placeholder] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4941), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_STAR] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym__] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4941), - [anon_sym_BANG] = ACTIONS(4941), - [anon_sym_PIPE] = ACTIONS(4941), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4941), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4939), - [anon_sym_BSLASHbegin] = ACTIONS(4941), - [anon_sym_BSLASHusepackage] = ACTIONS(4941), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4941), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4941), - [anon_sym_BSLASHinclude] = ACTIONS(4941), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4941), - [anon_sym_BSLASHinput] = ACTIONS(4941), - [anon_sym_BSLASHsubfile] = ACTIONS(4941), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4941), - [anon_sym_BSLASHbibliography] = ACTIONS(4941), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4941), - [anon_sym_BSLASHincludesvg] = ACTIONS(4941), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4941), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4941), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4941), - [anon_sym_BSLASHimport] = ACTIONS(4941), - [anon_sym_BSLASHsubimport] = ACTIONS(4941), - [anon_sym_BSLASHinputfrom] = ACTIONS(4941), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4941), - [anon_sym_BSLASHincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHcaption] = ACTIONS(4941), - [anon_sym_BSLASHcite] = ACTIONS(4941), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCite] = ACTIONS(4941), - [anon_sym_BSLASHnocite] = ACTIONS(4941), - [anon_sym_BSLASHcitet] = ACTIONS(4941), - [anon_sym_BSLASHcitep] = ACTIONS(4941), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteyear] = ACTIONS(4941), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitedate] = ACTIONS(4941), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteurl] = ACTIONS(4941), - [anon_sym_BSLASHfullcite] = ACTIONS(4941), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4941), - [anon_sym_BSLASHcitealt] = ACTIONS(4941), - [anon_sym_BSLASHcitealp] = ACTIONS(4941), - [anon_sym_BSLASHcitetext] = ACTIONS(4941), - [anon_sym_BSLASHparencite] = ACTIONS(4941), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHParencite] = ACTIONS(4941), - [anon_sym_BSLASHfootcite] = ACTIONS(4941), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4941), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4941), - [anon_sym_BSLASHtextcite] = ACTIONS(4941), - [anon_sym_BSLASHTextcite] = ACTIONS(4941), - [anon_sym_BSLASHsmartcite] = ACTIONS(4941), - [anon_sym_BSLASHSmartcite] = ACTIONS(4941), - [anon_sym_BSLASHsupercite] = ACTIONS(4941), - [anon_sym_BSLASHautocite] = ACTIONS(4941), - [anon_sym_BSLASHAutocite] = ACTIONS(4941), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHvolcite] = ACTIONS(4941), - [anon_sym_BSLASHVolcite] = ACTIONS(4941), - [anon_sym_BSLASHpvolcite] = ACTIONS(4941), - [anon_sym_BSLASHPvolcite] = ACTIONS(4941), - [anon_sym_BSLASHfvolcite] = ACTIONS(4941), - [anon_sym_BSLASHftvolcite] = ACTIONS(4941), - [anon_sym_BSLASHsvolcite] = ACTIONS(4941), - [anon_sym_BSLASHSvolcite] = ACTIONS(4941), - [anon_sym_BSLASHtvolcite] = ACTIONS(4941), - [anon_sym_BSLASHTvolcite] = ACTIONS(4941), - [anon_sym_BSLASHavolcite] = ACTIONS(4941), - [anon_sym_BSLASHAvolcite] = ACTIONS(4941), - [anon_sym_BSLASHnotecite] = ACTIONS(4941), - [anon_sym_BSLASHNotecite] = ACTIONS(4941), - [anon_sym_BSLASHpnotecite] = ACTIONS(4941), - [anon_sym_BSLASHPnotecite] = ACTIONS(4941), - [anon_sym_BSLASHfnotecite] = ACTIONS(4941), - [anon_sym_BSLASHlabel] = ACTIONS(4941), - [anon_sym_BSLASHref] = ACTIONS(4941), - [anon_sym_BSLASHeqref] = ACTIONS(4941), - [anon_sym_BSLASHvref] = ACTIONS(4941), - [anon_sym_BSLASHVref] = ACTIONS(4941), - [anon_sym_BSLASHautoref] = ACTIONS(4941), - [anon_sym_BSLASHpageref] = ACTIONS(4941), - [anon_sym_BSLASHcref] = ACTIONS(4941), - [anon_sym_BSLASHCref] = ACTIONS(4941), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnameCref] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHlabelcref] = ACTIONS(4941), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnewlabel] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4939), - [anon_sym_BSLASHdef] = ACTIONS(4941), - [anon_sym_BSLASHlet] = ACTIONS(4941), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4941), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4941), - [anon_sym_BSLASHgls] = ACTIONS(4941), - [anon_sym_BSLASHGls] = ACTIONS(4941), - [anon_sym_BSLASHGLS] = ACTIONS(4941), - [anon_sym_BSLASHglspl] = ACTIONS(4941), - [anon_sym_BSLASHGlspl] = ACTIONS(4941), - [anon_sym_BSLASHGLSpl] = ACTIONS(4941), - [anon_sym_BSLASHglsdisp] = ACTIONS(4941), - [anon_sym_BSLASHglslink] = ACTIONS(4941), - [anon_sym_BSLASHglstext] = ACTIONS(4941), - [anon_sym_BSLASHGlstext] = ACTIONS(4941), - [anon_sym_BSLASHGLStext] = ACTIONS(4941), - [anon_sym_BSLASHglsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4941), - [anon_sym_BSLASHglsplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSplural] = ACTIONS(4941), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHglsname] = ACTIONS(4941), - [anon_sym_BSLASHGlsname] = ACTIONS(4941), - [anon_sym_BSLASHGLSname] = ACTIONS(4941), - [anon_sym_BSLASHglssymbol] = ACTIONS(4941), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4941), - [anon_sym_BSLASHglsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4941), - [anon_sym_BSLASHglsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4941), - [anon_sym_BSLASHglsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4941), - [anon_sym_BSLASHglsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4941), - [anon_sym_BSLASHglsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4941), - [anon_sym_BSLASHnewacronym] = ACTIONS(4941), - [anon_sym_BSLASHacrshort] = ACTIONS(4941), - [anon_sym_BSLASHAcrshort] = ACTIONS(4941), - [anon_sym_BSLASHACRshort] = ACTIONS(4941), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4941), - [anon_sym_BSLASHacrlong] = ACTIONS(4941), - [anon_sym_BSLASHAcrlong] = ACTIONS(4941), - [anon_sym_BSLASHACRlong] = ACTIONS(4941), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4941), - [anon_sym_BSLASHacrfull] = ACTIONS(4941), - [anon_sym_BSLASHAcrfull] = ACTIONS(4941), - [anon_sym_BSLASHACRfull] = ACTIONS(4941), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4941), - [anon_sym_BSLASHacs] = ACTIONS(4941), - [anon_sym_BSLASHAcs] = ACTIONS(4941), - [anon_sym_BSLASHacsp] = ACTIONS(4941), - [anon_sym_BSLASHAcsp] = ACTIONS(4941), - [anon_sym_BSLASHacl] = ACTIONS(4941), - [anon_sym_BSLASHAcl] = ACTIONS(4941), - [anon_sym_BSLASHaclp] = ACTIONS(4941), - [anon_sym_BSLASHAclp] = ACTIONS(4941), - [anon_sym_BSLASHacf] = ACTIONS(4941), - [anon_sym_BSLASHAcf] = ACTIONS(4941), - [anon_sym_BSLASHacfp] = ACTIONS(4941), - [anon_sym_BSLASHAcfp] = ACTIONS(4941), - [anon_sym_BSLASHac] = ACTIONS(4941), - [anon_sym_BSLASHAc] = ACTIONS(4941), - [anon_sym_BSLASHacp] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4941), - [anon_sym_BSLASHcolor] = ACTIONS(4941), - [anon_sym_BSLASHcolorbox] = ACTIONS(4941), - [anon_sym_BSLASHtextcolor] = ACTIONS(4941), - [anon_sym_BSLASHpagecolor] = ACTIONS(4941), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4941), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4941), + [537] = { + [sym__subsection_declaration] = STATE(156), + [sym_subsection] = STATE(392), + [aux_sym__section_repeat4] = STATE(392), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(203), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(205), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHend] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [673] = { - [ts_builtin_sym_end] = ACTIONS(4943), - [sym_command_name] = ACTIONS(4945), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4943), - [anon_sym_RBRACK] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_BSLASHpart] = ACTIONS(4945), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddpart] = ACTIONS(4945), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4943), - [anon_sym_BSLASHchapter] = ACTIONS(4945), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddchap] = ACTIONS(4945), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsection] = ACTIONS(4945), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddsec] = ACTIONS(4945), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubsection] = ACTIONS(4945), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4945), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHparagraph] = ACTIONS(4945), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4945), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4943), - [anon_sym_BSLASHitem] = ACTIONS(4945), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_RBRACE] = ACTIONS(4943), - [sym_word] = ACTIONS(4945), - [sym_placeholder] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4945), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_STAR] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym__] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4945), - [anon_sym_BANG] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(4945), - [anon_sym_COLON] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4945), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4943), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4945), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4943), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4943), - [anon_sym_BSLASHbegin] = ACTIONS(4945), - [anon_sym_BSLASHusepackage] = ACTIONS(4945), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4945), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4945), - [anon_sym_BSLASHinclude] = ACTIONS(4945), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4945), - [anon_sym_BSLASHinput] = ACTIONS(4945), - [anon_sym_BSLASHsubfile] = ACTIONS(4945), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4945), - [anon_sym_BSLASHbibliography] = ACTIONS(4945), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4945), - [anon_sym_BSLASHincludesvg] = ACTIONS(4945), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4945), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4945), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4945), - [anon_sym_BSLASHimport] = ACTIONS(4945), - [anon_sym_BSLASHsubimport] = ACTIONS(4945), - [anon_sym_BSLASHinputfrom] = ACTIONS(4945), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4945), - [anon_sym_BSLASHincludefrom] = ACTIONS(4945), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4945), - [anon_sym_BSLASHcaption] = ACTIONS(4945), - [anon_sym_BSLASHcite] = ACTIONS(4945), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCite] = ACTIONS(4945), - [anon_sym_BSLASHnocite] = ACTIONS(4945), - [anon_sym_BSLASHcitet] = ACTIONS(4945), - [anon_sym_BSLASHcitep] = ACTIONS(4945), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteauthor] = ACTIONS(4945), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4945), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitetitle] = ACTIONS(4945), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteyear] = ACTIONS(4945), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitedate] = ACTIONS(4945), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteurl] = ACTIONS(4945), - [anon_sym_BSLASHfullcite] = ACTIONS(4945), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4945), - [anon_sym_BSLASHcitealt] = ACTIONS(4945), - [anon_sym_BSLASHcitealp] = ACTIONS(4945), - [anon_sym_BSLASHcitetext] = ACTIONS(4945), - [anon_sym_BSLASHparencite] = ACTIONS(4945), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHParencite] = ACTIONS(4945), - [anon_sym_BSLASHfootcite] = ACTIONS(4945), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4945), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4945), - [anon_sym_BSLASHtextcite] = ACTIONS(4945), - [anon_sym_BSLASHTextcite] = ACTIONS(4945), - [anon_sym_BSLASHsmartcite] = ACTIONS(4945), - [anon_sym_BSLASHSmartcite] = ACTIONS(4945), - [anon_sym_BSLASHsupercite] = ACTIONS(4945), - [anon_sym_BSLASHautocite] = ACTIONS(4945), - [anon_sym_BSLASHAutocite] = ACTIONS(4945), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHvolcite] = ACTIONS(4945), - [anon_sym_BSLASHVolcite] = ACTIONS(4945), - [anon_sym_BSLASHpvolcite] = ACTIONS(4945), - [anon_sym_BSLASHPvolcite] = ACTIONS(4945), - [anon_sym_BSLASHfvolcite] = ACTIONS(4945), - [anon_sym_BSLASHftvolcite] = ACTIONS(4945), - [anon_sym_BSLASHsvolcite] = ACTIONS(4945), - [anon_sym_BSLASHSvolcite] = ACTIONS(4945), - [anon_sym_BSLASHtvolcite] = ACTIONS(4945), - [anon_sym_BSLASHTvolcite] = ACTIONS(4945), - [anon_sym_BSLASHavolcite] = ACTIONS(4945), - [anon_sym_BSLASHAvolcite] = ACTIONS(4945), - [anon_sym_BSLASHnotecite] = ACTIONS(4945), - [anon_sym_BSLASHNotecite] = ACTIONS(4945), - [anon_sym_BSLASHpnotecite] = ACTIONS(4945), - [anon_sym_BSLASHPnotecite] = ACTIONS(4945), - [anon_sym_BSLASHfnotecite] = ACTIONS(4945), - [anon_sym_BSLASHlabel] = ACTIONS(4945), - [anon_sym_BSLASHref] = ACTIONS(4945), - [anon_sym_BSLASHeqref] = ACTIONS(4945), - [anon_sym_BSLASHvref] = ACTIONS(4945), - [anon_sym_BSLASHVref] = ACTIONS(4945), - [anon_sym_BSLASHautoref] = ACTIONS(4945), - [anon_sym_BSLASHpageref] = ACTIONS(4945), - [anon_sym_BSLASHcref] = ACTIONS(4945), - [anon_sym_BSLASHCref] = ACTIONS(4945), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4943), - [anon_sym_BSLASHnamecref] = ACTIONS(4945), - [anon_sym_BSLASHnameCref] = ACTIONS(4945), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4945), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4945), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4945), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4945), - [anon_sym_BSLASHlabelcref] = ACTIONS(4945), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4945), - [anon_sym_BSLASHcrefrange] = ACTIONS(4945), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCrefrange] = ACTIONS(4945), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4943), - [anon_sym_BSLASHnewlabel] = ACTIONS(4945), - [anon_sym_BSLASHnewcommand] = ACTIONS(4945), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4945), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4945), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4945), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4943), - [anon_sym_BSLASHdef] = ACTIONS(4945), - [anon_sym_BSLASHlet] = ACTIONS(4945), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4945), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4945), - [anon_sym_BSLASHgls] = ACTIONS(4945), - [anon_sym_BSLASHGls] = ACTIONS(4945), - [anon_sym_BSLASHGLS] = ACTIONS(4945), - [anon_sym_BSLASHglspl] = ACTIONS(4945), - [anon_sym_BSLASHGlspl] = ACTIONS(4945), - [anon_sym_BSLASHGLSpl] = ACTIONS(4945), - [anon_sym_BSLASHglsdisp] = ACTIONS(4945), - [anon_sym_BSLASHglslink] = ACTIONS(4945), - [anon_sym_BSLASHglstext] = ACTIONS(4945), - [anon_sym_BSLASHGlstext] = ACTIONS(4945), - [anon_sym_BSLASHGLStext] = ACTIONS(4945), - [anon_sym_BSLASHglsfirst] = ACTIONS(4945), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4945), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4945), - [anon_sym_BSLASHglsplural] = ACTIONS(4945), - [anon_sym_BSLASHGlsplural] = ACTIONS(4945), - [anon_sym_BSLASHGLSplural] = ACTIONS(4945), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHglsname] = ACTIONS(4945), - [anon_sym_BSLASHGlsname] = ACTIONS(4945), - [anon_sym_BSLASHGLSname] = ACTIONS(4945), - [anon_sym_BSLASHglssymbol] = ACTIONS(4945), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4945), - [anon_sym_BSLASHglsdesc] = ACTIONS(4945), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4945), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4945), - [anon_sym_BSLASHglsuseri] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4945), - [anon_sym_BSLASHglsuserii] = ACTIONS(4945), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4945), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4945), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4945), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4945), - [anon_sym_BSLASHglsuserv] = ACTIONS(4945), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4945), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4945), - [anon_sym_BSLASHglsuservi] = ACTIONS(4945), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4945), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4945), - [anon_sym_BSLASHnewacronym] = ACTIONS(4945), - [anon_sym_BSLASHacrshort] = ACTIONS(4945), - [anon_sym_BSLASHAcrshort] = ACTIONS(4945), - [anon_sym_BSLASHACRshort] = ACTIONS(4945), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4945), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4945), - [anon_sym_BSLASHacrlong] = ACTIONS(4945), - [anon_sym_BSLASHAcrlong] = ACTIONS(4945), - [anon_sym_BSLASHACRlong] = ACTIONS(4945), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4945), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4945), - [anon_sym_BSLASHacrfull] = ACTIONS(4945), - [anon_sym_BSLASHAcrfull] = ACTIONS(4945), - [anon_sym_BSLASHACRfull] = ACTIONS(4945), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4945), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4945), - [anon_sym_BSLASHacs] = ACTIONS(4945), - [anon_sym_BSLASHAcs] = ACTIONS(4945), - [anon_sym_BSLASHacsp] = ACTIONS(4945), - [anon_sym_BSLASHAcsp] = ACTIONS(4945), - [anon_sym_BSLASHacl] = ACTIONS(4945), - [anon_sym_BSLASHAcl] = ACTIONS(4945), - [anon_sym_BSLASHaclp] = ACTIONS(4945), - [anon_sym_BSLASHAclp] = ACTIONS(4945), - [anon_sym_BSLASHacf] = ACTIONS(4945), - [anon_sym_BSLASHAcf] = ACTIONS(4945), - [anon_sym_BSLASHacfp] = ACTIONS(4945), - [anon_sym_BSLASHAcfp] = ACTIONS(4945), - [anon_sym_BSLASHac] = ACTIONS(4945), - [anon_sym_BSLASHAc] = ACTIONS(4945), - [anon_sym_BSLASHacp] = ACTIONS(4945), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4945), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4945), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4945), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4945), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4945), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4945), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4945), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4945), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4945), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4945), - [anon_sym_BSLASHcolor] = ACTIONS(4945), - [anon_sym_BSLASHcolorbox] = ACTIONS(4945), - [anon_sym_BSLASHtextcolor] = ACTIONS(4945), - [anon_sym_BSLASHpagecolor] = ACTIONS(4945), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4945), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4945), + [538] = { + [sym__section_declaration] = STATE(145), + [sym_section] = STATE(393), + [aux_sym__section_repeat3] = STATE(393), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(199), + [anon_sym_BSLASHsection_STAR] = ACTIONS(201), + [anon_sym_BSLASHaddsec] = ACTIONS(199), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(201), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHend] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [674] = { - [ts_builtin_sym_end] = ACTIONS(4947), - [sym_command_name] = ACTIONS(4949), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4947), - [anon_sym_RBRACK] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_BSLASHpart] = ACTIONS(4949), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddpart] = ACTIONS(4949), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4947), - [anon_sym_BSLASHchapter] = ACTIONS(4949), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddchap] = ACTIONS(4949), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsection] = ACTIONS(4949), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddsec] = ACTIONS(4949), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubsection] = ACTIONS(4949), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4949), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHparagraph] = ACTIONS(4949), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4949), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4947), - [anon_sym_BSLASHitem] = ACTIONS(4949), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_RBRACE] = ACTIONS(4947), - [sym_word] = ACTIONS(4949), - [sym_placeholder] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4949), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym__] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4949), - [anon_sym_BANG] = ACTIONS(4949), - [anon_sym_PIPE] = ACTIONS(4949), - [anon_sym_COLON] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4949), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4947), - [anon_sym_BSLASHbegin] = ACTIONS(4949), - [anon_sym_BSLASHusepackage] = ACTIONS(4949), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4949), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4949), - [anon_sym_BSLASHinclude] = ACTIONS(4949), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4949), - [anon_sym_BSLASHinput] = ACTIONS(4949), - [anon_sym_BSLASHsubfile] = ACTIONS(4949), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4949), - [anon_sym_BSLASHbibliography] = ACTIONS(4949), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4949), - [anon_sym_BSLASHincludesvg] = ACTIONS(4949), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4949), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4949), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4949), - [anon_sym_BSLASHimport] = ACTIONS(4949), - [anon_sym_BSLASHsubimport] = ACTIONS(4949), - [anon_sym_BSLASHinputfrom] = ACTIONS(4949), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4949), - [anon_sym_BSLASHincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHcaption] = ACTIONS(4949), - [anon_sym_BSLASHcite] = ACTIONS(4949), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCite] = ACTIONS(4949), - [anon_sym_BSLASHnocite] = ACTIONS(4949), - [anon_sym_BSLASHcitet] = ACTIONS(4949), - [anon_sym_BSLASHcitep] = ACTIONS(4949), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteyear] = ACTIONS(4949), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitedate] = ACTIONS(4949), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteurl] = ACTIONS(4949), - [anon_sym_BSLASHfullcite] = ACTIONS(4949), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4949), - [anon_sym_BSLASHcitealt] = ACTIONS(4949), - [anon_sym_BSLASHcitealp] = ACTIONS(4949), - [anon_sym_BSLASHcitetext] = ACTIONS(4949), - [anon_sym_BSLASHparencite] = ACTIONS(4949), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHParencite] = ACTIONS(4949), - [anon_sym_BSLASHfootcite] = ACTIONS(4949), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4949), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4949), - [anon_sym_BSLASHtextcite] = ACTIONS(4949), - [anon_sym_BSLASHTextcite] = ACTIONS(4949), - [anon_sym_BSLASHsmartcite] = ACTIONS(4949), - [anon_sym_BSLASHSmartcite] = ACTIONS(4949), - [anon_sym_BSLASHsupercite] = ACTIONS(4949), - [anon_sym_BSLASHautocite] = ACTIONS(4949), - [anon_sym_BSLASHAutocite] = ACTIONS(4949), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHvolcite] = ACTIONS(4949), - [anon_sym_BSLASHVolcite] = ACTIONS(4949), - [anon_sym_BSLASHpvolcite] = ACTIONS(4949), - [anon_sym_BSLASHPvolcite] = ACTIONS(4949), - [anon_sym_BSLASHfvolcite] = ACTIONS(4949), - [anon_sym_BSLASHftvolcite] = ACTIONS(4949), - [anon_sym_BSLASHsvolcite] = ACTIONS(4949), - [anon_sym_BSLASHSvolcite] = ACTIONS(4949), - [anon_sym_BSLASHtvolcite] = ACTIONS(4949), - [anon_sym_BSLASHTvolcite] = ACTIONS(4949), - [anon_sym_BSLASHavolcite] = ACTIONS(4949), - [anon_sym_BSLASHAvolcite] = ACTIONS(4949), - [anon_sym_BSLASHnotecite] = ACTIONS(4949), - [anon_sym_BSLASHNotecite] = ACTIONS(4949), - [anon_sym_BSLASHpnotecite] = ACTIONS(4949), - [anon_sym_BSLASHPnotecite] = ACTIONS(4949), - [anon_sym_BSLASHfnotecite] = ACTIONS(4949), - [anon_sym_BSLASHlabel] = ACTIONS(4949), - [anon_sym_BSLASHref] = ACTIONS(4949), - [anon_sym_BSLASHeqref] = ACTIONS(4949), - [anon_sym_BSLASHvref] = ACTIONS(4949), - [anon_sym_BSLASHVref] = ACTIONS(4949), - [anon_sym_BSLASHautoref] = ACTIONS(4949), - [anon_sym_BSLASHpageref] = ACTIONS(4949), - [anon_sym_BSLASHcref] = ACTIONS(4949), - [anon_sym_BSLASHCref] = ACTIONS(4949), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnameCref] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHlabelcref] = ACTIONS(4949), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnewlabel] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4947), - [anon_sym_BSLASHdef] = ACTIONS(4949), - [anon_sym_BSLASHlet] = ACTIONS(4949), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4949), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4949), - [anon_sym_BSLASHgls] = ACTIONS(4949), - [anon_sym_BSLASHGls] = ACTIONS(4949), - [anon_sym_BSLASHGLS] = ACTIONS(4949), - [anon_sym_BSLASHglspl] = ACTIONS(4949), - [anon_sym_BSLASHGlspl] = ACTIONS(4949), - [anon_sym_BSLASHGLSpl] = ACTIONS(4949), - [anon_sym_BSLASHglsdisp] = ACTIONS(4949), - [anon_sym_BSLASHglslink] = ACTIONS(4949), - [anon_sym_BSLASHglstext] = ACTIONS(4949), - [anon_sym_BSLASHGlstext] = ACTIONS(4949), - [anon_sym_BSLASHGLStext] = ACTIONS(4949), - [anon_sym_BSLASHglsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4949), - [anon_sym_BSLASHglsplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSplural] = ACTIONS(4949), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHglsname] = ACTIONS(4949), - [anon_sym_BSLASHGlsname] = ACTIONS(4949), - [anon_sym_BSLASHGLSname] = ACTIONS(4949), - [anon_sym_BSLASHglssymbol] = ACTIONS(4949), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4949), - [anon_sym_BSLASHglsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4949), - [anon_sym_BSLASHglsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4949), - [anon_sym_BSLASHglsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4949), - [anon_sym_BSLASHglsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4949), - [anon_sym_BSLASHglsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4949), - [anon_sym_BSLASHnewacronym] = ACTIONS(4949), - [anon_sym_BSLASHacrshort] = ACTIONS(4949), - [anon_sym_BSLASHAcrshort] = ACTIONS(4949), - [anon_sym_BSLASHACRshort] = ACTIONS(4949), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4949), - [anon_sym_BSLASHacrlong] = ACTIONS(4949), - [anon_sym_BSLASHAcrlong] = ACTIONS(4949), - [anon_sym_BSLASHACRlong] = ACTIONS(4949), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4949), - [anon_sym_BSLASHacrfull] = ACTIONS(4949), - [anon_sym_BSLASHAcrfull] = ACTIONS(4949), - [anon_sym_BSLASHACRfull] = ACTIONS(4949), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4949), - [anon_sym_BSLASHacs] = ACTIONS(4949), - [anon_sym_BSLASHAcs] = ACTIONS(4949), - [anon_sym_BSLASHacsp] = ACTIONS(4949), - [anon_sym_BSLASHAcsp] = ACTIONS(4949), - [anon_sym_BSLASHacl] = ACTIONS(4949), - [anon_sym_BSLASHAcl] = ACTIONS(4949), - [anon_sym_BSLASHaclp] = ACTIONS(4949), - [anon_sym_BSLASHAclp] = ACTIONS(4949), - [anon_sym_BSLASHacf] = ACTIONS(4949), - [anon_sym_BSLASHAcf] = ACTIONS(4949), - [anon_sym_BSLASHacfp] = ACTIONS(4949), - [anon_sym_BSLASHAcfp] = ACTIONS(4949), - [anon_sym_BSLASHac] = ACTIONS(4949), - [anon_sym_BSLASHAc] = ACTIONS(4949), - [anon_sym_BSLASHacp] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4949), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4949), - [anon_sym_BSLASHcolor] = ACTIONS(4949), - [anon_sym_BSLASHcolorbox] = ACTIONS(4949), - [anon_sym_BSLASHtextcolor] = ACTIONS(4949), - [anon_sym_BSLASHpagecolor] = ACTIONS(4949), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4949), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4949), + [539] = { + [sym__chapter_declaration] = STATE(141), + [sym_chapter] = STATE(399), + [aux_sym__section_repeat2] = STATE(399), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(195), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(197), + [anon_sym_BSLASHaddchap] = ACTIONS(195), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(197), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHend] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [675] = { - [ts_builtin_sym_end] = ACTIONS(4951), - [sym_command_name] = ACTIONS(4953), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_RBRACK] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_BSLASHpart] = ACTIONS(4953), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddpart] = ACTIONS(4953), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4951), - [anon_sym_BSLASHchapter] = ACTIONS(4953), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddchap] = ACTIONS(4953), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsection] = ACTIONS(4953), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddsec] = ACTIONS(4953), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubsection] = ACTIONS(4953), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4953), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHparagraph] = ACTIONS(4953), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4953), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4951), - [anon_sym_BSLASHitem] = ACTIONS(4953), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_RBRACE] = ACTIONS(4951), - [sym_word] = ACTIONS(4953), - [sym_placeholder] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym__] = ACTIONS(4953), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4953), - [anon_sym_COLON] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4953), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4951), - [anon_sym_BSLASHbegin] = ACTIONS(4953), - [anon_sym_BSLASHusepackage] = ACTIONS(4953), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4953), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4953), - [anon_sym_BSLASHinclude] = ACTIONS(4953), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4953), - [anon_sym_BSLASHinput] = ACTIONS(4953), - [anon_sym_BSLASHsubfile] = ACTIONS(4953), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4953), - [anon_sym_BSLASHbibliography] = ACTIONS(4953), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4953), - [anon_sym_BSLASHincludesvg] = ACTIONS(4953), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4953), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4953), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4953), - [anon_sym_BSLASHimport] = ACTIONS(4953), - [anon_sym_BSLASHsubimport] = ACTIONS(4953), - [anon_sym_BSLASHinputfrom] = ACTIONS(4953), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4953), - [anon_sym_BSLASHincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHcaption] = ACTIONS(4953), - [anon_sym_BSLASHcite] = ACTIONS(4953), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCite] = ACTIONS(4953), - [anon_sym_BSLASHnocite] = ACTIONS(4953), - [anon_sym_BSLASHcitet] = ACTIONS(4953), - [anon_sym_BSLASHcitep] = ACTIONS(4953), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteyear] = ACTIONS(4953), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitedate] = ACTIONS(4953), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteurl] = ACTIONS(4953), - [anon_sym_BSLASHfullcite] = ACTIONS(4953), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4953), - [anon_sym_BSLASHcitealt] = ACTIONS(4953), - [anon_sym_BSLASHcitealp] = ACTIONS(4953), - [anon_sym_BSLASHcitetext] = ACTIONS(4953), - [anon_sym_BSLASHparencite] = ACTIONS(4953), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHParencite] = ACTIONS(4953), - [anon_sym_BSLASHfootcite] = ACTIONS(4953), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4953), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4953), - [anon_sym_BSLASHtextcite] = ACTIONS(4953), - [anon_sym_BSLASHTextcite] = ACTIONS(4953), - [anon_sym_BSLASHsmartcite] = ACTIONS(4953), - [anon_sym_BSLASHSmartcite] = ACTIONS(4953), - [anon_sym_BSLASHsupercite] = ACTIONS(4953), - [anon_sym_BSLASHautocite] = ACTIONS(4953), - [anon_sym_BSLASHAutocite] = ACTIONS(4953), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHvolcite] = ACTIONS(4953), - [anon_sym_BSLASHVolcite] = ACTIONS(4953), - [anon_sym_BSLASHpvolcite] = ACTIONS(4953), - [anon_sym_BSLASHPvolcite] = ACTIONS(4953), - [anon_sym_BSLASHfvolcite] = ACTIONS(4953), - [anon_sym_BSLASHftvolcite] = ACTIONS(4953), - [anon_sym_BSLASHsvolcite] = ACTIONS(4953), - [anon_sym_BSLASHSvolcite] = ACTIONS(4953), - [anon_sym_BSLASHtvolcite] = ACTIONS(4953), - [anon_sym_BSLASHTvolcite] = ACTIONS(4953), - [anon_sym_BSLASHavolcite] = ACTIONS(4953), - [anon_sym_BSLASHAvolcite] = ACTIONS(4953), - [anon_sym_BSLASHnotecite] = ACTIONS(4953), - [anon_sym_BSLASHNotecite] = ACTIONS(4953), - [anon_sym_BSLASHpnotecite] = ACTIONS(4953), - [anon_sym_BSLASHPnotecite] = ACTIONS(4953), - [anon_sym_BSLASHfnotecite] = ACTIONS(4953), - [anon_sym_BSLASHlabel] = ACTIONS(4953), - [anon_sym_BSLASHref] = ACTIONS(4953), - [anon_sym_BSLASHeqref] = ACTIONS(4953), - [anon_sym_BSLASHvref] = ACTIONS(4953), - [anon_sym_BSLASHVref] = ACTIONS(4953), - [anon_sym_BSLASHautoref] = ACTIONS(4953), - [anon_sym_BSLASHpageref] = ACTIONS(4953), - [anon_sym_BSLASHcref] = ACTIONS(4953), - [anon_sym_BSLASHCref] = ACTIONS(4953), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnameCref] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHlabelcref] = ACTIONS(4953), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnewlabel] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4951), - [anon_sym_BSLASHdef] = ACTIONS(4953), - [anon_sym_BSLASHlet] = ACTIONS(4953), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4953), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4953), - [anon_sym_BSLASHgls] = ACTIONS(4953), - [anon_sym_BSLASHGls] = ACTIONS(4953), - [anon_sym_BSLASHGLS] = ACTIONS(4953), - [anon_sym_BSLASHglspl] = ACTIONS(4953), - [anon_sym_BSLASHGlspl] = ACTIONS(4953), - [anon_sym_BSLASHGLSpl] = ACTIONS(4953), - [anon_sym_BSLASHglsdisp] = ACTIONS(4953), - [anon_sym_BSLASHglslink] = ACTIONS(4953), - [anon_sym_BSLASHglstext] = ACTIONS(4953), - [anon_sym_BSLASHGlstext] = ACTIONS(4953), - [anon_sym_BSLASHGLStext] = ACTIONS(4953), - [anon_sym_BSLASHglsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4953), - [anon_sym_BSLASHglsplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSplural] = ACTIONS(4953), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHglsname] = ACTIONS(4953), - [anon_sym_BSLASHGlsname] = ACTIONS(4953), - [anon_sym_BSLASHGLSname] = ACTIONS(4953), - [anon_sym_BSLASHglssymbol] = ACTIONS(4953), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4953), - [anon_sym_BSLASHglsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4953), - [anon_sym_BSLASHglsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4953), - [anon_sym_BSLASHglsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4953), - [anon_sym_BSLASHglsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4953), - [anon_sym_BSLASHglsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4953), - [anon_sym_BSLASHnewacronym] = ACTIONS(4953), - [anon_sym_BSLASHacrshort] = ACTIONS(4953), - [anon_sym_BSLASHAcrshort] = ACTIONS(4953), - [anon_sym_BSLASHACRshort] = ACTIONS(4953), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4953), - [anon_sym_BSLASHacrlong] = ACTIONS(4953), - [anon_sym_BSLASHAcrlong] = ACTIONS(4953), - [anon_sym_BSLASHACRlong] = ACTIONS(4953), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4953), - [anon_sym_BSLASHacrfull] = ACTIONS(4953), - [anon_sym_BSLASHAcrfull] = ACTIONS(4953), - [anon_sym_BSLASHACRfull] = ACTIONS(4953), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4953), - [anon_sym_BSLASHacs] = ACTIONS(4953), - [anon_sym_BSLASHAcs] = ACTIONS(4953), - [anon_sym_BSLASHacsp] = ACTIONS(4953), - [anon_sym_BSLASHAcsp] = ACTIONS(4953), - [anon_sym_BSLASHacl] = ACTIONS(4953), - [anon_sym_BSLASHAcl] = ACTIONS(4953), - [anon_sym_BSLASHaclp] = ACTIONS(4953), - [anon_sym_BSLASHAclp] = ACTIONS(4953), - [anon_sym_BSLASHacf] = ACTIONS(4953), - [anon_sym_BSLASHAcf] = ACTIONS(4953), - [anon_sym_BSLASHacfp] = ACTIONS(4953), - [anon_sym_BSLASHAcfp] = ACTIONS(4953), - [anon_sym_BSLASHac] = ACTIONS(4953), - [anon_sym_BSLASHAc] = ACTIONS(4953), - [anon_sym_BSLASHacp] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4953), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4953), - [anon_sym_BSLASHcolor] = ACTIONS(4953), - [anon_sym_BSLASHcolorbox] = ACTIONS(4953), - [anon_sym_BSLASHtextcolor] = ACTIONS(4953), - [anon_sym_BSLASHpagecolor] = ACTIONS(4953), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4953), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4953), + [540] = { + [sym__part_declaration] = STATE(126), + [sym_part] = STATE(405), + [aux_sym__section_repeat1] = STATE(405), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(191), + [anon_sym_BSLASHpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHaddpart] = ACTIONS(191), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(193), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHend] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), }, - [676] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1733), - [sym_operator] = STATE(1509), - [sym_key_value_pair] = STATE(1735), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(4955), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), + [541] = { + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), }, - [677] = { - [ts_builtin_sym_end] = ACTIONS(4957), - [sym_command_name] = ACTIONS(4959), + [542] = { + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(448), + [aux_sym__section_repeat6] = STATE(448), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [543] = { + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(449), + [aux_sym__section_repeat5] = STATE(449), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [544] = { + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(451), + [aux_sym__section_repeat4] = STATE(451), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [545] = { + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(456), + [aux_sym__section_repeat3] = STATE(456), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [546] = { + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), + }, + [547] = { + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), + }, + [548] = { + [sym__subsubsection_declaration] = STATE(167), + [sym_subsubsection] = STATE(390), + [aux_sym__section_repeat5] = STATE(390), + [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_BSLASHpart] = ACTIONS(4959), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddpart] = ACTIONS(4959), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHchapter] = ACTIONS(4959), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddchap] = ACTIONS(4959), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsection] = ACTIONS(4959), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddsec] = ACTIONS(4959), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHparagraph] = ACTIONS(4959), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHitem] = ACTIONS(4959), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASHbegin] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(207), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(209), + [anon_sym_BSLASHparagraph] = ACTIONS(4479), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHitem] = ACTIONS(4479), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHend] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [678] = { - [sym_brack_group_text] = STATE(1006), - [sym_command_name] = ACTIONS(4797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4795), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4795), - [anon_sym_COMMA] = ACTIONS(4795), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_BSLASHpart] = ACTIONS(4797), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddpart] = ACTIONS(4797), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4795), - [anon_sym_BSLASHchapter] = ACTIONS(4797), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddchap] = ACTIONS(4797), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsection] = ACTIONS(4797), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddsec] = ACTIONS(4797), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubsection] = ACTIONS(4797), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4797), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHparagraph] = ACTIONS(4797), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4797), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4795), - [anon_sym_BSLASHitem] = ACTIONS(4797), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4795), - [sym_word] = ACTIONS(4797), - [sym_placeholder] = ACTIONS(4795), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_CARET] = ACTIONS(4797), - [anon_sym__] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4797), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4795), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4795), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4795), - [anon_sym_BSLASHbegin] = ACTIONS(4797), - [anon_sym_BSLASHusepackage] = ACTIONS(4797), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4797), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4797), - [anon_sym_BSLASHinclude] = ACTIONS(4797), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4797), - [anon_sym_BSLASHinput] = ACTIONS(4797), - [anon_sym_BSLASHsubfile] = ACTIONS(4797), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4797), - [anon_sym_BSLASHbibliography] = ACTIONS(4797), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4797), - [anon_sym_BSLASHincludesvg] = ACTIONS(4797), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4797), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4797), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4797), - [anon_sym_BSLASHimport] = ACTIONS(4797), - [anon_sym_BSLASHsubimport] = ACTIONS(4797), - [anon_sym_BSLASHinputfrom] = ACTIONS(4797), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4797), - [anon_sym_BSLASHincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHcaption] = ACTIONS(4797), - [anon_sym_BSLASHcite] = ACTIONS(4797), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCite] = ACTIONS(4797), - [anon_sym_BSLASHnocite] = ACTIONS(4797), - [anon_sym_BSLASHcitet] = ACTIONS(4797), - [anon_sym_BSLASHcitep] = ACTIONS(4797), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteauthor] = ACTIONS(4797), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4797), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitetitle] = ACTIONS(4797), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteyear] = ACTIONS(4797), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitedate] = ACTIONS(4797), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteurl] = ACTIONS(4797), - [anon_sym_BSLASHfullcite] = ACTIONS(4797), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4797), - [anon_sym_BSLASHcitealt] = ACTIONS(4797), - [anon_sym_BSLASHcitealp] = ACTIONS(4797), - [anon_sym_BSLASHcitetext] = ACTIONS(4797), - [anon_sym_BSLASHparencite] = ACTIONS(4797), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHParencite] = ACTIONS(4797), - [anon_sym_BSLASHfootcite] = ACTIONS(4797), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4797), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4797), - [anon_sym_BSLASHtextcite] = ACTIONS(4797), - [anon_sym_BSLASHTextcite] = ACTIONS(4797), - [anon_sym_BSLASHsmartcite] = ACTIONS(4797), - [anon_sym_BSLASHSmartcite] = ACTIONS(4797), - [anon_sym_BSLASHsupercite] = ACTIONS(4797), - [anon_sym_BSLASHautocite] = ACTIONS(4797), - [anon_sym_BSLASHAutocite] = ACTIONS(4797), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHvolcite] = ACTIONS(4797), - [anon_sym_BSLASHVolcite] = ACTIONS(4797), - [anon_sym_BSLASHpvolcite] = ACTIONS(4797), - [anon_sym_BSLASHPvolcite] = ACTIONS(4797), - [anon_sym_BSLASHfvolcite] = ACTIONS(4797), - [anon_sym_BSLASHftvolcite] = ACTIONS(4797), - [anon_sym_BSLASHsvolcite] = ACTIONS(4797), - [anon_sym_BSLASHSvolcite] = ACTIONS(4797), - [anon_sym_BSLASHtvolcite] = ACTIONS(4797), - [anon_sym_BSLASHTvolcite] = ACTIONS(4797), - [anon_sym_BSLASHavolcite] = ACTIONS(4797), - [anon_sym_BSLASHAvolcite] = ACTIONS(4797), - [anon_sym_BSLASHnotecite] = ACTIONS(4797), - [anon_sym_BSLASHNotecite] = ACTIONS(4797), - [anon_sym_BSLASHpnotecite] = ACTIONS(4797), - [anon_sym_BSLASHPnotecite] = ACTIONS(4797), - [anon_sym_BSLASHfnotecite] = ACTIONS(4797), - [anon_sym_BSLASHlabel] = ACTIONS(4797), - [anon_sym_BSLASHref] = ACTIONS(4797), - [anon_sym_BSLASHeqref] = ACTIONS(4797), - [anon_sym_BSLASHvref] = ACTIONS(4797), - [anon_sym_BSLASHVref] = ACTIONS(4797), - [anon_sym_BSLASHautoref] = ACTIONS(4797), - [anon_sym_BSLASHpageref] = ACTIONS(4797), - [anon_sym_BSLASHcref] = ACTIONS(4797), - [anon_sym_BSLASHCref] = ACTIONS(4797), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnameCref] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHlabelcref] = ACTIONS(4797), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCrefrange] = ACTIONS(4797), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnewlabel] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4797), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4797), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4797), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4795), - [anon_sym_BSLASHdef] = ACTIONS(4797), - [anon_sym_BSLASHlet] = ACTIONS(4797), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4797), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4797), - [anon_sym_BSLASHgls] = ACTIONS(4797), - [anon_sym_BSLASHGls] = ACTIONS(4797), - [anon_sym_BSLASHGLS] = ACTIONS(4797), - [anon_sym_BSLASHglspl] = ACTIONS(4797), - [anon_sym_BSLASHGlspl] = ACTIONS(4797), - [anon_sym_BSLASHGLSpl] = ACTIONS(4797), - [anon_sym_BSLASHglsdisp] = ACTIONS(4797), - [anon_sym_BSLASHglslink] = ACTIONS(4797), - [anon_sym_BSLASHglstext] = ACTIONS(4797), - [anon_sym_BSLASHGlstext] = ACTIONS(4797), - [anon_sym_BSLASHGLStext] = ACTIONS(4797), - [anon_sym_BSLASHglsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4797), - [anon_sym_BSLASHglsplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSplural] = ACTIONS(4797), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHglsname] = ACTIONS(4797), - [anon_sym_BSLASHGlsname] = ACTIONS(4797), - [anon_sym_BSLASHGLSname] = ACTIONS(4797), - [anon_sym_BSLASHglssymbol] = ACTIONS(4797), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4797), - [anon_sym_BSLASHglsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4797), - [anon_sym_BSLASHglsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4797), - [anon_sym_BSLASHglsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4797), - [anon_sym_BSLASHglsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4797), - [anon_sym_BSLASHglsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4797), - [anon_sym_BSLASHnewacronym] = ACTIONS(4797), - [anon_sym_BSLASHacrshort] = ACTIONS(4797), - [anon_sym_BSLASHAcrshort] = ACTIONS(4797), - [anon_sym_BSLASHACRshort] = ACTIONS(4797), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4797), - [anon_sym_BSLASHacrlong] = ACTIONS(4797), - [anon_sym_BSLASHAcrlong] = ACTIONS(4797), - [anon_sym_BSLASHACRlong] = ACTIONS(4797), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4797), - [anon_sym_BSLASHacrfull] = ACTIONS(4797), - [anon_sym_BSLASHAcrfull] = ACTIONS(4797), - [anon_sym_BSLASHACRfull] = ACTIONS(4797), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4797), - [anon_sym_BSLASHacs] = ACTIONS(4797), - [anon_sym_BSLASHAcs] = ACTIONS(4797), - [anon_sym_BSLASHacsp] = ACTIONS(4797), - [anon_sym_BSLASHAcsp] = ACTIONS(4797), - [anon_sym_BSLASHacl] = ACTIONS(4797), - [anon_sym_BSLASHAcl] = ACTIONS(4797), - [anon_sym_BSLASHaclp] = ACTIONS(4797), - [anon_sym_BSLASHAclp] = ACTIONS(4797), - [anon_sym_BSLASHacf] = ACTIONS(4797), - [anon_sym_BSLASHAcf] = ACTIONS(4797), - [anon_sym_BSLASHacfp] = ACTIONS(4797), - [anon_sym_BSLASHAcfp] = ACTIONS(4797), - [anon_sym_BSLASHac] = ACTIONS(4797), - [anon_sym_BSLASHAc] = ACTIONS(4797), - [anon_sym_BSLASHacp] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4797), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4797), - [anon_sym_BSLASHcolor] = ACTIONS(4797), - [anon_sym_BSLASHcolorbox] = ACTIONS(4797), - [anon_sym_BSLASHtextcolor] = ACTIONS(4797), - [anon_sym_BSLASHpagecolor] = ACTIONS(4797), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4797), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4797), + [549] = { + [sym_curly_group] = STATE(1118), + [sym_mixed_group] = STATE(1118), + [aux_sym_generic_command_repeat1] = STATE(526), + [sym_command_name] = ACTIONS(4565), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4743), + [anon_sym_RPAREN] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4743), + [anon_sym_RBRACK] = ACTIONS(4563), + [anon_sym_COMMA] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_BSLASHpart] = ACTIONS(4565), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddpart] = ACTIONS(4565), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4563), + [anon_sym_BSLASHchapter] = ACTIONS(4565), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddchap] = ACTIONS(4565), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsection] = ACTIONS(4565), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddsec] = ACTIONS(4565), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubsection] = ACTIONS(4565), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4565), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHparagraph] = ACTIONS(4565), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4565), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4563), + [anon_sym_BSLASHitem] = ACTIONS(4565), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(4565), + [sym_placeholder] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4565), + [anon_sym_DASH] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_SLASH] = ACTIONS(4565), + [anon_sym_CARET] = ACTIONS(4565), + [anon_sym__] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4565), + [anon_sym_GT] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_PIPE] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4565), + [anon_sym_SQUOTE] = ACTIONS(4565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), + [anon_sym_DOLLAR] = ACTIONS(4565), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), + [anon_sym_BSLASHbegin] = ACTIONS(4565), + [anon_sym_BSLASHend] = ACTIONS(4565), + [anon_sym_BSLASHusepackage] = ACTIONS(4565), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), + [anon_sym_BSLASHinclude] = ACTIONS(4565), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), + [anon_sym_BSLASHinput] = ACTIONS(4565), + [anon_sym_BSLASHsubfile] = ACTIONS(4565), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), + [anon_sym_BSLASHbibliography] = ACTIONS(4565), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), + [anon_sym_BSLASHincludesvg] = ACTIONS(4565), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), + [anon_sym_BSLASHimport] = ACTIONS(4565), + [anon_sym_BSLASHsubimport] = ACTIONS(4565), + [anon_sym_BSLASHinputfrom] = ACTIONS(4565), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), + [anon_sym_BSLASHincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHcaption] = ACTIONS(4565), + [anon_sym_BSLASHcite] = ACTIONS(4565), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCite] = ACTIONS(4565), + [anon_sym_BSLASHnocite] = ACTIONS(4565), + [anon_sym_BSLASHcitet] = ACTIONS(4565), + [anon_sym_BSLASHcitep] = ACTIONS(4565), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteauthor] = ACTIONS(4565), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitetitle] = ACTIONS(4565), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteyear] = ACTIONS(4565), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitedate] = ACTIONS(4565), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteurl] = ACTIONS(4565), + [anon_sym_BSLASHfullcite] = ACTIONS(4565), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), + [anon_sym_BSLASHcitealt] = ACTIONS(4565), + [anon_sym_BSLASHcitealp] = ACTIONS(4565), + [anon_sym_BSLASHcitetext] = ACTIONS(4565), + [anon_sym_BSLASHparencite] = ACTIONS(4565), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHParencite] = ACTIONS(4565), + [anon_sym_BSLASHfootcite] = ACTIONS(4565), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), + [anon_sym_BSLASHtextcite] = ACTIONS(4565), + [anon_sym_BSLASHTextcite] = ACTIONS(4565), + [anon_sym_BSLASHsmartcite] = ACTIONS(4565), + [anon_sym_BSLASHSmartcite] = ACTIONS(4565), + [anon_sym_BSLASHsupercite] = ACTIONS(4565), + [anon_sym_BSLASHautocite] = ACTIONS(4565), + [anon_sym_BSLASHAutocite] = ACTIONS(4565), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHvolcite] = ACTIONS(4565), + [anon_sym_BSLASHVolcite] = ACTIONS(4565), + [anon_sym_BSLASHpvolcite] = ACTIONS(4565), + [anon_sym_BSLASHPvolcite] = ACTIONS(4565), + [anon_sym_BSLASHfvolcite] = ACTIONS(4565), + [anon_sym_BSLASHftvolcite] = ACTIONS(4565), + [anon_sym_BSLASHsvolcite] = ACTIONS(4565), + [anon_sym_BSLASHSvolcite] = ACTIONS(4565), + [anon_sym_BSLASHtvolcite] = ACTIONS(4565), + [anon_sym_BSLASHTvolcite] = ACTIONS(4565), + [anon_sym_BSLASHavolcite] = ACTIONS(4565), + [anon_sym_BSLASHAvolcite] = ACTIONS(4565), + [anon_sym_BSLASHnotecite] = ACTIONS(4565), + [anon_sym_BSLASHNotecite] = ACTIONS(4565), + [anon_sym_BSLASHpnotecite] = ACTIONS(4565), + [anon_sym_BSLASHPnotecite] = ACTIONS(4565), + [anon_sym_BSLASHfnotecite] = ACTIONS(4565), + [anon_sym_BSLASHlabel] = ACTIONS(4565), + [anon_sym_BSLASHref] = ACTIONS(4565), + [anon_sym_BSLASHeqref] = ACTIONS(4565), + [anon_sym_BSLASHvref] = ACTIONS(4565), + [anon_sym_BSLASHVref] = ACTIONS(4565), + [anon_sym_BSLASHautoref] = ACTIONS(4565), + [anon_sym_BSLASHpageref] = ACTIONS(4565), + [anon_sym_BSLASHcref] = ACTIONS(4565), + [anon_sym_BSLASHCref] = ACTIONS(4565), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnameCref] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHlabelcref] = ACTIONS(4565), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCrefrange] = ACTIONS(4565), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnewlabel] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), + [anon_sym_BSLASHdef] = ACTIONS(4565), + [anon_sym_BSLASHlet] = ACTIONS(4565), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), + [anon_sym_BSLASHgls] = ACTIONS(4565), + [anon_sym_BSLASHGls] = ACTIONS(4565), + [anon_sym_BSLASHGLS] = ACTIONS(4565), + [anon_sym_BSLASHglspl] = ACTIONS(4565), + [anon_sym_BSLASHGlspl] = ACTIONS(4565), + [anon_sym_BSLASHGLSpl] = ACTIONS(4565), + [anon_sym_BSLASHglsdisp] = ACTIONS(4565), + [anon_sym_BSLASHglslink] = ACTIONS(4565), + [anon_sym_BSLASHglstext] = ACTIONS(4565), + [anon_sym_BSLASHGlstext] = ACTIONS(4565), + [anon_sym_BSLASHGLStext] = ACTIONS(4565), + [anon_sym_BSLASHglsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), + [anon_sym_BSLASHglsplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSplural] = ACTIONS(4565), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHglsname] = ACTIONS(4565), + [anon_sym_BSLASHGlsname] = ACTIONS(4565), + [anon_sym_BSLASHGLSname] = ACTIONS(4565), + [anon_sym_BSLASHglssymbol] = ACTIONS(4565), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), + [anon_sym_BSLASHglsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), + [anon_sym_BSLASHglsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), + [anon_sym_BSLASHglsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), + [anon_sym_BSLASHglsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), + [anon_sym_BSLASHglsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), + [anon_sym_BSLASHnewacronym] = ACTIONS(4565), + [anon_sym_BSLASHacrshort] = ACTIONS(4565), + [anon_sym_BSLASHAcrshort] = ACTIONS(4565), + [anon_sym_BSLASHACRshort] = ACTIONS(4565), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), + [anon_sym_BSLASHacrlong] = ACTIONS(4565), + [anon_sym_BSLASHAcrlong] = ACTIONS(4565), + [anon_sym_BSLASHACRlong] = ACTIONS(4565), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), + [anon_sym_BSLASHacrfull] = ACTIONS(4565), + [anon_sym_BSLASHAcrfull] = ACTIONS(4565), + [anon_sym_BSLASHACRfull] = ACTIONS(4565), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), + [anon_sym_BSLASHacs] = ACTIONS(4565), + [anon_sym_BSLASHAcs] = ACTIONS(4565), + [anon_sym_BSLASHacsp] = ACTIONS(4565), + [anon_sym_BSLASHAcsp] = ACTIONS(4565), + [anon_sym_BSLASHacl] = ACTIONS(4565), + [anon_sym_BSLASHAcl] = ACTIONS(4565), + [anon_sym_BSLASHaclp] = ACTIONS(4565), + [anon_sym_BSLASHAclp] = ACTIONS(4565), + [anon_sym_BSLASHacf] = ACTIONS(4565), + [anon_sym_BSLASHAcf] = ACTIONS(4565), + [anon_sym_BSLASHacfp] = ACTIONS(4565), + [anon_sym_BSLASHAcfp] = ACTIONS(4565), + [anon_sym_BSLASHac] = ACTIONS(4565), + [anon_sym_BSLASHAc] = ACTIONS(4565), + [anon_sym_BSLASHacp] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), + [anon_sym_BSLASHcolor] = ACTIONS(4565), + [anon_sym_BSLASHcolorbox] = ACTIONS(4565), + [anon_sym_BSLASHtextcolor] = ACTIONS(4565), + [anon_sym_BSLASHpagecolor] = ACTIONS(4565), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), + [anon_sym_BSLASHtext] = ACTIONS(4565), + [anon_sym_BSLASHintertext] = ACTIONS(4565), + [anon_sym_shortintertext] = ACTIONS(4565), }, - [679] = { - [sym_brack_group_text] = STATE(1062), - [sym_command_name] = ACTIONS(4797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4795), - [anon_sym_LBRACK] = ACTIONS(4963), - [anon_sym_RBRACK] = ACTIONS(4795), - [anon_sym_COMMA] = ACTIONS(4795), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_BSLASHpart] = ACTIONS(4797), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddpart] = ACTIONS(4797), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4795), - [anon_sym_BSLASHchapter] = ACTIONS(4797), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddchap] = ACTIONS(4797), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsection] = ACTIONS(4797), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddsec] = ACTIONS(4797), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubsection] = ACTIONS(4797), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4797), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHparagraph] = ACTIONS(4797), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4797), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4795), - [anon_sym_BSLASHitem] = ACTIONS(4797), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4795), - [sym_word] = ACTIONS(4797), - [sym_placeholder] = ACTIONS(4795), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_CARET] = ACTIONS(4797), - [anon_sym__] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4797), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4795), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4795), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4795), - [anon_sym_BSLASHbegin] = ACTIONS(4797), - [anon_sym_BSLASHusepackage] = ACTIONS(4797), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4797), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4797), - [anon_sym_BSLASHinclude] = ACTIONS(4797), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4797), - [anon_sym_BSLASHinput] = ACTIONS(4797), - [anon_sym_BSLASHsubfile] = ACTIONS(4797), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4797), - [anon_sym_BSLASHbibliography] = ACTIONS(4797), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4797), - [anon_sym_BSLASHincludesvg] = ACTIONS(4797), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4797), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4797), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4797), - [anon_sym_BSLASHimport] = ACTIONS(4797), - [anon_sym_BSLASHsubimport] = ACTIONS(4797), - [anon_sym_BSLASHinputfrom] = ACTIONS(4797), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4797), - [anon_sym_BSLASHincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHcaption] = ACTIONS(4797), - [anon_sym_BSLASHcite] = ACTIONS(4797), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCite] = ACTIONS(4797), - [anon_sym_BSLASHnocite] = ACTIONS(4797), - [anon_sym_BSLASHcitet] = ACTIONS(4797), - [anon_sym_BSLASHcitep] = ACTIONS(4797), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteauthor] = ACTIONS(4797), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4797), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitetitle] = ACTIONS(4797), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteyear] = ACTIONS(4797), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitedate] = ACTIONS(4797), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteurl] = ACTIONS(4797), - [anon_sym_BSLASHfullcite] = ACTIONS(4797), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4797), - [anon_sym_BSLASHcitealt] = ACTIONS(4797), - [anon_sym_BSLASHcitealp] = ACTIONS(4797), - [anon_sym_BSLASHcitetext] = ACTIONS(4797), - [anon_sym_BSLASHparencite] = ACTIONS(4797), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHParencite] = ACTIONS(4797), - [anon_sym_BSLASHfootcite] = ACTIONS(4797), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4797), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4797), - [anon_sym_BSLASHtextcite] = ACTIONS(4797), - [anon_sym_BSLASHTextcite] = ACTIONS(4797), - [anon_sym_BSLASHsmartcite] = ACTIONS(4797), - [anon_sym_BSLASHSmartcite] = ACTIONS(4797), - [anon_sym_BSLASHsupercite] = ACTIONS(4797), - [anon_sym_BSLASHautocite] = ACTIONS(4797), - [anon_sym_BSLASHAutocite] = ACTIONS(4797), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHvolcite] = ACTIONS(4797), - [anon_sym_BSLASHVolcite] = ACTIONS(4797), - [anon_sym_BSLASHpvolcite] = ACTIONS(4797), - [anon_sym_BSLASHPvolcite] = ACTIONS(4797), - [anon_sym_BSLASHfvolcite] = ACTIONS(4797), - [anon_sym_BSLASHftvolcite] = ACTIONS(4797), - [anon_sym_BSLASHsvolcite] = ACTIONS(4797), - [anon_sym_BSLASHSvolcite] = ACTIONS(4797), - [anon_sym_BSLASHtvolcite] = ACTIONS(4797), - [anon_sym_BSLASHTvolcite] = ACTIONS(4797), - [anon_sym_BSLASHavolcite] = ACTIONS(4797), - [anon_sym_BSLASHAvolcite] = ACTIONS(4797), - [anon_sym_BSLASHnotecite] = ACTIONS(4797), - [anon_sym_BSLASHNotecite] = ACTIONS(4797), - [anon_sym_BSLASHpnotecite] = ACTIONS(4797), - [anon_sym_BSLASHPnotecite] = ACTIONS(4797), - [anon_sym_BSLASHfnotecite] = ACTIONS(4797), - [anon_sym_BSLASHlabel] = ACTIONS(4797), - [anon_sym_BSLASHref] = ACTIONS(4797), - [anon_sym_BSLASHeqref] = ACTIONS(4797), - [anon_sym_BSLASHvref] = ACTIONS(4797), - [anon_sym_BSLASHVref] = ACTIONS(4797), - [anon_sym_BSLASHautoref] = ACTIONS(4797), - [anon_sym_BSLASHpageref] = ACTIONS(4797), - [anon_sym_BSLASHcref] = ACTIONS(4797), - [anon_sym_BSLASHCref] = ACTIONS(4797), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnameCref] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHlabelcref] = ACTIONS(4797), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCrefrange] = ACTIONS(4797), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnewlabel] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4797), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4797), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4797), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4795), - [anon_sym_BSLASHdef] = ACTIONS(4797), - [anon_sym_BSLASHlet] = ACTIONS(4797), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4797), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4797), - [anon_sym_BSLASHgls] = ACTIONS(4797), - [anon_sym_BSLASHGls] = ACTIONS(4797), - [anon_sym_BSLASHGLS] = ACTIONS(4797), - [anon_sym_BSLASHglspl] = ACTIONS(4797), - [anon_sym_BSLASHGlspl] = ACTIONS(4797), - [anon_sym_BSLASHGLSpl] = ACTIONS(4797), - [anon_sym_BSLASHglsdisp] = ACTIONS(4797), - [anon_sym_BSLASHglslink] = ACTIONS(4797), - [anon_sym_BSLASHglstext] = ACTIONS(4797), - [anon_sym_BSLASHGlstext] = ACTIONS(4797), - [anon_sym_BSLASHGLStext] = ACTIONS(4797), - [anon_sym_BSLASHglsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4797), - [anon_sym_BSLASHglsplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSplural] = ACTIONS(4797), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHglsname] = ACTIONS(4797), - [anon_sym_BSLASHGlsname] = ACTIONS(4797), - [anon_sym_BSLASHGLSname] = ACTIONS(4797), - [anon_sym_BSLASHglssymbol] = ACTIONS(4797), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4797), - [anon_sym_BSLASHglsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4797), - [anon_sym_BSLASHglsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4797), - [anon_sym_BSLASHglsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4797), - [anon_sym_BSLASHglsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4797), - [anon_sym_BSLASHglsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4797), - [anon_sym_BSLASHnewacronym] = ACTIONS(4797), - [anon_sym_BSLASHacrshort] = ACTIONS(4797), - [anon_sym_BSLASHAcrshort] = ACTIONS(4797), - [anon_sym_BSLASHACRshort] = ACTIONS(4797), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4797), - [anon_sym_BSLASHacrlong] = ACTIONS(4797), - [anon_sym_BSLASHAcrlong] = ACTIONS(4797), - [anon_sym_BSLASHACRlong] = ACTIONS(4797), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4797), - [anon_sym_BSLASHacrfull] = ACTIONS(4797), - [anon_sym_BSLASHAcrfull] = ACTIONS(4797), - [anon_sym_BSLASHACRfull] = ACTIONS(4797), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4797), - [anon_sym_BSLASHacs] = ACTIONS(4797), - [anon_sym_BSLASHAcs] = ACTIONS(4797), - [anon_sym_BSLASHacsp] = ACTIONS(4797), - [anon_sym_BSLASHAcsp] = ACTIONS(4797), - [anon_sym_BSLASHacl] = ACTIONS(4797), - [anon_sym_BSLASHAcl] = ACTIONS(4797), - [anon_sym_BSLASHaclp] = ACTIONS(4797), - [anon_sym_BSLASHAclp] = ACTIONS(4797), - [anon_sym_BSLASHacf] = ACTIONS(4797), - [anon_sym_BSLASHAcf] = ACTIONS(4797), - [anon_sym_BSLASHacfp] = ACTIONS(4797), - [anon_sym_BSLASHAcfp] = ACTIONS(4797), - [anon_sym_BSLASHac] = ACTIONS(4797), - [anon_sym_BSLASHAc] = ACTIONS(4797), - [anon_sym_BSLASHacp] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4797), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4797), - [anon_sym_BSLASHcolor] = ACTIONS(4797), - [anon_sym_BSLASHcolorbox] = ACTIONS(4797), - [anon_sym_BSLASHtextcolor] = ACTIONS(4797), - [anon_sym_BSLASHpagecolor] = ACTIONS(4797), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4797), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4797), + [550] = { + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(449), + [aux_sym__section_repeat5] = STATE(449), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [680] = { - [sym_curly_group] = STATE(1099), - [sym_command_name] = ACTIONS(4765), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4765), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_RPAREN] = ACTIONS(4763), - [anon_sym_LBRACK] = ACTIONS(4763), - [anon_sym_RBRACK] = ACTIONS(4763), - [anon_sym_COMMA] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(4763), - [anon_sym_BSLASHpart] = ACTIONS(4765), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddpart] = ACTIONS(4765), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4763), - [anon_sym_BSLASHchapter] = ACTIONS(4765), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddchap] = ACTIONS(4765), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsection] = ACTIONS(4765), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddsec] = ACTIONS(4765), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubsection] = ACTIONS(4765), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4765), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHparagraph] = ACTIONS(4765), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4765), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4763), - [anon_sym_BSLASHitem] = ACTIONS(4765), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4763), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(4765), - [sym_placeholder] = ACTIONS(4763), - [anon_sym_PLUS] = ACTIONS(4765), - [anon_sym_DASH] = ACTIONS(4765), - [anon_sym_STAR] = ACTIONS(4765), - [anon_sym_SLASH] = ACTIONS(4765), - [anon_sym_CARET] = ACTIONS(4765), - [anon_sym__] = ACTIONS(4765), - [anon_sym_LT] = ACTIONS(4765), - [anon_sym_GT] = ACTIONS(4765), - [anon_sym_BANG] = ACTIONS(4765), - [anon_sym_PIPE] = ACTIONS(4765), - [anon_sym_COLON] = ACTIONS(4765), - [anon_sym_SQUOTE] = ACTIONS(4765), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4763), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4763), - [anon_sym_DOLLAR] = ACTIONS(4765), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4763), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4763), - [anon_sym_BSLASHbegin] = ACTIONS(4765), - [anon_sym_BSLASHend] = ACTIONS(4765), - [anon_sym_BSLASHusepackage] = ACTIONS(4765), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4765), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4765), - [anon_sym_BSLASHinclude] = ACTIONS(4765), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4765), - [anon_sym_BSLASHinput] = ACTIONS(4765), - [anon_sym_BSLASHsubfile] = ACTIONS(4765), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4765), - [anon_sym_BSLASHbibliography] = ACTIONS(4765), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4765), - [anon_sym_BSLASHincludesvg] = ACTIONS(4765), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4765), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4765), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4765), - [anon_sym_BSLASHimport] = ACTIONS(4765), - [anon_sym_BSLASHsubimport] = ACTIONS(4765), - [anon_sym_BSLASHinputfrom] = ACTIONS(4765), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4765), - [anon_sym_BSLASHincludefrom] = ACTIONS(4765), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4765), - [anon_sym_BSLASHcaption] = ACTIONS(4765), - [anon_sym_BSLASHcite] = ACTIONS(4765), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCite] = ACTIONS(4765), - [anon_sym_BSLASHnocite] = ACTIONS(4765), - [anon_sym_BSLASHcitet] = ACTIONS(4765), - [anon_sym_BSLASHcitep] = ACTIONS(4765), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteauthor] = ACTIONS(4765), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4765), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitetitle] = ACTIONS(4765), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteyear] = ACTIONS(4765), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitedate] = ACTIONS(4765), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteurl] = ACTIONS(4765), - [anon_sym_BSLASHfullcite] = ACTIONS(4765), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4765), - [anon_sym_BSLASHcitealt] = ACTIONS(4765), - [anon_sym_BSLASHcitealp] = ACTIONS(4765), - [anon_sym_BSLASHcitetext] = ACTIONS(4765), - [anon_sym_BSLASHparencite] = ACTIONS(4765), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHParencite] = ACTIONS(4765), - [anon_sym_BSLASHfootcite] = ACTIONS(4765), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4765), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4765), - [anon_sym_BSLASHtextcite] = ACTIONS(4765), - [anon_sym_BSLASHTextcite] = ACTIONS(4765), - [anon_sym_BSLASHsmartcite] = ACTIONS(4765), - [anon_sym_BSLASHSmartcite] = ACTIONS(4765), - [anon_sym_BSLASHsupercite] = ACTIONS(4765), - [anon_sym_BSLASHautocite] = ACTIONS(4765), - [anon_sym_BSLASHAutocite] = ACTIONS(4765), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHvolcite] = ACTIONS(4765), - [anon_sym_BSLASHVolcite] = ACTIONS(4765), - [anon_sym_BSLASHpvolcite] = ACTIONS(4765), - [anon_sym_BSLASHPvolcite] = ACTIONS(4765), - [anon_sym_BSLASHfvolcite] = ACTIONS(4765), - [anon_sym_BSLASHftvolcite] = ACTIONS(4765), - [anon_sym_BSLASHsvolcite] = ACTIONS(4765), - [anon_sym_BSLASHSvolcite] = ACTIONS(4765), - [anon_sym_BSLASHtvolcite] = ACTIONS(4765), - [anon_sym_BSLASHTvolcite] = ACTIONS(4765), - [anon_sym_BSLASHavolcite] = ACTIONS(4765), - [anon_sym_BSLASHAvolcite] = ACTIONS(4765), - [anon_sym_BSLASHnotecite] = ACTIONS(4765), - [anon_sym_BSLASHNotecite] = ACTIONS(4765), - [anon_sym_BSLASHpnotecite] = ACTIONS(4765), - [anon_sym_BSLASHPnotecite] = ACTIONS(4765), - [anon_sym_BSLASHfnotecite] = ACTIONS(4765), - [anon_sym_BSLASHlabel] = ACTIONS(4765), - [anon_sym_BSLASHref] = ACTIONS(4765), - [anon_sym_BSLASHeqref] = ACTIONS(4765), - [anon_sym_BSLASHvref] = ACTIONS(4765), - [anon_sym_BSLASHVref] = ACTIONS(4765), - [anon_sym_BSLASHautoref] = ACTIONS(4765), - [anon_sym_BSLASHpageref] = ACTIONS(4765), - [anon_sym_BSLASHcref] = ACTIONS(4765), - [anon_sym_BSLASHCref] = ACTIONS(4765), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4763), - [anon_sym_BSLASHnamecref] = ACTIONS(4765), - [anon_sym_BSLASHnameCref] = ACTIONS(4765), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4765), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4765), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4765), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4765), - [anon_sym_BSLASHlabelcref] = ACTIONS(4765), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4765), - [anon_sym_BSLASHcrefrange] = ACTIONS(4765), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCrefrange] = ACTIONS(4765), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4763), - [anon_sym_BSLASHnewlabel] = ACTIONS(4765), - [anon_sym_BSLASHnewcommand] = ACTIONS(4765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4763), - [anon_sym_BSLASHdef] = ACTIONS(4765), - [anon_sym_BSLASHlet] = ACTIONS(4765), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4765), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4765), - [anon_sym_BSLASHgls] = ACTIONS(4765), - [anon_sym_BSLASHGls] = ACTIONS(4765), - [anon_sym_BSLASHGLS] = ACTIONS(4765), - [anon_sym_BSLASHglspl] = ACTIONS(4765), - [anon_sym_BSLASHGlspl] = ACTIONS(4765), - [anon_sym_BSLASHGLSpl] = ACTIONS(4765), - [anon_sym_BSLASHglsdisp] = ACTIONS(4765), - [anon_sym_BSLASHglslink] = ACTIONS(4765), - [anon_sym_BSLASHglstext] = ACTIONS(4765), - [anon_sym_BSLASHGlstext] = ACTIONS(4765), - [anon_sym_BSLASHGLStext] = ACTIONS(4765), - [anon_sym_BSLASHglsfirst] = ACTIONS(4765), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4765), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4765), - [anon_sym_BSLASHglsplural] = ACTIONS(4765), - [anon_sym_BSLASHGlsplural] = ACTIONS(4765), - [anon_sym_BSLASHGLSplural] = ACTIONS(4765), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHglsname] = ACTIONS(4765), - [anon_sym_BSLASHGlsname] = ACTIONS(4765), - [anon_sym_BSLASHGLSname] = ACTIONS(4765), - [anon_sym_BSLASHglssymbol] = ACTIONS(4765), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4765), - [anon_sym_BSLASHglsdesc] = ACTIONS(4765), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4765), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4765), - [anon_sym_BSLASHglsuseri] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4765), - [anon_sym_BSLASHglsuserii] = ACTIONS(4765), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4765), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4765), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4765), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4765), - [anon_sym_BSLASHglsuserv] = ACTIONS(4765), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4765), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4765), - [anon_sym_BSLASHglsuservi] = ACTIONS(4765), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4765), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4765), - [anon_sym_BSLASHnewacronym] = ACTIONS(4765), - [anon_sym_BSLASHacrshort] = ACTIONS(4765), - [anon_sym_BSLASHAcrshort] = ACTIONS(4765), - [anon_sym_BSLASHACRshort] = ACTIONS(4765), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4765), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4765), - [anon_sym_BSLASHacrlong] = ACTIONS(4765), - [anon_sym_BSLASHAcrlong] = ACTIONS(4765), - [anon_sym_BSLASHACRlong] = ACTIONS(4765), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4765), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4765), - [anon_sym_BSLASHacrfull] = ACTIONS(4765), - [anon_sym_BSLASHAcrfull] = ACTIONS(4765), - [anon_sym_BSLASHACRfull] = ACTIONS(4765), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4765), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4765), - [anon_sym_BSLASHacs] = ACTIONS(4765), - [anon_sym_BSLASHAcs] = ACTIONS(4765), - [anon_sym_BSLASHacsp] = ACTIONS(4765), - [anon_sym_BSLASHAcsp] = ACTIONS(4765), - [anon_sym_BSLASHacl] = ACTIONS(4765), - [anon_sym_BSLASHAcl] = ACTIONS(4765), - [anon_sym_BSLASHaclp] = ACTIONS(4765), - [anon_sym_BSLASHAclp] = ACTIONS(4765), - [anon_sym_BSLASHacf] = ACTIONS(4765), - [anon_sym_BSLASHAcf] = ACTIONS(4765), - [anon_sym_BSLASHacfp] = ACTIONS(4765), - [anon_sym_BSLASHAcfp] = ACTIONS(4765), - [anon_sym_BSLASHac] = ACTIONS(4765), - [anon_sym_BSLASHAc] = ACTIONS(4765), - [anon_sym_BSLASHacp] = ACTIONS(4765), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4765), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4765), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4765), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4765), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4765), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4765), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4765), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4765), - [anon_sym_BSLASHcolor] = ACTIONS(4765), - [anon_sym_BSLASHcolorbox] = ACTIONS(4765), - [anon_sym_BSLASHtextcolor] = ACTIONS(4765), - [anon_sym_BSLASHpagecolor] = ACTIONS(4765), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4765), + [551] = { + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(451), + [aux_sym__section_repeat4] = STATE(451), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [681] = { - [sym_curly_group] = STATE(1100), - [sym_command_name] = ACTIONS(4769), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4767), - [anon_sym_RPAREN] = ACTIONS(4767), - [anon_sym_LBRACK] = ACTIONS(4767), - [anon_sym_RBRACK] = ACTIONS(4767), - [anon_sym_COMMA] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_BSLASHpart] = ACTIONS(4769), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddpart] = ACTIONS(4769), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4767), - [anon_sym_BSLASHchapter] = ACTIONS(4769), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddchap] = ACTIONS(4769), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsection] = ACTIONS(4769), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddsec] = ACTIONS(4769), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubsection] = ACTIONS(4769), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4769), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHparagraph] = ACTIONS(4769), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4769), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4767), - [anon_sym_BSLASHitem] = ACTIONS(4769), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(4769), - [sym_placeholder] = ACTIONS(4767), - [anon_sym_PLUS] = ACTIONS(4769), - [anon_sym_DASH] = ACTIONS(4769), - [anon_sym_STAR] = ACTIONS(4769), - [anon_sym_SLASH] = ACTIONS(4769), - [anon_sym_CARET] = ACTIONS(4769), - [anon_sym__] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4769), - [anon_sym_GT] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4769), - [anon_sym_PIPE] = ACTIONS(4769), - [anon_sym_COLON] = ACTIONS(4769), - [anon_sym_SQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4767), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4767), - [anon_sym_DOLLAR] = ACTIONS(4769), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4767), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4767), - [anon_sym_BSLASHbegin] = ACTIONS(4769), - [anon_sym_BSLASHend] = ACTIONS(4769), - [anon_sym_BSLASHusepackage] = ACTIONS(4769), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4769), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4769), - [anon_sym_BSLASHinclude] = ACTIONS(4769), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4769), - [anon_sym_BSLASHinput] = ACTIONS(4769), - [anon_sym_BSLASHsubfile] = ACTIONS(4769), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4769), - [anon_sym_BSLASHbibliography] = ACTIONS(4769), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4769), - [anon_sym_BSLASHincludesvg] = ACTIONS(4769), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4769), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4769), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4769), - [anon_sym_BSLASHimport] = ACTIONS(4769), - [anon_sym_BSLASHsubimport] = ACTIONS(4769), - [anon_sym_BSLASHinputfrom] = ACTIONS(4769), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4769), - [anon_sym_BSLASHincludefrom] = ACTIONS(4769), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4769), - [anon_sym_BSLASHcaption] = ACTIONS(4769), - [anon_sym_BSLASHcite] = ACTIONS(4769), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCite] = ACTIONS(4769), - [anon_sym_BSLASHnocite] = ACTIONS(4769), - [anon_sym_BSLASHcitet] = ACTIONS(4769), - [anon_sym_BSLASHcitep] = ACTIONS(4769), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteauthor] = ACTIONS(4769), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4769), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitetitle] = ACTIONS(4769), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteyear] = ACTIONS(4769), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitedate] = ACTIONS(4769), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteurl] = ACTIONS(4769), - [anon_sym_BSLASHfullcite] = ACTIONS(4769), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4769), - [anon_sym_BSLASHcitealt] = ACTIONS(4769), - [anon_sym_BSLASHcitealp] = ACTIONS(4769), - [anon_sym_BSLASHcitetext] = ACTIONS(4769), - [anon_sym_BSLASHparencite] = ACTIONS(4769), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHParencite] = ACTIONS(4769), - [anon_sym_BSLASHfootcite] = ACTIONS(4769), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4769), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4769), - [anon_sym_BSLASHtextcite] = ACTIONS(4769), - [anon_sym_BSLASHTextcite] = ACTIONS(4769), - [anon_sym_BSLASHsmartcite] = ACTIONS(4769), - [anon_sym_BSLASHSmartcite] = ACTIONS(4769), - [anon_sym_BSLASHsupercite] = ACTIONS(4769), - [anon_sym_BSLASHautocite] = ACTIONS(4769), - [anon_sym_BSLASHAutocite] = ACTIONS(4769), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHvolcite] = ACTIONS(4769), - [anon_sym_BSLASHVolcite] = ACTIONS(4769), - [anon_sym_BSLASHpvolcite] = ACTIONS(4769), - [anon_sym_BSLASHPvolcite] = ACTIONS(4769), - [anon_sym_BSLASHfvolcite] = ACTIONS(4769), - [anon_sym_BSLASHftvolcite] = ACTIONS(4769), - [anon_sym_BSLASHsvolcite] = ACTIONS(4769), - [anon_sym_BSLASHSvolcite] = ACTIONS(4769), - [anon_sym_BSLASHtvolcite] = ACTIONS(4769), - [anon_sym_BSLASHTvolcite] = ACTIONS(4769), - [anon_sym_BSLASHavolcite] = ACTIONS(4769), - [anon_sym_BSLASHAvolcite] = ACTIONS(4769), - [anon_sym_BSLASHnotecite] = ACTIONS(4769), - [anon_sym_BSLASHNotecite] = ACTIONS(4769), - [anon_sym_BSLASHpnotecite] = ACTIONS(4769), - [anon_sym_BSLASHPnotecite] = ACTIONS(4769), - [anon_sym_BSLASHfnotecite] = ACTIONS(4769), - [anon_sym_BSLASHlabel] = ACTIONS(4769), - [anon_sym_BSLASHref] = ACTIONS(4769), - [anon_sym_BSLASHeqref] = ACTIONS(4769), - [anon_sym_BSLASHvref] = ACTIONS(4769), - [anon_sym_BSLASHVref] = ACTIONS(4769), - [anon_sym_BSLASHautoref] = ACTIONS(4769), - [anon_sym_BSLASHpageref] = ACTIONS(4769), - [anon_sym_BSLASHcref] = ACTIONS(4769), - [anon_sym_BSLASHCref] = ACTIONS(4769), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4767), - [anon_sym_BSLASHnamecref] = ACTIONS(4769), - [anon_sym_BSLASHnameCref] = ACTIONS(4769), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4769), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4769), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4769), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4769), - [anon_sym_BSLASHlabelcref] = ACTIONS(4769), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4769), - [anon_sym_BSLASHcrefrange] = ACTIONS(4769), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCrefrange] = ACTIONS(4769), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4767), - [anon_sym_BSLASHnewlabel] = ACTIONS(4769), - [anon_sym_BSLASHnewcommand] = ACTIONS(4769), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4769), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4769), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4769), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4767), - [anon_sym_BSLASHdef] = ACTIONS(4769), - [anon_sym_BSLASHlet] = ACTIONS(4769), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4769), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4769), - [anon_sym_BSLASHgls] = ACTIONS(4769), - [anon_sym_BSLASHGls] = ACTIONS(4769), - [anon_sym_BSLASHGLS] = ACTIONS(4769), - [anon_sym_BSLASHglspl] = ACTIONS(4769), - [anon_sym_BSLASHGlspl] = ACTIONS(4769), - [anon_sym_BSLASHGLSpl] = ACTIONS(4769), - [anon_sym_BSLASHglsdisp] = ACTIONS(4769), - [anon_sym_BSLASHglslink] = ACTIONS(4769), - [anon_sym_BSLASHglstext] = ACTIONS(4769), - [anon_sym_BSLASHGlstext] = ACTIONS(4769), - [anon_sym_BSLASHGLStext] = ACTIONS(4769), - [anon_sym_BSLASHglsfirst] = ACTIONS(4769), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4769), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4769), - [anon_sym_BSLASHglsplural] = ACTIONS(4769), - [anon_sym_BSLASHGlsplural] = ACTIONS(4769), - [anon_sym_BSLASHGLSplural] = ACTIONS(4769), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHglsname] = ACTIONS(4769), - [anon_sym_BSLASHGlsname] = ACTIONS(4769), - [anon_sym_BSLASHGLSname] = ACTIONS(4769), - [anon_sym_BSLASHglssymbol] = ACTIONS(4769), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4769), - [anon_sym_BSLASHglsdesc] = ACTIONS(4769), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4769), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4769), - [anon_sym_BSLASHglsuseri] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4769), - [anon_sym_BSLASHglsuserii] = ACTIONS(4769), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4769), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4769), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4769), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4769), - [anon_sym_BSLASHglsuserv] = ACTIONS(4769), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4769), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4769), - [anon_sym_BSLASHglsuservi] = ACTIONS(4769), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4769), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4769), - [anon_sym_BSLASHnewacronym] = ACTIONS(4769), - [anon_sym_BSLASHacrshort] = ACTIONS(4769), - [anon_sym_BSLASHAcrshort] = ACTIONS(4769), - [anon_sym_BSLASHACRshort] = ACTIONS(4769), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4769), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4769), - [anon_sym_BSLASHacrlong] = ACTIONS(4769), - [anon_sym_BSLASHAcrlong] = ACTIONS(4769), - [anon_sym_BSLASHACRlong] = ACTIONS(4769), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4769), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4769), - [anon_sym_BSLASHacrfull] = ACTIONS(4769), - [anon_sym_BSLASHAcrfull] = ACTIONS(4769), - [anon_sym_BSLASHACRfull] = ACTIONS(4769), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4769), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4769), - [anon_sym_BSLASHacs] = ACTIONS(4769), - [anon_sym_BSLASHAcs] = ACTIONS(4769), - [anon_sym_BSLASHacsp] = ACTIONS(4769), - [anon_sym_BSLASHAcsp] = ACTIONS(4769), - [anon_sym_BSLASHacl] = ACTIONS(4769), - [anon_sym_BSLASHAcl] = ACTIONS(4769), - [anon_sym_BSLASHaclp] = ACTIONS(4769), - [anon_sym_BSLASHAclp] = ACTIONS(4769), - [anon_sym_BSLASHacf] = ACTIONS(4769), - [anon_sym_BSLASHAcf] = ACTIONS(4769), - [anon_sym_BSLASHacfp] = ACTIONS(4769), - [anon_sym_BSLASHAcfp] = ACTIONS(4769), - [anon_sym_BSLASHac] = ACTIONS(4769), - [anon_sym_BSLASHAc] = ACTIONS(4769), - [anon_sym_BSLASHacp] = ACTIONS(4769), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4769), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4769), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4769), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4769), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4769), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4769), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4769), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4769), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4769), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4769), - [anon_sym_BSLASHcolor] = ACTIONS(4769), - [anon_sym_BSLASHcolorbox] = ACTIONS(4769), - [anon_sym_BSLASHtextcolor] = ACTIONS(4769), - [anon_sym_BSLASHpagecolor] = ACTIONS(4769), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4769), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4769), + [552] = { + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(456), + [aux_sym__section_repeat3] = STATE(456), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(1841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddchap] = ACTIONS(1841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), }, - [682] = { - [sym_curly_group] = STATE(1101), - [sym_command_name] = ACTIONS(4773), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4773), - [anon_sym_LPAREN] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4771), - [anon_sym_LBRACK] = ACTIONS(4771), - [anon_sym_RBRACK] = ACTIONS(4771), - [anon_sym_COMMA] = ACTIONS(4771), - [anon_sym_EQ] = ACTIONS(4771), - [anon_sym_BSLASHpart] = ACTIONS(4773), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddpart] = ACTIONS(4773), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4771), - [anon_sym_BSLASHchapter] = ACTIONS(4773), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddchap] = ACTIONS(4773), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsection] = ACTIONS(4773), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddsec] = ACTIONS(4773), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubsection] = ACTIONS(4773), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4773), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHparagraph] = ACTIONS(4773), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4773), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4771), - [anon_sym_BSLASHitem] = ACTIONS(4773), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4771), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(4773), - [sym_placeholder] = ACTIONS(4771), - [anon_sym_PLUS] = ACTIONS(4773), - [anon_sym_DASH] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4773), - [anon_sym_SLASH] = ACTIONS(4773), - [anon_sym_CARET] = ACTIONS(4773), - [anon_sym__] = ACTIONS(4773), - [anon_sym_LT] = ACTIONS(4773), - [anon_sym_GT] = ACTIONS(4773), - [anon_sym_BANG] = ACTIONS(4773), - [anon_sym_PIPE] = ACTIONS(4773), - [anon_sym_COLON] = ACTIONS(4773), - [anon_sym_SQUOTE] = ACTIONS(4773), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4771), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4771), - [anon_sym_DOLLAR] = ACTIONS(4773), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4771), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4771), - [anon_sym_BSLASHbegin] = ACTIONS(4773), - [anon_sym_BSLASHend] = ACTIONS(4773), - [anon_sym_BSLASHusepackage] = ACTIONS(4773), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4773), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4773), - [anon_sym_BSLASHinclude] = ACTIONS(4773), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4773), - [anon_sym_BSLASHinput] = ACTIONS(4773), - [anon_sym_BSLASHsubfile] = ACTIONS(4773), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4773), - [anon_sym_BSLASHbibliography] = ACTIONS(4773), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4773), - [anon_sym_BSLASHincludesvg] = ACTIONS(4773), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4773), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4773), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4773), - [anon_sym_BSLASHimport] = ACTIONS(4773), - [anon_sym_BSLASHsubimport] = ACTIONS(4773), - [anon_sym_BSLASHinputfrom] = ACTIONS(4773), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4773), - [anon_sym_BSLASHincludefrom] = ACTIONS(4773), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4773), - [anon_sym_BSLASHcaption] = ACTIONS(4773), - [anon_sym_BSLASHcite] = ACTIONS(4773), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCite] = ACTIONS(4773), - [anon_sym_BSLASHnocite] = ACTIONS(4773), - [anon_sym_BSLASHcitet] = ACTIONS(4773), - [anon_sym_BSLASHcitep] = ACTIONS(4773), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteauthor] = ACTIONS(4773), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4773), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitetitle] = ACTIONS(4773), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteyear] = ACTIONS(4773), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitedate] = ACTIONS(4773), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteurl] = ACTIONS(4773), - [anon_sym_BSLASHfullcite] = ACTIONS(4773), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4773), - [anon_sym_BSLASHcitealt] = ACTIONS(4773), - [anon_sym_BSLASHcitealp] = ACTIONS(4773), - [anon_sym_BSLASHcitetext] = ACTIONS(4773), - [anon_sym_BSLASHparencite] = ACTIONS(4773), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHParencite] = ACTIONS(4773), - [anon_sym_BSLASHfootcite] = ACTIONS(4773), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4773), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4773), - [anon_sym_BSLASHtextcite] = ACTIONS(4773), - [anon_sym_BSLASHTextcite] = ACTIONS(4773), - [anon_sym_BSLASHsmartcite] = ACTIONS(4773), - [anon_sym_BSLASHSmartcite] = ACTIONS(4773), - [anon_sym_BSLASHsupercite] = ACTIONS(4773), - [anon_sym_BSLASHautocite] = ACTIONS(4773), - [anon_sym_BSLASHAutocite] = ACTIONS(4773), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHvolcite] = ACTIONS(4773), - [anon_sym_BSLASHVolcite] = ACTIONS(4773), - [anon_sym_BSLASHpvolcite] = ACTIONS(4773), - [anon_sym_BSLASHPvolcite] = ACTIONS(4773), - [anon_sym_BSLASHfvolcite] = ACTIONS(4773), - [anon_sym_BSLASHftvolcite] = ACTIONS(4773), - [anon_sym_BSLASHsvolcite] = ACTIONS(4773), - [anon_sym_BSLASHSvolcite] = ACTIONS(4773), - [anon_sym_BSLASHtvolcite] = ACTIONS(4773), - [anon_sym_BSLASHTvolcite] = ACTIONS(4773), - [anon_sym_BSLASHavolcite] = ACTIONS(4773), - [anon_sym_BSLASHAvolcite] = ACTIONS(4773), - [anon_sym_BSLASHnotecite] = ACTIONS(4773), - [anon_sym_BSLASHNotecite] = ACTIONS(4773), - [anon_sym_BSLASHpnotecite] = ACTIONS(4773), - [anon_sym_BSLASHPnotecite] = ACTIONS(4773), - [anon_sym_BSLASHfnotecite] = ACTIONS(4773), - [anon_sym_BSLASHlabel] = ACTIONS(4773), - [anon_sym_BSLASHref] = ACTIONS(4773), - [anon_sym_BSLASHeqref] = ACTIONS(4773), - [anon_sym_BSLASHvref] = ACTIONS(4773), - [anon_sym_BSLASHVref] = ACTIONS(4773), - [anon_sym_BSLASHautoref] = ACTIONS(4773), - [anon_sym_BSLASHpageref] = ACTIONS(4773), - [anon_sym_BSLASHcref] = ACTIONS(4773), - [anon_sym_BSLASHCref] = ACTIONS(4773), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4771), - [anon_sym_BSLASHnamecref] = ACTIONS(4773), - [anon_sym_BSLASHnameCref] = ACTIONS(4773), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4773), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4773), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4773), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4773), - [anon_sym_BSLASHlabelcref] = ACTIONS(4773), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4773), - [anon_sym_BSLASHcrefrange] = ACTIONS(4773), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCrefrange] = ACTIONS(4773), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4771), - [anon_sym_BSLASHnewlabel] = ACTIONS(4773), - [anon_sym_BSLASHnewcommand] = ACTIONS(4773), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4773), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4773), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4773), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4771), - [anon_sym_BSLASHdef] = ACTIONS(4773), - [anon_sym_BSLASHlet] = ACTIONS(4773), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4773), - [anon_sym_BSLASHgls] = ACTIONS(4773), - [anon_sym_BSLASHGls] = ACTIONS(4773), - [anon_sym_BSLASHGLS] = ACTIONS(4773), - [anon_sym_BSLASHglspl] = ACTIONS(4773), - [anon_sym_BSLASHGlspl] = ACTIONS(4773), - [anon_sym_BSLASHGLSpl] = ACTIONS(4773), - [anon_sym_BSLASHglsdisp] = ACTIONS(4773), - [anon_sym_BSLASHglslink] = ACTIONS(4773), - [anon_sym_BSLASHglstext] = ACTIONS(4773), - [anon_sym_BSLASHGlstext] = ACTIONS(4773), - [anon_sym_BSLASHGLStext] = ACTIONS(4773), - [anon_sym_BSLASHglsfirst] = ACTIONS(4773), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4773), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4773), - [anon_sym_BSLASHglsplural] = ACTIONS(4773), - [anon_sym_BSLASHGlsplural] = ACTIONS(4773), - [anon_sym_BSLASHGLSplural] = ACTIONS(4773), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHglsname] = ACTIONS(4773), - [anon_sym_BSLASHGlsname] = ACTIONS(4773), - [anon_sym_BSLASHGLSname] = ACTIONS(4773), - [anon_sym_BSLASHglssymbol] = ACTIONS(4773), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4773), - [anon_sym_BSLASHglsdesc] = ACTIONS(4773), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4773), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4773), - [anon_sym_BSLASHglsuseri] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4773), - [anon_sym_BSLASHglsuserii] = ACTIONS(4773), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4773), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4773), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4773), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4773), - [anon_sym_BSLASHglsuserv] = ACTIONS(4773), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4773), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4773), - [anon_sym_BSLASHglsuservi] = ACTIONS(4773), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4773), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4773), - [anon_sym_BSLASHnewacronym] = ACTIONS(4773), - [anon_sym_BSLASHacrshort] = ACTIONS(4773), - [anon_sym_BSLASHAcrshort] = ACTIONS(4773), - [anon_sym_BSLASHACRshort] = ACTIONS(4773), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4773), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4773), - [anon_sym_BSLASHacrlong] = ACTIONS(4773), - [anon_sym_BSLASHAcrlong] = ACTIONS(4773), - [anon_sym_BSLASHACRlong] = ACTIONS(4773), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4773), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4773), - [anon_sym_BSLASHacrfull] = ACTIONS(4773), - [anon_sym_BSLASHAcrfull] = ACTIONS(4773), - [anon_sym_BSLASHACRfull] = ACTIONS(4773), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4773), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4773), - [anon_sym_BSLASHacs] = ACTIONS(4773), - [anon_sym_BSLASHAcs] = ACTIONS(4773), - [anon_sym_BSLASHacsp] = ACTIONS(4773), - [anon_sym_BSLASHAcsp] = ACTIONS(4773), - [anon_sym_BSLASHacl] = ACTIONS(4773), - [anon_sym_BSLASHAcl] = ACTIONS(4773), - [anon_sym_BSLASHaclp] = ACTIONS(4773), - [anon_sym_BSLASHAclp] = ACTIONS(4773), - [anon_sym_BSLASHacf] = ACTIONS(4773), - [anon_sym_BSLASHAcf] = ACTIONS(4773), - [anon_sym_BSLASHacfp] = ACTIONS(4773), - [anon_sym_BSLASHAcfp] = ACTIONS(4773), - [anon_sym_BSLASHac] = ACTIONS(4773), - [anon_sym_BSLASHAc] = ACTIONS(4773), - [anon_sym_BSLASHacp] = ACTIONS(4773), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4773), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4773), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4773), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4773), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4773), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4773), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4773), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4773), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4773), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4773), - [anon_sym_BSLASHcolor] = ACTIONS(4773), - [anon_sym_BSLASHcolorbox] = ACTIONS(4773), - [anon_sym_BSLASHtextcolor] = ACTIONS(4773), - [anon_sym_BSLASHpagecolor] = ACTIONS(4773), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4773), + [553] = { + [sym__chapter_declaration] = STATE(137), + [sym_chapter] = STATE(515), + [aux_sym__section_repeat2] = STATE(515), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(321), + [anon_sym_BSLASHaddchap] = ACTIONS(319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(321), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [683] = { - [sym_curly_group] = STATE(1102), - [sym_command_name] = ACTIONS(4777), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4777), - [anon_sym_LPAREN] = ACTIONS(4775), - [anon_sym_RPAREN] = ACTIONS(4775), - [anon_sym_LBRACK] = ACTIONS(4775), - [anon_sym_RBRACK] = ACTIONS(4775), - [anon_sym_COMMA] = ACTIONS(4775), - [anon_sym_EQ] = ACTIONS(4775), - [anon_sym_BSLASHpart] = ACTIONS(4777), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddpart] = ACTIONS(4777), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4775), - [anon_sym_BSLASHchapter] = ACTIONS(4777), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddchap] = ACTIONS(4777), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsection] = ACTIONS(4777), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddsec] = ACTIONS(4777), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubsection] = ACTIONS(4777), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4777), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHparagraph] = ACTIONS(4777), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4777), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4775), - [anon_sym_BSLASHitem] = ACTIONS(4777), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4775), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(4777), - [sym_placeholder] = ACTIONS(4775), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_CARET] = ACTIONS(4777), - [anon_sym__] = ACTIONS(4777), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_PIPE] = ACTIONS(4777), - [anon_sym_COLON] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4777), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4775), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4775), - [anon_sym_DOLLAR] = ACTIONS(4777), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4775), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4775), - [anon_sym_BSLASHbegin] = ACTIONS(4777), - [anon_sym_BSLASHend] = ACTIONS(4777), - [anon_sym_BSLASHusepackage] = ACTIONS(4777), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4777), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4777), - [anon_sym_BSLASHinclude] = ACTIONS(4777), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4777), - [anon_sym_BSLASHinput] = ACTIONS(4777), - [anon_sym_BSLASHsubfile] = ACTIONS(4777), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4777), - [anon_sym_BSLASHbibliography] = ACTIONS(4777), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4777), - [anon_sym_BSLASHincludesvg] = ACTIONS(4777), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4777), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4777), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4777), - [anon_sym_BSLASHimport] = ACTIONS(4777), - [anon_sym_BSLASHsubimport] = ACTIONS(4777), - [anon_sym_BSLASHinputfrom] = ACTIONS(4777), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4777), - [anon_sym_BSLASHincludefrom] = ACTIONS(4777), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4777), - [anon_sym_BSLASHcaption] = ACTIONS(4777), - [anon_sym_BSLASHcite] = ACTIONS(4777), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCite] = ACTIONS(4777), - [anon_sym_BSLASHnocite] = ACTIONS(4777), - [anon_sym_BSLASHcitet] = ACTIONS(4777), - [anon_sym_BSLASHcitep] = ACTIONS(4777), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteauthor] = ACTIONS(4777), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4777), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitetitle] = ACTIONS(4777), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteyear] = ACTIONS(4777), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitedate] = ACTIONS(4777), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteurl] = ACTIONS(4777), - [anon_sym_BSLASHfullcite] = ACTIONS(4777), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4777), - [anon_sym_BSLASHcitealt] = ACTIONS(4777), - [anon_sym_BSLASHcitealp] = ACTIONS(4777), - [anon_sym_BSLASHcitetext] = ACTIONS(4777), - [anon_sym_BSLASHparencite] = ACTIONS(4777), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHParencite] = ACTIONS(4777), - [anon_sym_BSLASHfootcite] = ACTIONS(4777), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4777), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4777), - [anon_sym_BSLASHtextcite] = ACTIONS(4777), - [anon_sym_BSLASHTextcite] = ACTIONS(4777), - [anon_sym_BSLASHsmartcite] = ACTIONS(4777), - [anon_sym_BSLASHSmartcite] = ACTIONS(4777), - [anon_sym_BSLASHsupercite] = ACTIONS(4777), - [anon_sym_BSLASHautocite] = ACTIONS(4777), - [anon_sym_BSLASHAutocite] = ACTIONS(4777), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHvolcite] = ACTIONS(4777), - [anon_sym_BSLASHVolcite] = ACTIONS(4777), - [anon_sym_BSLASHpvolcite] = ACTIONS(4777), - [anon_sym_BSLASHPvolcite] = ACTIONS(4777), - [anon_sym_BSLASHfvolcite] = ACTIONS(4777), - [anon_sym_BSLASHftvolcite] = ACTIONS(4777), - [anon_sym_BSLASHsvolcite] = ACTIONS(4777), - [anon_sym_BSLASHSvolcite] = ACTIONS(4777), - [anon_sym_BSLASHtvolcite] = ACTIONS(4777), - [anon_sym_BSLASHTvolcite] = ACTIONS(4777), - [anon_sym_BSLASHavolcite] = ACTIONS(4777), - [anon_sym_BSLASHAvolcite] = ACTIONS(4777), - [anon_sym_BSLASHnotecite] = ACTIONS(4777), - [anon_sym_BSLASHNotecite] = ACTIONS(4777), - [anon_sym_BSLASHpnotecite] = ACTIONS(4777), - [anon_sym_BSLASHPnotecite] = ACTIONS(4777), - [anon_sym_BSLASHfnotecite] = ACTIONS(4777), - [anon_sym_BSLASHlabel] = ACTIONS(4777), - [anon_sym_BSLASHref] = ACTIONS(4777), - [anon_sym_BSLASHeqref] = ACTIONS(4777), - [anon_sym_BSLASHvref] = ACTIONS(4777), - [anon_sym_BSLASHVref] = ACTIONS(4777), - [anon_sym_BSLASHautoref] = ACTIONS(4777), - [anon_sym_BSLASHpageref] = ACTIONS(4777), - [anon_sym_BSLASHcref] = ACTIONS(4777), - [anon_sym_BSLASHCref] = ACTIONS(4777), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4775), - [anon_sym_BSLASHnamecref] = ACTIONS(4777), - [anon_sym_BSLASHnameCref] = ACTIONS(4777), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4777), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4777), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4777), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4777), - [anon_sym_BSLASHlabelcref] = ACTIONS(4777), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4777), - [anon_sym_BSLASHcrefrange] = ACTIONS(4777), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCrefrange] = ACTIONS(4777), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4775), - [anon_sym_BSLASHnewlabel] = ACTIONS(4777), - [anon_sym_BSLASHnewcommand] = ACTIONS(4777), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4777), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4777), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4777), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4775), - [anon_sym_BSLASHdef] = ACTIONS(4777), - [anon_sym_BSLASHlet] = ACTIONS(4777), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4777), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4777), - [anon_sym_BSLASHgls] = ACTIONS(4777), - [anon_sym_BSLASHGls] = ACTIONS(4777), - [anon_sym_BSLASHGLS] = ACTIONS(4777), - [anon_sym_BSLASHglspl] = ACTIONS(4777), - [anon_sym_BSLASHGlspl] = ACTIONS(4777), - [anon_sym_BSLASHGLSpl] = ACTIONS(4777), - [anon_sym_BSLASHglsdisp] = ACTIONS(4777), - [anon_sym_BSLASHglslink] = ACTIONS(4777), - [anon_sym_BSLASHglstext] = ACTIONS(4777), - [anon_sym_BSLASHGlstext] = ACTIONS(4777), - [anon_sym_BSLASHGLStext] = ACTIONS(4777), - [anon_sym_BSLASHglsfirst] = ACTIONS(4777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4777), - [anon_sym_BSLASHglsplural] = ACTIONS(4777), - [anon_sym_BSLASHGlsplural] = ACTIONS(4777), - [anon_sym_BSLASHGLSplural] = ACTIONS(4777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHglsname] = ACTIONS(4777), - [anon_sym_BSLASHGlsname] = ACTIONS(4777), - [anon_sym_BSLASHGLSname] = ACTIONS(4777), - [anon_sym_BSLASHglssymbol] = ACTIONS(4777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4777), - [anon_sym_BSLASHglsdesc] = ACTIONS(4777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4777), - [anon_sym_BSLASHglsuseri] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4777), - [anon_sym_BSLASHglsuserii] = ACTIONS(4777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4777), - [anon_sym_BSLASHglsuserv] = ACTIONS(4777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4777), - [anon_sym_BSLASHglsuservi] = ACTIONS(4777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4777), - [anon_sym_BSLASHnewacronym] = ACTIONS(4777), - [anon_sym_BSLASHacrshort] = ACTIONS(4777), - [anon_sym_BSLASHAcrshort] = ACTIONS(4777), - [anon_sym_BSLASHACRshort] = ACTIONS(4777), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4777), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4777), - [anon_sym_BSLASHacrlong] = ACTIONS(4777), - [anon_sym_BSLASHAcrlong] = ACTIONS(4777), - [anon_sym_BSLASHACRlong] = ACTIONS(4777), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4777), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4777), - [anon_sym_BSLASHacrfull] = ACTIONS(4777), - [anon_sym_BSLASHAcrfull] = ACTIONS(4777), - [anon_sym_BSLASHACRfull] = ACTIONS(4777), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4777), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4777), - [anon_sym_BSLASHacs] = ACTIONS(4777), - [anon_sym_BSLASHAcs] = ACTIONS(4777), - [anon_sym_BSLASHacsp] = ACTIONS(4777), - [anon_sym_BSLASHAcsp] = ACTIONS(4777), - [anon_sym_BSLASHacl] = ACTIONS(4777), - [anon_sym_BSLASHAcl] = ACTIONS(4777), - [anon_sym_BSLASHaclp] = ACTIONS(4777), - [anon_sym_BSLASHAclp] = ACTIONS(4777), - [anon_sym_BSLASHacf] = ACTIONS(4777), - [anon_sym_BSLASHAcf] = ACTIONS(4777), - [anon_sym_BSLASHacfp] = ACTIONS(4777), - [anon_sym_BSLASHAcfp] = ACTIONS(4777), - [anon_sym_BSLASHac] = ACTIONS(4777), - [anon_sym_BSLASHAc] = ACTIONS(4777), - [anon_sym_BSLASHacp] = ACTIONS(4777), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4777), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4777), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4777), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4777), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4777), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4777), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4777), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4777), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4777), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4777), - [anon_sym_BSLASHcolor] = ACTIONS(4777), - [anon_sym_BSLASHcolorbox] = ACTIONS(4777), - [anon_sym_BSLASHtextcolor] = ACTIONS(4777), - [anon_sym_BSLASHpagecolor] = ACTIONS(4777), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4777), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4777), + [554] = { + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(516), + [aux_sym__section_repeat3] = STATE(516), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [684] = { - [sym_curly_group] = STATE(1103), - [sym_command_name] = ACTIONS(4781), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4779), - [anon_sym_RPAREN] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_RBRACK] = ACTIONS(4779), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_EQ] = ACTIONS(4779), - [anon_sym_BSLASHpart] = ACTIONS(4781), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddpart] = ACTIONS(4781), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4779), - [anon_sym_BSLASHchapter] = ACTIONS(4781), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddchap] = ACTIONS(4781), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsection] = ACTIONS(4781), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddsec] = ACTIONS(4781), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubsection] = ACTIONS(4781), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4781), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHparagraph] = ACTIONS(4781), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4781), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4779), - [anon_sym_BSLASHitem] = ACTIONS(4781), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(4781), - [sym_placeholder] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4781), - [anon_sym_DASH] = ACTIONS(4781), - [anon_sym_STAR] = ACTIONS(4781), - [anon_sym_SLASH] = ACTIONS(4781), - [anon_sym_CARET] = ACTIONS(4781), - [anon_sym__] = ACTIONS(4781), - [anon_sym_LT] = ACTIONS(4781), - [anon_sym_GT] = ACTIONS(4781), - [anon_sym_BANG] = ACTIONS(4781), - [anon_sym_PIPE] = ACTIONS(4781), - [anon_sym_COLON] = ACTIONS(4781), - [anon_sym_SQUOTE] = ACTIONS(4781), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4779), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4779), - [anon_sym_DOLLAR] = ACTIONS(4781), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4779), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4779), - [anon_sym_BSLASHbegin] = ACTIONS(4781), - [anon_sym_BSLASHend] = ACTIONS(4781), - [anon_sym_BSLASHusepackage] = ACTIONS(4781), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4781), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4781), - [anon_sym_BSLASHinclude] = ACTIONS(4781), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4781), - [anon_sym_BSLASHinput] = ACTIONS(4781), - [anon_sym_BSLASHsubfile] = ACTIONS(4781), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4781), - [anon_sym_BSLASHbibliography] = ACTIONS(4781), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4781), - [anon_sym_BSLASHincludesvg] = ACTIONS(4781), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4781), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4781), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4781), - [anon_sym_BSLASHimport] = ACTIONS(4781), - [anon_sym_BSLASHsubimport] = ACTIONS(4781), - [anon_sym_BSLASHinputfrom] = ACTIONS(4781), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4781), - [anon_sym_BSLASHincludefrom] = ACTIONS(4781), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4781), - [anon_sym_BSLASHcaption] = ACTIONS(4781), - [anon_sym_BSLASHcite] = ACTIONS(4781), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCite] = ACTIONS(4781), - [anon_sym_BSLASHnocite] = ACTIONS(4781), - [anon_sym_BSLASHcitet] = ACTIONS(4781), - [anon_sym_BSLASHcitep] = ACTIONS(4781), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteauthor] = ACTIONS(4781), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4781), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitetitle] = ACTIONS(4781), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteyear] = ACTIONS(4781), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitedate] = ACTIONS(4781), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteurl] = ACTIONS(4781), - [anon_sym_BSLASHfullcite] = ACTIONS(4781), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4781), - [anon_sym_BSLASHcitealt] = ACTIONS(4781), - [anon_sym_BSLASHcitealp] = ACTIONS(4781), - [anon_sym_BSLASHcitetext] = ACTIONS(4781), - [anon_sym_BSLASHparencite] = ACTIONS(4781), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHParencite] = ACTIONS(4781), - [anon_sym_BSLASHfootcite] = ACTIONS(4781), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4781), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4781), - [anon_sym_BSLASHtextcite] = ACTIONS(4781), - [anon_sym_BSLASHTextcite] = ACTIONS(4781), - [anon_sym_BSLASHsmartcite] = ACTIONS(4781), - [anon_sym_BSLASHSmartcite] = ACTIONS(4781), - [anon_sym_BSLASHsupercite] = ACTIONS(4781), - [anon_sym_BSLASHautocite] = ACTIONS(4781), - [anon_sym_BSLASHAutocite] = ACTIONS(4781), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHvolcite] = ACTIONS(4781), - [anon_sym_BSLASHVolcite] = ACTIONS(4781), - [anon_sym_BSLASHpvolcite] = ACTIONS(4781), - [anon_sym_BSLASHPvolcite] = ACTIONS(4781), - [anon_sym_BSLASHfvolcite] = ACTIONS(4781), - [anon_sym_BSLASHftvolcite] = ACTIONS(4781), - [anon_sym_BSLASHsvolcite] = ACTIONS(4781), - [anon_sym_BSLASHSvolcite] = ACTIONS(4781), - [anon_sym_BSLASHtvolcite] = ACTIONS(4781), - [anon_sym_BSLASHTvolcite] = ACTIONS(4781), - [anon_sym_BSLASHavolcite] = ACTIONS(4781), - [anon_sym_BSLASHAvolcite] = ACTIONS(4781), - [anon_sym_BSLASHnotecite] = ACTIONS(4781), - [anon_sym_BSLASHNotecite] = ACTIONS(4781), - [anon_sym_BSLASHpnotecite] = ACTIONS(4781), - [anon_sym_BSLASHPnotecite] = ACTIONS(4781), - [anon_sym_BSLASHfnotecite] = ACTIONS(4781), - [anon_sym_BSLASHlabel] = ACTIONS(4781), - [anon_sym_BSLASHref] = ACTIONS(4781), - [anon_sym_BSLASHeqref] = ACTIONS(4781), - [anon_sym_BSLASHvref] = ACTIONS(4781), - [anon_sym_BSLASHVref] = ACTIONS(4781), - [anon_sym_BSLASHautoref] = ACTIONS(4781), - [anon_sym_BSLASHpageref] = ACTIONS(4781), - [anon_sym_BSLASHcref] = ACTIONS(4781), - [anon_sym_BSLASHCref] = ACTIONS(4781), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4779), - [anon_sym_BSLASHnamecref] = ACTIONS(4781), - [anon_sym_BSLASHnameCref] = ACTIONS(4781), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4781), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4781), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4781), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4781), - [anon_sym_BSLASHlabelcref] = ACTIONS(4781), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4781), - [anon_sym_BSLASHcrefrange] = ACTIONS(4781), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCrefrange] = ACTIONS(4781), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4779), - [anon_sym_BSLASHnewlabel] = ACTIONS(4781), - [anon_sym_BSLASHnewcommand] = ACTIONS(4781), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4781), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4781), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4781), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4779), - [anon_sym_BSLASHdef] = ACTIONS(4781), - [anon_sym_BSLASHlet] = ACTIONS(4781), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4781), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4781), - [anon_sym_BSLASHgls] = ACTIONS(4781), - [anon_sym_BSLASHGls] = ACTIONS(4781), - [anon_sym_BSLASHGLS] = ACTIONS(4781), - [anon_sym_BSLASHglspl] = ACTIONS(4781), - [anon_sym_BSLASHGlspl] = ACTIONS(4781), - [anon_sym_BSLASHGLSpl] = ACTIONS(4781), - [anon_sym_BSLASHglsdisp] = ACTIONS(4781), - [anon_sym_BSLASHglslink] = ACTIONS(4781), - [anon_sym_BSLASHglstext] = ACTIONS(4781), - [anon_sym_BSLASHGlstext] = ACTIONS(4781), - [anon_sym_BSLASHGLStext] = ACTIONS(4781), - [anon_sym_BSLASHglsfirst] = ACTIONS(4781), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4781), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4781), - [anon_sym_BSLASHglsplural] = ACTIONS(4781), - [anon_sym_BSLASHGlsplural] = ACTIONS(4781), - [anon_sym_BSLASHGLSplural] = ACTIONS(4781), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHglsname] = ACTIONS(4781), - [anon_sym_BSLASHGlsname] = ACTIONS(4781), - [anon_sym_BSLASHGLSname] = ACTIONS(4781), - [anon_sym_BSLASHglssymbol] = ACTIONS(4781), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4781), - [anon_sym_BSLASHglsdesc] = ACTIONS(4781), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4781), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4781), - [anon_sym_BSLASHglsuseri] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4781), - [anon_sym_BSLASHglsuserii] = ACTIONS(4781), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4781), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4781), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4781), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4781), - [anon_sym_BSLASHglsuserv] = ACTIONS(4781), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4781), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4781), - [anon_sym_BSLASHglsuservi] = ACTIONS(4781), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4781), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4781), - [anon_sym_BSLASHnewacronym] = ACTIONS(4781), - [anon_sym_BSLASHacrshort] = ACTIONS(4781), - [anon_sym_BSLASHAcrshort] = ACTIONS(4781), - [anon_sym_BSLASHACRshort] = ACTIONS(4781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4781), - [anon_sym_BSLASHacrlong] = ACTIONS(4781), - [anon_sym_BSLASHAcrlong] = ACTIONS(4781), - [anon_sym_BSLASHACRlong] = ACTIONS(4781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4781), - [anon_sym_BSLASHacrfull] = ACTIONS(4781), - [anon_sym_BSLASHAcrfull] = ACTIONS(4781), - [anon_sym_BSLASHACRfull] = ACTIONS(4781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4781), - [anon_sym_BSLASHacs] = ACTIONS(4781), - [anon_sym_BSLASHAcs] = ACTIONS(4781), - [anon_sym_BSLASHacsp] = ACTIONS(4781), - [anon_sym_BSLASHAcsp] = ACTIONS(4781), - [anon_sym_BSLASHacl] = ACTIONS(4781), - [anon_sym_BSLASHAcl] = ACTIONS(4781), - [anon_sym_BSLASHaclp] = ACTIONS(4781), - [anon_sym_BSLASHAclp] = ACTIONS(4781), - [anon_sym_BSLASHacf] = ACTIONS(4781), - [anon_sym_BSLASHAcf] = ACTIONS(4781), - [anon_sym_BSLASHacfp] = ACTIONS(4781), - [anon_sym_BSLASHAcfp] = ACTIONS(4781), - [anon_sym_BSLASHac] = ACTIONS(4781), - [anon_sym_BSLASHAc] = ACTIONS(4781), - [anon_sym_BSLASHacp] = ACTIONS(4781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4781), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4781), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4781), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4781), - [anon_sym_BSLASHcolor] = ACTIONS(4781), - [anon_sym_BSLASHcolorbox] = ACTIONS(4781), - [anon_sym_BSLASHtextcolor] = ACTIONS(4781), - [anon_sym_BSLASHpagecolor] = ACTIONS(4781), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4781), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4781), + [555] = { + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(517), + [aux_sym__section_repeat4] = STATE(517), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [685] = { - [ts_builtin_sym_end] = ACTIONS(4965), - [sym_command_name] = ACTIONS(4967), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4965), - [anon_sym_BSLASHpart] = ACTIONS(4967), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddpart] = ACTIONS(4967), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4965), - [anon_sym_BSLASHchapter] = ACTIONS(4967), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddchap] = ACTIONS(4967), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsection] = ACTIONS(4967), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddsec] = ACTIONS(4967), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubsection] = ACTIONS(4967), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4967), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHparagraph] = ACTIONS(4967), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4967), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4965), - [anon_sym_BSLASHitem] = ACTIONS(4967), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4965), - [anon_sym_RBRACE] = ACTIONS(4965), - [sym_word] = ACTIONS(4967), - [sym_placeholder] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_CARET] = ACTIONS(4967), - [anon_sym__] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4965), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4965), - [anon_sym_BSLASHbegin] = ACTIONS(4967), - [anon_sym_BSLASHusepackage] = ACTIONS(4967), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4967), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4967), - [anon_sym_BSLASHinclude] = ACTIONS(4967), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4967), - [anon_sym_BSLASHinput] = ACTIONS(4967), - [anon_sym_BSLASHsubfile] = ACTIONS(4967), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4967), - [anon_sym_BSLASHbibliography] = ACTIONS(4967), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4967), - [anon_sym_BSLASHincludesvg] = ACTIONS(4967), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4967), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4967), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4967), - [anon_sym_BSLASHimport] = ACTIONS(4967), - [anon_sym_BSLASHsubimport] = ACTIONS(4967), - [anon_sym_BSLASHinputfrom] = ACTIONS(4967), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4967), - [anon_sym_BSLASHincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHcaption] = ACTIONS(4967), - [anon_sym_BSLASHcite] = ACTIONS(4967), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCite] = ACTIONS(4967), - [anon_sym_BSLASHnocite] = ACTIONS(4967), - [anon_sym_BSLASHcitet] = ACTIONS(4967), - [anon_sym_BSLASHcitep] = ACTIONS(4967), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteauthor] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitetitle] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteyear] = ACTIONS(4967), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitedate] = ACTIONS(4967), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteurl] = ACTIONS(4967), - [anon_sym_BSLASHfullcite] = ACTIONS(4967), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4967), - [anon_sym_BSLASHcitealt] = ACTIONS(4967), - [anon_sym_BSLASHcitealp] = ACTIONS(4967), - [anon_sym_BSLASHcitetext] = ACTIONS(4967), - [anon_sym_BSLASHparencite] = ACTIONS(4967), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHParencite] = ACTIONS(4967), - [anon_sym_BSLASHfootcite] = ACTIONS(4967), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4967), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4967), - [anon_sym_BSLASHtextcite] = ACTIONS(4967), - [anon_sym_BSLASHTextcite] = ACTIONS(4967), - [anon_sym_BSLASHsmartcite] = ACTIONS(4967), - [anon_sym_BSLASHSmartcite] = ACTIONS(4967), - [anon_sym_BSLASHsupercite] = ACTIONS(4967), - [anon_sym_BSLASHautocite] = ACTIONS(4967), - [anon_sym_BSLASHAutocite] = ACTIONS(4967), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHvolcite] = ACTIONS(4967), - [anon_sym_BSLASHVolcite] = ACTIONS(4967), - [anon_sym_BSLASHpvolcite] = ACTIONS(4967), - [anon_sym_BSLASHPvolcite] = ACTIONS(4967), - [anon_sym_BSLASHfvolcite] = ACTIONS(4967), - [anon_sym_BSLASHftvolcite] = ACTIONS(4967), - [anon_sym_BSLASHsvolcite] = ACTIONS(4967), - [anon_sym_BSLASHSvolcite] = ACTIONS(4967), - [anon_sym_BSLASHtvolcite] = ACTIONS(4967), - [anon_sym_BSLASHTvolcite] = ACTIONS(4967), - [anon_sym_BSLASHavolcite] = ACTIONS(4967), - [anon_sym_BSLASHAvolcite] = ACTIONS(4967), - [anon_sym_BSLASHnotecite] = ACTIONS(4967), - [anon_sym_BSLASHNotecite] = ACTIONS(4967), - [anon_sym_BSLASHpnotecite] = ACTIONS(4967), - [anon_sym_BSLASHPnotecite] = ACTIONS(4967), - [anon_sym_BSLASHfnotecite] = ACTIONS(4967), - [anon_sym_BSLASHlabel] = ACTIONS(4967), - [anon_sym_BSLASHref] = ACTIONS(4967), - [anon_sym_BSLASHeqref] = ACTIONS(4967), - [anon_sym_BSLASHvref] = ACTIONS(4967), - [anon_sym_BSLASHVref] = ACTIONS(4967), - [anon_sym_BSLASHautoref] = ACTIONS(4967), - [anon_sym_BSLASHpageref] = ACTIONS(4967), - [anon_sym_BSLASHcref] = ACTIONS(4967), - [anon_sym_BSLASHCref] = ACTIONS(4967), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnameCref] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHlabelcref] = ACTIONS(4967), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCrefrange] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnewlabel] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4965), - [anon_sym_BSLASHdef] = ACTIONS(4967), - [anon_sym_BSLASHlet] = ACTIONS(4967), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4967), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4967), - [anon_sym_BSLASHgls] = ACTIONS(4967), - [anon_sym_BSLASHGls] = ACTIONS(4967), - [anon_sym_BSLASHGLS] = ACTIONS(4967), - [anon_sym_BSLASHglspl] = ACTIONS(4967), - [anon_sym_BSLASHGlspl] = ACTIONS(4967), - [anon_sym_BSLASHGLSpl] = ACTIONS(4967), - [anon_sym_BSLASHglsdisp] = ACTIONS(4967), - [anon_sym_BSLASHglslink] = ACTIONS(4967), - [anon_sym_BSLASHglstext] = ACTIONS(4967), - [anon_sym_BSLASHGlstext] = ACTIONS(4967), - [anon_sym_BSLASHGLStext] = ACTIONS(4967), - [anon_sym_BSLASHglsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4967), - [anon_sym_BSLASHglsplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSplural] = ACTIONS(4967), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHglsname] = ACTIONS(4967), - [anon_sym_BSLASHGlsname] = ACTIONS(4967), - [anon_sym_BSLASHGLSname] = ACTIONS(4967), - [anon_sym_BSLASHglssymbol] = ACTIONS(4967), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4967), - [anon_sym_BSLASHglsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4967), - [anon_sym_BSLASHglsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4967), - [anon_sym_BSLASHglsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4967), - [anon_sym_BSLASHglsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4967), - [anon_sym_BSLASHglsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4967), - [anon_sym_BSLASHnewacronym] = ACTIONS(4967), - [anon_sym_BSLASHacrshort] = ACTIONS(4967), - [anon_sym_BSLASHAcrshort] = ACTIONS(4967), - [anon_sym_BSLASHACRshort] = ACTIONS(4967), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4967), - [anon_sym_BSLASHacrlong] = ACTIONS(4967), - [anon_sym_BSLASHAcrlong] = ACTIONS(4967), - [anon_sym_BSLASHACRlong] = ACTIONS(4967), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4967), - [anon_sym_BSLASHacrfull] = ACTIONS(4967), - [anon_sym_BSLASHAcrfull] = ACTIONS(4967), - [anon_sym_BSLASHACRfull] = ACTIONS(4967), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4967), - [anon_sym_BSLASHacs] = ACTIONS(4967), - [anon_sym_BSLASHAcs] = ACTIONS(4967), - [anon_sym_BSLASHacsp] = ACTIONS(4967), - [anon_sym_BSLASHAcsp] = ACTIONS(4967), - [anon_sym_BSLASHacl] = ACTIONS(4967), - [anon_sym_BSLASHAcl] = ACTIONS(4967), - [anon_sym_BSLASHaclp] = ACTIONS(4967), - [anon_sym_BSLASHAclp] = ACTIONS(4967), - [anon_sym_BSLASHacf] = ACTIONS(4967), - [anon_sym_BSLASHAcf] = ACTIONS(4967), - [anon_sym_BSLASHacfp] = ACTIONS(4967), - [anon_sym_BSLASHAcfp] = ACTIONS(4967), - [anon_sym_BSLASHac] = ACTIONS(4967), - [anon_sym_BSLASHAc] = ACTIONS(4967), - [anon_sym_BSLASHacp] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4967), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4967), - [anon_sym_BSLASHcolor] = ACTIONS(4967), - [anon_sym_BSLASHcolorbox] = ACTIONS(4967), - [anon_sym_BSLASHtextcolor] = ACTIONS(4967), - [anon_sym_BSLASHpagecolor] = ACTIONS(4967), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4967), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4967), + [556] = { + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(518), + [aux_sym__section_repeat5] = STATE(518), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [686] = { - [ts_builtin_sym_end] = ACTIONS(4969), - [sym_command_name] = ACTIONS(4971), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_RBRACK] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_BSLASHpart] = ACTIONS(4971), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddpart] = ACTIONS(4971), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4969), - [anon_sym_BSLASHchapter] = ACTIONS(4971), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddchap] = ACTIONS(4971), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsection] = ACTIONS(4971), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddsec] = ACTIONS(4971), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubsection] = ACTIONS(4971), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4971), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHparagraph] = ACTIONS(4971), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4971), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4969), - [anon_sym_BSLASHitem] = ACTIONS(4971), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4969), - [anon_sym_LBRACE] = ACTIONS(4969), - [anon_sym_RBRACE] = ACTIONS(4969), - [sym_word] = ACTIONS(4971), - [sym_placeholder] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_CARET] = ACTIONS(4971), - [anon_sym__] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4969), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4969), - [anon_sym_BSLASHbegin] = ACTIONS(4971), - [anon_sym_BSLASHusepackage] = ACTIONS(4971), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4971), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4971), - [anon_sym_BSLASHinclude] = ACTIONS(4971), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4971), - [anon_sym_BSLASHinput] = ACTIONS(4971), - [anon_sym_BSLASHsubfile] = ACTIONS(4971), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4971), - [anon_sym_BSLASHbibliography] = ACTIONS(4971), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4971), - [anon_sym_BSLASHincludesvg] = ACTIONS(4971), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4971), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4971), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4971), - [anon_sym_BSLASHimport] = ACTIONS(4971), - [anon_sym_BSLASHsubimport] = ACTIONS(4971), - [anon_sym_BSLASHinputfrom] = ACTIONS(4971), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4971), - [anon_sym_BSLASHincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHcaption] = ACTIONS(4971), - [anon_sym_BSLASHcite] = ACTIONS(4971), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCite] = ACTIONS(4971), - [anon_sym_BSLASHnocite] = ACTIONS(4971), - [anon_sym_BSLASHcitet] = ACTIONS(4971), - [anon_sym_BSLASHcitep] = ACTIONS(4971), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteyear] = ACTIONS(4971), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitedate] = ACTIONS(4971), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteurl] = ACTIONS(4971), - [anon_sym_BSLASHfullcite] = ACTIONS(4971), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4971), - [anon_sym_BSLASHcitealt] = ACTIONS(4971), - [anon_sym_BSLASHcitealp] = ACTIONS(4971), - [anon_sym_BSLASHcitetext] = ACTIONS(4971), - [anon_sym_BSLASHparencite] = ACTIONS(4971), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHParencite] = ACTIONS(4971), - [anon_sym_BSLASHfootcite] = ACTIONS(4971), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4971), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4971), - [anon_sym_BSLASHtextcite] = ACTIONS(4971), - [anon_sym_BSLASHTextcite] = ACTIONS(4971), - [anon_sym_BSLASHsmartcite] = ACTIONS(4971), - [anon_sym_BSLASHSmartcite] = ACTIONS(4971), - [anon_sym_BSLASHsupercite] = ACTIONS(4971), - [anon_sym_BSLASHautocite] = ACTIONS(4971), - [anon_sym_BSLASHAutocite] = ACTIONS(4971), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHvolcite] = ACTIONS(4971), - [anon_sym_BSLASHVolcite] = ACTIONS(4971), - [anon_sym_BSLASHpvolcite] = ACTIONS(4971), - [anon_sym_BSLASHPvolcite] = ACTIONS(4971), - [anon_sym_BSLASHfvolcite] = ACTIONS(4971), - [anon_sym_BSLASHftvolcite] = ACTIONS(4971), - [anon_sym_BSLASHsvolcite] = ACTIONS(4971), - [anon_sym_BSLASHSvolcite] = ACTIONS(4971), - [anon_sym_BSLASHtvolcite] = ACTIONS(4971), - [anon_sym_BSLASHTvolcite] = ACTIONS(4971), - [anon_sym_BSLASHavolcite] = ACTIONS(4971), - [anon_sym_BSLASHAvolcite] = ACTIONS(4971), - [anon_sym_BSLASHnotecite] = ACTIONS(4971), - [anon_sym_BSLASHNotecite] = ACTIONS(4971), - [anon_sym_BSLASHpnotecite] = ACTIONS(4971), - [anon_sym_BSLASHPnotecite] = ACTIONS(4971), - [anon_sym_BSLASHfnotecite] = ACTIONS(4971), - [anon_sym_BSLASHlabel] = ACTIONS(4971), - [anon_sym_BSLASHref] = ACTIONS(4971), - [anon_sym_BSLASHeqref] = ACTIONS(4971), - [anon_sym_BSLASHvref] = ACTIONS(4971), - [anon_sym_BSLASHVref] = ACTIONS(4971), - [anon_sym_BSLASHautoref] = ACTIONS(4971), - [anon_sym_BSLASHpageref] = ACTIONS(4971), - [anon_sym_BSLASHcref] = ACTIONS(4971), - [anon_sym_BSLASHCref] = ACTIONS(4971), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnameCref] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHlabelcref] = ACTIONS(4971), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnewlabel] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4969), - [anon_sym_BSLASHdef] = ACTIONS(4971), - [anon_sym_BSLASHlet] = ACTIONS(4971), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4971), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4971), - [anon_sym_BSLASHgls] = ACTIONS(4971), - [anon_sym_BSLASHGls] = ACTIONS(4971), - [anon_sym_BSLASHGLS] = ACTIONS(4971), - [anon_sym_BSLASHglspl] = ACTIONS(4971), - [anon_sym_BSLASHGlspl] = ACTIONS(4971), - [anon_sym_BSLASHGLSpl] = ACTIONS(4971), - [anon_sym_BSLASHglsdisp] = ACTIONS(4971), - [anon_sym_BSLASHglslink] = ACTIONS(4971), - [anon_sym_BSLASHglstext] = ACTIONS(4971), - [anon_sym_BSLASHGlstext] = ACTIONS(4971), - [anon_sym_BSLASHGLStext] = ACTIONS(4971), - [anon_sym_BSLASHglsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4971), - [anon_sym_BSLASHglsplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSplural] = ACTIONS(4971), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHglsname] = ACTIONS(4971), - [anon_sym_BSLASHGlsname] = ACTIONS(4971), - [anon_sym_BSLASHGLSname] = ACTIONS(4971), - [anon_sym_BSLASHglssymbol] = ACTIONS(4971), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4971), - [anon_sym_BSLASHglsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4971), - [anon_sym_BSLASHglsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4971), - [anon_sym_BSLASHglsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4971), - [anon_sym_BSLASHglsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4971), - [anon_sym_BSLASHglsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4971), - [anon_sym_BSLASHnewacronym] = ACTIONS(4971), - [anon_sym_BSLASHacrshort] = ACTIONS(4971), - [anon_sym_BSLASHAcrshort] = ACTIONS(4971), - [anon_sym_BSLASHACRshort] = ACTIONS(4971), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4971), - [anon_sym_BSLASHacrlong] = ACTIONS(4971), - [anon_sym_BSLASHAcrlong] = ACTIONS(4971), - [anon_sym_BSLASHACRlong] = ACTIONS(4971), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4971), - [anon_sym_BSLASHacrfull] = ACTIONS(4971), - [anon_sym_BSLASHAcrfull] = ACTIONS(4971), - [anon_sym_BSLASHACRfull] = ACTIONS(4971), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4971), - [anon_sym_BSLASHacs] = ACTIONS(4971), - [anon_sym_BSLASHAcs] = ACTIONS(4971), - [anon_sym_BSLASHacsp] = ACTIONS(4971), - [anon_sym_BSLASHAcsp] = ACTIONS(4971), - [anon_sym_BSLASHacl] = ACTIONS(4971), - [anon_sym_BSLASHAcl] = ACTIONS(4971), - [anon_sym_BSLASHaclp] = ACTIONS(4971), - [anon_sym_BSLASHAclp] = ACTIONS(4971), - [anon_sym_BSLASHacf] = ACTIONS(4971), - [anon_sym_BSLASHAcf] = ACTIONS(4971), - [anon_sym_BSLASHacfp] = ACTIONS(4971), - [anon_sym_BSLASHAcfp] = ACTIONS(4971), - [anon_sym_BSLASHac] = ACTIONS(4971), - [anon_sym_BSLASHAc] = ACTIONS(4971), - [anon_sym_BSLASHacp] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4971), - [anon_sym_BSLASHcolor] = ACTIONS(4971), - [anon_sym_BSLASHcolorbox] = ACTIONS(4971), - [anon_sym_BSLASHtextcolor] = ACTIONS(4971), - [anon_sym_BSLASHpagecolor] = ACTIONS(4971), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4971), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4971), + [557] = { + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(519), + [aux_sym__section_repeat6] = STATE(519), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), }, - [687] = { - [ts_builtin_sym_end] = ACTIONS(4973), - [sym_command_name] = ACTIONS(4975), + [558] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), + }, + [559] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), + }, + [560] = { + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(462), + [aux_sym__section_repeat2] = STATE(462), + [sym_command_name] = ACTIONS(1841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_RBRACK] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_EQ] = ACTIONS(1837), + [anon_sym_BSLASHpart] = ACTIONS(1841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddpart] = ACTIONS(1841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1837), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(1841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHaddsec] = ACTIONS(1841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1837), + [anon_sym_BSLASHparagraph] = ACTIONS(1841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1837), + [anon_sym_BSLASHitem] = ACTIONS(1841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [sym_word] = ACTIONS(1841), + [sym_placeholder] = ACTIONS(1837), + [anon_sym_PLUS] = ACTIONS(1841), + [anon_sym_DASH] = ACTIONS(1841), + [anon_sym_STAR] = ACTIONS(1841), + [anon_sym_SLASH] = ACTIONS(1841), + [anon_sym_CARET] = ACTIONS(1841), + [anon_sym__] = ACTIONS(1841), + [anon_sym_LT] = ACTIONS(1841), + [anon_sym_GT] = ACTIONS(1841), + [anon_sym_BANG] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_COLON] = ACTIONS(1841), + [anon_sym_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_RPAREN] = ACTIONS(1837), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1837), + [anon_sym_BSLASHbegin] = ACTIONS(1841), + [anon_sym_BSLASHusepackage] = ACTIONS(1841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1841), + [anon_sym_BSLASHinclude] = ACTIONS(1841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1841), + [anon_sym_BSLASHinput] = ACTIONS(1841), + [anon_sym_BSLASHsubfile] = ACTIONS(1841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1841), + [anon_sym_BSLASHbibliography] = ACTIONS(1841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1841), + [anon_sym_BSLASHincludesvg] = ACTIONS(1841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1841), + [anon_sym_BSLASHimport] = ACTIONS(1841), + [anon_sym_BSLASHsubimport] = ACTIONS(1841), + [anon_sym_BSLASHinputfrom] = ACTIONS(1841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1841), + [anon_sym_BSLASHincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1841), + [anon_sym_BSLASHcaption] = ACTIONS(1841), + [anon_sym_BSLASHcite] = ACTIONS(1841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCite] = ACTIONS(1841), + [anon_sym_BSLASHnocite] = ACTIONS(1841), + [anon_sym_BSLASHcitet] = ACTIONS(1841), + [anon_sym_BSLASHcitep] = ACTIONS(1841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteauthor] = ACTIONS(1841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitetitle] = ACTIONS(1841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteyear] = ACTIONS(1841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1837), + [anon_sym_BSLASHcitedate] = ACTIONS(1841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1837), + [anon_sym_BSLASHciteurl] = ACTIONS(1841), + [anon_sym_BSLASHfullcite] = ACTIONS(1841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1841), + [anon_sym_BSLASHcitealt] = ACTIONS(1841), + [anon_sym_BSLASHcitealp] = ACTIONS(1841), + [anon_sym_BSLASHcitetext] = ACTIONS(1841), + [anon_sym_BSLASHparencite] = ACTIONS(1841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHParencite] = ACTIONS(1841), + [anon_sym_BSLASHfootcite] = ACTIONS(1841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1841), + [anon_sym_BSLASHtextcite] = ACTIONS(1841), + [anon_sym_BSLASHTextcite] = ACTIONS(1841), + [anon_sym_BSLASHsmartcite] = ACTIONS(1841), + [anon_sym_BSLASHSmartcite] = ACTIONS(1841), + [anon_sym_BSLASHsupercite] = ACTIONS(1841), + [anon_sym_BSLASHautocite] = ACTIONS(1841), + [anon_sym_BSLASHAutocite] = ACTIONS(1841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1837), + [anon_sym_BSLASHvolcite] = ACTIONS(1841), + [anon_sym_BSLASHVolcite] = ACTIONS(1841), + [anon_sym_BSLASHpvolcite] = ACTIONS(1841), + [anon_sym_BSLASHPvolcite] = ACTIONS(1841), + [anon_sym_BSLASHfvolcite] = ACTIONS(1841), + [anon_sym_BSLASHftvolcite] = ACTIONS(1841), + [anon_sym_BSLASHsvolcite] = ACTIONS(1841), + [anon_sym_BSLASHSvolcite] = ACTIONS(1841), + [anon_sym_BSLASHtvolcite] = ACTIONS(1841), + [anon_sym_BSLASHTvolcite] = ACTIONS(1841), + [anon_sym_BSLASHavolcite] = ACTIONS(1841), + [anon_sym_BSLASHAvolcite] = ACTIONS(1841), + [anon_sym_BSLASHnotecite] = ACTIONS(1841), + [anon_sym_BSLASHNotecite] = ACTIONS(1841), + [anon_sym_BSLASHpnotecite] = ACTIONS(1841), + [anon_sym_BSLASHPnotecite] = ACTIONS(1841), + [anon_sym_BSLASHfnotecite] = ACTIONS(1841), + [anon_sym_BSLASHlabel] = ACTIONS(1841), + [anon_sym_BSLASHref] = ACTIONS(1841), + [anon_sym_BSLASHeqref] = ACTIONS(1841), + [anon_sym_BSLASHvref] = ACTIONS(1841), + [anon_sym_BSLASHVref] = ACTIONS(1841), + [anon_sym_BSLASHautoref] = ACTIONS(1841), + [anon_sym_BSLASHpageref] = ACTIONS(1841), + [anon_sym_BSLASHcref] = ACTIONS(1841), + [anon_sym_BSLASHCref] = ACTIONS(1841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnameCref] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1841), + [anon_sym_BSLASHlabelcref] = ACTIONS(1841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange] = ACTIONS(1841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHCrefrange] = ACTIONS(1841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1837), + [anon_sym_BSLASHnewlabel] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand] = ACTIONS(1841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1837), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1837), + [anon_sym_BSLASHdef] = ACTIONS(1841), + [anon_sym_BSLASHlet] = ACTIONS(1841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1841), + [anon_sym_BSLASHgls] = ACTIONS(1841), + [anon_sym_BSLASHGls] = ACTIONS(1841), + [anon_sym_BSLASHGLS] = ACTIONS(1841), + [anon_sym_BSLASHglspl] = ACTIONS(1841), + [anon_sym_BSLASHGlspl] = ACTIONS(1841), + [anon_sym_BSLASHGLSpl] = ACTIONS(1841), + [anon_sym_BSLASHglsdisp] = ACTIONS(1841), + [anon_sym_BSLASHglslink] = ACTIONS(1841), + [anon_sym_BSLASHglstext] = ACTIONS(1841), + [anon_sym_BSLASHGlstext] = ACTIONS(1841), + [anon_sym_BSLASHGLStext] = ACTIONS(1841), + [anon_sym_BSLASHglsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1841), + [anon_sym_BSLASHglsplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSplural] = ACTIONS(1841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1841), + [anon_sym_BSLASHglsname] = ACTIONS(1841), + [anon_sym_BSLASHGlsname] = ACTIONS(1841), + [anon_sym_BSLASHGLSname] = ACTIONS(1841), + [anon_sym_BSLASHglssymbol] = ACTIONS(1841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1841), + [anon_sym_BSLASHglsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1841), + [anon_sym_BSLASHglsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1841), + [anon_sym_BSLASHglsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1841), + [anon_sym_BSLASHglsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1841), + [anon_sym_BSLASHglsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1841), + [anon_sym_BSLASHnewacronym] = ACTIONS(1841), + [anon_sym_BSLASHacrshort] = ACTIONS(1841), + [anon_sym_BSLASHAcrshort] = ACTIONS(1841), + [anon_sym_BSLASHACRshort] = ACTIONS(1841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1841), + [anon_sym_BSLASHacrlong] = ACTIONS(1841), + [anon_sym_BSLASHAcrlong] = ACTIONS(1841), + [anon_sym_BSLASHACRlong] = ACTIONS(1841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1841), + [anon_sym_BSLASHacrfull] = ACTIONS(1841), + [anon_sym_BSLASHAcrfull] = ACTIONS(1841), + [anon_sym_BSLASHACRfull] = ACTIONS(1841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1841), + [anon_sym_BSLASHacs] = ACTIONS(1841), + [anon_sym_BSLASHAcs] = ACTIONS(1841), + [anon_sym_BSLASHacsp] = ACTIONS(1841), + [anon_sym_BSLASHAcsp] = ACTIONS(1841), + [anon_sym_BSLASHacl] = ACTIONS(1841), + [anon_sym_BSLASHAcl] = ACTIONS(1841), + [anon_sym_BSLASHaclp] = ACTIONS(1841), + [anon_sym_BSLASHAclp] = ACTIONS(1841), + [anon_sym_BSLASHacf] = ACTIONS(1841), + [anon_sym_BSLASHAcf] = ACTIONS(1841), + [anon_sym_BSLASHacfp] = ACTIONS(1841), + [anon_sym_BSLASHAcfp] = ACTIONS(1841), + [anon_sym_BSLASHac] = ACTIONS(1841), + [anon_sym_BSLASHAc] = ACTIONS(1841), + [anon_sym_BSLASHacp] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1841), + [anon_sym_BSLASHcolor] = ACTIONS(1841), + [anon_sym_BSLASHcolorbox] = ACTIONS(1841), + [anon_sym_BSLASHtextcolor] = ACTIONS(1841), + [anon_sym_BSLASHpagecolor] = ACTIONS(1841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1841), + [anon_sym_BSLASHtext] = ACTIONS(1841), + [anon_sym_BSLASHintertext] = ACTIONS(1841), + [anon_sym_shortintertext] = ACTIONS(1841), + }, + [561] = { + [sym__section_declaration] = STATE(151), + [sym_section] = STATE(516), + [aux_sym__section_repeat3] = STATE(516), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(325), + [anon_sym_BSLASHaddsec] = ACTIONS(323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(325), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), + }, + [562] = { + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(517), + [aux_sym__section_repeat4] = STATE(517), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), + }, + [563] = { + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(518), + [aux_sym__section_repeat5] = STATE(518), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), + }, + [564] = { + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(519), + [aux_sym__section_repeat6] = STATE(519), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), + }, + [565] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), + }, + [566] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), + }, + [567] = { + [sym__subsection_declaration] = STATE(160), + [sym_subsection] = STATE(517), + [aux_sym__section_repeat4] = STATE(517), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(327), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(329), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), + }, + [568] = { + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(518), + [aux_sym__section_repeat5] = STATE(518), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), + }, + [569] = { + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(519), + [aux_sym__section_repeat6] = STATE(519), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), + }, + [570] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), + }, + [571] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), + }, + [572] = { + [sym__subsubsection_declaration] = STATE(165), + [sym_subsubsection] = STATE(518), + [aux_sym__section_repeat5] = STATE(518), + [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_RPAREN] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_RBRACK] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4973), - [anon_sym_BSLASHpart] = ACTIONS(4975), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddpart] = ACTIONS(4975), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4973), - [anon_sym_BSLASHchapter] = ACTIONS(4975), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddchap] = ACTIONS(4975), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsection] = ACTIONS(4975), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddsec] = ACTIONS(4975), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubsection] = ACTIONS(4975), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4975), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHparagraph] = ACTIONS(4975), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4975), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4973), - [anon_sym_BSLASHitem] = ACTIONS(4975), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4973), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_RBRACE] = ACTIONS(4973), - [sym_word] = ACTIONS(4975), - [sym_placeholder] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym__] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4973), - [anon_sym_BSLASHbegin] = ACTIONS(4975), - [anon_sym_BSLASHusepackage] = ACTIONS(4975), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4975), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4975), - [anon_sym_BSLASHinclude] = ACTIONS(4975), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4975), - [anon_sym_BSLASHinput] = ACTIONS(4975), - [anon_sym_BSLASHsubfile] = ACTIONS(4975), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4975), - [anon_sym_BSLASHbibliography] = ACTIONS(4975), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4975), - [anon_sym_BSLASHincludesvg] = ACTIONS(4975), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4975), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4975), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4975), - [anon_sym_BSLASHimport] = ACTIONS(4975), - [anon_sym_BSLASHsubimport] = ACTIONS(4975), - [anon_sym_BSLASHinputfrom] = ACTIONS(4975), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4975), - [anon_sym_BSLASHincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHcaption] = ACTIONS(4975), - [anon_sym_BSLASHcite] = ACTIONS(4975), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCite] = ACTIONS(4975), - [anon_sym_BSLASHnocite] = ACTIONS(4975), - [anon_sym_BSLASHcitet] = ACTIONS(4975), - [anon_sym_BSLASHcitep] = ACTIONS(4975), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor] = ACTIONS(4975), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4975), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle] = ACTIONS(4975), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteyear] = ACTIONS(4975), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitedate] = ACTIONS(4975), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteurl] = ACTIONS(4975), - [anon_sym_BSLASHfullcite] = ACTIONS(4975), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4975), - [anon_sym_BSLASHcitealt] = ACTIONS(4975), - [anon_sym_BSLASHcitealp] = ACTIONS(4975), - [anon_sym_BSLASHcitetext] = ACTIONS(4975), - [anon_sym_BSLASHparencite] = ACTIONS(4975), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHParencite] = ACTIONS(4975), - [anon_sym_BSLASHfootcite] = ACTIONS(4975), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4975), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4975), - [anon_sym_BSLASHtextcite] = ACTIONS(4975), - [anon_sym_BSLASHTextcite] = ACTIONS(4975), - [anon_sym_BSLASHsmartcite] = ACTIONS(4975), - [anon_sym_BSLASHSmartcite] = ACTIONS(4975), - [anon_sym_BSLASHsupercite] = ACTIONS(4975), - [anon_sym_BSLASHautocite] = ACTIONS(4975), - [anon_sym_BSLASHAutocite] = ACTIONS(4975), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHvolcite] = ACTIONS(4975), - [anon_sym_BSLASHVolcite] = ACTIONS(4975), - [anon_sym_BSLASHpvolcite] = ACTIONS(4975), - [anon_sym_BSLASHPvolcite] = ACTIONS(4975), - [anon_sym_BSLASHfvolcite] = ACTIONS(4975), - [anon_sym_BSLASHftvolcite] = ACTIONS(4975), - [anon_sym_BSLASHsvolcite] = ACTIONS(4975), - [anon_sym_BSLASHSvolcite] = ACTIONS(4975), - [anon_sym_BSLASHtvolcite] = ACTIONS(4975), - [anon_sym_BSLASHTvolcite] = ACTIONS(4975), - [anon_sym_BSLASHavolcite] = ACTIONS(4975), - [anon_sym_BSLASHAvolcite] = ACTIONS(4975), - [anon_sym_BSLASHnotecite] = ACTIONS(4975), - [anon_sym_BSLASHNotecite] = ACTIONS(4975), - [anon_sym_BSLASHpnotecite] = ACTIONS(4975), - [anon_sym_BSLASHPnotecite] = ACTIONS(4975), - [anon_sym_BSLASHfnotecite] = ACTIONS(4975), - [anon_sym_BSLASHlabel] = ACTIONS(4975), - [anon_sym_BSLASHref] = ACTIONS(4975), - [anon_sym_BSLASHeqref] = ACTIONS(4975), - [anon_sym_BSLASHvref] = ACTIONS(4975), - [anon_sym_BSLASHVref] = ACTIONS(4975), - [anon_sym_BSLASHautoref] = ACTIONS(4975), - [anon_sym_BSLASHpageref] = ACTIONS(4975), - [anon_sym_BSLASHcref] = ACTIONS(4975), - [anon_sym_BSLASHCref] = ACTIONS(4975), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnameCref] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHlabelcref] = ACTIONS(4975), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange] = ACTIONS(4975), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnewlabel] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4975), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4975), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4975), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4973), - [anon_sym_BSLASHdef] = ACTIONS(4975), - [anon_sym_BSLASHlet] = ACTIONS(4975), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4975), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4975), - [anon_sym_BSLASHgls] = ACTIONS(4975), - [anon_sym_BSLASHGls] = ACTIONS(4975), - [anon_sym_BSLASHGLS] = ACTIONS(4975), - [anon_sym_BSLASHglspl] = ACTIONS(4975), - [anon_sym_BSLASHGlspl] = ACTIONS(4975), - [anon_sym_BSLASHGLSpl] = ACTIONS(4975), - [anon_sym_BSLASHglsdisp] = ACTIONS(4975), - [anon_sym_BSLASHglslink] = ACTIONS(4975), - [anon_sym_BSLASHglstext] = ACTIONS(4975), - [anon_sym_BSLASHGlstext] = ACTIONS(4975), - [anon_sym_BSLASHGLStext] = ACTIONS(4975), - [anon_sym_BSLASHglsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4975), - [anon_sym_BSLASHglsplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSplural] = ACTIONS(4975), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHglsname] = ACTIONS(4975), - [anon_sym_BSLASHGlsname] = ACTIONS(4975), - [anon_sym_BSLASHGLSname] = ACTIONS(4975), - [anon_sym_BSLASHglssymbol] = ACTIONS(4975), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4975), - [anon_sym_BSLASHglsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4975), - [anon_sym_BSLASHglsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4975), - [anon_sym_BSLASHglsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4975), - [anon_sym_BSLASHglsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4975), - [anon_sym_BSLASHglsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4975), - [anon_sym_BSLASHnewacronym] = ACTIONS(4975), - [anon_sym_BSLASHacrshort] = ACTIONS(4975), - [anon_sym_BSLASHAcrshort] = ACTIONS(4975), - [anon_sym_BSLASHACRshort] = ACTIONS(4975), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4975), - [anon_sym_BSLASHacrlong] = ACTIONS(4975), - [anon_sym_BSLASHAcrlong] = ACTIONS(4975), - [anon_sym_BSLASHACRlong] = ACTIONS(4975), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4975), - [anon_sym_BSLASHacrfull] = ACTIONS(4975), - [anon_sym_BSLASHAcrfull] = ACTIONS(4975), - [anon_sym_BSLASHACRfull] = ACTIONS(4975), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4975), - [anon_sym_BSLASHacs] = ACTIONS(4975), - [anon_sym_BSLASHAcs] = ACTIONS(4975), - [anon_sym_BSLASHacsp] = ACTIONS(4975), - [anon_sym_BSLASHAcsp] = ACTIONS(4975), - [anon_sym_BSLASHacl] = ACTIONS(4975), - [anon_sym_BSLASHAcl] = ACTIONS(4975), - [anon_sym_BSLASHaclp] = ACTIONS(4975), - [anon_sym_BSLASHAclp] = ACTIONS(4975), - [anon_sym_BSLASHacf] = ACTIONS(4975), - [anon_sym_BSLASHAcf] = ACTIONS(4975), - [anon_sym_BSLASHacfp] = ACTIONS(4975), - [anon_sym_BSLASHAcfp] = ACTIONS(4975), - [anon_sym_BSLASHac] = ACTIONS(4975), - [anon_sym_BSLASHAc] = ACTIONS(4975), - [anon_sym_BSLASHacp] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4975), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4975), - [anon_sym_BSLASHcolor] = ACTIONS(4975), - [anon_sym_BSLASHcolorbox] = ACTIONS(4975), - [anon_sym_BSLASHtextcolor] = ACTIONS(4975), - [anon_sym_BSLASHpagecolor] = ACTIONS(4975), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4975), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4975), - }, - [688] = { - [sym_curly_group] = STATE(1104), - [sym_command_name] = ACTIONS(4785), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4785), - [anon_sym_LPAREN] = ACTIONS(4783), - [anon_sym_RPAREN] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4783), - [anon_sym_RBRACK] = ACTIONS(4783), - [anon_sym_COMMA] = ACTIONS(4783), - [anon_sym_EQ] = ACTIONS(4783), - [anon_sym_BSLASHpart] = ACTIONS(4785), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddpart] = ACTIONS(4785), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4783), - [anon_sym_BSLASHchapter] = ACTIONS(4785), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddchap] = ACTIONS(4785), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsection] = ACTIONS(4785), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddsec] = ACTIONS(4785), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubsection] = ACTIONS(4785), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4785), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHparagraph] = ACTIONS(4785), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4785), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4783), - [anon_sym_BSLASHitem] = ACTIONS(4785), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4783), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(4785), - [sym_placeholder] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(4785), - [anon_sym_DASH] = ACTIONS(4785), - [anon_sym_STAR] = ACTIONS(4785), - [anon_sym_SLASH] = ACTIONS(4785), - [anon_sym_CARET] = ACTIONS(4785), - [anon_sym__] = ACTIONS(4785), - [anon_sym_LT] = ACTIONS(4785), - [anon_sym_GT] = ACTIONS(4785), - [anon_sym_BANG] = ACTIONS(4785), - [anon_sym_PIPE] = ACTIONS(4785), - [anon_sym_COLON] = ACTIONS(4785), - [anon_sym_SQUOTE] = ACTIONS(4785), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4783), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4783), - [anon_sym_DOLLAR] = ACTIONS(4785), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4783), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4783), - [anon_sym_BSLASHbegin] = ACTIONS(4785), - [anon_sym_BSLASHend] = ACTIONS(4785), - [anon_sym_BSLASHusepackage] = ACTIONS(4785), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4785), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4785), - [anon_sym_BSLASHinclude] = ACTIONS(4785), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4785), - [anon_sym_BSLASHinput] = ACTIONS(4785), - [anon_sym_BSLASHsubfile] = ACTIONS(4785), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4785), - [anon_sym_BSLASHbibliography] = ACTIONS(4785), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4785), - [anon_sym_BSLASHincludesvg] = ACTIONS(4785), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4785), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4785), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4785), - [anon_sym_BSLASHimport] = ACTIONS(4785), - [anon_sym_BSLASHsubimport] = ACTIONS(4785), - [anon_sym_BSLASHinputfrom] = ACTIONS(4785), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4785), - [anon_sym_BSLASHincludefrom] = ACTIONS(4785), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4785), - [anon_sym_BSLASHcaption] = ACTIONS(4785), - [anon_sym_BSLASHcite] = ACTIONS(4785), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCite] = ACTIONS(4785), - [anon_sym_BSLASHnocite] = ACTIONS(4785), - [anon_sym_BSLASHcitet] = ACTIONS(4785), - [anon_sym_BSLASHcitep] = ACTIONS(4785), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteauthor] = ACTIONS(4785), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4785), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitetitle] = ACTIONS(4785), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteyear] = ACTIONS(4785), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitedate] = ACTIONS(4785), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteurl] = ACTIONS(4785), - [anon_sym_BSLASHfullcite] = ACTIONS(4785), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4785), - [anon_sym_BSLASHcitealt] = ACTIONS(4785), - [anon_sym_BSLASHcitealp] = ACTIONS(4785), - [anon_sym_BSLASHcitetext] = ACTIONS(4785), - [anon_sym_BSLASHparencite] = ACTIONS(4785), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHParencite] = ACTIONS(4785), - [anon_sym_BSLASHfootcite] = ACTIONS(4785), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4785), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4785), - [anon_sym_BSLASHtextcite] = ACTIONS(4785), - [anon_sym_BSLASHTextcite] = ACTIONS(4785), - [anon_sym_BSLASHsmartcite] = ACTIONS(4785), - [anon_sym_BSLASHSmartcite] = ACTIONS(4785), - [anon_sym_BSLASHsupercite] = ACTIONS(4785), - [anon_sym_BSLASHautocite] = ACTIONS(4785), - [anon_sym_BSLASHAutocite] = ACTIONS(4785), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHvolcite] = ACTIONS(4785), - [anon_sym_BSLASHVolcite] = ACTIONS(4785), - [anon_sym_BSLASHpvolcite] = ACTIONS(4785), - [anon_sym_BSLASHPvolcite] = ACTIONS(4785), - [anon_sym_BSLASHfvolcite] = ACTIONS(4785), - [anon_sym_BSLASHftvolcite] = ACTIONS(4785), - [anon_sym_BSLASHsvolcite] = ACTIONS(4785), - [anon_sym_BSLASHSvolcite] = ACTIONS(4785), - [anon_sym_BSLASHtvolcite] = ACTIONS(4785), - [anon_sym_BSLASHTvolcite] = ACTIONS(4785), - [anon_sym_BSLASHavolcite] = ACTIONS(4785), - [anon_sym_BSLASHAvolcite] = ACTIONS(4785), - [anon_sym_BSLASHnotecite] = ACTIONS(4785), - [anon_sym_BSLASHNotecite] = ACTIONS(4785), - [anon_sym_BSLASHpnotecite] = ACTIONS(4785), - [anon_sym_BSLASHPnotecite] = ACTIONS(4785), - [anon_sym_BSLASHfnotecite] = ACTIONS(4785), - [anon_sym_BSLASHlabel] = ACTIONS(4785), - [anon_sym_BSLASHref] = ACTIONS(4785), - [anon_sym_BSLASHeqref] = ACTIONS(4785), - [anon_sym_BSLASHvref] = ACTIONS(4785), - [anon_sym_BSLASHVref] = ACTIONS(4785), - [anon_sym_BSLASHautoref] = ACTIONS(4785), - [anon_sym_BSLASHpageref] = ACTIONS(4785), - [anon_sym_BSLASHcref] = ACTIONS(4785), - [anon_sym_BSLASHCref] = ACTIONS(4785), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4783), - [anon_sym_BSLASHnamecref] = ACTIONS(4785), - [anon_sym_BSLASHnameCref] = ACTIONS(4785), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4785), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4785), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4785), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4785), - [anon_sym_BSLASHlabelcref] = ACTIONS(4785), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4785), - [anon_sym_BSLASHcrefrange] = ACTIONS(4785), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCrefrange] = ACTIONS(4785), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4783), - [anon_sym_BSLASHnewlabel] = ACTIONS(4785), - [anon_sym_BSLASHnewcommand] = ACTIONS(4785), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4785), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4785), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4785), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4783), - [anon_sym_BSLASHdef] = ACTIONS(4785), - [anon_sym_BSLASHlet] = ACTIONS(4785), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4785), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4785), - [anon_sym_BSLASHgls] = ACTIONS(4785), - [anon_sym_BSLASHGls] = ACTIONS(4785), - [anon_sym_BSLASHGLS] = ACTIONS(4785), - [anon_sym_BSLASHglspl] = ACTIONS(4785), - [anon_sym_BSLASHGlspl] = ACTIONS(4785), - [anon_sym_BSLASHGLSpl] = ACTIONS(4785), - [anon_sym_BSLASHglsdisp] = ACTIONS(4785), - [anon_sym_BSLASHglslink] = ACTIONS(4785), - [anon_sym_BSLASHglstext] = ACTIONS(4785), - [anon_sym_BSLASHGlstext] = ACTIONS(4785), - [anon_sym_BSLASHGLStext] = ACTIONS(4785), - [anon_sym_BSLASHglsfirst] = ACTIONS(4785), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4785), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4785), - [anon_sym_BSLASHglsplural] = ACTIONS(4785), - [anon_sym_BSLASHGlsplural] = ACTIONS(4785), - [anon_sym_BSLASHGLSplural] = ACTIONS(4785), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHglsname] = ACTIONS(4785), - [anon_sym_BSLASHGlsname] = ACTIONS(4785), - [anon_sym_BSLASHGLSname] = ACTIONS(4785), - [anon_sym_BSLASHglssymbol] = ACTIONS(4785), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4785), - [anon_sym_BSLASHglsdesc] = ACTIONS(4785), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4785), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4785), - [anon_sym_BSLASHglsuseri] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4785), - [anon_sym_BSLASHglsuserii] = ACTIONS(4785), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4785), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4785), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4785), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4785), - [anon_sym_BSLASHglsuserv] = ACTIONS(4785), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4785), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4785), - [anon_sym_BSLASHglsuservi] = ACTIONS(4785), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4785), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4785), - [anon_sym_BSLASHnewacronym] = ACTIONS(4785), - [anon_sym_BSLASHacrshort] = ACTIONS(4785), - [anon_sym_BSLASHAcrshort] = ACTIONS(4785), - [anon_sym_BSLASHACRshort] = ACTIONS(4785), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4785), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4785), - [anon_sym_BSLASHacrlong] = ACTIONS(4785), - [anon_sym_BSLASHAcrlong] = ACTIONS(4785), - [anon_sym_BSLASHACRlong] = ACTIONS(4785), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4785), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4785), - [anon_sym_BSLASHacrfull] = ACTIONS(4785), - [anon_sym_BSLASHAcrfull] = ACTIONS(4785), - [anon_sym_BSLASHACRfull] = ACTIONS(4785), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4785), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4785), - [anon_sym_BSLASHacs] = ACTIONS(4785), - [anon_sym_BSLASHAcs] = ACTIONS(4785), - [anon_sym_BSLASHacsp] = ACTIONS(4785), - [anon_sym_BSLASHAcsp] = ACTIONS(4785), - [anon_sym_BSLASHacl] = ACTIONS(4785), - [anon_sym_BSLASHAcl] = ACTIONS(4785), - [anon_sym_BSLASHaclp] = ACTIONS(4785), - [anon_sym_BSLASHAclp] = ACTIONS(4785), - [anon_sym_BSLASHacf] = ACTIONS(4785), - [anon_sym_BSLASHAcf] = ACTIONS(4785), - [anon_sym_BSLASHacfp] = ACTIONS(4785), - [anon_sym_BSLASHAcfp] = ACTIONS(4785), - [anon_sym_BSLASHac] = ACTIONS(4785), - [anon_sym_BSLASHAc] = ACTIONS(4785), - [anon_sym_BSLASHacp] = ACTIONS(4785), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4785), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4785), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4785), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4785), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4785), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4785), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4785), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4785), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4785), - [anon_sym_BSLASHcolor] = ACTIONS(4785), - [anon_sym_BSLASHcolorbox] = ACTIONS(4785), - [anon_sym_BSLASHtextcolor] = ACTIONS(4785), - [anon_sym_BSLASHpagecolor] = ACTIONS(4785), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4785), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4785), - }, - [689] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1744), - [sym_operator] = STATE(1509), - [sym_key_value_pair] = STATE(1747), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACK] = ACTIONS(4977), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [690] = { - [sym_curly_group] = STATE(1105), - [sym_command_name] = ACTIONS(4789), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4789), - [anon_sym_LPAREN] = ACTIONS(4787), - [anon_sym_RPAREN] = ACTIONS(4787), - [anon_sym_LBRACK] = ACTIONS(4787), - [anon_sym_RBRACK] = ACTIONS(4787), - [anon_sym_COMMA] = ACTIONS(4787), - [anon_sym_EQ] = ACTIONS(4787), - [anon_sym_BSLASHpart] = ACTIONS(4789), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddpart] = ACTIONS(4789), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4787), - [anon_sym_BSLASHchapter] = ACTIONS(4789), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddchap] = ACTIONS(4789), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsection] = ACTIONS(4789), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddsec] = ACTIONS(4789), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubsection] = ACTIONS(4789), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4789), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHparagraph] = ACTIONS(4789), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4789), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4787), - [anon_sym_BSLASHitem] = ACTIONS(4789), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4787), - [anon_sym_LBRACE] = ACTIONS(255), - [sym_word] = ACTIONS(4789), - [sym_placeholder] = ACTIONS(4787), - [anon_sym_PLUS] = ACTIONS(4789), - [anon_sym_DASH] = ACTIONS(4789), - [anon_sym_STAR] = ACTIONS(4789), - [anon_sym_SLASH] = ACTIONS(4789), - [anon_sym_CARET] = ACTIONS(4789), - [anon_sym__] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4789), - [anon_sym_GT] = ACTIONS(4789), - [anon_sym_BANG] = ACTIONS(4789), - [anon_sym_PIPE] = ACTIONS(4789), - [anon_sym_COLON] = ACTIONS(4789), - [anon_sym_SQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4787), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4787), - [anon_sym_DOLLAR] = ACTIONS(4789), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4787), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4787), - [anon_sym_BSLASHbegin] = ACTIONS(4789), - [anon_sym_BSLASHend] = ACTIONS(4789), - [anon_sym_BSLASHusepackage] = ACTIONS(4789), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4789), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4789), - [anon_sym_BSLASHinclude] = ACTIONS(4789), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4789), - [anon_sym_BSLASHinput] = ACTIONS(4789), - [anon_sym_BSLASHsubfile] = ACTIONS(4789), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4789), - [anon_sym_BSLASHbibliography] = ACTIONS(4789), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4789), - [anon_sym_BSLASHincludesvg] = ACTIONS(4789), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4789), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4789), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4789), - [anon_sym_BSLASHimport] = ACTIONS(4789), - [anon_sym_BSLASHsubimport] = ACTIONS(4789), - [anon_sym_BSLASHinputfrom] = ACTIONS(4789), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4789), - [anon_sym_BSLASHincludefrom] = ACTIONS(4789), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4789), - [anon_sym_BSLASHcaption] = ACTIONS(4789), - [anon_sym_BSLASHcite] = ACTIONS(4789), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCite] = ACTIONS(4789), - [anon_sym_BSLASHnocite] = ACTIONS(4789), - [anon_sym_BSLASHcitet] = ACTIONS(4789), - [anon_sym_BSLASHcitep] = ACTIONS(4789), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteauthor] = ACTIONS(4789), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4789), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitetitle] = ACTIONS(4789), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteyear] = ACTIONS(4789), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitedate] = ACTIONS(4789), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteurl] = ACTIONS(4789), - [anon_sym_BSLASHfullcite] = ACTIONS(4789), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4789), - [anon_sym_BSLASHcitealt] = ACTIONS(4789), - [anon_sym_BSLASHcitealp] = ACTIONS(4789), - [anon_sym_BSLASHcitetext] = ACTIONS(4789), - [anon_sym_BSLASHparencite] = ACTIONS(4789), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHParencite] = ACTIONS(4789), - [anon_sym_BSLASHfootcite] = ACTIONS(4789), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4789), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4789), - [anon_sym_BSLASHtextcite] = ACTIONS(4789), - [anon_sym_BSLASHTextcite] = ACTIONS(4789), - [anon_sym_BSLASHsmartcite] = ACTIONS(4789), - [anon_sym_BSLASHSmartcite] = ACTIONS(4789), - [anon_sym_BSLASHsupercite] = ACTIONS(4789), - [anon_sym_BSLASHautocite] = ACTIONS(4789), - [anon_sym_BSLASHAutocite] = ACTIONS(4789), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHvolcite] = ACTIONS(4789), - [anon_sym_BSLASHVolcite] = ACTIONS(4789), - [anon_sym_BSLASHpvolcite] = ACTIONS(4789), - [anon_sym_BSLASHPvolcite] = ACTIONS(4789), - [anon_sym_BSLASHfvolcite] = ACTIONS(4789), - [anon_sym_BSLASHftvolcite] = ACTIONS(4789), - [anon_sym_BSLASHsvolcite] = ACTIONS(4789), - [anon_sym_BSLASHSvolcite] = ACTIONS(4789), - [anon_sym_BSLASHtvolcite] = ACTIONS(4789), - [anon_sym_BSLASHTvolcite] = ACTIONS(4789), - [anon_sym_BSLASHavolcite] = ACTIONS(4789), - [anon_sym_BSLASHAvolcite] = ACTIONS(4789), - [anon_sym_BSLASHnotecite] = ACTIONS(4789), - [anon_sym_BSLASHNotecite] = ACTIONS(4789), - [anon_sym_BSLASHpnotecite] = ACTIONS(4789), - [anon_sym_BSLASHPnotecite] = ACTIONS(4789), - [anon_sym_BSLASHfnotecite] = ACTIONS(4789), - [anon_sym_BSLASHlabel] = ACTIONS(4789), - [anon_sym_BSLASHref] = ACTIONS(4789), - [anon_sym_BSLASHeqref] = ACTIONS(4789), - [anon_sym_BSLASHvref] = ACTIONS(4789), - [anon_sym_BSLASHVref] = ACTIONS(4789), - [anon_sym_BSLASHautoref] = ACTIONS(4789), - [anon_sym_BSLASHpageref] = ACTIONS(4789), - [anon_sym_BSLASHcref] = ACTIONS(4789), - [anon_sym_BSLASHCref] = ACTIONS(4789), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4787), - [anon_sym_BSLASHnamecref] = ACTIONS(4789), - [anon_sym_BSLASHnameCref] = ACTIONS(4789), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4789), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4789), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4789), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4789), - [anon_sym_BSLASHlabelcref] = ACTIONS(4789), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4789), - [anon_sym_BSLASHcrefrange] = ACTIONS(4789), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCrefrange] = ACTIONS(4789), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4787), - [anon_sym_BSLASHnewlabel] = ACTIONS(4789), - [anon_sym_BSLASHnewcommand] = ACTIONS(4789), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4789), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4789), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4789), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4787), - [anon_sym_BSLASHdef] = ACTIONS(4789), - [anon_sym_BSLASHlet] = ACTIONS(4789), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4789), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4789), - [anon_sym_BSLASHgls] = ACTIONS(4789), - [anon_sym_BSLASHGls] = ACTIONS(4789), - [anon_sym_BSLASHGLS] = ACTIONS(4789), - [anon_sym_BSLASHglspl] = ACTIONS(4789), - [anon_sym_BSLASHGlspl] = ACTIONS(4789), - [anon_sym_BSLASHGLSpl] = ACTIONS(4789), - [anon_sym_BSLASHglsdisp] = ACTIONS(4789), - [anon_sym_BSLASHglslink] = ACTIONS(4789), - [anon_sym_BSLASHglstext] = ACTIONS(4789), - [anon_sym_BSLASHGlstext] = ACTIONS(4789), - [anon_sym_BSLASHGLStext] = ACTIONS(4789), - [anon_sym_BSLASHglsfirst] = ACTIONS(4789), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4789), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4789), - [anon_sym_BSLASHglsplural] = ACTIONS(4789), - [anon_sym_BSLASHGlsplural] = ACTIONS(4789), - [anon_sym_BSLASHGLSplural] = ACTIONS(4789), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHglsname] = ACTIONS(4789), - [anon_sym_BSLASHGlsname] = ACTIONS(4789), - [anon_sym_BSLASHGLSname] = ACTIONS(4789), - [anon_sym_BSLASHglssymbol] = ACTIONS(4789), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4789), - [anon_sym_BSLASHglsdesc] = ACTIONS(4789), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4789), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4789), - [anon_sym_BSLASHglsuseri] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4789), - [anon_sym_BSLASHglsuserii] = ACTIONS(4789), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4789), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4789), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4789), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4789), - [anon_sym_BSLASHglsuserv] = ACTIONS(4789), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4789), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4789), - [anon_sym_BSLASHglsuservi] = ACTIONS(4789), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4789), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4789), - [anon_sym_BSLASHnewacronym] = ACTIONS(4789), - [anon_sym_BSLASHacrshort] = ACTIONS(4789), - [anon_sym_BSLASHAcrshort] = ACTIONS(4789), - [anon_sym_BSLASHACRshort] = ACTIONS(4789), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4789), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4789), - [anon_sym_BSLASHacrlong] = ACTIONS(4789), - [anon_sym_BSLASHAcrlong] = ACTIONS(4789), - [anon_sym_BSLASHACRlong] = ACTIONS(4789), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4789), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4789), - [anon_sym_BSLASHacrfull] = ACTIONS(4789), - [anon_sym_BSLASHAcrfull] = ACTIONS(4789), - [anon_sym_BSLASHACRfull] = ACTIONS(4789), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4789), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4789), - [anon_sym_BSLASHacs] = ACTIONS(4789), - [anon_sym_BSLASHAcs] = ACTIONS(4789), - [anon_sym_BSLASHacsp] = ACTIONS(4789), - [anon_sym_BSLASHAcsp] = ACTIONS(4789), - [anon_sym_BSLASHacl] = ACTIONS(4789), - [anon_sym_BSLASHAcl] = ACTIONS(4789), - [anon_sym_BSLASHaclp] = ACTIONS(4789), - [anon_sym_BSLASHAclp] = ACTIONS(4789), - [anon_sym_BSLASHacf] = ACTIONS(4789), - [anon_sym_BSLASHAcf] = ACTIONS(4789), - [anon_sym_BSLASHacfp] = ACTIONS(4789), - [anon_sym_BSLASHAcfp] = ACTIONS(4789), - [anon_sym_BSLASHac] = ACTIONS(4789), - [anon_sym_BSLASHAc] = ACTIONS(4789), - [anon_sym_BSLASHacp] = ACTIONS(4789), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4789), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4789), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4789), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4789), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4789), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4789), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4789), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4789), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4789), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4789), - [anon_sym_BSLASHcolor] = ACTIONS(4789), - [anon_sym_BSLASHcolorbox] = ACTIONS(4789), - [anon_sym_BSLASHtextcolor] = ACTIONS(4789), - [anon_sym_BSLASHpagecolor] = ACTIONS(4789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4789), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4789), - }, - [691] = { - [sym_brack_group_text] = STATE(1106), - [sym_command_name] = ACTIONS(4793), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4791), - [anon_sym_RPAREN] = ACTIONS(4791), - [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_RBRACK] = ACTIONS(4791), - [anon_sym_COMMA] = ACTIONS(4791), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_BSLASHpart] = ACTIONS(4793), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddpart] = ACTIONS(4793), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4791), - [anon_sym_BSLASHchapter] = ACTIONS(4793), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddchap] = ACTIONS(4793), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsection] = ACTIONS(4793), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddsec] = ACTIONS(4793), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubsection] = ACTIONS(4793), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4793), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHparagraph] = ACTIONS(4793), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4793), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4791), - [anon_sym_BSLASHitem] = ACTIONS(4793), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4791), - [anon_sym_LBRACE] = ACTIONS(4791), - [sym_word] = ACTIONS(4793), - [sym_placeholder] = ACTIONS(4791), - [anon_sym_PLUS] = ACTIONS(4793), - [anon_sym_DASH] = ACTIONS(4793), - [anon_sym_STAR] = ACTIONS(4793), - [anon_sym_SLASH] = ACTIONS(4793), - [anon_sym_CARET] = ACTIONS(4793), - [anon_sym__] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4793), - [anon_sym_GT] = ACTIONS(4793), - [anon_sym_BANG] = ACTIONS(4793), - [anon_sym_PIPE] = ACTIONS(4793), - [anon_sym_COLON] = ACTIONS(4793), - [anon_sym_SQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4791), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4791), - [anon_sym_DOLLAR] = ACTIONS(4793), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4791), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4791), - [anon_sym_BSLASHbegin] = ACTIONS(4793), - [anon_sym_BSLASHend] = ACTIONS(4793), - [anon_sym_BSLASHusepackage] = ACTIONS(4793), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4793), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4793), - [anon_sym_BSLASHinclude] = ACTIONS(4793), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4793), - [anon_sym_BSLASHinput] = ACTIONS(4793), - [anon_sym_BSLASHsubfile] = ACTIONS(4793), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4793), - [anon_sym_BSLASHbibliography] = ACTIONS(4793), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4793), - [anon_sym_BSLASHincludesvg] = ACTIONS(4793), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4793), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4793), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4793), - [anon_sym_BSLASHimport] = ACTIONS(4793), - [anon_sym_BSLASHsubimport] = ACTIONS(4793), - [anon_sym_BSLASHinputfrom] = ACTIONS(4793), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4793), - [anon_sym_BSLASHincludefrom] = ACTIONS(4793), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4793), - [anon_sym_BSLASHcaption] = ACTIONS(4793), - [anon_sym_BSLASHcite] = ACTIONS(4793), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCite] = ACTIONS(4793), - [anon_sym_BSLASHnocite] = ACTIONS(4793), - [anon_sym_BSLASHcitet] = ACTIONS(4793), - [anon_sym_BSLASHcitep] = ACTIONS(4793), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteauthor] = ACTIONS(4793), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4793), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitetitle] = ACTIONS(4793), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteyear] = ACTIONS(4793), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitedate] = ACTIONS(4793), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteurl] = ACTIONS(4793), - [anon_sym_BSLASHfullcite] = ACTIONS(4793), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4793), - [anon_sym_BSLASHcitealt] = ACTIONS(4793), - [anon_sym_BSLASHcitealp] = ACTIONS(4793), - [anon_sym_BSLASHcitetext] = ACTIONS(4793), - [anon_sym_BSLASHparencite] = ACTIONS(4793), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHParencite] = ACTIONS(4793), - [anon_sym_BSLASHfootcite] = ACTIONS(4793), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4793), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4793), - [anon_sym_BSLASHtextcite] = ACTIONS(4793), - [anon_sym_BSLASHTextcite] = ACTIONS(4793), - [anon_sym_BSLASHsmartcite] = ACTIONS(4793), - [anon_sym_BSLASHSmartcite] = ACTIONS(4793), - [anon_sym_BSLASHsupercite] = ACTIONS(4793), - [anon_sym_BSLASHautocite] = ACTIONS(4793), - [anon_sym_BSLASHAutocite] = ACTIONS(4793), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHvolcite] = ACTIONS(4793), - [anon_sym_BSLASHVolcite] = ACTIONS(4793), - [anon_sym_BSLASHpvolcite] = ACTIONS(4793), - [anon_sym_BSLASHPvolcite] = ACTIONS(4793), - [anon_sym_BSLASHfvolcite] = ACTIONS(4793), - [anon_sym_BSLASHftvolcite] = ACTIONS(4793), - [anon_sym_BSLASHsvolcite] = ACTIONS(4793), - [anon_sym_BSLASHSvolcite] = ACTIONS(4793), - [anon_sym_BSLASHtvolcite] = ACTIONS(4793), - [anon_sym_BSLASHTvolcite] = ACTIONS(4793), - [anon_sym_BSLASHavolcite] = ACTIONS(4793), - [anon_sym_BSLASHAvolcite] = ACTIONS(4793), - [anon_sym_BSLASHnotecite] = ACTIONS(4793), - [anon_sym_BSLASHNotecite] = ACTIONS(4793), - [anon_sym_BSLASHpnotecite] = ACTIONS(4793), - [anon_sym_BSLASHPnotecite] = ACTIONS(4793), - [anon_sym_BSLASHfnotecite] = ACTIONS(4793), - [anon_sym_BSLASHlabel] = ACTIONS(4793), - [anon_sym_BSLASHref] = ACTIONS(4793), - [anon_sym_BSLASHeqref] = ACTIONS(4793), - [anon_sym_BSLASHvref] = ACTIONS(4793), - [anon_sym_BSLASHVref] = ACTIONS(4793), - [anon_sym_BSLASHautoref] = ACTIONS(4793), - [anon_sym_BSLASHpageref] = ACTIONS(4793), - [anon_sym_BSLASHcref] = ACTIONS(4793), - [anon_sym_BSLASHCref] = ACTIONS(4793), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4791), - [anon_sym_BSLASHnamecref] = ACTIONS(4793), - [anon_sym_BSLASHnameCref] = ACTIONS(4793), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4793), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4793), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4793), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4793), - [anon_sym_BSLASHlabelcref] = ACTIONS(4793), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4793), - [anon_sym_BSLASHcrefrange] = ACTIONS(4793), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCrefrange] = ACTIONS(4793), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4791), - [anon_sym_BSLASHnewlabel] = ACTIONS(4793), - [anon_sym_BSLASHnewcommand] = ACTIONS(4793), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4793), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4793), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4793), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4791), - [anon_sym_BSLASHdef] = ACTIONS(4793), - [anon_sym_BSLASHlet] = ACTIONS(4793), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4793), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4793), - [anon_sym_BSLASHgls] = ACTIONS(4793), - [anon_sym_BSLASHGls] = ACTIONS(4793), - [anon_sym_BSLASHGLS] = ACTIONS(4793), - [anon_sym_BSLASHglspl] = ACTIONS(4793), - [anon_sym_BSLASHGlspl] = ACTIONS(4793), - [anon_sym_BSLASHGLSpl] = ACTIONS(4793), - [anon_sym_BSLASHglsdisp] = ACTIONS(4793), - [anon_sym_BSLASHglslink] = ACTIONS(4793), - [anon_sym_BSLASHglstext] = ACTIONS(4793), - [anon_sym_BSLASHGlstext] = ACTIONS(4793), - [anon_sym_BSLASHGLStext] = ACTIONS(4793), - [anon_sym_BSLASHglsfirst] = ACTIONS(4793), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4793), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4793), - [anon_sym_BSLASHglsplural] = ACTIONS(4793), - [anon_sym_BSLASHGlsplural] = ACTIONS(4793), - [anon_sym_BSLASHGLSplural] = ACTIONS(4793), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHglsname] = ACTIONS(4793), - [anon_sym_BSLASHGlsname] = ACTIONS(4793), - [anon_sym_BSLASHGLSname] = ACTIONS(4793), - [anon_sym_BSLASHglssymbol] = ACTIONS(4793), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4793), - [anon_sym_BSLASHglsdesc] = ACTIONS(4793), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4793), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4793), - [anon_sym_BSLASHglsuseri] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4793), - [anon_sym_BSLASHglsuserii] = ACTIONS(4793), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4793), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4793), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4793), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4793), - [anon_sym_BSLASHglsuserv] = ACTIONS(4793), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4793), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4793), - [anon_sym_BSLASHglsuservi] = ACTIONS(4793), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4793), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4793), - [anon_sym_BSLASHnewacronym] = ACTIONS(4793), - [anon_sym_BSLASHacrshort] = ACTIONS(4793), - [anon_sym_BSLASHAcrshort] = ACTIONS(4793), - [anon_sym_BSLASHACRshort] = ACTIONS(4793), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4793), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4793), - [anon_sym_BSLASHacrlong] = ACTIONS(4793), - [anon_sym_BSLASHAcrlong] = ACTIONS(4793), - [anon_sym_BSLASHACRlong] = ACTIONS(4793), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4793), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4793), - [anon_sym_BSLASHacrfull] = ACTIONS(4793), - [anon_sym_BSLASHAcrfull] = ACTIONS(4793), - [anon_sym_BSLASHACRfull] = ACTIONS(4793), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4793), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4793), - [anon_sym_BSLASHacs] = ACTIONS(4793), - [anon_sym_BSLASHAcs] = ACTIONS(4793), - [anon_sym_BSLASHacsp] = ACTIONS(4793), - [anon_sym_BSLASHAcsp] = ACTIONS(4793), - [anon_sym_BSLASHacl] = ACTIONS(4793), - [anon_sym_BSLASHAcl] = ACTIONS(4793), - [anon_sym_BSLASHaclp] = ACTIONS(4793), - [anon_sym_BSLASHAclp] = ACTIONS(4793), - [anon_sym_BSLASHacf] = ACTIONS(4793), - [anon_sym_BSLASHAcf] = ACTIONS(4793), - [anon_sym_BSLASHacfp] = ACTIONS(4793), - [anon_sym_BSLASHAcfp] = ACTIONS(4793), - [anon_sym_BSLASHac] = ACTIONS(4793), - [anon_sym_BSLASHAc] = ACTIONS(4793), - [anon_sym_BSLASHacp] = ACTIONS(4793), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4793), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4793), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4793), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4793), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4793), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4793), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4793), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4793), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4793), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4793), - [anon_sym_BSLASHcolor] = ACTIONS(4793), - [anon_sym_BSLASHcolorbox] = ACTIONS(4793), - [anon_sym_BSLASHtextcolor] = ACTIONS(4793), - [anon_sym_BSLASHpagecolor] = ACTIONS(4793), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4793), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4793), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(331), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(333), + [anon_sym_BSLASHparagraph] = ACTIONS(4479), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHitem] = ACTIONS(4479), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [692] = { - [ts_builtin_sym_end] = ACTIONS(4981), - [sym_command_name] = ACTIONS(4983), + [573] = { + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(519), + [aux_sym__section_repeat6] = STATE(519), + [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_BSLASHpart] = ACTIONS(4983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddpart] = ACTIONS(4983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHchapter] = ACTIONS(4983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddchap] = ACTIONS(4983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsection] = ACTIONS(4983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddsec] = ACTIONS(4983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHparagraph] = ACTIONS(4983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHitem] = ACTIONS(4983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4981), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), - [anon_sym_BSLASHbegin] = ACTIONS(4983), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHitem] = ACTIONS(4479), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [693] = { - [ts_builtin_sym_end] = ACTIONS(4985), - [sym_command_name] = ACTIONS(4987), + [574] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_BSLASHpart] = ACTIONS(4987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddpart] = ACTIONS(4987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHchapter] = ACTIONS(4987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddchap] = ACTIONS(4987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsection] = ACTIONS(4987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddsec] = ACTIONS(4987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHparagraph] = ACTIONS(4987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHitem] = ACTIONS(4987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(4985), - [anon_sym_RBRACE] = ACTIONS(4985), - [sym_word] = ACTIONS(4987), - [sym_placeholder] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym__] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), - [anon_sym_BSLASHbegin] = ACTIONS(4987), - [anon_sym_BSLASHusepackage] = ACTIONS(4987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), - [anon_sym_BSLASHinclude] = ACTIONS(4987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), - [anon_sym_BSLASHinput] = ACTIONS(4987), - [anon_sym_BSLASHsubfile] = ACTIONS(4987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), - [anon_sym_BSLASHbibliography] = ACTIONS(4987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), - [anon_sym_BSLASHincludesvg] = ACTIONS(4987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), - [anon_sym_BSLASHimport] = ACTIONS(4987), - [anon_sym_BSLASHsubimport] = ACTIONS(4987), - [anon_sym_BSLASHinputfrom] = ACTIONS(4987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), - [anon_sym_BSLASHincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHcaption] = ACTIONS(4987), - [anon_sym_BSLASHcite] = ACTIONS(4987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCite] = ACTIONS(4987), - [anon_sym_BSLASHnocite] = ACTIONS(4987), - [anon_sym_BSLASHcitet] = ACTIONS(4987), - [anon_sym_BSLASHcitep] = ACTIONS(4987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteauthor] = ACTIONS(4987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitetitle] = ACTIONS(4987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteyear] = ACTIONS(4987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitedate] = ACTIONS(4987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteurl] = ACTIONS(4987), - [anon_sym_BSLASHfullcite] = ACTIONS(4987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), - [anon_sym_BSLASHcitealt] = ACTIONS(4987), - [anon_sym_BSLASHcitealp] = ACTIONS(4987), - [anon_sym_BSLASHcitetext] = ACTIONS(4987), - [anon_sym_BSLASHparencite] = ACTIONS(4987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHParencite] = ACTIONS(4987), - [anon_sym_BSLASHfootcite] = ACTIONS(4987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), - [anon_sym_BSLASHtextcite] = ACTIONS(4987), - [anon_sym_BSLASHTextcite] = ACTIONS(4987), - [anon_sym_BSLASHsmartcite] = ACTIONS(4987), - [anon_sym_BSLASHSmartcite] = ACTIONS(4987), - [anon_sym_BSLASHsupercite] = ACTIONS(4987), - [anon_sym_BSLASHautocite] = ACTIONS(4987), - [anon_sym_BSLASHAutocite] = ACTIONS(4987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHvolcite] = ACTIONS(4987), - [anon_sym_BSLASHVolcite] = ACTIONS(4987), - [anon_sym_BSLASHpvolcite] = ACTIONS(4987), - [anon_sym_BSLASHPvolcite] = ACTIONS(4987), - [anon_sym_BSLASHfvolcite] = ACTIONS(4987), - [anon_sym_BSLASHftvolcite] = ACTIONS(4987), - [anon_sym_BSLASHsvolcite] = ACTIONS(4987), - [anon_sym_BSLASHSvolcite] = ACTIONS(4987), - [anon_sym_BSLASHtvolcite] = ACTIONS(4987), - [anon_sym_BSLASHTvolcite] = ACTIONS(4987), - [anon_sym_BSLASHavolcite] = ACTIONS(4987), - [anon_sym_BSLASHAvolcite] = ACTIONS(4987), - [anon_sym_BSLASHnotecite] = ACTIONS(4987), - [anon_sym_BSLASHNotecite] = ACTIONS(4987), - [anon_sym_BSLASHpnotecite] = ACTIONS(4987), - [anon_sym_BSLASHPnotecite] = ACTIONS(4987), - [anon_sym_BSLASHfnotecite] = ACTIONS(4987), - [anon_sym_BSLASHlabel] = ACTIONS(4987), - [anon_sym_BSLASHref] = ACTIONS(4987), - [anon_sym_BSLASHeqref] = ACTIONS(4987), - [anon_sym_BSLASHvref] = ACTIONS(4987), - [anon_sym_BSLASHVref] = ACTIONS(4987), - [anon_sym_BSLASHautoref] = ACTIONS(4987), - [anon_sym_BSLASHpageref] = ACTIONS(4987), - [anon_sym_BSLASHcref] = ACTIONS(4987), - [anon_sym_BSLASHCref] = ACTIONS(4987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnameCref] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHlabelcref] = ACTIONS(4987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCrefrange] = ACTIONS(4987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnewlabel] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdef] = ACTIONS(4987), - [anon_sym_BSLASHlet] = ACTIONS(4987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), - [anon_sym_BSLASHgls] = ACTIONS(4987), - [anon_sym_BSLASHGls] = ACTIONS(4987), - [anon_sym_BSLASHGLS] = ACTIONS(4987), - [anon_sym_BSLASHglspl] = ACTIONS(4987), - [anon_sym_BSLASHGlspl] = ACTIONS(4987), - [anon_sym_BSLASHGLSpl] = ACTIONS(4987), - [anon_sym_BSLASHglsdisp] = ACTIONS(4987), - [anon_sym_BSLASHglslink] = ACTIONS(4987), - [anon_sym_BSLASHglstext] = ACTIONS(4987), - [anon_sym_BSLASHGlstext] = ACTIONS(4987), - [anon_sym_BSLASHGLStext] = ACTIONS(4987), - [anon_sym_BSLASHglsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), - [anon_sym_BSLASHglsplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSplural] = ACTIONS(4987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHglsname] = ACTIONS(4987), - [anon_sym_BSLASHGlsname] = ACTIONS(4987), - [anon_sym_BSLASHGLSname] = ACTIONS(4987), - [anon_sym_BSLASHglssymbol] = ACTIONS(4987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), - [anon_sym_BSLASHglsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), - [anon_sym_BSLASHglsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), - [anon_sym_BSLASHglsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), - [anon_sym_BSLASHglsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), - [anon_sym_BSLASHglsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), - [anon_sym_BSLASHnewacronym] = ACTIONS(4987), - [anon_sym_BSLASHacrshort] = ACTIONS(4987), - [anon_sym_BSLASHAcrshort] = ACTIONS(4987), - [anon_sym_BSLASHACRshort] = ACTIONS(4987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), - [anon_sym_BSLASHacrlong] = ACTIONS(4987), - [anon_sym_BSLASHAcrlong] = ACTIONS(4987), - [anon_sym_BSLASHACRlong] = ACTIONS(4987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), - [anon_sym_BSLASHacrfull] = ACTIONS(4987), - [anon_sym_BSLASHAcrfull] = ACTIONS(4987), - [anon_sym_BSLASHACRfull] = ACTIONS(4987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), - [anon_sym_BSLASHacs] = ACTIONS(4987), - [anon_sym_BSLASHAcs] = ACTIONS(4987), - [anon_sym_BSLASHacsp] = ACTIONS(4987), - [anon_sym_BSLASHAcsp] = ACTIONS(4987), - [anon_sym_BSLASHacl] = ACTIONS(4987), - [anon_sym_BSLASHAcl] = ACTIONS(4987), - [anon_sym_BSLASHaclp] = ACTIONS(4987), - [anon_sym_BSLASHAclp] = ACTIONS(4987), - [anon_sym_BSLASHacf] = ACTIONS(4987), - [anon_sym_BSLASHAcf] = ACTIONS(4987), - [anon_sym_BSLASHacfp] = ACTIONS(4987), - [anon_sym_BSLASHAcfp] = ACTIONS(4987), - [anon_sym_BSLASHac] = ACTIONS(4987), - [anon_sym_BSLASHAc] = ACTIONS(4987), - [anon_sym_BSLASHacp] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), - [anon_sym_BSLASHcolor] = ACTIONS(4987), - [anon_sym_BSLASHcolorbox] = ACTIONS(4987), - [anon_sym_BSLASHtextcolor] = ACTIONS(4987), - [anon_sym_BSLASHpagecolor] = ACTIONS(4987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHparagraph] = ACTIONS(4479), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(4479), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [694] = { - [ts_builtin_sym_end] = ACTIONS(4989), - [sym_command_name] = ACTIONS(4991), + [575] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_BSLASHpart] = ACTIONS(4991), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddpart] = ACTIONS(4991), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHchapter] = ACTIONS(4991), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddchap] = ACTIONS(4991), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsection] = ACTIONS(4991), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddsec] = ACTIONS(4991), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHparagraph] = ACTIONS(4991), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHitem] = ACTIONS(4991), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [sym_word] = ACTIONS(4991), - [sym_placeholder] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym__] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), - [anon_sym_BSLASHbegin] = ACTIONS(4991), - [anon_sym_BSLASHusepackage] = ACTIONS(4991), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), - [anon_sym_BSLASHinclude] = ACTIONS(4991), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), - [anon_sym_BSLASHinput] = ACTIONS(4991), - [anon_sym_BSLASHsubfile] = ACTIONS(4991), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), - [anon_sym_BSLASHbibliography] = ACTIONS(4991), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), - [anon_sym_BSLASHincludesvg] = ACTIONS(4991), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), - [anon_sym_BSLASHimport] = ACTIONS(4991), - [anon_sym_BSLASHsubimport] = ACTIONS(4991), - [anon_sym_BSLASHinputfrom] = ACTIONS(4991), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), - [anon_sym_BSLASHincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHcaption] = ACTIONS(4991), - [anon_sym_BSLASHcite] = ACTIONS(4991), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCite] = ACTIONS(4991), - [anon_sym_BSLASHnocite] = ACTIONS(4991), - [anon_sym_BSLASHcitet] = ACTIONS(4991), - [anon_sym_BSLASHcitep] = ACTIONS(4991), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteauthor] = ACTIONS(4991), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitetitle] = ACTIONS(4991), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteyear] = ACTIONS(4991), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitedate] = ACTIONS(4991), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteurl] = ACTIONS(4991), - [anon_sym_BSLASHfullcite] = ACTIONS(4991), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), - [anon_sym_BSLASHcitealt] = ACTIONS(4991), - [anon_sym_BSLASHcitealp] = ACTIONS(4991), - [anon_sym_BSLASHcitetext] = ACTIONS(4991), - [anon_sym_BSLASHparencite] = ACTIONS(4991), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHParencite] = ACTIONS(4991), - [anon_sym_BSLASHfootcite] = ACTIONS(4991), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), - [anon_sym_BSLASHtextcite] = ACTIONS(4991), - [anon_sym_BSLASHTextcite] = ACTIONS(4991), - [anon_sym_BSLASHsmartcite] = ACTIONS(4991), - [anon_sym_BSLASHSmartcite] = ACTIONS(4991), - [anon_sym_BSLASHsupercite] = ACTIONS(4991), - [anon_sym_BSLASHautocite] = ACTIONS(4991), - [anon_sym_BSLASHAutocite] = ACTIONS(4991), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHvolcite] = ACTIONS(4991), - [anon_sym_BSLASHVolcite] = ACTIONS(4991), - [anon_sym_BSLASHpvolcite] = ACTIONS(4991), - [anon_sym_BSLASHPvolcite] = ACTIONS(4991), - [anon_sym_BSLASHfvolcite] = ACTIONS(4991), - [anon_sym_BSLASHftvolcite] = ACTIONS(4991), - [anon_sym_BSLASHsvolcite] = ACTIONS(4991), - [anon_sym_BSLASHSvolcite] = ACTIONS(4991), - [anon_sym_BSLASHtvolcite] = ACTIONS(4991), - [anon_sym_BSLASHTvolcite] = ACTIONS(4991), - [anon_sym_BSLASHavolcite] = ACTIONS(4991), - [anon_sym_BSLASHAvolcite] = ACTIONS(4991), - [anon_sym_BSLASHnotecite] = ACTIONS(4991), - [anon_sym_BSLASHNotecite] = ACTIONS(4991), - [anon_sym_BSLASHpnotecite] = ACTIONS(4991), - [anon_sym_BSLASHPnotecite] = ACTIONS(4991), - [anon_sym_BSLASHfnotecite] = ACTIONS(4991), - [anon_sym_BSLASHlabel] = ACTIONS(4991), - [anon_sym_BSLASHref] = ACTIONS(4991), - [anon_sym_BSLASHeqref] = ACTIONS(4991), - [anon_sym_BSLASHvref] = ACTIONS(4991), - [anon_sym_BSLASHVref] = ACTIONS(4991), - [anon_sym_BSLASHautoref] = ACTIONS(4991), - [anon_sym_BSLASHpageref] = ACTIONS(4991), - [anon_sym_BSLASHcref] = ACTIONS(4991), - [anon_sym_BSLASHCref] = ACTIONS(4991), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnameCref] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHlabelcref] = ACTIONS(4991), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCrefrange] = ACTIONS(4991), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnewlabel] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdef] = ACTIONS(4991), - [anon_sym_BSLASHlet] = ACTIONS(4991), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), - [anon_sym_BSLASHgls] = ACTIONS(4991), - [anon_sym_BSLASHGls] = ACTIONS(4991), - [anon_sym_BSLASHGLS] = ACTIONS(4991), - [anon_sym_BSLASHglspl] = ACTIONS(4991), - [anon_sym_BSLASHGlspl] = ACTIONS(4991), - [anon_sym_BSLASHGLSpl] = ACTIONS(4991), - [anon_sym_BSLASHglsdisp] = ACTIONS(4991), - [anon_sym_BSLASHglslink] = ACTIONS(4991), - [anon_sym_BSLASHglstext] = ACTIONS(4991), - [anon_sym_BSLASHGlstext] = ACTIONS(4991), - [anon_sym_BSLASHGLStext] = ACTIONS(4991), - [anon_sym_BSLASHglsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), - [anon_sym_BSLASHglsplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSplural] = ACTIONS(4991), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHglsname] = ACTIONS(4991), - [anon_sym_BSLASHGlsname] = ACTIONS(4991), - [anon_sym_BSLASHGLSname] = ACTIONS(4991), - [anon_sym_BSLASHglssymbol] = ACTIONS(4991), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), - [anon_sym_BSLASHglsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), - [anon_sym_BSLASHglsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), - [anon_sym_BSLASHglsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), - [anon_sym_BSLASHglsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), - [anon_sym_BSLASHglsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), - [anon_sym_BSLASHnewacronym] = ACTIONS(4991), - [anon_sym_BSLASHacrshort] = ACTIONS(4991), - [anon_sym_BSLASHAcrshort] = ACTIONS(4991), - [anon_sym_BSLASHACRshort] = ACTIONS(4991), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), - [anon_sym_BSLASHacrlong] = ACTIONS(4991), - [anon_sym_BSLASHAcrlong] = ACTIONS(4991), - [anon_sym_BSLASHACRlong] = ACTIONS(4991), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), - [anon_sym_BSLASHacrfull] = ACTIONS(4991), - [anon_sym_BSLASHAcrfull] = ACTIONS(4991), - [anon_sym_BSLASHACRfull] = ACTIONS(4991), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), - [anon_sym_BSLASHacs] = ACTIONS(4991), - [anon_sym_BSLASHAcs] = ACTIONS(4991), - [anon_sym_BSLASHacsp] = ACTIONS(4991), - [anon_sym_BSLASHAcsp] = ACTIONS(4991), - [anon_sym_BSLASHacl] = ACTIONS(4991), - [anon_sym_BSLASHAcl] = ACTIONS(4991), - [anon_sym_BSLASHaclp] = ACTIONS(4991), - [anon_sym_BSLASHAclp] = ACTIONS(4991), - [anon_sym_BSLASHacf] = ACTIONS(4991), - [anon_sym_BSLASHAcf] = ACTIONS(4991), - [anon_sym_BSLASHacfp] = ACTIONS(4991), - [anon_sym_BSLASHAcfp] = ACTIONS(4991), - [anon_sym_BSLASHac] = ACTIONS(4991), - [anon_sym_BSLASHAc] = ACTIONS(4991), - [anon_sym_BSLASHacp] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), - [anon_sym_BSLASHcolor] = ACTIONS(4991), - [anon_sym_BSLASHcolorbox] = ACTIONS(4991), - [anon_sym_BSLASHtextcolor] = ACTIONS(4991), - [anon_sym_BSLASHpagecolor] = ACTIONS(4991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHparagraph] = ACTIONS(4479), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [695] = { - [ts_builtin_sym_end] = ACTIONS(4993), - [sym_command_name] = ACTIONS(4995), + [576] = { + [sym__paragraph_declaration] = STATE(175), + [sym_paragraph] = STATE(519), + [aux_sym__section_repeat6] = STATE(519), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(335), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(337), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHitem] = ACTIONS(4483), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), + }, + [577] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(4483), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(4483), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), + }, + [578] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(4483), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), + }, + [579] = { + [sym__subparagraph_declaration] = STATE(187), + [sym_subparagraph] = STATE(520), + [aux_sym__section_repeat7] = STATE(520), + [sym_command_name] = ACTIONS(4487), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4485), + [anon_sym_RPAREN] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_BSLASHpart] = ACTIONS(4487), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddpart] = ACTIONS(4487), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHchapter] = ACTIONS(4487), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddchap] = ACTIONS(4487), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsection] = ACTIONS(4487), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddsec] = ACTIONS(4487), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHparagraph] = ACTIONS(4487), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubparagraph] = ACTIONS(339), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(341), + [anon_sym_BSLASHitem] = ACTIONS(4487), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4485), + [sym_word] = ACTIONS(4487), + [sym_placeholder] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4487), + [anon_sym_STAR] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym__] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4487), + [anon_sym_PIPE] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [anon_sym_SQUOTE] = ACTIONS(4487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4485), + [anon_sym_DOLLAR] = ACTIONS(4487), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), + [anon_sym_BSLASHbegin] = ACTIONS(4487), + [anon_sym_BSLASHusepackage] = ACTIONS(4487), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), + [anon_sym_BSLASHinclude] = ACTIONS(4487), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), + [anon_sym_BSLASHinput] = ACTIONS(4487), + [anon_sym_BSLASHsubfile] = ACTIONS(4487), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), + [anon_sym_BSLASHbibliography] = ACTIONS(4487), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), + [anon_sym_BSLASHincludesvg] = ACTIONS(4487), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), + [anon_sym_BSLASHimport] = ACTIONS(4487), + [anon_sym_BSLASHsubimport] = ACTIONS(4487), + [anon_sym_BSLASHinputfrom] = ACTIONS(4487), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), + [anon_sym_BSLASHincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHcaption] = ACTIONS(4487), + [anon_sym_BSLASHcite] = ACTIONS(4487), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCite] = ACTIONS(4487), + [anon_sym_BSLASHnocite] = ACTIONS(4487), + [anon_sym_BSLASHcitet] = ACTIONS(4487), + [anon_sym_BSLASHcitep] = ACTIONS(4487), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteauthor] = ACTIONS(4487), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitetitle] = ACTIONS(4487), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteyear] = ACTIONS(4487), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitedate] = ACTIONS(4487), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteurl] = ACTIONS(4487), + [anon_sym_BSLASHfullcite] = ACTIONS(4487), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), + [anon_sym_BSLASHcitealt] = ACTIONS(4487), + [anon_sym_BSLASHcitealp] = ACTIONS(4487), + [anon_sym_BSLASHcitetext] = ACTIONS(4487), + [anon_sym_BSLASHparencite] = ACTIONS(4487), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHParencite] = ACTIONS(4487), + [anon_sym_BSLASHfootcite] = ACTIONS(4487), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), + [anon_sym_BSLASHtextcite] = ACTIONS(4487), + [anon_sym_BSLASHTextcite] = ACTIONS(4487), + [anon_sym_BSLASHsmartcite] = ACTIONS(4487), + [anon_sym_BSLASHSmartcite] = ACTIONS(4487), + [anon_sym_BSLASHsupercite] = ACTIONS(4487), + [anon_sym_BSLASHautocite] = ACTIONS(4487), + [anon_sym_BSLASHAutocite] = ACTIONS(4487), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHvolcite] = ACTIONS(4487), + [anon_sym_BSLASHVolcite] = ACTIONS(4487), + [anon_sym_BSLASHpvolcite] = ACTIONS(4487), + [anon_sym_BSLASHPvolcite] = ACTIONS(4487), + [anon_sym_BSLASHfvolcite] = ACTIONS(4487), + [anon_sym_BSLASHftvolcite] = ACTIONS(4487), + [anon_sym_BSLASHsvolcite] = ACTIONS(4487), + [anon_sym_BSLASHSvolcite] = ACTIONS(4487), + [anon_sym_BSLASHtvolcite] = ACTIONS(4487), + [anon_sym_BSLASHTvolcite] = ACTIONS(4487), + [anon_sym_BSLASHavolcite] = ACTIONS(4487), + [anon_sym_BSLASHAvolcite] = ACTIONS(4487), + [anon_sym_BSLASHnotecite] = ACTIONS(4487), + [anon_sym_BSLASHNotecite] = ACTIONS(4487), + [anon_sym_BSLASHpnotecite] = ACTIONS(4487), + [anon_sym_BSLASHPnotecite] = ACTIONS(4487), + [anon_sym_BSLASHfnotecite] = ACTIONS(4487), + [anon_sym_BSLASHlabel] = ACTIONS(4487), + [anon_sym_BSLASHref] = ACTIONS(4487), + [anon_sym_BSLASHeqref] = ACTIONS(4487), + [anon_sym_BSLASHvref] = ACTIONS(4487), + [anon_sym_BSLASHVref] = ACTIONS(4487), + [anon_sym_BSLASHautoref] = ACTIONS(4487), + [anon_sym_BSLASHpageref] = ACTIONS(4487), + [anon_sym_BSLASHcref] = ACTIONS(4487), + [anon_sym_BSLASHCref] = ACTIONS(4487), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnameCref] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHlabelcref] = ACTIONS(4487), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCrefrange] = ACTIONS(4487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnewlabel] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), + [anon_sym_BSLASHdef] = ACTIONS(4487), + [anon_sym_BSLASHlet] = ACTIONS(4487), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), + [anon_sym_BSLASHgls] = ACTIONS(4487), + [anon_sym_BSLASHGls] = ACTIONS(4487), + [anon_sym_BSLASHGLS] = ACTIONS(4487), + [anon_sym_BSLASHglspl] = ACTIONS(4487), + [anon_sym_BSLASHGlspl] = ACTIONS(4487), + [anon_sym_BSLASHGLSpl] = ACTIONS(4487), + [anon_sym_BSLASHglsdisp] = ACTIONS(4487), + [anon_sym_BSLASHglslink] = ACTIONS(4487), + [anon_sym_BSLASHglstext] = ACTIONS(4487), + [anon_sym_BSLASHGlstext] = ACTIONS(4487), + [anon_sym_BSLASHGLStext] = ACTIONS(4487), + [anon_sym_BSLASHglsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), + [anon_sym_BSLASHglsplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSplural] = ACTIONS(4487), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHglsname] = ACTIONS(4487), + [anon_sym_BSLASHGlsname] = ACTIONS(4487), + [anon_sym_BSLASHGLSname] = ACTIONS(4487), + [anon_sym_BSLASHglssymbol] = ACTIONS(4487), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), + [anon_sym_BSLASHglsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), + [anon_sym_BSLASHglsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), + [anon_sym_BSLASHglsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), + [anon_sym_BSLASHglsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), + [anon_sym_BSLASHglsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), + [anon_sym_BSLASHnewacronym] = ACTIONS(4487), + [anon_sym_BSLASHacrshort] = ACTIONS(4487), + [anon_sym_BSLASHAcrshort] = ACTIONS(4487), + [anon_sym_BSLASHACRshort] = ACTIONS(4487), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), + [anon_sym_BSLASHacrlong] = ACTIONS(4487), + [anon_sym_BSLASHAcrlong] = ACTIONS(4487), + [anon_sym_BSLASHACRlong] = ACTIONS(4487), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), + [anon_sym_BSLASHacrfull] = ACTIONS(4487), + [anon_sym_BSLASHAcrfull] = ACTIONS(4487), + [anon_sym_BSLASHACRfull] = ACTIONS(4487), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), + [anon_sym_BSLASHacs] = ACTIONS(4487), + [anon_sym_BSLASHAcs] = ACTIONS(4487), + [anon_sym_BSLASHacsp] = ACTIONS(4487), + [anon_sym_BSLASHAcsp] = ACTIONS(4487), + [anon_sym_BSLASHacl] = ACTIONS(4487), + [anon_sym_BSLASHAcl] = ACTIONS(4487), + [anon_sym_BSLASHaclp] = ACTIONS(4487), + [anon_sym_BSLASHAclp] = ACTIONS(4487), + [anon_sym_BSLASHacf] = ACTIONS(4487), + [anon_sym_BSLASHAcf] = ACTIONS(4487), + [anon_sym_BSLASHacfp] = ACTIONS(4487), + [anon_sym_BSLASHAcfp] = ACTIONS(4487), + [anon_sym_BSLASHac] = ACTIONS(4487), + [anon_sym_BSLASHAc] = ACTIONS(4487), + [anon_sym_BSLASHacp] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), + [anon_sym_BSLASHcolor] = ACTIONS(4487), + [anon_sym_BSLASHcolorbox] = ACTIONS(4487), + [anon_sym_BSLASHtextcolor] = ACTIONS(4487), + [anon_sym_BSLASHpagecolor] = ACTIONS(4487), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), + [anon_sym_BSLASHtext] = ACTIONS(4487), + [anon_sym_BSLASHintertext] = ACTIONS(4487), + [anon_sym_shortintertext] = ACTIONS(4487), + }, + [580] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(4487), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4485), + [anon_sym_RPAREN] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_BSLASHpart] = ACTIONS(4487), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddpart] = ACTIONS(4487), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHchapter] = ACTIONS(4487), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddchap] = ACTIONS(4487), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsection] = ACTIONS(4487), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddsec] = ACTIONS(4487), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHparagraph] = ACTIONS(4487), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4487), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(4485), + [sym_word] = ACTIONS(4487), + [sym_placeholder] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4487), + [anon_sym_STAR] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym__] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4487), + [anon_sym_PIPE] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [anon_sym_SQUOTE] = ACTIONS(4487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4485), + [anon_sym_DOLLAR] = ACTIONS(4487), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), + [anon_sym_BSLASHbegin] = ACTIONS(4487), + [anon_sym_BSLASHusepackage] = ACTIONS(4487), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), + [anon_sym_BSLASHinclude] = ACTIONS(4487), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), + [anon_sym_BSLASHinput] = ACTIONS(4487), + [anon_sym_BSLASHsubfile] = ACTIONS(4487), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), + [anon_sym_BSLASHbibliography] = ACTIONS(4487), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), + [anon_sym_BSLASHincludesvg] = ACTIONS(4487), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), + [anon_sym_BSLASHimport] = ACTIONS(4487), + [anon_sym_BSLASHsubimport] = ACTIONS(4487), + [anon_sym_BSLASHinputfrom] = ACTIONS(4487), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), + [anon_sym_BSLASHincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHcaption] = ACTIONS(4487), + [anon_sym_BSLASHcite] = ACTIONS(4487), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCite] = ACTIONS(4487), + [anon_sym_BSLASHnocite] = ACTIONS(4487), + [anon_sym_BSLASHcitet] = ACTIONS(4487), + [anon_sym_BSLASHcitep] = ACTIONS(4487), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteauthor] = ACTIONS(4487), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitetitle] = ACTIONS(4487), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteyear] = ACTIONS(4487), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitedate] = ACTIONS(4487), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteurl] = ACTIONS(4487), + [anon_sym_BSLASHfullcite] = ACTIONS(4487), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), + [anon_sym_BSLASHcitealt] = ACTIONS(4487), + [anon_sym_BSLASHcitealp] = ACTIONS(4487), + [anon_sym_BSLASHcitetext] = ACTIONS(4487), + [anon_sym_BSLASHparencite] = ACTIONS(4487), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHParencite] = ACTIONS(4487), + [anon_sym_BSLASHfootcite] = ACTIONS(4487), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), + [anon_sym_BSLASHtextcite] = ACTIONS(4487), + [anon_sym_BSLASHTextcite] = ACTIONS(4487), + [anon_sym_BSLASHsmartcite] = ACTIONS(4487), + [anon_sym_BSLASHSmartcite] = ACTIONS(4487), + [anon_sym_BSLASHsupercite] = ACTIONS(4487), + [anon_sym_BSLASHautocite] = ACTIONS(4487), + [anon_sym_BSLASHAutocite] = ACTIONS(4487), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHvolcite] = ACTIONS(4487), + [anon_sym_BSLASHVolcite] = ACTIONS(4487), + [anon_sym_BSLASHpvolcite] = ACTIONS(4487), + [anon_sym_BSLASHPvolcite] = ACTIONS(4487), + [anon_sym_BSLASHfvolcite] = ACTIONS(4487), + [anon_sym_BSLASHftvolcite] = ACTIONS(4487), + [anon_sym_BSLASHsvolcite] = ACTIONS(4487), + [anon_sym_BSLASHSvolcite] = ACTIONS(4487), + [anon_sym_BSLASHtvolcite] = ACTIONS(4487), + [anon_sym_BSLASHTvolcite] = ACTIONS(4487), + [anon_sym_BSLASHavolcite] = ACTIONS(4487), + [anon_sym_BSLASHAvolcite] = ACTIONS(4487), + [anon_sym_BSLASHnotecite] = ACTIONS(4487), + [anon_sym_BSLASHNotecite] = ACTIONS(4487), + [anon_sym_BSLASHpnotecite] = ACTIONS(4487), + [anon_sym_BSLASHPnotecite] = ACTIONS(4487), + [anon_sym_BSLASHfnotecite] = ACTIONS(4487), + [anon_sym_BSLASHlabel] = ACTIONS(4487), + [anon_sym_BSLASHref] = ACTIONS(4487), + [anon_sym_BSLASHeqref] = ACTIONS(4487), + [anon_sym_BSLASHvref] = ACTIONS(4487), + [anon_sym_BSLASHVref] = ACTIONS(4487), + [anon_sym_BSLASHautoref] = ACTIONS(4487), + [anon_sym_BSLASHpageref] = ACTIONS(4487), + [anon_sym_BSLASHcref] = ACTIONS(4487), + [anon_sym_BSLASHCref] = ACTIONS(4487), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnameCref] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHlabelcref] = ACTIONS(4487), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCrefrange] = ACTIONS(4487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnewlabel] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), + [anon_sym_BSLASHdef] = ACTIONS(4487), + [anon_sym_BSLASHlet] = ACTIONS(4487), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), + [anon_sym_BSLASHgls] = ACTIONS(4487), + [anon_sym_BSLASHGls] = ACTIONS(4487), + [anon_sym_BSLASHGLS] = ACTIONS(4487), + [anon_sym_BSLASHglspl] = ACTIONS(4487), + [anon_sym_BSLASHGlspl] = ACTIONS(4487), + [anon_sym_BSLASHGLSpl] = ACTIONS(4487), + [anon_sym_BSLASHglsdisp] = ACTIONS(4487), + [anon_sym_BSLASHglslink] = ACTIONS(4487), + [anon_sym_BSLASHglstext] = ACTIONS(4487), + [anon_sym_BSLASHGlstext] = ACTIONS(4487), + [anon_sym_BSLASHGLStext] = ACTIONS(4487), + [anon_sym_BSLASHglsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), + [anon_sym_BSLASHglsplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSplural] = ACTIONS(4487), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHglsname] = ACTIONS(4487), + [anon_sym_BSLASHGlsname] = ACTIONS(4487), + [anon_sym_BSLASHGLSname] = ACTIONS(4487), + [anon_sym_BSLASHglssymbol] = ACTIONS(4487), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), + [anon_sym_BSLASHglsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), + [anon_sym_BSLASHglsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), + [anon_sym_BSLASHglsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), + [anon_sym_BSLASHglsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), + [anon_sym_BSLASHglsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), + [anon_sym_BSLASHnewacronym] = ACTIONS(4487), + [anon_sym_BSLASHacrshort] = ACTIONS(4487), + [anon_sym_BSLASHAcrshort] = ACTIONS(4487), + [anon_sym_BSLASHACRshort] = ACTIONS(4487), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), + [anon_sym_BSLASHacrlong] = ACTIONS(4487), + [anon_sym_BSLASHAcrlong] = ACTIONS(4487), + [anon_sym_BSLASHACRlong] = ACTIONS(4487), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), + [anon_sym_BSLASHacrfull] = ACTIONS(4487), + [anon_sym_BSLASHAcrfull] = ACTIONS(4487), + [anon_sym_BSLASHACRfull] = ACTIONS(4487), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), + [anon_sym_BSLASHacs] = ACTIONS(4487), + [anon_sym_BSLASHAcs] = ACTIONS(4487), + [anon_sym_BSLASHacsp] = ACTIONS(4487), + [anon_sym_BSLASHAcsp] = ACTIONS(4487), + [anon_sym_BSLASHacl] = ACTIONS(4487), + [anon_sym_BSLASHAcl] = ACTIONS(4487), + [anon_sym_BSLASHaclp] = ACTIONS(4487), + [anon_sym_BSLASHAclp] = ACTIONS(4487), + [anon_sym_BSLASHacf] = ACTIONS(4487), + [anon_sym_BSLASHAcf] = ACTIONS(4487), + [anon_sym_BSLASHacfp] = ACTIONS(4487), + [anon_sym_BSLASHAcfp] = ACTIONS(4487), + [anon_sym_BSLASHac] = ACTIONS(4487), + [anon_sym_BSLASHAc] = ACTIONS(4487), + [anon_sym_BSLASHacp] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), + [anon_sym_BSLASHcolor] = ACTIONS(4487), + [anon_sym_BSLASHcolorbox] = ACTIONS(4487), + [anon_sym_BSLASHtextcolor] = ACTIONS(4487), + [anon_sym_BSLASHpagecolor] = ACTIONS(4487), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), + [anon_sym_BSLASHtext] = ACTIONS(4487), + [anon_sym_BSLASHintertext] = ACTIONS(4487), + [anon_sym_shortintertext] = ACTIONS(4487), + }, + [581] = { + [sym__enum_itemdeclaration] = STATE(196), + [sym_enum_item] = STATE(521), + [aux_sym__section_repeat8] = STATE(521), + [sym_command_name] = ACTIONS(4491), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4489), + [anon_sym_RPAREN] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4489), + [anon_sym_RBRACK] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4489), + [anon_sym_BSLASHpart] = ACTIONS(4491), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddpart] = ACTIONS(4491), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4489), + [anon_sym_BSLASHchapter] = ACTIONS(4491), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddchap] = ACTIONS(4491), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsection] = ACTIONS(4491), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddsec] = ACTIONS(4491), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubsection] = ACTIONS(4491), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4491), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHparagraph] = ACTIONS(4491), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4491), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4489), + [anon_sym_BSLASHitem] = ACTIONS(343), + [anon_sym_BSLASHitem_STAR] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(4489), + [sym_word] = ACTIONS(4491), + [sym_placeholder] = ACTIONS(4489), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_CARET] = ACTIONS(4491), + [anon_sym__] = ACTIONS(4491), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_BANG] = ACTIONS(4491), + [anon_sym_PIPE] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [anon_sym_SQUOTE] = ACTIONS(4491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4489), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4489), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4489), + [anon_sym_DOLLAR] = ACTIONS(4491), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4489), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4489), + [anon_sym_BSLASHbegin] = ACTIONS(4491), + [anon_sym_BSLASHusepackage] = ACTIONS(4491), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4491), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4491), + [anon_sym_BSLASHinclude] = ACTIONS(4491), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4491), + [anon_sym_BSLASHinput] = ACTIONS(4491), + [anon_sym_BSLASHsubfile] = ACTIONS(4491), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4491), + [anon_sym_BSLASHbibliography] = ACTIONS(4491), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4491), + [anon_sym_BSLASHincludesvg] = ACTIONS(4491), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4491), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4491), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4491), + [anon_sym_BSLASHimport] = ACTIONS(4491), + [anon_sym_BSLASHsubimport] = ACTIONS(4491), + [anon_sym_BSLASHinputfrom] = ACTIONS(4491), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4491), + [anon_sym_BSLASHincludefrom] = ACTIONS(4491), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4491), + [anon_sym_BSLASHcaption] = ACTIONS(4491), + [anon_sym_BSLASHcite] = ACTIONS(4491), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCite] = ACTIONS(4491), + [anon_sym_BSLASHnocite] = ACTIONS(4491), + [anon_sym_BSLASHcitet] = ACTIONS(4491), + [anon_sym_BSLASHcitep] = ACTIONS(4491), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteauthor] = ACTIONS(4491), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4491), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitetitle] = ACTIONS(4491), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteyear] = ACTIONS(4491), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitedate] = ACTIONS(4491), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteurl] = ACTIONS(4491), + [anon_sym_BSLASHfullcite] = ACTIONS(4491), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4491), + [anon_sym_BSLASHcitealt] = ACTIONS(4491), + [anon_sym_BSLASHcitealp] = ACTIONS(4491), + [anon_sym_BSLASHcitetext] = ACTIONS(4491), + [anon_sym_BSLASHparencite] = ACTIONS(4491), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHParencite] = ACTIONS(4491), + [anon_sym_BSLASHfootcite] = ACTIONS(4491), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4491), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4491), + [anon_sym_BSLASHtextcite] = ACTIONS(4491), + [anon_sym_BSLASHTextcite] = ACTIONS(4491), + [anon_sym_BSLASHsmartcite] = ACTIONS(4491), + [anon_sym_BSLASHSmartcite] = ACTIONS(4491), + [anon_sym_BSLASHsupercite] = ACTIONS(4491), + [anon_sym_BSLASHautocite] = ACTIONS(4491), + [anon_sym_BSLASHAutocite] = ACTIONS(4491), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHvolcite] = ACTIONS(4491), + [anon_sym_BSLASHVolcite] = ACTIONS(4491), + [anon_sym_BSLASHpvolcite] = ACTIONS(4491), + [anon_sym_BSLASHPvolcite] = ACTIONS(4491), + [anon_sym_BSLASHfvolcite] = ACTIONS(4491), + [anon_sym_BSLASHftvolcite] = ACTIONS(4491), + [anon_sym_BSLASHsvolcite] = ACTIONS(4491), + [anon_sym_BSLASHSvolcite] = ACTIONS(4491), + [anon_sym_BSLASHtvolcite] = ACTIONS(4491), + [anon_sym_BSLASHTvolcite] = ACTIONS(4491), + [anon_sym_BSLASHavolcite] = ACTIONS(4491), + [anon_sym_BSLASHAvolcite] = ACTIONS(4491), + [anon_sym_BSLASHnotecite] = ACTIONS(4491), + [anon_sym_BSLASHNotecite] = ACTIONS(4491), + [anon_sym_BSLASHpnotecite] = ACTIONS(4491), + [anon_sym_BSLASHPnotecite] = ACTIONS(4491), + [anon_sym_BSLASHfnotecite] = ACTIONS(4491), + [anon_sym_BSLASHlabel] = ACTIONS(4491), + [anon_sym_BSLASHref] = ACTIONS(4491), + [anon_sym_BSLASHeqref] = ACTIONS(4491), + [anon_sym_BSLASHvref] = ACTIONS(4491), + [anon_sym_BSLASHVref] = ACTIONS(4491), + [anon_sym_BSLASHautoref] = ACTIONS(4491), + [anon_sym_BSLASHpageref] = ACTIONS(4491), + [anon_sym_BSLASHcref] = ACTIONS(4491), + [anon_sym_BSLASHCref] = ACTIONS(4491), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4489), + [anon_sym_BSLASHnamecref] = ACTIONS(4491), + [anon_sym_BSLASHnameCref] = ACTIONS(4491), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4491), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4491), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4491), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4491), + [anon_sym_BSLASHlabelcref] = ACTIONS(4491), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4491), + [anon_sym_BSLASHcrefrange] = ACTIONS(4491), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCrefrange] = ACTIONS(4491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4489), + [anon_sym_BSLASHnewlabel] = ACTIONS(4491), + [anon_sym_BSLASHnewcommand] = ACTIONS(4491), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4491), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4491), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4491), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4489), + [anon_sym_BSLASHdef] = ACTIONS(4491), + [anon_sym_BSLASHlet] = ACTIONS(4491), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4491), + [anon_sym_BSLASHgls] = ACTIONS(4491), + [anon_sym_BSLASHGls] = ACTIONS(4491), + [anon_sym_BSLASHGLS] = ACTIONS(4491), + [anon_sym_BSLASHglspl] = ACTIONS(4491), + [anon_sym_BSLASHGlspl] = ACTIONS(4491), + [anon_sym_BSLASHGLSpl] = ACTIONS(4491), + [anon_sym_BSLASHglsdisp] = ACTIONS(4491), + [anon_sym_BSLASHglslink] = ACTIONS(4491), + [anon_sym_BSLASHglstext] = ACTIONS(4491), + [anon_sym_BSLASHGlstext] = ACTIONS(4491), + [anon_sym_BSLASHGLStext] = ACTIONS(4491), + [anon_sym_BSLASHglsfirst] = ACTIONS(4491), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4491), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4491), + [anon_sym_BSLASHglsplural] = ACTIONS(4491), + [anon_sym_BSLASHGlsplural] = ACTIONS(4491), + [anon_sym_BSLASHGLSplural] = ACTIONS(4491), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHglsname] = ACTIONS(4491), + [anon_sym_BSLASHGlsname] = ACTIONS(4491), + [anon_sym_BSLASHGLSname] = ACTIONS(4491), + [anon_sym_BSLASHglssymbol] = ACTIONS(4491), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4491), + [anon_sym_BSLASHglsdesc] = ACTIONS(4491), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4491), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4491), + [anon_sym_BSLASHglsuseri] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4491), + [anon_sym_BSLASHglsuserii] = ACTIONS(4491), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4491), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4491), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4491), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4491), + [anon_sym_BSLASHglsuserv] = ACTIONS(4491), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4491), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4491), + [anon_sym_BSLASHglsuservi] = ACTIONS(4491), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4491), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4491), + [anon_sym_BSLASHnewacronym] = ACTIONS(4491), + [anon_sym_BSLASHacrshort] = ACTIONS(4491), + [anon_sym_BSLASHAcrshort] = ACTIONS(4491), + [anon_sym_BSLASHACRshort] = ACTIONS(4491), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4491), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4491), + [anon_sym_BSLASHacrlong] = ACTIONS(4491), + [anon_sym_BSLASHAcrlong] = ACTIONS(4491), + [anon_sym_BSLASHACRlong] = ACTIONS(4491), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4491), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4491), + [anon_sym_BSLASHacrfull] = ACTIONS(4491), + [anon_sym_BSLASHAcrfull] = ACTIONS(4491), + [anon_sym_BSLASHACRfull] = ACTIONS(4491), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4491), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4491), + [anon_sym_BSLASHacs] = ACTIONS(4491), + [anon_sym_BSLASHAcs] = ACTIONS(4491), + [anon_sym_BSLASHacsp] = ACTIONS(4491), + [anon_sym_BSLASHAcsp] = ACTIONS(4491), + [anon_sym_BSLASHacl] = ACTIONS(4491), + [anon_sym_BSLASHAcl] = ACTIONS(4491), + [anon_sym_BSLASHaclp] = ACTIONS(4491), + [anon_sym_BSLASHAclp] = ACTIONS(4491), + [anon_sym_BSLASHacf] = ACTIONS(4491), + [anon_sym_BSLASHAcf] = ACTIONS(4491), + [anon_sym_BSLASHacfp] = ACTIONS(4491), + [anon_sym_BSLASHAcfp] = ACTIONS(4491), + [anon_sym_BSLASHac] = ACTIONS(4491), + [anon_sym_BSLASHAc] = ACTIONS(4491), + [anon_sym_BSLASHacp] = ACTIONS(4491), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4491), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4491), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4491), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4491), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4491), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4491), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4491), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4491), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4491), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4491), + [anon_sym_BSLASHcolor] = ACTIONS(4491), + [anon_sym_BSLASHcolorbox] = ACTIONS(4491), + [anon_sym_BSLASHtextcolor] = ACTIONS(4491), + [anon_sym_BSLASHpagecolor] = ACTIONS(4491), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4491), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4491), + [anon_sym_BSLASHtext] = ACTIONS(4491), + [anon_sym_BSLASHintertext] = ACTIONS(4491), + [anon_sym_shortintertext] = ACTIONS(4491), + }, + [582] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(1869), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [583] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(1869), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_RPAREN] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_BSLASHpart] = ACTIONS(1869), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddpart] = ACTIONS(1869), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1867), + [anon_sym_BSLASHchapter] = ACTIONS(1869), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddchap] = ACTIONS(1869), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsection] = ACTIONS(1869), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHaddsec] = ACTIONS(1869), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1869), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1867), + [anon_sym_BSLASHparagraph] = ACTIONS(1869), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1869), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1867), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(1867), + [sym_word] = ACTIONS(1869), + [sym_placeholder] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym__] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1867), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1867), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1867), + [anon_sym_BSLASHbegin] = ACTIONS(1869), + [anon_sym_BSLASHusepackage] = ACTIONS(1869), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1869), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1869), + [anon_sym_BSLASHinclude] = ACTIONS(1869), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1869), + [anon_sym_BSLASHinput] = ACTIONS(1869), + [anon_sym_BSLASHsubfile] = ACTIONS(1869), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1869), + [anon_sym_BSLASHbibliography] = ACTIONS(1869), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1869), + [anon_sym_BSLASHincludesvg] = ACTIONS(1869), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1869), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1869), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1869), + [anon_sym_BSLASHimport] = ACTIONS(1869), + [anon_sym_BSLASHsubimport] = ACTIONS(1869), + [anon_sym_BSLASHinputfrom] = ACTIONS(1869), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1869), + [anon_sym_BSLASHincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1869), + [anon_sym_BSLASHcaption] = ACTIONS(1869), + [anon_sym_BSLASHcite] = ACTIONS(1869), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCite] = ACTIONS(1869), + [anon_sym_BSLASHnocite] = ACTIONS(1869), + [anon_sym_BSLASHcitet] = ACTIONS(1869), + [anon_sym_BSLASHcitep] = ACTIONS(1869), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteauthor] = ACTIONS(1869), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1869), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitetitle] = ACTIONS(1869), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteyear] = ACTIONS(1869), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1867), + [anon_sym_BSLASHcitedate] = ACTIONS(1869), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1867), + [anon_sym_BSLASHciteurl] = ACTIONS(1869), + [anon_sym_BSLASHfullcite] = ACTIONS(1869), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1869), + [anon_sym_BSLASHcitealt] = ACTIONS(1869), + [anon_sym_BSLASHcitealp] = ACTIONS(1869), + [anon_sym_BSLASHcitetext] = ACTIONS(1869), + [anon_sym_BSLASHparencite] = ACTIONS(1869), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHParencite] = ACTIONS(1869), + [anon_sym_BSLASHfootcite] = ACTIONS(1869), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1869), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1869), + [anon_sym_BSLASHtextcite] = ACTIONS(1869), + [anon_sym_BSLASHTextcite] = ACTIONS(1869), + [anon_sym_BSLASHsmartcite] = ACTIONS(1869), + [anon_sym_BSLASHSmartcite] = ACTIONS(1869), + [anon_sym_BSLASHsupercite] = ACTIONS(1869), + [anon_sym_BSLASHautocite] = ACTIONS(1869), + [anon_sym_BSLASHAutocite] = ACTIONS(1869), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1867), + [anon_sym_BSLASHvolcite] = ACTIONS(1869), + [anon_sym_BSLASHVolcite] = ACTIONS(1869), + [anon_sym_BSLASHpvolcite] = ACTIONS(1869), + [anon_sym_BSLASHPvolcite] = ACTIONS(1869), + [anon_sym_BSLASHfvolcite] = ACTIONS(1869), + [anon_sym_BSLASHftvolcite] = ACTIONS(1869), + [anon_sym_BSLASHsvolcite] = ACTIONS(1869), + [anon_sym_BSLASHSvolcite] = ACTIONS(1869), + [anon_sym_BSLASHtvolcite] = ACTIONS(1869), + [anon_sym_BSLASHTvolcite] = ACTIONS(1869), + [anon_sym_BSLASHavolcite] = ACTIONS(1869), + [anon_sym_BSLASHAvolcite] = ACTIONS(1869), + [anon_sym_BSLASHnotecite] = ACTIONS(1869), + [anon_sym_BSLASHNotecite] = ACTIONS(1869), + [anon_sym_BSLASHpnotecite] = ACTIONS(1869), + [anon_sym_BSLASHPnotecite] = ACTIONS(1869), + [anon_sym_BSLASHfnotecite] = ACTIONS(1869), + [anon_sym_BSLASHlabel] = ACTIONS(1869), + [anon_sym_BSLASHref] = ACTIONS(1869), + [anon_sym_BSLASHeqref] = ACTIONS(1869), + [anon_sym_BSLASHvref] = ACTIONS(1869), + [anon_sym_BSLASHVref] = ACTIONS(1869), + [anon_sym_BSLASHautoref] = ACTIONS(1869), + [anon_sym_BSLASHpageref] = ACTIONS(1869), + [anon_sym_BSLASHcref] = ACTIONS(1869), + [anon_sym_BSLASHCref] = ACTIONS(1869), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnameCref] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1869), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1869), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1869), + [anon_sym_BSLASHlabelcref] = ACTIONS(1869), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange] = ACTIONS(1869), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHCrefrange] = ACTIONS(1869), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1867), + [anon_sym_BSLASHnewlabel] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand] = ACTIONS(1869), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1869), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1869), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1867), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1869), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1867), + [anon_sym_BSLASHdef] = ACTIONS(1869), + [anon_sym_BSLASHlet] = ACTIONS(1869), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1869), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1869), + [anon_sym_BSLASHgls] = ACTIONS(1869), + [anon_sym_BSLASHGls] = ACTIONS(1869), + [anon_sym_BSLASHGLS] = ACTIONS(1869), + [anon_sym_BSLASHglspl] = ACTIONS(1869), + [anon_sym_BSLASHGlspl] = ACTIONS(1869), + [anon_sym_BSLASHGLSpl] = ACTIONS(1869), + [anon_sym_BSLASHglsdisp] = ACTIONS(1869), + [anon_sym_BSLASHglslink] = ACTIONS(1869), + [anon_sym_BSLASHglstext] = ACTIONS(1869), + [anon_sym_BSLASHGlstext] = ACTIONS(1869), + [anon_sym_BSLASHGLStext] = ACTIONS(1869), + [anon_sym_BSLASHglsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1869), + [anon_sym_BSLASHglsplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSplural] = ACTIONS(1869), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1869), + [anon_sym_BSLASHglsname] = ACTIONS(1869), + [anon_sym_BSLASHGlsname] = ACTIONS(1869), + [anon_sym_BSLASHGLSname] = ACTIONS(1869), + [anon_sym_BSLASHglssymbol] = ACTIONS(1869), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1869), + [anon_sym_BSLASHglsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1869), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1869), + [anon_sym_BSLASHglsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1869), + [anon_sym_BSLASHglsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1869), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1869), + [anon_sym_BSLASHglsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1869), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1869), + [anon_sym_BSLASHglsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1869), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1869), + [anon_sym_BSLASHnewacronym] = ACTIONS(1869), + [anon_sym_BSLASHacrshort] = ACTIONS(1869), + [anon_sym_BSLASHAcrshort] = ACTIONS(1869), + [anon_sym_BSLASHACRshort] = ACTIONS(1869), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1869), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1869), + [anon_sym_BSLASHacrlong] = ACTIONS(1869), + [anon_sym_BSLASHAcrlong] = ACTIONS(1869), + [anon_sym_BSLASHACRlong] = ACTIONS(1869), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1869), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1869), + [anon_sym_BSLASHacrfull] = ACTIONS(1869), + [anon_sym_BSLASHAcrfull] = ACTIONS(1869), + [anon_sym_BSLASHACRfull] = ACTIONS(1869), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1869), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1869), + [anon_sym_BSLASHacs] = ACTIONS(1869), + [anon_sym_BSLASHAcs] = ACTIONS(1869), + [anon_sym_BSLASHacsp] = ACTIONS(1869), + [anon_sym_BSLASHAcsp] = ACTIONS(1869), + [anon_sym_BSLASHacl] = ACTIONS(1869), + [anon_sym_BSLASHAcl] = ACTIONS(1869), + [anon_sym_BSLASHaclp] = ACTIONS(1869), + [anon_sym_BSLASHAclp] = ACTIONS(1869), + [anon_sym_BSLASHacf] = ACTIONS(1869), + [anon_sym_BSLASHAcf] = ACTIONS(1869), + [anon_sym_BSLASHacfp] = ACTIONS(1869), + [anon_sym_BSLASHAcfp] = ACTIONS(1869), + [anon_sym_BSLASHac] = ACTIONS(1869), + [anon_sym_BSLASHAc] = ACTIONS(1869), + [anon_sym_BSLASHacp] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1869), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1869), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1869), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1869), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1869), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1869), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1869), + [anon_sym_BSLASHcolor] = ACTIONS(1869), + [anon_sym_BSLASHcolorbox] = ACTIONS(1869), + [anon_sym_BSLASHtextcolor] = ACTIONS(1869), + [anon_sym_BSLASHpagecolor] = ACTIONS(1869), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1869), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1869), + [anon_sym_BSLASHtext] = ACTIONS(1869), + [anon_sym_BSLASHintertext] = ACTIONS(1869), + [anon_sym_shortintertext] = ACTIONS(1869), + }, + [584] = { + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(632), + [aux_sym__section_repeat4] = STATE(632), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [585] = { + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(633), + [aux_sym__section_repeat5] = STATE(633), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [586] = { + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(634), + [aux_sym__section_repeat6] = STATE(634), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [587] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(1893), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1891), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [588] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(1893), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1891), + [anon_sym_RPAREN] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1891), + [anon_sym_RBRACK] = ACTIONS(1891), + [anon_sym_COMMA] = ACTIONS(1891), + [anon_sym_EQ] = ACTIONS(1891), + [anon_sym_BSLASHpart] = ACTIONS(1893), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddpart] = ACTIONS(1893), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1891), + [anon_sym_BSLASHchapter] = ACTIONS(1893), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddchap] = ACTIONS(1893), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsection] = ACTIONS(1893), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHaddsec] = ACTIONS(1893), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1893), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1891), + [anon_sym_BSLASHparagraph] = ACTIONS(1893), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1893), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1891), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(1891), + [sym_word] = ACTIONS(1893), + [sym_placeholder] = ACTIONS(1891), + [anon_sym_PLUS] = ACTIONS(1893), + [anon_sym_DASH] = ACTIONS(1893), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1893), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym__] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1893), + [anon_sym_PIPE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_SQUOTE] = ACTIONS(1893), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1891), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1891), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1891), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1891), + [anon_sym_BSLASHbegin] = ACTIONS(1893), + [anon_sym_BSLASHusepackage] = ACTIONS(1893), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1893), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1893), + [anon_sym_BSLASHinclude] = ACTIONS(1893), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1893), + [anon_sym_BSLASHinput] = ACTIONS(1893), + [anon_sym_BSLASHsubfile] = ACTIONS(1893), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1893), + [anon_sym_BSLASHbibliography] = ACTIONS(1893), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1893), + [anon_sym_BSLASHincludesvg] = ACTIONS(1893), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1893), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1893), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1893), + [anon_sym_BSLASHimport] = ACTIONS(1893), + [anon_sym_BSLASHsubimport] = ACTIONS(1893), + [anon_sym_BSLASHinputfrom] = ACTIONS(1893), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1893), + [anon_sym_BSLASHincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1893), + [anon_sym_BSLASHcaption] = ACTIONS(1893), + [anon_sym_BSLASHcite] = ACTIONS(1893), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCite] = ACTIONS(1893), + [anon_sym_BSLASHnocite] = ACTIONS(1893), + [anon_sym_BSLASHcitet] = ACTIONS(1893), + [anon_sym_BSLASHcitep] = ACTIONS(1893), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteauthor] = ACTIONS(1893), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1893), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitetitle] = ACTIONS(1893), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteyear] = ACTIONS(1893), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1891), + [anon_sym_BSLASHcitedate] = ACTIONS(1893), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1891), + [anon_sym_BSLASHciteurl] = ACTIONS(1893), + [anon_sym_BSLASHfullcite] = ACTIONS(1893), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1893), + [anon_sym_BSLASHcitealt] = ACTIONS(1893), + [anon_sym_BSLASHcitealp] = ACTIONS(1893), + [anon_sym_BSLASHcitetext] = ACTIONS(1893), + [anon_sym_BSLASHparencite] = ACTIONS(1893), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHParencite] = ACTIONS(1893), + [anon_sym_BSLASHfootcite] = ACTIONS(1893), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1893), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1893), + [anon_sym_BSLASHtextcite] = ACTIONS(1893), + [anon_sym_BSLASHTextcite] = ACTIONS(1893), + [anon_sym_BSLASHsmartcite] = ACTIONS(1893), + [anon_sym_BSLASHSmartcite] = ACTIONS(1893), + [anon_sym_BSLASHsupercite] = ACTIONS(1893), + [anon_sym_BSLASHautocite] = ACTIONS(1893), + [anon_sym_BSLASHAutocite] = ACTIONS(1893), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1891), + [anon_sym_BSLASHvolcite] = ACTIONS(1893), + [anon_sym_BSLASHVolcite] = ACTIONS(1893), + [anon_sym_BSLASHpvolcite] = ACTIONS(1893), + [anon_sym_BSLASHPvolcite] = ACTIONS(1893), + [anon_sym_BSLASHfvolcite] = ACTIONS(1893), + [anon_sym_BSLASHftvolcite] = ACTIONS(1893), + [anon_sym_BSLASHsvolcite] = ACTIONS(1893), + [anon_sym_BSLASHSvolcite] = ACTIONS(1893), + [anon_sym_BSLASHtvolcite] = ACTIONS(1893), + [anon_sym_BSLASHTvolcite] = ACTIONS(1893), + [anon_sym_BSLASHavolcite] = ACTIONS(1893), + [anon_sym_BSLASHAvolcite] = ACTIONS(1893), + [anon_sym_BSLASHnotecite] = ACTIONS(1893), + [anon_sym_BSLASHNotecite] = ACTIONS(1893), + [anon_sym_BSLASHpnotecite] = ACTIONS(1893), + [anon_sym_BSLASHPnotecite] = ACTIONS(1893), + [anon_sym_BSLASHfnotecite] = ACTIONS(1893), + [anon_sym_BSLASHlabel] = ACTIONS(1893), + [anon_sym_BSLASHref] = ACTIONS(1893), + [anon_sym_BSLASHeqref] = ACTIONS(1893), + [anon_sym_BSLASHvref] = ACTIONS(1893), + [anon_sym_BSLASHVref] = ACTIONS(1893), + [anon_sym_BSLASHautoref] = ACTIONS(1893), + [anon_sym_BSLASHpageref] = ACTIONS(1893), + [anon_sym_BSLASHcref] = ACTIONS(1893), + [anon_sym_BSLASHCref] = ACTIONS(1893), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnameCref] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1893), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1893), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1893), + [anon_sym_BSLASHlabelcref] = ACTIONS(1893), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange] = ACTIONS(1893), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHCrefrange] = ACTIONS(1893), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1891), + [anon_sym_BSLASHnewlabel] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand] = ACTIONS(1893), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1893), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1893), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1891), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1893), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1891), + [anon_sym_BSLASHdef] = ACTIONS(1893), + [anon_sym_BSLASHlet] = ACTIONS(1893), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1893), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1893), + [anon_sym_BSLASHgls] = ACTIONS(1893), + [anon_sym_BSLASHGls] = ACTIONS(1893), + [anon_sym_BSLASHGLS] = ACTIONS(1893), + [anon_sym_BSLASHglspl] = ACTIONS(1893), + [anon_sym_BSLASHGlspl] = ACTIONS(1893), + [anon_sym_BSLASHGLSpl] = ACTIONS(1893), + [anon_sym_BSLASHglsdisp] = ACTIONS(1893), + [anon_sym_BSLASHglslink] = ACTIONS(1893), + [anon_sym_BSLASHglstext] = ACTIONS(1893), + [anon_sym_BSLASHGlstext] = ACTIONS(1893), + [anon_sym_BSLASHGLStext] = ACTIONS(1893), + [anon_sym_BSLASHglsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1893), + [anon_sym_BSLASHglsplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSplural] = ACTIONS(1893), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1893), + [anon_sym_BSLASHglsname] = ACTIONS(1893), + [anon_sym_BSLASHGlsname] = ACTIONS(1893), + [anon_sym_BSLASHGLSname] = ACTIONS(1893), + [anon_sym_BSLASHglssymbol] = ACTIONS(1893), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1893), + [anon_sym_BSLASHglsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1893), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1893), + [anon_sym_BSLASHglsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1893), + [anon_sym_BSLASHglsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1893), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1893), + [anon_sym_BSLASHglsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1893), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1893), + [anon_sym_BSLASHglsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1893), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1893), + [anon_sym_BSLASHnewacronym] = ACTIONS(1893), + [anon_sym_BSLASHacrshort] = ACTIONS(1893), + [anon_sym_BSLASHAcrshort] = ACTIONS(1893), + [anon_sym_BSLASHACRshort] = ACTIONS(1893), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1893), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1893), + [anon_sym_BSLASHacrlong] = ACTIONS(1893), + [anon_sym_BSLASHAcrlong] = ACTIONS(1893), + [anon_sym_BSLASHACRlong] = ACTIONS(1893), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1893), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1893), + [anon_sym_BSLASHacrfull] = ACTIONS(1893), + [anon_sym_BSLASHAcrfull] = ACTIONS(1893), + [anon_sym_BSLASHACRfull] = ACTIONS(1893), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1893), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1893), + [anon_sym_BSLASHacs] = ACTIONS(1893), + [anon_sym_BSLASHAcs] = ACTIONS(1893), + [anon_sym_BSLASHacsp] = ACTIONS(1893), + [anon_sym_BSLASHAcsp] = ACTIONS(1893), + [anon_sym_BSLASHacl] = ACTIONS(1893), + [anon_sym_BSLASHAcl] = ACTIONS(1893), + [anon_sym_BSLASHaclp] = ACTIONS(1893), + [anon_sym_BSLASHAclp] = ACTIONS(1893), + [anon_sym_BSLASHacf] = ACTIONS(1893), + [anon_sym_BSLASHAcf] = ACTIONS(1893), + [anon_sym_BSLASHacfp] = ACTIONS(1893), + [anon_sym_BSLASHAcfp] = ACTIONS(1893), + [anon_sym_BSLASHac] = ACTIONS(1893), + [anon_sym_BSLASHAc] = ACTIONS(1893), + [anon_sym_BSLASHacp] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1893), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1893), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1893), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1893), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1893), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1893), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1893), + [anon_sym_BSLASHcolor] = ACTIONS(1893), + [anon_sym_BSLASHcolorbox] = ACTIONS(1893), + [anon_sym_BSLASHtextcolor] = ACTIONS(1893), + [anon_sym_BSLASHpagecolor] = ACTIONS(1893), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1893), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1893), + [anon_sym_BSLASHtext] = ACTIONS(1893), + [anon_sym_BSLASHintertext] = ACTIONS(1893), + [anon_sym_shortintertext] = ACTIONS(1893), + }, + [589] = { + [ts_builtin_sym_end] = ACTIONS(4751), + [sym_command_name] = ACTIONS(4753), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4753), + [anon_sym_BSLASHfi] = ACTIONS(4755), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_BSLASHpart] = ACTIONS(4753), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddpart] = ACTIONS(4753), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4751), + [anon_sym_BSLASHchapter] = ACTIONS(4753), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddchap] = ACTIONS(4753), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsection] = ACTIONS(4753), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddsec] = ACTIONS(4753), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubsection] = ACTIONS(4753), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4753), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHparagraph] = ACTIONS(4753), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4753), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4751), + [anon_sym_BSLASHitem] = ACTIONS(4753), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [sym_word] = ACTIONS(4753), + [sym_placeholder] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_STAR] = ACTIONS(4753), + [anon_sym_SLASH] = ACTIONS(4753), + [anon_sym_CARET] = ACTIONS(4753), + [anon_sym__] = ACTIONS(4753), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_COLON] = ACTIONS(4753), + [anon_sym_SQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), + [anon_sym_BSLASHbegin] = ACTIONS(4753), + [anon_sym_BSLASHusepackage] = ACTIONS(4753), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), + [anon_sym_BSLASHinclude] = ACTIONS(4753), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), + [anon_sym_BSLASHinput] = ACTIONS(4753), + [anon_sym_BSLASHsubfile] = ACTIONS(4753), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), + [anon_sym_BSLASHbibliography] = ACTIONS(4753), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), + [anon_sym_BSLASHincludesvg] = ACTIONS(4753), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), + [anon_sym_BSLASHimport] = ACTIONS(4753), + [anon_sym_BSLASHsubimport] = ACTIONS(4753), + [anon_sym_BSLASHinputfrom] = ACTIONS(4753), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), + [anon_sym_BSLASHincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHcaption] = ACTIONS(4753), + [anon_sym_BSLASHcite] = ACTIONS(4753), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCite] = ACTIONS(4753), + [anon_sym_BSLASHnocite] = ACTIONS(4753), + [anon_sym_BSLASHcitet] = ACTIONS(4753), + [anon_sym_BSLASHcitep] = ACTIONS(4753), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteauthor] = ACTIONS(4753), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitetitle] = ACTIONS(4753), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteyear] = ACTIONS(4753), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitedate] = ACTIONS(4753), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteurl] = ACTIONS(4753), + [anon_sym_BSLASHfullcite] = ACTIONS(4753), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), + [anon_sym_BSLASHcitealt] = ACTIONS(4753), + [anon_sym_BSLASHcitealp] = ACTIONS(4753), + [anon_sym_BSLASHcitetext] = ACTIONS(4753), + [anon_sym_BSLASHparencite] = ACTIONS(4753), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHParencite] = ACTIONS(4753), + [anon_sym_BSLASHfootcite] = ACTIONS(4753), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), + [anon_sym_BSLASHtextcite] = ACTIONS(4753), + [anon_sym_BSLASHTextcite] = ACTIONS(4753), + [anon_sym_BSLASHsmartcite] = ACTIONS(4753), + [anon_sym_BSLASHSmartcite] = ACTIONS(4753), + [anon_sym_BSLASHsupercite] = ACTIONS(4753), + [anon_sym_BSLASHautocite] = ACTIONS(4753), + [anon_sym_BSLASHAutocite] = ACTIONS(4753), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHvolcite] = ACTIONS(4753), + [anon_sym_BSLASHVolcite] = ACTIONS(4753), + [anon_sym_BSLASHpvolcite] = ACTIONS(4753), + [anon_sym_BSLASHPvolcite] = ACTIONS(4753), + [anon_sym_BSLASHfvolcite] = ACTIONS(4753), + [anon_sym_BSLASHftvolcite] = ACTIONS(4753), + [anon_sym_BSLASHsvolcite] = ACTIONS(4753), + [anon_sym_BSLASHSvolcite] = ACTIONS(4753), + [anon_sym_BSLASHtvolcite] = ACTIONS(4753), + [anon_sym_BSLASHTvolcite] = ACTIONS(4753), + [anon_sym_BSLASHavolcite] = ACTIONS(4753), + [anon_sym_BSLASHAvolcite] = ACTIONS(4753), + [anon_sym_BSLASHnotecite] = ACTIONS(4753), + [anon_sym_BSLASHNotecite] = ACTIONS(4753), + [anon_sym_BSLASHpnotecite] = ACTIONS(4753), + [anon_sym_BSLASHPnotecite] = ACTIONS(4753), + [anon_sym_BSLASHfnotecite] = ACTIONS(4753), + [anon_sym_BSLASHlabel] = ACTIONS(4753), + [anon_sym_BSLASHref] = ACTIONS(4753), + [anon_sym_BSLASHeqref] = ACTIONS(4753), + [anon_sym_BSLASHvref] = ACTIONS(4753), + [anon_sym_BSLASHVref] = ACTIONS(4753), + [anon_sym_BSLASHautoref] = ACTIONS(4753), + [anon_sym_BSLASHpageref] = ACTIONS(4753), + [anon_sym_BSLASHcref] = ACTIONS(4753), + [anon_sym_BSLASHCref] = ACTIONS(4753), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnameCref] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHlabelcref] = ACTIONS(4753), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCrefrange] = ACTIONS(4753), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnewlabel] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), + [anon_sym_BSLASHdef] = ACTIONS(4753), + [anon_sym_BSLASHlet] = ACTIONS(4753), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), + [anon_sym_BSLASHgls] = ACTIONS(4753), + [anon_sym_BSLASHGls] = ACTIONS(4753), + [anon_sym_BSLASHGLS] = ACTIONS(4753), + [anon_sym_BSLASHglspl] = ACTIONS(4753), + [anon_sym_BSLASHGlspl] = ACTIONS(4753), + [anon_sym_BSLASHGLSpl] = ACTIONS(4753), + [anon_sym_BSLASHglsdisp] = ACTIONS(4753), + [anon_sym_BSLASHglslink] = ACTIONS(4753), + [anon_sym_BSLASHglstext] = ACTIONS(4753), + [anon_sym_BSLASHGlstext] = ACTIONS(4753), + [anon_sym_BSLASHGLStext] = ACTIONS(4753), + [anon_sym_BSLASHglsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), + [anon_sym_BSLASHglsplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSplural] = ACTIONS(4753), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHglsname] = ACTIONS(4753), + [anon_sym_BSLASHGlsname] = ACTIONS(4753), + [anon_sym_BSLASHGLSname] = ACTIONS(4753), + [anon_sym_BSLASHglssymbol] = ACTIONS(4753), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), + [anon_sym_BSLASHglsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), + [anon_sym_BSLASHglsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), + [anon_sym_BSLASHglsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), + [anon_sym_BSLASHglsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), + [anon_sym_BSLASHglsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), + [anon_sym_BSLASHnewacronym] = ACTIONS(4753), + [anon_sym_BSLASHacrshort] = ACTIONS(4753), + [anon_sym_BSLASHAcrshort] = ACTIONS(4753), + [anon_sym_BSLASHACRshort] = ACTIONS(4753), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), + [anon_sym_BSLASHacrlong] = ACTIONS(4753), + [anon_sym_BSLASHAcrlong] = ACTIONS(4753), + [anon_sym_BSLASHACRlong] = ACTIONS(4753), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), + [anon_sym_BSLASHacrfull] = ACTIONS(4753), + [anon_sym_BSLASHAcrfull] = ACTIONS(4753), + [anon_sym_BSLASHACRfull] = ACTIONS(4753), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), + [anon_sym_BSLASHacs] = ACTIONS(4753), + [anon_sym_BSLASHAcs] = ACTIONS(4753), + [anon_sym_BSLASHacsp] = ACTIONS(4753), + [anon_sym_BSLASHAcsp] = ACTIONS(4753), + [anon_sym_BSLASHacl] = ACTIONS(4753), + [anon_sym_BSLASHAcl] = ACTIONS(4753), + [anon_sym_BSLASHaclp] = ACTIONS(4753), + [anon_sym_BSLASHAclp] = ACTIONS(4753), + [anon_sym_BSLASHacf] = ACTIONS(4753), + [anon_sym_BSLASHAcf] = ACTIONS(4753), + [anon_sym_BSLASHacfp] = ACTIONS(4753), + [anon_sym_BSLASHAcfp] = ACTIONS(4753), + [anon_sym_BSLASHac] = ACTIONS(4753), + [anon_sym_BSLASHAc] = ACTIONS(4753), + [anon_sym_BSLASHacp] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), + [anon_sym_BSLASHcolor] = ACTIONS(4753), + [anon_sym_BSLASHcolorbox] = ACTIONS(4753), + [anon_sym_BSLASHtextcolor] = ACTIONS(4753), + [anon_sym_BSLASHpagecolor] = ACTIONS(4753), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), + [anon_sym_BSLASHtext] = ACTIONS(4753), + [anon_sym_BSLASHintertext] = ACTIONS(4753), + [anon_sym_shortintertext] = ACTIONS(4753), + [sym__trivia_raw_fi] = ACTIONS(4757), + }, + [590] = { + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(633), + [aux_sym__section_repeat5] = STATE(633), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [591] = { + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(634), + [aux_sym__section_repeat6] = STATE(634), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [592] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(1911), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [593] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(1911), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1909), + [anon_sym_BSLASHpart] = ACTIONS(1911), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddpart] = ACTIONS(1911), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1909), + [anon_sym_BSLASHchapter] = ACTIONS(1911), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddchap] = ACTIONS(1911), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsection] = ACTIONS(1911), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHaddsec] = ACTIONS(1911), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1911), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1909), + [anon_sym_BSLASHparagraph] = ACTIONS(1911), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1911), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1909), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(1909), + [sym_word] = ACTIONS(1911), + [sym_placeholder] = ACTIONS(1909), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1911), + [anon_sym__] = ACTIONS(1911), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_COLON] = ACTIONS(1911), + [anon_sym_SQUOTE] = ACTIONS(1911), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1909), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1909), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1909), + [anon_sym_BSLASHbegin] = ACTIONS(1911), + [anon_sym_BSLASHusepackage] = ACTIONS(1911), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1911), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1911), + [anon_sym_BSLASHinclude] = ACTIONS(1911), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1911), + [anon_sym_BSLASHinput] = ACTIONS(1911), + [anon_sym_BSLASHsubfile] = ACTIONS(1911), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1911), + [anon_sym_BSLASHbibliography] = ACTIONS(1911), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1911), + [anon_sym_BSLASHincludesvg] = ACTIONS(1911), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1911), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1911), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1911), + [anon_sym_BSLASHimport] = ACTIONS(1911), + [anon_sym_BSLASHsubimport] = ACTIONS(1911), + [anon_sym_BSLASHinputfrom] = ACTIONS(1911), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1911), + [anon_sym_BSLASHincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1911), + [anon_sym_BSLASHcaption] = ACTIONS(1911), + [anon_sym_BSLASHcite] = ACTIONS(1911), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCite] = ACTIONS(1911), + [anon_sym_BSLASHnocite] = ACTIONS(1911), + [anon_sym_BSLASHcitet] = ACTIONS(1911), + [anon_sym_BSLASHcitep] = ACTIONS(1911), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteauthor] = ACTIONS(1911), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1911), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitetitle] = ACTIONS(1911), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteyear] = ACTIONS(1911), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1909), + [anon_sym_BSLASHcitedate] = ACTIONS(1911), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1909), + [anon_sym_BSLASHciteurl] = ACTIONS(1911), + [anon_sym_BSLASHfullcite] = ACTIONS(1911), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1911), + [anon_sym_BSLASHcitealt] = ACTIONS(1911), + [anon_sym_BSLASHcitealp] = ACTIONS(1911), + [anon_sym_BSLASHcitetext] = ACTIONS(1911), + [anon_sym_BSLASHparencite] = ACTIONS(1911), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHParencite] = ACTIONS(1911), + [anon_sym_BSLASHfootcite] = ACTIONS(1911), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1911), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1911), + [anon_sym_BSLASHtextcite] = ACTIONS(1911), + [anon_sym_BSLASHTextcite] = ACTIONS(1911), + [anon_sym_BSLASHsmartcite] = ACTIONS(1911), + [anon_sym_BSLASHSmartcite] = ACTIONS(1911), + [anon_sym_BSLASHsupercite] = ACTIONS(1911), + [anon_sym_BSLASHautocite] = ACTIONS(1911), + [anon_sym_BSLASHAutocite] = ACTIONS(1911), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1909), + [anon_sym_BSLASHvolcite] = ACTIONS(1911), + [anon_sym_BSLASHVolcite] = ACTIONS(1911), + [anon_sym_BSLASHpvolcite] = ACTIONS(1911), + [anon_sym_BSLASHPvolcite] = ACTIONS(1911), + [anon_sym_BSLASHfvolcite] = ACTIONS(1911), + [anon_sym_BSLASHftvolcite] = ACTIONS(1911), + [anon_sym_BSLASHsvolcite] = ACTIONS(1911), + [anon_sym_BSLASHSvolcite] = ACTIONS(1911), + [anon_sym_BSLASHtvolcite] = ACTIONS(1911), + [anon_sym_BSLASHTvolcite] = ACTIONS(1911), + [anon_sym_BSLASHavolcite] = ACTIONS(1911), + [anon_sym_BSLASHAvolcite] = ACTIONS(1911), + [anon_sym_BSLASHnotecite] = ACTIONS(1911), + [anon_sym_BSLASHNotecite] = ACTIONS(1911), + [anon_sym_BSLASHpnotecite] = ACTIONS(1911), + [anon_sym_BSLASHPnotecite] = ACTIONS(1911), + [anon_sym_BSLASHfnotecite] = ACTIONS(1911), + [anon_sym_BSLASHlabel] = ACTIONS(1911), + [anon_sym_BSLASHref] = ACTIONS(1911), + [anon_sym_BSLASHeqref] = ACTIONS(1911), + [anon_sym_BSLASHvref] = ACTIONS(1911), + [anon_sym_BSLASHVref] = ACTIONS(1911), + [anon_sym_BSLASHautoref] = ACTIONS(1911), + [anon_sym_BSLASHpageref] = ACTIONS(1911), + [anon_sym_BSLASHcref] = ACTIONS(1911), + [anon_sym_BSLASHCref] = ACTIONS(1911), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnameCref] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1911), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1911), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1911), + [anon_sym_BSLASHlabelcref] = ACTIONS(1911), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange] = ACTIONS(1911), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHCrefrange] = ACTIONS(1911), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1909), + [anon_sym_BSLASHnewlabel] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand] = ACTIONS(1911), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1911), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1911), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1909), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1911), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1909), + [anon_sym_BSLASHdef] = ACTIONS(1911), + [anon_sym_BSLASHlet] = ACTIONS(1911), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1911), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1911), + [anon_sym_BSLASHgls] = ACTIONS(1911), + [anon_sym_BSLASHGls] = ACTIONS(1911), + [anon_sym_BSLASHGLS] = ACTIONS(1911), + [anon_sym_BSLASHglspl] = ACTIONS(1911), + [anon_sym_BSLASHGlspl] = ACTIONS(1911), + [anon_sym_BSLASHGLSpl] = ACTIONS(1911), + [anon_sym_BSLASHglsdisp] = ACTIONS(1911), + [anon_sym_BSLASHglslink] = ACTIONS(1911), + [anon_sym_BSLASHglstext] = ACTIONS(1911), + [anon_sym_BSLASHGlstext] = ACTIONS(1911), + [anon_sym_BSLASHGLStext] = ACTIONS(1911), + [anon_sym_BSLASHglsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1911), + [anon_sym_BSLASHglsplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSplural] = ACTIONS(1911), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1911), + [anon_sym_BSLASHglsname] = ACTIONS(1911), + [anon_sym_BSLASHGlsname] = ACTIONS(1911), + [anon_sym_BSLASHGLSname] = ACTIONS(1911), + [anon_sym_BSLASHglssymbol] = ACTIONS(1911), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1911), + [anon_sym_BSLASHglsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1911), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1911), + [anon_sym_BSLASHglsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1911), + [anon_sym_BSLASHglsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1911), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1911), + [anon_sym_BSLASHglsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1911), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1911), + [anon_sym_BSLASHglsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1911), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1911), + [anon_sym_BSLASHnewacronym] = ACTIONS(1911), + [anon_sym_BSLASHacrshort] = ACTIONS(1911), + [anon_sym_BSLASHAcrshort] = ACTIONS(1911), + [anon_sym_BSLASHACRshort] = ACTIONS(1911), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1911), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1911), + [anon_sym_BSLASHacrlong] = ACTIONS(1911), + [anon_sym_BSLASHAcrlong] = ACTIONS(1911), + [anon_sym_BSLASHACRlong] = ACTIONS(1911), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1911), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1911), + [anon_sym_BSLASHacrfull] = ACTIONS(1911), + [anon_sym_BSLASHAcrfull] = ACTIONS(1911), + [anon_sym_BSLASHACRfull] = ACTIONS(1911), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1911), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1911), + [anon_sym_BSLASHacs] = ACTIONS(1911), + [anon_sym_BSLASHAcs] = ACTIONS(1911), + [anon_sym_BSLASHacsp] = ACTIONS(1911), + [anon_sym_BSLASHAcsp] = ACTIONS(1911), + [anon_sym_BSLASHacl] = ACTIONS(1911), + [anon_sym_BSLASHAcl] = ACTIONS(1911), + [anon_sym_BSLASHaclp] = ACTIONS(1911), + [anon_sym_BSLASHAclp] = ACTIONS(1911), + [anon_sym_BSLASHacf] = ACTIONS(1911), + [anon_sym_BSLASHAcf] = ACTIONS(1911), + [anon_sym_BSLASHacfp] = ACTIONS(1911), + [anon_sym_BSLASHAcfp] = ACTIONS(1911), + [anon_sym_BSLASHac] = ACTIONS(1911), + [anon_sym_BSLASHAc] = ACTIONS(1911), + [anon_sym_BSLASHacp] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1911), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1911), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1911), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1911), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1911), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1911), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1911), + [anon_sym_BSLASHcolor] = ACTIONS(1911), + [anon_sym_BSLASHcolorbox] = ACTIONS(1911), + [anon_sym_BSLASHtextcolor] = ACTIONS(1911), + [anon_sym_BSLASHpagecolor] = ACTIONS(1911), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1911), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1911), + [anon_sym_BSLASHtext] = ACTIONS(1911), + [anon_sym_BSLASHintertext] = ACTIONS(1911), + [anon_sym_shortintertext] = ACTIONS(1911), + }, + [594] = { + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(634), + [aux_sym__section_repeat6] = STATE(634), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHitem] = ACTIONS(1923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), + }, + [595] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(1923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(1923), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), + }, + [596] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(4491), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4491), + [anon_sym_LPAREN] = ACTIONS(4489), + [anon_sym_RPAREN] = ACTIONS(4489), + [anon_sym_LBRACK] = ACTIONS(4489), + [anon_sym_RBRACK] = ACTIONS(4489), + [anon_sym_COMMA] = ACTIONS(4489), + [anon_sym_EQ] = ACTIONS(4489), + [anon_sym_BSLASHpart] = ACTIONS(4491), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddpart] = ACTIONS(4491), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4489), + [anon_sym_BSLASHchapter] = ACTIONS(4491), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddchap] = ACTIONS(4491), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsection] = ACTIONS(4491), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHaddsec] = ACTIONS(4491), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubsection] = ACTIONS(4491), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4491), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4489), + [anon_sym_BSLASHparagraph] = ACTIONS(4491), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4489), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4491), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4489), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(4489), + [sym_word] = ACTIONS(4491), + [sym_placeholder] = ACTIONS(4489), + [anon_sym_PLUS] = ACTIONS(4491), + [anon_sym_DASH] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(4491), + [anon_sym_SLASH] = ACTIONS(4491), + [anon_sym_CARET] = ACTIONS(4491), + [anon_sym__] = ACTIONS(4491), + [anon_sym_LT] = ACTIONS(4491), + [anon_sym_GT] = ACTIONS(4491), + [anon_sym_BANG] = ACTIONS(4491), + [anon_sym_PIPE] = ACTIONS(4491), + [anon_sym_COLON] = ACTIONS(4491), + [anon_sym_SQUOTE] = ACTIONS(4491), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4489), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4489), + [anon_sym_DOLLAR] = ACTIONS(4491), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4489), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4489), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4489), + [anon_sym_BSLASHbegin] = ACTIONS(4491), + [anon_sym_BSLASHusepackage] = ACTIONS(4491), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4491), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4491), + [anon_sym_BSLASHinclude] = ACTIONS(4491), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4491), + [anon_sym_BSLASHinput] = ACTIONS(4491), + [anon_sym_BSLASHsubfile] = ACTIONS(4491), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4491), + [anon_sym_BSLASHbibliography] = ACTIONS(4491), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4491), + [anon_sym_BSLASHincludesvg] = ACTIONS(4491), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4491), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4491), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4491), + [anon_sym_BSLASHimport] = ACTIONS(4491), + [anon_sym_BSLASHsubimport] = ACTIONS(4491), + [anon_sym_BSLASHinputfrom] = ACTIONS(4491), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4491), + [anon_sym_BSLASHincludefrom] = ACTIONS(4491), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4491), + [anon_sym_BSLASHcaption] = ACTIONS(4491), + [anon_sym_BSLASHcite] = ACTIONS(4491), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCite] = ACTIONS(4491), + [anon_sym_BSLASHnocite] = ACTIONS(4491), + [anon_sym_BSLASHcitet] = ACTIONS(4491), + [anon_sym_BSLASHcitep] = ACTIONS(4491), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteauthor] = ACTIONS(4491), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4491), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitetitle] = ACTIONS(4491), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteyear] = ACTIONS(4491), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4489), + [anon_sym_BSLASHcitedate] = ACTIONS(4491), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4489), + [anon_sym_BSLASHciteurl] = ACTIONS(4491), + [anon_sym_BSLASHfullcite] = ACTIONS(4491), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4491), + [anon_sym_BSLASHcitealt] = ACTIONS(4491), + [anon_sym_BSLASHcitealp] = ACTIONS(4491), + [anon_sym_BSLASHcitetext] = ACTIONS(4491), + [anon_sym_BSLASHparencite] = ACTIONS(4491), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHParencite] = ACTIONS(4491), + [anon_sym_BSLASHfootcite] = ACTIONS(4491), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4491), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4491), + [anon_sym_BSLASHtextcite] = ACTIONS(4491), + [anon_sym_BSLASHTextcite] = ACTIONS(4491), + [anon_sym_BSLASHsmartcite] = ACTIONS(4491), + [anon_sym_BSLASHSmartcite] = ACTIONS(4491), + [anon_sym_BSLASHsupercite] = ACTIONS(4491), + [anon_sym_BSLASHautocite] = ACTIONS(4491), + [anon_sym_BSLASHAutocite] = ACTIONS(4491), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4489), + [anon_sym_BSLASHvolcite] = ACTIONS(4491), + [anon_sym_BSLASHVolcite] = ACTIONS(4491), + [anon_sym_BSLASHpvolcite] = ACTIONS(4491), + [anon_sym_BSLASHPvolcite] = ACTIONS(4491), + [anon_sym_BSLASHfvolcite] = ACTIONS(4491), + [anon_sym_BSLASHftvolcite] = ACTIONS(4491), + [anon_sym_BSLASHsvolcite] = ACTIONS(4491), + [anon_sym_BSLASHSvolcite] = ACTIONS(4491), + [anon_sym_BSLASHtvolcite] = ACTIONS(4491), + [anon_sym_BSLASHTvolcite] = ACTIONS(4491), + [anon_sym_BSLASHavolcite] = ACTIONS(4491), + [anon_sym_BSLASHAvolcite] = ACTIONS(4491), + [anon_sym_BSLASHnotecite] = ACTIONS(4491), + [anon_sym_BSLASHNotecite] = ACTIONS(4491), + [anon_sym_BSLASHpnotecite] = ACTIONS(4491), + [anon_sym_BSLASHPnotecite] = ACTIONS(4491), + [anon_sym_BSLASHfnotecite] = ACTIONS(4491), + [anon_sym_BSLASHlabel] = ACTIONS(4491), + [anon_sym_BSLASHref] = ACTIONS(4491), + [anon_sym_BSLASHeqref] = ACTIONS(4491), + [anon_sym_BSLASHvref] = ACTIONS(4491), + [anon_sym_BSLASHVref] = ACTIONS(4491), + [anon_sym_BSLASHautoref] = ACTIONS(4491), + [anon_sym_BSLASHpageref] = ACTIONS(4491), + [anon_sym_BSLASHcref] = ACTIONS(4491), + [anon_sym_BSLASHCref] = ACTIONS(4491), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4489), + [anon_sym_BSLASHnamecref] = ACTIONS(4491), + [anon_sym_BSLASHnameCref] = ACTIONS(4491), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4491), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4491), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4491), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4491), + [anon_sym_BSLASHlabelcref] = ACTIONS(4491), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4491), + [anon_sym_BSLASHcrefrange] = ACTIONS(4491), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4489), + [anon_sym_BSLASHCrefrange] = ACTIONS(4491), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4489), + [anon_sym_BSLASHnewlabel] = ACTIONS(4491), + [anon_sym_BSLASHnewcommand] = ACTIONS(4491), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4491), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4491), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4489), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4491), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4489), + [anon_sym_BSLASHdef] = ACTIONS(4491), + [anon_sym_BSLASHlet] = ACTIONS(4491), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4491), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4491), + [anon_sym_BSLASHgls] = ACTIONS(4491), + [anon_sym_BSLASHGls] = ACTIONS(4491), + [anon_sym_BSLASHGLS] = ACTIONS(4491), + [anon_sym_BSLASHglspl] = ACTIONS(4491), + [anon_sym_BSLASHGlspl] = ACTIONS(4491), + [anon_sym_BSLASHGLSpl] = ACTIONS(4491), + [anon_sym_BSLASHglsdisp] = ACTIONS(4491), + [anon_sym_BSLASHglslink] = ACTIONS(4491), + [anon_sym_BSLASHglstext] = ACTIONS(4491), + [anon_sym_BSLASHGlstext] = ACTIONS(4491), + [anon_sym_BSLASHGLStext] = ACTIONS(4491), + [anon_sym_BSLASHglsfirst] = ACTIONS(4491), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4491), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4491), + [anon_sym_BSLASHglsplural] = ACTIONS(4491), + [anon_sym_BSLASHGlsplural] = ACTIONS(4491), + [anon_sym_BSLASHGLSplural] = ACTIONS(4491), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4491), + [anon_sym_BSLASHglsname] = ACTIONS(4491), + [anon_sym_BSLASHGlsname] = ACTIONS(4491), + [anon_sym_BSLASHGLSname] = ACTIONS(4491), + [anon_sym_BSLASHglssymbol] = ACTIONS(4491), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4491), + [anon_sym_BSLASHglsdesc] = ACTIONS(4491), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4491), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4491), + [anon_sym_BSLASHglsuseri] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4491), + [anon_sym_BSLASHglsuserii] = ACTIONS(4491), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4491), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4491), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4491), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4491), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4491), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4491), + [anon_sym_BSLASHglsuserv] = ACTIONS(4491), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4491), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4491), + [anon_sym_BSLASHglsuservi] = ACTIONS(4491), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4491), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4491), + [anon_sym_BSLASHnewacronym] = ACTIONS(4491), + [anon_sym_BSLASHacrshort] = ACTIONS(4491), + [anon_sym_BSLASHAcrshort] = ACTIONS(4491), + [anon_sym_BSLASHACRshort] = ACTIONS(4491), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4491), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4491), + [anon_sym_BSLASHacrlong] = ACTIONS(4491), + [anon_sym_BSLASHAcrlong] = ACTIONS(4491), + [anon_sym_BSLASHACRlong] = ACTIONS(4491), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4491), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4491), + [anon_sym_BSLASHacrfull] = ACTIONS(4491), + [anon_sym_BSLASHAcrfull] = ACTIONS(4491), + [anon_sym_BSLASHACRfull] = ACTIONS(4491), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4491), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4491), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4491), + [anon_sym_BSLASHacs] = ACTIONS(4491), + [anon_sym_BSLASHAcs] = ACTIONS(4491), + [anon_sym_BSLASHacsp] = ACTIONS(4491), + [anon_sym_BSLASHAcsp] = ACTIONS(4491), + [anon_sym_BSLASHacl] = ACTIONS(4491), + [anon_sym_BSLASHAcl] = ACTIONS(4491), + [anon_sym_BSLASHaclp] = ACTIONS(4491), + [anon_sym_BSLASHAclp] = ACTIONS(4491), + [anon_sym_BSLASHacf] = ACTIONS(4491), + [anon_sym_BSLASHAcf] = ACTIONS(4491), + [anon_sym_BSLASHacfp] = ACTIONS(4491), + [anon_sym_BSLASHAcfp] = ACTIONS(4491), + [anon_sym_BSLASHac] = ACTIONS(4491), + [anon_sym_BSLASHAc] = ACTIONS(4491), + [anon_sym_BSLASHacp] = ACTIONS(4491), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4491), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4491), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4491), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4491), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4491), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4491), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4491), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4491), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4491), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4491), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4491), + [anon_sym_BSLASHcolor] = ACTIONS(4491), + [anon_sym_BSLASHcolorbox] = ACTIONS(4491), + [anon_sym_BSLASHtextcolor] = ACTIONS(4491), + [anon_sym_BSLASHpagecolor] = ACTIONS(4491), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4491), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4491), + [anon_sym_BSLASHtext] = ACTIONS(4491), + [anon_sym_BSLASHintertext] = ACTIONS(4491), + [anon_sym_shortintertext] = ACTIONS(4491), + }, + [597] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(4487), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4485), + [anon_sym_RPAREN] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_BSLASHpart] = ACTIONS(4487), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddpart] = ACTIONS(4487), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHchapter] = ACTIONS(4487), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddchap] = ACTIONS(4487), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsection] = ACTIONS(4487), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddsec] = ACTIONS(4487), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHparagraph] = ACTIONS(4487), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4487), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(4485), + [sym_word] = ACTIONS(4487), + [sym_placeholder] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4487), + [anon_sym_STAR] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym__] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4487), + [anon_sym_PIPE] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [anon_sym_SQUOTE] = ACTIONS(4487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), + [anon_sym_DOLLAR] = ACTIONS(4487), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4485), + [anon_sym_BSLASHbegin] = ACTIONS(4487), + [anon_sym_BSLASHusepackage] = ACTIONS(4487), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), + [anon_sym_BSLASHinclude] = ACTIONS(4487), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), + [anon_sym_BSLASHinput] = ACTIONS(4487), + [anon_sym_BSLASHsubfile] = ACTIONS(4487), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), + [anon_sym_BSLASHbibliography] = ACTIONS(4487), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), + [anon_sym_BSLASHincludesvg] = ACTIONS(4487), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), + [anon_sym_BSLASHimport] = ACTIONS(4487), + [anon_sym_BSLASHsubimport] = ACTIONS(4487), + [anon_sym_BSLASHinputfrom] = ACTIONS(4487), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), + [anon_sym_BSLASHincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHcaption] = ACTIONS(4487), + [anon_sym_BSLASHcite] = ACTIONS(4487), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCite] = ACTIONS(4487), + [anon_sym_BSLASHnocite] = ACTIONS(4487), + [anon_sym_BSLASHcitet] = ACTIONS(4487), + [anon_sym_BSLASHcitep] = ACTIONS(4487), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteauthor] = ACTIONS(4487), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitetitle] = ACTIONS(4487), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteyear] = ACTIONS(4487), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitedate] = ACTIONS(4487), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteurl] = ACTIONS(4487), + [anon_sym_BSLASHfullcite] = ACTIONS(4487), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), + [anon_sym_BSLASHcitealt] = ACTIONS(4487), + [anon_sym_BSLASHcitealp] = ACTIONS(4487), + [anon_sym_BSLASHcitetext] = ACTIONS(4487), + [anon_sym_BSLASHparencite] = ACTIONS(4487), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHParencite] = ACTIONS(4487), + [anon_sym_BSLASHfootcite] = ACTIONS(4487), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), + [anon_sym_BSLASHtextcite] = ACTIONS(4487), + [anon_sym_BSLASHTextcite] = ACTIONS(4487), + [anon_sym_BSLASHsmartcite] = ACTIONS(4487), + [anon_sym_BSLASHSmartcite] = ACTIONS(4487), + [anon_sym_BSLASHsupercite] = ACTIONS(4487), + [anon_sym_BSLASHautocite] = ACTIONS(4487), + [anon_sym_BSLASHAutocite] = ACTIONS(4487), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHvolcite] = ACTIONS(4487), + [anon_sym_BSLASHVolcite] = ACTIONS(4487), + [anon_sym_BSLASHpvolcite] = ACTIONS(4487), + [anon_sym_BSLASHPvolcite] = ACTIONS(4487), + [anon_sym_BSLASHfvolcite] = ACTIONS(4487), + [anon_sym_BSLASHftvolcite] = ACTIONS(4487), + [anon_sym_BSLASHsvolcite] = ACTIONS(4487), + [anon_sym_BSLASHSvolcite] = ACTIONS(4487), + [anon_sym_BSLASHtvolcite] = ACTIONS(4487), + [anon_sym_BSLASHTvolcite] = ACTIONS(4487), + [anon_sym_BSLASHavolcite] = ACTIONS(4487), + [anon_sym_BSLASHAvolcite] = ACTIONS(4487), + [anon_sym_BSLASHnotecite] = ACTIONS(4487), + [anon_sym_BSLASHNotecite] = ACTIONS(4487), + [anon_sym_BSLASHpnotecite] = ACTIONS(4487), + [anon_sym_BSLASHPnotecite] = ACTIONS(4487), + [anon_sym_BSLASHfnotecite] = ACTIONS(4487), + [anon_sym_BSLASHlabel] = ACTIONS(4487), + [anon_sym_BSLASHref] = ACTIONS(4487), + [anon_sym_BSLASHeqref] = ACTIONS(4487), + [anon_sym_BSLASHvref] = ACTIONS(4487), + [anon_sym_BSLASHVref] = ACTIONS(4487), + [anon_sym_BSLASHautoref] = ACTIONS(4487), + [anon_sym_BSLASHpageref] = ACTIONS(4487), + [anon_sym_BSLASHcref] = ACTIONS(4487), + [anon_sym_BSLASHCref] = ACTIONS(4487), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnameCref] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHlabelcref] = ACTIONS(4487), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCrefrange] = ACTIONS(4487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnewlabel] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), + [anon_sym_BSLASHdef] = ACTIONS(4487), + [anon_sym_BSLASHlet] = ACTIONS(4487), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), + [anon_sym_BSLASHgls] = ACTIONS(4487), + [anon_sym_BSLASHGls] = ACTIONS(4487), + [anon_sym_BSLASHGLS] = ACTIONS(4487), + [anon_sym_BSLASHglspl] = ACTIONS(4487), + [anon_sym_BSLASHGlspl] = ACTIONS(4487), + [anon_sym_BSLASHGLSpl] = ACTIONS(4487), + [anon_sym_BSLASHglsdisp] = ACTIONS(4487), + [anon_sym_BSLASHglslink] = ACTIONS(4487), + [anon_sym_BSLASHglstext] = ACTIONS(4487), + [anon_sym_BSLASHGlstext] = ACTIONS(4487), + [anon_sym_BSLASHGLStext] = ACTIONS(4487), + [anon_sym_BSLASHglsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), + [anon_sym_BSLASHglsplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSplural] = ACTIONS(4487), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHglsname] = ACTIONS(4487), + [anon_sym_BSLASHGlsname] = ACTIONS(4487), + [anon_sym_BSLASHGLSname] = ACTIONS(4487), + [anon_sym_BSLASHglssymbol] = ACTIONS(4487), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), + [anon_sym_BSLASHglsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), + [anon_sym_BSLASHglsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), + [anon_sym_BSLASHglsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), + [anon_sym_BSLASHglsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), + [anon_sym_BSLASHglsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), + [anon_sym_BSLASHnewacronym] = ACTIONS(4487), + [anon_sym_BSLASHacrshort] = ACTIONS(4487), + [anon_sym_BSLASHAcrshort] = ACTIONS(4487), + [anon_sym_BSLASHACRshort] = ACTIONS(4487), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), + [anon_sym_BSLASHacrlong] = ACTIONS(4487), + [anon_sym_BSLASHAcrlong] = ACTIONS(4487), + [anon_sym_BSLASHACRlong] = ACTIONS(4487), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), + [anon_sym_BSLASHacrfull] = ACTIONS(4487), + [anon_sym_BSLASHAcrfull] = ACTIONS(4487), + [anon_sym_BSLASHACRfull] = ACTIONS(4487), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), + [anon_sym_BSLASHacs] = ACTIONS(4487), + [anon_sym_BSLASHAcs] = ACTIONS(4487), + [anon_sym_BSLASHacsp] = ACTIONS(4487), + [anon_sym_BSLASHAcsp] = ACTIONS(4487), + [anon_sym_BSLASHacl] = ACTIONS(4487), + [anon_sym_BSLASHAcl] = ACTIONS(4487), + [anon_sym_BSLASHaclp] = ACTIONS(4487), + [anon_sym_BSLASHAclp] = ACTIONS(4487), + [anon_sym_BSLASHacf] = ACTIONS(4487), + [anon_sym_BSLASHAcf] = ACTIONS(4487), + [anon_sym_BSLASHacfp] = ACTIONS(4487), + [anon_sym_BSLASHAcfp] = ACTIONS(4487), + [anon_sym_BSLASHac] = ACTIONS(4487), + [anon_sym_BSLASHAc] = ACTIONS(4487), + [anon_sym_BSLASHacp] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), + [anon_sym_BSLASHcolor] = ACTIONS(4487), + [anon_sym_BSLASHcolorbox] = ACTIONS(4487), + [anon_sym_BSLASHtextcolor] = ACTIONS(4487), + [anon_sym_BSLASHpagecolor] = ACTIONS(4487), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), + [anon_sym_BSLASHtext] = ACTIONS(4487), + [anon_sym_BSLASHintertext] = ACTIONS(4487), + [anon_sym_shortintertext] = ACTIONS(4487), + }, + [598] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(4487), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4487), + [anon_sym_LPAREN] = ACTIONS(4485), + [anon_sym_RPAREN] = ACTIONS(4485), + [anon_sym_LBRACK] = ACTIONS(4485), + [anon_sym_RBRACK] = ACTIONS(4485), + [anon_sym_COMMA] = ACTIONS(4485), + [anon_sym_EQ] = ACTIONS(4485), + [anon_sym_BSLASHpart] = ACTIONS(4487), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddpart] = ACTIONS(4487), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4485), + [anon_sym_BSLASHchapter] = ACTIONS(4487), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddchap] = ACTIONS(4487), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsection] = ACTIONS(4487), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHaddsec] = ACTIONS(4487), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4487), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4485), + [anon_sym_BSLASHparagraph] = ACTIONS(4487), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4485), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(4487), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4485), + [anon_sym_LBRACE] = ACTIONS(4485), + [sym_word] = ACTIONS(4487), + [sym_placeholder] = ACTIONS(4485), + [anon_sym_PLUS] = ACTIONS(4487), + [anon_sym_DASH] = ACTIONS(4487), + [anon_sym_STAR] = ACTIONS(4487), + [anon_sym_SLASH] = ACTIONS(4487), + [anon_sym_CARET] = ACTIONS(4487), + [anon_sym__] = ACTIONS(4487), + [anon_sym_LT] = ACTIONS(4487), + [anon_sym_GT] = ACTIONS(4487), + [anon_sym_BANG] = ACTIONS(4487), + [anon_sym_PIPE] = ACTIONS(4487), + [anon_sym_COLON] = ACTIONS(4487), + [anon_sym_SQUOTE] = ACTIONS(4487), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4485), + [anon_sym_DOLLAR] = ACTIONS(4487), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4485), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4485), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4485), + [anon_sym_BSLASHbegin] = ACTIONS(4487), + [anon_sym_BSLASHusepackage] = ACTIONS(4487), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4487), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4487), + [anon_sym_BSLASHinclude] = ACTIONS(4487), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4487), + [anon_sym_BSLASHinput] = ACTIONS(4487), + [anon_sym_BSLASHsubfile] = ACTIONS(4487), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4487), + [anon_sym_BSLASHbibliography] = ACTIONS(4487), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4487), + [anon_sym_BSLASHincludesvg] = ACTIONS(4487), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4487), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4487), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4487), + [anon_sym_BSLASHimport] = ACTIONS(4487), + [anon_sym_BSLASHsubimport] = ACTIONS(4487), + [anon_sym_BSLASHinputfrom] = ACTIONS(4487), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4487), + [anon_sym_BSLASHincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4487), + [anon_sym_BSLASHcaption] = ACTIONS(4487), + [anon_sym_BSLASHcite] = ACTIONS(4487), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCite] = ACTIONS(4487), + [anon_sym_BSLASHnocite] = ACTIONS(4487), + [anon_sym_BSLASHcitet] = ACTIONS(4487), + [anon_sym_BSLASHcitep] = ACTIONS(4487), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteauthor] = ACTIONS(4487), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4487), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitetitle] = ACTIONS(4487), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteyear] = ACTIONS(4487), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4485), + [anon_sym_BSLASHcitedate] = ACTIONS(4487), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4485), + [anon_sym_BSLASHciteurl] = ACTIONS(4487), + [anon_sym_BSLASHfullcite] = ACTIONS(4487), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4487), + [anon_sym_BSLASHcitealt] = ACTIONS(4487), + [anon_sym_BSLASHcitealp] = ACTIONS(4487), + [anon_sym_BSLASHcitetext] = ACTIONS(4487), + [anon_sym_BSLASHparencite] = ACTIONS(4487), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHParencite] = ACTIONS(4487), + [anon_sym_BSLASHfootcite] = ACTIONS(4487), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4487), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4487), + [anon_sym_BSLASHtextcite] = ACTIONS(4487), + [anon_sym_BSLASHTextcite] = ACTIONS(4487), + [anon_sym_BSLASHsmartcite] = ACTIONS(4487), + [anon_sym_BSLASHSmartcite] = ACTIONS(4487), + [anon_sym_BSLASHsupercite] = ACTIONS(4487), + [anon_sym_BSLASHautocite] = ACTIONS(4487), + [anon_sym_BSLASHAutocite] = ACTIONS(4487), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4485), + [anon_sym_BSLASHvolcite] = ACTIONS(4487), + [anon_sym_BSLASHVolcite] = ACTIONS(4487), + [anon_sym_BSLASHpvolcite] = ACTIONS(4487), + [anon_sym_BSLASHPvolcite] = ACTIONS(4487), + [anon_sym_BSLASHfvolcite] = ACTIONS(4487), + [anon_sym_BSLASHftvolcite] = ACTIONS(4487), + [anon_sym_BSLASHsvolcite] = ACTIONS(4487), + [anon_sym_BSLASHSvolcite] = ACTIONS(4487), + [anon_sym_BSLASHtvolcite] = ACTIONS(4487), + [anon_sym_BSLASHTvolcite] = ACTIONS(4487), + [anon_sym_BSLASHavolcite] = ACTIONS(4487), + [anon_sym_BSLASHAvolcite] = ACTIONS(4487), + [anon_sym_BSLASHnotecite] = ACTIONS(4487), + [anon_sym_BSLASHNotecite] = ACTIONS(4487), + [anon_sym_BSLASHpnotecite] = ACTIONS(4487), + [anon_sym_BSLASHPnotecite] = ACTIONS(4487), + [anon_sym_BSLASHfnotecite] = ACTIONS(4487), + [anon_sym_BSLASHlabel] = ACTIONS(4487), + [anon_sym_BSLASHref] = ACTIONS(4487), + [anon_sym_BSLASHeqref] = ACTIONS(4487), + [anon_sym_BSLASHvref] = ACTIONS(4487), + [anon_sym_BSLASHVref] = ACTIONS(4487), + [anon_sym_BSLASHautoref] = ACTIONS(4487), + [anon_sym_BSLASHpageref] = ACTIONS(4487), + [anon_sym_BSLASHcref] = ACTIONS(4487), + [anon_sym_BSLASHCref] = ACTIONS(4487), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnameCref] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4487), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4487), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4487), + [anon_sym_BSLASHlabelcref] = ACTIONS(4487), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange] = ACTIONS(4487), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHCrefrange] = ACTIONS(4487), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4485), + [anon_sym_BSLASHnewlabel] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand] = ACTIONS(4487), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4487), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4487), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4485), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4487), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4485), + [anon_sym_BSLASHdef] = ACTIONS(4487), + [anon_sym_BSLASHlet] = ACTIONS(4487), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4487), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4487), + [anon_sym_BSLASHgls] = ACTIONS(4487), + [anon_sym_BSLASHGls] = ACTIONS(4487), + [anon_sym_BSLASHGLS] = ACTIONS(4487), + [anon_sym_BSLASHglspl] = ACTIONS(4487), + [anon_sym_BSLASHGlspl] = ACTIONS(4487), + [anon_sym_BSLASHGLSpl] = ACTIONS(4487), + [anon_sym_BSLASHglsdisp] = ACTIONS(4487), + [anon_sym_BSLASHglslink] = ACTIONS(4487), + [anon_sym_BSLASHglstext] = ACTIONS(4487), + [anon_sym_BSLASHGlstext] = ACTIONS(4487), + [anon_sym_BSLASHGLStext] = ACTIONS(4487), + [anon_sym_BSLASHglsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4487), + [anon_sym_BSLASHglsplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSplural] = ACTIONS(4487), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4487), + [anon_sym_BSLASHglsname] = ACTIONS(4487), + [anon_sym_BSLASHGlsname] = ACTIONS(4487), + [anon_sym_BSLASHGLSname] = ACTIONS(4487), + [anon_sym_BSLASHglssymbol] = ACTIONS(4487), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4487), + [anon_sym_BSLASHglsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4487), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4487), + [anon_sym_BSLASHglsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4487), + [anon_sym_BSLASHglsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4487), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4487), + [anon_sym_BSLASHglsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4487), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4487), + [anon_sym_BSLASHglsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4487), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4487), + [anon_sym_BSLASHnewacronym] = ACTIONS(4487), + [anon_sym_BSLASHacrshort] = ACTIONS(4487), + [anon_sym_BSLASHAcrshort] = ACTIONS(4487), + [anon_sym_BSLASHACRshort] = ACTIONS(4487), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4487), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4487), + [anon_sym_BSLASHacrlong] = ACTIONS(4487), + [anon_sym_BSLASHAcrlong] = ACTIONS(4487), + [anon_sym_BSLASHACRlong] = ACTIONS(4487), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4487), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4487), + [anon_sym_BSLASHacrfull] = ACTIONS(4487), + [anon_sym_BSLASHAcrfull] = ACTIONS(4487), + [anon_sym_BSLASHACRfull] = ACTIONS(4487), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4487), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4487), + [anon_sym_BSLASHacs] = ACTIONS(4487), + [anon_sym_BSLASHAcs] = ACTIONS(4487), + [anon_sym_BSLASHacsp] = ACTIONS(4487), + [anon_sym_BSLASHAcsp] = ACTIONS(4487), + [anon_sym_BSLASHacl] = ACTIONS(4487), + [anon_sym_BSLASHAcl] = ACTIONS(4487), + [anon_sym_BSLASHaclp] = ACTIONS(4487), + [anon_sym_BSLASHAclp] = ACTIONS(4487), + [anon_sym_BSLASHacf] = ACTIONS(4487), + [anon_sym_BSLASHAcf] = ACTIONS(4487), + [anon_sym_BSLASHacfp] = ACTIONS(4487), + [anon_sym_BSLASHAcfp] = ACTIONS(4487), + [anon_sym_BSLASHac] = ACTIONS(4487), + [anon_sym_BSLASHAc] = ACTIONS(4487), + [anon_sym_BSLASHacp] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4487), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4487), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4487), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4487), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4487), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4487), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4487), + [anon_sym_BSLASHcolor] = ACTIONS(4487), + [anon_sym_BSLASHcolorbox] = ACTIONS(4487), + [anon_sym_BSLASHtextcolor] = ACTIONS(4487), + [anon_sym_BSLASHpagecolor] = ACTIONS(4487), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4487), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4487), + [anon_sym_BSLASHtext] = ACTIONS(4487), + [anon_sym_BSLASHintertext] = ACTIONS(4487), + [anon_sym_shortintertext] = ACTIONS(4487), + }, + [599] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(4483), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), + }, + [600] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(4483), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(4483), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), + }, + [601] = { + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(634), + [aux_sym__section_repeat6] = STATE(634), + [sym_command_name] = ACTIONS(4483), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4483), + [anon_sym_LPAREN] = ACTIONS(4481), + [anon_sym_RPAREN] = ACTIONS(4481), + [anon_sym_LBRACK] = ACTIONS(4481), + [anon_sym_RBRACK] = ACTIONS(4481), + [anon_sym_COMMA] = ACTIONS(4481), + [anon_sym_EQ] = ACTIONS(4481), + [anon_sym_BSLASHpart] = ACTIONS(4483), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddpart] = ACTIONS(4483), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4481), + [anon_sym_BSLASHchapter] = ACTIONS(4483), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddchap] = ACTIONS(4483), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsection] = ACTIONS(4483), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHaddsec] = ACTIONS(4483), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4483), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4481), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4483), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4481), + [anon_sym_BSLASHitem] = ACTIONS(4483), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4481), + [anon_sym_LBRACE] = ACTIONS(4481), + [sym_word] = ACTIONS(4483), + [sym_placeholder] = ACTIONS(4481), + [anon_sym_PLUS] = ACTIONS(4483), + [anon_sym_DASH] = ACTIONS(4483), + [anon_sym_STAR] = ACTIONS(4483), + [anon_sym_SLASH] = ACTIONS(4483), + [anon_sym_CARET] = ACTIONS(4483), + [anon_sym__] = ACTIONS(4483), + [anon_sym_LT] = ACTIONS(4483), + [anon_sym_GT] = ACTIONS(4483), + [anon_sym_BANG] = ACTIONS(4483), + [anon_sym_PIPE] = ACTIONS(4483), + [anon_sym_COLON] = ACTIONS(4483), + [anon_sym_SQUOTE] = ACTIONS(4483), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4481), + [anon_sym_DOLLAR] = ACTIONS(4483), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4481), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4481), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4481), + [anon_sym_BSLASHbegin] = ACTIONS(4483), + [anon_sym_BSLASHusepackage] = ACTIONS(4483), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4483), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4483), + [anon_sym_BSLASHinclude] = ACTIONS(4483), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4483), + [anon_sym_BSLASHinput] = ACTIONS(4483), + [anon_sym_BSLASHsubfile] = ACTIONS(4483), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4483), + [anon_sym_BSLASHbibliography] = ACTIONS(4483), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4483), + [anon_sym_BSLASHincludesvg] = ACTIONS(4483), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4483), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4483), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4483), + [anon_sym_BSLASHimport] = ACTIONS(4483), + [anon_sym_BSLASHsubimport] = ACTIONS(4483), + [anon_sym_BSLASHinputfrom] = ACTIONS(4483), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4483), + [anon_sym_BSLASHincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4483), + [anon_sym_BSLASHcaption] = ACTIONS(4483), + [anon_sym_BSLASHcite] = ACTIONS(4483), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCite] = ACTIONS(4483), + [anon_sym_BSLASHnocite] = ACTIONS(4483), + [anon_sym_BSLASHcitet] = ACTIONS(4483), + [anon_sym_BSLASHcitep] = ACTIONS(4483), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteauthor] = ACTIONS(4483), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4483), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitetitle] = ACTIONS(4483), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteyear] = ACTIONS(4483), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4481), + [anon_sym_BSLASHcitedate] = ACTIONS(4483), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4481), + [anon_sym_BSLASHciteurl] = ACTIONS(4483), + [anon_sym_BSLASHfullcite] = ACTIONS(4483), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4483), + [anon_sym_BSLASHcitealt] = ACTIONS(4483), + [anon_sym_BSLASHcitealp] = ACTIONS(4483), + [anon_sym_BSLASHcitetext] = ACTIONS(4483), + [anon_sym_BSLASHparencite] = ACTIONS(4483), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHParencite] = ACTIONS(4483), + [anon_sym_BSLASHfootcite] = ACTIONS(4483), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4483), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4483), + [anon_sym_BSLASHtextcite] = ACTIONS(4483), + [anon_sym_BSLASHTextcite] = ACTIONS(4483), + [anon_sym_BSLASHsmartcite] = ACTIONS(4483), + [anon_sym_BSLASHSmartcite] = ACTIONS(4483), + [anon_sym_BSLASHsupercite] = ACTIONS(4483), + [anon_sym_BSLASHautocite] = ACTIONS(4483), + [anon_sym_BSLASHAutocite] = ACTIONS(4483), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4481), + [anon_sym_BSLASHvolcite] = ACTIONS(4483), + [anon_sym_BSLASHVolcite] = ACTIONS(4483), + [anon_sym_BSLASHpvolcite] = ACTIONS(4483), + [anon_sym_BSLASHPvolcite] = ACTIONS(4483), + [anon_sym_BSLASHfvolcite] = ACTIONS(4483), + [anon_sym_BSLASHftvolcite] = ACTIONS(4483), + [anon_sym_BSLASHsvolcite] = ACTIONS(4483), + [anon_sym_BSLASHSvolcite] = ACTIONS(4483), + [anon_sym_BSLASHtvolcite] = ACTIONS(4483), + [anon_sym_BSLASHTvolcite] = ACTIONS(4483), + [anon_sym_BSLASHavolcite] = ACTIONS(4483), + [anon_sym_BSLASHAvolcite] = ACTIONS(4483), + [anon_sym_BSLASHnotecite] = ACTIONS(4483), + [anon_sym_BSLASHNotecite] = ACTIONS(4483), + [anon_sym_BSLASHpnotecite] = ACTIONS(4483), + [anon_sym_BSLASHPnotecite] = ACTIONS(4483), + [anon_sym_BSLASHfnotecite] = ACTIONS(4483), + [anon_sym_BSLASHlabel] = ACTIONS(4483), + [anon_sym_BSLASHref] = ACTIONS(4483), + [anon_sym_BSLASHeqref] = ACTIONS(4483), + [anon_sym_BSLASHvref] = ACTIONS(4483), + [anon_sym_BSLASHVref] = ACTIONS(4483), + [anon_sym_BSLASHautoref] = ACTIONS(4483), + [anon_sym_BSLASHpageref] = ACTIONS(4483), + [anon_sym_BSLASHcref] = ACTIONS(4483), + [anon_sym_BSLASHCref] = ACTIONS(4483), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnameCref] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4483), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4483), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4483), + [anon_sym_BSLASHlabelcref] = ACTIONS(4483), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange] = ACTIONS(4483), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHCrefrange] = ACTIONS(4483), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4481), + [anon_sym_BSLASHnewlabel] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand] = ACTIONS(4483), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4483), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4483), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4481), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4483), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4481), + [anon_sym_BSLASHdef] = ACTIONS(4483), + [anon_sym_BSLASHlet] = ACTIONS(4483), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4483), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4483), + [anon_sym_BSLASHgls] = ACTIONS(4483), + [anon_sym_BSLASHGls] = ACTIONS(4483), + [anon_sym_BSLASHGLS] = ACTIONS(4483), + [anon_sym_BSLASHglspl] = ACTIONS(4483), + [anon_sym_BSLASHGlspl] = ACTIONS(4483), + [anon_sym_BSLASHGLSpl] = ACTIONS(4483), + [anon_sym_BSLASHglsdisp] = ACTIONS(4483), + [anon_sym_BSLASHglslink] = ACTIONS(4483), + [anon_sym_BSLASHglstext] = ACTIONS(4483), + [anon_sym_BSLASHGlstext] = ACTIONS(4483), + [anon_sym_BSLASHGLStext] = ACTIONS(4483), + [anon_sym_BSLASHglsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4483), + [anon_sym_BSLASHglsplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSplural] = ACTIONS(4483), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4483), + [anon_sym_BSLASHglsname] = ACTIONS(4483), + [anon_sym_BSLASHGlsname] = ACTIONS(4483), + [anon_sym_BSLASHGLSname] = ACTIONS(4483), + [anon_sym_BSLASHglssymbol] = ACTIONS(4483), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4483), + [anon_sym_BSLASHglsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4483), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4483), + [anon_sym_BSLASHglsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4483), + [anon_sym_BSLASHglsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4483), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4483), + [anon_sym_BSLASHglsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4483), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4483), + [anon_sym_BSLASHglsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4483), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4483), + [anon_sym_BSLASHnewacronym] = ACTIONS(4483), + [anon_sym_BSLASHacrshort] = ACTIONS(4483), + [anon_sym_BSLASHAcrshort] = ACTIONS(4483), + [anon_sym_BSLASHACRshort] = ACTIONS(4483), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4483), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4483), + [anon_sym_BSLASHacrlong] = ACTIONS(4483), + [anon_sym_BSLASHAcrlong] = ACTIONS(4483), + [anon_sym_BSLASHACRlong] = ACTIONS(4483), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4483), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4483), + [anon_sym_BSLASHacrfull] = ACTIONS(4483), + [anon_sym_BSLASHAcrfull] = ACTIONS(4483), + [anon_sym_BSLASHACRfull] = ACTIONS(4483), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4483), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4483), + [anon_sym_BSLASHacs] = ACTIONS(4483), + [anon_sym_BSLASHAcs] = ACTIONS(4483), + [anon_sym_BSLASHacsp] = ACTIONS(4483), + [anon_sym_BSLASHAcsp] = ACTIONS(4483), + [anon_sym_BSLASHacl] = ACTIONS(4483), + [anon_sym_BSLASHAcl] = ACTIONS(4483), + [anon_sym_BSLASHaclp] = ACTIONS(4483), + [anon_sym_BSLASHAclp] = ACTIONS(4483), + [anon_sym_BSLASHacf] = ACTIONS(4483), + [anon_sym_BSLASHAcf] = ACTIONS(4483), + [anon_sym_BSLASHacfp] = ACTIONS(4483), + [anon_sym_BSLASHAcfp] = ACTIONS(4483), + [anon_sym_BSLASHac] = ACTIONS(4483), + [anon_sym_BSLASHAc] = ACTIONS(4483), + [anon_sym_BSLASHacp] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4483), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4483), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4483), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4483), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4483), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4483), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4483), + [anon_sym_BSLASHcolor] = ACTIONS(4483), + [anon_sym_BSLASHcolorbox] = ACTIONS(4483), + [anon_sym_BSLASHtextcolor] = ACTIONS(4483), + [anon_sym_BSLASHpagecolor] = ACTIONS(4483), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4483), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4483), + [anon_sym_BSLASHtext] = ACTIONS(4483), + [anon_sym_BSLASHintertext] = ACTIONS(4483), + [anon_sym_shortintertext] = ACTIONS(4483), + }, + [602] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_RPAREN] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_RBRACK] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_EQ] = ACTIONS(4993), - [anon_sym_BSLASHpart] = ACTIONS(4995), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddpart] = ACTIONS(4995), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHchapter] = ACTIONS(4995), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddchap] = ACTIONS(4995), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsection] = ACTIONS(4995), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddsec] = ACTIONS(4995), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHparagraph] = ACTIONS(4995), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHitem] = ACTIONS(4995), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), - [anon_sym_LBRACE] = ACTIONS(4993), - [anon_sym_RBRACE] = ACTIONS(4993), - [sym_word] = ACTIONS(4995), - [sym_placeholder] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym__] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), - [anon_sym_BSLASHbegin] = ACTIONS(4995), - [anon_sym_BSLASHusepackage] = ACTIONS(4995), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), - [anon_sym_BSLASHinclude] = ACTIONS(4995), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), - [anon_sym_BSLASHinput] = ACTIONS(4995), - [anon_sym_BSLASHsubfile] = ACTIONS(4995), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), - [anon_sym_BSLASHbibliography] = ACTIONS(4995), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), - [anon_sym_BSLASHincludesvg] = ACTIONS(4995), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), - [anon_sym_BSLASHimport] = ACTIONS(4995), - [anon_sym_BSLASHsubimport] = ACTIONS(4995), - [anon_sym_BSLASHinputfrom] = ACTIONS(4995), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), - [anon_sym_BSLASHincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHcaption] = ACTIONS(4995), - [anon_sym_BSLASHcite] = ACTIONS(4995), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCite] = ACTIONS(4995), - [anon_sym_BSLASHnocite] = ACTIONS(4995), - [anon_sym_BSLASHcitet] = ACTIONS(4995), - [anon_sym_BSLASHcitep] = ACTIONS(4995), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteauthor] = ACTIONS(4995), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitetitle] = ACTIONS(4995), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteyear] = ACTIONS(4995), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitedate] = ACTIONS(4995), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteurl] = ACTIONS(4995), - [anon_sym_BSLASHfullcite] = ACTIONS(4995), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), - [anon_sym_BSLASHcitealt] = ACTIONS(4995), - [anon_sym_BSLASHcitealp] = ACTIONS(4995), - [anon_sym_BSLASHcitetext] = ACTIONS(4995), - [anon_sym_BSLASHparencite] = ACTIONS(4995), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHParencite] = ACTIONS(4995), - [anon_sym_BSLASHfootcite] = ACTIONS(4995), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), - [anon_sym_BSLASHtextcite] = ACTIONS(4995), - [anon_sym_BSLASHTextcite] = ACTIONS(4995), - [anon_sym_BSLASHsmartcite] = ACTIONS(4995), - [anon_sym_BSLASHSmartcite] = ACTIONS(4995), - [anon_sym_BSLASHsupercite] = ACTIONS(4995), - [anon_sym_BSLASHautocite] = ACTIONS(4995), - [anon_sym_BSLASHAutocite] = ACTIONS(4995), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHvolcite] = ACTIONS(4995), - [anon_sym_BSLASHVolcite] = ACTIONS(4995), - [anon_sym_BSLASHpvolcite] = ACTIONS(4995), - [anon_sym_BSLASHPvolcite] = ACTIONS(4995), - [anon_sym_BSLASHfvolcite] = ACTIONS(4995), - [anon_sym_BSLASHftvolcite] = ACTIONS(4995), - [anon_sym_BSLASHsvolcite] = ACTIONS(4995), - [anon_sym_BSLASHSvolcite] = ACTIONS(4995), - [anon_sym_BSLASHtvolcite] = ACTIONS(4995), - [anon_sym_BSLASHTvolcite] = ACTIONS(4995), - [anon_sym_BSLASHavolcite] = ACTIONS(4995), - [anon_sym_BSLASHAvolcite] = ACTIONS(4995), - [anon_sym_BSLASHnotecite] = ACTIONS(4995), - [anon_sym_BSLASHNotecite] = ACTIONS(4995), - [anon_sym_BSLASHpnotecite] = ACTIONS(4995), - [anon_sym_BSLASHPnotecite] = ACTIONS(4995), - [anon_sym_BSLASHfnotecite] = ACTIONS(4995), - [anon_sym_BSLASHlabel] = ACTIONS(4995), - [anon_sym_BSLASHref] = ACTIONS(4995), - [anon_sym_BSLASHeqref] = ACTIONS(4995), - [anon_sym_BSLASHvref] = ACTIONS(4995), - [anon_sym_BSLASHVref] = ACTIONS(4995), - [anon_sym_BSLASHautoref] = ACTIONS(4995), - [anon_sym_BSLASHpageref] = ACTIONS(4995), - [anon_sym_BSLASHcref] = ACTIONS(4995), - [anon_sym_BSLASHCref] = ACTIONS(4995), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnameCref] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHlabelcref] = ACTIONS(4995), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCrefrange] = ACTIONS(4995), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnewlabel] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdef] = ACTIONS(4995), - [anon_sym_BSLASHlet] = ACTIONS(4995), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), - [anon_sym_BSLASHgls] = ACTIONS(4995), - [anon_sym_BSLASHGls] = ACTIONS(4995), - [anon_sym_BSLASHGLS] = ACTIONS(4995), - [anon_sym_BSLASHglspl] = ACTIONS(4995), - [anon_sym_BSLASHGlspl] = ACTIONS(4995), - [anon_sym_BSLASHGLSpl] = ACTIONS(4995), - [anon_sym_BSLASHglsdisp] = ACTIONS(4995), - [anon_sym_BSLASHglslink] = ACTIONS(4995), - [anon_sym_BSLASHglstext] = ACTIONS(4995), - [anon_sym_BSLASHGlstext] = ACTIONS(4995), - [anon_sym_BSLASHGLStext] = ACTIONS(4995), - [anon_sym_BSLASHglsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), - [anon_sym_BSLASHglsplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSplural] = ACTIONS(4995), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHglsname] = ACTIONS(4995), - [anon_sym_BSLASHGlsname] = ACTIONS(4995), - [anon_sym_BSLASHGLSname] = ACTIONS(4995), - [anon_sym_BSLASHglssymbol] = ACTIONS(4995), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), - [anon_sym_BSLASHglsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), - [anon_sym_BSLASHglsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), - [anon_sym_BSLASHglsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), - [anon_sym_BSLASHglsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), - [anon_sym_BSLASHglsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), - [anon_sym_BSLASHnewacronym] = ACTIONS(4995), - [anon_sym_BSLASHacrshort] = ACTIONS(4995), - [anon_sym_BSLASHAcrshort] = ACTIONS(4995), - [anon_sym_BSLASHACRshort] = ACTIONS(4995), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), - [anon_sym_BSLASHacrlong] = ACTIONS(4995), - [anon_sym_BSLASHAcrlong] = ACTIONS(4995), - [anon_sym_BSLASHACRlong] = ACTIONS(4995), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), - [anon_sym_BSLASHacrfull] = ACTIONS(4995), - [anon_sym_BSLASHAcrfull] = ACTIONS(4995), - [anon_sym_BSLASHACRfull] = ACTIONS(4995), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), - [anon_sym_BSLASHacs] = ACTIONS(4995), - [anon_sym_BSLASHAcs] = ACTIONS(4995), - [anon_sym_BSLASHacsp] = ACTIONS(4995), - [anon_sym_BSLASHAcsp] = ACTIONS(4995), - [anon_sym_BSLASHacl] = ACTIONS(4995), - [anon_sym_BSLASHAcl] = ACTIONS(4995), - [anon_sym_BSLASHaclp] = ACTIONS(4995), - [anon_sym_BSLASHAclp] = ACTIONS(4995), - [anon_sym_BSLASHacf] = ACTIONS(4995), - [anon_sym_BSLASHAcf] = ACTIONS(4995), - [anon_sym_BSLASHacfp] = ACTIONS(4995), - [anon_sym_BSLASHAcfp] = ACTIONS(4995), - [anon_sym_BSLASHac] = ACTIONS(4995), - [anon_sym_BSLASHAc] = ACTIONS(4995), - [anon_sym_BSLASHacp] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), - [anon_sym_BSLASHcolor] = ACTIONS(4995), - [anon_sym_BSLASHcolorbox] = ACTIONS(4995), - [anon_sym_BSLASHtextcolor] = ACTIONS(4995), - [anon_sym_BSLASHpagecolor] = ACTIONS(4995), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHparagraph] = ACTIONS(4479), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [696] = { - [ts_builtin_sym_end] = ACTIONS(4997), - [sym_command_name] = ACTIONS(4999), + [603] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4997), - [anon_sym_BSLASHpart] = ACTIONS(4999), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddpart] = ACTIONS(4999), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHchapter] = ACTIONS(4999), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddchap] = ACTIONS(4999), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsection] = ACTIONS(4999), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddsec] = ACTIONS(4999), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHparagraph] = ACTIONS(4999), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHitem] = ACTIONS(4999), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4997), - [anon_sym_RBRACE] = ACTIONS(4997), - [sym_word] = ACTIONS(4999), - [sym_placeholder] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym__] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), - [anon_sym_BSLASHbegin] = ACTIONS(4999), - [anon_sym_BSLASHusepackage] = ACTIONS(4999), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), - [anon_sym_BSLASHinclude] = ACTIONS(4999), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), - [anon_sym_BSLASHinput] = ACTIONS(4999), - [anon_sym_BSLASHsubfile] = ACTIONS(4999), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), - [anon_sym_BSLASHbibliography] = ACTIONS(4999), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), - [anon_sym_BSLASHincludesvg] = ACTIONS(4999), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), - [anon_sym_BSLASHimport] = ACTIONS(4999), - [anon_sym_BSLASHsubimport] = ACTIONS(4999), - [anon_sym_BSLASHinputfrom] = ACTIONS(4999), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), - [anon_sym_BSLASHincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHcaption] = ACTIONS(4999), - [anon_sym_BSLASHcite] = ACTIONS(4999), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCite] = ACTIONS(4999), - [anon_sym_BSLASHnocite] = ACTIONS(4999), - [anon_sym_BSLASHcitet] = ACTIONS(4999), - [anon_sym_BSLASHcitep] = ACTIONS(4999), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteauthor] = ACTIONS(4999), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitetitle] = ACTIONS(4999), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteyear] = ACTIONS(4999), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitedate] = ACTIONS(4999), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteurl] = ACTIONS(4999), - [anon_sym_BSLASHfullcite] = ACTIONS(4999), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), - [anon_sym_BSLASHcitealt] = ACTIONS(4999), - [anon_sym_BSLASHcitealp] = ACTIONS(4999), - [anon_sym_BSLASHcitetext] = ACTIONS(4999), - [anon_sym_BSLASHparencite] = ACTIONS(4999), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHParencite] = ACTIONS(4999), - [anon_sym_BSLASHfootcite] = ACTIONS(4999), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), - [anon_sym_BSLASHtextcite] = ACTIONS(4999), - [anon_sym_BSLASHTextcite] = ACTIONS(4999), - [anon_sym_BSLASHsmartcite] = ACTIONS(4999), - [anon_sym_BSLASHSmartcite] = ACTIONS(4999), - [anon_sym_BSLASHsupercite] = ACTIONS(4999), - [anon_sym_BSLASHautocite] = ACTIONS(4999), - [anon_sym_BSLASHAutocite] = ACTIONS(4999), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHvolcite] = ACTIONS(4999), - [anon_sym_BSLASHVolcite] = ACTIONS(4999), - [anon_sym_BSLASHpvolcite] = ACTIONS(4999), - [anon_sym_BSLASHPvolcite] = ACTIONS(4999), - [anon_sym_BSLASHfvolcite] = ACTIONS(4999), - [anon_sym_BSLASHftvolcite] = ACTIONS(4999), - [anon_sym_BSLASHsvolcite] = ACTIONS(4999), - [anon_sym_BSLASHSvolcite] = ACTIONS(4999), - [anon_sym_BSLASHtvolcite] = ACTIONS(4999), - [anon_sym_BSLASHTvolcite] = ACTIONS(4999), - [anon_sym_BSLASHavolcite] = ACTIONS(4999), - [anon_sym_BSLASHAvolcite] = ACTIONS(4999), - [anon_sym_BSLASHnotecite] = ACTIONS(4999), - [anon_sym_BSLASHNotecite] = ACTIONS(4999), - [anon_sym_BSLASHpnotecite] = ACTIONS(4999), - [anon_sym_BSLASHPnotecite] = ACTIONS(4999), - [anon_sym_BSLASHfnotecite] = ACTIONS(4999), - [anon_sym_BSLASHlabel] = ACTIONS(4999), - [anon_sym_BSLASHref] = ACTIONS(4999), - [anon_sym_BSLASHeqref] = ACTIONS(4999), - [anon_sym_BSLASHvref] = ACTIONS(4999), - [anon_sym_BSLASHVref] = ACTIONS(4999), - [anon_sym_BSLASHautoref] = ACTIONS(4999), - [anon_sym_BSLASHpageref] = ACTIONS(4999), - [anon_sym_BSLASHcref] = ACTIONS(4999), - [anon_sym_BSLASHCref] = ACTIONS(4999), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnameCref] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHlabelcref] = ACTIONS(4999), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCrefrange] = ACTIONS(4999), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnewlabel] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdef] = ACTIONS(4999), - [anon_sym_BSLASHlet] = ACTIONS(4999), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), - [anon_sym_BSLASHgls] = ACTIONS(4999), - [anon_sym_BSLASHGls] = ACTIONS(4999), - [anon_sym_BSLASHGLS] = ACTIONS(4999), - [anon_sym_BSLASHglspl] = ACTIONS(4999), - [anon_sym_BSLASHGlspl] = ACTIONS(4999), - [anon_sym_BSLASHGLSpl] = ACTIONS(4999), - [anon_sym_BSLASHglsdisp] = ACTIONS(4999), - [anon_sym_BSLASHglslink] = ACTIONS(4999), - [anon_sym_BSLASHglstext] = ACTIONS(4999), - [anon_sym_BSLASHGlstext] = ACTIONS(4999), - [anon_sym_BSLASHGLStext] = ACTIONS(4999), - [anon_sym_BSLASHglsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), - [anon_sym_BSLASHglsplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSplural] = ACTIONS(4999), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHglsname] = ACTIONS(4999), - [anon_sym_BSLASHGlsname] = ACTIONS(4999), - [anon_sym_BSLASHGLSname] = ACTIONS(4999), - [anon_sym_BSLASHglssymbol] = ACTIONS(4999), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), - [anon_sym_BSLASHglsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), - [anon_sym_BSLASHglsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), - [anon_sym_BSLASHglsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), - [anon_sym_BSLASHglsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), - [anon_sym_BSLASHglsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), - [anon_sym_BSLASHnewacronym] = ACTIONS(4999), - [anon_sym_BSLASHacrshort] = ACTIONS(4999), - [anon_sym_BSLASHAcrshort] = ACTIONS(4999), - [anon_sym_BSLASHACRshort] = ACTIONS(4999), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), - [anon_sym_BSLASHacrlong] = ACTIONS(4999), - [anon_sym_BSLASHAcrlong] = ACTIONS(4999), - [anon_sym_BSLASHACRlong] = ACTIONS(4999), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), - [anon_sym_BSLASHacrfull] = ACTIONS(4999), - [anon_sym_BSLASHAcrfull] = ACTIONS(4999), - [anon_sym_BSLASHACRfull] = ACTIONS(4999), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), - [anon_sym_BSLASHacs] = ACTIONS(4999), - [anon_sym_BSLASHAcs] = ACTIONS(4999), - [anon_sym_BSLASHacsp] = ACTIONS(4999), - [anon_sym_BSLASHAcsp] = ACTIONS(4999), - [anon_sym_BSLASHacl] = ACTIONS(4999), - [anon_sym_BSLASHAcl] = ACTIONS(4999), - [anon_sym_BSLASHaclp] = ACTIONS(4999), - [anon_sym_BSLASHAclp] = ACTIONS(4999), - [anon_sym_BSLASHacf] = ACTIONS(4999), - [anon_sym_BSLASHAcf] = ACTIONS(4999), - [anon_sym_BSLASHacfp] = ACTIONS(4999), - [anon_sym_BSLASHAcfp] = ACTIONS(4999), - [anon_sym_BSLASHac] = ACTIONS(4999), - [anon_sym_BSLASHAc] = ACTIONS(4999), - [anon_sym_BSLASHacp] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), - [anon_sym_BSLASHcolor] = ACTIONS(4999), - [anon_sym_BSLASHcolorbox] = ACTIONS(4999), - [anon_sym_BSLASHtextcolor] = ACTIONS(4999), - [anon_sym_BSLASHpagecolor] = ACTIONS(4999), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), - }, - [697] = { - [ts_builtin_sym_end] = ACTIONS(5001), - [sym_command_name] = ACTIONS(5003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(5001), - [anon_sym_BSLASHpart] = ACTIONS(5003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddpart] = ACTIONS(5003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHchapter] = ACTIONS(5003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddchap] = ACTIONS(5003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsection] = ACTIONS(5003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddsec] = ACTIONS(5003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHparagraph] = ACTIONS(5003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHitem] = ACTIONS(5003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), - [anon_sym_LBRACE] = ACTIONS(5001), - [anon_sym_RBRACE] = ACTIONS(5001), - [sym_word] = ACTIONS(5003), - [sym_placeholder] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym__] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), - [anon_sym_BSLASHbegin] = ACTIONS(5003), - [anon_sym_BSLASHusepackage] = ACTIONS(5003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), - [anon_sym_BSLASHinclude] = ACTIONS(5003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), - [anon_sym_BSLASHinput] = ACTIONS(5003), - [anon_sym_BSLASHsubfile] = ACTIONS(5003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), - [anon_sym_BSLASHbibliography] = ACTIONS(5003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), - [anon_sym_BSLASHincludesvg] = ACTIONS(5003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), - [anon_sym_BSLASHimport] = ACTIONS(5003), - [anon_sym_BSLASHsubimport] = ACTIONS(5003), - [anon_sym_BSLASHinputfrom] = ACTIONS(5003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), - [anon_sym_BSLASHincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHcaption] = ACTIONS(5003), - [anon_sym_BSLASHcite] = ACTIONS(5003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCite] = ACTIONS(5003), - [anon_sym_BSLASHnocite] = ACTIONS(5003), - [anon_sym_BSLASHcitet] = ACTIONS(5003), - [anon_sym_BSLASHcitep] = ACTIONS(5003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteyear] = ACTIONS(5003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitedate] = ACTIONS(5003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteurl] = ACTIONS(5003), - [anon_sym_BSLASHfullcite] = ACTIONS(5003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), - [anon_sym_BSLASHcitealt] = ACTIONS(5003), - [anon_sym_BSLASHcitealp] = ACTIONS(5003), - [anon_sym_BSLASHcitetext] = ACTIONS(5003), - [anon_sym_BSLASHparencite] = ACTIONS(5003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHParencite] = ACTIONS(5003), - [anon_sym_BSLASHfootcite] = ACTIONS(5003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), - [anon_sym_BSLASHtextcite] = ACTIONS(5003), - [anon_sym_BSLASHTextcite] = ACTIONS(5003), - [anon_sym_BSLASHsmartcite] = ACTIONS(5003), - [anon_sym_BSLASHSmartcite] = ACTIONS(5003), - [anon_sym_BSLASHsupercite] = ACTIONS(5003), - [anon_sym_BSLASHautocite] = ACTIONS(5003), - [anon_sym_BSLASHAutocite] = ACTIONS(5003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHvolcite] = ACTIONS(5003), - [anon_sym_BSLASHVolcite] = ACTIONS(5003), - [anon_sym_BSLASHpvolcite] = ACTIONS(5003), - [anon_sym_BSLASHPvolcite] = ACTIONS(5003), - [anon_sym_BSLASHfvolcite] = ACTIONS(5003), - [anon_sym_BSLASHftvolcite] = ACTIONS(5003), - [anon_sym_BSLASHsvolcite] = ACTIONS(5003), - [anon_sym_BSLASHSvolcite] = ACTIONS(5003), - [anon_sym_BSLASHtvolcite] = ACTIONS(5003), - [anon_sym_BSLASHTvolcite] = ACTIONS(5003), - [anon_sym_BSLASHavolcite] = ACTIONS(5003), - [anon_sym_BSLASHAvolcite] = ACTIONS(5003), - [anon_sym_BSLASHnotecite] = ACTIONS(5003), - [anon_sym_BSLASHNotecite] = ACTIONS(5003), - [anon_sym_BSLASHpnotecite] = ACTIONS(5003), - [anon_sym_BSLASHPnotecite] = ACTIONS(5003), - [anon_sym_BSLASHfnotecite] = ACTIONS(5003), - [anon_sym_BSLASHlabel] = ACTIONS(5003), - [anon_sym_BSLASHref] = ACTIONS(5003), - [anon_sym_BSLASHeqref] = ACTIONS(5003), - [anon_sym_BSLASHvref] = ACTIONS(5003), - [anon_sym_BSLASHVref] = ACTIONS(5003), - [anon_sym_BSLASHautoref] = ACTIONS(5003), - [anon_sym_BSLASHpageref] = ACTIONS(5003), - [anon_sym_BSLASHcref] = ACTIONS(5003), - [anon_sym_BSLASHCref] = ACTIONS(5003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnameCref] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHlabelcref] = ACTIONS(5003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdef] = ACTIONS(5003), - [anon_sym_BSLASHlet] = ACTIONS(5003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), - [anon_sym_BSLASHgls] = ACTIONS(5003), - [anon_sym_BSLASHGls] = ACTIONS(5003), - [anon_sym_BSLASHGLS] = ACTIONS(5003), - [anon_sym_BSLASHglspl] = ACTIONS(5003), - [anon_sym_BSLASHGlspl] = ACTIONS(5003), - [anon_sym_BSLASHGLSpl] = ACTIONS(5003), - [anon_sym_BSLASHglsdisp] = ACTIONS(5003), - [anon_sym_BSLASHglslink] = ACTIONS(5003), - [anon_sym_BSLASHglstext] = ACTIONS(5003), - [anon_sym_BSLASHGlstext] = ACTIONS(5003), - [anon_sym_BSLASHGLStext] = ACTIONS(5003), - [anon_sym_BSLASHglsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), - [anon_sym_BSLASHglsplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSplural] = ACTIONS(5003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHglsname] = ACTIONS(5003), - [anon_sym_BSLASHGlsname] = ACTIONS(5003), - [anon_sym_BSLASHGLSname] = ACTIONS(5003), - [anon_sym_BSLASHglssymbol] = ACTIONS(5003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), - [anon_sym_BSLASHglsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), - [anon_sym_BSLASHglsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), - [anon_sym_BSLASHglsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), - [anon_sym_BSLASHglsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), - [anon_sym_BSLASHglsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), - [anon_sym_BSLASHnewacronym] = ACTIONS(5003), - [anon_sym_BSLASHacrshort] = ACTIONS(5003), - [anon_sym_BSLASHAcrshort] = ACTIONS(5003), - [anon_sym_BSLASHACRshort] = ACTIONS(5003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), - [anon_sym_BSLASHacrlong] = ACTIONS(5003), - [anon_sym_BSLASHAcrlong] = ACTIONS(5003), - [anon_sym_BSLASHACRlong] = ACTIONS(5003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), - [anon_sym_BSLASHacrfull] = ACTIONS(5003), - [anon_sym_BSLASHAcrfull] = ACTIONS(5003), - [anon_sym_BSLASHACRfull] = ACTIONS(5003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), - [anon_sym_BSLASHacs] = ACTIONS(5003), - [anon_sym_BSLASHAcs] = ACTIONS(5003), - [anon_sym_BSLASHacsp] = ACTIONS(5003), - [anon_sym_BSLASHAcsp] = ACTIONS(5003), - [anon_sym_BSLASHacl] = ACTIONS(5003), - [anon_sym_BSLASHAcl] = ACTIONS(5003), - [anon_sym_BSLASHaclp] = ACTIONS(5003), - [anon_sym_BSLASHAclp] = ACTIONS(5003), - [anon_sym_BSLASHacf] = ACTIONS(5003), - [anon_sym_BSLASHAcf] = ACTIONS(5003), - [anon_sym_BSLASHacfp] = ACTIONS(5003), - [anon_sym_BSLASHAcfp] = ACTIONS(5003), - [anon_sym_BSLASHac] = ACTIONS(5003), - [anon_sym_BSLASHAc] = ACTIONS(5003), - [anon_sym_BSLASHacp] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), - [anon_sym_BSLASHcolor] = ACTIONS(5003), - [anon_sym_BSLASHcolorbox] = ACTIONS(5003), - [anon_sym_BSLASHtextcolor] = ACTIONS(5003), - [anon_sym_BSLASHpagecolor] = ACTIONS(5003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), - }, - [698] = { - [ts_builtin_sym_end] = ACTIONS(5005), - [sym_command_name] = ACTIONS(5007), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_BSLASHpart] = ACTIONS(5007), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddpart] = ACTIONS(5007), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHchapter] = ACTIONS(5007), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddchap] = ACTIONS(5007), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsection] = ACTIONS(5007), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddsec] = ACTIONS(5007), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHparagraph] = ACTIONS(5007), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHitem] = ACTIONS(5007), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [anon_sym_RBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASHbegin] = ACTIONS(5007), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), - }, - [699] = { - [ts_builtin_sym_end] = ACTIONS(5009), - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_BSLASHpart] = ACTIONS(5011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddpart] = ACTIONS(5011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHchapter] = ACTIONS(5011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddchap] = ACTIONS(5011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsection] = ACTIONS(5011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddsec] = ACTIONS(5011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHparagraph] = ACTIONS(5011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHitem] = ACTIONS(5011), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5009), - [anon_sym_RBRACE] = ACTIONS(5009), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASHbegin] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), - }, - [700] = { - [ts_builtin_sym_end] = ACTIONS(5013), - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_BSLASHpart] = ACTIONS(5015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddpart] = ACTIONS(5015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHchapter] = ACTIONS(5015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddchap] = ACTIONS(5015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsection] = ACTIONS(5015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddsec] = ACTIONS(5015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHparagraph] = ACTIONS(5015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHitem] = ACTIONS(5015), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [anon_sym_RBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASHbegin] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), - }, - [701] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1733), - [sym_operator] = STATE(1509), - [sym_key_value_pair] = STATE(1777), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5017), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [702] = { - [ts_builtin_sym_end] = ACTIONS(5019), - [sym_command_name] = ACTIONS(5021), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_BSLASHpart] = ACTIONS(5021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddpart] = ACTIONS(5021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHchapter] = ACTIONS(5021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddchap] = ACTIONS(5021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsection] = ACTIONS(5021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddsec] = ACTIONS(5021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHparagraph] = ACTIONS(5021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHitem] = ACTIONS(5021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASHbegin] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), - }, - [703] = { - [ts_builtin_sym_end] = ACTIONS(5023), - [sym_command_name] = ACTIONS(5025), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_BSLASHpart] = ACTIONS(5025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddpart] = ACTIONS(5025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHchapter] = ACTIONS(5025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddchap] = ACTIONS(5025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsection] = ACTIONS(5025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddsec] = ACTIONS(5025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHparagraph] = ACTIONS(5025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHitem] = ACTIONS(5025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASHbegin] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), - }, - [704] = { - [ts_builtin_sym_end] = ACTIONS(145), - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_BSLASHpart] = ACTIONS(147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddpart] = ACTIONS(147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHchapter] = ACTIONS(147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddchap] = ACTIONS(147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(145), - [anon_sym_BSLASHsection] = ACTIONS(147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddsec] = ACTIONS(147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHparagraph] = ACTIONS(147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHitem] = ACTIONS(147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), - }, - [705] = { - [ts_builtin_sym_end] = ACTIONS(5027), - [sym_command_name] = ACTIONS(5029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_BSLASHpart] = ACTIONS(5029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddpart] = ACTIONS(5029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHchapter] = ACTIONS(5029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddchap] = ACTIONS(5029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsection] = ACTIONS(5029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddsec] = ACTIONS(5029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHparagraph] = ACTIONS(5029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHitem] = ACTIONS(5029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASHbegin] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - }, - [706] = { - [ts_builtin_sym_end] = ACTIONS(5031), - [sym_command_name] = ACTIONS(5033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_BSLASHpart] = ACTIONS(5033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddpart] = ACTIONS(5033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHchapter] = ACTIONS(5033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddchap] = ACTIONS(5033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsection] = ACTIONS(5033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddsec] = ACTIONS(5033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHparagraph] = ACTIONS(5033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHitem] = ACTIONS(5033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASHbegin] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), - }, - [707] = { - [sym_brack_group_text] = STATE(1048), - [sym_command_name] = ACTIONS(4929), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_BSLASHpart] = ACTIONS(4929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddpart] = ACTIONS(4929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHchapter] = ACTIONS(4929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddchap] = ACTIONS(4929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsection] = ACTIONS(4929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddsec] = ACTIONS(4929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHparagraph] = ACTIONS(4929), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHitem] = ACTIONS(4929), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASHbegin] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - }, - [708] = { - [ts_builtin_sym_end] = ACTIONS(5035), - [sym_command_name] = ACTIONS(5037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_BSLASHpart] = ACTIONS(5037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddpart] = ACTIONS(5037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHchapter] = ACTIONS(5037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddchap] = ACTIONS(5037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsection] = ACTIONS(5037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddsec] = ACTIONS(5037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHparagraph] = ACTIONS(5037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHitem] = ACTIONS(5037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASHbegin] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), - }, - [709] = { - [ts_builtin_sym_end] = ACTIONS(5039), - [sym_command_name] = ACTIONS(5041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_BSLASHpart] = ACTIONS(5041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddpart] = ACTIONS(5041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHchapter] = ACTIONS(5041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddchap] = ACTIONS(5041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsection] = ACTIONS(5041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddsec] = ACTIONS(5041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHparagraph] = ACTIONS(5041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHitem] = ACTIONS(5041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASHbegin] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), - }, - [710] = { - [sym_command_name] = ACTIONS(4923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4923), - [anon_sym_BSLASHfi] = ACTIONS(5043), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_RPAREN] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_RBRACK] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4921), - [anon_sym_EQ] = ACTIONS(4921), - [anon_sym_BSLASHpart] = ACTIONS(4923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddpart] = ACTIONS(4923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4921), - [anon_sym_BSLASHchapter] = ACTIONS(4923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddchap] = ACTIONS(4923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsection] = ACTIONS(4923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddsec] = ACTIONS(4923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubsection] = ACTIONS(4923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHparagraph] = ACTIONS(4923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4921), - [anon_sym_BSLASHitem] = ACTIONS(4923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4921), - [anon_sym_LBRACE] = ACTIONS(4921), - [sym_word] = ACTIONS(4923), - [sym_placeholder] = ACTIONS(4921), - [anon_sym_PLUS] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_STAR] = ACTIONS(4923), - [anon_sym_SLASH] = ACTIONS(4923), - [anon_sym_CARET] = ACTIONS(4923), - [anon_sym__] = ACTIONS(4923), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_BANG] = ACTIONS(4923), - [anon_sym_PIPE] = ACTIONS(4923), - [anon_sym_COLON] = ACTIONS(4923), - [anon_sym_SQUOTE] = ACTIONS(4923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4921), - [anon_sym_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4921), - [anon_sym_BSLASHbegin] = ACTIONS(4923), - [anon_sym_BSLASHend] = ACTIONS(4923), - [anon_sym_BSLASHusepackage] = ACTIONS(4923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4923), - [anon_sym_BSLASHinclude] = ACTIONS(4923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4923), - [anon_sym_BSLASHinput] = ACTIONS(4923), - [anon_sym_BSLASHsubfile] = ACTIONS(4923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4923), - [anon_sym_BSLASHbibliography] = ACTIONS(4923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4923), - [anon_sym_BSLASHincludesvg] = ACTIONS(4923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4923), - [anon_sym_BSLASHimport] = ACTIONS(4923), - [anon_sym_BSLASHsubimport] = ACTIONS(4923), - [anon_sym_BSLASHinputfrom] = ACTIONS(4923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4923), - [anon_sym_BSLASHincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHcaption] = ACTIONS(4923), - [anon_sym_BSLASHcite] = ACTIONS(4923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCite] = ACTIONS(4923), - [anon_sym_BSLASHnocite] = ACTIONS(4923), - [anon_sym_BSLASHcitet] = ACTIONS(4923), - [anon_sym_BSLASHcitep] = ACTIONS(4923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteyear] = ACTIONS(4923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitedate] = ACTIONS(4923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteurl] = ACTIONS(4923), - [anon_sym_BSLASHfullcite] = ACTIONS(4923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4923), - [anon_sym_BSLASHcitealt] = ACTIONS(4923), - [anon_sym_BSLASHcitealp] = ACTIONS(4923), - [anon_sym_BSLASHcitetext] = ACTIONS(4923), - [anon_sym_BSLASHparencite] = ACTIONS(4923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHParencite] = ACTIONS(4923), - [anon_sym_BSLASHfootcite] = ACTIONS(4923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4923), - [anon_sym_BSLASHtextcite] = ACTIONS(4923), - [anon_sym_BSLASHTextcite] = ACTIONS(4923), - [anon_sym_BSLASHsmartcite] = ACTIONS(4923), - [anon_sym_BSLASHSmartcite] = ACTIONS(4923), - [anon_sym_BSLASHsupercite] = ACTIONS(4923), - [anon_sym_BSLASHautocite] = ACTIONS(4923), - [anon_sym_BSLASHAutocite] = ACTIONS(4923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHvolcite] = ACTIONS(4923), - [anon_sym_BSLASHVolcite] = ACTIONS(4923), - [anon_sym_BSLASHpvolcite] = ACTIONS(4923), - [anon_sym_BSLASHPvolcite] = ACTIONS(4923), - [anon_sym_BSLASHfvolcite] = ACTIONS(4923), - [anon_sym_BSLASHftvolcite] = ACTIONS(4923), - [anon_sym_BSLASHsvolcite] = ACTIONS(4923), - [anon_sym_BSLASHSvolcite] = ACTIONS(4923), - [anon_sym_BSLASHtvolcite] = ACTIONS(4923), - [anon_sym_BSLASHTvolcite] = ACTIONS(4923), - [anon_sym_BSLASHavolcite] = ACTIONS(4923), - [anon_sym_BSLASHAvolcite] = ACTIONS(4923), - [anon_sym_BSLASHnotecite] = ACTIONS(4923), - [anon_sym_BSLASHNotecite] = ACTIONS(4923), - [anon_sym_BSLASHpnotecite] = ACTIONS(4923), - [anon_sym_BSLASHPnotecite] = ACTIONS(4923), - [anon_sym_BSLASHfnotecite] = ACTIONS(4923), - [anon_sym_BSLASHlabel] = ACTIONS(4923), - [anon_sym_BSLASHref] = ACTIONS(4923), - [anon_sym_BSLASHeqref] = ACTIONS(4923), - [anon_sym_BSLASHvref] = ACTIONS(4923), - [anon_sym_BSLASHVref] = ACTIONS(4923), - [anon_sym_BSLASHautoref] = ACTIONS(4923), - [anon_sym_BSLASHpageref] = ACTIONS(4923), - [anon_sym_BSLASHcref] = ACTIONS(4923), - [anon_sym_BSLASHCref] = ACTIONS(4923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnameCref] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHlabelcref] = ACTIONS(4923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnewlabel] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4921), - [anon_sym_BSLASHdef] = ACTIONS(4923), - [anon_sym_BSLASHlet] = ACTIONS(4923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4923), - [anon_sym_BSLASHgls] = ACTIONS(4923), - [anon_sym_BSLASHGls] = ACTIONS(4923), - [anon_sym_BSLASHGLS] = ACTIONS(4923), - [anon_sym_BSLASHglspl] = ACTIONS(4923), - [anon_sym_BSLASHGlspl] = ACTIONS(4923), - [anon_sym_BSLASHGLSpl] = ACTIONS(4923), - [anon_sym_BSLASHglsdisp] = ACTIONS(4923), - [anon_sym_BSLASHglslink] = ACTIONS(4923), - [anon_sym_BSLASHglstext] = ACTIONS(4923), - [anon_sym_BSLASHGlstext] = ACTIONS(4923), - [anon_sym_BSLASHGLStext] = ACTIONS(4923), - [anon_sym_BSLASHglsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4923), - [anon_sym_BSLASHglsplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSplural] = ACTIONS(4923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHglsname] = ACTIONS(4923), - [anon_sym_BSLASHGlsname] = ACTIONS(4923), - [anon_sym_BSLASHGLSname] = ACTIONS(4923), - [anon_sym_BSLASHglssymbol] = ACTIONS(4923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4923), - [anon_sym_BSLASHglsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4923), - [anon_sym_BSLASHglsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4923), - [anon_sym_BSLASHglsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4923), - [anon_sym_BSLASHglsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4923), - [anon_sym_BSLASHglsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4923), - [anon_sym_BSLASHnewacronym] = ACTIONS(4923), - [anon_sym_BSLASHacrshort] = ACTIONS(4923), - [anon_sym_BSLASHAcrshort] = ACTIONS(4923), - [anon_sym_BSLASHACRshort] = ACTIONS(4923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4923), - [anon_sym_BSLASHacrlong] = ACTIONS(4923), - [anon_sym_BSLASHAcrlong] = ACTIONS(4923), - [anon_sym_BSLASHACRlong] = ACTIONS(4923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4923), - [anon_sym_BSLASHacrfull] = ACTIONS(4923), - [anon_sym_BSLASHAcrfull] = ACTIONS(4923), - [anon_sym_BSLASHACRfull] = ACTIONS(4923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4923), - [anon_sym_BSLASHacs] = ACTIONS(4923), - [anon_sym_BSLASHAcs] = ACTIONS(4923), - [anon_sym_BSLASHacsp] = ACTIONS(4923), - [anon_sym_BSLASHAcsp] = ACTIONS(4923), - [anon_sym_BSLASHacl] = ACTIONS(4923), - [anon_sym_BSLASHAcl] = ACTIONS(4923), - [anon_sym_BSLASHaclp] = ACTIONS(4923), - [anon_sym_BSLASHAclp] = ACTIONS(4923), - [anon_sym_BSLASHacf] = ACTIONS(4923), - [anon_sym_BSLASHAcf] = ACTIONS(4923), - [anon_sym_BSLASHacfp] = ACTIONS(4923), - [anon_sym_BSLASHAcfp] = ACTIONS(4923), - [anon_sym_BSLASHac] = ACTIONS(4923), - [anon_sym_BSLASHAc] = ACTIONS(4923), - [anon_sym_BSLASHacp] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4923), - [anon_sym_BSLASHcolor] = ACTIONS(4923), - [anon_sym_BSLASHcolorbox] = ACTIONS(4923), - [anon_sym_BSLASHtextcolor] = ACTIONS(4923), - [anon_sym_BSLASHpagecolor] = ACTIONS(4923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4923), - }, - [711] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1733), - [sym_operator] = STATE(1509), - [sym_key_value_pair] = STATE(1746), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5045), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [712] = { - [ts_builtin_sym_end] = ACTIONS(5047), - [sym_command_name] = ACTIONS(5049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_BSLASHpart] = ACTIONS(5049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddpart] = ACTIONS(5049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHchapter] = ACTIONS(5049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddchap] = ACTIONS(5049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsection] = ACTIONS(5049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddsec] = ACTIONS(5049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHparagraph] = ACTIONS(5049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHitem] = ACTIONS(5049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASHbegin] = ACTIONS(5049), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), - }, - [713] = { - [ts_builtin_sym_end] = ACTIONS(5051), - [sym_command_name] = ACTIONS(5053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_BSLASHpart] = ACTIONS(5053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddpart] = ACTIONS(5053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHchapter] = ACTIONS(5053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddchap] = ACTIONS(5053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsection] = ACTIONS(5053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddsec] = ACTIONS(5053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHparagraph] = ACTIONS(5053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHitem] = ACTIONS(5053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASHbegin] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), - }, - [714] = { - [ts_builtin_sym_end] = ACTIONS(135), - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - }, - [715] = { - [ts_builtin_sym_end] = ACTIONS(5055), - [sym_command_name] = ACTIONS(5057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_BSLASHpart] = ACTIONS(5057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddpart] = ACTIONS(5057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHchapter] = ACTIONS(5057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddchap] = ACTIONS(5057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsection] = ACTIONS(5057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddsec] = ACTIONS(5057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHparagraph] = ACTIONS(5057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHitem] = ACTIONS(5057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_RBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASHbegin] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), - }, - [716] = { - [ts_builtin_sym_end] = ACTIONS(5059), - [sym_command_name] = ACTIONS(5061), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_BSLASHpart] = ACTIONS(5061), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddpart] = ACTIONS(5061), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHchapter] = ACTIONS(5061), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddchap] = ACTIONS(5061), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsection] = ACTIONS(5061), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddsec] = ACTIONS(5061), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHparagraph] = ACTIONS(5061), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHitem] = ACTIONS(5061), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASHbegin] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), - }, - [717] = { - [ts_builtin_sym_end] = ACTIONS(5063), - [sym_command_name] = ACTIONS(5065), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_BSLASHpart] = ACTIONS(5065), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddpart] = ACTIONS(5065), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHchapter] = ACTIONS(5065), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddchap] = ACTIONS(5065), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsection] = ACTIONS(5065), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddsec] = ACTIONS(5065), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHparagraph] = ACTIONS(5065), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHitem] = ACTIONS(5065), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASHbegin] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), - }, - [718] = { - [ts_builtin_sym_end] = ACTIONS(5067), - [sym_command_name] = ACTIONS(5069), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_BSLASHpart] = ACTIONS(5069), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddpart] = ACTIONS(5069), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHchapter] = ACTIONS(5069), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddchap] = ACTIONS(5069), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsection] = ACTIONS(5069), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddsec] = ACTIONS(5069), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHparagraph] = ACTIONS(5069), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHitem] = ACTIONS(5069), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_RBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), - [anon_sym_BSLASHbegin] = ACTIONS(5069), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), - }, - [719] = { - [ts_builtin_sym_end] = ACTIONS(139), - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_BSLASHpart] = ACTIONS(141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddpart] = ACTIONS(141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHchapter] = ACTIONS(141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddchap] = ACTIONS(141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), - [anon_sym_BSLASHsection] = ACTIONS(141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddsec] = ACTIONS(141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHparagraph] = ACTIONS(141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHitem] = ACTIONS(141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - }, - [720] = { - [ts_builtin_sym_end] = ACTIONS(5071), - [sym_command_name] = ACTIONS(5073), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_BSLASHpart] = ACTIONS(5073), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddpart] = ACTIONS(5073), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHchapter] = ACTIONS(5073), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddchap] = ACTIONS(5073), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsection] = ACTIONS(5073), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddsec] = ACTIONS(5073), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHparagraph] = ACTIONS(5073), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHitem] = ACTIONS(5073), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_RBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASHbegin] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), - }, - [721] = { - [ts_builtin_sym_end] = ACTIONS(5075), - [sym_command_name] = ACTIONS(5077), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_BSLASHpart] = ACTIONS(5077), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddpart] = ACTIONS(5077), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHchapter] = ACTIONS(5077), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddchap] = ACTIONS(5077), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsection] = ACTIONS(5077), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddsec] = ACTIONS(5077), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHparagraph] = ACTIONS(5077), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHitem] = ACTIONS(5077), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_RBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5077), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), - [anon_sym_BSLASHbegin] = ACTIONS(5077), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), - }, - [722] = { - [ts_builtin_sym_end] = ACTIONS(5079), - [sym_command_name] = ACTIONS(5081), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_BSLASHpart] = ACTIONS(5081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddpart] = ACTIONS(5081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHchapter] = ACTIONS(5081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddchap] = ACTIONS(5081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsection] = ACTIONS(5081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddsec] = ACTIONS(5081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHparagraph] = ACTIONS(5081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHitem] = ACTIONS(5081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_RBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASHbegin] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), - }, - [723] = { - [ts_builtin_sym_end] = ACTIONS(5083), - [sym_command_name] = ACTIONS(5085), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_BSLASHpart] = ACTIONS(5085), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddpart] = ACTIONS(5085), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHchapter] = ACTIONS(5085), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddchap] = ACTIONS(5085), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsection] = ACTIONS(5085), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddsec] = ACTIONS(5085), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHparagraph] = ACTIONS(5085), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHitem] = ACTIONS(5085), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_RBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASHbegin] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), - }, - [724] = { - [ts_builtin_sym_end] = ACTIONS(5087), - [sym_command_name] = ACTIONS(5089), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_BSLASHpart] = ACTIONS(5089), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddpart] = ACTIONS(5089), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHchapter] = ACTIONS(5089), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddchap] = ACTIONS(5089), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsection] = ACTIONS(5089), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddsec] = ACTIONS(5089), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHparagraph] = ACTIONS(5089), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHitem] = ACTIONS(5089), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_RBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASHbegin] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), - }, - [725] = { - [ts_builtin_sym_end] = ACTIONS(5091), - [sym_command_name] = ACTIONS(5093), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_BSLASHpart] = ACTIONS(5093), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddpart] = ACTIONS(5093), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHchapter] = ACTIONS(5093), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddchap] = ACTIONS(5093), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsection] = ACTIONS(5093), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddsec] = ACTIONS(5093), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHparagraph] = ACTIONS(5093), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHitem] = ACTIONS(5093), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_RBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASHbegin] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), - }, - [726] = { - [ts_builtin_sym_end] = ACTIONS(5095), - [sym_command_name] = ACTIONS(5097), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_BSLASHpart] = ACTIONS(5097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddpart] = ACTIONS(5097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHchapter] = ACTIONS(5097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddchap] = ACTIONS(5097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsection] = ACTIONS(5097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddsec] = ACTIONS(5097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHparagraph] = ACTIONS(5097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHitem] = ACTIONS(5097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [anon_sym_RBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), - [anon_sym_BSLASHbegin] = ACTIONS(5097), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), - }, - [727] = { - [ts_builtin_sym_end] = ACTIONS(5099), - [sym_command_name] = ACTIONS(5101), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_BSLASHpart] = ACTIONS(5101), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddpart] = ACTIONS(5101), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHchapter] = ACTIONS(5101), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddchap] = ACTIONS(5101), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsection] = ACTIONS(5101), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddsec] = ACTIONS(5101), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHparagraph] = ACTIONS(5101), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHitem] = ACTIONS(5101), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASHbegin] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), - }, - [728] = { - [ts_builtin_sym_end] = ACTIONS(5103), - [sym_command_name] = ACTIONS(5105), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_BSLASHpart] = ACTIONS(5105), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddpart] = ACTIONS(5105), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHchapter] = ACTIONS(5105), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddchap] = ACTIONS(5105), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsection] = ACTIONS(5105), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddsec] = ACTIONS(5105), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHparagraph] = ACTIONS(5105), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHitem] = ACTIONS(5105), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [anon_sym_RBRACE] = ACTIONS(5103), - [sym_word] = ACTIONS(5105), - [sym_placeholder] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym__] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_COLON] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5105), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5105), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), - [anon_sym_BSLASHbegin] = ACTIONS(5105), - [anon_sym_BSLASHusepackage] = ACTIONS(5105), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), - [anon_sym_BSLASHinclude] = ACTIONS(5105), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), - [anon_sym_BSLASHinput] = ACTIONS(5105), - [anon_sym_BSLASHsubfile] = ACTIONS(5105), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), - [anon_sym_BSLASHbibliography] = ACTIONS(5105), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), - [anon_sym_BSLASHincludesvg] = ACTIONS(5105), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), - [anon_sym_BSLASHimport] = ACTIONS(5105), - [anon_sym_BSLASHsubimport] = ACTIONS(5105), - [anon_sym_BSLASHinputfrom] = ACTIONS(5105), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), - [anon_sym_BSLASHincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHcaption] = ACTIONS(5105), - [anon_sym_BSLASHcite] = ACTIONS(5105), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCite] = ACTIONS(5105), - [anon_sym_BSLASHnocite] = ACTIONS(5105), - [anon_sym_BSLASHcitet] = ACTIONS(5105), - [anon_sym_BSLASHcitep] = ACTIONS(5105), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteauthor] = ACTIONS(5105), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitetitle] = ACTIONS(5105), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteyear] = ACTIONS(5105), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitedate] = ACTIONS(5105), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteurl] = ACTIONS(5105), - [anon_sym_BSLASHfullcite] = ACTIONS(5105), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), - [anon_sym_BSLASHcitealt] = ACTIONS(5105), - [anon_sym_BSLASHcitealp] = ACTIONS(5105), - [anon_sym_BSLASHcitetext] = ACTIONS(5105), - [anon_sym_BSLASHparencite] = ACTIONS(5105), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHParencite] = ACTIONS(5105), - [anon_sym_BSLASHfootcite] = ACTIONS(5105), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), - [anon_sym_BSLASHtextcite] = ACTIONS(5105), - [anon_sym_BSLASHTextcite] = ACTIONS(5105), - [anon_sym_BSLASHsmartcite] = ACTIONS(5105), - [anon_sym_BSLASHSmartcite] = ACTIONS(5105), - [anon_sym_BSLASHsupercite] = ACTIONS(5105), - [anon_sym_BSLASHautocite] = ACTIONS(5105), - [anon_sym_BSLASHAutocite] = ACTIONS(5105), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHvolcite] = ACTIONS(5105), - [anon_sym_BSLASHVolcite] = ACTIONS(5105), - [anon_sym_BSLASHpvolcite] = ACTIONS(5105), - [anon_sym_BSLASHPvolcite] = ACTIONS(5105), - [anon_sym_BSLASHfvolcite] = ACTIONS(5105), - [anon_sym_BSLASHftvolcite] = ACTIONS(5105), - [anon_sym_BSLASHsvolcite] = ACTIONS(5105), - [anon_sym_BSLASHSvolcite] = ACTIONS(5105), - [anon_sym_BSLASHtvolcite] = ACTIONS(5105), - [anon_sym_BSLASHTvolcite] = ACTIONS(5105), - [anon_sym_BSLASHavolcite] = ACTIONS(5105), - [anon_sym_BSLASHAvolcite] = ACTIONS(5105), - [anon_sym_BSLASHnotecite] = ACTIONS(5105), - [anon_sym_BSLASHNotecite] = ACTIONS(5105), - [anon_sym_BSLASHpnotecite] = ACTIONS(5105), - [anon_sym_BSLASHPnotecite] = ACTIONS(5105), - [anon_sym_BSLASHfnotecite] = ACTIONS(5105), - [anon_sym_BSLASHlabel] = ACTIONS(5105), - [anon_sym_BSLASHref] = ACTIONS(5105), - [anon_sym_BSLASHeqref] = ACTIONS(5105), - [anon_sym_BSLASHvref] = ACTIONS(5105), - [anon_sym_BSLASHVref] = ACTIONS(5105), - [anon_sym_BSLASHautoref] = ACTIONS(5105), - [anon_sym_BSLASHpageref] = ACTIONS(5105), - [anon_sym_BSLASHcref] = ACTIONS(5105), - [anon_sym_BSLASHCref] = ACTIONS(5105), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnameCref] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHlabelcref] = ACTIONS(5105), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCrefrange] = ACTIONS(5105), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnewlabel] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdef] = ACTIONS(5105), - [anon_sym_BSLASHlet] = ACTIONS(5105), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), - [anon_sym_BSLASHgls] = ACTIONS(5105), - [anon_sym_BSLASHGls] = ACTIONS(5105), - [anon_sym_BSLASHGLS] = ACTIONS(5105), - [anon_sym_BSLASHglspl] = ACTIONS(5105), - [anon_sym_BSLASHGlspl] = ACTIONS(5105), - [anon_sym_BSLASHGLSpl] = ACTIONS(5105), - [anon_sym_BSLASHglsdisp] = ACTIONS(5105), - [anon_sym_BSLASHglslink] = ACTIONS(5105), - [anon_sym_BSLASHglstext] = ACTIONS(5105), - [anon_sym_BSLASHGlstext] = ACTIONS(5105), - [anon_sym_BSLASHGLStext] = ACTIONS(5105), - [anon_sym_BSLASHglsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), - [anon_sym_BSLASHglsplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSplural] = ACTIONS(5105), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHglsname] = ACTIONS(5105), - [anon_sym_BSLASHGlsname] = ACTIONS(5105), - [anon_sym_BSLASHGLSname] = ACTIONS(5105), - [anon_sym_BSLASHglssymbol] = ACTIONS(5105), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), - [anon_sym_BSLASHglsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), - [anon_sym_BSLASHglsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), - [anon_sym_BSLASHglsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), - [anon_sym_BSLASHglsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), - [anon_sym_BSLASHglsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), - [anon_sym_BSLASHnewacronym] = ACTIONS(5105), - [anon_sym_BSLASHacrshort] = ACTIONS(5105), - [anon_sym_BSLASHAcrshort] = ACTIONS(5105), - [anon_sym_BSLASHACRshort] = ACTIONS(5105), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), - [anon_sym_BSLASHacrlong] = ACTIONS(5105), - [anon_sym_BSLASHAcrlong] = ACTIONS(5105), - [anon_sym_BSLASHACRlong] = ACTIONS(5105), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), - [anon_sym_BSLASHacrfull] = ACTIONS(5105), - [anon_sym_BSLASHAcrfull] = ACTIONS(5105), - [anon_sym_BSLASHACRfull] = ACTIONS(5105), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), - [anon_sym_BSLASHacs] = ACTIONS(5105), - [anon_sym_BSLASHAcs] = ACTIONS(5105), - [anon_sym_BSLASHacsp] = ACTIONS(5105), - [anon_sym_BSLASHAcsp] = ACTIONS(5105), - [anon_sym_BSLASHacl] = ACTIONS(5105), - [anon_sym_BSLASHAcl] = ACTIONS(5105), - [anon_sym_BSLASHaclp] = ACTIONS(5105), - [anon_sym_BSLASHAclp] = ACTIONS(5105), - [anon_sym_BSLASHacf] = ACTIONS(5105), - [anon_sym_BSLASHAcf] = ACTIONS(5105), - [anon_sym_BSLASHacfp] = ACTIONS(5105), - [anon_sym_BSLASHAcfp] = ACTIONS(5105), - [anon_sym_BSLASHac] = ACTIONS(5105), - [anon_sym_BSLASHAc] = ACTIONS(5105), - [anon_sym_BSLASHacp] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), - [anon_sym_BSLASHcolor] = ACTIONS(5105), - [anon_sym_BSLASHcolorbox] = ACTIONS(5105), - [anon_sym_BSLASHtextcolor] = ACTIONS(5105), - [anon_sym_BSLASHpagecolor] = ACTIONS(5105), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), - }, - [729] = { - [ts_builtin_sym_end] = ACTIONS(5107), - [sym_command_name] = ACTIONS(5109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_BSLASHpart] = ACTIONS(5109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddpart] = ACTIONS(5109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHchapter] = ACTIONS(5109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddchap] = ACTIONS(5109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsection] = ACTIONS(5109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddsec] = ACTIONS(5109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHparagraph] = ACTIONS(5109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHitem] = ACTIONS(5109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [anon_sym_RBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), - [anon_sym_BSLASHbegin] = ACTIONS(5109), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), - }, - [730] = { - [ts_builtin_sym_end] = ACTIONS(5111), - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_BSLASHpart] = ACTIONS(5113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddpart] = ACTIONS(5113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHchapter] = ACTIONS(5113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddchap] = ACTIONS(5113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsection] = ACTIONS(5113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddsec] = ACTIONS(5113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHparagraph] = ACTIONS(5113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHitem] = ACTIONS(5113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [anon_sym_RBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5111), - [anon_sym_BSLASHbegin] = ACTIONS(5113), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), - }, - [731] = { - [ts_builtin_sym_end] = ACTIONS(5115), - [sym_command_name] = ACTIONS(5117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_BSLASHpart] = ACTIONS(5117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddpart] = ACTIONS(5117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHchapter] = ACTIONS(5117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddchap] = ACTIONS(5117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsection] = ACTIONS(5117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddsec] = ACTIONS(5117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHparagraph] = ACTIONS(5117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHitem] = ACTIONS(5117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [anon_sym_RBRACE] = ACTIONS(5115), - [sym_word] = ACTIONS(5117), - [sym_placeholder] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym__] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5117), - [anon_sym_PIPE] = ACTIONS(5117), - [anon_sym_COLON] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5115), - [anon_sym_BSLASHbegin] = ACTIONS(5117), - [anon_sym_BSLASHusepackage] = ACTIONS(5117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5117), - [anon_sym_BSLASHinclude] = ACTIONS(5117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5117), - [anon_sym_BSLASHinput] = ACTIONS(5117), - [anon_sym_BSLASHsubfile] = ACTIONS(5117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5117), - [anon_sym_BSLASHbibliography] = ACTIONS(5117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5117), - [anon_sym_BSLASHincludesvg] = ACTIONS(5117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5117), - [anon_sym_BSLASHimport] = ACTIONS(5117), - [anon_sym_BSLASHsubimport] = ACTIONS(5117), - [anon_sym_BSLASHinputfrom] = ACTIONS(5117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5117), - [anon_sym_BSLASHincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHcaption] = ACTIONS(5117), - [anon_sym_BSLASHcite] = ACTIONS(5117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCite] = ACTIONS(5117), - [anon_sym_BSLASHnocite] = ACTIONS(5117), - [anon_sym_BSLASHcitet] = ACTIONS(5117), - [anon_sym_BSLASHcitep] = ACTIONS(5117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteyear] = ACTIONS(5117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitedate] = ACTIONS(5117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteurl] = ACTIONS(5117), - [anon_sym_BSLASHfullcite] = ACTIONS(5117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5117), - [anon_sym_BSLASHcitealt] = ACTIONS(5117), - [anon_sym_BSLASHcitealp] = ACTIONS(5117), - [anon_sym_BSLASHcitetext] = ACTIONS(5117), - [anon_sym_BSLASHparencite] = ACTIONS(5117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHParencite] = ACTIONS(5117), - [anon_sym_BSLASHfootcite] = ACTIONS(5117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5117), - [anon_sym_BSLASHtextcite] = ACTIONS(5117), - [anon_sym_BSLASHTextcite] = ACTIONS(5117), - [anon_sym_BSLASHsmartcite] = ACTIONS(5117), - [anon_sym_BSLASHSmartcite] = ACTIONS(5117), - [anon_sym_BSLASHsupercite] = ACTIONS(5117), - [anon_sym_BSLASHautocite] = ACTIONS(5117), - [anon_sym_BSLASHAutocite] = ACTIONS(5117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHvolcite] = ACTIONS(5117), - [anon_sym_BSLASHVolcite] = ACTIONS(5117), - [anon_sym_BSLASHpvolcite] = ACTIONS(5117), - [anon_sym_BSLASHPvolcite] = ACTIONS(5117), - [anon_sym_BSLASHfvolcite] = ACTIONS(5117), - [anon_sym_BSLASHftvolcite] = ACTIONS(5117), - [anon_sym_BSLASHsvolcite] = ACTIONS(5117), - [anon_sym_BSLASHSvolcite] = ACTIONS(5117), - [anon_sym_BSLASHtvolcite] = ACTIONS(5117), - [anon_sym_BSLASHTvolcite] = ACTIONS(5117), - [anon_sym_BSLASHavolcite] = ACTIONS(5117), - [anon_sym_BSLASHAvolcite] = ACTIONS(5117), - [anon_sym_BSLASHnotecite] = ACTIONS(5117), - [anon_sym_BSLASHNotecite] = ACTIONS(5117), - [anon_sym_BSLASHpnotecite] = ACTIONS(5117), - [anon_sym_BSLASHPnotecite] = ACTIONS(5117), - [anon_sym_BSLASHfnotecite] = ACTIONS(5117), - [anon_sym_BSLASHlabel] = ACTIONS(5117), - [anon_sym_BSLASHref] = ACTIONS(5117), - [anon_sym_BSLASHeqref] = ACTIONS(5117), - [anon_sym_BSLASHvref] = ACTIONS(5117), - [anon_sym_BSLASHVref] = ACTIONS(5117), - [anon_sym_BSLASHautoref] = ACTIONS(5117), - [anon_sym_BSLASHpageref] = ACTIONS(5117), - [anon_sym_BSLASHcref] = ACTIONS(5117), - [anon_sym_BSLASHCref] = ACTIONS(5117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnameCref] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHlabelcref] = ACTIONS(5117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnewlabel] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdef] = ACTIONS(5117), - [anon_sym_BSLASHlet] = ACTIONS(5117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5117), - [anon_sym_BSLASHgls] = ACTIONS(5117), - [anon_sym_BSLASHGls] = ACTIONS(5117), - [anon_sym_BSLASHGLS] = ACTIONS(5117), - [anon_sym_BSLASHglspl] = ACTIONS(5117), - [anon_sym_BSLASHGlspl] = ACTIONS(5117), - [anon_sym_BSLASHGLSpl] = ACTIONS(5117), - [anon_sym_BSLASHglsdisp] = ACTIONS(5117), - [anon_sym_BSLASHglslink] = ACTIONS(5117), - [anon_sym_BSLASHglstext] = ACTIONS(5117), - [anon_sym_BSLASHGlstext] = ACTIONS(5117), - [anon_sym_BSLASHGLStext] = ACTIONS(5117), - [anon_sym_BSLASHglsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5117), - [anon_sym_BSLASHglsplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSplural] = ACTIONS(5117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHglsname] = ACTIONS(5117), - [anon_sym_BSLASHGlsname] = ACTIONS(5117), - [anon_sym_BSLASHGLSname] = ACTIONS(5117), - [anon_sym_BSLASHglssymbol] = ACTIONS(5117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5117), - [anon_sym_BSLASHglsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5117), - [anon_sym_BSLASHglsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5117), - [anon_sym_BSLASHglsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5117), - [anon_sym_BSLASHglsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5117), - [anon_sym_BSLASHglsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5117), - [anon_sym_BSLASHnewacronym] = ACTIONS(5117), - [anon_sym_BSLASHacrshort] = ACTIONS(5117), - [anon_sym_BSLASHAcrshort] = ACTIONS(5117), - [anon_sym_BSLASHACRshort] = ACTIONS(5117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5117), - [anon_sym_BSLASHacrlong] = ACTIONS(5117), - [anon_sym_BSLASHAcrlong] = ACTIONS(5117), - [anon_sym_BSLASHACRlong] = ACTIONS(5117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5117), - [anon_sym_BSLASHacrfull] = ACTIONS(5117), - [anon_sym_BSLASHAcrfull] = ACTIONS(5117), - [anon_sym_BSLASHACRfull] = ACTIONS(5117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5117), - [anon_sym_BSLASHacs] = ACTIONS(5117), - [anon_sym_BSLASHAcs] = ACTIONS(5117), - [anon_sym_BSLASHacsp] = ACTIONS(5117), - [anon_sym_BSLASHAcsp] = ACTIONS(5117), - [anon_sym_BSLASHacl] = ACTIONS(5117), - [anon_sym_BSLASHAcl] = ACTIONS(5117), - [anon_sym_BSLASHaclp] = ACTIONS(5117), - [anon_sym_BSLASHAclp] = ACTIONS(5117), - [anon_sym_BSLASHacf] = ACTIONS(5117), - [anon_sym_BSLASHAcf] = ACTIONS(5117), - [anon_sym_BSLASHacfp] = ACTIONS(5117), - [anon_sym_BSLASHAcfp] = ACTIONS(5117), - [anon_sym_BSLASHac] = ACTIONS(5117), - [anon_sym_BSLASHAc] = ACTIONS(5117), - [anon_sym_BSLASHacp] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5117), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5117), - [anon_sym_BSLASHcolor] = ACTIONS(5117), - [anon_sym_BSLASHcolorbox] = ACTIONS(5117), - [anon_sym_BSLASHtextcolor] = ACTIONS(5117), - [anon_sym_BSLASHpagecolor] = ACTIONS(5117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5117), - }, - [732] = { - [ts_builtin_sym_end] = ACTIONS(5119), - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_BSLASHpart] = ACTIONS(5121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddpart] = ACTIONS(5121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHchapter] = ACTIONS(5121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddchap] = ACTIONS(5121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsection] = ACTIONS(5121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddsec] = ACTIONS(5121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHparagraph] = ACTIONS(5121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHitem] = ACTIONS(5121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_RBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASHbegin] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), - }, - [733] = { - [ts_builtin_sym_end] = ACTIONS(129), - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_BSLASHpart] = ACTIONS(131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddpart] = ACTIONS(131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHchapter] = ACTIONS(131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddchap] = ACTIONS(131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(129), - [anon_sym_BSLASHsection] = ACTIONS(131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddsec] = ACTIONS(131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHparagraph] = ACTIONS(131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHitem] = ACTIONS(131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), - }, - [734] = { - [ts_builtin_sym_end] = ACTIONS(5123), - [sym_command_name] = ACTIONS(5125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_BSLASHpart] = ACTIONS(5125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddpart] = ACTIONS(5125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHchapter] = ACTIONS(5125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddchap] = ACTIONS(5125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsection] = ACTIONS(5125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddsec] = ACTIONS(5125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHparagraph] = ACTIONS(5125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHitem] = ACTIONS(5125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_RBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASHbegin] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), - }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(5127), - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_BSLASHpart] = ACTIONS(5129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddpart] = ACTIONS(5129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHchapter] = ACTIONS(5129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddchap] = ACTIONS(5129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsection] = ACTIONS(5129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddsec] = ACTIONS(5129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHparagraph] = ACTIONS(5129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHitem] = ACTIONS(5129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_RBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASHbegin] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), - }, - [736] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1733), - [sym_operator] = STATE(1509), - [sym_key_value_pair] = STATE(1786), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5131), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [737] = { - [ts_builtin_sym_end] = ACTIONS(5133), - [sym_command_name] = ACTIONS(5135), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_BSLASHpart] = ACTIONS(5135), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddpart] = ACTIONS(5135), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHchapter] = ACTIONS(5135), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddchap] = ACTIONS(5135), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsection] = ACTIONS(5135), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddsec] = ACTIONS(5135), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHparagraph] = ACTIONS(5135), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHitem] = ACTIONS(5135), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [anon_sym_RBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASHbegin] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), - }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(5137), - [sym_command_name] = ACTIONS(5139), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_BSLASHpart] = ACTIONS(5139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddpart] = ACTIONS(5139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHchapter] = ACTIONS(5139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddchap] = ACTIONS(5139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsection] = ACTIONS(5139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddsec] = ACTIONS(5139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHparagraph] = ACTIONS(5139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHitem] = ACTIONS(5139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_RBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASHbegin] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), - }, - [739] = { - [ts_builtin_sym_end] = ACTIONS(5141), - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_BSLASHpart] = ACTIONS(5143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddpart] = ACTIONS(5143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHchapter] = ACTIONS(5143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddchap] = ACTIONS(5143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsection] = ACTIONS(5143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddsec] = ACTIONS(5143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHparagraph] = ACTIONS(5143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHitem] = ACTIONS(5143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [anon_sym_RBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASHbegin] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), - }, - [740] = { - [ts_builtin_sym_end] = ACTIONS(5145), - [sym_command_name] = ACTIONS(5147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5145), - [anon_sym_RPAREN] = ACTIONS(5145), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_RBRACK] = ACTIONS(5145), - [anon_sym_COMMA] = ACTIONS(5145), - [anon_sym_EQ] = ACTIONS(5145), - [anon_sym_BSLASHpart] = ACTIONS(5147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddpart] = ACTIONS(5147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5145), - [anon_sym_BSLASHchapter] = ACTIONS(5147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddchap] = ACTIONS(5147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsection] = ACTIONS(5147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddsec] = ACTIONS(5147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubsection] = ACTIONS(5147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHparagraph] = ACTIONS(5147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5145), - [anon_sym_BSLASHitem] = ACTIONS(5147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5145), - [anon_sym_LBRACE] = ACTIONS(5145), - [anon_sym_RBRACE] = ACTIONS(5145), - [sym_word] = ACTIONS(5147), - [sym_placeholder] = ACTIONS(5145), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_CARET] = ACTIONS(5147), - [anon_sym__] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5147), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5145), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5145), - [anon_sym_BSLASHbegin] = ACTIONS(5147), - [anon_sym_BSLASHusepackage] = ACTIONS(5147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5147), - [anon_sym_BSLASHinclude] = ACTIONS(5147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5147), - [anon_sym_BSLASHinput] = ACTIONS(5147), - [anon_sym_BSLASHsubfile] = ACTIONS(5147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5147), - [anon_sym_BSLASHbibliography] = ACTIONS(5147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5147), - [anon_sym_BSLASHincludesvg] = ACTIONS(5147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5147), - [anon_sym_BSLASHimport] = ACTIONS(5147), - [anon_sym_BSLASHsubimport] = ACTIONS(5147), - [anon_sym_BSLASHinputfrom] = ACTIONS(5147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5147), - [anon_sym_BSLASHincludefrom] = ACTIONS(5147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5147), - [anon_sym_BSLASHcaption] = ACTIONS(5147), - [anon_sym_BSLASHcite] = ACTIONS(5147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCite] = ACTIONS(5147), - [anon_sym_BSLASHnocite] = ACTIONS(5147), - [anon_sym_BSLASHcitet] = ACTIONS(5147), - [anon_sym_BSLASHcitep] = ACTIONS(5147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteyear] = ACTIONS(5147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitedate] = ACTIONS(5147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteurl] = ACTIONS(5147), - [anon_sym_BSLASHfullcite] = ACTIONS(5147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5147), - [anon_sym_BSLASHcitealt] = ACTIONS(5147), - [anon_sym_BSLASHcitealp] = ACTIONS(5147), - [anon_sym_BSLASHcitetext] = ACTIONS(5147), - [anon_sym_BSLASHparencite] = ACTIONS(5147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHParencite] = ACTIONS(5147), - [anon_sym_BSLASHfootcite] = ACTIONS(5147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5147), - [anon_sym_BSLASHtextcite] = ACTIONS(5147), - [anon_sym_BSLASHTextcite] = ACTIONS(5147), - [anon_sym_BSLASHsmartcite] = ACTIONS(5147), - [anon_sym_BSLASHSmartcite] = ACTIONS(5147), - [anon_sym_BSLASHsupercite] = ACTIONS(5147), - [anon_sym_BSLASHautocite] = ACTIONS(5147), - [anon_sym_BSLASHAutocite] = ACTIONS(5147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHvolcite] = ACTIONS(5147), - [anon_sym_BSLASHVolcite] = ACTIONS(5147), - [anon_sym_BSLASHpvolcite] = ACTIONS(5147), - [anon_sym_BSLASHPvolcite] = ACTIONS(5147), - [anon_sym_BSLASHfvolcite] = ACTIONS(5147), - [anon_sym_BSLASHftvolcite] = ACTIONS(5147), - [anon_sym_BSLASHsvolcite] = ACTIONS(5147), - [anon_sym_BSLASHSvolcite] = ACTIONS(5147), - [anon_sym_BSLASHtvolcite] = ACTIONS(5147), - [anon_sym_BSLASHTvolcite] = ACTIONS(5147), - [anon_sym_BSLASHavolcite] = ACTIONS(5147), - [anon_sym_BSLASHAvolcite] = ACTIONS(5147), - [anon_sym_BSLASHnotecite] = ACTIONS(5147), - [anon_sym_BSLASHNotecite] = ACTIONS(5147), - [anon_sym_BSLASHpnotecite] = ACTIONS(5147), - [anon_sym_BSLASHPnotecite] = ACTIONS(5147), - [anon_sym_BSLASHfnotecite] = ACTIONS(5147), - [anon_sym_BSLASHlabel] = ACTIONS(5147), - [anon_sym_BSLASHref] = ACTIONS(5147), - [anon_sym_BSLASHeqref] = ACTIONS(5147), - [anon_sym_BSLASHvref] = ACTIONS(5147), - [anon_sym_BSLASHVref] = ACTIONS(5147), - [anon_sym_BSLASHautoref] = ACTIONS(5147), - [anon_sym_BSLASHpageref] = ACTIONS(5147), - [anon_sym_BSLASHcref] = ACTIONS(5147), - [anon_sym_BSLASHCref] = ACTIONS(5147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5145), - [anon_sym_BSLASHnamecref] = ACTIONS(5147), - [anon_sym_BSLASHnameCref] = ACTIONS(5147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5147), - [anon_sym_BSLASHlabelcref] = ACTIONS(5147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5147), - [anon_sym_BSLASHcrefrange] = ACTIONS(5147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5145), - [anon_sym_BSLASHnewlabel] = ACTIONS(5147), - [anon_sym_BSLASHnewcommand] = ACTIONS(5147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5145), - [anon_sym_BSLASHdef] = ACTIONS(5147), - [anon_sym_BSLASHlet] = ACTIONS(5147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5147), - [anon_sym_BSLASHgls] = ACTIONS(5147), - [anon_sym_BSLASHGls] = ACTIONS(5147), - [anon_sym_BSLASHGLS] = ACTIONS(5147), - [anon_sym_BSLASHglspl] = ACTIONS(5147), - [anon_sym_BSLASHGlspl] = ACTIONS(5147), - [anon_sym_BSLASHGLSpl] = ACTIONS(5147), - [anon_sym_BSLASHglsdisp] = ACTIONS(5147), - [anon_sym_BSLASHglslink] = ACTIONS(5147), - [anon_sym_BSLASHglstext] = ACTIONS(5147), - [anon_sym_BSLASHGlstext] = ACTIONS(5147), - [anon_sym_BSLASHGLStext] = ACTIONS(5147), - [anon_sym_BSLASHglsfirst] = ACTIONS(5147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5147), - [anon_sym_BSLASHglsplural] = ACTIONS(5147), - [anon_sym_BSLASHGlsplural] = ACTIONS(5147), - [anon_sym_BSLASHGLSplural] = ACTIONS(5147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHglsname] = ACTIONS(5147), - [anon_sym_BSLASHGlsname] = ACTIONS(5147), - [anon_sym_BSLASHGLSname] = ACTIONS(5147), - [anon_sym_BSLASHglssymbol] = ACTIONS(5147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5147), - [anon_sym_BSLASHglsdesc] = ACTIONS(5147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5147), - [anon_sym_BSLASHglsuseri] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5147), - [anon_sym_BSLASHglsuserii] = ACTIONS(5147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5147), - [anon_sym_BSLASHglsuserv] = ACTIONS(5147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5147), - [anon_sym_BSLASHglsuservi] = ACTIONS(5147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5147), - [anon_sym_BSLASHnewacronym] = ACTIONS(5147), - [anon_sym_BSLASHacrshort] = ACTIONS(5147), - [anon_sym_BSLASHAcrshort] = ACTIONS(5147), - [anon_sym_BSLASHACRshort] = ACTIONS(5147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5147), - [anon_sym_BSLASHacrlong] = ACTIONS(5147), - [anon_sym_BSLASHAcrlong] = ACTIONS(5147), - [anon_sym_BSLASHACRlong] = ACTIONS(5147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5147), - [anon_sym_BSLASHacrfull] = ACTIONS(5147), - [anon_sym_BSLASHAcrfull] = ACTIONS(5147), - [anon_sym_BSLASHACRfull] = ACTIONS(5147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5147), - [anon_sym_BSLASHacs] = ACTIONS(5147), - [anon_sym_BSLASHAcs] = ACTIONS(5147), - [anon_sym_BSLASHacsp] = ACTIONS(5147), - [anon_sym_BSLASHAcsp] = ACTIONS(5147), - [anon_sym_BSLASHacl] = ACTIONS(5147), - [anon_sym_BSLASHAcl] = ACTIONS(5147), - [anon_sym_BSLASHaclp] = ACTIONS(5147), - [anon_sym_BSLASHAclp] = ACTIONS(5147), - [anon_sym_BSLASHacf] = ACTIONS(5147), - [anon_sym_BSLASHAcf] = ACTIONS(5147), - [anon_sym_BSLASHacfp] = ACTIONS(5147), - [anon_sym_BSLASHAcfp] = ACTIONS(5147), - [anon_sym_BSLASHac] = ACTIONS(5147), - [anon_sym_BSLASHAc] = ACTIONS(5147), - [anon_sym_BSLASHacp] = ACTIONS(5147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5147), - [anon_sym_BSLASHcolor] = ACTIONS(5147), - [anon_sym_BSLASHcolorbox] = ACTIONS(5147), - [anon_sym_BSLASHtextcolor] = ACTIONS(5147), - [anon_sym_BSLASHpagecolor] = ACTIONS(5147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5147), - }, - [741] = { - [sym_curly_group] = STATE(997), - [sym_command_name] = ACTIONS(4765), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4765), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_RPAREN] = ACTIONS(4763), - [anon_sym_LBRACK] = ACTIONS(4763), - [anon_sym_RBRACK] = ACTIONS(4763), - [anon_sym_COMMA] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(4763), - [anon_sym_BSLASHpart] = ACTIONS(4765), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddpart] = ACTIONS(4765), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4763), - [anon_sym_BSLASHchapter] = ACTIONS(4765), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddchap] = ACTIONS(4765), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsection] = ACTIONS(4765), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddsec] = ACTIONS(4765), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubsection] = ACTIONS(4765), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4765), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHparagraph] = ACTIONS(4765), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4765), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4763), - [anon_sym_BSLASHitem] = ACTIONS(4765), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4763), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(4765), - [sym_placeholder] = ACTIONS(4763), - [anon_sym_PLUS] = ACTIONS(4765), - [anon_sym_DASH] = ACTIONS(4765), - [anon_sym_STAR] = ACTIONS(4765), - [anon_sym_SLASH] = ACTIONS(4765), - [anon_sym_CARET] = ACTIONS(4765), - [anon_sym__] = ACTIONS(4765), - [anon_sym_LT] = ACTIONS(4765), - [anon_sym_GT] = ACTIONS(4765), - [anon_sym_BANG] = ACTIONS(4765), - [anon_sym_PIPE] = ACTIONS(4765), - [anon_sym_COLON] = ACTIONS(4765), - [anon_sym_SQUOTE] = ACTIONS(4765), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4763), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4763), - [anon_sym_DOLLAR] = ACTIONS(4765), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4763), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4763), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4763), - [anon_sym_BSLASHbegin] = ACTIONS(4765), - [anon_sym_BSLASHusepackage] = ACTIONS(4765), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4765), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4765), - [anon_sym_BSLASHinclude] = ACTIONS(4765), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4765), - [anon_sym_BSLASHinput] = ACTIONS(4765), - [anon_sym_BSLASHsubfile] = ACTIONS(4765), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4765), - [anon_sym_BSLASHbibliography] = ACTIONS(4765), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4765), - [anon_sym_BSLASHincludesvg] = ACTIONS(4765), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4765), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4765), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4765), - [anon_sym_BSLASHimport] = ACTIONS(4765), - [anon_sym_BSLASHsubimport] = ACTIONS(4765), - [anon_sym_BSLASHinputfrom] = ACTIONS(4765), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4765), - [anon_sym_BSLASHincludefrom] = ACTIONS(4765), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4765), - [anon_sym_BSLASHcaption] = ACTIONS(4765), - [anon_sym_BSLASHcite] = ACTIONS(4765), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCite] = ACTIONS(4765), - [anon_sym_BSLASHnocite] = ACTIONS(4765), - [anon_sym_BSLASHcitet] = ACTIONS(4765), - [anon_sym_BSLASHcitep] = ACTIONS(4765), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteauthor] = ACTIONS(4765), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4765), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitetitle] = ACTIONS(4765), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteyear] = ACTIONS(4765), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitedate] = ACTIONS(4765), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteurl] = ACTIONS(4765), - [anon_sym_BSLASHfullcite] = ACTIONS(4765), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4765), - [anon_sym_BSLASHcitealt] = ACTIONS(4765), - [anon_sym_BSLASHcitealp] = ACTIONS(4765), - [anon_sym_BSLASHcitetext] = ACTIONS(4765), - [anon_sym_BSLASHparencite] = ACTIONS(4765), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHParencite] = ACTIONS(4765), - [anon_sym_BSLASHfootcite] = ACTIONS(4765), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4765), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4765), - [anon_sym_BSLASHtextcite] = ACTIONS(4765), - [anon_sym_BSLASHTextcite] = ACTIONS(4765), - [anon_sym_BSLASHsmartcite] = ACTIONS(4765), - [anon_sym_BSLASHSmartcite] = ACTIONS(4765), - [anon_sym_BSLASHsupercite] = ACTIONS(4765), - [anon_sym_BSLASHautocite] = ACTIONS(4765), - [anon_sym_BSLASHAutocite] = ACTIONS(4765), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHvolcite] = ACTIONS(4765), - [anon_sym_BSLASHVolcite] = ACTIONS(4765), - [anon_sym_BSLASHpvolcite] = ACTIONS(4765), - [anon_sym_BSLASHPvolcite] = ACTIONS(4765), - [anon_sym_BSLASHfvolcite] = ACTIONS(4765), - [anon_sym_BSLASHftvolcite] = ACTIONS(4765), - [anon_sym_BSLASHsvolcite] = ACTIONS(4765), - [anon_sym_BSLASHSvolcite] = ACTIONS(4765), - [anon_sym_BSLASHtvolcite] = ACTIONS(4765), - [anon_sym_BSLASHTvolcite] = ACTIONS(4765), - [anon_sym_BSLASHavolcite] = ACTIONS(4765), - [anon_sym_BSLASHAvolcite] = ACTIONS(4765), - [anon_sym_BSLASHnotecite] = ACTIONS(4765), - [anon_sym_BSLASHNotecite] = ACTIONS(4765), - [anon_sym_BSLASHpnotecite] = ACTIONS(4765), - [anon_sym_BSLASHPnotecite] = ACTIONS(4765), - [anon_sym_BSLASHfnotecite] = ACTIONS(4765), - [anon_sym_BSLASHlabel] = ACTIONS(4765), - [anon_sym_BSLASHref] = ACTIONS(4765), - [anon_sym_BSLASHeqref] = ACTIONS(4765), - [anon_sym_BSLASHvref] = ACTIONS(4765), - [anon_sym_BSLASHVref] = ACTIONS(4765), - [anon_sym_BSLASHautoref] = ACTIONS(4765), - [anon_sym_BSLASHpageref] = ACTIONS(4765), - [anon_sym_BSLASHcref] = ACTIONS(4765), - [anon_sym_BSLASHCref] = ACTIONS(4765), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4763), - [anon_sym_BSLASHnamecref] = ACTIONS(4765), - [anon_sym_BSLASHnameCref] = ACTIONS(4765), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4765), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4765), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4765), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4765), - [anon_sym_BSLASHlabelcref] = ACTIONS(4765), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4765), - [anon_sym_BSLASHcrefrange] = ACTIONS(4765), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCrefrange] = ACTIONS(4765), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4763), - [anon_sym_BSLASHnewlabel] = ACTIONS(4765), - [anon_sym_BSLASHnewcommand] = ACTIONS(4765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4763), - [anon_sym_BSLASHdef] = ACTIONS(4765), - [anon_sym_BSLASHlet] = ACTIONS(4765), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4765), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4765), - [anon_sym_BSLASHgls] = ACTIONS(4765), - [anon_sym_BSLASHGls] = ACTIONS(4765), - [anon_sym_BSLASHGLS] = ACTIONS(4765), - [anon_sym_BSLASHglspl] = ACTIONS(4765), - [anon_sym_BSLASHGlspl] = ACTIONS(4765), - [anon_sym_BSLASHGLSpl] = ACTIONS(4765), - [anon_sym_BSLASHglsdisp] = ACTIONS(4765), - [anon_sym_BSLASHglslink] = ACTIONS(4765), - [anon_sym_BSLASHglstext] = ACTIONS(4765), - [anon_sym_BSLASHGlstext] = ACTIONS(4765), - [anon_sym_BSLASHGLStext] = ACTIONS(4765), - [anon_sym_BSLASHglsfirst] = ACTIONS(4765), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4765), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4765), - [anon_sym_BSLASHglsplural] = ACTIONS(4765), - [anon_sym_BSLASHGlsplural] = ACTIONS(4765), - [anon_sym_BSLASHGLSplural] = ACTIONS(4765), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHglsname] = ACTIONS(4765), - [anon_sym_BSLASHGlsname] = ACTIONS(4765), - [anon_sym_BSLASHGLSname] = ACTIONS(4765), - [anon_sym_BSLASHglssymbol] = ACTIONS(4765), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4765), - [anon_sym_BSLASHglsdesc] = ACTIONS(4765), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4765), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4765), - [anon_sym_BSLASHglsuseri] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4765), - [anon_sym_BSLASHglsuserii] = ACTIONS(4765), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4765), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4765), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4765), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4765), - [anon_sym_BSLASHglsuserv] = ACTIONS(4765), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4765), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4765), - [anon_sym_BSLASHglsuservi] = ACTIONS(4765), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4765), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4765), - [anon_sym_BSLASHnewacronym] = ACTIONS(4765), - [anon_sym_BSLASHacrshort] = ACTIONS(4765), - [anon_sym_BSLASHAcrshort] = ACTIONS(4765), - [anon_sym_BSLASHACRshort] = ACTIONS(4765), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4765), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4765), - [anon_sym_BSLASHacrlong] = ACTIONS(4765), - [anon_sym_BSLASHAcrlong] = ACTIONS(4765), - [anon_sym_BSLASHACRlong] = ACTIONS(4765), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4765), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4765), - [anon_sym_BSLASHacrfull] = ACTIONS(4765), - [anon_sym_BSLASHAcrfull] = ACTIONS(4765), - [anon_sym_BSLASHACRfull] = ACTIONS(4765), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4765), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4765), - [anon_sym_BSLASHacs] = ACTIONS(4765), - [anon_sym_BSLASHAcs] = ACTIONS(4765), - [anon_sym_BSLASHacsp] = ACTIONS(4765), - [anon_sym_BSLASHAcsp] = ACTIONS(4765), - [anon_sym_BSLASHacl] = ACTIONS(4765), - [anon_sym_BSLASHAcl] = ACTIONS(4765), - [anon_sym_BSLASHaclp] = ACTIONS(4765), - [anon_sym_BSLASHAclp] = ACTIONS(4765), - [anon_sym_BSLASHacf] = ACTIONS(4765), - [anon_sym_BSLASHAcf] = ACTIONS(4765), - [anon_sym_BSLASHacfp] = ACTIONS(4765), - [anon_sym_BSLASHAcfp] = ACTIONS(4765), - [anon_sym_BSLASHac] = ACTIONS(4765), - [anon_sym_BSLASHAc] = ACTIONS(4765), - [anon_sym_BSLASHacp] = ACTIONS(4765), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4765), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4765), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4765), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4765), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4765), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4765), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4765), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4765), - [anon_sym_BSLASHcolor] = ACTIONS(4765), - [anon_sym_BSLASHcolorbox] = ACTIONS(4765), - [anon_sym_BSLASHtextcolor] = ACTIONS(4765), - [anon_sym_BSLASHpagecolor] = ACTIONS(4765), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4765), - }, - [742] = { - [ts_builtin_sym_end] = ACTIONS(5149), - [sym_command_name] = ACTIONS(5151), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5149), - [anon_sym_RPAREN] = ACTIONS(5149), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_RBRACK] = ACTIONS(5149), - [anon_sym_COMMA] = ACTIONS(5149), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_BSLASHpart] = ACTIONS(5151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddpart] = ACTIONS(5151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5149), - [anon_sym_BSLASHchapter] = ACTIONS(5151), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddchap] = ACTIONS(5151), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsection] = ACTIONS(5151), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddsec] = ACTIONS(5151), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubsection] = ACTIONS(5151), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5151), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHparagraph] = ACTIONS(5151), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5151), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5149), - [anon_sym_BSLASHitem] = ACTIONS(5151), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5149), - [anon_sym_LBRACE] = ACTIONS(5149), - [anon_sym_RBRACE] = ACTIONS(5149), - [sym_word] = ACTIONS(5151), - [sym_placeholder] = ACTIONS(5149), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_CARET] = ACTIONS(5151), - [anon_sym__] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5151), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5149), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5149), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5149), - [anon_sym_BSLASHbegin] = ACTIONS(5151), - [anon_sym_BSLASHusepackage] = ACTIONS(5151), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5151), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5151), - [anon_sym_BSLASHinclude] = ACTIONS(5151), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), - [anon_sym_BSLASHinput] = ACTIONS(5151), - [anon_sym_BSLASHsubfile] = ACTIONS(5151), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5151), - [anon_sym_BSLASHbibliography] = ACTIONS(5151), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5151), - [anon_sym_BSLASHincludesvg] = ACTIONS(5151), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5151), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5151), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5151), - [anon_sym_BSLASHimport] = ACTIONS(5151), - [anon_sym_BSLASHsubimport] = ACTIONS(5151), - [anon_sym_BSLASHinputfrom] = ACTIONS(5151), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5151), - [anon_sym_BSLASHincludefrom] = ACTIONS(5151), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5151), - [anon_sym_BSLASHcaption] = ACTIONS(5151), - [anon_sym_BSLASHcite] = ACTIONS(5151), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCite] = ACTIONS(5151), - [anon_sym_BSLASHnocite] = ACTIONS(5151), - [anon_sym_BSLASHcitet] = ACTIONS(5151), - [anon_sym_BSLASHcitep] = ACTIONS(5151), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteyear] = ACTIONS(5151), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitedate] = ACTIONS(5151), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteurl] = ACTIONS(5151), - [anon_sym_BSLASHfullcite] = ACTIONS(5151), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5151), - [anon_sym_BSLASHcitealt] = ACTIONS(5151), - [anon_sym_BSLASHcitealp] = ACTIONS(5151), - [anon_sym_BSLASHcitetext] = ACTIONS(5151), - [anon_sym_BSLASHparencite] = ACTIONS(5151), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHParencite] = ACTIONS(5151), - [anon_sym_BSLASHfootcite] = ACTIONS(5151), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5151), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5151), - [anon_sym_BSLASHtextcite] = ACTIONS(5151), - [anon_sym_BSLASHTextcite] = ACTIONS(5151), - [anon_sym_BSLASHsmartcite] = ACTIONS(5151), - [anon_sym_BSLASHSmartcite] = ACTIONS(5151), - [anon_sym_BSLASHsupercite] = ACTIONS(5151), - [anon_sym_BSLASHautocite] = ACTIONS(5151), - [anon_sym_BSLASHAutocite] = ACTIONS(5151), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHvolcite] = ACTIONS(5151), - [anon_sym_BSLASHVolcite] = ACTIONS(5151), - [anon_sym_BSLASHpvolcite] = ACTIONS(5151), - [anon_sym_BSLASHPvolcite] = ACTIONS(5151), - [anon_sym_BSLASHfvolcite] = ACTIONS(5151), - [anon_sym_BSLASHftvolcite] = ACTIONS(5151), - [anon_sym_BSLASHsvolcite] = ACTIONS(5151), - [anon_sym_BSLASHSvolcite] = ACTIONS(5151), - [anon_sym_BSLASHtvolcite] = ACTIONS(5151), - [anon_sym_BSLASHTvolcite] = ACTIONS(5151), - [anon_sym_BSLASHavolcite] = ACTIONS(5151), - [anon_sym_BSLASHAvolcite] = ACTIONS(5151), - [anon_sym_BSLASHnotecite] = ACTIONS(5151), - [anon_sym_BSLASHNotecite] = ACTIONS(5151), - [anon_sym_BSLASHpnotecite] = ACTIONS(5151), - [anon_sym_BSLASHPnotecite] = ACTIONS(5151), - [anon_sym_BSLASHfnotecite] = ACTIONS(5151), - [anon_sym_BSLASHlabel] = ACTIONS(5151), - [anon_sym_BSLASHref] = ACTIONS(5151), - [anon_sym_BSLASHeqref] = ACTIONS(5151), - [anon_sym_BSLASHvref] = ACTIONS(5151), - [anon_sym_BSLASHVref] = ACTIONS(5151), - [anon_sym_BSLASHautoref] = ACTIONS(5151), - [anon_sym_BSLASHpageref] = ACTIONS(5151), - [anon_sym_BSLASHcref] = ACTIONS(5151), - [anon_sym_BSLASHCref] = ACTIONS(5151), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5149), - [anon_sym_BSLASHnamecref] = ACTIONS(5151), - [anon_sym_BSLASHnameCref] = ACTIONS(5151), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5151), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5151), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5151), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5151), - [anon_sym_BSLASHlabelcref] = ACTIONS(5151), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5151), - [anon_sym_BSLASHcrefrange] = ACTIONS(5151), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5149), - [anon_sym_BSLASHnewlabel] = ACTIONS(5151), - [anon_sym_BSLASHnewcommand] = ACTIONS(5151), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5149), - [anon_sym_BSLASHdef] = ACTIONS(5151), - [anon_sym_BSLASHlet] = ACTIONS(5151), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5151), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5151), - [anon_sym_BSLASHgls] = ACTIONS(5151), - [anon_sym_BSLASHGls] = ACTIONS(5151), - [anon_sym_BSLASHGLS] = ACTIONS(5151), - [anon_sym_BSLASHglspl] = ACTIONS(5151), - [anon_sym_BSLASHGlspl] = ACTIONS(5151), - [anon_sym_BSLASHGLSpl] = ACTIONS(5151), - [anon_sym_BSLASHglsdisp] = ACTIONS(5151), - [anon_sym_BSLASHglslink] = ACTIONS(5151), - [anon_sym_BSLASHglstext] = ACTIONS(5151), - [anon_sym_BSLASHGlstext] = ACTIONS(5151), - [anon_sym_BSLASHGLStext] = ACTIONS(5151), - [anon_sym_BSLASHglsfirst] = ACTIONS(5151), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5151), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5151), - [anon_sym_BSLASHglsplural] = ACTIONS(5151), - [anon_sym_BSLASHGlsplural] = ACTIONS(5151), - [anon_sym_BSLASHGLSplural] = ACTIONS(5151), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHglsname] = ACTIONS(5151), - [anon_sym_BSLASHGlsname] = ACTIONS(5151), - [anon_sym_BSLASHGLSname] = ACTIONS(5151), - [anon_sym_BSLASHglssymbol] = ACTIONS(5151), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5151), - [anon_sym_BSLASHglsdesc] = ACTIONS(5151), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5151), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5151), - [anon_sym_BSLASHglsuseri] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5151), - [anon_sym_BSLASHglsuserii] = ACTIONS(5151), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5151), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5151), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5151), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5151), - [anon_sym_BSLASHglsuserv] = ACTIONS(5151), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5151), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5151), - [anon_sym_BSLASHglsuservi] = ACTIONS(5151), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5151), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5151), - [anon_sym_BSLASHnewacronym] = ACTIONS(5151), - [anon_sym_BSLASHacrshort] = ACTIONS(5151), - [anon_sym_BSLASHAcrshort] = ACTIONS(5151), - [anon_sym_BSLASHACRshort] = ACTIONS(5151), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5151), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5151), - [anon_sym_BSLASHacrlong] = ACTIONS(5151), - [anon_sym_BSLASHAcrlong] = ACTIONS(5151), - [anon_sym_BSLASHACRlong] = ACTIONS(5151), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5151), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5151), - [anon_sym_BSLASHacrfull] = ACTIONS(5151), - [anon_sym_BSLASHAcrfull] = ACTIONS(5151), - [anon_sym_BSLASHACRfull] = ACTIONS(5151), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5151), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5151), - [anon_sym_BSLASHacs] = ACTIONS(5151), - [anon_sym_BSLASHAcs] = ACTIONS(5151), - [anon_sym_BSLASHacsp] = ACTIONS(5151), - [anon_sym_BSLASHAcsp] = ACTIONS(5151), - [anon_sym_BSLASHacl] = ACTIONS(5151), - [anon_sym_BSLASHAcl] = ACTIONS(5151), - [anon_sym_BSLASHaclp] = ACTIONS(5151), - [anon_sym_BSLASHAclp] = ACTIONS(5151), - [anon_sym_BSLASHacf] = ACTIONS(5151), - [anon_sym_BSLASHAcf] = ACTIONS(5151), - [anon_sym_BSLASHacfp] = ACTIONS(5151), - [anon_sym_BSLASHAcfp] = ACTIONS(5151), - [anon_sym_BSLASHac] = ACTIONS(5151), - [anon_sym_BSLASHAc] = ACTIONS(5151), - [anon_sym_BSLASHacp] = ACTIONS(5151), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5151), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5151), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5151), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5151), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5151), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5151), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5151), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5151), - [anon_sym_BSLASHcolor] = ACTIONS(5151), - [anon_sym_BSLASHcolorbox] = ACTIONS(5151), - [anon_sym_BSLASHtextcolor] = ACTIONS(5151), - [anon_sym_BSLASHpagecolor] = ACTIONS(5151), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5151), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5151), - }, - [743] = { - [ts_builtin_sym_end] = ACTIONS(5153), - [sym_command_name] = ACTIONS(5155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5153), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_BSLASHpart] = ACTIONS(5155), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddpart] = ACTIONS(5155), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHchapter] = ACTIONS(5155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddchap] = ACTIONS(5155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsection] = ACTIONS(5155), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddsec] = ACTIONS(5155), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHparagraph] = ACTIONS(5155), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHitem] = ACTIONS(5155), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5153), - [anon_sym_RBRACE] = ACTIONS(5153), - [sym_word] = ACTIONS(5155), - [sym_placeholder] = ACTIONS(5153), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5155), - [anon_sym__] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5155), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5153), - [anon_sym_BSLASHbegin] = ACTIONS(5155), - [anon_sym_BSLASHusepackage] = ACTIONS(5155), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5155), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5155), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5155), - [anon_sym_BSLASHbibliography] = ACTIONS(5155), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5155), - [anon_sym_BSLASHincludesvg] = ACTIONS(5155), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5155), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5155), - [anon_sym_BSLASHimport] = ACTIONS(5155), - [anon_sym_BSLASHsubimport] = ACTIONS(5155), - [anon_sym_BSLASHinputfrom] = ACTIONS(5155), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5155), - [anon_sym_BSLASHincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHcaption] = ACTIONS(5155), - [anon_sym_BSLASHcite] = ACTIONS(5155), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCite] = ACTIONS(5155), - [anon_sym_BSLASHnocite] = ACTIONS(5155), - [anon_sym_BSLASHcitet] = ACTIONS(5155), - [anon_sym_BSLASHcitep] = ACTIONS(5155), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteyear] = ACTIONS(5155), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitedate] = ACTIONS(5155), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteurl] = ACTIONS(5155), - [anon_sym_BSLASHfullcite] = ACTIONS(5155), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5155), - [anon_sym_BSLASHcitealt] = ACTIONS(5155), - [anon_sym_BSLASHcitealp] = ACTIONS(5155), - [anon_sym_BSLASHcitetext] = ACTIONS(5155), - [anon_sym_BSLASHparencite] = ACTIONS(5155), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHParencite] = ACTIONS(5155), - [anon_sym_BSLASHfootcite] = ACTIONS(5155), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5155), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5155), - [anon_sym_BSLASHtextcite] = ACTIONS(5155), - [anon_sym_BSLASHTextcite] = ACTIONS(5155), - [anon_sym_BSLASHsmartcite] = ACTIONS(5155), - [anon_sym_BSLASHSmartcite] = ACTIONS(5155), - [anon_sym_BSLASHsupercite] = ACTIONS(5155), - [anon_sym_BSLASHautocite] = ACTIONS(5155), - [anon_sym_BSLASHAutocite] = ACTIONS(5155), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHvolcite] = ACTIONS(5155), - [anon_sym_BSLASHVolcite] = ACTIONS(5155), - [anon_sym_BSLASHpvolcite] = ACTIONS(5155), - [anon_sym_BSLASHPvolcite] = ACTIONS(5155), - [anon_sym_BSLASHfvolcite] = ACTIONS(5155), - [anon_sym_BSLASHftvolcite] = ACTIONS(5155), - [anon_sym_BSLASHsvolcite] = ACTIONS(5155), - [anon_sym_BSLASHSvolcite] = ACTIONS(5155), - [anon_sym_BSLASHtvolcite] = ACTIONS(5155), - [anon_sym_BSLASHTvolcite] = ACTIONS(5155), - [anon_sym_BSLASHavolcite] = ACTIONS(5155), - [anon_sym_BSLASHAvolcite] = ACTIONS(5155), - [anon_sym_BSLASHnotecite] = ACTIONS(5155), - [anon_sym_BSLASHNotecite] = ACTIONS(5155), - [anon_sym_BSLASHpnotecite] = ACTIONS(5155), - [anon_sym_BSLASHPnotecite] = ACTIONS(5155), - [anon_sym_BSLASHfnotecite] = ACTIONS(5155), - [anon_sym_BSLASHlabel] = ACTIONS(5155), - [anon_sym_BSLASHref] = ACTIONS(5155), - [anon_sym_BSLASHeqref] = ACTIONS(5155), - [anon_sym_BSLASHvref] = ACTIONS(5155), - [anon_sym_BSLASHVref] = ACTIONS(5155), - [anon_sym_BSLASHautoref] = ACTIONS(5155), - [anon_sym_BSLASHpageref] = ACTIONS(5155), - [anon_sym_BSLASHcref] = ACTIONS(5155), - [anon_sym_BSLASHCref] = ACTIONS(5155), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnameCref] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHlabelcref] = ACTIONS(5155), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnewlabel] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdef] = ACTIONS(5155), - [anon_sym_BSLASHlet] = ACTIONS(5155), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5155), - [anon_sym_BSLASHgls] = ACTIONS(5155), - [anon_sym_BSLASHGls] = ACTIONS(5155), - [anon_sym_BSLASHGLS] = ACTIONS(5155), - [anon_sym_BSLASHglspl] = ACTIONS(5155), - [anon_sym_BSLASHGlspl] = ACTIONS(5155), - [anon_sym_BSLASHGLSpl] = ACTIONS(5155), - [anon_sym_BSLASHglsdisp] = ACTIONS(5155), - [anon_sym_BSLASHglslink] = ACTIONS(5155), - [anon_sym_BSLASHglstext] = ACTIONS(5155), - [anon_sym_BSLASHGlstext] = ACTIONS(5155), - [anon_sym_BSLASHGLStext] = ACTIONS(5155), - [anon_sym_BSLASHglsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5155), - [anon_sym_BSLASHglsplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSplural] = ACTIONS(5155), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHglsname] = ACTIONS(5155), - [anon_sym_BSLASHGlsname] = ACTIONS(5155), - [anon_sym_BSLASHGLSname] = ACTIONS(5155), - [anon_sym_BSLASHglssymbol] = ACTIONS(5155), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5155), - [anon_sym_BSLASHglsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5155), - [anon_sym_BSLASHglsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5155), - [anon_sym_BSLASHglsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5155), - [anon_sym_BSLASHglsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5155), - [anon_sym_BSLASHglsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5155), - [anon_sym_BSLASHnewacronym] = ACTIONS(5155), - [anon_sym_BSLASHacrshort] = ACTIONS(5155), - [anon_sym_BSLASHAcrshort] = ACTIONS(5155), - [anon_sym_BSLASHACRshort] = ACTIONS(5155), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5155), - [anon_sym_BSLASHacrlong] = ACTIONS(5155), - [anon_sym_BSLASHAcrlong] = ACTIONS(5155), - [anon_sym_BSLASHACRlong] = ACTIONS(5155), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5155), - [anon_sym_BSLASHacrfull] = ACTIONS(5155), - [anon_sym_BSLASHAcrfull] = ACTIONS(5155), - [anon_sym_BSLASHACRfull] = ACTIONS(5155), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5155), - [anon_sym_BSLASHacs] = ACTIONS(5155), - [anon_sym_BSLASHAcs] = ACTIONS(5155), - [anon_sym_BSLASHacsp] = ACTIONS(5155), - [anon_sym_BSLASHAcsp] = ACTIONS(5155), - [anon_sym_BSLASHacl] = ACTIONS(5155), - [anon_sym_BSLASHAcl] = ACTIONS(5155), - [anon_sym_BSLASHaclp] = ACTIONS(5155), - [anon_sym_BSLASHAclp] = ACTIONS(5155), - [anon_sym_BSLASHacf] = ACTIONS(5155), - [anon_sym_BSLASHAcf] = ACTIONS(5155), - [anon_sym_BSLASHacfp] = ACTIONS(5155), - [anon_sym_BSLASHAcfp] = ACTIONS(5155), - [anon_sym_BSLASHac] = ACTIONS(5155), - [anon_sym_BSLASHAc] = ACTIONS(5155), - [anon_sym_BSLASHacp] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), - [anon_sym_BSLASHcolor] = ACTIONS(5155), - [anon_sym_BSLASHcolorbox] = ACTIONS(5155), - [anon_sym_BSLASHtextcolor] = ACTIONS(5155), - [anon_sym_BSLASHpagecolor] = ACTIONS(5155), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5155), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5155), - }, - [744] = { - [ts_builtin_sym_end] = ACTIONS(5157), - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_BSLASHpart] = ACTIONS(5159), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddpart] = ACTIONS(5159), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHchapter] = ACTIONS(5159), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddchap] = ACTIONS(5159), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsection] = ACTIONS(5159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddsec] = ACTIONS(5159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHparagraph] = ACTIONS(5159), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHitem] = ACTIONS(5159), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [anon_sym_RBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASHbegin] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), - }, - [745] = { - [ts_builtin_sym_end] = ACTIONS(5161), - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_BSLASHpart] = ACTIONS(5163), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddpart] = ACTIONS(5163), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHchapter] = ACTIONS(5163), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddchap] = ACTIONS(5163), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsection] = ACTIONS(5163), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddsec] = ACTIONS(5163), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHparagraph] = ACTIONS(5163), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHitem] = ACTIONS(5163), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5161), - [anon_sym_RBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5161), - [anon_sym_BSLASHbegin] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), - }, - [746] = { - [ts_builtin_sym_end] = ACTIONS(5165), - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_BSLASHpart] = ACTIONS(5167), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddpart] = ACTIONS(5167), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHchapter] = ACTIONS(5167), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddchap] = ACTIONS(5167), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsection] = ACTIONS(5167), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddsec] = ACTIONS(5167), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHparagraph] = ACTIONS(5167), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHitem] = ACTIONS(5167), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [anon_sym_RBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASHbegin] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), - }, - [747] = { - [ts_builtin_sym_end] = ACTIONS(5169), - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_BSLASHpart] = ACTIONS(5171), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddpart] = ACTIONS(5171), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHchapter] = ACTIONS(5171), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddchap] = ACTIONS(5171), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsection] = ACTIONS(5171), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddsec] = ACTIONS(5171), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHparagraph] = ACTIONS(5171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5171), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHitem] = ACTIONS(5171), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASHbegin] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), - }, - [748] = { - [ts_builtin_sym_end] = ACTIONS(5173), - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_BSLASHpart] = ACTIONS(5175), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddpart] = ACTIONS(5175), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHchapter] = ACTIONS(5175), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddchap] = ACTIONS(5175), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsection] = ACTIONS(5175), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddsec] = ACTIONS(5175), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHparagraph] = ACTIONS(5175), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHitem] = ACTIONS(5175), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASHbegin] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), - }, - [749] = { - [ts_builtin_sym_end] = ACTIONS(5177), - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_BSLASHpart] = ACTIONS(5179), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddpart] = ACTIONS(5179), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHchapter] = ACTIONS(5179), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddchap] = ACTIONS(5179), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsection] = ACTIONS(5179), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddsec] = ACTIONS(5179), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHparagraph] = ACTIONS(5179), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHitem] = ACTIONS(5179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [anon_sym_RBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASHbegin] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), - }, - [750] = { - [sym_command_name] = ACTIONS(4923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4923), - [anon_sym_BSLASHfi] = ACTIONS(5181), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_RPAREN] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_RBRACK] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4921), - [anon_sym_EQ] = ACTIONS(4921), - [anon_sym_BSLASHpart] = ACTIONS(4923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddpart] = ACTIONS(4923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4921), - [anon_sym_BSLASHchapter] = ACTIONS(4923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddchap] = ACTIONS(4923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsection] = ACTIONS(4923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddsec] = ACTIONS(4923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubsection] = ACTIONS(4923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHparagraph] = ACTIONS(4923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4921), - [anon_sym_BSLASHitem] = ACTIONS(4923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4921), - [anon_sym_LBRACE] = ACTIONS(4921), - [sym_word] = ACTIONS(4923), - [sym_placeholder] = ACTIONS(4921), - [anon_sym_PLUS] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_STAR] = ACTIONS(4923), - [anon_sym_SLASH] = ACTIONS(4923), - [anon_sym_CARET] = ACTIONS(4923), - [anon_sym__] = ACTIONS(4923), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_BANG] = ACTIONS(4923), - [anon_sym_PIPE] = ACTIONS(4923), - [anon_sym_COLON] = ACTIONS(4923), - [anon_sym_SQUOTE] = ACTIONS(4923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4921), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4921), - [anon_sym_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4921), - [anon_sym_BSLASHbegin] = ACTIONS(4923), - [anon_sym_BSLASHusepackage] = ACTIONS(4923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4923), - [anon_sym_BSLASHinclude] = ACTIONS(4923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4923), - [anon_sym_BSLASHinput] = ACTIONS(4923), - [anon_sym_BSLASHsubfile] = ACTIONS(4923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4923), - [anon_sym_BSLASHbibliography] = ACTIONS(4923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4923), - [anon_sym_BSLASHincludesvg] = ACTIONS(4923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4923), - [anon_sym_BSLASHimport] = ACTIONS(4923), - [anon_sym_BSLASHsubimport] = ACTIONS(4923), - [anon_sym_BSLASHinputfrom] = ACTIONS(4923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4923), - [anon_sym_BSLASHincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHcaption] = ACTIONS(4923), - [anon_sym_BSLASHcite] = ACTIONS(4923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCite] = ACTIONS(4923), - [anon_sym_BSLASHnocite] = ACTIONS(4923), - [anon_sym_BSLASHcitet] = ACTIONS(4923), - [anon_sym_BSLASHcitep] = ACTIONS(4923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteyear] = ACTIONS(4923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitedate] = ACTIONS(4923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteurl] = ACTIONS(4923), - [anon_sym_BSLASHfullcite] = ACTIONS(4923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4923), - [anon_sym_BSLASHcitealt] = ACTIONS(4923), - [anon_sym_BSLASHcitealp] = ACTIONS(4923), - [anon_sym_BSLASHcitetext] = ACTIONS(4923), - [anon_sym_BSLASHparencite] = ACTIONS(4923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHParencite] = ACTIONS(4923), - [anon_sym_BSLASHfootcite] = ACTIONS(4923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4923), - [anon_sym_BSLASHtextcite] = ACTIONS(4923), - [anon_sym_BSLASHTextcite] = ACTIONS(4923), - [anon_sym_BSLASHsmartcite] = ACTIONS(4923), - [anon_sym_BSLASHSmartcite] = ACTIONS(4923), - [anon_sym_BSLASHsupercite] = ACTIONS(4923), - [anon_sym_BSLASHautocite] = ACTIONS(4923), - [anon_sym_BSLASHAutocite] = ACTIONS(4923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHvolcite] = ACTIONS(4923), - [anon_sym_BSLASHVolcite] = ACTIONS(4923), - [anon_sym_BSLASHpvolcite] = ACTIONS(4923), - [anon_sym_BSLASHPvolcite] = ACTIONS(4923), - [anon_sym_BSLASHfvolcite] = ACTIONS(4923), - [anon_sym_BSLASHftvolcite] = ACTIONS(4923), - [anon_sym_BSLASHsvolcite] = ACTIONS(4923), - [anon_sym_BSLASHSvolcite] = ACTIONS(4923), - [anon_sym_BSLASHtvolcite] = ACTIONS(4923), - [anon_sym_BSLASHTvolcite] = ACTIONS(4923), - [anon_sym_BSLASHavolcite] = ACTIONS(4923), - [anon_sym_BSLASHAvolcite] = ACTIONS(4923), - [anon_sym_BSLASHnotecite] = ACTIONS(4923), - [anon_sym_BSLASHNotecite] = ACTIONS(4923), - [anon_sym_BSLASHpnotecite] = ACTIONS(4923), - [anon_sym_BSLASHPnotecite] = ACTIONS(4923), - [anon_sym_BSLASHfnotecite] = ACTIONS(4923), - [anon_sym_BSLASHlabel] = ACTIONS(4923), - [anon_sym_BSLASHref] = ACTIONS(4923), - [anon_sym_BSLASHeqref] = ACTIONS(4923), - [anon_sym_BSLASHvref] = ACTIONS(4923), - [anon_sym_BSLASHVref] = ACTIONS(4923), - [anon_sym_BSLASHautoref] = ACTIONS(4923), - [anon_sym_BSLASHpageref] = ACTIONS(4923), - [anon_sym_BSLASHcref] = ACTIONS(4923), - [anon_sym_BSLASHCref] = ACTIONS(4923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnameCref] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHlabelcref] = ACTIONS(4923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnewlabel] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4921), - [anon_sym_BSLASHdef] = ACTIONS(4923), - [anon_sym_BSLASHlet] = ACTIONS(4923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4923), - [anon_sym_BSLASHgls] = ACTIONS(4923), - [anon_sym_BSLASHGls] = ACTIONS(4923), - [anon_sym_BSLASHGLS] = ACTIONS(4923), - [anon_sym_BSLASHglspl] = ACTIONS(4923), - [anon_sym_BSLASHGlspl] = ACTIONS(4923), - [anon_sym_BSLASHGLSpl] = ACTIONS(4923), - [anon_sym_BSLASHglsdisp] = ACTIONS(4923), - [anon_sym_BSLASHglslink] = ACTIONS(4923), - [anon_sym_BSLASHglstext] = ACTIONS(4923), - [anon_sym_BSLASHGlstext] = ACTIONS(4923), - [anon_sym_BSLASHGLStext] = ACTIONS(4923), - [anon_sym_BSLASHglsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4923), - [anon_sym_BSLASHglsplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSplural] = ACTIONS(4923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHglsname] = ACTIONS(4923), - [anon_sym_BSLASHGlsname] = ACTIONS(4923), - [anon_sym_BSLASHGLSname] = ACTIONS(4923), - [anon_sym_BSLASHglssymbol] = ACTIONS(4923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4923), - [anon_sym_BSLASHglsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4923), - [anon_sym_BSLASHglsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4923), - [anon_sym_BSLASHglsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4923), - [anon_sym_BSLASHglsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4923), - [anon_sym_BSLASHglsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4923), - [anon_sym_BSLASHnewacronym] = ACTIONS(4923), - [anon_sym_BSLASHacrshort] = ACTIONS(4923), - [anon_sym_BSLASHAcrshort] = ACTIONS(4923), - [anon_sym_BSLASHACRshort] = ACTIONS(4923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4923), - [anon_sym_BSLASHacrlong] = ACTIONS(4923), - [anon_sym_BSLASHAcrlong] = ACTIONS(4923), - [anon_sym_BSLASHACRlong] = ACTIONS(4923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4923), - [anon_sym_BSLASHacrfull] = ACTIONS(4923), - [anon_sym_BSLASHAcrfull] = ACTIONS(4923), - [anon_sym_BSLASHACRfull] = ACTIONS(4923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4923), - [anon_sym_BSLASHacs] = ACTIONS(4923), - [anon_sym_BSLASHAcs] = ACTIONS(4923), - [anon_sym_BSLASHacsp] = ACTIONS(4923), - [anon_sym_BSLASHAcsp] = ACTIONS(4923), - [anon_sym_BSLASHacl] = ACTIONS(4923), - [anon_sym_BSLASHAcl] = ACTIONS(4923), - [anon_sym_BSLASHaclp] = ACTIONS(4923), - [anon_sym_BSLASHAclp] = ACTIONS(4923), - [anon_sym_BSLASHacf] = ACTIONS(4923), - [anon_sym_BSLASHAcf] = ACTIONS(4923), - [anon_sym_BSLASHacfp] = ACTIONS(4923), - [anon_sym_BSLASHAcfp] = ACTIONS(4923), - [anon_sym_BSLASHac] = ACTIONS(4923), - [anon_sym_BSLASHAc] = ACTIONS(4923), - [anon_sym_BSLASHacp] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4923), - [anon_sym_BSLASHcolor] = ACTIONS(4923), - [anon_sym_BSLASHcolorbox] = ACTIONS(4923), - [anon_sym_BSLASHtextcolor] = ACTIONS(4923), - [anon_sym_BSLASHpagecolor] = ACTIONS(4923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4923), - }, - [751] = { - [ts_builtin_sym_end] = ACTIONS(5183), - [sym_command_name] = ACTIONS(5185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_BSLASHpart] = ACTIONS(5185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddpart] = ACTIONS(5185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHchapter] = ACTIONS(5185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddchap] = ACTIONS(5185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsection] = ACTIONS(5185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddsec] = ACTIONS(5185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHparagraph] = ACTIONS(5185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHitem] = ACTIONS(5185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [anon_sym_RBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASHbegin] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - }, - [752] = { - [ts_builtin_sym_end] = ACTIONS(5187), - [sym_command_name] = ACTIONS(5189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_BSLASHpart] = ACTIONS(5189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddpart] = ACTIONS(5189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHchapter] = ACTIONS(5189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddchap] = ACTIONS(5189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsection] = ACTIONS(5189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddsec] = ACTIONS(5189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHparagraph] = ACTIONS(5189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHitem] = ACTIONS(5189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [anon_sym_RBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASHbegin] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), - }, - [753] = { - [ts_builtin_sym_end] = ACTIONS(5191), - [sym_command_name] = ACTIONS(5193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_BSLASHpart] = ACTIONS(5193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddpart] = ACTIONS(5193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHchapter] = ACTIONS(5193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddchap] = ACTIONS(5193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsection] = ACTIONS(5193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddsec] = ACTIONS(5193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHparagraph] = ACTIONS(5193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHitem] = ACTIONS(5193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [anon_sym_RBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASHbegin] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), - }, - [754] = { - [sym_brack_group_text] = STATE(1046), - [sym_command_name] = ACTIONS(4929), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4963), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_BSLASHpart] = ACTIONS(4929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddpart] = ACTIONS(4929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHchapter] = ACTIONS(4929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddchap] = ACTIONS(4929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsection] = ACTIONS(4929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddsec] = ACTIONS(4929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHparagraph] = ACTIONS(4929), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHitem] = ACTIONS(4929), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4927), - [anon_sym_BSLASHbegin] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - }, - [755] = { - [ts_builtin_sym_end] = ACTIONS(5195), - [sym_command_name] = ACTIONS(5197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_BSLASHpart] = ACTIONS(5197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddpart] = ACTIONS(5197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHchapter] = ACTIONS(5197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddchap] = ACTIONS(5197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsection] = ACTIONS(5197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddsec] = ACTIONS(5197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHparagraph] = ACTIONS(5197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHitem] = ACTIONS(5197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [anon_sym_RBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASHbegin] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), - }, - [756] = { - [ts_builtin_sym_end] = ACTIONS(5199), - [sym_command_name] = ACTIONS(5201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_BSLASHpart] = ACTIONS(5201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddpart] = ACTIONS(5201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHchapter] = ACTIONS(5201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddchap] = ACTIONS(5201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsection] = ACTIONS(5201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddsec] = ACTIONS(5201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHparagraph] = ACTIONS(5201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHitem] = ACTIONS(5201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASHbegin] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), - }, - [757] = { - [sym_curly_group] = STATE(996), - [sym_command_name] = ACTIONS(4769), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4767), - [anon_sym_RPAREN] = ACTIONS(4767), - [anon_sym_LBRACK] = ACTIONS(4767), - [anon_sym_RBRACK] = ACTIONS(4767), - [anon_sym_COMMA] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_BSLASHpart] = ACTIONS(4769), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddpart] = ACTIONS(4769), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4767), - [anon_sym_BSLASHchapter] = ACTIONS(4769), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddchap] = ACTIONS(4769), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsection] = ACTIONS(4769), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddsec] = ACTIONS(4769), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubsection] = ACTIONS(4769), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4769), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHparagraph] = ACTIONS(4769), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4769), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4767), - [anon_sym_BSLASHitem] = ACTIONS(4769), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(4769), - [sym_placeholder] = ACTIONS(4767), - [anon_sym_PLUS] = ACTIONS(4769), - [anon_sym_DASH] = ACTIONS(4769), - [anon_sym_STAR] = ACTIONS(4769), - [anon_sym_SLASH] = ACTIONS(4769), - [anon_sym_CARET] = ACTIONS(4769), - [anon_sym__] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4769), - [anon_sym_GT] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4769), - [anon_sym_PIPE] = ACTIONS(4769), - [anon_sym_COLON] = ACTIONS(4769), - [anon_sym_SQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4767), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4767), - [anon_sym_DOLLAR] = ACTIONS(4769), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4767), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4767), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4767), - [anon_sym_BSLASHbegin] = ACTIONS(4769), - [anon_sym_BSLASHusepackage] = ACTIONS(4769), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4769), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4769), - [anon_sym_BSLASHinclude] = ACTIONS(4769), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4769), - [anon_sym_BSLASHinput] = ACTIONS(4769), - [anon_sym_BSLASHsubfile] = ACTIONS(4769), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4769), - [anon_sym_BSLASHbibliography] = ACTIONS(4769), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4769), - [anon_sym_BSLASHincludesvg] = ACTIONS(4769), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4769), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4769), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4769), - [anon_sym_BSLASHimport] = ACTIONS(4769), - [anon_sym_BSLASHsubimport] = ACTIONS(4769), - [anon_sym_BSLASHinputfrom] = ACTIONS(4769), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4769), - [anon_sym_BSLASHincludefrom] = ACTIONS(4769), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4769), - [anon_sym_BSLASHcaption] = ACTIONS(4769), - [anon_sym_BSLASHcite] = ACTIONS(4769), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCite] = ACTIONS(4769), - [anon_sym_BSLASHnocite] = ACTIONS(4769), - [anon_sym_BSLASHcitet] = ACTIONS(4769), - [anon_sym_BSLASHcitep] = ACTIONS(4769), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteauthor] = ACTIONS(4769), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4769), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitetitle] = ACTIONS(4769), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteyear] = ACTIONS(4769), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitedate] = ACTIONS(4769), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteurl] = ACTIONS(4769), - [anon_sym_BSLASHfullcite] = ACTIONS(4769), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4769), - [anon_sym_BSLASHcitealt] = ACTIONS(4769), - [anon_sym_BSLASHcitealp] = ACTIONS(4769), - [anon_sym_BSLASHcitetext] = ACTIONS(4769), - [anon_sym_BSLASHparencite] = ACTIONS(4769), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHParencite] = ACTIONS(4769), - [anon_sym_BSLASHfootcite] = ACTIONS(4769), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4769), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4769), - [anon_sym_BSLASHtextcite] = ACTIONS(4769), - [anon_sym_BSLASHTextcite] = ACTIONS(4769), - [anon_sym_BSLASHsmartcite] = ACTIONS(4769), - [anon_sym_BSLASHSmartcite] = ACTIONS(4769), - [anon_sym_BSLASHsupercite] = ACTIONS(4769), - [anon_sym_BSLASHautocite] = ACTIONS(4769), - [anon_sym_BSLASHAutocite] = ACTIONS(4769), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHvolcite] = ACTIONS(4769), - [anon_sym_BSLASHVolcite] = ACTIONS(4769), - [anon_sym_BSLASHpvolcite] = ACTIONS(4769), - [anon_sym_BSLASHPvolcite] = ACTIONS(4769), - [anon_sym_BSLASHfvolcite] = ACTIONS(4769), - [anon_sym_BSLASHftvolcite] = ACTIONS(4769), - [anon_sym_BSLASHsvolcite] = ACTIONS(4769), - [anon_sym_BSLASHSvolcite] = ACTIONS(4769), - [anon_sym_BSLASHtvolcite] = ACTIONS(4769), - [anon_sym_BSLASHTvolcite] = ACTIONS(4769), - [anon_sym_BSLASHavolcite] = ACTIONS(4769), - [anon_sym_BSLASHAvolcite] = ACTIONS(4769), - [anon_sym_BSLASHnotecite] = ACTIONS(4769), - [anon_sym_BSLASHNotecite] = ACTIONS(4769), - [anon_sym_BSLASHpnotecite] = ACTIONS(4769), - [anon_sym_BSLASHPnotecite] = ACTIONS(4769), - [anon_sym_BSLASHfnotecite] = ACTIONS(4769), - [anon_sym_BSLASHlabel] = ACTIONS(4769), - [anon_sym_BSLASHref] = ACTIONS(4769), - [anon_sym_BSLASHeqref] = ACTIONS(4769), - [anon_sym_BSLASHvref] = ACTIONS(4769), - [anon_sym_BSLASHVref] = ACTIONS(4769), - [anon_sym_BSLASHautoref] = ACTIONS(4769), - [anon_sym_BSLASHpageref] = ACTIONS(4769), - [anon_sym_BSLASHcref] = ACTIONS(4769), - [anon_sym_BSLASHCref] = ACTIONS(4769), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4767), - [anon_sym_BSLASHnamecref] = ACTIONS(4769), - [anon_sym_BSLASHnameCref] = ACTIONS(4769), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4769), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4769), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4769), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4769), - [anon_sym_BSLASHlabelcref] = ACTIONS(4769), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4769), - [anon_sym_BSLASHcrefrange] = ACTIONS(4769), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCrefrange] = ACTIONS(4769), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4767), - [anon_sym_BSLASHnewlabel] = ACTIONS(4769), - [anon_sym_BSLASHnewcommand] = ACTIONS(4769), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4769), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4769), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4769), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4767), - [anon_sym_BSLASHdef] = ACTIONS(4769), - [anon_sym_BSLASHlet] = ACTIONS(4769), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4769), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4769), - [anon_sym_BSLASHgls] = ACTIONS(4769), - [anon_sym_BSLASHGls] = ACTIONS(4769), - [anon_sym_BSLASHGLS] = ACTIONS(4769), - [anon_sym_BSLASHglspl] = ACTIONS(4769), - [anon_sym_BSLASHGlspl] = ACTIONS(4769), - [anon_sym_BSLASHGLSpl] = ACTIONS(4769), - [anon_sym_BSLASHglsdisp] = ACTIONS(4769), - [anon_sym_BSLASHglslink] = ACTIONS(4769), - [anon_sym_BSLASHglstext] = ACTIONS(4769), - [anon_sym_BSLASHGlstext] = ACTIONS(4769), - [anon_sym_BSLASHGLStext] = ACTIONS(4769), - [anon_sym_BSLASHglsfirst] = ACTIONS(4769), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4769), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4769), - [anon_sym_BSLASHglsplural] = ACTIONS(4769), - [anon_sym_BSLASHGlsplural] = ACTIONS(4769), - [anon_sym_BSLASHGLSplural] = ACTIONS(4769), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHglsname] = ACTIONS(4769), - [anon_sym_BSLASHGlsname] = ACTIONS(4769), - [anon_sym_BSLASHGLSname] = ACTIONS(4769), - [anon_sym_BSLASHglssymbol] = ACTIONS(4769), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4769), - [anon_sym_BSLASHglsdesc] = ACTIONS(4769), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4769), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4769), - [anon_sym_BSLASHglsuseri] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4769), - [anon_sym_BSLASHglsuserii] = ACTIONS(4769), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4769), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4769), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4769), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4769), - [anon_sym_BSLASHglsuserv] = ACTIONS(4769), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4769), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4769), - [anon_sym_BSLASHglsuservi] = ACTIONS(4769), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4769), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4769), - [anon_sym_BSLASHnewacronym] = ACTIONS(4769), - [anon_sym_BSLASHacrshort] = ACTIONS(4769), - [anon_sym_BSLASHAcrshort] = ACTIONS(4769), - [anon_sym_BSLASHACRshort] = ACTIONS(4769), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4769), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4769), - [anon_sym_BSLASHacrlong] = ACTIONS(4769), - [anon_sym_BSLASHAcrlong] = ACTIONS(4769), - [anon_sym_BSLASHACRlong] = ACTIONS(4769), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4769), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4769), - [anon_sym_BSLASHacrfull] = ACTIONS(4769), - [anon_sym_BSLASHAcrfull] = ACTIONS(4769), - [anon_sym_BSLASHACRfull] = ACTIONS(4769), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4769), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4769), - [anon_sym_BSLASHacs] = ACTIONS(4769), - [anon_sym_BSLASHAcs] = ACTIONS(4769), - [anon_sym_BSLASHacsp] = ACTIONS(4769), - [anon_sym_BSLASHAcsp] = ACTIONS(4769), - [anon_sym_BSLASHacl] = ACTIONS(4769), - [anon_sym_BSLASHAcl] = ACTIONS(4769), - [anon_sym_BSLASHaclp] = ACTIONS(4769), - [anon_sym_BSLASHAclp] = ACTIONS(4769), - [anon_sym_BSLASHacf] = ACTIONS(4769), - [anon_sym_BSLASHAcf] = ACTIONS(4769), - [anon_sym_BSLASHacfp] = ACTIONS(4769), - [anon_sym_BSLASHAcfp] = ACTIONS(4769), - [anon_sym_BSLASHac] = ACTIONS(4769), - [anon_sym_BSLASHAc] = ACTIONS(4769), - [anon_sym_BSLASHacp] = ACTIONS(4769), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4769), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4769), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4769), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4769), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4769), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4769), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4769), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4769), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4769), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4769), - [anon_sym_BSLASHcolor] = ACTIONS(4769), - [anon_sym_BSLASHcolorbox] = ACTIONS(4769), - [anon_sym_BSLASHtextcolor] = ACTIONS(4769), - [anon_sym_BSLASHpagecolor] = ACTIONS(4769), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4769), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4769), - }, - [758] = { - [ts_builtin_sym_end] = ACTIONS(5203), - [sym_command_name] = ACTIONS(5205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_BSLASHpart] = ACTIONS(5205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddpart] = ACTIONS(5205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHchapter] = ACTIONS(5205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddchap] = ACTIONS(5205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsection] = ACTIONS(5205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddsec] = ACTIONS(5205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHparagraph] = ACTIONS(5205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHitem] = ACTIONS(5205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASHbegin] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), - }, - [759] = { - [ts_builtin_sym_end] = ACTIONS(5207), - [sym_command_name] = ACTIONS(5209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_BSLASHpart] = ACTIONS(5209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddpart] = ACTIONS(5209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHchapter] = ACTIONS(5209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddchap] = ACTIONS(5209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsection] = ACTIONS(5209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddsec] = ACTIONS(5209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHparagraph] = ACTIONS(5209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHitem] = ACTIONS(5209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [anon_sym_RBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASHbegin] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), - }, - [760] = { - [sym_curly_group] = STATE(995), - [sym_command_name] = ACTIONS(4773), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4773), - [anon_sym_LPAREN] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4771), - [anon_sym_LBRACK] = ACTIONS(4771), - [anon_sym_RBRACK] = ACTIONS(4771), - [anon_sym_COMMA] = ACTIONS(4771), - [anon_sym_EQ] = ACTIONS(4771), - [anon_sym_BSLASHpart] = ACTIONS(4773), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddpart] = ACTIONS(4773), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4771), - [anon_sym_BSLASHchapter] = ACTIONS(4773), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddchap] = ACTIONS(4773), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsection] = ACTIONS(4773), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddsec] = ACTIONS(4773), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubsection] = ACTIONS(4773), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4773), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHparagraph] = ACTIONS(4773), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4773), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4771), - [anon_sym_BSLASHitem] = ACTIONS(4773), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4771), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(4773), - [sym_placeholder] = ACTIONS(4771), - [anon_sym_PLUS] = ACTIONS(4773), - [anon_sym_DASH] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4773), - [anon_sym_SLASH] = ACTIONS(4773), - [anon_sym_CARET] = ACTIONS(4773), - [anon_sym__] = ACTIONS(4773), - [anon_sym_LT] = ACTIONS(4773), - [anon_sym_GT] = ACTIONS(4773), - [anon_sym_BANG] = ACTIONS(4773), - [anon_sym_PIPE] = ACTIONS(4773), - [anon_sym_COLON] = ACTIONS(4773), - [anon_sym_SQUOTE] = ACTIONS(4773), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4771), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4771), - [anon_sym_DOLLAR] = ACTIONS(4773), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4771), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4771), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4771), - [anon_sym_BSLASHbegin] = ACTIONS(4773), - [anon_sym_BSLASHusepackage] = ACTIONS(4773), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4773), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4773), - [anon_sym_BSLASHinclude] = ACTIONS(4773), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4773), - [anon_sym_BSLASHinput] = ACTIONS(4773), - [anon_sym_BSLASHsubfile] = ACTIONS(4773), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4773), - [anon_sym_BSLASHbibliography] = ACTIONS(4773), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4773), - [anon_sym_BSLASHincludesvg] = ACTIONS(4773), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4773), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4773), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4773), - [anon_sym_BSLASHimport] = ACTIONS(4773), - [anon_sym_BSLASHsubimport] = ACTIONS(4773), - [anon_sym_BSLASHinputfrom] = ACTIONS(4773), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4773), - [anon_sym_BSLASHincludefrom] = ACTIONS(4773), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4773), - [anon_sym_BSLASHcaption] = ACTIONS(4773), - [anon_sym_BSLASHcite] = ACTIONS(4773), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCite] = ACTIONS(4773), - [anon_sym_BSLASHnocite] = ACTIONS(4773), - [anon_sym_BSLASHcitet] = ACTIONS(4773), - [anon_sym_BSLASHcitep] = ACTIONS(4773), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteauthor] = ACTIONS(4773), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4773), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitetitle] = ACTIONS(4773), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteyear] = ACTIONS(4773), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitedate] = ACTIONS(4773), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteurl] = ACTIONS(4773), - [anon_sym_BSLASHfullcite] = ACTIONS(4773), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4773), - [anon_sym_BSLASHcitealt] = ACTIONS(4773), - [anon_sym_BSLASHcitealp] = ACTIONS(4773), - [anon_sym_BSLASHcitetext] = ACTIONS(4773), - [anon_sym_BSLASHparencite] = ACTIONS(4773), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHParencite] = ACTIONS(4773), - [anon_sym_BSLASHfootcite] = ACTIONS(4773), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4773), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4773), - [anon_sym_BSLASHtextcite] = ACTIONS(4773), - [anon_sym_BSLASHTextcite] = ACTIONS(4773), - [anon_sym_BSLASHsmartcite] = ACTIONS(4773), - [anon_sym_BSLASHSmartcite] = ACTIONS(4773), - [anon_sym_BSLASHsupercite] = ACTIONS(4773), - [anon_sym_BSLASHautocite] = ACTIONS(4773), - [anon_sym_BSLASHAutocite] = ACTIONS(4773), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHvolcite] = ACTIONS(4773), - [anon_sym_BSLASHVolcite] = ACTIONS(4773), - [anon_sym_BSLASHpvolcite] = ACTIONS(4773), - [anon_sym_BSLASHPvolcite] = ACTIONS(4773), - [anon_sym_BSLASHfvolcite] = ACTIONS(4773), - [anon_sym_BSLASHftvolcite] = ACTIONS(4773), - [anon_sym_BSLASHsvolcite] = ACTIONS(4773), - [anon_sym_BSLASHSvolcite] = ACTIONS(4773), - [anon_sym_BSLASHtvolcite] = ACTIONS(4773), - [anon_sym_BSLASHTvolcite] = ACTIONS(4773), - [anon_sym_BSLASHavolcite] = ACTIONS(4773), - [anon_sym_BSLASHAvolcite] = ACTIONS(4773), - [anon_sym_BSLASHnotecite] = ACTIONS(4773), - [anon_sym_BSLASHNotecite] = ACTIONS(4773), - [anon_sym_BSLASHpnotecite] = ACTIONS(4773), - [anon_sym_BSLASHPnotecite] = ACTIONS(4773), - [anon_sym_BSLASHfnotecite] = ACTIONS(4773), - [anon_sym_BSLASHlabel] = ACTIONS(4773), - [anon_sym_BSLASHref] = ACTIONS(4773), - [anon_sym_BSLASHeqref] = ACTIONS(4773), - [anon_sym_BSLASHvref] = ACTIONS(4773), - [anon_sym_BSLASHVref] = ACTIONS(4773), - [anon_sym_BSLASHautoref] = ACTIONS(4773), - [anon_sym_BSLASHpageref] = ACTIONS(4773), - [anon_sym_BSLASHcref] = ACTIONS(4773), - [anon_sym_BSLASHCref] = ACTIONS(4773), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4771), - [anon_sym_BSLASHnamecref] = ACTIONS(4773), - [anon_sym_BSLASHnameCref] = ACTIONS(4773), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4773), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4773), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4773), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4773), - [anon_sym_BSLASHlabelcref] = ACTIONS(4773), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4773), - [anon_sym_BSLASHcrefrange] = ACTIONS(4773), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCrefrange] = ACTIONS(4773), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4771), - [anon_sym_BSLASHnewlabel] = ACTIONS(4773), - [anon_sym_BSLASHnewcommand] = ACTIONS(4773), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4773), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4773), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4773), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4771), - [anon_sym_BSLASHdef] = ACTIONS(4773), - [anon_sym_BSLASHlet] = ACTIONS(4773), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4773), - [anon_sym_BSLASHgls] = ACTIONS(4773), - [anon_sym_BSLASHGls] = ACTIONS(4773), - [anon_sym_BSLASHGLS] = ACTIONS(4773), - [anon_sym_BSLASHglspl] = ACTIONS(4773), - [anon_sym_BSLASHGlspl] = ACTIONS(4773), - [anon_sym_BSLASHGLSpl] = ACTIONS(4773), - [anon_sym_BSLASHglsdisp] = ACTIONS(4773), - [anon_sym_BSLASHglslink] = ACTIONS(4773), - [anon_sym_BSLASHglstext] = ACTIONS(4773), - [anon_sym_BSLASHGlstext] = ACTIONS(4773), - [anon_sym_BSLASHGLStext] = ACTIONS(4773), - [anon_sym_BSLASHglsfirst] = ACTIONS(4773), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4773), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4773), - [anon_sym_BSLASHglsplural] = ACTIONS(4773), - [anon_sym_BSLASHGlsplural] = ACTIONS(4773), - [anon_sym_BSLASHGLSplural] = ACTIONS(4773), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHglsname] = ACTIONS(4773), - [anon_sym_BSLASHGlsname] = ACTIONS(4773), - [anon_sym_BSLASHGLSname] = ACTIONS(4773), - [anon_sym_BSLASHglssymbol] = ACTIONS(4773), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4773), - [anon_sym_BSLASHglsdesc] = ACTIONS(4773), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4773), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4773), - [anon_sym_BSLASHglsuseri] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4773), - [anon_sym_BSLASHglsuserii] = ACTIONS(4773), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4773), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4773), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4773), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4773), - [anon_sym_BSLASHglsuserv] = ACTIONS(4773), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4773), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4773), - [anon_sym_BSLASHglsuservi] = ACTIONS(4773), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4773), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4773), - [anon_sym_BSLASHnewacronym] = ACTIONS(4773), - [anon_sym_BSLASHacrshort] = ACTIONS(4773), - [anon_sym_BSLASHAcrshort] = ACTIONS(4773), - [anon_sym_BSLASHACRshort] = ACTIONS(4773), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4773), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4773), - [anon_sym_BSLASHacrlong] = ACTIONS(4773), - [anon_sym_BSLASHAcrlong] = ACTIONS(4773), - [anon_sym_BSLASHACRlong] = ACTIONS(4773), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4773), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4773), - [anon_sym_BSLASHacrfull] = ACTIONS(4773), - [anon_sym_BSLASHAcrfull] = ACTIONS(4773), - [anon_sym_BSLASHACRfull] = ACTIONS(4773), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4773), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4773), - [anon_sym_BSLASHacs] = ACTIONS(4773), - [anon_sym_BSLASHAcs] = ACTIONS(4773), - [anon_sym_BSLASHacsp] = ACTIONS(4773), - [anon_sym_BSLASHAcsp] = ACTIONS(4773), - [anon_sym_BSLASHacl] = ACTIONS(4773), - [anon_sym_BSLASHAcl] = ACTIONS(4773), - [anon_sym_BSLASHaclp] = ACTIONS(4773), - [anon_sym_BSLASHAclp] = ACTIONS(4773), - [anon_sym_BSLASHacf] = ACTIONS(4773), - [anon_sym_BSLASHAcf] = ACTIONS(4773), - [anon_sym_BSLASHacfp] = ACTIONS(4773), - [anon_sym_BSLASHAcfp] = ACTIONS(4773), - [anon_sym_BSLASHac] = ACTIONS(4773), - [anon_sym_BSLASHAc] = ACTIONS(4773), - [anon_sym_BSLASHacp] = ACTIONS(4773), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4773), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4773), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4773), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4773), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4773), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4773), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4773), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4773), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4773), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4773), - [anon_sym_BSLASHcolor] = ACTIONS(4773), - [anon_sym_BSLASHcolorbox] = ACTIONS(4773), - [anon_sym_BSLASHtextcolor] = ACTIONS(4773), - [anon_sym_BSLASHpagecolor] = ACTIONS(4773), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4773), - }, - [761] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1733), - [sym_operator] = STATE(1509), - [sym_key_value_pair] = STATE(1738), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5211), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [762] = { - [sym_brack_group_text] = STATE(1227), - [sym_command_name] = ACTIONS(4797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4795), - [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_RBRACK] = ACTIONS(4795), - [anon_sym_COMMA] = ACTIONS(4795), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_BSLASHpart] = ACTIONS(4797), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddpart] = ACTIONS(4797), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4795), - [anon_sym_BSLASHchapter] = ACTIONS(4797), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddchap] = ACTIONS(4797), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsection] = ACTIONS(4797), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddsec] = ACTIONS(4797), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubsection] = ACTIONS(4797), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4797), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHparagraph] = ACTIONS(4797), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4797), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4795), - [anon_sym_BSLASHitem] = ACTIONS(4797), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4795), - [sym_word] = ACTIONS(4797), - [sym_placeholder] = ACTIONS(4795), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_CARET] = ACTIONS(4797), - [anon_sym__] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4797), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4795), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4795), - [anon_sym_BSLASHbegin] = ACTIONS(4797), - [anon_sym_BSLASHend] = ACTIONS(4797), - [anon_sym_BSLASHusepackage] = ACTIONS(4797), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4797), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4797), - [anon_sym_BSLASHinclude] = ACTIONS(4797), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4797), - [anon_sym_BSLASHinput] = ACTIONS(4797), - [anon_sym_BSLASHsubfile] = ACTIONS(4797), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4797), - [anon_sym_BSLASHbibliography] = ACTIONS(4797), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4797), - [anon_sym_BSLASHincludesvg] = ACTIONS(4797), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4797), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4797), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4797), - [anon_sym_BSLASHimport] = ACTIONS(4797), - [anon_sym_BSLASHsubimport] = ACTIONS(4797), - [anon_sym_BSLASHinputfrom] = ACTIONS(4797), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4797), - [anon_sym_BSLASHincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHcaption] = ACTIONS(4797), - [anon_sym_BSLASHcite] = ACTIONS(4797), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCite] = ACTIONS(4797), - [anon_sym_BSLASHnocite] = ACTIONS(4797), - [anon_sym_BSLASHcitet] = ACTIONS(4797), - [anon_sym_BSLASHcitep] = ACTIONS(4797), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteauthor] = ACTIONS(4797), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4797), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitetitle] = ACTIONS(4797), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteyear] = ACTIONS(4797), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitedate] = ACTIONS(4797), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteurl] = ACTIONS(4797), - [anon_sym_BSLASHfullcite] = ACTIONS(4797), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4797), - [anon_sym_BSLASHcitealt] = ACTIONS(4797), - [anon_sym_BSLASHcitealp] = ACTIONS(4797), - [anon_sym_BSLASHcitetext] = ACTIONS(4797), - [anon_sym_BSLASHparencite] = ACTIONS(4797), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHParencite] = ACTIONS(4797), - [anon_sym_BSLASHfootcite] = ACTIONS(4797), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4797), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4797), - [anon_sym_BSLASHtextcite] = ACTIONS(4797), - [anon_sym_BSLASHTextcite] = ACTIONS(4797), - [anon_sym_BSLASHsmartcite] = ACTIONS(4797), - [anon_sym_BSLASHSmartcite] = ACTIONS(4797), - [anon_sym_BSLASHsupercite] = ACTIONS(4797), - [anon_sym_BSLASHautocite] = ACTIONS(4797), - [anon_sym_BSLASHAutocite] = ACTIONS(4797), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHvolcite] = ACTIONS(4797), - [anon_sym_BSLASHVolcite] = ACTIONS(4797), - [anon_sym_BSLASHpvolcite] = ACTIONS(4797), - [anon_sym_BSLASHPvolcite] = ACTIONS(4797), - [anon_sym_BSLASHfvolcite] = ACTIONS(4797), - [anon_sym_BSLASHftvolcite] = ACTIONS(4797), - [anon_sym_BSLASHsvolcite] = ACTIONS(4797), - [anon_sym_BSLASHSvolcite] = ACTIONS(4797), - [anon_sym_BSLASHtvolcite] = ACTIONS(4797), - [anon_sym_BSLASHTvolcite] = ACTIONS(4797), - [anon_sym_BSLASHavolcite] = ACTIONS(4797), - [anon_sym_BSLASHAvolcite] = ACTIONS(4797), - [anon_sym_BSLASHnotecite] = ACTIONS(4797), - [anon_sym_BSLASHNotecite] = ACTIONS(4797), - [anon_sym_BSLASHpnotecite] = ACTIONS(4797), - [anon_sym_BSLASHPnotecite] = ACTIONS(4797), - [anon_sym_BSLASHfnotecite] = ACTIONS(4797), - [anon_sym_BSLASHlabel] = ACTIONS(4797), - [anon_sym_BSLASHref] = ACTIONS(4797), - [anon_sym_BSLASHeqref] = ACTIONS(4797), - [anon_sym_BSLASHvref] = ACTIONS(4797), - [anon_sym_BSLASHVref] = ACTIONS(4797), - [anon_sym_BSLASHautoref] = ACTIONS(4797), - [anon_sym_BSLASHpageref] = ACTIONS(4797), - [anon_sym_BSLASHcref] = ACTIONS(4797), - [anon_sym_BSLASHCref] = ACTIONS(4797), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnameCref] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHlabelcref] = ACTIONS(4797), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCrefrange] = ACTIONS(4797), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnewlabel] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4797), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4797), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4797), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4795), - [anon_sym_BSLASHdef] = ACTIONS(4797), - [anon_sym_BSLASHlet] = ACTIONS(4797), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4797), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4797), - [anon_sym_BSLASHgls] = ACTIONS(4797), - [anon_sym_BSLASHGls] = ACTIONS(4797), - [anon_sym_BSLASHGLS] = ACTIONS(4797), - [anon_sym_BSLASHglspl] = ACTIONS(4797), - [anon_sym_BSLASHGlspl] = ACTIONS(4797), - [anon_sym_BSLASHGLSpl] = ACTIONS(4797), - [anon_sym_BSLASHglsdisp] = ACTIONS(4797), - [anon_sym_BSLASHglslink] = ACTIONS(4797), - [anon_sym_BSLASHglstext] = ACTIONS(4797), - [anon_sym_BSLASHGlstext] = ACTIONS(4797), - [anon_sym_BSLASHGLStext] = ACTIONS(4797), - [anon_sym_BSLASHglsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4797), - [anon_sym_BSLASHglsplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSplural] = ACTIONS(4797), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHglsname] = ACTIONS(4797), - [anon_sym_BSLASHGlsname] = ACTIONS(4797), - [anon_sym_BSLASHGLSname] = ACTIONS(4797), - [anon_sym_BSLASHglssymbol] = ACTIONS(4797), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4797), - [anon_sym_BSLASHglsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4797), - [anon_sym_BSLASHglsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4797), - [anon_sym_BSLASHglsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4797), - [anon_sym_BSLASHglsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4797), - [anon_sym_BSLASHglsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4797), - [anon_sym_BSLASHnewacronym] = ACTIONS(4797), - [anon_sym_BSLASHacrshort] = ACTIONS(4797), - [anon_sym_BSLASHAcrshort] = ACTIONS(4797), - [anon_sym_BSLASHACRshort] = ACTIONS(4797), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4797), - [anon_sym_BSLASHacrlong] = ACTIONS(4797), - [anon_sym_BSLASHAcrlong] = ACTIONS(4797), - [anon_sym_BSLASHACRlong] = ACTIONS(4797), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4797), - [anon_sym_BSLASHacrfull] = ACTIONS(4797), - [anon_sym_BSLASHAcrfull] = ACTIONS(4797), - [anon_sym_BSLASHACRfull] = ACTIONS(4797), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4797), - [anon_sym_BSLASHacs] = ACTIONS(4797), - [anon_sym_BSLASHAcs] = ACTIONS(4797), - [anon_sym_BSLASHacsp] = ACTIONS(4797), - [anon_sym_BSLASHAcsp] = ACTIONS(4797), - [anon_sym_BSLASHacl] = ACTIONS(4797), - [anon_sym_BSLASHAcl] = ACTIONS(4797), - [anon_sym_BSLASHaclp] = ACTIONS(4797), - [anon_sym_BSLASHAclp] = ACTIONS(4797), - [anon_sym_BSLASHacf] = ACTIONS(4797), - [anon_sym_BSLASHAcf] = ACTIONS(4797), - [anon_sym_BSLASHacfp] = ACTIONS(4797), - [anon_sym_BSLASHAcfp] = ACTIONS(4797), - [anon_sym_BSLASHac] = ACTIONS(4797), - [anon_sym_BSLASHAc] = ACTIONS(4797), - [anon_sym_BSLASHacp] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4797), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4797), - [anon_sym_BSLASHcolor] = ACTIONS(4797), - [anon_sym_BSLASHcolorbox] = ACTIONS(4797), - [anon_sym_BSLASHtextcolor] = ACTIONS(4797), - [anon_sym_BSLASHpagecolor] = ACTIONS(4797), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4797), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4797), - }, - [763] = { - [sym_curly_group] = STATE(994), - [sym_command_name] = ACTIONS(4777), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4777), - [anon_sym_LPAREN] = ACTIONS(4775), - [anon_sym_RPAREN] = ACTIONS(4775), - [anon_sym_LBRACK] = ACTIONS(4775), - [anon_sym_RBRACK] = ACTIONS(4775), - [anon_sym_COMMA] = ACTIONS(4775), - [anon_sym_EQ] = ACTIONS(4775), - [anon_sym_BSLASHpart] = ACTIONS(4777), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddpart] = ACTIONS(4777), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4775), - [anon_sym_BSLASHchapter] = ACTIONS(4777), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddchap] = ACTIONS(4777), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsection] = ACTIONS(4777), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddsec] = ACTIONS(4777), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubsection] = ACTIONS(4777), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4777), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHparagraph] = ACTIONS(4777), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4777), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4775), - [anon_sym_BSLASHitem] = ACTIONS(4777), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4775), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(4777), - [sym_placeholder] = ACTIONS(4775), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_CARET] = ACTIONS(4777), - [anon_sym__] = ACTIONS(4777), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_PIPE] = ACTIONS(4777), - [anon_sym_COLON] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4777), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4775), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4775), - [anon_sym_DOLLAR] = ACTIONS(4777), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4775), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4775), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4775), - [anon_sym_BSLASHbegin] = ACTIONS(4777), - [anon_sym_BSLASHusepackage] = ACTIONS(4777), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4777), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4777), - [anon_sym_BSLASHinclude] = ACTIONS(4777), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4777), - [anon_sym_BSLASHinput] = ACTIONS(4777), - [anon_sym_BSLASHsubfile] = ACTIONS(4777), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4777), - [anon_sym_BSLASHbibliography] = ACTIONS(4777), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4777), - [anon_sym_BSLASHincludesvg] = ACTIONS(4777), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4777), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4777), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4777), - [anon_sym_BSLASHimport] = ACTIONS(4777), - [anon_sym_BSLASHsubimport] = ACTIONS(4777), - [anon_sym_BSLASHinputfrom] = ACTIONS(4777), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4777), - [anon_sym_BSLASHincludefrom] = ACTIONS(4777), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4777), - [anon_sym_BSLASHcaption] = ACTIONS(4777), - [anon_sym_BSLASHcite] = ACTIONS(4777), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCite] = ACTIONS(4777), - [anon_sym_BSLASHnocite] = ACTIONS(4777), - [anon_sym_BSLASHcitet] = ACTIONS(4777), - [anon_sym_BSLASHcitep] = ACTIONS(4777), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteauthor] = ACTIONS(4777), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4777), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitetitle] = ACTIONS(4777), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteyear] = ACTIONS(4777), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitedate] = ACTIONS(4777), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteurl] = ACTIONS(4777), - [anon_sym_BSLASHfullcite] = ACTIONS(4777), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4777), - [anon_sym_BSLASHcitealt] = ACTIONS(4777), - [anon_sym_BSLASHcitealp] = ACTIONS(4777), - [anon_sym_BSLASHcitetext] = ACTIONS(4777), - [anon_sym_BSLASHparencite] = ACTIONS(4777), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHParencite] = ACTIONS(4777), - [anon_sym_BSLASHfootcite] = ACTIONS(4777), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4777), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4777), - [anon_sym_BSLASHtextcite] = ACTIONS(4777), - [anon_sym_BSLASHTextcite] = ACTIONS(4777), - [anon_sym_BSLASHsmartcite] = ACTIONS(4777), - [anon_sym_BSLASHSmartcite] = ACTIONS(4777), - [anon_sym_BSLASHsupercite] = ACTIONS(4777), - [anon_sym_BSLASHautocite] = ACTIONS(4777), - [anon_sym_BSLASHAutocite] = ACTIONS(4777), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHvolcite] = ACTIONS(4777), - [anon_sym_BSLASHVolcite] = ACTIONS(4777), - [anon_sym_BSLASHpvolcite] = ACTIONS(4777), - [anon_sym_BSLASHPvolcite] = ACTIONS(4777), - [anon_sym_BSLASHfvolcite] = ACTIONS(4777), - [anon_sym_BSLASHftvolcite] = ACTIONS(4777), - [anon_sym_BSLASHsvolcite] = ACTIONS(4777), - [anon_sym_BSLASHSvolcite] = ACTIONS(4777), - [anon_sym_BSLASHtvolcite] = ACTIONS(4777), - [anon_sym_BSLASHTvolcite] = ACTIONS(4777), - [anon_sym_BSLASHavolcite] = ACTIONS(4777), - [anon_sym_BSLASHAvolcite] = ACTIONS(4777), - [anon_sym_BSLASHnotecite] = ACTIONS(4777), - [anon_sym_BSLASHNotecite] = ACTIONS(4777), - [anon_sym_BSLASHpnotecite] = ACTIONS(4777), - [anon_sym_BSLASHPnotecite] = ACTIONS(4777), - [anon_sym_BSLASHfnotecite] = ACTIONS(4777), - [anon_sym_BSLASHlabel] = ACTIONS(4777), - [anon_sym_BSLASHref] = ACTIONS(4777), - [anon_sym_BSLASHeqref] = ACTIONS(4777), - [anon_sym_BSLASHvref] = ACTIONS(4777), - [anon_sym_BSLASHVref] = ACTIONS(4777), - [anon_sym_BSLASHautoref] = ACTIONS(4777), - [anon_sym_BSLASHpageref] = ACTIONS(4777), - [anon_sym_BSLASHcref] = ACTIONS(4777), - [anon_sym_BSLASHCref] = ACTIONS(4777), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4775), - [anon_sym_BSLASHnamecref] = ACTIONS(4777), - [anon_sym_BSLASHnameCref] = ACTIONS(4777), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4777), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4777), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4777), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4777), - [anon_sym_BSLASHlabelcref] = ACTIONS(4777), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4777), - [anon_sym_BSLASHcrefrange] = ACTIONS(4777), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCrefrange] = ACTIONS(4777), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4775), - [anon_sym_BSLASHnewlabel] = ACTIONS(4777), - [anon_sym_BSLASHnewcommand] = ACTIONS(4777), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4777), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4777), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4777), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4775), - [anon_sym_BSLASHdef] = ACTIONS(4777), - [anon_sym_BSLASHlet] = ACTIONS(4777), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4777), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4777), - [anon_sym_BSLASHgls] = ACTIONS(4777), - [anon_sym_BSLASHGls] = ACTIONS(4777), - [anon_sym_BSLASHGLS] = ACTIONS(4777), - [anon_sym_BSLASHglspl] = ACTIONS(4777), - [anon_sym_BSLASHGlspl] = ACTIONS(4777), - [anon_sym_BSLASHGLSpl] = ACTIONS(4777), - [anon_sym_BSLASHglsdisp] = ACTIONS(4777), - [anon_sym_BSLASHglslink] = ACTIONS(4777), - [anon_sym_BSLASHglstext] = ACTIONS(4777), - [anon_sym_BSLASHGlstext] = ACTIONS(4777), - [anon_sym_BSLASHGLStext] = ACTIONS(4777), - [anon_sym_BSLASHglsfirst] = ACTIONS(4777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4777), - [anon_sym_BSLASHglsplural] = ACTIONS(4777), - [anon_sym_BSLASHGlsplural] = ACTIONS(4777), - [anon_sym_BSLASHGLSplural] = ACTIONS(4777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHglsname] = ACTIONS(4777), - [anon_sym_BSLASHGlsname] = ACTIONS(4777), - [anon_sym_BSLASHGLSname] = ACTIONS(4777), - [anon_sym_BSLASHglssymbol] = ACTIONS(4777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4777), - [anon_sym_BSLASHglsdesc] = ACTIONS(4777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4777), - [anon_sym_BSLASHglsuseri] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4777), - [anon_sym_BSLASHglsuserii] = ACTIONS(4777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4777), - [anon_sym_BSLASHglsuserv] = ACTIONS(4777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4777), - [anon_sym_BSLASHglsuservi] = ACTIONS(4777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4777), - [anon_sym_BSLASHnewacronym] = ACTIONS(4777), - [anon_sym_BSLASHacrshort] = ACTIONS(4777), - [anon_sym_BSLASHAcrshort] = ACTIONS(4777), - [anon_sym_BSLASHACRshort] = ACTIONS(4777), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4777), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4777), - [anon_sym_BSLASHacrlong] = ACTIONS(4777), - [anon_sym_BSLASHAcrlong] = ACTIONS(4777), - [anon_sym_BSLASHACRlong] = ACTIONS(4777), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4777), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4777), - [anon_sym_BSLASHacrfull] = ACTIONS(4777), - [anon_sym_BSLASHAcrfull] = ACTIONS(4777), - [anon_sym_BSLASHACRfull] = ACTIONS(4777), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4777), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4777), - [anon_sym_BSLASHacs] = ACTIONS(4777), - [anon_sym_BSLASHAcs] = ACTIONS(4777), - [anon_sym_BSLASHacsp] = ACTIONS(4777), - [anon_sym_BSLASHAcsp] = ACTIONS(4777), - [anon_sym_BSLASHacl] = ACTIONS(4777), - [anon_sym_BSLASHAcl] = ACTIONS(4777), - [anon_sym_BSLASHaclp] = ACTIONS(4777), - [anon_sym_BSLASHAclp] = ACTIONS(4777), - [anon_sym_BSLASHacf] = ACTIONS(4777), - [anon_sym_BSLASHAcf] = ACTIONS(4777), - [anon_sym_BSLASHacfp] = ACTIONS(4777), - [anon_sym_BSLASHAcfp] = ACTIONS(4777), - [anon_sym_BSLASHac] = ACTIONS(4777), - [anon_sym_BSLASHAc] = ACTIONS(4777), - [anon_sym_BSLASHacp] = ACTIONS(4777), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4777), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4777), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4777), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4777), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4777), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4777), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4777), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4777), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4777), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4777), - [anon_sym_BSLASHcolor] = ACTIONS(4777), - [anon_sym_BSLASHcolorbox] = ACTIONS(4777), - [anon_sym_BSLASHtextcolor] = ACTIONS(4777), - [anon_sym_BSLASHpagecolor] = ACTIONS(4777), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4777), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4777), - }, - [764] = { - [sym_brack_group_text] = STATE(1174), - [sym_command_name] = ACTIONS(4793), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4791), - [anon_sym_RPAREN] = ACTIONS(4791), - [anon_sym_LBRACK] = ACTIONS(4961), - [anon_sym_RBRACK] = ACTIONS(4791), - [anon_sym_COMMA] = ACTIONS(4791), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_BSLASHpart] = ACTIONS(4793), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddpart] = ACTIONS(4793), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4791), - [anon_sym_BSLASHchapter] = ACTIONS(4793), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddchap] = ACTIONS(4793), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsection] = ACTIONS(4793), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddsec] = ACTIONS(4793), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubsection] = ACTIONS(4793), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4793), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHparagraph] = ACTIONS(4793), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4793), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4791), - [anon_sym_BSLASHitem] = ACTIONS(4793), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4791), - [anon_sym_LBRACE] = ACTIONS(4791), - [sym_word] = ACTIONS(4793), - [sym_placeholder] = ACTIONS(4791), - [anon_sym_PLUS] = ACTIONS(4793), - [anon_sym_DASH] = ACTIONS(4793), - [anon_sym_STAR] = ACTIONS(4793), - [anon_sym_SLASH] = ACTIONS(4793), - [anon_sym_CARET] = ACTIONS(4793), - [anon_sym__] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4793), - [anon_sym_GT] = ACTIONS(4793), - [anon_sym_BANG] = ACTIONS(4793), - [anon_sym_PIPE] = ACTIONS(4793), - [anon_sym_COLON] = ACTIONS(4793), - [anon_sym_SQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4791), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4791), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4791), - [anon_sym_DOLLAR] = ACTIONS(4793), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4791), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4791), - [anon_sym_BSLASHbegin] = ACTIONS(4793), - [anon_sym_BSLASHusepackage] = ACTIONS(4793), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4793), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4793), - [anon_sym_BSLASHinclude] = ACTIONS(4793), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4793), - [anon_sym_BSLASHinput] = ACTIONS(4793), - [anon_sym_BSLASHsubfile] = ACTIONS(4793), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4793), - [anon_sym_BSLASHbibliography] = ACTIONS(4793), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4793), - [anon_sym_BSLASHincludesvg] = ACTIONS(4793), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4793), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4793), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4793), - [anon_sym_BSLASHimport] = ACTIONS(4793), - [anon_sym_BSLASHsubimport] = ACTIONS(4793), - [anon_sym_BSLASHinputfrom] = ACTIONS(4793), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4793), - [anon_sym_BSLASHincludefrom] = ACTIONS(4793), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4793), - [anon_sym_BSLASHcaption] = ACTIONS(4793), - [anon_sym_BSLASHcite] = ACTIONS(4793), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCite] = ACTIONS(4793), - [anon_sym_BSLASHnocite] = ACTIONS(4793), - [anon_sym_BSLASHcitet] = ACTIONS(4793), - [anon_sym_BSLASHcitep] = ACTIONS(4793), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteauthor] = ACTIONS(4793), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4793), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitetitle] = ACTIONS(4793), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteyear] = ACTIONS(4793), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitedate] = ACTIONS(4793), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteurl] = ACTIONS(4793), - [anon_sym_BSLASHfullcite] = ACTIONS(4793), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4793), - [anon_sym_BSLASHcitealt] = ACTIONS(4793), - [anon_sym_BSLASHcitealp] = ACTIONS(4793), - [anon_sym_BSLASHcitetext] = ACTIONS(4793), - [anon_sym_BSLASHparencite] = ACTIONS(4793), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHParencite] = ACTIONS(4793), - [anon_sym_BSLASHfootcite] = ACTIONS(4793), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4793), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4793), - [anon_sym_BSLASHtextcite] = ACTIONS(4793), - [anon_sym_BSLASHTextcite] = ACTIONS(4793), - [anon_sym_BSLASHsmartcite] = ACTIONS(4793), - [anon_sym_BSLASHSmartcite] = ACTIONS(4793), - [anon_sym_BSLASHsupercite] = ACTIONS(4793), - [anon_sym_BSLASHautocite] = ACTIONS(4793), - [anon_sym_BSLASHAutocite] = ACTIONS(4793), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHvolcite] = ACTIONS(4793), - [anon_sym_BSLASHVolcite] = ACTIONS(4793), - [anon_sym_BSLASHpvolcite] = ACTIONS(4793), - [anon_sym_BSLASHPvolcite] = ACTIONS(4793), - [anon_sym_BSLASHfvolcite] = ACTIONS(4793), - [anon_sym_BSLASHftvolcite] = ACTIONS(4793), - [anon_sym_BSLASHsvolcite] = ACTIONS(4793), - [anon_sym_BSLASHSvolcite] = ACTIONS(4793), - [anon_sym_BSLASHtvolcite] = ACTIONS(4793), - [anon_sym_BSLASHTvolcite] = ACTIONS(4793), - [anon_sym_BSLASHavolcite] = ACTIONS(4793), - [anon_sym_BSLASHAvolcite] = ACTIONS(4793), - [anon_sym_BSLASHnotecite] = ACTIONS(4793), - [anon_sym_BSLASHNotecite] = ACTIONS(4793), - [anon_sym_BSLASHpnotecite] = ACTIONS(4793), - [anon_sym_BSLASHPnotecite] = ACTIONS(4793), - [anon_sym_BSLASHfnotecite] = ACTIONS(4793), - [anon_sym_BSLASHlabel] = ACTIONS(4793), - [anon_sym_BSLASHref] = ACTIONS(4793), - [anon_sym_BSLASHeqref] = ACTIONS(4793), - [anon_sym_BSLASHvref] = ACTIONS(4793), - [anon_sym_BSLASHVref] = ACTIONS(4793), - [anon_sym_BSLASHautoref] = ACTIONS(4793), - [anon_sym_BSLASHpageref] = ACTIONS(4793), - [anon_sym_BSLASHcref] = ACTIONS(4793), - [anon_sym_BSLASHCref] = ACTIONS(4793), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4791), - [anon_sym_BSLASHnamecref] = ACTIONS(4793), - [anon_sym_BSLASHnameCref] = ACTIONS(4793), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4793), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4793), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4793), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4793), - [anon_sym_BSLASHlabelcref] = ACTIONS(4793), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4793), - [anon_sym_BSLASHcrefrange] = ACTIONS(4793), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCrefrange] = ACTIONS(4793), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4791), - [anon_sym_BSLASHnewlabel] = ACTIONS(4793), - [anon_sym_BSLASHnewcommand] = ACTIONS(4793), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4793), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4793), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4793), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4791), - [anon_sym_BSLASHdef] = ACTIONS(4793), - [anon_sym_BSLASHlet] = ACTIONS(4793), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4793), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4793), - [anon_sym_BSLASHgls] = ACTIONS(4793), - [anon_sym_BSLASHGls] = ACTIONS(4793), - [anon_sym_BSLASHGLS] = ACTIONS(4793), - [anon_sym_BSLASHglspl] = ACTIONS(4793), - [anon_sym_BSLASHGlspl] = ACTIONS(4793), - [anon_sym_BSLASHGLSpl] = ACTIONS(4793), - [anon_sym_BSLASHglsdisp] = ACTIONS(4793), - [anon_sym_BSLASHglslink] = ACTIONS(4793), - [anon_sym_BSLASHglstext] = ACTIONS(4793), - [anon_sym_BSLASHGlstext] = ACTIONS(4793), - [anon_sym_BSLASHGLStext] = ACTIONS(4793), - [anon_sym_BSLASHglsfirst] = ACTIONS(4793), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4793), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4793), - [anon_sym_BSLASHglsplural] = ACTIONS(4793), - [anon_sym_BSLASHGlsplural] = ACTIONS(4793), - [anon_sym_BSLASHGLSplural] = ACTIONS(4793), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHglsname] = ACTIONS(4793), - [anon_sym_BSLASHGlsname] = ACTIONS(4793), - [anon_sym_BSLASHGLSname] = ACTIONS(4793), - [anon_sym_BSLASHglssymbol] = ACTIONS(4793), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4793), - [anon_sym_BSLASHglsdesc] = ACTIONS(4793), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4793), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4793), - [anon_sym_BSLASHglsuseri] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4793), - [anon_sym_BSLASHglsuserii] = ACTIONS(4793), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4793), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4793), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4793), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4793), - [anon_sym_BSLASHglsuserv] = ACTIONS(4793), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4793), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4793), - [anon_sym_BSLASHglsuservi] = ACTIONS(4793), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4793), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4793), - [anon_sym_BSLASHnewacronym] = ACTIONS(4793), - [anon_sym_BSLASHacrshort] = ACTIONS(4793), - [anon_sym_BSLASHAcrshort] = ACTIONS(4793), - [anon_sym_BSLASHACRshort] = ACTIONS(4793), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4793), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4793), - [anon_sym_BSLASHacrlong] = ACTIONS(4793), - [anon_sym_BSLASHAcrlong] = ACTIONS(4793), - [anon_sym_BSLASHACRlong] = ACTIONS(4793), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4793), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4793), - [anon_sym_BSLASHacrfull] = ACTIONS(4793), - [anon_sym_BSLASHAcrfull] = ACTIONS(4793), - [anon_sym_BSLASHACRfull] = ACTIONS(4793), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4793), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4793), - [anon_sym_BSLASHacs] = ACTIONS(4793), - [anon_sym_BSLASHAcs] = ACTIONS(4793), - [anon_sym_BSLASHacsp] = ACTIONS(4793), - [anon_sym_BSLASHAcsp] = ACTIONS(4793), - [anon_sym_BSLASHacl] = ACTIONS(4793), - [anon_sym_BSLASHAcl] = ACTIONS(4793), - [anon_sym_BSLASHaclp] = ACTIONS(4793), - [anon_sym_BSLASHAclp] = ACTIONS(4793), - [anon_sym_BSLASHacf] = ACTIONS(4793), - [anon_sym_BSLASHAcf] = ACTIONS(4793), - [anon_sym_BSLASHacfp] = ACTIONS(4793), - [anon_sym_BSLASHAcfp] = ACTIONS(4793), - [anon_sym_BSLASHac] = ACTIONS(4793), - [anon_sym_BSLASHAc] = ACTIONS(4793), - [anon_sym_BSLASHacp] = ACTIONS(4793), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4793), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4793), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4793), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4793), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4793), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4793), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4793), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4793), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4793), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4793), - [anon_sym_BSLASHcolor] = ACTIONS(4793), - [anon_sym_BSLASHcolorbox] = ACTIONS(4793), - [anon_sym_BSLASHtextcolor] = ACTIONS(4793), - [anon_sym_BSLASHpagecolor] = ACTIONS(4793), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4793), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4793), - }, - [765] = { - [sym_curly_group] = STATE(1175), - [sym_command_name] = ACTIONS(4789), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4789), - [anon_sym_LPAREN] = ACTIONS(4787), - [anon_sym_RPAREN] = ACTIONS(4787), - [anon_sym_LBRACK] = ACTIONS(4787), - [anon_sym_RBRACK] = ACTIONS(4787), - [anon_sym_COMMA] = ACTIONS(4787), - [anon_sym_EQ] = ACTIONS(4787), - [anon_sym_BSLASHpart] = ACTIONS(4789), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddpart] = ACTIONS(4789), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4787), - [anon_sym_BSLASHchapter] = ACTIONS(4789), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddchap] = ACTIONS(4789), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsection] = ACTIONS(4789), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddsec] = ACTIONS(4789), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubsection] = ACTIONS(4789), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4789), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHparagraph] = ACTIONS(4789), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4789), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4787), - [anon_sym_BSLASHitem] = ACTIONS(4789), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4787), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(4789), - [sym_placeholder] = ACTIONS(4787), - [anon_sym_PLUS] = ACTIONS(4789), - [anon_sym_DASH] = ACTIONS(4789), - [anon_sym_STAR] = ACTIONS(4789), - [anon_sym_SLASH] = ACTIONS(4789), - [anon_sym_CARET] = ACTIONS(4789), - [anon_sym__] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4789), - [anon_sym_GT] = ACTIONS(4789), - [anon_sym_BANG] = ACTIONS(4789), - [anon_sym_PIPE] = ACTIONS(4789), - [anon_sym_COLON] = ACTIONS(4789), - [anon_sym_SQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4787), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4787), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4787), - [anon_sym_DOLLAR] = ACTIONS(4789), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4787), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4787), - [anon_sym_BSLASHbegin] = ACTIONS(4789), - [anon_sym_BSLASHusepackage] = ACTIONS(4789), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4789), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4789), - [anon_sym_BSLASHinclude] = ACTIONS(4789), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4789), - [anon_sym_BSLASHinput] = ACTIONS(4789), - [anon_sym_BSLASHsubfile] = ACTIONS(4789), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4789), - [anon_sym_BSLASHbibliography] = ACTIONS(4789), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4789), - [anon_sym_BSLASHincludesvg] = ACTIONS(4789), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4789), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4789), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4789), - [anon_sym_BSLASHimport] = ACTIONS(4789), - [anon_sym_BSLASHsubimport] = ACTIONS(4789), - [anon_sym_BSLASHinputfrom] = ACTIONS(4789), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4789), - [anon_sym_BSLASHincludefrom] = ACTIONS(4789), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4789), - [anon_sym_BSLASHcaption] = ACTIONS(4789), - [anon_sym_BSLASHcite] = ACTIONS(4789), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCite] = ACTIONS(4789), - [anon_sym_BSLASHnocite] = ACTIONS(4789), - [anon_sym_BSLASHcitet] = ACTIONS(4789), - [anon_sym_BSLASHcitep] = ACTIONS(4789), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteauthor] = ACTIONS(4789), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4789), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitetitle] = ACTIONS(4789), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteyear] = ACTIONS(4789), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitedate] = ACTIONS(4789), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteurl] = ACTIONS(4789), - [anon_sym_BSLASHfullcite] = ACTIONS(4789), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4789), - [anon_sym_BSLASHcitealt] = ACTIONS(4789), - [anon_sym_BSLASHcitealp] = ACTIONS(4789), - [anon_sym_BSLASHcitetext] = ACTIONS(4789), - [anon_sym_BSLASHparencite] = ACTIONS(4789), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHParencite] = ACTIONS(4789), - [anon_sym_BSLASHfootcite] = ACTIONS(4789), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4789), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4789), - [anon_sym_BSLASHtextcite] = ACTIONS(4789), - [anon_sym_BSLASHTextcite] = ACTIONS(4789), - [anon_sym_BSLASHsmartcite] = ACTIONS(4789), - [anon_sym_BSLASHSmartcite] = ACTIONS(4789), - [anon_sym_BSLASHsupercite] = ACTIONS(4789), - [anon_sym_BSLASHautocite] = ACTIONS(4789), - [anon_sym_BSLASHAutocite] = ACTIONS(4789), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHvolcite] = ACTIONS(4789), - [anon_sym_BSLASHVolcite] = ACTIONS(4789), - [anon_sym_BSLASHpvolcite] = ACTIONS(4789), - [anon_sym_BSLASHPvolcite] = ACTIONS(4789), - [anon_sym_BSLASHfvolcite] = ACTIONS(4789), - [anon_sym_BSLASHftvolcite] = ACTIONS(4789), - [anon_sym_BSLASHsvolcite] = ACTIONS(4789), - [anon_sym_BSLASHSvolcite] = ACTIONS(4789), - [anon_sym_BSLASHtvolcite] = ACTIONS(4789), - [anon_sym_BSLASHTvolcite] = ACTIONS(4789), - [anon_sym_BSLASHavolcite] = ACTIONS(4789), - [anon_sym_BSLASHAvolcite] = ACTIONS(4789), - [anon_sym_BSLASHnotecite] = ACTIONS(4789), - [anon_sym_BSLASHNotecite] = ACTIONS(4789), - [anon_sym_BSLASHpnotecite] = ACTIONS(4789), - [anon_sym_BSLASHPnotecite] = ACTIONS(4789), - [anon_sym_BSLASHfnotecite] = ACTIONS(4789), - [anon_sym_BSLASHlabel] = ACTIONS(4789), - [anon_sym_BSLASHref] = ACTIONS(4789), - [anon_sym_BSLASHeqref] = ACTIONS(4789), - [anon_sym_BSLASHvref] = ACTIONS(4789), - [anon_sym_BSLASHVref] = ACTIONS(4789), - [anon_sym_BSLASHautoref] = ACTIONS(4789), - [anon_sym_BSLASHpageref] = ACTIONS(4789), - [anon_sym_BSLASHcref] = ACTIONS(4789), - [anon_sym_BSLASHCref] = ACTIONS(4789), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4787), - [anon_sym_BSLASHnamecref] = ACTIONS(4789), - [anon_sym_BSLASHnameCref] = ACTIONS(4789), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4789), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4789), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4789), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4789), - [anon_sym_BSLASHlabelcref] = ACTIONS(4789), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4789), - [anon_sym_BSLASHcrefrange] = ACTIONS(4789), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCrefrange] = ACTIONS(4789), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4787), - [anon_sym_BSLASHnewlabel] = ACTIONS(4789), - [anon_sym_BSLASHnewcommand] = ACTIONS(4789), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4789), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4789), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4789), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4787), - [anon_sym_BSLASHdef] = ACTIONS(4789), - [anon_sym_BSLASHlet] = ACTIONS(4789), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4789), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4789), - [anon_sym_BSLASHgls] = ACTIONS(4789), - [anon_sym_BSLASHGls] = ACTIONS(4789), - [anon_sym_BSLASHGLS] = ACTIONS(4789), - [anon_sym_BSLASHglspl] = ACTIONS(4789), - [anon_sym_BSLASHGlspl] = ACTIONS(4789), - [anon_sym_BSLASHGLSpl] = ACTIONS(4789), - [anon_sym_BSLASHglsdisp] = ACTIONS(4789), - [anon_sym_BSLASHglslink] = ACTIONS(4789), - [anon_sym_BSLASHglstext] = ACTIONS(4789), - [anon_sym_BSLASHGlstext] = ACTIONS(4789), - [anon_sym_BSLASHGLStext] = ACTIONS(4789), - [anon_sym_BSLASHglsfirst] = ACTIONS(4789), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4789), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4789), - [anon_sym_BSLASHglsplural] = ACTIONS(4789), - [anon_sym_BSLASHGlsplural] = ACTIONS(4789), - [anon_sym_BSLASHGLSplural] = ACTIONS(4789), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHglsname] = ACTIONS(4789), - [anon_sym_BSLASHGlsname] = ACTIONS(4789), - [anon_sym_BSLASHGLSname] = ACTIONS(4789), - [anon_sym_BSLASHglssymbol] = ACTIONS(4789), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4789), - [anon_sym_BSLASHglsdesc] = ACTIONS(4789), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4789), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4789), - [anon_sym_BSLASHglsuseri] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4789), - [anon_sym_BSLASHglsuserii] = ACTIONS(4789), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4789), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4789), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4789), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4789), - [anon_sym_BSLASHglsuserv] = ACTIONS(4789), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4789), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4789), - [anon_sym_BSLASHglsuservi] = ACTIONS(4789), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4789), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4789), - [anon_sym_BSLASHnewacronym] = ACTIONS(4789), - [anon_sym_BSLASHacrshort] = ACTIONS(4789), - [anon_sym_BSLASHAcrshort] = ACTIONS(4789), - [anon_sym_BSLASHACRshort] = ACTIONS(4789), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4789), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4789), - [anon_sym_BSLASHacrlong] = ACTIONS(4789), - [anon_sym_BSLASHAcrlong] = ACTIONS(4789), - [anon_sym_BSLASHACRlong] = ACTIONS(4789), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4789), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4789), - [anon_sym_BSLASHacrfull] = ACTIONS(4789), - [anon_sym_BSLASHAcrfull] = ACTIONS(4789), - [anon_sym_BSLASHACRfull] = ACTIONS(4789), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4789), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4789), - [anon_sym_BSLASHacs] = ACTIONS(4789), - [anon_sym_BSLASHAcs] = ACTIONS(4789), - [anon_sym_BSLASHacsp] = ACTIONS(4789), - [anon_sym_BSLASHAcsp] = ACTIONS(4789), - [anon_sym_BSLASHacl] = ACTIONS(4789), - [anon_sym_BSLASHAcl] = ACTIONS(4789), - [anon_sym_BSLASHaclp] = ACTIONS(4789), - [anon_sym_BSLASHAclp] = ACTIONS(4789), - [anon_sym_BSLASHacf] = ACTIONS(4789), - [anon_sym_BSLASHAcf] = ACTIONS(4789), - [anon_sym_BSLASHacfp] = ACTIONS(4789), - [anon_sym_BSLASHAcfp] = ACTIONS(4789), - [anon_sym_BSLASHac] = ACTIONS(4789), - [anon_sym_BSLASHAc] = ACTIONS(4789), - [anon_sym_BSLASHacp] = ACTIONS(4789), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4789), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4789), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4789), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4789), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4789), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4789), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4789), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4789), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4789), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4789), - [anon_sym_BSLASHcolor] = ACTIONS(4789), - [anon_sym_BSLASHcolorbox] = ACTIONS(4789), - [anon_sym_BSLASHtextcolor] = ACTIONS(4789), - [anon_sym_BSLASHpagecolor] = ACTIONS(4789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4789), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4789), - }, - [766] = { - [sym_curly_group] = STATE(1176), - [sym_command_name] = ACTIONS(4785), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4785), - [anon_sym_LPAREN] = ACTIONS(4783), - [anon_sym_RPAREN] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4783), - [anon_sym_RBRACK] = ACTIONS(4783), - [anon_sym_COMMA] = ACTIONS(4783), - [anon_sym_EQ] = ACTIONS(4783), - [anon_sym_BSLASHpart] = ACTIONS(4785), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddpart] = ACTIONS(4785), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4783), - [anon_sym_BSLASHchapter] = ACTIONS(4785), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddchap] = ACTIONS(4785), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsection] = ACTIONS(4785), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddsec] = ACTIONS(4785), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubsection] = ACTIONS(4785), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4785), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHparagraph] = ACTIONS(4785), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4785), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4783), - [anon_sym_BSLASHitem] = ACTIONS(4785), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4783), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(4785), - [sym_placeholder] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(4785), - [anon_sym_DASH] = ACTIONS(4785), - [anon_sym_STAR] = ACTIONS(4785), - [anon_sym_SLASH] = ACTIONS(4785), - [anon_sym_CARET] = ACTIONS(4785), - [anon_sym__] = ACTIONS(4785), - [anon_sym_LT] = ACTIONS(4785), - [anon_sym_GT] = ACTIONS(4785), - [anon_sym_BANG] = ACTIONS(4785), - [anon_sym_PIPE] = ACTIONS(4785), - [anon_sym_COLON] = ACTIONS(4785), - [anon_sym_SQUOTE] = ACTIONS(4785), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4783), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4783), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4783), - [anon_sym_DOLLAR] = ACTIONS(4785), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4783), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4783), - [anon_sym_BSLASHbegin] = ACTIONS(4785), - [anon_sym_BSLASHusepackage] = ACTIONS(4785), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4785), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4785), - [anon_sym_BSLASHinclude] = ACTIONS(4785), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4785), - [anon_sym_BSLASHinput] = ACTIONS(4785), - [anon_sym_BSLASHsubfile] = ACTIONS(4785), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4785), - [anon_sym_BSLASHbibliography] = ACTIONS(4785), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4785), - [anon_sym_BSLASHincludesvg] = ACTIONS(4785), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4785), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4785), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4785), - [anon_sym_BSLASHimport] = ACTIONS(4785), - [anon_sym_BSLASHsubimport] = ACTIONS(4785), - [anon_sym_BSLASHinputfrom] = ACTIONS(4785), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4785), - [anon_sym_BSLASHincludefrom] = ACTIONS(4785), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4785), - [anon_sym_BSLASHcaption] = ACTIONS(4785), - [anon_sym_BSLASHcite] = ACTIONS(4785), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCite] = ACTIONS(4785), - [anon_sym_BSLASHnocite] = ACTIONS(4785), - [anon_sym_BSLASHcitet] = ACTIONS(4785), - [anon_sym_BSLASHcitep] = ACTIONS(4785), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteauthor] = ACTIONS(4785), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4785), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitetitle] = ACTIONS(4785), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteyear] = ACTIONS(4785), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitedate] = ACTIONS(4785), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteurl] = ACTIONS(4785), - [anon_sym_BSLASHfullcite] = ACTIONS(4785), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4785), - [anon_sym_BSLASHcitealt] = ACTIONS(4785), - [anon_sym_BSLASHcitealp] = ACTIONS(4785), - [anon_sym_BSLASHcitetext] = ACTIONS(4785), - [anon_sym_BSLASHparencite] = ACTIONS(4785), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHParencite] = ACTIONS(4785), - [anon_sym_BSLASHfootcite] = ACTIONS(4785), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4785), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4785), - [anon_sym_BSLASHtextcite] = ACTIONS(4785), - [anon_sym_BSLASHTextcite] = ACTIONS(4785), - [anon_sym_BSLASHsmartcite] = ACTIONS(4785), - [anon_sym_BSLASHSmartcite] = ACTIONS(4785), - [anon_sym_BSLASHsupercite] = ACTIONS(4785), - [anon_sym_BSLASHautocite] = ACTIONS(4785), - [anon_sym_BSLASHAutocite] = ACTIONS(4785), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHvolcite] = ACTIONS(4785), - [anon_sym_BSLASHVolcite] = ACTIONS(4785), - [anon_sym_BSLASHpvolcite] = ACTIONS(4785), - [anon_sym_BSLASHPvolcite] = ACTIONS(4785), - [anon_sym_BSLASHfvolcite] = ACTIONS(4785), - [anon_sym_BSLASHftvolcite] = ACTIONS(4785), - [anon_sym_BSLASHsvolcite] = ACTIONS(4785), - [anon_sym_BSLASHSvolcite] = ACTIONS(4785), - [anon_sym_BSLASHtvolcite] = ACTIONS(4785), - [anon_sym_BSLASHTvolcite] = ACTIONS(4785), - [anon_sym_BSLASHavolcite] = ACTIONS(4785), - [anon_sym_BSLASHAvolcite] = ACTIONS(4785), - [anon_sym_BSLASHnotecite] = ACTIONS(4785), - [anon_sym_BSLASHNotecite] = ACTIONS(4785), - [anon_sym_BSLASHpnotecite] = ACTIONS(4785), - [anon_sym_BSLASHPnotecite] = ACTIONS(4785), - [anon_sym_BSLASHfnotecite] = ACTIONS(4785), - [anon_sym_BSLASHlabel] = ACTIONS(4785), - [anon_sym_BSLASHref] = ACTIONS(4785), - [anon_sym_BSLASHeqref] = ACTIONS(4785), - [anon_sym_BSLASHvref] = ACTIONS(4785), - [anon_sym_BSLASHVref] = ACTIONS(4785), - [anon_sym_BSLASHautoref] = ACTIONS(4785), - [anon_sym_BSLASHpageref] = ACTIONS(4785), - [anon_sym_BSLASHcref] = ACTIONS(4785), - [anon_sym_BSLASHCref] = ACTIONS(4785), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4783), - [anon_sym_BSLASHnamecref] = ACTIONS(4785), - [anon_sym_BSLASHnameCref] = ACTIONS(4785), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4785), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4785), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4785), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4785), - [anon_sym_BSLASHlabelcref] = ACTIONS(4785), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4785), - [anon_sym_BSLASHcrefrange] = ACTIONS(4785), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCrefrange] = ACTIONS(4785), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4783), - [anon_sym_BSLASHnewlabel] = ACTIONS(4785), - [anon_sym_BSLASHnewcommand] = ACTIONS(4785), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4785), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4785), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4785), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4783), - [anon_sym_BSLASHdef] = ACTIONS(4785), - [anon_sym_BSLASHlet] = ACTIONS(4785), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4785), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4785), - [anon_sym_BSLASHgls] = ACTIONS(4785), - [anon_sym_BSLASHGls] = ACTIONS(4785), - [anon_sym_BSLASHGLS] = ACTIONS(4785), - [anon_sym_BSLASHglspl] = ACTIONS(4785), - [anon_sym_BSLASHGlspl] = ACTIONS(4785), - [anon_sym_BSLASHGLSpl] = ACTIONS(4785), - [anon_sym_BSLASHglsdisp] = ACTIONS(4785), - [anon_sym_BSLASHglslink] = ACTIONS(4785), - [anon_sym_BSLASHglstext] = ACTIONS(4785), - [anon_sym_BSLASHGlstext] = ACTIONS(4785), - [anon_sym_BSLASHGLStext] = ACTIONS(4785), - [anon_sym_BSLASHglsfirst] = ACTIONS(4785), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4785), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4785), - [anon_sym_BSLASHglsplural] = ACTIONS(4785), - [anon_sym_BSLASHGlsplural] = ACTIONS(4785), - [anon_sym_BSLASHGLSplural] = ACTIONS(4785), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHglsname] = ACTIONS(4785), - [anon_sym_BSLASHGlsname] = ACTIONS(4785), - [anon_sym_BSLASHGLSname] = ACTIONS(4785), - [anon_sym_BSLASHglssymbol] = ACTIONS(4785), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4785), - [anon_sym_BSLASHglsdesc] = ACTIONS(4785), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4785), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4785), - [anon_sym_BSLASHglsuseri] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4785), - [anon_sym_BSLASHglsuserii] = ACTIONS(4785), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4785), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4785), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4785), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4785), - [anon_sym_BSLASHglsuserv] = ACTIONS(4785), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4785), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4785), - [anon_sym_BSLASHglsuservi] = ACTIONS(4785), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4785), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4785), - [anon_sym_BSLASHnewacronym] = ACTIONS(4785), - [anon_sym_BSLASHacrshort] = ACTIONS(4785), - [anon_sym_BSLASHAcrshort] = ACTIONS(4785), - [anon_sym_BSLASHACRshort] = ACTIONS(4785), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4785), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4785), - [anon_sym_BSLASHacrlong] = ACTIONS(4785), - [anon_sym_BSLASHAcrlong] = ACTIONS(4785), - [anon_sym_BSLASHACRlong] = ACTIONS(4785), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4785), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4785), - [anon_sym_BSLASHacrfull] = ACTIONS(4785), - [anon_sym_BSLASHAcrfull] = ACTIONS(4785), - [anon_sym_BSLASHACRfull] = ACTIONS(4785), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4785), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4785), - [anon_sym_BSLASHacs] = ACTIONS(4785), - [anon_sym_BSLASHAcs] = ACTIONS(4785), - [anon_sym_BSLASHacsp] = ACTIONS(4785), - [anon_sym_BSLASHAcsp] = ACTIONS(4785), - [anon_sym_BSLASHacl] = ACTIONS(4785), - [anon_sym_BSLASHAcl] = ACTIONS(4785), - [anon_sym_BSLASHaclp] = ACTIONS(4785), - [anon_sym_BSLASHAclp] = ACTIONS(4785), - [anon_sym_BSLASHacf] = ACTIONS(4785), - [anon_sym_BSLASHAcf] = ACTIONS(4785), - [anon_sym_BSLASHacfp] = ACTIONS(4785), - [anon_sym_BSLASHAcfp] = ACTIONS(4785), - [anon_sym_BSLASHac] = ACTIONS(4785), - [anon_sym_BSLASHAc] = ACTIONS(4785), - [anon_sym_BSLASHacp] = ACTIONS(4785), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4785), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4785), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4785), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4785), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4785), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4785), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4785), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4785), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4785), - [anon_sym_BSLASHcolor] = ACTIONS(4785), - [anon_sym_BSLASHcolorbox] = ACTIONS(4785), - [anon_sym_BSLASHtextcolor] = ACTIONS(4785), - [anon_sym_BSLASHpagecolor] = ACTIONS(4785), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4785), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4785), - }, - [767] = { - [sym_curly_group] = STATE(1177), - [sym_command_name] = ACTIONS(4781), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4779), - [anon_sym_RPAREN] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_RBRACK] = ACTIONS(4779), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_EQ] = ACTIONS(4779), - [anon_sym_BSLASHpart] = ACTIONS(4781), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddpart] = ACTIONS(4781), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4779), - [anon_sym_BSLASHchapter] = ACTIONS(4781), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddchap] = ACTIONS(4781), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsection] = ACTIONS(4781), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddsec] = ACTIONS(4781), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubsection] = ACTIONS(4781), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4781), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHparagraph] = ACTIONS(4781), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4781), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4779), - [anon_sym_BSLASHitem] = ACTIONS(4781), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(4781), - [sym_placeholder] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4781), - [anon_sym_DASH] = ACTIONS(4781), - [anon_sym_STAR] = ACTIONS(4781), - [anon_sym_SLASH] = ACTIONS(4781), - [anon_sym_CARET] = ACTIONS(4781), - [anon_sym__] = ACTIONS(4781), - [anon_sym_LT] = ACTIONS(4781), - [anon_sym_GT] = ACTIONS(4781), - [anon_sym_BANG] = ACTIONS(4781), - [anon_sym_PIPE] = ACTIONS(4781), - [anon_sym_COLON] = ACTIONS(4781), - [anon_sym_SQUOTE] = ACTIONS(4781), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4779), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4779), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4779), - [anon_sym_DOLLAR] = ACTIONS(4781), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4779), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4779), - [anon_sym_BSLASHbegin] = ACTIONS(4781), - [anon_sym_BSLASHusepackage] = ACTIONS(4781), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4781), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4781), - [anon_sym_BSLASHinclude] = ACTIONS(4781), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4781), - [anon_sym_BSLASHinput] = ACTIONS(4781), - [anon_sym_BSLASHsubfile] = ACTIONS(4781), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4781), - [anon_sym_BSLASHbibliography] = ACTIONS(4781), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4781), - [anon_sym_BSLASHincludesvg] = ACTIONS(4781), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4781), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4781), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4781), - [anon_sym_BSLASHimport] = ACTIONS(4781), - [anon_sym_BSLASHsubimport] = ACTIONS(4781), - [anon_sym_BSLASHinputfrom] = ACTIONS(4781), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4781), - [anon_sym_BSLASHincludefrom] = ACTIONS(4781), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4781), - [anon_sym_BSLASHcaption] = ACTIONS(4781), - [anon_sym_BSLASHcite] = ACTIONS(4781), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCite] = ACTIONS(4781), - [anon_sym_BSLASHnocite] = ACTIONS(4781), - [anon_sym_BSLASHcitet] = ACTIONS(4781), - [anon_sym_BSLASHcitep] = ACTIONS(4781), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteauthor] = ACTIONS(4781), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4781), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitetitle] = ACTIONS(4781), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteyear] = ACTIONS(4781), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitedate] = ACTIONS(4781), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteurl] = ACTIONS(4781), - [anon_sym_BSLASHfullcite] = ACTIONS(4781), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4781), - [anon_sym_BSLASHcitealt] = ACTIONS(4781), - [anon_sym_BSLASHcitealp] = ACTIONS(4781), - [anon_sym_BSLASHcitetext] = ACTIONS(4781), - [anon_sym_BSLASHparencite] = ACTIONS(4781), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHParencite] = ACTIONS(4781), - [anon_sym_BSLASHfootcite] = ACTIONS(4781), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4781), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4781), - [anon_sym_BSLASHtextcite] = ACTIONS(4781), - [anon_sym_BSLASHTextcite] = ACTIONS(4781), - [anon_sym_BSLASHsmartcite] = ACTIONS(4781), - [anon_sym_BSLASHSmartcite] = ACTIONS(4781), - [anon_sym_BSLASHsupercite] = ACTIONS(4781), - [anon_sym_BSLASHautocite] = ACTIONS(4781), - [anon_sym_BSLASHAutocite] = ACTIONS(4781), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHvolcite] = ACTIONS(4781), - [anon_sym_BSLASHVolcite] = ACTIONS(4781), - [anon_sym_BSLASHpvolcite] = ACTIONS(4781), - [anon_sym_BSLASHPvolcite] = ACTIONS(4781), - [anon_sym_BSLASHfvolcite] = ACTIONS(4781), - [anon_sym_BSLASHftvolcite] = ACTIONS(4781), - [anon_sym_BSLASHsvolcite] = ACTIONS(4781), - [anon_sym_BSLASHSvolcite] = ACTIONS(4781), - [anon_sym_BSLASHtvolcite] = ACTIONS(4781), - [anon_sym_BSLASHTvolcite] = ACTIONS(4781), - [anon_sym_BSLASHavolcite] = ACTIONS(4781), - [anon_sym_BSLASHAvolcite] = ACTIONS(4781), - [anon_sym_BSLASHnotecite] = ACTIONS(4781), - [anon_sym_BSLASHNotecite] = ACTIONS(4781), - [anon_sym_BSLASHpnotecite] = ACTIONS(4781), - [anon_sym_BSLASHPnotecite] = ACTIONS(4781), - [anon_sym_BSLASHfnotecite] = ACTIONS(4781), - [anon_sym_BSLASHlabel] = ACTIONS(4781), - [anon_sym_BSLASHref] = ACTIONS(4781), - [anon_sym_BSLASHeqref] = ACTIONS(4781), - [anon_sym_BSLASHvref] = ACTIONS(4781), - [anon_sym_BSLASHVref] = ACTIONS(4781), - [anon_sym_BSLASHautoref] = ACTIONS(4781), - [anon_sym_BSLASHpageref] = ACTIONS(4781), - [anon_sym_BSLASHcref] = ACTIONS(4781), - [anon_sym_BSLASHCref] = ACTIONS(4781), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4779), - [anon_sym_BSLASHnamecref] = ACTIONS(4781), - [anon_sym_BSLASHnameCref] = ACTIONS(4781), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4781), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4781), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4781), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4781), - [anon_sym_BSLASHlabelcref] = ACTIONS(4781), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4781), - [anon_sym_BSLASHcrefrange] = ACTIONS(4781), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCrefrange] = ACTIONS(4781), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4779), - [anon_sym_BSLASHnewlabel] = ACTIONS(4781), - [anon_sym_BSLASHnewcommand] = ACTIONS(4781), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4781), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4781), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4781), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4779), - [anon_sym_BSLASHdef] = ACTIONS(4781), - [anon_sym_BSLASHlet] = ACTIONS(4781), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4781), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4781), - [anon_sym_BSLASHgls] = ACTIONS(4781), - [anon_sym_BSLASHGls] = ACTIONS(4781), - [anon_sym_BSLASHGLS] = ACTIONS(4781), - [anon_sym_BSLASHglspl] = ACTIONS(4781), - [anon_sym_BSLASHGlspl] = ACTIONS(4781), - [anon_sym_BSLASHGLSpl] = ACTIONS(4781), - [anon_sym_BSLASHglsdisp] = ACTIONS(4781), - [anon_sym_BSLASHglslink] = ACTIONS(4781), - [anon_sym_BSLASHglstext] = ACTIONS(4781), - [anon_sym_BSLASHGlstext] = ACTIONS(4781), - [anon_sym_BSLASHGLStext] = ACTIONS(4781), - [anon_sym_BSLASHglsfirst] = ACTIONS(4781), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4781), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4781), - [anon_sym_BSLASHglsplural] = ACTIONS(4781), - [anon_sym_BSLASHGlsplural] = ACTIONS(4781), - [anon_sym_BSLASHGLSplural] = ACTIONS(4781), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHglsname] = ACTIONS(4781), - [anon_sym_BSLASHGlsname] = ACTIONS(4781), - [anon_sym_BSLASHGLSname] = ACTIONS(4781), - [anon_sym_BSLASHglssymbol] = ACTIONS(4781), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4781), - [anon_sym_BSLASHglsdesc] = ACTIONS(4781), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4781), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4781), - [anon_sym_BSLASHglsuseri] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4781), - [anon_sym_BSLASHglsuserii] = ACTIONS(4781), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4781), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4781), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4781), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4781), - [anon_sym_BSLASHglsuserv] = ACTIONS(4781), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4781), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4781), - [anon_sym_BSLASHglsuservi] = ACTIONS(4781), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4781), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4781), - [anon_sym_BSLASHnewacronym] = ACTIONS(4781), - [anon_sym_BSLASHacrshort] = ACTIONS(4781), - [anon_sym_BSLASHAcrshort] = ACTIONS(4781), - [anon_sym_BSLASHACRshort] = ACTIONS(4781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4781), - [anon_sym_BSLASHacrlong] = ACTIONS(4781), - [anon_sym_BSLASHAcrlong] = ACTIONS(4781), - [anon_sym_BSLASHACRlong] = ACTIONS(4781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4781), - [anon_sym_BSLASHacrfull] = ACTIONS(4781), - [anon_sym_BSLASHAcrfull] = ACTIONS(4781), - [anon_sym_BSLASHACRfull] = ACTIONS(4781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4781), - [anon_sym_BSLASHacs] = ACTIONS(4781), - [anon_sym_BSLASHAcs] = ACTIONS(4781), - [anon_sym_BSLASHacsp] = ACTIONS(4781), - [anon_sym_BSLASHAcsp] = ACTIONS(4781), - [anon_sym_BSLASHacl] = ACTIONS(4781), - [anon_sym_BSLASHAcl] = ACTIONS(4781), - [anon_sym_BSLASHaclp] = ACTIONS(4781), - [anon_sym_BSLASHAclp] = ACTIONS(4781), - [anon_sym_BSLASHacf] = ACTIONS(4781), - [anon_sym_BSLASHAcf] = ACTIONS(4781), - [anon_sym_BSLASHacfp] = ACTIONS(4781), - [anon_sym_BSLASHAcfp] = ACTIONS(4781), - [anon_sym_BSLASHac] = ACTIONS(4781), - [anon_sym_BSLASHAc] = ACTIONS(4781), - [anon_sym_BSLASHacp] = ACTIONS(4781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4781), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4781), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4781), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4781), - [anon_sym_BSLASHcolor] = ACTIONS(4781), - [anon_sym_BSLASHcolorbox] = ACTIONS(4781), - [anon_sym_BSLASHtextcolor] = ACTIONS(4781), - [anon_sym_BSLASHpagecolor] = ACTIONS(4781), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4781), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4781), - }, - [768] = { - [sym_curly_group] = STATE(1178), - [sym_command_name] = ACTIONS(4777), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4777), - [anon_sym_LPAREN] = ACTIONS(4775), - [anon_sym_RPAREN] = ACTIONS(4775), - [anon_sym_LBRACK] = ACTIONS(4775), - [anon_sym_RBRACK] = ACTIONS(4775), - [anon_sym_COMMA] = ACTIONS(4775), - [anon_sym_EQ] = ACTIONS(4775), - [anon_sym_BSLASHpart] = ACTIONS(4777), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddpart] = ACTIONS(4777), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4775), - [anon_sym_BSLASHchapter] = ACTIONS(4777), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddchap] = ACTIONS(4777), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsection] = ACTIONS(4777), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddsec] = ACTIONS(4777), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubsection] = ACTIONS(4777), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4777), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHparagraph] = ACTIONS(4777), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4777), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4775), - [anon_sym_BSLASHitem] = ACTIONS(4777), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4775), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(4777), - [sym_placeholder] = ACTIONS(4775), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_CARET] = ACTIONS(4777), - [anon_sym__] = ACTIONS(4777), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_PIPE] = ACTIONS(4777), - [anon_sym_COLON] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4777), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4775), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4775), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4775), - [anon_sym_DOLLAR] = ACTIONS(4777), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4775), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4775), - [anon_sym_BSLASHbegin] = ACTIONS(4777), - [anon_sym_BSLASHusepackage] = ACTIONS(4777), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4777), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4777), - [anon_sym_BSLASHinclude] = ACTIONS(4777), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4777), - [anon_sym_BSLASHinput] = ACTIONS(4777), - [anon_sym_BSLASHsubfile] = ACTIONS(4777), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4777), - [anon_sym_BSLASHbibliography] = ACTIONS(4777), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4777), - [anon_sym_BSLASHincludesvg] = ACTIONS(4777), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4777), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4777), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4777), - [anon_sym_BSLASHimport] = ACTIONS(4777), - [anon_sym_BSLASHsubimport] = ACTIONS(4777), - [anon_sym_BSLASHinputfrom] = ACTIONS(4777), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4777), - [anon_sym_BSLASHincludefrom] = ACTIONS(4777), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4777), - [anon_sym_BSLASHcaption] = ACTIONS(4777), - [anon_sym_BSLASHcite] = ACTIONS(4777), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCite] = ACTIONS(4777), - [anon_sym_BSLASHnocite] = ACTIONS(4777), - [anon_sym_BSLASHcitet] = ACTIONS(4777), - [anon_sym_BSLASHcitep] = ACTIONS(4777), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteauthor] = ACTIONS(4777), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4777), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitetitle] = ACTIONS(4777), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteyear] = ACTIONS(4777), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitedate] = ACTIONS(4777), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteurl] = ACTIONS(4777), - [anon_sym_BSLASHfullcite] = ACTIONS(4777), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4777), - [anon_sym_BSLASHcitealt] = ACTIONS(4777), - [anon_sym_BSLASHcitealp] = ACTIONS(4777), - [anon_sym_BSLASHcitetext] = ACTIONS(4777), - [anon_sym_BSLASHparencite] = ACTIONS(4777), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHParencite] = ACTIONS(4777), - [anon_sym_BSLASHfootcite] = ACTIONS(4777), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4777), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4777), - [anon_sym_BSLASHtextcite] = ACTIONS(4777), - [anon_sym_BSLASHTextcite] = ACTIONS(4777), - [anon_sym_BSLASHsmartcite] = ACTIONS(4777), - [anon_sym_BSLASHSmartcite] = ACTIONS(4777), - [anon_sym_BSLASHsupercite] = ACTIONS(4777), - [anon_sym_BSLASHautocite] = ACTIONS(4777), - [anon_sym_BSLASHAutocite] = ACTIONS(4777), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHvolcite] = ACTIONS(4777), - [anon_sym_BSLASHVolcite] = ACTIONS(4777), - [anon_sym_BSLASHpvolcite] = ACTIONS(4777), - [anon_sym_BSLASHPvolcite] = ACTIONS(4777), - [anon_sym_BSLASHfvolcite] = ACTIONS(4777), - [anon_sym_BSLASHftvolcite] = ACTIONS(4777), - [anon_sym_BSLASHsvolcite] = ACTIONS(4777), - [anon_sym_BSLASHSvolcite] = ACTIONS(4777), - [anon_sym_BSLASHtvolcite] = ACTIONS(4777), - [anon_sym_BSLASHTvolcite] = ACTIONS(4777), - [anon_sym_BSLASHavolcite] = ACTIONS(4777), - [anon_sym_BSLASHAvolcite] = ACTIONS(4777), - [anon_sym_BSLASHnotecite] = ACTIONS(4777), - [anon_sym_BSLASHNotecite] = ACTIONS(4777), - [anon_sym_BSLASHpnotecite] = ACTIONS(4777), - [anon_sym_BSLASHPnotecite] = ACTIONS(4777), - [anon_sym_BSLASHfnotecite] = ACTIONS(4777), - [anon_sym_BSLASHlabel] = ACTIONS(4777), - [anon_sym_BSLASHref] = ACTIONS(4777), - [anon_sym_BSLASHeqref] = ACTIONS(4777), - [anon_sym_BSLASHvref] = ACTIONS(4777), - [anon_sym_BSLASHVref] = ACTIONS(4777), - [anon_sym_BSLASHautoref] = ACTIONS(4777), - [anon_sym_BSLASHpageref] = ACTIONS(4777), - [anon_sym_BSLASHcref] = ACTIONS(4777), - [anon_sym_BSLASHCref] = ACTIONS(4777), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4775), - [anon_sym_BSLASHnamecref] = ACTIONS(4777), - [anon_sym_BSLASHnameCref] = ACTIONS(4777), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4777), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4777), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4777), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4777), - [anon_sym_BSLASHlabelcref] = ACTIONS(4777), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4777), - [anon_sym_BSLASHcrefrange] = ACTIONS(4777), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCrefrange] = ACTIONS(4777), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4775), - [anon_sym_BSLASHnewlabel] = ACTIONS(4777), - [anon_sym_BSLASHnewcommand] = ACTIONS(4777), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4777), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4777), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4777), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4775), - [anon_sym_BSLASHdef] = ACTIONS(4777), - [anon_sym_BSLASHlet] = ACTIONS(4777), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4777), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4777), - [anon_sym_BSLASHgls] = ACTIONS(4777), - [anon_sym_BSLASHGls] = ACTIONS(4777), - [anon_sym_BSLASHGLS] = ACTIONS(4777), - [anon_sym_BSLASHglspl] = ACTIONS(4777), - [anon_sym_BSLASHGlspl] = ACTIONS(4777), - [anon_sym_BSLASHGLSpl] = ACTIONS(4777), - [anon_sym_BSLASHglsdisp] = ACTIONS(4777), - [anon_sym_BSLASHglslink] = ACTIONS(4777), - [anon_sym_BSLASHglstext] = ACTIONS(4777), - [anon_sym_BSLASHGlstext] = ACTIONS(4777), - [anon_sym_BSLASHGLStext] = ACTIONS(4777), - [anon_sym_BSLASHglsfirst] = ACTIONS(4777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4777), - [anon_sym_BSLASHglsplural] = ACTIONS(4777), - [anon_sym_BSLASHGlsplural] = ACTIONS(4777), - [anon_sym_BSLASHGLSplural] = ACTIONS(4777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHglsname] = ACTIONS(4777), - [anon_sym_BSLASHGlsname] = ACTIONS(4777), - [anon_sym_BSLASHGLSname] = ACTIONS(4777), - [anon_sym_BSLASHglssymbol] = ACTIONS(4777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4777), - [anon_sym_BSLASHglsdesc] = ACTIONS(4777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4777), - [anon_sym_BSLASHglsuseri] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4777), - [anon_sym_BSLASHglsuserii] = ACTIONS(4777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4777), - [anon_sym_BSLASHglsuserv] = ACTIONS(4777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4777), - [anon_sym_BSLASHglsuservi] = ACTIONS(4777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4777), - [anon_sym_BSLASHnewacronym] = ACTIONS(4777), - [anon_sym_BSLASHacrshort] = ACTIONS(4777), - [anon_sym_BSLASHAcrshort] = ACTIONS(4777), - [anon_sym_BSLASHACRshort] = ACTIONS(4777), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4777), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4777), - [anon_sym_BSLASHacrlong] = ACTIONS(4777), - [anon_sym_BSLASHAcrlong] = ACTIONS(4777), - [anon_sym_BSLASHACRlong] = ACTIONS(4777), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4777), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4777), - [anon_sym_BSLASHacrfull] = ACTIONS(4777), - [anon_sym_BSLASHAcrfull] = ACTIONS(4777), - [anon_sym_BSLASHACRfull] = ACTIONS(4777), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4777), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4777), - [anon_sym_BSLASHacs] = ACTIONS(4777), - [anon_sym_BSLASHAcs] = ACTIONS(4777), - [anon_sym_BSLASHacsp] = ACTIONS(4777), - [anon_sym_BSLASHAcsp] = ACTIONS(4777), - [anon_sym_BSLASHacl] = ACTIONS(4777), - [anon_sym_BSLASHAcl] = ACTIONS(4777), - [anon_sym_BSLASHaclp] = ACTIONS(4777), - [anon_sym_BSLASHAclp] = ACTIONS(4777), - [anon_sym_BSLASHacf] = ACTIONS(4777), - [anon_sym_BSLASHAcf] = ACTIONS(4777), - [anon_sym_BSLASHacfp] = ACTIONS(4777), - [anon_sym_BSLASHAcfp] = ACTIONS(4777), - [anon_sym_BSLASHac] = ACTIONS(4777), - [anon_sym_BSLASHAc] = ACTIONS(4777), - [anon_sym_BSLASHacp] = ACTIONS(4777), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4777), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4777), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4777), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4777), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4777), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4777), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4777), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4777), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4777), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4777), - [anon_sym_BSLASHcolor] = ACTIONS(4777), - [anon_sym_BSLASHcolorbox] = ACTIONS(4777), - [anon_sym_BSLASHtextcolor] = ACTIONS(4777), - [anon_sym_BSLASHpagecolor] = ACTIONS(4777), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4777), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4777), - }, - [769] = { - [sym_brack_group_text] = STATE(854), - [sym_command_name] = ACTIONS(4929), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(5213), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_BSLASHpart] = ACTIONS(4929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddpart] = ACTIONS(4929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHchapter] = ACTIONS(4929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddchap] = ACTIONS(4929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsection] = ACTIONS(4929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddsec] = ACTIONS(4929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHparagraph] = ACTIONS(4929), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHitem] = ACTIONS(4929), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASHbegin] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - }, - [770] = { - [sym_curly_group] = STATE(993), - [sym_command_name] = ACTIONS(4781), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4779), - [anon_sym_RPAREN] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_RBRACK] = ACTIONS(4779), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_EQ] = ACTIONS(4779), - [anon_sym_BSLASHpart] = ACTIONS(4781), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddpart] = ACTIONS(4781), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4779), - [anon_sym_BSLASHchapter] = ACTIONS(4781), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddchap] = ACTIONS(4781), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsection] = ACTIONS(4781), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddsec] = ACTIONS(4781), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubsection] = ACTIONS(4781), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4781), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHparagraph] = ACTIONS(4781), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4781), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4779), - [anon_sym_BSLASHitem] = ACTIONS(4781), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(4781), - [sym_placeholder] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4781), - [anon_sym_DASH] = ACTIONS(4781), - [anon_sym_STAR] = ACTIONS(4781), - [anon_sym_SLASH] = ACTIONS(4781), - [anon_sym_CARET] = ACTIONS(4781), - [anon_sym__] = ACTIONS(4781), - [anon_sym_LT] = ACTIONS(4781), - [anon_sym_GT] = ACTIONS(4781), - [anon_sym_BANG] = ACTIONS(4781), - [anon_sym_PIPE] = ACTIONS(4781), - [anon_sym_COLON] = ACTIONS(4781), - [anon_sym_SQUOTE] = ACTIONS(4781), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4779), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4779), - [anon_sym_DOLLAR] = ACTIONS(4781), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4779), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4779), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4779), - [anon_sym_BSLASHbegin] = ACTIONS(4781), - [anon_sym_BSLASHusepackage] = ACTIONS(4781), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4781), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4781), - [anon_sym_BSLASHinclude] = ACTIONS(4781), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4781), - [anon_sym_BSLASHinput] = ACTIONS(4781), - [anon_sym_BSLASHsubfile] = ACTIONS(4781), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4781), - [anon_sym_BSLASHbibliography] = ACTIONS(4781), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4781), - [anon_sym_BSLASHincludesvg] = ACTIONS(4781), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4781), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4781), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4781), - [anon_sym_BSLASHimport] = ACTIONS(4781), - [anon_sym_BSLASHsubimport] = ACTIONS(4781), - [anon_sym_BSLASHinputfrom] = ACTIONS(4781), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4781), - [anon_sym_BSLASHincludefrom] = ACTIONS(4781), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4781), - [anon_sym_BSLASHcaption] = ACTIONS(4781), - [anon_sym_BSLASHcite] = ACTIONS(4781), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCite] = ACTIONS(4781), - [anon_sym_BSLASHnocite] = ACTIONS(4781), - [anon_sym_BSLASHcitet] = ACTIONS(4781), - [anon_sym_BSLASHcitep] = ACTIONS(4781), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteauthor] = ACTIONS(4781), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4781), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitetitle] = ACTIONS(4781), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteyear] = ACTIONS(4781), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitedate] = ACTIONS(4781), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteurl] = ACTIONS(4781), - [anon_sym_BSLASHfullcite] = ACTIONS(4781), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4781), - [anon_sym_BSLASHcitealt] = ACTIONS(4781), - [anon_sym_BSLASHcitealp] = ACTIONS(4781), - [anon_sym_BSLASHcitetext] = ACTIONS(4781), - [anon_sym_BSLASHparencite] = ACTIONS(4781), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHParencite] = ACTIONS(4781), - [anon_sym_BSLASHfootcite] = ACTIONS(4781), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4781), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4781), - [anon_sym_BSLASHtextcite] = ACTIONS(4781), - [anon_sym_BSLASHTextcite] = ACTIONS(4781), - [anon_sym_BSLASHsmartcite] = ACTIONS(4781), - [anon_sym_BSLASHSmartcite] = ACTIONS(4781), - [anon_sym_BSLASHsupercite] = ACTIONS(4781), - [anon_sym_BSLASHautocite] = ACTIONS(4781), - [anon_sym_BSLASHAutocite] = ACTIONS(4781), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHvolcite] = ACTIONS(4781), - [anon_sym_BSLASHVolcite] = ACTIONS(4781), - [anon_sym_BSLASHpvolcite] = ACTIONS(4781), - [anon_sym_BSLASHPvolcite] = ACTIONS(4781), - [anon_sym_BSLASHfvolcite] = ACTIONS(4781), - [anon_sym_BSLASHftvolcite] = ACTIONS(4781), - [anon_sym_BSLASHsvolcite] = ACTIONS(4781), - [anon_sym_BSLASHSvolcite] = ACTIONS(4781), - [anon_sym_BSLASHtvolcite] = ACTIONS(4781), - [anon_sym_BSLASHTvolcite] = ACTIONS(4781), - [anon_sym_BSLASHavolcite] = ACTIONS(4781), - [anon_sym_BSLASHAvolcite] = ACTIONS(4781), - [anon_sym_BSLASHnotecite] = ACTIONS(4781), - [anon_sym_BSLASHNotecite] = ACTIONS(4781), - [anon_sym_BSLASHpnotecite] = ACTIONS(4781), - [anon_sym_BSLASHPnotecite] = ACTIONS(4781), - [anon_sym_BSLASHfnotecite] = ACTIONS(4781), - [anon_sym_BSLASHlabel] = ACTIONS(4781), - [anon_sym_BSLASHref] = ACTIONS(4781), - [anon_sym_BSLASHeqref] = ACTIONS(4781), - [anon_sym_BSLASHvref] = ACTIONS(4781), - [anon_sym_BSLASHVref] = ACTIONS(4781), - [anon_sym_BSLASHautoref] = ACTIONS(4781), - [anon_sym_BSLASHpageref] = ACTIONS(4781), - [anon_sym_BSLASHcref] = ACTIONS(4781), - [anon_sym_BSLASHCref] = ACTIONS(4781), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4779), - [anon_sym_BSLASHnamecref] = ACTIONS(4781), - [anon_sym_BSLASHnameCref] = ACTIONS(4781), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4781), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4781), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4781), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4781), - [anon_sym_BSLASHlabelcref] = ACTIONS(4781), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4781), - [anon_sym_BSLASHcrefrange] = ACTIONS(4781), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCrefrange] = ACTIONS(4781), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4779), - [anon_sym_BSLASHnewlabel] = ACTIONS(4781), - [anon_sym_BSLASHnewcommand] = ACTIONS(4781), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4781), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4781), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4781), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4779), - [anon_sym_BSLASHdef] = ACTIONS(4781), - [anon_sym_BSLASHlet] = ACTIONS(4781), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4781), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4781), - [anon_sym_BSLASHgls] = ACTIONS(4781), - [anon_sym_BSLASHGls] = ACTIONS(4781), - [anon_sym_BSLASHGLS] = ACTIONS(4781), - [anon_sym_BSLASHglspl] = ACTIONS(4781), - [anon_sym_BSLASHGlspl] = ACTIONS(4781), - [anon_sym_BSLASHGLSpl] = ACTIONS(4781), - [anon_sym_BSLASHglsdisp] = ACTIONS(4781), - [anon_sym_BSLASHglslink] = ACTIONS(4781), - [anon_sym_BSLASHglstext] = ACTIONS(4781), - [anon_sym_BSLASHGlstext] = ACTIONS(4781), - [anon_sym_BSLASHGLStext] = ACTIONS(4781), - [anon_sym_BSLASHglsfirst] = ACTIONS(4781), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4781), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4781), - [anon_sym_BSLASHglsplural] = ACTIONS(4781), - [anon_sym_BSLASHGlsplural] = ACTIONS(4781), - [anon_sym_BSLASHGLSplural] = ACTIONS(4781), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHglsname] = ACTIONS(4781), - [anon_sym_BSLASHGlsname] = ACTIONS(4781), - [anon_sym_BSLASHGLSname] = ACTIONS(4781), - [anon_sym_BSLASHglssymbol] = ACTIONS(4781), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4781), - [anon_sym_BSLASHglsdesc] = ACTIONS(4781), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4781), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4781), - [anon_sym_BSLASHglsuseri] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4781), - [anon_sym_BSLASHglsuserii] = ACTIONS(4781), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4781), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4781), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4781), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4781), - [anon_sym_BSLASHglsuserv] = ACTIONS(4781), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4781), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4781), - [anon_sym_BSLASHglsuservi] = ACTIONS(4781), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4781), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4781), - [anon_sym_BSLASHnewacronym] = ACTIONS(4781), - [anon_sym_BSLASHacrshort] = ACTIONS(4781), - [anon_sym_BSLASHAcrshort] = ACTIONS(4781), - [anon_sym_BSLASHACRshort] = ACTIONS(4781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4781), - [anon_sym_BSLASHacrlong] = ACTIONS(4781), - [anon_sym_BSLASHAcrlong] = ACTIONS(4781), - [anon_sym_BSLASHACRlong] = ACTIONS(4781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4781), - [anon_sym_BSLASHacrfull] = ACTIONS(4781), - [anon_sym_BSLASHAcrfull] = ACTIONS(4781), - [anon_sym_BSLASHACRfull] = ACTIONS(4781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4781), - [anon_sym_BSLASHacs] = ACTIONS(4781), - [anon_sym_BSLASHAcs] = ACTIONS(4781), - [anon_sym_BSLASHacsp] = ACTIONS(4781), - [anon_sym_BSLASHAcsp] = ACTIONS(4781), - [anon_sym_BSLASHacl] = ACTIONS(4781), - [anon_sym_BSLASHAcl] = ACTIONS(4781), - [anon_sym_BSLASHaclp] = ACTIONS(4781), - [anon_sym_BSLASHAclp] = ACTIONS(4781), - [anon_sym_BSLASHacf] = ACTIONS(4781), - [anon_sym_BSLASHAcf] = ACTIONS(4781), - [anon_sym_BSLASHacfp] = ACTIONS(4781), - [anon_sym_BSLASHAcfp] = ACTIONS(4781), - [anon_sym_BSLASHac] = ACTIONS(4781), - [anon_sym_BSLASHAc] = ACTIONS(4781), - [anon_sym_BSLASHacp] = ACTIONS(4781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4781), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4781), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4781), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4781), - [anon_sym_BSLASHcolor] = ACTIONS(4781), - [anon_sym_BSLASHcolorbox] = ACTIONS(4781), - [anon_sym_BSLASHtextcolor] = ACTIONS(4781), - [anon_sym_BSLASHpagecolor] = ACTIONS(4781), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4781), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4781), - }, - [771] = { - [sym_curly_group] = STATE(1179), - [sym_command_name] = ACTIONS(4773), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4773), - [anon_sym_LPAREN] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4771), - [anon_sym_LBRACK] = ACTIONS(4771), - [anon_sym_RBRACK] = ACTIONS(4771), - [anon_sym_COMMA] = ACTIONS(4771), - [anon_sym_EQ] = ACTIONS(4771), - [anon_sym_BSLASHpart] = ACTIONS(4773), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddpart] = ACTIONS(4773), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4771), - [anon_sym_BSLASHchapter] = ACTIONS(4773), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddchap] = ACTIONS(4773), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsection] = ACTIONS(4773), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddsec] = ACTIONS(4773), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubsection] = ACTIONS(4773), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4773), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHparagraph] = ACTIONS(4773), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4773), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4771), - [anon_sym_BSLASHitem] = ACTIONS(4773), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4771), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(4773), - [sym_placeholder] = ACTIONS(4771), - [anon_sym_PLUS] = ACTIONS(4773), - [anon_sym_DASH] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4773), - [anon_sym_SLASH] = ACTIONS(4773), - [anon_sym_CARET] = ACTIONS(4773), - [anon_sym__] = ACTIONS(4773), - [anon_sym_LT] = ACTIONS(4773), - [anon_sym_GT] = ACTIONS(4773), - [anon_sym_BANG] = ACTIONS(4773), - [anon_sym_PIPE] = ACTIONS(4773), - [anon_sym_COLON] = ACTIONS(4773), - [anon_sym_SQUOTE] = ACTIONS(4773), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4771), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4771), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4771), - [anon_sym_DOLLAR] = ACTIONS(4773), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4771), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4771), - [anon_sym_BSLASHbegin] = ACTIONS(4773), - [anon_sym_BSLASHusepackage] = ACTIONS(4773), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4773), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4773), - [anon_sym_BSLASHinclude] = ACTIONS(4773), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4773), - [anon_sym_BSLASHinput] = ACTIONS(4773), - [anon_sym_BSLASHsubfile] = ACTIONS(4773), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4773), - [anon_sym_BSLASHbibliography] = ACTIONS(4773), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4773), - [anon_sym_BSLASHincludesvg] = ACTIONS(4773), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4773), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4773), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4773), - [anon_sym_BSLASHimport] = ACTIONS(4773), - [anon_sym_BSLASHsubimport] = ACTIONS(4773), - [anon_sym_BSLASHinputfrom] = ACTIONS(4773), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4773), - [anon_sym_BSLASHincludefrom] = ACTIONS(4773), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4773), - [anon_sym_BSLASHcaption] = ACTIONS(4773), - [anon_sym_BSLASHcite] = ACTIONS(4773), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCite] = ACTIONS(4773), - [anon_sym_BSLASHnocite] = ACTIONS(4773), - [anon_sym_BSLASHcitet] = ACTIONS(4773), - [anon_sym_BSLASHcitep] = ACTIONS(4773), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteauthor] = ACTIONS(4773), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4773), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitetitle] = ACTIONS(4773), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteyear] = ACTIONS(4773), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitedate] = ACTIONS(4773), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteurl] = ACTIONS(4773), - [anon_sym_BSLASHfullcite] = ACTIONS(4773), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4773), - [anon_sym_BSLASHcitealt] = ACTIONS(4773), - [anon_sym_BSLASHcitealp] = ACTIONS(4773), - [anon_sym_BSLASHcitetext] = ACTIONS(4773), - [anon_sym_BSLASHparencite] = ACTIONS(4773), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHParencite] = ACTIONS(4773), - [anon_sym_BSLASHfootcite] = ACTIONS(4773), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4773), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4773), - [anon_sym_BSLASHtextcite] = ACTIONS(4773), - [anon_sym_BSLASHTextcite] = ACTIONS(4773), - [anon_sym_BSLASHsmartcite] = ACTIONS(4773), - [anon_sym_BSLASHSmartcite] = ACTIONS(4773), - [anon_sym_BSLASHsupercite] = ACTIONS(4773), - [anon_sym_BSLASHautocite] = ACTIONS(4773), - [anon_sym_BSLASHAutocite] = ACTIONS(4773), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHvolcite] = ACTIONS(4773), - [anon_sym_BSLASHVolcite] = ACTIONS(4773), - [anon_sym_BSLASHpvolcite] = ACTIONS(4773), - [anon_sym_BSLASHPvolcite] = ACTIONS(4773), - [anon_sym_BSLASHfvolcite] = ACTIONS(4773), - [anon_sym_BSLASHftvolcite] = ACTIONS(4773), - [anon_sym_BSLASHsvolcite] = ACTIONS(4773), - [anon_sym_BSLASHSvolcite] = ACTIONS(4773), - [anon_sym_BSLASHtvolcite] = ACTIONS(4773), - [anon_sym_BSLASHTvolcite] = ACTIONS(4773), - [anon_sym_BSLASHavolcite] = ACTIONS(4773), - [anon_sym_BSLASHAvolcite] = ACTIONS(4773), - [anon_sym_BSLASHnotecite] = ACTIONS(4773), - [anon_sym_BSLASHNotecite] = ACTIONS(4773), - [anon_sym_BSLASHpnotecite] = ACTIONS(4773), - [anon_sym_BSLASHPnotecite] = ACTIONS(4773), - [anon_sym_BSLASHfnotecite] = ACTIONS(4773), - [anon_sym_BSLASHlabel] = ACTIONS(4773), - [anon_sym_BSLASHref] = ACTIONS(4773), - [anon_sym_BSLASHeqref] = ACTIONS(4773), - [anon_sym_BSLASHvref] = ACTIONS(4773), - [anon_sym_BSLASHVref] = ACTIONS(4773), - [anon_sym_BSLASHautoref] = ACTIONS(4773), - [anon_sym_BSLASHpageref] = ACTIONS(4773), - [anon_sym_BSLASHcref] = ACTIONS(4773), - [anon_sym_BSLASHCref] = ACTIONS(4773), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4771), - [anon_sym_BSLASHnamecref] = ACTIONS(4773), - [anon_sym_BSLASHnameCref] = ACTIONS(4773), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4773), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4773), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4773), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4773), - [anon_sym_BSLASHlabelcref] = ACTIONS(4773), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4773), - [anon_sym_BSLASHcrefrange] = ACTIONS(4773), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCrefrange] = ACTIONS(4773), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4771), - [anon_sym_BSLASHnewlabel] = ACTIONS(4773), - [anon_sym_BSLASHnewcommand] = ACTIONS(4773), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4773), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4773), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4773), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4771), - [anon_sym_BSLASHdef] = ACTIONS(4773), - [anon_sym_BSLASHlet] = ACTIONS(4773), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4773), - [anon_sym_BSLASHgls] = ACTIONS(4773), - [anon_sym_BSLASHGls] = ACTIONS(4773), - [anon_sym_BSLASHGLS] = ACTIONS(4773), - [anon_sym_BSLASHglspl] = ACTIONS(4773), - [anon_sym_BSLASHGlspl] = ACTIONS(4773), - [anon_sym_BSLASHGLSpl] = ACTIONS(4773), - [anon_sym_BSLASHglsdisp] = ACTIONS(4773), - [anon_sym_BSLASHglslink] = ACTIONS(4773), - [anon_sym_BSLASHglstext] = ACTIONS(4773), - [anon_sym_BSLASHGlstext] = ACTIONS(4773), - [anon_sym_BSLASHGLStext] = ACTIONS(4773), - [anon_sym_BSLASHglsfirst] = ACTIONS(4773), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4773), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4773), - [anon_sym_BSLASHglsplural] = ACTIONS(4773), - [anon_sym_BSLASHGlsplural] = ACTIONS(4773), - [anon_sym_BSLASHGLSplural] = ACTIONS(4773), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHglsname] = ACTIONS(4773), - [anon_sym_BSLASHGlsname] = ACTIONS(4773), - [anon_sym_BSLASHGLSname] = ACTIONS(4773), - [anon_sym_BSLASHglssymbol] = ACTIONS(4773), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4773), - [anon_sym_BSLASHglsdesc] = ACTIONS(4773), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4773), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4773), - [anon_sym_BSLASHglsuseri] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4773), - [anon_sym_BSLASHglsuserii] = ACTIONS(4773), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4773), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4773), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4773), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4773), - [anon_sym_BSLASHglsuserv] = ACTIONS(4773), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4773), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4773), - [anon_sym_BSLASHglsuservi] = ACTIONS(4773), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4773), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4773), - [anon_sym_BSLASHnewacronym] = ACTIONS(4773), - [anon_sym_BSLASHacrshort] = ACTIONS(4773), - [anon_sym_BSLASHAcrshort] = ACTIONS(4773), - [anon_sym_BSLASHACRshort] = ACTIONS(4773), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4773), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4773), - [anon_sym_BSLASHacrlong] = ACTIONS(4773), - [anon_sym_BSLASHAcrlong] = ACTIONS(4773), - [anon_sym_BSLASHACRlong] = ACTIONS(4773), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4773), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4773), - [anon_sym_BSLASHacrfull] = ACTIONS(4773), - [anon_sym_BSLASHAcrfull] = ACTIONS(4773), - [anon_sym_BSLASHACRfull] = ACTIONS(4773), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4773), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4773), - [anon_sym_BSLASHacs] = ACTIONS(4773), - [anon_sym_BSLASHAcs] = ACTIONS(4773), - [anon_sym_BSLASHacsp] = ACTIONS(4773), - [anon_sym_BSLASHAcsp] = ACTIONS(4773), - [anon_sym_BSLASHacl] = ACTIONS(4773), - [anon_sym_BSLASHAcl] = ACTIONS(4773), - [anon_sym_BSLASHaclp] = ACTIONS(4773), - [anon_sym_BSLASHAclp] = ACTIONS(4773), - [anon_sym_BSLASHacf] = ACTIONS(4773), - [anon_sym_BSLASHAcf] = ACTIONS(4773), - [anon_sym_BSLASHacfp] = ACTIONS(4773), - [anon_sym_BSLASHAcfp] = ACTIONS(4773), - [anon_sym_BSLASHac] = ACTIONS(4773), - [anon_sym_BSLASHAc] = ACTIONS(4773), - [anon_sym_BSLASHacp] = ACTIONS(4773), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4773), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4773), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4773), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4773), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4773), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4773), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4773), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4773), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4773), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4773), - [anon_sym_BSLASHcolor] = ACTIONS(4773), - [anon_sym_BSLASHcolorbox] = ACTIONS(4773), - [anon_sym_BSLASHtextcolor] = ACTIONS(4773), - [anon_sym_BSLASHpagecolor] = ACTIONS(4773), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4773), - }, - [772] = { - [sym_curly_group] = STATE(1180), - [sym_command_name] = ACTIONS(4769), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4767), - [anon_sym_RPAREN] = ACTIONS(4767), - [anon_sym_LBRACK] = ACTIONS(4767), - [anon_sym_RBRACK] = ACTIONS(4767), - [anon_sym_COMMA] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_BSLASHpart] = ACTIONS(4769), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddpart] = ACTIONS(4769), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4767), - [anon_sym_BSLASHchapter] = ACTIONS(4769), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddchap] = ACTIONS(4769), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsection] = ACTIONS(4769), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddsec] = ACTIONS(4769), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubsection] = ACTIONS(4769), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4769), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHparagraph] = ACTIONS(4769), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4769), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4767), - [anon_sym_BSLASHitem] = ACTIONS(4769), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(4769), - [sym_placeholder] = ACTIONS(4767), - [anon_sym_PLUS] = ACTIONS(4769), - [anon_sym_DASH] = ACTIONS(4769), - [anon_sym_STAR] = ACTIONS(4769), - [anon_sym_SLASH] = ACTIONS(4769), - [anon_sym_CARET] = ACTIONS(4769), - [anon_sym__] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4769), - [anon_sym_GT] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4769), - [anon_sym_PIPE] = ACTIONS(4769), - [anon_sym_COLON] = ACTIONS(4769), - [anon_sym_SQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4767), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4767), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4767), - [anon_sym_DOLLAR] = ACTIONS(4769), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4767), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4767), - [anon_sym_BSLASHbegin] = ACTIONS(4769), - [anon_sym_BSLASHusepackage] = ACTIONS(4769), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4769), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4769), - [anon_sym_BSLASHinclude] = ACTIONS(4769), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4769), - [anon_sym_BSLASHinput] = ACTIONS(4769), - [anon_sym_BSLASHsubfile] = ACTIONS(4769), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4769), - [anon_sym_BSLASHbibliography] = ACTIONS(4769), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4769), - [anon_sym_BSLASHincludesvg] = ACTIONS(4769), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4769), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4769), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4769), - [anon_sym_BSLASHimport] = ACTIONS(4769), - [anon_sym_BSLASHsubimport] = ACTIONS(4769), - [anon_sym_BSLASHinputfrom] = ACTIONS(4769), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4769), - [anon_sym_BSLASHincludefrom] = ACTIONS(4769), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4769), - [anon_sym_BSLASHcaption] = ACTIONS(4769), - [anon_sym_BSLASHcite] = ACTIONS(4769), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCite] = ACTIONS(4769), - [anon_sym_BSLASHnocite] = ACTIONS(4769), - [anon_sym_BSLASHcitet] = ACTIONS(4769), - [anon_sym_BSLASHcitep] = ACTIONS(4769), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteauthor] = ACTIONS(4769), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4769), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitetitle] = ACTIONS(4769), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteyear] = ACTIONS(4769), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitedate] = ACTIONS(4769), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteurl] = ACTIONS(4769), - [anon_sym_BSLASHfullcite] = ACTIONS(4769), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4769), - [anon_sym_BSLASHcitealt] = ACTIONS(4769), - [anon_sym_BSLASHcitealp] = ACTIONS(4769), - [anon_sym_BSLASHcitetext] = ACTIONS(4769), - [anon_sym_BSLASHparencite] = ACTIONS(4769), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHParencite] = ACTIONS(4769), - [anon_sym_BSLASHfootcite] = ACTIONS(4769), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4769), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4769), - [anon_sym_BSLASHtextcite] = ACTIONS(4769), - [anon_sym_BSLASHTextcite] = ACTIONS(4769), - [anon_sym_BSLASHsmartcite] = ACTIONS(4769), - [anon_sym_BSLASHSmartcite] = ACTIONS(4769), - [anon_sym_BSLASHsupercite] = ACTIONS(4769), - [anon_sym_BSLASHautocite] = ACTIONS(4769), - [anon_sym_BSLASHAutocite] = ACTIONS(4769), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHvolcite] = ACTIONS(4769), - [anon_sym_BSLASHVolcite] = ACTIONS(4769), - [anon_sym_BSLASHpvolcite] = ACTIONS(4769), - [anon_sym_BSLASHPvolcite] = ACTIONS(4769), - [anon_sym_BSLASHfvolcite] = ACTIONS(4769), - [anon_sym_BSLASHftvolcite] = ACTIONS(4769), - [anon_sym_BSLASHsvolcite] = ACTIONS(4769), - [anon_sym_BSLASHSvolcite] = ACTIONS(4769), - [anon_sym_BSLASHtvolcite] = ACTIONS(4769), - [anon_sym_BSLASHTvolcite] = ACTIONS(4769), - [anon_sym_BSLASHavolcite] = ACTIONS(4769), - [anon_sym_BSLASHAvolcite] = ACTIONS(4769), - [anon_sym_BSLASHnotecite] = ACTIONS(4769), - [anon_sym_BSLASHNotecite] = ACTIONS(4769), - [anon_sym_BSLASHpnotecite] = ACTIONS(4769), - [anon_sym_BSLASHPnotecite] = ACTIONS(4769), - [anon_sym_BSLASHfnotecite] = ACTIONS(4769), - [anon_sym_BSLASHlabel] = ACTIONS(4769), - [anon_sym_BSLASHref] = ACTIONS(4769), - [anon_sym_BSLASHeqref] = ACTIONS(4769), - [anon_sym_BSLASHvref] = ACTIONS(4769), - [anon_sym_BSLASHVref] = ACTIONS(4769), - [anon_sym_BSLASHautoref] = ACTIONS(4769), - [anon_sym_BSLASHpageref] = ACTIONS(4769), - [anon_sym_BSLASHcref] = ACTIONS(4769), - [anon_sym_BSLASHCref] = ACTIONS(4769), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4767), - [anon_sym_BSLASHnamecref] = ACTIONS(4769), - [anon_sym_BSLASHnameCref] = ACTIONS(4769), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4769), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4769), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4769), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4769), - [anon_sym_BSLASHlabelcref] = ACTIONS(4769), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4769), - [anon_sym_BSLASHcrefrange] = ACTIONS(4769), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCrefrange] = ACTIONS(4769), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4767), - [anon_sym_BSLASHnewlabel] = ACTIONS(4769), - [anon_sym_BSLASHnewcommand] = ACTIONS(4769), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4769), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4769), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4769), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4767), - [anon_sym_BSLASHdef] = ACTIONS(4769), - [anon_sym_BSLASHlet] = ACTIONS(4769), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4769), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4769), - [anon_sym_BSLASHgls] = ACTIONS(4769), - [anon_sym_BSLASHGls] = ACTIONS(4769), - [anon_sym_BSLASHGLS] = ACTIONS(4769), - [anon_sym_BSLASHglspl] = ACTIONS(4769), - [anon_sym_BSLASHGlspl] = ACTIONS(4769), - [anon_sym_BSLASHGLSpl] = ACTIONS(4769), - [anon_sym_BSLASHglsdisp] = ACTIONS(4769), - [anon_sym_BSLASHglslink] = ACTIONS(4769), - [anon_sym_BSLASHglstext] = ACTIONS(4769), - [anon_sym_BSLASHGlstext] = ACTIONS(4769), - [anon_sym_BSLASHGLStext] = ACTIONS(4769), - [anon_sym_BSLASHglsfirst] = ACTIONS(4769), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4769), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4769), - [anon_sym_BSLASHglsplural] = ACTIONS(4769), - [anon_sym_BSLASHGlsplural] = ACTIONS(4769), - [anon_sym_BSLASHGLSplural] = ACTIONS(4769), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHglsname] = ACTIONS(4769), - [anon_sym_BSLASHGlsname] = ACTIONS(4769), - [anon_sym_BSLASHGLSname] = ACTIONS(4769), - [anon_sym_BSLASHglssymbol] = ACTIONS(4769), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4769), - [anon_sym_BSLASHglsdesc] = ACTIONS(4769), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4769), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4769), - [anon_sym_BSLASHglsuseri] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4769), - [anon_sym_BSLASHglsuserii] = ACTIONS(4769), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4769), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4769), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4769), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4769), - [anon_sym_BSLASHglsuserv] = ACTIONS(4769), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4769), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4769), - [anon_sym_BSLASHglsuservi] = ACTIONS(4769), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4769), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4769), - [anon_sym_BSLASHnewacronym] = ACTIONS(4769), - [anon_sym_BSLASHacrshort] = ACTIONS(4769), - [anon_sym_BSLASHAcrshort] = ACTIONS(4769), - [anon_sym_BSLASHACRshort] = ACTIONS(4769), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4769), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4769), - [anon_sym_BSLASHacrlong] = ACTIONS(4769), - [anon_sym_BSLASHAcrlong] = ACTIONS(4769), - [anon_sym_BSLASHACRlong] = ACTIONS(4769), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4769), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4769), - [anon_sym_BSLASHacrfull] = ACTIONS(4769), - [anon_sym_BSLASHAcrfull] = ACTIONS(4769), - [anon_sym_BSLASHACRfull] = ACTIONS(4769), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4769), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4769), - [anon_sym_BSLASHacs] = ACTIONS(4769), - [anon_sym_BSLASHAcs] = ACTIONS(4769), - [anon_sym_BSLASHacsp] = ACTIONS(4769), - [anon_sym_BSLASHAcsp] = ACTIONS(4769), - [anon_sym_BSLASHacl] = ACTIONS(4769), - [anon_sym_BSLASHAcl] = ACTIONS(4769), - [anon_sym_BSLASHaclp] = ACTIONS(4769), - [anon_sym_BSLASHAclp] = ACTIONS(4769), - [anon_sym_BSLASHacf] = ACTIONS(4769), - [anon_sym_BSLASHAcf] = ACTIONS(4769), - [anon_sym_BSLASHacfp] = ACTIONS(4769), - [anon_sym_BSLASHAcfp] = ACTIONS(4769), - [anon_sym_BSLASHac] = ACTIONS(4769), - [anon_sym_BSLASHAc] = ACTIONS(4769), - [anon_sym_BSLASHacp] = ACTIONS(4769), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4769), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4769), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4769), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4769), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4769), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4769), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4769), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4769), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4769), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4769), - [anon_sym_BSLASHcolor] = ACTIONS(4769), - [anon_sym_BSLASHcolorbox] = ACTIONS(4769), - [anon_sym_BSLASHtextcolor] = ACTIONS(4769), - [anon_sym_BSLASHpagecolor] = ACTIONS(4769), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4769), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4769), - }, - [773] = { - [sym_curly_group] = STATE(1183), - [sym_command_name] = ACTIONS(4765), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4765), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_RPAREN] = ACTIONS(4763), - [anon_sym_LBRACK] = ACTIONS(4763), - [anon_sym_RBRACK] = ACTIONS(4763), - [anon_sym_COMMA] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(4763), - [anon_sym_BSLASHpart] = ACTIONS(4765), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddpart] = ACTIONS(4765), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4763), - [anon_sym_BSLASHchapter] = ACTIONS(4765), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddchap] = ACTIONS(4765), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsection] = ACTIONS(4765), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddsec] = ACTIONS(4765), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubsection] = ACTIONS(4765), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4765), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHparagraph] = ACTIONS(4765), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4765), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4763), - [anon_sym_BSLASHitem] = ACTIONS(4765), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4763), - [anon_sym_LBRACE] = ACTIONS(558), - [sym_word] = ACTIONS(4765), - [sym_placeholder] = ACTIONS(4763), - [anon_sym_PLUS] = ACTIONS(4765), - [anon_sym_DASH] = ACTIONS(4765), - [anon_sym_STAR] = ACTIONS(4765), - [anon_sym_SLASH] = ACTIONS(4765), - [anon_sym_CARET] = ACTIONS(4765), - [anon_sym__] = ACTIONS(4765), - [anon_sym_LT] = ACTIONS(4765), - [anon_sym_GT] = ACTIONS(4765), - [anon_sym_BANG] = ACTIONS(4765), - [anon_sym_PIPE] = ACTIONS(4765), - [anon_sym_COLON] = ACTIONS(4765), - [anon_sym_SQUOTE] = ACTIONS(4765), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4763), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4763), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4763), - [anon_sym_DOLLAR] = ACTIONS(4765), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4763), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4763), - [anon_sym_BSLASHbegin] = ACTIONS(4765), - [anon_sym_BSLASHusepackage] = ACTIONS(4765), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4765), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4765), - [anon_sym_BSLASHinclude] = ACTIONS(4765), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4765), - [anon_sym_BSLASHinput] = ACTIONS(4765), - [anon_sym_BSLASHsubfile] = ACTIONS(4765), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4765), - [anon_sym_BSLASHbibliography] = ACTIONS(4765), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4765), - [anon_sym_BSLASHincludesvg] = ACTIONS(4765), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4765), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4765), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4765), - [anon_sym_BSLASHimport] = ACTIONS(4765), - [anon_sym_BSLASHsubimport] = ACTIONS(4765), - [anon_sym_BSLASHinputfrom] = ACTIONS(4765), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4765), - [anon_sym_BSLASHincludefrom] = ACTIONS(4765), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4765), - [anon_sym_BSLASHcaption] = ACTIONS(4765), - [anon_sym_BSLASHcite] = ACTIONS(4765), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCite] = ACTIONS(4765), - [anon_sym_BSLASHnocite] = ACTIONS(4765), - [anon_sym_BSLASHcitet] = ACTIONS(4765), - [anon_sym_BSLASHcitep] = ACTIONS(4765), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteauthor] = ACTIONS(4765), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4765), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitetitle] = ACTIONS(4765), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteyear] = ACTIONS(4765), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitedate] = ACTIONS(4765), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteurl] = ACTIONS(4765), - [anon_sym_BSLASHfullcite] = ACTIONS(4765), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4765), - [anon_sym_BSLASHcitealt] = ACTIONS(4765), - [anon_sym_BSLASHcitealp] = ACTIONS(4765), - [anon_sym_BSLASHcitetext] = ACTIONS(4765), - [anon_sym_BSLASHparencite] = ACTIONS(4765), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHParencite] = ACTIONS(4765), - [anon_sym_BSLASHfootcite] = ACTIONS(4765), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4765), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4765), - [anon_sym_BSLASHtextcite] = ACTIONS(4765), - [anon_sym_BSLASHTextcite] = ACTIONS(4765), - [anon_sym_BSLASHsmartcite] = ACTIONS(4765), - [anon_sym_BSLASHSmartcite] = ACTIONS(4765), - [anon_sym_BSLASHsupercite] = ACTIONS(4765), - [anon_sym_BSLASHautocite] = ACTIONS(4765), - [anon_sym_BSLASHAutocite] = ACTIONS(4765), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHvolcite] = ACTIONS(4765), - [anon_sym_BSLASHVolcite] = ACTIONS(4765), - [anon_sym_BSLASHpvolcite] = ACTIONS(4765), - [anon_sym_BSLASHPvolcite] = ACTIONS(4765), - [anon_sym_BSLASHfvolcite] = ACTIONS(4765), - [anon_sym_BSLASHftvolcite] = ACTIONS(4765), - [anon_sym_BSLASHsvolcite] = ACTIONS(4765), - [anon_sym_BSLASHSvolcite] = ACTIONS(4765), - [anon_sym_BSLASHtvolcite] = ACTIONS(4765), - [anon_sym_BSLASHTvolcite] = ACTIONS(4765), - [anon_sym_BSLASHavolcite] = ACTIONS(4765), - [anon_sym_BSLASHAvolcite] = ACTIONS(4765), - [anon_sym_BSLASHnotecite] = ACTIONS(4765), - [anon_sym_BSLASHNotecite] = ACTIONS(4765), - [anon_sym_BSLASHpnotecite] = ACTIONS(4765), - [anon_sym_BSLASHPnotecite] = ACTIONS(4765), - [anon_sym_BSLASHfnotecite] = ACTIONS(4765), - [anon_sym_BSLASHlabel] = ACTIONS(4765), - [anon_sym_BSLASHref] = ACTIONS(4765), - [anon_sym_BSLASHeqref] = ACTIONS(4765), - [anon_sym_BSLASHvref] = ACTIONS(4765), - [anon_sym_BSLASHVref] = ACTIONS(4765), - [anon_sym_BSLASHautoref] = ACTIONS(4765), - [anon_sym_BSLASHpageref] = ACTIONS(4765), - [anon_sym_BSLASHcref] = ACTIONS(4765), - [anon_sym_BSLASHCref] = ACTIONS(4765), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4763), - [anon_sym_BSLASHnamecref] = ACTIONS(4765), - [anon_sym_BSLASHnameCref] = ACTIONS(4765), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4765), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4765), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4765), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4765), - [anon_sym_BSLASHlabelcref] = ACTIONS(4765), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4765), - [anon_sym_BSLASHcrefrange] = ACTIONS(4765), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCrefrange] = ACTIONS(4765), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4763), - [anon_sym_BSLASHnewlabel] = ACTIONS(4765), - [anon_sym_BSLASHnewcommand] = ACTIONS(4765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4763), - [anon_sym_BSLASHdef] = ACTIONS(4765), - [anon_sym_BSLASHlet] = ACTIONS(4765), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4765), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4765), - [anon_sym_BSLASHgls] = ACTIONS(4765), - [anon_sym_BSLASHGls] = ACTIONS(4765), - [anon_sym_BSLASHGLS] = ACTIONS(4765), - [anon_sym_BSLASHglspl] = ACTIONS(4765), - [anon_sym_BSLASHGlspl] = ACTIONS(4765), - [anon_sym_BSLASHGLSpl] = ACTIONS(4765), - [anon_sym_BSLASHglsdisp] = ACTIONS(4765), - [anon_sym_BSLASHglslink] = ACTIONS(4765), - [anon_sym_BSLASHglstext] = ACTIONS(4765), - [anon_sym_BSLASHGlstext] = ACTIONS(4765), - [anon_sym_BSLASHGLStext] = ACTIONS(4765), - [anon_sym_BSLASHglsfirst] = ACTIONS(4765), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4765), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4765), - [anon_sym_BSLASHglsplural] = ACTIONS(4765), - [anon_sym_BSLASHGlsplural] = ACTIONS(4765), - [anon_sym_BSLASHGLSplural] = ACTIONS(4765), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHglsname] = ACTIONS(4765), - [anon_sym_BSLASHGlsname] = ACTIONS(4765), - [anon_sym_BSLASHGLSname] = ACTIONS(4765), - [anon_sym_BSLASHglssymbol] = ACTIONS(4765), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4765), - [anon_sym_BSLASHglsdesc] = ACTIONS(4765), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4765), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4765), - [anon_sym_BSLASHglsuseri] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4765), - [anon_sym_BSLASHglsuserii] = ACTIONS(4765), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4765), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4765), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4765), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4765), - [anon_sym_BSLASHglsuserv] = ACTIONS(4765), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4765), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4765), - [anon_sym_BSLASHglsuservi] = ACTIONS(4765), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4765), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4765), - [anon_sym_BSLASHnewacronym] = ACTIONS(4765), - [anon_sym_BSLASHacrshort] = ACTIONS(4765), - [anon_sym_BSLASHAcrshort] = ACTIONS(4765), - [anon_sym_BSLASHACRshort] = ACTIONS(4765), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4765), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4765), - [anon_sym_BSLASHacrlong] = ACTIONS(4765), - [anon_sym_BSLASHAcrlong] = ACTIONS(4765), - [anon_sym_BSLASHACRlong] = ACTIONS(4765), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4765), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4765), - [anon_sym_BSLASHacrfull] = ACTIONS(4765), - [anon_sym_BSLASHAcrfull] = ACTIONS(4765), - [anon_sym_BSLASHACRfull] = ACTIONS(4765), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4765), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4765), - [anon_sym_BSLASHacs] = ACTIONS(4765), - [anon_sym_BSLASHAcs] = ACTIONS(4765), - [anon_sym_BSLASHacsp] = ACTIONS(4765), - [anon_sym_BSLASHAcsp] = ACTIONS(4765), - [anon_sym_BSLASHacl] = ACTIONS(4765), - [anon_sym_BSLASHAcl] = ACTIONS(4765), - [anon_sym_BSLASHaclp] = ACTIONS(4765), - [anon_sym_BSLASHAclp] = ACTIONS(4765), - [anon_sym_BSLASHacf] = ACTIONS(4765), - [anon_sym_BSLASHAcf] = ACTIONS(4765), - [anon_sym_BSLASHacfp] = ACTIONS(4765), - [anon_sym_BSLASHAcfp] = ACTIONS(4765), - [anon_sym_BSLASHac] = ACTIONS(4765), - [anon_sym_BSLASHAc] = ACTIONS(4765), - [anon_sym_BSLASHacp] = ACTIONS(4765), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4765), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4765), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4765), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4765), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4765), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4765), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4765), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4765), - [anon_sym_BSLASHcolor] = ACTIONS(4765), - [anon_sym_BSLASHcolorbox] = ACTIONS(4765), - [anon_sym_BSLASHtextcolor] = ACTIONS(4765), - [anon_sym_BSLASHpagecolor] = ACTIONS(4765), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4765), - }, - [774] = { - [sym_curly_group] = STATE(992), - [sym_command_name] = ACTIONS(4785), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4785), - [anon_sym_LPAREN] = ACTIONS(4783), - [anon_sym_RPAREN] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4783), - [anon_sym_RBRACK] = ACTIONS(4783), - [anon_sym_COMMA] = ACTIONS(4783), - [anon_sym_EQ] = ACTIONS(4783), - [anon_sym_BSLASHpart] = ACTIONS(4785), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddpart] = ACTIONS(4785), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4783), - [anon_sym_BSLASHchapter] = ACTIONS(4785), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddchap] = ACTIONS(4785), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsection] = ACTIONS(4785), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddsec] = ACTIONS(4785), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubsection] = ACTIONS(4785), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4785), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHparagraph] = ACTIONS(4785), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4785), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4783), - [anon_sym_BSLASHitem] = ACTIONS(4785), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4783), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(4785), - [sym_placeholder] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(4785), - [anon_sym_DASH] = ACTIONS(4785), - [anon_sym_STAR] = ACTIONS(4785), - [anon_sym_SLASH] = ACTIONS(4785), - [anon_sym_CARET] = ACTIONS(4785), - [anon_sym__] = ACTIONS(4785), - [anon_sym_LT] = ACTIONS(4785), - [anon_sym_GT] = ACTIONS(4785), - [anon_sym_BANG] = ACTIONS(4785), - [anon_sym_PIPE] = ACTIONS(4785), - [anon_sym_COLON] = ACTIONS(4785), - [anon_sym_SQUOTE] = ACTIONS(4785), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4783), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4783), - [anon_sym_DOLLAR] = ACTIONS(4785), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4783), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4783), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4783), - [anon_sym_BSLASHbegin] = ACTIONS(4785), - [anon_sym_BSLASHusepackage] = ACTIONS(4785), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4785), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4785), - [anon_sym_BSLASHinclude] = ACTIONS(4785), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4785), - [anon_sym_BSLASHinput] = ACTIONS(4785), - [anon_sym_BSLASHsubfile] = ACTIONS(4785), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4785), - [anon_sym_BSLASHbibliography] = ACTIONS(4785), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4785), - [anon_sym_BSLASHincludesvg] = ACTIONS(4785), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4785), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4785), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4785), - [anon_sym_BSLASHimport] = ACTIONS(4785), - [anon_sym_BSLASHsubimport] = ACTIONS(4785), - [anon_sym_BSLASHinputfrom] = ACTIONS(4785), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4785), - [anon_sym_BSLASHincludefrom] = ACTIONS(4785), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4785), - [anon_sym_BSLASHcaption] = ACTIONS(4785), - [anon_sym_BSLASHcite] = ACTIONS(4785), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCite] = ACTIONS(4785), - [anon_sym_BSLASHnocite] = ACTIONS(4785), - [anon_sym_BSLASHcitet] = ACTIONS(4785), - [anon_sym_BSLASHcitep] = ACTIONS(4785), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteauthor] = ACTIONS(4785), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4785), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitetitle] = ACTIONS(4785), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteyear] = ACTIONS(4785), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitedate] = ACTIONS(4785), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteurl] = ACTIONS(4785), - [anon_sym_BSLASHfullcite] = ACTIONS(4785), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4785), - [anon_sym_BSLASHcitealt] = ACTIONS(4785), - [anon_sym_BSLASHcitealp] = ACTIONS(4785), - [anon_sym_BSLASHcitetext] = ACTIONS(4785), - [anon_sym_BSLASHparencite] = ACTIONS(4785), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHParencite] = ACTIONS(4785), - [anon_sym_BSLASHfootcite] = ACTIONS(4785), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4785), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4785), - [anon_sym_BSLASHtextcite] = ACTIONS(4785), - [anon_sym_BSLASHTextcite] = ACTIONS(4785), - [anon_sym_BSLASHsmartcite] = ACTIONS(4785), - [anon_sym_BSLASHSmartcite] = ACTIONS(4785), - [anon_sym_BSLASHsupercite] = ACTIONS(4785), - [anon_sym_BSLASHautocite] = ACTIONS(4785), - [anon_sym_BSLASHAutocite] = ACTIONS(4785), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHvolcite] = ACTIONS(4785), - [anon_sym_BSLASHVolcite] = ACTIONS(4785), - [anon_sym_BSLASHpvolcite] = ACTIONS(4785), - [anon_sym_BSLASHPvolcite] = ACTIONS(4785), - [anon_sym_BSLASHfvolcite] = ACTIONS(4785), - [anon_sym_BSLASHftvolcite] = ACTIONS(4785), - [anon_sym_BSLASHsvolcite] = ACTIONS(4785), - [anon_sym_BSLASHSvolcite] = ACTIONS(4785), - [anon_sym_BSLASHtvolcite] = ACTIONS(4785), - [anon_sym_BSLASHTvolcite] = ACTIONS(4785), - [anon_sym_BSLASHavolcite] = ACTIONS(4785), - [anon_sym_BSLASHAvolcite] = ACTIONS(4785), - [anon_sym_BSLASHnotecite] = ACTIONS(4785), - [anon_sym_BSLASHNotecite] = ACTIONS(4785), - [anon_sym_BSLASHpnotecite] = ACTIONS(4785), - [anon_sym_BSLASHPnotecite] = ACTIONS(4785), - [anon_sym_BSLASHfnotecite] = ACTIONS(4785), - [anon_sym_BSLASHlabel] = ACTIONS(4785), - [anon_sym_BSLASHref] = ACTIONS(4785), - [anon_sym_BSLASHeqref] = ACTIONS(4785), - [anon_sym_BSLASHvref] = ACTIONS(4785), - [anon_sym_BSLASHVref] = ACTIONS(4785), - [anon_sym_BSLASHautoref] = ACTIONS(4785), - [anon_sym_BSLASHpageref] = ACTIONS(4785), - [anon_sym_BSLASHcref] = ACTIONS(4785), - [anon_sym_BSLASHCref] = ACTIONS(4785), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4783), - [anon_sym_BSLASHnamecref] = ACTIONS(4785), - [anon_sym_BSLASHnameCref] = ACTIONS(4785), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4785), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4785), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4785), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4785), - [anon_sym_BSLASHlabelcref] = ACTIONS(4785), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4785), - [anon_sym_BSLASHcrefrange] = ACTIONS(4785), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCrefrange] = ACTIONS(4785), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4783), - [anon_sym_BSLASHnewlabel] = ACTIONS(4785), - [anon_sym_BSLASHnewcommand] = ACTIONS(4785), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4785), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4785), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4785), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4783), - [anon_sym_BSLASHdef] = ACTIONS(4785), - [anon_sym_BSLASHlet] = ACTIONS(4785), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4785), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4785), - [anon_sym_BSLASHgls] = ACTIONS(4785), - [anon_sym_BSLASHGls] = ACTIONS(4785), - [anon_sym_BSLASHGLS] = ACTIONS(4785), - [anon_sym_BSLASHglspl] = ACTIONS(4785), - [anon_sym_BSLASHGlspl] = ACTIONS(4785), - [anon_sym_BSLASHGLSpl] = ACTIONS(4785), - [anon_sym_BSLASHglsdisp] = ACTIONS(4785), - [anon_sym_BSLASHglslink] = ACTIONS(4785), - [anon_sym_BSLASHglstext] = ACTIONS(4785), - [anon_sym_BSLASHGlstext] = ACTIONS(4785), - [anon_sym_BSLASHGLStext] = ACTIONS(4785), - [anon_sym_BSLASHglsfirst] = ACTIONS(4785), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4785), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4785), - [anon_sym_BSLASHglsplural] = ACTIONS(4785), - [anon_sym_BSLASHGlsplural] = ACTIONS(4785), - [anon_sym_BSLASHGLSplural] = ACTIONS(4785), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHglsname] = ACTIONS(4785), - [anon_sym_BSLASHGlsname] = ACTIONS(4785), - [anon_sym_BSLASHGLSname] = ACTIONS(4785), - [anon_sym_BSLASHglssymbol] = ACTIONS(4785), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4785), - [anon_sym_BSLASHglsdesc] = ACTIONS(4785), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4785), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4785), - [anon_sym_BSLASHglsuseri] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4785), - [anon_sym_BSLASHglsuserii] = ACTIONS(4785), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4785), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4785), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4785), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4785), - [anon_sym_BSLASHglsuserv] = ACTIONS(4785), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4785), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4785), - [anon_sym_BSLASHglsuservi] = ACTIONS(4785), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4785), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4785), - [anon_sym_BSLASHnewacronym] = ACTIONS(4785), - [anon_sym_BSLASHacrshort] = ACTIONS(4785), - [anon_sym_BSLASHAcrshort] = ACTIONS(4785), - [anon_sym_BSLASHACRshort] = ACTIONS(4785), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4785), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4785), - [anon_sym_BSLASHacrlong] = ACTIONS(4785), - [anon_sym_BSLASHAcrlong] = ACTIONS(4785), - [anon_sym_BSLASHACRlong] = ACTIONS(4785), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4785), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4785), - [anon_sym_BSLASHacrfull] = ACTIONS(4785), - [anon_sym_BSLASHAcrfull] = ACTIONS(4785), - [anon_sym_BSLASHACRfull] = ACTIONS(4785), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4785), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4785), - [anon_sym_BSLASHacs] = ACTIONS(4785), - [anon_sym_BSLASHAcs] = ACTIONS(4785), - [anon_sym_BSLASHacsp] = ACTIONS(4785), - [anon_sym_BSLASHAcsp] = ACTIONS(4785), - [anon_sym_BSLASHacl] = ACTIONS(4785), - [anon_sym_BSLASHAcl] = ACTIONS(4785), - [anon_sym_BSLASHaclp] = ACTIONS(4785), - [anon_sym_BSLASHAclp] = ACTIONS(4785), - [anon_sym_BSLASHacf] = ACTIONS(4785), - [anon_sym_BSLASHAcf] = ACTIONS(4785), - [anon_sym_BSLASHacfp] = ACTIONS(4785), - [anon_sym_BSLASHAcfp] = ACTIONS(4785), - [anon_sym_BSLASHac] = ACTIONS(4785), - [anon_sym_BSLASHAc] = ACTIONS(4785), - [anon_sym_BSLASHacp] = ACTIONS(4785), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4785), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4785), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4785), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4785), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4785), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4785), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4785), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4785), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4785), - [anon_sym_BSLASHcolor] = ACTIONS(4785), - [anon_sym_BSLASHcolorbox] = ACTIONS(4785), - [anon_sym_BSLASHtextcolor] = ACTIONS(4785), - [anon_sym_BSLASHpagecolor] = ACTIONS(4785), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4785), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4785), - }, - [775] = { - [ts_builtin_sym_end] = ACTIONS(5215), - [sym_command_name] = ACTIONS(5217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_BSLASHpart] = ACTIONS(5217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddpart] = ACTIONS(5217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHchapter] = ACTIONS(5217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddchap] = ACTIONS(5217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsection] = ACTIONS(5217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddsec] = ACTIONS(5217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHparagraph] = ACTIONS(5217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHitem] = ACTIONS(5217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_RBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASHbegin] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), - }, - [776] = { - [ts_builtin_sym_end] = ACTIONS(5219), - [sym_command_name] = ACTIONS(5221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_BSLASHpart] = ACTIONS(5221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddpart] = ACTIONS(5221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHchapter] = ACTIONS(5221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddchap] = ACTIONS(5221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsection] = ACTIONS(5221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddsec] = ACTIONS(5221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHparagraph] = ACTIONS(5221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHitem] = ACTIONS(5221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [anon_sym_RBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASHbegin] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), - }, - [777] = { - [ts_builtin_sym_end] = ACTIONS(5223), - [sym_command_name] = ACTIONS(5225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_BSLASHpart] = ACTIONS(5225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddpart] = ACTIONS(5225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHchapter] = ACTIONS(5225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddchap] = ACTIONS(5225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsection] = ACTIONS(5225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddsec] = ACTIONS(5225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHparagraph] = ACTIONS(5225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHitem] = ACTIONS(5225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [anon_sym_RBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASHbegin] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), - }, - [778] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1733), - [sym_operator] = STATE(1509), - [sym_key_value_pair] = STATE(1759), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5227), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [779] = { - [sym_brack_group_text] = STATE(1265), - [sym_command_name] = ACTIONS(4929), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(4979), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_BSLASHpart] = ACTIONS(4929), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddpart] = ACTIONS(4929), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), - [anon_sym_BSLASHchapter] = ACTIONS(4929), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddchap] = ACTIONS(4929), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsection] = ACTIONS(4929), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHaddsec] = ACTIONS(4929), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), - [anon_sym_BSLASHparagraph] = ACTIONS(4929), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), - [anon_sym_BSLASHitem] = ACTIONS(4929), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASHbegin] = ACTIONS(4929), - [anon_sym_BSLASHend] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - }, - [780] = { - [ts_builtin_sym_end] = ACTIONS(5229), - [sym_command_name] = ACTIONS(5231), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5231), - [anon_sym_LPAREN] = ACTIONS(5229), - [anon_sym_RPAREN] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_RBRACK] = ACTIONS(5229), - [anon_sym_COMMA] = ACTIONS(5229), - [anon_sym_EQ] = ACTIONS(5229), - [anon_sym_BSLASHpart] = ACTIONS(5231), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddpart] = ACTIONS(5231), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), - [anon_sym_BSLASHchapter] = ACTIONS(5231), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddchap] = ACTIONS(5231), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsection] = ACTIONS(5231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddsec] = ACTIONS(5231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubsection] = ACTIONS(5231), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHparagraph] = ACTIONS(5231), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), - [anon_sym_BSLASHitem] = ACTIONS(5231), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5229), - [anon_sym_RBRACE] = ACTIONS(5229), - [sym_word] = ACTIONS(5231), - [sym_placeholder] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_SLASH] = ACTIONS(5231), - [anon_sym_CARET] = ACTIONS(5231), - [anon_sym__] = ACTIONS(5231), - [anon_sym_LT] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5231), - [anon_sym_BANG] = ACTIONS(5231), - [anon_sym_PIPE] = ACTIONS(5231), - [anon_sym_COLON] = ACTIONS(5231), - [anon_sym_SQUOTE] = ACTIONS(5231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), - [anon_sym_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), - [anon_sym_BSLASHbegin] = ACTIONS(5231), - [anon_sym_BSLASHusepackage] = ACTIONS(5231), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), - [anon_sym_BSLASHinclude] = ACTIONS(5231), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), - [anon_sym_BSLASHinput] = ACTIONS(5231), - [anon_sym_BSLASHsubfile] = ACTIONS(5231), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), - [anon_sym_BSLASHbibliography] = ACTIONS(5231), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), - [anon_sym_BSLASHincludesvg] = ACTIONS(5231), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), - [anon_sym_BSLASHimport] = ACTIONS(5231), - [anon_sym_BSLASHsubimport] = ACTIONS(5231), - [anon_sym_BSLASHinputfrom] = ACTIONS(5231), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), - [anon_sym_BSLASHincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHcaption] = ACTIONS(5231), - [anon_sym_BSLASHcite] = ACTIONS(5231), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCite] = ACTIONS(5231), - [anon_sym_BSLASHnocite] = ACTIONS(5231), - [anon_sym_BSLASHcitet] = ACTIONS(5231), - [anon_sym_BSLASHcitep] = ACTIONS(5231), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteyear] = ACTIONS(5231), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitedate] = ACTIONS(5231), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteurl] = ACTIONS(5231), - [anon_sym_BSLASHfullcite] = ACTIONS(5231), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), - [anon_sym_BSLASHcitealt] = ACTIONS(5231), - [anon_sym_BSLASHcitealp] = ACTIONS(5231), - [anon_sym_BSLASHcitetext] = ACTIONS(5231), - [anon_sym_BSLASHparencite] = ACTIONS(5231), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHParencite] = ACTIONS(5231), - [anon_sym_BSLASHfootcite] = ACTIONS(5231), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), - [anon_sym_BSLASHtextcite] = ACTIONS(5231), - [anon_sym_BSLASHTextcite] = ACTIONS(5231), - [anon_sym_BSLASHsmartcite] = ACTIONS(5231), - [anon_sym_BSLASHSmartcite] = ACTIONS(5231), - [anon_sym_BSLASHsupercite] = ACTIONS(5231), - [anon_sym_BSLASHautocite] = ACTIONS(5231), - [anon_sym_BSLASHAutocite] = ACTIONS(5231), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHvolcite] = ACTIONS(5231), - [anon_sym_BSLASHVolcite] = ACTIONS(5231), - [anon_sym_BSLASHpvolcite] = ACTIONS(5231), - [anon_sym_BSLASHPvolcite] = ACTIONS(5231), - [anon_sym_BSLASHfvolcite] = ACTIONS(5231), - [anon_sym_BSLASHftvolcite] = ACTIONS(5231), - [anon_sym_BSLASHsvolcite] = ACTIONS(5231), - [anon_sym_BSLASHSvolcite] = ACTIONS(5231), - [anon_sym_BSLASHtvolcite] = ACTIONS(5231), - [anon_sym_BSLASHTvolcite] = ACTIONS(5231), - [anon_sym_BSLASHavolcite] = ACTIONS(5231), - [anon_sym_BSLASHAvolcite] = ACTIONS(5231), - [anon_sym_BSLASHnotecite] = ACTIONS(5231), - [anon_sym_BSLASHNotecite] = ACTIONS(5231), - [anon_sym_BSLASHpnotecite] = ACTIONS(5231), - [anon_sym_BSLASHPnotecite] = ACTIONS(5231), - [anon_sym_BSLASHfnotecite] = ACTIONS(5231), - [anon_sym_BSLASHlabel] = ACTIONS(5231), - [anon_sym_BSLASHref] = ACTIONS(5231), - [anon_sym_BSLASHeqref] = ACTIONS(5231), - [anon_sym_BSLASHvref] = ACTIONS(5231), - [anon_sym_BSLASHVref] = ACTIONS(5231), - [anon_sym_BSLASHautoref] = ACTIONS(5231), - [anon_sym_BSLASHpageref] = ACTIONS(5231), - [anon_sym_BSLASHcref] = ACTIONS(5231), - [anon_sym_BSLASHCref] = ACTIONS(5231), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnameCref] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHlabelcref] = ACTIONS(5231), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnewlabel] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), - [anon_sym_BSLASHdef] = ACTIONS(5231), - [anon_sym_BSLASHlet] = ACTIONS(5231), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), - [anon_sym_BSLASHgls] = ACTIONS(5231), - [anon_sym_BSLASHGls] = ACTIONS(5231), - [anon_sym_BSLASHGLS] = ACTIONS(5231), - [anon_sym_BSLASHglspl] = ACTIONS(5231), - [anon_sym_BSLASHGlspl] = ACTIONS(5231), - [anon_sym_BSLASHGLSpl] = ACTIONS(5231), - [anon_sym_BSLASHglsdisp] = ACTIONS(5231), - [anon_sym_BSLASHglslink] = ACTIONS(5231), - [anon_sym_BSLASHglstext] = ACTIONS(5231), - [anon_sym_BSLASHGlstext] = ACTIONS(5231), - [anon_sym_BSLASHGLStext] = ACTIONS(5231), - [anon_sym_BSLASHglsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), - [anon_sym_BSLASHglsplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSplural] = ACTIONS(5231), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHglsname] = ACTIONS(5231), - [anon_sym_BSLASHGlsname] = ACTIONS(5231), - [anon_sym_BSLASHGLSname] = ACTIONS(5231), - [anon_sym_BSLASHglssymbol] = ACTIONS(5231), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), - [anon_sym_BSLASHglsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), - [anon_sym_BSLASHglsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), - [anon_sym_BSLASHglsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), - [anon_sym_BSLASHglsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), - [anon_sym_BSLASHglsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), - [anon_sym_BSLASHnewacronym] = ACTIONS(5231), - [anon_sym_BSLASHacrshort] = ACTIONS(5231), - [anon_sym_BSLASHAcrshort] = ACTIONS(5231), - [anon_sym_BSLASHACRshort] = ACTIONS(5231), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), - [anon_sym_BSLASHacrlong] = ACTIONS(5231), - [anon_sym_BSLASHAcrlong] = ACTIONS(5231), - [anon_sym_BSLASHACRlong] = ACTIONS(5231), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), - [anon_sym_BSLASHacrfull] = ACTIONS(5231), - [anon_sym_BSLASHAcrfull] = ACTIONS(5231), - [anon_sym_BSLASHACRfull] = ACTIONS(5231), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), - [anon_sym_BSLASHacs] = ACTIONS(5231), - [anon_sym_BSLASHAcs] = ACTIONS(5231), - [anon_sym_BSLASHacsp] = ACTIONS(5231), - [anon_sym_BSLASHAcsp] = ACTIONS(5231), - [anon_sym_BSLASHacl] = ACTIONS(5231), - [anon_sym_BSLASHAcl] = ACTIONS(5231), - [anon_sym_BSLASHaclp] = ACTIONS(5231), - [anon_sym_BSLASHAclp] = ACTIONS(5231), - [anon_sym_BSLASHacf] = ACTIONS(5231), - [anon_sym_BSLASHAcf] = ACTIONS(5231), - [anon_sym_BSLASHacfp] = ACTIONS(5231), - [anon_sym_BSLASHAcfp] = ACTIONS(5231), - [anon_sym_BSLASHac] = ACTIONS(5231), - [anon_sym_BSLASHAc] = ACTIONS(5231), - [anon_sym_BSLASHacp] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), - [anon_sym_BSLASHcolor] = ACTIONS(5231), - [anon_sym_BSLASHcolorbox] = ACTIONS(5231), - [anon_sym_BSLASHtextcolor] = ACTIONS(5231), - [anon_sym_BSLASHpagecolor] = ACTIONS(5231), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), - }, - [781] = { - [ts_builtin_sym_end] = ACTIONS(5233), - [sym_command_name] = ACTIONS(5235), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5235), - [anon_sym_LPAREN] = ACTIONS(5233), - [anon_sym_RPAREN] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_RBRACK] = ACTIONS(5233), - [anon_sym_COMMA] = ACTIONS(5233), - [anon_sym_EQ] = ACTIONS(5233), - [anon_sym_BSLASHpart] = ACTIONS(5235), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddpart] = ACTIONS(5235), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), - [anon_sym_BSLASHchapter] = ACTIONS(5235), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddchap] = ACTIONS(5235), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsection] = ACTIONS(5235), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddsec] = ACTIONS(5235), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubsection] = ACTIONS(5235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHparagraph] = ACTIONS(5235), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), - [anon_sym_BSLASHitem] = ACTIONS(5235), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5233), - [anon_sym_RBRACE] = ACTIONS(5233), - [sym_word] = ACTIONS(5235), - [sym_placeholder] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_CARET] = ACTIONS(5235), - [anon_sym__] = ACTIONS(5235), - [anon_sym_LT] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5235), - [anon_sym_BANG] = ACTIONS(5235), - [anon_sym_PIPE] = ACTIONS(5235), - [anon_sym_COLON] = ACTIONS(5235), - [anon_sym_SQUOTE] = ACTIONS(5235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), - [anon_sym_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), - [anon_sym_BSLASHbegin] = ACTIONS(5235), - [anon_sym_BSLASHusepackage] = ACTIONS(5235), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), - [anon_sym_BSLASHinclude] = ACTIONS(5235), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), - [anon_sym_BSLASHinput] = ACTIONS(5235), - [anon_sym_BSLASHsubfile] = ACTIONS(5235), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), - [anon_sym_BSLASHbibliography] = ACTIONS(5235), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), - [anon_sym_BSLASHincludesvg] = ACTIONS(5235), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), - [anon_sym_BSLASHimport] = ACTIONS(5235), - [anon_sym_BSLASHsubimport] = ACTIONS(5235), - [anon_sym_BSLASHinputfrom] = ACTIONS(5235), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), - [anon_sym_BSLASHincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHcaption] = ACTIONS(5235), - [anon_sym_BSLASHcite] = ACTIONS(5235), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCite] = ACTIONS(5235), - [anon_sym_BSLASHnocite] = ACTIONS(5235), - [anon_sym_BSLASHcitet] = ACTIONS(5235), - [anon_sym_BSLASHcitep] = ACTIONS(5235), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteyear] = ACTIONS(5235), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitedate] = ACTIONS(5235), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteurl] = ACTIONS(5235), - [anon_sym_BSLASHfullcite] = ACTIONS(5235), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), - [anon_sym_BSLASHcitealt] = ACTIONS(5235), - [anon_sym_BSLASHcitealp] = ACTIONS(5235), - [anon_sym_BSLASHcitetext] = ACTIONS(5235), - [anon_sym_BSLASHparencite] = ACTIONS(5235), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHParencite] = ACTIONS(5235), - [anon_sym_BSLASHfootcite] = ACTIONS(5235), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), - [anon_sym_BSLASHtextcite] = ACTIONS(5235), - [anon_sym_BSLASHTextcite] = ACTIONS(5235), - [anon_sym_BSLASHsmartcite] = ACTIONS(5235), - [anon_sym_BSLASHSmartcite] = ACTIONS(5235), - [anon_sym_BSLASHsupercite] = ACTIONS(5235), - [anon_sym_BSLASHautocite] = ACTIONS(5235), - [anon_sym_BSLASHAutocite] = ACTIONS(5235), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHvolcite] = ACTIONS(5235), - [anon_sym_BSLASHVolcite] = ACTIONS(5235), - [anon_sym_BSLASHpvolcite] = ACTIONS(5235), - [anon_sym_BSLASHPvolcite] = ACTIONS(5235), - [anon_sym_BSLASHfvolcite] = ACTIONS(5235), - [anon_sym_BSLASHftvolcite] = ACTIONS(5235), - [anon_sym_BSLASHsvolcite] = ACTIONS(5235), - [anon_sym_BSLASHSvolcite] = ACTIONS(5235), - [anon_sym_BSLASHtvolcite] = ACTIONS(5235), - [anon_sym_BSLASHTvolcite] = ACTIONS(5235), - [anon_sym_BSLASHavolcite] = ACTIONS(5235), - [anon_sym_BSLASHAvolcite] = ACTIONS(5235), - [anon_sym_BSLASHnotecite] = ACTIONS(5235), - [anon_sym_BSLASHNotecite] = ACTIONS(5235), - [anon_sym_BSLASHpnotecite] = ACTIONS(5235), - [anon_sym_BSLASHPnotecite] = ACTIONS(5235), - [anon_sym_BSLASHfnotecite] = ACTIONS(5235), - [anon_sym_BSLASHlabel] = ACTIONS(5235), - [anon_sym_BSLASHref] = ACTIONS(5235), - [anon_sym_BSLASHeqref] = ACTIONS(5235), - [anon_sym_BSLASHvref] = ACTIONS(5235), - [anon_sym_BSLASHVref] = ACTIONS(5235), - [anon_sym_BSLASHautoref] = ACTIONS(5235), - [anon_sym_BSLASHpageref] = ACTIONS(5235), - [anon_sym_BSLASHcref] = ACTIONS(5235), - [anon_sym_BSLASHCref] = ACTIONS(5235), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnameCref] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHlabelcref] = ACTIONS(5235), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnewlabel] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), - [anon_sym_BSLASHdef] = ACTIONS(5235), - [anon_sym_BSLASHlet] = ACTIONS(5235), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), - [anon_sym_BSLASHgls] = ACTIONS(5235), - [anon_sym_BSLASHGls] = ACTIONS(5235), - [anon_sym_BSLASHGLS] = ACTIONS(5235), - [anon_sym_BSLASHglspl] = ACTIONS(5235), - [anon_sym_BSLASHGlspl] = ACTIONS(5235), - [anon_sym_BSLASHGLSpl] = ACTIONS(5235), - [anon_sym_BSLASHglsdisp] = ACTIONS(5235), - [anon_sym_BSLASHglslink] = ACTIONS(5235), - [anon_sym_BSLASHglstext] = ACTIONS(5235), - [anon_sym_BSLASHGlstext] = ACTIONS(5235), - [anon_sym_BSLASHGLStext] = ACTIONS(5235), - [anon_sym_BSLASHglsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), - [anon_sym_BSLASHglsplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSplural] = ACTIONS(5235), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHglsname] = ACTIONS(5235), - [anon_sym_BSLASHGlsname] = ACTIONS(5235), - [anon_sym_BSLASHGLSname] = ACTIONS(5235), - [anon_sym_BSLASHglssymbol] = ACTIONS(5235), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), - [anon_sym_BSLASHglsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), - [anon_sym_BSLASHglsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), - [anon_sym_BSLASHglsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), - [anon_sym_BSLASHglsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), - [anon_sym_BSLASHglsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), - [anon_sym_BSLASHnewacronym] = ACTIONS(5235), - [anon_sym_BSLASHacrshort] = ACTIONS(5235), - [anon_sym_BSLASHAcrshort] = ACTIONS(5235), - [anon_sym_BSLASHACRshort] = ACTIONS(5235), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), - [anon_sym_BSLASHacrlong] = ACTIONS(5235), - [anon_sym_BSLASHAcrlong] = ACTIONS(5235), - [anon_sym_BSLASHACRlong] = ACTIONS(5235), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), - [anon_sym_BSLASHacrfull] = ACTIONS(5235), - [anon_sym_BSLASHAcrfull] = ACTIONS(5235), - [anon_sym_BSLASHACRfull] = ACTIONS(5235), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), - [anon_sym_BSLASHacs] = ACTIONS(5235), - [anon_sym_BSLASHAcs] = ACTIONS(5235), - [anon_sym_BSLASHacsp] = ACTIONS(5235), - [anon_sym_BSLASHAcsp] = ACTIONS(5235), - [anon_sym_BSLASHacl] = ACTIONS(5235), - [anon_sym_BSLASHAcl] = ACTIONS(5235), - [anon_sym_BSLASHaclp] = ACTIONS(5235), - [anon_sym_BSLASHAclp] = ACTIONS(5235), - [anon_sym_BSLASHacf] = ACTIONS(5235), - [anon_sym_BSLASHAcf] = ACTIONS(5235), - [anon_sym_BSLASHacfp] = ACTIONS(5235), - [anon_sym_BSLASHAcfp] = ACTIONS(5235), - [anon_sym_BSLASHac] = ACTIONS(5235), - [anon_sym_BSLASHAc] = ACTIONS(5235), - [anon_sym_BSLASHacp] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), - [anon_sym_BSLASHcolor] = ACTIONS(5235), - [anon_sym_BSLASHcolorbox] = ACTIONS(5235), - [anon_sym_BSLASHtextcolor] = ACTIONS(5235), - [anon_sym_BSLASHpagecolor] = ACTIONS(5235), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), - }, - [782] = { - [ts_builtin_sym_end] = ACTIONS(5237), - [sym_command_name] = ACTIONS(5239), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5237), - [anon_sym_RPAREN] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_RBRACK] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_EQ] = ACTIONS(5237), - [anon_sym_BSLASHpart] = ACTIONS(5239), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddpart] = ACTIONS(5239), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5237), - [anon_sym_BSLASHchapter] = ACTIONS(5239), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddchap] = ACTIONS(5239), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsection] = ACTIONS(5239), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddsec] = ACTIONS(5239), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubsection] = ACTIONS(5239), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHparagraph] = ACTIONS(5239), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5239), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5237), - [anon_sym_BSLASHitem] = ACTIONS(5239), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5237), - [anon_sym_RBRACE] = ACTIONS(5237), - [sym_word] = ACTIONS(5239), - [sym_placeholder] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym__] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_BANG] = ACTIONS(5239), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_COLON] = ACTIONS(5239), - [anon_sym_SQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), - [anon_sym_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), - [anon_sym_BSLASHbegin] = ACTIONS(5239), - [anon_sym_BSLASHusepackage] = ACTIONS(5239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), - [anon_sym_BSLASHinclude] = ACTIONS(5239), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), - [anon_sym_BSLASHinput] = ACTIONS(5239), - [anon_sym_BSLASHsubfile] = ACTIONS(5239), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), - [anon_sym_BSLASHbibliography] = ACTIONS(5239), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), - [anon_sym_BSLASHincludesvg] = ACTIONS(5239), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), - [anon_sym_BSLASHimport] = ACTIONS(5239), - [anon_sym_BSLASHsubimport] = ACTIONS(5239), - [anon_sym_BSLASHinputfrom] = ACTIONS(5239), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), - [anon_sym_BSLASHincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHcaption] = ACTIONS(5239), - [anon_sym_BSLASHcite] = ACTIONS(5239), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCite] = ACTIONS(5239), - [anon_sym_BSLASHnocite] = ACTIONS(5239), - [anon_sym_BSLASHcitet] = ACTIONS(5239), - [anon_sym_BSLASHcitep] = ACTIONS(5239), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteyear] = ACTIONS(5239), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitedate] = ACTIONS(5239), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteurl] = ACTIONS(5239), - [anon_sym_BSLASHfullcite] = ACTIONS(5239), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), - [anon_sym_BSLASHcitealt] = ACTIONS(5239), - [anon_sym_BSLASHcitealp] = ACTIONS(5239), - [anon_sym_BSLASHcitetext] = ACTIONS(5239), - [anon_sym_BSLASHparencite] = ACTIONS(5239), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHParencite] = ACTIONS(5239), - [anon_sym_BSLASHfootcite] = ACTIONS(5239), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), - [anon_sym_BSLASHtextcite] = ACTIONS(5239), - [anon_sym_BSLASHTextcite] = ACTIONS(5239), - [anon_sym_BSLASHsmartcite] = ACTIONS(5239), - [anon_sym_BSLASHSmartcite] = ACTIONS(5239), - [anon_sym_BSLASHsupercite] = ACTIONS(5239), - [anon_sym_BSLASHautocite] = ACTIONS(5239), - [anon_sym_BSLASHAutocite] = ACTIONS(5239), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHvolcite] = ACTIONS(5239), - [anon_sym_BSLASHVolcite] = ACTIONS(5239), - [anon_sym_BSLASHpvolcite] = ACTIONS(5239), - [anon_sym_BSLASHPvolcite] = ACTIONS(5239), - [anon_sym_BSLASHfvolcite] = ACTIONS(5239), - [anon_sym_BSLASHftvolcite] = ACTIONS(5239), - [anon_sym_BSLASHsvolcite] = ACTIONS(5239), - [anon_sym_BSLASHSvolcite] = ACTIONS(5239), - [anon_sym_BSLASHtvolcite] = ACTIONS(5239), - [anon_sym_BSLASHTvolcite] = ACTIONS(5239), - [anon_sym_BSLASHavolcite] = ACTIONS(5239), - [anon_sym_BSLASHAvolcite] = ACTIONS(5239), - [anon_sym_BSLASHnotecite] = ACTIONS(5239), - [anon_sym_BSLASHNotecite] = ACTIONS(5239), - [anon_sym_BSLASHpnotecite] = ACTIONS(5239), - [anon_sym_BSLASHPnotecite] = ACTIONS(5239), - [anon_sym_BSLASHfnotecite] = ACTIONS(5239), - [anon_sym_BSLASHlabel] = ACTIONS(5239), - [anon_sym_BSLASHref] = ACTIONS(5239), - [anon_sym_BSLASHeqref] = ACTIONS(5239), - [anon_sym_BSLASHvref] = ACTIONS(5239), - [anon_sym_BSLASHVref] = ACTIONS(5239), - [anon_sym_BSLASHautoref] = ACTIONS(5239), - [anon_sym_BSLASHpageref] = ACTIONS(5239), - [anon_sym_BSLASHcref] = ACTIONS(5239), - [anon_sym_BSLASHCref] = ACTIONS(5239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnameCref] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHlabelcref] = ACTIONS(5239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnewlabel] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), - [anon_sym_BSLASHdef] = ACTIONS(5239), - [anon_sym_BSLASHlet] = ACTIONS(5239), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), - [anon_sym_BSLASHgls] = ACTIONS(5239), - [anon_sym_BSLASHGls] = ACTIONS(5239), - [anon_sym_BSLASHGLS] = ACTIONS(5239), - [anon_sym_BSLASHglspl] = ACTIONS(5239), - [anon_sym_BSLASHGlspl] = ACTIONS(5239), - [anon_sym_BSLASHGLSpl] = ACTIONS(5239), - [anon_sym_BSLASHglsdisp] = ACTIONS(5239), - [anon_sym_BSLASHglslink] = ACTIONS(5239), - [anon_sym_BSLASHglstext] = ACTIONS(5239), - [anon_sym_BSLASHGlstext] = ACTIONS(5239), - [anon_sym_BSLASHGLStext] = ACTIONS(5239), - [anon_sym_BSLASHglsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), - [anon_sym_BSLASHglsplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSplural] = ACTIONS(5239), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHglsname] = ACTIONS(5239), - [anon_sym_BSLASHGlsname] = ACTIONS(5239), - [anon_sym_BSLASHGLSname] = ACTIONS(5239), - [anon_sym_BSLASHglssymbol] = ACTIONS(5239), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), - [anon_sym_BSLASHglsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), - [anon_sym_BSLASHglsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), - [anon_sym_BSLASHglsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), - [anon_sym_BSLASHglsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), - [anon_sym_BSLASHglsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), - [anon_sym_BSLASHnewacronym] = ACTIONS(5239), - [anon_sym_BSLASHacrshort] = ACTIONS(5239), - [anon_sym_BSLASHAcrshort] = ACTIONS(5239), - [anon_sym_BSLASHACRshort] = ACTIONS(5239), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), - [anon_sym_BSLASHacrlong] = ACTIONS(5239), - [anon_sym_BSLASHAcrlong] = ACTIONS(5239), - [anon_sym_BSLASHACRlong] = ACTIONS(5239), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), - [anon_sym_BSLASHacrfull] = ACTIONS(5239), - [anon_sym_BSLASHAcrfull] = ACTIONS(5239), - [anon_sym_BSLASHACRfull] = ACTIONS(5239), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), - [anon_sym_BSLASHacs] = ACTIONS(5239), - [anon_sym_BSLASHAcs] = ACTIONS(5239), - [anon_sym_BSLASHacsp] = ACTIONS(5239), - [anon_sym_BSLASHAcsp] = ACTIONS(5239), - [anon_sym_BSLASHacl] = ACTIONS(5239), - [anon_sym_BSLASHAcl] = ACTIONS(5239), - [anon_sym_BSLASHaclp] = ACTIONS(5239), - [anon_sym_BSLASHAclp] = ACTIONS(5239), - [anon_sym_BSLASHacf] = ACTIONS(5239), - [anon_sym_BSLASHAcf] = ACTIONS(5239), - [anon_sym_BSLASHacfp] = ACTIONS(5239), - [anon_sym_BSLASHAcfp] = ACTIONS(5239), - [anon_sym_BSLASHac] = ACTIONS(5239), - [anon_sym_BSLASHAc] = ACTIONS(5239), - [anon_sym_BSLASHacp] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), - [anon_sym_BSLASHcolor] = ACTIONS(5239), - [anon_sym_BSLASHcolorbox] = ACTIONS(5239), - [anon_sym_BSLASHtextcolor] = ACTIONS(5239), - [anon_sym_BSLASHpagecolor] = ACTIONS(5239), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), - }, - [783] = { - [ts_builtin_sym_end] = ACTIONS(5241), - [sym_command_name] = ACTIONS(5243), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5243), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_RPAREN] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_RBRACK] = ACTIONS(5241), - [anon_sym_COMMA] = ACTIONS(5241), - [anon_sym_EQ] = ACTIONS(5241), - [anon_sym_BSLASHpart] = ACTIONS(5243), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddpart] = ACTIONS(5243), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5241), - [anon_sym_BSLASHchapter] = ACTIONS(5243), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddchap] = ACTIONS(5243), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsection] = ACTIONS(5243), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddsec] = ACTIONS(5243), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubsection] = ACTIONS(5243), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5243), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHparagraph] = ACTIONS(5243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5243), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5241), - [anon_sym_BSLASHitem] = ACTIONS(5243), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5241), - [anon_sym_LBRACE] = ACTIONS(5241), - [anon_sym_RBRACE] = ACTIONS(5241), - [sym_word] = ACTIONS(5243), - [sym_placeholder] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_STAR] = ACTIONS(5243), - [anon_sym_SLASH] = ACTIONS(5243), - [anon_sym_CARET] = ACTIONS(5243), - [anon_sym__] = ACTIONS(5243), - [anon_sym_LT] = ACTIONS(5243), - [anon_sym_GT] = ACTIONS(5243), - [anon_sym_BANG] = ACTIONS(5243), - [anon_sym_PIPE] = ACTIONS(5243), - [anon_sym_COLON] = ACTIONS(5243), - [anon_sym_SQUOTE] = ACTIONS(5243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5241), - [anon_sym_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5241), - [anon_sym_BSLASHbegin] = ACTIONS(5243), - [anon_sym_BSLASHusepackage] = ACTIONS(5243), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5243), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5243), - [anon_sym_BSLASHinclude] = ACTIONS(5243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5243), - [anon_sym_BSLASHinput] = ACTIONS(5243), - [anon_sym_BSLASHsubfile] = ACTIONS(5243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5243), - [anon_sym_BSLASHbibliography] = ACTIONS(5243), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5243), - [anon_sym_BSLASHincludesvg] = ACTIONS(5243), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5243), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5243), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5243), - [anon_sym_BSLASHimport] = ACTIONS(5243), - [anon_sym_BSLASHsubimport] = ACTIONS(5243), - [anon_sym_BSLASHinputfrom] = ACTIONS(5243), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5243), - [anon_sym_BSLASHincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHcaption] = ACTIONS(5243), - [anon_sym_BSLASHcite] = ACTIONS(5243), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCite] = ACTIONS(5243), - [anon_sym_BSLASHnocite] = ACTIONS(5243), - [anon_sym_BSLASHcitet] = ACTIONS(5243), - [anon_sym_BSLASHcitep] = ACTIONS(5243), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteyear] = ACTIONS(5243), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitedate] = ACTIONS(5243), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteurl] = ACTIONS(5243), - [anon_sym_BSLASHfullcite] = ACTIONS(5243), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5243), - [anon_sym_BSLASHcitealt] = ACTIONS(5243), - [anon_sym_BSLASHcitealp] = ACTIONS(5243), - [anon_sym_BSLASHcitetext] = ACTIONS(5243), - [anon_sym_BSLASHparencite] = ACTIONS(5243), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHParencite] = ACTIONS(5243), - [anon_sym_BSLASHfootcite] = ACTIONS(5243), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5243), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5243), - [anon_sym_BSLASHtextcite] = ACTIONS(5243), - [anon_sym_BSLASHTextcite] = ACTIONS(5243), - [anon_sym_BSLASHsmartcite] = ACTIONS(5243), - [anon_sym_BSLASHSmartcite] = ACTIONS(5243), - [anon_sym_BSLASHsupercite] = ACTIONS(5243), - [anon_sym_BSLASHautocite] = ACTIONS(5243), - [anon_sym_BSLASHAutocite] = ACTIONS(5243), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHvolcite] = ACTIONS(5243), - [anon_sym_BSLASHVolcite] = ACTIONS(5243), - [anon_sym_BSLASHpvolcite] = ACTIONS(5243), - [anon_sym_BSLASHPvolcite] = ACTIONS(5243), - [anon_sym_BSLASHfvolcite] = ACTIONS(5243), - [anon_sym_BSLASHftvolcite] = ACTIONS(5243), - [anon_sym_BSLASHsvolcite] = ACTIONS(5243), - [anon_sym_BSLASHSvolcite] = ACTIONS(5243), - [anon_sym_BSLASHtvolcite] = ACTIONS(5243), - [anon_sym_BSLASHTvolcite] = ACTIONS(5243), - [anon_sym_BSLASHavolcite] = ACTIONS(5243), - [anon_sym_BSLASHAvolcite] = ACTIONS(5243), - [anon_sym_BSLASHnotecite] = ACTIONS(5243), - [anon_sym_BSLASHNotecite] = ACTIONS(5243), - [anon_sym_BSLASHpnotecite] = ACTIONS(5243), - [anon_sym_BSLASHPnotecite] = ACTIONS(5243), - [anon_sym_BSLASHfnotecite] = ACTIONS(5243), - [anon_sym_BSLASHlabel] = ACTIONS(5243), - [anon_sym_BSLASHref] = ACTIONS(5243), - [anon_sym_BSLASHeqref] = ACTIONS(5243), - [anon_sym_BSLASHvref] = ACTIONS(5243), - [anon_sym_BSLASHVref] = ACTIONS(5243), - [anon_sym_BSLASHautoref] = ACTIONS(5243), - [anon_sym_BSLASHpageref] = ACTIONS(5243), - [anon_sym_BSLASHcref] = ACTIONS(5243), - [anon_sym_BSLASHCref] = ACTIONS(5243), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnameCref] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHlabelcref] = ACTIONS(5243), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnewlabel] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5241), - [anon_sym_BSLASHdef] = ACTIONS(5243), - [anon_sym_BSLASHlet] = ACTIONS(5243), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5243), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5243), - [anon_sym_BSLASHgls] = ACTIONS(5243), - [anon_sym_BSLASHGls] = ACTIONS(5243), - [anon_sym_BSLASHGLS] = ACTIONS(5243), - [anon_sym_BSLASHglspl] = ACTIONS(5243), - [anon_sym_BSLASHGlspl] = ACTIONS(5243), - [anon_sym_BSLASHGLSpl] = ACTIONS(5243), - [anon_sym_BSLASHglsdisp] = ACTIONS(5243), - [anon_sym_BSLASHglslink] = ACTIONS(5243), - [anon_sym_BSLASHglstext] = ACTIONS(5243), - [anon_sym_BSLASHGlstext] = ACTIONS(5243), - [anon_sym_BSLASHGLStext] = ACTIONS(5243), - [anon_sym_BSLASHglsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5243), - [anon_sym_BSLASHglsplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSplural] = ACTIONS(5243), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHglsname] = ACTIONS(5243), - [anon_sym_BSLASHGlsname] = ACTIONS(5243), - [anon_sym_BSLASHGLSname] = ACTIONS(5243), - [anon_sym_BSLASHglssymbol] = ACTIONS(5243), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5243), - [anon_sym_BSLASHglsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5243), - [anon_sym_BSLASHglsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5243), - [anon_sym_BSLASHglsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5243), - [anon_sym_BSLASHglsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5243), - [anon_sym_BSLASHglsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5243), - [anon_sym_BSLASHnewacronym] = ACTIONS(5243), - [anon_sym_BSLASHacrshort] = ACTIONS(5243), - [anon_sym_BSLASHAcrshort] = ACTIONS(5243), - [anon_sym_BSLASHACRshort] = ACTIONS(5243), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5243), - [anon_sym_BSLASHacrlong] = ACTIONS(5243), - [anon_sym_BSLASHAcrlong] = ACTIONS(5243), - [anon_sym_BSLASHACRlong] = ACTIONS(5243), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5243), - [anon_sym_BSLASHacrfull] = ACTIONS(5243), - [anon_sym_BSLASHAcrfull] = ACTIONS(5243), - [anon_sym_BSLASHACRfull] = ACTIONS(5243), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5243), - [anon_sym_BSLASHacs] = ACTIONS(5243), - [anon_sym_BSLASHAcs] = ACTIONS(5243), - [anon_sym_BSLASHacsp] = ACTIONS(5243), - [anon_sym_BSLASHAcsp] = ACTIONS(5243), - [anon_sym_BSLASHacl] = ACTIONS(5243), - [anon_sym_BSLASHAcl] = ACTIONS(5243), - [anon_sym_BSLASHaclp] = ACTIONS(5243), - [anon_sym_BSLASHAclp] = ACTIONS(5243), - [anon_sym_BSLASHacf] = ACTIONS(5243), - [anon_sym_BSLASHAcf] = ACTIONS(5243), - [anon_sym_BSLASHacfp] = ACTIONS(5243), - [anon_sym_BSLASHAcfp] = ACTIONS(5243), - [anon_sym_BSLASHac] = ACTIONS(5243), - [anon_sym_BSLASHAc] = ACTIONS(5243), - [anon_sym_BSLASHacp] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5243), - [anon_sym_BSLASHcolor] = ACTIONS(5243), - [anon_sym_BSLASHcolorbox] = ACTIONS(5243), - [anon_sym_BSLASHtextcolor] = ACTIONS(5243), - [anon_sym_BSLASHpagecolor] = ACTIONS(5243), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5243), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5243), - }, - [784] = { - [ts_builtin_sym_end] = ACTIONS(5245), - [sym_command_name] = ACTIONS(5247), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5247), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_RPAREN] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_RBRACK] = ACTIONS(5245), - [anon_sym_COMMA] = ACTIONS(5245), - [anon_sym_EQ] = ACTIONS(5245), - [anon_sym_BSLASHpart] = ACTIONS(5247), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddpart] = ACTIONS(5247), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5245), - [anon_sym_BSLASHchapter] = ACTIONS(5247), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddchap] = ACTIONS(5247), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsection] = ACTIONS(5247), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddsec] = ACTIONS(5247), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubsection] = ACTIONS(5247), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5247), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHparagraph] = ACTIONS(5247), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5245), - [anon_sym_BSLASHitem] = ACTIONS(5247), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5245), - [anon_sym_LBRACE] = ACTIONS(5245), - [anon_sym_RBRACE] = ACTIONS(5245), - [sym_word] = ACTIONS(5247), - [sym_placeholder] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_SLASH] = ACTIONS(5247), - [anon_sym_CARET] = ACTIONS(5247), - [anon_sym__] = ACTIONS(5247), - [anon_sym_LT] = ACTIONS(5247), - [anon_sym_GT] = ACTIONS(5247), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_PIPE] = ACTIONS(5247), - [anon_sym_COLON] = ACTIONS(5247), - [anon_sym_SQUOTE] = ACTIONS(5247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5245), - [anon_sym_DOLLAR] = ACTIONS(5247), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5245), - [anon_sym_BSLASHbegin] = ACTIONS(5247), - [anon_sym_BSLASHusepackage] = ACTIONS(5247), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5247), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5247), - [anon_sym_BSLASHinclude] = ACTIONS(5247), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5247), - [anon_sym_BSLASHinput] = ACTIONS(5247), - [anon_sym_BSLASHsubfile] = ACTIONS(5247), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5247), - [anon_sym_BSLASHbibliography] = ACTIONS(5247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5247), - [anon_sym_BSLASHincludesvg] = ACTIONS(5247), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5247), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5247), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5247), - [anon_sym_BSLASHimport] = ACTIONS(5247), - [anon_sym_BSLASHsubimport] = ACTIONS(5247), - [anon_sym_BSLASHinputfrom] = ACTIONS(5247), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5247), - [anon_sym_BSLASHincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHcaption] = ACTIONS(5247), - [anon_sym_BSLASHcite] = ACTIONS(5247), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCite] = ACTIONS(5247), - [anon_sym_BSLASHnocite] = ACTIONS(5247), - [anon_sym_BSLASHcitet] = ACTIONS(5247), - [anon_sym_BSLASHcitep] = ACTIONS(5247), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteyear] = ACTIONS(5247), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitedate] = ACTIONS(5247), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteurl] = ACTIONS(5247), - [anon_sym_BSLASHfullcite] = ACTIONS(5247), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5247), - [anon_sym_BSLASHcitealt] = ACTIONS(5247), - [anon_sym_BSLASHcitealp] = ACTIONS(5247), - [anon_sym_BSLASHcitetext] = ACTIONS(5247), - [anon_sym_BSLASHparencite] = ACTIONS(5247), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHParencite] = ACTIONS(5247), - [anon_sym_BSLASHfootcite] = ACTIONS(5247), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5247), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5247), - [anon_sym_BSLASHtextcite] = ACTIONS(5247), - [anon_sym_BSLASHTextcite] = ACTIONS(5247), - [anon_sym_BSLASHsmartcite] = ACTIONS(5247), - [anon_sym_BSLASHSmartcite] = ACTIONS(5247), - [anon_sym_BSLASHsupercite] = ACTIONS(5247), - [anon_sym_BSLASHautocite] = ACTIONS(5247), - [anon_sym_BSLASHAutocite] = ACTIONS(5247), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHvolcite] = ACTIONS(5247), - [anon_sym_BSLASHVolcite] = ACTIONS(5247), - [anon_sym_BSLASHpvolcite] = ACTIONS(5247), - [anon_sym_BSLASHPvolcite] = ACTIONS(5247), - [anon_sym_BSLASHfvolcite] = ACTIONS(5247), - [anon_sym_BSLASHftvolcite] = ACTIONS(5247), - [anon_sym_BSLASHsvolcite] = ACTIONS(5247), - [anon_sym_BSLASHSvolcite] = ACTIONS(5247), - [anon_sym_BSLASHtvolcite] = ACTIONS(5247), - [anon_sym_BSLASHTvolcite] = ACTIONS(5247), - [anon_sym_BSLASHavolcite] = ACTIONS(5247), - [anon_sym_BSLASHAvolcite] = ACTIONS(5247), - [anon_sym_BSLASHnotecite] = ACTIONS(5247), - [anon_sym_BSLASHNotecite] = ACTIONS(5247), - [anon_sym_BSLASHpnotecite] = ACTIONS(5247), - [anon_sym_BSLASHPnotecite] = ACTIONS(5247), - [anon_sym_BSLASHfnotecite] = ACTIONS(5247), - [anon_sym_BSLASHlabel] = ACTIONS(5247), - [anon_sym_BSLASHref] = ACTIONS(5247), - [anon_sym_BSLASHeqref] = ACTIONS(5247), - [anon_sym_BSLASHvref] = ACTIONS(5247), - [anon_sym_BSLASHVref] = ACTIONS(5247), - [anon_sym_BSLASHautoref] = ACTIONS(5247), - [anon_sym_BSLASHpageref] = ACTIONS(5247), - [anon_sym_BSLASHcref] = ACTIONS(5247), - [anon_sym_BSLASHCref] = ACTIONS(5247), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnameCref] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHlabelcref] = ACTIONS(5247), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnewlabel] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5245), - [anon_sym_BSLASHdef] = ACTIONS(5247), - [anon_sym_BSLASHlet] = ACTIONS(5247), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5247), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5247), - [anon_sym_BSLASHgls] = ACTIONS(5247), - [anon_sym_BSLASHGls] = ACTIONS(5247), - [anon_sym_BSLASHGLS] = ACTIONS(5247), - [anon_sym_BSLASHglspl] = ACTIONS(5247), - [anon_sym_BSLASHGlspl] = ACTIONS(5247), - [anon_sym_BSLASHGLSpl] = ACTIONS(5247), - [anon_sym_BSLASHglsdisp] = ACTIONS(5247), - [anon_sym_BSLASHglslink] = ACTIONS(5247), - [anon_sym_BSLASHglstext] = ACTIONS(5247), - [anon_sym_BSLASHGlstext] = ACTIONS(5247), - [anon_sym_BSLASHGLStext] = ACTIONS(5247), - [anon_sym_BSLASHglsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5247), - [anon_sym_BSLASHglsplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSplural] = ACTIONS(5247), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHglsname] = ACTIONS(5247), - [anon_sym_BSLASHGlsname] = ACTIONS(5247), - [anon_sym_BSLASHGLSname] = ACTIONS(5247), - [anon_sym_BSLASHglssymbol] = ACTIONS(5247), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5247), - [anon_sym_BSLASHglsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5247), - [anon_sym_BSLASHglsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5247), - [anon_sym_BSLASHglsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5247), - [anon_sym_BSLASHglsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5247), - [anon_sym_BSLASHglsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5247), - [anon_sym_BSLASHnewacronym] = ACTIONS(5247), - [anon_sym_BSLASHacrshort] = ACTIONS(5247), - [anon_sym_BSLASHAcrshort] = ACTIONS(5247), - [anon_sym_BSLASHACRshort] = ACTIONS(5247), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5247), - [anon_sym_BSLASHacrlong] = ACTIONS(5247), - [anon_sym_BSLASHAcrlong] = ACTIONS(5247), - [anon_sym_BSLASHACRlong] = ACTIONS(5247), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5247), - [anon_sym_BSLASHacrfull] = ACTIONS(5247), - [anon_sym_BSLASHAcrfull] = ACTIONS(5247), - [anon_sym_BSLASHACRfull] = ACTIONS(5247), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5247), - [anon_sym_BSLASHacs] = ACTIONS(5247), - [anon_sym_BSLASHAcs] = ACTIONS(5247), - [anon_sym_BSLASHacsp] = ACTIONS(5247), - [anon_sym_BSLASHAcsp] = ACTIONS(5247), - [anon_sym_BSLASHacl] = ACTIONS(5247), - [anon_sym_BSLASHAcl] = ACTIONS(5247), - [anon_sym_BSLASHaclp] = ACTIONS(5247), - [anon_sym_BSLASHAclp] = ACTIONS(5247), - [anon_sym_BSLASHacf] = ACTIONS(5247), - [anon_sym_BSLASHAcf] = ACTIONS(5247), - [anon_sym_BSLASHacfp] = ACTIONS(5247), - [anon_sym_BSLASHAcfp] = ACTIONS(5247), - [anon_sym_BSLASHac] = ACTIONS(5247), - [anon_sym_BSLASHAc] = ACTIONS(5247), - [anon_sym_BSLASHacp] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5247), - [anon_sym_BSLASHcolor] = ACTIONS(5247), - [anon_sym_BSLASHcolorbox] = ACTIONS(5247), - [anon_sym_BSLASHtextcolor] = ACTIONS(5247), - [anon_sym_BSLASHpagecolor] = ACTIONS(5247), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5247), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5247), - }, - [785] = { - [sym_curly_group] = STATE(991), - [sym_command_name] = ACTIONS(4789), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4789), - [anon_sym_LPAREN] = ACTIONS(4787), - [anon_sym_RPAREN] = ACTIONS(4787), - [anon_sym_LBRACK] = ACTIONS(4787), - [anon_sym_RBRACK] = ACTIONS(4787), - [anon_sym_COMMA] = ACTIONS(4787), - [anon_sym_EQ] = ACTIONS(4787), - [anon_sym_BSLASHpart] = ACTIONS(4789), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddpart] = ACTIONS(4789), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4787), - [anon_sym_BSLASHchapter] = ACTIONS(4789), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddchap] = ACTIONS(4789), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsection] = ACTIONS(4789), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddsec] = ACTIONS(4789), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubsection] = ACTIONS(4789), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4789), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHparagraph] = ACTIONS(4789), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4789), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4787), - [anon_sym_BSLASHitem] = ACTIONS(4789), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4787), - [anon_sym_LBRACE] = ACTIONS(652), - [sym_word] = ACTIONS(4789), - [sym_placeholder] = ACTIONS(4787), - [anon_sym_PLUS] = ACTIONS(4789), - [anon_sym_DASH] = ACTIONS(4789), - [anon_sym_STAR] = ACTIONS(4789), - [anon_sym_SLASH] = ACTIONS(4789), - [anon_sym_CARET] = ACTIONS(4789), - [anon_sym__] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4789), - [anon_sym_GT] = ACTIONS(4789), - [anon_sym_BANG] = ACTIONS(4789), - [anon_sym_PIPE] = ACTIONS(4789), - [anon_sym_COLON] = ACTIONS(4789), - [anon_sym_SQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4787), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4787), - [anon_sym_DOLLAR] = ACTIONS(4789), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4787), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4787), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4787), - [anon_sym_BSLASHbegin] = ACTIONS(4789), - [anon_sym_BSLASHusepackage] = ACTIONS(4789), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4789), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4789), - [anon_sym_BSLASHinclude] = ACTIONS(4789), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4789), - [anon_sym_BSLASHinput] = ACTIONS(4789), - [anon_sym_BSLASHsubfile] = ACTIONS(4789), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4789), - [anon_sym_BSLASHbibliography] = ACTIONS(4789), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4789), - [anon_sym_BSLASHincludesvg] = ACTIONS(4789), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4789), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4789), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4789), - [anon_sym_BSLASHimport] = ACTIONS(4789), - [anon_sym_BSLASHsubimport] = ACTIONS(4789), - [anon_sym_BSLASHinputfrom] = ACTIONS(4789), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4789), - [anon_sym_BSLASHincludefrom] = ACTIONS(4789), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4789), - [anon_sym_BSLASHcaption] = ACTIONS(4789), - [anon_sym_BSLASHcite] = ACTIONS(4789), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCite] = ACTIONS(4789), - [anon_sym_BSLASHnocite] = ACTIONS(4789), - [anon_sym_BSLASHcitet] = ACTIONS(4789), - [anon_sym_BSLASHcitep] = ACTIONS(4789), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteauthor] = ACTIONS(4789), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4789), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitetitle] = ACTIONS(4789), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteyear] = ACTIONS(4789), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitedate] = ACTIONS(4789), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteurl] = ACTIONS(4789), - [anon_sym_BSLASHfullcite] = ACTIONS(4789), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4789), - [anon_sym_BSLASHcitealt] = ACTIONS(4789), - [anon_sym_BSLASHcitealp] = ACTIONS(4789), - [anon_sym_BSLASHcitetext] = ACTIONS(4789), - [anon_sym_BSLASHparencite] = ACTIONS(4789), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHParencite] = ACTIONS(4789), - [anon_sym_BSLASHfootcite] = ACTIONS(4789), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4789), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4789), - [anon_sym_BSLASHtextcite] = ACTIONS(4789), - [anon_sym_BSLASHTextcite] = ACTIONS(4789), - [anon_sym_BSLASHsmartcite] = ACTIONS(4789), - [anon_sym_BSLASHSmartcite] = ACTIONS(4789), - [anon_sym_BSLASHsupercite] = ACTIONS(4789), - [anon_sym_BSLASHautocite] = ACTIONS(4789), - [anon_sym_BSLASHAutocite] = ACTIONS(4789), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHvolcite] = ACTIONS(4789), - [anon_sym_BSLASHVolcite] = ACTIONS(4789), - [anon_sym_BSLASHpvolcite] = ACTIONS(4789), - [anon_sym_BSLASHPvolcite] = ACTIONS(4789), - [anon_sym_BSLASHfvolcite] = ACTIONS(4789), - [anon_sym_BSLASHftvolcite] = ACTIONS(4789), - [anon_sym_BSLASHsvolcite] = ACTIONS(4789), - [anon_sym_BSLASHSvolcite] = ACTIONS(4789), - [anon_sym_BSLASHtvolcite] = ACTIONS(4789), - [anon_sym_BSLASHTvolcite] = ACTIONS(4789), - [anon_sym_BSLASHavolcite] = ACTIONS(4789), - [anon_sym_BSLASHAvolcite] = ACTIONS(4789), - [anon_sym_BSLASHnotecite] = ACTIONS(4789), - [anon_sym_BSLASHNotecite] = ACTIONS(4789), - [anon_sym_BSLASHpnotecite] = ACTIONS(4789), - [anon_sym_BSLASHPnotecite] = ACTIONS(4789), - [anon_sym_BSLASHfnotecite] = ACTIONS(4789), - [anon_sym_BSLASHlabel] = ACTIONS(4789), - [anon_sym_BSLASHref] = ACTIONS(4789), - [anon_sym_BSLASHeqref] = ACTIONS(4789), - [anon_sym_BSLASHvref] = ACTIONS(4789), - [anon_sym_BSLASHVref] = ACTIONS(4789), - [anon_sym_BSLASHautoref] = ACTIONS(4789), - [anon_sym_BSLASHpageref] = ACTIONS(4789), - [anon_sym_BSLASHcref] = ACTIONS(4789), - [anon_sym_BSLASHCref] = ACTIONS(4789), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4787), - [anon_sym_BSLASHnamecref] = ACTIONS(4789), - [anon_sym_BSLASHnameCref] = ACTIONS(4789), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4789), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4789), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4789), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4789), - [anon_sym_BSLASHlabelcref] = ACTIONS(4789), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4789), - [anon_sym_BSLASHcrefrange] = ACTIONS(4789), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCrefrange] = ACTIONS(4789), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4787), - [anon_sym_BSLASHnewlabel] = ACTIONS(4789), - [anon_sym_BSLASHnewcommand] = ACTIONS(4789), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4789), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4789), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4789), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4787), - [anon_sym_BSLASHdef] = ACTIONS(4789), - [anon_sym_BSLASHlet] = ACTIONS(4789), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4789), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4789), - [anon_sym_BSLASHgls] = ACTIONS(4789), - [anon_sym_BSLASHGls] = ACTIONS(4789), - [anon_sym_BSLASHGLS] = ACTIONS(4789), - [anon_sym_BSLASHglspl] = ACTIONS(4789), - [anon_sym_BSLASHGlspl] = ACTIONS(4789), - [anon_sym_BSLASHGLSpl] = ACTIONS(4789), - [anon_sym_BSLASHglsdisp] = ACTIONS(4789), - [anon_sym_BSLASHglslink] = ACTIONS(4789), - [anon_sym_BSLASHglstext] = ACTIONS(4789), - [anon_sym_BSLASHGlstext] = ACTIONS(4789), - [anon_sym_BSLASHGLStext] = ACTIONS(4789), - [anon_sym_BSLASHglsfirst] = ACTIONS(4789), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4789), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4789), - [anon_sym_BSLASHglsplural] = ACTIONS(4789), - [anon_sym_BSLASHGlsplural] = ACTIONS(4789), - [anon_sym_BSLASHGLSplural] = ACTIONS(4789), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHglsname] = ACTIONS(4789), - [anon_sym_BSLASHGlsname] = ACTIONS(4789), - [anon_sym_BSLASHGLSname] = ACTIONS(4789), - [anon_sym_BSLASHglssymbol] = ACTIONS(4789), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4789), - [anon_sym_BSLASHglsdesc] = ACTIONS(4789), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4789), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4789), - [anon_sym_BSLASHglsuseri] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4789), - [anon_sym_BSLASHglsuserii] = ACTIONS(4789), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4789), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4789), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4789), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4789), - [anon_sym_BSLASHglsuserv] = ACTIONS(4789), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4789), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4789), - [anon_sym_BSLASHglsuservi] = ACTIONS(4789), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4789), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4789), - [anon_sym_BSLASHnewacronym] = ACTIONS(4789), - [anon_sym_BSLASHacrshort] = ACTIONS(4789), - [anon_sym_BSLASHAcrshort] = ACTIONS(4789), - [anon_sym_BSLASHACRshort] = ACTIONS(4789), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4789), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4789), - [anon_sym_BSLASHacrlong] = ACTIONS(4789), - [anon_sym_BSLASHAcrlong] = ACTIONS(4789), - [anon_sym_BSLASHACRlong] = ACTIONS(4789), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4789), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4789), - [anon_sym_BSLASHacrfull] = ACTIONS(4789), - [anon_sym_BSLASHAcrfull] = ACTIONS(4789), - [anon_sym_BSLASHACRfull] = ACTIONS(4789), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4789), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4789), - [anon_sym_BSLASHacs] = ACTIONS(4789), - [anon_sym_BSLASHAcs] = ACTIONS(4789), - [anon_sym_BSLASHacsp] = ACTIONS(4789), - [anon_sym_BSLASHAcsp] = ACTIONS(4789), - [anon_sym_BSLASHacl] = ACTIONS(4789), - [anon_sym_BSLASHAcl] = ACTIONS(4789), - [anon_sym_BSLASHaclp] = ACTIONS(4789), - [anon_sym_BSLASHAclp] = ACTIONS(4789), - [anon_sym_BSLASHacf] = ACTIONS(4789), - [anon_sym_BSLASHAcf] = ACTIONS(4789), - [anon_sym_BSLASHacfp] = ACTIONS(4789), - [anon_sym_BSLASHAcfp] = ACTIONS(4789), - [anon_sym_BSLASHac] = ACTIONS(4789), - [anon_sym_BSLASHAc] = ACTIONS(4789), - [anon_sym_BSLASHacp] = ACTIONS(4789), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4789), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4789), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4789), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4789), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4789), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4789), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4789), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4789), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4789), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4789), - [anon_sym_BSLASHcolor] = ACTIONS(4789), - [anon_sym_BSLASHcolorbox] = ACTIONS(4789), - [anon_sym_BSLASHtextcolor] = ACTIONS(4789), - [anon_sym_BSLASHpagecolor] = ACTIONS(4789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4789), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4789), - }, - [786] = { - [ts_builtin_sym_end] = ACTIONS(5249), - [sym_command_name] = ACTIONS(5251), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5251), - [anon_sym_LPAREN] = ACTIONS(5249), - [anon_sym_RPAREN] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5249), - [anon_sym_RBRACK] = ACTIONS(5249), - [anon_sym_COMMA] = ACTIONS(5249), - [anon_sym_EQ] = ACTIONS(5249), - [anon_sym_BSLASHpart] = ACTIONS(5251), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddpart] = ACTIONS(5251), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5249), - [anon_sym_BSLASHchapter] = ACTIONS(5251), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddchap] = ACTIONS(5251), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsection] = ACTIONS(5251), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddsec] = ACTIONS(5251), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubsection] = ACTIONS(5251), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5251), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHparagraph] = ACTIONS(5251), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5251), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5249), - [anon_sym_BSLASHitem] = ACTIONS(5251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5249), - [anon_sym_LBRACE] = ACTIONS(5249), - [anon_sym_RBRACE] = ACTIONS(5249), - [sym_word] = ACTIONS(5251), - [sym_placeholder] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym__] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_BANG] = ACTIONS(5251), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5251), - [anon_sym_SQUOTE] = ACTIONS(5251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5249), - [anon_sym_DOLLAR] = ACTIONS(5251), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5249), - [anon_sym_BSLASHbegin] = ACTIONS(5251), - [anon_sym_BSLASHusepackage] = ACTIONS(5251), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5251), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5251), - [anon_sym_BSLASHinclude] = ACTIONS(5251), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5251), - [anon_sym_BSLASHinput] = ACTIONS(5251), - [anon_sym_BSLASHsubfile] = ACTIONS(5251), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5251), - [anon_sym_BSLASHbibliography] = ACTIONS(5251), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5251), - [anon_sym_BSLASHincludesvg] = ACTIONS(5251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5251), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5251), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5251), - [anon_sym_BSLASHimport] = ACTIONS(5251), - [anon_sym_BSLASHsubimport] = ACTIONS(5251), - [anon_sym_BSLASHinputfrom] = ACTIONS(5251), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5251), - [anon_sym_BSLASHincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHcaption] = ACTIONS(5251), - [anon_sym_BSLASHcite] = ACTIONS(5251), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCite] = ACTIONS(5251), - [anon_sym_BSLASHnocite] = ACTIONS(5251), - [anon_sym_BSLASHcitet] = ACTIONS(5251), - [anon_sym_BSLASHcitep] = ACTIONS(5251), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor] = ACTIONS(5251), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5251), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle] = ACTIONS(5251), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteyear] = ACTIONS(5251), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitedate] = ACTIONS(5251), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteurl] = ACTIONS(5251), - [anon_sym_BSLASHfullcite] = ACTIONS(5251), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5251), - [anon_sym_BSLASHcitealt] = ACTIONS(5251), - [anon_sym_BSLASHcitealp] = ACTIONS(5251), - [anon_sym_BSLASHcitetext] = ACTIONS(5251), - [anon_sym_BSLASHparencite] = ACTIONS(5251), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHParencite] = ACTIONS(5251), - [anon_sym_BSLASHfootcite] = ACTIONS(5251), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5251), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5251), - [anon_sym_BSLASHtextcite] = ACTIONS(5251), - [anon_sym_BSLASHTextcite] = ACTIONS(5251), - [anon_sym_BSLASHsmartcite] = ACTIONS(5251), - [anon_sym_BSLASHSmartcite] = ACTIONS(5251), - [anon_sym_BSLASHsupercite] = ACTIONS(5251), - [anon_sym_BSLASHautocite] = ACTIONS(5251), - [anon_sym_BSLASHAutocite] = ACTIONS(5251), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHvolcite] = ACTIONS(5251), - [anon_sym_BSLASHVolcite] = ACTIONS(5251), - [anon_sym_BSLASHpvolcite] = ACTIONS(5251), - [anon_sym_BSLASHPvolcite] = ACTIONS(5251), - [anon_sym_BSLASHfvolcite] = ACTIONS(5251), - [anon_sym_BSLASHftvolcite] = ACTIONS(5251), - [anon_sym_BSLASHsvolcite] = ACTIONS(5251), - [anon_sym_BSLASHSvolcite] = ACTIONS(5251), - [anon_sym_BSLASHtvolcite] = ACTIONS(5251), - [anon_sym_BSLASHTvolcite] = ACTIONS(5251), - [anon_sym_BSLASHavolcite] = ACTIONS(5251), - [anon_sym_BSLASHAvolcite] = ACTIONS(5251), - [anon_sym_BSLASHnotecite] = ACTIONS(5251), - [anon_sym_BSLASHNotecite] = ACTIONS(5251), - [anon_sym_BSLASHpnotecite] = ACTIONS(5251), - [anon_sym_BSLASHPnotecite] = ACTIONS(5251), - [anon_sym_BSLASHfnotecite] = ACTIONS(5251), - [anon_sym_BSLASHlabel] = ACTIONS(5251), - [anon_sym_BSLASHref] = ACTIONS(5251), - [anon_sym_BSLASHeqref] = ACTIONS(5251), - [anon_sym_BSLASHvref] = ACTIONS(5251), - [anon_sym_BSLASHVref] = ACTIONS(5251), - [anon_sym_BSLASHautoref] = ACTIONS(5251), - [anon_sym_BSLASHpageref] = ACTIONS(5251), - [anon_sym_BSLASHcref] = ACTIONS(5251), - [anon_sym_BSLASHCref] = ACTIONS(5251), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnameCref] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHlabelcref] = ACTIONS(5251), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange] = ACTIONS(5251), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnewlabel] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5251), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5251), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5251), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5249), - [anon_sym_BSLASHdef] = ACTIONS(5251), - [anon_sym_BSLASHlet] = ACTIONS(5251), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5251), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5251), - [anon_sym_BSLASHgls] = ACTIONS(5251), - [anon_sym_BSLASHGls] = ACTIONS(5251), - [anon_sym_BSLASHGLS] = ACTIONS(5251), - [anon_sym_BSLASHglspl] = ACTIONS(5251), - [anon_sym_BSLASHGlspl] = ACTIONS(5251), - [anon_sym_BSLASHGLSpl] = ACTIONS(5251), - [anon_sym_BSLASHglsdisp] = ACTIONS(5251), - [anon_sym_BSLASHglslink] = ACTIONS(5251), - [anon_sym_BSLASHglstext] = ACTIONS(5251), - [anon_sym_BSLASHGlstext] = ACTIONS(5251), - [anon_sym_BSLASHGLStext] = ACTIONS(5251), - [anon_sym_BSLASHglsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5251), - [anon_sym_BSLASHglsplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSplural] = ACTIONS(5251), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHglsname] = ACTIONS(5251), - [anon_sym_BSLASHGlsname] = ACTIONS(5251), - [anon_sym_BSLASHGLSname] = ACTIONS(5251), - [anon_sym_BSLASHglssymbol] = ACTIONS(5251), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5251), - [anon_sym_BSLASHglsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5251), - [anon_sym_BSLASHglsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5251), - [anon_sym_BSLASHglsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5251), - [anon_sym_BSLASHglsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5251), - [anon_sym_BSLASHglsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5251), - [anon_sym_BSLASHnewacronym] = ACTIONS(5251), - [anon_sym_BSLASHacrshort] = ACTIONS(5251), - [anon_sym_BSLASHAcrshort] = ACTIONS(5251), - [anon_sym_BSLASHACRshort] = ACTIONS(5251), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5251), - [anon_sym_BSLASHacrlong] = ACTIONS(5251), - [anon_sym_BSLASHAcrlong] = ACTIONS(5251), - [anon_sym_BSLASHACRlong] = ACTIONS(5251), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5251), - [anon_sym_BSLASHacrfull] = ACTIONS(5251), - [anon_sym_BSLASHAcrfull] = ACTIONS(5251), - [anon_sym_BSLASHACRfull] = ACTIONS(5251), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5251), - [anon_sym_BSLASHacs] = ACTIONS(5251), - [anon_sym_BSLASHAcs] = ACTIONS(5251), - [anon_sym_BSLASHacsp] = ACTIONS(5251), - [anon_sym_BSLASHAcsp] = ACTIONS(5251), - [anon_sym_BSLASHacl] = ACTIONS(5251), - [anon_sym_BSLASHAcl] = ACTIONS(5251), - [anon_sym_BSLASHaclp] = ACTIONS(5251), - [anon_sym_BSLASHAclp] = ACTIONS(5251), - [anon_sym_BSLASHacf] = ACTIONS(5251), - [anon_sym_BSLASHAcf] = ACTIONS(5251), - [anon_sym_BSLASHacfp] = ACTIONS(5251), - [anon_sym_BSLASHAcfp] = ACTIONS(5251), - [anon_sym_BSLASHac] = ACTIONS(5251), - [anon_sym_BSLASHAc] = ACTIONS(5251), - [anon_sym_BSLASHacp] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5251), - [anon_sym_BSLASHcolor] = ACTIONS(5251), - [anon_sym_BSLASHcolorbox] = ACTIONS(5251), - [anon_sym_BSLASHtextcolor] = ACTIONS(5251), - [anon_sym_BSLASHpagecolor] = ACTIONS(5251), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5251), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5251), - }, - [787] = { - [ts_builtin_sym_end] = ACTIONS(5253), - [sym_command_name] = ACTIONS(5255), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5255), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5253), - [anon_sym_BSLASHpart] = ACTIONS(5255), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddpart] = ACTIONS(5255), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5253), - [anon_sym_BSLASHchapter] = ACTIONS(5255), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddchap] = ACTIONS(5255), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsection] = ACTIONS(5255), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddsec] = ACTIONS(5255), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubsection] = ACTIONS(5255), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5255), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHparagraph] = ACTIONS(5255), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5255), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5253), - [anon_sym_BSLASHitem] = ACTIONS(5255), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5253), - [anon_sym_LBRACE] = ACTIONS(5253), - [anon_sym_RBRACE] = ACTIONS(5253), - [sym_word] = ACTIONS(5255), - [sym_placeholder] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_CARET] = ACTIONS(5255), - [anon_sym__] = ACTIONS(5255), - [anon_sym_LT] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5255), - [anon_sym_BANG] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5255), - [anon_sym_COLON] = ACTIONS(5255), - [anon_sym_SQUOTE] = ACTIONS(5255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5253), - [anon_sym_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5253), - [anon_sym_BSLASHbegin] = ACTIONS(5255), - [anon_sym_BSLASHusepackage] = ACTIONS(5255), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5255), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5255), - [anon_sym_BSLASHinclude] = ACTIONS(5255), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5255), - [anon_sym_BSLASHinput] = ACTIONS(5255), - [anon_sym_BSLASHsubfile] = ACTIONS(5255), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5255), - [anon_sym_BSLASHbibliography] = ACTIONS(5255), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5255), - [anon_sym_BSLASHincludesvg] = ACTIONS(5255), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5255), - [anon_sym_BSLASHimport] = ACTIONS(5255), - [anon_sym_BSLASHsubimport] = ACTIONS(5255), - [anon_sym_BSLASHinputfrom] = ACTIONS(5255), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5255), - [anon_sym_BSLASHincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHcaption] = ACTIONS(5255), - [anon_sym_BSLASHcite] = ACTIONS(5255), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCite] = ACTIONS(5255), - [anon_sym_BSLASHnocite] = ACTIONS(5255), - [anon_sym_BSLASHcitet] = ACTIONS(5255), - [anon_sym_BSLASHcitep] = ACTIONS(5255), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteauthor] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitetitle] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteyear] = ACTIONS(5255), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitedate] = ACTIONS(5255), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteurl] = ACTIONS(5255), - [anon_sym_BSLASHfullcite] = ACTIONS(5255), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5255), - [anon_sym_BSLASHcitealt] = ACTIONS(5255), - [anon_sym_BSLASHcitealp] = ACTIONS(5255), - [anon_sym_BSLASHcitetext] = ACTIONS(5255), - [anon_sym_BSLASHparencite] = ACTIONS(5255), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHParencite] = ACTIONS(5255), - [anon_sym_BSLASHfootcite] = ACTIONS(5255), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5255), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5255), - [anon_sym_BSLASHtextcite] = ACTIONS(5255), - [anon_sym_BSLASHTextcite] = ACTIONS(5255), - [anon_sym_BSLASHsmartcite] = ACTIONS(5255), - [anon_sym_BSLASHSmartcite] = ACTIONS(5255), - [anon_sym_BSLASHsupercite] = ACTIONS(5255), - [anon_sym_BSLASHautocite] = ACTIONS(5255), - [anon_sym_BSLASHAutocite] = ACTIONS(5255), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHvolcite] = ACTIONS(5255), - [anon_sym_BSLASHVolcite] = ACTIONS(5255), - [anon_sym_BSLASHpvolcite] = ACTIONS(5255), - [anon_sym_BSLASHPvolcite] = ACTIONS(5255), - [anon_sym_BSLASHfvolcite] = ACTIONS(5255), - [anon_sym_BSLASHftvolcite] = ACTIONS(5255), - [anon_sym_BSLASHsvolcite] = ACTIONS(5255), - [anon_sym_BSLASHSvolcite] = ACTIONS(5255), - [anon_sym_BSLASHtvolcite] = ACTIONS(5255), - [anon_sym_BSLASHTvolcite] = ACTIONS(5255), - [anon_sym_BSLASHavolcite] = ACTIONS(5255), - [anon_sym_BSLASHAvolcite] = ACTIONS(5255), - [anon_sym_BSLASHnotecite] = ACTIONS(5255), - [anon_sym_BSLASHNotecite] = ACTIONS(5255), - [anon_sym_BSLASHpnotecite] = ACTIONS(5255), - [anon_sym_BSLASHPnotecite] = ACTIONS(5255), - [anon_sym_BSLASHfnotecite] = ACTIONS(5255), - [anon_sym_BSLASHlabel] = ACTIONS(5255), - [anon_sym_BSLASHref] = ACTIONS(5255), - [anon_sym_BSLASHeqref] = ACTIONS(5255), - [anon_sym_BSLASHvref] = ACTIONS(5255), - [anon_sym_BSLASHVref] = ACTIONS(5255), - [anon_sym_BSLASHautoref] = ACTIONS(5255), - [anon_sym_BSLASHpageref] = ACTIONS(5255), - [anon_sym_BSLASHcref] = ACTIONS(5255), - [anon_sym_BSLASHCref] = ACTIONS(5255), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnameCref] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHlabelcref] = ACTIONS(5255), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCrefrange] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnewlabel] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5253), - [anon_sym_BSLASHdef] = ACTIONS(5255), - [anon_sym_BSLASHlet] = ACTIONS(5255), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5255), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5255), - [anon_sym_BSLASHgls] = ACTIONS(5255), - [anon_sym_BSLASHGls] = ACTIONS(5255), - [anon_sym_BSLASHGLS] = ACTIONS(5255), - [anon_sym_BSLASHglspl] = ACTIONS(5255), - [anon_sym_BSLASHGlspl] = ACTIONS(5255), - [anon_sym_BSLASHGLSpl] = ACTIONS(5255), - [anon_sym_BSLASHglsdisp] = ACTIONS(5255), - [anon_sym_BSLASHglslink] = ACTIONS(5255), - [anon_sym_BSLASHglstext] = ACTIONS(5255), - [anon_sym_BSLASHGlstext] = ACTIONS(5255), - [anon_sym_BSLASHGLStext] = ACTIONS(5255), - [anon_sym_BSLASHglsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5255), - [anon_sym_BSLASHglsplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSplural] = ACTIONS(5255), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHglsname] = ACTIONS(5255), - [anon_sym_BSLASHGlsname] = ACTIONS(5255), - [anon_sym_BSLASHGLSname] = ACTIONS(5255), - [anon_sym_BSLASHglssymbol] = ACTIONS(5255), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5255), - [anon_sym_BSLASHglsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5255), - [anon_sym_BSLASHglsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5255), - [anon_sym_BSLASHglsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5255), - [anon_sym_BSLASHglsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5255), - [anon_sym_BSLASHglsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5255), - [anon_sym_BSLASHnewacronym] = ACTIONS(5255), - [anon_sym_BSLASHacrshort] = ACTIONS(5255), - [anon_sym_BSLASHAcrshort] = ACTIONS(5255), - [anon_sym_BSLASHACRshort] = ACTIONS(5255), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5255), - [anon_sym_BSLASHacrlong] = ACTIONS(5255), - [anon_sym_BSLASHAcrlong] = ACTIONS(5255), - [anon_sym_BSLASHACRlong] = ACTIONS(5255), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5255), - [anon_sym_BSLASHacrfull] = ACTIONS(5255), - [anon_sym_BSLASHAcrfull] = ACTIONS(5255), - [anon_sym_BSLASHACRfull] = ACTIONS(5255), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5255), - [anon_sym_BSLASHacs] = ACTIONS(5255), - [anon_sym_BSLASHAcs] = ACTIONS(5255), - [anon_sym_BSLASHacsp] = ACTIONS(5255), - [anon_sym_BSLASHAcsp] = ACTIONS(5255), - [anon_sym_BSLASHacl] = ACTIONS(5255), - [anon_sym_BSLASHAcl] = ACTIONS(5255), - [anon_sym_BSLASHaclp] = ACTIONS(5255), - [anon_sym_BSLASHAclp] = ACTIONS(5255), - [anon_sym_BSLASHacf] = ACTIONS(5255), - [anon_sym_BSLASHAcf] = ACTIONS(5255), - [anon_sym_BSLASHacfp] = ACTIONS(5255), - [anon_sym_BSLASHAcfp] = ACTIONS(5255), - [anon_sym_BSLASHac] = ACTIONS(5255), - [anon_sym_BSLASHAc] = ACTIONS(5255), - [anon_sym_BSLASHacp] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5255), - [anon_sym_BSLASHcolor] = ACTIONS(5255), - [anon_sym_BSLASHcolorbox] = ACTIONS(5255), - [anon_sym_BSLASHtextcolor] = ACTIONS(5255), - [anon_sym_BSLASHpagecolor] = ACTIONS(5255), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5255), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5255), - }, - [788] = { - [ts_builtin_sym_end] = ACTIONS(5257), - [sym_command_name] = ACTIONS(5259), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5259), - [anon_sym_LPAREN] = ACTIONS(5257), - [anon_sym_RPAREN] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(5257), - [anon_sym_RBRACK] = ACTIONS(5257), - [anon_sym_COMMA] = ACTIONS(5257), - [anon_sym_EQ] = ACTIONS(5257), - [anon_sym_BSLASHpart] = ACTIONS(5259), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddpart] = ACTIONS(5259), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5257), - [anon_sym_BSLASHchapter] = ACTIONS(5259), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddchap] = ACTIONS(5259), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsection] = ACTIONS(5259), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddsec] = ACTIONS(5259), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubsection] = ACTIONS(5259), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5259), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHparagraph] = ACTIONS(5259), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5259), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5257), - [anon_sym_BSLASHitem] = ACTIONS(5259), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5257), - [anon_sym_LBRACE] = ACTIONS(5257), - [anon_sym_RBRACE] = ACTIONS(5257), - [sym_word] = ACTIONS(5259), - [sym_placeholder] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5259), - [anon_sym_STAR] = ACTIONS(5259), - [anon_sym_SLASH] = ACTIONS(5259), - [anon_sym_CARET] = ACTIONS(5259), - [anon_sym__] = ACTIONS(5259), - [anon_sym_LT] = ACTIONS(5259), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_BANG] = ACTIONS(5259), - [anon_sym_PIPE] = ACTIONS(5259), - [anon_sym_COLON] = ACTIONS(5259), - [anon_sym_SQUOTE] = ACTIONS(5259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5257), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5257), - [anon_sym_DOLLAR] = ACTIONS(5259), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5257), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5257), - [anon_sym_BSLASHbegin] = ACTIONS(5259), - [anon_sym_BSLASHusepackage] = ACTIONS(5259), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5259), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5259), - [anon_sym_BSLASHinclude] = ACTIONS(5259), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5259), - [anon_sym_BSLASHinput] = ACTIONS(5259), - [anon_sym_BSLASHsubfile] = ACTIONS(5259), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5259), - [anon_sym_BSLASHbibliography] = ACTIONS(5259), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5259), - [anon_sym_BSLASHincludesvg] = ACTIONS(5259), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5259), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5259), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5259), - [anon_sym_BSLASHimport] = ACTIONS(5259), - [anon_sym_BSLASHsubimport] = ACTIONS(5259), - [anon_sym_BSLASHinputfrom] = ACTIONS(5259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5259), - [anon_sym_BSLASHincludefrom] = ACTIONS(5259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5259), - [anon_sym_BSLASHcaption] = ACTIONS(5259), - [anon_sym_BSLASHcite] = ACTIONS(5259), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCite] = ACTIONS(5259), - [anon_sym_BSLASHnocite] = ACTIONS(5259), - [anon_sym_BSLASHcitet] = ACTIONS(5259), - [anon_sym_BSLASHcitep] = ACTIONS(5259), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteauthor] = ACTIONS(5259), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5259), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitetitle] = ACTIONS(5259), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteyear] = ACTIONS(5259), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitedate] = ACTIONS(5259), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteurl] = ACTIONS(5259), - [anon_sym_BSLASHfullcite] = ACTIONS(5259), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5259), - [anon_sym_BSLASHcitealt] = ACTIONS(5259), - [anon_sym_BSLASHcitealp] = ACTIONS(5259), - [anon_sym_BSLASHcitetext] = ACTIONS(5259), - [anon_sym_BSLASHparencite] = ACTIONS(5259), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHParencite] = ACTIONS(5259), - [anon_sym_BSLASHfootcite] = ACTIONS(5259), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5259), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5259), - [anon_sym_BSLASHtextcite] = ACTIONS(5259), - [anon_sym_BSLASHTextcite] = ACTIONS(5259), - [anon_sym_BSLASHsmartcite] = ACTIONS(5259), - [anon_sym_BSLASHSmartcite] = ACTIONS(5259), - [anon_sym_BSLASHsupercite] = ACTIONS(5259), - [anon_sym_BSLASHautocite] = ACTIONS(5259), - [anon_sym_BSLASHAutocite] = ACTIONS(5259), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHvolcite] = ACTIONS(5259), - [anon_sym_BSLASHVolcite] = ACTIONS(5259), - [anon_sym_BSLASHpvolcite] = ACTIONS(5259), - [anon_sym_BSLASHPvolcite] = ACTIONS(5259), - [anon_sym_BSLASHfvolcite] = ACTIONS(5259), - [anon_sym_BSLASHftvolcite] = ACTIONS(5259), - [anon_sym_BSLASHsvolcite] = ACTIONS(5259), - [anon_sym_BSLASHSvolcite] = ACTIONS(5259), - [anon_sym_BSLASHtvolcite] = ACTIONS(5259), - [anon_sym_BSLASHTvolcite] = ACTIONS(5259), - [anon_sym_BSLASHavolcite] = ACTIONS(5259), - [anon_sym_BSLASHAvolcite] = ACTIONS(5259), - [anon_sym_BSLASHnotecite] = ACTIONS(5259), - [anon_sym_BSLASHNotecite] = ACTIONS(5259), - [anon_sym_BSLASHpnotecite] = ACTIONS(5259), - [anon_sym_BSLASHPnotecite] = ACTIONS(5259), - [anon_sym_BSLASHfnotecite] = ACTIONS(5259), - [anon_sym_BSLASHlabel] = ACTIONS(5259), - [anon_sym_BSLASHref] = ACTIONS(5259), - [anon_sym_BSLASHeqref] = ACTIONS(5259), - [anon_sym_BSLASHvref] = ACTIONS(5259), - [anon_sym_BSLASHVref] = ACTIONS(5259), - [anon_sym_BSLASHautoref] = ACTIONS(5259), - [anon_sym_BSLASHpageref] = ACTIONS(5259), - [anon_sym_BSLASHcref] = ACTIONS(5259), - [anon_sym_BSLASHCref] = ACTIONS(5259), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5257), - [anon_sym_BSLASHnamecref] = ACTIONS(5259), - [anon_sym_BSLASHnameCref] = ACTIONS(5259), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5259), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5259), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5259), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5259), - [anon_sym_BSLASHlabelcref] = ACTIONS(5259), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5259), - [anon_sym_BSLASHcrefrange] = ACTIONS(5259), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCrefrange] = ACTIONS(5259), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5257), - [anon_sym_BSLASHnewlabel] = ACTIONS(5259), - [anon_sym_BSLASHnewcommand] = ACTIONS(5259), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5259), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5259), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5259), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5257), - [anon_sym_BSLASHdef] = ACTIONS(5259), - [anon_sym_BSLASHlet] = ACTIONS(5259), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5259), - [anon_sym_BSLASHgls] = ACTIONS(5259), - [anon_sym_BSLASHGls] = ACTIONS(5259), - [anon_sym_BSLASHGLS] = ACTIONS(5259), - [anon_sym_BSLASHglspl] = ACTIONS(5259), - [anon_sym_BSLASHGlspl] = ACTIONS(5259), - [anon_sym_BSLASHGLSpl] = ACTIONS(5259), - [anon_sym_BSLASHglsdisp] = ACTIONS(5259), - [anon_sym_BSLASHglslink] = ACTIONS(5259), - [anon_sym_BSLASHglstext] = ACTIONS(5259), - [anon_sym_BSLASHGlstext] = ACTIONS(5259), - [anon_sym_BSLASHGLStext] = ACTIONS(5259), - [anon_sym_BSLASHglsfirst] = ACTIONS(5259), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5259), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5259), - [anon_sym_BSLASHglsplural] = ACTIONS(5259), - [anon_sym_BSLASHGlsplural] = ACTIONS(5259), - [anon_sym_BSLASHGLSplural] = ACTIONS(5259), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHglsname] = ACTIONS(5259), - [anon_sym_BSLASHGlsname] = ACTIONS(5259), - [anon_sym_BSLASHGLSname] = ACTIONS(5259), - [anon_sym_BSLASHglssymbol] = ACTIONS(5259), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5259), - [anon_sym_BSLASHglsdesc] = ACTIONS(5259), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5259), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5259), - [anon_sym_BSLASHglsuseri] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5259), - [anon_sym_BSLASHglsuserii] = ACTIONS(5259), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5259), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5259), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5259), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5259), - [anon_sym_BSLASHglsuserv] = ACTIONS(5259), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5259), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5259), - [anon_sym_BSLASHglsuservi] = ACTIONS(5259), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5259), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5259), - [anon_sym_BSLASHnewacronym] = ACTIONS(5259), - [anon_sym_BSLASHacrshort] = ACTIONS(5259), - [anon_sym_BSLASHAcrshort] = ACTIONS(5259), - [anon_sym_BSLASHACRshort] = ACTIONS(5259), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5259), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5259), - [anon_sym_BSLASHacrlong] = ACTIONS(5259), - [anon_sym_BSLASHAcrlong] = ACTIONS(5259), - [anon_sym_BSLASHACRlong] = ACTIONS(5259), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5259), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5259), - [anon_sym_BSLASHacrfull] = ACTIONS(5259), - [anon_sym_BSLASHAcrfull] = ACTIONS(5259), - [anon_sym_BSLASHACRfull] = ACTIONS(5259), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5259), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5259), - [anon_sym_BSLASHacs] = ACTIONS(5259), - [anon_sym_BSLASHAcs] = ACTIONS(5259), - [anon_sym_BSLASHacsp] = ACTIONS(5259), - [anon_sym_BSLASHAcsp] = ACTIONS(5259), - [anon_sym_BSLASHacl] = ACTIONS(5259), - [anon_sym_BSLASHAcl] = ACTIONS(5259), - [anon_sym_BSLASHaclp] = ACTIONS(5259), - [anon_sym_BSLASHAclp] = ACTIONS(5259), - [anon_sym_BSLASHacf] = ACTIONS(5259), - [anon_sym_BSLASHAcf] = ACTIONS(5259), - [anon_sym_BSLASHacfp] = ACTIONS(5259), - [anon_sym_BSLASHAcfp] = ACTIONS(5259), - [anon_sym_BSLASHac] = ACTIONS(5259), - [anon_sym_BSLASHAc] = ACTIONS(5259), - [anon_sym_BSLASHacp] = ACTIONS(5259), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5259), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5259), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5259), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5259), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5259), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5259), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5259), - [anon_sym_BSLASHcolor] = ACTIONS(5259), - [anon_sym_BSLASHcolorbox] = ACTIONS(5259), - [anon_sym_BSLASHtextcolor] = ACTIONS(5259), - [anon_sym_BSLASHpagecolor] = ACTIONS(5259), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5259), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5259), - }, - [789] = { - [ts_builtin_sym_end] = ACTIONS(5261), - [sym_command_name] = ACTIONS(5263), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5263), - [anon_sym_LPAREN] = ACTIONS(5261), - [anon_sym_RPAREN] = ACTIONS(5261), - [anon_sym_LBRACK] = ACTIONS(5261), - [anon_sym_RBRACK] = ACTIONS(5261), - [anon_sym_COMMA] = ACTIONS(5261), - [anon_sym_EQ] = ACTIONS(5261), - [anon_sym_BSLASHpart] = ACTIONS(5263), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddpart] = ACTIONS(5263), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5261), - [anon_sym_BSLASHchapter] = ACTIONS(5263), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddchap] = ACTIONS(5263), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsection] = ACTIONS(5263), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddsec] = ACTIONS(5263), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubsection] = ACTIONS(5263), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5263), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHparagraph] = ACTIONS(5263), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5263), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5261), - [anon_sym_BSLASHitem] = ACTIONS(5263), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(5261), - [anon_sym_RBRACE] = ACTIONS(5261), - [sym_word] = ACTIONS(5263), - [sym_placeholder] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_STAR] = ACTIONS(5263), - [anon_sym_SLASH] = ACTIONS(5263), - [anon_sym_CARET] = ACTIONS(5263), - [anon_sym__] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(5263), - [anon_sym_GT] = ACTIONS(5263), - [anon_sym_BANG] = ACTIONS(5263), - [anon_sym_PIPE] = ACTIONS(5263), - [anon_sym_COLON] = ACTIONS(5263), - [anon_sym_SQUOTE] = ACTIONS(5263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5261), - [anon_sym_DOLLAR] = ACTIONS(5263), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5261), - [anon_sym_BSLASHbegin] = ACTIONS(5263), - [anon_sym_BSLASHusepackage] = ACTIONS(5263), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), - [anon_sym_BSLASHinclude] = ACTIONS(5263), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), - [anon_sym_BSLASHinput] = ACTIONS(5263), - [anon_sym_BSLASHsubfile] = ACTIONS(5263), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), - [anon_sym_BSLASHbibliography] = ACTIONS(5263), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), - [anon_sym_BSLASHincludesvg] = ACTIONS(5263), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), - [anon_sym_BSLASHimport] = ACTIONS(5263), - [anon_sym_BSLASHsubimport] = ACTIONS(5263), - [anon_sym_BSLASHinputfrom] = ACTIONS(5263), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), - [anon_sym_BSLASHincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHcaption] = ACTIONS(5263), - [anon_sym_BSLASHcite] = ACTIONS(5263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCite] = ACTIONS(5263), - [anon_sym_BSLASHnocite] = ACTIONS(5263), - [anon_sym_BSLASHcitet] = ACTIONS(5263), - [anon_sym_BSLASHcitep] = ACTIONS(5263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteyear] = ACTIONS(5263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitedate] = ACTIONS(5263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteurl] = ACTIONS(5263), - [anon_sym_BSLASHfullcite] = ACTIONS(5263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), - [anon_sym_BSLASHcitealt] = ACTIONS(5263), - [anon_sym_BSLASHcitealp] = ACTIONS(5263), - [anon_sym_BSLASHcitetext] = ACTIONS(5263), - [anon_sym_BSLASHparencite] = ACTIONS(5263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHParencite] = ACTIONS(5263), - [anon_sym_BSLASHfootcite] = ACTIONS(5263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), - [anon_sym_BSLASHtextcite] = ACTIONS(5263), - [anon_sym_BSLASHTextcite] = ACTIONS(5263), - [anon_sym_BSLASHsmartcite] = ACTIONS(5263), - [anon_sym_BSLASHSmartcite] = ACTIONS(5263), - [anon_sym_BSLASHsupercite] = ACTIONS(5263), - [anon_sym_BSLASHautocite] = ACTIONS(5263), - [anon_sym_BSLASHAutocite] = ACTIONS(5263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHvolcite] = ACTIONS(5263), - [anon_sym_BSLASHVolcite] = ACTIONS(5263), - [anon_sym_BSLASHpvolcite] = ACTIONS(5263), - [anon_sym_BSLASHPvolcite] = ACTIONS(5263), - [anon_sym_BSLASHfvolcite] = ACTIONS(5263), - [anon_sym_BSLASHftvolcite] = ACTIONS(5263), - [anon_sym_BSLASHsvolcite] = ACTIONS(5263), - [anon_sym_BSLASHSvolcite] = ACTIONS(5263), - [anon_sym_BSLASHtvolcite] = ACTIONS(5263), - [anon_sym_BSLASHTvolcite] = ACTIONS(5263), - [anon_sym_BSLASHavolcite] = ACTIONS(5263), - [anon_sym_BSLASHAvolcite] = ACTIONS(5263), - [anon_sym_BSLASHnotecite] = ACTIONS(5263), - [anon_sym_BSLASHNotecite] = ACTIONS(5263), - [anon_sym_BSLASHpnotecite] = ACTIONS(5263), - [anon_sym_BSLASHPnotecite] = ACTIONS(5263), - [anon_sym_BSLASHfnotecite] = ACTIONS(5263), - [anon_sym_BSLASHlabel] = ACTIONS(5263), - [anon_sym_BSLASHref] = ACTIONS(5263), - [anon_sym_BSLASHeqref] = ACTIONS(5263), - [anon_sym_BSLASHvref] = ACTIONS(5263), - [anon_sym_BSLASHVref] = ACTIONS(5263), - [anon_sym_BSLASHautoref] = ACTIONS(5263), - [anon_sym_BSLASHpageref] = ACTIONS(5263), - [anon_sym_BSLASHcref] = ACTIONS(5263), - [anon_sym_BSLASHCref] = ACTIONS(5263), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnameCref] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHlabelcref] = ACTIONS(5263), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnewlabel] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), - [anon_sym_BSLASHdef] = ACTIONS(5263), - [anon_sym_BSLASHlet] = ACTIONS(5263), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), - [anon_sym_BSLASHgls] = ACTIONS(5263), - [anon_sym_BSLASHGls] = ACTIONS(5263), - [anon_sym_BSLASHGLS] = ACTIONS(5263), - [anon_sym_BSLASHglspl] = ACTIONS(5263), - [anon_sym_BSLASHGlspl] = ACTIONS(5263), - [anon_sym_BSLASHGLSpl] = ACTIONS(5263), - [anon_sym_BSLASHglsdisp] = ACTIONS(5263), - [anon_sym_BSLASHglslink] = ACTIONS(5263), - [anon_sym_BSLASHglstext] = ACTIONS(5263), - [anon_sym_BSLASHGlstext] = ACTIONS(5263), - [anon_sym_BSLASHGLStext] = ACTIONS(5263), - [anon_sym_BSLASHglsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), - [anon_sym_BSLASHglsplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSplural] = ACTIONS(5263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHglsname] = ACTIONS(5263), - [anon_sym_BSLASHGlsname] = ACTIONS(5263), - [anon_sym_BSLASHGLSname] = ACTIONS(5263), - [anon_sym_BSLASHglssymbol] = ACTIONS(5263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), - [anon_sym_BSLASHglsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), - [anon_sym_BSLASHglsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), - [anon_sym_BSLASHglsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), - [anon_sym_BSLASHglsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), - [anon_sym_BSLASHglsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), - [anon_sym_BSLASHnewacronym] = ACTIONS(5263), - [anon_sym_BSLASHacrshort] = ACTIONS(5263), - [anon_sym_BSLASHAcrshort] = ACTIONS(5263), - [anon_sym_BSLASHACRshort] = ACTIONS(5263), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), - [anon_sym_BSLASHacrlong] = ACTIONS(5263), - [anon_sym_BSLASHAcrlong] = ACTIONS(5263), - [anon_sym_BSLASHACRlong] = ACTIONS(5263), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), - [anon_sym_BSLASHacrfull] = ACTIONS(5263), - [anon_sym_BSLASHAcrfull] = ACTIONS(5263), - [anon_sym_BSLASHACRfull] = ACTIONS(5263), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), - [anon_sym_BSLASHacs] = ACTIONS(5263), - [anon_sym_BSLASHAcs] = ACTIONS(5263), - [anon_sym_BSLASHacsp] = ACTIONS(5263), - [anon_sym_BSLASHAcsp] = ACTIONS(5263), - [anon_sym_BSLASHacl] = ACTIONS(5263), - [anon_sym_BSLASHAcl] = ACTIONS(5263), - [anon_sym_BSLASHaclp] = ACTIONS(5263), - [anon_sym_BSLASHAclp] = ACTIONS(5263), - [anon_sym_BSLASHacf] = ACTIONS(5263), - [anon_sym_BSLASHAcf] = ACTIONS(5263), - [anon_sym_BSLASHacfp] = ACTIONS(5263), - [anon_sym_BSLASHAcfp] = ACTIONS(5263), - [anon_sym_BSLASHac] = ACTIONS(5263), - [anon_sym_BSLASHAc] = ACTIONS(5263), - [anon_sym_BSLASHacp] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), - [anon_sym_BSLASHcolor] = ACTIONS(5263), - [anon_sym_BSLASHcolorbox] = ACTIONS(5263), - [anon_sym_BSLASHtextcolor] = ACTIONS(5263), - [anon_sym_BSLASHpagecolor] = ACTIONS(5263), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), - }, - [790] = { - [ts_builtin_sym_end] = ACTIONS(5265), - [sym_command_name] = ACTIONS(5267), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5267), - [anon_sym_LPAREN] = ACTIONS(5265), - [anon_sym_RPAREN] = ACTIONS(5265), - [anon_sym_LBRACK] = ACTIONS(5265), - [anon_sym_RBRACK] = ACTIONS(5265), - [anon_sym_COMMA] = ACTIONS(5265), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_BSLASHpart] = ACTIONS(5267), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddpart] = ACTIONS(5267), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5265), - [anon_sym_BSLASHchapter] = ACTIONS(5267), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddchap] = ACTIONS(5267), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsection] = ACTIONS(5267), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddsec] = ACTIONS(5267), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubsection] = ACTIONS(5267), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5267), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHparagraph] = ACTIONS(5267), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5267), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5265), - [anon_sym_BSLASHitem] = ACTIONS(5267), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(5265), - [anon_sym_RBRACE] = ACTIONS(5265), - [sym_word] = ACTIONS(5267), - [sym_placeholder] = ACTIONS(5265), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(5267), - [anon_sym_SLASH] = ACTIONS(5267), - [anon_sym_CARET] = ACTIONS(5267), - [anon_sym__] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(5267), - [anon_sym_GT] = ACTIONS(5267), - [anon_sym_BANG] = ACTIONS(5267), - [anon_sym_PIPE] = ACTIONS(5267), - [anon_sym_COLON] = ACTIONS(5267), - [anon_sym_SQUOTE] = ACTIONS(5267), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5265), - [anon_sym_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5265), - [anon_sym_BSLASHbegin] = ACTIONS(5267), - [anon_sym_BSLASHusepackage] = ACTIONS(5267), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5267), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5267), - [anon_sym_BSLASHinclude] = ACTIONS(5267), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5267), - [anon_sym_BSLASHinput] = ACTIONS(5267), - [anon_sym_BSLASHsubfile] = ACTIONS(5267), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5267), - [anon_sym_BSLASHbibliography] = ACTIONS(5267), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5267), - [anon_sym_BSLASHincludesvg] = ACTIONS(5267), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5267), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5267), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5267), - [anon_sym_BSLASHimport] = ACTIONS(5267), - [anon_sym_BSLASHsubimport] = ACTIONS(5267), - [anon_sym_BSLASHinputfrom] = ACTIONS(5267), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5267), - [anon_sym_BSLASHincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHcaption] = ACTIONS(5267), - [anon_sym_BSLASHcite] = ACTIONS(5267), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCite] = ACTIONS(5267), - [anon_sym_BSLASHnocite] = ACTIONS(5267), - [anon_sym_BSLASHcitet] = ACTIONS(5267), - [anon_sym_BSLASHcitep] = ACTIONS(5267), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteyear] = ACTIONS(5267), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitedate] = ACTIONS(5267), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteurl] = ACTIONS(5267), - [anon_sym_BSLASHfullcite] = ACTIONS(5267), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5267), - [anon_sym_BSLASHcitealt] = ACTIONS(5267), - [anon_sym_BSLASHcitealp] = ACTIONS(5267), - [anon_sym_BSLASHcitetext] = ACTIONS(5267), - [anon_sym_BSLASHparencite] = ACTIONS(5267), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHParencite] = ACTIONS(5267), - [anon_sym_BSLASHfootcite] = ACTIONS(5267), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5267), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5267), - [anon_sym_BSLASHtextcite] = ACTIONS(5267), - [anon_sym_BSLASHTextcite] = ACTIONS(5267), - [anon_sym_BSLASHsmartcite] = ACTIONS(5267), - [anon_sym_BSLASHSmartcite] = ACTIONS(5267), - [anon_sym_BSLASHsupercite] = ACTIONS(5267), - [anon_sym_BSLASHautocite] = ACTIONS(5267), - [anon_sym_BSLASHAutocite] = ACTIONS(5267), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHvolcite] = ACTIONS(5267), - [anon_sym_BSLASHVolcite] = ACTIONS(5267), - [anon_sym_BSLASHpvolcite] = ACTIONS(5267), - [anon_sym_BSLASHPvolcite] = ACTIONS(5267), - [anon_sym_BSLASHfvolcite] = ACTIONS(5267), - [anon_sym_BSLASHftvolcite] = ACTIONS(5267), - [anon_sym_BSLASHsvolcite] = ACTIONS(5267), - [anon_sym_BSLASHSvolcite] = ACTIONS(5267), - [anon_sym_BSLASHtvolcite] = ACTIONS(5267), - [anon_sym_BSLASHTvolcite] = ACTIONS(5267), - [anon_sym_BSLASHavolcite] = ACTIONS(5267), - [anon_sym_BSLASHAvolcite] = ACTIONS(5267), - [anon_sym_BSLASHnotecite] = ACTIONS(5267), - [anon_sym_BSLASHNotecite] = ACTIONS(5267), - [anon_sym_BSLASHpnotecite] = ACTIONS(5267), - [anon_sym_BSLASHPnotecite] = ACTIONS(5267), - [anon_sym_BSLASHfnotecite] = ACTIONS(5267), - [anon_sym_BSLASHlabel] = ACTIONS(5267), - [anon_sym_BSLASHref] = ACTIONS(5267), - [anon_sym_BSLASHeqref] = ACTIONS(5267), - [anon_sym_BSLASHvref] = ACTIONS(5267), - [anon_sym_BSLASHVref] = ACTIONS(5267), - [anon_sym_BSLASHautoref] = ACTIONS(5267), - [anon_sym_BSLASHpageref] = ACTIONS(5267), - [anon_sym_BSLASHcref] = ACTIONS(5267), - [anon_sym_BSLASHCref] = ACTIONS(5267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnameCref] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHlabelcref] = ACTIONS(5267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnewlabel] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5265), - [anon_sym_BSLASHdef] = ACTIONS(5267), - [anon_sym_BSLASHlet] = ACTIONS(5267), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5267), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5267), - [anon_sym_BSLASHgls] = ACTIONS(5267), - [anon_sym_BSLASHGls] = ACTIONS(5267), - [anon_sym_BSLASHGLS] = ACTIONS(5267), - [anon_sym_BSLASHglspl] = ACTIONS(5267), - [anon_sym_BSLASHGlspl] = ACTIONS(5267), - [anon_sym_BSLASHGLSpl] = ACTIONS(5267), - [anon_sym_BSLASHglsdisp] = ACTIONS(5267), - [anon_sym_BSLASHglslink] = ACTIONS(5267), - [anon_sym_BSLASHglstext] = ACTIONS(5267), - [anon_sym_BSLASHGlstext] = ACTIONS(5267), - [anon_sym_BSLASHGLStext] = ACTIONS(5267), - [anon_sym_BSLASHglsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5267), - [anon_sym_BSLASHglsplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSplural] = ACTIONS(5267), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHglsname] = ACTIONS(5267), - [anon_sym_BSLASHGlsname] = ACTIONS(5267), - [anon_sym_BSLASHGLSname] = ACTIONS(5267), - [anon_sym_BSLASHglssymbol] = ACTIONS(5267), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5267), - [anon_sym_BSLASHglsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5267), - [anon_sym_BSLASHglsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5267), - [anon_sym_BSLASHglsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5267), - [anon_sym_BSLASHglsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5267), - [anon_sym_BSLASHglsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5267), - [anon_sym_BSLASHnewacronym] = ACTIONS(5267), - [anon_sym_BSLASHacrshort] = ACTIONS(5267), - [anon_sym_BSLASHAcrshort] = ACTIONS(5267), - [anon_sym_BSLASHACRshort] = ACTIONS(5267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5267), - [anon_sym_BSLASHacrlong] = ACTIONS(5267), - [anon_sym_BSLASHAcrlong] = ACTIONS(5267), - [anon_sym_BSLASHACRlong] = ACTIONS(5267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5267), - [anon_sym_BSLASHacrfull] = ACTIONS(5267), - [anon_sym_BSLASHAcrfull] = ACTIONS(5267), - [anon_sym_BSLASHACRfull] = ACTIONS(5267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5267), - [anon_sym_BSLASHacs] = ACTIONS(5267), - [anon_sym_BSLASHAcs] = ACTIONS(5267), - [anon_sym_BSLASHacsp] = ACTIONS(5267), - [anon_sym_BSLASHAcsp] = ACTIONS(5267), - [anon_sym_BSLASHacl] = ACTIONS(5267), - [anon_sym_BSLASHAcl] = ACTIONS(5267), - [anon_sym_BSLASHaclp] = ACTIONS(5267), - [anon_sym_BSLASHAclp] = ACTIONS(5267), - [anon_sym_BSLASHacf] = ACTIONS(5267), - [anon_sym_BSLASHAcf] = ACTIONS(5267), - [anon_sym_BSLASHacfp] = ACTIONS(5267), - [anon_sym_BSLASHAcfp] = ACTIONS(5267), - [anon_sym_BSLASHac] = ACTIONS(5267), - [anon_sym_BSLASHAc] = ACTIONS(5267), - [anon_sym_BSLASHacp] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5267), - [anon_sym_BSLASHcolor] = ACTIONS(5267), - [anon_sym_BSLASHcolorbox] = ACTIONS(5267), - [anon_sym_BSLASHtextcolor] = ACTIONS(5267), - [anon_sym_BSLASHpagecolor] = ACTIONS(5267), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5267), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5267), - }, - [791] = { - [ts_builtin_sym_end] = ACTIONS(5269), - [sym_command_name] = ACTIONS(5271), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5271), - [anon_sym_LPAREN] = ACTIONS(5269), - [anon_sym_RPAREN] = ACTIONS(5269), - [anon_sym_LBRACK] = ACTIONS(5269), - [anon_sym_RBRACK] = ACTIONS(5269), - [anon_sym_COMMA] = ACTIONS(5269), - [anon_sym_EQ] = ACTIONS(5269), - [anon_sym_BSLASHpart] = ACTIONS(5271), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddpart] = ACTIONS(5271), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5269), - [anon_sym_BSLASHchapter] = ACTIONS(5271), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddchap] = ACTIONS(5271), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsection] = ACTIONS(5271), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddsec] = ACTIONS(5271), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubsection] = ACTIONS(5271), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5271), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHparagraph] = ACTIONS(5271), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5271), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5269), - [anon_sym_BSLASHitem] = ACTIONS(5271), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5269), - [anon_sym_LBRACE] = ACTIONS(5269), - [anon_sym_RBRACE] = ACTIONS(5269), - [sym_word] = ACTIONS(5271), - [sym_placeholder] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5271), - [anon_sym_DASH] = ACTIONS(5271), - [anon_sym_STAR] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5271), - [anon_sym_CARET] = ACTIONS(5271), - [anon_sym__] = ACTIONS(5271), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_GT] = ACTIONS(5271), - [anon_sym_BANG] = ACTIONS(5271), - [anon_sym_PIPE] = ACTIONS(5271), - [anon_sym_COLON] = ACTIONS(5271), - [anon_sym_SQUOTE] = ACTIONS(5271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5269), - [anon_sym_DOLLAR] = ACTIONS(5271), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5269), - [anon_sym_BSLASHbegin] = ACTIONS(5271), - [anon_sym_BSLASHusepackage] = ACTIONS(5271), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5271), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5271), - [anon_sym_BSLASHinclude] = ACTIONS(5271), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5271), - [anon_sym_BSLASHinput] = ACTIONS(5271), - [anon_sym_BSLASHsubfile] = ACTIONS(5271), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5271), - [anon_sym_BSLASHbibliography] = ACTIONS(5271), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5271), - [anon_sym_BSLASHincludesvg] = ACTIONS(5271), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5271), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5271), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5271), - [anon_sym_BSLASHimport] = ACTIONS(5271), - [anon_sym_BSLASHsubimport] = ACTIONS(5271), - [anon_sym_BSLASHinputfrom] = ACTIONS(5271), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5271), - [anon_sym_BSLASHincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHcaption] = ACTIONS(5271), - [anon_sym_BSLASHcite] = ACTIONS(5271), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCite] = ACTIONS(5271), - [anon_sym_BSLASHnocite] = ACTIONS(5271), - [anon_sym_BSLASHcitet] = ACTIONS(5271), - [anon_sym_BSLASHcitep] = ACTIONS(5271), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor] = ACTIONS(5271), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5271), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle] = ACTIONS(5271), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteyear] = ACTIONS(5271), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitedate] = ACTIONS(5271), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteurl] = ACTIONS(5271), - [anon_sym_BSLASHfullcite] = ACTIONS(5271), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5271), - [anon_sym_BSLASHcitealt] = ACTIONS(5271), - [anon_sym_BSLASHcitealp] = ACTIONS(5271), - [anon_sym_BSLASHcitetext] = ACTIONS(5271), - [anon_sym_BSLASHparencite] = ACTIONS(5271), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHParencite] = ACTIONS(5271), - [anon_sym_BSLASHfootcite] = ACTIONS(5271), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5271), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5271), - [anon_sym_BSLASHtextcite] = ACTIONS(5271), - [anon_sym_BSLASHTextcite] = ACTIONS(5271), - [anon_sym_BSLASHsmartcite] = ACTIONS(5271), - [anon_sym_BSLASHSmartcite] = ACTIONS(5271), - [anon_sym_BSLASHsupercite] = ACTIONS(5271), - [anon_sym_BSLASHautocite] = ACTIONS(5271), - [anon_sym_BSLASHAutocite] = ACTIONS(5271), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHvolcite] = ACTIONS(5271), - [anon_sym_BSLASHVolcite] = ACTIONS(5271), - [anon_sym_BSLASHpvolcite] = ACTIONS(5271), - [anon_sym_BSLASHPvolcite] = ACTIONS(5271), - [anon_sym_BSLASHfvolcite] = ACTIONS(5271), - [anon_sym_BSLASHftvolcite] = ACTIONS(5271), - [anon_sym_BSLASHsvolcite] = ACTIONS(5271), - [anon_sym_BSLASHSvolcite] = ACTIONS(5271), - [anon_sym_BSLASHtvolcite] = ACTIONS(5271), - [anon_sym_BSLASHTvolcite] = ACTIONS(5271), - [anon_sym_BSLASHavolcite] = ACTIONS(5271), - [anon_sym_BSLASHAvolcite] = ACTIONS(5271), - [anon_sym_BSLASHnotecite] = ACTIONS(5271), - [anon_sym_BSLASHNotecite] = ACTIONS(5271), - [anon_sym_BSLASHpnotecite] = ACTIONS(5271), - [anon_sym_BSLASHPnotecite] = ACTIONS(5271), - [anon_sym_BSLASHfnotecite] = ACTIONS(5271), - [anon_sym_BSLASHlabel] = ACTIONS(5271), - [anon_sym_BSLASHref] = ACTIONS(5271), - [anon_sym_BSLASHeqref] = ACTIONS(5271), - [anon_sym_BSLASHvref] = ACTIONS(5271), - [anon_sym_BSLASHVref] = ACTIONS(5271), - [anon_sym_BSLASHautoref] = ACTIONS(5271), - [anon_sym_BSLASHpageref] = ACTIONS(5271), - [anon_sym_BSLASHcref] = ACTIONS(5271), - [anon_sym_BSLASHCref] = ACTIONS(5271), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnameCref] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHlabelcref] = ACTIONS(5271), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange] = ACTIONS(5271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnewlabel] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5271), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5271), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5271), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5269), - [anon_sym_BSLASHdef] = ACTIONS(5271), - [anon_sym_BSLASHlet] = ACTIONS(5271), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5271), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5271), - [anon_sym_BSLASHgls] = ACTIONS(5271), - [anon_sym_BSLASHGls] = ACTIONS(5271), - [anon_sym_BSLASHGLS] = ACTIONS(5271), - [anon_sym_BSLASHglspl] = ACTIONS(5271), - [anon_sym_BSLASHGlspl] = ACTIONS(5271), - [anon_sym_BSLASHGLSpl] = ACTIONS(5271), - [anon_sym_BSLASHglsdisp] = ACTIONS(5271), - [anon_sym_BSLASHglslink] = ACTIONS(5271), - [anon_sym_BSLASHglstext] = ACTIONS(5271), - [anon_sym_BSLASHGlstext] = ACTIONS(5271), - [anon_sym_BSLASHGLStext] = ACTIONS(5271), - [anon_sym_BSLASHglsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5271), - [anon_sym_BSLASHglsplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSplural] = ACTIONS(5271), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHglsname] = ACTIONS(5271), - [anon_sym_BSLASHGlsname] = ACTIONS(5271), - [anon_sym_BSLASHGLSname] = ACTIONS(5271), - [anon_sym_BSLASHglssymbol] = ACTIONS(5271), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5271), - [anon_sym_BSLASHglsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5271), - [anon_sym_BSLASHglsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5271), - [anon_sym_BSLASHglsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5271), - [anon_sym_BSLASHglsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5271), - [anon_sym_BSLASHglsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5271), - [anon_sym_BSLASHnewacronym] = ACTIONS(5271), - [anon_sym_BSLASHacrshort] = ACTIONS(5271), - [anon_sym_BSLASHAcrshort] = ACTIONS(5271), - [anon_sym_BSLASHACRshort] = ACTIONS(5271), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5271), - [anon_sym_BSLASHacrlong] = ACTIONS(5271), - [anon_sym_BSLASHAcrlong] = ACTIONS(5271), - [anon_sym_BSLASHACRlong] = ACTIONS(5271), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5271), - [anon_sym_BSLASHacrfull] = ACTIONS(5271), - [anon_sym_BSLASHAcrfull] = ACTIONS(5271), - [anon_sym_BSLASHACRfull] = ACTIONS(5271), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5271), - [anon_sym_BSLASHacs] = ACTIONS(5271), - [anon_sym_BSLASHAcs] = ACTIONS(5271), - [anon_sym_BSLASHacsp] = ACTIONS(5271), - [anon_sym_BSLASHAcsp] = ACTIONS(5271), - [anon_sym_BSLASHacl] = ACTIONS(5271), - [anon_sym_BSLASHAcl] = ACTIONS(5271), - [anon_sym_BSLASHaclp] = ACTIONS(5271), - [anon_sym_BSLASHAclp] = ACTIONS(5271), - [anon_sym_BSLASHacf] = ACTIONS(5271), - [anon_sym_BSLASHAcf] = ACTIONS(5271), - [anon_sym_BSLASHacfp] = ACTIONS(5271), - [anon_sym_BSLASHAcfp] = ACTIONS(5271), - [anon_sym_BSLASHac] = ACTIONS(5271), - [anon_sym_BSLASHAc] = ACTIONS(5271), - [anon_sym_BSLASHacp] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5271), - [anon_sym_BSLASHcolor] = ACTIONS(5271), - [anon_sym_BSLASHcolorbox] = ACTIONS(5271), - [anon_sym_BSLASHtextcolor] = ACTIONS(5271), - [anon_sym_BSLASHpagecolor] = ACTIONS(5271), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5271), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5271), - }, - [792] = { - [ts_builtin_sym_end] = ACTIONS(5273), - [sym_command_name] = ACTIONS(5275), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5275), - [anon_sym_LPAREN] = ACTIONS(5273), - [anon_sym_RPAREN] = ACTIONS(5273), - [anon_sym_LBRACK] = ACTIONS(5273), - [anon_sym_RBRACK] = ACTIONS(5273), - [anon_sym_COMMA] = ACTIONS(5273), - [anon_sym_EQ] = ACTIONS(5273), - [anon_sym_BSLASHpart] = ACTIONS(5275), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddpart] = ACTIONS(5275), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5273), - [anon_sym_BSLASHchapter] = ACTIONS(5275), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddchap] = ACTIONS(5275), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsection] = ACTIONS(5275), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddsec] = ACTIONS(5275), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubsection] = ACTIONS(5275), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5275), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHparagraph] = ACTIONS(5275), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5275), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5273), - [anon_sym_BSLASHitem] = ACTIONS(5275), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5273), - [anon_sym_LBRACE] = ACTIONS(5273), - [anon_sym_RBRACE] = ACTIONS(5273), - [sym_word] = ACTIONS(5275), - [sym_placeholder] = ACTIONS(5273), - [anon_sym_PLUS] = ACTIONS(5275), - [anon_sym_DASH] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(5275), - [anon_sym_SLASH] = ACTIONS(5275), - [anon_sym_CARET] = ACTIONS(5275), - [anon_sym__] = ACTIONS(5275), - [anon_sym_LT] = ACTIONS(5275), - [anon_sym_GT] = ACTIONS(5275), - [anon_sym_BANG] = ACTIONS(5275), - [anon_sym_PIPE] = ACTIONS(5275), - [anon_sym_COLON] = ACTIONS(5275), - [anon_sym_SQUOTE] = ACTIONS(5275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5273), - [anon_sym_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5273), - [anon_sym_BSLASHbegin] = ACTIONS(5275), - [anon_sym_BSLASHusepackage] = ACTIONS(5275), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5275), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5275), - [anon_sym_BSLASHinclude] = ACTIONS(5275), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5275), - [anon_sym_BSLASHinput] = ACTIONS(5275), - [anon_sym_BSLASHsubfile] = ACTIONS(5275), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5275), - [anon_sym_BSLASHbibliography] = ACTIONS(5275), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5275), - [anon_sym_BSLASHincludesvg] = ACTIONS(5275), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5275), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5275), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5275), - [anon_sym_BSLASHimport] = ACTIONS(5275), - [anon_sym_BSLASHsubimport] = ACTIONS(5275), - [anon_sym_BSLASHinputfrom] = ACTIONS(5275), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5275), - [anon_sym_BSLASHincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHcaption] = ACTIONS(5275), - [anon_sym_BSLASHcite] = ACTIONS(5275), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCite] = ACTIONS(5275), - [anon_sym_BSLASHnocite] = ACTIONS(5275), - [anon_sym_BSLASHcitet] = ACTIONS(5275), - [anon_sym_BSLASHcitep] = ACTIONS(5275), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteauthor] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitetitle] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteyear] = ACTIONS(5275), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitedate] = ACTIONS(5275), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteurl] = ACTIONS(5275), - [anon_sym_BSLASHfullcite] = ACTIONS(5275), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5275), - [anon_sym_BSLASHcitealt] = ACTIONS(5275), - [anon_sym_BSLASHcitealp] = ACTIONS(5275), - [anon_sym_BSLASHcitetext] = ACTIONS(5275), - [anon_sym_BSLASHparencite] = ACTIONS(5275), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHParencite] = ACTIONS(5275), - [anon_sym_BSLASHfootcite] = ACTIONS(5275), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5275), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5275), - [anon_sym_BSLASHtextcite] = ACTIONS(5275), - [anon_sym_BSLASHTextcite] = ACTIONS(5275), - [anon_sym_BSLASHsmartcite] = ACTIONS(5275), - [anon_sym_BSLASHSmartcite] = ACTIONS(5275), - [anon_sym_BSLASHsupercite] = ACTIONS(5275), - [anon_sym_BSLASHautocite] = ACTIONS(5275), - [anon_sym_BSLASHAutocite] = ACTIONS(5275), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHvolcite] = ACTIONS(5275), - [anon_sym_BSLASHVolcite] = ACTIONS(5275), - [anon_sym_BSLASHpvolcite] = ACTIONS(5275), - [anon_sym_BSLASHPvolcite] = ACTIONS(5275), - [anon_sym_BSLASHfvolcite] = ACTIONS(5275), - [anon_sym_BSLASHftvolcite] = ACTIONS(5275), - [anon_sym_BSLASHsvolcite] = ACTIONS(5275), - [anon_sym_BSLASHSvolcite] = ACTIONS(5275), - [anon_sym_BSLASHtvolcite] = ACTIONS(5275), - [anon_sym_BSLASHTvolcite] = ACTIONS(5275), - [anon_sym_BSLASHavolcite] = ACTIONS(5275), - [anon_sym_BSLASHAvolcite] = ACTIONS(5275), - [anon_sym_BSLASHnotecite] = ACTIONS(5275), - [anon_sym_BSLASHNotecite] = ACTIONS(5275), - [anon_sym_BSLASHpnotecite] = ACTIONS(5275), - [anon_sym_BSLASHPnotecite] = ACTIONS(5275), - [anon_sym_BSLASHfnotecite] = ACTIONS(5275), - [anon_sym_BSLASHlabel] = ACTIONS(5275), - [anon_sym_BSLASHref] = ACTIONS(5275), - [anon_sym_BSLASHeqref] = ACTIONS(5275), - [anon_sym_BSLASHvref] = ACTIONS(5275), - [anon_sym_BSLASHVref] = ACTIONS(5275), - [anon_sym_BSLASHautoref] = ACTIONS(5275), - [anon_sym_BSLASHpageref] = ACTIONS(5275), - [anon_sym_BSLASHcref] = ACTIONS(5275), - [anon_sym_BSLASHCref] = ACTIONS(5275), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnameCref] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHlabelcref] = ACTIONS(5275), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCrefrange] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnewlabel] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5273), - [anon_sym_BSLASHdef] = ACTIONS(5275), - [anon_sym_BSLASHlet] = ACTIONS(5275), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5275), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5275), - [anon_sym_BSLASHgls] = ACTIONS(5275), - [anon_sym_BSLASHGls] = ACTIONS(5275), - [anon_sym_BSLASHGLS] = ACTIONS(5275), - [anon_sym_BSLASHglspl] = ACTIONS(5275), - [anon_sym_BSLASHGlspl] = ACTIONS(5275), - [anon_sym_BSLASHGLSpl] = ACTIONS(5275), - [anon_sym_BSLASHglsdisp] = ACTIONS(5275), - [anon_sym_BSLASHglslink] = ACTIONS(5275), - [anon_sym_BSLASHglstext] = ACTIONS(5275), - [anon_sym_BSLASHGlstext] = ACTIONS(5275), - [anon_sym_BSLASHGLStext] = ACTIONS(5275), - [anon_sym_BSLASHglsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5275), - [anon_sym_BSLASHglsplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSplural] = ACTIONS(5275), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHglsname] = ACTIONS(5275), - [anon_sym_BSLASHGlsname] = ACTIONS(5275), - [anon_sym_BSLASHGLSname] = ACTIONS(5275), - [anon_sym_BSLASHglssymbol] = ACTIONS(5275), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5275), - [anon_sym_BSLASHglsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5275), - [anon_sym_BSLASHglsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5275), - [anon_sym_BSLASHglsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5275), - [anon_sym_BSLASHglsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5275), - [anon_sym_BSLASHglsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5275), - [anon_sym_BSLASHnewacronym] = ACTIONS(5275), - [anon_sym_BSLASHacrshort] = ACTIONS(5275), - [anon_sym_BSLASHAcrshort] = ACTIONS(5275), - [anon_sym_BSLASHACRshort] = ACTIONS(5275), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5275), - [anon_sym_BSLASHacrlong] = ACTIONS(5275), - [anon_sym_BSLASHAcrlong] = ACTIONS(5275), - [anon_sym_BSLASHACRlong] = ACTIONS(5275), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5275), - [anon_sym_BSLASHacrfull] = ACTIONS(5275), - [anon_sym_BSLASHAcrfull] = ACTIONS(5275), - [anon_sym_BSLASHACRfull] = ACTIONS(5275), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5275), - [anon_sym_BSLASHacs] = ACTIONS(5275), - [anon_sym_BSLASHAcs] = ACTIONS(5275), - [anon_sym_BSLASHacsp] = ACTIONS(5275), - [anon_sym_BSLASHAcsp] = ACTIONS(5275), - [anon_sym_BSLASHacl] = ACTIONS(5275), - [anon_sym_BSLASHAcl] = ACTIONS(5275), - [anon_sym_BSLASHaclp] = ACTIONS(5275), - [anon_sym_BSLASHAclp] = ACTIONS(5275), - [anon_sym_BSLASHacf] = ACTIONS(5275), - [anon_sym_BSLASHAcf] = ACTIONS(5275), - [anon_sym_BSLASHacfp] = ACTIONS(5275), - [anon_sym_BSLASHAcfp] = ACTIONS(5275), - [anon_sym_BSLASHac] = ACTIONS(5275), - [anon_sym_BSLASHAc] = ACTIONS(5275), - [anon_sym_BSLASHacp] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5275), - [anon_sym_BSLASHcolor] = ACTIONS(5275), - [anon_sym_BSLASHcolorbox] = ACTIONS(5275), - [anon_sym_BSLASHtextcolor] = ACTIONS(5275), - [anon_sym_BSLASHpagecolor] = ACTIONS(5275), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5275), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5275), - }, - [793] = { - [ts_builtin_sym_end] = ACTIONS(5277), - [sym_command_name] = ACTIONS(5279), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5279), - [anon_sym_LPAREN] = ACTIONS(5277), - [anon_sym_RPAREN] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(5277), - [anon_sym_RBRACK] = ACTIONS(5277), - [anon_sym_COMMA] = ACTIONS(5277), - [anon_sym_EQ] = ACTIONS(5277), - [anon_sym_BSLASHpart] = ACTIONS(5279), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddpart] = ACTIONS(5279), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5277), - [anon_sym_BSLASHchapter] = ACTIONS(5279), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddchap] = ACTIONS(5279), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsection] = ACTIONS(5279), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddsec] = ACTIONS(5279), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubsection] = ACTIONS(5279), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5279), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHparagraph] = ACTIONS(5279), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5279), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5277), - [anon_sym_BSLASHitem] = ACTIONS(5279), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5277), - [anon_sym_LBRACE] = ACTIONS(5277), - [anon_sym_RBRACE] = ACTIONS(5277), - [sym_word] = ACTIONS(5279), - [sym_placeholder] = ACTIONS(5277), - [anon_sym_PLUS] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(5279), - [anon_sym_STAR] = ACTIONS(5279), - [anon_sym_SLASH] = ACTIONS(5279), - [anon_sym_CARET] = ACTIONS(5279), - [anon_sym__] = ACTIONS(5279), - [anon_sym_LT] = ACTIONS(5279), - [anon_sym_GT] = ACTIONS(5279), - [anon_sym_BANG] = ACTIONS(5279), - [anon_sym_PIPE] = ACTIONS(5279), - [anon_sym_COLON] = ACTIONS(5279), - [anon_sym_SQUOTE] = ACTIONS(5279), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5277), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5277), - [anon_sym_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5277), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5277), - [anon_sym_BSLASHbegin] = ACTIONS(5279), - [anon_sym_BSLASHusepackage] = ACTIONS(5279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5279), - [anon_sym_BSLASHinclude] = ACTIONS(5279), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5279), - [anon_sym_BSLASHinput] = ACTIONS(5279), - [anon_sym_BSLASHsubfile] = ACTIONS(5279), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5279), - [anon_sym_BSLASHbibliography] = ACTIONS(5279), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5279), - [anon_sym_BSLASHincludesvg] = ACTIONS(5279), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5279), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5279), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5279), - [anon_sym_BSLASHimport] = ACTIONS(5279), - [anon_sym_BSLASHsubimport] = ACTIONS(5279), - [anon_sym_BSLASHinputfrom] = ACTIONS(5279), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5279), - [anon_sym_BSLASHincludefrom] = ACTIONS(5279), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5279), - [anon_sym_BSLASHcaption] = ACTIONS(5279), - [anon_sym_BSLASHcite] = ACTIONS(5279), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCite] = ACTIONS(5279), - [anon_sym_BSLASHnocite] = ACTIONS(5279), - [anon_sym_BSLASHcitet] = ACTIONS(5279), - [anon_sym_BSLASHcitep] = ACTIONS(5279), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteauthor] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitetitle] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteyear] = ACTIONS(5279), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitedate] = ACTIONS(5279), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteurl] = ACTIONS(5279), - [anon_sym_BSLASHfullcite] = ACTIONS(5279), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5279), - [anon_sym_BSLASHcitealt] = ACTIONS(5279), - [anon_sym_BSLASHcitealp] = ACTIONS(5279), - [anon_sym_BSLASHcitetext] = ACTIONS(5279), - [anon_sym_BSLASHparencite] = ACTIONS(5279), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHParencite] = ACTIONS(5279), - [anon_sym_BSLASHfootcite] = ACTIONS(5279), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5279), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5279), - [anon_sym_BSLASHtextcite] = ACTIONS(5279), - [anon_sym_BSLASHTextcite] = ACTIONS(5279), - [anon_sym_BSLASHsmartcite] = ACTIONS(5279), - [anon_sym_BSLASHSmartcite] = ACTIONS(5279), - [anon_sym_BSLASHsupercite] = ACTIONS(5279), - [anon_sym_BSLASHautocite] = ACTIONS(5279), - [anon_sym_BSLASHAutocite] = ACTIONS(5279), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHvolcite] = ACTIONS(5279), - [anon_sym_BSLASHVolcite] = ACTIONS(5279), - [anon_sym_BSLASHpvolcite] = ACTIONS(5279), - [anon_sym_BSLASHPvolcite] = ACTIONS(5279), - [anon_sym_BSLASHfvolcite] = ACTIONS(5279), - [anon_sym_BSLASHftvolcite] = ACTIONS(5279), - [anon_sym_BSLASHsvolcite] = ACTIONS(5279), - [anon_sym_BSLASHSvolcite] = ACTIONS(5279), - [anon_sym_BSLASHtvolcite] = ACTIONS(5279), - [anon_sym_BSLASHTvolcite] = ACTIONS(5279), - [anon_sym_BSLASHavolcite] = ACTIONS(5279), - [anon_sym_BSLASHAvolcite] = ACTIONS(5279), - [anon_sym_BSLASHnotecite] = ACTIONS(5279), - [anon_sym_BSLASHNotecite] = ACTIONS(5279), - [anon_sym_BSLASHpnotecite] = ACTIONS(5279), - [anon_sym_BSLASHPnotecite] = ACTIONS(5279), - [anon_sym_BSLASHfnotecite] = ACTIONS(5279), - [anon_sym_BSLASHlabel] = ACTIONS(5279), - [anon_sym_BSLASHref] = ACTIONS(5279), - [anon_sym_BSLASHeqref] = ACTIONS(5279), - [anon_sym_BSLASHvref] = ACTIONS(5279), - [anon_sym_BSLASHVref] = ACTIONS(5279), - [anon_sym_BSLASHautoref] = ACTIONS(5279), - [anon_sym_BSLASHpageref] = ACTIONS(5279), - [anon_sym_BSLASHcref] = ACTIONS(5279), - [anon_sym_BSLASHCref] = ACTIONS(5279), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5277), - [anon_sym_BSLASHnamecref] = ACTIONS(5279), - [anon_sym_BSLASHnameCref] = ACTIONS(5279), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5279), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5279), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5279), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5279), - [anon_sym_BSLASHlabelcref] = ACTIONS(5279), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5279), - [anon_sym_BSLASHcrefrange] = ACTIONS(5279), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCrefrange] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5277), - [anon_sym_BSLASHnewlabel] = ACTIONS(5279), - [anon_sym_BSLASHnewcommand] = ACTIONS(5279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5277), - [anon_sym_BSLASHdef] = ACTIONS(5279), - [anon_sym_BSLASHlet] = ACTIONS(5279), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5279), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5279), - [anon_sym_BSLASHgls] = ACTIONS(5279), - [anon_sym_BSLASHGls] = ACTIONS(5279), - [anon_sym_BSLASHGLS] = ACTIONS(5279), - [anon_sym_BSLASHglspl] = ACTIONS(5279), - [anon_sym_BSLASHGlspl] = ACTIONS(5279), - [anon_sym_BSLASHGLSpl] = ACTIONS(5279), - [anon_sym_BSLASHglsdisp] = ACTIONS(5279), - [anon_sym_BSLASHglslink] = ACTIONS(5279), - [anon_sym_BSLASHglstext] = ACTIONS(5279), - [anon_sym_BSLASHGlstext] = ACTIONS(5279), - [anon_sym_BSLASHGLStext] = ACTIONS(5279), - [anon_sym_BSLASHglsfirst] = ACTIONS(5279), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5279), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5279), - [anon_sym_BSLASHglsplural] = ACTIONS(5279), - [anon_sym_BSLASHGlsplural] = ACTIONS(5279), - [anon_sym_BSLASHGLSplural] = ACTIONS(5279), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHglsname] = ACTIONS(5279), - [anon_sym_BSLASHGlsname] = ACTIONS(5279), - [anon_sym_BSLASHGLSname] = ACTIONS(5279), - [anon_sym_BSLASHglssymbol] = ACTIONS(5279), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5279), - [anon_sym_BSLASHglsdesc] = ACTIONS(5279), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5279), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5279), - [anon_sym_BSLASHglsuseri] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5279), - [anon_sym_BSLASHglsuserii] = ACTIONS(5279), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5279), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5279), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5279), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5279), - [anon_sym_BSLASHglsuserv] = ACTIONS(5279), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5279), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5279), - [anon_sym_BSLASHglsuservi] = ACTIONS(5279), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5279), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5279), - [anon_sym_BSLASHnewacronym] = ACTIONS(5279), - [anon_sym_BSLASHacrshort] = ACTIONS(5279), - [anon_sym_BSLASHAcrshort] = ACTIONS(5279), - [anon_sym_BSLASHACRshort] = ACTIONS(5279), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5279), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5279), - [anon_sym_BSLASHacrlong] = ACTIONS(5279), - [anon_sym_BSLASHAcrlong] = ACTIONS(5279), - [anon_sym_BSLASHACRlong] = ACTIONS(5279), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5279), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5279), - [anon_sym_BSLASHacrfull] = ACTIONS(5279), - [anon_sym_BSLASHAcrfull] = ACTIONS(5279), - [anon_sym_BSLASHACRfull] = ACTIONS(5279), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5279), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5279), - [anon_sym_BSLASHacs] = ACTIONS(5279), - [anon_sym_BSLASHAcs] = ACTIONS(5279), - [anon_sym_BSLASHacsp] = ACTIONS(5279), - [anon_sym_BSLASHAcsp] = ACTIONS(5279), - [anon_sym_BSLASHacl] = ACTIONS(5279), - [anon_sym_BSLASHAcl] = ACTIONS(5279), - [anon_sym_BSLASHaclp] = ACTIONS(5279), - [anon_sym_BSLASHAclp] = ACTIONS(5279), - [anon_sym_BSLASHacf] = ACTIONS(5279), - [anon_sym_BSLASHAcf] = ACTIONS(5279), - [anon_sym_BSLASHacfp] = ACTIONS(5279), - [anon_sym_BSLASHAcfp] = ACTIONS(5279), - [anon_sym_BSLASHac] = ACTIONS(5279), - [anon_sym_BSLASHAc] = ACTIONS(5279), - [anon_sym_BSLASHacp] = ACTIONS(5279), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5279), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5279), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5279), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5279), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5279), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5279), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5279), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5279), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5279), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5279), - [anon_sym_BSLASHcolor] = ACTIONS(5279), - [anon_sym_BSLASHcolorbox] = ACTIONS(5279), - [anon_sym_BSLASHtextcolor] = ACTIONS(5279), - [anon_sym_BSLASHpagecolor] = ACTIONS(5279), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5279), - }, - [794] = { - [ts_builtin_sym_end] = ACTIONS(5281), - [sym_command_name] = ACTIONS(5283), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_RPAREN] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_BSLASHpart] = ACTIONS(5283), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddpart] = ACTIONS(5283), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHchapter] = ACTIONS(5283), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddchap] = ACTIONS(5283), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsection] = ACTIONS(5283), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddsec] = ACTIONS(5283), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHparagraph] = ACTIONS(5283), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHitem] = ACTIONS(5283), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), - [anon_sym_LBRACE] = ACTIONS(5281), - [anon_sym_RBRACE] = ACTIONS(5281), - [sym_word] = ACTIONS(5283), - [sym_placeholder] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_CARET] = ACTIONS(5283), - [anon_sym__] = ACTIONS(5283), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_BANG] = ACTIONS(5283), - [anon_sym_PIPE] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_SQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), - [anon_sym_BSLASHbegin] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5283), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), - [anon_sym_BSLASHinclude] = ACTIONS(5283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), - [anon_sym_BSLASHinput] = ACTIONS(5283), - [anon_sym_BSLASHsubfile] = ACTIONS(5283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), - [anon_sym_BSLASHbibliography] = ACTIONS(5283), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), - [anon_sym_BSLASHincludesvg] = ACTIONS(5283), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), - [anon_sym_BSLASHimport] = ACTIONS(5283), - [anon_sym_BSLASHsubimport] = ACTIONS(5283), - [anon_sym_BSLASHinputfrom] = ACTIONS(5283), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), - [anon_sym_BSLASHincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHcaption] = ACTIONS(5283), - [anon_sym_BSLASHcite] = ACTIONS(5283), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCite] = ACTIONS(5283), - [anon_sym_BSLASHnocite] = ACTIONS(5283), - [anon_sym_BSLASHcitet] = ACTIONS(5283), - [anon_sym_BSLASHcitep] = ACTIONS(5283), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteyear] = ACTIONS(5283), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitedate] = ACTIONS(5283), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteurl] = ACTIONS(5283), - [anon_sym_BSLASHfullcite] = ACTIONS(5283), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), - [anon_sym_BSLASHcitealt] = ACTIONS(5283), - [anon_sym_BSLASHcitealp] = ACTIONS(5283), - [anon_sym_BSLASHcitetext] = ACTIONS(5283), - [anon_sym_BSLASHparencite] = ACTIONS(5283), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHParencite] = ACTIONS(5283), - [anon_sym_BSLASHfootcite] = ACTIONS(5283), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), - [anon_sym_BSLASHtextcite] = ACTIONS(5283), - [anon_sym_BSLASHTextcite] = ACTIONS(5283), - [anon_sym_BSLASHsmartcite] = ACTIONS(5283), - [anon_sym_BSLASHSmartcite] = ACTIONS(5283), - [anon_sym_BSLASHsupercite] = ACTIONS(5283), - [anon_sym_BSLASHautocite] = ACTIONS(5283), - [anon_sym_BSLASHAutocite] = ACTIONS(5283), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHvolcite] = ACTIONS(5283), - [anon_sym_BSLASHVolcite] = ACTIONS(5283), - [anon_sym_BSLASHpvolcite] = ACTIONS(5283), - [anon_sym_BSLASHPvolcite] = ACTIONS(5283), - [anon_sym_BSLASHfvolcite] = ACTIONS(5283), - [anon_sym_BSLASHftvolcite] = ACTIONS(5283), - [anon_sym_BSLASHsvolcite] = ACTIONS(5283), - [anon_sym_BSLASHSvolcite] = ACTIONS(5283), - [anon_sym_BSLASHtvolcite] = ACTIONS(5283), - [anon_sym_BSLASHTvolcite] = ACTIONS(5283), - [anon_sym_BSLASHavolcite] = ACTIONS(5283), - [anon_sym_BSLASHAvolcite] = ACTIONS(5283), - [anon_sym_BSLASHnotecite] = ACTIONS(5283), - [anon_sym_BSLASHNotecite] = ACTIONS(5283), - [anon_sym_BSLASHpnotecite] = ACTIONS(5283), - [anon_sym_BSLASHPnotecite] = ACTIONS(5283), - [anon_sym_BSLASHfnotecite] = ACTIONS(5283), - [anon_sym_BSLASHlabel] = ACTIONS(5283), - [anon_sym_BSLASHref] = ACTIONS(5283), - [anon_sym_BSLASHeqref] = ACTIONS(5283), - [anon_sym_BSLASHvref] = ACTIONS(5283), - [anon_sym_BSLASHVref] = ACTIONS(5283), - [anon_sym_BSLASHautoref] = ACTIONS(5283), - [anon_sym_BSLASHpageref] = ACTIONS(5283), - [anon_sym_BSLASHcref] = ACTIONS(5283), - [anon_sym_BSLASHCref] = ACTIONS(5283), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnameCref] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHlabelcref] = ACTIONS(5283), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnewlabel] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdef] = ACTIONS(5283), - [anon_sym_BSLASHlet] = ACTIONS(5283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), - [anon_sym_BSLASHgls] = ACTIONS(5283), - [anon_sym_BSLASHGls] = ACTIONS(5283), - [anon_sym_BSLASHGLS] = ACTIONS(5283), - [anon_sym_BSLASHglspl] = ACTIONS(5283), - [anon_sym_BSLASHGlspl] = ACTIONS(5283), - [anon_sym_BSLASHGLSpl] = ACTIONS(5283), - [anon_sym_BSLASHglsdisp] = ACTIONS(5283), - [anon_sym_BSLASHglslink] = ACTIONS(5283), - [anon_sym_BSLASHglstext] = ACTIONS(5283), - [anon_sym_BSLASHGlstext] = ACTIONS(5283), - [anon_sym_BSLASHGLStext] = ACTIONS(5283), - [anon_sym_BSLASHglsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), - [anon_sym_BSLASHglsplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSplural] = ACTIONS(5283), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHglsname] = ACTIONS(5283), - [anon_sym_BSLASHGlsname] = ACTIONS(5283), - [anon_sym_BSLASHGLSname] = ACTIONS(5283), - [anon_sym_BSLASHglssymbol] = ACTIONS(5283), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), - [anon_sym_BSLASHglsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), - [anon_sym_BSLASHglsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), - [anon_sym_BSLASHglsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), - [anon_sym_BSLASHglsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), - [anon_sym_BSLASHglsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), - [anon_sym_BSLASHnewacronym] = ACTIONS(5283), - [anon_sym_BSLASHacrshort] = ACTIONS(5283), - [anon_sym_BSLASHAcrshort] = ACTIONS(5283), - [anon_sym_BSLASHACRshort] = ACTIONS(5283), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), - [anon_sym_BSLASHacrlong] = ACTIONS(5283), - [anon_sym_BSLASHAcrlong] = ACTIONS(5283), - [anon_sym_BSLASHACRlong] = ACTIONS(5283), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), - [anon_sym_BSLASHacrfull] = ACTIONS(5283), - [anon_sym_BSLASHAcrfull] = ACTIONS(5283), - [anon_sym_BSLASHACRfull] = ACTIONS(5283), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), - [anon_sym_BSLASHacs] = ACTIONS(5283), - [anon_sym_BSLASHAcs] = ACTIONS(5283), - [anon_sym_BSLASHacsp] = ACTIONS(5283), - [anon_sym_BSLASHAcsp] = ACTIONS(5283), - [anon_sym_BSLASHacl] = ACTIONS(5283), - [anon_sym_BSLASHAcl] = ACTIONS(5283), - [anon_sym_BSLASHaclp] = ACTIONS(5283), - [anon_sym_BSLASHAclp] = ACTIONS(5283), - [anon_sym_BSLASHacf] = ACTIONS(5283), - [anon_sym_BSLASHAcf] = ACTIONS(5283), - [anon_sym_BSLASHacfp] = ACTIONS(5283), - [anon_sym_BSLASHAcfp] = ACTIONS(5283), - [anon_sym_BSLASHac] = ACTIONS(5283), - [anon_sym_BSLASHAc] = ACTIONS(5283), - [anon_sym_BSLASHacp] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), - [anon_sym_BSLASHcolor] = ACTIONS(5283), - [anon_sym_BSLASHcolorbox] = ACTIONS(5283), - [anon_sym_BSLASHtextcolor] = ACTIONS(5283), - [anon_sym_BSLASHpagecolor] = ACTIONS(5283), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), - }, - [795] = { - [ts_builtin_sym_end] = ACTIONS(5285), - [sym_command_name] = ACTIONS(5287), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_RPAREN] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_RBRACK] = ACTIONS(5285), - [anon_sym_COMMA] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_BSLASHpart] = ACTIONS(5287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddpart] = ACTIONS(5287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHchapter] = ACTIONS(5287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddchap] = ACTIONS(5287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsection] = ACTIONS(5287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddsec] = ACTIONS(5287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHparagraph] = ACTIONS(5287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHitem] = ACTIONS(5287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(5285), - [anon_sym_RBRACE] = ACTIONS(5285), - [sym_word] = ACTIONS(5287), - [sym_placeholder] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_SLASH] = ACTIONS(5287), - [anon_sym_CARET] = ACTIONS(5287), - [anon_sym__] = ACTIONS(5287), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_GT] = ACTIONS(5287), - [anon_sym_BANG] = ACTIONS(5287), - [anon_sym_PIPE] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_SQUOTE] = ACTIONS(5287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5285), - [anon_sym_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5285), - [anon_sym_BSLASHbegin] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5287), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5287), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5287), - [anon_sym_BSLASHinclude] = ACTIONS(5287), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5287), - [anon_sym_BSLASHinput] = ACTIONS(5287), - [anon_sym_BSLASHsubfile] = ACTIONS(5287), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5287), - [anon_sym_BSLASHbibliography] = ACTIONS(5287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5287), - [anon_sym_BSLASHincludesvg] = ACTIONS(5287), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5287), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5287), - [anon_sym_BSLASHimport] = ACTIONS(5287), - [anon_sym_BSLASHsubimport] = ACTIONS(5287), - [anon_sym_BSLASHinputfrom] = ACTIONS(5287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5287), - [anon_sym_BSLASHincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHcaption] = ACTIONS(5287), - [anon_sym_BSLASHcite] = ACTIONS(5287), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCite] = ACTIONS(5287), - [anon_sym_BSLASHnocite] = ACTIONS(5287), - [anon_sym_BSLASHcitet] = ACTIONS(5287), - [anon_sym_BSLASHcitep] = ACTIONS(5287), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteyear] = ACTIONS(5287), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitedate] = ACTIONS(5287), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteurl] = ACTIONS(5287), - [anon_sym_BSLASHfullcite] = ACTIONS(5287), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5287), - [anon_sym_BSLASHcitealt] = ACTIONS(5287), - [anon_sym_BSLASHcitealp] = ACTIONS(5287), - [anon_sym_BSLASHcitetext] = ACTIONS(5287), - [anon_sym_BSLASHparencite] = ACTIONS(5287), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHParencite] = ACTIONS(5287), - [anon_sym_BSLASHfootcite] = ACTIONS(5287), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5287), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5287), - [anon_sym_BSLASHtextcite] = ACTIONS(5287), - [anon_sym_BSLASHTextcite] = ACTIONS(5287), - [anon_sym_BSLASHsmartcite] = ACTIONS(5287), - [anon_sym_BSLASHSmartcite] = ACTIONS(5287), - [anon_sym_BSLASHsupercite] = ACTIONS(5287), - [anon_sym_BSLASHautocite] = ACTIONS(5287), - [anon_sym_BSLASHAutocite] = ACTIONS(5287), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHvolcite] = ACTIONS(5287), - [anon_sym_BSLASHVolcite] = ACTIONS(5287), - [anon_sym_BSLASHpvolcite] = ACTIONS(5287), - [anon_sym_BSLASHPvolcite] = ACTIONS(5287), - [anon_sym_BSLASHfvolcite] = ACTIONS(5287), - [anon_sym_BSLASHftvolcite] = ACTIONS(5287), - [anon_sym_BSLASHsvolcite] = ACTIONS(5287), - [anon_sym_BSLASHSvolcite] = ACTIONS(5287), - [anon_sym_BSLASHtvolcite] = ACTIONS(5287), - [anon_sym_BSLASHTvolcite] = ACTIONS(5287), - [anon_sym_BSLASHavolcite] = ACTIONS(5287), - [anon_sym_BSLASHAvolcite] = ACTIONS(5287), - [anon_sym_BSLASHnotecite] = ACTIONS(5287), - [anon_sym_BSLASHNotecite] = ACTIONS(5287), - [anon_sym_BSLASHpnotecite] = ACTIONS(5287), - [anon_sym_BSLASHPnotecite] = ACTIONS(5287), - [anon_sym_BSLASHfnotecite] = ACTIONS(5287), - [anon_sym_BSLASHlabel] = ACTIONS(5287), - [anon_sym_BSLASHref] = ACTIONS(5287), - [anon_sym_BSLASHeqref] = ACTIONS(5287), - [anon_sym_BSLASHvref] = ACTIONS(5287), - [anon_sym_BSLASHVref] = ACTIONS(5287), - [anon_sym_BSLASHautoref] = ACTIONS(5287), - [anon_sym_BSLASHpageref] = ACTIONS(5287), - [anon_sym_BSLASHcref] = ACTIONS(5287), - [anon_sym_BSLASHCref] = ACTIONS(5287), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnameCref] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHlabelcref] = ACTIONS(5287), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnewlabel] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdef] = ACTIONS(5287), - [anon_sym_BSLASHlet] = ACTIONS(5287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5287), - [anon_sym_BSLASHgls] = ACTIONS(5287), - [anon_sym_BSLASHGls] = ACTIONS(5287), - [anon_sym_BSLASHGLS] = ACTIONS(5287), - [anon_sym_BSLASHglspl] = ACTIONS(5287), - [anon_sym_BSLASHGlspl] = ACTIONS(5287), - [anon_sym_BSLASHGLSpl] = ACTIONS(5287), - [anon_sym_BSLASHglsdisp] = ACTIONS(5287), - [anon_sym_BSLASHglslink] = ACTIONS(5287), - [anon_sym_BSLASHglstext] = ACTIONS(5287), - [anon_sym_BSLASHGlstext] = ACTIONS(5287), - [anon_sym_BSLASHGLStext] = ACTIONS(5287), - [anon_sym_BSLASHglsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5287), - [anon_sym_BSLASHglsplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSplural] = ACTIONS(5287), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHglsname] = ACTIONS(5287), - [anon_sym_BSLASHGlsname] = ACTIONS(5287), - [anon_sym_BSLASHGLSname] = ACTIONS(5287), - [anon_sym_BSLASHglssymbol] = ACTIONS(5287), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5287), - [anon_sym_BSLASHglsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5287), - [anon_sym_BSLASHglsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5287), - [anon_sym_BSLASHglsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5287), - [anon_sym_BSLASHglsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5287), - [anon_sym_BSLASHglsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5287), - [anon_sym_BSLASHnewacronym] = ACTIONS(5287), - [anon_sym_BSLASHacrshort] = ACTIONS(5287), - [anon_sym_BSLASHAcrshort] = ACTIONS(5287), - [anon_sym_BSLASHACRshort] = ACTIONS(5287), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5287), - [anon_sym_BSLASHacrlong] = ACTIONS(5287), - [anon_sym_BSLASHAcrlong] = ACTIONS(5287), - [anon_sym_BSLASHACRlong] = ACTIONS(5287), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5287), - [anon_sym_BSLASHacrfull] = ACTIONS(5287), - [anon_sym_BSLASHAcrfull] = ACTIONS(5287), - [anon_sym_BSLASHACRfull] = ACTIONS(5287), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5287), - [anon_sym_BSLASHacs] = ACTIONS(5287), - [anon_sym_BSLASHAcs] = ACTIONS(5287), - [anon_sym_BSLASHacsp] = ACTIONS(5287), - [anon_sym_BSLASHAcsp] = ACTIONS(5287), - [anon_sym_BSLASHacl] = ACTIONS(5287), - [anon_sym_BSLASHAcl] = ACTIONS(5287), - [anon_sym_BSLASHaclp] = ACTIONS(5287), - [anon_sym_BSLASHAclp] = ACTIONS(5287), - [anon_sym_BSLASHacf] = ACTIONS(5287), - [anon_sym_BSLASHAcf] = ACTIONS(5287), - [anon_sym_BSLASHacfp] = ACTIONS(5287), - [anon_sym_BSLASHAcfp] = ACTIONS(5287), - [anon_sym_BSLASHac] = ACTIONS(5287), - [anon_sym_BSLASHAc] = ACTIONS(5287), - [anon_sym_BSLASHacp] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5287), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5287), - [anon_sym_BSLASHcolor] = ACTIONS(5287), - [anon_sym_BSLASHcolorbox] = ACTIONS(5287), - [anon_sym_BSLASHtextcolor] = ACTIONS(5287), - [anon_sym_BSLASHpagecolor] = ACTIONS(5287), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5287), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5287), - }, - [796] = { - [ts_builtin_sym_end] = ACTIONS(5289), - [sym_command_name] = ACTIONS(5291), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5291), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_RPAREN] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_BSLASHpart] = ACTIONS(5291), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddpart] = ACTIONS(5291), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHchapter] = ACTIONS(5291), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddchap] = ACTIONS(5291), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsection] = ACTIONS(5291), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddsec] = ACTIONS(5291), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHparagraph] = ACTIONS(5291), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5291), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHitem] = ACTIONS(5291), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5289), - [anon_sym_RBRACE] = ACTIONS(5289), - [sym_word] = ACTIONS(5291), - [sym_placeholder] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym__] = ACTIONS(5291), - [anon_sym_LT] = ACTIONS(5291), - [anon_sym_GT] = ACTIONS(5291), - [anon_sym_BANG] = ACTIONS(5291), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5291), - [anon_sym_SQUOTE] = ACTIONS(5291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5289), - [anon_sym_BSLASHbegin] = ACTIONS(5291), - [anon_sym_BSLASHusepackage] = ACTIONS(5291), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5291), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5291), - [anon_sym_BSLASHinclude] = ACTIONS(5291), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5291), - [anon_sym_BSLASHinput] = ACTIONS(5291), - [anon_sym_BSLASHsubfile] = ACTIONS(5291), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5291), - [anon_sym_BSLASHbibliography] = ACTIONS(5291), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5291), - [anon_sym_BSLASHincludesvg] = ACTIONS(5291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5291), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5291), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5291), - [anon_sym_BSLASHimport] = ACTIONS(5291), - [anon_sym_BSLASHsubimport] = ACTIONS(5291), - [anon_sym_BSLASHinputfrom] = ACTIONS(5291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5291), - [anon_sym_BSLASHincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHcaption] = ACTIONS(5291), - [anon_sym_BSLASHcite] = ACTIONS(5291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCite] = ACTIONS(5291), - [anon_sym_BSLASHnocite] = ACTIONS(5291), - [anon_sym_BSLASHcitet] = ACTIONS(5291), - [anon_sym_BSLASHcitep] = ACTIONS(5291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor] = ACTIONS(5291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle] = ACTIONS(5291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteyear] = ACTIONS(5291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitedate] = ACTIONS(5291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteurl] = ACTIONS(5291), - [anon_sym_BSLASHfullcite] = ACTIONS(5291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5291), - [anon_sym_BSLASHcitealt] = ACTIONS(5291), - [anon_sym_BSLASHcitealp] = ACTIONS(5291), - [anon_sym_BSLASHcitetext] = ACTIONS(5291), - [anon_sym_BSLASHparencite] = ACTIONS(5291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHParencite] = ACTIONS(5291), - [anon_sym_BSLASHfootcite] = ACTIONS(5291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5291), - [anon_sym_BSLASHtextcite] = ACTIONS(5291), - [anon_sym_BSLASHTextcite] = ACTIONS(5291), - [anon_sym_BSLASHsmartcite] = ACTIONS(5291), - [anon_sym_BSLASHSmartcite] = ACTIONS(5291), - [anon_sym_BSLASHsupercite] = ACTIONS(5291), - [anon_sym_BSLASHautocite] = ACTIONS(5291), - [anon_sym_BSLASHAutocite] = ACTIONS(5291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHvolcite] = ACTIONS(5291), - [anon_sym_BSLASHVolcite] = ACTIONS(5291), - [anon_sym_BSLASHpvolcite] = ACTIONS(5291), - [anon_sym_BSLASHPvolcite] = ACTIONS(5291), - [anon_sym_BSLASHfvolcite] = ACTIONS(5291), - [anon_sym_BSLASHftvolcite] = ACTIONS(5291), - [anon_sym_BSLASHsvolcite] = ACTIONS(5291), - [anon_sym_BSLASHSvolcite] = ACTIONS(5291), - [anon_sym_BSLASHtvolcite] = ACTIONS(5291), - [anon_sym_BSLASHTvolcite] = ACTIONS(5291), - [anon_sym_BSLASHavolcite] = ACTIONS(5291), - [anon_sym_BSLASHAvolcite] = ACTIONS(5291), - [anon_sym_BSLASHnotecite] = ACTIONS(5291), - [anon_sym_BSLASHNotecite] = ACTIONS(5291), - [anon_sym_BSLASHpnotecite] = ACTIONS(5291), - [anon_sym_BSLASHPnotecite] = ACTIONS(5291), - [anon_sym_BSLASHfnotecite] = ACTIONS(5291), - [anon_sym_BSLASHlabel] = ACTIONS(5291), - [anon_sym_BSLASHref] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5291), - [anon_sym_BSLASHvref] = ACTIONS(5291), - [anon_sym_BSLASHVref] = ACTIONS(5291), - [anon_sym_BSLASHautoref] = ACTIONS(5291), - [anon_sym_BSLASHpageref] = ACTIONS(5291), - [anon_sym_BSLASHcref] = ACTIONS(5291), - [anon_sym_BSLASHCref] = ACTIONS(5291), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnameCref] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHlabelcref] = ACTIONS(5291), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange] = ACTIONS(5291), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnewlabel] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5291), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5291), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5291), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdef] = ACTIONS(5291), - [anon_sym_BSLASHlet] = ACTIONS(5291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5291), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5291), - [anon_sym_BSLASHgls] = ACTIONS(5291), - [anon_sym_BSLASHGls] = ACTIONS(5291), - [anon_sym_BSLASHGLS] = ACTIONS(5291), - [anon_sym_BSLASHglspl] = ACTIONS(5291), - [anon_sym_BSLASHGlspl] = ACTIONS(5291), - [anon_sym_BSLASHGLSpl] = ACTIONS(5291), - [anon_sym_BSLASHglsdisp] = ACTIONS(5291), - [anon_sym_BSLASHglslink] = ACTIONS(5291), - [anon_sym_BSLASHglstext] = ACTIONS(5291), - [anon_sym_BSLASHGlstext] = ACTIONS(5291), - [anon_sym_BSLASHGLStext] = ACTIONS(5291), - [anon_sym_BSLASHglsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5291), - [anon_sym_BSLASHglsplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSplural] = ACTIONS(5291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHglsname] = ACTIONS(5291), - [anon_sym_BSLASHGlsname] = ACTIONS(5291), - [anon_sym_BSLASHGLSname] = ACTIONS(5291), - [anon_sym_BSLASHglssymbol] = ACTIONS(5291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5291), - [anon_sym_BSLASHglsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5291), - [anon_sym_BSLASHglsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5291), - [anon_sym_BSLASHglsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5291), - [anon_sym_BSLASHglsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5291), - [anon_sym_BSLASHglsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5291), - [anon_sym_BSLASHnewacronym] = ACTIONS(5291), - [anon_sym_BSLASHacrshort] = ACTIONS(5291), - [anon_sym_BSLASHAcrshort] = ACTIONS(5291), - [anon_sym_BSLASHACRshort] = ACTIONS(5291), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5291), - [anon_sym_BSLASHacrlong] = ACTIONS(5291), - [anon_sym_BSLASHAcrlong] = ACTIONS(5291), - [anon_sym_BSLASHACRlong] = ACTIONS(5291), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5291), - [anon_sym_BSLASHacrfull] = ACTIONS(5291), - [anon_sym_BSLASHAcrfull] = ACTIONS(5291), - [anon_sym_BSLASHACRfull] = ACTIONS(5291), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5291), - [anon_sym_BSLASHacs] = ACTIONS(5291), - [anon_sym_BSLASHAcs] = ACTIONS(5291), - [anon_sym_BSLASHacsp] = ACTIONS(5291), - [anon_sym_BSLASHAcsp] = ACTIONS(5291), - [anon_sym_BSLASHacl] = ACTIONS(5291), - [anon_sym_BSLASHAcl] = ACTIONS(5291), - [anon_sym_BSLASHaclp] = ACTIONS(5291), - [anon_sym_BSLASHAclp] = ACTIONS(5291), - [anon_sym_BSLASHacf] = ACTIONS(5291), - [anon_sym_BSLASHAcf] = ACTIONS(5291), - [anon_sym_BSLASHacfp] = ACTIONS(5291), - [anon_sym_BSLASHAcfp] = ACTIONS(5291), - [anon_sym_BSLASHac] = ACTIONS(5291), - [anon_sym_BSLASHAc] = ACTIONS(5291), - [anon_sym_BSLASHacp] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5291), - [anon_sym_BSLASHcolor] = ACTIONS(5291), - [anon_sym_BSLASHcolorbox] = ACTIONS(5291), - [anon_sym_BSLASHtextcolor] = ACTIONS(5291), - [anon_sym_BSLASHpagecolor] = ACTIONS(5291), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5291), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5291), - }, - [797] = { - [ts_builtin_sym_end] = ACTIONS(5293), - [sym_command_name] = ACTIONS(5295), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5295), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_RPAREN] = ACTIONS(5293), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5293), - [anon_sym_COMMA] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_BSLASHpart] = ACTIONS(5295), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddpart] = ACTIONS(5295), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHchapter] = ACTIONS(5295), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddchap] = ACTIONS(5295), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsection] = ACTIONS(5295), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddsec] = ACTIONS(5295), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHparagraph] = ACTIONS(5295), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHitem] = ACTIONS(5295), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(5293), - [anon_sym_RBRACE] = ACTIONS(5293), - [sym_word] = ACTIONS(5295), - [sym_placeholder] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(5295), - [anon_sym_STAR] = ACTIONS(5295), - [anon_sym_SLASH] = ACTIONS(5295), - [anon_sym_CARET] = ACTIONS(5295), - [anon_sym__] = ACTIONS(5295), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(5295), - [anon_sym_BANG] = ACTIONS(5295), - [anon_sym_PIPE] = ACTIONS(5295), - [anon_sym_COLON] = ACTIONS(5295), - [anon_sym_SQUOTE] = ACTIONS(5295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5293), - [anon_sym_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5293), - [anon_sym_BSLASHbegin] = ACTIONS(5295), - [anon_sym_BSLASHusepackage] = ACTIONS(5295), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5295), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5295), - [anon_sym_BSLASHinclude] = ACTIONS(5295), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5295), - [anon_sym_BSLASHinput] = ACTIONS(5295), - [anon_sym_BSLASHsubfile] = ACTIONS(5295), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5295), - [anon_sym_BSLASHbibliography] = ACTIONS(5295), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5295), - [anon_sym_BSLASHincludesvg] = ACTIONS(5295), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5295), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5295), - [anon_sym_BSLASHimport] = ACTIONS(5295), - [anon_sym_BSLASHsubimport] = ACTIONS(5295), - [anon_sym_BSLASHinputfrom] = ACTIONS(5295), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5295), - [anon_sym_BSLASHincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHcaption] = ACTIONS(5295), - [anon_sym_BSLASHcite] = ACTIONS(5295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCite] = ACTIONS(5295), - [anon_sym_BSLASHnocite] = ACTIONS(5295), - [anon_sym_BSLASHcitet] = ACTIONS(5295), - [anon_sym_BSLASHcitep] = ACTIONS(5295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteauthor] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitetitle] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteyear] = ACTIONS(5295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitedate] = ACTIONS(5295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteurl] = ACTIONS(5295), - [anon_sym_BSLASHfullcite] = ACTIONS(5295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5295), - [anon_sym_BSLASHcitealt] = ACTIONS(5295), - [anon_sym_BSLASHcitealp] = ACTIONS(5295), - [anon_sym_BSLASHcitetext] = ACTIONS(5295), - [anon_sym_BSLASHparencite] = ACTIONS(5295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHParencite] = ACTIONS(5295), - [anon_sym_BSLASHfootcite] = ACTIONS(5295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5295), - [anon_sym_BSLASHtextcite] = ACTIONS(5295), - [anon_sym_BSLASHTextcite] = ACTIONS(5295), - [anon_sym_BSLASHsmartcite] = ACTIONS(5295), - [anon_sym_BSLASHSmartcite] = ACTIONS(5295), - [anon_sym_BSLASHsupercite] = ACTIONS(5295), - [anon_sym_BSLASHautocite] = ACTIONS(5295), - [anon_sym_BSLASHAutocite] = ACTIONS(5295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHvolcite] = ACTIONS(5295), - [anon_sym_BSLASHVolcite] = ACTIONS(5295), - [anon_sym_BSLASHpvolcite] = ACTIONS(5295), - [anon_sym_BSLASHPvolcite] = ACTIONS(5295), - [anon_sym_BSLASHfvolcite] = ACTIONS(5295), - [anon_sym_BSLASHftvolcite] = ACTIONS(5295), - [anon_sym_BSLASHsvolcite] = ACTIONS(5295), - [anon_sym_BSLASHSvolcite] = ACTIONS(5295), - [anon_sym_BSLASHtvolcite] = ACTIONS(5295), - [anon_sym_BSLASHTvolcite] = ACTIONS(5295), - [anon_sym_BSLASHavolcite] = ACTIONS(5295), - [anon_sym_BSLASHAvolcite] = ACTIONS(5295), - [anon_sym_BSLASHnotecite] = ACTIONS(5295), - [anon_sym_BSLASHNotecite] = ACTIONS(5295), - [anon_sym_BSLASHpnotecite] = ACTIONS(5295), - [anon_sym_BSLASHPnotecite] = ACTIONS(5295), - [anon_sym_BSLASHfnotecite] = ACTIONS(5295), - [anon_sym_BSLASHlabel] = ACTIONS(5295), - [anon_sym_BSLASHref] = ACTIONS(5295), - [anon_sym_BSLASHeqref] = ACTIONS(5295), - [anon_sym_BSLASHvref] = ACTIONS(5295), - [anon_sym_BSLASHVref] = ACTIONS(5295), - [anon_sym_BSLASHautoref] = ACTIONS(5295), - [anon_sym_BSLASHpageref] = ACTIONS(5295), - [anon_sym_BSLASHcref] = ACTIONS(5295), - [anon_sym_BSLASHCref] = ACTIONS(5295), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnameCref] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHlabelcref] = ACTIONS(5295), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCrefrange] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnewlabel] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdef] = ACTIONS(5295), - [anon_sym_BSLASHlet] = ACTIONS(5295), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5295), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5295), - [anon_sym_BSLASHgls] = ACTIONS(5295), - [anon_sym_BSLASHGls] = ACTIONS(5295), - [anon_sym_BSLASHGLS] = ACTIONS(5295), - [anon_sym_BSLASHglspl] = ACTIONS(5295), - [anon_sym_BSLASHGlspl] = ACTIONS(5295), - [anon_sym_BSLASHGLSpl] = ACTIONS(5295), - [anon_sym_BSLASHglsdisp] = ACTIONS(5295), - [anon_sym_BSLASHglslink] = ACTIONS(5295), - [anon_sym_BSLASHglstext] = ACTIONS(5295), - [anon_sym_BSLASHGlstext] = ACTIONS(5295), - [anon_sym_BSLASHGLStext] = ACTIONS(5295), - [anon_sym_BSLASHglsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5295), - [anon_sym_BSLASHglsplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSplural] = ACTIONS(5295), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHglsname] = ACTIONS(5295), - [anon_sym_BSLASHGlsname] = ACTIONS(5295), - [anon_sym_BSLASHGLSname] = ACTIONS(5295), - [anon_sym_BSLASHglssymbol] = ACTIONS(5295), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5295), - [anon_sym_BSLASHglsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5295), - [anon_sym_BSLASHglsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5295), - [anon_sym_BSLASHglsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5295), - [anon_sym_BSLASHglsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5295), - [anon_sym_BSLASHglsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5295), - [anon_sym_BSLASHnewacronym] = ACTIONS(5295), - [anon_sym_BSLASHacrshort] = ACTIONS(5295), - [anon_sym_BSLASHAcrshort] = ACTIONS(5295), - [anon_sym_BSLASHACRshort] = ACTIONS(5295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5295), - [anon_sym_BSLASHacrlong] = ACTIONS(5295), - [anon_sym_BSLASHAcrlong] = ACTIONS(5295), - [anon_sym_BSLASHACRlong] = ACTIONS(5295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5295), - [anon_sym_BSLASHacrfull] = ACTIONS(5295), - [anon_sym_BSLASHAcrfull] = ACTIONS(5295), - [anon_sym_BSLASHACRfull] = ACTIONS(5295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5295), - [anon_sym_BSLASHacs] = ACTIONS(5295), - [anon_sym_BSLASHAcs] = ACTIONS(5295), - [anon_sym_BSLASHacsp] = ACTIONS(5295), - [anon_sym_BSLASHAcsp] = ACTIONS(5295), - [anon_sym_BSLASHacl] = ACTIONS(5295), - [anon_sym_BSLASHAcl] = ACTIONS(5295), - [anon_sym_BSLASHaclp] = ACTIONS(5295), - [anon_sym_BSLASHAclp] = ACTIONS(5295), - [anon_sym_BSLASHacf] = ACTIONS(5295), - [anon_sym_BSLASHAcf] = ACTIONS(5295), - [anon_sym_BSLASHacfp] = ACTIONS(5295), - [anon_sym_BSLASHAcfp] = ACTIONS(5295), - [anon_sym_BSLASHac] = ACTIONS(5295), - [anon_sym_BSLASHAc] = ACTIONS(5295), - [anon_sym_BSLASHacp] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5295), - [anon_sym_BSLASHcolor] = ACTIONS(5295), - [anon_sym_BSLASHcolorbox] = ACTIONS(5295), - [anon_sym_BSLASHtextcolor] = ACTIONS(5295), - [anon_sym_BSLASHpagecolor] = ACTIONS(5295), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5295), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5295), - }, - [798] = { - [ts_builtin_sym_end] = ACTIONS(5297), - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_BSLASHpart] = ACTIONS(5299), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddpart] = ACTIONS(5299), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHchapter] = ACTIONS(5299), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddchap] = ACTIONS(5299), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsection] = ACTIONS(5299), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddsec] = ACTIONS(5299), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHparagraph] = ACTIONS(5299), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHitem] = ACTIONS(5299), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [anon_sym_RBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASHbegin] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), - }, - [799] = { - [sym_brack_group_text] = STATE(990), - [sym_command_name] = ACTIONS(4793), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4791), - [anon_sym_RPAREN] = ACTIONS(4791), - [anon_sym_LBRACK] = ACTIONS(5213), - [anon_sym_RBRACK] = ACTIONS(4791), - [anon_sym_COMMA] = ACTIONS(4791), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_BSLASHpart] = ACTIONS(4793), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddpart] = ACTIONS(4793), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4791), - [anon_sym_BSLASHchapter] = ACTIONS(4793), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddchap] = ACTIONS(4793), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsection] = ACTIONS(4793), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddsec] = ACTIONS(4793), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubsection] = ACTIONS(4793), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4793), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHparagraph] = ACTIONS(4793), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4793), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4791), - [anon_sym_BSLASHitem] = ACTIONS(4793), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4791), - [anon_sym_LBRACE] = ACTIONS(4791), - [sym_word] = ACTIONS(4793), - [sym_placeholder] = ACTIONS(4791), - [anon_sym_PLUS] = ACTIONS(4793), - [anon_sym_DASH] = ACTIONS(4793), - [anon_sym_STAR] = ACTIONS(4793), - [anon_sym_SLASH] = ACTIONS(4793), - [anon_sym_CARET] = ACTIONS(4793), - [anon_sym__] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4793), - [anon_sym_GT] = ACTIONS(4793), - [anon_sym_BANG] = ACTIONS(4793), - [anon_sym_PIPE] = ACTIONS(4793), - [anon_sym_COLON] = ACTIONS(4793), - [anon_sym_SQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4791), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4791), - [anon_sym_DOLLAR] = ACTIONS(4793), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4791), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4791), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4791), - [anon_sym_BSLASHbegin] = ACTIONS(4793), - [anon_sym_BSLASHusepackage] = ACTIONS(4793), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4793), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4793), - [anon_sym_BSLASHinclude] = ACTIONS(4793), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4793), - [anon_sym_BSLASHinput] = ACTIONS(4793), - [anon_sym_BSLASHsubfile] = ACTIONS(4793), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4793), - [anon_sym_BSLASHbibliography] = ACTIONS(4793), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4793), - [anon_sym_BSLASHincludesvg] = ACTIONS(4793), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4793), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4793), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4793), - [anon_sym_BSLASHimport] = ACTIONS(4793), - [anon_sym_BSLASHsubimport] = ACTIONS(4793), - [anon_sym_BSLASHinputfrom] = ACTIONS(4793), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4793), - [anon_sym_BSLASHincludefrom] = ACTIONS(4793), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4793), - [anon_sym_BSLASHcaption] = ACTIONS(4793), - [anon_sym_BSLASHcite] = ACTIONS(4793), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCite] = ACTIONS(4793), - [anon_sym_BSLASHnocite] = ACTIONS(4793), - [anon_sym_BSLASHcitet] = ACTIONS(4793), - [anon_sym_BSLASHcitep] = ACTIONS(4793), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteauthor] = ACTIONS(4793), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4793), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitetitle] = ACTIONS(4793), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteyear] = ACTIONS(4793), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitedate] = ACTIONS(4793), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteurl] = ACTIONS(4793), - [anon_sym_BSLASHfullcite] = ACTIONS(4793), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4793), - [anon_sym_BSLASHcitealt] = ACTIONS(4793), - [anon_sym_BSLASHcitealp] = ACTIONS(4793), - [anon_sym_BSLASHcitetext] = ACTIONS(4793), - [anon_sym_BSLASHparencite] = ACTIONS(4793), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHParencite] = ACTIONS(4793), - [anon_sym_BSLASHfootcite] = ACTIONS(4793), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4793), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4793), - [anon_sym_BSLASHtextcite] = ACTIONS(4793), - [anon_sym_BSLASHTextcite] = ACTIONS(4793), - [anon_sym_BSLASHsmartcite] = ACTIONS(4793), - [anon_sym_BSLASHSmartcite] = ACTIONS(4793), - [anon_sym_BSLASHsupercite] = ACTIONS(4793), - [anon_sym_BSLASHautocite] = ACTIONS(4793), - [anon_sym_BSLASHAutocite] = ACTIONS(4793), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHvolcite] = ACTIONS(4793), - [anon_sym_BSLASHVolcite] = ACTIONS(4793), - [anon_sym_BSLASHpvolcite] = ACTIONS(4793), - [anon_sym_BSLASHPvolcite] = ACTIONS(4793), - [anon_sym_BSLASHfvolcite] = ACTIONS(4793), - [anon_sym_BSLASHftvolcite] = ACTIONS(4793), - [anon_sym_BSLASHsvolcite] = ACTIONS(4793), - [anon_sym_BSLASHSvolcite] = ACTIONS(4793), - [anon_sym_BSLASHtvolcite] = ACTIONS(4793), - [anon_sym_BSLASHTvolcite] = ACTIONS(4793), - [anon_sym_BSLASHavolcite] = ACTIONS(4793), - [anon_sym_BSLASHAvolcite] = ACTIONS(4793), - [anon_sym_BSLASHnotecite] = ACTIONS(4793), - [anon_sym_BSLASHNotecite] = ACTIONS(4793), - [anon_sym_BSLASHpnotecite] = ACTIONS(4793), - [anon_sym_BSLASHPnotecite] = ACTIONS(4793), - [anon_sym_BSLASHfnotecite] = ACTIONS(4793), - [anon_sym_BSLASHlabel] = ACTIONS(4793), - [anon_sym_BSLASHref] = ACTIONS(4793), - [anon_sym_BSLASHeqref] = ACTIONS(4793), - [anon_sym_BSLASHvref] = ACTIONS(4793), - [anon_sym_BSLASHVref] = ACTIONS(4793), - [anon_sym_BSLASHautoref] = ACTIONS(4793), - [anon_sym_BSLASHpageref] = ACTIONS(4793), - [anon_sym_BSLASHcref] = ACTIONS(4793), - [anon_sym_BSLASHCref] = ACTIONS(4793), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4791), - [anon_sym_BSLASHnamecref] = ACTIONS(4793), - [anon_sym_BSLASHnameCref] = ACTIONS(4793), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4793), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4793), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4793), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4793), - [anon_sym_BSLASHlabelcref] = ACTIONS(4793), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4793), - [anon_sym_BSLASHcrefrange] = ACTIONS(4793), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCrefrange] = ACTIONS(4793), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4791), - [anon_sym_BSLASHnewlabel] = ACTIONS(4793), - [anon_sym_BSLASHnewcommand] = ACTIONS(4793), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4793), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4793), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4793), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4791), - [anon_sym_BSLASHdef] = ACTIONS(4793), - [anon_sym_BSLASHlet] = ACTIONS(4793), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4793), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4793), - [anon_sym_BSLASHgls] = ACTIONS(4793), - [anon_sym_BSLASHGls] = ACTIONS(4793), - [anon_sym_BSLASHGLS] = ACTIONS(4793), - [anon_sym_BSLASHglspl] = ACTIONS(4793), - [anon_sym_BSLASHGlspl] = ACTIONS(4793), - [anon_sym_BSLASHGLSpl] = ACTIONS(4793), - [anon_sym_BSLASHglsdisp] = ACTIONS(4793), - [anon_sym_BSLASHglslink] = ACTIONS(4793), - [anon_sym_BSLASHglstext] = ACTIONS(4793), - [anon_sym_BSLASHGlstext] = ACTIONS(4793), - [anon_sym_BSLASHGLStext] = ACTIONS(4793), - [anon_sym_BSLASHglsfirst] = ACTIONS(4793), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4793), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4793), - [anon_sym_BSLASHglsplural] = ACTIONS(4793), - [anon_sym_BSLASHGlsplural] = ACTIONS(4793), - [anon_sym_BSLASHGLSplural] = ACTIONS(4793), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHglsname] = ACTIONS(4793), - [anon_sym_BSLASHGlsname] = ACTIONS(4793), - [anon_sym_BSLASHGLSname] = ACTIONS(4793), - [anon_sym_BSLASHglssymbol] = ACTIONS(4793), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4793), - [anon_sym_BSLASHglsdesc] = ACTIONS(4793), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4793), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4793), - [anon_sym_BSLASHglsuseri] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4793), - [anon_sym_BSLASHglsuserii] = ACTIONS(4793), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4793), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4793), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4793), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4793), - [anon_sym_BSLASHglsuserv] = ACTIONS(4793), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4793), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4793), - [anon_sym_BSLASHglsuservi] = ACTIONS(4793), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4793), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4793), - [anon_sym_BSLASHnewacronym] = ACTIONS(4793), - [anon_sym_BSLASHacrshort] = ACTIONS(4793), - [anon_sym_BSLASHAcrshort] = ACTIONS(4793), - [anon_sym_BSLASHACRshort] = ACTIONS(4793), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4793), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4793), - [anon_sym_BSLASHacrlong] = ACTIONS(4793), - [anon_sym_BSLASHAcrlong] = ACTIONS(4793), - [anon_sym_BSLASHACRlong] = ACTIONS(4793), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4793), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4793), - [anon_sym_BSLASHacrfull] = ACTIONS(4793), - [anon_sym_BSLASHAcrfull] = ACTIONS(4793), - [anon_sym_BSLASHACRfull] = ACTIONS(4793), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4793), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4793), - [anon_sym_BSLASHacs] = ACTIONS(4793), - [anon_sym_BSLASHAcs] = ACTIONS(4793), - [anon_sym_BSLASHacsp] = ACTIONS(4793), - [anon_sym_BSLASHAcsp] = ACTIONS(4793), - [anon_sym_BSLASHacl] = ACTIONS(4793), - [anon_sym_BSLASHAcl] = ACTIONS(4793), - [anon_sym_BSLASHaclp] = ACTIONS(4793), - [anon_sym_BSLASHAclp] = ACTIONS(4793), - [anon_sym_BSLASHacf] = ACTIONS(4793), - [anon_sym_BSLASHAcf] = ACTIONS(4793), - [anon_sym_BSLASHacfp] = ACTIONS(4793), - [anon_sym_BSLASHAcfp] = ACTIONS(4793), - [anon_sym_BSLASHac] = ACTIONS(4793), - [anon_sym_BSLASHAc] = ACTIONS(4793), - [anon_sym_BSLASHacp] = ACTIONS(4793), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4793), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4793), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4793), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4793), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4793), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4793), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4793), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4793), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4793), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4793), - [anon_sym_BSLASHcolor] = ACTIONS(4793), - [anon_sym_BSLASHcolorbox] = ACTIONS(4793), - [anon_sym_BSLASHtextcolor] = ACTIONS(4793), - [anon_sym_BSLASHpagecolor] = ACTIONS(4793), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4793), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4793), - }, - [800] = { - [sym_command_name] = ACTIONS(4923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4923), - [anon_sym_BSLASHfi] = ACTIONS(5301), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_RPAREN] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_RBRACK] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4921), - [anon_sym_EQ] = ACTIONS(4921), - [anon_sym_BSLASHpart] = ACTIONS(4923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddpart] = ACTIONS(4923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4921), - [anon_sym_BSLASHchapter] = ACTIONS(4923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddchap] = ACTIONS(4923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsection] = ACTIONS(4923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddsec] = ACTIONS(4923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubsection] = ACTIONS(4923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHparagraph] = ACTIONS(4923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4921), - [anon_sym_BSLASHitem] = ACTIONS(4923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4921), - [anon_sym_LBRACE] = ACTIONS(4921), - [sym_word] = ACTIONS(4923), - [sym_placeholder] = ACTIONS(4921), - [anon_sym_PLUS] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_STAR] = ACTIONS(4923), - [anon_sym_SLASH] = ACTIONS(4923), - [anon_sym_CARET] = ACTIONS(4923), - [anon_sym__] = ACTIONS(4923), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_BANG] = ACTIONS(4923), - [anon_sym_PIPE] = ACTIONS(4923), - [anon_sym_COLON] = ACTIONS(4923), - [anon_sym_SQUOTE] = ACTIONS(4923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4921), - [anon_sym_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4921), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4921), - [anon_sym_BSLASHbegin] = ACTIONS(4923), - [anon_sym_BSLASHusepackage] = ACTIONS(4923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4923), - [anon_sym_BSLASHinclude] = ACTIONS(4923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4923), - [anon_sym_BSLASHinput] = ACTIONS(4923), - [anon_sym_BSLASHsubfile] = ACTIONS(4923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4923), - [anon_sym_BSLASHbibliography] = ACTIONS(4923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4923), - [anon_sym_BSLASHincludesvg] = ACTIONS(4923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4923), - [anon_sym_BSLASHimport] = ACTIONS(4923), - [anon_sym_BSLASHsubimport] = ACTIONS(4923), - [anon_sym_BSLASHinputfrom] = ACTIONS(4923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4923), - [anon_sym_BSLASHincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHcaption] = ACTIONS(4923), - [anon_sym_BSLASHcite] = ACTIONS(4923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCite] = ACTIONS(4923), - [anon_sym_BSLASHnocite] = ACTIONS(4923), - [anon_sym_BSLASHcitet] = ACTIONS(4923), - [anon_sym_BSLASHcitep] = ACTIONS(4923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteyear] = ACTIONS(4923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitedate] = ACTIONS(4923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteurl] = ACTIONS(4923), - [anon_sym_BSLASHfullcite] = ACTIONS(4923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4923), - [anon_sym_BSLASHcitealt] = ACTIONS(4923), - [anon_sym_BSLASHcitealp] = ACTIONS(4923), - [anon_sym_BSLASHcitetext] = ACTIONS(4923), - [anon_sym_BSLASHparencite] = ACTIONS(4923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHParencite] = ACTIONS(4923), - [anon_sym_BSLASHfootcite] = ACTIONS(4923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4923), - [anon_sym_BSLASHtextcite] = ACTIONS(4923), - [anon_sym_BSLASHTextcite] = ACTIONS(4923), - [anon_sym_BSLASHsmartcite] = ACTIONS(4923), - [anon_sym_BSLASHSmartcite] = ACTIONS(4923), - [anon_sym_BSLASHsupercite] = ACTIONS(4923), - [anon_sym_BSLASHautocite] = ACTIONS(4923), - [anon_sym_BSLASHAutocite] = ACTIONS(4923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHvolcite] = ACTIONS(4923), - [anon_sym_BSLASHVolcite] = ACTIONS(4923), - [anon_sym_BSLASHpvolcite] = ACTIONS(4923), - [anon_sym_BSLASHPvolcite] = ACTIONS(4923), - [anon_sym_BSLASHfvolcite] = ACTIONS(4923), - [anon_sym_BSLASHftvolcite] = ACTIONS(4923), - [anon_sym_BSLASHsvolcite] = ACTIONS(4923), - [anon_sym_BSLASHSvolcite] = ACTIONS(4923), - [anon_sym_BSLASHtvolcite] = ACTIONS(4923), - [anon_sym_BSLASHTvolcite] = ACTIONS(4923), - [anon_sym_BSLASHavolcite] = ACTIONS(4923), - [anon_sym_BSLASHAvolcite] = ACTIONS(4923), - [anon_sym_BSLASHnotecite] = ACTIONS(4923), - [anon_sym_BSLASHNotecite] = ACTIONS(4923), - [anon_sym_BSLASHpnotecite] = ACTIONS(4923), - [anon_sym_BSLASHPnotecite] = ACTIONS(4923), - [anon_sym_BSLASHfnotecite] = ACTIONS(4923), - [anon_sym_BSLASHlabel] = ACTIONS(4923), - [anon_sym_BSLASHref] = ACTIONS(4923), - [anon_sym_BSLASHeqref] = ACTIONS(4923), - [anon_sym_BSLASHvref] = ACTIONS(4923), - [anon_sym_BSLASHVref] = ACTIONS(4923), - [anon_sym_BSLASHautoref] = ACTIONS(4923), - [anon_sym_BSLASHpageref] = ACTIONS(4923), - [anon_sym_BSLASHcref] = ACTIONS(4923), - [anon_sym_BSLASHCref] = ACTIONS(4923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnameCref] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHlabelcref] = ACTIONS(4923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnewlabel] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4921), - [anon_sym_BSLASHdef] = ACTIONS(4923), - [anon_sym_BSLASHlet] = ACTIONS(4923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4923), - [anon_sym_BSLASHgls] = ACTIONS(4923), - [anon_sym_BSLASHGls] = ACTIONS(4923), - [anon_sym_BSLASHGLS] = ACTIONS(4923), - [anon_sym_BSLASHglspl] = ACTIONS(4923), - [anon_sym_BSLASHGlspl] = ACTIONS(4923), - [anon_sym_BSLASHGLSpl] = ACTIONS(4923), - [anon_sym_BSLASHglsdisp] = ACTIONS(4923), - [anon_sym_BSLASHglslink] = ACTIONS(4923), - [anon_sym_BSLASHglstext] = ACTIONS(4923), - [anon_sym_BSLASHGlstext] = ACTIONS(4923), - [anon_sym_BSLASHGLStext] = ACTIONS(4923), - [anon_sym_BSLASHglsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4923), - [anon_sym_BSLASHglsplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSplural] = ACTIONS(4923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHglsname] = ACTIONS(4923), - [anon_sym_BSLASHGlsname] = ACTIONS(4923), - [anon_sym_BSLASHGLSname] = ACTIONS(4923), - [anon_sym_BSLASHglssymbol] = ACTIONS(4923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4923), - [anon_sym_BSLASHglsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4923), - [anon_sym_BSLASHglsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4923), - [anon_sym_BSLASHglsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4923), - [anon_sym_BSLASHglsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4923), - [anon_sym_BSLASHglsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4923), - [anon_sym_BSLASHnewacronym] = ACTIONS(4923), - [anon_sym_BSLASHacrshort] = ACTIONS(4923), - [anon_sym_BSLASHAcrshort] = ACTIONS(4923), - [anon_sym_BSLASHACRshort] = ACTIONS(4923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4923), - [anon_sym_BSLASHacrlong] = ACTIONS(4923), - [anon_sym_BSLASHAcrlong] = ACTIONS(4923), - [anon_sym_BSLASHACRlong] = ACTIONS(4923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4923), - [anon_sym_BSLASHacrfull] = ACTIONS(4923), - [anon_sym_BSLASHAcrfull] = ACTIONS(4923), - [anon_sym_BSLASHACRfull] = ACTIONS(4923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4923), - [anon_sym_BSLASHacs] = ACTIONS(4923), - [anon_sym_BSLASHAcs] = ACTIONS(4923), - [anon_sym_BSLASHacsp] = ACTIONS(4923), - [anon_sym_BSLASHAcsp] = ACTIONS(4923), - [anon_sym_BSLASHacl] = ACTIONS(4923), - [anon_sym_BSLASHAcl] = ACTIONS(4923), - [anon_sym_BSLASHaclp] = ACTIONS(4923), - [anon_sym_BSLASHAclp] = ACTIONS(4923), - [anon_sym_BSLASHacf] = ACTIONS(4923), - [anon_sym_BSLASHAcf] = ACTIONS(4923), - [anon_sym_BSLASHacfp] = ACTIONS(4923), - [anon_sym_BSLASHAcfp] = ACTIONS(4923), - [anon_sym_BSLASHac] = ACTIONS(4923), - [anon_sym_BSLASHAc] = ACTIONS(4923), - [anon_sym_BSLASHacp] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4923), - [anon_sym_BSLASHcolor] = ACTIONS(4923), - [anon_sym_BSLASHcolorbox] = ACTIONS(4923), - [anon_sym_BSLASHtextcolor] = ACTIONS(4923), - [anon_sym_BSLASHpagecolor] = ACTIONS(4923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4923), - }, - [801] = { - [ts_builtin_sym_end] = ACTIONS(5303), - [sym_command_name] = ACTIONS(5305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_BSLASHpart] = ACTIONS(5305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddpart] = ACTIONS(5305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHchapter] = ACTIONS(5305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddchap] = ACTIONS(5305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsection] = ACTIONS(5305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddsec] = ACTIONS(5305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHparagraph] = ACTIONS(5305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHitem] = ACTIONS(5305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [anon_sym_RBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASHbegin] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), - }, - [802] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1733), - [sym_operator] = STATE(1509), - [sym_key_value_pair] = STATE(1778), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5307), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [803] = { - [ts_builtin_sym_end] = ACTIONS(5309), - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_BSLASHpart] = ACTIONS(5311), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddpart] = ACTIONS(5311), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHchapter] = ACTIONS(5311), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddchap] = ACTIONS(5311), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsection] = ACTIONS(5311), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddsec] = ACTIONS(5311), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHparagraph] = ACTIONS(5311), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5311), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHitem] = ACTIONS(5311), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [anon_sym_RBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASHbegin] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), - }, - [804] = { - [sym_command_name] = ACTIONS(4923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4923), - [anon_sym_BSLASHfi] = ACTIONS(5313), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_RPAREN] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_RBRACK] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4921), - [anon_sym_EQ] = ACTIONS(4921), - [anon_sym_BSLASHpart] = ACTIONS(4923), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddpart] = ACTIONS(4923), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4921), - [anon_sym_BSLASHchapter] = ACTIONS(4923), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddchap] = ACTIONS(4923), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsection] = ACTIONS(4923), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHaddsec] = ACTIONS(4923), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubsection] = ACTIONS(4923), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4923), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4921), - [anon_sym_BSLASHparagraph] = ACTIONS(4923), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4921), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4923), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4921), - [anon_sym_BSLASHitem] = ACTIONS(4923), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4921), - [anon_sym_LBRACE] = ACTIONS(4921), - [sym_word] = ACTIONS(4923), - [sym_placeholder] = ACTIONS(4921), - [anon_sym_PLUS] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_STAR] = ACTIONS(4923), - [anon_sym_SLASH] = ACTIONS(4923), - [anon_sym_CARET] = ACTIONS(4923), - [anon_sym__] = ACTIONS(4923), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_BANG] = ACTIONS(4923), - [anon_sym_PIPE] = ACTIONS(4923), - [anon_sym_COLON] = ACTIONS(4923), - [anon_sym_SQUOTE] = ACTIONS(4923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4921), - [anon_sym_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4921), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4921), - [anon_sym_BSLASHbegin] = ACTIONS(4923), - [anon_sym_BSLASHusepackage] = ACTIONS(4923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4923), - [anon_sym_BSLASHinclude] = ACTIONS(4923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4923), - [anon_sym_BSLASHinput] = ACTIONS(4923), - [anon_sym_BSLASHsubfile] = ACTIONS(4923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4923), - [anon_sym_BSLASHbibliography] = ACTIONS(4923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4923), - [anon_sym_BSLASHincludesvg] = ACTIONS(4923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4923), - [anon_sym_BSLASHimport] = ACTIONS(4923), - [anon_sym_BSLASHsubimport] = ACTIONS(4923), - [anon_sym_BSLASHinputfrom] = ACTIONS(4923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4923), - [anon_sym_BSLASHincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHcaption] = ACTIONS(4923), - [anon_sym_BSLASHcite] = ACTIONS(4923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCite] = ACTIONS(4923), - [anon_sym_BSLASHnocite] = ACTIONS(4923), - [anon_sym_BSLASHcitet] = ACTIONS(4923), - [anon_sym_BSLASHcitep] = ACTIONS(4923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteyear] = ACTIONS(4923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitedate] = ACTIONS(4923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteurl] = ACTIONS(4923), - [anon_sym_BSLASHfullcite] = ACTIONS(4923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4923), - [anon_sym_BSLASHcitealt] = ACTIONS(4923), - [anon_sym_BSLASHcitealp] = ACTIONS(4923), - [anon_sym_BSLASHcitetext] = ACTIONS(4923), - [anon_sym_BSLASHparencite] = ACTIONS(4923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHParencite] = ACTIONS(4923), - [anon_sym_BSLASHfootcite] = ACTIONS(4923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4923), - [anon_sym_BSLASHtextcite] = ACTIONS(4923), - [anon_sym_BSLASHTextcite] = ACTIONS(4923), - [anon_sym_BSLASHsmartcite] = ACTIONS(4923), - [anon_sym_BSLASHSmartcite] = ACTIONS(4923), - [anon_sym_BSLASHsupercite] = ACTIONS(4923), - [anon_sym_BSLASHautocite] = ACTIONS(4923), - [anon_sym_BSLASHAutocite] = ACTIONS(4923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHvolcite] = ACTIONS(4923), - [anon_sym_BSLASHVolcite] = ACTIONS(4923), - [anon_sym_BSLASHpvolcite] = ACTIONS(4923), - [anon_sym_BSLASHPvolcite] = ACTIONS(4923), - [anon_sym_BSLASHfvolcite] = ACTIONS(4923), - [anon_sym_BSLASHftvolcite] = ACTIONS(4923), - [anon_sym_BSLASHsvolcite] = ACTIONS(4923), - [anon_sym_BSLASHSvolcite] = ACTIONS(4923), - [anon_sym_BSLASHtvolcite] = ACTIONS(4923), - [anon_sym_BSLASHTvolcite] = ACTIONS(4923), - [anon_sym_BSLASHavolcite] = ACTIONS(4923), - [anon_sym_BSLASHAvolcite] = ACTIONS(4923), - [anon_sym_BSLASHnotecite] = ACTIONS(4923), - [anon_sym_BSLASHNotecite] = ACTIONS(4923), - [anon_sym_BSLASHpnotecite] = ACTIONS(4923), - [anon_sym_BSLASHPnotecite] = ACTIONS(4923), - [anon_sym_BSLASHfnotecite] = ACTIONS(4923), - [anon_sym_BSLASHlabel] = ACTIONS(4923), - [anon_sym_BSLASHref] = ACTIONS(4923), - [anon_sym_BSLASHeqref] = ACTIONS(4923), - [anon_sym_BSLASHvref] = ACTIONS(4923), - [anon_sym_BSLASHVref] = ACTIONS(4923), - [anon_sym_BSLASHautoref] = ACTIONS(4923), - [anon_sym_BSLASHpageref] = ACTIONS(4923), - [anon_sym_BSLASHcref] = ACTIONS(4923), - [anon_sym_BSLASHCref] = ACTIONS(4923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnameCref] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHlabelcref] = ACTIONS(4923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnewlabel] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4921), - [anon_sym_BSLASHdef] = ACTIONS(4923), - [anon_sym_BSLASHlet] = ACTIONS(4923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4923), - [anon_sym_BSLASHgls] = ACTIONS(4923), - [anon_sym_BSLASHGls] = ACTIONS(4923), - [anon_sym_BSLASHGLS] = ACTIONS(4923), - [anon_sym_BSLASHglspl] = ACTIONS(4923), - [anon_sym_BSLASHGlspl] = ACTIONS(4923), - [anon_sym_BSLASHGLSpl] = ACTIONS(4923), - [anon_sym_BSLASHglsdisp] = ACTIONS(4923), - [anon_sym_BSLASHglslink] = ACTIONS(4923), - [anon_sym_BSLASHglstext] = ACTIONS(4923), - [anon_sym_BSLASHGlstext] = ACTIONS(4923), - [anon_sym_BSLASHGLStext] = ACTIONS(4923), - [anon_sym_BSLASHglsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4923), - [anon_sym_BSLASHglsplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSplural] = ACTIONS(4923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHglsname] = ACTIONS(4923), - [anon_sym_BSLASHGlsname] = ACTIONS(4923), - [anon_sym_BSLASHGLSname] = ACTIONS(4923), - [anon_sym_BSLASHglssymbol] = ACTIONS(4923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4923), - [anon_sym_BSLASHglsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4923), - [anon_sym_BSLASHglsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4923), - [anon_sym_BSLASHglsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4923), - [anon_sym_BSLASHglsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4923), - [anon_sym_BSLASHglsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4923), - [anon_sym_BSLASHnewacronym] = ACTIONS(4923), - [anon_sym_BSLASHacrshort] = ACTIONS(4923), - [anon_sym_BSLASHAcrshort] = ACTIONS(4923), - [anon_sym_BSLASHACRshort] = ACTIONS(4923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4923), - [anon_sym_BSLASHacrlong] = ACTIONS(4923), - [anon_sym_BSLASHAcrlong] = ACTIONS(4923), - [anon_sym_BSLASHACRlong] = ACTIONS(4923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4923), - [anon_sym_BSLASHacrfull] = ACTIONS(4923), - [anon_sym_BSLASHAcrfull] = ACTIONS(4923), - [anon_sym_BSLASHACRfull] = ACTIONS(4923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4923), - [anon_sym_BSLASHacs] = ACTIONS(4923), - [anon_sym_BSLASHAcs] = ACTIONS(4923), - [anon_sym_BSLASHacsp] = ACTIONS(4923), - [anon_sym_BSLASHAcsp] = ACTIONS(4923), - [anon_sym_BSLASHacl] = ACTIONS(4923), - [anon_sym_BSLASHAcl] = ACTIONS(4923), - [anon_sym_BSLASHaclp] = ACTIONS(4923), - [anon_sym_BSLASHAclp] = ACTIONS(4923), - [anon_sym_BSLASHacf] = ACTIONS(4923), - [anon_sym_BSLASHAcf] = ACTIONS(4923), - [anon_sym_BSLASHacfp] = ACTIONS(4923), - [anon_sym_BSLASHAcfp] = ACTIONS(4923), - [anon_sym_BSLASHac] = ACTIONS(4923), - [anon_sym_BSLASHAc] = ACTIONS(4923), - [anon_sym_BSLASHacp] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4923), - [anon_sym_BSLASHcolor] = ACTIONS(4923), - [anon_sym_BSLASHcolorbox] = ACTIONS(4923), - [anon_sym_BSLASHtextcolor] = ACTIONS(4923), - [anon_sym_BSLASHpagecolor] = ACTIONS(4923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4923), - }, - [805] = { - [ts_builtin_sym_end] = ACTIONS(5315), - [sym_command_name] = ACTIONS(5317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5317), - [anon_sym_LPAREN] = ACTIONS(5315), - [anon_sym_RPAREN] = ACTIONS(5315), - [anon_sym_LBRACK] = ACTIONS(5315), - [anon_sym_RBRACK] = ACTIONS(5315), - [anon_sym_COMMA] = ACTIONS(5315), - [anon_sym_EQ] = ACTIONS(5315), - [anon_sym_BSLASHpart] = ACTIONS(5317), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddpart] = ACTIONS(5317), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5315), - [anon_sym_BSLASHchapter] = ACTIONS(5317), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddchap] = ACTIONS(5317), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsection] = ACTIONS(5317), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddsec] = ACTIONS(5317), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubsection] = ACTIONS(5317), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5317), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHparagraph] = ACTIONS(5317), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5317), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5315), - [anon_sym_BSLASHitem] = ACTIONS(5317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5315), - [anon_sym_LBRACE] = ACTIONS(5315), - [anon_sym_RBRACE] = ACTIONS(5315), - [sym_word] = ACTIONS(5317), - [sym_placeholder] = ACTIONS(5315), - [anon_sym_PLUS] = ACTIONS(5317), - [anon_sym_DASH] = ACTIONS(5317), - [anon_sym_STAR] = ACTIONS(5317), - [anon_sym_SLASH] = ACTIONS(5317), - [anon_sym_CARET] = ACTIONS(5317), - [anon_sym__] = ACTIONS(5317), - [anon_sym_LT] = ACTIONS(5317), - [anon_sym_GT] = ACTIONS(5317), - [anon_sym_BANG] = ACTIONS(5317), - [anon_sym_PIPE] = ACTIONS(5317), - [anon_sym_COLON] = ACTIONS(5317), - [anon_sym_SQUOTE] = ACTIONS(5317), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), - [anon_sym_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), - [anon_sym_BSLASHbegin] = ACTIONS(5317), - [anon_sym_BSLASHusepackage] = ACTIONS(5317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), - [anon_sym_BSLASHinclude] = ACTIONS(5317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), - [anon_sym_BSLASHinput] = ACTIONS(5317), - [anon_sym_BSLASHsubfile] = ACTIONS(5317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), - [anon_sym_BSLASHbibliography] = ACTIONS(5317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), - [anon_sym_BSLASHincludesvg] = ACTIONS(5317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), - [anon_sym_BSLASHimport] = ACTIONS(5317), - [anon_sym_BSLASHsubimport] = ACTIONS(5317), - [anon_sym_BSLASHinputfrom] = ACTIONS(5317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), - [anon_sym_BSLASHincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHcaption] = ACTIONS(5317), - [anon_sym_BSLASHcite] = ACTIONS(5317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCite] = ACTIONS(5317), - [anon_sym_BSLASHnocite] = ACTIONS(5317), - [anon_sym_BSLASHcitet] = ACTIONS(5317), - [anon_sym_BSLASHcitep] = ACTIONS(5317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteyear] = ACTIONS(5317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitedate] = ACTIONS(5317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteurl] = ACTIONS(5317), - [anon_sym_BSLASHfullcite] = ACTIONS(5317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), - [anon_sym_BSLASHcitealt] = ACTIONS(5317), - [anon_sym_BSLASHcitealp] = ACTIONS(5317), - [anon_sym_BSLASHcitetext] = ACTIONS(5317), - [anon_sym_BSLASHparencite] = ACTIONS(5317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHParencite] = ACTIONS(5317), - [anon_sym_BSLASHfootcite] = ACTIONS(5317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), - [anon_sym_BSLASHtextcite] = ACTIONS(5317), - [anon_sym_BSLASHTextcite] = ACTIONS(5317), - [anon_sym_BSLASHsmartcite] = ACTIONS(5317), - [anon_sym_BSLASHSmartcite] = ACTIONS(5317), - [anon_sym_BSLASHsupercite] = ACTIONS(5317), - [anon_sym_BSLASHautocite] = ACTIONS(5317), - [anon_sym_BSLASHAutocite] = ACTIONS(5317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHvolcite] = ACTIONS(5317), - [anon_sym_BSLASHVolcite] = ACTIONS(5317), - [anon_sym_BSLASHpvolcite] = ACTIONS(5317), - [anon_sym_BSLASHPvolcite] = ACTIONS(5317), - [anon_sym_BSLASHfvolcite] = ACTIONS(5317), - [anon_sym_BSLASHftvolcite] = ACTIONS(5317), - [anon_sym_BSLASHsvolcite] = ACTIONS(5317), - [anon_sym_BSLASHSvolcite] = ACTIONS(5317), - [anon_sym_BSLASHtvolcite] = ACTIONS(5317), - [anon_sym_BSLASHTvolcite] = ACTIONS(5317), - [anon_sym_BSLASHavolcite] = ACTIONS(5317), - [anon_sym_BSLASHAvolcite] = ACTIONS(5317), - [anon_sym_BSLASHnotecite] = ACTIONS(5317), - [anon_sym_BSLASHNotecite] = ACTIONS(5317), - [anon_sym_BSLASHpnotecite] = ACTIONS(5317), - [anon_sym_BSLASHPnotecite] = ACTIONS(5317), - [anon_sym_BSLASHfnotecite] = ACTIONS(5317), - [anon_sym_BSLASHlabel] = ACTIONS(5317), - [anon_sym_BSLASHref] = ACTIONS(5317), - [anon_sym_BSLASHeqref] = ACTIONS(5317), - [anon_sym_BSLASHvref] = ACTIONS(5317), - [anon_sym_BSLASHVref] = ACTIONS(5317), - [anon_sym_BSLASHautoref] = ACTIONS(5317), - [anon_sym_BSLASHpageref] = ACTIONS(5317), - [anon_sym_BSLASHcref] = ACTIONS(5317), - [anon_sym_BSLASHCref] = ACTIONS(5317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnameCref] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHlabelcref] = ACTIONS(5317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnewlabel] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), - [anon_sym_BSLASHdef] = ACTIONS(5317), - [anon_sym_BSLASHlet] = ACTIONS(5317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), - [anon_sym_BSLASHgls] = ACTIONS(5317), - [anon_sym_BSLASHGls] = ACTIONS(5317), - [anon_sym_BSLASHGLS] = ACTIONS(5317), - [anon_sym_BSLASHglspl] = ACTIONS(5317), - [anon_sym_BSLASHGlspl] = ACTIONS(5317), - [anon_sym_BSLASHGLSpl] = ACTIONS(5317), - [anon_sym_BSLASHglsdisp] = ACTIONS(5317), - [anon_sym_BSLASHglslink] = ACTIONS(5317), - [anon_sym_BSLASHglstext] = ACTIONS(5317), - [anon_sym_BSLASHGlstext] = ACTIONS(5317), - [anon_sym_BSLASHGLStext] = ACTIONS(5317), - [anon_sym_BSLASHglsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), - [anon_sym_BSLASHglsplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSplural] = ACTIONS(5317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHglsname] = ACTIONS(5317), - [anon_sym_BSLASHGlsname] = ACTIONS(5317), - [anon_sym_BSLASHGLSname] = ACTIONS(5317), - [anon_sym_BSLASHglssymbol] = ACTIONS(5317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), - [anon_sym_BSLASHglsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), - [anon_sym_BSLASHglsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), - [anon_sym_BSLASHglsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), - [anon_sym_BSLASHglsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), - [anon_sym_BSLASHglsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), - [anon_sym_BSLASHnewacronym] = ACTIONS(5317), - [anon_sym_BSLASHacrshort] = ACTIONS(5317), - [anon_sym_BSLASHAcrshort] = ACTIONS(5317), - [anon_sym_BSLASHACRshort] = ACTIONS(5317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), - [anon_sym_BSLASHacrlong] = ACTIONS(5317), - [anon_sym_BSLASHAcrlong] = ACTIONS(5317), - [anon_sym_BSLASHACRlong] = ACTIONS(5317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), - [anon_sym_BSLASHacrfull] = ACTIONS(5317), - [anon_sym_BSLASHAcrfull] = ACTIONS(5317), - [anon_sym_BSLASHACRfull] = ACTIONS(5317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), - [anon_sym_BSLASHacs] = ACTIONS(5317), - [anon_sym_BSLASHAcs] = ACTIONS(5317), - [anon_sym_BSLASHacsp] = ACTIONS(5317), - [anon_sym_BSLASHAcsp] = ACTIONS(5317), - [anon_sym_BSLASHacl] = ACTIONS(5317), - [anon_sym_BSLASHAcl] = ACTIONS(5317), - [anon_sym_BSLASHaclp] = ACTIONS(5317), - [anon_sym_BSLASHAclp] = ACTIONS(5317), - [anon_sym_BSLASHacf] = ACTIONS(5317), - [anon_sym_BSLASHAcf] = ACTIONS(5317), - [anon_sym_BSLASHacfp] = ACTIONS(5317), - [anon_sym_BSLASHAcfp] = ACTIONS(5317), - [anon_sym_BSLASHac] = ACTIONS(5317), - [anon_sym_BSLASHAc] = ACTIONS(5317), - [anon_sym_BSLASHacp] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), - [anon_sym_BSLASHcolor] = ACTIONS(5317), - [anon_sym_BSLASHcolorbox] = ACTIONS(5317), - [anon_sym_BSLASHtextcolor] = ACTIONS(5317), - [anon_sym_BSLASHpagecolor] = ACTIONS(5317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), - }, - [806] = { - [ts_builtin_sym_end] = ACTIONS(5319), - [sym_command_name] = ACTIONS(5321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5321), - [anon_sym_LPAREN] = ACTIONS(5319), - [anon_sym_RPAREN] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(5319), - [anon_sym_RBRACK] = ACTIONS(5319), - [anon_sym_COMMA] = ACTIONS(5319), - [anon_sym_EQ] = ACTIONS(5319), - [anon_sym_BSLASHpart] = ACTIONS(5321), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddpart] = ACTIONS(5321), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5319), - [anon_sym_BSLASHchapter] = ACTIONS(5321), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddchap] = ACTIONS(5321), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsection] = ACTIONS(5321), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddsec] = ACTIONS(5321), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubsection] = ACTIONS(5321), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5321), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHparagraph] = ACTIONS(5321), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5321), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5319), - [anon_sym_BSLASHitem] = ACTIONS(5321), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5319), - [anon_sym_LBRACE] = ACTIONS(5319), - [anon_sym_RBRACE] = ACTIONS(5319), - [sym_word] = ACTIONS(5321), - [sym_placeholder] = ACTIONS(5319), - [anon_sym_PLUS] = ACTIONS(5321), - [anon_sym_DASH] = ACTIONS(5321), - [anon_sym_STAR] = ACTIONS(5321), - [anon_sym_SLASH] = ACTIONS(5321), - [anon_sym_CARET] = ACTIONS(5321), - [anon_sym__] = ACTIONS(5321), - [anon_sym_LT] = ACTIONS(5321), - [anon_sym_GT] = ACTIONS(5321), - [anon_sym_BANG] = ACTIONS(5321), - [anon_sym_PIPE] = ACTIONS(5321), - [anon_sym_COLON] = ACTIONS(5321), - [anon_sym_SQUOTE] = ACTIONS(5321), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5319), - [anon_sym_DOLLAR] = ACTIONS(5321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5319), - [anon_sym_BSLASHbegin] = ACTIONS(5321), - [anon_sym_BSLASHusepackage] = ACTIONS(5321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5321), - [anon_sym_BSLASHinclude] = ACTIONS(5321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5321), - [anon_sym_BSLASHinput] = ACTIONS(5321), - [anon_sym_BSLASHsubfile] = ACTIONS(5321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5321), - [anon_sym_BSLASHbibliography] = ACTIONS(5321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5321), - [anon_sym_BSLASHincludesvg] = ACTIONS(5321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5321), - [anon_sym_BSLASHimport] = ACTIONS(5321), - [anon_sym_BSLASHsubimport] = ACTIONS(5321), - [anon_sym_BSLASHinputfrom] = ACTIONS(5321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5321), - [anon_sym_BSLASHincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHcaption] = ACTIONS(5321), - [anon_sym_BSLASHcite] = ACTIONS(5321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCite] = ACTIONS(5321), - [anon_sym_BSLASHnocite] = ACTIONS(5321), - [anon_sym_BSLASHcitet] = ACTIONS(5321), - [anon_sym_BSLASHcitep] = ACTIONS(5321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteyear] = ACTIONS(5321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitedate] = ACTIONS(5321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteurl] = ACTIONS(5321), - [anon_sym_BSLASHfullcite] = ACTIONS(5321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5321), - [anon_sym_BSLASHcitealt] = ACTIONS(5321), - [anon_sym_BSLASHcitealp] = ACTIONS(5321), - [anon_sym_BSLASHcitetext] = ACTIONS(5321), - [anon_sym_BSLASHparencite] = ACTIONS(5321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHParencite] = ACTIONS(5321), - [anon_sym_BSLASHfootcite] = ACTIONS(5321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5321), - [anon_sym_BSLASHtextcite] = ACTIONS(5321), - [anon_sym_BSLASHTextcite] = ACTIONS(5321), - [anon_sym_BSLASHsmartcite] = ACTIONS(5321), - [anon_sym_BSLASHSmartcite] = ACTIONS(5321), - [anon_sym_BSLASHsupercite] = ACTIONS(5321), - [anon_sym_BSLASHautocite] = ACTIONS(5321), - [anon_sym_BSLASHAutocite] = ACTIONS(5321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHvolcite] = ACTIONS(5321), - [anon_sym_BSLASHVolcite] = ACTIONS(5321), - [anon_sym_BSLASHpvolcite] = ACTIONS(5321), - [anon_sym_BSLASHPvolcite] = ACTIONS(5321), - [anon_sym_BSLASHfvolcite] = ACTIONS(5321), - [anon_sym_BSLASHftvolcite] = ACTIONS(5321), - [anon_sym_BSLASHsvolcite] = ACTIONS(5321), - [anon_sym_BSLASHSvolcite] = ACTIONS(5321), - [anon_sym_BSLASHtvolcite] = ACTIONS(5321), - [anon_sym_BSLASHTvolcite] = ACTIONS(5321), - [anon_sym_BSLASHavolcite] = ACTIONS(5321), - [anon_sym_BSLASHAvolcite] = ACTIONS(5321), - [anon_sym_BSLASHnotecite] = ACTIONS(5321), - [anon_sym_BSLASHNotecite] = ACTIONS(5321), - [anon_sym_BSLASHpnotecite] = ACTIONS(5321), - [anon_sym_BSLASHPnotecite] = ACTIONS(5321), - [anon_sym_BSLASHfnotecite] = ACTIONS(5321), - [anon_sym_BSLASHlabel] = ACTIONS(5321), - [anon_sym_BSLASHref] = ACTIONS(5321), - [anon_sym_BSLASHeqref] = ACTIONS(5321), - [anon_sym_BSLASHvref] = ACTIONS(5321), - [anon_sym_BSLASHVref] = ACTIONS(5321), - [anon_sym_BSLASHautoref] = ACTIONS(5321), - [anon_sym_BSLASHpageref] = ACTIONS(5321), - [anon_sym_BSLASHcref] = ACTIONS(5321), - [anon_sym_BSLASHCref] = ACTIONS(5321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnameCref] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHlabelcref] = ACTIONS(5321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnewlabel] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5319), - [anon_sym_BSLASHdef] = ACTIONS(5321), - [anon_sym_BSLASHlet] = ACTIONS(5321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5321), - [anon_sym_BSLASHgls] = ACTIONS(5321), - [anon_sym_BSLASHGls] = ACTIONS(5321), - [anon_sym_BSLASHGLS] = ACTIONS(5321), - [anon_sym_BSLASHglspl] = ACTIONS(5321), - [anon_sym_BSLASHGlspl] = ACTIONS(5321), - [anon_sym_BSLASHGLSpl] = ACTIONS(5321), - [anon_sym_BSLASHglsdisp] = ACTIONS(5321), - [anon_sym_BSLASHglslink] = ACTIONS(5321), - [anon_sym_BSLASHglstext] = ACTIONS(5321), - [anon_sym_BSLASHGlstext] = ACTIONS(5321), - [anon_sym_BSLASHGLStext] = ACTIONS(5321), - [anon_sym_BSLASHglsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5321), - [anon_sym_BSLASHglsplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSplural] = ACTIONS(5321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHglsname] = ACTIONS(5321), - [anon_sym_BSLASHGlsname] = ACTIONS(5321), - [anon_sym_BSLASHGLSname] = ACTIONS(5321), - [anon_sym_BSLASHglssymbol] = ACTIONS(5321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5321), - [anon_sym_BSLASHglsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5321), - [anon_sym_BSLASHglsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5321), - [anon_sym_BSLASHglsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5321), - [anon_sym_BSLASHglsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5321), - [anon_sym_BSLASHglsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5321), - [anon_sym_BSLASHnewacronym] = ACTIONS(5321), - [anon_sym_BSLASHacrshort] = ACTIONS(5321), - [anon_sym_BSLASHAcrshort] = ACTIONS(5321), - [anon_sym_BSLASHACRshort] = ACTIONS(5321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5321), - [anon_sym_BSLASHacrlong] = ACTIONS(5321), - [anon_sym_BSLASHAcrlong] = ACTIONS(5321), - [anon_sym_BSLASHACRlong] = ACTIONS(5321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5321), - [anon_sym_BSLASHacrfull] = ACTIONS(5321), - [anon_sym_BSLASHAcrfull] = ACTIONS(5321), - [anon_sym_BSLASHACRfull] = ACTIONS(5321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5321), - [anon_sym_BSLASHacs] = ACTIONS(5321), - [anon_sym_BSLASHAcs] = ACTIONS(5321), - [anon_sym_BSLASHacsp] = ACTIONS(5321), - [anon_sym_BSLASHAcsp] = ACTIONS(5321), - [anon_sym_BSLASHacl] = ACTIONS(5321), - [anon_sym_BSLASHAcl] = ACTIONS(5321), - [anon_sym_BSLASHaclp] = ACTIONS(5321), - [anon_sym_BSLASHAclp] = ACTIONS(5321), - [anon_sym_BSLASHacf] = ACTIONS(5321), - [anon_sym_BSLASHAcf] = ACTIONS(5321), - [anon_sym_BSLASHacfp] = ACTIONS(5321), - [anon_sym_BSLASHAcfp] = ACTIONS(5321), - [anon_sym_BSLASHac] = ACTIONS(5321), - [anon_sym_BSLASHAc] = ACTIONS(5321), - [anon_sym_BSLASHacp] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5321), - [anon_sym_BSLASHcolor] = ACTIONS(5321), - [anon_sym_BSLASHcolorbox] = ACTIONS(5321), - [anon_sym_BSLASHtextcolor] = ACTIONS(5321), - [anon_sym_BSLASHpagecolor] = ACTIONS(5321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5321), - }, - [807] = { - [ts_builtin_sym_end] = ACTIONS(5323), - [sym_command_name] = ACTIONS(5325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5325), - [anon_sym_LPAREN] = ACTIONS(5323), - [anon_sym_RPAREN] = ACTIONS(5323), - [anon_sym_LBRACK] = ACTIONS(5323), - [anon_sym_RBRACK] = ACTIONS(5323), - [anon_sym_COMMA] = ACTIONS(5323), - [anon_sym_EQ] = ACTIONS(5323), - [anon_sym_BSLASHpart] = ACTIONS(5325), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddpart] = ACTIONS(5325), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5323), - [anon_sym_BSLASHchapter] = ACTIONS(5325), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddchap] = ACTIONS(5325), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsection] = ACTIONS(5325), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddsec] = ACTIONS(5325), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubsection] = ACTIONS(5325), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5325), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHparagraph] = ACTIONS(5325), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5325), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5323), - [anon_sym_BSLASHitem] = ACTIONS(5325), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5323), - [anon_sym_LBRACE] = ACTIONS(5323), - [anon_sym_RBRACE] = ACTIONS(5323), - [sym_word] = ACTIONS(5325), - [sym_placeholder] = ACTIONS(5323), - [anon_sym_PLUS] = ACTIONS(5325), - [anon_sym_DASH] = ACTIONS(5325), - [anon_sym_STAR] = ACTIONS(5325), - [anon_sym_SLASH] = ACTIONS(5325), - [anon_sym_CARET] = ACTIONS(5325), - [anon_sym__] = ACTIONS(5325), - [anon_sym_LT] = ACTIONS(5325), - [anon_sym_GT] = ACTIONS(5325), - [anon_sym_BANG] = ACTIONS(5325), - [anon_sym_PIPE] = ACTIONS(5325), - [anon_sym_COLON] = ACTIONS(5325), - [anon_sym_SQUOTE] = ACTIONS(5325), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5323), - [anon_sym_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5323), - [anon_sym_BSLASHbegin] = ACTIONS(5325), - [anon_sym_BSLASHusepackage] = ACTIONS(5325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), - [anon_sym_BSLASHinclude] = ACTIONS(5325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5325), - [anon_sym_BSLASHinput] = ACTIONS(5325), - [anon_sym_BSLASHsubfile] = ACTIONS(5325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5325), - [anon_sym_BSLASHbibliography] = ACTIONS(5325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5325), - [anon_sym_BSLASHincludesvg] = ACTIONS(5325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5325), - [anon_sym_BSLASHimport] = ACTIONS(5325), - [anon_sym_BSLASHsubimport] = ACTIONS(5325), - [anon_sym_BSLASHinputfrom] = ACTIONS(5325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5325), - [anon_sym_BSLASHincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHcaption] = ACTIONS(5325), - [anon_sym_BSLASHcite] = ACTIONS(5325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCite] = ACTIONS(5325), - [anon_sym_BSLASHnocite] = ACTIONS(5325), - [anon_sym_BSLASHcitet] = ACTIONS(5325), - [anon_sym_BSLASHcitep] = ACTIONS(5325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteyear] = ACTIONS(5325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitedate] = ACTIONS(5325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteurl] = ACTIONS(5325), - [anon_sym_BSLASHfullcite] = ACTIONS(5325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5325), - [anon_sym_BSLASHcitealt] = ACTIONS(5325), - [anon_sym_BSLASHcitealp] = ACTIONS(5325), - [anon_sym_BSLASHcitetext] = ACTIONS(5325), - [anon_sym_BSLASHparencite] = ACTIONS(5325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHParencite] = ACTIONS(5325), - [anon_sym_BSLASHfootcite] = ACTIONS(5325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5325), - [anon_sym_BSLASHtextcite] = ACTIONS(5325), - [anon_sym_BSLASHTextcite] = ACTIONS(5325), - [anon_sym_BSLASHsmartcite] = ACTIONS(5325), - [anon_sym_BSLASHSmartcite] = ACTIONS(5325), - [anon_sym_BSLASHsupercite] = ACTIONS(5325), - [anon_sym_BSLASHautocite] = ACTIONS(5325), - [anon_sym_BSLASHAutocite] = ACTIONS(5325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHvolcite] = ACTIONS(5325), - [anon_sym_BSLASHVolcite] = ACTIONS(5325), - [anon_sym_BSLASHpvolcite] = ACTIONS(5325), - [anon_sym_BSLASHPvolcite] = ACTIONS(5325), - [anon_sym_BSLASHfvolcite] = ACTIONS(5325), - [anon_sym_BSLASHftvolcite] = ACTIONS(5325), - [anon_sym_BSLASHsvolcite] = ACTIONS(5325), - [anon_sym_BSLASHSvolcite] = ACTIONS(5325), - [anon_sym_BSLASHtvolcite] = ACTIONS(5325), - [anon_sym_BSLASHTvolcite] = ACTIONS(5325), - [anon_sym_BSLASHavolcite] = ACTIONS(5325), - [anon_sym_BSLASHAvolcite] = ACTIONS(5325), - [anon_sym_BSLASHnotecite] = ACTIONS(5325), - [anon_sym_BSLASHNotecite] = ACTIONS(5325), - [anon_sym_BSLASHpnotecite] = ACTIONS(5325), - [anon_sym_BSLASHPnotecite] = ACTIONS(5325), - [anon_sym_BSLASHfnotecite] = ACTIONS(5325), - [anon_sym_BSLASHlabel] = ACTIONS(5325), - [anon_sym_BSLASHref] = ACTIONS(5325), - [anon_sym_BSLASHeqref] = ACTIONS(5325), - [anon_sym_BSLASHvref] = ACTIONS(5325), - [anon_sym_BSLASHVref] = ACTIONS(5325), - [anon_sym_BSLASHautoref] = ACTIONS(5325), - [anon_sym_BSLASHpageref] = ACTIONS(5325), - [anon_sym_BSLASHcref] = ACTIONS(5325), - [anon_sym_BSLASHCref] = ACTIONS(5325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnameCref] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHlabelcref] = ACTIONS(5325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnewlabel] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5323), - [anon_sym_BSLASHdef] = ACTIONS(5325), - [anon_sym_BSLASHlet] = ACTIONS(5325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5325), - [anon_sym_BSLASHgls] = ACTIONS(5325), - [anon_sym_BSLASHGls] = ACTIONS(5325), - [anon_sym_BSLASHGLS] = ACTIONS(5325), - [anon_sym_BSLASHglspl] = ACTIONS(5325), - [anon_sym_BSLASHGlspl] = ACTIONS(5325), - [anon_sym_BSLASHGLSpl] = ACTIONS(5325), - [anon_sym_BSLASHglsdisp] = ACTIONS(5325), - [anon_sym_BSLASHglslink] = ACTIONS(5325), - [anon_sym_BSLASHglstext] = ACTIONS(5325), - [anon_sym_BSLASHGlstext] = ACTIONS(5325), - [anon_sym_BSLASHGLStext] = ACTIONS(5325), - [anon_sym_BSLASHglsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5325), - [anon_sym_BSLASHglsplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSplural] = ACTIONS(5325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHglsname] = ACTIONS(5325), - [anon_sym_BSLASHGlsname] = ACTIONS(5325), - [anon_sym_BSLASHGLSname] = ACTIONS(5325), - [anon_sym_BSLASHglssymbol] = ACTIONS(5325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5325), - [anon_sym_BSLASHglsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5325), - [anon_sym_BSLASHglsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5325), - [anon_sym_BSLASHglsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5325), - [anon_sym_BSLASHglsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5325), - [anon_sym_BSLASHglsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5325), - [anon_sym_BSLASHnewacronym] = ACTIONS(5325), - [anon_sym_BSLASHacrshort] = ACTIONS(5325), - [anon_sym_BSLASHAcrshort] = ACTIONS(5325), - [anon_sym_BSLASHACRshort] = ACTIONS(5325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5325), - [anon_sym_BSLASHacrlong] = ACTIONS(5325), - [anon_sym_BSLASHAcrlong] = ACTIONS(5325), - [anon_sym_BSLASHACRlong] = ACTIONS(5325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5325), - [anon_sym_BSLASHacrfull] = ACTIONS(5325), - [anon_sym_BSLASHAcrfull] = ACTIONS(5325), - [anon_sym_BSLASHACRfull] = ACTIONS(5325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5325), - [anon_sym_BSLASHacs] = ACTIONS(5325), - [anon_sym_BSLASHAcs] = ACTIONS(5325), - [anon_sym_BSLASHacsp] = ACTIONS(5325), - [anon_sym_BSLASHAcsp] = ACTIONS(5325), - [anon_sym_BSLASHacl] = ACTIONS(5325), - [anon_sym_BSLASHAcl] = ACTIONS(5325), - [anon_sym_BSLASHaclp] = ACTIONS(5325), - [anon_sym_BSLASHAclp] = ACTIONS(5325), - [anon_sym_BSLASHacf] = ACTIONS(5325), - [anon_sym_BSLASHAcf] = ACTIONS(5325), - [anon_sym_BSLASHacfp] = ACTIONS(5325), - [anon_sym_BSLASHAcfp] = ACTIONS(5325), - [anon_sym_BSLASHac] = ACTIONS(5325), - [anon_sym_BSLASHAc] = ACTIONS(5325), - [anon_sym_BSLASHacp] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5325), - [anon_sym_BSLASHcolor] = ACTIONS(5325), - [anon_sym_BSLASHcolorbox] = ACTIONS(5325), - [anon_sym_BSLASHtextcolor] = ACTIONS(5325), - [anon_sym_BSLASHpagecolor] = ACTIONS(5325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5325), - }, - [808] = { - [ts_builtin_sym_end] = ACTIONS(5327), - [sym_command_name] = ACTIONS(5329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5329), - [anon_sym_LPAREN] = ACTIONS(5327), - [anon_sym_RPAREN] = ACTIONS(5327), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_RBRACK] = ACTIONS(5327), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5327), - [anon_sym_BSLASHpart] = ACTIONS(5329), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddpart] = ACTIONS(5329), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5327), - [anon_sym_BSLASHchapter] = ACTIONS(5329), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddchap] = ACTIONS(5329), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsection] = ACTIONS(5329), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddsec] = ACTIONS(5329), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubsection] = ACTIONS(5329), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5329), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHparagraph] = ACTIONS(5329), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5329), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5327), - [anon_sym_BSLASHitem] = ACTIONS(5329), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5327), - [anon_sym_LBRACE] = ACTIONS(5327), - [anon_sym_RBRACE] = ACTIONS(5327), - [sym_word] = ACTIONS(5329), - [sym_placeholder] = ACTIONS(5327), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_STAR] = ACTIONS(5329), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_CARET] = ACTIONS(5329), - [anon_sym__] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_BANG] = ACTIONS(5329), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_COLON] = ACTIONS(5329), - [anon_sym_SQUOTE] = ACTIONS(5329), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5327), - [anon_sym_DOLLAR] = ACTIONS(5329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5327), - [anon_sym_BSLASHbegin] = ACTIONS(5329), - [anon_sym_BSLASHusepackage] = ACTIONS(5329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5329), - [anon_sym_BSLASHinclude] = ACTIONS(5329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5329), - [anon_sym_BSLASHinput] = ACTIONS(5329), - [anon_sym_BSLASHsubfile] = ACTIONS(5329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5329), - [anon_sym_BSLASHbibliography] = ACTIONS(5329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5329), - [anon_sym_BSLASHincludesvg] = ACTIONS(5329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5329), - [anon_sym_BSLASHimport] = ACTIONS(5329), - [anon_sym_BSLASHsubimport] = ACTIONS(5329), - [anon_sym_BSLASHinputfrom] = ACTIONS(5329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5329), - [anon_sym_BSLASHincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHcaption] = ACTIONS(5329), - [anon_sym_BSLASHcite] = ACTIONS(5329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCite] = ACTIONS(5329), - [anon_sym_BSLASHnocite] = ACTIONS(5329), - [anon_sym_BSLASHcitet] = ACTIONS(5329), - [anon_sym_BSLASHcitep] = ACTIONS(5329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor] = ACTIONS(5329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle] = ACTIONS(5329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteyear] = ACTIONS(5329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitedate] = ACTIONS(5329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteurl] = ACTIONS(5329), - [anon_sym_BSLASHfullcite] = ACTIONS(5329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5329), - [anon_sym_BSLASHcitealt] = ACTIONS(5329), - [anon_sym_BSLASHcitealp] = ACTIONS(5329), - [anon_sym_BSLASHcitetext] = ACTIONS(5329), - [anon_sym_BSLASHparencite] = ACTIONS(5329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHParencite] = ACTIONS(5329), - [anon_sym_BSLASHfootcite] = ACTIONS(5329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5329), - [anon_sym_BSLASHtextcite] = ACTIONS(5329), - [anon_sym_BSLASHTextcite] = ACTIONS(5329), - [anon_sym_BSLASHsmartcite] = ACTIONS(5329), - [anon_sym_BSLASHSmartcite] = ACTIONS(5329), - [anon_sym_BSLASHsupercite] = ACTIONS(5329), - [anon_sym_BSLASHautocite] = ACTIONS(5329), - [anon_sym_BSLASHAutocite] = ACTIONS(5329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHvolcite] = ACTIONS(5329), - [anon_sym_BSLASHVolcite] = ACTIONS(5329), - [anon_sym_BSLASHpvolcite] = ACTIONS(5329), - [anon_sym_BSLASHPvolcite] = ACTIONS(5329), - [anon_sym_BSLASHfvolcite] = ACTIONS(5329), - [anon_sym_BSLASHftvolcite] = ACTIONS(5329), - [anon_sym_BSLASHsvolcite] = ACTIONS(5329), - [anon_sym_BSLASHSvolcite] = ACTIONS(5329), - [anon_sym_BSLASHtvolcite] = ACTIONS(5329), - [anon_sym_BSLASHTvolcite] = ACTIONS(5329), - [anon_sym_BSLASHavolcite] = ACTIONS(5329), - [anon_sym_BSLASHAvolcite] = ACTIONS(5329), - [anon_sym_BSLASHnotecite] = ACTIONS(5329), - [anon_sym_BSLASHNotecite] = ACTIONS(5329), - [anon_sym_BSLASHpnotecite] = ACTIONS(5329), - [anon_sym_BSLASHPnotecite] = ACTIONS(5329), - [anon_sym_BSLASHfnotecite] = ACTIONS(5329), - [anon_sym_BSLASHlabel] = ACTIONS(5329), - [anon_sym_BSLASHref] = ACTIONS(5329), - [anon_sym_BSLASHeqref] = ACTIONS(5329), - [anon_sym_BSLASHvref] = ACTIONS(5329), - [anon_sym_BSLASHVref] = ACTIONS(5329), - [anon_sym_BSLASHautoref] = ACTIONS(5329), - [anon_sym_BSLASHpageref] = ACTIONS(5329), - [anon_sym_BSLASHcref] = ACTIONS(5329), - [anon_sym_BSLASHCref] = ACTIONS(5329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnameCref] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHlabelcref] = ACTIONS(5329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange] = ACTIONS(5329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnewlabel] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5327), - [anon_sym_BSLASHdef] = ACTIONS(5329), - [anon_sym_BSLASHlet] = ACTIONS(5329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5329), - [anon_sym_BSLASHgls] = ACTIONS(5329), - [anon_sym_BSLASHGls] = ACTIONS(5329), - [anon_sym_BSLASHGLS] = ACTIONS(5329), - [anon_sym_BSLASHglspl] = ACTIONS(5329), - [anon_sym_BSLASHGlspl] = ACTIONS(5329), - [anon_sym_BSLASHGLSpl] = ACTIONS(5329), - [anon_sym_BSLASHglsdisp] = ACTIONS(5329), - [anon_sym_BSLASHglslink] = ACTIONS(5329), - [anon_sym_BSLASHglstext] = ACTIONS(5329), - [anon_sym_BSLASHGlstext] = ACTIONS(5329), - [anon_sym_BSLASHGLStext] = ACTIONS(5329), - [anon_sym_BSLASHglsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5329), - [anon_sym_BSLASHglsplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSplural] = ACTIONS(5329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHglsname] = ACTIONS(5329), - [anon_sym_BSLASHGlsname] = ACTIONS(5329), - [anon_sym_BSLASHGLSname] = ACTIONS(5329), - [anon_sym_BSLASHglssymbol] = ACTIONS(5329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5329), - [anon_sym_BSLASHglsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5329), - [anon_sym_BSLASHglsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5329), - [anon_sym_BSLASHglsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5329), - [anon_sym_BSLASHglsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5329), - [anon_sym_BSLASHglsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5329), - [anon_sym_BSLASHnewacronym] = ACTIONS(5329), - [anon_sym_BSLASHacrshort] = ACTIONS(5329), - [anon_sym_BSLASHAcrshort] = ACTIONS(5329), - [anon_sym_BSLASHACRshort] = ACTIONS(5329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5329), - [anon_sym_BSLASHacrlong] = ACTIONS(5329), - [anon_sym_BSLASHAcrlong] = ACTIONS(5329), - [anon_sym_BSLASHACRlong] = ACTIONS(5329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5329), - [anon_sym_BSLASHacrfull] = ACTIONS(5329), - [anon_sym_BSLASHAcrfull] = ACTIONS(5329), - [anon_sym_BSLASHACRfull] = ACTIONS(5329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5329), - [anon_sym_BSLASHacs] = ACTIONS(5329), - [anon_sym_BSLASHAcs] = ACTIONS(5329), - [anon_sym_BSLASHacsp] = ACTIONS(5329), - [anon_sym_BSLASHAcsp] = ACTIONS(5329), - [anon_sym_BSLASHacl] = ACTIONS(5329), - [anon_sym_BSLASHAcl] = ACTIONS(5329), - [anon_sym_BSLASHaclp] = ACTIONS(5329), - [anon_sym_BSLASHAclp] = ACTIONS(5329), - [anon_sym_BSLASHacf] = ACTIONS(5329), - [anon_sym_BSLASHAcf] = ACTIONS(5329), - [anon_sym_BSLASHacfp] = ACTIONS(5329), - [anon_sym_BSLASHAcfp] = ACTIONS(5329), - [anon_sym_BSLASHac] = ACTIONS(5329), - [anon_sym_BSLASHAc] = ACTIONS(5329), - [anon_sym_BSLASHacp] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5329), - [anon_sym_BSLASHcolor] = ACTIONS(5329), - [anon_sym_BSLASHcolorbox] = ACTIONS(5329), - [anon_sym_BSLASHtextcolor] = ACTIONS(5329), - [anon_sym_BSLASHpagecolor] = ACTIONS(5329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5329), - }, - [809] = { - [ts_builtin_sym_end] = ACTIONS(5331), - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_BSLASHpart] = ACTIONS(5333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddpart] = ACTIONS(5333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHchapter] = ACTIONS(5333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddchap] = ACTIONS(5333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsection] = ACTIONS(5333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddsec] = ACTIONS(5333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHparagraph] = ACTIONS(5333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHitem] = ACTIONS(5333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [anon_sym_RBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASHbegin] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), - }, - [810] = { - [ts_builtin_sym_end] = ACTIONS(5335), - [sym_command_name] = ACTIONS(5337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_BSLASHpart] = ACTIONS(5337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddpart] = ACTIONS(5337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHchapter] = ACTIONS(5337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddchap] = ACTIONS(5337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsection] = ACTIONS(5337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddsec] = ACTIONS(5337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHparagraph] = ACTIONS(5337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHitem] = ACTIONS(5337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [anon_sym_RBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASHbegin] = ACTIONS(5337), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), - }, - [811] = { - [ts_builtin_sym_end] = ACTIONS(5339), - [sym_command_name] = ACTIONS(5341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_BSLASHpart] = ACTIONS(5341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddpart] = ACTIONS(5341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHchapter] = ACTIONS(5341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddchap] = ACTIONS(5341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsection] = ACTIONS(5341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddsec] = ACTIONS(5341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHparagraph] = ACTIONS(5341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHitem] = ACTIONS(5341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [anon_sym_RBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASHbegin] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), - }, - [812] = { - [ts_builtin_sym_end] = ACTIONS(5343), - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_BSLASHpart] = ACTIONS(5345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddpart] = ACTIONS(5345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHchapter] = ACTIONS(5345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddchap] = ACTIONS(5345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsection] = ACTIONS(5345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddsec] = ACTIONS(5345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHparagraph] = ACTIONS(5345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHitem] = ACTIONS(5345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [anon_sym_RBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASHbegin] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), - }, - [813] = { - [ts_builtin_sym_end] = ACTIONS(5347), - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_BSLASHpart] = ACTIONS(5349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddpart] = ACTIONS(5349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHchapter] = ACTIONS(5349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddchap] = ACTIONS(5349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsection] = ACTIONS(5349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddsec] = ACTIONS(5349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHparagraph] = ACTIONS(5349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHitem] = ACTIONS(5349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [anon_sym_RBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASHbegin] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), - }, - [814] = { - [ts_builtin_sym_end] = ACTIONS(5351), - [sym_command_name] = ACTIONS(5353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_BSLASHpart] = ACTIONS(5353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddpart] = ACTIONS(5353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHchapter] = ACTIONS(5353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddchap] = ACTIONS(5353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsection] = ACTIONS(5353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddsec] = ACTIONS(5353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHparagraph] = ACTIONS(5353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHitem] = ACTIONS(5353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [anon_sym_RBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASHbegin] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), - }, - [815] = { - [ts_builtin_sym_end] = ACTIONS(5355), - [sym_command_name] = ACTIONS(5357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_BSLASHpart] = ACTIONS(5357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddpart] = ACTIONS(5357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHchapter] = ACTIONS(5357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddchap] = ACTIONS(5357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsection] = ACTIONS(5357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddsec] = ACTIONS(5357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHparagraph] = ACTIONS(5357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHitem] = ACTIONS(5357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_RBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASHbegin] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), - }, - [816] = { - [ts_builtin_sym_end] = ACTIONS(5359), - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_BSLASHpart] = ACTIONS(5361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddpart] = ACTIONS(5361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHchapter] = ACTIONS(5361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddchap] = ACTIONS(5361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsection] = ACTIONS(5361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddsec] = ACTIONS(5361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHparagraph] = ACTIONS(5361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHitem] = ACTIONS(5361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [anon_sym_RBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASHbegin] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - }, - [817] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1733), - [sym_operator] = STATE(1509), - [sym_key_value_pair] = STATE(1763), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5363), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [818] = { - [ts_builtin_sym_end] = ACTIONS(5365), - [sym_command_name] = ACTIONS(5367), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5367), - [anon_sym_LPAREN] = ACTIONS(5365), - [anon_sym_RPAREN] = ACTIONS(5365), - [anon_sym_LBRACK] = ACTIONS(5365), - [anon_sym_RBRACK] = ACTIONS(5365), - [anon_sym_COMMA] = ACTIONS(5365), - [anon_sym_EQ] = ACTIONS(5365), - [anon_sym_BSLASHpart] = ACTIONS(5367), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddpart] = ACTIONS(5367), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5365), - [anon_sym_BSLASHchapter] = ACTIONS(5367), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddchap] = ACTIONS(5367), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsection] = ACTIONS(5367), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddsec] = ACTIONS(5367), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubsection] = ACTIONS(5367), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5367), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHparagraph] = ACTIONS(5367), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5367), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5365), - [anon_sym_BSLASHitem] = ACTIONS(5367), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5365), - [anon_sym_LBRACE] = ACTIONS(5365), - [anon_sym_RBRACE] = ACTIONS(5365), - [sym_word] = ACTIONS(5367), - [sym_placeholder] = ACTIONS(5365), - [anon_sym_PLUS] = ACTIONS(5367), - [anon_sym_DASH] = ACTIONS(5367), - [anon_sym_STAR] = ACTIONS(5367), - [anon_sym_SLASH] = ACTIONS(5367), - [anon_sym_CARET] = ACTIONS(5367), - [anon_sym__] = ACTIONS(5367), - [anon_sym_LT] = ACTIONS(5367), - [anon_sym_GT] = ACTIONS(5367), - [anon_sym_BANG] = ACTIONS(5367), - [anon_sym_PIPE] = ACTIONS(5367), - [anon_sym_COLON] = ACTIONS(5367), - [anon_sym_SQUOTE] = ACTIONS(5367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5365), - [anon_sym_DOLLAR] = ACTIONS(5367), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5365), - [anon_sym_BSLASHbegin] = ACTIONS(5367), - [anon_sym_BSLASHusepackage] = ACTIONS(5367), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5367), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5367), - [anon_sym_BSLASHinclude] = ACTIONS(5367), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5367), - [anon_sym_BSLASHinput] = ACTIONS(5367), - [anon_sym_BSLASHsubfile] = ACTIONS(5367), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5367), - [anon_sym_BSLASHbibliography] = ACTIONS(5367), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5367), - [anon_sym_BSLASHincludesvg] = ACTIONS(5367), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5367), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5367), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5367), - [anon_sym_BSLASHimport] = ACTIONS(5367), - [anon_sym_BSLASHsubimport] = ACTIONS(5367), - [anon_sym_BSLASHinputfrom] = ACTIONS(5367), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5367), - [anon_sym_BSLASHincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHcaption] = ACTIONS(5367), - [anon_sym_BSLASHcite] = ACTIONS(5367), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCite] = ACTIONS(5367), - [anon_sym_BSLASHnocite] = ACTIONS(5367), - [anon_sym_BSLASHcitet] = ACTIONS(5367), - [anon_sym_BSLASHcitep] = ACTIONS(5367), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor] = ACTIONS(5367), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5367), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle] = ACTIONS(5367), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteyear] = ACTIONS(5367), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitedate] = ACTIONS(5367), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteurl] = ACTIONS(5367), - [anon_sym_BSLASHfullcite] = ACTIONS(5367), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5367), - [anon_sym_BSLASHcitealt] = ACTIONS(5367), - [anon_sym_BSLASHcitealp] = ACTIONS(5367), - [anon_sym_BSLASHcitetext] = ACTIONS(5367), - [anon_sym_BSLASHparencite] = ACTIONS(5367), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHParencite] = ACTIONS(5367), - [anon_sym_BSLASHfootcite] = ACTIONS(5367), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5367), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5367), - [anon_sym_BSLASHtextcite] = ACTIONS(5367), - [anon_sym_BSLASHTextcite] = ACTIONS(5367), - [anon_sym_BSLASHsmartcite] = ACTIONS(5367), - [anon_sym_BSLASHSmartcite] = ACTIONS(5367), - [anon_sym_BSLASHsupercite] = ACTIONS(5367), - [anon_sym_BSLASHautocite] = ACTIONS(5367), - [anon_sym_BSLASHAutocite] = ACTIONS(5367), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHvolcite] = ACTIONS(5367), - [anon_sym_BSLASHVolcite] = ACTIONS(5367), - [anon_sym_BSLASHpvolcite] = ACTIONS(5367), - [anon_sym_BSLASHPvolcite] = ACTIONS(5367), - [anon_sym_BSLASHfvolcite] = ACTIONS(5367), - [anon_sym_BSLASHftvolcite] = ACTIONS(5367), - [anon_sym_BSLASHsvolcite] = ACTIONS(5367), - [anon_sym_BSLASHSvolcite] = ACTIONS(5367), - [anon_sym_BSLASHtvolcite] = ACTIONS(5367), - [anon_sym_BSLASHTvolcite] = ACTIONS(5367), - [anon_sym_BSLASHavolcite] = ACTIONS(5367), - [anon_sym_BSLASHAvolcite] = ACTIONS(5367), - [anon_sym_BSLASHnotecite] = ACTIONS(5367), - [anon_sym_BSLASHNotecite] = ACTIONS(5367), - [anon_sym_BSLASHpnotecite] = ACTIONS(5367), - [anon_sym_BSLASHPnotecite] = ACTIONS(5367), - [anon_sym_BSLASHfnotecite] = ACTIONS(5367), - [anon_sym_BSLASHlabel] = ACTIONS(5367), - [anon_sym_BSLASHref] = ACTIONS(5367), - [anon_sym_BSLASHeqref] = ACTIONS(5367), - [anon_sym_BSLASHvref] = ACTIONS(5367), - [anon_sym_BSLASHVref] = ACTIONS(5367), - [anon_sym_BSLASHautoref] = ACTIONS(5367), - [anon_sym_BSLASHpageref] = ACTIONS(5367), - [anon_sym_BSLASHcref] = ACTIONS(5367), - [anon_sym_BSLASHCref] = ACTIONS(5367), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnameCref] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHlabelcref] = ACTIONS(5367), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange] = ACTIONS(5367), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnewlabel] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5367), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5367), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5367), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5365), - [anon_sym_BSLASHdef] = ACTIONS(5367), - [anon_sym_BSLASHlet] = ACTIONS(5367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5367), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5367), - [anon_sym_BSLASHgls] = ACTIONS(5367), - [anon_sym_BSLASHGls] = ACTIONS(5367), - [anon_sym_BSLASHGLS] = ACTIONS(5367), - [anon_sym_BSLASHglspl] = ACTIONS(5367), - [anon_sym_BSLASHGlspl] = ACTIONS(5367), - [anon_sym_BSLASHGLSpl] = ACTIONS(5367), - [anon_sym_BSLASHglsdisp] = ACTIONS(5367), - [anon_sym_BSLASHglslink] = ACTIONS(5367), - [anon_sym_BSLASHglstext] = ACTIONS(5367), - [anon_sym_BSLASHGlstext] = ACTIONS(5367), - [anon_sym_BSLASHGLStext] = ACTIONS(5367), - [anon_sym_BSLASHglsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5367), - [anon_sym_BSLASHglsplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSplural] = ACTIONS(5367), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHglsname] = ACTIONS(5367), - [anon_sym_BSLASHGlsname] = ACTIONS(5367), - [anon_sym_BSLASHGLSname] = ACTIONS(5367), - [anon_sym_BSLASHglssymbol] = ACTIONS(5367), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5367), - [anon_sym_BSLASHglsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5367), - [anon_sym_BSLASHglsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5367), - [anon_sym_BSLASHglsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5367), - [anon_sym_BSLASHglsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5367), - [anon_sym_BSLASHglsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5367), - [anon_sym_BSLASHnewacronym] = ACTIONS(5367), - [anon_sym_BSLASHacrshort] = ACTIONS(5367), - [anon_sym_BSLASHAcrshort] = ACTIONS(5367), - [anon_sym_BSLASHACRshort] = ACTIONS(5367), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5367), - [anon_sym_BSLASHacrlong] = ACTIONS(5367), - [anon_sym_BSLASHAcrlong] = ACTIONS(5367), - [anon_sym_BSLASHACRlong] = ACTIONS(5367), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5367), - [anon_sym_BSLASHacrfull] = ACTIONS(5367), - [anon_sym_BSLASHAcrfull] = ACTIONS(5367), - [anon_sym_BSLASHACRfull] = ACTIONS(5367), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5367), - [anon_sym_BSLASHacs] = ACTIONS(5367), - [anon_sym_BSLASHAcs] = ACTIONS(5367), - [anon_sym_BSLASHacsp] = ACTIONS(5367), - [anon_sym_BSLASHAcsp] = ACTIONS(5367), - [anon_sym_BSLASHacl] = ACTIONS(5367), - [anon_sym_BSLASHAcl] = ACTIONS(5367), - [anon_sym_BSLASHaclp] = ACTIONS(5367), - [anon_sym_BSLASHAclp] = ACTIONS(5367), - [anon_sym_BSLASHacf] = ACTIONS(5367), - [anon_sym_BSLASHAcf] = ACTIONS(5367), - [anon_sym_BSLASHacfp] = ACTIONS(5367), - [anon_sym_BSLASHAcfp] = ACTIONS(5367), - [anon_sym_BSLASHac] = ACTIONS(5367), - [anon_sym_BSLASHAc] = ACTIONS(5367), - [anon_sym_BSLASHacp] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5367), - [anon_sym_BSLASHcolor] = ACTIONS(5367), - [anon_sym_BSLASHcolorbox] = ACTIONS(5367), - [anon_sym_BSLASHtextcolor] = ACTIONS(5367), - [anon_sym_BSLASHpagecolor] = ACTIONS(5367), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5367), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5367), - }, - [819] = { - [ts_builtin_sym_end] = ACTIONS(5369), - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_BSLASHpart] = ACTIONS(5371), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddpart] = ACTIONS(5371), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHchapter] = ACTIONS(5371), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddchap] = ACTIONS(5371), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsection] = ACTIONS(5371), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddsec] = ACTIONS(5371), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHparagraph] = ACTIONS(5371), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5371), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHitem] = ACTIONS(5371), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [anon_sym_RBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASHbegin] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), - }, - [820] = { - [sym_brack_group] = STATE(1214), - [sym_command_name] = ACTIONS(5373), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5373), - [anon_sym_LPAREN] = ACTIONS(5375), - [anon_sym_RPAREN] = ACTIONS(5375), - [anon_sym_LBRACK] = ACTIONS(5377), - [anon_sym_RBRACK] = ACTIONS(5375), - [anon_sym_COMMA] = ACTIONS(5375), - [anon_sym_EQ] = ACTIONS(5375), - [anon_sym_BSLASHpart] = ACTIONS(5373), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5375), - [anon_sym_BSLASHaddpart] = ACTIONS(5373), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5375), - [anon_sym_BSLASHchapter] = ACTIONS(5373), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5375), - [anon_sym_BSLASHaddchap] = ACTIONS(5373), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5375), - [anon_sym_BSLASHsection] = ACTIONS(5373), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5375), - [anon_sym_BSLASHaddsec] = ACTIONS(5373), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5375), - [anon_sym_BSLASHsubsection] = ACTIONS(5373), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5375), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5373), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5375), - [anon_sym_BSLASHparagraph] = ACTIONS(5373), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5375), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5373), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5375), - [anon_sym_BSLASHitem] = ACTIONS(5373), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5375), - [anon_sym_LBRACE] = ACTIONS(5375), - [sym_word] = ACTIONS(5373), - [sym_placeholder] = ACTIONS(5375), - [anon_sym_PLUS] = ACTIONS(5373), - [anon_sym_DASH] = ACTIONS(5373), - [anon_sym_STAR] = ACTIONS(5373), - [anon_sym_SLASH] = ACTIONS(5373), - [anon_sym_CARET] = ACTIONS(5373), - [anon_sym__] = ACTIONS(5373), - [anon_sym_LT] = ACTIONS(5373), - [anon_sym_GT] = ACTIONS(5373), - [anon_sym_BANG] = ACTIONS(5373), - [anon_sym_PIPE] = ACTIONS(5373), - [anon_sym_COLON] = ACTIONS(5373), - [anon_sym_SQUOTE] = ACTIONS(5373), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5375), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5375), - [anon_sym_DOLLAR] = ACTIONS(5373), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5375), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5375), - [anon_sym_BSLASHbegin] = ACTIONS(5373), - [anon_sym_BSLASHend] = ACTIONS(5373), - [anon_sym_BSLASHusepackage] = ACTIONS(5373), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5373), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5373), - [anon_sym_BSLASHinclude] = ACTIONS(5373), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5373), - [anon_sym_BSLASHinput] = ACTIONS(5373), - [anon_sym_BSLASHsubfile] = ACTIONS(5373), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5373), - [anon_sym_BSLASHbibliography] = ACTIONS(5373), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5373), - [anon_sym_BSLASHincludesvg] = ACTIONS(5373), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5373), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5373), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5373), - [anon_sym_BSLASHimport] = ACTIONS(5373), - [anon_sym_BSLASHsubimport] = ACTIONS(5373), - [anon_sym_BSLASHinputfrom] = ACTIONS(5373), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5373), - [anon_sym_BSLASHincludefrom] = ACTIONS(5373), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5373), - [anon_sym_BSLASHcaption] = ACTIONS(5373), - [anon_sym_BSLASHcite] = ACTIONS(5373), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5375), - [anon_sym_BSLASHCite] = ACTIONS(5373), - [anon_sym_BSLASHnocite] = ACTIONS(5373), - [anon_sym_BSLASHcitet] = ACTIONS(5373), - [anon_sym_BSLASHcitep] = ACTIONS(5373), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5375), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5375), - [anon_sym_BSLASHciteauthor] = ACTIONS(5373), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5375), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5373), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5375), - [anon_sym_BSLASHcitetitle] = ACTIONS(5373), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5375), - [anon_sym_BSLASHciteyear] = ACTIONS(5373), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5375), - [anon_sym_BSLASHcitedate] = ACTIONS(5373), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5375), - [anon_sym_BSLASHciteurl] = ACTIONS(5373), - [anon_sym_BSLASHfullcite] = ACTIONS(5373), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5373), - [anon_sym_BSLASHcitealt] = ACTIONS(5373), - [anon_sym_BSLASHcitealp] = ACTIONS(5373), - [anon_sym_BSLASHcitetext] = ACTIONS(5373), - [anon_sym_BSLASHparencite] = ACTIONS(5373), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5375), - [anon_sym_BSLASHParencite] = ACTIONS(5373), - [anon_sym_BSLASHfootcite] = ACTIONS(5373), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5373), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5373), - [anon_sym_BSLASHtextcite] = ACTIONS(5373), - [anon_sym_BSLASHTextcite] = ACTIONS(5373), - [anon_sym_BSLASHsmartcite] = ACTIONS(5373), - [anon_sym_BSLASHSmartcite] = ACTIONS(5373), - [anon_sym_BSLASHsupercite] = ACTIONS(5373), - [anon_sym_BSLASHautocite] = ACTIONS(5373), - [anon_sym_BSLASHAutocite] = ACTIONS(5373), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5375), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5375), - [anon_sym_BSLASHvolcite] = ACTIONS(5373), - [anon_sym_BSLASHVolcite] = ACTIONS(5373), - [anon_sym_BSLASHpvolcite] = ACTIONS(5373), - [anon_sym_BSLASHPvolcite] = ACTIONS(5373), - [anon_sym_BSLASHfvolcite] = ACTIONS(5373), - [anon_sym_BSLASHftvolcite] = ACTIONS(5373), - [anon_sym_BSLASHsvolcite] = ACTIONS(5373), - [anon_sym_BSLASHSvolcite] = ACTIONS(5373), - [anon_sym_BSLASHtvolcite] = ACTIONS(5373), - [anon_sym_BSLASHTvolcite] = ACTIONS(5373), - [anon_sym_BSLASHavolcite] = ACTIONS(5373), - [anon_sym_BSLASHAvolcite] = ACTIONS(5373), - [anon_sym_BSLASHnotecite] = ACTIONS(5373), - [anon_sym_BSLASHNotecite] = ACTIONS(5373), - [anon_sym_BSLASHpnotecite] = ACTIONS(5373), - [anon_sym_BSLASHPnotecite] = ACTIONS(5373), - [anon_sym_BSLASHfnotecite] = ACTIONS(5373), - [anon_sym_BSLASHlabel] = ACTIONS(5373), - [anon_sym_BSLASHref] = ACTIONS(5373), - [anon_sym_BSLASHeqref] = ACTIONS(5373), - [anon_sym_BSLASHvref] = ACTIONS(5373), - [anon_sym_BSLASHVref] = ACTIONS(5373), - [anon_sym_BSLASHautoref] = ACTIONS(5373), - [anon_sym_BSLASHpageref] = ACTIONS(5373), - [anon_sym_BSLASHcref] = ACTIONS(5373), - [anon_sym_BSLASHCref] = ACTIONS(5373), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5375), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5375), - [anon_sym_BSLASHnamecref] = ACTIONS(5373), - [anon_sym_BSLASHnameCref] = ACTIONS(5373), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5373), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5373), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5373), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5373), - [anon_sym_BSLASHlabelcref] = ACTIONS(5373), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5373), - [anon_sym_BSLASHcrefrange] = ACTIONS(5373), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5375), - [anon_sym_BSLASHCrefrange] = ACTIONS(5373), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5375), - [anon_sym_BSLASHnewlabel] = ACTIONS(5373), - [anon_sym_BSLASHnewcommand] = ACTIONS(5373), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5375), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5373), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5375), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5373), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5375), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5373), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5375), - [anon_sym_BSLASHdef] = ACTIONS(5373), - [anon_sym_BSLASHlet] = ACTIONS(5373), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5373), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5373), - [anon_sym_BSLASHgls] = ACTIONS(5373), - [anon_sym_BSLASHGls] = ACTIONS(5373), - [anon_sym_BSLASHGLS] = ACTIONS(5373), - [anon_sym_BSLASHglspl] = ACTIONS(5373), - [anon_sym_BSLASHGlspl] = ACTIONS(5373), - [anon_sym_BSLASHGLSpl] = ACTIONS(5373), - [anon_sym_BSLASHglsdisp] = ACTIONS(5373), - [anon_sym_BSLASHglslink] = ACTIONS(5373), - [anon_sym_BSLASHglstext] = ACTIONS(5373), - [anon_sym_BSLASHGlstext] = ACTIONS(5373), - [anon_sym_BSLASHGLStext] = ACTIONS(5373), - [anon_sym_BSLASHglsfirst] = ACTIONS(5373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5373), - [anon_sym_BSLASHglsplural] = ACTIONS(5373), - [anon_sym_BSLASHGlsplural] = ACTIONS(5373), - [anon_sym_BSLASHGLSplural] = ACTIONS(5373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5373), - [anon_sym_BSLASHglsname] = ACTIONS(5373), - [anon_sym_BSLASHGlsname] = ACTIONS(5373), - [anon_sym_BSLASHGLSname] = ACTIONS(5373), - [anon_sym_BSLASHglssymbol] = ACTIONS(5373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5373), - [anon_sym_BSLASHglsdesc] = ACTIONS(5373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5373), - [anon_sym_BSLASHglsuseri] = ACTIONS(5373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5373), - [anon_sym_BSLASHglsuserii] = ACTIONS(5373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5373), - [anon_sym_BSLASHglsuserv] = ACTIONS(5373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5373), - [anon_sym_BSLASHglsuservi] = ACTIONS(5373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5373), - [anon_sym_BSLASHnewacronym] = ACTIONS(5373), - [anon_sym_BSLASHacrshort] = ACTIONS(5373), - [anon_sym_BSLASHAcrshort] = ACTIONS(5373), - [anon_sym_BSLASHACRshort] = ACTIONS(5373), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5373), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5373), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5373), - [anon_sym_BSLASHacrlong] = ACTIONS(5373), - [anon_sym_BSLASHAcrlong] = ACTIONS(5373), - [anon_sym_BSLASHACRlong] = ACTIONS(5373), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5373), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5373), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5373), - [anon_sym_BSLASHacrfull] = ACTIONS(5373), - [anon_sym_BSLASHAcrfull] = ACTIONS(5373), - [anon_sym_BSLASHACRfull] = ACTIONS(5373), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5373), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5373), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5373), - [anon_sym_BSLASHacs] = ACTIONS(5373), - [anon_sym_BSLASHAcs] = ACTIONS(5373), - [anon_sym_BSLASHacsp] = ACTIONS(5373), - [anon_sym_BSLASHAcsp] = ACTIONS(5373), - [anon_sym_BSLASHacl] = ACTIONS(5373), - [anon_sym_BSLASHAcl] = ACTIONS(5373), - [anon_sym_BSLASHaclp] = ACTIONS(5373), - [anon_sym_BSLASHAclp] = ACTIONS(5373), - [anon_sym_BSLASHacf] = ACTIONS(5373), - [anon_sym_BSLASHAcf] = ACTIONS(5373), - [anon_sym_BSLASHacfp] = ACTIONS(5373), - [anon_sym_BSLASHAcfp] = ACTIONS(5373), - [anon_sym_BSLASHac] = ACTIONS(5373), - [anon_sym_BSLASHAc] = ACTIONS(5373), - [anon_sym_BSLASHacp] = ACTIONS(5373), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5373), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5373), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5373), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5373), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5373), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5373), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5373), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5373), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5373), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5373), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5373), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5373), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5373), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5373), - [anon_sym_BSLASHcolor] = ACTIONS(5373), - [anon_sym_BSLASHcolorbox] = ACTIONS(5373), - [anon_sym_BSLASHtextcolor] = ACTIONS(5373), - [anon_sym_BSLASHpagecolor] = ACTIONS(5373), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5373), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5373), - }, - [821] = { - [ts_builtin_sym_end] = ACTIONS(5379), - [sym_command_name] = ACTIONS(5381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5381), - [anon_sym_LPAREN] = ACTIONS(5379), - [anon_sym_RPAREN] = ACTIONS(5379), - [anon_sym_LBRACK] = ACTIONS(5379), - [anon_sym_RBRACK] = ACTIONS(5379), - [anon_sym_COMMA] = ACTIONS(5379), - [anon_sym_EQ] = ACTIONS(5379), - [anon_sym_BSLASHpart] = ACTIONS(5381), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddpart] = ACTIONS(5381), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5379), - [anon_sym_BSLASHchapter] = ACTIONS(5381), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddchap] = ACTIONS(5381), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsection] = ACTIONS(5381), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddsec] = ACTIONS(5381), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubsection] = ACTIONS(5381), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5381), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHparagraph] = ACTIONS(5381), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5381), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5379), - [anon_sym_BSLASHitem] = ACTIONS(5381), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5379), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5379), - [sym_word] = ACTIONS(5381), - [sym_placeholder] = ACTIONS(5379), - [anon_sym_PLUS] = ACTIONS(5381), - [anon_sym_DASH] = ACTIONS(5381), - [anon_sym_STAR] = ACTIONS(5381), - [anon_sym_SLASH] = ACTIONS(5381), - [anon_sym_CARET] = ACTIONS(5381), - [anon_sym__] = ACTIONS(5381), - [anon_sym_LT] = ACTIONS(5381), - [anon_sym_GT] = ACTIONS(5381), - [anon_sym_BANG] = ACTIONS(5381), - [anon_sym_PIPE] = ACTIONS(5381), - [anon_sym_COLON] = ACTIONS(5381), - [anon_sym_SQUOTE] = ACTIONS(5381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5379), - [anon_sym_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5379), - [anon_sym_BSLASHbegin] = ACTIONS(5381), - [anon_sym_BSLASHusepackage] = ACTIONS(5381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5381), - [anon_sym_BSLASHinclude] = ACTIONS(5381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5381), - [anon_sym_BSLASHinput] = ACTIONS(5381), - [anon_sym_BSLASHsubfile] = ACTIONS(5381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5381), - [anon_sym_BSLASHbibliography] = ACTIONS(5381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5381), - [anon_sym_BSLASHincludesvg] = ACTIONS(5381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5381), - [anon_sym_BSLASHimport] = ACTIONS(5381), - [anon_sym_BSLASHsubimport] = ACTIONS(5381), - [anon_sym_BSLASHinputfrom] = ACTIONS(5381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5381), - [anon_sym_BSLASHincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHcaption] = ACTIONS(5381), - [anon_sym_BSLASHcite] = ACTIONS(5381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCite] = ACTIONS(5381), - [anon_sym_BSLASHnocite] = ACTIONS(5381), - [anon_sym_BSLASHcitet] = ACTIONS(5381), - [anon_sym_BSLASHcitep] = ACTIONS(5381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteyear] = ACTIONS(5381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitedate] = ACTIONS(5381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteurl] = ACTIONS(5381), - [anon_sym_BSLASHfullcite] = ACTIONS(5381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5381), - [anon_sym_BSLASHcitealt] = ACTIONS(5381), - [anon_sym_BSLASHcitealp] = ACTIONS(5381), - [anon_sym_BSLASHcitetext] = ACTIONS(5381), - [anon_sym_BSLASHparencite] = ACTIONS(5381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHParencite] = ACTIONS(5381), - [anon_sym_BSLASHfootcite] = ACTIONS(5381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5381), - [anon_sym_BSLASHtextcite] = ACTIONS(5381), - [anon_sym_BSLASHTextcite] = ACTIONS(5381), - [anon_sym_BSLASHsmartcite] = ACTIONS(5381), - [anon_sym_BSLASHSmartcite] = ACTIONS(5381), - [anon_sym_BSLASHsupercite] = ACTIONS(5381), - [anon_sym_BSLASHautocite] = ACTIONS(5381), - [anon_sym_BSLASHAutocite] = ACTIONS(5381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHvolcite] = ACTIONS(5381), - [anon_sym_BSLASHVolcite] = ACTIONS(5381), - [anon_sym_BSLASHpvolcite] = ACTIONS(5381), - [anon_sym_BSLASHPvolcite] = ACTIONS(5381), - [anon_sym_BSLASHfvolcite] = ACTIONS(5381), - [anon_sym_BSLASHftvolcite] = ACTIONS(5381), - [anon_sym_BSLASHsvolcite] = ACTIONS(5381), - [anon_sym_BSLASHSvolcite] = ACTIONS(5381), - [anon_sym_BSLASHtvolcite] = ACTIONS(5381), - [anon_sym_BSLASHTvolcite] = ACTIONS(5381), - [anon_sym_BSLASHavolcite] = ACTIONS(5381), - [anon_sym_BSLASHAvolcite] = ACTIONS(5381), - [anon_sym_BSLASHnotecite] = ACTIONS(5381), - [anon_sym_BSLASHNotecite] = ACTIONS(5381), - [anon_sym_BSLASHpnotecite] = ACTIONS(5381), - [anon_sym_BSLASHPnotecite] = ACTIONS(5381), - [anon_sym_BSLASHfnotecite] = ACTIONS(5381), - [anon_sym_BSLASHlabel] = ACTIONS(5381), - [anon_sym_BSLASHref] = ACTIONS(5381), - [anon_sym_BSLASHeqref] = ACTIONS(5381), - [anon_sym_BSLASHvref] = ACTIONS(5381), - [anon_sym_BSLASHVref] = ACTIONS(5381), - [anon_sym_BSLASHautoref] = ACTIONS(5381), - [anon_sym_BSLASHpageref] = ACTIONS(5381), - [anon_sym_BSLASHcref] = ACTIONS(5381), - [anon_sym_BSLASHCref] = ACTIONS(5381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnameCref] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHlabelcref] = ACTIONS(5381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnewlabel] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5379), - [anon_sym_BSLASHdef] = ACTIONS(5381), - [anon_sym_BSLASHlet] = ACTIONS(5381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5381), - [anon_sym_BSLASHgls] = ACTIONS(5381), - [anon_sym_BSLASHGls] = ACTIONS(5381), - [anon_sym_BSLASHGLS] = ACTIONS(5381), - [anon_sym_BSLASHglspl] = ACTIONS(5381), - [anon_sym_BSLASHGlspl] = ACTIONS(5381), - [anon_sym_BSLASHGLSpl] = ACTIONS(5381), - [anon_sym_BSLASHglsdisp] = ACTIONS(5381), - [anon_sym_BSLASHglslink] = ACTIONS(5381), - [anon_sym_BSLASHglstext] = ACTIONS(5381), - [anon_sym_BSLASHGlstext] = ACTIONS(5381), - [anon_sym_BSLASHGLStext] = ACTIONS(5381), - [anon_sym_BSLASHglsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5381), - [anon_sym_BSLASHglsplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSplural] = ACTIONS(5381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHglsname] = ACTIONS(5381), - [anon_sym_BSLASHGlsname] = ACTIONS(5381), - [anon_sym_BSLASHGLSname] = ACTIONS(5381), - [anon_sym_BSLASHglssymbol] = ACTIONS(5381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5381), - [anon_sym_BSLASHglsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5381), - [anon_sym_BSLASHglsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5381), - [anon_sym_BSLASHglsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5381), - [anon_sym_BSLASHglsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5381), - [anon_sym_BSLASHglsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5381), - [anon_sym_BSLASHnewacronym] = ACTIONS(5381), - [anon_sym_BSLASHacrshort] = ACTIONS(5381), - [anon_sym_BSLASHAcrshort] = ACTIONS(5381), - [anon_sym_BSLASHACRshort] = ACTIONS(5381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5381), - [anon_sym_BSLASHacrlong] = ACTIONS(5381), - [anon_sym_BSLASHAcrlong] = ACTIONS(5381), - [anon_sym_BSLASHACRlong] = ACTIONS(5381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5381), - [anon_sym_BSLASHacrfull] = ACTIONS(5381), - [anon_sym_BSLASHAcrfull] = ACTIONS(5381), - [anon_sym_BSLASHACRfull] = ACTIONS(5381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5381), - [anon_sym_BSLASHacs] = ACTIONS(5381), - [anon_sym_BSLASHAcs] = ACTIONS(5381), - [anon_sym_BSLASHacsp] = ACTIONS(5381), - [anon_sym_BSLASHAcsp] = ACTIONS(5381), - [anon_sym_BSLASHacl] = ACTIONS(5381), - [anon_sym_BSLASHAcl] = ACTIONS(5381), - [anon_sym_BSLASHaclp] = ACTIONS(5381), - [anon_sym_BSLASHAclp] = ACTIONS(5381), - [anon_sym_BSLASHacf] = ACTIONS(5381), - [anon_sym_BSLASHAcf] = ACTIONS(5381), - [anon_sym_BSLASHacfp] = ACTIONS(5381), - [anon_sym_BSLASHAcfp] = ACTIONS(5381), - [anon_sym_BSLASHac] = ACTIONS(5381), - [anon_sym_BSLASHAc] = ACTIONS(5381), - [anon_sym_BSLASHacp] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5381), - [anon_sym_BSLASHcolor] = ACTIONS(5381), - [anon_sym_BSLASHcolorbox] = ACTIONS(5381), - [anon_sym_BSLASHtextcolor] = ACTIONS(5381), - [anon_sym_BSLASHpagecolor] = ACTIONS(5381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5381), - }, - [822] = { - [ts_builtin_sym_end] = ACTIONS(5383), - [sym_command_name] = ACTIONS(5385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5385), - [anon_sym_LPAREN] = ACTIONS(5383), - [anon_sym_RPAREN] = ACTIONS(5383), - [anon_sym_LBRACK] = ACTIONS(5383), - [anon_sym_RBRACK] = ACTIONS(5383), - [anon_sym_COMMA] = ACTIONS(5383), - [anon_sym_EQ] = ACTIONS(5383), - [anon_sym_BSLASHpart] = ACTIONS(5385), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddpart] = ACTIONS(5385), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5383), - [anon_sym_BSLASHchapter] = ACTIONS(5385), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddchap] = ACTIONS(5385), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsection] = ACTIONS(5385), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddsec] = ACTIONS(5385), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubsection] = ACTIONS(5385), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5385), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHparagraph] = ACTIONS(5385), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5385), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5383), - [anon_sym_BSLASHitem] = ACTIONS(5385), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5383), - [anon_sym_LBRACE] = ACTIONS(5383), - [anon_sym_RBRACE] = ACTIONS(5383), - [sym_word] = ACTIONS(5385), - [sym_placeholder] = ACTIONS(5383), - [anon_sym_PLUS] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5385), - [anon_sym_SLASH] = ACTIONS(5385), - [anon_sym_CARET] = ACTIONS(5385), - [anon_sym__] = ACTIONS(5385), - [anon_sym_LT] = ACTIONS(5385), - [anon_sym_GT] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_PIPE] = ACTIONS(5385), - [anon_sym_COLON] = ACTIONS(5385), - [anon_sym_SQUOTE] = ACTIONS(5385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5383), - [anon_sym_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5383), - [anon_sym_BSLASHbegin] = ACTIONS(5385), - [anon_sym_BSLASHusepackage] = ACTIONS(5385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5385), - [anon_sym_BSLASHinclude] = ACTIONS(5385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5385), - [anon_sym_BSLASHinput] = ACTIONS(5385), - [anon_sym_BSLASHsubfile] = ACTIONS(5385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5385), - [anon_sym_BSLASHbibliography] = ACTIONS(5385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5385), - [anon_sym_BSLASHincludesvg] = ACTIONS(5385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5385), - [anon_sym_BSLASHimport] = ACTIONS(5385), - [anon_sym_BSLASHsubimport] = ACTIONS(5385), - [anon_sym_BSLASHinputfrom] = ACTIONS(5385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5385), - [anon_sym_BSLASHincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHcaption] = ACTIONS(5385), - [anon_sym_BSLASHcite] = ACTIONS(5385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCite] = ACTIONS(5385), - [anon_sym_BSLASHnocite] = ACTIONS(5385), - [anon_sym_BSLASHcitet] = ACTIONS(5385), - [anon_sym_BSLASHcitep] = ACTIONS(5385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteyear] = ACTIONS(5385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitedate] = ACTIONS(5385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteurl] = ACTIONS(5385), - [anon_sym_BSLASHfullcite] = ACTIONS(5385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5385), - [anon_sym_BSLASHcitealt] = ACTIONS(5385), - [anon_sym_BSLASHcitealp] = ACTIONS(5385), - [anon_sym_BSLASHcitetext] = ACTIONS(5385), - [anon_sym_BSLASHparencite] = ACTIONS(5385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHParencite] = ACTIONS(5385), - [anon_sym_BSLASHfootcite] = ACTIONS(5385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5385), - [anon_sym_BSLASHtextcite] = ACTIONS(5385), - [anon_sym_BSLASHTextcite] = ACTIONS(5385), - [anon_sym_BSLASHsmartcite] = ACTIONS(5385), - [anon_sym_BSLASHSmartcite] = ACTIONS(5385), - [anon_sym_BSLASHsupercite] = ACTIONS(5385), - [anon_sym_BSLASHautocite] = ACTIONS(5385), - [anon_sym_BSLASHAutocite] = ACTIONS(5385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHvolcite] = ACTIONS(5385), - [anon_sym_BSLASHVolcite] = ACTIONS(5385), - [anon_sym_BSLASHpvolcite] = ACTIONS(5385), - [anon_sym_BSLASHPvolcite] = ACTIONS(5385), - [anon_sym_BSLASHfvolcite] = ACTIONS(5385), - [anon_sym_BSLASHftvolcite] = ACTIONS(5385), - [anon_sym_BSLASHsvolcite] = ACTIONS(5385), - [anon_sym_BSLASHSvolcite] = ACTIONS(5385), - [anon_sym_BSLASHtvolcite] = ACTIONS(5385), - [anon_sym_BSLASHTvolcite] = ACTIONS(5385), - [anon_sym_BSLASHavolcite] = ACTIONS(5385), - [anon_sym_BSLASHAvolcite] = ACTIONS(5385), - [anon_sym_BSLASHnotecite] = ACTIONS(5385), - [anon_sym_BSLASHNotecite] = ACTIONS(5385), - [anon_sym_BSLASHpnotecite] = ACTIONS(5385), - [anon_sym_BSLASHPnotecite] = ACTIONS(5385), - [anon_sym_BSLASHfnotecite] = ACTIONS(5385), - [anon_sym_BSLASHlabel] = ACTIONS(5385), - [anon_sym_BSLASHref] = ACTIONS(5385), - [anon_sym_BSLASHeqref] = ACTIONS(5385), - [anon_sym_BSLASHvref] = ACTIONS(5385), - [anon_sym_BSLASHVref] = ACTIONS(5385), - [anon_sym_BSLASHautoref] = ACTIONS(5385), - [anon_sym_BSLASHpageref] = ACTIONS(5385), - [anon_sym_BSLASHcref] = ACTIONS(5385), - [anon_sym_BSLASHCref] = ACTIONS(5385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnameCref] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHlabelcref] = ACTIONS(5385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnewlabel] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5383), - [anon_sym_BSLASHdef] = ACTIONS(5385), - [anon_sym_BSLASHlet] = ACTIONS(5385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5385), - [anon_sym_BSLASHgls] = ACTIONS(5385), - [anon_sym_BSLASHGls] = ACTIONS(5385), - [anon_sym_BSLASHGLS] = ACTIONS(5385), - [anon_sym_BSLASHglspl] = ACTIONS(5385), - [anon_sym_BSLASHGlspl] = ACTIONS(5385), - [anon_sym_BSLASHGLSpl] = ACTIONS(5385), - [anon_sym_BSLASHglsdisp] = ACTIONS(5385), - [anon_sym_BSLASHglslink] = ACTIONS(5385), - [anon_sym_BSLASHglstext] = ACTIONS(5385), - [anon_sym_BSLASHGlstext] = ACTIONS(5385), - [anon_sym_BSLASHGLStext] = ACTIONS(5385), - [anon_sym_BSLASHglsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5385), - [anon_sym_BSLASHglsplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSplural] = ACTIONS(5385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHglsname] = ACTIONS(5385), - [anon_sym_BSLASHGlsname] = ACTIONS(5385), - [anon_sym_BSLASHGLSname] = ACTIONS(5385), - [anon_sym_BSLASHglssymbol] = ACTIONS(5385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5385), - [anon_sym_BSLASHglsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5385), - [anon_sym_BSLASHglsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5385), - [anon_sym_BSLASHglsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5385), - [anon_sym_BSLASHglsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5385), - [anon_sym_BSLASHglsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5385), - [anon_sym_BSLASHnewacronym] = ACTIONS(5385), - [anon_sym_BSLASHacrshort] = ACTIONS(5385), - [anon_sym_BSLASHAcrshort] = ACTIONS(5385), - [anon_sym_BSLASHACRshort] = ACTIONS(5385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5385), - [anon_sym_BSLASHacrlong] = ACTIONS(5385), - [anon_sym_BSLASHAcrlong] = ACTIONS(5385), - [anon_sym_BSLASHACRlong] = ACTIONS(5385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5385), - [anon_sym_BSLASHacrfull] = ACTIONS(5385), - [anon_sym_BSLASHAcrfull] = ACTIONS(5385), - [anon_sym_BSLASHACRfull] = ACTIONS(5385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5385), - [anon_sym_BSLASHacs] = ACTIONS(5385), - [anon_sym_BSLASHAcs] = ACTIONS(5385), - [anon_sym_BSLASHacsp] = ACTIONS(5385), - [anon_sym_BSLASHAcsp] = ACTIONS(5385), - [anon_sym_BSLASHacl] = ACTIONS(5385), - [anon_sym_BSLASHAcl] = ACTIONS(5385), - [anon_sym_BSLASHaclp] = ACTIONS(5385), - [anon_sym_BSLASHAclp] = ACTIONS(5385), - [anon_sym_BSLASHacf] = ACTIONS(5385), - [anon_sym_BSLASHAcf] = ACTIONS(5385), - [anon_sym_BSLASHacfp] = ACTIONS(5385), - [anon_sym_BSLASHAcfp] = ACTIONS(5385), - [anon_sym_BSLASHac] = ACTIONS(5385), - [anon_sym_BSLASHAc] = ACTIONS(5385), - [anon_sym_BSLASHacp] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5385), - [anon_sym_BSLASHcolor] = ACTIONS(5385), - [anon_sym_BSLASHcolorbox] = ACTIONS(5385), - [anon_sym_BSLASHtextcolor] = ACTIONS(5385), - [anon_sym_BSLASHpagecolor] = ACTIONS(5385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5385), - }, - [823] = { - [sym_brack_group_text] = STATE(887), - [sym_command_name] = ACTIONS(4793), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4793), - [anon_sym_LPAREN] = ACTIONS(4791), - [anon_sym_RPAREN] = ACTIONS(4791), - [anon_sym_LBRACK] = ACTIONS(4963), - [anon_sym_RBRACK] = ACTIONS(4791), - [anon_sym_COMMA] = ACTIONS(4791), - [anon_sym_EQ] = ACTIONS(4791), - [anon_sym_BSLASHpart] = ACTIONS(4793), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddpart] = ACTIONS(4793), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4791), - [anon_sym_BSLASHchapter] = ACTIONS(4793), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddchap] = ACTIONS(4793), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsection] = ACTIONS(4793), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHaddsec] = ACTIONS(4793), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubsection] = ACTIONS(4793), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4793), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4791), - [anon_sym_BSLASHparagraph] = ACTIONS(4793), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4791), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4793), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4791), - [anon_sym_BSLASHitem] = ACTIONS(4793), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4791), - [anon_sym_LBRACE] = ACTIONS(4791), - [sym_word] = ACTIONS(4793), - [sym_placeholder] = ACTIONS(4791), - [anon_sym_PLUS] = ACTIONS(4793), - [anon_sym_DASH] = ACTIONS(4793), - [anon_sym_STAR] = ACTIONS(4793), - [anon_sym_SLASH] = ACTIONS(4793), - [anon_sym_CARET] = ACTIONS(4793), - [anon_sym__] = ACTIONS(4793), - [anon_sym_LT] = ACTIONS(4793), - [anon_sym_GT] = ACTIONS(4793), - [anon_sym_BANG] = ACTIONS(4793), - [anon_sym_PIPE] = ACTIONS(4793), - [anon_sym_COLON] = ACTIONS(4793), - [anon_sym_SQUOTE] = ACTIONS(4793), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4791), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4791), - [anon_sym_DOLLAR] = ACTIONS(4793), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4791), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4791), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4791), - [anon_sym_BSLASHbegin] = ACTIONS(4793), - [anon_sym_BSLASHusepackage] = ACTIONS(4793), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4793), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4793), - [anon_sym_BSLASHinclude] = ACTIONS(4793), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4793), - [anon_sym_BSLASHinput] = ACTIONS(4793), - [anon_sym_BSLASHsubfile] = ACTIONS(4793), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4793), - [anon_sym_BSLASHbibliography] = ACTIONS(4793), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4793), - [anon_sym_BSLASHincludesvg] = ACTIONS(4793), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4793), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4793), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4793), - [anon_sym_BSLASHimport] = ACTIONS(4793), - [anon_sym_BSLASHsubimport] = ACTIONS(4793), - [anon_sym_BSLASHinputfrom] = ACTIONS(4793), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4793), - [anon_sym_BSLASHincludefrom] = ACTIONS(4793), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4793), - [anon_sym_BSLASHcaption] = ACTIONS(4793), - [anon_sym_BSLASHcite] = ACTIONS(4793), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCite] = ACTIONS(4793), - [anon_sym_BSLASHnocite] = ACTIONS(4793), - [anon_sym_BSLASHcitet] = ACTIONS(4793), - [anon_sym_BSLASHcitep] = ACTIONS(4793), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteauthor] = ACTIONS(4793), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4793), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitetitle] = ACTIONS(4793), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteyear] = ACTIONS(4793), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4791), - [anon_sym_BSLASHcitedate] = ACTIONS(4793), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4791), - [anon_sym_BSLASHciteurl] = ACTIONS(4793), - [anon_sym_BSLASHfullcite] = ACTIONS(4793), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4793), - [anon_sym_BSLASHcitealt] = ACTIONS(4793), - [anon_sym_BSLASHcitealp] = ACTIONS(4793), - [anon_sym_BSLASHcitetext] = ACTIONS(4793), - [anon_sym_BSLASHparencite] = ACTIONS(4793), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHParencite] = ACTIONS(4793), - [anon_sym_BSLASHfootcite] = ACTIONS(4793), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4793), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4793), - [anon_sym_BSLASHtextcite] = ACTIONS(4793), - [anon_sym_BSLASHTextcite] = ACTIONS(4793), - [anon_sym_BSLASHsmartcite] = ACTIONS(4793), - [anon_sym_BSLASHSmartcite] = ACTIONS(4793), - [anon_sym_BSLASHsupercite] = ACTIONS(4793), - [anon_sym_BSLASHautocite] = ACTIONS(4793), - [anon_sym_BSLASHAutocite] = ACTIONS(4793), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4791), - [anon_sym_BSLASHvolcite] = ACTIONS(4793), - [anon_sym_BSLASHVolcite] = ACTIONS(4793), - [anon_sym_BSLASHpvolcite] = ACTIONS(4793), - [anon_sym_BSLASHPvolcite] = ACTIONS(4793), - [anon_sym_BSLASHfvolcite] = ACTIONS(4793), - [anon_sym_BSLASHftvolcite] = ACTIONS(4793), - [anon_sym_BSLASHsvolcite] = ACTIONS(4793), - [anon_sym_BSLASHSvolcite] = ACTIONS(4793), - [anon_sym_BSLASHtvolcite] = ACTIONS(4793), - [anon_sym_BSLASHTvolcite] = ACTIONS(4793), - [anon_sym_BSLASHavolcite] = ACTIONS(4793), - [anon_sym_BSLASHAvolcite] = ACTIONS(4793), - [anon_sym_BSLASHnotecite] = ACTIONS(4793), - [anon_sym_BSLASHNotecite] = ACTIONS(4793), - [anon_sym_BSLASHpnotecite] = ACTIONS(4793), - [anon_sym_BSLASHPnotecite] = ACTIONS(4793), - [anon_sym_BSLASHfnotecite] = ACTIONS(4793), - [anon_sym_BSLASHlabel] = ACTIONS(4793), - [anon_sym_BSLASHref] = ACTIONS(4793), - [anon_sym_BSLASHeqref] = ACTIONS(4793), - [anon_sym_BSLASHvref] = ACTIONS(4793), - [anon_sym_BSLASHVref] = ACTIONS(4793), - [anon_sym_BSLASHautoref] = ACTIONS(4793), - [anon_sym_BSLASHpageref] = ACTIONS(4793), - [anon_sym_BSLASHcref] = ACTIONS(4793), - [anon_sym_BSLASHCref] = ACTIONS(4793), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4791), - [anon_sym_BSLASHnamecref] = ACTIONS(4793), - [anon_sym_BSLASHnameCref] = ACTIONS(4793), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4793), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4793), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4793), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4793), - [anon_sym_BSLASHlabelcref] = ACTIONS(4793), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4793), - [anon_sym_BSLASHcrefrange] = ACTIONS(4793), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4791), - [anon_sym_BSLASHCrefrange] = ACTIONS(4793), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4791), - [anon_sym_BSLASHnewlabel] = ACTIONS(4793), - [anon_sym_BSLASHnewcommand] = ACTIONS(4793), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4793), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4793), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4791), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4793), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4791), - [anon_sym_BSLASHdef] = ACTIONS(4793), - [anon_sym_BSLASHlet] = ACTIONS(4793), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4793), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4793), - [anon_sym_BSLASHgls] = ACTIONS(4793), - [anon_sym_BSLASHGls] = ACTIONS(4793), - [anon_sym_BSLASHGLS] = ACTIONS(4793), - [anon_sym_BSLASHglspl] = ACTIONS(4793), - [anon_sym_BSLASHGlspl] = ACTIONS(4793), - [anon_sym_BSLASHGLSpl] = ACTIONS(4793), - [anon_sym_BSLASHglsdisp] = ACTIONS(4793), - [anon_sym_BSLASHglslink] = ACTIONS(4793), - [anon_sym_BSLASHglstext] = ACTIONS(4793), - [anon_sym_BSLASHGlstext] = ACTIONS(4793), - [anon_sym_BSLASHGLStext] = ACTIONS(4793), - [anon_sym_BSLASHglsfirst] = ACTIONS(4793), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4793), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4793), - [anon_sym_BSLASHglsplural] = ACTIONS(4793), - [anon_sym_BSLASHGlsplural] = ACTIONS(4793), - [anon_sym_BSLASHGLSplural] = ACTIONS(4793), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4793), - [anon_sym_BSLASHglsname] = ACTIONS(4793), - [anon_sym_BSLASHGlsname] = ACTIONS(4793), - [anon_sym_BSLASHGLSname] = ACTIONS(4793), - [anon_sym_BSLASHglssymbol] = ACTIONS(4793), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4793), - [anon_sym_BSLASHglsdesc] = ACTIONS(4793), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4793), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4793), - [anon_sym_BSLASHglsuseri] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4793), - [anon_sym_BSLASHglsuserii] = ACTIONS(4793), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4793), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4793), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4793), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4793), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4793), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4793), - [anon_sym_BSLASHglsuserv] = ACTIONS(4793), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4793), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4793), - [anon_sym_BSLASHglsuservi] = ACTIONS(4793), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4793), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4793), - [anon_sym_BSLASHnewacronym] = ACTIONS(4793), - [anon_sym_BSLASHacrshort] = ACTIONS(4793), - [anon_sym_BSLASHAcrshort] = ACTIONS(4793), - [anon_sym_BSLASHACRshort] = ACTIONS(4793), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4793), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4793), - [anon_sym_BSLASHacrlong] = ACTIONS(4793), - [anon_sym_BSLASHAcrlong] = ACTIONS(4793), - [anon_sym_BSLASHACRlong] = ACTIONS(4793), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4793), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4793), - [anon_sym_BSLASHacrfull] = ACTIONS(4793), - [anon_sym_BSLASHAcrfull] = ACTIONS(4793), - [anon_sym_BSLASHACRfull] = ACTIONS(4793), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4793), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4793), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4793), - [anon_sym_BSLASHacs] = ACTIONS(4793), - [anon_sym_BSLASHAcs] = ACTIONS(4793), - [anon_sym_BSLASHacsp] = ACTIONS(4793), - [anon_sym_BSLASHAcsp] = ACTIONS(4793), - [anon_sym_BSLASHacl] = ACTIONS(4793), - [anon_sym_BSLASHAcl] = ACTIONS(4793), - [anon_sym_BSLASHaclp] = ACTIONS(4793), - [anon_sym_BSLASHAclp] = ACTIONS(4793), - [anon_sym_BSLASHacf] = ACTIONS(4793), - [anon_sym_BSLASHAcf] = ACTIONS(4793), - [anon_sym_BSLASHacfp] = ACTIONS(4793), - [anon_sym_BSLASHAcfp] = ACTIONS(4793), - [anon_sym_BSLASHac] = ACTIONS(4793), - [anon_sym_BSLASHAc] = ACTIONS(4793), - [anon_sym_BSLASHacp] = ACTIONS(4793), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4793), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4793), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4793), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4793), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4793), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4793), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4793), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4793), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4793), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4793), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4793), - [anon_sym_BSLASHcolor] = ACTIONS(4793), - [anon_sym_BSLASHcolorbox] = ACTIONS(4793), - [anon_sym_BSLASHtextcolor] = ACTIONS(4793), - [anon_sym_BSLASHpagecolor] = ACTIONS(4793), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4793), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4793), - }, - [824] = { - [sym_curly_group] = STATE(886), - [sym_command_name] = ACTIONS(4789), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4789), - [anon_sym_LPAREN] = ACTIONS(4787), - [anon_sym_RPAREN] = ACTIONS(4787), - [anon_sym_LBRACK] = ACTIONS(4787), - [anon_sym_RBRACK] = ACTIONS(4787), - [anon_sym_COMMA] = ACTIONS(4787), - [anon_sym_EQ] = ACTIONS(4787), - [anon_sym_BSLASHpart] = ACTIONS(4789), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddpart] = ACTIONS(4789), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4787), - [anon_sym_BSLASHchapter] = ACTIONS(4789), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddchap] = ACTIONS(4789), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsection] = ACTIONS(4789), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHaddsec] = ACTIONS(4789), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubsection] = ACTIONS(4789), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4789), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4787), - [anon_sym_BSLASHparagraph] = ACTIONS(4789), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4787), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4789), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4787), - [anon_sym_BSLASHitem] = ACTIONS(4789), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4787), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(4789), - [sym_placeholder] = ACTIONS(4787), - [anon_sym_PLUS] = ACTIONS(4789), - [anon_sym_DASH] = ACTIONS(4789), - [anon_sym_STAR] = ACTIONS(4789), - [anon_sym_SLASH] = ACTIONS(4789), - [anon_sym_CARET] = ACTIONS(4789), - [anon_sym__] = ACTIONS(4789), - [anon_sym_LT] = ACTIONS(4789), - [anon_sym_GT] = ACTIONS(4789), - [anon_sym_BANG] = ACTIONS(4789), - [anon_sym_PIPE] = ACTIONS(4789), - [anon_sym_COLON] = ACTIONS(4789), - [anon_sym_SQUOTE] = ACTIONS(4789), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4787), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4787), - [anon_sym_DOLLAR] = ACTIONS(4789), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4787), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4787), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4787), - [anon_sym_BSLASHbegin] = ACTIONS(4789), - [anon_sym_BSLASHusepackage] = ACTIONS(4789), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4789), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4789), - [anon_sym_BSLASHinclude] = ACTIONS(4789), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4789), - [anon_sym_BSLASHinput] = ACTIONS(4789), - [anon_sym_BSLASHsubfile] = ACTIONS(4789), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4789), - [anon_sym_BSLASHbibliography] = ACTIONS(4789), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4789), - [anon_sym_BSLASHincludesvg] = ACTIONS(4789), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4789), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4789), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4789), - [anon_sym_BSLASHimport] = ACTIONS(4789), - [anon_sym_BSLASHsubimport] = ACTIONS(4789), - [anon_sym_BSLASHinputfrom] = ACTIONS(4789), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4789), - [anon_sym_BSLASHincludefrom] = ACTIONS(4789), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4789), - [anon_sym_BSLASHcaption] = ACTIONS(4789), - [anon_sym_BSLASHcite] = ACTIONS(4789), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCite] = ACTIONS(4789), - [anon_sym_BSLASHnocite] = ACTIONS(4789), - [anon_sym_BSLASHcitet] = ACTIONS(4789), - [anon_sym_BSLASHcitep] = ACTIONS(4789), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteauthor] = ACTIONS(4789), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4789), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitetitle] = ACTIONS(4789), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteyear] = ACTIONS(4789), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4787), - [anon_sym_BSLASHcitedate] = ACTIONS(4789), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4787), - [anon_sym_BSLASHciteurl] = ACTIONS(4789), - [anon_sym_BSLASHfullcite] = ACTIONS(4789), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4789), - [anon_sym_BSLASHcitealt] = ACTIONS(4789), - [anon_sym_BSLASHcitealp] = ACTIONS(4789), - [anon_sym_BSLASHcitetext] = ACTIONS(4789), - [anon_sym_BSLASHparencite] = ACTIONS(4789), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHParencite] = ACTIONS(4789), - [anon_sym_BSLASHfootcite] = ACTIONS(4789), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4789), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4789), - [anon_sym_BSLASHtextcite] = ACTIONS(4789), - [anon_sym_BSLASHTextcite] = ACTIONS(4789), - [anon_sym_BSLASHsmartcite] = ACTIONS(4789), - [anon_sym_BSLASHSmartcite] = ACTIONS(4789), - [anon_sym_BSLASHsupercite] = ACTIONS(4789), - [anon_sym_BSLASHautocite] = ACTIONS(4789), - [anon_sym_BSLASHAutocite] = ACTIONS(4789), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4787), - [anon_sym_BSLASHvolcite] = ACTIONS(4789), - [anon_sym_BSLASHVolcite] = ACTIONS(4789), - [anon_sym_BSLASHpvolcite] = ACTIONS(4789), - [anon_sym_BSLASHPvolcite] = ACTIONS(4789), - [anon_sym_BSLASHfvolcite] = ACTIONS(4789), - [anon_sym_BSLASHftvolcite] = ACTIONS(4789), - [anon_sym_BSLASHsvolcite] = ACTIONS(4789), - [anon_sym_BSLASHSvolcite] = ACTIONS(4789), - [anon_sym_BSLASHtvolcite] = ACTIONS(4789), - [anon_sym_BSLASHTvolcite] = ACTIONS(4789), - [anon_sym_BSLASHavolcite] = ACTIONS(4789), - [anon_sym_BSLASHAvolcite] = ACTIONS(4789), - [anon_sym_BSLASHnotecite] = ACTIONS(4789), - [anon_sym_BSLASHNotecite] = ACTIONS(4789), - [anon_sym_BSLASHpnotecite] = ACTIONS(4789), - [anon_sym_BSLASHPnotecite] = ACTIONS(4789), - [anon_sym_BSLASHfnotecite] = ACTIONS(4789), - [anon_sym_BSLASHlabel] = ACTIONS(4789), - [anon_sym_BSLASHref] = ACTIONS(4789), - [anon_sym_BSLASHeqref] = ACTIONS(4789), - [anon_sym_BSLASHvref] = ACTIONS(4789), - [anon_sym_BSLASHVref] = ACTIONS(4789), - [anon_sym_BSLASHautoref] = ACTIONS(4789), - [anon_sym_BSLASHpageref] = ACTIONS(4789), - [anon_sym_BSLASHcref] = ACTIONS(4789), - [anon_sym_BSLASHCref] = ACTIONS(4789), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4787), - [anon_sym_BSLASHnamecref] = ACTIONS(4789), - [anon_sym_BSLASHnameCref] = ACTIONS(4789), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4789), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4789), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4789), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4789), - [anon_sym_BSLASHlabelcref] = ACTIONS(4789), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4789), - [anon_sym_BSLASHcrefrange] = ACTIONS(4789), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4787), - [anon_sym_BSLASHCrefrange] = ACTIONS(4789), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4787), - [anon_sym_BSLASHnewlabel] = ACTIONS(4789), - [anon_sym_BSLASHnewcommand] = ACTIONS(4789), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4789), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4789), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4787), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4789), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4787), - [anon_sym_BSLASHdef] = ACTIONS(4789), - [anon_sym_BSLASHlet] = ACTIONS(4789), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4789), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4789), - [anon_sym_BSLASHgls] = ACTIONS(4789), - [anon_sym_BSLASHGls] = ACTIONS(4789), - [anon_sym_BSLASHGLS] = ACTIONS(4789), - [anon_sym_BSLASHglspl] = ACTIONS(4789), - [anon_sym_BSLASHGlspl] = ACTIONS(4789), - [anon_sym_BSLASHGLSpl] = ACTIONS(4789), - [anon_sym_BSLASHglsdisp] = ACTIONS(4789), - [anon_sym_BSLASHglslink] = ACTIONS(4789), - [anon_sym_BSLASHglstext] = ACTIONS(4789), - [anon_sym_BSLASHGlstext] = ACTIONS(4789), - [anon_sym_BSLASHGLStext] = ACTIONS(4789), - [anon_sym_BSLASHglsfirst] = ACTIONS(4789), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4789), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4789), - [anon_sym_BSLASHglsplural] = ACTIONS(4789), - [anon_sym_BSLASHGlsplural] = ACTIONS(4789), - [anon_sym_BSLASHGLSplural] = ACTIONS(4789), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4789), - [anon_sym_BSLASHglsname] = ACTIONS(4789), - [anon_sym_BSLASHGlsname] = ACTIONS(4789), - [anon_sym_BSLASHGLSname] = ACTIONS(4789), - [anon_sym_BSLASHglssymbol] = ACTIONS(4789), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4789), - [anon_sym_BSLASHglsdesc] = ACTIONS(4789), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4789), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4789), - [anon_sym_BSLASHglsuseri] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4789), - [anon_sym_BSLASHglsuserii] = ACTIONS(4789), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4789), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4789), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4789), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4789), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4789), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4789), - [anon_sym_BSLASHglsuserv] = ACTIONS(4789), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4789), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4789), - [anon_sym_BSLASHglsuservi] = ACTIONS(4789), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4789), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4789), - [anon_sym_BSLASHnewacronym] = ACTIONS(4789), - [anon_sym_BSLASHacrshort] = ACTIONS(4789), - [anon_sym_BSLASHAcrshort] = ACTIONS(4789), - [anon_sym_BSLASHACRshort] = ACTIONS(4789), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4789), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4789), - [anon_sym_BSLASHacrlong] = ACTIONS(4789), - [anon_sym_BSLASHAcrlong] = ACTIONS(4789), - [anon_sym_BSLASHACRlong] = ACTIONS(4789), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4789), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4789), - [anon_sym_BSLASHacrfull] = ACTIONS(4789), - [anon_sym_BSLASHAcrfull] = ACTIONS(4789), - [anon_sym_BSLASHACRfull] = ACTIONS(4789), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4789), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4789), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4789), - [anon_sym_BSLASHacs] = ACTIONS(4789), - [anon_sym_BSLASHAcs] = ACTIONS(4789), - [anon_sym_BSLASHacsp] = ACTIONS(4789), - [anon_sym_BSLASHAcsp] = ACTIONS(4789), - [anon_sym_BSLASHacl] = ACTIONS(4789), - [anon_sym_BSLASHAcl] = ACTIONS(4789), - [anon_sym_BSLASHaclp] = ACTIONS(4789), - [anon_sym_BSLASHAclp] = ACTIONS(4789), - [anon_sym_BSLASHacf] = ACTIONS(4789), - [anon_sym_BSLASHAcf] = ACTIONS(4789), - [anon_sym_BSLASHacfp] = ACTIONS(4789), - [anon_sym_BSLASHAcfp] = ACTIONS(4789), - [anon_sym_BSLASHac] = ACTIONS(4789), - [anon_sym_BSLASHAc] = ACTIONS(4789), - [anon_sym_BSLASHacp] = ACTIONS(4789), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4789), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4789), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4789), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4789), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4789), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4789), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4789), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4789), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4789), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4789), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4789), - [anon_sym_BSLASHcolor] = ACTIONS(4789), - [anon_sym_BSLASHcolorbox] = ACTIONS(4789), - [anon_sym_BSLASHtextcolor] = ACTIONS(4789), - [anon_sym_BSLASHpagecolor] = ACTIONS(4789), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4789), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4789), - }, - [825] = { - [sym_curly_group] = STATE(885), - [sym_command_name] = ACTIONS(4785), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4785), - [anon_sym_LPAREN] = ACTIONS(4783), - [anon_sym_RPAREN] = ACTIONS(4783), - [anon_sym_LBRACK] = ACTIONS(4783), - [anon_sym_RBRACK] = ACTIONS(4783), - [anon_sym_COMMA] = ACTIONS(4783), - [anon_sym_EQ] = ACTIONS(4783), - [anon_sym_BSLASHpart] = ACTIONS(4785), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddpart] = ACTIONS(4785), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4783), - [anon_sym_BSLASHchapter] = ACTIONS(4785), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddchap] = ACTIONS(4785), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsection] = ACTIONS(4785), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHaddsec] = ACTIONS(4785), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubsection] = ACTIONS(4785), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4785), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4783), - [anon_sym_BSLASHparagraph] = ACTIONS(4785), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4783), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4785), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4783), - [anon_sym_BSLASHitem] = ACTIONS(4785), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4783), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(4785), - [sym_placeholder] = ACTIONS(4783), - [anon_sym_PLUS] = ACTIONS(4785), - [anon_sym_DASH] = ACTIONS(4785), - [anon_sym_STAR] = ACTIONS(4785), - [anon_sym_SLASH] = ACTIONS(4785), - [anon_sym_CARET] = ACTIONS(4785), - [anon_sym__] = ACTIONS(4785), - [anon_sym_LT] = ACTIONS(4785), - [anon_sym_GT] = ACTIONS(4785), - [anon_sym_BANG] = ACTIONS(4785), - [anon_sym_PIPE] = ACTIONS(4785), - [anon_sym_COLON] = ACTIONS(4785), - [anon_sym_SQUOTE] = ACTIONS(4785), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4783), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4783), - [anon_sym_DOLLAR] = ACTIONS(4785), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4783), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4783), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4783), - [anon_sym_BSLASHbegin] = ACTIONS(4785), - [anon_sym_BSLASHusepackage] = ACTIONS(4785), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4785), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4785), - [anon_sym_BSLASHinclude] = ACTIONS(4785), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4785), - [anon_sym_BSLASHinput] = ACTIONS(4785), - [anon_sym_BSLASHsubfile] = ACTIONS(4785), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4785), - [anon_sym_BSLASHbibliography] = ACTIONS(4785), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4785), - [anon_sym_BSLASHincludesvg] = ACTIONS(4785), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4785), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4785), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4785), - [anon_sym_BSLASHimport] = ACTIONS(4785), - [anon_sym_BSLASHsubimport] = ACTIONS(4785), - [anon_sym_BSLASHinputfrom] = ACTIONS(4785), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4785), - [anon_sym_BSLASHincludefrom] = ACTIONS(4785), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4785), - [anon_sym_BSLASHcaption] = ACTIONS(4785), - [anon_sym_BSLASHcite] = ACTIONS(4785), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCite] = ACTIONS(4785), - [anon_sym_BSLASHnocite] = ACTIONS(4785), - [anon_sym_BSLASHcitet] = ACTIONS(4785), - [anon_sym_BSLASHcitep] = ACTIONS(4785), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteauthor] = ACTIONS(4785), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4785), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitetitle] = ACTIONS(4785), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteyear] = ACTIONS(4785), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4783), - [anon_sym_BSLASHcitedate] = ACTIONS(4785), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4783), - [anon_sym_BSLASHciteurl] = ACTIONS(4785), - [anon_sym_BSLASHfullcite] = ACTIONS(4785), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4785), - [anon_sym_BSLASHcitealt] = ACTIONS(4785), - [anon_sym_BSLASHcitealp] = ACTIONS(4785), - [anon_sym_BSLASHcitetext] = ACTIONS(4785), - [anon_sym_BSLASHparencite] = ACTIONS(4785), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHParencite] = ACTIONS(4785), - [anon_sym_BSLASHfootcite] = ACTIONS(4785), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4785), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4785), - [anon_sym_BSLASHtextcite] = ACTIONS(4785), - [anon_sym_BSLASHTextcite] = ACTIONS(4785), - [anon_sym_BSLASHsmartcite] = ACTIONS(4785), - [anon_sym_BSLASHSmartcite] = ACTIONS(4785), - [anon_sym_BSLASHsupercite] = ACTIONS(4785), - [anon_sym_BSLASHautocite] = ACTIONS(4785), - [anon_sym_BSLASHAutocite] = ACTIONS(4785), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4783), - [anon_sym_BSLASHvolcite] = ACTIONS(4785), - [anon_sym_BSLASHVolcite] = ACTIONS(4785), - [anon_sym_BSLASHpvolcite] = ACTIONS(4785), - [anon_sym_BSLASHPvolcite] = ACTIONS(4785), - [anon_sym_BSLASHfvolcite] = ACTIONS(4785), - [anon_sym_BSLASHftvolcite] = ACTIONS(4785), - [anon_sym_BSLASHsvolcite] = ACTIONS(4785), - [anon_sym_BSLASHSvolcite] = ACTIONS(4785), - [anon_sym_BSLASHtvolcite] = ACTIONS(4785), - [anon_sym_BSLASHTvolcite] = ACTIONS(4785), - [anon_sym_BSLASHavolcite] = ACTIONS(4785), - [anon_sym_BSLASHAvolcite] = ACTIONS(4785), - [anon_sym_BSLASHnotecite] = ACTIONS(4785), - [anon_sym_BSLASHNotecite] = ACTIONS(4785), - [anon_sym_BSLASHpnotecite] = ACTIONS(4785), - [anon_sym_BSLASHPnotecite] = ACTIONS(4785), - [anon_sym_BSLASHfnotecite] = ACTIONS(4785), - [anon_sym_BSLASHlabel] = ACTIONS(4785), - [anon_sym_BSLASHref] = ACTIONS(4785), - [anon_sym_BSLASHeqref] = ACTIONS(4785), - [anon_sym_BSLASHvref] = ACTIONS(4785), - [anon_sym_BSLASHVref] = ACTIONS(4785), - [anon_sym_BSLASHautoref] = ACTIONS(4785), - [anon_sym_BSLASHpageref] = ACTIONS(4785), - [anon_sym_BSLASHcref] = ACTIONS(4785), - [anon_sym_BSLASHCref] = ACTIONS(4785), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4783), - [anon_sym_BSLASHnamecref] = ACTIONS(4785), - [anon_sym_BSLASHnameCref] = ACTIONS(4785), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4785), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4785), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4785), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4785), - [anon_sym_BSLASHlabelcref] = ACTIONS(4785), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4785), - [anon_sym_BSLASHcrefrange] = ACTIONS(4785), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4783), - [anon_sym_BSLASHCrefrange] = ACTIONS(4785), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4783), - [anon_sym_BSLASHnewlabel] = ACTIONS(4785), - [anon_sym_BSLASHnewcommand] = ACTIONS(4785), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4785), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4785), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4783), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4785), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4783), - [anon_sym_BSLASHdef] = ACTIONS(4785), - [anon_sym_BSLASHlet] = ACTIONS(4785), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4785), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4785), - [anon_sym_BSLASHgls] = ACTIONS(4785), - [anon_sym_BSLASHGls] = ACTIONS(4785), - [anon_sym_BSLASHGLS] = ACTIONS(4785), - [anon_sym_BSLASHglspl] = ACTIONS(4785), - [anon_sym_BSLASHGlspl] = ACTIONS(4785), - [anon_sym_BSLASHGLSpl] = ACTIONS(4785), - [anon_sym_BSLASHglsdisp] = ACTIONS(4785), - [anon_sym_BSLASHglslink] = ACTIONS(4785), - [anon_sym_BSLASHglstext] = ACTIONS(4785), - [anon_sym_BSLASHGlstext] = ACTIONS(4785), - [anon_sym_BSLASHGLStext] = ACTIONS(4785), - [anon_sym_BSLASHglsfirst] = ACTIONS(4785), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4785), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4785), - [anon_sym_BSLASHglsplural] = ACTIONS(4785), - [anon_sym_BSLASHGlsplural] = ACTIONS(4785), - [anon_sym_BSLASHGLSplural] = ACTIONS(4785), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4785), - [anon_sym_BSLASHglsname] = ACTIONS(4785), - [anon_sym_BSLASHGlsname] = ACTIONS(4785), - [anon_sym_BSLASHGLSname] = ACTIONS(4785), - [anon_sym_BSLASHglssymbol] = ACTIONS(4785), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4785), - [anon_sym_BSLASHglsdesc] = ACTIONS(4785), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4785), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4785), - [anon_sym_BSLASHglsuseri] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4785), - [anon_sym_BSLASHglsuserii] = ACTIONS(4785), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4785), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4785), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4785), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4785), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4785), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4785), - [anon_sym_BSLASHglsuserv] = ACTIONS(4785), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4785), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4785), - [anon_sym_BSLASHglsuservi] = ACTIONS(4785), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4785), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4785), - [anon_sym_BSLASHnewacronym] = ACTIONS(4785), - [anon_sym_BSLASHacrshort] = ACTIONS(4785), - [anon_sym_BSLASHAcrshort] = ACTIONS(4785), - [anon_sym_BSLASHACRshort] = ACTIONS(4785), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4785), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4785), - [anon_sym_BSLASHacrlong] = ACTIONS(4785), - [anon_sym_BSLASHAcrlong] = ACTIONS(4785), - [anon_sym_BSLASHACRlong] = ACTIONS(4785), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4785), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4785), - [anon_sym_BSLASHacrfull] = ACTIONS(4785), - [anon_sym_BSLASHAcrfull] = ACTIONS(4785), - [anon_sym_BSLASHACRfull] = ACTIONS(4785), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4785), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4785), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4785), - [anon_sym_BSLASHacs] = ACTIONS(4785), - [anon_sym_BSLASHAcs] = ACTIONS(4785), - [anon_sym_BSLASHacsp] = ACTIONS(4785), - [anon_sym_BSLASHAcsp] = ACTIONS(4785), - [anon_sym_BSLASHacl] = ACTIONS(4785), - [anon_sym_BSLASHAcl] = ACTIONS(4785), - [anon_sym_BSLASHaclp] = ACTIONS(4785), - [anon_sym_BSLASHAclp] = ACTIONS(4785), - [anon_sym_BSLASHacf] = ACTIONS(4785), - [anon_sym_BSLASHAcf] = ACTIONS(4785), - [anon_sym_BSLASHacfp] = ACTIONS(4785), - [anon_sym_BSLASHAcfp] = ACTIONS(4785), - [anon_sym_BSLASHac] = ACTIONS(4785), - [anon_sym_BSLASHAc] = ACTIONS(4785), - [anon_sym_BSLASHacp] = ACTIONS(4785), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4785), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4785), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4785), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4785), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4785), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4785), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4785), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4785), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4785), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4785), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4785), - [anon_sym_BSLASHcolor] = ACTIONS(4785), - [anon_sym_BSLASHcolorbox] = ACTIONS(4785), - [anon_sym_BSLASHtextcolor] = ACTIONS(4785), - [anon_sym_BSLASHpagecolor] = ACTIONS(4785), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4785), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4785), - }, - [826] = { - [sym_curly_group] = STATE(884), - [sym_command_name] = ACTIONS(4781), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4781), - [anon_sym_LPAREN] = ACTIONS(4779), - [anon_sym_RPAREN] = ACTIONS(4779), - [anon_sym_LBRACK] = ACTIONS(4779), - [anon_sym_RBRACK] = ACTIONS(4779), - [anon_sym_COMMA] = ACTIONS(4779), - [anon_sym_EQ] = ACTIONS(4779), - [anon_sym_BSLASHpart] = ACTIONS(4781), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddpart] = ACTIONS(4781), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4779), - [anon_sym_BSLASHchapter] = ACTIONS(4781), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddchap] = ACTIONS(4781), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsection] = ACTIONS(4781), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHaddsec] = ACTIONS(4781), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubsection] = ACTIONS(4781), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4781), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4779), - [anon_sym_BSLASHparagraph] = ACTIONS(4781), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4779), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4781), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4779), - [anon_sym_BSLASHitem] = ACTIONS(4781), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4779), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(4781), - [sym_placeholder] = ACTIONS(4779), - [anon_sym_PLUS] = ACTIONS(4781), - [anon_sym_DASH] = ACTIONS(4781), - [anon_sym_STAR] = ACTIONS(4781), - [anon_sym_SLASH] = ACTIONS(4781), - [anon_sym_CARET] = ACTIONS(4781), - [anon_sym__] = ACTIONS(4781), - [anon_sym_LT] = ACTIONS(4781), - [anon_sym_GT] = ACTIONS(4781), - [anon_sym_BANG] = ACTIONS(4781), - [anon_sym_PIPE] = ACTIONS(4781), - [anon_sym_COLON] = ACTIONS(4781), - [anon_sym_SQUOTE] = ACTIONS(4781), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4779), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4779), - [anon_sym_DOLLAR] = ACTIONS(4781), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4779), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4779), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4779), - [anon_sym_BSLASHbegin] = ACTIONS(4781), - [anon_sym_BSLASHusepackage] = ACTIONS(4781), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4781), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4781), - [anon_sym_BSLASHinclude] = ACTIONS(4781), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4781), - [anon_sym_BSLASHinput] = ACTIONS(4781), - [anon_sym_BSLASHsubfile] = ACTIONS(4781), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4781), - [anon_sym_BSLASHbibliography] = ACTIONS(4781), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4781), - [anon_sym_BSLASHincludesvg] = ACTIONS(4781), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4781), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4781), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4781), - [anon_sym_BSLASHimport] = ACTIONS(4781), - [anon_sym_BSLASHsubimport] = ACTIONS(4781), - [anon_sym_BSLASHinputfrom] = ACTIONS(4781), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4781), - [anon_sym_BSLASHincludefrom] = ACTIONS(4781), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4781), - [anon_sym_BSLASHcaption] = ACTIONS(4781), - [anon_sym_BSLASHcite] = ACTIONS(4781), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCite] = ACTIONS(4781), - [anon_sym_BSLASHnocite] = ACTIONS(4781), - [anon_sym_BSLASHcitet] = ACTIONS(4781), - [anon_sym_BSLASHcitep] = ACTIONS(4781), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteauthor] = ACTIONS(4781), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4781), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitetitle] = ACTIONS(4781), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteyear] = ACTIONS(4781), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4779), - [anon_sym_BSLASHcitedate] = ACTIONS(4781), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4779), - [anon_sym_BSLASHciteurl] = ACTIONS(4781), - [anon_sym_BSLASHfullcite] = ACTIONS(4781), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4781), - [anon_sym_BSLASHcitealt] = ACTIONS(4781), - [anon_sym_BSLASHcitealp] = ACTIONS(4781), - [anon_sym_BSLASHcitetext] = ACTIONS(4781), - [anon_sym_BSLASHparencite] = ACTIONS(4781), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHParencite] = ACTIONS(4781), - [anon_sym_BSLASHfootcite] = ACTIONS(4781), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4781), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4781), - [anon_sym_BSLASHtextcite] = ACTIONS(4781), - [anon_sym_BSLASHTextcite] = ACTIONS(4781), - [anon_sym_BSLASHsmartcite] = ACTIONS(4781), - [anon_sym_BSLASHSmartcite] = ACTIONS(4781), - [anon_sym_BSLASHsupercite] = ACTIONS(4781), - [anon_sym_BSLASHautocite] = ACTIONS(4781), - [anon_sym_BSLASHAutocite] = ACTIONS(4781), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4779), - [anon_sym_BSLASHvolcite] = ACTIONS(4781), - [anon_sym_BSLASHVolcite] = ACTIONS(4781), - [anon_sym_BSLASHpvolcite] = ACTIONS(4781), - [anon_sym_BSLASHPvolcite] = ACTIONS(4781), - [anon_sym_BSLASHfvolcite] = ACTIONS(4781), - [anon_sym_BSLASHftvolcite] = ACTIONS(4781), - [anon_sym_BSLASHsvolcite] = ACTIONS(4781), - [anon_sym_BSLASHSvolcite] = ACTIONS(4781), - [anon_sym_BSLASHtvolcite] = ACTIONS(4781), - [anon_sym_BSLASHTvolcite] = ACTIONS(4781), - [anon_sym_BSLASHavolcite] = ACTIONS(4781), - [anon_sym_BSLASHAvolcite] = ACTIONS(4781), - [anon_sym_BSLASHnotecite] = ACTIONS(4781), - [anon_sym_BSLASHNotecite] = ACTIONS(4781), - [anon_sym_BSLASHpnotecite] = ACTIONS(4781), - [anon_sym_BSLASHPnotecite] = ACTIONS(4781), - [anon_sym_BSLASHfnotecite] = ACTIONS(4781), - [anon_sym_BSLASHlabel] = ACTIONS(4781), - [anon_sym_BSLASHref] = ACTIONS(4781), - [anon_sym_BSLASHeqref] = ACTIONS(4781), - [anon_sym_BSLASHvref] = ACTIONS(4781), - [anon_sym_BSLASHVref] = ACTIONS(4781), - [anon_sym_BSLASHautoref] = ACTIONS(4781), - [anon_sym_BSLASHpageref] = ACTIONS(4781), - [anon_sym_BSLASHcref] = ACTIONS(4781), - [anon_sym_BSLASHCref] = ACTIONS(4781), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4779), - [anon_sym_BSLASHnamecref] = ACTIONS(4781), - [anon_sym_BSLASHnameCref] = ACTIONS(4781), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4781), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4781), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4781), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4781), - [anon_sym_BSLASHlabelcref] = ACTIONS(4781), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4781), - [anon_sym_BSLASHcrefrange] = ACTIONS(4781), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4779), - [anon_sym_BSLASHCrefrange] = ACTIONS(4781), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4779), - [anon_sym_BSLASHnewlabel] = ACTIONS(4781), - [anon_sym_BSLASHnewcommand] = ACTIONS(4781), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4781), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4781), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4779), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4781), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4779), - [anon_sym_BSLASHdef] = ACTIONS(4781), - [anon_sym_BSLASHlet] = ACTIONS(4781), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4781), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4781), - [anon_sym_BSLASHgls] = ACTIONS(4781), - [anon_sym_BSLASHGls] = ACTIONS(4781), - [anon_sym_BSLASHGLS] = ACTIONS(4781), - [anon_sym_BSLASHglspl] = ACTIONS(4781), - [anon_sym_BSLASHGlspl] = ACTIONS(4781), - [anon_sym_BSLASHGLSpl] = ACTIONS(4781), - [anon_sym_BSLASHglsdisp] = ACTIONS(4781), - [anon_sym_BSLASHglslink] = ACTIONS(4781), - [anon_sym_BSLASHglstext] = ACTIONS(4781), - [anon_sym_BSLASHGlstext] = ACTIONS(4781), - [anon_sym_BSLASHGLStext] = ACTIONS(4781), - [anon_sym_BSLASHglsfirst] = ACTIONS(4781), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4781), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4781), - [anon_sym_BSLASHglsplural] = ACTIONS(4781), - [anon_sym_BSLASHGlsplural] = ACTIONS(4781), - [anon_sym_BSLASHGLSplural] = ACTIONS(4781), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4781), - [anon_sym_BSLASHglsname] = ACTIONS(4781), - [anon_sym_BSLASHGlsname] = ACTIONS(4781), - [anon_sym_BSLASHGLSname] = ACTIONS(4781), - [anon_sym_BSLASHglssymbol] = ACTIONS(4781), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4781), - [anon_sym_BSLASHglsdesc] = ACTIONS(4781), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4781), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4781), - [anon_sym_BSLASHglsuseri] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4781), - [anon_sym_BSLASHglsuserii] = ACTIONS(4781), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4781), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4781), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4781), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4781), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4781), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4781), - [anon_sym_BSLASHglsuserv] = ACTIONS(4781), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4781), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4781), - [anon_sym_BSLASHglsuservi] = ACTIONS(4781), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4781), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4781), - [anon_sym_BSLASHnewacronym] = ACTIONS(4781), - [anon_sym_BSLASHacrshort] = ACTIONS(4781), - [anon_sym_BSLASHAcrshort] = ACTIONS(4781), - [anon_sym_BSLASHACRshort] = ACTIONS(4781), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4781), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4781), - [anon_sym_BSLASHacrlong] = ACTIONS(4781), - [anon_sym_BSLASHAcrlong] = ACTIONS(4781), - [anon_sym_BSLASHACRlong] = ACTIONS(4781), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4781), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4781), - [anon_sym_BSLASHacrfull] = ACTIONS(4781), - [anon_sym_BSLASHAcrfull] = ACTIONS(4781), - [anon_sym_BSLASHACRfull] = ACTIONS(4781), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4781), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4781), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4781), - [anon_sym_BSLASHacs] = ACTIONS(4781), - [anon_sym_BSLASHAcs] = ACTIONS(4781), - [anon_sym_BSLASHacsp] = ACTIONS(4781), - [anon_sym_BSLASHAcsp] = ACTIONS(4781), - [anon_sym_BSLASHacl] = ACTIONS(4781), - [anon_sym_BSLASHAcl] = ACTIONS(4781), - [anon_sym_BSLASHaclp] = ACTIONS(4781), - [anon_sym_BSLASHAclp] = ACTIONS(4781), - [anon_sym_BSLASHacf] = ACTIONS(4781), - [anon_sym_BSLASHAcf] = ACTIONS(4781), - [anon_sym_BSLASHacfp] = ACTIONS(4781), - [anon_sym_BSLASHAcfp] = ACTIONS(4781), - [anon_sym_BSLASHac] = ACTIONS(4781), - [anon_sym_BSLASHAc] = ACTIONS(4781), - [anon_sym_BSLASHacp] = ACTIONS(4781), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4781), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4781), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4781), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4781), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4781), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4781), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4781), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4781), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4781), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4781), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4781), - [anon_sym_BSLASHcolor] = ACTIONS(4781), - [anon_sym_BSLASHcolorbox] = ACTIONS(4781), - [anon_sym_BSLASHtextcolor] = ACTIONS(4781), - [anon_sym_BSLASHpagecolor] = ACTIONS(4781), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4781), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4781), - }, - [827] = { - [sym_curly_group] = STATE(883), - [sym_command_name] = ACTIONS(4777), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4777), - [anon_sym_LPAREN] = ACTIONS(4775), - [anon_sym_RPAREN] = ACTIONS(4775), - [anon_sym_LBRACK] = ACTIONS(4775), - [anon_sym_RBRACK] = ACTIONS(4775), - [anon_sym_COMMA] = ACTIONS(4775), - [anon_sym_EQ] = ACTIONS(4775), - [anon_sym_BSLASHpart] = ACTIONS(4777), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddpart] = ACTIONS(4777), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4775), - [anon_sym_BSLASHchapter] = ACTIONS(4777), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddchap] = ACTIONS(4777), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsection] = ACTIONS(4777), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHaddsec] = ACTIONS(4777), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubsection] = ACTIONS(4777), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4777), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4775), - [anon_sym_BSLASHparagraph] = ACTIONS(4777), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4775), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4777), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4775), - [anon_sym_BSLASHitem] = ACTIONS(4777), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4775), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(4777), - [sym_placeholder] = ACTIONS(4775), - [anon_sym_PLUS] = ACTIONS(4777), - [anon_sym_DASH] = ACTIONS(4777), - [anon_sym_STAR] = ACTIONS(4777), - [anon_sym_SLASH] = ACTIONS(4777), - [anon_sym_CARET] = ACTIONS(4777), - [anon_sym__] = ACTIONS(4777), - [anon_sym_LT] = ACTIONS(4777), - [anon_sym_GT] = ACTIONS(4777), - [anon_sym_BANG] = ACTIONS(4777), - [anon_sym_PIPE] = ACTIONS(4777), - [anon_sym_COLON] = ACTIONS(4777), - [anon_sym_SQUOTE] = ACTIONS(4777), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4775), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4775), - [anon_sym_DOLLAR] = ACTIONS(4777), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4775), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4775), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4775), - [anon_sym_BSLASHbegin] = ACTIONS(4777), - [anon_sym_BSLASHusepackage] = ACTIONS(4777), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4777), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4777), - [anon_sym_BSLASHinclude] = ACTIONS(4777), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4777), - [anon_sym_BSLASHinput] = ACTIONS(4777), - [anon_sym_BSLASHsubfile] = ACTIONS(4777), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4777), - [anon_sym_BSLASHbibliography] = ACTIONS(4777), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4777), - [anon_sym_BSLASHincludesvg] = ACTIONS(4777), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4777), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4777), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4777), - [anon_sym_BSLASHimport] = ACTIONS(4777), - [anon_sym_BSLASHsubimport] = ACTIONS(4777), - [anon_sym_BSLASHinputfrom] = ACTIONS(4777), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4777), - [anon_sym_BSLASHincludefrom] = ACTIONS(4777), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4777), - [anon_sym_BSLASHcaption] = ACTIONS(4777), - [anon_sym_BSLASHcite] = ACTIONS(4777), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCite] = ACTIONS(4777), - [anon_sym_BSLASHnocite] = ACTIONS(4777), - [anon_sym_BSLASHcitet] = ACTIONS(4777), - [anon_sym_BSLASHcitep] = ACTIONS(4777), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteauthor] = ACTIONS(4777), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4777), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitetitle] = ACTIONS(4777), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteyear] = ACTIONS(4777), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4775), - [anon_sym_BSLASHcitedate] = ACTIONS(4777), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4775), - [anon_sym_BSLASHciteurl] = ACTIONS(4777), - [anon_sym_BSLASHfullcite] = ACTIONS(4777), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4777), - [anon_sym_BSLASHcitealt] = ACTIONS(4777), - [anon_sym_BSLASHcitealp] = ACTIONS(4777), - [anon_sym_BSLASHcitetext] = ACTIONS(4777), - [anon_sym_BSLASHparencite] = ACTIONS(4777), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHParencite] = ACTIONS(4777), - [anon_sym_BSLASHfootcite] = ACTIONS(4777), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4777), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4777), - [anon_sym_BSLASHtextcite] = ACTIONS(4777), - [anon_sym_BSLASHTextcite] = ACTIONS(4777), - [anon_sym_BSLASHsmartcite] = ACTIONS(4777), - [anon_sym_BSLASHSmartcite] = ACTIONS(4777), - [anon_sym_BSLASHsupercite] = ACTIONS(4777), - [anon_sym_BSLASHautocite] = ACTIONS(4777), - [anon_sym_BSLASHAutocite] = ACTIONS(4777), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4775), - [anon_sym_BSLASHvolcite] = ACTIONS(4777), - [anon_sym_BSLASHVolcite] = ACTIONS(4777), - [anon_sym_BSLASHpvolcite] = ACTIONS(4777), - [anon_sym_BSLASHPvolcite] = ACTIONS(4777), - [anon_sym_BSLASHfvolcite] = ACTIONS(4777), - [anon_sym_BSLASHftvolcite] = ACTIONS(4777), - [anon_sym_BSLASHsvolcite] = ACTIONS(4777), - [anon_sym_BSLASHSvolcite] = ACTIONS(4777), - [anon_sym_BSLASHtvolcite] = ACTIONS(4777), - [anon_sym_BSLASHTvolcite] = ACTIONS(4777), - [anon_sym_BSLASHavolcite] = ACTIONS(4777), - [anon_sym_BSLASHAvolcite] = ACTIONS(4777), - [anon_sym_BSLASHnotecite] = ACTIONS(4777), - [anon_sym_BSLASHNotecite] = ACTIONS(4777), - [anon_sym_BSLASHpnotecite] = ACTIONS(4777), - [anon_sym_BSLASHPnotecite] = ACTIONS(4777), - [anon_sym_BSLASHfnotecite] = ACTIONS(4777), - [anon_sym_BSLASHlabel] = ACTIONS(4777), - [anon_sym_BSLASHref] = ACTIONS(4777), - [anon_sym_BSLASHeqref] = ACTIONS(4777), - [anon_sym_BSLASHvref] = ACTIONS(4777), - [anon_sym_BSLASHVref] = ACTIONS(4777), - [anon_sym_BSLASHautoref] = ACTIONS(4777), - [anon_sym_BSLASHpageref] = ACTIONS(4777), - [anon_sym_BSLASHcref] = ACTIONS(4777), - [anon_sym_BSLASHCref] = ACTIONS(4777), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4775), - [anon_sym_BSLASHnamecref] = ACTIONS(4777), - [anon_sym_BSLASHnameCref] = ACTIONS(4777), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4777), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4777), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4777), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4777), - [anon_sym_BSLASHlabelcref] = ACTIONS(4777), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4777), - [anon_sym_BSLASHcrefrange] = ACTIONS(4777), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4775), - [anon_sym_BSLASHCrefrange] = ACTIONS(4777), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4775), - [anon_sym_BSLASHnewlabel] = ACTIONS(4777), - [anon_sym_BSLASHnewcommand] = ACTIONS(4777), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4777), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4777), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4775), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4777), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4775), - [anon_sym_BSLASHdef] = ACTIONS(4777), - [anon_sym_BSLASHlet] = ACTIONS(4777), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4777), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4777), - [anon_sym_BSLASHgls] = ACTIONS(4777), - [anon_sym_BSLASHGls] = ACTIONS(4777), - [anon_sym_BSLASHGLS] = ACTIONS(4777), - [anon_sym_BSLASHglspl] = ACTIONS(4777), - [anon_sym_BSLASHGlspl] = ACTIONS(4777), - [anon_sym_BSLASHGLSpl] = ACTIONS(4777), - [anon_sym_BSLASHglsdisp] = ACTIONS(4777), - [anon_sym_BSLASHglslink] = ACTIONS(4777), - [anon_sym_BSLASHglstext] = ACTIONS(4777), - [anon_sym_BSLASHGlstext] = ACTIONS(4777), - [anon_sym_BSLASHGLStext] = ACTIONS(4777), - [anon_sym_BSLASHglsfirst] = ACTIONS(4777), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4777), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4777), - [anon_sym_BSLASHglsplural] = ACTIONS(4777), - [anon_sym_BSLASHGlsplural] = ACTIONS(4777), - [anon_sym_BSLASHGLSplural] = ACTIONS(4777), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4777), - [anon_sym_BSLASHglsname] = ACTIONS(4777), - [anon_sym_BSLASHGlsname] = ACTIONS(4777), - [anon_sym_BSLASHGLSname] = ACTIONS(4777), - [anon_sym_BSLASHglssymbol] = ACTIONS(4777), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4777), - [anon_sym_BSLASHglsdesc] = ACTIONS(4777), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4777), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4777), - [anon_sym_BSLASHglsuseri] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4777), - [anon_sym_BSLASHglsuserii] = ACTIONS(4777), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4777), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4777), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4777), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4777), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4777), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4777), - [anon_sym_BSLASHglsuserv] = ACTIONS(4777), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4777), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4777), - [anon_sym_BSLASHglsuservi] = ACTIONS(4777), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4777), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4777), - [anon_sym_BSLASHnewacronym] = ACTIONS(4777), - [anon_sym_BSLASHacrshort] = ACTIONS(4777), - [anon_sym_BSLASHAcrshort] = ACTIONS(4777), - [anon_sym_BSLASHACRshort] = ACTIONS(4777), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4777), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4777), - [anon_sym_BSLASHacrlong] = ACTIONS(4777), - [anon_sym_BSLASHAcrlong] = ACTIONS(4777), - [anon_sym_BSLASHACRlong] = ACTIONS(4777), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4777), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4777), - [anon_sym_BSLASHacrfull] = ACTIONS(4777), - [anon_sym_BSLASHAcrfull] = ACTIONS(4777), - [anon_sym_BSLASHACRfull] = ACTIONS(4777), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4777), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4777), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4777), - [anon_sym_BSLASHacs] = ACTIONS(4777), - [anon_sym_BSLASHAcs] = ACTIONS(4777), - [anon_sym_BSLASHacsp] = ACTIONS(4777), - [anon_sym_BSLASHAcsp] = ACTIONS(4777), - [anon_sym_BSLASHacl] = ACTIONS(4777), - [anon_sym_BSLASHAcl] = ACTIONS(4777), - [anon_sym_BSLASHaclp] = ACTIONS(4777), - [anon_sym_BSLASHAclp] = ACTIONS(4777), - [anon_sym_BSLASHacf] = ACTIONS(4777), - [anon_sym_BSLASHAcf] = ACTIONS(4777), - [anon_sym_BSLASHacfp] = ACTIONS(4777), - [anon_sym_BSLASHAcfp] = ACTIONS(4777), - [anon_sym_BSLASHac] = ACTIONS(4777), - [anon_sym_BSLASHAc] = ACTIONS(4777), - [anon_sym_BSLASHacp] = ACTIONS(4777), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4777), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4777), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4777), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4777), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4777), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4777), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4777), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4777), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4777), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4777), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4777), - [anon_sym_BSLASHcolor] = ACTIONS(4777), - [anon_sym_BSLASHcolorbox] = ACTIONS(4777), - [anon_sym_BSLASHtextcolor] = ACTIONS(4777), - [anon_sym_BSLASHpagecolor] = ACTIONS(4777), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4777), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4777), - }, - [828] = { - [sym_curly_group] = STATE(882), - [sym_command_name] = ACTIONS(4773), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4773), - [anon_sym_LPAREN] = ACTIONS(4771), - [anon_sym_RPAREN] = ACTIONS(4771), - [anon_sym_LBRACK] = ACTIONS(4771), - [anon_sym_RBRACK] = ACTIONS(4771), - [anon_sym_COMMA] = ACTIONS(4771), - [anon_sym_EQ] = ACTIONS(4771), - [anon_sym_BSLASHpart] = ACTIONS(4773), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddpart] = ACTIONS(4773), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4771), - [anon_sym_BSLASHchapter] = ACTIONS(4773), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddchap] = ACTIONS(4773), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsection] = ACTIONS(4773), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHaddsec] = ACTIONS(4773), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubsection] = ACTIONS(4773), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4773), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4771), - [anon_sym_BSLASHparagraph] = ACTIONS(4773), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4771), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4773), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4771), - [anon_sym_BSLASHitem] = ACTIONS(4773), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4771), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(4773), - [sym_placeholder] = ACTIONS(4771), - [anon_sym_PLUS] = ACTIONS(4773), - [anon_sym_DASH] = ACTIONS(4773), - [anon_sym_STAR] = ACTIONS(4773), - [anon_sym_SLASH] = ACTIONS(4773), - [anon_sym_CARET] = ACTIONS(4773), - [anon_sym__] = ACTIONS(4773), - [anon_sym_LT] = ACTIONS(4773), - [anon_sym_GT] = ACTIONS(4773), - [anon_sym_BANG] = ACTIONS(4773), - [anon_sym_PIPE] = ACTIONS(4773), - [anon_sym_COLON] = ACTIONS(4773), - [anon_sym_SQUOTE] = ACTIONS(4773), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4771), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4771), - [anon_sym_DOLLAR] = ACTIONS(4773), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4771), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4771), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4771), - [anon_sym_BSLASHbegin] = ACTIONS(4773), - [anon_sym_BSLASHusepackage] = ACTIONS(4773), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4773), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4773), - [anon_sym_BSLASHinclude] = ACTIONS(4773), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4773), - [anon_sym_BSLASHinput] = ACTIONS(4773), - [anon_sym_BSLASHsubfile] = ACTIONS(4773), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4773), - [anon_sym_BSLASHbibliography] = ACTIONS(4773), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4773), - [anon_sym_BSLASHincludesvg] = ACTIONS(4773), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4773), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4773), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4773), - [anon_sym_BSLASHimport] = ACTIONS(4773), - [anon_sym_BSLASHsubimport] = ACTIONS(4773), - [anon_sym_BSLASHinputfrom] = ACTIONS(4773), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4773), - [anon_sym_BSLASHincludefrom] = ACTIONS(4773), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4773), - [anon_sym_BSLASHcaption] = ACTIONS(4773), - [anon_sym_BSLASHcite] = ACTIONS(4773), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCite] = ACTIONS(4773), - [anon_sym_BSLASHnocite] = ACTIONS(4773), - [anon_sym_BSLASHcitet] = ACTIONS(4773), - [anon_sym_BSLASHcitep] = ACTIONS(4773), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteauthor] = ACTIONS(4773), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4773), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitetitle] = ACTIONS(4773), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteyear] = ACTIONS(4773), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4771), - [anon_sym_BSLASHcitedate] = ACTIONS(4773), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4771), - [anon_sym_BSLASHciteurl] = ACTIONS(4773), - [anon_sym_BSLASHfullcite] = ACTIONS(4773), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4773), - [anon_sym_BSLASHcitealt] = ACTIONS(4773), - [anon_sym_BSLASHcitealp] = ACTIONS(4773), - [anon_sym_BSLASHcitetext] = ACTIONS(4773), - [anon_sym_BSLASHparencite] = ACTIONS(4773), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHParencite] = ACTIONS(4773), - [anon_sym_BSLASHfootcite] = ACTIONS(4773), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4773), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4773), - [anon_sym_BSLASHtextcite] = ACTIONS(4773), - [anon_sym_BSLASHTextcite] = ACTIONS(4773), - [anon_sym_BSLASHsmartcite] = ACTIONS(4773), - [anon_sym_BSLASHSmartcite] = ACTIONS(4773), - [anon_sym_BSLASHsupercite] = ACTIONS(4773), - [anon_sym_BSLASHautocite] = ACTIONS(4773), - [anon_sym_BSLASHAutocite] = ACTIONS(4773), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4771), - [anon_sym_BSLASHvolcite] = ACTIONS(4773), - [anon_sym_BSLASHVolcite] = ACTIONS(4773), - [anon_sym_BSLASHpvolcite] = ACTIONS(4773), - [anon_sym_BSLASHPvolcite] = ACTIONS(4773), - [anon_sym_BSLASHfvolcite] = ACTIONS(4773), - [anon_sym_BSLASHftvolcite] = ACTIONS(4773), - [anon_sym_BSLASHsvolcite] = ACTIONS(4773), - [anon_sym_BSLASHSvolcite] = ACTIONS(4773), - [anon_sym_BSLASHtvolcite] = ACTIONS(4773), - [anon_sym_BSLASHTvolcite] = ACTIONS(4773), - [anon_sym_BSLASHavolcite] = ACTIONS(4773), - [anon_sym_BSLASHAvolcite] = ACTIONS(4773), - [anon_sym_BSLASHnotecite] = ACTIONS(4773), - [anon_sym_BSLASHNotecite] = ACTIONS(4773), - [anon_sym_BSLASHpnotecite] = ACTIONS(4773), - [anon_sym_BSLASHPnotecite] = ACTIONS(4773), - [anon_sym_BSLASHfnotecite] = ACTIONS(4773), - [anon_sym_BSLASHlabel] = ACTIONS(4773), - [anon_sym_BSLASHref] = ACTIONS(4773), - [anon_sym_BSLASHeqref] = ACTIONS(4773), - [anon_sym_BSLASHvref] = ACTIONS(4773), - [anon_sym_BSLASHVref] = ACTIONS(4773), - [anon_sym_BSLASHautoref] = ACTIONS(4773), - [anon_sym_BSLASHpageref] = ACTIONS(4773), - [anon_sym_BSLASHcref] = ACTIONS(4773), - [anon_sym_BSLASHCref] = ACTIONS(4773), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4771), - [anon_sym_BSLASHnamecref] = ACTIONS(4773), - [anon_sym_BSLASHnameCref] = ACTIONS(4773), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4773), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4773), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4773), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4773), - [anon_sym_BSLASHlabelcref] = ACTIONS(4773), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4773), - [anon_sym_BSLASHcrefrange] = ACTIONS(4773), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4771), - [anon_sym_BSLASHCrefrange] = ACTIONS(4773), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4771), - [anon_sym_BSLASHnewlabel] = ACTIONS(4773), - [anon_sym_BSLASHnewcommand] = ACTIONS(4773), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4773), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4773), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4771), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4773), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4771), - [anon_sym_BSLASHdef] = ACTIONS(4773), - [anon_sym_BSLASHlet] = ACTIONS(4773), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4773), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4773), - [anon_sym_BSLASHgls] = ACTIONS(4773), - [anon_sym_BSLASHGls] = ACTIONS(4773), - [anon_sym_BSLASHGLS] = ACTIONS(4773), - [anon_sym_BSLASHglspl] = ACTIONS(4773), - [anon_sym_BSLASHGlspl] = ACTIONS(4773), - [anon_sym_BSLASHGLSpl] = ACTIONS(4773), - [anon_sym_BSLASHglsdisp] = ACTIONS(4773), - [anon_sym_BSLASHglslink] = ACTIONS(4773), - [anon_sym_BSLASHglstext] = ACTIONS(4773), - [anon_sym_BSLASHGlstext] = ACTIONS(4773), - [anon_sym_BSLASHGLStext] = ACTIONS(4773), - [anon_sym_BSLASHglsfirst] = ACTIONS(4773), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4773), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4773), - [anon_sym_BSLASHglsplural] = ACTIONS(4773), - [anon_sym_BSLASHGlsplural] = ACTIONS(4773), - [anon_sym_BSLASHGLSplural] = ACTIONS(4773), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4773), - [anon_sym_BSLASHglsname] = ACTIONS(4773), - [anon_sym_BSLASHGlsname] = ACTIONS(4773), - [anon_sym_BSLASHGLSname] = ACTIONS(4773), - [anon_sym_BSLASHglssymbol] = ACTIONS(4773), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4773), - [anon_sym_BSLASHglsdesc] = ACTIONS(4773), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4773), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4773), - [anon_sym_BSLASHglsuseri] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4773), - [anon_sym_BSLASHglsuserii] = ACTIONS(4773), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4773), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4773), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4773), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4773), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4773), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4773), - [anon_sym_BSLASHglsuserv] = ACTIONS(4773), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4773), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4773), - [anon_sym_BSLASHglsuservi] = ACTIONS(4773), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4773), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4773), - [anon_sym_BSLASHnewacronym] = ACTIONS(4773), - [anon_sym_BSLASHacrshort] = ACTIONS(4773), - [anon_sym_BSLASHAcrshort] = ACTIONS(4773), - [anon_sym_BSLASHACRshort] = ACTIONS(4773), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4773), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4773), - [anon_sym_BSLASHacrlong] = ACTIONS(4773), - [anon_sym_BSLASHAcrlong] = ACTIONS(4773), - [anon_sym_BSLASHACRlong] = ACTIONS(4773), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4773), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4773), - [anon_sym_BSLASHacrfull] = ACTIONS(4773), - [anon_sym_BSLASHAcrfull] = ACTIONS(4773), - [anon_sym_BSLASHACRfull] = ACTIONS(4773), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4773), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4773), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4773), - [anon_sym_BSLASHacs] = ACTIONS(4773), - [anon_sym_BSLASHAcs] = ACTIONS(4773), - [anon_sym_BSLASHacsp] = ACTIONS(4773), - [anon_sym_BSLASHAcsp] = ACTIONS(4773), - [anon_sym_BSLASHacl] = ACTIONS(4773), - [anon_sym_BSLASHAcl] = ACTIONS(4773), - [anon_sym_BSLASHaclp] = ACTIONS(4773), - [anon_sym_BSLASHAclp] = ACTIONS(4773), - [anon_sym_BSLASHacf] = ACTIONS(4773), - [anon_sym_BSLASHAcf] = ACTIONS(4773), - [anon_sym_BSLASHacfp] = ACTIONS(4773), - [anon_sym_BSLASHAcfp] = ACTIONS(4773), - [anon_sym_BSLASHac] = ACTIONS(4773), - [anon_sym_BSLASHAc] = ACTIONS(4773), - [anon_sym_BSLASHacp] = ACTIONS(4773), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4773), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4773), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4773), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4773), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4773), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4773), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4773), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4773), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4773), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4773), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4773), - [anon_sym_BSLASHcolor] = ACTIONS(4773), - [anon_sym_BSLASHcolorbox] = ACTIONS(4773), - [anon_sym_BSLASHtextcolor] = ACTIONS(4773), - [anon_sym_BSLASHpagecolor] = ACTIONS(4773), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4773), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4773), - }, - [829] = { - [sym_brack_group_text] = STATE(843), - [sym_command_name] = ACTIONS(4797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4795), - [anon_sym_LBRACK] = ACTIONS(5213), - [anon_sym_RBRACK] = ACTIONS(4795), - [anon_sym_COMMA] = ACTIONS(4795), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_BSLASHpart] = ACTIONS(4797), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddpart] = ACTIONS(4797), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4795), - [anon_sym_BSLASHchapter] = ACTIONS(4797), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddchap] = ACTIONS(4797), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsection] = ACTIONS(4797), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHaddsec] = ACTIONS(4797), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubsection] = ACTIONS(4797), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4797), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4795), - [anon_sym_BSLASHparagraph] = ACTIONS(4797), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4795), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4797), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4795), - [anon_sym_BSLASHitem] = ACTIONS(4797), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4795), - [sym_word] = ACTIONS(4797), - [sym_placeholder] = ACTIONS(4795), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_CARET] = ACTIONS(4797), - [anon_sym__] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4797), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4795), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4795), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4795), - [anon_sym_BSLASHbegin] = ACTIONS(4797), - [anon_sym_BSLASHusepackage] = ACTIONS(4797), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4797), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4797), - [anon_sym_BSLASHinclude] = ACTIONS(4797), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4797), - [anon_sym_BSLASHinput] = ACTIONS(4797), - [anon_sym_BSLASHsubfile] = ACTIONS(4797), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4797), - [anon_sym_BSLASHbibliography] = ACTIONS(4797), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4797), - [anon_sym_BSLASHincludesvg] = ACTIONS(4797), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4797), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4797), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4797), - [anon_sym_BSLASHimport] = ACTIONS(4797), - [anon_sym_BSLASHsubimport] = ACTIONS(4797), - [anon_sym_BSLASHinputfrom] = ACTIONS(4797), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4797), - [anon_sym_BSLASHincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHcaption] = ACTIONS(4797), - [anon_sym_BSLASHcite] = ACTIONS(4797), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCite] = ACTIONS(4797), - [anon_sym_BSLASHnocite] = ACTIONS(4797), - [anon_sym_BSLASHcitet] = ACTIONS(4797), - [anon_sym_BSLASHcitep] = ACTIONS(4797), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteauthor] = ACTIONS(4797), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4797), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitetitle] = ACTIONS(4797), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteyear] = ACTIONS(4797), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitedate] = ACTIONS(4797), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteurl] = ACTIONS(4797), - [anon_sym_BSLASHfullcite] = ACTIONS(4797), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4797), - [anon_sym_BSLASHcitealt] = ACTIONS(4797), - [anon_sym_BSLASHcitealp] = ACTIONS(4797), - [anon_sym_BSLASHcitetext] = ACTIONS(4797), - [anon_sym_BSLASHparencite] = ACTIONS(4797), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHParencite] = ACTIONS(4797), - [anon_sym_BSLASHfootcite] = ACTIONS(4797), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4797), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4797), - [anon_sym_BSLASHtextcite] = ACTIONS(4797), - [anon_sym_BSLASHTextcite] = ACTIONS(4797), - [anon_sym_BSLASHsmartcite] = ACTIONS(4797), - [anon_sym_BSLASHSmartcite] = ACTIONS(4797), - [anon_sym_BSLASHsupercite] = ACTIONS(4797), - [anon_sym_BSLASHautocite] = ACTIONS(4797), - [anon_sym_BSLASHAutocite] = ACTIONS(4797), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHvolcite] = ACTIONS(4797), - [anon_sym_BSLASHVolcite] = ACTIONS(4797), - [anon_sym_BSLASHpvolcite] = ACTIONS(4797), - [anon_sym_BSLASHPvolcite] = ACTIONS(4797), - [anon_sym_BSLASHfvolcite] = ACTIONS(4797), - [anon_sym_BSLASHftvolcite] = ACTIONS(4797), - [anon_sym_BSLASHsvolcite] = ACTIONS(4797), - [anon_sym_BSLASHSvolcite] = ACTIONS(4797), - [anon_sym_BSLASHtvolcite] = ACTIONS(4797), - [anon_sym_BSLASHTvolcite] = ACTIONS(4797), - [anon_sym_BSLASHavolcite] = ACTIONS(4797), - [anon_sym_BSLASHAvolcite] = ACTIONS(4797), - [anon_sym_BSLASHnotecite] = ACTIONS(4797), - [anon_sym_BSLASHNotecite] = ACTIONS(4797), - [anon_sym_BSLASHpnotecite] = ACTIONS(4797), - [anon_sym_BSLASHPnotecite] = ACTIONS(4797), - [anon_sym_BSLASHfnotecite] = ACTIONS(4797), - [anon_sym_BSLASHlabel] = ACTIONS(4797), - [anon_sym_BSLASHref] = ACTIONS(4797), - [anon_sym_BSLASHeqref] = ACTIONS(4797), - [anon_sym_BSLASHvref] = ACTIONS(4797), - [anon_sym_BSLASHVref] = ACTIONS(4797), - [anon_sym_BSLASHautoref] = ACTIONS(4797), - [anon_sym_BSLASHpageref] = ACTIONS(4797), - [anon_sym_BSLASHcref] = ACTIONS(4797), - [anon_sym_BSLASHCref] = ACTIONS(4797), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnameCref] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHlabelcref] = ACTIONS(4797), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCrefrange] = ACTIONS(4797), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnewlabel] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4797), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4797), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4797), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4795), - [anon_sym_BSLASHdef] = ACTIONS(4797), - [anon_sym_BSLASHlet] = ACTIONS(4797), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4797), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4797), - [anon_sym_BSLASHgls] = ACTIONS(4797), - [anon_sym_BSLASHGls] = ACTIONS(4797), - [anon_sym_BSLASHGLS] = ACTIONS(4797), - [anon_sym_BSLASHglspl] = ACTIONS(4797), - [anon_sym_BSLASHGlspl] = ACTIONS(4797), - [anon_sym_BSLASHGLSpl] = ACTIONS(4797), - [anon_sym_BSLASHglsdisp] = ACTIONS(4797), - [anon_sym_BSLASHglslink] = ACTIONS(4797), - [anon_sym_BSLASHglstext] = ACTIONS(4797), - [anon_sym_BSLASHGlstext] = ACTIONS(4797), - [anon_sym_BSLASHGLStext] = ACTIONS(4797), - [anon_sym_BSLASHglsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4797), - [anon_sym_BSLASHglsplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSplural] = ACTIONS(4797), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHglsname] = ACTIONS(4797), - [anon_sym_BSLASHGlsname] = ACTIONS(4797), - [anon_sym_BSLASHGLSname] = ACTIONS(4797), - [anon_sym_BSLASHglssymbol] = ACTIONS(4797), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4797), - [anon_sym_BSLASHglsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4797), - [anon_sym_BSLASHglsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4797), - [anon_sym_BSLASHglsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4797), - [anon_sym_BSLASHglsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4797), - [anon_sym_BSLASHglsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4797), - [anon_sym_BSLASHnewacronym] = ACTIONS(4797), - [anon_sym_BSLASHacrshort] = ACTIONS(4797), - [anon_sym_BSLASHAcrshort] = ACTIONS(4797), - [anon_sym_BSLASHACRshort] = ACTIONS(4797), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4797), - [anon_sym_BSLASHacrlong] = ACTIONS(4797), - [anon_sym_BSLASHAcrlong] = ACTIONS(4797), - [anon_sym_BSLASHACRlong] = ACTIONS(4797), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4797), - [anon_sym_BSLASHacrfull] = ACTIONS(4797), - [anon_sym_BSLASHAcrfull] = ACTIONS(4797), - [anon_sym_BSLASHACRfull] = ACTIONS(4797), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4797), - [anon_sym_BSLASHacs] = ACTIONS(4797), - [anon_sym_BSLASHAcs] = ACTIONS(4797), - [anon_sym_BSLASHacsp] = ACTIONS(4797), - [anon_sym_BSLASHAcsp] = ACTIONS(4797), - [anon_sym_BSLASHacl] = ACTIONS(4797), - [anon_sym_BSLASHAcl] = ACTIONS(4797), - [anon_sym_BSLASHaclp] = ACTIONS(4797), - [anon_sym_BSLASHAclp] = ACTIONS(4797), - [anon_sym_BSLASHacf] = ACTIONS(4797), - [anon_sym_BSLASHAcf] = ACTIONS(4797), - [anon_sym_BSLASHacfp] = ACTIONS(4797), - [anon_sym_BSLASHAcfp] = ACTIONS(4797), - [anon_sym_BSLASHac] = ACTIONS(4797), - [anon_sym_BSLASHAc] = ACTIONS(4797), - [anon_sym_BSLASHacp] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4797), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4797), - [anon_sym_BSLASHcolor] = ACTIONS(4797), - [anon_sym_BSLASHcolorbox] = ACTIONS(4797), - [anon_sym_BSLASHtextcolor] = ACTIONS(4797), - [anon_sym_BSLASHpagecolor] = ACTIONS(4797), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4797), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4797), - }, - [830] = { - [sym_curly_group] = STATE(881), - [sym_command_name] = ACTIONS(4769), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4769), - [anon_sym_LPAREN] = ACTIONS(4767), - [anon_sym_RPAREN] = ACTIONS(4767), - [anon_sym_LBRACK] = ACTIONS(4767), - [anon_sym_RBRACK] = ACTIONS(4767), - [anon_sym_COMMA] = ACTIONS(4767), - [anon_sym_EQ] = ACTIONS(4767), - [anon_sym_BSLASHpart] = ACTIONS(4769), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddpart] = ACTIONS(4769), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4767), - [anon_sym_BSLASHchapter] = ACTIONS(4769), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddchap] = ACTIONS(4769), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsection] = ACTIONS(4769), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHaddsec] = ACTIONS(4769), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubsection] = ACTIONS(4769), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4769), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4767), - [anon_sym_BSLASHparagraph] = ACTIONS(4769), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4767), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4769), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4767), - [anon_sym_BSLASHitem] = ACTIONS(4769), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4767), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(4769), - [sym_placeholder] = ACTIONS(4767), - [anon_sym_PLUS] = ACTIONS(4769), - [anon_sym_DASH] = ACTIONS(4769), - [anon_sym_STAR] = ACTIONS(4769), - [anon_sym_SLASH] = ACTIONS(4769), - [anon_sym_CARET] = ACTIONS(4769), - [anon_sym__] = ACTIONS(4769), - [anon_sym_LT] = ACTIONS(4769), - [anon_sym_GT] = ACTIONS(4769), - [anon_sym_BANG] = ACTIONS(4769), - [anon_sym_PIPE] = ACTIONS(4769), - [anon_sym_COLON] = ACTIONS(4769), - [anon_sym_SQUOTE] = ACTIONS(4769), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4767), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4767), - [anon_sym_DOLLAR] = ACTIONS(4769), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4767), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4767), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4767), - [anon_sym_BSLASHbegin] = ACTIONS(4769), - [anon_sym_BSLASHusepackage] = ACTIONS(4769), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4769), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4769), - [anon_sym_BSLASHinclude] = ACTIONS(4769), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4769), - [anon_sym_BSLASHinput] = ACTIONS(4769), - [anon_sym_BSLASHsubfile] = ACTIONS(4769), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4769), - [anon_sym_BSLASHbibliography] = ACTIONS(4769), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4769), - [anon_sym_BSLASHincludesvg] = ACTIONS(4769), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4769), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4769), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4769), - [anon_sym_BSLASHimport] = ACTIONS(4769), - [anon_sym_BSLASHsubimport] = ACTIONS(4769), - [anon_sym_BSLASHinputfrom] = ACTIONS(4769), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4769), - [anon_sym_BSLASHincludefrom] = ACTIONS(4769), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4769), - [anon_sym_BSLASHcaption] = ACTIONS(4769), - [anon_sym_BSLASHcite] = ACTIONS(4769), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCite] = ACTIONS(4769), - [anon_sym_BSLASHnocite] = ACTIONS(4769), - [anon_sym_BSLASHcitet] = ACTIONS(4769), - [anon_sym_BSLASHcitep] = ACTIONS(4769), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteauthor] = ACTIONS(4769), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4769), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitetitle] = ACTIONS(4769), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteyear] = ACTIONS(4769), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4767), - [anon_sym_BSLASHcitedate] = ACTIONS(4769), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4767), - [anon_sym_BSLASHciteurl] = ACTIONS(4769), - [anon_sym_BSLASHfullcite] = ACTIONS(4769), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4769), - [anon_sym_BSLASHcitealt] = ACTIONS(4769), - [anon_sym_BSLASHcitealp] = ACTIONS(4769), - [anon_sym_BSLASHcitetext] = ACTIONS(4769), - [anon_sym_BSLASHparencite] = ACTIONS(4769), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHParencite] = ACTIONS(4769), - [anon_sym_BSLASHfootcite] = ACTIONS(4769), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4769), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4769), - [anon_sym_BSLASHtextcite] = ACTIONS(4769), - [anon_sym_BSLASHTextcite] = ACTIONS(4769), - [anon_sym_BSLASHsmartcite] = ACTIONS(4769), - [anon_sym_BSLASHSmartcite] = ACTIONS(4769), - [anon_sym_BSLASHsupercite] = ACTIONS(4769), - [anon_sym_BSLASHautocite] = ACTIONS(4769), - [anon_sym_BSLASHAutocite] = ACTIONS(4769), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4767), - [anon_sym_BSLASHvolcite] = ACTIONS(4769), - [anon_sym_BSLASHVolcite] = ACTIONS(4769), - [anon_sym_BSLASHpvolcite] = ACTIONS(4769), - [anon_sym_BSLASHPvolcite] = ACTIONS(4769), - [anon_sym_BSLASHfvolcite] = ACTIONS(4769), - [anon_sym_BSLASHftvolcite] = ACTIONS(4769), - [anon_sym_BSLASHsvolcite] = ACTIONS(4769), - [anon_sym_BSLASHSvolcite] = ACTIONS(4769), - [anon_sym_BSLASHtvolcite] = ACTIONS(4769), - [anon_sym_BSLASHTvolcite] = ACTIONS(4769), - [anon_sym_BSLASHavolcite] = ACTIONS(4769), - [anon_sym_BSLASHAvolcite] = ACTIONS(4769), - [anon_sym_BSLASHnotecite] = ACTIONS(4769), - [anon_sym_BSLASHNotecite] = ACTIONS(4769), - [anon_sym_BSLASHpnotecite] = ACTIONS(4769), - [anon_sym_BSLASHPnotecite] = ACTIONS(4769), - [anon_sym_BSLASHfnotecite] = ACTIONS(4769), - [anon_sym_BSLASHlabel] = ACTIONS(4769), - [anon_sym_BSLASHref] = ACTIONS(4769), - [anon_sym_BSLASHeqref] = ACTIONS(4769), - [anon_sym_BSLASHvref] = ACTIONS(4769), - [anon_sym_BSLASHVref] = ACTIONS(4769), - [anon_sym_BSLASHautoref] = ACTIONS(4769), - [anon_sym_BSLASHpageref] = ACTIONS(4769), - [anon_sym_BSLASHcref] = ACTIONS(4769), - [anon_sym_BSLASHCref] = ACTIONS(4769), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4767), - [anon_sym_BSLASHnamecref] = ACTIONS(4769), - [anon_sym_BSLASHnameCref] = ACTIONS(4769), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4769), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4769), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4769), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4769), - [anon_sym_BSLASHlabelcref] = ACTIONS(4769), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4769), - [anon_sym_BSLASHcrefrange] = ACTIONS(4769), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4767), - [anon_sym_BSLASHCrefrange] = ACTIONS(4769), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4767), - [anon_sym_BSLASHnewlabel] = ACTIONS(4769), - [anon_sym_BSLASHnewcommand] = ACTIONS(4769), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4769), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4769), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4767), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4769), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4767), - [anon_sym_BSLASHdef] = ACTIONS(4769), - [anon_sym_BSLASHlet] = ACTIONS(4769), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4769), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4769), - [anon_sym_BSLASHgls] = ACTIONS(4769), - [anon_sym_BSLASHGls] = ACTIONS(4769), - [anon_sym_BSLASHGLS] = ACTIONS(4769), - [anon_sym_BSLASHglspl] = ACTIONS(4769), - [anon_sym_BSLASHGlspl] = ACTIONS(4769), - [anon_sym_BSLASHGLSpl] = ACTIONS(4769), - [anon_sym_BSLASHglsdisp] = ACTIONS(4769), - [anon_sym_BSLASHglslink] = ACTIONS(4769), - [anon_sym_BSLASHglstext] = ACTIONS(4769), - [anon_sym_BSLASHGlstext] = ACTIONS(4769), - [anon_sym_BSLASHGLStext] = ACTIONS(4769), - [anon_sym_BSLASHglsfirst] = ACTIONS(4769), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4769), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4769), - [anon_sym_BSLASHglsplural] = ACTIONS(4769), - [anon_sym_BSLASHGlsplural] = ACTIONS(4769), - [anon_sym_BSLASHGLSplural] = ACTIONS(4769), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4769), - [anon_sym_BSLASHglsname] = ACTIONS(4769), - [anon_sym_BSLASHGlsname] = ACTIONS(4769), - [anon_sym_BSLASHGLSname] = ACTIONS(4769), - [anon_sym_BSLASHglssymbol] = ACTIONS(4769), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4769), - [anon_sym_BSLASHglsdesc] = ACTIONS(4769), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4769), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4769), - [anon_sym_BSLASHglsuseri] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4769), - [anon_sym_BSLASHglsuserii] = ACTIONS(4769), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4769), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4769), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4769), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4769), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4769), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4769), - [anon_sym_BSLASHglsuserv] = ACTIONS(4769), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4769), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4769), - [anon_sym_BSLASHglsuservi] = ACTIONS(4769), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4769), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4769), - [anon_sym_BSLASHnewacronym] = ACTIONS(4769), - [anon_sym_BSLASHacrshort] = ACTIONS(4769), - [anon_sym_BSLASHAcrshort] = ACTIONS(4769), - [anon_sym_BSLASHACRshort] = ACTIONS(4769), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4769), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4769), - [anon_sym_BSLASHacrlong] = ACTIONS(4769), - [anon_sym_BSLASHAcrlong] = ACTIONS(4769), - [anon_sym_BSLASHACRlong] = ACTIONS(4769), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4769), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4769), - [anon_sym_BSLASHacrfull] = ACTIONS(4769), - [anon_sym_BSLASHAcrfull] = ACTIONS(4769), - [anon_sym_BSLASHACRfull] = ACTIONS(4769), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4769), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4769), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4769), - [anon_sym_BSLASHacs] = ACTIONS(4769), - [anon_sym_BSLASHAcs] = ACTIONS(4769), - [anon_sym_BSLASHacsp] = ACTIONS(4769), - [anon_sym_BSLASHAcsp] = ACTIONS(4769), - [anon_sym_BSLASHacl] = ACTIONS(4769), - [anon_sym_BSLASHAcl] = ACTIONS(4769), - [anon_sym_BSLASHaclp] = ACTIONS(4769), - [anon_sym_BSLASHAclp] = ACTIONS(4769), - [anon_sym_BSLASHacf] = ACTIONS(4769), - [anon_sym_BSLASHAcf] = ACTIONS(4769), - [anon_sym_BSLASHacfp] = ACTIONS(4769), - [anon_sym_BSLASHAcfp] = ACTIONS(4769), - [anon_sym_BSLASHac] = ACTIONS(4769), - [anon_sym_BSLASHAc] = ACTIONS(4769), - [anon_sym_BSLASHacp] = ACTIONS(4769), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4769), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4769), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4769), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4769), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4769), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4769), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4769), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4769), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4769), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4769), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4769), - [anon_sym_BSLASHcolor] = ACTIONS(4769), - [anon_sym_BSLASHcolorbox] = ACTIONS(4769), - [anon_sym_BSLASHtextcolor] = ACTIONS(4769), - [anon_sym_BSLASHpagecolor] = ACTIONS(4769), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4769), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4769), - }, - [831] = { - [sym_curly_group] = STATE(880), - [sym_command_name] = ACTIONS(4765), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4765), - [anon_sym_LPAREN] = ACTIONS(4763), - [anon_sym_RPAREN] = ACTIONS(4763), - [anon_sym_LBRACK] = ACTIONS(4763), - [anon_sym_RBRACK] = ACTIONS(4763), - [anon_sym_COMMA] = ACTIONS(4763), - [anon_sym_EQ] = ACTIONS(4763), - [anon_sym_BSLASHpart] = ACTIONS(4765), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddpart] = ACTIONS(4765), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4763), - [anon_sym_BSLASHchapter] = ACTIONS(4765), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddchap] = ACTIONS(4765), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsection] = ACTIONS(4765), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHaddsec] = ACTIONS(4765), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubsection] = ACTIONS(4765), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4765), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4763), - [anon_sym_BSLASHparagraph] = ACTIONS(4765), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4763), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4765), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4763), - [anon_sym_BSLASHitem] = ACTIONS(4765), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4763), - [anon_sym_LBRACE] = ACTIONS(794), - [sym_word] = ACTIONS(4765), - [sym_placeholder] = ACTIONS(4763), - [anon_sym_PLUS] = ACTIONS(4765), - [anon_sym_DASH] = ACTIONS(4765), - [anon_sym_STAR] = ACTIONS(4765), - [anon_sym_SLASH] = ACTIONS(4765), - [anon_sym_CARET] = ACTIONS(4765), - [anon_sym__] = ACTIONS(4765), - [anon_sym_LT] = ACTIONS(4765), - [anon_sym_GT] = ACTIONS(4765), - [anon_sym_BANG] = ACTIONS(4765), - [anon_sym_PIPE] = ACTIONS(4765), - [anon_sym_COLON] = ACTIONS(4765), - [anon_sym_SQUOTE] = ACTIONS(4765), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4763), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4763), - [anon_sym_DOLLAR] = ACTIONS(4765), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4763), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4763), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4763), - [anon_sym_BSLASHbegin] = ACTIONS(4765), - [anon_sym_BSLASHusepackage] = ACTIONS(4765), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4765), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4765), - [anon_sym_BSLASHinclude] = ACTIONS(4765), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4765), - [anon_sym_BSLASHinput] = ACTIONS(4765), - [anon_sym_BSLASHsubfile] = ACTIONS(4765), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4765), - [anon_sym_BSLASHbibliography] = ACTIONS(4765), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4765), - [anon_sym_BSLASHincludesvg] = ACTIONS(4765), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4765), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4765), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4765), - [anon_sym_BSLASHimport] = ACTIONS(4765), - [anon_sym_BSLASHsubimport] = ACTIONS(4765), - [anon_sym_BSLASHinputfrom] = ACTIONS(4765), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4765), - [anon_sym_BSLASHincludefrom] = ACTIONS(4765), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4765), - [anon_sym_BSLASHcaption] = ACTIONS(4765), - [anon_sym_BSLASHcite] = ACTIONS(4765), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCite] = ACTIONS(4765), - [anon_sym_BSLASHnocite] = ACTIONS(4765), - [anon_sym_BSLASHcitet] = ACTIONS(4765), - [anon_sym_BSLASHcitep] = ACTIONS(4765), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteauthor] = ACTIONS(4765), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4765), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitetitle] = ACTIONS(4765), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteyear] = ACTIONS(4765), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4763), - [anon_sym_BSLASHcitedate] = ACTIONS(4765), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4763), - [anon_sym_BSLASHciteurl] = ACTIONS(4765), - [anon_sym_BSLASHfullcite] = ACTIONS(4765), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4765), - [anon_sym_BSLASHcitealt] = ACTIONS(4765), - [anon_sym_BSLASHcitealp] = ACTIONS(4765), - [anon_sym_BSLASHcitetext] = ACTIONS(4765), - [anon_sym_BSLASHparencite] = ACTIONS(4765), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHParencite] = ACTIONS(4765), - [anon_sym_BSLASHfootcite] = ACTIONS(4765), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4765), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4765), - [anon_sym_BSLASHtextcite] = ACTIONS(4765), - [anon_sym_BSLASHTextcite] = ACTIONS(4765), - [anon_sym_BSLASHsmartcite] = ACTIONS(4765), - [anon_sym_BSLASHSmartcite] = ACTIONS(4765), - [anon_sym_BSLASHsupercite] = ACTIONS(4765), - [anon_sym_BSLASHautocite] = ACTIONS(4765), - [anon_sym_BSLASHAutocite] = ACTIONS(4765), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4763), - [anon_sym_BSLASHvolcite] = ACTIONS(4765), - [anon_sym_BSLASHVolcite] = ACTIONS(4765), - [anon_sym_BSLASHpvolcite] = ACTIONS(4765), - [anon_sym_BSLASHPvolcite] = ACTIONS(4765), - [anon_sym_BSLASHfvolcite] = ACTIONS(4765), - [anon_sym_BSLASHftvolcite] = ACTIONS(4765), - [anon_sym_BSLASHsvolcite] = ACTIONS(4765), - [anon_sym_BSLASHSvolcite] = ACTIONS(4765), - [anon_sym_BSLASHtvolcite] = ACTIONS(4765), - [anon_sym_BSLASHTvolcite] = ACTIONS(4765), - [anon_sym_BSLASHavolcite] = ACTIONS(4765), - [anon_sym_BSLASHAvolcite] = ACTIONS(4765), - [anon_sym_BSLASHnotecite] = ACTIONS(4765), - [anon_sym_BSLASHNotecite] = ACTIONS(4765), - [anon_sym_BSLASHpnotecite] = ACTIONS(4765), - [anon_sym_BSLASHPnotecite] = ACTIONS(4765), - [anon_sym_BSLASHfnotecite] = ACTIONS(4765), - [anon_sym_BSLASHlabel] = ACTIONS(4765), - [anon_sym_BSLASHref] = ACTIONS(4765), - [anon_sym_BSLASHeqref] = ACTIONS(4765), - [anon_sym_BSLASHvref] = ACTIONS(4765), - [anon_sym_BSLASHVref] = ACTIONS(4765), - [anon_sym_BSLASHautoref] = ACTIONS(4765), - [anon_sym_BSLASHpageref] = ACTIONS(4765), - [anon_sym_BSLASHcref] = ACTIONS(4765), - [anon_sym_BSLASHCref] = ACTIONS(4765), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4763), - [anon_sym_BSLASHnamecref] = ACTIONS(4765), - [anon_sym_BSLASHnameCref] = ACTIONS(4765), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4765), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4765), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4765), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4765), - [anon_sym_BSLASHlabelcref] = ACTIONS(4765), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4765), - [anon_sym_BSLASHcrefrange] = ACTIONS(4765), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4763), - [anon_sym_BSLASHCrefrange] = ACTIONS(4765), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4763), - [anon_sym_BSLASHnewlabel] = ACTIONS(4765), - [anon_sym_BSLASHnewcommand] = ACTIONS(4765), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4765), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4765), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4763), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4765), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4763), - [anon_sym_BSLASHdef] = ACTIONS(4765), - [anon_sym_BSLASHlet] = ACTIONS(4765), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4765), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4765), - [anon_sym_BSLASHgls] = ACTIONS(4765), - [anon_sym_BSLASHGls] = ACTIONS(4765), - [anon_sym_BSLASHGLS] = ACTIONS(4765), - [anon_sym_BSLASHglspl] = ACTIONS(4765), - [anon_sym_BSLASHGlspl] = ACTIONS(4765), - [anon_sym_BSLASHGLSpl] = ACTIONS(4765), - [anon_sym_BSLASHglsdisp] = ACTIONS(4765), - [anon_sym_BSLASHglslink] = ACTIONS(4765), - [anon_sym_BSLASHglstext] = ACTIONS(4765), - [anon_sym_BSLASHGlstext] = ACTIONS(4765), - [anon_sym_BSLASHGLStext] = ACTIONS(4765), - [anon_sym_BSLASHglsfirst] = ACTIONS(4765), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4765), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4765), - [anon_sym_BSLASHglsplural] = ACTIONS(4765), - [anon_sym_BSLASHGlsplural] = ACTIONS(4765), - [anon_sym_BSLASHGLSplural] = ACTIONS(4765), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4765), - [anon_sym_BSLASHglsname] = ACTIONS(4765), - [anon_sym_BSLASHGlsname] = ACTIONS(4765), - [anon_sym_BSLASHGLSname] = ACTIONS(4765), - [anon_sym_BSLASHglssymbol] = ACTIONS(4765), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4765), - [anon_sym_BSLASHglsdesc] = ACTIONS(4765), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4765), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4765), - [anon_sym_BSLASHglsuseri] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4765), - [anon_sym_BSLASHglsuserii] = ACTIONS(4765), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4765), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4765), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4765), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4765), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4765), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4765), - [anon_sym_BSLASHglsuserv] = ACTIONS(4765), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4765), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4765), - [anon_sym_BSLASHglsuservi] = ACTIONS(4765), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4765), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4765), - [anon_sym_BSLASHnewacronym] = ACTIONS(4765), - [anon_sym_BSLASHacrshort] = ACTIONS(4765), - [anon_sym_BSLASHAcrshort] = ACTIONS(4765), - [anon_sym_BSLASHACRshort] = ACTIONS(4765), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4765), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4765), - [anon_sym_BSLASHacrlong] = ACTIONS(4765), - [anon_sym_BSLASHAcrlong] = ACTIONS(4765), - [anon_sym_BSLASHACRlong] = ACTIONS(4765), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4765), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4765), - [anon_sym_BSLASHacrfull] = ACTIONS(4765), - [anon_sym_BSLASHAcrfull] = ACTIONS(4765), - [anon_sym_BSLASHACRfull] = ACTIONS(4765), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4765), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4765), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4765), - [anon_sym_BSLASHacs] = ACTIONS(4765), - [anon_sym_BSLASHAcs] = ACTIONS(4765), - [anon_sym_BSLASHacsp] = ACTIONS(4765), - [anon_sym_BSLASHAcsp] = ACTIONS(4765), - [anon_sym_BSLASHacl] = ACTIONS(4765), - [anon_sym_BSLASHAcl] = ACTIONS(4765), - [anon_sym_BSLASHaclp] = ACTIONS(4765), - [anon_sym_BSLASHAclp] = ACTIONS(4765), - [anon_sym_BSLASHacf] = ACTIONS(4765), - [anon_sym_BSLASHAcf] = ACTIONS(4765), - [anon_sym_BSLASHacfp] = ACTIONS(4765), - [anon_sym_BSLASHAcfp] = ACTIONS(4765), - [anon_sym_BSLASHac] = ACTIONS(4765), - [anon_sym_BSLASHAc] = ACTIONS(4765), - [anon_sym_BSLASHacp] = ACTIONS(4765), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4765), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4765), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4765), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4765), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4765), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4765), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4765), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4765), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4765), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4765), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4765), - [anon_sym_BSLASHcolor] = ACTIONS(4765), - [anon_sym_BSLASHcolorbox] = ACTIONS(4765), - [anon_sym_BSLASHtextcolor] = ACTIONS(4765), - [anon_sym_BSLASHpagecolor] = ACTIONS(4765), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4765), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4765), - }, - [832] = { - [sym_command_name] = ACTIONS(5271), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5271), - [anon_sym_LPAREN] = ACTIONS(5269), - [anon_sym_RPAREN] = ACTIONS(5269), - [anon_sym_LBRACK] = ACTIONS(5269), - [anon_sym_RBRACK] = ACTIONS(5269), - [anon_sym_COMMA] = ACTIONS(5269), - [anon_sym_EQ] = ACTIONS(5269), - [anon_sym_BSLASHpart] = ACTIONS(5271), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddpart] = ACTIONS(5271), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5269), - [anon_sym_BSLASHchapter] = ACTIONS(5271), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddchap] = ACTIONS(5271), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsection] = ACTIONS(5271), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddsec] = ACTIONS(5271), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubsection] = ACTIONS(5271), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5271), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHparagraph] = ACTIONS(5271), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5271), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5269), - [anon_sym_BSLASHitem] = ACTIONS(5271), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5269), - [anon_sym_LBRACE] = ACTIONS(5269), - [sym_word] = ACTIONS(5271), - [sym_placeholder] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5271), - [anon_sym_DASH] = ACTIONS(5271), - [anon_sym_STAR] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5271), - [anon_sym_CARET] = ACTIONS(5271), - [anon_sym__] = ACTIONS(5271), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_GT] = ACTIONS(5271), - [anon_sym_BANG] = ACTIONS(5271), - [anon_sym_PIPE] = ACTIONS(5271), - [anon_sym_COLON] = ACTIONS(5271), - [anon_sym_SQUOTE] = ACTIONS(5271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5269), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5269), - [anon_sym_DOLLAR] = ACTIONS(5271), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5269), - [anon_sym_BSLASHbegin] = ACTIONS(5271), - [anon_sym_BSLASHusepackage] = ACTIONS(5271), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5271), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5271), - [anon_sym_BSLASHinclude] = ACTIONS(5271), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5271), - [anon_sym_BSLASHinput] = ACTIONS(5271), - [anon_sym_BSLASHsubfile] = ACTIONS(5271), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5271), - [anon_sym_BSLASHbibliography] = ACTIONS(5271), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5271), - [anon_sym_BSLASHincludesvg] = ACTIONS(5271), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5271), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5271), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5271), - [anon_sym_BSLASHimport] = ACTIONS(5271), - [anon_sym_BSLASHsubimport] = ACTIONS(5271), - [anon_sym_BSLASHinputfrom] = ACTIONS(5271), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5271), - [anon_sym_BSLASHincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHcaption] = ACTIONS(5271), - [anon_sym_BSLASHcite] = ACTIONS(5271), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCite] = ACTIONS(5271), - [anon_sym_BSLASHnocite] = ACTIONS(5271), - [anon_sym_BSLASHcitet] = ACTIONS(5271), - [anon_sym_BSLASHcitep] = ACTIONS(5271), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor] = ACTIONS(5271), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5271), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle] = ACTIONS(5271), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteyear] = ACTIONS(5271), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitedate] = ACTIONS(5271), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteurl] = ACTIONS(5271), - [anon_sym_BSLASHfullcite] = ACTIONS(5271), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5271), - [anon_sym_BSLASHcitealt] = ACTIONS(5271), - [anon_sym_BSLASHcitealp] = ACTIONS(5271), - [anon_sym_BSLASHcitetext] = ACTIONS(5271), - [anon_sym_BSLASHparencite] = ACTIONS(5271), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHParencite] = ACTIONS(5271), - [anon_sym_BSLASHfootcite] = ACTIONS(5271), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5271), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5271), - [anon_sym_BSLASHtextcite] = ACTIONS(5271), - [anon_sym_BSLASHTextcite] = ACTIONS(5271), - [anon_sym_BSLASHsmartcite] = ACTIONS(5271), - [anon_sym_BSLASHSmartcite] = ACTIONS(5271), - [anon_sym_BSLASHsupercite] = ACTIONS(5271), - [anon_sym_BSLASHautocite] = ACTIONS(5271), - [anon_sym_BSLASHAutocite] = ACTIONS(5271), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHvolcite] = ACTIONS(5271), - [anon_sym_BSLASHVolcite] = ACTIONS(5271), - [anon_sym_BSLASHpvolcite] = ACTIONS(5271), - [anon_sym_BSLASHPvolcite] = ACTIONS(5271), - [anon_sym_BSLASHfvolcite] = ACTIONS(5271), - [anon_sym_BSLASHftvolcite] = ACTIONS(5271), - [anon_sym_BSLASHsvolcite] = ACTIONS(5271), - [anon_sym_BSLASHSvolcite] = ACTIONS(5271), - [anon_sym_BSLASHtvolcite] = ACTIONS(5271), - [anon_sym_BSLASHTvolcite] = ACTIONS(5271), - [anon_sym_BSLASHavolcite] = ACTIONS(5271), - [anon_sym_BSLASHAvolcite] = ACTIONS(5271), - [anon_sym_BSLASHnotecite] = ACTIONS(5271), - [anon_sym_BSLASHNotecite] = ACTIONS(5271), - [anon_sym_BSLASHpnotecite] = ACTIONS(5271), - [anon_sym_BSLASHPnotecite] = ACTIONS(5271), - [anon_sym_BSLASHfnotecite] = ACTIONS(5271), - [anon_sym_BSLASHlabel] = ACTIONS(5271), - [anon_sym_BSLASHref] = ACTIONS(5271), - [anon_sym_BSLASHeqref] = ACTIONS(5271), - [anon_sym_BSLASHvref] = ACTIONS(5271), - [anon_sym_BSLASHVref] = ACTIONS(5271), - [anon_sym_BSLASHautoref] = ACTIONS(5271), - [anon_sym_BSLASHpageref] = ACTIONS(5271), - [anon_sym_BSLASHcref] = ACTIONS(5271), - [anon_sym_BSLASHCref] = ACTIONS(5271), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnameCref] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHlabelcref] = ACTIONS(5271), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange] = ACTIONS(5271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnewlabel] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5271), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5271), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5271), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5269), - [anon_sym_BSLASHdef] = ACTIONS(5271), - [anon_sym_BSLASHlet] = ACTIONS(5271), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5271), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5271), - [anon_sym_BSLASHgls] = ACTIONS(5271), - [anon_sym_BSLASHGls] = ACTIONS(5271), - [anon_sym_BSLASHGLS] = ACTIONS(5271), - [anon_sym_BSLASHglspl] = ACTIONS(5271), - [anon_sym_BSLASHGlspl] = ACTIONS(5271), - [anon_sym_BSLASHGLSpl] = ACTIONS(5271), - [anon_sym_BSLASHglsdisp] = ACTIONS(5271), - [anon_sym_BSLASHglslink] = ACTIONS(5271), - [anon_sym_BSLASHglstext] = ACTIONS(5271), - [anon_sym_BSLASHGlstext] = ACTIONS(5271), - [anon_sym_BSLASHGLStext] = ACTIONS(5271), - [anon_sym_BSLASHglsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5271), - [anon_sym_BSLASHglsplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSplural] = ACTIONS(5271), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHglsname] = ACTIONS(5271), - [anon_sym_BSLASHGlsname] = ACTIONS(5271), - [anon_sym_BSLASHGLSname] = ACTIONS(5271), - [anon_sym_BSLASHglssymbol] = ACTIONS(5271), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5271), - [anon_sym_BSLASHglsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5271), - [anon_sym_BSLASHglsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5271), - [anon_sym_BSLASHglsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5271), - [anon_sym_BSLASHglsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5271), - [anon_sym_BSLASHglsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5271), - [anon_sym_BSLASHnewacronym] = ACTIONS(5271), - [anon_sym_BSLASHacrshort] = ACTIONS(5271), - [anon_sym_BSLASHAcrshort] = ACTIONS(5271), - [anon_sym_BSLASHACRshort] = ACTIONS(5271), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5271), - [anon_sym_BSLASHacrlong] = ACTIONS(5271), - [anon_sym_BSLASHAcrlong] = ACTIONS(5271), - [anon_sym_BSLASHACRlong] = ACTIONS(5271), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5271), - [anon_sym_BSLASHacrfull] = ACTIONS(5271), - [anon_sym_BSLASHAcrfull] = ACTIONS(5271), - [anon_sym_BSLASHACRfull] = ACTIONS(5271), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5271), - [anon_sym_BSLASHacs] = ACTIONS(5271), - [anon_sym_BSLASHAcs] = ACTIONS(5271), - [anon_sym_BSLASHacsp] = ACTIONS(5271), - [anon_sym_BSLASHAcsp] = ACTIONS(5271), - [anon_sym_BSLASHacl] = ACTIONS(5271), - [anon_sym_BSLASHAcl] = ACTIONS(5271), - [anon_sym_BSLASHaclp] = ACTIONS(5271), - [anon_sym_BSLASHAclp] = ACTIONS(5271), - [anon_sym_BSLASHacf] = ACTIONS(5271), - [anon_sym_BSLASHAcf] = ACTIONS(5271), - [anon_sym_BSLASHacfp] = ACTIONS(5271), - [anon_sym_BSLASHAcfp] = ACTIONS(5271), - [anon_sym_BSLASHac] = ACTIONS(5271), - [anon_sym_BSLASHAc] = ACTIONS(5271), - [anon_sym_BSLASHacp] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5271), - [anon_sym_BSLASHcolor] = ACTIONS(5271), - [anon_sym_BSLASHcolorbox] = ACTIONS(5271), - [anon_sym_BSLASHtextcolor] = ACTIONS(5271), - [anon_sym_BSLASHpagecolor] = ACTIONS(5271), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5271), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5271), - }, - [833] = { - [sym_command_name] = ACTIONS(4953), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_RBRACK] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_BSLASHpart] = ACTIONS(4953), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddpart] = ACTIONS(4953), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4951), - [anon_sym_BSLASHchapter] = ACTIONS(4953), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddchap] = ACTIONS(4953), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsection] = ACTIONS(4953), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddsec] = ACTIONS(4953), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubsection] = ACTIONS(4953), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4953), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHparagraph] = ACTIONS(4953), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4953), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4951), - [anon_sym_BSLASHitem] = ACTIONS(4953), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [sym_word] = ACTIONS(4953), - [sym_placeholder] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym__] = ACTIONS(4953), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4953), - [anon_sym_COLON] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4953), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4951), - [anon_sym_BSLASHbegin] = ACTIONS(4953), - [anon_sym_BSLASHend] = ACTIONS(4953), - [anon_sym_BSLASHusepackage] = ACTIONS(4953), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4953), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4953), - [anon_sym_BSLASHinclude] = ACTIONS(4953), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4953), - [anon_sym_BSLASHinput] = ACTIONS(4953), - [anon_sym_BSLASHsubfile] = ACTIONS(4953), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4953), - [anon_sym_BSLASHbibliography] = ACTIONS(4953), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4953), - [anon_sym_BSLASHincludesvg] = ACTIONS(4953), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4953), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4953), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4953), - [anon_sym_BSLASHimport] = ACTIONS(4953), - [anon_sym_BSLASHsubimport] = ACTIONS(4953), - [anon_sym_BSLASHinputfrom] = ACTIONS(4953), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4953), - [anon_sym_BSLASHincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHcaption] = ACTIONS(4953), - [anon_sym_BSLASHcite] = ACTIONS(4953), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCite] = ACTIONS(4953), - [anon_sym_BSLASHnocite] = ACTIONS(4953), - [anon_sym_BSLASHcitet] = ACTIONS(4953), - [anon_sym_BSLASHcitep] = ACTIONS(4953), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteyear] = ACTIONS(4953), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitedate] = ACTIONS(4953), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteurl] = ACTIONS(4953), - [anon_sym_BSLASHfullcite] = ACTIONS(4953), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4953), - [anon_sym_BSLASHcitealt] = ACTIONS(4953), - [anon_sym_BSLASHcitealp] = ACTIONS(4953), - [anon_sym_BSLASHcitetext] = ACTIONS(4953), - [anon_sym_BSLASHparencite] = ACTIONS(4953), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHParencite] = ACTIONS(4953), - [anon_sym_BSLASHfootcite] = ACTIONS(4953), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4953), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4953), - [anon_sym_BSLASHtextcite] = ACTIONS(4953), - [anon_sym_BSLASHTextcite] = ACTIONS(4953), - [anon_sym_BSLASHsmartcite] = ACTIONS(4953), - [anon_sym_BSLASHSmartcite] = ACTIONS(4953), - [anon_sym_BSLASHsupercite] = ACTIONS(4953), - [anon_sym_BSLASHautocite] = ACTIONS(4953), - [anon_sym_BSLASHAutocite] = ACTIONS(4953), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHvolcite] = ACTIONS(4953), - [anon_sym_BSLASHVolcite] = ACTIONS(4953), - [anon_sym_BSLASHpvolcite] = ACTIONS(4953), - [anon_sym_BSLASHPvolcite] = ACTIONS(4953), - [anon_sym_BSLASHfvolcite] = ACTIONS(4953), - [anon_sym_BSLASHftvolcite] = ACTIONS(4953), - [anon_sym_BSLASHsvolcite] = ACTIONS(4953), - [anon_sym_BSLASHSvolcite] = ACTIONS(4953), - [anon_sym_BSLASHtvolcite] = ACTIONS(4953), - [anon_sym_BSLASHTvolcite] = ACTIONS(4953), - [anon_sym_BSLASHavolcite] = ACTIONS(4953), - [anon_sym_BSLASHAvolcite] = ACTIONS(4953), - [anon_sym_BSLASHnotecite] = ACTIONS(4953), - [anon_sym_BSLASHNotecite] = ACTIONS(4953), - [anon_sym_BSLASHpnotecite] = ACTIONS(4953), - [anon_sym_BSLASHPnotecite] = ACTIONS(4953), - [anon_sym_BSLASHfnotecite] = ACTIONS(4953), - [anon_sym_BSLASHlabel] = ACTIONS(4953), - [anon_sym_BSLASHref] = ACTIONS(4953), - [anon_sym_BSLASHeqref] = ACTIONS(4953), - [anon_sym_BSLASHvref] = ACTIONS(4953), - [anon_sym_BSLASHVref] = ACTIONS(4953), - [anon_sym_BSLASHautoref] = ACTIONS(4953), - [anon_sym_BSLASHpageref] = ACTIONS(4953), - [anon_sym_BSLASHcref] = ACTIONS(4953), - [anon_sym_BSLASHCref] = ACTIONS(4953), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnameCref] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHlabelcref] = ACTIONS(4953), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnewlabel] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4951), - [anon_sym_BSLASHdef] = ACTIONS(4953), - [anon_sym_BSLASHlet] = ACTIONS(4953), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4953), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4953), - [anon_sym_BSLASHgls] = ACTIONS(4953), - [anon_sym_BSLASHGls] = ACTIONS(4953), - [anon_sym_BSLASHGLS] = ACTIONS(4953), - [anon_sym_BSLASHglspl] = ACTIONS(4953), - [anon_sym_BSLASHGlspl] = ACTIONS(4953), - [anon_sym_BSLASHGLSpl] = ACTIONS(4953), - [anon_sym_BSLASHglsdisp] = ACTIONS(4953), - [anon_sym_BSLASHglslink] = ACTIONS(4953), - [anon_sym_BSLASHglstext] = ACTIONS(4953), - [anon_sym_BSLASHGlstext] = ACTIONS(4953), - [anon_sym_BSLASHGLStext] = ACTIONS(4953), - [anon_sym_BSLASHglsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4953), - [anon_sym_BSLASHglsplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSplural] = ACTIONS(4953), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHglsname] = ACTIONS(4953), - [anon_sym_BSLASHGlsname] = ACTIONS(4953), - [anon_sym_BSLASHGLSname] = ACTIONS(4953), - [anon_sym_BSLASHglssymbol] = ACTIONS(4953), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4953), - [anon_sym_BSLASHglsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4953), - [anon_sym_BSLASHglsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4953), - [anon_sym_BSLASHglsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4953), - [anon_sym_BSLASHglsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4953), - [anon_sym_BSLASHglsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4953), - [anon_sym_BSLASHnewacronym] = ACTIONS(4953), - [anon_sym_BSLASHacrshort] = ACTIONS(4953), - [anon_sym_BSLASHAcrshort] = ACTIONS(4953), - [anon_sym_BSLASHACRshort] = ACTIONS(4953), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4953), - [anon_sym_BSLASHacrlong] = ACTIONS(4953), - [anon_sym_BSLASHAcrlong] = ACTIONS(4953), - [anon_sym_BSLASHACRlong] = ACTIONS(4953), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4953), - [anon_sym_BSLASHacrfull] = ACTIONS(4953), - [anon_sym_BSLASHAcrfull] = ACTIONS(4953), - [anon_sym_BSLASHACRfull] = ACTIONS(4953), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4953), - [anon_sym_BSLASHacs] = ACTIONS(4953), - [anon_sym_BSLASHAcs] = ACTIONS(4953), - [anon_sym_BSLASHacsp] = ACTIONS(4953), - [anon_sym_BSLASHAcsp] = ACTIONS(4953), - [anon_sym_BSLASHacl] = ACTIONS(4953), - [anon_sym_BSLASHAcl] = ACTIONS(4953), - [anon_sym_BSLASHaclp] = ACTIONS(4953), - [anon_sym_BSLASHAclp] = ACTIONS(4953), - [anon_sym_BSLASHacf] = ACTIONS(4953), - [anon_sym_BSLASHAcf] = ACTIONS(4953), - [anon_sym_BSLASHacfp] = ACTIONS(4953), - [anon_sym_BSLASHAcfp] = ACTIONS(4953), - [anon_sym_BSLASHac] = ACTIONS(4953), - [anon_sym_BSLASHAc] = ACTIONS(4953), - [anon_sym_BSLASHacp] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4953), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4953), - [anon_sym_BSLASHcolor] = ACTIONS(4953), - [anon_sym_BSLASHcolorbox] = ACTIONS(4953), - [anon_sym_BSLASHtextcolor] = ACTIONS(4953), - [anon_sym_BSLASHpagecolor] = ACTIONS(4953), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4953), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4953), - }, - [834] = { - [sym_command_name] = ACTIONS(5283), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_RPAREN] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_BSLASHpart] = ACTIONS(5283), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddpart] = ACTIONS(5283), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHchapter] = ACTIONS(5283), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddchap] = ACTIONS(5283), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsection] = ACTIONS(5283), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddsec] = ACTIONS(5283), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHparagraph] = ACTIONS(5283), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHitem] = ACTIONS(5283), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), - [anon_sym_LBRACE] = ACTIONS(5281), - [sym_word] = ACTIONS(5283), - [sym_placeholder] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_CARET] = ACTIONS(5283), - [anon_sym__] = ACTIONS(5283), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_BANG] = ACTIONS(5283), - [anon_sym_PIPE] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_SQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), - [anon_sym_BSLASHbegin] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5283), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), - [anon_sym_BSLASHinclude] = ACTIONS(5283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), - [anon_sym_BSLASHinput] = ACTIONS(5283), - [anon_sym_BSLASHsubfile] = ACTIONS(5283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), - [anon_sym_BSLASHbibliography] = ACTIONS(5283), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), - [anon_sym_BSLASHincludesvg] = ACTIONS(5283), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), - [anon_sym_BSLASHimport] = ACTIONS(5283), - [anon_sym_BSLASHsubimport] = ACTIONS(5283), - [anon_sym_BSLASHinputfrom] = ACTIONS(5283), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), - [anon_sym_BSLASHincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHcaption] = ACTIONS(5283), - [anon_sym_BSLASHcite] = ACTIONS(5283), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCite] = ACTIONS(5283), - [anon_sym_BSLASHnocite] = ACTIONS(5283), - [anon_sym_BSLASHcitet] = ACTIONS(5283), - [anon_sym_BSLASHcitep] = ACTIONS(5283), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteyear] = ACTIONS(5283), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitedate] = ACTIONS(5283), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteurl] = ACTIONS(5283), - [anon_sym_BSLASHfullcite] = ACTIONS(5283), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), - [anon_sym_BSLASHcitealt] = ACTIONS(5283), - [anon_sym_BSLASHcitealp] = ACTIONS(5283), - [anon_sym_BSLASHcitetext] = ACTIONS(5283), - [anon_sym_BSLASHparencite] = ACTIONS(5283), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHParencite] = ACTIONS(5283), - [anon_sym_BSLASHfootcite] = ACTIONS(5283), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), - [anon_sym_BSLASHtextcite] = ACTIONS(5283), - [anon_sym_BSLASHTextcite] = ACTIONS(5283), - [anon_sym_BSLASHsmartcite] = ACTIONS(5283), - [anon_sym_BSLASHSmartcite] = ACTIONS(5283), - [anon_sym_BSLASHsupercite] = ACTIONS(5283), - [anon_sym_BSLASHautocite] = ACTIONS(5283), - [anon_sym_BSLASHAutocite] = ACTIONS(5283), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHvolcite] = ACTIONS(5283), - [anon_sym_BSLASHVolcite] = ACTIONS(5283), - [anon_sym_BSLASHpvolcite] = ACTIONS(5283), - [anon_sym_BSLASHPvolcite] = ACTIONS(5283), - [anon_sym_BSLASHfvolcite] = ACTIONS(5283), - [anon_sym_BSLASHftvolcite] = ACTIONS(5283), - [anon_sym_BSLASHsvolcite] = ACTIONS(5283), - [anon_sym_BSLASHSvolcite] = ACTIONS(5283), - [anon_sym_BSLASHtvolcite] = ACTIONS(5283), - [anon_sym_BSLASHTvolcite] = ACTIONS(5283), - [anon_sym_BSLASHavolcite] = ACTIONS(5283), - [anon_sym_BSLASHAvolcite] = ACTIONS(5283), - [anon_sym_BSLASHnotecite] = ACTIONS(5283), - [anon_sym_BSLASHNotecite] = ACTIONS(5283), - [anon_sym_BSLASHpnotecite] = ACTIONS(5283), - [anon_sym_BSLASHPnotecite] = ACTIONS(5283), - [anon_sym_BSLASHfnotecite] = ACTIONS(5283), - [anon_sym_BSLASHlabel] = ACTIONS(5283), - [anon_sym_BSLASHref] = ACTIONS(5283), - [anon_sym_BSLASHeqref] = ACTIONS(5283), - [anon_sym_BSLASHvref] = ACTIONS(5283), - [anon_sym_BSLASHVref] = ACTIONS(5283), - [anon_sym_BSLASHautoref] = ACTIONS(5283), - [anon_sym_BSLASHpageref] = ACTIONS(5283), - [anon_sym_BSLASHcref] = ACTIONS(5283), - [anon_sym_BSLASHCref] = ACTIONS(5283), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnameCref] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHlabelcref] = ACTIONS(5283), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnewlabel] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdef] = ACTIONS(5283), - [anon_sym_BSLASHlet] = ACTIONS(5283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), - [anon_sym_BSLASHgls] = ACTIONS(5283), - [anon_sym_BSLASHGls] = ACTIONS(5283), - [anon_sym_BSLASHGLS] = ACTIONS(5283), - [anon_sym_BSLASHglspl] = ACTIONS(5283), - [anon_sym_BSLASHGlspl] = ACTIONS(5283), - [anon_sym_BSLASHGLSpl] = ACTIONS(5283), - [anon_sym_BSLASHglsdisp] = ACTIONS(5283), - [anon_sym_BSLASHglslink] = ACTIONS(5283), - [anon_sym_BSLASHglstext] = ACTIONS(5283), - [anon_sym_BSLASHGlstext] = ACTIONS(5283), - [anon_sym_BSLASHGLStext] = ACTIONS(5283), - [anon_sym_BSLASHglsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), - [anon_sym_BSLASHglsplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSplural] = ACTIONS(5283), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHglsname] = ACTIONS(5283), - [anon_sym_BSLASHGlsname] = ACTIONS(5283), - [anon_sym_BSLASHGLSname] = ACTIONS(5283), - [anon_sym_BSLASHglssymbol] = ACTIONS(5283), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), - [anon_sym_BSLASHglsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), - [anon_sym_BSLASHglsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), - [anon_sym_BSLASHglsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), - [anon_sym_BSLASHglsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), - [anon_sym_BSLASHglsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), - [anon_sym_BSLASHnewacronym] = ACTIONS(5283), - [anon_sym_BSLASHacrshort] = ACTIONS(5283), - [anon_sym_BSLASHAcrshort] = ACTIONS(5283), - [anon_sym_BSLASHACRshort] = ACTIONS(5283), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), - [anon_sym_BSLASHacrlong] = ACTIONS(5283), - [anon_sym_BSLASHAcrlong] = ACTIONS(5283), - [anon_sym_BSLASHACRlong] = ACTIONS(5283), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), - [anon_sym_BSLASHacrfull] = ACTIONS(5283), - [anon_sym_BSLASHAcrfull] = ACTIONS(5283), - [anon_sym_BSLASHACRfull] = ACTIONS(5283), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), - [anon_sym_BSLASHacs] = ACTIONS(5283), - [anon_sym_BSLASHAcs] = ACTIONS(5283), - [anon_sym_BSLASHacsp] = ACTIONS(5283), - [anon_sym_BSLASHAcsp] = ACTIONS(5283), - [anon_sym_BSLASHacl] = ACTIONS(5283), - [anon_sym_BSLASHAcl] = ACTIONS(5283), - [anon_sym_BSLASHaclp] = ACTIONS(5283), - [anon_sym_BSLASHAclp] = ACTIONS(5283), - [anon_sym_BSLASHacf] = ACTIONS(5283), - [anon_sym_BSLASHAcf] = ACTIONS(5283), - [anon_sym_BSLASHacfp] = ACTIONS(5283), - [anon_sym_BSLASHAcfp] = ACTIONS(5283), - [anon_sym_BSLASHac] = ACTIONS(5283), - [anon_sym_BSLASHAc] = ACTIONS(5283), - [anon_sym_BSLASHacp] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), - [anon_sym_BSLASHcolor] = ACTIONS(5283), - [anon_sym_BSLASHcolorbox] = ACTIONS(5283), - [anon_sym_BSLASHtextcolor] = ACTIONS(5283), - [anon_sym_BSLASHpagecolor] = ACTIONS(5283), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), - }, - [835] = { - [sym_command_name] = ACTIONS(5279), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5279), - [anon_sym_LPAREN] = ACTIONS(5277), - [anon_sym_RPAREN] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(5277), - [anon_sym_RBRACK] = ACTIONS(5277), - [anon_sym_COMMA] = ACTIONS(5277), - [anon_sym_EQ] = ACTIONS(5277), - [anon_sym_BSLASHpart] = ACTIONS(5279), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddpart] = ACTIONS(5279), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5277), - [anon_sym_BSLASHchapter] = ACTIONS(5279), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddchap] = ACTIONS(5279), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsection] = ACTIONS(5279), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddsec] = ACTIONS(5279), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubsection] = ACTIONS(5279), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5279), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHparagraph] = ACTIONS(5279), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5279), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5277), - [anon_sym_BSLASHitem] = ACTIONS(5279), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5277), - [anon_sym_LBRACE] = ACTIONS(5277), - [sym_word] = ACTIONS(5279), - [sym_placeholder] = ACTIONS(5277), - [anon_sym_PLUS] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(5279), - [anon_sym_STAR] = ACTIONS(5279), - [anon_sym_SLASH] = ACTIONS(5279), - [anon_sym_CARET] = ACTIONS(5279), - [anon_sym__] = ACTIONS(5279), - [anon_sym_LT] = ACTIONS(5279), - [anon_sym_GT] = ACTIONS(5279), - [anon_sym_BANG] = ACTIONS(5279), - [anon_sym_PIPE] = ACTIONS(5279), - [anon_sym_COLON] = ACTIONS(5279), - [anon_sym_SQUOTE] = ACTIONS(5279), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5277), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5277), - [anon_sym_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5277), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5277), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5277), - [anon_sym_BSLASHbegin] = ACTIONS(5279), - [anon_sym_BSLASHusepackage] = ACTIONS(5279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5279), - [anon_sym_BSLASHinclude] = ACTIONS(5279), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5279), - [anon_sym_BSLASHinput] = ACTIONS(5279), - [anon_sym_BSLASHsubfile] = ACTIONS(5279), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5279), - [anon_sym_BSLASHbibliography] = ACTIONS(5279), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5279), - [anon_sym_BSLASHincludesvg] = ACTIONS(5279), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5279), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5279), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5279), - [anon_sym_BSLASHimport] = ACTIONS(5279), - [anon_sym_BSLASHsubimport] = ACTIONS(5279), - [anon_sym_BSLASHinputfrom] = ACTIONS(5279), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5279), - [anon_sym_BSLASHincludefrom] = ACTIONS(5279), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5279), - [anon_sym_BSLASHcaption] = ACTIONS(5279), - [anon_sym_BSLASHcite] = ACTIONS(5279), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCite] = ACTIONS(5279), - [anon_sym_BSLASHnocite] = ACTIONS(5279), - [anon_sym_BSLASHcitet] = ACTIONS(5279), - [anon_sym_BSLASHcitep] = ACTIONS(5279), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteauthor] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitetitle] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteyear] = ACTIONS(5279), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitedate] = ACTIONS(5279), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteurl] = ACTIONS(5279), - [anon_sym_BSLASHfullcite] = ACTIONS(5279), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5279), - [anon_sym_BSLASHcitealt] = ACTIONS(5279), - [anon_sym_BSLASHcitealp] = ACTIONS(5279), - [anon_sym_BSLASHcitetext] = ACTIONS(5279), - [anon_sym_BSLASHparencite] = ACTIONS(5279), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHParencite] = ACTIONS(5279), - [anon_sym_BSLASHfootcite] = ACTIONS(5279), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5279), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5279), - [anon_sym_BSLASHtextcite] = ACTIONS(5279), - [anon_sym_BSLASHTextcite] = ACTIONS(5279), - [anon_sym_BSLASHsmartcite] = ACTIONS(5279), - [anon_sym_BSLASHSmartcite] = ACTIONS(5279), - [anon_sym_BSLASHsupercite] = ACTIONS(5279), - [anon_sym_BSLASHautocite] = ACTIONS(5279), - [anon_sym_BSLASHAutocite] = ACTIONS(5279), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHvolcite] = ACTIONS(5279), - [anon_sym_BSLASHVolcite] = ACTIONS(5279), - [anon_sym_BSLASHpvolcite] = ACTIONS(5279), - [anon_sym_BSLASHPvolcite] = ACTIONS(5279), - [anon_sym_BSLASHfvolcite] = ACTIONS(5279), - [anon_sym_BSLASHftvolcite] = ACTIONS(5279), - [anon_sym_BSLASHsvolcite] = ACTIONS(5279), - [anon_sym_BSLASHSvolcite] = ACTIONS(5279), - [anon_sym_BSLASHtvolcite] = ACTIONS(5279), - [anon_sym_BSLASHTvolcite] = ACTIONS(5279), - [anon_sym_BSLASHavolcite] = ACTIONS(5279), - [anon_sym_BSLASHAvolcite] = ACTIONS(5279), - [anon_sym_BSLASHnotecite] = ACTIONS(5279), - [anon_sym_BSLASHNotecite] = ACTIONS(5279), - [anon_sym_BSLASHpnotecite] = ACTIONS(5279), - [anon_sym_BSLASHPnotecite] = ACTIONS(5279), - [anon_sym_BSLASHfnotecite] = ACTIONS(5279), - [anon_sym_BSLASHlabel] = ACTIONS(5279), - [anon_sym_BSLASHref] = ACTIONS(5279), - [anon_sym_BSLASHeqref] = ACTIONS(5279), - [anon_sym_BSLASHvref] = ACTIONS(5279), - [anon_sym_BSLASHVref] = ACTIONS(5279), - [anon_sym_BSLASHautoref] = ACTIONS(5279), - [anon_sym_BSLASHpageref] = ACTIONS(5279), - [anon_sym_BSLASHcref] = ACTIONS(5279), - [anon_sym_BSLASHCref] = ACTIONS(5279), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5277), - [anon_sym_BSLASHnamecref] = ACTIONS(5279), - [anon_sym_BSLASHnameCref] = ACTIONS(5279), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5279), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5279), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5279), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5279), - [anon_sym_BSLASHlabelcref] = ACTIONS(5279), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5279), - [anon_sym_BSLASHcrefrange] = ACTIONS(5279), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCrefrange] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5277), - [anon_sym_BSLASHnewlabel] = ACTIONS(5279), - [anon_sym_BSLASHnewcommand] = ACTIONS(5279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5277), - [anon_sym_BSLASHdef] = ACTIONS(5279), - [anon_sym_BSLASHlet] = ACTIONS(5279), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5279), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5279), - [anon_sym_BSLASHgls] = ACTIONS(5279), - [anon_sym_BSLASHGls] = ACTIONS(5279), - [anon_sym_BSLASHGLS] = ACTIONS(5279), - [anon_sym_BSLASHglspl] = ACTIONS(5279), - [anon_sym_BSLASHGlspl] = ACTIONS(5279), - [anon_sym_BSLASHGLSpl] = ACTIONS(5279), - [anon_sym_BSLASHglsdisp] = ACTIONS(5279), - [anon_sym_BSLASHglslink] = ACTIONS(5279), - [anon_sym_BSLASHglstext] = ACTIONS(5279), - [anon_sym_BSLASHGlstext] = ACTIONS(5279), - [anon_sym_BSLASHGLStext] = ACTIONS(5279), - [anon_sym_BSLASHglsfirst] = ACTIONS(5279), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5279), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5279), - [anon_sym_BSLASHglsplural] = ACTIONS(5279), - [anon_sym_BSLASHGlsplural] = ACTIONS(5279), - [anon_sym_BSLASHGLSplural] = ACTIONS(5279), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHglsname] = ACTIONS(5279), - [anon_sym_BSLASHGlsname] = ACTIONS(5279), - [anon_sym_BSLASHGLSname] = ACTIONS(5279), - [anon_sym_BSLASHglssymbol] = ACTIONS(5279), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5279), - [anon_sym_BSLASHglsdesc] = ACTIONS(5279), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5279), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5279), - [anon_sym_BSLASHglsuseri] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5279), - [anon_sym_BSLASHglsuserii] = ACTIONS(5279), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5279), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5279), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5279), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5279), - [anon_sym_BSLASHglsuserv] = ACTIONS(5279), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5279), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5279), - [anon_sym_BSLASHglsuservi] = ACTIONS(5279), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5279), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5279), - [anon_sym_BSLASHnewacronym] = ACTIONS(5279), - [anon_sym_BSLASHacrshort] = ACTIONS(5279), - [anon_sym_BSLASHAcrshort] = ACTIONS(5279), - [anon_sym_BSLASHACRshort] = ACTIONS(5279), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5279), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5279), - [anon_sym_BSLASHacrlong] = ACTIONS(5279), - [anon_sym_BSLASHAcrlong] = ACTIONS(5279), - [anon_sym_BSLASHACRlong] = ACTIONS(5279), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5279), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5279), - [anon_sym_BSLASHacrfull] = ACTIONS(5279), - [anon_sym_BSLASHAcrfull] = ACTIONS(5279), - [anon_sym_BSLASHACRfull] = ACTIONS(5279), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5279), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5279), - [anon_sym_BSLASHacs] = ACTIONS(5279), - [anon_sym_BSLASHAcs] = ACTIONS(5279), - [anon_sym_BSLASHacsp] = ACTIONS(5279), - [anon_sym_BSLASHAcsp] = ACTIONS(5279), - [anon_sym_BSLASHacl] = ACTIONS(5279), - [anon_sym_BSLASHAcl] = ACTIONS(5279), - [anon_sym_BSLASHaclp] = ACTIONS(5279), - [anon_sym_BSLASHAclp] = ACTIONS(5279), - [anon_sym_BSLASHacf] = ACTIONS(5279), - [anon_sym_BSLASHAcf] = ACTIONS(5279), - [anon_sym_BSLASHacfp] = ACTIONS(5279), - [anon_sym_BSLASHAcfp] = ACTIONS(5279), - [anon_sym_BSLASHac] = ACTIONS(5279), - [anon_sym_BSLASHAc] = ACTIONS(5279), - [anon_sym_BSLASHacp] = ACTIONS(5279), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5279), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5279), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5279), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5279), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5279), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5279), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5279), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5279), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5279), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5279), - [anon_sym_BSLASHcolor] = ACTIONS(5279), - [anon_sym_BSLASHcolorbox] = ACTIONS(5279), - [anon_sym_BSLASHtextcolor] = ACTIONS(5279), - [anon_sym_BSLASHpagecolor] = ACTIONS(5279), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5279), - }, - [836] = { - [sym_command_name] = ACTIONS(5275), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5275), - [anon_sym_LPAREN] = ACTIONS(5273), - [anon_sym_RPAREN] = ACTIONS(5273), - [anon_sym_LBRACK] = ACTIONS(5273), - [anon_sym_RBRACK] = ACTIONS(5273), - [anon_sym_COMMA] = ACTIONS(5273), - [anon_sym_EQ] = ACTIONS(5273), - [anon_sym_BSLASHpart] = ACTIONS(5275), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddpart] = ACTIONS(5275), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5273), - [anon_sym_BSLASHchapter] = ACTIONS(5275), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddchap] = ACTIONS(5275), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsection] = ACTIONS(5275), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddsec] = ACTIONS(5275), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubsection] = ACTIONS(5275), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5275), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHparagraph] = ACTIONS(5275), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5275), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5273), - [anon_sym_BSLASHitem] = ACTIONS(5275), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5273), - [anon_sym_LBRACE] = ACTIONS(5273), - [sym_word] = ACTIONS(5275), - [sym_placeholder] = ACTIONS(5273), - [anon_sym_PLUS] = ACTIONS(5275), - [anon_sym_DASH] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(5275), - [anon_sym_SLASH] = ACTIONS(5275), - [anon_sym_CARET] = ACTIONS(5275), - [anon_sym__] = ACTIONS(5275), - [anon_sym_LT] = ACTIONS(5275), - [anon_sym_GT] = ACTIONS(5275), - [anon_sym_BANG] = ACTIONS(5275), - [anon_sym_PIPE] = ACTIONS(5275), - [anon_sym_COLON] = ACTIONS(5275), - [anon_sym_SQUOTE] = ACTIONS(5275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5273), - [anon_sym_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5273), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5273), - [anon_sym_BSLASHbegin] = ACTIONS(5275), - [anon_sym_BSLASHusepackage] = ACTIONS(5275), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5275), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5275), - [anon_sym_BSLASHinclude] = ACTIONS(5275), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5275), - [anon_sym_BSLASHinput] = ACTIONS(5275), - [anon_sym_BSLASHsubfile] = ACTIONS(5275), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5275), - [anon_sym_BSLASHbibliography] = ACTIONS(5275), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5275), - [anon_sym_BSLASHincludesvg] = ACTIONS(5275), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5275), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5275), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5275), - [anon_sym_BSLASHimport] = ACTIONS(5275), - [anon_sym_BSLASHsubimport] = ACTIONS(5275), - [anon_sym_BSLASHinputfrom] = ACTIONS(5275), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5275), - [anon_sym_BSLASHincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHcaption] = ACTIONS(5275), - [anon_sym_BSLASHcite] = ACTIONS(5275), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCite] = ACTIONS(5275), - [anon_sym_BSLASHnocite] = ACTIONS(5275), - [anon_sym_BSLASHcitet] = ACTIONS(5275), - [anon_sym_BSLASHcitep] = ACTIONS(5275), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteauthor] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitetitle] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteyear] = ACTIONS(5275), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitedate] = ACTIONS(5275), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteurl] = ACTIONS(5275), - [anon_sym_BSLASHfullcite] = ACTIONS(5275), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5275), - [anon_sym_BSLASHcitealt] = ACTIONS(5275), - [anon_sym_BSLASHcitealp] = ACTIONS(5275), - [anon_sym_BSLASHcitetext] = ACTIONS(5275), - [anon_sym_BSLASHparencite] = ACTIONS(5275), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHParencite] = ACTIONS(5275), - [anon_sym_BSLASHfootcite] = ACTIONS(5275), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5275), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5275), - [anon_sym_BSLASHtextcite] = ACTIONS(5275), - [anon_sym_BSLASHTextcite] = ACTIONS(5275), - [anon_sym_BSLASHsmartcite] = ACTIONS(5275), - [anon_sym_BSLASHSmartcite] = ACTIONS(5275), - [anon_sym_BSLASHsupercite] = ACTIONS(5275), - [anon_sym_BSLASHautocite] = ACTIONS(5275), - [anon_sym_BSLASHAutocite] = ACTIONS(5275), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHvolcite] = ACTIONS(5275), - [anon_sym_BSLASHVolcite] = ACTIONS(5275), - [anon_sym_BSLASHpvolcite] = ACTIONS(5275), - [anon_sym_BSLASHPvolcite] = ACTIONS(5275), - [anon_sym_BSLASHfvolcite] = ACTIONS(5275), - [anon_sym_BSLASHftvolcite] = ACTIONS(5275), - [anon_sym_BSLASHsvolcite] = ACTIONS(5275), - [anon_sym_BSLASHSvolcite] = ACTIONS(5275), - [anon_sym_BSLASHtvolcite] = ACTIONS(5275), - [anon_sym_BSLASHTvolcite] = ACTIONS(5275), - [anon_sym_BSLASHavolcite] = ACTIONS(5275), - [anon_sym_BSLASHAvolcite] = ACTIONS(5275), - [anon_sym_BSLASHnotecite] = ACTIONS(5275), - [anon_sym_BSLASHNotecite] = ACTIONS(5275), - [anon_sym_BSLASHpnotecite] = ACTIONS(5275), - [anon_sym_BSLASHPnotecite] = ACTIONS(5275), - [anon_sym_BSLASHfnotecite] = ACTIONS(5275), - [anon_sym_BSLASHlabel] = ACTIONS(5275), - [anon_sym_BSLASHref] = ACTIONS(5275), - [anon_sym_BSLASHeqref] = ACTIONS(5275), - [anon_sym_BSLASHvref] = ACTIONS(5275), - [anon_sym_BSLASHVref] = ACTIONS(5275), - [anon_sym_BSLASHautoref] = ACTIONS(5275), - [anon_sym_BSLASHpageref] = ACTIONS(5275), - [anon_sym_BSLASHcref] = ACTIONS(5275), - [anon_sym_BSLASHCref] = ACTIONS(5275), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnameCref] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHlabelcref] = ACTIONS(5275), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCrefrange] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnewlabel] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5273), - [anon_sym_BSLASHdef] = ACTIONS(5275), - [anon_sym_BSLASHlet] = ACTIONS(5275), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5275), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5275), - [anon_sym_BSLASHgls] = ACTIONS(5275), - [anon_sym_BSLASHGls] = ACTIONS(5275), - [anon_sym_BSLASHGLS] = ACTIONS(5275), - [anon_sym_BSLASHglspl] = ACTIONS(5275), - [anon_sym_BSLASHGlspl] = ACTIONS(5275), - [anon_sym_BSLASHGLSpl] = ACTIONS(5275), - [anon_sym_BSLASHglsdisp] = ACTIONS(5275), - [anon_sym_BSLASHglslink] = ACTIONS(5275), - [anon_sym_BSLASHglstext] = ACTIONS(5275), - [anon_sym_BSLASHGlstext] = ACTIONS(5275), - [anon_sym_BSLASHGLStext] = ACTIONS(5275), - [anon_sym_BSLASHglsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5275), - [anon_sym_BSLASHglsplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSplural] = ACTIONS(5275), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHglsname] = ACTIONS(5275), - [anon_sym_BSLASHGlsname] = ACTIONS(5275), - [anon_sym_BSLASHGLSname] = ACTIONS(5275), - [anon_sym_BSLASHglssymbol] = ACTIONS(5275), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5275), - [anon_sym_BSLASHglsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5275), - [anon_sym_BSLASHglsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5275), - [anon_sym_BSLASHglsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5275), - [anon_sym_BSLASHglsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5275), - [anon_sym_BSLASHglsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5275), - [anon_sym_BSLASHnewacronym] = ACTIONS(5275), - [anon_sym_BSLASHacrshort] = ACTIONS(5275), - [anon_sym_BSLASHAcrshort] = ACTIONS(5275), - [anon_sym_BSLASHACRshort] = ACTIONS(5275), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5275), - [anon_sym_BSLASHacrlong] = ACTIONS(5275), - [anon_sym_BSLASHAcrlong] = ACTIONS(5275), - [anon_sym_BSLASHACRlong] = ACTIONS(5275), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5275), - [anon_sym_BSLASHacrfull] = ACTIONS(5275), - [anon_sym_BSLASHAcrfull] = ACTIONS(5275), - [anon_sym_BSLASHACRfull] = ACTIONS(5275), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5275), - [anon_sym_BSLASHacs] = ACTIONS(5275), - [anon_sym_BSLASHAcs] = ACTIONS(5275), - [anon_sym_BSLASHacsp] = ACTIONS(5275), - [anon_sym_BSLASHAcsp] = ACTIONS(5275), - [anon_sym_BSLASHacl] = ACTIONS(5275), - [anon_sym_BSLASHAcl] = ACTIONS(5275), - [anon_sym_BSLASHaclp] = ACTIONS(5275), - [anon_sym_BSLASHAclp] = ACTIONS(5275), - [anon_sym_BSLASHacf] = ACTIONS(5275), - [anon_sym_BSLASHAcf] = ACTIONS(5275), - [anon_sym_BSLASHacfp] = ACTIONS(5275), - [anon_sym_BSLASHAcfp] = ACTIONS(5275), - [anon_sym_BSLASHac] = ACTIONS(5275), - [anon_sym_BSLASHAc] = ACTIONS(5275), - [anon_sym_BSLASHacp] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5275), - [anon_sym_BSLASHcolor] = ACTIONS(5275), - [anon_sym_BSLASHcolorbox] = ACTIONS(5275), - [anon_sym_BSLASHtextcolor] = ACTIONS(5275), - [anon_sym_BSLASHpagecolor] = ACTIONS(5275), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5275), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5275), - }, - [837] = { - [sym_command_name] = ACTIONS(5271), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5271), - [anon_sym_LPAREN] = ACTIONS(5269), - [anon_sym_RPAREN] = ACTIONS(5269), - [anon_sym_LBRACK] = ACTIONS(5269), - [anon_sym_RBRACK] = ACTIONS(5269), - [anon_sym_COMMA] = ACTIONS(5269), - [anon_sym_EQ] = ACTIONS(5269), - [anon_sym_BSLASHpart] = ACTIONS(5271), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddpart] = ACTIONS(5271), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5269), - [anon_sym_BSLASHchapter] = ACTIONS(5271), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddchap] = ACTIONS(5271), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsection] = ACTIONS(5271), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddsec] = ACTIONS(5271), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubsection] = ACTIONS(5271), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5271), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHparagraph] = ACTIONS(5271), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5271), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5269), - [anon_sym_BSLASHitem] = ACTIONS(5271), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5269), - [anon_sym_LBRACE] = ACTIONS(5269), - [sym_word] = ACTIONS(5271), - [sym_placeholder] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5271), - [anon_sym_DASH] = ACTIONS(5271), - [anon_sym_STAR] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5271), - [anon_sym_CARET] = ACTIONS(5271), - [anon_sym__] = ACTIONS(5271), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_GT] = ACTIONS(5271), - [anon_sym_BANG] = ACTIONS(5271), - [anon_sym_PIPE] = ACTIONS(5271), - [anon_sym_COLON] = ACTIONS(5271), - [anon_sym_SQUOTE] = ACTIONS(5271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5269), - [anon_sym_DOLLAR] = ACTIONS(5271), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5269), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5269), - [anon_sym_BSLASHbegin] = ACTIONS(5271), - [anon_sym_BSLASHusepackage] = ACTIONS(5271), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5271), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5271), - [anon_sym_BSLASHinclude] = ACTIONS(5271), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5271), - [anon_sym_BSLASHinput] = ACTIONS(5271), - [anon_sym_BSLASHsubfile] = ACTIONS(5271), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5271), - [anon_sym_BSLASHbibliography] = ACTIONS(5271), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5271), - [anon_sym_BSLASHincludesvg] = ACTIONS(5271), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5271), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5271), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5271), - [anon_sym_BSLASHimport] = ACTIONS(5271), - [anon_sym_BSLASHsubimport] = ACTIONS(5271), - [anon_sym_BSLASHinputfrom] = ACTIONS(5271), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5271), - [anon_sym_BSLASHincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHcaption] = ACTIONS(5271), - [anon_sym_BSLASHcite] = ACTIONS(5271), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCite] = ACTIONS(5271), - [anon_sym_BSLASHnocite] = ACTIONS(5271), - [anon_sym_BSLASHcitet] = ACTIONS(5271), - [anon_sym_BSLASHcitep] = ACTIONS(5271), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor] = ACTIONS(5271), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5271), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle] = ACTIONS(5271), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteyear] = ACTIONS(5271), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitedate] = ACTIONS(5271), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteurl] = ACTIONS(5271), - [anon_sym_BSLASHfullcite] = ACTIONS(5271), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5271), - [anon_sym_BSLASHcitealt] = ACTIONS(5271), - [anon_sym_BSLASHcitealp] = ACTIONS(5271), - [anon_sym_BSLASHcitetext] = ACTIONS(5271), - [anon_sym_BSLASHparencite] = ACTIONS(5271), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHParencite] = ACTIONS(5271), - [anon_sym_BSLASHfootcite] = ACTIONS(5271), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5271), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5271), - [anon_sym_BSLASHtextcite] = ACTIONS(5271), - [anon_sym_BSLASHTextcite] = ACTIONS(5271), - [anon_sym_BSLASHsmartcite] = ACTIONS(5271), - [anon_sym_BSLASHSmartcite] = ACTIONS(5271), - [anon_sym_BSLASHsupercite] = ACTIONS(5271), - [anon_sym_BSLASHautocite] = ACTIONS(5271), - [anon_sym_BSLASHAutocite] = ACTIONS(5271), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHvolcite] = ACTIONS(5271), - [anon_sym_BSLASHVolcite] = ACTIONS(5271), - [anon_sym_BSLASHpvolcite] = ACTIONS(5271), - [anon_sym_BSLASHPvolcite] = ACTIONS(5271), - [anon_sym_BSLASHfvolcite] = ACTIONS(5271), - [anon_sym_BSLASHftvolcite] = ACTIONS(5271), - [anon_sym_BSLASHsvolcite] = ACTIONS(5271), - [anon_sym_BSLASHSvolcite] = ACTIONS(5271), - [anon_sym_BSLASHtvolcite] = ACTIONS(5271), - [anon_sym_BSLASHTvolcite] = ACTIONS(5271), - [anon_sym_BSLASHavolcite] = ACTIONS(5271), - [anon_sym_BSLASHAvolcite] = ACTIONS(5271), - [anon_sym_BSLASHnotecite] = ACTIONS(5271), - [anon_sym_BSLASHNotecite] = ACTIONS(5271), - [anon_sym_BSLASHpnotecite] = ACTIONS(5271), - [anon_sym_BSLASHPnotecite] = ACTIONS(5271), - [anon_sym_BSLASHfnotecite] = ACTIONS(5271), - [anon_sym_BSLASHlabel] = ACTIONS(5271), - [anon_sym_BSLASHref] = ACTIONS(5271), - [anon_sym_BSLASHeqref] = ACTIONS(5271), - [anon_sym_BSLASHvref] = ACTIONS(5271), - [anon_sym_BSLASHVref] = ACTIONS(5271), - [anon_sym_BSLASHautoref] = ACTIONS(5271), - [anon_sym_BSLASHpageref] = ACTIONS(5271), - [anon_sym_BSLASHcref] = ACTIONS(5271), - [anon_sym_BSLASHCref] = ACTIONS(5271), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnameCref] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHlabelcref] = ACTIONS(5271), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange] = ACTIONS(5271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnewlabel] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5271), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5271), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5271), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5269), - [anon_sym_BSLASHdef] = ACTIONS(5271), - [anon_sym_BSLASHlet] = ACTIONS(5271), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5271), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5271), - [anon_sym_BSLASHgls] = ACTIONS(5271), - [anon_sym_BSLASHGls] = ACTIONS(5271), - [anon_sym_BSLASHGLS] = ACTIONS(5271), - [anon_sym_BSLASHglspl] = ACTIONS(5271), - [anon_sym_BSLASHGlspl] = ACTIONS(5271), - [anon_sym_BSLASHGLSpl] = ACTIONS(5271), - [anon_sym_BSLASHglsdisp] = ACTIONS(5271), - [anon_sym_BSLASHglslink] = ACTIONS(5271), - [anon_sym_BSLASHglstext] = ACTIONS(5271), - [anon_sym_BSLASHGlstext] = ACTIONS(5271), - [anon_sym_BSLASHGLStext] = ACTIONS(5271), - [anon_sym_BSLASHglsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5271), - [anon_sym_BSLASHglsplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSplural] = ACTIONS(5271), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHglsname] = ACTIONS(5271), - [anon_sym_BSLASHGlsname] = ACTIONS(5271), - [anon_sym_BSLASHGLSname] = ACTIONS(5271), - [anon_sym_BSLASHglssymbol] = ACTIONS(5271), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5271), - [anon_sym_BSLASHglsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5271), - [anon_sym_BSLASHglsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5271), - [anon_sym_BSLASHglsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5271), - [anon_sym_BSLASHglsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5271), - [anon_sym_BSLASHglsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5271), - [anon_sym_BSLASHnewacronym] = ACTIONS(5271), - [anon_sym_BSLASHacrshort] = ACTIONS(5271), - [anon_sym_BSLASHAcrshort] = ACTIONS(5271), - [anon_sym_BSLASHACRshort] = ACTIONS(5271), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5271), - [anon_sym_BSLASHacrlong] = ACTIONS(5271), - [anon_sym_BSLASHAcrlong] = ACTIONS(5271), - [anon_sym_BSLASHACRlong] = ACTIONS(5271), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5271), - [anon_sym_BSLASHacrfull] = ACTIONS(5271), - [anon_sym_BSLASHAcrfull] = ACTIONS(5271), - [anon_sym_BSLASHACRfull] = ACTIONS(5271), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5271), - [anon_sym_BSLASHacs] = ACTIONS(5271), - [anon_sym_BSLASHAcs] = ACTIONS(5271), - [anon_sym_BSLASHacsp] = ACTIONS(5271), - [anon_sym_BSLASHAcsp] = ACTIONS(5271), - [anon_sym_BSLASHacl] = ACTIONS(5271), - [anon_sym_BSLASHAcl] = ACTIONS(5271), - [anon_sym_BSLASHaclp] = ACTIONS(5271), - [anon_sym_BSLASHAclp] = ACTIONS(5271), - [anon_sym_BSLASHacf] = ACTIONS(5271), - [anon_sym_BSLASHAcf] = ACTIONS(5271), - [anon_sym_BSLASHacfp] = ACTIONS(5271), - [anon_sym_BSLASHAcfp] = ACTIONS(5271), - [anon_sym_BSLASHac] = ACTIONS(5271), - [anon_sym_BSLASHAc] = ACTIONS(5271), - [anon_sym_BSLASHacp] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5271), - [anon_sym_BSLASHcolor] = ACTIONS(5271), - [anon_sym_BSLASHcolorbox] = ACTIONS(5271), - [anon_sym_BSLASHtextcolor] = ACTIONS(5271), - [anon_sym_BSLASHpagecolor] = ACTIONS(5271), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5271), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5271), - }, - [838] = { - [sym_command_name] = ACTIONS(5267), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5267), - [anon_sym_LPAREN] = ACTIONS(5265), - [anon_sym_RPAREN] = ACTIONS(5265), - [anon_sym_LBRACK] = ACTIONS(5265), - [anon_sym_RBRACK] = ACTIONS(5265), - [anon_sym_COMMA] = ACTIONS(5265), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_BSLASHpart] = ACTIONS(5267), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddpart] = ACTIONS(5267), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5265), - [anon_sym_BSLASHchapter] = ACTIONS(5267), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddchap] = ACTIONS(5267), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsection] = ACTIONS(5267), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddsec] = ACTIONS(5267), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubsection] = ACTIONS(5267), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5267), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHparagraph] = ACTIONS(5267), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5267), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5265), - [anon_sym_BSLASHitem] = ACTIONS(5267), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(5265), - [sym_word] = ACTIONS(5267), - [sym_placeholder] = ACTIONS(5265), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(5267), - [anon_sym_SLASH] = ACTIONS(5267), - [anon_sym_CARET] = ACTIONS(5267), - [anon_sym__] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(5267), - [anon_sym_GT] = ACTIONS(5267), - [anon_sym_BANG] = ACTIONS(5267), - [anon_sym_PIPE] = ACTIONS(5267), - [anon_sym_COLON] = ACTIONS(5267), - [anon_sym_SQUOTE] = ACTIONS(5267), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5265), - [anon_sym_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5265), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5265), - [anon_sym_BSLASHbegin] = ACTIONS(5267), - [anon_sym_BSLASHusepackage] = ACTIONS(5267), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5267), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5267), - [anon_sym_BSLASHinclude] = ACTIONS(5267), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5267), - [anon_sym_BSLASHinput] = ACTIONS(5267), - [anon_sym_BSLASHsubfile] = ACTIONS(5267), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5267), - [anon_sym_BSLASHbibliography] = ACTIONS(5267), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5267), - [anon_sym_BSLASHincludesvg] = ACTIONS(5267), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5267), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5267), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5267), - [anon_sym_BSLASHimport] = ACTIONS(5267), - [anon_sym_BSLASHsubimport] = ACTIONS(5267), - [anon_sym_BSLASHinputfrom] = ACTIONS(5267), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5267), - [anon_sym_BSLASHincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHcaption] = ACTIONS(5267), - [anon_sym_BSLASHcite] = ACTIONS(5267), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCite] = ACTIONS(5267), - [anon_sym_BSLASHnocite] = ACTIONS(5267), - [anon_sym_BSLASHcitet] = ACTIONS(5267), - [anon_sym_BSLASHcitep] = ACTIONS(5267), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteyear] = ACTIONS(5267), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitedate] = ACTIONS(5267), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteurl] = ACTIONS(5267), - [anon_sym_BSLASHfullcite] = ACTIONS(5267), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5267), - [anon_sym_BSLASHcitealt] = ACTIONS(5267), - [anon_sym_BSLASHcitealp] = ACTIONS(5267), - [anon_sym_BSLASHcitetext] = ACTIONS(5267), - [anon_sym_BSLASHparencite] = ACTIONS(5267), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHParencite] = ACTIONS(5267), - [anon_sym_BSLASHfootcite] = ACTIONS(5267), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5267), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5267), - [anon_sym_BSLASHtextcite] = ACTIONS(5267), - [anon_sym_BSLASHTextcite] = ACTIONS(5267), - [anon_sym_BSLASHsmartcite] = ACTIONS(5267), - [anon_sym_BSLASHSmartcite] = ACTIONS(5267), - [anon_sym_BSLASHsupercite] = ACTIONS(5267), - [anon_sym_BSLASHautocite] = ACTIONS(5267), - [anon_sym_BSLASHAutocite] = ACTIONS(5267), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHvolcite] = ACTIONS(5267), - [anon_sym_BSLASHVolcite] = ACTIONS(5267), - [anon_sym_BSLASHpvolcite] = ACTIONS(5267), - [anon_sym_BSLASHPvolcite] = ACTIONS(5267), - [anon_sym_BSLASHfvolcite] = ACTIONS(5267), - [anon_sym_BSLASHftvolcite] = ACTIONS(5267), - [anon_sym_BSLASHsvolcite] = ACTIONS(5267), - [anon_sym_BSLASHSvolcite] = ACTIONS(5267), - [anon_sym_BSLASHtvolcite] = ACTIONS(5267), - [anon_sym_BSLASHTvolcite] = ACTIONS(5267), - [anon_sym_BSLASHavolcite] = ACTIONS(5267), - [anon_sym_BSLASHAvolcite] = ACTIONS(5267), - [anon_sym_BSLASHnotecite] = ACTIONS(5267), - [anon_sym_BSLASHNotecite] = ACTIONS(5267), - [anon_sym_BSLASHpnotecite] = ACTIONS(5267), - [anon_sym_BSLASHPnotecite] = ACTIONS(5267), - [anon_sym_BSLASHfnotecite] = ACTIONS(5267), - [anon_sym_BSLASHlabel] = ACTIONS(5267), - [anon_sym_BSLASHref] = ACTIONS(5267), - [anon_sym_BSLASHeqref] = ACTIONS(5267), - [anon_sym_BSLASHvref] = ACTIONS(5267), - [anon_sym_BSLASHVref] = ACTIONS(5267), - [anon_sym_BSLASHautoref] = ACTIONS(5267), - [anon_sym_BSLASHpageref] = ACTIONS(5267), - [anon_sym_BSLASHcref] = ACTIONS(5267), - [anon_sym_BSLASHCref] = ACTIONS(5267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnameCref] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHlabelcref] = ACTIONS(5267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnewlabel] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5265), - [anon_sym_BSLASHdef] = ACTIONS(5267), - [anon_sym_BSLASHlet] = ACTIONS(5267), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5267), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5267), - [anon_sym_BSLASHgls] = ACTIONS(5267), - [anon_sym_BSLASHGls] = ACTIONS(5267), - [anon_sym_BSLASHGLS] = ACTIONS(5267), - [anon_sym_BSLASHglspl] = ACTIONS(5267), - [anon_sym_BSLASHGlspl] = ACTIONS(5267), - [anon_sym_BSLASHGLSpl] = ACTIONS(5267), - [anon_sym_BSLASHglsdisp] = ACTIONS(5267), - [anon_sym_BSLASHglslink] = ACTIONS(5267), - [anon_sym_BSLASHglstext] = ACTIONS(5267), - [anon_sym_BSLASHGlstext] = ACTIONS(5267), - [anon_sym_BSLASHGLStext] = ACTIONS(5267), - [anon_sym_BSLASHglsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5267), - [anon_sym_BSLASHglsplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSplural] = ACTIONS(5267), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHglsname] = ACTIONS(5267), - [anon_sym_BSLASHGlsname] = ACTIONS(5267), - [anon_sym_BSLASHGLSname] = ACTIONS(5267), - [anon_sym_BSLASHglssymbol] = ACTIONS(5267), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5267), - [anon_sym_BSLASHglsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5267), - [anon_sym_BSLASHglsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5267), - [anon_sym_BSLASHglsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5267), - [anon_sym_BSLASHglsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5267), - [anon_sym_BSLASHglsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5267), - [anon_sym_BSLASHnewacronym] = ACTIONS(5267), - [anon_sym_BSLASHacrshort] = ACTIONS(5267), - [anon_sym_BSLASHAcrshort] = ACTIONS(5267), - [anon_sym_BSLASHACRshort] = ACTIONS(5267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5267), - [anon_sym_BSLASHacrlong] = ACTIONS(5267), - [anon_sym_BSLASHAcrlong] = ACTIONS(5267), - [anon_sym_BSLASHACRlong] = ACTIONS(5267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5267), - [anon_sym_BSLASHacrfull] = ACTIONS(5267), - [anon_sym_BSLASHAcrfull] = ACTIONS(5267), - [anon_sym_BSLASHACRfull] = ACTIONS(5267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5267), - [anon_sym_BSLASHacs] = ACTIONS(5267), - [anon_sym_BSLASHAcs] = ACTIONS(5267), - [anon_sym_BSLASHacsp] = ACTIONS(5267), - [anon_sym_BSLASHAcsp] = ACTIONS(5267), - [anon_sym_BSLASHacl] = ACTIONS(5267), - [anon_sym_BSLASHAcl] = ACTIONS(5267), - [anon_sym_BSLASHaclp] = ACTIONS(5267), - [anon_sym_BSLASHAclp] = ACTIONS(5267), - [anon_sym_BSLASHacf] = ACTIONS(5267), - [anon_sym_BSLASHAcf] = ACTIONS(5267), - [anon_sym_BSLASHacfp] = ACTIONS(5267), - [anon_sym_BSLASHAcfp] = ACTIONS(5267), - [anon_sym_BSLASHac] = ACTIONS(5267), - [anon_sym_BSLASHAc] = ACTIONS(5267), - [anon_sym_BSLASHacp] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5267), - [anon_sym_BSLASHcolor] = ACTIONS(5267), - [anon_sym_BSLASHcolorbox] = ACTIONS(5267), - [anon_sym_BSLASHtextcolor] = ACTIONS(5267), - [anon_sym_BSLASHpagecolor] = ACTIONS(5267), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5267), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5267), - }, - [839] = { - [sym_command_name] = ACTIONS(5263), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5263), - [anon_sym_LPAREN] = ACTIONS(5261), - [anon_sym_RPAREN] = ACTIONS(5261), - [anon_sym_LBRACK] = ACTIONS(5261), - [anon_sym_RBRACK] = ACTIONS(5261), - [anon_sym_COMMA] = ACTIONS(5261), - [anon_sym_EQ] = ACTIONS(5261), - [anon_sym_BSLASHpart] = ACTIONS(5263), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddpart] = ACTIONS(5263), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5261), - [anon_sym_BSLASHchapter] = ACTIONS(5263), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddchap] = ACTIONS(5263), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsection] = ACTIONS(5263), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddsec] = ACTIONS(5263), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubsection] = ACTIONS(5263), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5263), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHparagraph] = ACTIONS(5263), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5263), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5261), - [anon_sym_BSLASHitem] = ACTIONS(5263), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(5261), - [sym_word] = ACTIONS(5263), - [sym_placeholder] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_STAR] = ACTIONS(5263), - [anon_sym_SLASH] = ACTIONS(5263), - [anon_sym_CARET] = ACTIONS(5263), - [anon_sym__] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(5263), - [anon_sym_GT] = ACTIONS(5263), - [anon_sym_BANG] = ACTIONS(5263), - [anon_sym_PIPE] = ACTIONS(5263), - [anon_sym_COLON] = ACTIONS(5263), - [anon_sym_SQUOTE] = ACTIONS(5263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5261), - [anon_sym_DOLLAR] = ACTIONS(5263), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5261), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5261), - [anon_sym_BSLASHbegin] = ACTIONS(5263), - [anon_sym_BSLASHusepackage] = ACTIONS(5263), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), - [anon_sym_BSLASHinclude] = ACTIONS(5263), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), - [anon_sym_BSLASHinput] = ACTIONS(5263), - [anon_sym_BSLASHsubfile] = ACTIONS(5263), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), - [anon_sym_BSLASHbibliography] = ACTIONS(5263), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), - [anon_sym_BSLASHincludesvg] = ACTIONS(5263), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), - [anon_sym_BSLASHimport] = ACTIONS(5263), - [anon_sym_BSLASHsubimport] = ACTIONS(5263), - [anon_sym_BSLASHinputfrom] = ACTIONS(5263), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), - [anon_sym_BSLASHincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHcaption] = ACTIONS(5263), - [anon_sym_BSLASHcite] = ACTIONS(5263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCite] = ACTIONS(5263), - [anon_sym_BSLASHnocite] = ACTIONS(5263), - [anon_sym_BSLASHcitet] = ACTIONS(5263), - [anon_sym_BSLASHcitep] = ACTIONS(5263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteyear] = ACTIONS(5263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitedate] = ACTIONS(5263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteurl] = ACTIONS(5263), - [anon_sym_BSLASHfullcite] = ACTIONS(5263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), - [anon_sym_BSLASHcitealt] = ACTIONS(5263), - [anon_sym_BSLASHcitealp] = ACTIONS(5263), - [anon_sym_BSLASHcitetext] = ACTIONS(5263), - [anon_sym_BSLASHparencite] = ACTIONS(5263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHParencite] = ACTIONS(5263), - [anon_sym_BSLASHfootcite] = ACTIONS(5263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), - [anon_sym_BSLASHtextcite] = ACTIONS(5263), - [anon_sym_BSLASHTextcite] = ACTIONS(5263), - [anon_sym_BSLASHsmartcite] = ACTIONS(5263), - [anon_sym_BSLASHSmartcite] = ACTIONS(5263), - [anon_sym_BSLASHsupercite] = ACTIONS(5263), - [anon_sym_BSLASHautocite] = ACTIONS(5263), - [anon_sym_BSLASHAutocite] = ACTIONS(5263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHvolcite] = ACTIONS(5263), - [anon_sym_BSLASHVolcite] = ACTIONS(5263), - [anon_sym_BSLASHpvolcite] = ACTIONS(5263), - [anon_sym_BSLASHPvolcite] = ACTIONS(5263), - [anon_sym_BSLASHfvolcite] = ACTIONS(5263), - [anon_sym_BSLASHftvolcite] = ACTIONS(5263), - [anon_sym_BSLASHsvolcite] = ACTIONS(5263), - [anon_sym_BSLASHSvolcite] = ACTIONS(5263), - [anon_sym_BSLASHtvolcite] = ACTIONS(5263), - [anon_sym_BSLASHTvolcite] = ACTIONS(5263), - [anon_sym_BSLASHavolcite] = ACTIONS(5263), - [anon_sym_BSLASHAvolcite] = ACTIONS(5263), - [anon_sym_BSLASHnotecite] = ACTIONS(5263), - [anon_sym_BSLASHNotecite] = ACTIONS(5263), - [anon_sym_BSLASHpnotecite] = ACTIONS(5263), - [anon_sym_BSLASHPnotecite] = ACTIONS(5263), - [anon_sym_BSLASHfnotecite] = ACTIONS(5263), - [anon_sym_BSLASHlabel] = ACTIONS(5263), - [anon_sym_BSLASHref] = ACTIONS(5263), - [anon_sym_BSLASHeqref] = ACTIONS(5263), - [anon_sym_BSLASHvref] = ACTIONS(5263), - [anon_sym_BSLASHVref] = ACTIONS(5263), - [anon_sym_BSLASHautoref] = ACTIONS(5263), - [anon_sym_BSLASHpageref] = ACTIONS(5263), - [anon_sym_BSLASHcref] = ACTIONS(5263), - [anon_sym_BSLASHCref] = ACTIONS(5263), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnameCref] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHlabelcref] = ACTIONS(5263), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnewlabel] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), - [anon_sym_BSLASHdef] = ACTIONS(5263), - [anon_sym_BSLASHlet] = ACTIONS(5263), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), - [anon_sym_BSLASHgls] = ACTIONS(5263), - [anon_sym_BSLASHGls] = ACTIONS(5263), - [anon_sym_BSLASHGLS] = ACTIONS(5263), - [anon_sym_BSLASHglspl] = ACTIONS(5263), - [anon_sym_BSLASHGlspl] = ACTIONS(5263), - [anon_sym_BSLASHGLSpl] = ACTIONS(5263), - [anon_sym_BSLASHglsdisp] = ACTIONS(5263), - [anon_sym_BSLASHglslink] = ACTIONS(5263), - [anon_sym_BSLASHglstext] = ACTIONS(5263), - [anon_sym_BSLASHGlstext] = ACTIONS(5263), - [anon_sym_BSLASHGLStext] = ACTIONS(5263), - [anon_sym_BSLASHglsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), - [anon_sym_BSLASHglsplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSplural] = ACTIONS(5263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHglsname] = ACTIONS(5263), - [anon_sym_BSLASHGlsname] = ACTIONS(5263), - [anon_sym_BSLASHGLSname] = ACTIONS(5263), - [anon_sym_BSLASHglssymbol] = ACTIONS(5263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), - [anon_sym_BSLASHglsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), - [anon_sym_BSLASHglsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), - [anon_sym_BSLASHglsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), - [anon_sym_BSLASHglsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), - [anon_sym_BSLASHglsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), - [anon_sym_BSLASHnewacronym] = ACTIONS(5263), - [anon_sym_BSLASHacrshort] = ACTIONS(5263), - [anon_sym_BSLASHAcrshort] = ACTIONS(5263), - [anon_sym_BSLASHACRshort] = ACTIONS(5263), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), - [anon_sym_BSLASHacrlong] = ACTIONS(5263), - [anon_sym_BSLASHAcrlong] = ACTIONS(5263), - [anon_sym_BSLASHACRlong] = ACTIONS(5263), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), - [anon_sym_BSLASHacrfull] = ACTIONS(5263), - [anon_sym_BSLASHAcrfull] = ACTIONS(5263), - [anon_sym_BSLASHACRfull] = ACTIONS(5263), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), - [anon_sym_BSLASHacs] = ACTIONS(5263), - [anon_sym_BSLASHAcs] = ACTIONS(5263), - [anon_sym_BSLASHacsp] = ACTIONS(5263), - [anon_sym_BSLASHAcsp] = ACTIONS(5263), - [anon_sym_BSLASHacl] = ACTIONS(5263), - [anon_sym_BSLASHAcl] = ACTIONS(5263), - [anon_sym_BSLASHaclp] = ACTIONS(5263), - [anon_sym_BSLASHAclp] = ACTIONS(5263), - [anon_sym_BSLASHacf] = ACTIONS(5263), - [anon_sym_BSLASHAcf] = ACTIONS(5263), - [anon_sym_BSLASHacfp] = ACTIONS(5263), - [anon_sym_BSLASHAcfp] = ACTIONS(5263), - [anon_sym_BSLASHac] = ACTIONS(5263), - [anon_sym_BSLASHAc] = ACTIONS(5263), - [anon_sym_BSLASHacp] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), - [anon_sym_BSLASHcolor] = ACTIONS(5263), - [anon_sym_BSLASHcolorbox] = ACTIONS(5263), - [anon_sym_BSLASHtextcolor] = ACTIONS(5263), - [anon_sym_BSLASHpagecolor] = ACTIONS(5263), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), - }, - [840] = { - [sym_command_name] = ACTIONS(5255), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5255), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5253), - [anon_sym_BSLASHpart] = ACTIONS(5255), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddpart] = ACTIONS(5255), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5253), - [anon_sym_BSLASHchapter] = ACTIONS(5255), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddchap] = ACTIONS(5255), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsection] = ACTIONS(5255), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddsec] = ACTIONS(5255), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubsection] = ACTIONS(5255), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5255), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHparagraph] = ACTIONS(5255), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5255), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5253), - [anon_sym_BSLASHitem] = ACTIONS(5255), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5253), - [anon_sym_LBRACE] = ACTIONS(5253), - [sym_word] = ACTIONS(5255), - [sym_placeholder] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_CARET] = ACTIONS(5255), - [anon_sym__] = ACTIONS(5255), - [anon_sym_LT] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5255), - [anon_sym_BANG] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5255), - [anon_sym_COLON] = ACTIONS(5255), - [anon_sym_SQUOTE] = ACTIONS(5255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5253), - [anon_sym_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5253), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5253), - [anon_sym_BSLASHbegin] = ACTIONS(5255), - [anon_sym_BSLASHusepackage] = ACTIONS(5255), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5255), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5255), - [anon_sym_BSLASHinclude] = ACTIONS(5255), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5255), - [anon_sym_BSLASHinput] = ACTIONS(5255), - [anon_sym_BSLASHsubfile] = ACTIONS(5255), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5255), - [anon_sym_BSLASHbibliography] = ACTIONS(5255), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5255), - [anon_sym_BSLASHincludesvg] = ACTIONS(5255), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5255), - [anon_sym_BSLASHimport] = ACTIONS(5255), - [anon_sym_BSLASHsubimport] = ACTIONS(5255), - [anon_sym_BSLASHinputfrom] = ACTIONS(5255), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5255), - [anon_sym_BSLASHincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHcaption] = ACTIONS(5255), - [anon_sym_BSLASHcite] = ACTIONS(5255), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCite] = ACTIONS(5255), - [anon_sym_BSLASHnocite] = ACTIONS(5255), - [anon_sym_BSLASHcitet] = ACTIONS(5255), - [anon_sym_BSLASHcitep] = ACTIONS(5255), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteauthor] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitetitle] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteyear] = ACTIONS(5255), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitedate] = ACTIONS(5255), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteurl] = ACTIONS(5255), - [anon_sym_BSLASHfullcite] = ACTIONS(5255), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5255), - [anon_sym_BSLASHcitealt] = ACTIONS(5255), - [anon_sym_BSLASHcitealp] = ACTIONS(5255), - [anon_sym_BSLASHcitetext] = ACTIONS(5255), - [anon_sym_BSLASHparencite] = ACTIONS(5255), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHParencite] = ACTIONS(5255), - [anon_sym_BSLASHfootcite] = ACTIONS(5255), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5255), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5255), - [anon_sym_BSLASHtextcite] = ACTIONS(5255), - [anon_sym_BSLASHTextcite] = ACTIONS(5255), - [anon_sym_BSLASHsmartcite] = ACTIONS(5255), - [anon_sym_BSLASHSmartcite] = ACTIONS(5255), - [anon_sym_BSLASHsupercite] = ACTIONS(5255), - [anon_sym_BSLASHautocite] = ACTIONS(5255), - [anon_sym_BSLASHAutocite] = ACTIONS(5255), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHvolcite] = ACTIONS(5255), - [anon_sym_BSLASHVolcite] = ACTIONS(5255), - [anon_sym_BSLASHpvolcite] = ACTIONS(5255), - [anon_sym_BSLASHPvolcite] = ACTIONS(5255), - [anon_sym_BSLASHfvolcite] = ACTIONS(5255), - [anon_sym_BSLASHftvolcite] = ACTIONS(5255), - [anon_sym_BSLASHsvolcite] = ACTIONS(5255), - [anon_sym_BSLASHSvolcite] = ACTIONS(5255), - [anon_sym_BSLASHtvolcite] = ACTIONS(5255), - [anon_sym_BSLASHTvolcite] = ACTIONS(5255), - [anon_sym_BSLASHavolcite] = ACTIONS(5255), - [anon_sym_BSLASHAvolcite] = ACTIONS(5255), - [anon_sym_BSLASHnotecite] = ACTIONS(5255), - [anon_sym_BSLASHNotecite] = ACTIONS(5255), - [anon_sym_BSLASHpnotecite] = ACTIONS(5255), - [anon_sym_BSLASHPnotecite] = ACTIONS(5255), - [anon_sym_BSLASHfnotecite] = ACTIONS(5255), - [anon_sym_BSLASHlabel] = ACTIONS(5255), - [anon_sym_BSLASHref] = ACTIONS(5255), - [anon_sym_BSLASHeqref] = ACTIONS(5255), - [anon_sym_BSLASHvref] = ACTIONS(5255), - [anon_sym_BSLASHVref] = ACTIONS(5255), - [anon_sym_BSLASHautoref] = ACTIONS(5255), - [anon_sym_BSLASHpageref] = ACTIONS(5255), - [anon_sym_BSLASHcref] = ACTIONS(5255), - [anon_sym_BSLASHCref] = ACTIONS(5255), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnameCref] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHlabelcref] = ACTIONS(5255), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCrefrange] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnewlabel] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5253), - [anon_sym_BSLASHdef] = ACTIONS(5255), - [anon_sym_BSLASHlet] = ACTIONS(5255), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5255), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5255), - [anon_sym_BSLASHgls] = ACTIONS(5255), - [anon_sym_BSLASHGls] = ACTIONS(5255), - [anon_sym_BSLASHGLS] = ACTIONS(5255), - [anon_sym_BSLASHglspl] = ACTIONS(5255), - [anon_sym_BSLASHGlspl] = ACTIONS(5255), - [anon_sym_BSLASHGLSpl] = ACTIONS(5255), - [anon_sym_BSLASHglsdisp] = ACTIONS(5255), - [anon_sym_BSLASHglslink] = ACTIONS(5255), - [anon_sym_BSLASHglstext] = ACTIONS(5255), - [anon_sym_BSLASHGlstext] = ACTIONS(5255), - [anon_sym_BSLASHGLStext] = ACTIONS(5255), - [anon_sym_BSLASHglsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5255), - [anon_sym_BSLASHglsplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSplural] = ACTIONS(5255), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHglsname] = ACTIONS(5255), - [anon_sym_BSLASHGlsname] = ACTIONS(5255), - [anon_sym_BSLASHGLSname] = ACTIONS(5255), - [anon_sym_BSLASHglssymbol] = ACTIONS(5255), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5255), - [anon_sym_BSLASHglsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5255), - [anon_sym_BSLASHglsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5255), - [anon_sym_BSLASHglsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5255), - [anon_sym_BSLASHglsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5255), - [anon_sym_BSLASHglsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5255), - [anon_sym_BSLASHnewacronym] = ACTIONS(5255), - [anon_sym_BSLASHacrshort] = ACTIONS(5255), - [anon_sym_BSLASHAcrshort] = ACTIONS(5255), - [anon_sym_BSLASHACRshort] = ACTIONS(5255), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5255), - [anon_sym_BSLASHacrlong] = ACTIONS(5255), - [anon_sym_BSLASHAcrlong] = ACTIONS(5255), - [anon_sym_BSLASHACRlong] = ACTIONS(5255), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5255), - [anon_sym_BSLASHacrfull] = ACTIONS(5255), - [anon_sym_BSLASHAcrfull] = ACTIONS(5255), - [anon_sym_BSLASHACRfull] = ACTIONS(5255), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5255), - [anon_sym_BSLASHacs] = ACTIONS(5255), - [anon_sym_BSLASHAcs] = ACTIONS(5255), - [anon_sym_BSLASHacsp] = ACTIONS(5255), - [anon_sym_BSLASHAcsp] = ACTIONS(5255), - [anon_sym_BSLASHacl] = ACTIONS(5255), - [anon_sym_BSLASHAcl] = ACTIONS(5255), - [anon_sym_BSLASHaclp] = ACTIONS(5255), - [anon_sym_BSLASHAclp] = ACTIONS(5255), - [anon_sym_BSLASHacf] = ACTIONS(5255), - [anon_sym_BSLASHAcf] = ACTIONS(5255), - [anon_sym_BSLASHacfp] = ACTIONS(5255), - [anon_sym_BSLASHAcfp] = ACTIONS(5255), - [anon_sym_BSLASHac] = ACTIONS(5255), - [anon_sym_BSLASHAc] = ACTIONS(5255), - [anon_sym_BSLASHacp] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5255), - [anon_sym_BSLASHcolor] = ACTIONS(5255), - [anon_sym_BSLASHcolorbox] = ACTIONS(5255), - [anon_sym_BSLASHtextcolor] = ACTIONS(5255), - [anon_sym_BSLASHpagecolor] = ACTIONS(5255), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5255), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5255), - }, - [841] = { - [sym_command_name] = ACTIONS(5251), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5251), - [anon_sym_LPAREN] = ACTIONS(5249), - [anon_sym_RPAREN] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5249), - [anon_sym_RBRACK] = ACTIONS(5249), - [anon_sym_COMMA] = ACTIONS(5249), - [anon_sym_EQ] = ACTIONS(5249), - [anon_sym_BSLASHpart] = ACTIONS(5251), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddpart] = ACTIONS(5251), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5249), - [anon_sym_BSLASHchapter] = ACTIONS(5251), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddchap] = ACTIONS(5251), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsection] = ACTIONS(5251), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddsec] = ACTIONS(5251), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubsection] = ACTIONS(5251), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5251), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHparagraph] = ACTIONS(5251), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5251), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5249), - [anon_sym_BSLASHitem] = ACTIONS(5251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5249), - [anon_sym_LBRACE] = ACTIONS(5249), - [sym_word] = ACTIONS(5251), - [sym_placeholder] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym__] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_BANG] = ACTIONS(5251), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5251), - [anon_sym_SQUOTE] = ACTIONS(5251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5249), - [anon_sym_DOLLAR] = ACTIONS(5251), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5249), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5249), - [anon_sym_BSLASHbegin] = ACTIONS(5251), - [anon_sym_BSLASHusepackage] = ACTIONS(5251), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5251), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5251), - [anon_sym_BSLASHinclude] = ACTIONS(5251), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5251), - [anon_sym_BSLASHinput] = ACTIONS(5251), - [anon_sym_BSLASHsubfile] = ACTIONS(5251), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5251), - [anon_sym_BSLASHbibliography] = ACTIONS(5251), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5251), - [anon_sym_BSLASHincludesvg] = ACTIONS(5251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5251), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5251), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5251), - [anon_sym_BSLASHimport] = ACTIONS(5251), - [anon_sym_BSLASHsubimport] = ACTIONS(5251), - [anon_sym_BSLASHinputfrom] = ACTIONS(5251), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5251), - [anon_sym_BSLASHincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHcaption] = ACTIONS(5251), - [anon_sym_BSLASHcite] = ACTIONS(5251), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCite] = ACTIONS(5251), - [anon_sym_BSLASHnocite] = ACTIONS(5251), - [anon_sym_BSLASHcitet] = ACTIONS(5251), - [anon_sym_BSLASHcitep] = ACTIONS(5251), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor] = ACTIONS(5251), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5251), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle] = ACTIONS(5251), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteyear] = ACTIONS(5251), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitedate] = ACTIONS(5251), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteurl] = ACTIONS(5251), - [anon_sym_BSLASHfullcite] = ACTIONS(5251), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5251), - [anon_sym_BSLASHcitealt] = ACTIONS(5251), - [anon_sym_BSLASHcitealp] = ACTIONS(5251), - [anon_sym_BSLASHcitetext] = ACTIONS(5251), - [anon_sym_BSLASHparencite] = ACTIONS(5251), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHParencite] = ACTIONS(5251), - [anon_sym_BSLASHfootcite] = ACTIONS(5251), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5251), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5251), - [anon_sym_BSLASHtextcite] = ACTIONS(5251), - [anon_sym_BSLASHTextcite] = ACTIONS(5251), - [anon_sym_BSLASHsmartcite] = ACTIONS(5251), - [anon_sym_BSLASHSmartcite] = ACTIONS(5251), - [anon_sym_BSLASHsupercite] = ACTIONS(5251), - [anon_sym_BSLASHautocite] = ACTIONS(5251), - [anon_sym_BSLASHAutocite] = ACTIONS(5251), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHvolcite] = ACTIONS(5251), - [anon_sym_BSLASHVolcite] = ACTIONS(5251), - [anon_sym_BSLASHpvolcite] = ACTIONS(5251), - [anon_sym_BSLASHPvolcite] = ACTIONS(5251), - [anon_sym_BSLASHfvolcite] = ACTIONS(5251), - [anon_sym_BSLASHftvolcite] = ACTIONS(5251), - [anon_sym_BSLASHsvolcite] = ACTIONS(5251), - [anon_sym_BSLASHSvolcite] = ACTIONS(5251), - [anon_sym_BSLASHtvolcite] = ACTIONS(5251), - [anon_sym_BSLASHTvolcite] = ACTIONS(5251), - [anon_sym_BSLASHavolcite] = ACTIONS(5251), - [anon_sym_BSLASHAvolcite] = ACTIONS(5251), - [anon_sym_BSLASHnotecite] = ACTIONS(5251), - [anon_sym_BSLASHNotecite] = ACTIONS(5251), - [anon_sym_BSLASHpnotecite] = ACTIONS(5251), - [anon_sym_BSLASHPnotecite] = ACTIONS(5251), - [anon_sym_BSLASHfnotecite] = ACTIONS(5251), - [anon_sym_BSLASHlabel] = ACTIONS(5251), - [anon_sym_BSLASHref] = ACTIONS(5251), - [anon_sym_BSLASHeqref] = ACTIONS(5251), - [anon_sym_BSLASHvref] = ACTIONS(5251), - [anon_sym_BSLASHVref] = ACTIONS(5251), - [anon_sym_BSLASHautoref] = ACTIONS(5251), - [anon_sym_BSLASHpageref] = ACTIONS(5251), - [anon_sym_BSLASHcref] = ACTIONS(5251), - [anon_sym_BSLASHCref] = ACTIONS(5251), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnameCref] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHlabelcref] = ACTIONS(5251), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange] = ACTIONS(5251), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnewlabel] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5251), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5251), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5251), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5249), - [anon_sym_BSLASHdef] = ACTIONS(5251), - [anon_sym_BSLASHlet] = ACTIONS(5251), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5251), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5251), - [anon_sym_BSLASHgls] = ACTIONS(5251), - [anon_sym_BSLASHGls] = ACTIONS(5251), - [anon_sym_BSLASHGLS] = ACTIONS(5251), - [anon_sym_BSLASHglspl] = ACTIONS(5251), - [anon_sym_BSLASHGlspl] = ACTIONS(5251), - [anon_sym_BSLASHGLSpl] = ACTIONS(5251), - [anon_sym_BSLASHglsdisp] = ACTIONS(5251), - [anon_sym_BSLASHglslink] = ACTIONS(5251), - [anon_sym_BSLASHglstext] = ACTIONS(5251), - [anon_sym_BSLASHGlstext] = ACTIONS(5251), - [anon_sym_BSLASHGLStext] = ACTIONS(5251), - [anon_sym_BSLASHglsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5251), - [anon_sym_BSLASHglsplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSplural] = ACTIONS(5251), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHglsname] = ACTIONS(5251), - [anon_sym_BSLASHGlsname] = ACTIONS(5251), - [anon_sym_BSLASHGLSname] = ACTIONS(5251), - [anon_sym_BSLASHglssymbol] = ACTIONS(5251), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5251), - [anon_sym_BSLASHglsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5251), - [anon_sym_BSLASHglsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5251), - [anon_sym_BSLASHglsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5251), - [anon_sym_BSLASHglsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5251), - [anon_sym_BSLASHglsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5251), - [anon_sym_BSLASHnewacronym] = ACTIONS(5251), - [anon_sym_BSLASHacrshort] = ACTIONS(5251), - [anon_sym_BSLASHAcrshort] = ACTIONS(5251), - [anon_sym_BSLASHACRshort] = ACTIONS(5251), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5251), - [anon_sym_BSLASHacrlong] = ACTIONS(5251), - [anon_sym_BSLASHAcrlong] = ACTIONS(5251), - [anon_sym_BSLASHACRlong] = ACTIONS(5251), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5251), - [anon_sym_BSLASHacrfull] = ACTIONS(5251), - [anon_sym_BSLASHAcrfull] = ACTIONS(5251), - [anon_sym_BSLASHACRfull] = ACTIONS(5251), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5251), - [anon_sym_BSLASHacs] = ACTIONS(5251), - [anon_sym_BSLASHAcs] = ACTIONS(5251), - [anon_sym_BSLASHacsp] = ACTIONS(5251), - [anon_sym_BSLASHAcsp] = ACTIONS(5251), - [anon_sym_BSLASHacl] = ACTIONS(5251), - [anon_sym_BSLASHAcl] = ACTIONS(5251), - [anon_sym_BSLASHaclp] = ACTIONS(5251), - [anon_sym_BSLASHAclp] = ACTIONS(5251), - [anon_sym_BSLASHacf] = ACTIONS(5251), - [anon_sym_BSLASHAcf] = ACTIONS(5251), - [anon_sym_BSLASHacfp] = ACTIONS(5251), - [anon_sym_BSLASHAcfp] = ACTIONS(5251), - [anon_sym_BSLASHac] = ACTIONS(5251), - [anon_sym_BSLASHAc] = ACTIONS(5251), - [anon_sym_BSLASHacp] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5251), - [anon_sym_BSLASHcolor] = ACTIONS(5251), - [anon_sym_BSLASHcolorbox] = ACTIONS(5251), - [anon_sym_BSLASHtextcolor] = ACTIONS(5251), - [anon_sym_BSLASHpagecolor] = ACTIONS(5251), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5251), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5251), - }, - [842] = { - [sym_command_name] = ACTIONS(5247), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5247), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_RPAREN] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_RBRACK] = ACTIONS(5245), - [anon_sym_COMMA] = ACTIONS(5245), - [anon_sym_EQ] = ACTIONS(5245), - [anon_sym_BSLASHpart] = ACTIONS(5247), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddpart] = ACTIONS(5247), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5245), - [anon_sym_BSLASHchapter] = ACTIONS(5247), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddchap] = ACTIONS(5247), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsection] = ACTIONS(5247), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddsec] = ACTIONS(5247), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubsection] = ACTIONS(5247), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5247), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHparagraph] = ACTIONS(5247), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5245), - [anon_sym_BSLASHitem] = ACTIONS(5247), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5245), - [anon_sym_LBRACE] = ACTIONS(5245), - [sym_word] = ACTIONS(5247), - [sym_placeholder] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_SLASH] = ACTIONS(5247), - [anon_sym_CARET] = ACTIONS(5247), - [anon_sym__] = ACTIONS(5247), - [anon_sym_LT] = ACTIONS(5247), - [anon_sym_GT] = ACTIONS(5247), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_PIPE] = ACTIONS(5247), - [anon_sym_COLON] = ACTIONS(5247), - [anon_sym_SQUOTE] = ACTIONS(5247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5245), - [anon_sym_DOLLAR] = ACTIONS(5247), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5245), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5245), - [anon_sym_BSLASHbegin] = ACTIONS(5247), - [anon_sym_BSLASHusepackage] = ACTIONS(5247), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5247), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5247), - [anon_sym_BSLASHinclude] = ACTIONS(5247), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5247), - [anon_sym_BSLASHinput] = ACTIONS(5247), - [anon_sym_BSLASHsubfile] = ACTIONS(5247), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5247), - [anon_sym_BSLASHbibliography] = ACTIONS(5247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5247), - [anon_sym_BSLASHincludesvg] = ACTIONS(5247), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5247), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5247), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5247), - [anon_sym_BSLASHimport] = ACTIONS(5247), - [anon_sym_BSLASHsubimport] = ACTIONS(5247), - [anon_sym_BSLASHinputfrom] = ACTIONS(5247), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5247), - [anon_sym_BSLASHincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHcaption] = ACTIONS(5247), - [anon_sym_BSLASHcite] = ACTIONS(5247), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCite] = ACTIONS(5247), - [anon_sym_BSLASHnocite] = ACTIONS(5247), - [anon_sym_BSLASHcitet] = ACTIONS(5247), - [anon_sym_BSLASHcitep] = ACTIONS(5247), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteyear] = ACTIONS(5247), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitedate] = ACTIONS(5247), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteurl] = ACTIONS(5247), - [anon_sym_BSLASHfullcite] = ACTIONS(5247), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5247), - [anon_sym_BSLASHcitealt] = ACTIONS(5247), - [anon_sym_BSLASHcitealp] = ACTIONS(5247), - [anon_sym_BSLASHcitetext] = ACTIONS(5247), - [anon_sym_BSLASHparencite] = ACTIONS(5247), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHParencite] = ACTIONS(5247), - [anon_sym_BSLASHfootcite] = ACTIONS(5247), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5247), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5247), - [anon_sym_BSLASHtextcite] = ACTIONS(5247), - [anon_sym_BSLASHTextcite] = ACTIONS(5247), - [anon_sym_BSLASHsmartcite] = ACTIONS(5247), - [anon_sym_BSLASHSmartcite] = ACTIONS(5247), - [anon_sym_BSLASHsupercite] = ACTIONS(5247), - [anon_sym_BSLASHautocite] = ACTIONS(5247), - [anon_sym_BSLASHAutocite] = ACTIONS(5247), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHvolcite] = ACTIONS(5247), - [anon_sym_BSLASHVolcite] = ACTIONS(5247), - [anon_sym_BSLASHpvolcite] = ACTIONS(5247), - [anon_sym_BSLASHPvolcite] = ACTIONS(5247), - [anon_sym_BSLASHfvolcite] = ACTIONS(5247), - [anon_sym_BSLASHftvolcite] = ACTIONS(5247), - [anon_sym_BSLASHsvolcite] = ACTIONS(5247), - [anon_sym_BSLASHSvolcite] = ACTIONS(5247), - [anon_sym_BSLASHtvolcite] = ACTIONS(5247), - [anon_sym_BSLASHTvolcite] = ACTIONS(5247), - [anon_sym_BSLASHavolcite] = ACTIONS(5247), - [anon_sym_BSLASHAvolcite] = ACTIONS(5247), - [anon_sym_BSLASHnotecite] = ACTIONS(5247), - [anon_sym_BSLASHNotecite] = ACTIONS(5247), - [anon_sym_BSLASHpnotecite] = ACTIONS(5247), - [anon_sym_BSLASHPnotecite] = ACTIONS(5247), - [anon_sym_BSLASHfnotecite] = ACTIONS(5247), - [anon_sym_BSLASHlabel] = ACTIONS(5247), - [anon_sym_BSLASHref] = ACTIONS(5247), - [anon_sym_BSLASHeqref] = ACTIONS(5247), - [anon_sym_BSLASHvref] = ACTIONS(5247), - [anon_sym_BSLASHVref] = ACTIONS(5247), - [anon_sym_BSLASHautoref] = ACTIONS(5247), - [anon_sym_BSLASHpageref] = ACTIONS(5247), - [anon_sym_BSLASHcref] = ACTIONS(5247), - [anon_sym_BSLASHCref] = ACTIONS(5247), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnameCref] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHlabelcref] = ACTIONS(5247), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnewlabel] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5245), - [anon_sym_BSLASHdef] = ACTIONS(5247), - [anon_sym_BSLASHlet] = ACTIONS(5247), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5247), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5247), - [anon_sym_BSLASHgls] = ACTIONS(5247), - [anon_sym_BSLASHGls] = ACTIONS(5247), - [anon_sym_BSLASHGLS] = ACTIONS(5247), - [anon_sym_BSLASHglspl] = ACTIONS(5247), - [anon_sym_BSLASHGlspl] = ACTIONS(5247), - [anon_sym_BSLASHGLSpl] = ACTIONS(5247), - [anon_sym_BSLASHglsdisp] = ACTIONS(5247), - [anon_sym_BSLASHglslink] = ACTIONS(5247), - [anon_sym_BSLASHglstext] = ACTIONS(5247), - [anon_sym_BSLASHGlstext] = ACTIONS(5247), - [anon_sym_BSLASHGLStext] = ACTIONS(5247), - [anon_sym_BSLASHglsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5247), - [anon_sym_BSLASHglsplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSplural] = ACTIONS(5247), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHglsname] = ACTIONS(5247), - [anon_sym_BSLASHGlsname] = ACTIONS(5247), - [anon_sym_BSLASHGLSname] = ACTIONS(5247), - [anon_sym_BSLASHglssymbol] = ACTIONS(5247), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5247), - [anon_sym_BSLASHglsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5247), - [anon_sym_BSLASHglsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5247), - [anon_sym_BSLASHglsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5247), - [anon_sym_BSLASHglsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5247), - [anon_sym_BSLASHglsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5247), - [anon_sym_BSLASHnewacronym] = ACTIONS(5247), - [anon_sym_BSLASHacrshort] = ACTIONS(5247), - [anon_sym_BSLASHAcrshort] = ACTIONS(5247), - [anon_sym_BSLASHACRshort] = ACTIONS(5247), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5247), - [anon_sym_BSLASHacrlong] = ACTIONS(5247), - [anon_sym_BSLASHAcrlong] = ACTIONS(5247), - [anon_sym_BSLASHACRlong] = ACTIONS(5247), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5247), - [anon_sym_BSLASHacrfull] = ACTIONS(5247), - [anon_sym_BSLASHAcrfull] = ACTIONS(5247), - [anon_sym_BSLASHACRfull] = ACTIONS(5247), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5247), - [anon_sym_BSLASHacs] = ACTIONS(5247), - [anon_sym_BSLASHAcs] = ACTIONS(5247), - [anon_sym_BSLASHacsp] = ACTIONS(5247), - [anon_sym_BSLASHAcsp] = ACTIONS(5247), - [anon_sym_BSLASHacl] = ACTIONS(5247), - [anon_sym_BSLASHAcl] = ACTIONS(5247), - [anon_sym_BSLASHaclp] = ACTIONS(5247), - [anon_sym_BSLASHAclp] = ACTIONS(5247), - [anon_sym_BSLASHacf] = ACTIONS(5247), - [anon_sym_BSLASHAcf] = ACTIONS(5247), - [anon_sym_BSLASHacfp] = ACTIONS(5247), - [anon_sym_BSLASHAcfp] = ACTIONS(5247), - [anon_sym_BSLASHac] = ACTIONS(5247), - [anon_sym_BSLASHAc] = ACTIONS(5247), - [anon_sym_BSLASHacp] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5247), - [anon_sym_BSLASHcolor] = ACTIONS(5247), - [anon_sym_BSLASHcolorbox] = ACTIONS(5247), - [anon_sym_BSLASHtextcolor] = ACTIONS(5247), - [anon_sym_BSLASHpagecolor] = ACTIONS(5247), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5247), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5247), - }, - [843] = { - [sym_command_name] = ACTIONS(5243), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5243), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_RPAREN] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_RBRACK] = ACTIONS(5241), - [anon_sym_COMMA] = ACTIONS(5241), - [anon_sym_EQ] = ACTIONS(5241), - [anon_sym_BSLASHpart] = ACTIONS(5243), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddpart] = ACTIONS(5243), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5241), - [anon_sym_BSLASHchapter] = ACTIONS(5243), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddchap] = ACTIONS(5243), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsection] = ACTIONS(5243), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddsec] = ACTIONS(5243), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubsection] = ACTIONS(5243), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5243), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHparagraph] = ACTIONS(5243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5243), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5241), - [anon_sym_BSLASHitem] = ACTIONS(5243), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5241), - [anon_sym_LBRACE] = ACTIONS(5241), - [sym_word] = ACTIONS(5243), - [sym_placeholder] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_STAR] = ACTIONS(5243), - [anon_sym_SLASH] = ACTIONS(5243), - [anon_sym_CARET] = ACTIONS(5243), - [anon_sym__] = ACTIONS(5243), - [anon_sym_LT] = ACTIONS(5243), - [anon_sym_GT] = ACTIONS(5243), - [anon_sym_BANG] = ACTIONS(5243), - [anon_sym_PIPE] = ACTIONS(5243), - [anon_sym_COLON] = ACTIONS(5243), - [anon_sym_SQUOTE] = ACTIONS(5243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5241), - [anon_sym_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5241), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5241), - [anon_sym_BSLASHbegin] = ACTIONS(5243), - [anon_sym_BSLASHusepackage] = ACTIONS(5243), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5243), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5243), - [anon_sym_BSLASHinclude] = ACTIONS(5243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5243), - [anon_sym_BSLASHinput] = ACTIONS(5243), - [anon_sym_BSLASHsubfile] = ACTIONS(5243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5243), - [anon_sym_BSLASHbibliography] = ACTIONS(5243), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5243), - [anon_sym_BSLASHincludesvg] = ACTIONS(5243), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5243), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5243), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5243), - [anon_sym_BSLASHimport] = ACTIONS(5243), - [anon_sym_BSLASHsubimport] = ACTIONS(5243), - [anon_sym_BSLASHinputfrom] = ACTIONS(5243), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5243), - [anon_sym_BSLASHincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHcaption] = ACTIONS(5243), - [anon_sym_BSLASHcite] = ACTIONS(5243), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCite] = ACTIONS(5243), - [anon_sym_BSLASHnocite] = ACTIONS(5243), - [anon_sym_BSLASHcitet] = ACTIONS(5243), - [anon_sym_BSLASHcitep] = ACTIONS(5243), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteyear] = ACTIONS(5243), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitedate] = ACTIONS(5243), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteurl] = ACTIONS(5243), - [anon_sym_BSLASHfullcite] = ACTIONS(5243), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5243), - [anon_sym_BSLASHcitealt] = ACTIONS(5243), - [anon_sym_BSLASHcitealp] = ACTIONS(5243), - [anon_sym_BSLASHcitetext] = ACTIONS(5243), - [anon_sym_BSLASHparencite] = ACTIONS(5243), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHParencite] = ACTIONS(5243), - [anon_sym_BSLASHfootcite] = ACTIONS(5243), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5243), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5243), - [anon_sym_BSLASHtextcite] = ACTIONS(5243), - [anon_sym_BSLASHTextcite] = ACTIONS(5243), - [anon_sym_BSLASHsmartcite] = ACTIONS(5243), - [anon_sym_BSLASHSmartcite] = ACTIONS(5243), - [anon_sym_BSLASHsupercite] = ACTIONS(5243), - [anon_sym_BSLASHautocite] = ACTIONS(5243), - [anon_sym_BSLASHAutocite] = ACTIONS(5243), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHvolcite] = ACTIONS(5243), - [anon_sym_BSLASHVolcite] = ACTIONS(5243), - [anon_sym_BSLASHpvolcite] = ACTIONS(5243), - [anon_sym_BSLASHPvolcite] = ACTIONS(5243), - [anon_sym_BSLASHfvolcite] = ACTIONS(5243), - [anon_sym_BSLASHftvolcite] = ACTIONS(5243), - [anon_sym_BSLASHsvolcite] = ACTIONS(5243), - [anon_sym_BSLASHSvolcite] = ACTIONS(5243), - [anon_sym_BSLASHtvolcite] = ACTIONS(5243), - [anon_sym_BSLASHTvolcite] = ACTIONS(5243), - [anon_sym_BSLASHavolcite] = ACTIONS(5243), - [anon_sym_BSLASHAvolcite] = ACTIONS(5243), - [anon_sym_BSLASHnotecite] = ACTIONS(5243), - [anon_sym_BSLASHNotecite] = ACTIONS(5243), - [anon_sym_BSLASHpnotecite] = ACTIONS(5243), - [anon_sym_BSLASHPnotecite] = ACTIONS(5243), - [anon_sym_BSLASHfnotecite] = ACTIONS(5243), - [anon_sym_BSLASHlabel] = ACTIONS(5243), - [anon_sym_BSLASHref] = ACTIONS(5243), - [anon_sym_BSLASHeqref] = ACTIONS(5243), - [anon_sym_BSLASHvref] = ACTIONS(5243), - [anon_sym_BSLASHVref] = ACTIONS(5243), - [anon_sym_BSLASHautoref] = ACTIONS(5243), - [anon_sym_BSLASHpageref] = ACTIONS(5243), - [anon_sym_BSLASHcref] = ACTIONS(5243), - [anon_sym_BSLASHCref] = ACTIONS(5243), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnameCref] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHlabelcref] = ACTIONS(5243), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnewlabel] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5241), - [anon_sym_BSLASHdef] = ACTIONS(5243), - [anon_sym_BSLASHlet] = ACTIONS(5243), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5243), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5243), - [anon_sym_BSLASHgls] = ACTIONS(5243), - [anon_sym_BSLASHGls] = ACTIONS(5243), - [anon_sym_BSLASHGLS] = ACTIONS(5243), - [anon_sym_BSLASHglspl] = ACTIONS(5243), - [anon_sym_BSLASHGlspl] = ACTIONS(5243), - [anon_sym_BSLASHGLSpl] = ACTIONS(5243), - [anon_sym_BSLASHglsdisp] = ACTIONS(5243), - [anon_sym_BSLASHglslink] = ACTIONS(5243), - [anon_sym_BSLASHglstext] = ACTIONS(5243), - [anon_sym_BSLASHGlstext] = ACTIONS(5243), - [anon_sym_BSLASHGLStext] = ACTIONS(5243), - [anon_sym_BSLASHglsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5243), - [anon_sym_BSLASHglsplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSplural] = ACTIONS(5243), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHglsname] = ACTIONS(5243), - [anon_sym_BSLASHGlsname] = ACTIONS(5243), - [anon_sym_BSLASHGLSname] = ACTIONS(5243), - [anon_sym_BSLASHglssymbol] = ACTIONS(5243), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5243), - [anon_sym_BSLASHglsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5243), - [anon_sym_BSLASHglsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5243), - [anon_sym_BSLASHglsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5243), - [anon_sym_BSLASHglsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5243), - [anon_sym_BSLASHglsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5243), - [anon_sym_BSLASHnewacronym] = ACTIONS(5243), - [anon_sym_BSLASHacrshort] = ACTIONS(5243), - [anon_sym_BSLASHAcrshort] = ACTIONS(5243), - [anon_sym_BSLASHACRshort] = ACTIONS(5243), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5243), - [anon_sym_BSLASHacrlong] = ACTIONS(5243), - [anon_sym_BSLASHAcrlong] = ACTIONS(5243), - [anon_sym_BSLASHACRlong] = ACTIONS(5243), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5243), - [anon_sym_BSLASHacrfull] = ACTIONS(5243), - [anon_sym_BSLASHAcrfull] = ACTIONS(5243), - [anon_sym_BSLASHACRfull] = ACTIONS(5243), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5243), - [anon_sym_BSLASHacs] = ACTIONS(5243), - [anon_sym_BSLASHAcs] = ACTIONS(5243), - [anon_sym_BSLASHacsp] = ACTIONS(5243), - [anon_sym_BSLASHAcsp] = ACTIONS(5243), - [anon_sym_BSLASHacl] = ACTIONS(5243), - [anon_sym_BSLASHAcl] = ACTIONS(5243), - [anon_sym_BSLASHaclp] = ACTIONS(5243), - [anon_sym_BSLASHAclp] = ACTIONS(5243), - [anon_sym_BSLASHacf] = ACTIONS(5243), - [anon_sym_BSLASHAcf] = ACTIONS(5243), - [anon_sym_BSLASHacfp] = ACTIONS(5243), - [anon_sym_BSLASHAcfp] = ACTIONS(5243), - [anon_sym_BSLASHac] = ACTIONS(5243), - [anon_sym_BSLASHAc] = ACTIONS(5243), - [anon_sym_BSLASHacp] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5243), - [anon_sym_BSLASHcolor] = ACTIONS(5243), - [anon_sym_BSLASHcolorbox] = ACTIONS(5243), - [anon_sym_BSLASHtextcolor] = ACTIONS(5243), - [anon_sym_BSLASHpagecolor] = ACTIONS(5243), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5243), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5243), - }, - [844] = { - [sym_command_name] = ACTIONS(5239), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5237), - [anon_sym_RPAREN] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_RBRACK] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_EQ] = ACTIONS(5237), - [anon_sym_BSLASHpart] = ACTIONS(5239), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddpart] = ACTIONS(5239), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5237), - [anon_sym_BSLASHchapter] = ACTIONS(5239), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddchap] = ACTIONS(5239), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsection] = ACTIONS(5239), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddsec] = ACTIONS(5239), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubsection] = ACTIONS(5239), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHparagraph] = ACTIONS(5239), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5239), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5237), - [anon_sym_BSLASHitem] = ACTIONS(5239), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5237), - [sym_word] = ACTIONS(5239), - [sym_placeholder] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym__] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_BANG] = ACTIONS(5239), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_COLON] = ACTIONS(5239), - [anon_sym_SQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), - [anon_sym_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), - [anon_sym_BSLASHbegin] = ACTIONS(5239), - [anon_sym_BSLASHusepackage] = ACTIONS(5239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), - [anon_sym_BSLASHinclude] = ACTIONS(5239), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), - [anon_sym_BSLASHinput] = ACTIONS(5239), - [anon_sym_BSLASHsubfile] = ACTIONS(5239), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), - [anon_sym_BSLASHbibliography] = ACTIONS(5239), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), - [anon_sym_BSLASHincludesvg] = ACTIONS(5239), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), - [anon_sym_BSLASHimport] = ACTIONS(5239), - [anon_sym_BSLASHsubimport] = ACTIONS(5239), - [anon_sym_BSLASHinputfrom] = ACTIONS(5239), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), - [anon_sym_BSLASHincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHcaption] = ACTIONS(5239), - [anon_sym_BSLASHcite] = ACTIONS(5239), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCite] = ACTIONS(5239), - [anon_sym_BSLASHnocite] = ACTIONS(5239), - [anon_sym_BSLASHcitet] = ACTIONS(5239), - [anon_sym_BSLASHcitep] = ACTIONS(5239), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteyear] = ACTIONS(5239), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitedate] = ACTIONS(5239), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteurl] = ACTIONS(5239), - [anon_sym_BSLASHfullcite] = ACTIONS(5239), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), - [anon_sym_BSLASHcitealt] = ACTIONS(5239), - [anon_sym_BSLASHcitealp] = ACTIONS(5239), - [anon_sym_BSLASHcitetext] = ACTIONS(5239), - [anon_sym_BSLASHparencite] = ACTIONS(5239), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHParencite] = ACTIONS(5239), - [anon_sym_BSLASHfootcite] = ACTIONS(5239), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), - [anon_sym_BSLASHtextcite] = ACTIONS(5239), - [anon_sym_BSLASHTextcite] = ACTIONS(5239), - [anon_sym_BSLASHsmartcite] = ACTIONS(5239), - [anon_sym_BSLASHSmartcite] = ACTIONS(5239), - [anon_sym_BSLASHsupercite] = ACTIONS(5239), - [anon_sym_BSLASHautocite] = ACTIONS(5239), - [anon_sym_BSLASHAutocite] = ACTIONS(5239), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHvolcite] = ACTIONS(5239), - [anon_sym_BSLASHVolcite] = ACTIONS(5239), - [anon_sym_BSLASHpvolcite] = ACTIONS(5239), - [anon_sym_BSLASHPvolcite] = ACTIONS(5239), - [anon_sym_BSLASHfvolcite] = ACTIONS(5239), - [anon_sym_BSLASHftvolcite] = ACTIONS(5239), - [anon_sym_BSLASHsvolcite] = ACTIONS(5239), - [anon_sym_BSLASHSvolcite] = ACTIONS(5239), - [anon_sym_BSLASHtvolcite] = ACTIONS(5239), - [anon_sym_BSLASHTvolcite] = ACTIONS(5239), - [anon_sym_BSLASHavolcite] = ACTIONS(5239), - [anon_sym_BSLASHAvolcite] = ACTIONS(5239), - [anon_sym_BSLASHnotecite] = ACTIONS(5239), - [anon_sym_BSLASHNotecite] = ACTIONS(5239), - [anon_sym_BSLASHpnotecite] = ACTIONS(5239), - [anon_sym_BSLASHPnotecite] = ACTIONS(5239), - [anon_sym_BSLASHfnotecite] = ACTIONS(5239), - [anon_sym_BSLASHlabel] = ACTIONS(5239), - [anon_sym_BSLASHref] = ACTIONS(5239), - [anon_sym_BSLASHeqref] = ACTIONS(5239), - [anon_sym_BSLASHvref] = ACTIONS(5239), - [anon_sym_BSLASHVref] = ACTIONS(5239), - [anon_sym_BSLASHautoref] = ACTIONS(5239), - [anon_sym_BSLASHpageref] = ACTIONS(5239), - [anon_sym_BSLASHcref] = ACTIONS(5239), - [anon_sym_BSLASHCref] = ACTIONS(5239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnameCref] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHlabelcref] = ACTIONS(5239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnewlabel] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), - [anon_sym_BSLASHdef] = ACTIONS(5239), - [anon_sym_BSLASHlet] = ACTIONS(5239), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), - [anon_sym_BSLASHgls] = ACTIONS(5239), - [anon_sym_BSLASHGls] = ACTIONS(5239), - [anon_sym_BSLASHGLS] = ACTIONS(5239), - [anon_sym_BSLASHglspl] = ACTIONS(5239), - [anon_sym_BSLASHGlspl] = ACTIONS(5239), - [anon_sym_BSLASHGLSpl] = ACTIONS(5239), - [anon_sym_BSLASHglsdisp] = ACTIONS(5239), - [anon_sym_BSLASHglslink] = ACTIONS(5239), - [anon_sym_BSLASHglstext] = ACTIONS(5239), - [anon_sym_BSLASHGlstext] = ACTIONS(5239), - [anon_sym_BSLASHGLStext] = ACTIONS(5239), - [anon_sym_BSLASHglsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), - [anon_sym_BSLASHglsplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSplural] = ACTIONS(5239), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHglsname] = ACTIONS(5239), - [anon_sym_BSLASHGlsname] = ACTIONS(5239), - [anon_sym_BSLASHGLSname] = ACTIONS(5239), - [anon_sym_BSLASHglssymbol] = ACTIONS(5239), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), - [anon_sym_BSLASHglsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), - [anon_sym_BSLASHglsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), - [anon_sym_BSLASHglsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), - [anon_sym_BSLASHglsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), - [anon_sym_BSLASHglsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), - [anon_sym_BSLASHnewacronym] = ACTIONS(5239), - [anon_sym_BSLASHacrshort] = ACTIONS(5239), - [anon_sym_BSLASHAcrshort] = ACTIONS(5239), - [anon_sym_BSLASHACRshort] = ACTIONS(5239), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), - [anon_sym_BSLASHacrlong] = ACTIONS(5239), - [anon_sym_BSLASHAcrlong] = ACTIONS(5239), - [anon_sym_BSLASHACRlong] = ACTIONS(5239), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), - [anon_sym_BSLASHacrfull] = ACTIONS(5239), - [anon_sym_BSLASHAcrfull] = ACTIONS(5239), - [anon_sym_BSLASHACRfull] = ACTIONS(5239), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), - [anon_sym_BSLASHacs] = ACTIONS(5239), - [anon_sym_BSLASHAcs] = ACTIONS(5239), - [anon_sym_BSLASHacsp] = ACTIONS(5239), - [anon_sym_BSLASHAcsp] = ACTIONS(5239), - [anon_sym_BSLASHacl] = ACTIONS(5239), - [anon_sym_BSLASHAcl] = ACTIONS(5239), - [anon_sym_BSLASHaclp] = ACTIONS(5239), - [anon_sym_BSLASHAclp] = ACTIONS(5239), - [anon_sym_BSLASHacf] = ACTIONS(5239), - [anon_sym_BSLASHAcf] = ACTIONS(5239), - [anon_sym_BSLASHacfp] = ACTIONS(5239), - [anon_sym_BSLASHAcfp] = ACTIONS(5239), - [anon_sym_BSLASHac] = ACTIONS(5239), - [anon_sym_BSLASHAc] = ACTIONS(5239), - [anon_sym_BSLASHacp] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), - [anon_sym_BSLASHcolor] = ACTIONS(5239), - [anon_sym_BSLASHcolorbox] = ACTIONS(5239), - [anon_sym_BSLASHtextcolor] = ACTIONS(5239), - [anon_sym_BSLASHpagecolor] = ACTIONS(5239), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), - }, - [845] = { - [sym_command_name] = ACTIONS(5235), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5235), - [anon_sym_LPAREN] = ACTIONS(5233), - [anon_sym_RPAREN] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_RBRACK] = ACTIONS(5233), - [anon_sym_COMMA] = ACTIONS(5233), - [anon_sym_EQ] = ACTIONS(5233), - [anon_sym_BSLASHpart] = ACTIONS(5235), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddpart] = ACTIONS(5235), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), - [anon_sym_BSLASHchapter] = ACTIONS(5235), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddchap] = ACTIONS(5235), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsection] = ACTIONS(5235), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddsec] = ACTIONS(5235), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubsection] = ACTIONS(5235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHparagraph] = ACTIONS(5235), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), - [anon_sym_BSLASHitem] = ACTIONS(5235), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5233), - [sym_word] = ACTIONS(5235), - [sym_placeholder] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_CARET] = ACTIONS(5235), - [anon_sym__] = ACTIONS(5235), - [anon_sym_LT] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5235), - [anon_sym_BANG] = ACTIONS(5235), - [anon_sym_PIPE] = ACTIONS(5235), - [anon_sym_COLON] = ACTIONS(5235), - [anon_sym_SQUOTE] = ACTIONS(5235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), - [anon_sym_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), - [anon_sym_BSLASHbegin] = ACTIONS(5235), - [anon_sym_BSLASHusepackage] = ACTIONS(5235), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), - [anon_sym_BSLASHinclude] = ACTIONS(5235), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), - [anon_sym_BSLASHinput] = ACTIONS(5235), - [anon_sym_BSLASHsubfile] = ACTIONS(5235), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), - [anon_sym_BSLASHbibliography] = ACTIONS(5235), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), - [anon_sym_BSLASHincludesvg] = ACTIONS(5235), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), - [anon_sym_BSLASHimport] = ACTIONS(5235), - [anon_sym_BSLASHsubimport] = ACTIONS(5235), - [anon_sym_BSLASHinputfrom] = ACTIONS(5235), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), - [anon_sym_BSLASHincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHcaption] = ACTIONS(5235), - [anon_sym_BSLASHcite] = ACTIONS(5235), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCite] = ACTIONS(5235), - [anon_sym_BSLASHnocite] = ACTIONS(5235), - [anon_sym_BSLASHcitet] = ACTIONS(5235), - [anon_sym_BSLASHcitep] = ACTIONS(5235), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteyear] = ACTIONS(5235), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitedate] = ACTIONS(5235), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteurl] = ACTIONS(5235), - [anon_sym_BSLASHfullcite] = ACTIONS(5235), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), - [anon_sym_BSLASHcitealt] = ACTIONS(5235), - [anon_sym_BSLASHcitealp] = ACTIONS(5235), - [anon_sym_BSLASHcitetext] = ACTIONS(5235), - [anon_sym_BSLASHparencite] = ACTIONS(5235), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHParencite] = ACTIONS(5235), - [anon_sym_BSLASHfootcite] = ACTIONS(5235), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), - [anon_sym_BSLASHtextcite] = ACTIONS(5235), - [anon_sym_BSLASHTextcite] = ACTIONS(5235), - [anon_sym_BSLASHsmartcite] = ACTIONS(5235), - [anon_sym_BSLASHSmartcite] = ACTIONS(5235), - [anon_sym_BSLASHsupercite] = ACTIONS(5235), - [anon_sym_BSLASHautocite] = ACTIONS(5235), - [anon_sym_BSLASHAutocite] = ACTIONS(5235), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHvolcite] = ACTIONS(5235), - [anon_sym_BSLASHVolcite] = ACTIONS(5235), - [anon_sym_BSLASHpvolcite] = ACTIONS(5235), - [anon_sym_BSLASHPvolcite] = ACTIONS(5235), - [anon_sym_BSLASHfvolcite] = ACTIONS(5235), - [anon_sym_BSLASHftvolcite] = ACTIONS(5235), - [anon_sym_BSLASHsvolcite] = ACTIONS(5235), - [anon_sym_BSLASHSvolcite] = ACTIONS(5235), - [anon_sym_BSLASHtvolcite] = ACTIONS(5235), - [anon_sym_BSLASHTvolcite] = ACTIONS(5235), - [anon_sym_BSLASHavolcite] = ACTIONS(5235), - [anon_sym_BSLASHAvolcite] = ACTIONS(5235), - [anon_sym_BSLASHnotecite] = ACTIONS(5235), - [anon_sym_BSLASHNotecite] = ACTIONS(5235), - [anon_sym_BSLASHpnotecite] = ACTIONS(5235), - [anon_sym_BSLASHPnotecite] = ACTIONS(5235), - [anon_sym_BSLASHfnotecite] = ACTIONS(5235), - [anon_sym_BSLASHlabel] = ACTIONS(5235), - [anon_sym_BSLASHref] = ACTIONS(5235), - [anon_sym_BSLASHeqref] = ACTIONS(5235), - [anon_sym_BSLASHvref] = ACTIONS(5235), - [anon_sym_BSLASHVref] = ACTIONS(5235), - [anon_sym_BSLASHautoref] = ACTIONS(5235), - [anon_sym_BSLASHpageref] = ACTIONS(5235), - [anon_sym_BSLASHcref] = ACTIONS(5235), - [anon_sym_BSLASHCref] = ACTIONS(5235), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnameCref] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHlabelcref] = ACTIONS(5235), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnewlabel] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), - [anon_sym_BSLASHdef] = ACTIONS(5235), - [anon_sym_BSLASHlet] = ACTIONS(5235), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), - [anon_sym_BSLASHgls] = ACTIONS(5235), - [anon_sym_BSLASHGls] = ACTIONS(5235), - [anon_sym_BSLASHGLS] = ACTIONS(5235), - [anon_sym_BSLASHglspl] = ACTIONS(5235), - [anon_sym_BSLASHGlspl] = ACTIONS(5235), - [anon_sym_BSLASHGLSpl] = ACTIONS(5235), - [anon_sym_BSLASHglsdisp] = ACTIONS(5235), - [anon_sym_BSLASHglslink] = ACTIONS(5235), - [anon_sym_BSLASHglstext] = ACTIONS(5235), - [anon_sym_BSLASHGlstext] = ACTIONS(5235), - [anon_sym_BSLASHGLStext] = ACTIONS(5235), - [anon_sym_BSLASHglsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), - [anon_sym_BSLASHglsplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSplural] = ACTIONS(5235), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHglsname] = ACTIONS(5235), - [anon_sym_BSLASHGlsname] = ACTIONS(5235), - [anon_sym_BSLASHGLSname] = ACTIONS(5235), - [anon_sym_BSLASHglssymbol] = ACTIONS(5235), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), - [anon_sym_BSLASHglsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), - [anon_sym_BSLASHglsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), - [anon_sym_BSLASHglsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), - [anon_sym_BSLASHglsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), - [anon_sym_BSLASHglsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), - [anon_sym_BSLASHnewacronym] = ACTIONS(5235), - [anon_sym_BSLASHacrshort] = ACTIONS(5235), - [anon_sym_BSLASHAcrshort] = ACTIONS(5235), - [anon_sym_BSLASHACRshort] = ACTIONS(5235), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), - [anon_sym_BSLASHacrlong] = ACTIONS(5235), - [anon_sym_BSLASHAcrlong] = ACTIONS(5235), - [anon_sym_BSLASHACRlong] = ACTIONS(5235), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), - [anon_sym_BSLASHacrfull] = ACTIONS(5235), - [anon_sym_BSLASHAcrfull] = ACTIONS(5235), - [anon_sym_BSLASHACRfull] = ACTIONS(5235), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), - [anon_sym_BSLASHacs] = ACTIONS(5235), - [anon_sym_BSLASHAcs] = ACTIONS(5235), - [anon_sym_BSLASHacsp] = ACTIONS(5235), - [anon_sym_BSLASHAcsp] = ACTIONS(5235), - [anon_sym_BSLASHacl] = ACTIONS(5235), - [anon_sym_BSLASHAcl] = ACTIONS(5235), - [anon_sym_BSLASHaclp] = ACTIONS(5235), - [anon_sym_BSLASHAclp] = ACTIONS(5235), - [anon_sym_BSLASHacf] = ACTIONS(5235), - [anon_sym_BSLASHAcf] = ACTIONS(5235), - [anon_sym_BSLASHacfp] = ACTIONS(5235), - [anon_sym_BSLASHAcfp] = ACTIONS(5235), - [anon_sym_BSLASHac] = ACTIONS(5235), - [anon_sym_BSLASHAc] = ACTIONS(5235), - [anon_sym_BSLASHacp] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), - [anon_sym_BSLASHcolor] = ACTIONS(5235), - [anon_sym_BSLASHcolorbox] = ACTIONS(5235), - [anon_sym_BSLASHtextcolor] = ACTIONS(5235), - [anon_sym_BSLASHpagecolor] = ACTIONS(5235), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), - }, - [846] = { - [sym_command_name] = ACTIONS(5231), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5231), - [anon_sym_LPAREN] = ACTIONS(5229), - [anon_sym_RPAREN] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_RBRACK] = ACTIONS(5229), - [anon_sym_COMMA] = ACTIONS(5229), - [anon_sym_EQ] = ACTIONS(5229), - [anon_sym_BSLASHpart] = ACTIONS(5231), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddpart] = ACTIONS(5231), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), - [anon_sym_BSLASHchapter] = ACTIONS(5231), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddchap] = ACTIONS(5231), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsection] = ACTIONS(5231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddsec] = ACTIONS(5231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubsection] = ACTIONS(5231), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHparagraph] = ACTIONS(5231), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), - [anon_sym_BSLASHitem] = ACTIONS(5231), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5229), - [sym_word] = ACTIONS(5231), - [sym_placeholder] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_SLASH] = ACTIONS(5231), - [anon_sym_CARET] = ACTIONS(5231), - [anon_sym__] = ACTIONS(5231), - [anon_sym_LT] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5231), - [anon_sym_BANG] = ACTIONS(5231), - [anon_sym_PIPE] = ACTIONS(5231), - [anon_sym_COLON] = ACTIONS(5231), - [anon_sym_SQUOTE] = ACTIONS(5231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), - [anon_sym_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), - [anon_sym_BSLASHbegin] = ACTIONS(5231), - [anon_sym_BSLASHusepackage] = ACTIONS(5231), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), - [anon_sym_BSLASHinclude] = ACTIONS(5231), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), - [anon_sym_BSLASHinput] = ACTIONS(5231), - [anon_sym_BSLASHsubfile] = ACTIONS(5231), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), - [anon_sym_BSLASHbibliography] = ACTIONS(5231), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), - [anon_sym_BSLASHincludesvg] = ACTIONS(5231), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), - [anon_sym_BSLASHimport] = ACTIONS(5231), - [anon_sym_BSLASHsubimport] = ACTIONS(5231), - [anon_sym_BSLASHinputfrom] = ACTIONS(5231), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), - [anon_sym_BSLASHincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHcaption] = ACTIONS(5231), - [anon_sym_BSLASHcite] = ACTIONS(5231), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCite] = ACTIONS(5231), - [anon_sym_BSLASHnocite] = ACTIONS(5231), - [anon_sym_BSLASHcitet] = ACTIONS(5231), - [anon_sym_BSLASHcitep] = ACTIONS(5231), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteyear] = ACTIONS(5231), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitedate] = ACTIONS(5231), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteurl] = ACTIONS(5231), - [anon_sym_BSLASHfullcite] = ACTIONS(5231), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), - [anon_sym_BSLASHcitealt] = ACTIONS(5231), - [anon_sym_BSLASHcitealp] = ACTIONS(5231), - [anon_sym_BSLASHcitetext] = ACTIONS(5231), - [anon_sym_BSLASHparencite] = ACTIONS(5231), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHParencite] = ACTIONS(5231), - [anon_sym_BSLASHfootcite] = ACTIONS(5231), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), - [anon_sym_BSLASHtextcite] = ACTIONS(5231), - [anon_sym_BSLASHTextcite] = ACTIONS(5231), - [anon_sym_BSLASHsmartcite] = ACTIONS(5231), - [anon_sym_BSLASHSmartcite] = ACTIONS(5231), - [anon_sym_BSLASHsupercite] = ACTIONS(5231), - [anon_sym_BSLASHautocite] = ACTIONS(5231), - [anon_sym_BSLASHAutocite] = ACTIONS(5231), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHvolcite] = ACTIONS(5231), - [anon_sym_BSLASHVolcite] = ACTIONS(5231), - [anon_sym_BSLASHpvolcite] = ACTIONS(5231), - [anon_sym_BSLASHPvolcite] = ACTIONS(5231), - [anon_sym_BSLASHfvolcite] = ACTIONS(5231), - [anon_sym_BSLASHftvolcite] = ACTIONS(5231), - [anon_sym_BSLASHsvolcite] = ACTIONS(5231), - [anon_sym_BSLASHSvolcite] = ACTIONS(5231), - [anon_sym_BSLASHtvolcite] = ACTIONS(5231), - [anon_sym_BSLASHTvolcite] = ACTIONS(5231), - [anon_sym_BSLASHavolcite] = ACTIONS(5231), - [anon_sym_BSLASHAvolcite] = ACTIONS(5231), - [anon_sym_BSLASHnotecite] = ACTIONS(5231), - [anon_sym_BSLASHNotecite] = ACTIONS(5231), - [anon_sym_BSLASHpnotecite] = ACTIONS(5231), - [anon_sym_BSLASHPnotecite] = ACTIONS(5231), - [anon_sym_BSLASHfnotecite] = ACTIONS(5231), - [anon_sym_BSLASHlabel] = ACTIONS(5231), - [anon_sym_BSLASHref] = ACTIONS(5231), - [anon_sym_BSLASHeqref] = ACTIONS(5231), - [anon_sym_BSLASHvref] = ACTIONS(5231), - [anon_sym_BSLASHVref] = ACTIONS(5231), - [anon_sym_BSLASHautoref] = ACTIONS(5231), - [anon_sym_BSLASHpageref] = ACTIONS(5231), - [anon_sym_BSLASHcref] = ACTIONS(5231), - [anon_sym_BSLASHCref] = ACTIONS(5231), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnameCref] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHlabelcref] = ACTIONS(5231), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnewlabel] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), - [anon_sym_BSLASHdef] = ACTIONS(5231), - [anon_sym_BSLASHlet] = ACTIONS(5231), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), - [anon_sym_BSLASHgls] = ACTIONS(5231), - [anon_sym_BSLASHGls] = ACTIONS(5231), - [anon_sym_BSLASHGLS] = ACTIONS(5231), - [anon_sym_BSLASHglspl] = ACTIONS(5231), - [anon_sym_BSLASHGlspl] = ACTIONS(5231), - [anon_sym_BSLASHGLSpl] = ACTIONS(5231), - [anon_sym_BSLASHglsdisp] = ACTIONS(5231), - [anon_sym_BSLASHglslink] = ACTIONS(5231), - [anon_sym_BSLASHglstext] = ACTIONS(5231), - [anon_sym_BSLASHGlstext] = ACTIONS(5231), - [anon_sym_BSLASHGLStext] = ACTIONS(5231), - [anon_sym_BSLASHglsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), - [anon_sym_BSLASHglsplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSplural] = ACTIONS(5231), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHglsname] = ACTIONS(5231), - [anon_sym_BSLASHGlsname] = ACTIONS(5231), - [anon_sym_BSLASHGLSname] = ACTIONS(5231), - [anon_sym_BSLASHglssymbol] = ACTIONS(5231), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), - [anon_sym_BSLASHglsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), - [anon_sym_BSLASHglsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), - [anon_sym_BSLASHglsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), - [anon_sym_BSLASHglsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), - [anon_sym_BSLASHglsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), - [anon_sym_BSLASHnewacronym] = ACTIONS(5231), - [anon_sym_BSLASHacrshort] = ACTIONS(5231), - [anon_sym_BSLASHAcrshort] = ACTIONS(5231), - [anon_sym_BSLASHACRshort] = ACTIONS(5231), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), - [anon_sym_BSLASHacrlong] = ACTIONS(5231), - [anon_sym_BSLASHAcrlong] = ACTIONS(5231), - [anon_sym_BSLASHACRlong] = ACTIONS(5231), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), - [anon_sym_BSLASHacrfull] = ACTIONS(5231), - [anon_sym_BSLASHAcrfull] = ACTIONS(5231), - [anon_sym_BSLASHACRfull] = ACTIONS(5231), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), - [anon_sym_BSLASHacs] = ACTIONS(5231), - [anon_sym_BSLASHAcs] = ACTIONS(5231), - [anon_sym_BSLASHacsp] = ACTIONS(5231), - [anon_sym_BSLASHAcsp] = ACTIONS(5231), - [anon_sym_BSLASHacl] = ACTIONS(5231), - [anon_sym_BSLASHAcl] = ACTIONS(5231), - [anon_sym_BSLASHaclp] = ACTIONS(5231), - [anon_sym_BSLASHAclp] = ACTIONS(5231), - [anon_sym_BSLASHacf] = ACTIONS(5231), - [anon_sym_BSLASHAcf] = ACTIONS(5231), - [anon_sym_BSLASHacfp] = ACTIONS(5231), - [anon_sym_BSLASHAcfp] = ACTIONS(5231), - [anon_sym_BSLASHac] = ACTIONS(5231), - [anon_sym_BSLASHAc] = ACTIONS(5231), - [anon_sym_BSLASHacp] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), - [anon_sym_BSLASHcolor] = ACTIONS(5231), - [anon_sym_BSLASHcolorbox] = ACTIONS(5231), - [anon_sym_BSLASHtextcolor] = ACTIONS(5231), - [anon_sym_BSLASHpagecolor] = ACTIONS(5231), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), - }, - [847] = { - [sym_command_name] = ACTIONS(5221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_BSLASHpart] = ACTIONS(5221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddpart] = ACTIONS(5221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHchapter] = ACTIONS(5221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddchap] = ACTIONS(5221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsection] = ACTIONS(5221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddsec] = ACTIONS(5221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHparagraph] = ACTIONS(5221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHitem] = ACTIONS(5221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASHbegin] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), - }, - [848] = { - [sym_command_name] = ACTIONS(5217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_BSLASHpart] = ACTIONS(5217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddpart] = ACTIONS(5217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHchapter] = ACTIONS(5217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddchap] = ACTIONS(5217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsection] = ACTIONS(5217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddsec] = ACTIONS(5217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHparagraph] = ACTIONS(5217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHitem] = ACTIONS(5217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASHbegin] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), - }, - [849] = { - [sym_command_name] = ACTIONS(5151), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5149), - [anon_sym_RPAREN] = ACTIONS(5149), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_RBRACK] = ACTIONS(5149), - [anon_sym_COMMA] = ACTIONS(5149), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_BSLASHpart] = ACTIONS(5151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddpart] = ACTIONS(5151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5149), - [anon_sym_BSLASHchapter] = ACTIONS(5151), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddchap] = ACTIONS(5151), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsection] = ACTIONS(5151), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddsec] = ACTIONS(5151), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubsection] = ACTIONS(5151), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5151), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHparagraph] = ACTIONS(5151), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5151), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5149), - [anon_sym_BSLASHitem] = ACTIONS(5151), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5149), - [anon_sym_LBRACE] = ACTIONS(5149), - [sym_word] = ACTIONS(5151), - [sym_placeholder] = ACTIONS(5149), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_CARET] = ACTIONS(5151), - [anon_sym__] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5151), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5149), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5149), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5149), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5149), - [anon_sym_BSLASHbegin] = ACTIONS(5151), - [anon_sym_BSLASHusepackage] = ACTIONS(5151), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5151), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5151), - [anon_sym_BSLASHinclude] = ACTIONS(5151), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), - [anon_sym_BSLASHinput] = ACTIONS(5151), - [anon_sym_BSLASHsubfile] = ACTIONS(5151), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5151), - [anon_sym_BSLASHbibliography] = ACTIONS(5151), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5151), - [anon_sym_BSLASHincludesvg] = ACTIONS(5151), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5151), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5151), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5151), - [anon_sym_BSLASHimport] = ACTIONS(5151), - [anon_sym_BSLASHsubimport] = ACTIONS(5151), - [anon_sym_BSLASHinputfrom] = ACTIONS(5151), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5151), - [anon_sym_BSLASHincludefrom] = ACTIONS(5151), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5151), - [anon_sym_BSLASHcaption] = ACTIONS(5151), - [anon_sym_BSLASHcite] = ACTIONS(5151), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCite] = ACTIONS(5151), - [anon_sym_BSLASHnocite] = ACTIONS(5151), - [anon_sym_BSLASHcitet] = ACTIONS(5151), - [anon_sym_BSLASHcitep] = ACTIONS(5151), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteyear] = ACTIONS(5151), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitedate] = ACTIONS(5151), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteurl] = ACTIONS(5151), - [anon_sym_BSLASHfullcite] = ACTIONS(5151), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5151), - [anon_sym_BSLASHcitealt] = ACTIONS(5151), - [anon_sym_BSLASHcitealp] = ACTIONS(5151), - [anon_sym_BSLASHcitetext] = ACTIONS(5151), - [anon_sym_BSLASHparencite] = ACTIONS(5151), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHParencite] = ACTIONS(5151), - [anon_sym_BSLASHfootcite] = ACTIONS(5151), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5151), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5151), - [anon_sym_BSLASHtextcite] = ACTIONS(5151), - [anon_sym_BSLASHTextcite] = ACTIONS(5151), - [anon_sym_BSLASHsmartcite] = ACTIONS(5151), - [anon_sym_BSLASHSmartcite] = ACTIONS(5151), - [anon_sym_BSLASHsupercite] = ACTIONS(5151), - [anon_sym_BSLASHautocite] = ACTIONS(5151), - [anon_sym_BSLASHAutocite] = ACTIONS(5151), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHvolcite] = ACTIONS(5151), - [anon_sym_BSLASHVolcite] = ACTIONS(5151), - [anon_sym_BSLASHpvolcite] = ACTIONS(5151), - [anon_sym_BSLASHPvolcite] = ACTIONS(5151), - [anon_sym_BSLASHfvolcite] = ACTIONS(5151), - [anon_sym_BSLASHftvolcite] = ACTIONS(5151), - [anon_sym_BSLASHsvolcite] = ACTIONS(5151), - [anon_sym_BSLASHSvolcite] = ACTIONS(5151), - [anon_sym_BSLASHtvolcite] = ACTIONS(5151), - [anon_sym_BSLASHTvolcite] = ACTIONS(5151), - [anon_sym_BSLASHavolcite] = ACTIONS(5151), - [anon_sym_BSLASHAvolcite] = ACTIONS(5151), - [anon_sym_BSLASHnotecite] = ACTIONS(5151), - [anon_sym_BSLASHNotecite] = ACTIONS(5151), - [anon_sym_BSLASHpnotecite] = ACTIONS(5151), - [anon_sym_BSLASHPnotecite] = ACTIONS(5151), - [anon_sym_BSLASHfnotecite] = ACTIONS(5151), - [anon_sym_BSLASHlabel] = ACTIONS(5151), - [anon_sym_BSLASHref] = ACTIONS(5151), - [anon_sym_BSLASHeqref] = ACTIONS(5151), - [anon_sym_BSLASHvref] = ACTIONS(5151), - [anon_sym_BSLASHVref] = ACTIONS(5151), - [anon_sym_BSLASHautoref] = ACTIONS(5151), - [anon_sym_BSLASHpageref] = ACTIONS(5151), - [anon_sym_BSLASHcref] = ACTIONS(5151), - [anon_sym_BSLASHCref] = ACTIONS(5151), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5149), - [anon_sym_BSLASHnamecref] = ACTIONS(5151), - [anon_sym_BSLASHnameCref] = ACTIONS(5151), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5151), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5151), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5151), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5151), - [anon_sym_BSLASHlabelcref] = ACTIONS(5151), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5151), - [anon_sym_BSLASHcrefrange] = ACTIONS(5151), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5149), - [anon_sym_BSLASHnewlabel] = ACTIONS(5151), - [anon_sym_BSLASHnewcommand] = ACTIONS(5151), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5149), - [anon_sym_BSLASHdef] = ACTIONS(5151), - [anon_sym_BSLASHlet] = ACTIONS(5151), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5151), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5151), - [anon_sym_BSLASHgls] = ACTIONS(5151), - [anon_sym_BSLASHGls] = ACTIONS(5151), - [anon_sym_BSLASHGLS] = ACTIONS(5151), - [anon_sym_BSLASHglspl] = ACTIONS(5151), - [anon_sym_BSLASHGlspl] = ACTIONS(5151), - [anon_sym_BSLASHGLSpl] = ACTIONS(5151), - [anon_sym_BSLASHglsdisp] = ACTIONS(5151), - [anon_sym_BSLASHglslink] = ACTIONS(5151), - [anon_sym_BSLASHglstext] = ACTIONS(5151), - [anon_sym_BSLASHGlstext] = ACTIONS(5151), - [anon_sym_BSLASHGLStext] = ACTIONS(5151), - [anon_sym_BSLASHglsfirst] = ACTIONS(5151), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5151), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5151), - [anon_sym_BSLASHglsplural] = ACTIONS(5151), - [anon_sym_BSLASHGlsplural] = ACTIONS(5151), - [anon_sym_BSLASHGLSplural] = ACTIONS(5151), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHglsname] = ACTIONS(5151), - [anon_sym_BSLASHGlsname] = ACTIONS(5151), - [anon_sym_BSLASHGLSname] = ACTIONS(5151), - [anon_sym_BSLASHglssymbol] = ACTIONS(5151), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5151), - [anon_sym_BSLASHglsdesc] = ACTIONS(5151), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5151), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5151), - [anon_sym_BSLASHglsuseri] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5151), - [anon_sym_BSLASHglsuserii] = ACTIONS(5151), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5151), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5151), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5151), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5151), - [anon_sym_BSLASHglsuserv] = ACTIONS(5151), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5151), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5151), - [anon_sym_BSLASHglsuservi] = ACTIONS(5151), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5151), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5151), - [anon_sym_BSLASHnewacronym] = ACTIONS(5151), - [anon_sym_BSLASHacrshort] = ACTIONS(5151), - [anon_sym_BSLASHAcrshort] = ACTIONS(5151), - [anon_sym_BSLASHACRshort] = ACTIONS(5151), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5151), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5151), - [anon_sym_BSLASHacrlong] = ACTIONS(5151), - [anon_sym_BSLASHAcrlong] = ACTIONS(5151), - [anon_sym_BSLASHACRlong] = ACTIONS(5151), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5151), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5151), - [anon_sym_BSLASHacrfull] = ACTIONS(5151), - [anon_sym_BSLASHAcrfull] = ACTIONS(5151), - [anon_sym_BSLASHACRfull] = ACTIONS(5151), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5151), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5151), - [anon_sym_BSLASHacs] = ACTIONS(5151), - [anon_sym_BSLASHAcs] = ACTIONS(5151), - [anon_sym_BSLASHacsp] = ACTIONS(5151), - [anon_sym_BSLASHAcsp] = ACTIONS(5151), - [anon_sym_BSLASHacl] = ACTIONS(5151), - [anon_sym_BSLASHAcl] = ACTIONS(5151), - [anon_sym_BSLASHaclp] = ACTIONS(5151), - [anon_sym_BSLASHAclp] = ACTIONS(5151), - [anon_sym_BSLASHacf] = ACTIONS(5151), - [anon_sym_BSLASHAcf] = ACTIONS(5151), - [anon_sym_BSLASHacfp] = ACTIONS(5151), - [anon_sym_BSLASHAcfp] = ACTIONS(5151), - [anon_sym_BSLASHac] = ACTIONS(5151), - [anon_sym_BSLASHAc] = ACTIONS(5151), - [anon_sym_BSLASHacp] = ACTIONS(5151), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5151), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5151), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5151), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5151), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5151), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5151), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5151), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5151), - [anon_sym_BSLASHcolor] = ACTIONS(5151), - [anon_sym_BSLASHcolorbox] = ACTIONS(5151), - [anon_sym_BSLASHtextcolor] = ACTIONS(5151), - [anon_sym_BSLASHpagecolor] = ACTIONS(5151), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5151), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5151), - }, - [850] = { - [sym_command_name] = ACTIONS(5291), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5291), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_RPAREN] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_BSLASHpart] = ACTIONS(5291), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddpart] = ACTIONS(5291), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHchapter] = ACTIONS(5291), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddchap] = ACTIONS(5291), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsection] = ACTIONS(5291), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddsec] = ACTIONS(5291), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHparagraph] = ACTIONS(5291), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5291), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHitem] = ACTIONS(5291), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5289), - [sym_word] = ACTIONS(5291), - [sym_placeholder] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym__] = ACTIONS(5291), - [anon_sym_LT] = ACTIONS(5291), - [anon_sym_GT] = ACTIONS(5291), - [anon_sym_BANG] = ACTIONS(5291), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5291), - [anon_sym_SQUOTE] = ACTIONS(5291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5289), - [anon_sym_BSLASHbegin] = ACTIONS(5291), - [anon_sym_BSLASHusepackage] = ACTIONS(5291), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5291), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5291), - [anon_sym_BSLASHinclude] = ACTIONS(5291), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5291), - [anon_sym_BSLASHinput] = ACTIONS(5291), - [anon_sym_BSLASHsubfile] = ACTIONS(5291), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5291), - [anon_sym_BSLASHbibliography] = ACTIONS(5291), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5291), - [anon_sym_BSLASHincludesvg] = ACTIONS(5291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5291), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5291), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5291), - [anon_sym_BSLASHimport] = ACTIONS(5291), - [anon_sym_BSLASHsubimport] = ACTIONS(5291), - [anon_sym_BSLASHinputfrom] = ACTIONS(5291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5291), - [anon_sym_BSLASHincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHcaption] = ACTIONS(5291), - [anon_sym_BSLASHcite] = ACTIONS(5291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCite] = ACTIONS(5291), - [anon_sym_BSLASHnocite] = ACTIONS(5291), - [anon_sym_BSLASHcitet] = ACTIONS(5291), - [anon_sym_BSLASHcitep] = ACTIONS(5291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor] = ACTIONS(5291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle] = ACTIONS(5291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteyear] = ACTIONS(5291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitedate] = ACTIONS(5291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteurl] = ACTIONS(5291), - [anon_sym_BSLASHfullcite] = ACTIONS(5291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5291), - [anon_sym_BSLASHcitealt] = ACTIONS(5291), - [anon_sym_BSLASHcitealp] = ACTIONS(5291), - [anon_sym_BSLASHcitetext] = ACTIONS(5291), - [anon_sym_BSLASHparencite] = ACTIONS(5291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHParencite] = ACTIONS(5291), - [anon_sym_BSLASHfootcite] = ACTIONS(5291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5291), - [anon_sym_BSLASHtextcite] = ACTIONS(5291), - [anon_sym_BSLASHTextcite] = ACTIONS(5291), - [anon_sym_BSLASHsmartcite] = ACTIONS(5291), - [anon_sym_BSLASHSmartcite] = ACTIONS(5291), - [anon_sym_BSLASHsupercite] = ACTIONS(5291), - [anon_sym_BSLASHautocite] = ACTIONS(5291), - [anon_sym_BSLASHAutocite] = ACTIONS(5291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHvolcite] = ACTIONS(5291), - [anon_sym_BSLASHVolcite] = ACTIONS(5291), - [anon_sym_BSLASHpvolcite] = ACTIONS(5291), - [anon_sym_BSLASHPvolcite] = ACTIONS(5291), - [anon_sym_BSLASHfvolcite] = ACTIONS(5291), - [anon_sym_BSLASHftvolcite] = ACTIONS(5291), - [anon_sym_BSLASHsvolcite] = ACTIONS(5291), - [anon_sym_BSLASHSvolcite] = ACTIONS(5291), - [anon_sym_BSLASHtvolcite] = ACTIONS(5291), - [anon_sym_BSLASHTvolcite] = ACTIONS(5291), - [anon_sym_BSLASHavolcite] = ACTIONS(5291), - [anon_sym_BSLASHAvolcite] = ACTIONS(5291), - [anon_sym_BSLASHnotecite] = ACTIONS(5291), - [anon_sym_BSLASHNotecite] = ACTIONS(5291), - [anon_sym_BSLASHpnotecite] = ACTIONS(5291), - [anon_sym_BSLASHPnotecite] = ACTIONS(5291), - [anon_sym_BSLASHfnotecite] = ACTIONS(5291), - [anon_sym_BSLASHlabel] = ACTIONS(5291), - [anon_sym_BSLASHref] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5291), - [anon_sym_BSLASHvref] = ACTIONS(5291), - [anon_sym_BSLASHVref] = ACTIONS(5291), - [anon_sym_BSLASHautoref] = ACTIONS(5291), - [anon_sym_BSLASHpageref] = ACTIONS(5291), - [anon_sym_BSLASHcref] = ACTIONS(5291), - [anon_sym_BSLASHCref] = ACTIONS(5291), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnameCref] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHlabelcref] = ACTIONS(5291), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange] = ACTIONS(5291), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnewlabel] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5291), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5291), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5291), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdef] = ACTIONS(5291), - [anon_sym_BSLASHlet] = ACTIONS(5291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5291), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5291), - [anon_sym_BSLASHgls] = ACTIONS(5291), - [anon_sym_BSLASHGls] = ACTIONS(5291), - [anon_sym_BSLASHGLS] = ACTIONS(5291), - [anon_sym_BSLASHglspl] = ACTIONS(5291), - [anon_sym_BSLASHGlspl] = ACTIONS(5291), - [anon_sym_BSLASHGLSpl] = ACTIONS(5291), - [anon_sym_BSLASHglsdisp] = ACTIONS(5291), - [anon_sym_BSLASHglslink] = ACTIONS(5291), - [anon_sym_BSLASHglstext] = ACTIONS(5291), - [anon_sym_BSLASHGlstext] = ACTIONS(5291), - [anon_sym_BSLASHGLStext] = ACTIONS(5291), - [anon_sym_BSLASHglsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5291), - [anon_sym_BSLASHglsplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSplural] = ACTIONS(5291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHglsname] = ACTIONS(5291), - [anon_sym_BSLASHGlsname] = ACTIONS(5291), - [anon_sym_BSLASHGLSname] = ACTIONS(5291), - [anon_sym_BSLASHglssymbol] = ACTIONS(5291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5291), - [anon_sym_BSLASHglsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5291), - [anon_sym_BSLASHglsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5291), - [anon_sym_BSLASHglsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5291), - [anon_sym_BSLASHglsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5291), - [anon_sym_BSLASHglsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5291), - [anon_sym_BSLASHnewacronym] = ACTIONS(5291), - [anon_sym_BSLASHacrshort] = ACTIONS(5291), - [anon_sym_BSLASHAcrshort] = ACTIONS(5291), - [anon_sym_BSLASHACRshort] = ACTIONS(5291), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5291), - [anon_sym_BSLASHacrlong] = ACTIONS(5291), - [anon_sym_BSLASHAcrlong] = ACTIONS(5291), - [anon_sym_BSLASHACRlong] = ACTIONS(5291), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5291), - [anon_sym_BSLASHacrfull] = ACTIONS(5291), - [anon_sym_BSLASHAcrfull] = ACTIONS(5291), - [anon_sym_BSLASHACRfull] = ACTIONS(5291), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5291), - [anon_sym_BSLASHacs] = ACTIONS(5291), - [anon_sym_BSLASHAcs] = ACTIONS(5291), - [anon_sym_BSLASHacsp] = ACTIONS(5291), - [anon_sym_BSLASHAcsp] = ACTIONS(5291), - [anon_sym_BSLASHacl] = ACTIONS(5291), - [anon_sym_BSLASHAcl] = ACTIONS(5291), - [anon_sym_BSLASHaclp] = ACTIONS(5291), - [anon_sym_BSLASHAclp] = ACTIONS(5291), - [anon_sym_BSLASHacf] = ACTIONS(5291), - [anon_sym_BSLASHAcf] = ACTIONS(5291), - [anon_sym_BSLASHacfp] = ACTIONS(5291), - [anon_sym_BSLASHAcfp] = ACTIONS(5291), - [anon_sym_BSLASHac] = ACTIONS(5291), - [anon_sym_BSLASHAc] = ACTIONS(5291), - [anon_sym_BSLASHacp] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5291), - [anon_sym_BSLASHcolor] = ACTIONS(5291), - [anon_sym_BSLASHcolorbox] = ACTIONS(5291), - [anon_sym_BSLASHtextcolor] = ACTIONS(5291), - [anon_sym_BSLASHpagecolor] = ACTIONS(5291), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5291), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5291), - }, - [851] = { - [sym_command_name] = ACTIONS(5295), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5295), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_RPAREN] = ACTIONS(5293), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5293), - [anon_sym_COMMA] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_BSLASHpart] = ACTIONS(5295), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddpart] = ACTIONS(5295), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHchapter] = ACTIONS(5295), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddchap] = ACTIONS(5295), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsection] = ACTIONS(5295), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddsec] = ACTIONS(5295), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHparagraph] = ACTIONS(5295), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHitem] = ACTIONS(5295), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(5293), - [sym_word] = ACTIONS(5295), - [sym_placeholder] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(5295), - [anon_sym_STAR] = ACTIONS(5295), - [anon_sym_SLASH] = ACTIONS(5295), - [anon_sym_CARET] = ACTIONS(5295), - [anon_sym__] = ACTIONS(5295), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(5295), - [anon_sym_BANG] = ACTIONS(5295), - [anon_sym_PIPE] = ACTIONS(5295), - [anon_sym_COLON] = ACTIONS(5295), - [anon_sym_SQUOTE] = ACTIONS(5295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5293), - [anon_sym_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5293), - [anon_sym_BSLASHbegin] = ACTIONS(5295), - [anon_sym_BSLASHusepackage] = ACTIONS(5295), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5295), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5295), - [anon_sym_BSLASHinclude] = ACTIONS(5295), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5295), - [anon_sym_BSLASHinput] = ACTIONS(5295), - [anon_sym_BSLASHsubfile] = ACTIONS(5295), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5295), - [anon_sym_BSLASHbibliography] = ACTIONS(5295), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5295), - [anon_sym_BSLASHincludesvg] = ACTIONS(5295), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5295), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5295), - [anon_sym_BSLASHimport] = ACTIONS(5295), - [anon_sym_BSLASHsubimport] = ACTIONS(5295), - [anon_sym_BSLASHinputfrom] = ACTIONS(5295), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5295), - [anon_sym_BSLASHincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHcaption] = ACTIONS(5295), - [anon_sym_BSLASHcite] = ACTIONS(5295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCite] = ACTIONS(5295), - [anon_sym_BSLASHnocite] = ACTIONS(5295), - [anon_sym_BSLASHcitet] = ACTIONS(5295), - [anon_sym_BSLASHcitep] = ACTIONS(5295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteauthor] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitetitle] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteyear] = ACTIONS(5295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitedate] = ACTIONS(5295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteurl] = ACTIONS(5295), - [anon_sym_BSLASHfullcite] = ACTIONS(5295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5295), - [anon_sym_BSLASHcitealt] = ACTIONS(5295), - [anon_sym_BSLASHcitealp] = ACTIONS(5295), - [anon_sym_BSLASHcitetext] = ACTIONS(5295), - [anon_sym_BSLASHparencite] = ACTIONS(5295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHParencite] = ACTIONS(5295), - [anon_sym_BSLASHfootcite] = ACTIONS(5295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5295), - [anon_sym_BSLASHtextcite] = ACTIONS(5295), - [anon_sym_BSLASHTextcite] = ACTIONS(5295), - [anon_sym_BSLASHsmartcite] = ACTIONS(5295), - [anon_sym_BSLASHSmartcite] = ACTIONS(5295), - [anon_sym_BSLASHsupercite] = ACTIONS(5295), - [anon_sym_BSLASHautocite] = ACTIONS(5295), - [anon_sym_BSLASHAutocite] = ACTIONS(5295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHvolcite] = ACTIONS(5295), - [anon_sym_BSLASHVolcite] = ACTIONS(5295), - [anon_sym_BSLASHpvolcite] = ACTIONS(5295), - [anon_sym_BSLASHPvolcite] = ACTIONS(5295), - [anon_sym_BSLASHfvolcite] = ACTIONS(5295), - [anon_sym_BSLASHftvolcite] = ACTIONS(5295), - [anon_sym_BSLASHsvolcite] = ACTIONS(5295), - [anon_sym_BSLASHSvolcite] = ACTIONS(5295), - [anon_sym_BSLASHtvolcite] = ACTIONS(5295), - [anon_sym_BSLASHTvolcite] = ACTIONS(5295), - [anon_sym_BSLASHavolcite] = ACTIONS(5295), - [anon_sym_BSLASHAvolcite] = ACTIONS(5295), - [anon_sym_BSLASHnotecite] = ACTIONS(5295), - [anon_sym_BSLASHNotecite] = ACTIONS(5295), - [anon_sym_BSLASHpnotecite] = ACTIONS(5295), - [anon_sym_BSLASHPnotecite] = ACTIONS(5295), - [anon_sym_BSLASHfnotecite] = ACTIONS(5295), - [anon_sym_BSLASHlabel] = ACTIONS(5295), - [anon_sym_BSLASHref] = ACTIONS(5295), - [anon_sym_BSLASHeqref] = ACTIONS(5295), - [anon_sym_BSLASHvref] = ACTIONS(5295), - [anon_sym_BSLASHVref] = ACTIONS(5295), - [anon_sym_BSLASHautoref] = ACTIONS(5295), - [anon_sym_BSLASHpageref] = ACTIONS(5295), - [anon_sym_BSLASHcref] = ACTIONS(5295), - [anon_sym_BSLASHCref] = ACTIONS(5295), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnameCref] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHlabelcref] = ACTIONS(5295), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCrefrange] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnewlabel] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdef] = ACTIONS(5295), - [anon_sym_BSLASHlet] = ACTIONS(5295), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5295), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5295), - [anon_sym_BSLASHgls] = ACTIONS(5295), - [anon_sym_BSLASHGls] = ACTIONS(5295), - [anon_sym_BSLASHGLS] = ACTIONS(5295), - [anon_sym_BSLASHglspl] = ACTIONS(5295), - [anon_sym_BSLASHGlspl] = ACTIONS(5295), - [anon_sym_BSLASHGLSpl] = ACTIONS(5295), - [anon_sym_BSLASHglsdisp] = ACTIONS(5295), - [anon_sym_BSLASHglslink] = ACTIONS(5295), - [anon_sym_BSLASHglstext] = ACTIONS(5295), - [anon_sym_BSLASHGlstext] = ACTIONS(5295), - [anon_sym_BSLASHGLStext] = ACTIONS(5295), - [anon_sym_BSLASHglsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5295), - [anon_sym_BSLASHglsplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSplural] = ACTIONS(5295), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHglsname] = ACTIONS(5295), - [anon_sym_BSLASHGlsname] = ACTIONS(5295), - [anon_sym_BSLASHGLSname] = ACTIONS(5295), - [anon_sym_BSLASHglssymbol] = ACTIONS(5295), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5295), - [anon_sym_BSLASHglsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5295), - [anon_sym_BSLASHglsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5295), - [anon_sym_BSLASHglsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5295), - [anon_sym_BSLASHglsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5295), - [anon_sym_BSLASHglsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5295), - [anon_sym_BSLASHnewacronym] = ACTIONS(5295), - [anon_sym_BSLASHacrshort] = ACTIONS(5295), - [anon_sym_BSLASHAcrshort] = ACTIONS(5295), - [anon_sym_BSLASHACRshort] = ACTIONS(5295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5295), - [anon_sym_BSLASHacrlong] = ACTIONS(5295), - [anon_sym_BSLASHAcrlong] = ACTIONS(5295), - [anon_sym_BSLASHACRlong] = ACTIONS(5295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5295), - [anon_sym_BSLASHacrfull] = ACTIONS(5295), - [anon_sym_BSLASHAcrfull] = ACTIONS(5295), - [anon_sym_BSLASHACRfull] = ACTIONS(5295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5295), - [anon_sym_BSLASHacs] = ACTIONS(5295), - [anon_sym_BSLASHAcs] = ACTIONS(5295), - [anon_sym_BSLASHacsp] = ACTIONS(5295), - [anon_sym_BSLASHAcsp] = ACTIONS(5295), - [anon_sym_BSLASHacl] = ACTIONS(5295), - [anon_sym_BSLASHAcl] = ACTIONS(5295), - [anon_sym_BSLASHaclp] = ACTIONS(5295), - [anon_sym_BSLASHAclp] = ACTIONS(5295), - [anon_sym_BSLASHacf] = ACTIONS(5295), - [anon_sym_BSLASHAcf] = ACTIONS(5295), - [anon_sym_BSLASHacfp] = ACTIONS(5295), - [anon_sym_BSLASHAcfp] = ACTIONS(5295), - [anon_sym_BSLASHac] = ACTIONS(5295), - [anon_sym_BSLASHAc] = ACTIONS(5295), - [anon_sym_BSLASHacp] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5295), - [anon_sym_BSLASHcolor] = ACTIONS(5295), - [anon_sym_BSLASHcolorbox] = ACTIONS(5295), - [anon_sym_BSLASHtextcolor] = ACTIONS(5295), - [anon_sym_BSLASHpagecolor] = ACTIONS(5295), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5295), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5295), - }, - [852] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_BSLASHpart] = ACTIONS(5299), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddpart] = ACTIONS(5299), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHchapter] = ACTIONS(5299), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddchap] = ACTIONS(5299), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsection] = ACTIONS(5299), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddsec] = ACTIONS(5299), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHparagraph] = ACTIONS(5299), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHitem] = ACTIONS(5299), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASHbegin] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), - }, - [853] = { - [sym_command_name] = ACTIONS(5305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_BSLASHpart] = ACTIONS(5305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddpart] = ACTIONS(5305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHchapter] = ACTIONS(5305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddchap] = ACTIONS(5305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsection] = ACTIONS(5305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddsec] = ACTIONS(5305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHparagraph] = ACTIONS(5305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHitem] = ACTIONS(5305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASHbegin] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), - }, - [854] = { - [sym_command_name] = ACTIONS(5321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5321), - [anon_sym_LPAREN] = ACTIONS(5319), - [anon_sym_RPAREN] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(5319), - [anon_sym_RBRACK] = ACTIONS(5319), - [anon_sym_COMMA] = ACTIONS(5319), - [anon_sym_EQ] = ACTIONS(5319), - [anon_sym_BSLASHpart] = ACTIONS(5321), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddpart] = ACTIONS(5321), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5319), - [anon_sym_BSLASHchapter] = ACTIONS(5321), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddchap] = ACTIONS(5321), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsection] = ACTIONS(5321), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddsec] = ACTIONS(5321), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubsection] = ACTIONS(5321), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5321), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHparagraph] = ACTIONS(5321), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5321), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5319), - [anon_sym_BSLASHitem] = ACTIONS(5321), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5319), - [anon_sym_LBRACE] = ACTIONS(5319), - [sym_word] = ACTIONS(5321), - [sym_placeholder] = ACTIONS(5319), - [anon_sym_PLUS] = ACTIONS(5321), - [anon_sym_DASH] = ACTIONS(5321), - [anon_sym_STAR] = ACTIONS(5321), - [anon_sym_SLASH] = ACTIONS(5321), - [anon_sym_CARET] = ACTIONS(5321), - [anon_sym__] = ACTIONS(5321), - [anon_sym_LT] = ACTIONS(5321), - [anon_sym_GT] = ACTIONS(5321), - [anon_sym_BANG] = ACTIONS(5321), - [anon_sym_PIPE] = ACTIONS(5321), - [anon_sym_COLON] = ACTIONS(5321), - [anon_sym_SQUOTE] = ACTIONS(5321), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5319), - [anon_sym_DOLLAR] = ACTIONS(5321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5319), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5319), - [anon_sym_BSLASHbegin] = ACTIONS(5321), - [anon_sym_BSLASHusepackage] = ACTIONS(5321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5321), - [anon_sym_BSLASHinclude] = ACTIONS(5321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5321), - [anon_sym_BSLASHinput] = ACTIONS(5321), - [anon_sym_BSLASHsubfile] = ACTIONS(5321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5321), - [anon_sym_BSLASHbibliography] = ACTIONS(5321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5321), - [anon_sym_BSLASHincludesvg] = ACTIONS(5321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5321), - [anon_sym_BSLASHimport] = ACTIONS(5321), - [anon_sym_BSLASHsubimport] = ACTIONS(5321), - [anon_sym_BSLASHinputfrom] = ACTIONS(5321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5321), - [anon_sym_BSLASHincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHcaption] = ACTIONS(5321), - [anon_sym_BSLASHcite] = ACTIONS(5321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCite] = ACTIONS(5321), - [anon_sym_BSLASHnocite] = ACTIONS(5321), - [anon_sym_BSLASHcitet] = ACTIONS(5321), - [anon_sym_BSLASHcitep] = ACTIONS(5321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteyear] = ACTIONS(5321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitedate] = ACTIONS(5321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteurl] = ACTIONS(5321), - [anon_sym_BSLASHfullcite] = ACTIONS(5321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5321), - [anon_sym_BSLASHcitealt] = ACTIONS(5321), - [anon_sym_BSLASHcitealp] = ACTIONS(5321), - [anon_sym_BSLASHcitetext] = ACTIONS(5321), - [anon_sym_BSLASHparencite] = ACTIONS(5321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHParencite] = ACTIONS(5321), - [anon_sym_BSLASHfootcite] = ACTIONS(5321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5321), - [anon_sym_BSLASHtextcite] = ACTIONS(5321), - [anon_sym_BSLASHTextcite] = ACTIONS(5321), - [anon_sym_BSLASHsmartcite] = ACTIONS(5321), - [anon_sym_BSLASHSmartcite] = ACTIONS(5321), - [anon_sym_BSLASHsupercite] = ACTIONS(5321), - [anon_sym_BSLASHautocite] = ACTIONS(5321), - [anon_sym_BSLASHAutocite] = ACTIONS(5321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHvolcite] = ACTIONS(5321), - [anon_sym_BSLASHVolcite] = ACTIONS(5321), - [anon_sym_BSLASHpvolcite] = ACTIONS(5321), - [anon_sym_BSLASHPvolcite] = ACTIONS(5321), - [anon_sym_BSLASHfvolcite] = ACTIONS(5321), - [anon_sym_BSLASHftvolcite] = ACTIONS(5321), - [anon_sym_BSLASHsvolcite] = ACTIONS(5321), - [anon_sym_BSLASHSvolcite] = ACTIONS(5321), - [anon_sym_BSLASHtvolcite] = ACTIONS(5321), - [anon_sym_BSLASHTvolcite] = ACTIONS(5321), - [anon_sym_BSLASHavolcite] = ACTIONS(5321), - [anon_sym_BSLASHAvolcite] = ACTIONS(5321), - [anon_sym_BSLASHnotecite] = ACTIONS(5321), - [anon_sym_BSLASHNotecite] = ACTIONS(5321), - [anon_sym_BSLASHpnotecite] = ACTIONS(5321), - [anon_sym_BSLASHPnotecite] = ACTIONS(5321), - [anon_sym_BSLASHfnotecite] = ACTIONS(5321), - [anon_sym_BSLASHlabel] = ACTIONS(5321), - [anon_sym_BSLASHref] = ACTIONS(5321), - [anon_sym_BSLASHeqref] = ACTIONS(5321), - [anon_sym_BSLASHvref] = ACTIONS(5321), - [anon_sym_BSLASHVref] = ACTIONS(5321), - [anon_sym_BSLASHautoref] = ACTIONS(5321), - [anon_sym_BSLASHpageref] = ACTIONS(5321), - [anon_sym_BSLASHcref] = ACTIONS(5321), - [anon_sym_BSLASHCref] = ACTIONS(5321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnameCref] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHlabelcref] = ACTIONS(5321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnewlabel] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5319), - [anon_sym_BSLASHdef] = ACTIONS(5321), - [anon_sym_BSLASHlet] = ACTIONS(5321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5321), - [anon_sym_BSLASHgls] = ACTIONS(5321), - [anon_sym_BSLASHGls] = ACTIONS(5321), - [anon_sym_BSLASHGLS] = ACTIONS(5321), - [anon_sym_BSLASHglspl] = ACTIONS(5321), - [anon_sym_BSLASHGlspl] = ACTIONS(5321), - [anon_sym_BSLASHGLSpl] = ACTIONS(5321), - [anon_sym_BSLASHglsdisp] = ACTIONS(5321), - [anon_sym_BSLASHglslink] = ACTIONS(5321), - [anon_sym_BSLASHglstext] = ACTIONS(5321), - [anon_sym_BSLASHGlstext] = ACTIONS(5321), - [anon_sym_BSLASHGLStext] = ACTIONS(5321), - [anon_sym_BSLASHglsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5321), - [anon_sym_BSLASHglsplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSplural] = ACTIONS(5321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHglsname] = ACTIONS(5321), - [anon_sym_BSLASHGlsname] = ACTIONS(5321), - [anon_sym_BSLASHGLSname] = ACTIONS(5321), - [anon_sym_BSLASHglssymbol] = ACTIONS(5321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5321), - [anon_sym_BSLASHglsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5321), - [anon_sym_BSLASHglsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5321), - [anon_sym_BSLASHglsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5321), - [anon_sym_BSLASHglsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5321), - [anon_sym_BSLASHglsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5321), - [anon_sym_BSLASHnewacronym] = ACTIONS(5321), - [anon_sym_BSLASHacrshort] = ACTIONS(5321), - [anon_sym_BSLASHAcrshort] = ACTIONS(5321), - [anon_sym_BSLASHACRshort] = ACTIONS(5321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5321), - [anon_sym_BSLASHacrlong] = ACTIONS(5321), - [anon_sym_BSLASHAcrlong] = ACTIONS(5321), - [anon_sym_BSLASHACRlong] = ACTIONS(5321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5321), - [anon_sym_BSLASHacrfull] = ACTIONS(5321), - [anon_sym_BSLASHAcrfull] = ACTIONS(5321), - [anon_sym_BSLASHACRfull] = ACTIONS(5321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5321), - [anon_sym_BSLASHacs] = ACTIONS(5321), - [anon_sym_BSLASHAcs] = ACTIONS(5321), - [anon_sym_BSLASHacsp] = ACTIONS(5321), - [anon_sym_BSLASHAcsp] = ACTIONS(5321), - [anon_sym_BSLASHacl] = ACTIONS(5321), - [anon_sym_BSLASHAcl] = ACTIONS(5321), - [anon_sym_BSLASHaclp] = ACTIONS(5321), - [anon_sym_BSLASHAclp] = ACTIONS(5321), - [anon_sym_BSLASHacf] = ACTIONS(5321), - [anon_sym_BSLASHAcf] = ACTIONS(5321), - [anon_sym_BSLASHacfp] = ACTIONS(5321), - [anon_sym_BSLASHAcfp] = ACTIONS(5321), - [anon_sym_BSLASHac] = ACTIONS(5321), - [anon_sym_BSLASHAc] = ACTIONS(5321), - [anon_sym_BSLASHacp] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5321), - [anon_sym_BSLASHcolor] = ACTIONS(5321), - [anon_sym_BSLASHcolorbox] = ACTIONS(5321), - [anon_sym_BSLASHtextcolor] = ACTIONS(5321), - [anon_sym_BSLASHpagecolor] = ACTIONS(5321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5321), - }, - [855] = { - [sym_command_name] = ACTIONS(5325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5325), - [anon_sym_LPAREN] = ACTIONS(5323), - [anon_sym_RPAREN] = ACTIONS(5323), - [anon_sym_LBRACK] = ACTIONS(5323), - [anon_sym_RBRACK] = ACTIONS(5323), - [anon_sym_COMMA] = ACTIONS(5323), - [anon_sym_EQ] = ACTIONS(5323), - [anon_sym_BSLASHpart] = ACTIONS(5325), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddpart] = ACTIONS(5325), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5323), - [anon_sym_BSLASHchapter] = ACTIONS(5325), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddchap] = ACTIONS(5325), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsection] = ACTIONS(5325), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddsec] = ACTIONS(5325), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubsection] = ACTIONS(5325), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5325), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHparagraph] = ACTIONS(5325), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5325), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5323), - [anon_sym_BSLASHitem] = ACTIONS(5325), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5323), - [anon_sym_LBRACE] = ACTIONS(5323), - [sym_word] = ACTIONS(5325), - [sym_placeholder] = ACTIONS(5323), - [anon_sym_PLUS] = ACTIONS(5325), - [anon_sym_DASH] = ACTIONS(5325), - [anon_sym_STAR] = ACTIONS(5325), - [anon_sym_SLASH] = ACTIONS(5325), - [anon_sym_CARET] = ACTIONS(5325), - [anon_sym__] = ACTIONS(5325), - [anon_sym_LT] = ACTIONS(5325), - [anon_sym_GT] = ACTIONS(5325), - [anon_sym_BANG] = ACTIONS(5325), - [anon_sym_PIPE] = ACTIONS(5325), - [anon_sym_COLON] = ACTIONS(5325), - [anon_sym_SQUOTE] = ACTIONS(5325), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5323), - [anon_sym_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5323), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5323), - [anon_sym_BSLASHbegin] = ACTIONS(5325), - [anon_sym_BSLASHusepackage] = ACTIONS(5325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), - [anon_sym_BSLASHinclude] = ACTIONS(5325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5325), - [anon_sym_BSLASHinput] = ACTIONS(5325), - [anon_sym_BSLASHsubfile] = ACTIONS(5325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5325), - [anon_sym_BSLASHbibliography] = ACTIONS(5325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5325), - [anon_sym_BSLASHincludesvg] = ACTIONS(5325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5325), - [anon_sym_BSLASHimport] = ACTIONS(5325), - [anon_sym_BSLASHsubimport] = ACTIONS(5325), - [anon_sym_BSLASHinputfrom] = ACTIONS(5325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5325), - [anon_sym_BSLASHincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHcaption] = ACTIONS(5325), - [anon_sym_BSLASHcite] = ACTIONS(5325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCite] = ACTIONS(5325), - [anon_sym_BSLASHnocite] = ACTIONS(5325), - [anon_sym_BSLASHcitet] = ACTIONS(5325), - [anon_sym_BSLASHcitep] = ACTIONS(5325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteyear] = ACTIONS(5325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitedate] = ACTIONS(5325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteurl] = ACTIONS(5325), - [anon_sym_BSLASHfullcite] = ACTIONS(5325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5325), - [anon_sym_BSLASHcitealt] = ACTIONS(5325), - [anon_sym_BSLASHcitealp] = ACTIONS(5325), - [anon_sym_BSLASHcitetext] = ACTIONS(5325), - [anon_sym_BSLASHparencite] = ACTIONS(5325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHParencite] = ACTIONS(5325), - [anon_sym_BSLASHfootcite] = ACTIONS(5325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5325), - [anon_sym_BSLASHtextcite] = ACTIONS(5325), - [anon_sym_BSLASHTextcite] = ACTIONS(5325), - [anon_sym_BSLASHsmartcite] = ACTIONS(5325), - [anon_sym_BSLASHSmartcite] = ACTIONS(5325), - [anon_sym_BSLASHsupercite] = ACTIONS(5325), - [anon_sym_BSLASHautocite] = ACTIONS(5325), - [anon_sym_BSLASHAutocite] = ACTIONS(5325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHvolcite] = ACTIONS(5325), - [anon_sym_BSLASHVolcite] = ACTIONS(5325), - [anon_sym_BSLASHpvolcite] = ACTIONS(5325), - [anon_sym_BSLASHPvolcite] = ACTIONS(5325), - [anon_sym_BSLASHfvolcite] = ACTIONS(5325), - [anon_sym_BSLASHftvolcite] = ACTIONS(5325), - [anon_sym_BSLASHsvolcite] = ACTIONS(5325), - [anon_sym_BSLASHSvolcite] = ACTIONS(5325), - [anon_sym_BSLASHtvolcite] = ACTIONS(5325), - [anon_sym_BSLASHTvolcite] = ACTIONS(5325), - [anon_sym_BSLASHavolcite] = ACTIONS(5325), - [anon_sym_BSLASHAvolcite] = ACTIONS(5325), - [anon_sym_BSLASHnotecite] = ACTIONS(5325), - [anon_sym_BSLASHNotecite] = ACTIONS(5325), - [anon_sym_BSLASHpnotecite] = ACTIONS(5325), - [anon_sym_BSLASHPnotecite] = ACTIONS(5325), - [anon_sym_BSLASHfnotecite] = ACTIONS(5325), - [anon_sym_BSLASHlabel] = ACTIONS(5325), - [anon_sym_BSLASHref] = ACTIONS(5325), - [anon_sym_BSLASHeqref] = ACTIONS(5325), - [anon_sym_BSLASHvref] = ACTIONS(5325), - [anon_sym_BSLASHVref] = ACTIONS(5325), - [anon_sym_BSLASHautoref] = ACTIONS(5325), - [anon_sym_BSLASHpageref] = ACTIONS(5325), - [anon_sym_BSLASHcref] = ACTIONS(5325), - [anon_sym_BSLASHCref] = ACTIONS(5325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnameCref] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHlabelcref] = ACTIONS(5325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnewlabel] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5323), - [anon_sym_BSLASHdef] = ACTIONS(5325), - [anon_sym_BSLASHlet] = ACTIONS(5325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5325), - [anon_sym_BSLASHgls] = ACTIONS(5325), - [anon_sym_BSLASHGls] = ACTIONS(5325), - [anon_sym_BSLASHGLS] = ACTIONS(5325), - [anon_sym_BSLASHglspl] = ACTIONS(5325), - [anon_sym_BSLASHGlspl] = ACTIONS(5325), - [anon_sym_BSLASHGLSpl] = ACTIONS(5325), - [anon_sym_BSLASHglsdisp] = ACTIONS(5325), - [anon_sym_BSLASHglslink] = ACTIONS(5325), - [anon_sym_BSLASHglstext] = ACTIONS(5325), - [anon_sym_BSLASHGlstext] = ACTIONS(5325), - [anon_sym_BSLASHGLStext] = ACTIONS(5325), - [anon_sym_BSLASHglsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5325), - [anon_sym_BSLASHglsplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSplural] = ACTIONS(5325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHglsname] = ACTIONS(5325), - [anon_sym_BSLASHGlsname] = ACTIONS(5325), - [anon_sym_BSLASHGLSname] = ACTIONS(5325), - [anon_sym_BSLASHglssymbol] = ACTIONS(5325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5325), - [anon_sym_BSLASHglsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5325), - [anon_sym_BSLASHglsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5325), - [anon_sym_BSLASHglsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5325), - [anon_sym_BSLASHglsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5325), - [anon_sym_BSLASHglsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5325), - [anon_sym_BSLASHnewacronym] = ACTIONS(5325), - [anon_sym_BSLASHacrshort] = ACTIONS(5325), - [anon_sym_BSLASHAcrshort] = ACTIONS(5325), - [anon_sym_BSLASHACRshort] = ACTIONS(5325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5325), - [anon_sym_BSLASHacrlong] = ACTIONS(5325), - [anon_sym_BSLASHAcrlong] = ACTIONS(5325), - [anon_sym_BSLASHACRlong] = ACTIONS(5325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5325), - [anon_sym_BSLASHacrfull] = ACTIONS(5325), - [anon_sym_BSLASHAcrfull] = ACTIONS(5325), - [anon_sym_BSLASHACRfull] = ACTIONS(5325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5325), - [anon_sym_BSLASHacs] = ACTIONS(5325), - [anon_sym_BSLASHAcs] = ACTIONS(5325), - [anon_sym_BSLASHacsp] = ACTIONS(5325), - [anon_sym_BSLASHAcsp] = ACTIONS(5325), - [anon_sym_BSLASHacl] = ACTIONS(5325), - [anon_sym_BSLASHAcl] = ACTIONS(5325), - [anon_sym_BSLASHaclp] = ACTIONS(5325), - [anon_sym_BSLASHAclp] = ACTIONS(5325), - [anon_sym_BSLASHacf] = ACTIONS(5325), - [anon_sym_BSLASHAcf] = ACTIONS(5325), - [anon_sym_BSLASHacfp] = ACTIONS(5325), - [anon_sym_BSLASHAcfp] = ACTIONS(5325), - [anon_sym_BSLASHac] = ACTIONS(5325), - [anon_sym_BSLASHAc] = ACTIONS(5325), - [anon_sym_BSLASHacp] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5325), - [anon_sym_BSLASHcolor] = ACTIONS(5325), - [anon_sym_BSLASHcolorbox] = ACTIONS(5325), - [anon_sym_BSLASHtextcolor] = ACTIONS(5325), - [anon_sym_BSLASHpagecolor] = ACTIONS(5325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5325), - }, - [856] = { - [sym_command_name] = ACTIONS(5329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5329), - [anon_sym_LPAREN] = ACTIONS(5327), - [anon_sym_RPAREN] = ACTIONS(5327), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_RBRACK] = ACTIONS(5327), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5327), - [anon_sym_BSLASHpart] = ACTIONS(5329), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddpart] = ACTIONS(5329), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5327), - [anon_sym_BSLASHchapter] = ACTIONS(5329), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddchap] = ACTIONS(5329), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsection] = ACTIONS(5329), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddsec] = ACTIONS(5329), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubsection] = ACTIONS(5329), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5329), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHparagraph] = ACTIONS(5329), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5329), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5327), - [anon_sym_BSLASHitem] = ACTIONS(5329), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5327), - [anon_sym_LBRACE] = ACTIONS(5327), - [sym_word] = ACTIONS(5329), - [sym_placeholder] = ACTIONS(5327), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_STAR] = ACTIONS(5329), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_CARET] = ACTIONS(5329), - [anon_sym__] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_BANG] = ACTIONS(5329), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_COLON] = ACTIONS(5329), - [anon_sym_SQUOTE] = ACTIONS(5329), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5327), - [anon_sym_DOLLAR] = ACTIONS(5329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5327), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5327), - [anon_sym_BSLASHbegin] = ACTIONS(5329), - [anon_sym_BSLASHusepackage] = ACTIONS(5329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5329), - [anon_sym_BSLASHinclude] = ACTIONS(5329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5329), - [anon_sym_BSLASHinput] = ACTIONS(5329), - [anon_sym_BSLASHsubfile] = ACTIONS(5329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5329), - [anon_sym_BSLASHbibliography] = ACTIONS(5329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5329), - [anon_sym_BSLASHincludesvg] = ACTIONS(5329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5329), - [anon_sym_BSLASHimport] = ACTIONS(5329), - [anon_sym_BSLASHsubimport] = ACTIONS(5329), - [anon_sym_BSLASHinputfrom] = ACTIONS(5329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5329), - [anon_sym_BSLASHincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHcaption] = ACTIONS(5329), - [anon_sym_BSLASHcite] = ACTIONS(5329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCite] = ACTIONS(5329), - [anon_sym_BSLASHnocite] = ACTIONS(5329), - [anon_sym_BSLASHcitet] = ACTIONS(5329), - [anon_sym_BSLASHcitep] = ACTIONS(5329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor] = ACTIONS(5329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle] = ACTIONS(5329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteyear] = ACTIONS(5329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitedate] = ACTIONS(5329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteurl] = ACTIONS(5329), - [anon_sym_BSLASHfullcite] = ACTIONS(5329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5329), - [anon_sym_BSLASHcitealt] = ACTIONS(5329), - [anon_sym_BSLASHcitealp] = ACTIONS(5329), - [anon_sym_BSLASHcitetext] = ACTIONS(5329), - [anon_sym_BSLASHparencite] = ACTIONS(5329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHParencite] = ACTIONS(5329), - [anon_sym_BSLASHfootcite] = ACTIONS(5329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5329), - [anon_sym_BSLASHtextcite] = ACTIONS(5329), - [anon_sym_BSLASHTextcite] = ACTIONS(5329), - [anon_sym_BSLASHsmartcite] = ACTIONS(5329), - [anon_sym_BSLASHSmartcite] = ACTIONS(5329), - [anon_sym_BSLASHsupercite] = ACTIONS(5329), - [anon_sym_BSLASHautocite] = ACTIONS(5329), - [anon_sym_BSLASHAutocite] = ACTIONS(5329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHvolcite] = ACTIONS(5329), - [anon_sym_BSLASHVolcite] = ACTIONS(5329), - [anon_sym_BSLASHpvolcite] = ACTIONS(5329), - [anon_sym_BSLASHPvolcite] = ACTIONS(5329), - [anon_sym_BSLASHfvolcite] = ACTIONS(5329), - [anon_sym_BSLASHftvolcite] = ACTIONS(5329), - [anon_sym_BSLASHsvolcite] = ACTIONS(5329), - [anon_sym_BSLASHSvolcite] = ACTIONS(5329), - [anon_sym_BSLASHtvolcite] = ACTIONS(5329), - [anon_sym_BSLASHTvolcite] = ACTIONS(5329), - [anon_sym_BSLASHavolcite] = ACTIONS(5329), - [anon_sym_BSLASHAvolcite] = ACTIONS(5329), - [anon_sym_BSLASHnotecite] = ACTIONS(5329), - [anon_sym_BSLASHNotecite] = ACTIONS(5329), - [anon_sym_BSLASHpnotecite] = ACTIONS(5329), - [anon_sym_BSLASHPnotecite] = ACTIONS(5329), - [anon_sym_BSLASHfnotecite] = ACTIONS(5329), - [anon_sym_BSLASHlabel] = ACTIONS(5329), - [anon_sym_BSLASHref] = ACTIONS(5329), - [anon_sym_BSLASHeqref] = ACTIONS(5329), - [anon_sym_BSLASHvref] = ACTIONS(5329), - [anon_sym_BSLASHVref] = ACTIONS(5329), - [anon_sym_BSLASHautoref] = ACTIONS(5329), - [anon_sym_BSLASHpageref] = ACTIONS(5329), - [anon_sym_BSLASHcref] = ACTIONS(5329), - [anon_sym_BSLASHCref] = ACTIONS(5329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnameCref] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHlabelcref] = ACTIONS(5329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange] = ACTIONS(5329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnewlabel] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5327), - [anon_sym_BSLASHdef] = ACTIONS(5329), - [anon_sym_BSLASHlet] = ACTIONS(5329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5329), - [anon_sym_BSLASHgls] = ACTIONS(5329), - [anon_sym_BSLASHGls] = ACTIONS(5329), - [anon_sym_BSLASHGLS] = ACTIONS(5329), - [anon_sym_BSLASHglspl] = ACTIONS(5329), - [anon_sym_BSLASHGlspl] = ACTIONS(5329), - [anon_sym_BSLASHGLSpl] = ACTIONS(5329), - [anon_sym_BSLASHglsdisp] = ACTIONS(5329), - [anon_sym_BSLASHglslink] = ACTIONS(5329), - [anon_sym_BSLASHglstext] = ACTIONS(5329), - [anon_sym_BSLASHGlstext] = ACTIONS(5329), - [anon_sym_BSLASHGLStext] = ACTIONS(5329), - [anon_sym_BSLASHglsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5329), - [anon_sym_BSLASHglsplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSplural] = ACTIONS(5329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHglsname] = ACTIONS(5329), - [anon_sym_BSLASHGlsname] = ACTIONS(5329), - [anon_sym_BSLASHGLSname] = ACTIONS(5329), - [anon_sym_BSLASHglssymbol] = ACTIONS(5329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5329), - [anon_sym_BSLASHglsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5329), - [anon_sym_BSLASHglsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5329), - [anon_sym_BSLASHglsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5329), - [anon_sym_BSLASHglsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5329), - [anon_sym_BSLASHglsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5329), - [anon_sym_BSLASHnewacronym] = ACTIONS(5329), - [anon_sym_BSLASHacrshort] = ACTIONS(5329), - [anon_sym_BSLASHAcrshort] = ACTIONS(5329), - [anon_sym_BSLASHACRshort] = ACTIONS(5329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5329), - [anon_sym_BSLASHacrlong] = ACTIONS(5329), - [anon_sym_BSLASHAcrlong] = ACTIONS(5329), - [anon_sym_BSLASHACRlong] = ACTIONS(5329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5329), - [anon_sym_BSLASHacrfull] = ACTIONS(5329), - [anon_sym_BSLASHAcrfull] = ACTIONS(5329), - [anon_sym_BSLASHACRfull] = ACTIONS(5329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5329), - [anon_sym_BSLASHacs] = ACTIONS(5329), - [anon_sym_BSLASHAcs] = ACTIONS(5329), - [anon_sym_BSLASHacsp] = ACTIONS(5329), - [anon_sym_BSLASHAcsp] = ACTIONS(5329), - [anon_sym_BSLASHacl] = ACTIONS(5329), - [anon_sym_BSLASHAcl] = ACTIONS(5329), - [anon_sym_BSLASHaclp] = ACTIONS(5329), - [anon_sym_BSLASHAclp] = ACTIONS(5329), - [anon_sym_BSLASHacf] = ACTIONS(5329), - [anon_sym_BSLASHAcf] = ACTIONS(5329), - [anon_sym_BSLASHacfp] = ACTIONS(5329), - [anon_sym_BSLASHAcfp] = ACTIONS(5329), - [anon_sym_BSLASHac] = ACTIONS(5329), - [anon_sym_BSLASHAc] = ACTIONS(5329), - [anon_sym_BSLASHacp] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5329), - [anon_sym_BSLASHcolor] = ACTIONS(5329), - [anon_sym_BSLASHcolorbox] = ACTIONS(5329), - [anon_sym_BSLASHtextcolor] = ACTIONS(5329), - [anon_sym_BSLASHpagecolor] = ACTIONS(5329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5329), - }, - [857] = { - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_BSLASHpart] = ACTIONS(5333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddpart] = ACTIONS(5333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHchapter] = ACTIONS(5333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddchap] = ACTIONS(5333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsection] = ACTIONS(5333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddsec] = ACTIONS(5333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHparagraph] = ACTIONS(5333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHitem] = ACTIONS(5333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASHbegin] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), - }, - [858] = { - [sym_command_name] = ACTIONS(5317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5317), - [anon_sym_LPAREN] = ACTIONS(5315), - [anon_sym_RPAREN] = ACTIONS(5315), - [anon_sym_LBRACK] = ACTIONS(5315), - [anon_sym_RBRACK] = ACTIONS(5315), - [anon_sym_COMMA] = ACTIONS(5315), - [anon_sym_EQ] = ACTIONS(5315), - [anon_sym_BSLASHpart] = ACTIONS(5317), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddpart] = ACTIONS(5317), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5315), - [anon_sym_BSLASHchapter] = ACTIONS(5317), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddchap] = ACTIONS(5317), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsection] = ACTIONS(5317), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddsec] = ACTIONS(5317), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubsection] = ACTIONS(5317), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5317), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHparagraph] = ACTIONS(5317), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5317), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5315), - [anon_sym_BSLASHitem] = ACTIONS(5317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5315), - [anon_sym_LBRACE] = ACTIONS(5315), - [sym_word] = ACTIONS(5317), - [sym_placeholder] = ACTIONS(5315), - [anon_sym_PLUS] = ACTIONS(5317), - [anon_sym_DASH] = ACTIONS(5317), - [anon_sym_STAR] = ACTIONS(5317), - [anon_sym_SLASH] = ACTIONS(5317), - [anon_sym_CARET] = ACTIONS(5317), - [anon_sym__] = ACTIONS(5317), - [anon_sym_LT] = ACTIONS(5317), - [anon_sym_GT] = ACTIONS(5317), - [anon_sym_BANG] = ACTIONS(5317), - [anon_sym_PIPE] = ACTIONS(5317), - [anon_sym_COLON] = ACTIONS(5317), - [anon_sym_SQUOTE] = ACTIONS(5317), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), - [anon_sym_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5315), - [anon_sym_BSLASHbegin] = ACTIONS(5317), - [anon_sym_BSLASHusepackage] = ACTIONS(5317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), - [anon_sym_BSLASHinclude] = ACTIONS(5317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), - [anon_sym_BSLASHinput] = ACTIONS(5317), - [anon_sym_BSLASHsubfile] = ACTIONS(5317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), - [anon_sym_BSLASHbibliography] = ACTIONS(5317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), - [anon_sym_BSLASHincludesvg] = ACTIONS(5317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), - [anon_sym_BSLASHimport] = ACTIONS(5317), - [anon_sym_BSLASHsubimport] = ACTIONS(5317), - [anon_sym_BSLASHinputfrom] = ACTIONS(5317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), - [anon_sym_BSLASHincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHcaption] = ACTIONS(5317), - [anon_sym_BSLASHcite] = ACTIONS(5317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCite] = ACTIONS(5317), - [anon_sym_BSLASHnocite] = ACTIONS(5317), - [anon_sym_BSLASHcitet] = ACTIONS(5317), - [anon_sym_BSLASHcitep] = ACTIONS(5317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteyear] = ACTIONS(5317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitedate] = ACTIONS(5317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteurl] = ACTIONS(5317), - [anon_sym_BSLASHfullcite] = ACTIONS(5317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), - [anon_sym_BSLASHcitealt] = ACTIONS(5317), - [anon_sym_BSLASHcitealp] = ACTIONS(5317), - [anon_sym_BSLASHcitetext] = ACTIONS(5317), - [anon_sym_BSLASHparencite] = ACTIONS(5317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHParencite] = ACTIONS(5317), - [anon_sym_BSLASHfootcite] = ACTIONS(5317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), - [anon_sym_BSLASHtextcite] = ACTIONS(5317), - [anon_sym_BSLASHTextcite] = ACTIONS(5317), - [anon_sym_BSLASHsmartcite] = ACTIONS(5317), - [anon_sym_BSLASHSmartcite] = ACTIONS(5317), - [anon_sym_BSLASHsupercite] = ACTIONS(5317), - [anon_sym_BSLASHautocite] = ACTIONS(5317), - [anon_sym_BSLASHAutocite] = ACTIONS(5317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHvolcite] = ACTIONS(5317), - [anon_sym_BSLASHVolcite] = ACTIONS(5317), - [anon_sym_BSLASHpvolcite] = ACTIONS(5317), - [anon_sym_BSLASHPvolcite] = ACTIONS(5317), - [anon_sym_BSLASHfvolcite] = ACTIONS(5317), - [anon_sym_BSLASHftvolcite] = ACTIONS(5317), - [anon_sym_BSLASHsvolcite] = ACTIONS(5317), - [anon_sym_BSLASHSvolcite] = ACTIONS(5317), - [anon_sym_BSLASHtvolcite] = ACTIONS(5317), - [anon_sym_BSLASHTvolcite] = ACTIONS(5317), - [anon_sym_BSLASHavolcite] = ACTIONS(5317), - [anon_sym_BSLASHAvolcite] = ACTIONS(5317), - [anon_sym_BSLASHnotecite] = ACTIONS(5317), - [anon_sym_BSLASHNotecite] = ACTIONS(5317), - [anon_sym_BSLASHpnotecite] = ACTIONS(5317), - [anon_sym_BSLASHPnotecite] = ACTIONS(5317), - [anon_sym_BSLASHfnotecite] = ACTIONS(5317), - [anon_sym_BSLASHlabel] = ACTIONS(5317), - [anon_sym_BSLASHref] = ACTIONS(5317), - [anon_sym_BSLASHeqref] = ACTIONS(5317), - [anon_sym_BSLASHvref] = ACTIONS(5317), - [anon_sym_BSLASHVref] = ACTIONS(5317), - [anon_sym_BSLASHautoref] = ACTIONS(5317), - [anon_sym_BSLASHpageref] = ACTIONS(5317), - [anon_sym_BSLASHcref] = ACTIONS(5317), - [anon_sym_BSLASHCref] = ACTIONS(5317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnameCref] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHlabelcref] = ACTIONS(5317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnewlabel] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), - [anon_sym_BSLASHdef] = ACTIONS(5317), - [anon_sym_BSLASHlet] = ACTIONS(5317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), - [anon_sym_BSLASHgls] = ACTIONS(5317), - [anon_sym_BSLASHGls] = ACTIONS(5317), - [anon_sym_BSLASHGLS] = ACTIONS(5317), - [anon_sym_BSLASHglspl] = ACTIONS(5317), - [anon_sym_BSLASHGlspl] = ACTIONS(5317), - [anon_sym_BSLASHGLSpl] = ACTIONS(5317), - [anon_sym_BSLASHglsdisp] = ACTIONS(5317), - [anon_sym_BSLASHglslink] = ACTIONS(5317), - [anon_sym_BSLASHglstext] = ACTIONS(5317), - [anon_sym_BSLASHGlstext] = ACTIONS(5317), - [anon_sym_BSLASHGLStext] = ACTIONS(5317), - [anon_sym_BSLASHglsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), - [anon_sym_BSLASHglsplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSplural] = ACTIONS(5317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHglsname] = ACTIONS(5317), - [anon_sym_BSLASHGlsname] = ACTIONS(5317), - [anon_sym_BSLASHGLSname] = ACTIONS(5317), - [anon_sym_BSLASHglssymbol] = ACTIONS(5317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), - [anon_sym_BSLASHglsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), - [anon_sym_BSLASHglsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), - [anon_sym_BSLASHglsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), - [anon_sym_BSLASHglsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), - [anon_sym_BSLASHglsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), - [anon_sym_BSLASHnewacronym] = ACTIONS(5317), - [anon_sym_BSLASHacrshort] = ACTIONS(5317), - [anon_sym_BSLASHAcrshort] = ACTIONS(5317), - [anon_sym_BSLASHACRshort] = ACTIONS(5317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), - [anon_sym_BSLASHacrlong] = ACTIONS(5317), - [anon_sym_BSLASHAcrlong] = ACTIONS(5317), - [anon_sym_BSLASHACRlong] = ACTIONS(5317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), - [anon_sym_BSLASHacrfull] = ACTIONS(5317), - [anon_sym_BSLASHAcrfull] = ACTIONS(5317), - [anon_sym_BSLASHACRfull] = ACTIONS(5317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), - [anon_sym_BSLASHacs] = ACTIONS(5317), - [anon_sym_BSLASHAcs] = ACTIONS(5317), - [anon_sym_BSLASHacsp] = ACTIONS(5317), - [anon_sym_BSLASHAcsp] = ACTIONS(5317), - [anon_sym_BSLASHacl] = ACTIONS(5317), - [anon_sym_BSLASHAcl] = ACTIONS(5317), - [anon_sym_BSLASHaclp] = ACTIONS(5317), - [anon_sym_BSLASHAclp] = ACTIONS(5317), - [anon_sym_BSLASHacf] = ACTIONS(5317), - [anon_sym_BSLASHAcf] = ACTIONS(5317), - [anon_sym_BSLASHacfp] = ACTIONS(5317), - [anon_sym_BSLASHAcfp] = ACTIONS(5317), - [anon_sym_BSLASHac] = ACTIONS(5317), - [anon_sym_BSLASHAc] = ACTIONS(5317), - [anon_sym_BSLASHacp] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), - [anon_sym_BSLASHcolor] = ACTIONS(5317), - [anon_sym_BSLASHcolorbox] = ACTIONS(5317), - [anon_sym_BSLASHtextcolor] = ACTIONS(5317), - [anon_sym_BSLASHpagecolor] = ACTIONS(5317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), - }, - [859] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_BSLASHpart] = ACTIONS(5311), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddpart] = ACTIONS(5311), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHchapter] = ACTIONS(5311), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddchap] = ACTIONS(5311), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsection] = ACTIONS(5311), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddsec] = ACTIONS(5311), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHparagraph] = ACTIONS(5311), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5311), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHitem] = ACTIONS(5311), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5309), - [anon_sym_BSLASHbegin] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), - }, - [860] = { - [sym_command_name] = ACTIONS(5337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_BSLASHpart] = ACTIONS(5337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddpart] = ACTIONS(5337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHchapter] = ACTIONS(5337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddchap] = ACTIONS(5337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsection] = ACTIONS(5337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddsec] = ACTIONS(5337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHparagraph] = ACTIONS(5337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHitem] = ACTIONS(5337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASHbegin] = ACTIONS(5337), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), - }, - [861] = { - [sym_command_name] = ACTIONS(5341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_BSLASHpart] = ACTIONS(5341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddpart] = ACTIONS(5341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHchapter] = ACTIONS(5341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddchap] = ACTIONS(5341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsection] = ACTIONS(5341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddsec] = ACTIONS(5341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHparagraph] = ACTIONS(5341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHitem] = ACTIONS(5341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASHbegin] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), - }, - [862] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_BSLASHpart] = ACTIONS(5345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddpart] = ACTIONS(5345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHchapter] = ACTIONS(5345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddchap] = ACTIONS(5345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsection] = ACTIONS(5345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddsec] = ACTIONS(5345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHparagraph] = ACTIONS(5345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHitem] = ACTIONS(5345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASHbegin] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), - }, - [863] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_BSLASHpart] = ACTIONS(5349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddpart] = ACTIONS(5349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHchapter] = ACTIONS(5349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddchap] = ACTIONS(5349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsection] = ACTIONS(5349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddsec] = ACTIONS(5349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHparagraph] = ACTIONS(5349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHitem] = ACTIONS(5349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASHbegin] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), - }, - [864] = { - [sym_command_name] = ACTIONS(5385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5385), - [anon_sym_LPAREN] = ACTIONS(5383), - [anon_sym_RPAREN] = ACTIONS(5383), - [anon_sym_LBRACK] = ACTIONS(5383), - [anon_sym_RBRACK] = ACTIONS(5383), - [anon_sym_COMMA] = ACTIONS(5383), - [anon_sym_EQ] = ACTIONS(5383), - [anon_sym_BSLASHpart] = ACTIONS(5385), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddpart] = ACTIONS(5385), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5383), - [anon_sym_BSLASHchapter] = ACTIONS(5385), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddchap] = ACTIONS(5385), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsection] = ACTIONS(5385), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddsec] = ACTIONS(5385), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubsection] = ACTIONS(5385), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5385), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHparagraph] = ACTIONS(5385), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5385), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5383), - [anon_sym_BSLASHitem] = ACTIONS(5385), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5383), - [anon_sym_LBRACE] = ACTIONS(5383), - [sym_word] = ACTIONS(5385), - [sym_placeholder] = ACTIONS(5383), - [anon_sym_PLUS] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5385), - [anon_sym_SLASH] = ACTIONS(5385), - [anon_sym_CARET] = ACTIONS(5385), - [anon_sym__] = ACTIONS(5385), - [anon_sym_LT] = ACTIONS(5385), - [anon_sym_GT] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_PIPE] = ACTIONS(5385), - [anon_sym_COLON] = ACTIONS(5385), - [anon_sym_SQUOTE] = ACTIONS(5385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5383), - [anon_sym_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5383), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5383), - [anon_sym_BSLASHbegin] = ACTIONS(5385), - [anon_sym_BSLASHusepackage] = ACTIONS(5385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5385), - [anon_sym_BSLASHinclude] = ACTIONS(5385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5385), - [anon_sym_BSLASHinput] = ACTIONS(5385), - [anon_sym_BSLASHsubfile] = ACTIONS(5385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5385), - [anon_sym_BSLASHbibliography] = ACTIONS(5385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5385), - [anon_sym_BSLASHincludesvg] = ACTIONS(5385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5385), - [anon_sym_BSLASHimport] = ACTIONS(5385), - [anon_sym_BSLASHsubimport] = ACTIONS(5385), - [anon_sym_BSLASHinputfrom] = ACTIONS(5385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5385), - [anon_sym_BSLASHincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHcaption] = ACTIONS(5385), - [anon_sym_BSLASHcite] = ACTIONS(5385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCite] = ACTIONS(5385), - [anon_sym_BSLASHnocite] = ACTIONS(5385), - [anon_sym_BSLASHcitet] = ACTIONS(5385), - [anon_sym_BSLASHcitep] = ACTIONS(5385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteyear] = ACTIONS(5385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitedate] = ACTIONS(5385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteurl] = ACTIONS(5385), - [anon_sym_BSLASHfullcite] = ACTIONS(5385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5385), - [anon_sym_BSLASHcitealt] = ACTIONS(5385), - [anon_sym_BSLASHcitealp] = ACTIONS(5385), - [anon_sym_BSLASHcitetext] = ACTIONS(5385), - [anon_sym_BSLASHparencite] = ACTIONS(5385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHParencite] = ACTIONS(5385), - [anon_sym_BSLASHfootcite] = ACTIONS(5385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5385), - [anon_sym_BSLASHtextcite] = ACTIONS(5385), - [anon_sym_BSLASHTextcite] = ACTIONS(5385), - [anon_sym_BSLASHsmartcite] = ACTIONS(5385), - [anon_sym_BSLASHSmartcite] = ACTIONS(5385), - [anon_sym_BSLASHsupercite] = ACTIONS(5385), - [anon_sym_BSLASHautocite] = ACTIONS(5385), - [anon_sym_BSLASHAutocite] = ACTIONS(5385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHvolcite] = ACTIONS(5385), - [anon_sym_BSLASHVolcite] = ACTIONS(5385), - [anon_sym_BSLASHpvolcite] = ACTIONS(5385), - [anon_sym_BSLASHPvolcite] = ACTIONS(5385), - [anon_sym_BSLASHfvolcite] = ACTIONS(5385), - [anon_sym_BSLASHftvolcite] = ACTIONS(5385), - [anon_sym_BSLASHsvolcite] = ACTIONS(5385), - [anon_sym_BSLASHSvolcite] = ACTIONS(5385), - [anon_sym_BSLASHtvolcite] = ACTIONS(5385), - [anon_sym_BSLASHTvolcite] = ACTIONS(5385), - [anon_sym_BSLASHavolcite] = ACTIONS(5385), - [anon_sym_BSLASHAvolcite] = ACTIONS(5385), - [anon_sym_BSLASHnotecite] = ACTIONS(5385), - [anon_sym_BSLASHNotecite] = ACTIONS(5385), - [anon_sym_BSLASHpnotecite] = ACTIONS(5385), - [anon_sym_BSLASHPnotecite] = ACTIONS(5385), - [anon_sym_BSLASHfnotecite] = ACTIONS(5385), - [anon_sym_BSLASHlabel] = ACTIONS(5385), - [anon_sym_BSLASHref] = ACTIONS(5385), - [anon_sym_BSLASHeqref] = ACTIONS(5385), - [anon_sym_BSLASHvref] = ACTIONS(5385), - [anon_sym_BSLASHVref] = ACTIONS(5385), - [anon_sym_BSLASHautoref] = ACTIONS(5385), - [anon_sym_BSLASHpageref] = ACTIONS(5385), - [anon_sym_BSLASHcref] = ACTIONS(5385), - [anon_sym_BSLASHCref] = ACTIONS(5385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnameCref] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHlabelcref] = ACTIONS(5385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnewlabel] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5383), - [anon_sym_BSLASHdef] = ACTIONS(5385), - [anon_sym_BSLASHlet] = ACTIONS(5385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5385), - [anon_sym_BSLASHgls] = ACTIONS(5385), - [anon_sym_BSLASHGls] = ACTIONS(5385), - [anon_sym_BSLASHGLS] = ACTIONS(5385), - [anon_sym_BSLASHglspl] = ACTIONS(5385), - [anon_sym_BSLASHGlspl] = ACTIONS(5385), - [anon_sym_BSLASHGLSpl] = ACTIONS(5385), - [anon_sym_BSLASHglsdisp] = ACTIONS(5385), - [anon_sym_BSLASHglslink] = ACTIONS(5385), - [anon_sym_BSLASHglstext] = ACTIONS(5385), - [anon_sym_BSLASHGlstext] = ACTIONS(5385), - [anon_sym_BSLASHGLStext] = ACTIONS(5385), - [anon_sym_BSLASHglsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5385), - [anon_sym_BSLASHglsplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSplural] = ACTIONS(5385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHglsname] = ACTIONS(5385), - [anon_sym_BSLASHGlsname] = ACTIONS(5385), - [anon_sym_BSLASHGLSname] = ACTIONS(5385), - [anon_sym_BSLASHglssymbol] = ACTIONS(5385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5385), - [anon_sym_BSLASHglsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5385), - [anon_sym_BSLASHglsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5385), - [anon_sym_BSLASHglsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5385), - [anon_sym_BSLASHglsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5385), - [anon_sym_BSLASHglsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5385), - [anon_sym_BSLASHnewacronym] = ACTIONS(5385), - [anon_sym_BSLASHacrshort] = ACTIONS(5385), - [anon_sym_BSLASHAcrshort] = ACTIONS(5385), - [anon_sym_BSLASHACRshort] = ACTIONS(5385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5385), - [anon_sym_BSLASHacrlong] = ACTIONS(5385), - [anon_sym_BSLASHAcrlong] = ACTIONS(5385), - [anon_sym_BSLASHACRlong] = ACTIONS(5385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5385), - [anon_sym_BSLASHacrfull] = ACTIONS(5385), - [anon_sym_BSLASHAcrfull] = ACTIONS(5385), - [anon_sym_BSLASHACRfull] = ACTIONS(5385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5385), - [anon_sym_BSLASHacs] = ACTIONS(5385), - [anon_sym_BSLASHAcs] = ACTIONS(5385), - [anon_sym_BSLASHacsp] = ACTIONS(5385), - [anon_sym_BSLASHAcsp] = ACTIONS(5385), - [anon_sym_BSLASHacl] = ACTIONS(5385), - [anon_sym_BSLASHAcl] = ACTIONS(5385), - [anon_sym_BSLASHaclp] = ACTIONS(5385), - [anon_sym_BSLASHAclp] = ACTIONS(5385), - [anon_sym_BSLASHacf] = ACTIONS(5385), - [anon_sym_BSLASHAcf] = ACTIONS(5385), - [anon_sym_BSLASHacfp] = ACTIONS(5385), - [anon_sym_BSLASHAcfp] = ACTIONS(5385), - [anon_sym_BSLASHac] = ACTIONS(5385), - [anon_sym_BSLASHAc] = ACTIONS(5385), - [anon_sym_BSLASHacp] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5385), - [anon_sym_BSLASHcolor] = ACTIONS(5385), - [anon_sym_BSLASHcolorbox] = ACTIONS(5385), - [anon_sym_BSLASHtextcolor] = ACTIONS(5385), - [anon_sym_BSLASHpagecolor] = ACTIONS(5385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5385), - }, - [865] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1767), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5387), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [866] = { - [sym_command_name] = ACTIONS(5225), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_BSLASHpart] = ACTIONS(5225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddpart] = ACTIONS(5225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHchapter] = ACTIONS(5225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddchap] = ACTIONS(5225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsection] = ACTIONS(5225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddsec] = ACTIONS(5225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHparagraph] = ACTIONS(5225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHitem] = ACTIONS(5225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASHbegin] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), - }, - [867] = { - [sym_command_name] = ACTIONS(5209), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_BSLASHpart] = ACTIONS(5209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddpart] = ACTIONS(5209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHchapter] = ACTIONS(5209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddchap] = ACTIONS(5209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsection] = ACTIONS(5209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddsec] = ACTIONS(5209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHparagraph] = ACTIONS(5209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHitem] = ACTIONS(5209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASHbegin] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), - }, - [868] = { - [sym_command_name] = ACTIONS(5205), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_BSLASHpart] = ACTIONS(5205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddpart] = ACTIONS(5205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHchapter] = ACTIONS(5205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddchap] = ACTIONS(5205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsection] = ACTIONS(5205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddsec] = ACTIONS(5205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHparagraph] = ACTIONS(5205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHitem] = ACTIONS(5205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASHbegin] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), - }, - [869] = { - [sym_command_name] = ACTIONS(5201), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_BSLASHpart] = ACTIONS(5201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddpart] = ACTIONS(5201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHchapter] = ACTIONS(5201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddchap] = ACTIONS(5201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsection] = ACTIONS(5201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddsec] = ACTIONS(5201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHparagraph] = ACTIONS(5201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHitem] = ACTIONS(5201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASHbegin] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), - }, - [870] = { - [sym_command_name] = ACTIONS(4995), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_RPAREN] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_RBRACK] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_EQ] = ACTIONS(4993), - [anon_sym_BSLASHpart] = ACTIONS(4995), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddpart] = ACTIONS(4995), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHchapter] = ACTIONS(4995), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddchap] = ACTIONS(4995), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsection] = ACTIONS(4995), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddsec] = ACTIONS(4995), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHparagraph] = ACTIONS(4995), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHitem] = ACTIONS(4995), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), - [anon_sym_LBRACE] = ACTIONS(4993), - [sym_word] = ACTIONS(4995), - [sym_placeholder] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym__] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4993), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), - [anon_sym_BSLASHbegin] = ACTIONS(4995), - [anon_sym_BSLASHusepackage] = ACTIONS(4995), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), - [anon_sym_BSLASHinclude] = ACTIONS(4995), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), - [anon_sym_BSLASHinput] = ACTIONS(4995), - [anon_sym_BSLASHsubfile] = ACTIONS(4995), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), - [anon_sym_BSLASHbibliography] = ACTIONS(4995), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), - [anon_sym_BSLASHincludesvg] = ACTIONS(4995), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), - [anon_sym_BSLASHimport] = ACTIONS(4995), - [anon_sym_BSLASHsubimport] = ACTIONS(4995), - [anon_sym_BSLASHinputfrom] = ACTIONS(4995), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), - [anon_sym_BSLASHincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHcaption] = ACTIONS(4995), - [anon_sym_BSLASHcite] = ACTIONS(4995), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCite] = ACTIONS(4995), - [anon_sym_BSLASHnocite] = ACTIONS(4995), - [anon_sym_BSLASHcitet] = ACTIONS(4995), - [anon_sym_BSLASHcitep] = ACTIONS(4995), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteauthor] = ACTIONS(4995), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitetitle] = ACTIONS(4995), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteyear] = ACTIONS(4995), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitedate] = ACTIONS(4995), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteurl] = ACTIONS(4995), - [anon_sym_BSLASHfullcite] = ACTIONS(4995), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), - [anon_sym_BSLASHcitealt] = ACTIONS(4995), - [anon_sym_BSLASHcitealp] = ACTIONS(4995), - [anon_sym_BSLASHcitetext] = ACTIONS(4995), - [anon_sym_BSLASHparencite] = ACTIONS(4995), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHParencite] = ACTIONS(4995), - [anon_sym_BSLASHfootcite] = ACTIONS(4995), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), - [anon_sym_BSLASHtextcite] = ACTIONS(4995), - [anon_sym_BSLASHTextcite] = ACTIONS(4995), - [anon_sym_BSLASHsmartcite] = ACTIONS(4995), - [anon_sym_BSLASHSmartcite] = ACTIONS(4995), - [anon_sym_BSLASHsupercite] = ACTIONS(4995), - [anon_sym_BSLASHautocite] = ACTIONS(4995), - [anon_sym_BSLASHAutocite] = ACTIONS(4995), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHvolcite] = ACTIONS(4995), - [anon_sym_BSLASHVolcite] = ACTIONS(4995), - [anon_sym_BSLASHpvolcite] = ACTIONS(4995), - [anon_sym_BSLASHPvolcite] = ACTIONS(4995), - [anon_sym_BSLASHfvolcite] = ACTIONS(4995), - [anon_sym_BSLASHftvolcite] = ACTIONS(4995), - [anon_sym_BSLASHsvolcite] = ACTIONS(4995), - [anon_sym_BSLASHSvolcite] = ACTIONS(4995), - [anon_sym_BSLASHtvolcite] = ACTIONS(4995), - [anon_sym_BSLASHTvolcite] = ACTIONS(4995), - [anon_sym_BSLASHavolcite] = ACTIONS(4995), - [anon_sym_BSLASHAvolcite] = ACTIONS(4995), - [anon_sym_BSLASHnotecite] = ACTIONS(4995), - [anon_sym_BSLASHNotecite] = ACTIONS(4995), - [anon_sym_BSLASHpnotecite] = ACTIONS(4995), - [anon_sym_BSLASHPnotecite] = ACTIONS(4995), - [anon_sym_BSLASHfnotecite] = ACTIONS(4995), - [anon_sym_BSLASHlabel] = ACTIONS(4995), - [anon_sym_BSLASHref] = ACTIONS(4995), - [anon_sym_BSLASHeqref] = ACTIONS(4995), - [anon_sym_BSLASHvref] = ACTIONS(4995), - [anon_sym_BSLASHVref] = ACTIONS(4995), - [anon_sym_BSLASHautoref] = ACTIONS(4995), - [anon_sym_BSLASHpageref] = ACTIONS(4995), - [anon_sym_BSLASHcref] = ACTIONS(4995), - [anon_sym_BSLASHCref] = ACTIONS(4995), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnameCref] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHlabelcref] = ACTIONS(4995), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCrefrange] = ACTIONS(4995), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnewlabel] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdef] = ACTIONS(4995), - [anon_sym_BSLASHlet] = ACTIONS(4995), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), - [anon_sym_BSLASHgls] = ACTIONS(4995), - [anon_sym_BSLASHGls] = ACTIONS(4995), - [anon_sym_BSLASHGLS] = ACTIONS(4995), - [anon_sym_BSLASHglspl] = ACTIONS(4995), - [anon_sym_BSLASHGlspl] = ACTIONS(4995), - [anon_sym_BSLASHGLSpl] = ACTIONS(4995), - [anon_sym_BSLASHglsdisp] = ACTIONS(4995), - [anon_sym_BSLASHglslink] = ACTIONS(4995), - [anon_sym_BSLASHglstext] = ACTIONS(4995), - [anon_sym_BSLASHGlstext] = ACTIONS(4995), - [anon_sym_BSLASHGLStext] = ACTIONS(4995), - [anon_sym_BSLASHglsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), - [anon_sym_BSLASHglsplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSplural] = ACTIONS(4995), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHglsname] = ACTIONS(4995), - [anon_sym_BSLASHGlsname] = ACTIONS(4995), - [anon_sym_BSLASHGLSname] = ACTIONS(4995), - [anon_sym_BSLASHglssymbol] = ACTIONS(4995), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), - [anon_sym_BSLASHglsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), - [anon_sym_BSLASHglsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), - [anon_sym_BSLASHglsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), - [anon_sym_BSLASHglsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), - [anon_sym_BSLASHglsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), - [anon_sym_BSLASHnewacronym] = ACTIONS(4995), - [anon_sym_BSLASHacrshort] = ACTIONS(4995), - [anon_sym_BSLASHAcrshort] = ACTIONS(4995), - [anon_sym_BSLASHACRshort] = ACTIONS(4995), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), - [anon_sym_BSLASHacrlong] = ACTIONS(4995), - [anon_sym_BSLASHAcrlong] = ACTIONS(4995), - [anon_sym_BSLASHACRlong] = ACTIONS(4995), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), - [anon_sym_BSLASHacrfull] = ACTIONS(4995), - [anon_sym_BSLASHAcrfull] = ACTIONS(4995), - [anon_sym_BSLASHACRfull] = ACTIONS(4995), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), - [anon_sym_BSLASHacs] = ACTIONS(4995), - [anon_sym_BSLASHAcs] = ACTIONS(4995), - [anon_sym_BSLASHacsp] = ACTIONS(4995), - [anon_sym_BSLASHAcsp] = ACTIONS(4995), - [anon_sym_BSLASHacl] = ACTIONS(4995), - [anon_sym_BSLASHAcl] = ACTIONS(4995), - [anon_sym_BSLASHaclp] = ACTIONS(4995), - [anon_sym_BSLASHAclp] = ACTIONS(4995), - [anon_sym_BSLASHacf] = ACTIONS(4995), - [anon_sym_BSLASHAcf] = ACTIONS(4995), - [anon_sym_BSLASHacfp] = ACTIONS(4995), - [anon_sym_BSLASHAcfp] = ACTIONS(4995), - [anon_sym_BSLASHac] = ACTIONS(4995), - [anon_sym_BSLASHAc] = ACTIONS(4995), - [anon_sym_BSLASHacp] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), - [anon_sym_BSLASHcolor] = ACTIONS(4995), - [anon_sym_BSLASHcolorbox] = ACTIONS(4995), - [anon_sym_BSLASHtextcolor] = ACTIONS(4995), - [anon_sym_BSLASHpagecolor] = ACTIONS(4995), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), - }, - [871] = { - [sym_command_name] = ACTIONS(5197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_BSLASHpart] = ACTIONS(5197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddpart] = ACTIONS(5197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHchapter] = ACTIONS(5197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddchap] = ACTIONS(5197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsection] = ACTIONS(5197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddsec] = ACTIONS(5197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHparagraph] = ACTIONS(5197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHitem] = ACTIONS(5197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASHbegin] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), - }, - [872] = { - [sym_command_name] = ACTIONS(5003), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(5001), - [anon_sym_BSLASHpart] = ACTIONS(5003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddpart] = ACTIONS(5003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHchapter] = ACTIONS(5003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddchap] = ACTIONS(5003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsection] = ACTIONS(5003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddsec] = ACTIONS(5003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHparagraph] = ACTIONS(5003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHitem] = ACTIONS(5003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), - [anon_sym_LBRACE] = ACTIONS(5001), - [sym_word] = ACTIONS(5003), - [sym_placeholder] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym__] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5001), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), - [anon_sym_BSLASHbegin] = ACTIONS(5003), - [anon_sym_BSLASHusepackage] = ACTIONS(5003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), - [anon_sym_BSLASHinclude] = ACTIONS(5003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), - [anon_sym_BSLASHinput] = ACTIONS(5003), - [anon_sym_BSLASHsubfile] = ACTIONS(5003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), - [anon_sym_BSLASHbibliography] = ACTIONS(5003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), - [anon_sym_BSLASHincludesvg] = ACTIONS(5003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), - [anon_sym_BSLASHimport] = ACTIONS(5003), - [anon_sym_BSLASHsubimport] = ACTIONS(5003), - [anon_sym_BSLASHinputfrom] = ACTIONS(5003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), - [anon_sym_BSLASHincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHcaption] = ACTIONS(5003), - [anon_sym_BSLASHcite] = ACTIONS(5003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCite] = ACTIONS(5003), - [anon_sym_BSLASHnocite] = ACTIONS(5003), - [anon_sym_BSLASHcitet] = ACTIONS(5003), - [anon_sym_BSLASHcitep] = ACTIONS(5003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteyear] = ACTIONS(5003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitedate] = ACTIONS(5003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteurl] = ACTIONS(5003), - [anon_sym_BSLASHfullcite] = ACTIONS(5003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), - [anon_sym_BSLASHcitealt] = ACTIONS(5003), - [anon_sym_BSLASHcitealp] = ACTIONS(5003), - [anon_sym_BSLASHcitetext] = ACTIONS(5003), - [anon_sym_BSLASHparencite] = ACTIONS(5003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHParencite] = ACTIONS(5003), - [anon_sym_BSLASHfootcite] = ACTIONS(5003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), - [anon_sym_BSLASHtextcite] = ACTIONS(5003), - [anon_sym_BSLASHTextcite] = ACTIONS(5003), - [anon_sym_BSLASHsmartcite] = ACTIONS(5003), - [anon_sym_BSLASHSmartcite] = ACTIONS(5003), - [anon_sym_BSLASHsupercite] = ACTIONS(5003), - [anon_sym_BSLASHautocite] = ACTIONS(5003), - [anon_sym_BSLASHAutocite] = ACTIONS(5003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHvolcite] = ACTIONS(5003), - [anon_sym_BSLASHVolcite] = ACTIONS(5003), - [anon_sym_BSLASHpvolcite] = ACTIONS(5003), - [anon_sym_BSLASHPvolcite] = ACTIONS(5003), - [anon_sym_BSLASHfvolcite] = ACTIONS(5003), - [anon_sym_BSLASHftvolcite] = ACTIONS(5003), - [anon_sym_BSLASHsvolcite] = ACTIONS(5003), - [anon_sym_BSLASHSvolcite] = ACTIONS(5003), - [anon_sym_BSLASHtvolcite] = ACTIONS(5003), - [anon_sym_BSLASHTvolcite] = ACTIONS(5003), - [anon_sym_BSLASHavolcite] = ACTIONS(5003), - [anon_sym_BSLASHAvolcite] = ACTIONS(5003), - [anon_sym_BSLASHnotecite] = ACTIONS(5003), - [anon_sym_BSLASHNotecite] = ACTIONS(5003), - [anon_sym_BSLASHpnotecite] = ACTIONS(5003), - [anon_sym_BSLASHPnotecite] = ACTIONS(5003), - [anon_sym_BSLASHfnotecite] = ACTIONS(5003), - [anon_sym_BSLASHlabel] = ACTIONS(5003), - [anon_sym_BSLASHref] = ACTIONS(5003), - [anon_sym_BSLASHeqref] = ACTIONS(5003), - [anon_sym_BSLASHvref] = ACTIONS(5003), - [anon_sym_BSLASHVref] = ACTIONS(5003), - [anon_sym_BSLASHautoref] = ACTIONS(5003), - [anon_sym_BSLASHpageref] = ACTIONS(5003), - [anon_sym_BSLASHcref] = ACTIONS(5003), - [anon_sym_BSLASHCref] = ACTIONS(5003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnameCref] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHlabelcref] = ACTIONS(5003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdef] = ACTIONS(5003), - [anon_sym_BSLASHlet] = ACTIONS(5003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), - [anon_sym_BSLASHgls] = ACTIONS(5003), - [anon_sym_BSLASHGls] = ACTIONS(5003), - [anon_sym_BSLASHGLS] = ACTIONS(5003), - [anon_sym_BSLASHglspl] = ACTIONS(5003), - [anon_sym_BSLASHGlspl] = ACTIONS(5003), - [anon_sym_BSLASHGLSpl] = ACTIONS(5003), - [anon_sym_BSLASHglsdisp] = ACTIONS(5003), - [anon_sym_BSLASHglslink] = ACTIONS(5003), - [anon_sym_BSLASHglstext] = ACTIONS(5003), - [anon_sym_BSLASHGlstext] = ACTIONS(5003), - [anon_sym_BSLASHGLStext] = ACTIONS(5003), - [anon_sym_BSLASHglsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), - [anon_sym_BSLASHglsplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSplural] = ACTIONS(5003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHglsname] = ACTIONS(5003), - [anon_sym_BSLASHGlsname] = ACTIONS(5003), - [anon_sym_BSLASHGLSname] = ACTIONS(5003), - [anon_sym_BSLASHglssymbol] = ACTIONS(5003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), - [anon_sym_BSLASHglsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), - [anon_sym_BSLASHglsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), - [anon_sym_BSLASHglsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), - [anon_sym_BSLASHglsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), - [anon_sym_BSLASHglsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), - [anon_sym_BSLASHnewacronym] = ACTIONS(5003), - [anon_sym_BSLASHacrshort] = ACTIONS(5003), - [anon_sym_BSLASHAcrshort] = ACTIONS(5003), - [anon_sym_BSLASHACRshort] = ACTIONS(5003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), - [anon_sym_BSLASHacrlong] = ACTIONS(5003), - [anon_sym_BSLASHAcrlong] = ACTIONS(5003), - [anon_sym_BSLASHACRlong] = ACTIONS(5003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), - [anon_sym_BSLASHacrfull] = ACTIONS(5003), - [anon_sym_BSLASHAcrfull] = ACTIONS(5003), - [anon_sym_BSLASHACRfull] = ACTIONS(5003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), - [anon_sym_BSLASHacs] = ACTIONS(5003), - [anon_sym_BSLASHAcs] = ACTIONS(5003), - [anon_sym_BSLASHacsp] = ACTIONS(5003), - [anon_sym_BSLASHAcsp] = ACTIONS(5003), - [anon_sym_BSLASHacl] = ACTIONS(5003), - [anon_sym_BSLASHAcl] = ACTIONS(5003), - [anon_sym_BSLASHaclp] = ACTIONS(5003), - [anon_sym_BSLASHAclp] = ACTIONS(5003), - [anon_sym_BSLASHacf] = ACTIONS(5003), - [anon_sym_BSLASHAcf] = ACTIONS(5003), - [anon_sym_BSLASHacfp] = ACTIONS(5003), - [anon_sym_BSLASHAcfp] = ACTIONS(5003), - [anon_sym_BSLASHac] = ACTIONS(5003), - [anon_sym_BSLASHAc] = ACTIONS(5003), - [anon_sym_BSLASHacp] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), - [anon_sym_BSLASHcolor] = ACTIONS(5003), - [anon_sym_BSLASHcolorbox] = ACTIONS(5003), - [anon_sym_BSLASHtextcolor] = ACTIONS(5003), - [anon_sym_BSLASHpagecolor] = ACTIONS(5003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), - }, - [873] = { - [sym_command_name] = ACTIONS(5007), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_BSLASHpart] = ACTIONS(5007), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddpart] = ACTIONS(5007), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHchapter] = ACTIONS(5007), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddchap] = ACTIONS(5007), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsection] = ACTIONS(5007), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddsec] = ACTIONS(5007), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHparagraph] = ACTIONS(5007), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHitem] = ACTIONS(5007), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASHbegin] = ACTIONS(5007), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), - }, - [874] = { - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_BSLASHpart] = ACTIONS(5011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddpart] = ACTIONS(5011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHchapter] = ACTIONS(5011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddchap] = ACTIONS(5011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsection] = ACTIONS(5011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddsec] = ACTIONS(5011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHparagraph] = ACTIONS(5011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHitem] = ACTIONS(5011), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5009), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASHbegin] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), - }, - [875] = { - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_BSLASHpart] = ACTIONS(5015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddpart] = ACTIONS(5015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHchapter] = ACTIONS(5015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddchap] = ACTIONS(5015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsection] = ACTIONS(5015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddsec] = ACTIONS(5015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHparagraph] = ACTIONS(5015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHitem] = ACTIONS(5015), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASHbegin] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), - }, - [876] = { - [sym_command_name] = ACTIONS(5193), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_BSLASHpart] = ACTIONS(5193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddpart] = ACTIONS(5193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHchapter] = ACTIONS(5193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddchap] = ACTIONS(5193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsection] = ACTIONS(5193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddsec] = ACTIONS(5193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHparagraph] = ACTIONS(5193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHitem] = ACTIONS(5193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASHbegin] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), - }, - [877] = { - [sym_command_name] = ACTIONS(5189), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_BSLASHpart] = ACTIONS(5189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddpart] = ACTIONS(5189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHchapter] = ACTIONS(5189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddchap] = ACTIONS(5189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsection] = ACTIONS(5189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddsec] = ACTIONS(5189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHparagraph] = ACTIONS(5189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHitem] = ACTIONS(5189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASHbegin] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), - }, - [878] = { - [sym_command_name] = ACTIONS(4945), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4943), - [anon_sym_RBRACK] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_BSLASHpart] = ACTIONS(4945), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddpart] = ACTIONS(4945), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4943), - [anon_sym_BSLASHchapter] = ACTIONS(4945), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddchap] = ACTIONS(4945), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsection] = ACTIONS(4945), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddsec] = ACTIONS(4945), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubsection] = ACTIONS(4945), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4945), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHparagraph] = ACTIONS(4945), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4945), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4943), - [anon_sym_BSLASHitem] = ACTIONS(4945), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [sym_word] = ACTIONS(4945), - [sym_placeholder] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4945), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_STAR] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym__] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4945), - [anon_sym_BANG] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(4945), - [anon_sym_COLON] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4945), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4943), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4945), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4943), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4943), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4943), - [anon_sym_BSLASHbegin] = ACTIONS(4945), - [anon_sym_BSLASHusepackage] = ACTIONS(4945), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4945), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4945), - [anon_sym_BSLASHinclude] = ACTIONS(4945), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4945), - [anon_sym_BSLASHinput] = ACTIONS(4945), - [anon_sym_BSLASHsubfile] = ACTIONS(4945), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4945), - [anon_sym_BSLASHbibliography] = ACTIONS(4945), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4945), - [anon_sym_BSLASHincludesvg] = ACTIONS(4945), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4945), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4945), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4945), - [anon_sym_BSLASHimport] = ACTIONS(4945), - [anon_sym_BSLASHsubimport] = ACTIONS(4945), - [anon_sym_BSLASHinputfrom] = ACTIONS(4945), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4945), - [anon_sym_BSLASHincludefrom] = ACTIONS(4945), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4945), - [anon_sym_BSLASHcaption] = ACTIONS(4945), - [anon_sym_BSLASHcite] = ACTIONS(4945), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCite] = ACTIONS(4945), - [anon_sym_BSLASHnocite] = ACTIONS(4945), - [anon_sym_BSLASHcitet] = ACTIONS(4945), - [anon_sym_BSLASHcitep] = ACTIONS(4945), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteauthor] = ACTIONS(4945), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4945), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitetitle] = ACTIONS(4945), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteyear] = ACTIONS(4945), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitedate] = ACTIONS(4945), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteurl] = ACTIONS(4945), - [anon_sym_BSLASHfullcite] = ACTIONS(4945), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4945), - [anon_sym_BSLASHcitealt] = ACTIONS(4945), - [anon_sym_BSLASHcitealp] = ACTIONS(4945), - [anon_sym_BSLASHcitetext] = ACTIONS(4945), - [anon_sym_BSLASHparencite] = ACTIONS(4945), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHParencite] = ACTIONS(4945), - [anon_sym_BSLASHfootcite] = ACTIONS(4945), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4945), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4945), - [anon_sym_BSLASHtextcite] = ACTIONS(4945), - [anon_sym_BSLASHTextcite] = ACTIONS(4945), - [anon_sym_BSLASHsmartcite] = ACTIONS(4945), - [anon_sym_BSLASHSmartcite] = ACTIONS(4945), - [anon_sym_BSLASHsupercite] = ACTIONS(4945), - [anon_sym_BSLASHautocite] = ACTIONS(4945), - [anon_sym_BSLASHAutocite] = ACTIONS(4945), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHvolcite] = ACTIONS(4945), - [anon_sym_BSLASHVolcite] = ACTIONS(4945), - [anon_sym_BSLASHpvolcite] = ACTIONS(4945), - [anon_sym_BSLASHPvolcite] = ACTIONS(4945), - [anon_sym_BSLASHfvolcite] = ACTIONS(4945), - [anon_sym_BSLASHftvolcite] = ACTIONS(4945), - [anon_sym_BSLASHsvolcite] = ACTIONS(4945), - [anon_sym_BSLASHSvolcite] = ACTIONS(4945), - [anon_sym_BSLASHtvolcite] = ACTIONS(4945), - [anon_sym_BSLASHTvolcite] = ACTIONS(4945), - [anon_sym_BSLASHavolcite] = ACTIONS(4945), - [anon_sym_BSLASHAvolcite] = ACTIONS(4945), - [anon_sym_BSLASHnotecite] = ACTIONS(4945), - [anon_sym_BSLASHNotecite] = ACTIONS(4945), - [anon_sym_BSLASHpnotecite] = ACTIONS(4945), - [anon_sym_BSLASHPnotecite] = ACTIONS(4945), - [anon_sym_BSLASHfnotecite] = ACTIONS(4945), - [anon_sym_BSLASHlabel] = ACTIONS(4945), - [anon_sym_BSLASHref] = ACTIONS(4945), - [anon_sym_BSLASHeqref] = ACTIONS(4945), - [anon_sym_BSLASHvref] = ACTIONS(4945), - [anon_sym_BSLASHVref] = ACTIONS(4945), - [anon_sym_BSLASHautoref] = ACTIONS(4945), - [anon_sym_BSLASHpageref] = ACTIONS(4945), - [anon_sym_BSLASHcref] = ACTIONS(4945), - [anon_sym_BSLASHCref] = ACTIONS(4945), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4943), - [anon_sym_BSLASHnamecref] = ACTIONS(4945), - [anon_sym_BSLASHnameCref] = ACTIONS(4945), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4945), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4945), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4945), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4945), - [anon_sym_BSLASHlabelcref] = ACTIONS(4945), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4945), - [anon_sym_BSLASHcrefrange] = ACTIONS(4945), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCrefrange] = ACTIONS(4945), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4943), - [anon_sym_BSLASHnewlabel] = ACTIONS(4945), - [anon_sym_BSLASHnewcommand] = ACTIONS(4945), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4945), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4945), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4945), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4943), - [anon_sym_BSLASHdef] = ACTIONS(4945), - [anon_sym_BSLASHlet] = ACTIONS(4945), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4945), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4945), - [anon_sym_BSLASHgls] = ACTIONS(4945), - [anon_sym_BSLASHGls] = ACTIONS(4945), - [anon_sym_BSLASHGLS] = ACTIONS(4945), - [anon_sym_BSLASHglspl] = ACTIONS(4945), - [anon_sym_BSLASHGlspl] = ACTIONS(4945), - [anon_sym_BSLASHGLSpl] = ACTIONS(4945), - [anon_sym_BSLASHglsdisp] = ACTIONS(4945), - [anon_sym_BSLASHglslink] = ACTIONS(4945), - [anon_sym_BSLASHglstext] = ACTIONS(4945), - [anon_sym_BSLASHGlstext] = ACTIONS(4945), - [anon_sym_BSLASHGLStext] = ACTIONS(4945), - [anon_sym_BSLASHglsfirst] = ACTIONS(4945), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4945), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4945), - [anon_sym_BSLASHglsplural] = ACTIONS(4945), - [anon_sym_BSLASHGlsplural] = ACTIONS(4945), - [anon_sym_BSLASHGLSplural] = ACTIONS(4945), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHglsname] = ACTIONS(4945), - [anon_sym_BSLASHGlsname] = ACTIONS(4945), - [anon_sym_BSLASHGLSname] = ACTIONS(4945), - [anon_sym_BSLASHglssymbol] = ACTIONS(4945), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4945), - [anon_sym_BSLASHglsdesc] = ACTIONS(4945), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4945), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4945), - [anon_sym_BSLASHglsuseri] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4945), - [anon_sym_BSLASHglsuserii] = ACTIONS(4945), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4945), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4945), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4945), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4945), - [anon_sym_BSLASHglsuserv] = ACTIONS(4945), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4945), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4945), - [anon_sym_BSLASHglsuservi] = ACTIONS(4945), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4945), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4945), - [anon_sym_BSLASHnewacronym] = ACTIONS(4945), - [anon_sym_BSLASHacrshort] = ACTIONS(4945), - [anon_sym_BSLASHAcrshort] = ACTIONS(4945), - [anon_sym_BSLASHACRshort] = ACTIONS(4945), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4945), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4945), - [anon_sym_BSLASHacrlong] = ACTIONS(4945), - [anon_sym_BSLASHAcrlong] = ACTIONS(4945), - [anon_sym_BSLASHACRlong] = ACTIONS(4945), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4945), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4945), - [anon_sym_BSLASHacrfull] = ACTIONS(4945), - [anon_sym_BSLASHAcrfull] = ACTIONS(4945), - [anon_sym_BSLASHACRfull] = ACTIONS(4945), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4945), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4945), - [anon_sym_BSLASHacs] = ACTIONS(4945), - [anon_sym_BSLASHAcs] = ACTIONS(4945), - [anon_sym_BSLASHacsp] = ACTIONS(4945), - [anon_sym_BSLASHAcsp] = ACTIONS(4945), - [anon_sym_BSLASHacl] = ACTIONS(4945), - [anon_sym_BSLASHAcl] = ACTIONS(4945), - [anon_sym_BSLASHaclp] = ACTIONS(4945), - [anon_sym_BSLASHAclp] = ACTIONS(4945), - [anon_sym_BSLASHacf] = ACTIONS(4945), - [anon_sym_BSLASHAcf] = ACTIONS(4945), - [anon_sym_BSLASHacfp] = ACTIONS(4945), - [anon_sym_BSLASHAcfp] = ACTIONS(4945), - [anon_sym_BSLASHac] = ACTIONS(4945), - [anon_sym_BSLASHAc] = ACTIONS(4945), - [anon_sym_BSLASHacp] = ACTIONS(4945), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4945), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4945), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4945), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4945), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4945), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4945), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4945), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4945), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4945), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4945), - [anon_sym_BSLASHcolor] = ACTIONS(4945), - [anon_sym_BSLASHcolorbox] = ACTIONS(4945), - [anon_sym_BSLASHtextcolor] = ACTIONS(4945), - [anon_sym_BSLASHpagecolor] = ACTIONS(4945), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4945), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4945), - }, - [879] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_BSLASHpart] = ACTIONS(5171), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddpart] = ACTIONS(5171), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHchapter] = ACTIONS(5171), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddchap] = ACTIONS(5171), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsection] = ACTIONS(5171), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddsec] = ACTIONS(5171), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHparagraph] = ACTIONS(5171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5171), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHitem] = ACTIONS(5171), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5169), - [anon_sym_BSLASHbegin] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), - }, - [880] = { - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_BSLASHpart] = ACTIONS(5163), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddpart] = ACTIONS(5163), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHchapter] = ACTIONS(5163), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddchap] = ACTIONS(5163), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsection] = ACTIONS(5163), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddsec] = ACTIONS(5163), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHparagraph] = ACTIONS(5163), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHitem] = ACTIONS(5163), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5161), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5161), - [anon_sym_BSLASHbegin] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), - }, - [881] = { - [sym_command_name] = ACTIONS(5155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5153), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_BSLASHpart] = ACTIONS(5155), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddpart] = ACTIONS(5155), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHchapter] = ACTIONS(5155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddchap] = ACTIONS(5155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsection] = ACTIONS(5155), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddsec] = ACTIONS(5155), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHparagraph] = ACTIONS(5155), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHitem] = ACTIONS(5155), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5153), - [sym_word] = ACTIONS(5155), - [sym_placeholder] = ACTIONS(5153), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5155), - [anon_sym__] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5155), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5153), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5153), - [anon_sym_BSLASHbegin] = ACTIONS(5155), - [anon_sym_BSLASHusepackage] = ACTIONS(5155), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5155), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5155), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5155), - [anon_sym_BSLASHbibliography] = ACTIONS(5155), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5155), - [anon_sym_BSLASHincludesvg] = ACTIONS(5155), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5155), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5155), - [anon_sym_BSLASHimport] = ACTIONS(5155), - [anon_sym_BSLASHsubimport] = ACTIONS(5155), - [anon_sym_BSLASHinputfrom] = ACTIONS(5155), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5155), - [anon_sym_BSLASHincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHcaption] = ACTIONS(5155), - [anon_sym_BSLASHcite] = ACTIONS(5155), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCite] = ACTIONS(5155), - [anon_sym_BSLASHnocite] = ACTIONS(5155), - [anon_sym_BSLASHcitet] = ACTIONS(5155), - [anon_sym_BSLASHcitep] = ACTIONS(5155), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteyear] = ACTIONS(5155), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitedate] = ACTIONS(5155), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteurl] = ACTIONS(5155), - [anon_sym_BSLASHfullcite] = ACTIONS(5155), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5155), - [anon_sym_BSLASHcitealt] = ACTIONS(5155), - [anon_sym_BSLASHcitealp] = ACTIONS(5155), - [anon_sym_BSLASHcitetext] = ACTIONS(5155), - [anon_sym_BSLASHparencite] = ACTIONS(5155), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHParencite] = ACTIONS(5155), - [anon_sym_BSLASHfootcite] = ACTIONS(5155), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5155), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5155), - [anon_sym_BSLASHtextcite] = ACTIONS(5155), - [anon_sym_BSLASHTextcite] = ACTIONS(5155), - [anon_sym_BSLASHsmartcite] = ACTIONS(5155), - [anon_sym_BSLASHSmartcite] = ACTIONS(5155), - [anon_sym_BSLASHsupercite] = ACTIONS(5155), - [anon_sym_BSLASHautocite] = ACTIONS(5155), - [anon_sym_BSLASHAutocite] = ACTIONS(5155), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHvolcite] = ACTIONS(5155), - [anon_sym_BSLASHVolcite] = ACTIONS(5155), - [anon_sym_BSLASHpvolcite] = ACTIONS(5155), - [anon_sym_BSLASHPvolcite] = ACTIONS(5155), - [anon_sym_BSLASHfvolcite] = ACTIONS(5155), - [anon_sym_BSLASHftvolcite] = ACTIONS(5155), - [anon_sym_BSLASHsvolcite] = ACTIONS(5155), - [anon_sym_BSLASHSvolcite] = ACTIONS(5155), - [anon_sym_BSLASHtvolcite] = ACTIONS(5155), - [anon_sym_BSLASHTvolcite] = ACTIONS(5155), - [anon_sym_BSLASHavolcite] = ACTIONS(5155), - [anon_sym_BSLASHAvolcite] = ACTIONS(5155), - [anon_sym_BSLASHnotecite] = ACTIONS(5155), - [anon_sym_BSLASHNotecite] = ACTIONS(5155), - [anon_sym_BSLASHpnotecite] = ACTIONS(5155), - [anon_sym_BSLASHPnotecite] = ACTIONS(5155), - [anon_sym_BSLASHfnotecite] = ACTIONS(5155), - [anon_sym_BSLASHlabel] = ACTIONS(5155), - [anon_sym_BSLASHref] = ACTIONS(5155), - [anon_sym_BSLASHeqref] = ACTIONS(5155), - [anon_sym_BSLASHvref] = ACTIONS(5155), - [anon_sym_BSLASHVref] = ACTIONS(5155), - [anon_sym_BSLASHautoref] = ACTIONS(5155), - [anon_sym_BSLASHpageref] = ACTIONS(5155), - [anon_sym_BSLASHcref] = ACTIONS(5155), - [anon_sym_BSLASHCref] = ACTIONS(5155), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnameCref] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHlabelcref] = ACTIONS(5155), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnewlabel] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdef] = ACTIONS(5155), - [anon_sym_BSLASHlet] = ACTIONS(5155), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5155), - [anon_sym_BSLASHgls] = ACTIONS(5155), - [anon_sym_BSLASHGls] = ACTIONS(5155), - [anon_sym_BSLASHGLS] = ACTIONS(5155), - [anon_sym_BSLASHglspl] = ACTIONS(5155), - [anon_sym_BSLASHGlspl] = ACTIONS(5155), - [anon_sym_BSLASHGLSpl] = ACTIONS(5155), - [anon_sym_BSLASHglsdisp] = ACTIONS(5155), - [anon_sym_BSLASHglslink] = ACTIONS(5155), - [anon_sym_BSLASHglstext] = ACTIONS(5155), - [anon_sym_BSLASHGlstext] = ACTIONS(5155), - [anon_sym_BSLASHGLStext] = ACTIONS(5155), - [anon_sym_BSLASHglsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5155), - [anon_sym_BSLASHglsplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSplural] = ACTIONS(5155), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHglsname] = ACTIONS(5155), - [anon_sym_BSLASHGlsname] = ACTIONS(5155), - [anon_sym_BSLASHGLSname] = ACTIONS(5155), - [anon_sym_BSLASHglssymbol] = ACTIONS(5155), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5155), - [anon_sym_BSLASHglsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5155), - [anon_sym_BSLASHglsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5155), - [anon_sym_BSLASHglsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5155), - [anon_sym_BSLASHglsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5155), - [anon_sym_BSLASHglsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5155), - [anon_sym_BSLASHnewacronym] = ACTIONS(5155), - [anon_sym_BSLASHacrshort] = ACTIONS(5155), - [anon_sym_BSLASHAcrshort] = ACTIONS(5155), - [anon_sym_BSLASHACRshort] = ACTIONS(5155), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5155), - [anon_sym_BSLASHacrlong] = ACTIONS(5155), - [anon_sym_BSLASHAcrlong] = ACTIONS(5155), - [anon_sym_BSLASHACRlong] = ACTIONS(5155), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5155), - [anon_sym_BSLASHacrfull] = ACTIONS(5155), - [anon_sym_BSLASHAcrfull] = ACTIONS(5155), - [anon_sym_BSLASHACRfull] = ACTIONS(5155), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5155), - [anon_sym_BSLASHacs] = ACTIONS(5155), - [anon_sym_BSLASHAcs] = ACTIONS(5155), - [anon_sym_BSLASHacsp] = ACTIONS(5155), - [anon_sym_BSLASHAcsp] = ACTIONS(5155), - [anon_sym_BSLASHacl] = ACTIONS(5155), - [anon_sym_BSLASHAcl] = ACTIONS(5155), - [anon_sym_BSLASHaclp] = ACTIONS(5155), - [anon_sym_BSLASHAclp] = ACTIONS(5155), - [anon_sym_BSLASHacf] = ACTIONS(5155), - [anon_sym_BSLASHAcf] = ACTIONS(5155), - [anon_sym_BSLASHacfp] = ACTIONS(5155), - [anon_sym_BSLASHAcfp] = ACTIONS(5155), - [anon_sym_BSLASHac] = ACTIONS(5155), - [anon_sym_BSLASHAc] = ACTIONS(5155), - [anon_sym_BSLASHacp] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), - [anon_sym_BSLASHcolor] = ACTIONS(5155), - [anon_sym_BSLASHcolorbox] = ACTIONS(5155), - [anon_sym_BSLASHtextcolor] = ACTIONS(5155), - [anon_sym_BSLASHpagecolor] = ACTIONS(5155), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5155), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5155), - }, - [882] = { - [sym_command_name] = ACTIONS(5147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5145), - [anon_sym_RPAREN] = ACTIONS(5145), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_RBRACK] = ACTIONS(5145), - [anon_sym_COMMA] = ACTIONS(5145), - [anon_sym_EQ] = ACTIONS(5145), - [anon_sym_BSLASHpart] = ACTIONS(5147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddpart] = ACTIONS(5147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5145), - [anon_sym_BSLASHchapter] = ACTIONS(5147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddchap] = ACTIONS(5147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsection] = ACTIONS(5147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddsec] = ACTIONS(5147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubsection] = ACTIONS(5147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHparagraph] = ACTIONS(5147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5145), - [anon_sym_BSLASHitem] = ACTIONS(5147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5145), - [anon_sym_LBRACE] = ACTIONS(5145), - [sym_word] = ACTIONS(5147), - [sym_placeholder] = ACTIONS(5145), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_CARET] = ACTIONS(5147), - [anon_sym__] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5147), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5145), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5145), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5145), - [anon_sym_BSLASHbegin] = ACTIONS(5147), - [anon_sym_BSLASHusepackage] = ACTIONS(5147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5147), - [anon_sym_BSLASHinclude] = ACTIONS(5147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5147), - [anon_sym_BSLASHinput] = ACTIONS(5147), - [anon_sym_BSLASHsubfile] = ACTIONS(5147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5147), - [anon_sym_BSLASHbibliography] = ACTIONS(5147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5147), - [anon_sym_BSLASHincludesvg] = ACTIONS(5147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5147), - [anon_sym_BSLASHimport] = ACTIONS(5147), - [anon_sym_BSLASHsubimport] = ACTIONS(5147), - [anon_sym_BSLASHinputfrom] = ACTIONS(5147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5147), - [anon_sym_BSLASHincludefrom] = ACTIONS(5147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5147), - [anon_sym_BSLASHcaption] = ACTIONS(5147), - [anon_sym_BSLASHcite] = ACTIONS(5147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCite] = ACTIONS(5147), - [anon_sym_BSLASHnocite] = ACTIONS(5147), - [anon_sym_BSLASHcitet] = ACTIONS(5147), - [anon_sym_BSLASHcitep] = ACTIONS(5147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteyear] = ACTIONS(5147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitedate] = ACTIONS(5147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteurl] = ACTIONS(5147), - [anon_sym_BSLASHfullcite] = ACTIONS(5147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5147), - [anon_sym_BSLASHcitealt] = ACTIONS(5147), - [anon_sym_BSLASHcitealp] = ACTIONS(5147), - [anon_sym_BSLASHcitetext] = ACTIONS(5147), - [anon_sym_BSLASHparencite] = ACTIONS(5147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHParencite] = ACTIONS(5147), - [anon_sym_BSLASHfootcite] = ACTIONS(5147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5147), - [anon_sym_BSLASHtextcite] = ACTIONS(5147), - [anon_sym_BSLASHTextcite] = ACTIONS(5147), - [anon_sym_BSLASHsmartcite] = ACTIONS(5147), - [anon_sym_BSLASHSmartcite] = ACTIONS(5147), - [anon_sym_BSLASHsupercite] = ACTIONS(5147), - [anon_sym_BSLASHautocite] = ACTIONS(5147), - [anon_sym_BSLASHAutocite] = ACTIONS(5147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHvolcite] = ACTIONS(5147), - [anon_sym_BSLASHVolcite] = ACTIONS(5147), - [anon_sym_BSLASHpvolcite] = ACTIONS(5147), - [anon_sym_BSLASHPvolcite] = ACTIONS(5147), - [anon_sym_BSLASHfvolcite] = ACTIONS(5147), - [anon_sym_BSLASHftvolcite] = ACTIONS(5147), - [anon_sym_BSLASHsvolcite] = ACTIONS(5147), - [anon_sym_BSLASHSvolcite] = ACTIONS(5147), - [anon_sym_BSLASHtvolcite] = ACTIONS(5147), - [anon_sym_BSLASHTvolcite] = ACTIONS(5147), - [anon_sym_BSLASHavolcite] = ACTIONS(5147), - [anon_sym_BSLASHAvolcite] = ACTIONS(5147), - [anon_sym_BSLASHnotecite] = ACTIONS(5147), - [anon_sym_BSLASHNotecite] = ACTIONS(5147), - [anon_sym_BSLASHpnotecite] = ACTIONS(5147), - [anon_sym_BSLASHPnotecite] = ACTIONS(5147), - [anon_sym_BSLASHfnotecite] = ACTIONS(5147), - [anon_sym_BSLASHlabel] = ACTIONS(5147), - [anon_sym_BSLASHref] = ACTIONS(5147), - [anon_sym_BSLASHeqref] = ACTIONS(5147), - [anon_sym_BSLASHvref] = ACTIONS(5147), - [anon_sym_BSLASHVref] = ACTIONS(5147), - [anon_sym_BSLASHautoref] = ACTIONS(5147), - [anon_sym_BSLASHpageref] = ACTIONS(5147), - [anon_sym_BSLASHcref] = ACTIONS(5147), - [anon_sym_BSLASHCref] = ACTIONS(5147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5145), - [anon_sym_BSLASHnamecref] = ACTIONS(5147), - [anon_sym_BSLASHnameCref] = ACTIONS(5147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5147), - [anon_sym_BSLASHlabelcref] = ACTIONS(5147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5147), - [anon_sym_BSLASHcrefrange] = ACTIONS(5147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5145), - [anon_sym_BSLASHnewlabel] = ACTIONS(5147), - [anon_sym_BSLASHnewcommand] = ACTIONS(5147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5145), - [anon_sym_BSLASHdef] = ACTIONS(5147), - [anon_sym_BSLASHlet] = ACTIONS(5147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5147), - [anon_sym_BSLASHgls] = ACTIONS(5147), - [anon_sym_BSLASHGls] = ACTIONS(5147), - [anon_sym_BSLASHGLS] = ACTIONS(5147), - [anon_sym_BSLASHglspl] = ACTIONS(5147), - [anon_sym_BSLASHGlspl] = ACTIONS(5147), - [anon_sym_BSLASHGLSpl] = ACTIONS(5147), - [anon_sym_BSLASHglsdisp] = ACTIONS(5147), - [anon_sym_BSLASHglslink] = ACTIONS(5147), - [anon_sym_BSLASHglstext] = ACTIONS(5147), - [anon_sym_BSLASHGlstext] = ACTIONS(5147), - [anon_sym_BSLASHGLStext] = ACTIONS(5147), - [anon_sym_BSLASHglsfirst] = ACTIONS(5147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5147), - [anon_sym_BSLASHglsplural] = ACTIONS(5147), - [anon_sym_BSLASHGlsplural] = ACTIONS(5147), - [anon_sym_BSLASHGLSplural] = ACTIONS(5147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHglsname] = ACTIONS(5147), - [anon_sym_BSLASHGlsname] = ACTIONS(5147), - [anon_sym_BSLASHGLSname] = ACTIONS(5147), - [anon_sym_BSLASHglssymbol] = ACTIONS(5147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5147), - [anon_sym_BSLASHglsdesc] = ACTIONS(5147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5147), - [anon_sym_BSLASHglsuseri] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5147), - [anon_sym_BSLASHglsuserii] = ACTIONS(5147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5147), - [anon_sym_BSLASHglsuserv] = ACTIONS(5147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5147), - [anon_sym_BSLASHglsuservi] = ACTIONS(5147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5147), - [anon_sym_BSLASHnewacronym] = ACTIONS(5147), - [anon_sym_BSLASHacrshort] = ACTIONS(5147), - [anon_sym_BSLASHAcrshort] = ACTIONS(5147), - [anon_sym_BSLASHACRshort] = ACTIONS(5147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5147), - [anon_sym_BSLASHacrlong] = ACTIONS(5147), - [anon_sym_BSLASHAcrlong] = ACTIONS(5147), - [anon_sym_BSLASHACRlong] = ACTIONS(5147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5147), - [anon_sym_BSLASHacrfull] = ACTIONS(5147), - [anon_sym_BSLASHAcrfull] = ACTIONS(5147), - [anon_sym_BSLASHACRfull] = ACTIONS(5147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5147), - [anon_sym_BSLASHacs] = ACTIONS(5147), - [anon_sym_BSLASHAcs] = ACTIONS(5147), - [anon_sym_BSLASHacsp] = ACTIONS(5147), - [anon_sym_BSLASHAcsp] = ACTIONS(5147), - [anon_sym_BSLASHacl] = ACTIONS(5147), - [anon_sym_BSLASHAcl] = ACTIONS(5147), - [anon_sym_BSLASHaclp] = ACTIONS(5147), - [anon_sym_BSLASHAclp] = ACTIONS(5147), - [anon_sym_BSLASHacf] = ACTIONS(5147), - [anon_sym_BSLASHAcf] = ACTIONS(5147), - [anon_sym_BSLASHacfp] = ACTIONS(5147), - [anon_sym_BSLASHAcfp] = ACTIONS(5147), - [anon_sym_BSLASHac] = ACTIONS(5147), - [anon_sym_BSLASHAc] = ACTIONS(5147), - [anon_sym_BSLASHacp] = ACTIONS(5147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5147), - [anon_sym_BSLASHcolor] = ACTIONS(5147), - [anon_sym_BSLASHcolorbox] = ACTIONS(5147), - [anon_sym_BSLASHtextcolor] = ACTIONS(5147), - [anon_sym_BSLASHpagecolor] = ACTIONS(5147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5147), - }, - [883] = { - [sym_command_name] = ACTIONS(5117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_BSLASHpart] = ACTIONS(5117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddpart] = ACTIONS(5117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHchapter] = ACTIONS(5117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddchap] = ACTIONS(5117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsection] = ACTIONS(5117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddsec] = ACTIONS(5117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHparagraph] = ACTIONS(5117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHitem] = ACTIONS(5117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [sym_word] = ACTIONS(5117), - [sym_placeholder] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym__] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5117), - [anon_sym_PIPE] = ACTIONS(5117), - [anon_sym_COLON] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5115), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5115), - [anon_sym_BSLASHbegin] = ACTIONS(5117), - [anon_sym_BSLASHusepackage] = ACTIONS(5117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5117), - [anon_sym_BSLASHinclude] = ACTIONS(5117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5117), - [anon_sym_BSLASHinput] = ACTIONS(5117), - [anon_sym_BSLASHsubfile] = ACTIONS(5117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5117), - [anon_sym_BSLASHbibliography] = ACTIONS(5117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5117), - [anon_sym_BSLASHincludesvg] = ACTIONS(5117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5117), - [anon_sym_BSLASHimport] = ACTIONS(5117), - [anon_sym_BSLASHsubimport] = ACTIONS(5117), - [anon_sym_BSLASHinputfrom] = ACTIONS(5117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5117), - [anon_sym_BSLASHincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHcaption] = ACTIONS(5117), - [anon_sym_BSLASHcite] = ACTIONS(5117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCite] = ACTIONS(5117), - [anon_sym_BSLASHnocite] = ACTIONS(5117), - [anon_sym_BSLASHcitet] = ACTIONS(5117), - [anon_sym_BSLASHcitep] = ACTIONS(5117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteyear] = ACTIONS(5117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitedate] = ACTIONS(5117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteurl] = ACTIONS(5117), - [anon_sym_BSLASHfullcite] = ACTIONS(5117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5117), - [anon_sym_BSLASHcitealt] = ACTIONS(5117), - [anon_sym_BSLASHcitealp] = ACTIONS(5117), - [anon_sym_BSLASHcitetext] = ACTIONS(5117), - [anon_sym_BSLASHparencite] = ACTIONS(5117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHParencite] = ACTIONS(5117), - [anon_sym_BSLASHfootcite] = ACTIONS(5117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5117), - [anon_sym_BSLASHtextcite] = ACTIONS(5117), - [anon_sym_BSLASHTextcite] = ACTIONS(5117), - [anon_sym_BSLASHsmartcite] = ACTIONS(5117), - [anon_sym_BSLASHSmartcite] = ACTIONS(5117), - [anon_sym_BSLASHsupercite] = ACTIONS(5117), - [anon_sym_BSLASHautocite] = ACTIONS(5117), - [anon_sym_BSLASHAutocite] = ACTIONS(5117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHvolcite] = ACTIONS(5117), - [anon_sym_BSLASHVolcite] = ACTIONS(5117), - [anon_sym_BSLASHpvolcite] = ACTIONS(5117), - [anon_sym_BSLASHPvolcite] = ACTIONS(5117), - [anon_sym_BSLASHfvolcite] = ACTIONS(5117), - [anon_sym_BSLASHftvolcite] = ACTIONS(5117), - [anon_sym_BSLASHsvolcite] = ACTIONS(5117), - [anon_sym_BSLASHSvolcite] = ACTIONS(5117), - [anon_sym_BSLASHtvolcite] = ACTIONS(5117), - [anon_sym_BSLASHTvolcite] = ACTIONS(5117), - [anon_sym_BSLASHavolcite] = ACTIONS(5117), - [anon_sym_BSLASHAvolcite] = ACTIONS(5117), - [anon_sym_BSLASHnotecite] = ACTIONS(5117), - [anon_sym_BSLASHNotecite] = ACTIONS(5117), - [anon_sym_BSLASHpnotecite] = ACTIONS(5117), - [anon_sym_BSLASHPnotecite] = ACTIONS(5117), - [anon_sym_BSLASHfnotecite] = ACTIONS(5117), - [anon_sym_BSLASHlabel] = ACTIONS(5117), - [anon_sym_BSLASHref] = ACTIONS(5117), - [anon_sym_BSLASHeqref] = ACTIONS(5117), - [anon_sym_BSLASHvref] = ACTIONS(5117), - [anon_sym_BSLASHVref] = ACTIONS(5117), - [anon_sym_BSLASHautoref] = ACTIONS(5117), - [anon_sym_BSLASHpageref] = ACTIONS(5117), - [anon_sym_BSLASHcref] = ACTIONS(5117), - [anon_sym_BSLASHCref] = ACTIONS(5117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnameCref] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHlabelcref] = ACTIONS(5117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnewlabel] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdef] = ACTIONS(5117), - [anon_sym_BSLASHlet] = ACTIONS(5117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5117), - [anon_sym_BSLASHgls] = ACTIONS(5117), - [anon_sym_BSLASHGls] = ACTIONS(5117), - [anon_sym_BSLASHGLS] = ACTIONS(5117), - [anon_sym_BSLASHglspl] = ACTIONS(5117), - [anon_sym_BSLASHGlspl] = ACTIONS(5117), - [anon_sym_BSLASHGLSpl] = ACTIONS(5117), - [anon_sym_BSLASHglsdisp] = ACTIONS(5117), - [anon_sym_BSLASHglslink] = ACTIONS(5117), - [anon_sym_BSLASHglstext] = ACTIONS(5117), - [anon_sym_BSLASHGlstext] = ACTIONS(5117), - [anon_sym_BSLASHGLStext] = ACTIONS(5117), - [anon_sym_BSLASHglsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5117), - [anon_sym_BSLASHglsplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSplural] = ACTIONS(5117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHglsname] = ACTIONS(5117), - [anon_sym_BSLASHGlsname] = ACTIONS(5117), - [anon_sym_BSLASHGLSname] = ACTIONS(5117), - [anon_sym_BSLASHglssymbol] = ACTIONS(5117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5117), - [anon_sym_BSLASHglsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5117), - [anon_sym_BSLASHglsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5117), - [anon_sym_BSLASHglsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5117), - [anon_sym_BSLASHglsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5117), - [anon_sym_BSLASHglsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5117), - [anon_sym_BSLASHnewacronym] = ACTIONS(5117), - [anon_sym_BSLASHacrshort] = ACTIONS(5117), - [anon_sym_BSLASHAcrshort] = ACTIONS(5117), - [anon_sym_BSLASHACRshort] = ACTIONS(5117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5117), - [anon_sym_BSLASHacrlong] = ACTIONS(5117), - [anon_sym_BSLASHAcrlong] = ACTIONS(5117), - [anon_sym_BSLASHACRlong] = ACTIONS(5117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5117), - [anon_sym_BSLASHacrfull] = ACTIONS(5117), - [anon_sym_BSLASHAcrfull] = ACTIONS(5117), - [anon_sym_BSLASHACRfull] = ACTIONS(5117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5117), - [anon_sym_BSLASHacs] = ACTIONS(5117), - [anon_sym_BSLASHAcs] = ACTIONS(5117), - [anon_sym_BSLASHacsp] = ACTIONS(5117), - [anon_sym_BSLASHAcsp] = ACTIONS(5117), - [anon_sym_BSLASHacl] = ACTIONS(5117), - [anon_sym_BSLASHAcl] = ACTIONS(5117), - [anon_sym_BSLASHaclp] = ACTIONS(5117), - [anon_sym_BSLASHAclp] = ACTIONS(5117), - [anon_sym_BSLASHacf] = ACTIONS(5117), - [anon_sym_BSLASHAcf] = ACTIONS(5117), - [anon_sym_BSLASHacfp] = ACTIONS(5117), - [anon_sym_BSLASHAcfp] = ACTIONS(5117), - [anon_sym_BSLASHac] = ACTIONS(5117), - [anon_sym_BSLASHAc] = ACTIONS(5117), - [anon_sym_BSLASHacp] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5117), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5117), - [anon_sym_BSLASHcolor] = ACTIONS(5117), - [anon_sym_BSLASHcolorbox] = ACTIONS(5117), - [anon_sym_BSLASHtextcolor] = ACTIONS(5117), - [anon_sym_BSLASHpagecolor] = ACTIONS(5117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5117), - }, - [884] = { - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_BSLASHpart] = ACTIONS(5113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddpart] = ACTIONS(5113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHchapter] = ACTIONS(5113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddchap] = ACTIONS(5113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsection] = ACTIONS(5113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddsec] = ACTIONS(5113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHparagraph] = ACTIONS(5113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHitem] = ACTIONS(5113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5111), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5111), - [anon_sym_BSLASHbegin] = ACTIONS(5113), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), - }, - [885] = { - [sym_command_name] = ACTIONS(5109), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_BSLASHpart] = ACTIONS(5109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddpart] = ACTIONS(5109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHchapter] = ACTIONS(5109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddchap] = ACTIONS(5109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsection] = ACTIONS(5109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddsec] = ACTIONS(5109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHparagraph] = ACTIONS(5109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHitem] = ACTIONS(5109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5107), - [anon_sym_BSLASHbegin] = ACTIONS(5109), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), - }, - [886] = { - [sym_command_name] = ACTIONS(5105), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_BSLASHpart] = ACTIONS(5105), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddpart] = ACTIONS(5105), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHchapter] = ACTIONS(5105), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddchap] = ACTIONS(5105), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsection] = ACTIONS(5105), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddsec] = ACTIONS(5105), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHparagraph] = ACTIONS(5105), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHitem] = ACTIONS(5105), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [sym_word] = ACTIONS(5105), - [sym_placeholder] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym__] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_COLON] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5105), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5105), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5103), - [anon_sym_BSLASHbegin] = ACTIONS(5105), - [anon_sym_BSLASHusepackage] = ACTIONS(5105), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), - [anon_sym_BSLASHinclude] = ACTIONS(5105), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), - [anon_sym_BSLASHinput] = ACTIONS(5105), - [anon_sym_BSLASHsubfile] = ACTIONS(5105), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), - [anon_sym_BSLASHbibliography] = ACTIONS(5105), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), - [anon_sym_BSLASHincludesvg] = ACTIONS(5105), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), - [anon_sym_BSLASHimport] = ACTIONS(5105), - [anon_sym_BSLASHsubimport] = ACTIONS(5105), - [anon_sym_BSLASHinputfrom] = ACTIONS(5105), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), - [anon_sym_BSLASHincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHcaption] = ACTIONS(5105), - [anon_sym_BSLASHcite] = ACTIONS(5105), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCite] = ACTIONS(5105), - [anon_sym_BSLASHnocite] = ACTIONS(5105), - [anon_sym_BSLASHcitet] = ACTIONS(5105), - [anon_sym_BSLASHcitep] = ACTIONS(5105), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteauthor] = ACTIONS(5105), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitetitle] = ACTIONS(5105), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteyear] = ACTIONS(5105), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitedate] = ACTIONS(5105), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteurl] = ACTIONS(5105), - [anon_sym_BSLASHfullcite] = ACTIONS(5105), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), - [anon_sym_BSLASHcitealt] = ACTIONS(5105), - [anon_sym_BSLASHcitealp] = ACTIONS(5105), - [anon_sym_BSLASHcitetext] = ACTIONS(5105), - [anon_sym_BSLASHparencite] = ACTIONS(5105), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHParencite] = ACTIONS(5105), - [anon_sym_BSLASHfootcite] = ACTIONS(5105), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), - [anon_sym_BSLASHtextcite] = ACTIONS(5105), - [anon_sym_BSLASHTextcite] = ACTIONS(5105), - [anon_sym_BSLASHsmartcite] = ACTIONS(5105), - [anon_sym_BSLASHSmartcite] = ACTIONS(5105), - [anon_sym_BSLASHsupercite] = ACTIONS(5105), - [anon_sym_BSLASHautocite] = ACTIONS(5105), - [anon_sym_BSLASHAutocite] = ACTIONS(5105), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHvolcite] = ACTIONS(5105), - [anon_sym_BSLASHVolcite] = ACTIONS(5105), - [anon_sym_BSLASHpvolcite] = ACTIONS(5105), - [anon_sym_BSLASHPvolcite] = ACTIONS(5105), - [anon_sym_BSLASHfvolcite] = ACTIONS(5105), - [anon_sym_BSLASHftvolcite] = ACTIONS(5105), - [anon_sym_BSLASHsvolcite] = ACTIONS(5105), - [anon_sym_BSLASHSvolcite] = ACTIONS(5105), - [anon_sym_BSLASHtvolcite] = ACTIONS(5105), - [anon_sym_BSLASHTvolcite] = ACTIONS(5105), - [anon_sym_BSLASHavolcite] = ACTIONS(5105), - [anon_sym_BSLASHAvolcite] = ACTIONS(5105), - [anon_sym_BSLASHnotecite] = ACTIONS(5105), - [anon_sym_BSLASHNotecite] = ACTIONS(5105), - [anon_sym_BSLASHpnotecite] = ACTIONS(5105), - [anon_sym_BSLASHPnotecite] = ACTIONS(5105), - [anon_sym_BSLASHfnotecite] = ACTIONS(5105), - [anon_sym_BSLASHlabel] = ACTIONS(5105), - [anon_sym_BSLASHref] = ACTIONS(5105), - [anon_sym_BSLASHeqref] = ACTIONS(5105), - [anon_sym_BSLASHvref] = ACTIONS(5105), - [anon_sym_BSLASHVref] = ACTIONS(5105), - [anon_sym_BSLASHautoref] = ACTIONS(5105), - [anon_sym_BSLASHpageref] = ACTIONS(5105), - [anon_sym_BSLASHcref] = ACTIONS(5105), - [anon_sym_BSLASHCref] = ACTIONS(5105), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnameCref] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHlabelcref] = ACTIONS(5105), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCrefrange] = ACTIONS(5105), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnewlabel] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdef] = ACTIONS(5105), - [anon_sym_BSLASHlet] = ACTIONS(5105), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), - [anon_sym_BSLASHgls] = ACTIONS(5105), - [anon_sym_BSLASHGls] = ACTIONS(5105), - [anon_sym_BSLASHGLS] = ACTIONS(5105), - [anon_sym_BSLASHglspl] = ACTIONS(5105), - [anon_sym_BSLASHGlspl] = ACTIONS(5105), - [anon_sym_BSLASHGLSpl] = ACTIONS(5105), - [anon_sym_BSLASHglsdisp] = ACTIONS(5105), - [anon_sym_BSLASHglslink] = ACTIONS(5105), - [anon_sym_BSLASHglstext] = ACTIONS(5105), - [anon_sym_BSLASHGlstext] = ACTIONS(5105), - [anon_sym_BSLASHGLStext] = ACTIONS(5105), - [anon_sym_BSLASHglsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), - [anon_sym_BSLASHglsplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSplural] = ACTIONS(5105), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHglsname] = ACTIONS(5105), - [anon_sym_BSLASHGlsname] = ACTIONS(5105), - [anon_sym_BSLASHGLSname] = ACTIONS(5105), - [anon_sym_BSLASHglssymbol] = ACTIONS(5105), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), - [anon_sym_BSLASHglsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), - [anon_sym_BSLASHglsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), - [anon_sym_BSLASHglsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), - [anon_sym_BSLASHglsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), - [anon_sym_BSLASHglsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), - [anon_sym_BSLASHnewacronym] = ACTIONS(5105), - [anon_sym_BSLASHacrshort] = ACTIONS(5105), - [anon_sym_BSLASHAcrshort] = ACTIONS(5105), - [anon_sym_BSLASHACRshort] = ACTIONS(5105), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), - [anon_sym_BSLASHacrlong] = ACTIONS(5105), - [anon_sym_BSLASHAcrlong] = ACTIONS(5105), - [anon_sym_BSLASHACRlong] = ACTIONS(5105), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), - [anon_sym_BSLASHacrfull] = ACTIONS(5105), - [anon_sym_BSLASHAcrfull] = ACTIONS(5105), - [anon_sym_BSLASHACRfull] = ACTIONS(5105), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), - [anon_sym_BSLASHacs] = ACTIONS(5105), - [anon_sym_BSLASHAcs] = ACTIONS(5105), - [anon_sym_BSLASHacsp] = ACTIONS(5105), - [anon_sym_BSLASHAcsp] = ACTIONS(5105), - [anon_sym_BSLASHacl] = ACTIONS(5105), - [anon_sym_BSLASHAcl] = ACTIONS(5105), - [anon_sym_BSLASHaclp] = ACTIONS(5105), - [anon_sym_BSLASHAclp] = ACTIONS(5105), - [anon_sym_BSLASHacf] = ACTIONS(5105), - [anon_sym_BSLASHAcf] = ACTIONS(5105), - [anon_sym_BSLASHacfp] = ACTIONS(5105), - [anon_sym_BSLASHAcfp] = ACTIONS(5105), - [anon_sym_BSLASHac] = ACTIONS(5105), - [anon_sym_BSLASHAc] = ACTIONS(5105), - [anon_sym_BSLASHacp] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), - [anon_sym_BSLASHcolor] = ACTIONS(5105), - [anon_sym_BSLASHcolorbox] = ACTIONS(5105), - [anon_sym_BSLASHtextcolor] = ACTIONS(5105), - [anon_sym_BSLASHpagecolor] = ACTIONS(5105), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), - }, - [887] = { - [sym_command_name] = ACTIONS(5097), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_BSLASHpart] = ACTIONS(5097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddpart] = ACTIONS(5097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHchapter] = ACTIONS(5097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddchap] = ACTIONS(5097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsection] = ACTIONS(5097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddsec] = ACTIONS(5097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHparagraph] = ACTIONS(5097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHitem] = ACTIONS(5097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5095), - [anon_sym_BSLASHbegin] = ACTIONS(5097), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), - }, - [888] = { - [sym_command_name] = ACTIONS(5085), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_BSLASHpart] = ACTIONS(5085), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddpart] = ACTIONS(5085), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHchapter] = ACTIONS(5085), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddchap] = ACTIONS(5085), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsection] = ACTIONS(5085), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddsec] = ACTIONS(5085), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHparagraph] = ACTIONS(5085), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHitem] = ACTIONS(5085), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5083), - [anon_sym_BSLASHbegin] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), - }, - [889] = { - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_BSLASHpart] = ACTIONS(5179), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddpart] = ACTIONS(5179), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHchapter] = ACTIONS(5179), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddchap] = ACTIONS(5179), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsection] = ACTIONS(5179), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddsec] = ACTIONS(5179), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHparagraph] = ACTIONS(5179), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHitem] = ACTIONS(5179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASHbegin] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), - }, - [890] = { - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_BSLASHpart] = ACTIONS(141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddpart] = ACTIONS(141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHchapter] = ACTIONS(141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddchap] = ACTIONS(141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), - [anon_sym_BSLASHsection] = ACTIONS(141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddsec] = ACTIONS(141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHparagraph] = ACTIONS(141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHitem] = ACTIONS(141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASH_RBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - }, - [891] = { - [sym_command_name] = ACTIONS(5259), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5259), - [anon_sym_LPAREN] = ACTIONS(5257), - [anon_sym_RPAREN] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(5257), - [anon_sym_RBRACK] = ACTIONS(5257), - [anon_sym_COMMA] = ACTIONS(5257), - [anon_sym_EQ] = ACTIONS(5257), - [anon_sym_BSLASHpart] = ACTIONS(5259), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddpart] = ACTIONS(5259), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5257), - [anon_sym_BSLASHchapter] = ACTIONS(5259), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddchap] = ACTIONS(5259), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsection] = ACTIONS(5259), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddsec] = ACTIONS(5259), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubsection] = ACTIONS(5259), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5259), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHparagraph] = ACTIONS(5259), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5259), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5257), - [anon_sym_BSLASHitem] = ACTIONS(5259), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5257), - [anon_sym_LBRACE] = ACTIONS(5257), - [sym_word] = ACTIONS(5259), - [sym_placeholder] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5259), - [anon_sym_STAR] = ACTIONS(5259), - [anon_sym_SLASH] = ACTIONS(5259), - [anon_sym_CARET] = ACTIONS(5259), - [anon_sym__] = ACTIONS(5259), - [anon_sym_LT] = ACTIONS(5259), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_BANG] = ACTIONS(5259), - [anon_sym_PIPE] = ACTIONS(5259), - [anon_sym_COLON] = ACTIONS(5259), - [anon_sym_SQUOTE] = ACTIONS(5259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5257), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5257), - [anon_sym_DOLLAR] = ACTIONS(5259), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5257), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5257), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5257), - [anon_sym_BSLASHbegin] = ACTIONS(5259), - [anon_sym_BSLASHusepackage] = ACTIONS(5259), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5259), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5259), - [anon_sym_BSLASHinclude] = ACTIONS(5259), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5259), - [anon_sym_BSLASHinput] = ACTIONS(5259), - [anon_sym_BSLASHsubfile] = ACTIONS(5259), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5259), - [anon_sym_BSLASHbibliography] = ACTIONS(5259), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5259), - [anon_sym_BSLASHincludesvg] = ACTIONS(5259), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5259), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5259), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5259), - [anon_sym_BSLASHimport] = ACTIONS(5259), - [anon_sym_BSLASHsubimport] = ACTIONS(5259), - [anon_sym_BSLASHinputfrom] = ACTIONS(5259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5259), - [anon_sym_BSLASHincludefrom] = ACTIONS(5259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5259), - [anon_sym_BSLASHcaption] = ACTIONS(5259), - [anon_sym_BSLASHcite] = ACTIONS(5259), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCite] = ACTIONS(5259), - [anon_sym_BSLASHnocite] = ACTIONS(5259), - [anon_sym_BSLASHcitet] = ACTIONS(5259), - [anon_sym_BSLASHcitep] = ACTIONS(5259), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteauthor] = ACTIONS(5259), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5259), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitetitle] = ACTIONS(5259), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteyear] = ACTIONS(5259), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitedate] = ACTIONS(5259), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteurl] = ACTIONS(5259), - [anon_sym_BSLASHfullcite] = ACTIONS(5259), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5259), - [anon_sym_BSLASHcitealt] = ACTIONS(5259), - [anon_sym_BSLASHcitealp] = ACTIONS(5259), - [anon_sym_BSLASHcitetext] = ACTIONS(5259), - [anon_sym_BSLASHparencite] = ACTIONS(5259), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHParencite] = ACTIONS(5259), - [anon_sym_BSLASHfootcite] = ACTIONS(5259), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5259), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5259), - [anon_sym_BSLASHtextcite] = ACTIONS(5259), - [anon_sym_BSLASHTextcite] = ACTIONS(5259), - [anon_sym_BSLASHsmartcite] = ACTIONS(5259), - [anon_sym_BSLASHSmartcite] = ACTIONS(5259), - [anon_sym_BSLASHsupercite] = ACTIONS(5259), - [anon_sym_BSLASHautocite] = ACTIONS(5259), - [anon_sym_BSLASHAutocite] = ACTIONS(5259), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHvolcite] = ACTIONS(5259), - [anon_sym_BSLASHVolcite] = ACTIONS(5259), - [anon_sym_BSLASHpvolcite] = ACTIONS(5259), - [anon_sym_BSLASHPvolcite] = ACTIONS(5259), - [anon_sym_BSLASHfvolcite] = ACTIONS(5259), - [anon_sym_BSLASHftvolcite] = ACTIONS(5259), - [anon_sym_BSLASHsvolcite] = ACTIONS(5259), - [anon_sym_BSLASHSvolcite] = ACTIONS(5259), - [anon_sym_BSLASHtvolcite] = ACTIONS(5259), - [anon_sym_BSLASHTvolcite] = ACTIONS(5259), - [anon_sym_BSLASHavolcite] = ACTIONS(5259), - [anon_sym_BSLASHAvolcite] = ACTIONS(5259), - [anon_sym_BSLASHnotecite] = ACTIONS(5259), - [anon_sym_BSLASHNotecite] = ACTIONS(5259), - [anon_sym_BSLASHpnotecite] = ACTIONS(5259), - [anon_sym_BSLASHPnotecite] = ACTIONS(5259), - [anon_sym_BSLASHfnotecite] = ACTIONS(5259), - [anon_sym_BSLASHlabel] = ACTIONS(5259), - [anon_sym_BSLASHref] = ACTIONS(5259), - [anon_sym_BSLASHeqref] = ACTIONS(5259), - [anon_sym_BSLASHvref] = ACTIONS(5259), - [anon_sym_BSLASHVref] = ACTIONS(5259), - [anon_sym_BSLASHautoref] = ACTIONS(5259), - [anon_sym_BSLASHpageref] = ACTIONS(5259), - [anon_sym_BSLASHcref] = ACTIONS(5259), - [anon_sym_BSLASHCref] = ACTIONS(5259), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5257), - [anon_sym_BSLASHnamecref] = ACTIONS(5259), - [anon_sym_BSLASHnameCref] = ACTIONS(5259), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5259), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5259), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5259), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5259), - [anon_sym_BSLASHlabelcref] = ACTIONS(5259), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5259), - [anon_sym_BSLASHcrefrange] = ACTIONS(5259), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCrefrange] = ACTIONS(5259), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5257), - [anon_sym_BSLASHnewlabel] = ACTIONS(5259), - [anon_sym_BSLASHnewcommand] = ACTIONS(5259), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5259), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5259), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5259), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5257), - [anon_sym_BSLASHdef] = ACTIONS(5259), - [anon_sym_BSLASHlet] = ACTIONS(5259), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5259), - [anon_sym_BSLASHgls] = ACTIONS(5259), - [anon_sym_BSLASHGls] = ACTIONS(5259), - [anon_sym_BSLASHGLS] = ACTIONS(5259), - [anon_sym_BSLASHglspl] = ACTIONS(5259), - [anon_sym_BSLASHGlspl] = ACTIONS(5259), - [anon_sym_BSLASHGLSpl] = ACTIONS(5259), - [anon_sym_BSLASHglsdisp] = ACTIONS(5259), - [anon_sym_BSLASHglslink] = ACTIONS(5259), - [anon_sym_BSLASHglstext] = ACTIONS(5259), - [anon_sym_BSLASHGlstext] = ACTIONS(5259), - [anon_sym_BSLASHGLStext] = ACTIONS(5259), - [anon_sym_BSLASHglsfirst] = ACTIONS(5259), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5259), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5259), - [anon_sym_BSLASHglsplural] = ACTIONS(5259), - [anon_sym_BSLASHGlsplural] = ACTIONS(5259), - [anon_sym_BSLASHGLSplural] = ACTIONS(5259), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHglsname] = ACTIONS(5259), - [anon_sym_BSLASHGlsname] = ACTIONS(5259), - [anon_sym_BSLASHGLSname] = ACTIONS(5259), - [anon_sym_BSLASHglssymbol] = ACTIONS(5259), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5259), - [anon_sym_BSLASHglsdesc] = ACTIONS(5259), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5259), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5259), - [anon_sym_BSLASHglsuseri] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5259), - [anon_sym_BSLASHglsuserii] = ACTIONS(5259), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5259), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5259), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5259), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5259), - [anon_sym_BSLASHglsuserv] = ACTIONS(5259), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5259), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5259), - [anon_sym_BSLASHglsuservi] = ACTIONS(5259), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5259), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5259), - [anon_sym_BSLASHnewacronym] = ACTIONS(5259), - [anon_sym_BSLASHacrshort] = ACTIONS(5259), - [anon_sym_BSLASHAcrshort] = ACTIONS(5259), - [anon_sym_BSLASHACRshort] = ACTIONS(5259), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5259), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5259), - [anon_sym_BSLASHacrlong] = ACTIONS(5259), - [anon_sym_BSLASHAcrlong] = ACTIONS(5259), - [anon_sym_BSLASHACRlong] = ACTIONS(5259), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5259), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5259), - [anon_sym_BSLASHacrfull] = ACTIONS(5259), - [anon_sym_BSLASHAcrfull] = ACTIONS(5259), - [anon_sym_BSLASHACRfull] = ACTIONS(5259), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5259), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5259), - [anon_sym_BSLASHacs] = ACTIONS(5259), - [anon_sym_BSLASHAcs] = ACTIONS(5259), - [anon_sym_BSLASHacsp] = ACTIONS(5259), - [anon_sym_BSLASHAcsp] = ACTIONS(5259), - [anon_sym_BSLASHacl] = ACTIONS(5259), - [anon_sym_BSLASHAcl] = ACTIONS(5259), - [anon_sym_BSLASHaclp] = ACTIONS(5259), - [anon_sym_BSLASHAclp] = ACTIONS(5259), - [anon_sym_BSLASHacf] = ACTIONS(5259), - [anon_sym_BSLASHAcf] = ACTIONS(5259), - [anon_sym_BSLASHacfp] = ACTIONS(5259), - [anon_sym_BSLASHAcfp] = ACTIONS(5259), - [anon_sym_BSLASHac] = ACTIONS(5259), - [anon_sym_BSLASHAc] = ACTIONS(5259), - [anon_sym_BSLASHacp] = ACTIONS(5259), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5259), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5259), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5259), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5259), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5259), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5259), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5259), - [anon_sym_BSLASHcolor] = ACTIONS(5259), - [anon_sym_BSLASHcolorbox] = ACTIONS(5259), - [anon_sym_BSLASHtextcolor] = ACTIONS(5259), - [anon_sym_BSLASHpagecolor] = ACTIONS(5259), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5259), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5259), - }, - [892] = { - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASH_RBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - }, - [893] = { - [sym_command_name] = ACTIONS(5041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_BSLASHpart] = ACTIONS(5041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddpart] = ACTIONS(5041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHchapter] = ACTIONS(5041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddchap] = ACTIONS(5041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsection] = ACTIONS(5041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddsec] = ACTIONS(5041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHparagraph] = ACTIONS(5041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHitem] = ACTIONS(5041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5039), - [anon_sym_BSLASHbegin] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), - }, - [894] = { - [sym_command_name] = ACTIONS(4983), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_BSLASHpart] = ACTIONS(4983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddpart] = ACTIONS(4983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHchapter] = ACTIONS(4983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddchap] = ACTIONS(4983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsection] = ACTIONS(4983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddsec] = ACTIONS(4983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHparagraph] = ACTIONS(4983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHitem] = ACTIONS(4983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(4981), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4981), - [anon_sym_BSLASHbegin] = ACTIONS(4983), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), - }, - [895] = { - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_BSLASHpart] = ACTIONS(5167), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddpart] = ACTIONS(5167), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHchapter] = ACTIONS(5167), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddchap] = ACTIONS(5167), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsection] = ACTIONS(5167), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddsec] = ACTIONS(5167), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHparagraph] = ACTIONS(5167), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHitem] = ACTIONS(5167), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASHbegin] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), - }, - [896] = { - [sym_command_name] = ACTIONS(4975), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_RPAREN] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_RBRACK] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4973), - [anon_sym_BSLASHpart] = ACTIONS(4975), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddpart] = ACTIONS(4975), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4973), - [anon_sym_BSLASHchapter] = ACTIONS(4975), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddchap] = ACTIONS(4975), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsection] = ACTIONS(4975), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddsec] = ACTIONS(4975), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubsection] = ACTIONS(4975), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4975), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHparagraph] = ACTIONS(4975), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4975), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4973), - [anon_sym_BSLASHitem] = ACTIONS(4975), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4973), - [anon_sym_LBRACE] = ACTIONS(4973), - [sym_word] = ACTIONS(4975), - [sym_placeholder] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym__] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4973), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4973), - [anon_sym_BSLASHbegin] = ACTIONS(4975), - [anon_sym_BSLASHusepackage] = ACTIONS(4975), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4975), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4975), - [anon_sym_BSLASHinclude] = ACTIONS(4975), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4975), - [anon_sym_BSLASHinput] = ACTIONS(4975), - [anon_sym_BSLASHsubfile] = ACTIONS(4975), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4975), - [anon_sym_BSLASHbibliography] = ACTIONS(4975), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4975), - [anon_sym_BSLASHincludesvg] = ACTIONS(4975), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4975), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4975), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4975), - [anon_sym_BSLASHimport] = ACTIONS(4975), - [anon_sym_BSLASHsubimport] = ACTIONS(4975), - [anon_sym_BSLASHinputfrom] = ACTIONS(4975), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4975), - [anon_sym_BSLASHincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHcaption] = ACTIONS(4975), - [anon_sym_BSLASHcite] = ACTIONS(4975), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCite] = ACTIONS(4975), - [anon_sym_BSLASHnocite] = ACTIONS(4975), - [anon_sym_BSLASHcitet] = ACTIONS(4975), - [anon_sym_BSLASHcitep] = ACTIONS(4975), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor] = ACTIONS(4975), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4975), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle] = ACTIONS(4975), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteyear] = ACTIONS(4975), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitedate] = ACTIONS(4975), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteurl] = ACTIONS(4975), - [anon_sym_BSLASHfullcite] = ACTIONS(4975), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4975), - [anon_sym_BSLASHcitealt] = ACTIONS(4975), - [anon_sym_BSLASHcitealp] = ACTIONS(4975), - [anon_sym_BSLASHcitetext] = ACTIONS(4975), - [anon_sym_BSLASHparencite] = ACTIONS(4975), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHParencite] = ACTIONS(4975), - [anon_sym_BSLASHfootcite] = ACTIONS(4975), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4975), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4975), - [anon_sym_BSLASHtextcite] = ACTIONS(4975), - [anon_sym_BSLASHTextcite] = ACTIONS(4975), - [anon_sym_BSLASHsmartcite] = ACTIONS(4975), - [anon_sym_BSLASHSmartcite] = ACTIONS(4975), - [anon_sym_BSLASHsupercite] = ACTIONS(4975), - [anon_sym_BSLASHautocite] = ACTIONS(4975), - [anon_sym_BSLASHAutocite] = ACTIONS(4975), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHvolcite] = ACTIONS(4975), - [anon_sym_BSLASHVolcite] = ACTIONS(4975), - [anon_sym_BSLASHpvolcite] = ACTIONS(4975), - [anon_sym_BSLASHPvolcite] = ACTIONS(4975), - [anon_sym_BSLASHfvolcite] = ACTIONS(4975), - [anon_sym_BSLASHftvolcite] = ACTIONS(4975), - [anon_sym_BSLASHsvolcite] = ACTIONS(4975), - [anon_sym_BSLASHSvolcite] = ACTIONS(4975), - [anon_sym_BSLASHtvolcite] = ACTIONS(4975), - [anon_sym_BSLASHTvolcite] = ACTIONS(4975), - [anon_sym_BSLASHavolcite] = ACTIONS(4975), - [anon_sym_BSLASHAvolcite] = ACTIONS(4975), - [anon_sym_BSLASHnotecite] = ACTIONS(4975), - [anon_sym_BSLASHNotecite] = ACTIONS(4975), - [anon_sym_BSLASHpnotecite] = ACTIONS(4975), - [anon_sym_BSLASHPnotecite] = ACTIONS(4975), - [anon_sym_BSLASHfnotecite] = ACTIONS(4975), - [anon_sym_BSLASHlabel] = ACTIONS(4975), - [anon_sym_BSLASHref] = ACTIONS(4975), - [anon_sym_BSLASHeqref] = ACTIONS(4975), - [anon_sym_BSLASHvref] = ACTIONS(4975), - [anon_sym_BSLASHVref] = ACTIONS(4975), - [anon_sym_BSLASHautoref] = ACTIONS(4975), - [anon_sym_BSLASHpageref] = ACTIONS(4975), - [anon_sym_BSLASHcref] = ACTIONS(4975), - [anon_sym_BSLASHCref] = ACTIONS(4975), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnameCref] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHlabelcref] = ACTIONS(4975), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange] = ACTIONS(4975), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnewlabel] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4975), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4975), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4975), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4973), - [anon_sym_BSLASHdef] = ACTIONS(4975), - [anon_sym_BSLASHlet] = ACTIONS(4975), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4975), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4975), - [anon_sym_BSLASHgls] = ACTIONS(4975), - [anon_sym_BSLASHGls] = ACTIONS(4975), - [anon_sym_BSLASHGLS] = ACTIONS(4975), - [anon_sym_BSLASHglspl] = ACTIONS(4975), - [anon_sym_BSLASHGlspl] = ACTIONS(4975), - [anon_sym_BSLASHGLSpl] = ACTIONS(4975), - [anon_sym_BSLASHglsdisp] = ACTIONS(4975), - [anon_sym_BSLASHglslink] = ACTIONS(4975), - [anon_sym_BSLASHglstext] = ACTIONS(4975), - [anon_sym_BSLASHGlstext] = ACTIONS(4975), - [anon_sym_BSLASHGLStext] = ACTIONS(4975), - [anon_sym_BSLASHglsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4975), - [anon_sym_BSLASHglsplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSplural] = ACTIONS(4975), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHglsname] = ACTIONS(4975), - [anon_sym_BSLASHGlsname] = ACTIONS(4975), - [anon_sym_BSLASHGLSname] = ACTIONS(4975), - [anon_sym_BSLASHglssymbol] = ACTIONS(4975), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4975), - [anon_sym_BSLASHglsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4975), - [anon_sym_BSLASHglsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4975), - [anon_sym_BSLASHglsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4975), - [anon_sym_BSLASHglsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4975), - [anon_sym_BSLASHglsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4975), - [anon_sym_BSLASHnewacronym] = ACTIONS(4975), - [anon_sym_BSLASHacrshort] = ACTIONS(4975), - [anon_sym_BSLASHAcrshort] = ACTIONS(4975), - [anon_sym_BSLASHACRshort] = ACTIONS(4975), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4975), - [anon_sym_BSLASHacrlong] = ACTIONS(4975), - [anon_sym_BSLASHAcrlong] = ACTIONS(4975), - [anon_sym_BSLASHACRlong] = ACTIONS(4975), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4975), - [anon_sym_BSLASHacrfull] = ACTIONS(4975), - [anon_sym_BSLASHAcrfull] = ACTIONS(4975), - [anon_sym_BSLASHACRfull] = ACTIONS(4975), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4975), - [anon_sym_BSLASHacs] = ACTIONS(4975), - [anon_sym_BSLASHAcs] = ACTIONS(4975), - [anon_sym_BSLASHacsp] = ACTIONS(4975), - [anon_sym_BSLASHAcsp] = ACTIONS(4975), - [anon_sym_BSLASHacl] = ACTIONS(4975), - [anon_sym_BSLASHAcl] = ACTIONS(4975), - [anon_sym_BSLASHaclp] = ACTIONS(4975), - [anon_sym_BSLASHAclp] = ACTIONS(4975), - [anon_sym_BSLASHacf] = ACTIONS(4975), - [anon_sym_BSLASHAcf] = ACTIONS(4975), - [anon_sym_BSLASHacfp] = ACTIONS(4975), - [anon_sym_BSLASHAcfp] = ACTIONS(4975), - [anon_sym_BSLASHac] = ACTIONS(4975), - [anon_sym_BSLASHAc] = ACTIONS(4975), - [anon_sym_BSLASHacp] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4975), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4975), - [anon_sym_BSLASHcolor] = ACTIONS(4975), - [anon_sym_BSLASHcolorbox] = ACTIONS(4975), - [anon_sym_BSLASHtextcolor] = ACTIONS(4975), - [anon_sym_BSLASHpagecolor] = ACTIONS(4975), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4975), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4975), - }, - [897] = { - [sym_command_name] = ACTIONS(4971), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_RBRACK] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_BSLASHpart] = ACTIONS(4971), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddpart] = ACTIONS(4971), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4969), - [anon_sym_BSLASHchapter] = ACTIONS(4971), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddchap] = ACTIONS(4971), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsection] = ACTIONS(4971), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddsec] = ACTIONS(4971), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubsection] = ACTIONS(4971), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4971), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHparagraph] = ACTIONS(4971), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4971), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4969), - [anon_sym_BSLASHitem] = ACTIONS(4971), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4969), - [anon_sym_LBRACE] = ACTIONS(4969), - [sym_word] = ACTIONS(4971), - [sym_placeholder] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_CARET] = ACTIONS(4971), - [anon_sym__] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4969), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4969), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4969), - [anon_sym_BSLASHbegin] = ACTIONS(4971), - [anon_sym_BSLASHusepackage] = ACTIONS(4971), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4971), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4971), - [anon_sym_BSLASHinclude] = ACTIONS(4971), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4971), - [anon_sym_BSLASHinput] = ACTIONS(4971), - [anon_sym_BSLASHsubfile] = ACTIONS(4971), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4971), - [anon_sym_BSLASHbibliography] = ACTIONS(4971), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4971), - [anon_sym_BSLASHincludesvg] = ACTIONS(4971), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4971), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4971), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4971), - [anon_sym_BSLASHimport] = ACTIONS(4971), - [anon_sym_BSLASHsubimport] = ACTIONS(4971), - [anon_sym_BSLASHinputfrom] = ACTIONS(4971), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4971), - [anon_sym_BSLASHincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHcaption] = ACTIONS(4971), - [anon_sym_BSLASHcite] = ACTIONS(4971), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCite] = ACTIONS(4971), - [anon_sym_BSLASHnocite] = ACTIONS(4971), - [anon_sym_BSLASHcitet] = ACTIONS(4971), - [anon_sym_BSLASHcitep] = ACTIONS(4971), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteyear] = ACTIONS(4971), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitedate] = ACTIONS(4971), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteurl] = ACTIONS(4971), - [anon_sym_BSLASHfullcite] = ACTIONS(4971), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4971), - [anon_sym_BSLASHcitealt] = ACTIONS(4971), - [anon_sym_BSLASHcitealp] = ACTIONS(4971), - [anon_sym_BSLASHcitetext] = ACTIONS(4971), - [anon_sym_BSLASHparencite] = ACTIONS(4971), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHParencite] = ACTIONS(4971), - [anon_sym_BSLASHfootcite] = ACTIONS(4971), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4971), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4971), - [anon_sym_BSLASHtextcite] = ACTIONS(4971), - [anon_sym_BSLASHTextcite] = ACTIONS(4971), - [anon_sym_BSLASHsmartcite] = ACTIONS(4971), - [anon_sym_BSLASHSmartcite] = ACTIONS(4971), - [anon_sym_BSLASHsupercite] = ACTIONS(4971), - [anon_sym_BSLASHautocite] = ACTIONS(4971), - [anon_sym_BSLASHAutocite] = ACTIONS(4971), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHvolcite] = ACTIONS(4971), - [anon_sym_BSLASHVolcite] = ACTIONS(4971), - [anon_sym_BSLASHpvolcite] = ACTIONS(4971), - [anon_sym_BSLASHPvolcite] = ACTIONS(4971), - [anon_sym_BSLASHfvolcite] = ACTIONS(4971), - [anon_sym_BSLASHftvolcite] = ACTIONS(4971), - [anon_sym_BSLASHsvolcite] = ACTIONS(4971), - [anon_sym_BSLASHSvolcite] = ACTIONS(4971), - [anon_sym_BSLASHtvolcite] = ACTIONS(4971), - [anon_sym_BSLASHTvolcite] = ACTIONS(4971), - [anon_sym_BSLASHavolcite] = ACTIONS(4971), - [anon_sym_BSLASHAvolcite] = ACTIONS(4971), - [anon_sym_BSLASHnotecite] = ACTIONS(4971), - [anon_sym_BSLASHNotecite] = ACTIONS(4971), - [anon_sym_BSLASHpnotecite] = ACTIONS(4971), - [anon_sym_BSLASHPnotecite] = ACTIONS(4971), - [anon_sym_BSLASHfnotecite] = ACTIONS(4971), - [anon_sym_BSLASHlabel] = ACTIONS(4971), - [anon_sym_BSLASHref] = ACTIONS(4971), - [anon_sym_BSLASHeqref] = ACTIONS(4971), - [anon_sym_BSLASHvref] = ACTIONS(4971), - [anon_sym_BSLASHVref] = ACTIONS(4971), - [anon_sym_BSLASHautoref] = ACTIONS(4971), - [anon_sym_BSLASHpageref] = ACTIONS(4971), - [anon_sym_BSLASHcref] = ACTIONS(4971), - [anon_sym_BSLASHCref] = ACTIONS(4971), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnameCref] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHlabelcref] = ACTIONS(4971), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnewlabel] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4969), - [anon_sym_BSLASHdef] = ACTIONS(4971), - [anon_sym_BSLASHlet] = ACTIONS(4971), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4971), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4971), - [anon_sym_BSLASHgls] = ACTIONS(4971), - [anon_sym_BSLASHGls] = ACTIONS(4971), - [anon_sym_BSLASHGLS] = ACTIONS(4971), - [anon_sym_BSLASHglspl] = ACTIONS(4971), - [anon_sym_BSLASHGlspl] = ACTIONS(4971), - [anon_sym_BSLASHGLSpl] = ACTIONS(4971), - [anon_sym_BSLASHglsdisp] = ACTIONS(4971), - [anon_sym_BSLASHglslink] = ACTIONS(4971), - [anon_sym_BSLASHglstext] = ACTIONS(4971), - [anon_sym_BSLASHGlstext] = ACTIONS(4971), - [anon_sym_BSLASHGLStext] = ACTIONS(4971), - [anon_sym_BSLASHglsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4971), - [anon_sym_BSLASHglsplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSplural] = ACTIONS(4971), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHglsname] = ACTIONS(4971), - [anon_sym_BSLASHGlsname] = ACTIONS(4971), - [anon_sym_BSLASHGLSname] = ACTIONS(4971), - [anon_sym_BSLASHglssymbol] = ACTIONS(4971), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4971), - [anon_sym_BSLASHglsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4971), - [anon_sym_BSLASHglsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4971), - [anon_sym_BSLASHglsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4971), - [anon_sym_BSLASHglsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4971), - [anon_sym_BSLASHglsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4971), - [anon_sym_BSLASHnewacronym] = ACTIONS(4971), - [anon_sym_BSLASHacrshort] = ACTIONS(4971), - [anon_sym_BSLASHAcrshort] = ACTIONS(4971), - [anon_sym_BSLASHACRshort] = ACTIONS(4971), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4971), - [anon_sym_BSLASHacrlong] = ACTIONS(4971), - [anon_sym_BSLASHAcrlong] = ACTIONS(4971), - [anon_sym_BSLASHACRlong] = ACTIONS(4971), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4971), - [anon_sym_BSLASHacrfull] = ACTIONS(4971), - [anon_sym_BSLASHAcrfull] = ACTIONS(4971), - [anon_sym_BSLASHACRfull] = ACTIONS(4971), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4971), - [anon_sym_BSLASHacs] = ACTIONS(4971), - [anon_sym_BSLASHAcs] = ACTIONS(4971), - [anon_sym_BSLASHacsp] = ACTIONS(4971), - [anon_sym_BSLASHAcsp] = ACTIONS(4971), - [anon_sym_BSLASHacl] = ACTIONS(4971), - [anon_sym_BSLASHAcl] = ACTIONS(4971), - [anon_sym_BSLASHaclp] = ACTIONS(4971), - [anon_sym_BSLASHAclp] = ACTIONS(4971), - [anon_sym_BSLASHacf] = ACTIONS(4971), - [anon_sym_BSLASHAcf] = ACTIONS(4971), - [anon_sym_BSLASHacfp] = ACTIONS(4971), - [anon_sym_BSLASHAcfp] = ACTIONS(4971), - [anon_sym_BSLASHac] = ACTIONS(4971), - [anon_sym_BSLASHAc] = ACTIONS(4971), - [anon_sym_BSLASHacp] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4971), - [anon_sym_BSLASHcolor] = ACTIONS(4971), - [anon_sym_BSLASHcolorbox] = ACTIONS(4971), - [anon_sym_BSLASHtextcolor] = ACTIONS(4971), - [anon_sym_BSLASHpagecolor] = ACTIONS(4971), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4971), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4971), - }, - [898] = { - [sym_command_name] = ACTIONS(4967), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4965), - [anon_sym_BSLASHpart] = ACTIONS(4967), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddpart] = ACTIONS(4967), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4965), - [anon_sym_BSLASHchapter] = ACTIONS(4967), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddchap] = ACTIONS(4967), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsection] = ACTIONS(4967), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddsec] = ACTIONS(4967), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubsection] = ACTIONS(4967), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4967), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHparagraph] = ACTIONS(4967), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4967), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4965), - [anon_sym_BSLASHitem] = ACTIONS(4967), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4965), - [sym_word] = ACTIONS(4967), - [sym_placeholder] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_CARET] = ACTIONS(4967), - [anon_sym__] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4965), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4965), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4965), - [anon_sym_BSLASHbegin] = ACTIONS(4967), - [anon_sym_BSLASHusepackage] = ACTIONS(4967), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4967), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4967), - [anon_sym_BSLASHinclude] = ACTIONS(4967), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4967), - [anon_sym_BSLASHinput] = ACTIONS(4967), - [anon_sym_BSLASHsubfile] = ACTIONS(4967), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4967), - [anon_sym_BSLASHbibliography] = ACTIONS(4967), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4967), - [anon_sym_BSLASHincludesvg] = ACTIONS(4967), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4967), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4967), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4967), - [anon_sym_BSLASHimport] = ACTIONS(4967), - [anon_sym_BSLASHsubimport] = ACTIONS(4967), - [anon_sym_BSLASHinputfrom] = ACTIONS(4967), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4967), - [anon_sym_BSLASHincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHcaption] = ACTIONS(4967), - [anon_sym_BSLASHcite] = ACTIONS(4967), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCite] = ACTIONS(4967), - [anon_sym_BSLASHnocite] = ACTIONS(4967), - [anon_sym_BSLASHcitet] = ACTIONS(4967), - [anon_sym_BSLASHcitep] = ACTIONS(4967), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteauthor] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitetitle] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteyear] = ACTIONS(4967), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitedate] = ACTIONS(4967), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteurl] = ACTIONS(4967), - [anon_sym_BSLASHfullcite] = ACTIONS(4967), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4967), - [anon_sym_BSLASHcitealt] = ACTIONS(4967), - [anon_sym_BSLASHcitealp] = ACTIONS(4967), - [anon_sym_BSLASHcitetext] = ACTIONS(4967), - [anon_sym_BSLASHparencite] = ACTIONS(4967), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHParencite] = ACTIONS(4967), - [anon_sym_BSLASHfootcite] = ACTIONS(4967), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4967), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4967), - [anon_sym_BSLASHtextcite] = ACTIONS(4967), - [anon_sym_BSLASHTextcite] = ACTIONS(4967), - [anon_sym_BSLASHsmartcite] = ACTIONS(4967), - [anon_sym_BSLASHSmartcite] = ACTIONS(4967), - [anon_sym_BSLASHsupercite] = ACTIONS(4967), - [anon_sym_BSLASHautocite] = ACTIONS(4967), - [anon_sym_BSLASHAutocite] = ACTIONS(4967), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHvolcite] = ACTIONS(4967), - [anon_sym_BSLASHVolcite] = ACTIONS(4967), - [anon_sym_BSLASHpvolcite] = ACTIONS(4967), - [anon_sym_BSLASHPvolcite] = ACTIONS(4967), - [anon_sym_BSLASHfvolcite] = ACTIONS(4967), - [anon_sym_BSLASHftvolcite] = ACTIONS(4967), - [anon_sym_BSLASHsvolcite] = ACTIONS(4967), - [anon_sym_BSLASHSvolcite] = ACTIONS(4967), - [anon_sym_BSLASHtvolcite] = ACTIONS(4967), - [anon_sym_BSLASHTvolcite] = ACTIONS(4967), - [anon_sym_BSLASHavolcite] = ACTIONS(4967), - [anon_sym_BSLASHAvolcite] = ACTIONS(4967), - [anon_sym_BSLASHnotecite] = ACTIONS(4967), - [anon_sym_BSLASHNotecite] = ACTIONS(4967), - [anon_sym_BSLASHpnotecite] = ACTIONS(4967), - [anon_sym_BSLASHPnotecite] = ACTIONS(4967), - [anon_sym_BSLASHfnotecite] = ACTIONS(4967), - [anon_sym_BSLASHlabel] = ACTIONS(4967), - [anon_sym_BSLASHref] = ACTIONS(4967), - [anon_sym_BSLASHeqref] = ACTIONS(4967), - [anon_sym_BSLASHvref] = ACTIONS(4967), - [anon_sym_BSLASHVref] = ACTIONS(4967), - [anon_sym_BSLASHautoref] = ACTIONS(4967), - [anon_sym_BSLASHpageref] = ACTIONS(4967), - [anon_sym_BSLASHcref] = ACTIONS(4967), - [anon_sym_BSLASHCref] = ACTIONS(4967), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnameCref] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHlabelcref] = ACTIONS(4967), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCrefrange] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnewlabel] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4965), - [anon_sym_BSLASHdef] = ACTIONS(4967), - [anon_sym_BSLASHlet] = ACTIONS(4967), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4967), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4967), - [anon_sym_BSLASHgls] = ACTIONS(4967), - [anon_sym_BSLASHGls] = ACTIONS(4967), - [anon_sym_BSLASHGLS] = ACTIONS(4967), - [anon_sym_BSLASHglspl] = ACTIONS(4967), - [anon_sym_BSLASHGlspl] = ACTIONS(4967), - [anon_sym_BSLASHGLSpl] = ACTIONS(4967), - [anon_sym_BSLASHglsdisp] = ACTIONS(4967), - [anon_sym_BSLASHglslink] = ACTIONS(4967), - [anon_sym_BSLASHglstext] = ACTIONS(4967), - [anon_sym_BSLASHGlstext] = ACTIONS(4967), - [anon_sym_BSLASHGLStext] = ACTIONS(4967), - [anon_sym_BSLASHglsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4967), - [anon_sym_BSLASHglsplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSplural] = ACTIONS(4967), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHglsname] = ACTIONS(4967), - [anon_sym_BSLASHGlsname] = ACTIONS(4967), - [anon_sym_BSLASHGLSname] = ACTIONS(4967), - [anon_sym_BSLASHglssymbol] = ACTIONS(4967), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4967), - [anon_sym_BSLASHglsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4967), - [anon_sym_BSLASHglsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4967), - [anon_sym_BSLASHglsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4967), - [anon_sym_BSLASHglsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4967), - [anon_sym_BSLASHglsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4967), - [anon_sym_BSLASHnewacronym] = ACTIONS(4967), - [anon_sym_BSLASHacrshort] = ACTIONS(4967), - [anon_sym_BSLASHAcrshort] = ACTIONS(4967), - [anon_sym_BSLASHACRshort] = ACTIONS(4967), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4967), - [anon_sym_BSLASHacrlong] = ACTIONS(4967), - [anon_sym_BSLASHAcrlong] = ACTIONS(4967), - [anon_sym_BSLASHACRlong] = ACTIONS(4967), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4967), - [anon_sym_BSLASHacrfull] = ACTIONS(4967), - [anon_sym_BSLASHAcrfull] = ACTIONS(4967), - [anon_sym_BSLASHACRfull] = ACTIONS(4967), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4967), - [anon_sym_BSLASHacs] = ACTIONS(4967), - [anon_sym_BSLASHAcs] = ACTIONS(4967), - [anon_sym_BSLASHacsp] = ACTIONS(4967), - [anon_sym_BSLASHAcsp] = ACTIONS(4967), - [anon_sym_BSLASHacl] = ACTIONS(4967), - [anon_sym_BSLASHAcl] = ACTIONS(4967), - [anon_sym_BSLASHaclp] = ACTIONS(4967), - [anon_sym_BSLASHAclp] = ACTIONS(4967), - [anon_sym_BSLASHacf] = ACTIONS(4967), - [anon_sym_BSLASHAcf] = ACTIONS(4967), - [anon_sym_BSLASHacfp] = ACTIONS(4967), - [anon_sym_BSLASHAcfp] = ACTIONS(4967), - [anon_sym_BSLASHac] = ACTIONS(4967), - [anon_sym_BSLASHAc] = ACTIONS(4967), - [anon_sym_BSLASHacp] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4967), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4967), - [anon_sym_BSLASHcolor] = ACTIONS(4967), - [anon_sym_BSLASHcolorbox] = ACTIONS(4967), - [anon_sym_BSLASHtextcolor] = ACTIONS(4967), - [anon_sym_BSLASHpagecolor] = ACTIONS(4967), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4967), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4967), - }, - [899] = { - [sym_command_name] = ACTIONS(4959), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_BSLASHpart] = ACTIONS(4959), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddpart] = ACTIONS(4959), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHchapter] = ACTIONS(4959), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddchap] = ACTIONS(4959), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsection] = ACTIONS(4959), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddsec] = ACTIONS(4959), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHparagraph] = ACTIONS(4959), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHitem] = ACTIONS(4959), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4957), - [anon_sym_BSLASHbegin] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), - }, - [900] = { - [sym_command_name] = ACTIONS(4953), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_RBRACK] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_BSLASHpart] = ACTIONS(4953), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddpart] = ACTIONS(4953), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4951), - [anon_sym_BSLASHchapter] = ACTIONS(4953), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddchap] = ACTIONS(4953), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsection] = ACTIONS(4953), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddsec] = ACTIONS(4953), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubsection] = ACTIONS(4953), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4953), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHparagraph] = ACTIONS(4953), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4953), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4951), - [anon_sym_BSLASHitem] = ACTIONS(4953), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [sym_word] = ACTIONS(4953), - [sym_placeholder] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym__] = ACTIONS(4953), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4953), - [anon_sym_COLON] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4953), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4951), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4951), - [anon_sym_BSLASHbegin] = ACTIONS(4953), - [anon_sym_BSLASHusepackage] = ACTIONS(4953), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4953), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4953), - [anon_sym_BSLASHinclude] = ACTIONS(4953), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4953), - [anon_sym_BSLASHinput] = ACTIONS(4953), - [anon_sym_BSLASHsubfile] = ACTIONS(4953), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4953), - [anon_sym_BSLASHbibliography] = ACTIONS(4953), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4953), - [anon_sym_BSLASHincludesvg] = ACTIONS(4953), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4953), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4953), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4953), - [anon_sym_BSLASHimport] = ACTIONS(4953), - [anon_sym_BSLASHsubimport] = ACTIONS(4953), - [anon_sym_BSLASHinputfrom] = ACTIONS(4953), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4953), - [anon_sym_BSLASHincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHcaption] = ACTIONS(4953), - [anon_sym_BSLASHcite] = ACTIONS(4953), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCite] = ACTIONS(4953), - [anon_sym_BSLASHnocite] = ACTIONS(4953), - [anon_sym_BSLASHcitet] = ACTIONS(4953), - [anon_sym_BSLASHcitep] = ACTIONS(4953), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteyear] = ACTIONS(4953), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitedate] = ACTIONS(4953), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteurl] = ACTIONS(4953), - [anon_sym_BSLASHfullcite] = ACTIONS(4953), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4953), - [anon_sym_BSLASHcitealt] = ACTIONS(4953), - [anon_sym_BSLASHcitealp] = ACTIONS(4953), - [anon_sym_BSLASHcitetext] = ACTIONS(4953), - [anon_sym_BSLASHparencite] = ACTIONS(4953), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHParencite] = ACTIONS(4953), - [anon_sym_BSLASHfootcite] = ACTIONS(4953), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4953), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4953), - [anon_sym_BSLASHtextcite] = ACTIONS(4953), - [anon_sym_BSLASHTextcite] = ACTIONS(4953), - [anon_sym_BSLASHsmartcite] = ACTIONS(4953), - [anon_sym_BSLASHSmartcite] = ACTIONS(4953), - [anon_sym_BSLASHsupercite] = ACTIONS(4953), - [anon_sym_BSLASHautocite] = ACTIONS(4953), - [anon_sym_BSLASHAutocite] = ACTIONS(4953), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHvolcite] = ACTIONS(4953), - [anon_sym_BSLASHVolcite] = ACTIONS(4953), - [anon_sym_BSLASHpvolcite] = ACTIONS(4953), - [anon_sym_BSLASHPvolcite] = ACTIONS(4953), - [anon_sym_BSLASHfvolcite] = ACTIONS(4953), - [anon_sym_BSLASHftvolcite] = ACTIONS(4953), - [anon_sym_BSLASHsvolcite] = ACTIONS(4953), - [anon_sym_BSLASHSvolcite] = ACTIONS(4953), - [anon_sym_BSLASHtvolcite] = ACTIONS(4953), - [anon_sym_BSLASHTvolcite] = ACTIONS(4953), - [anon_sym_BSLASHavolcite] = ACTIONS(4953), - [anon_sym_BSLASHAvolcite] = ACTIONS(4953), - [anon_sym_BSLASHnotecite] = ACTIONS(4953), - [anon_sym_BSLASHNotecite] = ACTIONS(4953), - [anon_sym_BSLASHpnotecite] = ACTIONS(4953), - [anon_sym_BSLASHPnotecite] = ACTIONS(4953), - [anon_sym_BSLASHfnotecite] = ACTIONS(4953), - [anon_sym_BSLASHlabel] = ACTIONS(4953), - [anon_sym_BSLASHref] = ACTIONS(4953), - [anon_sym_BSLASHeqref] = ACTIONS(4953), - [anon_sym_BSLASHvref] = ACTIONS(4953), - [anon_sym_BSLASHVref] = ACTIONS(4953), - [anon_sym_BSLASHautoref] = ACTIONS(4953), - [anon_sym_BSLASHpageref] = ACTIONS(4953), - [anon_sym_BSLASHcref] = ACTIONS(4953), - [anon_sym_BSLASHCref] = ACTIONS(4953), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnameCref] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHlabelcref] = ACTIONS(4953), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnewlabel] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4951), - [anon_sym_BSLASHdef] = ACTIONS(4953), - [anon_sym_BSLASHlet] = ACTIONS(4953), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4953), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4953), - [anon_sym_BSLASHgls] = ACTIONS(4953), - [anon_sym_BSLASHGls] = ACTIONS(4953), - [anon_sym_BSLASHGLS] = ACTIONS(4953), - [anon_sym_BSLASHglspl] = ACTIONS(4953), - [anon_sym_BSLASHGlspl] = ACTIONS(4953), - [anon_sym_BSLASHGLSpl] = ACTIONS(4953), - [anon_sym_BSLASHglsdisp] = ACTIONS(4953), - [anon_sym_BSLASHglslink] = ACTIONS(4953), - [anon_sym_BSLASHglstext] = ACTIONS(4953), - [anon_sym_BSLASHGlstext] = ACTIONS(4953), - [anon_sym_BSLASHGLStext] = ACTIONS(4953), - [anon_sym_BSLASHglsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4953), - [anon_sym_BSLASHglsplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSplural] = ACTIONS(4953), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHglsname] = ACTIONS(4953), - [anon_sym_BSLASHGlsname] = ACTIONS(4953), - [anon_sym_BSLASHGLSname] = ACTIONS(4953), - [anon_sym_BSLASHglssymbol] = ACTIONS(4953), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4953), - [anon_sym_BSLASHglsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4953), - [anon_sym_BSLASHglsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4953), - [anon_sym_BSLASHglsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4953), - [anon_sym_BSLASHglsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4953), - [anon_sym_BSLASHglsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4953), - [anon_sym_BSLASHnewacronym] = ACTIONS(4953), - [anon_sym_BSLASHacrshort] = ACTIONS(4953), - [anon_sym_BSLASHAcrshort] = ACTIONS(4953), - [anon_sym_BSLASHACRshort] = ACTIONS(4953), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4953), - [anon_sym_BSLASHacrlong] = ACTIONS(4953), - [anon_sym_BSLASHAcrlong] = ACTIONS(4953), - [anon_sym_BSLASHACRlong] = ACTIONS(4953), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4953), - [anon_sym_BSLASHacrfull] = ACTIONS(4953), - [anon_sym_BSLASHAcrfull] = ACTIONS(4953), - [anon_sym_BSLASHACRfull] = ACTIONS(4953), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4953), - [anon_sym_BSLASHacs] = ACTIONS(4953), - [anon_sym_BSLASHAcs] = ACTIONS(4953), - [anon_sym_BSLASHacsp] = ACTIONS(4953), - [anon_sym_BSLASHAcsp] = ACTIONS(4953), - [anon_sym_BSLASHacl] = ACTIONS(4953), - [anon_sym_BSLASHAcl] = ACTIONS(4953), - [anon_sym_BSLASHaclp] = ACTIONS(4953), - [anon_sym_BSLASHAclp] = ACTIONS(4953), - [anon_sym_BSLASHacf] = ACTIONS(4953), - [anon_sym_BSLASHAcf] = ACTIONS(4953), - [anon_sym_BSLASHacfp] = ACTIONS(4953), - [anon_sym_BSLASHAcfp] = ACTIONS(4953), - [anon_sym_BSLASHac] = ACTIONS(4953), - [anon_sym_BSLASHAc] = ACTIONS(4953), - [anon_sym_BSLASHacp] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4953), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4953), - [anon_sym_BSLASHcolor] = ACTIONS(4953), - [anon_sym_BSLASHcolorbox] = ACTIONS(4953), - [anon_sym_BSLASHtextcolor] = ACTIONS(4953), - [anon_sym_BSLASHpagecolor] = ACTIONS(4953), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4953), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4953), - }, - [901] = { - [sym_command_name] = ACTIONS(4949), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4947), - [anon_sym_RBRACK] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_BSLASHpart] = ACTIONS(4949), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddpart] = ACTIONS(4949), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4947), - [anon_sym_BSLASHchapter] = ACTIONS(4949), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddchap] = ACTIONS(4949), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsection] = ACTIONS(4949), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddsec] = ACTIONS(4949), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubsection] = ACTIONS(4949), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4949), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHparagraph] = ACTIONS(4949), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4949), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4947), - [anon_sym_BSLASHitem] = ACTIONS(4949), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [sym_word] = ACTIONS(4949), - [sym_placeholder] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4949), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym__] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4949), - [anon_sym_BANG] = ACTIONS(4949), - [anon_sym_PIPE] = ACTIONS(4949), - [anon_sym_COLON] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4949), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4947), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4947), - [anon_sym_BSLASHbegin] = ACTIONS(4949), - [anon_sym_BSLASHusepackage] = ACTIONS(4949), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4949), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4949), - [anon_sym_BSLASHinclude] = ACTIONS(4949), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4949), - [anon_sym_BSLASHinput] = ACTIONS(4949), - [anon_sym_BSLASHsubfile] = ACTIONS(4949), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4949), - [anon_sym_BSLASHbibliography] = ACTIONS(4949), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4949), - [anon_sym_BSLASHincludesvg] = ACTIONS(4949), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4949), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4949), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4949), - [anon_sym_BSLASHimport] = ACTIONS(4949), - [anon_sym_BSLASHsubimport] = ACTIONS(4949), - [anon_sym_BSLASHinputfrom] = ACTIONS(4949), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4949), - [anon_sym_BSLASHincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHcaption] = ACTIONS(4949), - [anon_sym_BSLASHcite] = ACTIONS(4949), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCite] = ACTIONS(4949), - [anon_sym_BSLASHnocite] = ACTIONS(4949), - [anon_sym_BSLASHcitet] = ACTIONS(4949), - [anon_sym_BSLASHcitep] = ACTIONS(4949), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteyear] = ACTIONS(4949), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitedate] = ACTIONS(4949), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteurl] = ACTIONS(4949), - [anon_sym_BSLASHfullcite] = ACTIONS(4949), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4949), - [anon_sym_BSLASHcitealt] = ACTIONS(4949), - [anon_sym_BSLASHcitealp] = ACTIONS(4949), - [anon_sym_BSLASHcitetext] = ACTIONS(4949), - [anon_sym_BSLASHparencite] = ACTIONS(4949), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHParencite] = ACTIONS(4949), - [anon_sym_BSLASHfootcite] = ACTIONS(4949), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4949), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4949), - [anon_sym_BSLASHtextcite] = ACTIONS(4949), - [anon_sym_BSLASHTextcite] = ACTIONS(4949), - [anon_sym_BSLASHsmartcite] = ACTIONS(4949), - [anon_sym_BSLASHSmartcite] = ACTIONS(4949), - [anon_sym_BSLASHsupercite] = ACTIONS(4949), - [anon_sym_BSLASHautocite] = ACTIONS(4949), - [anon_sym_BSLASHAutocite] = ACTIONS(4949), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHvolcite] = ACTIONS(4949), - [anon_sym_BSLASHVolcite] = ACTIONS(4949), - [anon_sym_BSLASHpvolcite] = ACTIONS(4949), - [anon_sym_BSLASHPvolcite] = ACTIONS(4949), - [anon_sym_BSLASHfvolcite] = ACTIONS(4949), - [anon_sym_BSLASHftvolcite] = ACTIONS(4949), - [anon_sym_BSLASHsvolcite] = ACTIONS(4949), - [anon_sym_BSLASHSvolcite] = ACTIONS(4949), - [anon_sym_BSLASHtvolcite] = ACTIONS(4949), - [anon_sym_BSLASHTvolcite] = ACTIONS(4949), - [anon_sym_BSLASHavolcite] = ACTIONS(4949), - [anon_sym_BSLASHAvolcite] = ACTIONS(4949), - [anon_sym_BSLASHnotecite] = ACTIONS(4949), - [anon_sym_BSLASHNotecite] = ACTIONS(4949), - [anon_sym_BSLASHpnotecite] = ACTIONS(4949), - [anon_sym_BSLASHPnotecite] = ACTIONS(4949), - [anon_sym_BSLASHfnotecite] = ACTIONS(4949), - [anon_sym_BSLASHlabel] = ACTIONS(4949), - [anon_sym_BSLASHref] = ACTIONS(4949), - [anon_sym_BSLASHeqref] = ACTIONS(4949), - [anon_sym_BSLASHvref] = ACTIONS(4949), - [anon_sym_BSLASHVref] = ACTIONS(4949), - [anon_sym_BSLASHautoref] = ACTIONS(4949), - [anon_sym_BSLASHpageref] = ACTIONS(4949), - [anon_sym_BSLASHcref] = ACTIONS(4949), - [anon_sym_BSLASHCref] = ACTIONS(4949), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnameCref] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHlabelcref] = ACTIONS(4949), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnewlabel] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4947), - [anon_sym_BSLASHdef] = ACTIONS(4949), - [anon_sym_BSLASHlet] = ACTIONS(4949), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4949), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4949), - [anon_sym_BSLASHgls] = ACTIONS(4949), - [anon_sym_BSLASHGls] = ACTIONS(4949), - [anon_sym_BSLASHGLS] = ACTIONS(4949), - [anon_sym_BSLASHglspl] = ACTIONS(4949), - [anon_sym_BSLASHGlspl] = ACTIONS(4949), - [anon_sym_BSLASHGLSpl] = ACTIONS(4949), - [anon_sym_BSLASHglsdisp] = ACTIONS(4949), - [anon_sym_BSLASHglslink] = ACTIONS(4949), - [anon_sym_BSLASHglstext] = ACTIONS(4949), - [anon_sym_BSLASHGlstext] = ACTIONS(4949), - [anon_sym_BSLASHGLStext] = ACTIONS(4949), - [anon_sym_BSLASHglsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4949), - [anon_sym_BSLASHglsplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSplural] = ACTIONS(4949), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHglsname] = ACTIONS(4949), - [anon_sym_BSLASHGlsname] = ACTIONS(4949), - [anon_sym_BSLASHGLSname] = ACTIONS(4949), - [anon_sym_BSLASHglssymbol] = ACTIONS(4949), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4949), - [anon_sym_BSLASHglsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4949), - [anon_sym_BSLASHglsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4949), - [anon_sym_BSLASHglsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4949), - [anon_sym_BSLASHglsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4949), - [anon_sym_BSLASHglsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4949), - [anon_sym_BSLASHnewacronym] = ACTIONS(4949), - [anon_sym_BSLASHacrshort] = ACTIONS(4949), - [anon_sym_BSLASHAcrshort] = ACTIONS(4949), - [anon_sym_BSLASHACRshort] = ACTIONS(4949), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4949), - [anon_sym_BSLASHacrlong] = ACTIONS(4949), - [anon_sym_BSLASHAcrlong] = ACTIONS(4949), - [anon_sym_BSLASHACRlong] = ACTIONS(4949), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4949), - [anon_sym_BSLASHacrfull] = ACTIONS(4949), - [anon_sym_BSLASHAcrfull] = ACTIONS(4949), - [anon_sym_BSLASHACRfull] = ACTIONS(4949), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4949), - [anon_sym_BSLASHacs] = ACTIONS(4949), - [anon_sym_BSLASHAcs] = ACTIONS(4949), - [anon_sym_BSLASHacsp] = ACTIONS(4949), - [anon_sym_BSLASHAcsp] = ACTIONS(4949), - [anon_sym_BSLASHacl] = ACTIONS(4949), - [anon_sym_BSLASHAcl] = ACTIONS(4949), - [anon_sym_BSLASHaclp] = ACTIONS(4949), - [anon_sym_BSLASHAclp] = ACTIONS(4949), - [anon_sym_BSLASHacf] = ACTIONS(4949), - [anon_sym_BSLASHAcf] = ACTIONS(4949), - [anon_sym_BSLASHacfp] = ACTIONS(4949), - [anon_sym_BSLASHAcfp] = ACTIONS(4949), - [anon_sym_BSLASHac] = ACTIONS(4949), - [anon_sym_BSLASHAc] = ACTIONS(4949), - [anon_sym_BSLASHacp] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4949), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4949), - [anon_sym_BSLASHcolor] = ACTIONS(4949), - [anon_sym_BSLASHcolorbox] = ACTIONS(4949), - [anon_sym_BSLASHtextcolor] = ACTIONS(4949), - [anon_sym_BSLASHpagecolor] = ACTIONS(4949), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4949), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4949), - }, - [902] = { - [sym_command_name] = ACTIONS(5185), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_BSLASHpart] = ACTIONS(5185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddpart] = ACTIONS(5185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHchapter] = ACTIONS(5185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddchap] = ACTIONS(5185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsection] = ACTIONS(5185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddsec] = ACTIONS(5185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHparagraph] = ACTIONS(5185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHitem] = ACTIONS(5185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5183), - [anon_sym_BSLASHbegin] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - }, - [903] = { - [sym_command_name] = ACTIONS(5353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_BSLASHpart] = ACTIONS(5353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddpart] = ACTIONS(5353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHchapter] = ACTIONS(5353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddchap] = ACTIONS(5353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsection] = ACTIONS(5353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddsec] = ACTIONS(5353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHparagraph] = ACTIONS(5353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHitem] = ACTIONS(5353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5351), - [anon_sym_BSLASHbegin] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), - }, - [904] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_BSLASHpart] = ACTIONS(5143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddpart] = ACTIONS(5143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHchapter] = ACTIONS(5143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddchap] = ACTIONS(5143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsection] = ACTIONS(5143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddsec] = ACTIONS(5143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHparagraph] = ACTIONS(5143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHitem] = ACTIONS(5143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5141), - [anon_sym_BSLASHbegin] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), - }, - [905] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_BSLASHpart] = ACTIONS(5129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddpart] = ACTIONS(5129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHchapter] = ACTIONS(5129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddchap] = ACTIONS(5129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsection] = ACTIONS(5129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddsec] = ACTIONS(5129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHparagraph] = ACTIONS(5129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHitem] = ACTIONS(5129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5127), - [anon_sym_BSLASHbegin] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), - }, - [906] = { - [sym_command_name] = ACTIONS(5381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5381), - [anon_sym_LPAREN] = ACTIONS(5379), - [anon_sym_RPAREN] = ACTIONS(5379), - [anon_sym_LBRACK] = ACTIONS(5379), - [anon_sym_RBRACK] = ACTIONS(5379), - [anon_sym_COMMA] = ACTIONS(5379), - [anon_sym_EQ] = ACTIONS(5379), - [anon_sym_BSLASHpart] = ACTIONS(5381), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddpart] = ACTIONS(5381), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5379), - [anon_sym_BSLASHchapter] = ACTIONS(5381), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddchap] = ACTIONS(5381), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsection] = ACTIONS(5381), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddsec] = ACTIONS(5381), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubsection] = ACTIONS(5381), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5381), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHparagraph] = ACTIONS(5381), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5381), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5379), - [anon_sym_BSLASHitem] = ACTIONS(5381), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5379), - [anon_sym_LBRACE] = ACTIONS(5379), - [sym_word] = ACTIONS(5381), - [sym_placeholder] = ACTIONS(5379), - [anon_sym_PLUS] = ACTIONS(5381), - [anon_sym_DASH] = ACTIONS(5381), - [anon_sym_STAR] = ACTIONS(5381), - [anon_sym_SLASH] = ACTIONS(5381), - [anon_sym_CARET] = ACTIONS(5381), - [anon_sym__] = ACTIONS(5381), - [anon_sym_LT] = ACTIONS(5381), - [anon_sym_GT] = ACTIONS(5381), - [anon_sym_BANG] = ACTIONS(5381), - [anon_sym_PIPE] = ACTIONS(5381), - [anon_sym_COLON] = ACTIONS(5381), - [anon_sym_SQUOTE] = ACTIONS(5381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5379), - [anon_sym_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5379), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5379), - [anon_sym_BSLASHbegin] = ACTIONS(5381), - [anon_sym_BSLASHusepackage] = ACTIONS(5381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5381), - [anon_sym_BSLASHinclude] = ACTIONS(5381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5381), - [anon_sym_BSLASHinput] = ACTIONS(5381), - [anon_sym_BSLASHsubfile] = ACTIONS(5381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5381), - [anon_sym_BSLASHbibliography] = ACTIONS(5381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5381), - [anon_sym_BSLASHincludesvg] = ACTIONS(5381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5381), - [anon_sym_BSLASHimport] = ACTIONS(5381), - [anon_sym_BSLASHsubimport] = ACTIONS(5381), - [anon_sym_BSLASHinputfrom] = ACTIONS(5381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5381), - [anon_sym_BSLASHincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHcaption] = ACTIONS(5381), - [anon_sym_BSLASHcite] = ACTIONS(5381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCite] = ACTIONS(5381), - [anon_sym_BSLASHnocite] = ACTIONS(5381), - [anon_sym_BSLASHcitet] = ACTIONS(5381), - [anon_sym_BSLASHcitep] = ACTIONS(5381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteyear] = ACTIONS(5381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitedate] = ACTIONS(5381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteurl] = ACTIONS(5381), - [anon_sym_BSLASHfullcite] = ACTIONS(5381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5381), - [anon_sym_BSLASHcitealt] = ACTIONS(5381), - [anon_sym_BSLASHcitealp] = ACTIONS(5381), - [anon_sym_BSLASHcitetext] = ACTIONS(5381), - [anon_sym_BSLASHparencite] = ACTIONS(5381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHParencite] = ACTIONS(5381), - [anon_sym_BSLASHfootcite] = ACTIONS(5381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5381), - [anon_sym_BSLASHtextcite] = ACTIONS(5381), - [anon_sym_BSLASHTextcite] = ACTIONS(5381), - [anon_sym_BSLASHsmartcite] = ACTIONS(5381), - [anon_sym_BSLASHSmartcite] = ACTIONS(5381), - [anon_sym_BSLASHsupercite] = ACTIONS(5381), - [anon_sym_BSLASHautocite] = ACTIONS(5381), - [anon_sym_BSLASHAutocite] = ACTIONS(5381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHvolcite] = ACTIONS(5381), - [anon_sym_BSLASHVolcite] = ACTIONS(5381), - [anon_sym_BSLASHpvolcite] = ACTIONS(5381), - [anon_sym_BSLASHPvolcite] = ACTIONS(5381), - [anon_sym_BSLASHfvolcite] = ACTIONS(5381), - [anon_sym_BSLASHftvolcite] = ACTIONS(5381), - [anon_sym_BSLASHsvolcite] = ACTIONS(5381), - [anon_sym_BSLASHSvolcite] = ACTIONS(5381), - [anon_sym_BSLASHtvolcite] = ACTIONS(5381), - [anon_sym_BSLASHTvolcite] = ACTIONS(5381), - [anon_sym_BSLASHavolcite] = ACTIONS(5381), - [anon_sym_BSLASHAvolcite] = ACTIONS(5381), - [anon_sym_BSLASHnotecite] = ACTIONS(5381), - [anon_sym_BSLASHNotecite] = ACTIONS(5381), - [anon_sym_BSLASHpnotecite] = ACTIONS(5381), - [anon_sym_BSLASHPnotecite] = ACTIONS(5381), - [anon_sym_BSLASHfnotecite] = ACTIONS(5381), - [anon_sym_BSLASHlabel] = ACTIONS(5381), - [anon_sym_BSLASHref] = ACTIONS(5381), - [anon_sym_BSLASHeqref] = ACTIONS(5381), - [anon_sym_BSLASHvref] = ACTIONS(5381), - [anon_sym_BSLASHVref] = ACTIONS(5381), - [anon_sym_BSLASHautoref] = ACTIONS(5381), - [anon_sym_BSLASHpageref] = ACTIONS(5381), - [anon_sym_BSLASHcref] = ACTIONS(5381), - [anon_sym_BSLASHCref] = ACTIONS(5381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnameCref] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHlabelcref] = ACTIONS(5381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnewlabel] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5379), - [anon_sym_BSLASHdef] = ACTIONS(5381), - [anon_sym_BSLASHlet] = ACTIONS(5381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5381), - [anon_sym_BSLASHgls] = ACTIONS(5381), - [anon_sym_BSLASHGls] = ACTIONS(5381), - [anon_sym_BSLASHGLS] = ACTIONS(5381), - [anon_sym_BSLASHglspl] = ACTIONS(5381), - [anon_sym_BSLASHGlspl] = ACTIONS(5381), - [anon_sym_BSLASHGLSpl] = ACTIONS(5381), - [anon_sym_BSLASHglsdisp] = ACTIONS(5381), - [anon_sym_BSLASHglslink] = ACTIONS(5381), - [anon_sym_BSLASHglstext] = ACTIONS(5381), - [anon_sym_BSLASHGlstext] = ACTIONS(5381), - [anon_sym_BSLASHGLStext] = ACTIONS(5381), - [anon_sym_BSLASHglsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5381), - [anon_sym_BSLASHglsplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSplural] = ACTIONS(5381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHglsname] = ACTIONS(5381), - [anon_sym_BSLASHGlsname] = ACTIONS(5381), - [anon_sym_BSLASHGLSname] = ACTIONS(5381), - [anon_sym_BSLASHglssymbol] = ACTIONS(5381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5381), - [anon_sym_BSLASHglsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5381), - [anon_sym_BSLASHglsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5381), - [anon_sym_BSLASHglsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5381), - [anon_sym_BSLASHglsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5381), - [anon_sym_BSLASHglsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5381), - [anon_sym_BSLASHnewacronym] = ACTIONS(5381), - [anon_sym_BSLASHacrshort] = ACTIONS(5381), - [anon_sym_BSLASHAcrshort] = ACTIONS(5381), - [anon_sym_BSLASHACRshort] = ACTIONS(5381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5381), - [anon_sym_BSLASHacrlong] = ACTIONS(5381), - [anon_sym_BSLASHAcrlong] = ACTIONS(5381), - [anon_sym_BSLASHACRlong] = ACTIONS(5381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5381), - [anon_sym_BSLASHacrfull] = ACTIONS(5381), - [anon_sym_BSLASHAcrfull] = ACTIONS(5381), - [anon_sym_BSLASHACRfull] = ACTIONS(5381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5381), - [anon_sym_BSLASHacs] = ACTIONS(5381), - [anon_sym_BSLASHAcs] = ACTIONS(5381), - [anon_sym_BSLASHacsp] = ACTIONS(5381), - [anon_sym_BSLASHAcsp] = ACTIONS(5381), - [anon_sym_BSLASHacl] = ACTIONS(5381), - [anon_sym_BSLASHAcl] = ACTIONS(5381), - [anon_sym_BSLASHaclp] = ACTIONS(5381), - [anon_sym_BSLASHAclp] = ACTIONS(5381), - [anon_sym_BSLASHacf] = ACTIONS(5381), - [anon_sym_BSLASHAcf] = ACTIONS(5381), - [anon_sym_BSLASHacfp] = ACTIONS(5381), - [anon_sym_BSLASHAcfp] = ACTIONS(5381), - [anon_sym_BSLASHac] = ACTIONS(5381), - [anon_sym_BSLASHAc] = ACTIONS(5381), - [anon_sym_BSLASHacp] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5381), - [anon_sym_BSLASHcolor] = ACTIONS(5381), - [anon_sym_BSLASHcolorbox] = ACTIONS(5381), - [anon_sym_BSLASHtextcolor] = ACTIONS(5381), - [anon_sym_BSLASHpagecolor] = ACTIONS(5381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5381), - }, - [907] = { - [sym_command_name] = ACTIONS(5029), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_BSLASHpart] = ACTIONS(5029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddpart] = ACTIONS(5029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHchapter] = ACTIONS(5029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddchap] = ACTIONS(5029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsection] = ACTIONS(5029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddsec] = ACTIONS(5029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHparagraph] = ACTIONS(5029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHitem] = ACTIONS(5029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5027), - [anon_sym_BSLASHbegin] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - }, - [908] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_BSLASHpart] = ACTIONS(5371), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddpart] = ACTIONS(5371), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHchapter] = ACTIONS(5371), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddchap] = ACTIONS(5371), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsection] = ACTIONS(5371), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddsec] = ACTIONS(5371), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHparagraph] = ACTIONS(5371), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5371), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHitem] = ACTIONS(5371), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5369), - [anon_sym_BSLASHbegin] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), - }, - [909] = { - [sym_command_name] = ACTIONS(5367), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5367), - [anon_sym_LPAREN] = ACTIONS(5365), - [anon_sym_RPAREN] = ACTIONS(5365), - [anon_sym_LBRACK] = ACTIONS(5365), - [anon_sym_RBRACK] = ACTIONS(5365), - [anon_sym_COMMA] = ACTIONS(5365), - [anon_sym_EQ] = ACTIONS(5365), - [anon_sym_BSLASHpart] = ACTIONS(5367), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddpart] = ACTIONS(5367), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5365), - [anon_sym_BSLASHchapter] = ACTIONS(5367), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddchap] = ACTIONS(5367), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsection] = ACTIONS(5367), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddsec] = ACTIONS(5367), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubsection] = ACTIONS(5367), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5367), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHparagraph] = ACTIONS(5367), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5367), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5365), - [anon_sym_BSLASHitem] = ACTIONS(5367), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5365), - [anon_sym_LBRACE] = ACTIONS(5365), - [sym_word] = ACTIONS(5367), - [sym_placeholder] = ACTIONS(5365), - [anon_sym_PLUS] = ACTIONS(5367), - [anon_sym_DASH] = ACTIONS(5367), - [anon_sym_STAR] = ACTIONS(5367), - [anon_sym_SLASH] = ACTIONS(5367), - [anon_sym_CARET] = ACTIONS(5367), - [anon_sym__] = ACTIONS(5367), - [anon_sym_LT] = ACTIONS(5367), - [anon_sym_GT] = ACTIONS(5367), - [anon_sym_BANG] = ACTIONS(5367), - [anon_sym_PIPE] = ACTIONS(5367), - [anon_sym_COLON] = ACTIONS(5367), - [anon_sym_SQUOTE] = ACTIONS(5367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5365), - [anon_sym_DOLLAR] = ACTIONS(5367), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5365), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5365), - [anon_sym_BSLASHbegin] = ACTIONS(5367), - [anon_sym_BSLASHusepackage] = ACTIONS(5367), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5367), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5367), - [anon_sym_BSLASHinclude] = ACTIONS(5367), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5367), - [anon_sym_BSLASHinput] = ACTIONS(5367), - [anon_sym_BSLASHsubfile] = ACTIONS(5367), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5367), - [anon_sym_BSLASHbibliography] = ACTIONS(5367), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5367), - [anon_sym_BSLASHincludesvg] = ACTIONS(5367), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5367), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5367), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5367), - [anon_sym_BSLASHimport] = ACTIONS(5367), - [anon_sym_BSLASHsubimport] = ACTIONS(5367), - [anon_sym_BSLASHinputfrom] = ACTIONS(5367), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5367), - [anon_sym_BSLASHincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHcaption] = ACTIONS(5367), - [anon_sym_BSLASHcite] = ACTIONS(5367), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCite] = ACTIONS(5367), - [anon_sym_BSLASHnocite] = ACTIONS(5367), - [anon_sym_BSLASHcitet] = ACTIONS(5367), - [anon_sym_BSLASHcitep] = ACTIONS(5367), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor] = ACTIONS(5367), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5367), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle] = ACTIONS(5367), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteyear] = ACTIONS(5367), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitedate] = ACTIONS(5367), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteurl] = ACTIONS(5367), - [anon_sym_BSLASHfullcite] = ACTIONS(5367), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5367), - [anon_sym_BSLASHcitealt] = ACTIONS(5367), - [anon_sym_BSLASHcitealp] = ACTIONS(5367), - [anon_sym_BSLASHcitetext] = ACTIONS(5367), - [anon_sym_BSLASHparencite] = ACTIONS(5367), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHParencite] = ACTIONS(5367), - [anon_sym_BSLASHfootcite] = ACTIONS(5367), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5367), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5367), - [anon_sym_BSLASHtextcite] = ACTIONS(5367), - [anon_sym_BSLASHTextcite] = ACTIONS(5367), - [anon_sym_BSLASHsmartcite] = ACTIONS(5367), - [anon_sym_BSLASHSmartcite] = ACTIONS(5367), - [anon_sym_BSLASHsupercite] = ACTIONS(5367), - [anon_sym_BSLASHautocite] = ACTIONS(5367), - [anon_sym_BSLASHAutocite] = ACTIONS(5367), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHvolcite] = ACTIONS(5367), - [anon_sym_BSLASHVolcite] = ACTIONS(5367), - [anon_sym_BSLASHpvolcite] = ACTIONS(5367), - [anon_sym_BSLASHPvolcite] = ACTIONS(5367), - [anon_sym_BSLASHfvolcite] = ACTIONS(5367), - [anon_sym_BSLASHftvolcite] = ACTIONS(5367), - [anon_sym_BSLASHsvolcite] = ACTIONS(5367), - [anon_sym_BSLASHSvolcite] = ACTIONS(5367), - [anon_sym_BSLASHtvolcite] = ACTIONS(5367), - [anon_sym_BSLASHTvolcite] = ACTIONS(5367), - [anon_sym_BSLASHavolcite] = ACTIONS(5367), - [anon_sym_BSLASHAvolcite] = ACTIONS(5367), - [anon_sym_BSLASHnotecite] = ACTIONS(5367), - [anon_sym_BSLASHNotecite] = ACTIONS(5367), - [anon_sym_BSLASHpnotecite] = ACTIONS(5367), - [anon_sym_BSLASHPnotecite] = ACTIONS(5367), - [anon_sym_BSLASHfnotecite] = ACTIONS(5367), - [anon_sym_BSLASHlabel] = ACTIONS(5367), - [anon_sym_BSLASHref] = ACTIONS(5367), - [anon_sym_BSLASHeqref] = ACTIONS(5367), - [anon_sym_BSLASHvref] = ACTIONS(5367), - [anon_sym_BSLASHVref] = ACTIONS(5367), - [anon_sym_BSLASHautoref] = ACTIONS(5367), - [anon_sym_BSLASHpageref] = ACTIONS(5367), - [anon_sym_BSLASHcref] = ACTIONS(5367), - [anon_sym_BSLASHCref] = ACTIONS(5367), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnameCref] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHlabelcref] = ACTIONS(5367), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange] = ACTIONS(5367), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnewlabel] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5367), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5367), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5367), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5365), - [anon_sym_BSLASHdef] = ACTIONS(5367), - [anon_sym_BSLASHlet] = ACTIONS(5367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5367), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5367), - [anon_sym_BSLASHgls] = ACTIONS(5367), - [anon_sym_BSLASHGls] = ACTIONS(5367), - [anon_sym_BSLASHGLS] = ACTIONS(5367), - [anon_sym_BSLASHglspl] = ACTIONS(5367), - [anon_sym_BSLASHGlspl] = ACTIONS(5367), - [anon_sym_BSLASHGLSpl] = ACTIONS(5367), - [anon_sym_BSLASHglsdisp] = ACTIONS(5367), - [anon_sym_BSLASHglslink] = ACTIONS(5367), - [anon_sym_BSLASHglstext] = ACTIONS(5367), - [anon_sym_BSLASHGlstext] = ACTIONS(5367), - [anon_sym_BSLASHGLStext] = ACTIONS(5367), - [anon_sym_BSLASHglsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5367), - [anon_sym_BSLASHglsplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSplural] = ACTIONS(5367), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHglsname] = ACTIONS(5367), - [anon_sym_BSLASHGlsname] = ACTIONS(5367), - [anon_sym_BSLASHGLSname] = ACTIONS(5367), - [anon_sym_BSLASHglssymbol] = ACTIONS(5367), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5367), - [anon_sym_BSLASHglsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5367), - [anon_sym_BSLASHglsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5367), - [anon_sym_BSLASHglsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5367), - [anon_sym_BSLASHglsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5367), - [anon_sym_BSLASHglsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5367), - [anon_sym_BSLASHnewacronym] = ACTIONS(5367), - [anon_sym_BSLASHacrshort] = ACTIONS(5367), - [anon_sym_BSLASHAcrshort] = ACTIONS(5367), - [anon_sym_BSLASHACRshort] = ACTIONS(5367), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5367), - [anon_sym_BSLASHacrlong] = ACTIONS(5367), - [anon_sym_BSLASHAcrlong] = ACTIONS(5367), - [anon_sym_BSLASHACRlong] = ACTIONS(5367), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5367), - [anon_sym_BSLASHacrfull] = ACTIONS(5367), - [anon_sym_BSLASHAcrfull] = ACTIONS(5367), - [anon_sym_BSLASHACRfull] = ACTIONS(5367), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5367), - [anon_sym_BSLASHacs] = ACTIONS(5367), - [anon_sym_BSLASHAcs] = ACTIONS(5367), - [anon_sym_BSLASHacsp] = ACTIONS(5367), - [anon_sym_BSLASHAcsp] = ACTIONS(5367), - [anon_sym_BSLASHacl] = ACTIONS(5367), - [anon_sym_BSLASHAcl] = ACTIONS(5367), - [anon_sym_BSLASHaclp] = ACTIONS(5367), - [anon_sym_BSLASHAclp] = ACTIONS(5367), - [anon_sym_BSLASHacf] = ACTIONS(5367), - [anon_sym_BSLASHAcf] = ACTIONS(5367), - [anon_sym_BSLASHacfp] = ACTIONS(5367), - [anon_sym_BSLASHAcfp] = ACTIONS(5367), - [anon_sym_BSLASHac] = ACTIONS(5367), - [anon_sym_BSLASHAc] = ACTIONS(5367), - [anon_sym_BSLASHacp] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5367), - [anon_sym_BSLASHcolor] = ACTIONS(5367), - [anon_sym_BSLASHcolorbox] = ACTIONS(5367), - [anon_sym_BSLASHtextcolor] = ACTIONS(5367), - [anon_sym_BSLASHpagecolor] = ACTIONS(5367), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5367), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5367), - }, - [910] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_BSLASHpart] = ACTIONS(5361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddpart] = ACTIONS(5361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHchapter] = ACTIONS(5361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddchap] = ACTIONS(5361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsection] = ACTIONS(5361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddsec] = ACTIONS(5361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHparagraph] = ACTIONS(5361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHitem] = ACTIONS(5361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5359), - [anon_sym_BSLASHbegin] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - }, - [911] = { - [sym_command_name] = ACTIONS(5357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_BSLASHpart] = ACTIONS(5357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddpart] = ACTIONS(5357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHchapter] = ACTIONS(5357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddchap] = ACTIONS(5357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsection] = ACTIONS(5357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddsec] = ACTIONS(5357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHparagraph] = ACTIONS(5357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHitem] = ACTIONS(5357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5355), - [anon_sym_BSLASHbegin] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), - }, - [912] = { - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_BSLASHpart] = ACTIONS(5159), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddpart] = ACTIONS(5159), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHchapter] = ACTIONS(5159), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddchap] = ACTIONS(5159), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsection] = ACTIONS(5159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddsec] = ACTIONS(5159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHparagraph] = ACTIONS(5159), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHitem] = ACTIONS(5159), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASHbegin] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHparagraph] = ACTIONS(4479), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(4479), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [913] = { - [sym_command_name] = ACTIONS(4987), + [604] = { + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(634), + [aux_sym__section_repeat6] = STATE(634), + [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_BSLASHpart] = ACTIONS(4987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddpart] = ACTIONS(4987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHchapter] = ACTIONS(4987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddchap] = ACTIONS(4987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsection] = ACTIONS(4987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddsec] = ACTIONS(4987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHparagraph] = ACTIONS(4987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHitem] = ACTIONS(4987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(4985), - [sym_word] = ACTIONS(4987), - [sym_placeholder] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym__] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4985), - [anon_sym_BSLASHbegin] = ACTIONS(4987), - [anon_sym_BSLASHusepackage] = ACTIONS(4987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), - [anon_sym_BSLASHinclude] = ACTIONS(4987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), - [anon_sym_BSLASHinput] = ACTIONS(4987), - [anon_sym_BSLASHsubfile] = ACTIONS(4987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), - [anon_sym_BSLASHbibliography] = ACTIONS(4987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), - [anon_sym_BSLASHincludesvg] = ACTIONS(4987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), - [anon_sym_BSLASHimport] = ACTIONS(4987), - [anon_sym_BSLASHsubimport] = ACTIONS(4987), - [anon_sym_BSLASHinputfrom] = ACTIONS(4987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), - [anon_sym_BSLASHincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHcaption] = ACTIONS(4987), - [anon_sym_BSLASHcite] = ACTIONS(4987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCite] = ACTIONS(4987), - [anon_sym_BSLASHnocite] = ACTIONS(4987), - [anon_sym_BSLASHcitet] = ACTIONS(4987), - [anon_sym_BSLASHcitep] = ACTIONS(4987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteauthor] = ACTIONS(4987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitetitle] = ACTIONS(4987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteyear] = ACTIONS(4987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitedate] = ACTIONS(4987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteurl] = ACTIONS(4987), - [anon_sym_BSLASHfullcite] = ACTIONS(4987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), - [anon_sym_BSLASHcitealt] = ACTIONS(4987), - [anon_sym_BSLASHcitealp] = ACTIONS(4987), - [anon_sym_BSLASHcitetext] = ACTIONS(4987), - [anon_sym_BSLASHparencite] = ACTIONS(4987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHParencite] = ACTIONS(4987), - [anon_sym_BSLASHfootcite] = ACTIONS(4987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), - [anon_sym_BSLASHtextcite] = ACTIONS(4987), - [anon_sym_BSLASHTextcite] = ACTIONS(4987), - [anon_sym_BSLASHsmartcite] = ACTIONS(4987), - [anon_sym_BSLASHSmartcite] = ACTIONS(4987), - [anon_sym_BSLASHsupercite] = ACTIONS(4987), - [anon_sym_BSLASHautocite] = ACTIONS(4987), - [anon_sym_BSLASHAutocite] = ACTIONS(4987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHvolcite] = ACTIONS(4987), - [anon_sym_BSLASHVolcite] = ACTIONS(4987), - [anon_sym_BSLASHpvolcite] = ACTIONS(4987), - [anon_sym_BSLASHPvolcite] = ACTIONS(4987), - [anon_sym_BSLASHfvolcite] = ACTIONS(4987), - [anon_sym_BSLASHftvolcite] = ACTIONS(4987), - [anon_sym_BSLASHsvolcite] = ACTIONS(4987), - [anon_sym_BSLASHSvolcite] = ACTIONS(4987), - [anon_sym_BSLASHtvolcite] = ACTIONS(4987), - [anon_sym_BSLASHTvolcite] = ACTIONS(4987), - [anon_sym_BSLASHavolcite] = ACTIONS(4987), - [anon_sym_BSLASHAvolcite] = ACTIONS(4987), - [anon_sym_BSLASHnotecite] = ACTIONS(4987), - [anon_sym_BSLASHNotecite] = ACTIONS(4987), - [anon_sym_BSLASHpnotecite] = ACTIONS(4987), - [anon_sym_BSLASHPnotecite] = ACTIONS(4987), - [anon_sym_BSLASHfnotecite] = ACTIONS(4987), - [anon_sym_BSLASHlabel] = ACTIONS(4987), - [anon_sym_BSLASHref] = ACTIONS(4987), - [anon_sym_BSLASHeqref] = ACTIONS(4987), - [anon_sym_BSLASHvref] = ACTIONS(4987), - [anon_sym_BSLASHVref] = ACTIONS(4987), - [anon_sym_BSLASHautoref] = ACTIONS(4987), - [anon_sym_BSLASHpageref] = ACTIONS(4987), - [anon_sym_BSLASHcref] = ACTIONS(4987), - [anon_sym_BSLASHCref] = ACTIONS(4987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnameCref] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHlabelcref] = ACTIONS(4987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCrefrange] = ACTIONS(4987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnewlabel] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdef] = ACTIONS(4987), - [anon_sym_BSLASHlet] = ACTIONS(4987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), - [anon_sym_BSLASHgls] = ACTIONS(4987), - [anon_sym_BSLASHGls] = ACTIONS(4987), - [anon_sym_BSLASHGLS] = ACTIONS(4987), - [anon_sym_BSLASHglspl] = ACTIONS(4987), - [anon_sym_BSLASHGlspl] = ACTIONS(4987), - [anon_sym_BSLASHGLSpl] = ACTIONS(4987), - [anon_sym_BSLASHglsdisp] = ACTIONS(4987), - [anon_sym_BSLASHglslink] = ACTIONS(4987), - [anon_sym_BSLASHglstext] = ACTIONS(4987), - [anon_sym_BSLASHGlstext] = ACTIONS(4987), - [anon_sym_BSLASHGLStext] = ACTIONS(4987), - [anon_sym_BSLASHglsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), - [anon_sym_BSLASHglsplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSplural] = ACTIONS(4987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHglsname] = ACTIONS(4987), - [anon_sym_BSLASHGlsname] = ACTIONS(4987), - [anon_sym_BSLASHGLSname] = ACTIONS(4987), - [anon_sym_BSLASHglssymbol] = ACTIONS(4987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), - [anon_sym_BSLASHglsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), - [anon_sym_BSLASHglsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), - [anon_sym_BSLASHglsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), - [anon_sym_BSLASHglsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), - [anon_sym_BSLASHglsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), - [anon_sym_BSLASHnewacronym] = ACTIONS(4987), - [anon_sym_BSLASHacrshort] = ACTIONS(4987), - [anon_sym_BSLASHAcrshort] = ACTIONS(4987), - [anon_sym_BSLASHACRshort] = ACTIONS(4987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), - [anon_sym_BSLASHacrlong] = ACTIONS(4987), - [anon_sym_BSLASHAcrlong] = ACTIONS(4987), - [anon_sym_BSLASHACRlong] = ACTIONS(4987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), - [anon_sym_BSLASHacrfull] = ACTIONS(4987), - [anon_sym_BSLASHAcrfull] = ACTIONS(4987), - [anon_sym_BSLASHACRfull] = ACTIONS(4987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), - [anon_sym_BSLASHacs] = ACTIONS(4987), - [anon_sym_BSLASHAcs] = ACTIONS(4987), - [anon_sym_BSLASHacsp] = ACTIONS(4987), - [anon_sym_BSLASHAcsp] = ACTIONS(4987), - [anon_sym_BSLASHacl] = ACTIONS(4987), - [anon_sym_BSLASHAcl] = ACTIONS(4987), - [anon_sym_BSLASHaclp] = ACTIONS(4987), - [anon_sym_BSLASHAclp] = ACTIONS(4987), - [anon_sym_BSLASHacf] = ACTIONS(4987), - [anon_sym_BSLASHAcf] = ACTIONS(4987), - [anon_sym_BSLASHacfp] = ACTIONS(4987), - [anon_sym_BSLASHAcfp] = ACTIONS(4987), - [anon_sym_BSLASHac] = ACTIONS(4987), - [anon_sym_BSLASHAc] = ACTIONS(4987), - [anon_sym_BSLASHacp] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), - [anon_sym_BSLASHcolor] = ACTIONS(4987), - [anon_sym_BSLASHcolorbox] = ACTIONS(4987), - [anon_sym_BSLASHtextcolor] = ACTIONS(4987), - [anon_sym_BSLASHpagecolor] = ACTIONS(4987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHitem] = ACTIONS(4479), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [914] = { - [sym_command_name] = ACTIONS(4991), + [605] = { + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(633), + [aux_sym__section_repeat5] = STATE(633), + [sym_command_name] = ACTIONS(4479), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_BSLASHpart] = ACTIONS(4991), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddpart] = ACTIONS(4991), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHchapter] = ACTIONS(4991), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddchap] = ACTIONS(4991), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsection] = ACTIONS(4991), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddsec] = ACTIONS(4991), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHparagraph] = ACTIONS(4991), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHitem] = ACTIONS(4991), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4989), - [sym_word] = ACTIONS(4991), - [sym_placeholder] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym__] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4989), - [anon_sym_BSLASHbegin] = ACTIONS(4991), - [anon_sym_BSLASHusepackage] = ACTIONS(4991), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), - [anon_sym_BSLASHinclude] = ACTIONS(4991), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), - [anon_sym_BSLASHinput] = ACTIONS(4991), - [anon_sym_BSLASHsubfile] = ACTIONS(4991), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), - [anon_sym_BSLASHbibliography] = ACTIONS(4991), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), - [anon_sym_BSLASHincludesvg] = ACTIONS(4991), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), - [anon_sym_BSLASHimport] = ACTIONS(4991), - [anon_sym_BSLASHsubimport] = ACTIONS(4991), - [anon_sym_BSLASHinputfrom] = ACTIONS(4991), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), - [anon_sym_BSLASHincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHcaption] = ACTIONS(4991), - [anon_sym_BSLASHcite] = ACTIONS(4991), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCite] = ACTIONS(4991), - [anon_sym_BSLASHnocite] = ACTIONS(4991), - [anon_sym_BSLASHcitet] = ACTIONS(4991), - [anon_sym_BSLASHcitep] = ACTIONS(4991), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteauthor] = ACTIONS(4991), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitetitle] = ACTIONS(4991), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteyear] = ACTIONS(4991), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitedate] = ACTIONS(4991), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteurl] = ACTIONS(4991), - [anon_sym_BSLASHfullcite] = ACTIONS(4991), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), - [anon_sym_BSLASHcitealt] = ACTIONS(4991), - [anon_sym_BSLASHcitealp] = ACTIONS(4991), - [anon_sym_BSLASHcitetext] = ACTIONS(4991), - [anon_sym_BSLASHparencite] = ACTIONS(4991), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHParencite] = ACTIONS(4991), - [anon_sym_BSLASHfootcite] = ACTIONS(4991), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), - [anon_sym_BSLASHtextcite] = ACTIONS(4991), - [anon_sym_BSLASHTextcite] = ACTIONS(4991), - [anon_sym_BSLASHsmartcite] = ACTIONS(4991), - [anon_sym_BSLASHSmartcite] = ACTIONS(4991), - [anon_sym_BSLASHsupercite] = ACTIONS(4991), - [anon_sym_BSLASHautocite] = ACTIONS(4991), - [anon_sym_BSLASHAutocite] = ACTIONS(4991), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHvolcite] = ACTIONS(4991), - [anon_sym_BSLASHVolcite] = ACTIONS(4991), - [anon_sym_BSLASHpvolcite] = ACTIONS(4991), - [anon_sym_BSLASHPvolcite] = ACTIONS(4991), - [anon_sym_BSLASHfvolcite] = ACTIONS(4991), - [anon_sym_BSLASHftvolcite] = ACTIONS(4991), - [anon_sym_BSLASHsvolcite] = ACTIONS(4991), - [anon_sym_BSLASHSvolcite] = ACTIONS(4991), - [anon_sym_BSLASHtvolcite] = ACTIONS(4991), - [anon_sym_BSLASHTvolcite] = ACTIONS(4991), - [anon_sym_BSLASHavolcite] = ACTIONS(4991), - [anon_sym_BSLASHAvolcite] = ACTIONS(4991), - [anon_sym_BSLASHnotecite] = ACTIONS(4991), - [anon_sym_BSLASHNotecite] = ACTIONS(4991), - [anon_sym_BSLASHpnotecite] = ACTIONS(4991), - [anon_sym_BSLASHPnotecite] = ACTIONS(4991), - [anon_sym_BSLASHfnotecite] = ACTIONS(4991), - [anon_sym_BSLASHlabel] = ACTIONS(4991), - [anon_sym_BSLASHref] = ACTIONS(4991), - [anon_sym_BSLASHeqref] = ACTIONS(4991), - [anon_sym_BSLASHvref] = ACTIONS(4991), - [anon_sym_BSLASHVref] = ACTIONS(4991), - [anon_sym_BSLASHautoref] = ACTIONS(4991), - [anon_sym_BSLASHpageref] = ACTIONS(4991), - [anon_sym_BSLASHcref] = ACTIONS(4991), - [anon_sym_BSLASHCref] = ACTIONS(4991), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnameCref] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHlabelcref] = ACTIONS(4991), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCrefrange] = ACTIONS(4991), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnewlabel] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdef] = ACTIONS(4991), - [anon_sym_BSLASHlet] = ACTIONS(4991), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), - [anon_sym_BSLASHgls] = ACTIONS(4991), - [anon_sym_BSLASHGls] = ACTIONS(4991), - [anon_sym_BSLASHGLS] = ACTIONS(4991), - [anon_sym_BSLASHglspl] = ACTIONS(4991), - [anon_sym_BSLASHGlspl] = ACTIONS(4991), - [anon_sym_BSLASHGLSpl] = ACTIONS(4991), - [anon_sym_BSLASHglsdisp] = ACTIONS(4991), - [anon_sym_BSLASHglslink] = ACTIONS(4991), - [anon_sym_BSLASHglstext] = ACTIONS(4991), - [anon_sym_BSLASHGlstext] = ACTIONS(4991), - [anon_sym_BSLASHGLStext] = ACTIONS(4991), - [anon_sym_BSLASHglsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), - [anon_sym_BSLASHglsplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSplural] = ACTIONS(4991), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHglsname] = ACTIONS(4991), - [anon_sym_BSLASHGlsname] = ACTIONS(4991), - [anon_sym_BSLASHGLSname] = ACTIONS(4991), - [anon_sym_BSLASHglssymbol] = ACTIONS(4991), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), - [anon_sym_BSLASHglsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), - [anon_sym_BSLASHglsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), - [anon_sym_BSLASHglsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), - [anon_sym_BSLASHglsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), - [anon_sym_BSLASHglsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), - [anon_sym_BSLASHnewacronym] = ACTIONS(4991), - [anon_sym_BSLASHacrshort] = ACTIONS(4991), - [anon_sym_BSLASHAcrshort] = ACTIONS(4991), - [anon_sym_BSLASHACRshort] = ACTIONS(4991), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), - [anon_sym_BSLASHacrlong] = ACTIONS(4991), - [anon_sym_BSLASHAcrlong] = ACTIONS(4991), - [anon_sym_BSLASHACRlong] = ACTIONS(4991), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), - [anon_sym_BSLASHacrfull] = ACTIONS(4991), - [anon_sym_BSLASHAcrfull] = ACTIONS(4991), - [anon_sym_BSLASHACRfull] = ACTIONS(4991), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), - [anon_sym_BSLASHacs] = ACTIONS(4991), - [anon_sym_BSLASHAcs] = ACTIONS(4991), - [anon_sym_BSLASHacsp] = ACTIONS(4991), - [anon_sym_BSLASHAcsp] = ACTIONS(4991), - [anon_sym_BSLASHacl] = ACTIONS(4991), - [anon_sym_BSLASHAcl] = ACTIONS(4991), - [anon_sym_BSLASHaclp] = ACTIONS(4991), - [anon_sym_BSLASHAclp] = ACTIONS(4991), - [anon_sym_BSLASHacf] = ACTIONS(4991), - [anon_sym_BSLASHAcf] = ACTIONS(4991), - [anon_sym_BSLASHacfp] = ACTIONS(4991), - [anon_sym_BSLASHAcfp] = ACTIONS(4991), - [anon_sym_BSLASHac] = ACTIONS(4991), - [anon_sym_BSLASHAc] = ACTIONS(4991), - [anon_sym_BSLASHacp] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), - [anon_sym_BSLASHcolor] = ACTIONS(4991), - [anon_sym_BSLASHcolorbox] = ACTIONS(4991), - [anon_sym_BSLASHtextcolor] = ACTIONS(4991), - [anon_sym_BSLASHpagecolor] = ACTIONS(4991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHiffalse] = ACTIONS(4479), + [anon_sym_LPAREN] = ACTIONS(4477), + [anon_sym_RPAREN] = ACTIONS(4477), + [anon_sym_LBRACK] = ACTIONS(4477), + [anon_sym_RBRACK] = ACTIONS(4477), + [anon_sym_COMMA] = ACTIONS(4477), + [anon_sym_EQ] = ACTIONS(4477), + [anon_sym_BSLASHpart] = ACTIONS(4479), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddpart] = ACTIONS(4479), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4477), + [anon_sym_BSLASHchapter] = ACTIONS(4479), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddchap] = ACTIONS(4479), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsection] = ACTIONS(4479), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHaddsec] = ACTIONS(4479), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsection] = ACTIONS(4479), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(4479), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4479), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4477), + [anon_sym_BSLASHitem] = ACTIONS(4479), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4477), + [anon_sym_LBRACE] = ACTIONS(4477), + [sym_word] = ACTIONS(4479), + [sym_placeholder] = ACTIONS(4477), + [anon_sym_PLUS] = ACTIONS(4479), + [anon_sym_DASH] = ACTIONS(4479), + [anon_sym_STAR] = ACTIONS(4479), + [anon_sym_SLASH] = ACTIONS(4479), + [anon_sym_CARET] = ACTIONS(4479), + [anon_sym__] = ACTIONS(4479), + [anon_sym_LT] = ACTIONS(4479), + [anon_sym_GT] = ACTIONS(4479), + [anon_sym_BANG] = ACTIONS(4479), + [anon_sym_PIPE] = ACTIONS(4479), + [anon_sym_COLON] = ACTIONS(4479), + [anon_sym_SQUOTE] = ACTIONS(4479), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4477), + [anon_sym_DOLLAR] = ACTIONS(4479), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4477), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4477), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4477), + [anon_sym_BSLASHbegin] = ACTIONS(4479), + [anon_sym_BSLASHusepackage] = ACTIONS(4479), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4479), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4479), + [anon_sym_BSLASHinclude] = ACTIONS(4479), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4479), + [anon_sym_BSLASHinput] = ACTIONS(4479), + [anon_sym_BSLASHsubfile] = ACTIONS(4479), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4479), + [anon_sym_BSLASHbibliography] = ACTIONS(4479), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4479), + [anon_sym_BSLASHincludesvg] = ACTIONS(4479), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4479), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4479), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4479), + [anon_sym_BSLASHimport] = ACTIONS(4479), + [anon_sym_BSLASHsubimport] = ACTIONS(4479), + [anon_sym_BSLASHinputfrom] = ACTIONS(4479), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4479), + [anon_sym_BSLASHincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4479), + [anon_sym_BSLASHcaption] = ACTIONS(4479), + [anon_sym_BSLASHcite] = ACTIONS(4479), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCite] = ACTIONS(4479), + [anon_sym_BSLASHnocite] = ACTIONS(4479), + [anon_sym_BSLASHcitet] = ACTIONS(4479), + [anon_sym_BSLASHcitep] = ACTIONS(4479), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteauthor] = ACTIONS(4479), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4479), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitetitle] = ACTIONS(4479), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteyear] = ACTIONS(4479), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4477), + [anon_sym_BSLASHcitedate] = ACTIONS(4479), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4477), + [anon_sym_BSLASHciteurl] = ACTIONS(4479), + [anon_sym_BSLASHfullcite] = ACTIONS(4479), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4479), + [anon_sym_BSLASHcitealt] = ACTIONS(4479), + [anon_sym_BSLASHcitealp] = ACTIONS(4479), + [anon_sym_BSLASHcitetext] = ACTIONS(4479), + [anon_sym_BSLASHparencite] = ACTIONS(4479), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHParencite] = ACTIONS(4479), + [anon_sym_BSLASHfootcite] = ACTIONS(4479), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4479), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4479), + [anon_sym_BSLASHtextcite] = ACTIONS(4479), + [anon_sym_BSLASHTextcite] = ACTIONS(4479), + [anon_sym_BSLASHsmartcite] = ACTIONS(4479), + [anon_sym_BSLASHSmartcite] = ACTIONS(4479), + [anon_sym_BSLASHsupercite] = ACTIONS(4479), + [anon_sym_BSLASHautocite] = ACTIONS(4479), + [anon_sym_BSLASHAutocite] = ACTIONS(4479), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4477), + [anon_sym_BSLASHvolcite] = ACTIONS(4479), + [anon_sym_BSLASHVolcite] = ACTIONS(4479), + [anon_sym_BSLASHpvolcite] = ACTIONS(4479), + [anon_sym_BSLASHPvolcite] = ACTIONS(4479), + [anon_sym_BSLASHfvolcite] = ACTIONS(4479), + [anon_sym_BSLASHftvolcite] = ACTIONS(4479), + [anon_sym_BSLASHsvolcite] = ACTIONS(4479), + [anon_sym_BSLASHSvolcite] = ACTIONS(4479), + [anon_sym_BSLASHtvolcite] = ACTIONS(4479), + [anon_sym_BSLASHTvolcite] = ACTIONS(4479), + [anon_sym_BSLASHavolcite] = ACTIONS(4479), + [anon_sym_BSLASHAvolcite] = ACTIONS(4479), + [anon_sym_BSLASHnotecite] = ACTIONS(4479), + [anon_sym_BSLASHNotecite] = ACTIONS(4479), + [anon_sym_BSLASHpnotecite] = ACTIONS(4479), + [anon_sym_BSLASHPnotecite] = ACTIONS(4479), + [anon_sym_BSLASHfnotecite] = ACTIONS(4479), + [anon_sym_BSLASHlabel] = ACTIONS(4479), + [anon_sym_BSLASHref] = ACTIONS(4479), + [anon_sym_BSLASHeqref] = ACTIONS(4479), + [anon_sym_BSLASHvref] = ACTIONS(4479), + [anon_sym_BSLASHVref] = ACTIONS(4479), + [anon_sym_BSLASHautoref] = ACTIONS(4479), + [anon_sym_BSLASHpageref] = ACTIONS(4479), + [anon_sym_BSLASHcref] = ACTIONS(4479), + [anon_sym_BSLASHCref] = ACTIONS(4479), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnameCref] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4479), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4479), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4479), + [anon_sym_BSLASHlabelcref] = ACTIONS(4479), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange] = ACTIONS(4479), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHCrefrange] = ACTIONS(4479), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4477), + [anon_sym_BSLASHnewlabel] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand] = ACTIONS(4479), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4479), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4479), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4477), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4479), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4477), + [anon_sym_BSLASHdef] = ACTIONS(4479), + [anon_sym_BSLASHlet] = ACTIONS(4479), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4479), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4479), + [anon_sym_BSLASHgls] = ACTIONS(4479), + [anon_sym_BSLASHGls] = ACTIONS(4479), + [anon_sym_BSLASHGLS] = ACTIONS(4479), + [anon_sym_BSLASHglspl] = ACTIONS(4479), + [anon_sym_BSLASHGlspl] = ACTIONS(4479), + [anon_sym_BSLASHGLSpl] = ACTIONS(4479), + [anon_sym_BSLASHglsdisp] = ACTIONS(4479), + [anon_sym_BSLASHglslink] = ACTIONS(4479), + [anon_sym_BSLASHglstext] = ACTIONS(4479), + [anon_sym_BSLASHGlstext] = ACTIONS(4479), + [anon_sym_BSLASHGLStext] = ACTIONS(4479), + [anon_sym_BSLASHglsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4479), + [anon_sym_BSLASHglsplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSplural] = ACTIONS(4479), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4479), + [anon_sym_BSLASHglsname] = ACTIONS(4479), + [anon_sym_BSLASHGlsname] = ACTIONS(4479), + [anon_sym_BSLASHGLSname] = ACTIONS(4479), + [anon_sym_BSLASHglssymbol] = ACTIONS(4479), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4479), + [anon_sym_BSLASHglsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4479), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4479), + [anon_sym_BSLASHglsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4479), + [anon_sym_BSLASHglsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4479), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4479), + [anon_sym_BSLASHglsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4479), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4479), + [anon_sym_BSLASHglsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4479), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4479), + [anon_sym_BSLASHnewacronym] = ACTIONS(4479), + [anon_sym_BSLASHacrshort] = ACTIONS(4479), + [anon_sym_BSLASHAcrshort] = ACTIONS(4479), + [anon_sym_BSLASHACRshort] = ACTIONS(4479), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4479), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4479), + [anon_sym_BSLASHacrlong] = ACTIONS(4479), + [anon_sym_BSLASHAcrlong] = ACTIONS(4479), + [anon_sym_BSLASHACRlong] = ACTIONS(4479), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4479), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4479), + [anon_sym_BSLASHacrfull] = ACTIONS(4479), + [anon_sym_BSLASHAcrfull] = ACTIONS(4479), + [anon_sym_BSLASHACRfull] = ACTIONS(4479), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4479), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4479), + [anon_sym_BSLASHacs] = ACTIONS(4479), + [anon_sym_BSLASHAcs] = ACTIONS(4479), + [anon_sym_BSLASHacsp] = ACTIONS(4479), + [anon_sym_BSLASHAcsp] = ACTIONS(4479), + [anon_sym_BSLASHacl] = ACTIONS(4479), + [anon_sym_BSLASHAcl] = ACTIONS(4479), + [anon_sym_BSLASHaclp] = ACTIONS(4479), + [anon_sym_BSLASHAclp] = ACTIONS(4479), + [anon_sym_BSLASHacf] = ACTIONS(4479), + [anon_sym_BSLASHAcf] = ACTIONS(4479), + [anon_sym_BSLASHacfp] = ACTIONS(4479), + [anon_sym_BSLASHAcfp] = ACTIONS(4479), + [anon_sym_BSLASHac] = ACTIONS(4479), + [anon_sym_BSLASHAc] = ACTIONS(4479), + [anon_sym_BSLASHacp] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4479), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4479), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4479), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4479), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4479), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4479), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4479), + [anon_sym_BSLASHcolor] = ACTIONS(4479), + [anon_sym_BSLASHcolorbox] = ACTIONS(4479), + [anon_sym_BSLASHtextcolor] = ACTIONS(4479), + [anon_sym_BSLASHpagecolor] = ACTIONS(4479), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4479), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4479), + [anon_sym_BSLASHtext] = ACTIONS(4479), + [anon_sym_BSLASHintertext] = ACTIONS(4479), + [anon_sym_shortintertext] = ACTIONS(4479), }, - [915] = { - [sym_command_name] = ACTIONS(5085), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_BSLASHpart] = ACTIONS(5085), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddpart] = ACTIONS(5085), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHchapter] = ACTIONS(5085), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddchap] = ACTIONS(5085), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsection] = ACTIONS(5085), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddsec] = ACTIONS(5085), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHparagraph] = ACTIONS(5085), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHitem] = ACTIONS(5085), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASHbegin] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), + [606] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), + }, + [607] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), + }, + [608] = { + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(634), + [aux_sym__section_repeat6] = STATE(634), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), + }, + [609] = { + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(633), + [aux_sym__section_repeat5] = STATE(633), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), + }, + [610] = { + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(632), + [aux_sym__section_repeat4] = STATE(632), + [sym_command_name] = ACTIONS(4475), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4475), + [anon_sym_LPAREN] = ACTIONS(4473), + [anon_sym_RPAREN] = ACTIONS(4473), + [anon_sym_LBRACK] = ACTIONS(4473), + [anon_sym_RBRACK] = ACTIONS(4473), + [anon_sym_COMMA] = ACTIONS(4473), + [anon_sym_EQ] = ACTIONS(4473), + [anon_sym_BSLASHpart] = ACTIONS(4475), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddpart] = ACTIONS(4475), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4473), + [anon_sym_BSLASHchapter] = ACTIONS(4475), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddchap] = ACTIONS(4475), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsection] = ACTIONS(4475), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHaddsec] = ACTIONS(4475), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4475), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4473), + [anon_sym_BSLASHparagraph] = ACTIONS(4475), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4475), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4473), + [anon_sym_BSLASHitem] = ACTIONS(4475), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4473), + [anon_sym_LBRACE] = ACTIONS(4473), + [sym_word] = ACTIONS(4475), + [sym_placeholder] = ACTIONS(4473), + [anon_sym_PLUS] = ACTIONS(4475), + [anon_sym_DASH] = ACTIONS(4475), + [anon_sym_STAR] = ACTIONS(4475), + [anon_sym_SLASH] = ACTIONS(4475), + [anon_sym_CARET] = ACTIONS(4475), + [anon_sym__] = ACTIONS(4475), + [anon_sym_LT] = ACTIONS(4475), + [anon_sym_GT] = ACTIONS(4475), + [anon_sym_BANG] = ACTIONS(4475), + [anon_sym_PIPE] = ACTIONS(4475), + [anon_sym_COLON] = ACTIONS(4475), + [anon_sym_SQUOTE] = ACTIONS(4475), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4473), + [anon_sym_DOLLAR] = ACTIONS(4475), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4473), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4473), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4473), + [anon_sym_BSLASHbegin] = ACTIONS(4475), + [anon_sym_BSLASHusepackage] = ACTIONS(4475), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4475), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4475), + [anon_sym_BSLASHinclude] = ACTIONS(4475), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4475), + [anon_sym_BSLASHinput] = ACTIONS(4475), + [anon_sym_BSLASHsubfile] = ACTIONS(4475), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4475), + [anon_sym_BSLASHbibliography] = ACTIONS(4475), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4475), + [anon_sym_BSLASHincludesvg] = ACTIONS(4475), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4475), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4475), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4475), + [anon_sym_BSLASHimport] = ACTIONS(4475), + [anon_sym_BSLASHsubimport] = ACTIONS(4475), + [anon_sym_BSLASHinputfrom] = ACTIONS(4475), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4475), + [anon_sym_BSLASHincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4475), + [anon_sym_BSLASHcaption] = ACTIONS(4475), + [anon_sym_BSLASHcite] = ACTIONS(4475), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCite] = ACTIONS(4475), + [anon_sym_BSLASHnocite] = ACTIONS(4475), + [anon_sym_BSLASHcitet] = ACTIONS(4475), + [anon_sym_BSLASHcitep] = ACTIONS(4475), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteauthor] = ACTIONS(4475), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4475), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitetitle] = ACTIONS(4475), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteyear] = ACTIONS(4475), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4473), + [anon_sym_BSLASHcitedate] = ACTIONS(4475), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4473), + [anon_sym_BSLASHciteurl] = ACTIONS(4475), + [anon_sym_BSLASHfullcite] = ACTIONS(4475), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4475), + [anon_sym_BSLASHcitealt] = ACTIONS(4475), + [anon_sym_BSLASHcitealp] = ACTIONS(4475), + [anon_sym_BSLASHcitetext] = ACTIONS(4475), + [anon_sym_BSLASHparencite] = ACTIONS(4475), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHParencite] = ACTIONS(4475), + [anon_sym_BSLASHfootcite] = ACTIONS(4475), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4475), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4475), + [anon_sym_BSLASHtextcite] = ACTIONS(4475), + [anon_sym_BSLASHTextcite] = ACTIONS(4475), + [anon_sym_BSLASHsmartcite] = ACTIONS(4475), + [anon_sym_BSLASHSmartcite] = ACTIONS(4475), + [anon_sym_BSLASHsupercite] = ACTIONS(4475), + [anon_sym_BSLASHautocite] = ACTIONS(4475), + [anon_sym_BSLASHAutocite] = ACTIONS(4475), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4473), + [anon_sym_BSLASHvolcite] = ACTIONS(4475), + [anon_sym_BSLASHVolcite] = ACTIONS(4475), + [anon_sym_BSLASHpvolcite] = ACTIONS(4475), + [anon_sym_BSLASHPvolcite] = ACTIONS(4475), + [anon_sym_BSLASHfvolcite] = ACTIONS(4475), + [anon_sym_BSLASHftvolcite] = ACTIONS(4475), + [anon_sym_BSLASHsvolcite] = ACTIONS(4475), + [anon_sym_BSLASHSvolcite] = ACTIONS(4475), + [anon_sym_BSLASHtvolcite] = ACTIONS(4475), + [anon_sym_BSLASHTvolcite] = ACTIONS(4475), + [anon_sym_BSLASHavolcite] = ACTIONS(4475), + [anon_sym_BSLASHAvolcite] = ACTIONS(4475), + [anon_sym_BSLASHnotecite] = ACTIONS(4475), + [anon_sym_BSLASHNotecite] = ACTIONS(4475), + [anon_sym_BSLASHpnotecite] = ACTIONS(4475), + [anon_sym_BSLASHPnotecite] = ACTIONS(4475), + [anon_sym_BSLASHfnotecite] = ACTIONS(4475), + [anon_sym_BSLASHlabel] = ACTIONS(4475), + [anon_sym_BSLASHref] = ACTIONS(4475), + [anon_sym_BSLASHeqref] = ACTIONS(4475), + [anon_sym_BSLASHvref] = ACTIONS(4475), + [anon_sym_BSLASHVref] = ACTIONS(4475), + [anon_sym_BSLASHautoref] = ACTIONS(4475), + [anon_sym_BSLASHpageref] = ACTIONS(4475), + [anon_sym_BSLASHcref] = ACTIONS(4475), + [anon_sym_BSLASHCref] = ACTIONS(4475), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnameCref] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4475), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4475), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4475), + [anon_sym_BSLASHlabelcref] = ACTIONS(4475), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange] = ACTIONS(4475), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHCrefrange] = ACTIONS(4475), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4473), + [anon_sym_BSLASHnewlabel] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand] = ACTIONS(4475), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4475), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4475), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4473), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4475), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4473), + [anon_sym_BSLASHdef] = ACTIONS(4475), + [anon_sym_BSLASHlet] = ACTIONS(4475), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4475), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4475), + [anon_sym_BSLASHgls] = ACTIONS(4475), + [anon_sym_BSLASHGls] = ACTIONS(4475), + [anon_sym_BSLASHGLS] = ACTIONS(4475), + [anon_sym_BSLASHglspl] = ACTIONS(4475), + [anon_sym_BSLASHGlspl] = ACTIONS(4475), + [anon_sym_BSLASHGLSpl] = ACTIONS(4475), + [anon_sym_BSLASHglsdisp] = ACTIONS(4475), + [anon_sym_BSLASHglslink] = ACTIONS(4475), + [anon_sym_BSLASHglstext] = ACTIONS(4475), + [anon_sym_BSLASHGlstext] = ACTIONS(4475), + [anon_sym_BSLASHGLStext] = ACTIONS(4475), + [anon_sym_BSLASHglsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4475), + [anon_sym_BSLASHglsplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSplural] = ACTIONS(4475), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4475), + [anon_sym_BSLASHglsname] = ACTIONS(4475), + [anon_sym_BSLASHGlsname] = ACTIONS(4475), + [anon_sym_BSLASHGLSname] = ACTIONS(4475), + [anon_sym_BSLASHglssymbol] = ACTIONS(4475), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4475), + [anon_sym_BSLASHglsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4475), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4475), + [anon_sym_BSLASHglsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4475), + [anon_sym_BSLASHglsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4475), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4475), + [anon_sym_BSLASHglsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4475), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4475), + [anon_sym_BSLASHglsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4475), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4475), + [anon_sym_BSLASHnewacronym] = ACTIONS(4475), + [anon_sym_BSLASHacrshort] = ACTIONS(4475), + [anon_sym_BSLASHAcrshort] = ACTIONS(4475), + [anon_sym_BSLASHACRshort] = ACTIONS(4475), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4475), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4475), + [anon_sym_BSLASHacrlong] = ACTIONS(4475), + [anon_sym_BSLASHAcrlong] = ACTIONS(4475), + [anon_sym_BSLASHACRlong] = ACTIONS(4475), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4475), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4475), + [anon_sym_BSLASHacrfull] = ACTIONS(4475), + [anon_sym_BSLASHAcrfull] = ACTIONS(4475), + [anon_sym_BSLASHACRfull] = ACTIONS(4475), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4475), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4475), + [anon_sym_BSLASHacs] = ACTIONS(4475), + [anon_sym_BSLASHAcs] = ACTIONS(4475), + [anon_sym_BSLASHacsp] = ACTIONS(4475), + [anon_sym_BSLASHAcsp] = ACTIONS(4475), + [anon_sym_BSLASHacl] = ACTIONS(4475), + [anon_sym_BSLASHAcl] = ACTIONS(4475), + [anon_sym_BSLASHaclp] = ACTIONS(4475), + [anon_sym_BSLASHAclp] = ACTIONS(4475), + [anon_sym_BSLASHacf] = ACTIONS(4475), + [anon_sym_BSLASHAcf] = ACTIONS(4475), + [anon_sym_BSLASHacfp] = ACTIONS(4475), + [anon_sym_BSLASHAcfp] = ACTIONS(4475), + [anon_sym_BSLASHac] = ACTIONS(4475), + [anon_sym_BSLASHAc] = ACTIONS(4475), + [anon_sym_BSLASHacp] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4475), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4475), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4475), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4475), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4475), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4475), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4475), + [anon_sym_BSLASHcolor] = ACTIONS(4475), + [anon_sym_BSLASHcolorbox] = ACTIONS(4475), + [anon_sym_BSLASHtextcolor] = ACTIONS(4475), + [anon_sym_BSLASHpagecolor] = ACTIONS(4475), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4475), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4475), + [anon_sym_BSLASHtext] = ACTIONS(4475), + [anon_sym_BSLASHintertext] = ACTIONS(4475), + [anon_sym_shortintertext] = ACTIONS(4475), + }, + [611] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(1923), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1921), + [anon_sym_BSLASHpart] = ACTIONS(1923), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddpart] = ACTIONS(1923), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1921), + [anon_sym_BSLASHchapter] = ACTIONS(1923), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddchap] = ACTIONS(1923), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsection] = ACTIONS(1923), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHaddsec] = ACTIONS(1923), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1923), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1921), + [anon_sym_BSLASHparagraph] = ACTIONS(1923), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1923), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1921), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(1921), + [sym_word] = ACTIONS(1923), + [sym_placeholder] = ACTIONS(1921), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1923), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1923), + [anon_sym__] = ACTIONS(1923), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(1923), + [anon_sym_SQUOTE] = ACTIONS(1923), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1921), + [anon_sym_DOLLAR] = ACTIONS(1923), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1921), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1921), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1921), + [anon_sym_BSLASHbegin] = ACTIONS(1923), + [anon_sym_BSLASHusepackage] = ACTIONS(1923), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1923), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1923), + [anon_sym_BSLASHinclude] = ACTIONS(1923), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1923), + [anon_sym_BSLASHinput] = ACTIONS(1923), + [anon_sym_BSLASHsubfile] = ACTIONS(1923), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1923), + [anon_sym_BSLASHbibliography] = ACTIONS(1923), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1923), + [anon_sym_BSLASHincludesvg] = ACTIONS(1923), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1923), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1923), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1923), + [anon_sym_BSLASHimport] = ACTIONS(1923), + [anon_sym_BSLASHsubimport] = ACTIONS(1923), + [anon_sym_BSLASHinputfrom] = ACTIONS(1923), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1923), + [anon_sym_BSLASHincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1923), + [anon_sym_BSLASHcaption] = ACTIONS(1923), + [anon_sym_BSLASHcite] = ACTIONS(1923), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCite] = ACTIONS(1923), + [anon_sym_BSLASHnocite] = ACTIONS(1923), + [anon_sym_BSLASHcitet] = ACTIONS(1923), + [anon_sym_BSLASHcitep] = ACTIONS(1923), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteauthor] = ACTIONS(1923), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1923), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitetitle] = ACTIONS(1923), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteyear] = ACTIONS(1923), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1921), + [anon_sym_BSLASHcitedate] = ACTIONS(1923), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1921), + [anon_sym_BSLASHciteurl] = ACTIONS(1923), + [anon_sym_BSLASHfullcite] = ACTIONS(1923), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1923), + [anon_sym_BSLASHcitealt] = ACTIONS(1923), + [anon_sym_BSLASHcitealp] = ACTIONS(1923), + [anon_sym_BSLASHcitetext] = ACTIONS(1923), + [anon_sym_BSLASHparencite] = ACTIONS(1923), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHParencite] = ACTIONS(1923), + [anon_sym_BSLASHfootcite] = ACTIONS(1923), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1923), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1923), + [anon_sym_BSLASHtextcite] = ACTIONS(1923), + [anon_sym_BSLASHTextcite] = ACTIONS(1923), + [anon_sym_BSLASHsmartcite] = ACTIONS(1923), + [anon_sym_BSLASHSmartcite] = ACTIONS(1923), + [anon_sym_BSLASHsupercite] = ACTIONS(1923), + [anon_sym_BSLASHautocite] = ACTIONS(1923), + [anon_sym_BSLASHAutocite] = ACTIONS(1923), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1921), + [anon_sym_BSLASHvolcite] = ACTIONS(1923), + [anon_sym_BSLASHVolcite] = ACTIONS(1923), + [anon_sym_BSLASHpvolcite] = ACTIONS(1923), + [anon_sym_BSLASHPvolcite] = ACTIONS(1923), + [anon_sym_BSLASHfvolcite] = ACTIONS(1923), + [anon_sym_BSLASHftvolcite] = ACTIONS(1923), + [anon_sym_BSLASHsvolcite] = ACTIONS(1923), + [anon_sym_BSLASHSvolcite] = ACTIONS(1923), + [anon_sym_BSLASHtvolcite] = ACTIONS(1923), + [anon_sym_BSLASHTvolcite] = ACTIONS(1923), + [anon_sym_BSLASHavolcite] = ACTIONS(1923), + [anon_sym_BSLASHAvolcite] = ACTIONS(1923), + [anon_sym_BSLASHnotecite] = ACTIONS(1923), + [anon_sym_BSLASHNotecite] = ACTIONS(1923), + [anon_sym_BSLASHpnotecite] = ACTIONS(1923), + [anon_sym_BSLASHPnotecite] = ACTIONS(1923), + [anon_sym_BSLASHfnotecite] = ACTIONS(1923), + [anon_sym_BSLASHlabel] = ACTIONS(1923), + [anon_sym_BSLASHref] = ACTIONS(1923), + [anon_sym_BSLASHeqref] = ACTIONS(1923), + [anon_sym_BSLASHvref] = ACTIONS(1923), + [anon_sym_BSLASHVref] = ACTIONS(1923), + [anon_sym_BSLASHautoref] = ACTIONS(1923), + [anon_sym_BSLASHpageref] = ACTIONS(1923), + [anon_sym_BSLASHcref] = ACTIONS(1923), + [anon_sym_BSLASHCref] = ACTIONS(1923), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnameCref] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1923), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1923), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1923), + [anon_sym_BSLASHlabelcref] = ACTIONS(1923), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange] = ACTIONS(1923), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHCrefrange] = ACTIONS(1923), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1921), + [anon_sym_BSLASHnewlabel] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand] = ACTIONS(1923), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1923), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1923), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1921), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1923), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1921), + [anon_sym_BSLASHdef] = ACTIONS(1923), + [anon_sym_BSLASHlet] = ACTIONS(1923), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1923), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1923), + [anon_sym_BSLASHgls] = ACTIONS(1923), + [anon_sym_BSLASHGls] = ACTIONS(1923), + [anon_sym_BSLASHGLS] = ACTIONS(1923), + [anon_sym_BSLASHglspl] = ACTIONS(1923), + [anon_sym_BSLASHGlspl] = ACTIONS(1923), + [anon_sym_BSLASHGLSpl] = ACTIONS(1923), + [anon_sym_BSLASHglsdisp] = ACTIONS(1923), + [anon_sym_BSLASHglslink] = ACTIONS(1923), + [anon_sym_BSLASHglstext] = ACTIONS(1923), + [anon_sym_BSLASHGlstext] = ACTIONS(1923), + [anon_sym_BSLASHGLStext] = ACTIONS(1923), + [anon_sym_BSLASHglsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1923), + [anon_sym_BSLASHglsplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSplural] = ACTIONS(1923), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1923), + [anon_sym_BSLASHglsname] = ACTIONS(1923), + [anon_sym_BSLASHGlsname] = ACTIONS(1923), + [anon_sym_BSLASHGLSname] = ACTIONS(1923), + [anon_sym_BSLASHglssymbol] = ACTIONS(1923), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1923), + [anon_sym_BSLASHglsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1923), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1923), + [anon_sym_BSLASHglsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1923), + [anon_sym_BSLASHglsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1923), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1923), + [anon_sym_BSLASHglsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1923), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1923), + [anon_sym_BSLASHglsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1923), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1923), + [anon_sym_BSLASHnewacronym] = ACTIONS(1923), + [anon_sym_BSLASHacrshort] = ACTIONS(1923), + [anon_sym_BSLASHAcrshort] = ACTIONS(1923), + [anon_sym_BSLASHACRshort] = ACTIONS(1923), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1923), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1923), + [anon_sym_BSLASHacrlong] = ACTIONS(1923), + [anon_sym_BSLASHAcrlong] = ACTIONS(1923), + [anon_sym_BSLASHACRlong] = ACTIONS(1923), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1923), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1923), + [anon_sym_BSLASHacrfull] = ACTIONS(1923), + [anon_sym_BSLASHAcrfull] = ACTIONS(1923), + [anon_sym_BSLASHACRfull] = ACTIONS(1923), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1923), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1923), + [anon_sym_BSLASHacs] = ACTIONS(1923), + [anon_sym_BSLASHAcs] = ACTIONS(1923), + [anon_sym_BSLASHacsp] = ACTIONS(1923), + [anon_sym_BSLASHAcsp] = ACTIONS(1923), + [anon_sym_BSLASHacl] = ACTIONS(1923), + [anon_sym_BSLASHAcl] = ACTIONS(1923), + [anon_sym_BSLASHaclp] = ACTIONS(1923), + [anon_sym_BSLASHAclp] = ACTIONS(1923), + [anon_sym_BSLASHacf] = ACTIONS(1923), + [anon_sym_BSLASHAcf] = ACTIONS(1923), + [anon_sym_BSLASHacfp] = ACTIONS(1923), + [anon_sym_BSLASHAcfp] = ACTIONS(1923), + [anon_sym_BSLASHac] = ACTIONS(1923), + [anon_sym_BSLASHAc] = ACTIONS(1923), + [anon_sym_BSLASHacp] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1923), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1923), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1923), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1923), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1923), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1923), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1923), + [anon_sym_BSLASHcolor] = ACTIONS(1923), + [anon_sym_BSLASHcolorbox] = ACTIONS(1923), + [anon_sym_BSLASHtextcolor] = ACTIONS(1923), + [anon_sym_BSLASHpagecolor] = ACTIONS(1923), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1923), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1923), + [anon_sym_BSLASHtext] = ACTIONS(1923), + [anon_sym_BSLASHintertext] = ACTIONS(1923), + [anon_sym_shortintertext] = ACTIONS(1923), + }, + [612] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), + }, + [613] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), + }, + [614] = { + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(634), + [aux_sym__section_repeat6] = STATE(634), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), + }, + [615] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(1947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1945), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(1947), + [anon_sym_BSLASHitem_STAR] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [sym_word] = ACTIONS(1947), + [sym_placeholder] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), + [anon_sym__] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1945), + [anon_sym_BSLASHbegin] = ACTIONS(1947), + [anon_sym_BSLASHusepackage] = ACTIONS(1947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), + [anon_sym_BSLASHinclude] = ACTIONS(1947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), + [anon_sym_BSLASHinput] = ACTIONS(1947), + [anon_sym_BSLASHsubfile] = ACTIONS(1947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), + [anon_sym_BSLASHbibliography] = ACTIONS(1947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), + [anon_sym_BSLASHincludesvg] = ACTIONS(1947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), + [anon_sym_BSLASHimport] = ACTIONS(1947), + [anon_sym_BSLASHsubimport] = ACTIONS(1947), + [anon_sym_BSLASHinputfrom] = ACTIONS(1947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), + [anon_sym_BSLASHincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHcaption] = ACTIONS(1947), + [anon_sym_BSLASHcite] = ACTIONS(1947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCite] = ACTIONS(1947), + [anon_sym_BSLASHnocite] = ACTIONS(1947), + [anon_sym_BSLASHcitet] = ACTIONS(1947), + [anon_sym_BSLASHcitep] = ACTIONS(1947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteauthor] = ACTIONS(1947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitetitle] = ACTIONS(1947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteyear] = ACTIONS(1947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitedate] = ACTIONS(1947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteurl] = ACTIONS(1947), + [anon_sym_BSLASHfullcite] = ACTIONS(1947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), + [anon_sym_BSLASHcitealt] = ACTIONS(1947), + [anon_sym_BSLASHcitealp] = ACTIONS(1947), + [anon_sym_BSLASHcitetext] = ACTIONS(1947), + [anon_sym_BSLASHparencite] = ACTIONS(1947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHParencite] = ACTIONS(1947), + [anon_sym_BSLASHfootcite] = ACTIONS(1947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), + [anon_sym_BSLASHtextcite] = ACTIONS(1947), + [anon_sym_BSLASHTextcite] = ACTIONS(1947), + [anon_sym_BSLASHsmartcite] = ACTIONS(1947), + [anon_sym_BSLASHSmartcite] = ACTIONS(1947), + [anon_sym_BSLASHsupercite] = ACTIONS(1947), + [anon_sym_BSLASHautocite] = ACTIONS(1947), + [anon_sym_BSLASHAutocite] = ACTIONS(1947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHvolcite] = ACTIONS(1947), + [anon_sym_BSLASHVolcite] = ACTIONS(1947), + [anon_sym_BSLASHpvolcite] = ACTIONS(1947), + [anon_sym_BSLASHPvolcite] = ACTIONS(1947), + [anon_sym_BSLASHfvolcite] = ACTIONS(1947), + [anon_sym_BSLASHftvolcite] = ACTIONS(1947), + [anon_sym_BSLASHsvolcite] = ACTIONS(1947), + [anon_sym_BSLASHSvolcite] = ACTIONS(1947), + [anon_sym_BSLASHtvolcite] = ACTIONS(1947), + [anon_sym_BSLASHTvolcite] = ACTIONS(1947), + [anon_sym_BSLASHavolcite] = ACTIONS(1947), + [anon_sym_BSLASHAvolcite] = ACTIONS(1947), + [anon_sym_BSLASHnotecite] = ACTIONS(1947), + [anon_sym_BSLASHNotecite] = ACTIONS(1947), + [anon_sym_BSLASHpnotecite] = ACTIONS(1947), + [anon_sym_BSLASHPnotecite] = ACTIONS(1947), + [anon_sym_BSLASHfnotecite] = ACTIONS(1947), + [anon_sym_BSLASHlabel] = ACTIONS(1947), + [anon_sym_BSLASHref] = ACTIONS(1947), + [anon_sym_BSLASHeqref] = ACTIONS(1947), + [anon_sym_BSLASHvref] = ACTIONS(1947), + [anon_sym_BSLASHVref] = ACTIONS(1947), + [anon_sym_BSLASHautoref] = ACTIONS(1947), + [anon_sym_BSLASHpageref] = ACTIONS(1947), + [anon_sym_BSLASHcref] = ACTIONS(1947), + [anon_sym_BSLASHCref] = ACTIONS(1947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnameCref] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHlabelcref] = ACTIONS(1947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCrefrange] = ACTIONS(1947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnewlabel] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), + [anon_sym_BSLASHdef] = ACTIONS(1947), + [anon_sym_BSLASHlet] = ACTIONS(1947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), + [anon_sym_BSLASHgls] = ACTIONS(1947), + [anon_sym_BSLASHGls] = ACTIONS(1947), + [anon_sym_BSLASHGLS] = ACTIONS(1947), + [anon_sym_BSLASHglspl] = ACTIONS(1947), + [anon_sym_BSLASHGlspl] = ACTIONS(1947), + [anon_sym_BSLASHGLSpl] = ACTIONS(1947), + [anon_sym_BSLASHglsdisp] = ACTIONS(1947), + [anon_sym_BSLASHglslink] = ACTIONS(1947), + [anon_sym_BSLASHglstext] = ACTIONS(1947), + [anon_sym_BSLASHGlstext] = ACTIONS(1947), + [anon_sym_BSLASHGLStext] = ACTIONS(1947), + [anon_sym_BSLASHglsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), + [anon_sym_BSLASHglsplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSplural] = ACTIONS(1947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHglsname] = ACTIONS(1947), + [anon_sym_BSLASHGlsname] = ACTIONS(1947), + [anon_sym_BSLASHGLSname] = ACTIONS(1947), + [anon_sym_BSLASHglssymbol] = ACTIONS(1947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), + [anon_sym_BSLASHglsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), + [anon_sym_BSLASHglsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), + [anon_sym_BSLASHglsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), + [anon_sym_BSLASHglsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), + [anon_sym_BSLASHglsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), + [anon_sym_BSLASHnewacronym] = ACTIONS(1947), + [anon_sym_BSLASHacrshort] = ACTIONS(1947), + [anon_sym_BSLASHAcrshort] = ACTIONS(1947), + [anon_sym_BSLASHACRshort] = ACTIONS(1947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), + [anon_sym_BSLASHacrlong] = ACTIONS(1947), + [anon_sym_BSLASHAcrlong] = ACTIONS(1947), + [anon_sym_BSLASHACRlong] = ACTIONS(1947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), + [anon_sym_BSLASHacrfull] = ACTIONS(1947), + [anon_sym_BSLASHAcrfull] = ACTIONS(1947), + [anon_sym_BSLASHACRfull] = ACTIONS(1947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), + [anon_sym_BSLASHacs] = ACTIONS(1947), + [anon_sym_BSLASHAcs] = ACTIONS(1947), + [anon_sym_BSLASHacsp] = ACTIONS(1947), + [anon_sym_BSLASHAcsp] = ACTIONS(1947), + [anon_sym_BSLASHacl] = ACTIONS(1947), + [anon_sym_BSLASHAcl] = ACTIONS(1947), + [anon_sym_BSLASHaclp] = ACTIONS(1947), + [anon_sym_BSLASHAclp] = ACTIONS(1947), + [anon_sym_BSLASHacf] = ACTIONS(1947), + [anon_sym_BSLASHAcf] = ACTIONS(1947), + [anon_sym_BSLASHacfp] = ACTIONS(1947), + [anon_sym_BSLASHAcfp] = ACTIONS(1947), + [anon_sym_BSLASHac] = ACTIONS(1947), + [anon_sym_BSLASHAc] = ACTIONS(1947), + [anon_sym_BSLASHacp] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), + [anon_sym_BSLASHcolor] = ACTIONS(1947), + [anon_sym_BSLASHcolorbox] = ACTIONS(1947), + [anon_sym_BSLASHtextcolor] = ACTIONS(1947), + [anon_sym_BSLASHpagecolor] = ACTIONS(1947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), + [anon_sym_BSLASHtext] = ACTIONS(1947), + [anon_sym_BSLASHintertext] = ACTIONS(1947), + [anon_sym_shortintertext] = ACTIONS(1947), + }, + [616] = { + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(632), + [aux_sym__section_repeat4] = STATE(632), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(4471), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddsec] = ACTIONS(4471), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [916] = { - [sym_command_name] = ACTIONS(4941), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4939), - [anon_sym_RBRACK] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_BSLASHpart] = ACTIONS(4941), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddpart] = ACTIONS(4941), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4939), - [anon_sym_BSLASHchapter] = ACTIONS(4941), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddchap] = ACTIONS(4941), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsection] = ACTIONS(4941), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddsec] = ACTIONS(4941), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubsection] = ACTIONS(4941), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4941), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHparagraph] = ACTIONS(4941), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4941), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4939), - [anon_sym_BSLASHitem] = ACTIONS(4941), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [sym_word] = ACTIONS(4941), - [sym_placeholder] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4941), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_STAR] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym__] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4941), - [anon_sym_BANG] = ACTIONS(4941), - [anon_sym_PIPE] = ACTIONS(4941), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4941), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4939), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4939), - [anon_sym_BSLASHbegin] = ACTIONS(4941), - [anon_sym_BSLASHusepackage] = ACTIONS(4941), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4941), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4941), - [anon_sym_BSLASHinclude] = ACTIONS(4941), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4941), - [anon_sym_BSLASHinput] = ACTIONS(4941), - [anon_sym_BSLASHsubfile] = ACTIONS(4941), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4941), - [anon_sym_BSLASHbibliography] = ACTIONS(4941), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4941), - [anon_sym_BSLASHincludesvg] = ACTIONS(4941), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4941), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4941), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4941), - [anon_sym_BSLASHimport] = ACTIONS(4941), - [anon_sym_BSLASHsubimport] = ACTIONS(4941), - [anon_sym_BSLASHinputfrom] = ACTIONS(4941), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4941), - [anon_sym_BSLASHincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHcaption] = ACTIONS(4941), - [anon_sym_BSLASHcite] = ACTIONS(4941), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCite] = ACTIONS(4941), - [anon_sym_BSLASHnocite] = ACTIONS(4941), - [anon_sym_BSLASHcitet] = ACTIONS(4941), - [anon_sym_BSLASHcitep] = ACTIONS(4941), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteyear] = ACTIONS(4941), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitedate] = ACTIONS(4941), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteurl] = ACTIONS(4941), - [anon_sym_BSLASHfullcite] = ACTIONS(4941), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4941), - [anon_sym_BSLASHcitealt] = ACTIONS(4941), - [anon_sym_BSLASHcitealp] = ACTIONS(4941), - [anon_sym_BSLASHcitetext] = ACTIONS(4941), - [anon_sym_BSLASHparencite] = ACTIONS(4941), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHParencite] = ACTIONS(4941), - [anon_sym_BSLASHfootcite] = ACTIONS(4941), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4941), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4941), - [anon_sym_BSLASHtextcite] = ACTIONS(4941), - [anon_sym_BSLASHTextcite] = ACTIONS(4941), - [anon_sym_BSLASHsmartcite] = ACTIONS(4941), - [anon_sym_BSLASHSmartcite] = ACTIONS(4941), - [anon_sym_BSLASHsupercite] = ACTIONS(4941), - [anon_sym_BSLASHautocite] = ACTIONS(4941), - [anon_sym_BSLASHAutocite] = ACTIONS(4941), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHvolcite] = ACTIONS(4941), - [anon_sym_BSLASHVolcite] = ACTIONS(4941), - [anon_sym_BSLASHpvolcite] = ACTIONS(4941), - [anon_sym_BSLASHPvolcite] = ACTIONS(4941), - [anon_sym_BSLASHfvolcite] = ACTIONS(4941), - [anon_sym_BSLASHftvolcite] = ACTIONS(4941), - [anon_sym_BSLASHsvolcite] = ACTIONS(4941), - [anon_sym_BSLASHSvolcite] = ACTIONS(4941), - [anon_sym_BSLASHtvolcite] = ACTIONS(4941), - [anon_sym_BSLASHTvolcite] = ACTIONS(4941), - [anon_sym_BSLASHavolcite] = ACTIONS(4941), - [anon_sym_BSLASHAvolcite] = ACTIONS(4941), - [anon_sym_BSLASHnotecite] = ACTIONS(4941), - [anon_sym_BSLASHNotecite] = ACTIONS(4941), - [anon_sym_BSLASHpnotecite] = ACTIONS(4941), - [anon_sym_BSLASHPnotecite] = ACTIONS(4941), - [anon_sym_BSLASHfnotecite] = ACTIONS(4941), - [anon_sym_BSLASHlabel] = ACTIONS(4941), - [anon_sym_BSLASHref] = ACTIONS(4941), - [anon_sym_BSLASHeqref] = ACTIONS(4941), - [anon_sym_BSLASHvref] = ACTIONS(4941), - [anon_sym_BSLASHVref] = ACTIONS(4941), - [anon_sym_BSLASHautoref] = ACTIONS(4941), - [anon_sym_BSLASHpageref] = ACTIONS(4941), - [anon_sym_BSLASHcref] = ACTIONS(4941), - [anon_sym_BSLASHCref] = ACTIONS(4941), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnameCref] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHlabelcref] = ACTIONS(4941), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnewlabel] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4939), - [anon_sym_BSLASHdef] = ACTIONS(4941), - [anon_sym_BSLASHlet] = ACTIONS(4941), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4941), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4941), - [anon_sym_BSLASHgls] = ACTIONS(4941), - [anon_sym_BSLASHGls] = ACTIONS(4941), - [anon_sym_BSLASHGLS] = ACTIONS(4941), - [anon_sym_BSLASHglspl] = ACTIONS(4941), - [anon_sym_BSLASHGlspl] = ACTIONS(4941), - [anon_sym_BSLASHGLSpl] = ACTIONS(4941), - [anon_sym_BSLASHglsdisp] = ACTIONS(4941), - [anon_sym_BSLASHglslink] = ACTIONS(4941), - [anon_sym_BSLASHglstext] = ACTIONS(4941), - [anon_sym_BSLASHGlstext] = ACTIONS(4941), - [anon_sym_BSLASHGLStext] = ACTIONS(4941), - [anon_sym_BSLASHglsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4941), - [anon_sym_BSLASHglsplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSplural] = ACTIONS(4941), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHglsname] = ACTIONS(4941), - [anon_sym_BSLASHGlsname] = ACTIONS(4941), - [anon_sym_BSLASHGLSname] = ACTIONS(4941), - [anon_sym_BSLASHglssymbol] = ACTIONS(4941), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4941), - [anon_sym_BSLASHglsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4941), - [anon_sym_BSLASHglsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4941), - [anon_sym_BSLASHglsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4941), - [anon_sym_BSLASHglsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4941), - [anon_sym_BSLASHglsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4941), - [anon_sym_BSLASHnewacronym] = ACTIONS(4941), - [anon_sym_BSLASHacrshort] = ACTIONS(4941), - [anon_sym_BSLASHAcrshort] = ACTIONS(4941), - [anon_sym_BSLASHACRshort] = ACTIONS(4941), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4941), - [anon_sym_BSLASHacrlong] = ACTIONS(4941), - [anon_sym_BSLASHAcrlong] = ACTIONS(4941), - [anon_sym_BSLASHACRlong] = ACTIONS(4941), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4941), - [anon_sym_BSLASHacrfull] = ACTIONS(4941), - [anon_sym_BSLASHAcrfull] = ACTIONS(4941), - [anon_sym_BSLASHACRfull] = ACTIONS(4941), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4941), - [anon_sym_BSLASHacs] = ACTIONS(4941), - [anon_sym_BSLASHAcs] = ACTIONS(4941), - [anon_sym_BSLASHacsp] = ACTIONS(4941), - [anon_sym_BSLASHAcsp] = ACTIONS(4941), - [anon_sym_BSLASHacl] = ACTIONS(4941), - [anon_sym_BSLASHAcl] = ACTIONS(4941), - [anon_sym_BSLASHaclp] = ACTIONS(4941), - [anon_sym_BSLASHAclp] = ACTIONS(4941), - [anon_sym_BSLASHacf] = ACTIONS(4941), - [anon_sym_BSLASHAcf] = ACTIONS(4941), - [anon_sym_BSLASHacfp] = ACTIONS(4941), - [anon_sym_BSLASHAcfp] = ACTIONS(4941), - [anon_sym_BSLASHac] = ACTIONS(4941), - [anon_sym_BSLASHAc] = ACTIONS(4941), - [anon_sym_BSLASHacp] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4941), - [anon_sym_BSLASHcolor] = ACTIONS(4941), - [anon_sym_BSLASHcolorbox] = ACTIONS(4941), - [anon_sym_BSLASHtextcolor] = ACTIONS(4941), - [anon_sym_BSLASHpagecolor] = ACTIONS(4941), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4941), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4941), + [617] = { + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(631), + [aux_sym__section_repeat3] = STATE(631), + [sym_command_name] = ACTIONS(4471), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4471), + [anon_sym_LPAREN] = ACTIONS(4469), + [anon_sym_RPAREN] = ACTIONS(4469), + [anon_sym_LBRACK] = ACTIONS(4469), + [anon_sym_RBRACK] = ACTIONS(4469), + [anon_sym_COMMA] = ACTIONS(4469), + [anon_sym_EQ] = ACTIONS(4469), + [anon_sym_BSLASHpart] = ACTIONS(4471), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddpart] = ACTIONS(4471), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4469), + [anon_sym_BSLASHchapter] = ACTIONS(4471), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4469), + [anon_sym_BSLASHaddchap] = ACTIONS(4471), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4471), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4469), + [anon_sym_BSLASHparagraph] = ACTIONS(4471), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4471), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4469), + [anon_sym_BSLASHitem] = ACTIONS(4471), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4469), + [anon_sym_LBRACE] = ACTIONS(4469), + [sym_word] = ACTIONS(4471), + [sym_placeholder] = ACTIONS(4469), + [anon_sym_PLUS] = ACTIONS(4471), + [anon_sym_DASH] = ACTIONS(4471), + [anon_sym_STAR] = ACTIONS(4471), + [anon_sym_SLASH] = ACTIONS(4471), + [anon_sym_CARET] = ACTIONS(4471), + [anon_sym__] = ACTIONS(4471), + [anon_sym_LT] = ACTIONS(4471), + [anon_sym_GT] = ACTIONS(4471), + [anon_sym_BANG] = ACTIONS(4471), + [anon_sym_PIPE] = ACTIONS(4471), + [anon_sym_COLON] = ACTIONS(4471), + [anon_sym_SQUOTE] = ACTIONS(4471), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4469), + [anon_sym_DOLLAR] = ACTIONS(4471), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4469), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4469), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4469), + [anon_sym_BSLASHbegin] = ACTIONS(4471), + [anon_sym_BSLASHusepackage] = ACTIONS(4471), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4471), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4471), + [anon_sym_BSLASHinclude] = ACTIONS(4471), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4471), + [anon_sym_BSLASHinput] = ACTIONS(4471), + [anon_sym_BSLASHsubfile] = ACTIONS(4471), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4471), + [anon_sym_BSLASHbibliography] = ACTIONS(4471), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4471), + [anon_sym_BSLASHincludesvg] = ACTIONS(4471), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4471), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4471), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4471), + [anon_sym_BSLASHimport] = ACTIONS(4471), + [anon_sym_BSLASHsubimport] = ACTIONS(4471), + [anon_sym_BSLASHinputfrom] = ACTIONS(4471), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4471), + [anon_sym_BSLASHincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4471), + [anon_sym_BSLASHcaption] = ACTIONS(4471), + [anon_sym_BSLASHcite] = ACTIONS(4471), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCite] = ACTIONS(4471), + [anon_sym_BSLASHnocite] = ACTIONS(4471), + [anon_sym_BSLASHcitet] = ACTIONS(4471), + [anon_sym_BSLASHcitep] = ACTIONS(4471), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteauthor] = ACTIONS(4471), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4471), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitetitle] = ACTIONS(4471), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteyear] = ACTIONS(4471), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4469), + [anon_sym_BSLASHcitedate] = ACTIONS(4471), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4469), + [anon_sym_BSLASHciteurl] = ACTIONS(4471), + [anon_sym_BSLASHfullcite] = ACTIONS(4471), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4471), + [anon_sym_BSLASHcitealt] = ACTIONS(4471), + [anon_sym_BSLASHcitealp] = ACTIONS(4471), + [anon_sym_BSLASHcitetext] = ACTIONS(4471), + [anon_sym_BSLASHparencite] = ACTIONS(4471), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHParencite] = ACTIONS(4471), + [anon_sym_BSLASHfootcite] = ACTIONS(4471), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4471), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4471), + [anon_sym_BSLASHtextcite] = ACTIONS(4471), + [anon_sym_BSLASHTextcite] = ACTIONS(4471), + [anon_sym_BSLASHsmartcite] = ACTIONS(4471), + [anon_sym_BSLASHSmartcite] = ACTIONS(4471), + [anon_sym_BSLASHsupercite] = ACTIONS(4471), + [anon_sym_BSLASHautocite] = ACTIONS(4471), + [anon_sym_BSLASHAutocite] = ACTIONS(4471), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4469), + [anon_sym_BSLASHvolcite] = ACTIONS(4471), + [anon_sym_BSLASHVolcite] = ACTIONS(4471), + [anon_sym_BSLASHpvolcite] = ACTIONS(4471), + [anon_sym_BSLASHPvolcite] = ACTIONS(4471), + [anon_sym_BSLASHfvolcite] = ACTIONS(4471), + [anon_sym_BSLASHftvolcite] = ACTIONS(4471), + [anon_sym_BSLASHsvolcite] = ACTIONS(4471), + [anon_sym_BSLASHSvolcite] = ACTIONS(4471), + [anon_sym_BSLASHtvolcite] = ACTIONS(4471), + [anon_sym_BSLASHTvolcite] = ACTIONS(4471), + [anon_sym_BSLASHavolcite] = ACTIONS(4471), + [anon_sym_BSLASHAvolcite] = ACTIONS(4471), + [anon_sym_BSLASHnotecite] = ACTIONS(4471), + [anon_sym_BSLASHNotecite] = ACTIONS(4471), + [anon_sym_BSLASHpnotecite] = ACTIONS(4471), + [anon_sym_BSLASHPnotecite] = ACTIONS(4471), + [anon_sym_BSLASHfnotecite] = ACTIONS(4471), + [anon_sym_BSLASHlabel] = ACTIONS(4471), + [anon_sym_BSLASHref] = ACTIONS(4471), + [anon_sym_BSLASHeqref] = ACTIONS(4471), + [anon_sym_BSLASHvref] = ACTIONS(4471), + [anon_sym_BSLASHVref] = ACTIONS(4471), + [anon_sym_BSLASHautoref] = ACTIONS(4471), + [anon_sym_BSLASHpageref] = ACTIONS(4471), + [anon_sym_BSLASHcref] = ACTIONS(4471), + [anon_sym_BSLASHCref] = ACTIONS(4471), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnameCref] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4471), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4471), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4471), + [anon_sym_BSLASHlabelcref] = ACTIONS(4471), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange] = ACTIONS(4471), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHCrefrange] = ACTIONS(4471), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4469), + [anon_sym_BSLASHnewlabel] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand] = ACTIONS(4471), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4471), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4471), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4469), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4471), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4469), + [anon_sym_BSLASHdef] = ACTIONS(4471), + [anon_sym_BSLASHlet] = ACTIONS(4471), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4471), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4471), + [anon_sym_BSLASHgls] = ACTIONS(4471), + [anon_sym_BSLASHGls] = ACTIONS(4471), + [anon_sym_BSLASHGLS] = ACTIONS(4471), + [anon_sym_BSLASHglspl] = ACTIONS(4471), + [anon_sym_BSLASHGlspl] = ACTIONS(4471), + [anon_sym_BSLASHGLSpl] = ACTIONS(4471), + [anon_sym_BSLASHglsdisp] = ACTIONS(4471), + [anon_sym_BSLASHglslink] = ACTIONS(4471), + [anon_sym_BSLASHglstext] = ACTIONS(4471), + [anon_sym_BSLASHGlstext] = ACTIONS(4471), + [anon_sym_BSLASHGLStext] = ACTIONS(4471), + [anon_sym_BSLASHglsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4471), + [anon_sym_BSLASHglsplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSplural] = ACTIONS(4471), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4471), + [anon_sym_BSLASHglsname] = ACTIONS(4471), + [anon_sym_BSLASHGlsname] = ACTIONS(4471), + [anon_sym_BSLASHGLSname] = ACTIONS(4471), + [anon_sym_BSLASHglssymbol] = ACTIONS(4471), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4471), + [anon_sym_BSLASHglsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4471), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4471), + [anon_sym_BSLASHglsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4471), + [anon_sym_BSLASHglsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4471), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4471), + [anon_sym_BSLASHglsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4471), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4471), + [anon_sym_BSLASHglsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4471), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4471), + [anon_sym_BSLASHnewacronym] = ACTIONS(4471), + [anon_sym_BSLASHacrshort] = ACTIONS(4471), + [anon_sym_BSLASHAcrshort] = ACTIONS(4471), + [anon_sym_BSLASHACRshort] = ACTIONS(4471), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4471), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4471), + [anon_sym_BSLASHacrlong] = ACTIONS(4471), + [anon_sym_BSLASHAcrlong] = ACTIONS(4471), + [anon_sym_BSLASHACRlong] = ACTIONS(4471), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4471), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4471), + [anon_sym_BSLASHacrfull] = ACTIONS(4471), + [anon_sym_BSLASHAcrfull] = ACTIONS(4471), + [anon_sym_BSLASHACRfull] = ACTIONS(4471), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4471), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4471), + [anon_sym_BSLASHacs] = ACTIONS(4471), + [anon_sym_BSLASHAcs] = ACTIONS(4471), + [anon_sym_BSLASHacsp] = ACTIONS(4471), + [anon_sym_BSLASHAcsp] = ACTIONS(4471), + [anon_sym_BSLASHacl] = ACTIONS(4471), + [anon_sym_BSLASHAcl] = ACTIONS(4471), + [anon_sym_BSLASHaclp] = ACTIONS(4471), + [anon_sym_BSLASHAclp] = ACTIONS(4471), + [anon_sym_BSLASHacf] = ACTIONS(4471), + [anon_sym_BSLASHAcf] = ACTIONS(4471), + [anon_sym_BSLASHacfp] = ACTIONS(4471), + [anon_sym_BSLASHAcfp] = ACTIONS(4471), + [anon_sym_BSLASHac] = ACTIONS(4471), + [anon_sym_BSLASHAc] = ACTIONS(4471), + [anon_sym_BSLASHacp] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4471), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4471), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4471), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4471), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4471), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4471), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4471), + [anon_sym_BSLASHcolor] = ACTIONS(4471), + [anon_sym_BSLASHcolorbox] = ACTIONS(4471), + [anon_sym_BSLASHtextcolor] = ACTIONS(4471), + [anon_sym_BSLASHpagecolor] = ACTIONS(4471), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4471), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4471), + [anon_sym_BSLASHtext] = ACTIONS(4471), + [anon_sym_BSLASHintertext] = ACTIONS(4471), + [anon_sym_shortintertext] = ACTIONS(4471), }, - [917] = { - [sym_command_name] = ACTIONS(5139), + [618] = { + [sym_curly_group] = STATE(952), + [sym_mixed_group] = STATE(952), + [aux_sym_generic_command_repeat1] = STATE(417), + [sym_command_name] = ACTIONS(4451), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(4759), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(4759), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_BSLASHpart] = ACTIONS(4451), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddpart] = ACTIONS(4451), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4449), + [anon_sym_BSLASHchapter] = ACTIONS(4451), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddchap] = ACTIONS(4451), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsection] = ACTIONS(4451), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHaddsec] = ACTIONS(4451), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubsection] = ACTIONS(4451), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4451), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4449), + [anon_sym_BSLASHparagraph] = ACTIONS(4451), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4449), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4451), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4449), + [anon_sym_BSLASHitem] = ACTIONS(4451), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4449), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(4451), + [sym_placeholder] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(4451), + [anon_sym__] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_PIPE] = ACTIONS(4451), + [anon_sym_COLON] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), + [anon_sym_DOLLAR] = ACTIONS(4451), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), + [anon_sym_BSLASHbegin] = ACTIONS(4451), + [anon_sym_BSLASHusepackage] = ACTIONS(4451), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), + [anon_sym_BSLASHinclude] = ACTIONS(4451), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), + [anon_sym_BSLASHinput] = ACTIONS(4451), + [anon_sym_BSLASHsubfile] = ACTIONS(4451), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), + [anon_sym_BSLASHbibliography] = ACTIONS(4451), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), + [anon_sym_BSLASHincludesvg] = ACTIONS(4451), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), + [anon_sym_BSLASHimport] = ACTIONS(4451), + [anon_sym_BSLASHsubimport] = ACTIONS(4451), + [anon_sym_BSLASHinputfrom] = ACTIONS(4451), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), + [anon_sym_BSLASHincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHcaption] = ACTIONS(4451), + [anon_sym_BSLASHcite] = ACTIONS(4451), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCite] = ACTIONS(4451), + [anon_sym_BSLASHnocite] = ACTIONS(4451), + [anon_sym_BSLASHcitet] = ACTIONS(4451), + [anon_sym_BSLASHcitep] = ACTIONS(4451), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteauthor] = ACTIONS(4451), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitetitle] = ACTIONS(4451), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteyear] = ACTIONS(4451), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitedate] = ACTIONS(4451), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteurl] = ACTIONS(4451), + [anon_sym_BSLASHfullcite] = ACTIONS(4451), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), + [anon_sym_BSLASHcitealt] = ACTIONS(4451), + [anon_sym_BSLASHcitealp] = ACTIONS(4451), + [anon_sym_BSLASHcitetext] = ACTIONS(4451), + [anon_sym_BSLASHparencite] = ACTIONS(4451), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHParencite] = ACTIONS(4451), + [anon_sym_BSLASHfootcite] = ACTIONS(4451), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), + [anon_sym_BSLASHtextcite] = ACTIONS(4451), + [anon_sym_BSLASHTextcite] = ACTIONS(4451), + [anon_sym_BSLASHsmartcite] = ACTIONS(4451), + [anon_sym_BSLASHSmartcite] = ACTIONS(4451), + [anon_sym_BSLASHsupercite] = ACTIONS(4451), + [anon_sym_BSLASHautocite] = ACTIONS(4451), + [anon_sym_BSLASHAutocite] = ACTIONS(4451), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHvolcite] = ACTIONS(4451), + [anon_sym_BSLASHVolcite] = ACTIONS(4451), + [anon_sym_BSLASHpvolcite] = ACTIONS(4451), + [anon_sym_BSLASHPvolcite] = ACTIONS(4451), + [anon_sym_BSLASHfvolcite] = ACTIONS(4451), + [anon_sym_BSLASHftvolcite] = ACTIONS(4451), + [anon_sym_BSLASHsvolcite] = ACTIONS(4451), + [anon_sym_BSLASHSvolcite] = ACTIONS(4451), + [anon_sym_BSLASHtvolcite] = ACTIONS(4451), + [anon_sym_BSLASHTvolcite] = ACTIONS(4451), + [anon_sym_BSLASHavolcite] = ACTIONS(4451), + [anon_sym_BSLASHAvolcite] = ACTIONS(4451), + [anon_sym_BSLASHnotecite] = ACTIONS(4451), + [anon_sym_BSLASHNotecite] = ACTIONS(4451), + [anon_sym_BSLASHpnotecite] = ACTIONS(4451), + [anon_sym_BSLASHPnotecite] = ACTIONS(4451), + [anon_sym_BSLASHfnotecite] = ACTIONS(4451), + [anon_sym_BSLASHlabel] = ACTIONS(4451), + [anon_sym_BSLASHref] = ACTIONS(4451), + [anon_sym_BSLASHeqref] = ACTIONS(4451), + [anon_sym_BSLASHvref] = ACTIONS(4451), + [anon_sym_BSLASHVref] = ACTIONS(4451), + [anon_sym_BSLASHautoref] = ACTIONS(4451), + [anon_sym_BSLASHpageref] = ACTIONS(4451), + [anon_sym_BSLASHcref] = ACTIONS(4451), + [anon_sym_BSLASHCref] = ACTIONS(4451), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnameCref] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHlabelcref] = ACTIONS(4451), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCrefrange] = ACTIONS(4451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnewlabel] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), + [anon_sym_BSLASHdef] = ACTIONS(4451), + [anon_sym_BSLASHlet] = ACTIONS(4451), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), + [anon_sym_BSLASHgls] = ACTIONS(4451), + [anon_sym_BSLASHGls] = ACTIONS(4451), + [anon_sym_BSLASHGLS] = ACTIONS(4451), + [anon_sym_BSLASHglspl] = ACTIONS(4451), + [anon_sym_BSLASHGlspl] = ACTIONS(4451), + [anon_sym_BSLASHGLSpl] = ACTIONS(4451), + [anon_sym_BSLASHglsdisp] = ACTIONS(4451), + [anon_sym_BSLASHglslink] = ACTIONS(4451), + [anon_sym_BSLASHglstext] = ACTIONS(4451), + [anon_sym_BSLASHGlstext] = ACTIONS(4451), + [anon_sym_BSLASHGLStext] = ACTIONS(4451), + [anon_sym_BSLASHglsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), + [anon_sym_BSLASHglsplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSplural] = ACTIONS(4451), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHglsname] = ACTIONS(4451), + [anon_sym_BSLASHGlsname] = ACTIONS(4451), + [anon_sym_BSLASHGLSname] = ACTIONS(4451), + [anon_sym_BSLASHglssymbol] = ACTIONS(4451), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), + [anon_sym_BSLASHglsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), + [anon_sym_BSLASHglsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), + [anon_sym_BSLASHglsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), + [anon_sym_BSLASHglsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), + [anon_sym_BSLASHglsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), + [anon_sym_BSLASHnewacronym] = ACTIONS(4451), + [anon_sym_BSLASHacrshort] = ACTIONS(4451), + [anon_sym_BSLASHAcrshort] = ACTIONS(4451), + [anon_sym_BSLASHACRshort] = ACTIONS(4451), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), + [anon_sym_BSLASHacrlong] = ACTIONS(4451), + [anon_sym_BSLASHAcrlong] = ACTIONS(4451), + [anon_sym_BSLASHACRlong] = ACTIONS(4451), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), + [anon_sym_BSLASHacrfull] = ACTIONS(4451), + [anon_sym_BSLASHAcrfull] = ACTIONS(4451), + [anon_sym_BSLASHACRfull] = ACTIONS(4451), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), + [anon_sym_BSLASHacs] = ACTIONS(4451), + [anon_sym_BSLASHAcs] = ACTIONS(4451), + [anon_sym_BSLASHacsp] = ACTIONS(4451), + [anon_sym_BSLASHAcsp] = ACTIONS(4451), + [anon_sym_BSLASHacl] = ACTIONS(4451), + [anon_sym_BSLASHAcl] = ACTIONS(4451), + [anon_sym_BSLASHaclp] = ACTIONS(4451), + [anon_sym_BSLASHAclp] = ACTIONS(4451), + [anon_sym_BSLASHacf] = ACTIONS(4451), + [anon_sym_BSLASHAcf] = ACTIONS(4451), + [anon_sym_BSLASHacfp] = ACTIONS(4451), + [anon_sym_BSLASHAcfp] = ACTIONS(4451), + [anon_sym_BSLASHac] = ACTIONS(4451), + [anon_sym_BSLASHAc] = ACTIONS(4451), + [anon_sym_BSLASHacp] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), + [anon_sym_BSLASHcolor] = ACTIONS(4451), + [anon_sym_BSLASHcolorbox] = ACTIONS(4451), + [anon_sym_BSLASHtextcolor] = ACTIONS(4451), + [anon_sym_BSLASHpagecolor] = ACTIONS(4451), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), + [anon_sym_BSLASHtext] = ACTIONS(4451), + [anon_sym_BSLASHintertext] = ACTIONS(4451), + [anon_sym_shortintertext] = ACTIONS(4451), + }, + [619] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(1947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(1945), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1945), + [anon_sym_BSLASHpart] = ACTIONS(1947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddpart] = ACTIONS(1947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1945), + [anon_sym_BSLASHchapter] = ACTIONS(1947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddchap] = ACTIONS(1947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsection] = ACTIONS(1947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHaddsec] = ACTIONS(1947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1945), + [anon_sym_BSLASHparagraph] = ACTIONS(1947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1947), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1945), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(1945), + [sym_word] = ACTIONS(1947), + [sym_placeholder] = ACTIONS(1945), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1947), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1947), + [anon_sym__] = ACTIONS(1947), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_COLON] = ACTIONS(1947), + [anon_sym_SQUOTE] = ACTIONS(1947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1945), + [anon_sym_DOLLAR] = ACTIONS(1947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1945), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1945), + [anon_sym_BSLASHbegin] = ACTIONS(1947), + [anon_sym_BSLASHusepackage] = ACTIONS(1947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1947), + [anon_sym_BSLASHinclude] = ACTIONS(1947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1947), + [anon_sym_BSLASHinput] = ACTIONS(1947), + [anon_sym_BSLASHsubfile] = ACTIONS(1947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1947), + [anon_sym_BSLASHbibliography] = ACTIONS(1947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1947), + [anon_sym_BSLASHincludesvg] = ACTIONS(1947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1947), + [anon_sym_BSLASHimport] = ACTIONS(1947), + [anon_sym_BSLASHsubimport] = ACTIONS(1947), + [anon_sym_BSLASHinputfrom] = ACTIONS(1947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1947), + [anon_sym_BSLASHincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1947), + [anon_sym_BSLASHcaption] = ACTIONS(1947), + [anon_sym_BSLASHcite] = ACTIONS(1947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCite] = ACTIONS(1947), + [anon_sym_BSLASHnocite] = ACTIONS(1947), + [anon_sym_BSLASHcitet] = ACTIONS(1947), + [anon_sym_BSLASHcitep] = ACTIONS(1947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteauthor] = ACTIONS(1947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitetitle] = ACTIONS(1947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteyear] = ACTIONS(1947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1945), + [anon_sym_BSLASHcitedate] = ACTIONS(1947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1945), + [anon_sym_BSLASHciteurl] = ACTIONS(1947), + [anon_sym_BSLASHfullcite] = ACTIONS(1947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1947), + [anon_sym_BSLASHcitealt] = ACTIONS(1947), + [anon_sym_BSLASHcitealp] = ACTIONS(1947), + [anon_sym_BSLASHcitetext] = ACTIONS(1947), + [anon_sym_BSLASHparencite] = ACTIONS(1947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHParencite] = ACTIONS(1947), + [anon_sym_BSLASHfootcite] = ACTIONS(1947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1947), + [anon_sym_BSLASHtextcite] = ACTIONS(1947), + [anon_sym_BSLASHTextcite] = ACTIONS(1947), + [anon_sym_BSLASHsmartcite] = ACTIONS(1947), + [anon_sym_BSLASHSmartcite] = ACTIONS(1947), + [anon_sym_BSLASHsupercite] = ACTIONS(1947), + [anon_sym_BSLASHautocite] = ACTIONS(1947), + [anon_sym_BSLASHAutocite] = ACTIONS(1947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1945), + [anon_sym_BSLASHvolcite] = ACTIONS(1947), + [anon_sym_BSLASHVolcite] = ACTIONS(1947), + [anon_sym_BSLASHpvolcite] = ACTIONS(1947), + [anon_sym_BSLASHPvolcite] = ACTIONS(1947), + [anon_sym_BSLASHfvolcite] = ACTIONS(1947), + [anon_sym_BSLASHftvolcite] = ACTIONS(1947), + [anon_sym_BSLASHsvolcite] = ACTIONS(1947), + [anon_sym_BSLASHSvolcite] = ACTIONS(1947), + [anon_sym_BSLASHtvolcite] = ACTIONS(1947), + [anon_sym_BSLASHTvolcite] = ACTIONS(1947), + [anon_sym_BSLASHavolcite] = ACTIONS(1947), + [anon_sym_BSLASHAvolcite] = ACTIONS(1947), + [anon_sym_BSLASHnotecite] = ACTIONS(1947), + [anon_sym_BSLASHNotecite] = ACTIONS(1947), + [anon_sym_BSLASHpnotecite] = ACTIONS(1947), + [anon_sym_BSLASHPnotecite] = ACTIONS(1947), + [anon_sym_BSLASHfnotecite] = ACTIONS(1947), + [anon_sym_BSLASHlabel] = ACTIONS(1947), + [anon_sym_BSLASHref] = ACTIONS(1947), + [anon_sym_BSLASHeqref] = ACTIONS(1947), + [anon_sym_BSLASHvref] = ACTIONS(1947), + [anon_sym_BSLASHVref] = ACTIONS(1947), + [anon_sym_BSLASHautoref] = ACTIONS(1947), + [anon_sym_BSLASHpageref] = ACTIONS(1947), + [anon_sym_BSLASHcref] = ACTIONS(1947), + [anon_sym_BSLASHCref] = ACTIONS(1947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnameCref] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1947), + [anon_sym_BSLASHlabelcref] = ACTIONS(1947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange] = ACTIONS(1947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHCrefrange] = ACTIONS(1947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1945), + [anon_sym_BSLASHnewlabel] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand] = ACTIONS(1947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1945), + [anon_sym_BSLASHdef] = ACTIONS(1947), + [anon_sym_BSLASHlet] = ACTIONS(1947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1947), + [anon_sym_BSLASHgls] = ACTIONS(1947), + [anon_sym_BSLASHGls] = ACTIONS(1947), + [anon_sym_BSLASHGLS] = ACTIONS(1947), + [anon_sym_BSLASHglspl] = ACTIONS(1947), + [anon_sym_BSLASHGlspl] = ACTIONS(1947), + [anon_sym_BSLASHGLSpl] = ACTIONS(1947), + [anon_sym_BSLASHglsdisp] = ACTIONS(1947), + [anon_sym_BSLASHglslink] = ACTIONS(1947), + [anon_sym_BSLASHglstext] = ACTIONS(1947), + [anon_sym_BSLASHGlstext] = ACTIONS(1947), + [anon_sym_BSLASHGLStext] = ACTIONS(1947), + [anon_sym_BSLASHglsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1947), + [anon_sym_BSLASHglsplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSplural] = ACTIONS(1947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1947), + [anon_sym_BSLASHglsname] = ACTIONS(1947), + [anon_sym_BSLASHGlsname] = ACTIONS(1947), + [anon_sym_BSLASHGLSname] = ACTIONS(1947), + [anon_sym_BSLASHglssymbol] = ACTIONS(1947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1947), + [anon_sym_BSLASHglsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1947), + [anon_sym_BSLASHglsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1947), + [anon_sym_BSLASHglsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1947), + [anon_sym_BSLASHglsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1947), + [anon_sym_BSLASHglsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1947), + [anon_sym_BSLASHnewacronym] = ACTIONS(1947), + [anon_sym_BSLASHacrshort] = ACTIONS(1947), + [anon_sym_BSLASHAcrshort] = ACTIONS(1947), + [anon_sym_BSLASHACRshort] = ACTIONS(1947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1947), + [anon_sym_BSLASHacrlong] = ACTIONS(1947), + [anon_sym_BSLASHAcrlong] = ACTIONS(1947), + [anon_sym_BSLASHACRlong] = ACTIONS(1947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1947), + [anon_sym_BSLASHacrfull] = ACTIONS(1947), + [anon_sym_BSLASHAcrfull] = ACTIONS(1947), + [anon_sym_BSLASHACRfull] = ACTIONS(1947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1947), + [anon_sym_BSLASHacs] = ACTIONS(1947), + [anon_sym_BSLASHAcs] = ACTIONS(1947), + [anon_sym_BSLASHacsp] = ACTIONS(1947), + [anon_sym_BSLASHAcsp] = ACTIONS(1947), + [anon_sym_BSLASHacl] = ACTIONS(1947), + [anon_sym_BSLASHAcl] = ACTIONS(1947), + [anon_sym_BSLASHaclp] = ACTIONS(1947), + [anon_sym_BSLASHAclp] = ACTIONS(1947), + [anon_sym_BSLASHacf] = ACTIONS(1947), + [anon_sym_BSLASHAcf] = ACTIONS(1947), + [anon_sym_BSLASHacfp] = ACTIONS(1947), + [anon_sym_BSLASHAcfp] = ACTIONS(1947), + [anon_sym_BSLASHac] = ACTIONS(1947), + [anon_sym_BSLASHAc] = ACTIONS(1947), + [anon_sym_BSLASHacp] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1947), + [anon_sym_BSLASHcolor] = ACTIONS(1947), + [anon_sym_BSLASHcolorbox] = ACTIONS(1947), + [anon_sym_BSLASHtextcolor] = ACTIONS(1947), + [anon_sym_BSLASHpagecolor] = ACTIONS(1947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1947), + [anon_sym_BSLASHtext] = ACTIONS(1947), + [anon_sym_BSLASHintertext] = ACTIONS(1947), + [anon_sym_shortintertext] = ACTIONS(1947), + }, + [620] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), + }, + [621] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(675), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(677), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), + }, + [622] = { + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(634), + [aux_sym__section_repeat6] = STATE(634), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(671), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(673), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), + }, + [623] = { + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(633), + [aux_sym__section_repeat5] = STATE(633), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(667), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(669), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), + }, + [624] = { + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(632), + [aux_sym__section_repeat4] = STATE(632), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(663), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(665), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), + }, + [625] = { + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(631), + [aux_sym__section_repeat3] = STATE(631), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(4457), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddchap] = ACTIONS(4457), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsection] = ACTIONS(659), + [anon_sym_BSLASHsection_STAR] = ACTIONS(661), + [anon_sym_BSLASHaddsec] = ACTIONS(659), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(661), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), + }, + [626] = { + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(630), + [aux_sym__section_repeat2] = STATE(630), + [sym_command_name] = ACTIONS(4457), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4457), + [anon_sym_LPAREN] = ACTIONS(4455), + [anon_sym_RPAREN] = ACTIONS(4455), + [anon_sym_LBRACK] = ACTIONS(4455), + [anon_sym_RBRACK] = ACTIONS(4455), + [anon_sym_COMMA] = ACTIONS(4455), + [anon_sym_EQ] = ACTIONS(4455), + [anon_sym_BSLASHpart] = ACTIONS(4457), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddpart] = ACTIONS(4457), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4455), + [anon_sym_BSLASHchapter] = ACTIONS(655), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(657), + [anon_sym_BSLASHaddchap] = ACTIONS(655), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(657), + [anon_sym_BSLASHsection] = ACTIONS(4457), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHaddsec] = ACTIONS(4457), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4457), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4455), + [anon_sym_BSLASHparagraph] = ACTIONS(4457), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4457), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4455), + [anon_sym_BSLASHitem] = ACTIONS(4457), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4455), + [anon_sym_LBRACE] = ACTIONS(4455), + [sym_word] = ACTIONS(4457), + [sym_placeholder] = ACTIONS(4455), + [anon_sym_PLUS] = ACTIONS(4457), + [anon_sym_DASH] = ACTIONS(4457), + [anon_sym_STAR] = ACTIONS(4457), + [anon_sym_SLASH] = ACTIONS(4457), + [anon_sym_CARET] = ACTIONS(4457), + [anon_sym__] = ACTIONS(4457), + [anon_sym_LT] = ACTIONS(4457), + [anon_sym_GT] = ACTIONS(4457), + [anon_sym_BANG] = ACTIONS(4457), + [anon_sym_PIPE] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4457), + [anon_sym_SQUOTE] = ACTIONS(4457), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4455), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4455), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4455), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4455), + [anon_sym_BSLASHbegin] = ACTIONS(4457), + [anon_sym_BSLASHusepackage] = ACTIONS(4457), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4457), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4457), + [anon_sym_BSLASHinclude] = ACTIONS(4457), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4457), + [anon_sym_BSLASHinput] = ACTIONS(4457), + [anon_sym_BSLASHsubfile] = ACTIONS(4457), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4457), + [anon_sym_BSLASHbibliography] = ACTIONS(4457), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4457), + [anon_sym_BSLASHincludesvg] = ACTIONS(4457), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4457), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4457), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4457), + [anon_sym_BSLASHimport] = ACTIONS(4457), + [anon_sym_BSLASHsubimport] = ACTIONS(4457), + [anon_sym_BSLASHinputfrom] = ACTIONS(4457), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4457), + [anon_sym_BSLASHincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4457), + [anon_sym_BSLASHcaption] = ACTIONS(4457), + [anon_sym_BSLASHcite] = ACTIONS(4457), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCite] = ACTIONS(4457), + [anon_sym_BSLASHnocite] = ACTIONS(4457), + [anon_sym_BSLASHcitet] = ACTIONS(4457), + [anon_sym_BSLASHcitep] = ACTIONS(4457), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteauthor] = ACTIONS(4457), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4457), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitetitle] = ACTIONS(4457), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteyear] = ACTIONS(4457), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4455), + [anon_sym_BSLASHcitedate] = ACTIONS(4457), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4455), + [anon_sym_BSLASHciteurl] = ACTIONS(4457), + [anon_sym_BSLASHfullcite] = ACTIONS(4457), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4457), + [anon_sym_BSLASHcitealt] = ACTIONS(4457), + [anon_sym_BSLASHcitealp] = ACTIONS(4457), + [anon_sym_BSLASHcitetext] = ACTIONS(4457), + [anon_sym_BSLASHparencite] = ACTIONS(4457), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHParencite] = ACTIONS(4457), + [anon_sym_BSLASHfootcite] = ACTIONS(4457), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4457), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4457), + [anon_sym_BSLASHtextcite] = ACTIONS(4457), + [anon_sym_BSLASHTextcite] = ACTIONS(4457), + [anon_sym_BSLASHsmartcite] = ACTIONS(4457), + [anon_sym_BSLASHSmartcite] = ACTIONS(4457), + [anon_sym_BSLASHsupercite] = ACTIONS(4457), + [anon_sym_BSLASHautocite] = ACTIONS(4457), + [anon_sym_BSLASHAutocite] = ACTIONS(4457), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4455), + [anon_sym_BSLASHvolcite] = ACTIONS(4457), + [anon_sym_BSLASHVolcite] = ACTIONS(4457), + [anon_sym_BSLASHpvolcite] = ACTIONS(4457), + [anon_sym_BSLASHPvolcite] = ACTIONS(4457), + [anon_sym_BSLASHfvolcite] = ACTIONS(4457), + [anon_sym_BSLASHftvolcite] = ACTIONS(4457), + [anon_sym_BSLASHsvolcite] = ACTIONS(4457), + [anon_sym_BSLASHSvolcite] = ACTIONS(4457), + [anon_sym_BSLASHtvolcite] = ACTIONS(4457), + [anon_sym_BSLASHTvolcite] = ACTIONS(4457), + [anon_sym_BSLASHavolcite] = ACTIONS(4457), + [anon_sym_BSLASHAvolcite] = ACTIONS(4457), + [anon_sym_BSLASHnotecite] = ACTIONS(4457), + [anon_sym_BSLASHNotecite] = ACTIONS(4457), + [anon_sym_BSLASHpnotecite] = ACTIONS(4457), + [anon_sym_BSLASHPnotecite] = ACTIONS(4457), + [anon_sym_BSLASHfnotecite] = ACTIONS(4457), + [anon_sym_BSLASHlabel] = ACTIONS(4457), + [anon_sym_BSLASHref] = ACTIONS(4457), + [anon_sym_BSLASHeqref] = ACTIONS(4457), + [anon_sym_BSLASHvref] = ACTIONS(4457), + [anon_sym_BSLASHVref] = ACTIONS(4457), + [anon_sym_BSLASHautoref] = ACTIONS(4457), + [anon_sym_BSLASHpageref] = ACTIONS(4457), + [anon_sym_BSLASHcref] = ACTIONS(4457), + [anon_sym_BSLASHCref] = ACTIONS(4457), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnameCref] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4457), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4457), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4457), + [anon_sym_BSLASHlabelcref] = ACTIONS(4457), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange] = ACTIONS(4457), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHCrefrange] = ACTIONS(4457), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4455), + [anon_sym_BSLASHnewlabel] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand] = ACTIONS(4457), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4457), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4457), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4455), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4457), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4455), + [anon_sym_BSLASHdef] = ACTIONS(4457), + [anon_sym_BSLASHlet] = ACTIONS(4457), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4457), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4457), + [anon_sym_BSLASHgls] = ACTIONS(4457), + [anon_sym_BSLASHGls] = ACTIONS(4457), + [anon_sym_BSLASHGLS] = ACTIONS(4457), + [anon_sym_BSLASHglspl] = ACTIONS(4457), + [anon_sym_BSLASHGlspl] = ACTIONS(4457), + [anon_sym_BSLASHGLSpl] = ACTIONS(4457), + [anon_sym_BSLASHglsdisp] = ACTIONS(4457), + [anon_sym_BSLASHglslink] = ACTIONS(4457), + [anon_sym_BSLASHglstext] = ACTIONS(4457), + [anon_sym_BSLASHGlstext] = ACTIONS(4457), + [anon_sym_BSLASHGLStext] = ACTIONS(4457), + [anon_sym_BSLASHglsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4457), + [anon_sym_BSLASHglsplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSplural] = ACTIONS(4457), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4457), + [anon_sym_BSLASHglsname] = ACTIONS(4457), + [anon_sym_BSLASHGlsname] = ACTIONS(4457), + [anon_sym_BSLASHGLSname] = ACTIONS(4457), + [anon_sym_BSLASHglssymbol] = ACTIONS(4457), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4457), + [anon_sym_BSLASHglsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4457), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4457), + [anon_sym_BSLASHglsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4457), + [anon_sym_BSLASHglsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4457), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4457), + [anon_sym_BSLASHglsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4457), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4457), + [anon_sym_BSLASHglsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4457), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4457), + [anon_sym_BSLASHnewacronym] = ACTIONS(4457), + [anon_sym_BSLASHacrshort] = ACTIONS(4457), + [anon_sym_BSLASHAcrshort] = ACTIONS(4457), + [anon_sym_BSLASHACRshort] = ACTIONS(4457), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4457), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4457), + [anon_sym_BSLASHacrlong] = ACTIONS(4457), + [anon_sym_BSLASHAcrlong] = ACTIONS(4457), + [anon_sym_BSLASHACRlong] = ACTIONS(4457), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4457), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4457), + [anon_sym_BSLASHacrfull] = ACTIONS(4457), + [anon_sym_BSLASHAcrfull] = ACTIONS(4457), + [anon_sym_BSLASHACRfull] = ACTIONS(4457), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4457), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4457), + [anon_sym_BSLASHacs] = ACTIONS(4457), + [anon_sym_BSLASHAcs] = ACTIONS(4457), + [anon_sym_BSLASHacsp] = ACTIONS(4457), + [anon_sym_BSLASHAcsp] = ACTIONS(4457), + [anon_sym_BSLASHacl] = ACTIONS(4457), + [anon_sym_BSLASHAcl] = ACTIONS(4457), + [anon_sym_BSLASHaclp] = ACTIONS(4457), + [anon_sym_BSLASHAclp] = ACTIONS(4457), + [anon_sym_BSLASHacf] = ACTIONS(4457), + [anon_sym_BSLASHAcf] = ACTIONS(4457), + [anon_sym_BSLASHacfp] = ACTIONS(4457), + [anon_sym_BSLASHAcfp] = ACTIONS(4457), + [anon_sym_BSLASHac] = ACTIONS(4457), + [anon_sym_BSLASHAc] = ACTIONS(4457), + [anon_sym_BSLASHacp] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4457), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4457), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4457), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4457), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4457), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4457), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4457), + [anon_sym_BSLASHcolor] = ACTIONS(4457), + [anon_sym_BSLASHcolorbox] = ACTIONS(4457), + [anon_sym_BSLASHtextcolor] = ACTIONS(4457), + [anon_sym_BSLASHpagecolor] = ACTIONS(4457), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4457), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4457), + [anon_sym_BSLASHtext] = ACTIONS(4457), + [anon_sym_BSLASHintertext] = ACTIONS(4457), + [anon_sym_shortintertext] = ACTIONS(4457), + }, + [627] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(1965), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(1965), + [anon_sym_LPAREN] = ACTIONS(1963), + [anon_sym_RPAREN] = ACTIONS(1963), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(1963), + [anon_sym_COMMA] = ACTIONS(1963), + [anon_sym_EQ] = ACTIONS(1963), + [anon_sym_BSLASHpart] = ACTIONS(1965), + [anon_sym_BSLASHpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddpart] = ACTIONS(1965), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(1963), + [anon_sym_BSLASHchapter] = ACTIONS(1965), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddchap] = ACTIONS(1965), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsection] = ACTIONS(1965), + [anon_sym_BSLASHsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHaddsec] = ACTIONS(1965), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubsubsection] = ACTIONS(1965), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(1963), + [anon_sym_BSLASHparagraph] = ACTIONS(1965), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHsubparagraph] = ACTIONS(1965), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(1963), + [anon_sym_BSLASHitem] = ACTIONS(679), + [anon_sym_BSLASHitem_STAR] = ACTIONS(681), + [anon_sym_LBRACE] = ACTIONS(1963), + [sym_word] = ACTIONS(1965), + [sym_placeholder] = ACTIONS(1963), + [anon_sym_PLUS] = ACTIONS(1965), + [anon_sym_DASH] = ACTIONS(1965), + [anon_sym_STAR] = ACTIONS(1965), + [anon_sym_SLASH] = ACTIONS(1965), + [anon_sym_CARET] = ACTIONS(1965), + [anon_sym__] = ACTIONS(1965), + [anon_sym_LT] = ACTIONS(1965), + [anon_sym_GT] = ACTIONS(1965), + [anon_sym_BANG] = ACTIONS(1965), + [anon_sym_PIPE] = ACTIONS(1965), + [anon_sym_COLON] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1965), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1963), + [anon_sym_BSLASH_LBRACK] = ACTIONS(1963), + [anon_sym_DOLLAR] = ACTIONS(1965), + [anon_sym_BSLASH_LPAREN] = ACTIONS(1963), + [anon_sym_BSLASH_LBRACE] = ACTIONS(1963), + [anon_sym_BSLASH_RBRACE] = ACTIONS(1963), + [anon_sym_BSLASHbegin] = ACTIONS(1965), + [anon_sym_BSLASHusepackage] = ACTIONS(1965), + [anon_sym_BSLASHRequirePackage] = ACTIONS(1965), + [anon_sym_BSLASHdocumentclass] = ACTIONS(1965), + [anon_sym_BSLASHinclude] = ACTIONS(1965), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(1965), + [anon_sym_BSLASHinput] = ACTIONS(1965), + [anon_sym_BSLASHsubfile] = ACTIONS(1965), + [anon_sym_BSLASHaddbibresource] = ACTIONS(1965), + [anon_sym_BSLASHbibliography] = ACTIONS(1965), + [anon_sym_BSLASHincludegraphics] = ACTIONS(1965), + [anon_sym_BSLASHincludesvg] = ACTIONS(1965), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(1965), + [anon_sym_BSLASHverbatiminput] = ACTIONS(1965), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(1965), + [anon_sym_BSLASHimport] = ACTIONS(1965), + [anon_sym_BSLASHsubimport] = ACTIONS(1965), + [anon_sym_BSLASHinputfrom] = ACTIONS(1965), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(1965), + [anon_sym_BSLASHincludefrom] = ACTIONS(1965), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(1965), + [anon_sym_BSLASHcaption] = ACTIONS(1965), + [anon_sym_BSLASHcite] = ACTIONS(1965), + [anon_sym_BSLASHcite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCite] = ACTIONS(1965), + [anon_sym_BSLASHnocite] = ACTIONS(1965), + [anon_sym_BSLASHcitet] = ACTIONS(1965), + [anon_sym_BSLASHcitep] = ACTIONS(1965), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteauthor] = ACTIONS(1965), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCiteauthor] = ACTIONS(1965), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitetitle] = ACTIONS(1965), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteyear] = ACTIONS(1965), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(1963), + [anon_sym_BSLASHcitedate] = ACTIONS(1965), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(1963), + [anon_sym_BSLASHciteurl] = ACTIONS(1965), + [anon_sym_BSLASHfullcite] = ACTIONS(1965), + [anon_sym_BSLASHciteyearpar] = ACTIONS(1965), + [anon_sym_BSLASHcitealt] = ACTIONS(1965), + [anon_sym_BSLASHcitealp] = ACTIONS(1965), + [anon_sym_BSLASHcitetext] = ACTIONS(1965), + [anon_sym_BSLASHparencite] = ACTIONS(1965), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHParencite] = ACTIONS(1965), + [anon_sym_BSLASHfootcite] = ACTIONS(1965), + [anon_sym_BSLASHfootfullcite] = ACTIONS(1965), + [anon_sym_BSLASHfootcitetext] = ACTIONS(1965), + [anon_sym_BSLASHtextcite] = ACTIONS(1965), + [anon_sym_BSLASHTextcite] = ACTIONS(1965), + [anon_sym_BSLASHsmartcite] = ACTIONS(1965), + [anon_sym_BSLASHSmartcite] = ACTIONS(1965), + [anon_sym_BSLASHsupercite] = ACTIONS(1965), + [anon_sym_BSLASHautocite] = ACTIONS(1965), + [anon_sym_BSLASHAutocite] = ACTIONS(1965), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(1963), + [anon_sym_BSLASHvolcite] = ACTIONS(1965), + [anon_sym_BSLASHVolcite] = ACTIONS(1965), + [anon_sym_BSLASHpvolcite] = ACTIONS(1965), + [anon_sym_BSLASHPvolcite] = ACTIONS(1965), + [anon_sym_BSLASHfvolcite] = ACTIONS(1965), + [anon_sym_BSLASHftvolcite] = ACTIONS(1965), + [anon_sym_BSLASHsvolcite] = ACTIONS(1965), + [anon_sym_BSLASHSvolcite] = ACTIONS(1965), + [anon_sym_BSLASHtvolcite] = ACTIONS(1965), + [anon_sym_BSLASHTvolcite] = ACTIONS(1965), + [anon_sym_BSLASHavolcite] = ACTIONS(1965), + [anon_sym_BSLASHAvolcite] = ACTIONS(1965), + [anon_sym_BSLASHnotecite] = ACTIONS(1965), + [anon_sym_BSLASHNotecite] = ACTIONS(1965), + [anon_sym_BSLASHpnotecite] = ACTIONS(1965), + [anon_sym_BSLASHPnotecite] = ACTIONS(1965), + [anon_sym_BSLASHfnotecite] = ACTIONS(1965), + [anon_sym_BSLASHlabel] = ACTIONS(1965), + [anon_sym_BSLASHref] = ACTIONS(1965), + [anon_sym_BSLASHeqref] = ACTIONS(1965), + [anon_sym_BSLASHvref] = ACTIONS(1965), + [anon_sym_BSLASHVref] = ACTIONS(1965), + [anon_sym_BSLASHautoref] = ACTIONS(1965), + [anon_sym_BSLASHpageref] = ACTIONS(1965), + [anon_sym_BSLASHcref] = ACTIONS(1965), + [anon_sym_BSLASHCref] = ACTIONS(1965), + [anon_sym_BSLASHcref_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCref_STAR] = ACTIONS(1963), + [anon_sym_BSLASHnamecref] = ACTIONS(1965), + [anon_sym_BSLASHnameCref] = ACTIONS(1965), + [anon_sym_BSLASHlcnamecref] = ACTIONS(1965), + [anon_sym_BSLASHnamecrefs] = ACTIONS(1965), + [anon_sym_BSLASHnameCrefs] = ACTIONS(1965), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(1965), + [anon_sym_BSLASHlabelcref] = ACTIONS(1965), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(1965), + [anon_sym_BSLASHcrefrange] = ACTIONS(1965), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(1963), + [anon_sym_BSLASHCrefrange] = ACTIONS(1965), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(1963), + [anon_sym_BSLASHnewlabel] = ACTIONS(1965), + [anon_sym_BSLASHnewcommand] = ACTIONS(1965), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHrenewcommand] = ACTIONS(1965), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(1965), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(1963), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(1965), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(1963), + [anon_sym_BSLASHdef] = ACTIONS(1965), + [anon_sym_BSLASHlet] = ACTIONS(1965), + [anon_sym_BSLASHnewenvironment] = ACTIONS(1965), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(1965), + [anon_sym_BSLASHgls] = ACTIONS(1965), + [anon_sym_BSLASHGls] = ACTIONS(1965), + [anon_sym_BSLASHGLS] = ACTIONS(1965), + [anon_sym_BSLASHglspl] = ACTIONS(1965), + [anon_sym_BSLASHGlspl] = ACTIONS(1965), + [anon_sym_BSLASHGLSpl] = ACTIONS(1965), + [anon_sym_BSLASHglsdisp] = ACTIONS(1965), + [anon_sym_BSLASHglslink] = ACTIONS(1965), + [anon_sym_BSLASHglstext] = ACTIONS(1965), + [anon_sym_BSLASHGlstext] = ACTIONS(1965), + [anon_sym_BSLASHGLStext] = ACTIONS(1965), + [anon_sym_BSLASHglsfirst] = ACTIONS(1965), + [anon_sym_BSLASHGlsfirst] = ACTIONS(1965), + [anon_sym_BSLASHGLSfirst] = ACTIONS(1965), + [anon_sym_BSLASHglsplural] = ACTIONS(1965), + [anon_sym_BSLASHGlsplural] = ACTIONS(1965), + [anon_sym_BSLASHGLSplural] = ACTIONS(1965), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(1965), + [anon_sym_BSLASHglsname] = ACTIONS(1965), + [anon_sym_BSLASHGlsname] = ACTIONS(1965), + [anon_sym_BSLASHGLSname] = ACTIONS(1965), + [anon_sym_BSLASHglssymbol] = ACTIONS(1965), + [anon_sym_BSLASHGlssymbol] = ACTIONS(1965), + [anon_sym_BSLASHglsdesc] = ACTIONS(1965), + [anon_sym_BSLASHGlsdesc] = ACTIONS(1965), + [anon_sym_BSLASHGLSdesc] = ACTIONS(1965), + [anon_sym_BSLASHglsuseri] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseri] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseri] = ACTIONS(1965), + [anon_sym_BSLASHglsuserii] = ACTIONS(1965), + [anon_sym_BSLASHGlsuserii] = ACTIONS(1965), + [anon_sym_BSLASHGLSuserii] = ACTIONS(1965), + [anon_sym_BSLASHglsuseriii] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(1965), + [anon_sym_BSLASHglsuseriv] = ACTIONS(1965), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(1965), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(1965), + [anon_sym_BSLASHglsuserv] = ACTIONS(1965), + [anon_sym_BSLASHGlsuserv] = ACTIONS(1965), + [anon_sym_BSLASHGLSuserv] = ACTIONS(1965), + [anon_sym_BSLASHglsuservi] = ACTIONS(1965), + [anon_sym_BSLASHGlsuservi] = ACTIONS(1965), + [anon_sym_BSLASHGLSuservi] = ACTIONS(1965), + [anon_sym_BSLASHnewacronym] = ACTIONS(1965), + [anon_sym_BSLASHacrshort] = ACTIONS(1965), + [anon_sym_BSLASHAcrshort] = ACTIONS(1965), + [anon_sym_BSLASHACRshort] = ACTIONS(1965), + [anon_sym_BSLASHacrshortpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(1965), + [anon_sym_BSLASHACRshortpl] = ACTIONS(1965), + [anon_sym_BSLASHacrlong] = ACTIONS(1965), + [anon_sym_BSLASHAcrlong] = ACTIONS(1965), + [anon_sym_BSLASHACRlong] = ACTIONS(1965), + [anon_sym_BSLASHacrlongpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(1965), + [anon_sym_BSLASHACRlongpl] = ACTIONS(1965), + [anon_sym_BSLASHacrfull] = ACTIONS(1965), + [anon_sym_BSLASHAcrfull] = ACTIONS(1965), + [anon_sym_BSLASHACRfull] = ACTIONS(1965), + [anon_sym_BSLASHacrfullpl] = ACTIONS(1965), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(1965), + [anon_sym_BSLASHACRfullpl] = ACTIONS(1965), + [anon_sym_BSLASHacs] = ACTIONS(1965), + [anon_sym_BSLASHAcs] = ACTIONS(1965), + [anon_sym_BSLASHacsp] = ACTIONS(1965), + [anon_sym_BSLASHAcsp] = ACTIONS(1965), + [anon_sym_BSLASHacl] = ACTIONS(1965), + [anon_sym_BSLASHAcl] = ACTIONS(1965), + [anon_sym_BSLASHaclp] = ACTIONS(1965), + [anon_sym_BSLASHAclp] = ACTIONS(1965), + [anon_sym_BSLASHacf] = ACTIONS(1965), + [anon_sym_BSLASHAcf] = ACTIONS(1965), + [anon_sym_BSLASHacfp] = ACTIONS(1965), + [anon_sym_BSLASHAcfp] = ACTIONS(1965), + [anon_sym_BSLASHac] = ACTIONS(1965), + [anon_sym_BSLASHAc] = ACTIONS(1965), + [anon_sym_BSLASHacp] = ACTIONS(1965), + [anon_sym_BSLASHglsentrylong] = ACTIONS(1965), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(1965), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(1965), + [anon_sym_BSLASHglsentryshort] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(1965), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(1965), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(1965), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(1965), + [anon_sym_BSLASHnewtheorem] = ACTIONS(1965), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(1965), + [anon_sym_BSLASHdefinecolor] = ACTIONS(1965), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(1965), + [anon_sym_BSLASHcolor] = ACTIONS(1965), + [anon_sym_BSLASHcolorbox] = ACTIONS(1965), + [anon_sym_BSLASHtextcolor] = ACTIONS(1965), + [anon_sym_BSLASHpagecolor] = ACTIONS(1965), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(1965), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(1965), + [anon_sym_BSLASHtext] = ACTIONS(1965), + [anon_sym_BSLASHintertext] = ACTIONS(1965), + [anon_sym_shortintertext] = ACTIONS(1965), + }, + [628] = { + [sym__part_declaration] = STATE(131), + [sym_part] = STATE(628), + [aux_sym__section_repeat1] = STATE(628), + [sym_command_name] = ACTIONS(4569), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4569), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym_RPAREN] = ACTIONS(4567), + [anon_sym_LBRACK] = ACTIONS(4567), + [anon_sym_RBRACK] = ACTIONS(4567), + [anon_sym_COMMA] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4567), + [anon_sym_BSLASHpart] = ACTIONS(4761), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4764), + [anon_sym_BSLASHaddpart] = ACTIONS(4761), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4764), + [anon_sym_BSLASHchapter] = ACTIONS(4569), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4567), + [anon_sym_BSLASHaddchap] = ACTIONS(4569), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsection] = ACTIONS(4569), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHaddsec] = ACTIONS(4569), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubsection] = ACTIONS(4569), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4569), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4567), + [anon_sym_BSLASHparagraph] = ACTIONS(4569), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4567), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4569), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4567), + [anon_sym_BSLASHitem] = ACTIONS(4569), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [sym_word] = ACTIONS(4569), + [sym_placeholder] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4569), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_STAR] = ACTIONS(4569), + [anon_sym_SLASH] = ACTIONS(4569), + [anon_sym_CARET] = ACTIONS(4569), + [anon_sym__] = ACTIONS(4569), + [anon_sym_LT] = ACTIONS(4569), + [anon_sym_GT] = ACTIONS(4569), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_PIPE] = ACTIONS(4569), + [anon_sym_COLON] = ACTIONS(4569), + [anon_sym_SQUOTE] = ACTIONS(4569), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4567), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4567), + [anon_sym_DOLLAR] = ACTIONS(4569), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4567), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4567), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4567), + [anon_sym_BSLASHbegin] = ACTIONS(4569), + [anon_sym_BSLASHusepackage] = ACTIONS(4569), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4569), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4569), + [anon_sym_BSLASHinclude] = ACTIONS(4569), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4569), + [anon_sym_BSLASHinput] = ACTIONS(4569), + [anon_sym_BSLASHsubfile] = ACTIONS(4569), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4569), + [anon_sym_BSLASHbibliography] = ACTIONS(4569), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4569), + [anon_sym_BSLASHincludesvg] = ACTIONS(4569), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4569), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4569), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4569), + [anon_sym_BSLASHimport] = ACTIONS(4569), + [anon_sym_BSLASHsubimport] = ACTIONS(4569), + [anon_sym_BSLASHinputfrom] = ACTIONS(4569), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4569), + [anon_sym_BSLASHincludefrom] = ACTIONS(4569), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4569), + [anon_sym_BSLASHcaption] = ACTIONS(4569), + [anon_sym_BSLASHcite] = ACTIONS(4569), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCite] = ACTIONS(4569), + [anon_sym_BSLASHnocite] = ACTIONS(4569), + [anon_sym_BSLASHcitet] = ACTIONS(4569), + [anon_sym_BSLASHcitep] = ACTIONS(4569), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteauthor] = ACTIONS(4569), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4569), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitetitle] = ACTIONS(4569), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteyear] = ACTIONS(4569), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4567), + [anon_sym_BSLASHcitedate] = ACTIONS(4569), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4567), + [anon_sym_BSLASHciteurl] = ACTIONS(4569), + [anon_sym_BSLASHfullcite] = ACTIONS(4569), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4569), + [anon_sym_BSLASHcitealt] = ACTIONS(4569), + [anon_sym_BSLASHcitealp] = ACTIONS(4569), + [anon_sym_BSLASHcitetext] = ACTIONS(4569), + [anon_sym_BSLASHparencite] = ACTIONS(4569), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHParencite] = ACTIONS(4569), + [anon_sym_BSLASHfootcite] = ACTIONS(4569), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4569), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4569), + [anon_sym_BSLASHtextcite] = ACTIONS(4569), + [anon_sym_BSLASHTextcite] = ACTIONS(4569), + [anon_sym_BSLASHsmartcite] = ACTIONS(4569), + [anon_sym_BSLASHSmartcite] = ACTIONS(4569), + [anon_sym_BSLASHsupercite] = ACTIONS(4569), + [anon_sym_BSLASHautocite] = ACTIONS(4569), + [anon_sym_BSLASHAutocite] = ACTIONS(4569), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4567), + [anon_sym_BSLASHvolcite] = ACTIONS(4569), + [anon_sym_BSLASHVolcite] = ACTIONS(4569), + [anon_sym_BSLASHpvolcite] = ACTIONS(4569), + [anon_sym_BSLASHPvolcite] = ACTIONS(4569), + [anon_sym_BSLASHfvolcite] = ACTIONS(4569), + [anon_sym_BSLASHftvolcite] = ACTIONS(4569), + [anon_sym_BSLASHsvolcite] = ACTIONS(4569), + [anon_sym_BSLASHSvolcite] = ACTIONS(4569), + [anon_sym_BSLASHtvolcite] = ACTIONS(4569), + [anon_sym_BSLASHTvolcite] = ACTIONS(4569), + [anon_sym_BSLASHavolcite] = ACTIONS(4569), + [anon_sym_BSLASHAvolcite] = ACTIONS(4569), + [anon_sym_BSLASHnotecite] = ACTIONS(4569), + [anon_sym_BSLASHNotecite] = ACTIONS(4569), + [anon_sym_BSLASHpnotecite] = ACTIONS(4569), + [anon_sym_BSLASHPnotecite] = ACTIONS(4569), + [anon_sym_BSLASHfnotecite] = ACTIONS(4569), + [anon_sym_BSLASHlabel] = ACTIONS(4569), + [anon_sym_BSLASHref] = ACTIONS(4569), + [anon_sym_BSLASHeqref] = ACTIONS(4569), + [anon_sym_BSLASHvref] = ACTIONS(4569), + [anon_sym_BSLASHVref] = ACTIONS(4569), + [anon_sym_BSLASHautoref] = ACTIONS(4569), + [anon_sym_BSLASHpageref] = ACTIONS(4569), + [anon_sym_BSLASHcref] = ACTIONS(4569), + [anon_sym_BSLASHCref] = ACTIONS(4569), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4567), + [anon_sym_BSLASHnamecref] = ACTIONS(4569), + [anon_sym_BSLASHnameCref] = ACTIONS(4569), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4569), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4569), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4569), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4569), + [anon_sym_BSLASHlabelcref] = ACTIONS(4569), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4569), + [anon_sym_BSLASHcrefrange] = ACTIONS(4569), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4567), + [anon_sym_BSLASHCrefrange] = ACTIONS(4569), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4567), + [anon_sym_BSLASHnewlabel] = ACTIONS(4569), + [anon_sym_BSLASHnewcommand] = ACTIONS(4569), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4569), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4569), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4567), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4569), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4567), + [anon_sym_BSLASHdef] = ACTIONS(4569), + [anon_sym_BSLASHlet] = ACTIONS(4569), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4569), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4569), + [anon_sym_BSLASHgls] = ACTIONS(4569), + [anon_sym_BSLASHGls] = ACTIONS(4569), + [anon_sym_BSLASHGLS] = ACTIONS(4569), + [anon_sym_BSLASHglspl] = ACTIONS(4569), + [anon_sym_BSLASHGlspl] = ACTIONS(4569), + [anon_sym_BSLASHGLSpl] = ACTIONS(4569), + [anon_sym_BSLASHglsdisp] = ACTIONS(4569), + [anon_sym_BSLASHglslink] = ACTIONS(4569), + [anon_sym_BSLASHglstext] = ACTIONS(4569), + [anon_sym_BSLASHGlstext] = ACTIONS(4569), + [anon_sym_BSLASHGLStext] = ACTIONS(4569), + [anon_sym_BSLASHglsfirst] = ACTIONS(4569), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4569), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4569), + [anon_sym_BSLASHglsplural] = ACTIONS(4569), + [anon_sym_BSLASHGlsplural] = ACTIONS(4569), + [anon_sym_BSLASHGLSplural] = ACTIONS(4569), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4569), + [anon_sym_BSLASHglsname] = ACTIONS(4569), + [anon_sym_BSLASHGlsname] = ACTIONS(4569), + [anon_sym_BSLASHGLSname] = ACTIONS(4569), + [anon_sym_BSLASHglssymbol] = ACTIONS(4569), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4569), + [anon_sym_BSLASHglsdesc] = ACTIONS(4569), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4569), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4569), + [anon_sym_BSLASHglsuseri] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4569), + [anon_sym_BSLASHglsuserii] = ACTIONS(4569), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4569), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4569), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4569), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4569), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4569), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4569), + [anon_sym_BSLASHglsuserv] = ACTIONS(4569), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4569), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4569), + [anon_sym_BSLASHglsuservi] = ACTIONS(4569), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4569), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4569), + [anon_sym_BSLASHnewacronym] = ACTIONS(4569), + [anon_sym_BSLASHacrshort] = ACTIONS(4569), + [anon_sym_BSLASHAcrshort] = ACTIONS(4569), + [anon_sym_BSLASHACRshort] = ACTIONS(4569), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4569), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4569), + [anon_sym_BSLASHacrlong] = ACTIONS(4569), + [anon_sym_BSLASHAcrlong] = ACTIONS(4569), + [anon_sym_BSLASHACRlong] = ACTIONS(4569), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4569), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4569), + [anon_sym_BSLASHacrfull] = ACTIONS(4569), + [anon_sym_BSLASHAcrfull] = ACTIONS(4569), + [anon_sym_BSLASHACRfull] = ACTIONS(4569), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4569), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4569), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4569), + [anon_sym_BSLASHacs] = ACTIONS(4569), + [anon_sym_BSLASHAcs] = ACTIONS(4569), + [anon_sym_BSLASHacsp] = ACTIONS(4569), + [anon_sym_BSLASHAcsp] = ACTIONS(4569), + [anon_sym_BSLASHacl] = ACTIONS(4569), + [anon_sym_BSLASHAcl] = ACTIONS(4569), + [anon_sym_BSLASHaclp] = ACTIONS(4569), + [anon_sym_BSLASHAclp] = ACTIONS(4569), + [anon_sym_BSLASHacf] = ACTIONS(4569), + [anon_sym_BSLASHAcf] = ACTIONS(4569), + [anon_sym_BSLASHacfp] = ACTIONS(4569), + [anon_sym_BSLASHAcfp] = ACTIONS(4569), + [anon_sym_BSLASHac] = ACTIONS(4569), + [anon_sym_BSLASHAc] = ACTIONS(4569), + [anon_sym_BSLASHacp] = ACTIONS(4569), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4569), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4569), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4569), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4569), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4569), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4569), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4569), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4569), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4569), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4569), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4569), + [anon_sym_BSLASHcolor] = ACTIONS(4569), + [anon_sym_BSLASHcolorbox] = ACTIONS(4569), + [anon_sym_BSLASHtextcolor] = ACTIONS(4569), + [anon_sym_BSLASHpagecolor] = ACTIONS(4569), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4569), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4569), + [anon_sym_BSLASHtext] = ACTIONS(4569), + [anon_sym_BSLASHintertext] = ACTIONS(4569), + [anon_sym_shortintertext] = ACTIONS(4569), + }, + [629] = { + [sym_curly_group] = STATE(898), + [sym_mixed_group] = STATE(898), + [aux_sym_generic_command_repeat1] = STATE(629), + [sym_command_name] = ACTIONS(4461), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_BSLASHpart] = ACTIONS(5139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddpart] = ACTIONS(5139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHchapter] = ACTIONS(5139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddchap] = ACTIONS(5139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsection] = ACTIONS(5139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddsec] = ACTIONS(5139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHparagraph] = ACTIONS(5139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHitem] = ACTIONS(5139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASHbegin] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHiffalse] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(4767), + [anon_sym_RPAREN] = ACTIONS(4459), + [anon_sym_LBRACK] = ACTIONS(4767), + [anon_sym_RBRACK] = ACTIONS(4459), + [anon_sym_COMMA] = ACTIONS(4459), + [anon_sym_EQ] = ACTIONS(4459), + [anon_sym_BSLASHpart] = ACTIONS(4461), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddpart] = ACTIONS(4461), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4459), + [anon_sym_BSLASHchapter] = ACTIONS(4461), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddchap] = ACTIONS(4461), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsection] = ACTIONS(4461), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHaddsec] = ACTIONS(4461), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubsection] = ACTIONS(4461), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4461), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4459), + [anon_sym_BSLASHparagraph] = ACTIONS(4461), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4459), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4461), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4459), + [anon_sym_BSLASHitem] = ACTIONS(4461), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4459), + [anon_sym_LBRACE] = ACTIONS(4770), + [sym_word] = ACTIONS(4461), + [sym_placeholder] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_STAR] = ACTIONS(4461), + [anon_sym_SLASH] = ACTIONS(4461), + [anon_sym_CARET] = ACTIONS(4461), + [anon_sym__] = ACTIONS(4461), + [anon_sym_LT] = ACTIONS(4461), + [anon_sym_GT] = ACTIONS(4461), + [anon_sym_BANG] = ACTIONS(4461), + [anon_sym_PIPE] = ACTIONS(4461), + [anon_sym_COLON] = ACTIONS(4461), + [anon_sym_SQUOTE] = ACTIONS(4461), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), + [anon_sym_DOLLAR] = ACTIONS(4461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4459), + [anon_sym_BSLASHbegin] = ACTIONS(4461), + [anon_sym_BSLASHusepackage] = ACTIONS(4461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), + [anon_sym_BSLASHinclude] = ACTIONS(4461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), + [anon_sym_BSLASHinput] = ACTIONS(4461), + [anon_sym_BSLASHsubfile] = ACTIONS(4461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), + [anon_sym_BSLASHbibliography] = ACTIONS(4461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), + [anon_sym_BSLASHincludesvg] = ACTIONS(4461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), + [anon_sym_BSLASHimport] = ACTIONS(4461), + [anon_sym_BSLASHsubimport] = ACTIONS(4461), + [anon_sym_BSLASHinputfrom] = ACTIONS(4461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), + [anon_sym_BSLASHincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHcaption] = ACTIONS(4461), + [anon_sym_BSLASHcite] = ACTIONS(4461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCite] = ACTIONS(4461), + [anon_sym_BSLASHnocite] = ACTIONS(4461), + [anon_sym_BSLASHcitet] = ACTIONS(4461), + [anon_sym_BSLASHcitep] = ACTIONS(4461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteauthor] = ACTIONS(4461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitetitle] = ACTIONS(4461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteyear] = ACTIONS(4461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitedate] = ACTIONS(4461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteurl] = ACTIONS(4461), + [anon_sym_BSLASHfullcite] = ACTIONS(4461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), + [anon_sym_BSLASHcitealt] = ACTIONS(4461), + [anon_sym_BSLASHcitealp] = ACTIONS(4461), + [anon_sym_BSLASHcitetext] = ACTIONS(4461), + [anon_sym_BSLASHparencite] = ACTIONS(4461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHParencite] = ACTIONS(4461), + [anon_sym_BSLASHfootcite] = ACTIONS(4461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), + [anon_sym_BSLASHtextcite] = ACTIONS(4461), + [anon_sym_BSLASHTextcite] = ACTIONS(4461), + [anon_sym_BSLASHsmartcite] = ACTIONS(4461), + [anon_sym_BSLASHSmartcite] = ACTIONS(4461), + [anon_sym_BSLASHsupercite] = ACTIONS(4461), + [anon_sym_BSLASHautocite] = ACTIONS(4461), + [anon_sym_BSLASHAutocite] = ACTIONS(4461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHvolcite] = ACTIONS(4461), + [anon_sym_BSLASHVolcite] = ACTIONS(4461), + [anon_sym_BSLASHpvolcite] = ACTIONS(4461), + [anon_sym_BSLASHPvolcite] = ACTIONS(4461), + [anon_sym_BSLASHfvolcite] = ACTIONS(4461), + [anon_sym_BSLASHftvolcite] = ACTIONS(4461), + [anon_sym_BSLASHsvolcite] = ACTIONS(4461), + [anon_sym_BSLASHSvolcite] = ACTIONS(4461), + [anon_sym_BSLASHtvolcite] = ACTIONS(4461), + [anon_sym_BSLASHTvolcite] = ACTIONS(4461), + [anon_sym_BSLASHavolcite] = ACTIONS(4461), + [anon_sym_BSLASHAvolcite] = ACTIONS(4461), + [anon_sym_BSLASHnotecite] = ACTIONS(4461), + [anon_sym_BSLASHNotecite] = ACTIONS(4461), + [anon_sym_BSLASHpnotecite] = ACTIONS(4461), + [anon_sym_BSLASHPnotecite] = ACTIONS(4461), + [anon_sym_BSLASHfnotecite] = ACTIONS(4461), + [anon_sym_BSLASHlabel] = ACTIONS(4461), + [anon_sym_BSLASHref] = ACTIONS(4461), + [anon_sym_BSLASHeqref] = ACTIONS(4461), + [anon_sym_BSLASHvref] = ACTIONS(4461), + [anon_sym_BSLASHVref] = ACTIONS(4461), + [anon_sym_BSLASHautoref] = ACTIONS(4461), + [anon_sym_BSLASHpageref] = ACTIONS(4461), + [anon_sym_BSLASHcref] = ACTIONS(4461), + [anon_sym_BSLASHCref] = ACTIONS(4461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnameCref] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHlabelcref] = ACTIONS(4461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCrefrange] = ACTIONS(4461), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnewlabel] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), + [anon_sym_BSLASHdef] = ACTIONS(4461), + [anon_sym_BSLASHlet] = ACTIONS(4461), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), + [anon_sym_BSLASHgls] = ACTIONS(4461), + [anon_sym_BSLASHGls] = ACTIONS(4461), + [anon_sym_BSLASHGLS] = ACTIONS(4461), + [anon_sym_BSLASHglspl] = ACTIONS(4461), + [anon_sym_BSLASHGlspl] = ACTIONS(4461), + [anon_sym_BSLASHGLSpl] = ACTIONS(4461), + [anon_sym_BSLASHglsdisp] = ACTIONS(4461), + [anon_sym_BSLASHglslink] = ACTIONS(4461), + [anon_sym_BSLASHglstext] = ACTIONS(4461), + [anon_sym_BSLASHGlstext] = ACTIONS(4461), + [anon_sym_BSLASHGLStext] = ACTIONS(4461), + [anon_sym_BSLASHglsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), + [anon_sym_BSLASHglsplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSplural] = ACTIONS(4461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHglsname] = ACTIONS(4461), + [anon_sym_BSLASHGlsname] = ACTIONS(4461), + [anon_sym_BSLASHGLSname] = ACTIONS(4461), + [anon_sym_BSLASHglssymbol] = ACTIONS(4461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), + [anon_sym_BSLASHglsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), + [anon_sym_BSLASHglsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), + [anon_sym_BSLASHglsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), + [anon_sym_BSLASHglsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), + [anon_sym_BSLASHglsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), + [anon_sym_BSLASHnewacronym] = ACTIONS(4461), + [anon_sym_BSLASHacrshort] = ACTIONS(4461), + [anon_sym_BSLASHAcrshort] = ACTIONS(4461), + [anon_sym_BSLASHACRshort] = ACTIONS(4461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), + [anon_sym_BSLASHacrlong] = ACTIONS(4461), + [anon_sym_BSLASHAcrlong] = ACTIONS(4461), + [anon_sym_BSLASHACRlong] = ACTIONS(4461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), + [anon_sym_BSLASHacrfull] = ACTIONS(4461), + [anon_sym_BSLASHAcrfull] = ACTIONS(4461), + [anon_sym_BSLASHACRfull] = ACTIONS(4461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), + [anon_sym_BSLASHacs] = ACTIONS(4461), + [anon_sym_BSLASHAcs] = ACTIONS(4461), + [anon_sym_BSLASHacsp] = ACTIONS(4461), + [anon_sym_BSLASHAcsp] = ACTIONS(4461), + [anon_sym_BSLASHacl] = ACTIONS(4461), + [anon_sym_BSLASHAcl] = ACTIONS(4461), + [anon_sym_BSLASHaclp] = ACTIONS(4461), + [anon_sym_BSLASHAclp] = ACTIONS(4461), + [anon_sym_BSLASHacf] = ACTIONS(4461), + [anon_sym_BSLASHAcf] = ACTIONS(4461), + [anon_sym_BSLASHacfp] = ACTIONS(4461), + [anon_sym_BSLASHAcfp] = ACTIONS(4461), + [anon_sym_BSLASHac] = ACTIONS(4461), + [anon_sym_BSLASHAc] = ACTIONS(4461), + [anon_sym_BSLASHacp] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), + [anon_sym_BSLASHcolor] = ACTIONS(4461), + [anon_sym_BSLASHcolorbox] = ACTIONS(4461), + [anon_sym_BSLASHtextcolor] = ACTIONS(4461), + [anon_sym_BSLASHpagecolor] = ACTIONS(4461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), + [anon_sym_BSLASHtext] = ACTIONS(4461), + [anon_sym_BSLASHintertext] = ACTIONS(4461), + [anon_sym_shortintertext] = ACTIONS(4461), + }, + [630] = { + [sym__chapter_declaration] = STATE(135), + [sym_chapter] = STATE(630), + [aux_sym__section_repeat2] = STATE(630), + [sym_command_name] = ACTIONS(4555), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4555), + [anon_sym_LPAREN] = ACTIONS(4553), + [anon_sym_RPAREN] = ACTIONS(4553), + [anon_sym_LBRACK] = ACTIONS(4553), + [anon_sym_RBRACK] = ACTIONS(4553), + [anon_sym_COMMA] = ACTIONS(4553), + [anon_sym_EQ] = ACTIONS(4553), + [anon_sym_BSLASHpart] = ACTIONS(4555), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4553), + [anon_sym_BSLASHaddpart] = ACTIONS(4555), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4553), + [anon_sym_BSLASHchapter] = ACTIONS(4773), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4776), + [anon_sym_BSLASHaddchap] = ACTIONS(4773), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4776), + [anon_sym_BSLASHsection] = ACTIONS(4555), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHaddsec] = ACTIONS(4555), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubsection] = ACTIONS(4555), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4555), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4553), + [anon_sym_BSLASHparagraph] = ACTIONS(4555), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4553), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4555), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4553), + [anon_sym_BSLASHitem] = ACTIONS(4555), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4553), + [anon_sym_LBRACE] = ACTIONS(4553), + [sym_word] = ACTIONS(4555), + [sym_placeholder] = ACTIONS(4553), + [anon_sym_PLUS] = ACTIONS(4555), + [anon_sym_DASH] = ACTIONS(4555), + [anon_sym_STAR] = ACTIONS(4555), + [anon_sym_SLASH] = ACTIONS(4555), + [anon_sym_CARET] = ACTIONS(4555), + [anon_sym__] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4555), + [anon_sym_GT] = ACTIONS(4555), + [anon_sym_BANG] = ACTIONS(4555), + [anon_sym_PIPE] = ACTIONS(4555), + [anon_sym_COLON] = ACTIONS(4555), + [anon_sym_SQUOTE] = ACTIONS(4555), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4553), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4553), + [anon_sym_DOLLAR] = ACTIONS(4555), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4553), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4553), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4553), + [anon_sym_BSLASHbegin] = ACTIONS(4555), + [anon_sym_BSLASHusepackage] = ACTIONS(4555), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4555), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4555), + [anon_sym_BSLASHinclude] = ACTIONS(4555), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4555), + [anon_sym_BSLASHinput] = ACTIONS(4555), + [anon_sym_BSLASHsubfile] = ACTIONS(4555), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4555), + [anon_sym_BSLASHbibliography] = ACTIONS(4555), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4555), + [anon_sym_BSLASHincludesvg] = ACTIONS(4555), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4555), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4555), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4555), + [anon_sym_BSLASHimport] = ACTIONS(4555), + [anon_sym_BSLASHsubimport] = ACTIONS(4555), + [anon_sym_BSLASHinputfrom] = ACTIONS(4555), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4555), + [anon_sym_BSLASHincludefrom] = ACTIONS(4555), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4555), + [anon_sym_BSLASHcaption] = ACTIONS(4555), + [anon_sym_BSLASHcite] = ACTIONS(4555), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCite] = ACTIONS(4555), + [anon_sym_BSLASHnocite] = ACTIONS(4555), + [anon_sym_BSLASHcitet] = ACTIONS(4555), + [anon_sym_BSLASHcitep] = ACTIONS(4555), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteauthor] = ACTIONS(4555), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4555), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitetitle] = ACTIONS(4555), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteyear] = ACTIONS(4555), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4553), + [anon_sym_BSLASHcitedate] = ACTIONS(4555), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4553), + [anon_sym_BSLASHciteurl] = ACTIONS(4555), + [anon_sym_BSLASHfullcite] = ACTIONS(4555), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4555), + [anon_sym_BSLASHcitealt] = ACTIONS(4555), + [anon_sym_BSLASHcitealp] = ACTIONS(4555), + [anon_sym_BSLASHcitetext] = ACTIONS(4555), + [anon_sym_BSLASHparencite] = ACTIONS(4555), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHParencite] = ACTIONS(4555), + [anon_sym_BSLASHfootcite] = ACTIONS(4555), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4555), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4555), + [anon_sym_BSLASHtextcite] = ACTIONS(4555), + [anon_sym_BSLASHTextcite] = ACTIONS(4555), + [anon_sym_BSLASHsmartcite] = ACTIONS(4555), + [anon_sym_BSLASHSmartcite] = ACTIONS(4555), + [anon_sym_BSLASHsupercite] = ACTIONS(4555), + [anon_sym_BSLASHautocite] = ACTIONS(4555), + [anon_sym_BSLASHAutocite] = ACTIONS(4555), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4553), + [anon_sym_BSLASHvolcite] = ACTIONS(4555), + [anon_sym_BSLASHVolcite] = ACTIONS(4555), + [anon_sym_BSLASHpvolcite] = ACTIONS(4555), + [anon_sym_BSLASHPvolcite] = ACTIONS(4555), + [anon_sym_BSLASHfvolcite] = ACTIONS(4555), + [anon_sym_BSLASHftvolcite] = ACTIONS(4555), + [anon_sym_BSLASHsvolcite] = ACTIONS(4555), + [anon_sym_BSLASHSvolcite] = ACTIONS(4555), + [anon_sym_BSLASHtvolcite] = ACTIONS(4555), + [anon_sym_BSLASHTvolcite] = ACTIONS(4555), + [anon_sym_BSLASHavolcite] = ACTIONS(4555), + [anon_sym_BSLASHAvolcite] = ACTIONS(4555), + [anon_sym_BSLASHnotecite] = ACTIONS(4555), + [anon_sym_BSLASHNotecite] = ACTIONS(4555), + [anon_sym_BSLASHpnotecite] = ACTIONS(4555), + [anon_sym_BSLASHPnotecite] = ACTIONS(4555), + [anon_sym_BSLASHfnotecite] = ACTIONS(4555), + [anon_sym_BSLASHlabel] = ACTIONS(4555), + [anon_sym_BSLASHref] = ACTIONS(4555), + [anon_sym_BSLASHeqref] = ACTIONS(4555), + [anon_sym_BSLASHvref] = ACTIONS(4555), + [anon_sym_BSLASHVref] = ACTIONS(4555), + [anon_sym_BSLASHautoref] = ACTIONS(4555), + [anon_sym_BSLASHpageref] = ACTIONS(4555), + [anon_sym_BSLASHcref] = ACTIONS(4555), + [anon_sym_BSLASHCref] = ACTIONS(4555), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4553), + [anon_sym_BSLASHnamecref] = ACTIONS(4555), + [anon_sym_BSLASHnameCref] = ACTIONS(4555), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4555), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4555), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4555), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4555), + [anon_sym_BSLASHlabelcref] = ACTIONS(4555), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4555), + [anon_sym_BSLASHcrefrange] = ACTIONS(4555), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4553), + [anon_sym_BSLASHCrefrange] = ACTIONS(4555), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4553), + [anon_sym_BSLASHnewlabel] = ACTIONS(4555), + [anon_sym_BSLASHnewcommand] = ACTIONS(4555), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4555), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4555), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4553), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4555), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4553), + [anon_sym_BSLASHdef] = ACTIONS(4555), + [anon_sym_BSLASHlet] = ACTIONS(4555), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4555), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4555), + [anon_sym_BSLASHgls] = ACTIONS(4555), + [anon_sym_BSLASHGls] = ACTIONS(4555), + [anon_sym_BSLASHGLS] = ACTIONS(4555), + [anon_sym_BSLASHglspl] = ACTIONS(4555), + [anon_sym_BSLASHGlspl] = ACTIONS(4555), + [anon_sym_BSLASHGLSpl] = ACTIONS(4555), + [anon_sym_BSLASHglsdisp] = ACTIONS(4555), + [anon_sym_BSLASHglslink] = ACTIONS(4555), + [anon_sym_BSLASHglstext] = ACTIONS(4555), + [anon_sym_BSLASHGlstext] = ACTIONS(4555), + [anon_sym_BSLASHGLStext] = ACTIONS(4555), + [anon_sym_BSLASHglsfirst] = ACTIONS(4555), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4555), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4555), + [anon_sym_BSLASHglsplural] = ACTIONS(4555), + [anon_sym_BSLASHGlsplural] = ACTIONS(4555), + [anon_sym_BSLASHGLSplural] = ACTIONS(4555), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4555), + [anon_sym_BSLASHglsname] = ACTIONS(4555), + [anon_sym_BSLASHGlsname] = ACTIONS(4555), + [anon_sym_BSLASHGLSname] = ACTIONS(4555), + [anon_sym_BSLASHglssymbol] = ACTIONS(4555), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4555), + [anon_sym_BSLASHglsdesc] = ACTIONS(4555), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4555), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4555), + [anon_sym_BSLASHglsuseri] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4555), + [anon_sym_BSLASHglsuserii] = ACTIONS(4555), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4555), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4555), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4555), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4555), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4555), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4555), + [anon_sym_BSLASHglsuserv] = ACTIONS(4555), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4555), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4555), + [anon_sym_BSLASHglsuservi] = ACTIONS(4555), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4555), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4555), + [anon_sym_BSLASHnewacronym] = ACTIONS(4555), + [anon_sym_BSLASHacrshort] = ACTIONS(4555), + [anon_sym_BSLASHAcrshort] = ACTIONS(4555), + [anon_sym_BSLASHACRshort] = ACTIONS(4555), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4555), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4555), + [anon_sym_BSLASHacrlong] = ACTIONS(4555), + [anon_sym_BSLASHAcrlong] = ACTIONS(4555), + [anon_sym_BSLASHACRlong] = ACTIONS(4555), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4555), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4555), + [anon_sym_BSLASHacrfull] = ACTIONS(4555), + [anon_sym_BSLASHAcrfull] = ACTIONS(4555), + [anon_sym_BSLASHACRfull] = ACTIONS(4555), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4555), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4555), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4555), + [anon_sym_BSLASHacs] = ACTIONS(4555), + [anon_sym_BSLASHAcs] = ACTIONS(4555), + [anon_sym_BSLASHacsp] = ACTIONS(4555), + [anon_sym_BSLASHAcsp] = ACTIONS(4555), + [anon_sym_BSLASHacl] = ACTIONS(4555), + [anon_sym_BSLASHAcl] = ACTIONS(4555), + [anon_sym_BSLASHaclp] = ACTIONS(4555), + [anon_sym_BSLASHAclp] = ACTIONS(4555), + [anon_sym_BSLASHacf] = ACTIONS(4555), + [anon_sym_BSLASHAcf] = ACTIONS(4555), + [anon_sym_BSLASHacfp] = ACTIONS(4555), + [anon_sym_BSLASHAcfp] = ACTIONS(4555), + [anon_sym_BSLASHac] = ACTIONS(4555), + [anon_sym_BSLASHAc] = ACTIONS(4555), + [anon_sym_BSLASHacp] = ACTIONS(4555), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4555), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4555), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4555), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4555), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4555), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4555), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4555), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4555), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4555), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4555), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4555), + [anon_sym_BSLASHcolor] = ACTIONS(4555), + [anon_sym_BSLASHcolorbox] = ACTIONS(4555), + [anon_sym_BSLASHtextcolor] = ACTIONS(4555), + [anon_sym_BSLASHpagecolor] = ACTIONS(4555), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4555), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4555), + [anon_sym_BSLASHtext] = ACTIONS(4555), + [anon_sym_BSLASHintertext] = ACTIONS(4555), + [anon_sym_shortintertext] = ACTIONS(4555), + }, + [631] = { + [sym__section_declaration] = STATE(144), + [sym_section] = STATE(631), + [aux_sym__section_repeat3] = STATE(631), + [sym_command_name] = ACTIONS(4545), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4545), + [anon_sym_LPAREN] = ACTIONS(4543), + [anon_sym_RPAREN] = ACTIONS(4543), + [anon_sym_LBRACK] = ACTIONS(4543), + [anon_sym_RBRACK] = ACTIONS(4543), + [anon_sym_COMMA] = ACTIONS(4543), + [anon_sym_EQ] = ACTIONS(4543), + [anon_sym_BSLASHpart] = ACTIONS(4545), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4543), + [anon_sym_BSLASHaddpart] = ACTIONS(4545), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4543), + [anon_sym_BSLASHchapter] = ACTIONS(4545), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4543), + [anon_sym_BSLASHaddchap] = ACTIONS(4545), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsection] = ACTIONS(4779), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4782), + [anon_sym_BSLASHaddsec] = ACTIONS(4779), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4782), + [anon_sym_BSLASHsubsection] = ACTIONS(4545), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4545), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4543), + [anon_sym_BSLASHparagraph] = ACTIONS(4545), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4543), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4545), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4543), + [anon_sym_BSLASHitem] = ACTIONS(4545), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4543), + [anon_sym_LBRACE] = ACTIONS(4543), + [sym_word] = ACTIONS(4545), + [sym_placeholder] = ACTIONS(4543), + [anon_sym_PLUS] = ACTIONS(4545), + [anon_sym_DASH] = ACTIONS(4545), + [anon_sym_STAR] = ACTIONS(4545), + [anon_sym_SLASH] = ACTIONS(4545), + [anon_sym_CARET] = ACTIONS(4545), + [anon_sym__] = ACTIONS(4545), + [anon_sym_LT] = ACTIONS(4545), + [anon_sym_GT] = ACTIONS(4545), + [anon_sym_BANG] = ACTIONS(4545), + [anon_sym_PIPE] = ACTIONS(4545), + [anon_sym_COLON] = ACTIONS(4545), + [anon_sym_SQUOTE] = ACTIONS(4545), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4543), + [anon_sym_DOLLAR] = ACTIONS(4545), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4543), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4543), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4543), + [anon_sym_BSLASHbegin] = ACTIONS(4545), + [anon_sym_BSLASHusepackage] = ACTIONS(4545), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4545), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4545), + [anon_sym_BSLASHinclude] = ACTIONS(4545), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4545), + [anon_sym_BSLASHinput] = ACTIONS(4545), + [anon_sym_BSLASHsubfile] = ACTIONS(4545), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4545), + [anon_sym_BSLASHbibliography] = ACTIONS(4545), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4545), + [anon_sym_BSLASHincludesvg] = ACTIONS(4545), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4545), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4545), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4545), + [anon_sym_BSLASHimport] = ACTIONS(4545), + [anon_sym_BSLASHsubimport] = ACTIONS(4545), + [anon_sym_BSLASHinputfrom] = ACTIONS(4545), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4545), + [anon_sym_BSLASHincludefrom] = ACTIONS(4545), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4545), + [anon_sym_BSLASHcaption] = ACTIONS(4545), + [anon_sym_BSLASHcite] = ACTIONS(4545), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCite] = ACTIONS(4545), + [anon_sym_BSLASHnocite] = ACTIONS(4545), + [anon_sym_BSLASHcitet] = ACTIONS(4545), + [anon_sym_BSLASHcitep] = ACTIONS(4545), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteauthor] = ACTIONS(4545), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4545), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitetitle] = ACTIONS(4545), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteyear] = ACTIONS(4545), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4543), + [anon_sym_BSLASHcitedate] = ACTIONS(4545), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4543), + [anon_sym_BSLASHciteurl] = ACTIONS(4545), + [anon_sym_BSLASHfullcite] = ACTIONS(4545), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4545), + [anon_sym_BSLASHcitealt] = ACTIONS(4545), + [anon_sym_BSLASHcitealp] = ACTIONS(4545), + [anon_sym_BSLASHcitetext] = ACTIONS(4545), + [anon_sym_BSLASHparencite] = ACTIONS(4545), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHParencite] = ACTIONS(4545), + [anon_sym_BSLASHfootcite] = ACTIONS(4545), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4545), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4545), + [anon_sym_BSLASHtextcite] = ACTIONS(4545), + [anon_sym_BSLASHTextcite] = ACTIONS(4545), + [anon_sym_BSLASHsmartcite] = ACTIONS(4545), + [anon_sym_BSLASHSmartcite] = ACTIONS(4545), + [anon_sym_BSLASHsupercite] = ACTIONS(4545), + [anon_sym_BSLASHautocite] = ACTIONS(4545), + [anon_sym_BSLASHAutocite] = ACTIONS(4545), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4543), + [anon_sym_BSLASHvolcite] = ACTIONS(4545), + [anon_sym_BSLASHVolcite] = ACTIONS(4545), + [anon_sym_BSLASHpvolcite] = ACTIONS(4545), + [anon_sym_BSLASHPvolcite] = ACTIONS(4545), + [anon_sym_BSLASHfvolcite] = ACTIONS(4545), + [anon_sym_BSLASHftvolcite] = ACTIONS(4545), + [anon_sym_BSLASHsvolcite] = ACTIONS(4545), + [anon_sym_BSLASHSvolcite] = ACTIONS(4545), + [anon_sym_BSLASHtvolcite] = ACTIONS(4545), + [anon_sym_BSLASHTvolcite] = ACTIONS(4545), + [anon_sym_BSLASHavolcite] = ACTIONS(4545), + [anon_sym_BSLASHAvolcite] = ACTIONS(4545), + [anon_sym_BSLASHnotecite] = ACTIONS(4545), + [anon_sym_BSLASHNotecite] = ACTIONS(4545), + [anon_sym_BSLASHpnotecite] = ACTIONS(4545), + [anon_sym_BSLASHPnotecite] = ACTIONS(4545), + [anon_sym_BSLASHfnotecite] = ACTIONS(4545), + [anon_sym_BSLASHlabel] = ACTIONS(4545), + [anon_sym_BSLASHref] = ACTIONS(4545), + [anon_sym_BSLASHeqref] = ACTIONS(4545), + [anon_sym_BSLASHvref] = ACTIONS(4545), + [anon_sym_BSLASHVref] = ACTIONS(4545), + [anon_sym_BSLASHautoref] = ACTIONS(4545), + [anon_sym_BSLASHpageref] = ACTIONS(4545), + [anon_sym_BSLASHcref] = ACTIONS(4545), + [anon_sym_BSLASHCref] = ACTIONS(4545), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4543), + [anon_sym_BSLASHnamecref] = ACTIONS(4545), + [anon_sym_BSLASHnameCref] = ACTIONS(4545), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4545), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4545), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4545), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4545), + [anon_sym_BSLASHlabelcref] = ACTIONS(4545), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4545), + [anon_sym_BSLASHcrefrange] = ACTIONS(4545), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4543), + [anon_sym_BSLASHCrefrange] = ACTIONS(4545), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4543), + [anon_sym_BSLASHnewlabel] = ACTIONS(4545), + [anon_sym_BSLASHnewcommand] = ACTIONS(4545), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4545), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4545), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4543), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4545), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4543), + [anon_sym_BSLASHdef] = ACTIONS(4545), + [anon_sym_BSLASHlet] = ACTIONS(4545), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4545), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4545), + [anon_sym_BSLASHgls] = ACTIONS(4545), + [anon_sym_BSLASHGls] = ACTIONS(4545), + [anon_sym_BSLASHGLS] = ACTIONS(4545), + [anon_sym_BSLASHglspl] = ACTIONS(4545), + [anon_sym_BSLASHGlspl] = ACTIONS(4545), + [anon_sym_BSLASHGLSpl] = ACTIONS(4545), + [anon_sym_BSLASHglsdisp] = ACTIONS(4545), + [anon_sym_BSLASHglslink] = ACTIONS(4545), + [anon_sym_BSLASHglstext] = ACTIONS(4545), + [anon_sym_BSLASHGlstext] = ACTIONS(4545), + [anon_sym_BSLASHGLStext] = ACTIONS(4545), + [anon_sym_BSLASHglsfirst] = ACTIONS(4545), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4545), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4545), + [anon_sym_BSLASHglsplural] = ACTIONS(4545), + [anon_sym_BSLASHGlsplural] = ACTIONS(4545), + [anon_sym_BSLASHGLSplural] = ACTIONS(4545), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4545), + [anon_sym_BSLASHglsname] = ACTIONS(4545), + [anon_sym_BSLASHGlsname] = ACTIONS(4545), + [anon_sym_BSLASHGLSname] = ACTIONS(4545), + [anon_sym_BSLASHglssymbol] = ACTIONS(4545), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4545), + [anon_sym_BSLASHglsdesc] = ACTIONS(4545), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4545), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4545), + [anon_sym_BSLASHglsuseri] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4545), + [anon_sym_BSLASHglsuserii] = ACTIONS(4545), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4545), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4545), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4545), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4545), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4545), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4545), + [anon_sym_BSLASHglsuserv] = ACTIONS(4545), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4545), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4545), + [anon_sym_BSLASHglsuservi] = ACTIONS(4545), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4545), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4545), + [anon_sym_BSLASHnewacronym] = ACTIONS(4545), + [anon_sym_BSLASHacrshort] = ACTIONS(4545), + [anon_sym_BSLASHAcrshort] = ACTIONS(4545), + [anon_sym_BSLASHACRshort] = ACTIONS(4545), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4545), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4545), + [anon_sym_BSLASHacrlong] = ACTIONS(4545), + [anon_sym_BSLASHAcrlong] = ACTIONS(4545), + [anon_sym_BSLASHACRlong] = ACTIONS(4545), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4545), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4545), + [anon_sym_BSLASHacrfull] = ACTIONS(4545), + [anon_sym_BSLASHAcrfull] = ACTIONS(4545), + [anon_sym_BSLASHACRfull] = ACTIONS(4545), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4545), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4545), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4545), + [anon_sym_BSLASHacs] = ACTIONS(4545), + [anon_sym_BSLASHAcs] = ACTIONS(4545), + [anon_sym_BSLASHacsp] = ACTIONS(4545), + [anon_sym_BSLASHAcsp] = ACTIONS(4545), + [anon_sym_BSLASHacl] = ACTIONS(4545), + [anon_sym_BSLASHAcl] = ACTIONS(4545), + [anon_sym_BSLASHaclp] = ACTIONS(4545), + [anon_sym_BSLASHAclp] = ACTIONS(4545), + [anon_sym_BSLASHacf] = ACTIONS(4545), + [anon_sym_BSLASHAcf] = ACTIONS(4545), + [anon_sym_BSLASHacfp] = ACTIONS(4545), + [anon_sym_BSLASHAcfp] = ACTIONS(4545), + [anon_sym_BSLASHac] = ACTIONS(4545), + [anon_sym_BSLASHAc] = ACTIONS(4545), + [anon_sym_BSLASHacp] = ACTIONS(4545), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4545), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4545), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4545), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4545), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4545), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4545), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4545), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4545), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4545), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4545), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4545), + [anon_sym_BSLASHcolor] = ACTIONS(4545), + [anon_sym_BSLASHcolorbox] = ACTIONS(4545), + [anon_sym_BSLASHtextcolor] = ACTIONS(4545), + [anon_sym_BSLASHpagecolor] = ACTIONS(4545), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4545), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4545), + [anon_sym_BSLASHtext] = ACTIONS(4545), + [anon_sym_BSLASHintertext] = ACTIONS(4545), + [anon_sym_shortintertext] = ACTIONS(4545), + }, + [632] = { + [sym__subsection_declaration] = STATE(158), + [sym_subsection] = STATE(632), + [aux_sym__section_repeat4] = STATE(632), + [sym_command_name] = ACTIONS(4535), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4535), + [anon_sym_LPAREN] = ACTIONS(4533), + [anon_sym_RPAREN] = ACTIONS(4533), + [anon_sym_LBRACK] = ACTIONS(4533), + [anon_sym_RBRACK] = ACTIONS(4533), + [anon_sym_COMMA] = ACTIONS(4533), + [anon_sym_EQ] = ACTIONS(4533), + [anon_sym_BSLASHpart] = ACTIONS(4535), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddpart] = ACTIONS(4535), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4533), + [anon_sym_BSLASHchapter] = ACTIONS(4535), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddchap] = ACTIONS(4535), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsection] = ACTIONS(4535), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4533), + [anon_sym_BSLASHaddsec] = ACTIONS(4535), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsubsection] = ACTIONS(4785), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4788), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4535), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4533), + [anon_sym_BSLASHparagraph] = ACTIONS(4535), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4533), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4535), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4533), + [anon_sym_BSLASHitem] = ACTIONS(4535), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4533), + [anon_sym_LBRACE] = ACTIONS(4533), + [sym_word] = ACTIONS(4535), + [sym_placeholder] = ACTIONS(4533), + [anon_sym_PLUS] = ACTIONS(4535), + [anon_sym_DASH] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4535), + [anon_sym_SLASH] = ACTIONS(4535), + [anon_sym_CARET] = ACTIONS(4535), + [anon_sym__] = ACTIONS(4535), + [anon_sym_LT] = ACTIONS(4535), + [anon_sym_GT] = ACTIONS(4535), + [anon_sym_BANG] = ACTIONS(4535), + [anon_sym_PIPE] = ACTIONS(4535), + [anon_sym_COLON] = ACTIONS(4535), + [anon_sym_SQUOTE] = ACTIONS(4535), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4533), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4533), + [anon_sym_DOLLAR] = ACTIONS(4535), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4533), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4533), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4533), + [anon_sym_BSLASHbegin] = ACTIONS(4535), + [anon_sym_BSLASHusepackage] = ACTIONS(4535), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4535), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4535), + [anon_sym_BSLASHinclude] = ACTIONS(4535), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4535), + [anon_sym_BSLASHinput] = ACTIONS(4535), + [anon_sym_BSLASHsubfile] = ACTIONS(4535), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4535), + [anon_sym_BSLASHbibliography] = ACTIONS(4535), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4535), + [anon_sym_BSLASHincludesvg] = ACTIONS(4535), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4535), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4535), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4535), + [anon_sym_BSLASHimport] = ACTIONS(4535), + [anon_sym_BSLASHsubimport] = ACTIONS(4535), + [anon_sym_BSLASHinputfrom] = ACTIONS(4535), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4535), + [anon_sym_BSLASHincludefrom] = ACTIONS(4535), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4535), + [anon_sym_BSLASHcaption] = ACTIONS(4535), + [anon_sym_BSLASHcite] = ACTIONS(4535), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCite] = ACTIONS(4535), + [anon_sym_BSLASHnocite] = ACTIONS(4535), + [anon_sym_BSLASHcitet] = ACTIONS(4535), + [anon_sym_BSLASHcitep] = ACTIONS(4535), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteauthor] = ACTIONS(4535), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4535), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitetitle] = ACTIONS(4535), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteyear] = ACTIONS(4535), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4533), + [anon_sym_BSLASHcitedate] = ACTIONS(4535), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4533), + [anon_sym_BSLASHciteurl] = ACTIONS(4535), + [anon_sym_BSLASHfullcite] = ACTIONS(4535), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4535), + [anon_sym_BSLASHcitealt] = ACTIONS(4535), + [anon_sym_BSLASHcitealp] = ACTIONS(4535), + [anon_sym_BSLASHcitetext] = ACTIONS(4535), + [anon_sym_BSLASHparencite] = ACTIONS(4535), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHParencite] = ACTIONS(4535), + [anon_sym_BSLASHfootcite] = ACTIONS(4535), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4535), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4535), + [anon_sym_BSLASHtextcite] = ACTIONS(4535), + [anon_sym_BSLASHTextcite] = ACTIONS(4535), + [anon_sym_BSLASHsmartcite] = ACTIONS(4535), + [anon_sym_BSLASHSmartcite] = ACTIONS(4535), + [anon_sym_BSLASHsupercite] = ACTIONS(4535), + [anon_sym_BSLASHautocite] = ACTIONS(4535), + [anon_sym_BSLASHAutocite] = ACTIONS(4535), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4533), + [anon_sym_BSLASHvolcite] = ACTIONS(4535), + [anon_sym_BSLASHVolcite] = ACTIONS(4535), + [anon_sym_BSLASHpvolcite] = ACTIONS(4535), + [anon_sym_BSLASHPvolcite] = ACTIONS(4535), + [anon_sym_BSLASHfvolcite] = ACTIONS(4535), + [anon_sym_BSLASHftvolcite] = ACTIONS(4535), + [anon_sym_BSLASHsvolcite] = ACTIONS(4535), + [anon_sym_BSLASHSvolcite] = ACTIONS(4535), + [anon_sym_BSLASHtvolcite] = ACTIONS(4535), + [anon_sym_BSLASHTvolcite] = ACTIONS(4535), + [anon_sym_BSLASHavolcite] = ACTIONS(4535), + [anon_sym_BSLASHAvolcite] = ACTIONS(4535), + [anon_sym_BSLASHnotecite] = ACTIONS(4535), + [anon_sym_BSLASHNotecite] = ACTIONS(4535), + [anon_sym_BSLASHpnotecite] = ACTIONS(4535), + [anon_sym_BSLASHPnotecite] = ACTIONS(4535), + [anon_sym_BSLASHfnotecite] = ACTIONS(4535), + [anon_sym_BSLASHlabel] = ACTIONS(4535), + [anon_sym_BSLASHref] = ACTIONS(4535), + [anon_sym_BSLASHeqref] = ACTIONS(4535), + [anon_sym_BSLASHvref] = ACTIONS(4535), + [anon_sym_BSLASHVref] = ACTIONS(4535), + [anon_sym_BSLASHautoref] = ACTIONS(4535), + [anon_sym_BSLASHpageref] = ACTIONS(4535), + [anon_sym_BSLASHcref] = ACTIONS(4535), + [anon_sym_BSLASHCref] = ACTIONS(4535), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4533), + [anon_sym_BSLASHnamecref] = ACTIONS(4535), + [anon_sym_BSLASHnameCref] = ACTIONS(4535), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4535), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4535), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4535), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4535), + [anon_sym_BSLASHlabelcref] = ACTIONS(4535), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4535), + [anon_sym_BSLASHcrefrange] = ACTIONS(4535), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4533), + [anon_sym_BSLASHCrefrange] = ACTIONS(4535), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4533), + [anon_sym_BSLASHnewlabel] = ACTIONS(4535), + [anon_sym_BSLASHnewcommand] = ACTIONS(4535), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4535), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4535), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4533), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4535), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4533), + [anon_sym_BSLASHdef] = ACTIONS(4535), + [anon_sym_BSLASHlet] = ACTIONS(4535), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4535), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4535), + [anon_sym_BSLASHgls] = ACTIONS(4535), + [anon_sym_BSLASHGls] = ACTIONS(4535), + [anon_sym_BSLASHGLS] = ACTIONS(4535), + [anon_sym_BSLASHglspl] = ACTIONS(4535), + [anon_sym_BSLASHGlspl] = ACTIONS(4535), + [anon_sym_BSLASHGLSpl] = ACTIONS(4535), + [anon_sym_BSLASHglsdisp] = ACTIONS(4535), + [anon_sym_BSLASHglslink] = ACTIONS(4535), + [anon_sym_BSLASHglstext] = ACTIONS(4535), + [anon_sym_BSLASHGlstext] = ACTIONS(4535), + [anon_sym_BSLASHGLStext] = ACTIONS(4535), + [anon_sym_BSLASHglsfirst] = ACTIONS(4535), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4535), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4535), + [anon_sym_BSLASHglsplural] = ACTIONS(4535), + [anon_sym_BSLASHGlsplural] = ACTIONS(4535), + [anon_sym_BSLASHGLSplural] = ACTIONS(4535), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4535), + [anon_sym_BSLASHglsname] = ACTIONS(4535), + [anon_sym_BSLASHGlsname] = ACTIONS(4535), + [anon_sym_BSLASHGLSname] = ACTIONS(4535), + [anon_sym_BSLASHglssymbol] = ACTIONS(4535), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4535), + [anon_sym_BSLASHglsdesc] = ACTIONS(4535), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4535), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4535), + [anon_sym_BSLASHglsuseri] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4535), + [anon_sym_BSLASHglsuserii] = ACTIONS(4535), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4535), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4535), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4535), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4535), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4535), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4535), + [anon_sym_BSLASHglsuserv] = ACTIONS(4535), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4535), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4535), + [anon_sym_BSLASHglsuservi] = ACTIONS(4535), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4535), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4535), + [anon_sym_BSLASHnewacronym] = ACTIONS(4535), + [anon_sym_BSLASHacrshort] = ACTIONS(4535), + [anon_sym_BSLASHAcrshort] = ACTIONS(4535), + [anon_sym_BSLASHACRshort] = ACTIONS(4535), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4535), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4535), + [anon_sym_BSLASHacrlong] = ACTIONS(4535), + [anon_sym_BSLASHAcrlong] = ACTIONS(4535), + [anon_sym_BSLASHACRlong] = ACTIONS(4535), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4535), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4535), + [anon_sym_BSLASHacrfull] = ACTIONS(4535), + [anon_sym_BSLASHAcrfull] = ACTIONS(4535), + [anon_sym_BSLASHACRfull] = ACTIONS(4535), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4535), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4535), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4535), + [anon_sym_BSLASHacs] = ACTIONS(4535), + [anon_sym_BSLASHAcs] = ACTIONS(4535), + [anon_sym_BSLASHacsp] = ACTIONS(4535), + [anon_sym_BSLASHAcsp] = ACTIONS(4535), + [anon_sym_BSLASHacl] = ACTIONS(4535), + [anon_sym_BSLASHAcl] = ACTIONS(4535), + [anon_sym_BSLASHaclp] = ACTIONS(4535), + [anon_sym_BSLASHAclp] = ACTIONS(4535), + [anon_sym_BSLASHacf] = ACTIONS(4535), + [anon_sym_BSLASHAcf] = ACTIONS(4535), + [anon_sym_BSLASHacfp] = ACTIONS(4535), + [anon_sym_BSLASHAcfp] = ACTIONS(4535), + [anon_sym_BSLASHac] = ACTIONS(4535), + [anon_sym_BSLASHAc] = ACTIONS(4535), + [anon_sym_BSLASHacp] = ACTIONS(4535), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4535), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4535), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4535), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4535), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4535), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4535), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4535), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4535), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4535), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4535), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4535), + [anon_sym_BSLASHcolor] = ACTIONS(4535), + [anon_sym_BSLASHcolorbox] = ACTIONS(4535), + [anon_sym_BSLASHtextcolor] = ACTIONS(4535), + [anon_sym_BSLASHpagecolor] = ACTIONS(4535), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4535), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4535), + [anon_sym_BSLASHtext] = ACTIONS(4535), + [anon_sym_BSLASHintertext] = ACTIONS(4535), + [anon_sym_shortintertext] = ACTIONS(4535), + }, + [633] = { + [sym__subsubsection_declaration] = STATE(169), + [sym_subsubsection] = STATE(633), + [aux_sym__section_repeat5] = STATE(633), + [sym_command_name] = ACTIONS(4525), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4525), + [anon_sym_LPAREN] = ACTIONS(4523), + [anon_sym_RPAREN] = ACTIONS(4523), + [anon_sym_LBRACK] = ACTIONS(4523), + [anon_sym_RBRACK] = ACTIONS(4523), + [anon_sym_COMMA] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4523), + [anon_sym_BSLASHpart] = ACTIONS(4525), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddpart] = ACTIONS(4525), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4523), + [anon_sym_BSLASHchapter] = ACTIONS(4525), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddchap] = ACTIONS(4525), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsection] = ACTIONS(4525), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4523), + [anon_sym_BSLASHaddsec] = ACTIONS(4525), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubsection] = ACTIONS(4525), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4791), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4794), + [anon_sym_BSLASHparagraph] = ACTIONS(4525), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4523), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4525), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4523), + [anon_sym_BSLASHitem] = ACTIONS(4525), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4523), + [anon_sym_LBRACE] = ACTIONS(4523), + [sym_word] = ACTIONS(4525), + [sym_placeholder] = ACTIONS(4523), + [anon_sym_PLUS] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_STAR] = ACTIONS(4525), + [anon_sym_SLASH] = ACTIONS(4525), + [anon_sym_CARET] = ACTIONS(4525), + [anon_sym__] = ACTIONS(4525), + [anon_sym_LT] = ACTIONS(4525), + [anon_sym_GT] = ACTIONS(4525), + [anon_sym_BANG] = ACTIONS(4525), + [anon_sym_PIPE] = ACTIONS(4525), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_SQUOTE] = ACTIONS(4525), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4523), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4523), + [anon_sym_DOLLAR] = ACTIONS(4525), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4523), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4523), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4523), + [anon_sym_BSLASHbegin] = ACTIONS(4525), + [anon_sym_BSLASHusepackage] = ACTIONS(4525), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4525), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4525), + [anon_sym_BSLASHinclude] = ACTIONS(4525), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4525), + [anon_sym_BSLASHinput] = ACTIONS(4525), + [anon_sym_BSLASHsubfile] = ACTIONS(4525), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4525), + [anon_sym_BSLASHbibliography] = ACTIONS(4525), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4525), + [anon_sym_BSLASHincludesvg] = ACTIONS(4525), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4525), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4525), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4525), + [anon_sym_BSLASHimport] = ACTIONS(4525), + [anon_sym_BSLASHsubimport] = ACTIONS(4525), + [anon_sym_BSLASHinputfrom] = ACTIONS(4525), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4525), + [anon_sym_BSLASHincludefrom] = ACTIONS(4525), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4525), + [anon_sym_BSLASHcaption] = ACTIONS(4525), + [anon_sym_BSLASHcite] = ACTIONS(4525), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCite] = ACTIONS(4525), + [anon_sym_BSLASHnocite] = ACTIONS(4525), + [anon_sym_BSLASHcitet] = ACTIONS(4525), + [anon_sym_BSLASHcitep] = ACTIONS(4525), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteauthor] = ACTIONS(4525), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4525), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitetitle] = ACTIONS(4525), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteyear] = ACTIONS(4525), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4523), + [anon_sym_BSLASHcitedate] = ACTIONS(4525), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4523), + [anon_sym_BSLASHciteurl] = ACTIONS(4525), + [anon_sym_BSLASHfullcite] = ACTIONS(4525), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4525), + [anon_sym_BSLASHcitealt] = ACTIONS(4525), + [anon_sym_BSLASHcitealp] = ACTIONS(4525), + [anon_sym_BSLASHcitetext] = ACTIONS(4525), + [anon_sym_BSLASHparencite] = ACTIONS(4525), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHParencite] = ACTIONS(4525), + [anon_sym_BSLASHfootcite] = ACTIONS(4525), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4525), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4525), + [anon_sym_BSLASHtextcite] = ACTIONS(4525), + [anon_sym_BSLASHTextcite] = ACTIONS(4525), + [anon_sym_BSLASHsmartcite] = ACTIONS(4525), + [anon_sym_BSLASHSmartcite] = ACTIONS(4525), + [anon_sym_BSLASHsupercite] = ACTIONS(4525), + [anon_sym_BSLASHautocite] = ACTIONS(4525), + [anon_sym_BSLASHAutocite] = ACTIONS(4525), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4523), + [anon_sym_BSLASHvolcite] = ACTIONS(4525), + [anon_sym_BSLASHVolcite] = ACTIONS(4525), + [anon_sym_BSLASHpvolcite] = ACTIONS(4525), + [anon_sym_BSLASHPvolcite] = ACTIONS(4525), + [anon_sym_BSLASHfvolcite] = ACTIONS(4525), + [anon_sym_BSLASHftvolcite] = ACTIONS(4525), + [anon_sym_BSLASHsvolcite] = ACTIONS(4525), + [anon_sym_BSLASHSvolcite] = ACTIONS(4525), + [anon_sym_BSLASHtvolcite] = ACTIONS(4525), + [anon_sym_BSLASHTvolcite] = ACTIONS(4525), + [anon_sym_BSLASHavolcite] = ACTIONS(4525), + [anon_sym_BSLASHAvolcite] = ACTIONS(4525), + [anon_sym_BSLASHnotecite] = ACTIONS(4525), + [anon_sym_BSLASHNotecite] = ACTIONS(4525), + [anon_sym_BSLASHpnotecite] = ACTIONS(4525), + [anon_sym_BSLASHPnotecite] = ACTIONS(4525), + [anon_sym_BSLASHfnotecite] = ACTIONS(4525), + [anon_sym_BSLASHlabel] = ACTIONS(4525), + [anon_sym_BSLASHref] = ACTIONS(4525), + [anon_sym_BSLASHeqref] = ACTIONS(4525), + [anon_sym_BSLASHvref] = ACTIONS(4525), + [anon_sym_BSLASHVref] = ACTIONS(4525), + [anon_sym_BSLASHautoref] = ACTIONS(4525), + [anon_sym_BSLASHpageref] = ACTIONS(4525), + [anon_sym_BSLASHcref] = ACTIONS(4525), + [anon_sym_BSLASHCref] = ACTIONS(4525), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4523), + [anon_sym_BSLASHnamecref] = ACTIONS(4525), + [anon_sym_BSLASHnameCref] = ACTIONS(4525), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4525), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4525), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4525), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4525), + [anon_sym_BSLASHlabelcref] = ACTIONS(4525), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4525), + [anon_sym_BSLASHcrefrange] = ACTIONS(4525), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4523), + [anon_sym_BSLASHCrefrange] = ACTIONS(4525), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4523), + [anon_sym_BSLASHnewlabel] = ACTIONS(4525), + [anon_sym_BSLASHnewcommand] = ACTIONS(4525), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4525), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4525), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4523), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4525), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4523), + [anon_sym_BSLASHdef] = ACTIONS(4525), + [anon_sym_BSLASHlet] = ACTIONS(4525), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4525), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4525), + [anon_sym_BSLASHgls] = ACTIONS(4525), + [anon_sym_BSLASHGls] = ACTIONS(4525), + [anon_sym_BSLASHGLS] = ACTIONS(4525), + [anon_sym_BSLASHglspl] = ACTIONS(4525), + [anon_sym_BSLASHGlspl] = ACTIONS(4525), + [anon_sym_BSLASHGLSpl] = ACTIONS(4525), + [anon_sym_BSLASHglsdisp] = ACTIONS(4525), + [anon_sym_BSLASHglslink] = ACTIONS(4525), + [anon_sym_BSLASHglstext] = ACTIONS(4525), + [anon_sym_BSLASHGlstext] = ACTIONS(4525), + [anon_sym_BSLASHGLStext] = ACTIONS(4525), + [anon_sym_BSLASHglsfirst] = ACTIONS(4525), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4525), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4525), + [anon_sym_BSLASHglsplural] = ACTIONS(4525), + [anon_sym_BSLASHGlsplural] = ACTIONS(4525), + [anon_sym_BSLASHGLSplural] = ACTIONS(4525), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4525), + [anon_sym_BSLASHglsname] = ACTIONS(4525), + [anon_sym_BSLASHGlsname] = ACTIONS(4525), + [anon_sym_BSLASHGLSname] = ACTIONS(4525), + [anon_sym_BSLASHglssymbol] = ACTIONS(4525), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4525), + [anon_sym_BSLASHglsdesc] = ACTIONS(4525), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4525), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4525), + [anon_sym_BSLASHglsuseri] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4525), + [anon_sym_BSLASHglsuserii] = ACTIONS(4525), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4525), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4525), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4525), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4525), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4525), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4525), + [anon_sym_BSLASHglsuserv] = ACTIONS(4525), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4525), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4525), + [anon_sym_BSLASHglsuservi] = ACTIONS(4525), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4525), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4525), + [anon_sym_BSLASHnewacronym] = ACTIONS(4525), + [anon_sym_BSLASHacrshort] = ACTIONS(4525), + [anon_sym_BSLASHAcrshort] = ACTIONS(4525), + [anon_sym_BSLASHACRshort] = ACTIONS(4525), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4525), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4525), + [anon_sym_BSLASHacrlong] = ACTIONS(4525), + [anon_sym_BSLASHAcrlong] = ACTIONS(4525), + [anon_sym_BSLASHACRlong] = ACTIONS(4525), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4525), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4525), + [anon_sym_BSLASHacrfull] = ACTIONS(4525), + [anon_sym_BSLASHAcrfull] = ACTIONS(4525), + [anon_sym_BSLASHACRfull] = ACTIONS(4525), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4525), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4525), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4525), + [anon_sym_BSLASHacs] = ACTIONS(4525), + [anon_sym_BSLASHAcs] = ACTIONS(4525), + [anon_sym_BSLASHacsp] = ACTIONS(4525), + [anon_sym_BSLASHAcsp] = ACTIONS(4525), + [anon_sym_BSLASHacl] = ACTIONS(4525), + [anon_sym_BSLASHAcl] = ACTIONS(4525), + [anon_sym_BSLASHaclp] = ACTIONS(4525), + [anon_sym_BSLASHAclp] = ACTIONS(4525), + [anon_sym_BSLASHacf] = ACTIONS(4525), + [anon_sym_BSLASHAcf] = ACTIONS(4525), + [anon_sym_BSLASHacfp] = ACTIONS(4525), + [anon_sym_BSLASHAcfp] = ACTIONS(4525), + [anon_sym_BSLASHac] = ACTIONS(4525), + [anon_sym_BSLASHAc] = ACTIONS(4525), + [anon_sym_BSLASHacp] = ACTIONS(4525), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4525), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4525), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4525), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4525), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4525), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4525), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4525), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4525), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4525), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4525), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4525), + [anon_sym_BSLASHcolor] = ACTIONS(4525), + [anon_sym_BSLASHcolorbox] = ACTIONS(4525), + [anon_sym_BSLASHtextcolor] = ACTIONS(4525), + [anon_sym_BSLASHpagecolor] = ACTIONS(4525), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4525), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4525), + [anon_sym_BSLASHtext] = ACTIONS(4525), + [anon_sym_BSLASHintertext] = ACTIONS(4525), + [anon_sym_shortintertext] = ACTIONS(4525), + }, + [634] = { + [sym__paragraph_declaration] = STATE(178), + [sym_paragraph] = STATE(634), + [aux_sym__section_repeat6] = STATE(634), + [sym_command_name] = ACTIONS(4515), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4515), + [anon_sym_LPAREN] = ACTIONS(4513), + [anon_sym_RPAREN] = ACTIONS(4513), + [anon_sym_LBRACK] = ACTIONS(4513), + [anon_sym_RBRACK] = ACTIONS(4513), + [anon_sym_COMMA] = ACTIONS(4513), + [anon_sym_EQ] = ACTIONS(4513), + [anon_sym_BSLASHpart] = ACTIONS(4515), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddpart] = ACTIONS(4515), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4513), + [anon_sym_BSLASHchapter] = ACTIONS(4515), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddchap] = ACTIONS(4515), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsection] = ACTIONS(4515), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHaddsec] = ACTIONS(4515), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsubsection] = ACTIONS(4515), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4515), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4513), + [anon_sym_BSLASHparagraph] = ACTIONS(4797), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4800), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4515), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4513), + [anon_sym_BSLASHitem] = ACTIONS(4515), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4513), + [anon_sym_LBRACE] = ACTIONS(4513), + [sym_word] = ACTIONS(4515), + [sym_placeholder] = ACTIONS(4513), + [anon_sym_PLUS] = ACTIONS(4515), + [anon_sym_DASH] = ACTIONS(4515), + [anon_sym_STAR] = ACTIONS(4515), + [anon_sym_SLASH] = ACTIONS(4515), + [anon_sym_CARET] = ACTIONS(4515), + [anon_sym__] = ACTIONS(4515), + [anon_sym_LT] = ACTIONS(4515), + [anon_sym_GT] = ACTIONS(4515), + [anon_sym_BANG] = ACTIONS(4515), + [anon_sym_PIPE] = ACTIONS(4515), + [anon_sym_COLON] = ACTIONS(4515), + [anon_sym_SQUOTE] = ACTIONS(4515), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4513), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4513), + [anon_sym_DOLLAR] = ACTIONS(4515), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4513), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4513), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4513), + [anon_sym_BSLASHbegin] = ACTIONS(4515), + [anon_sym_BSLASHusepackage] = ACTIONS(4515), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4515), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4515), + [anon_sym_BSLASHinclude] = ACTIONS(4515), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4515), + [anon_sym_BSLASHinput] = ACTIONS(4515), + [anon_sym_BSLASHsubfile] = ACTIONS(4515), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4515), + [anon_sym_BSLASHbibliography] = ACTIONS(4515), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4515), + [anon_sym_BSLASHincludesvg] = ACTIONS(4515), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4515), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4515), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4515), + [anon_sym_BSLASHimport] = ACTIONS(4515), + [anon_sym_BSLASHsubimport] = ACTIONS(4515), + [anon_sym_BSLASHinputfrom] = ACTIONS(4515), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4515), + [anon_sym_BSLASHincludefrom] = ACTIONS(4515), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4515), + [anon_sym_BSLASHcaption] = ACTIONS(4515), + [anon_sym_BSLASHcite] = ACTIONS(4515), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCite] = ACTIONS(4515), + [anon_sym_BSLASHnocite] = ACTIONS(4515), + [anon_sym_BSLASHcitet] = ACTIONS(4515), + [anon_sym_BSLASHcitep] = ACTIONS(4515), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteauthor] = ACTIONS(4515), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4515), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitetitle] = ACTIONS(4515), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteyear] = ACTIONS(4515), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4513), + [anon_sym_BSLASHcitedate] = ACTIONS(4515), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4513), + [anon_sym_BSLASHciteurl] = ACTIONS(4515), + [anon_sym_BSLASHfullcite] = ACTIONS(4515), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4515), + [anon_sym_BSLASHcitealt] = ACTIONS(4515), + [anon_sym_BSLASHcitealp] = ACTIONS(4515), + [anon_sym_BSLASHcitetext] = ACTIONS(4515), + [anon_sym_BSLASHparencite] = ACTIONS(4515), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHParencite] = ACTIONS(4515), + [anon_sym_BSLASHfootcite] = ACTIONS(4515), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4515), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4515), + [anon_sym_BSLASHtextcite] = ACTIONS(4515), + [anon_sym_BSLASHTextcite] = ACTIONS(4515), + [anon_sym_BSLASHsmartcite] = ACTIONS(4515), + [anon_sym_BSLASHSmartcite] = ACTIONS(4515), + [anon_sym_BSLASHsupercite] = ACTIONS(4515), + [anon_sym_BSLASHautocite] = ACTIONS(4515), + [anon_sym_BSLASHAutocite] = ACTIONS(4515), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4513), + [anon_sym_BSLASHvolcite] = ACTIONS(4515), + [anon_sym_BSLASHVolcite] = ACTIONS(4515), + [anon_sym_BSLASHpvolcite] = ACTIONS(4515), + [anon_sym_BSLASHPvolcite] = ACTIONS(4515), + [anon_sym_BSLASHfvolcite] = ACTIONS(4515), + [anon_sym_BSLASHftvolcite] = ACTIONS(4515), + [anon_sym_BSLASHsvolcite] = ACTIONS(4515), + [anon_sym_BSLASHSvolcite] = ACTIONS(4515), + [anon_sym_BSLASHtvolcite] = ACTIONS(4515), + [anon_sym_BSLASHTvolcite] = ACTIONS(4515), + [anon_sym_BSLASHavolcite] = ACTIONS(4515), + [anon_sym_BSLASHAvolcite] = ACTIONS(4515), + [anon_sym_BSLASHnotecite] = ACTIONS(4515), + [anon_sym_BSLASHNotecite] = ACTIONS(4515), + [anon_sym_BSLASHpnotecite] = ACTIONS(4515), + [anon_sym_BSLASHPnotecite] = ACTIONS(4515), + [anon_sym_BSLASHfnotecite] = ACTIONS(4515), + [anon_sym_BSLASHlabel] = ACTIONS(4515), + [anon_sym_BSLASHref] = ACTIONS(4515), + [anon_sym_BSLASHeqref] = ACTIONS(4515), + [anon_sym_BSLASHvref] = ACTIONS(4515), + [anon_sym_BSLASHVref] = ACTIONS(4515), + [anon_sym_BSLASHautoref] = ACTIONS(4515), + [anon_sym_BSLASHpageref] = ACTIONS(4515), + [anon_sym_BSLASHcref] = ACTIONS(4515), + [anon_sym_BSLASHCref] = ACTIONS(4515), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4513), + [anon_sym_BSLASHnamecref] = ACTIONS(4515), + [anon_sym_BSLASHnameCref] = ACTIONS(4515), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4515), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4515), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4515), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4515), + [anon_sym_BSLASHlabelcref] = ACTIONS(4515), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4515), + [anon_sym_BSLASHcrefrange] = ACTIONS(4515), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4513), + [anon_sym_BSLASHCrefrange] = ACTIONS(4515), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4513), + [anon_sym_BSLASHnewlabel] = ACTIONS(4515), + [anon_sym_BSLASHnewcommand] = ACTIONS(4515), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4515), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4515), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4513), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4515), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4513), + [anon_sym_BSLASHdef] = ACTIONS(4515), + [anon_sym_BSLASHlet] = ACTIONS(4515), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4515), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4515), + [anon_sym_BSLASHgls] = ACTIONS(4515), + [anon_sym_BSLASHGls] = ACTIONS(4515), + [anon_sym_BSLASHGLS] = ACTIONS(4515), + [anon_sym_BSLASHglspl] = ACTIONS(4515), + [anon_sym_BSLASHGlspl] = ACTIONS(4515), + [anon_sym_BSLASHGLSpl] = ACTIONS(4515), + [anon_sym_BSLASHglsdisp] = ACTIONS(4515), + [anon_sym_BSLASHglslink] = ACTIONS(4515), + [anon_sym_BSLASHglstext] = ACTIONS(4515), + [anon_sym_BSLASHGlstext] = ACTIONS(4515), + [anon_sym_BSLASHGLStext] = ACTIONS(4515), + [anon_sym_BSLASHglsfirst] = ACTIONS(4515), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4515), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4515), + [anon_sym_BSLASHglsplural] = ACTIONS(4515), + [anon_sym_BSLASHGlsplural] = ACTIONS(4515), + [anon_sym_BSLASHGLSplural] = ACTIONS(4515), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4515), + [anon_sym_BSLASHglsname] = ACTIONS(4515), + [anon_sym_BSLASHGlsname] = ACTIONS(4515), + [anon_sym_BSLASHGLSname] = ACTIONS(4515), + [anon_sym_BSLASHglssymbol] = ACTIONS(4515), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4515), + [anon_sym_BSLASHglsdesc] = ACTIONS(4515), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4515), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4515), + [anon_sym_BSLASHglsuseri] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4515), + [anon_sym_BSLASHglsuserii] = ACTIONS(4515), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4515), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4515), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4515), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4515), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4515), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4515), + [anon_sym_BSLASHglsuserv] = ACTIONS(4515), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4515), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4515), + [anon_sym_BSLASHglsuservi] = ACTIONS(4515), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4515), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4515), + [anon_sym_BSLASHnewacronym] = ACTIONS(4515), + [anon_sym_BSLASHacrshort] = ACTIONS(4515), + [anon_sym_BSLASHAcrshort] = ACTIONS(4515), + [anon_sym_BSLASHACRshort] = ACTIONS(4515), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4515), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4515), + [anon_sym_BSLASHacrlong] = ACTIONS(4515), + [anon_sym_BSLASHAcrlong] = ACTIONS(4515), + [anon_sym_BSLASHACRlong] = ACTIONS(4515), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4515), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4515), + [anon_sym_BSLASHacrfull] = ACTIONS(4515), + [anon_sym_BSLASHAcrfull] = ACTIONS(4515), + [anon_sym_BSLASHACRfull] = ACTIONS(4515), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4515), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4515), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4515), + [anon_sym_BSLASHacs] = ACTIONS(4515), + [anon_sym_BSLASHAcs] = ACTIONS(4515), + [anon_sym_BSLASHacsp] = ACTIONS(4515), + [anon_sym_BSLASHAcsp] = ACTIONS(4515), + [anon_sym_BSLASHacl] = ACTIONS(4515), + [anon_sym_BSLASHAcl] = ACTIONS(4515), + [anon_sym_BSLASHaclp] = ACTIONS(4515), + [anon_sym_BSLASHAclp] = ACTIONS(4515), + [anon_sym_BSLASHacf] = ACTIONS(4515), + [anon_sym_BSLASHAcf] = ACTIONS(4515), + [anon_sym_BSLASHacfp] = ACTIONS(4515), + [anon_sym_BSLASHAcfp] = ACTIONS(4515), + [anon_sym_BSLASHac] = ACTIONS(4515), + [anon_sym_BSLASHAc] = ACTIONS(4515), + [anon_sym_BSLASHacp] = ACTIONS(4515), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4515), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4515), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4515), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4515), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4515), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4515), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4515), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4515), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4515), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4515), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4515), + [anon_sym_BSLASHcolor] = ACTIONS(4515), + [anon_sym_BSLASHcolorbox] = ACTIONS(4515), + [anon_sym_BSLASHtextcolor] = ACTIONS(4515), + [anon_sym_BSLASHpagecolor] = ACTIONS(4515), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4515), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4515), + [anon_sym_BSLASHtext] = ACTIONS(4515), + [anon_sym_BSLASHintertext] = ACTIONS(4515), + [anon_sym_shortintertext] = ACTIONS(4515), + }, + [635] = { + [sym__subparagraph_declaration] = STATE(188), + [sym_subparagraph] = STATE(635), + [aux_sym__section_repeat7] = STATE(635), + [sym_command_name] = ACTIONS(4505), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4505), + [anon_sym_LPAREN] = ACTIONS(4503), + [anon_sym_RPAREN] = ACTIONS(4503), + [anon_sym_LBRACK] = ACTIONS(4503), + [anon_sym_RBRACK] = ACTIONS(4503), + [anon_sym_COMMA] = ACTIONS(4503), + [anon_sym_EQ] = ACTIONS(4503), + [anon_sym_BSLASHpart] = ACTIONS(4505), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddpart] = ACTIONS(4505), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4503), + [anon_sym_BSLASHchapter] = ACTIONS(4505), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddchap] = ACTIONS(4505), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsection] = ACTIONS(4505), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHaddsec] = ACTIONS(4505), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubsection] = ACTIONS(4505), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4505), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4503), + [anon_sym_BSLASHparagraph] = ACTIONS(4505), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4503), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4803), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4806), + [anon_sym_BSLASHitem] = ACTIONS(4505), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4503), + [anon_sym_LBRACE] = ACTIONS(4503), + [sym_word] = ACTIONS(4505), + [sym_placeholder] = ACTIONS(4503), + [anon_sym_PLUS] = ACTIONS(4505), + [anon_sym_DASH] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_SLASH] = ACTIONS(4505), + [anon_sym_CARET] = ACTIONS(4505), + [anon_sym__] = ACTIONS(4505), + [anon_sym_LT] = ACTIONS(4505), + [anon_sym_GT] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_PIPE] = ACTIONS(4505), + [anon_sym_COLON] = ACTIONS(4505), + [anon_sym_SQUOTE] = ACTIONS(4505), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4503), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4503), + [anon_sym_DOLLAR] = ACTIONS(4505), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4503), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4503), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4503), + [anon_sym_BSLASHbegin] = ACTIONS(4505), + [anon_sym_BSLASHusepackage] = ACTIONS(4505), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4505), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4505), + [anon_sym_BSLASHinclude] = ACTIONS(4505), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4505), + [anon_sym_BSLASHinput] = ACTIONS(4505), + [anon_sym_BSLASHsubfile] = ACTIONS(4505), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4505), + [anon_sym_BSLASHbibliography] = ACTIONS(4505), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4505), + [anon_sym_BSLASHincludesvg] = ACTIONS(4505), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4505), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4505), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4505), + [anon_sym_BSLASHimport] = ACTIONS(4505), + [anon_sym_BSLASHsubimport] = ACTIONS(4505), + [anon_sym_BSLASHinputfrom] = ACTIONS(4505), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4505), + [anon_sym_BSLASHincludefrom] = ACTIONS(4505), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4505), + [anon_sym_BSLASHcaption] = ACTIONS(4505), + [anon_sym_BSLASHcite] = ACTIONS(4505), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCite] = ACTIONS(4505), + [anon_sym_BSLASHnocite] = ACTIONS(4505), + [anon_sym_BSLASHcitet] = ACTIONS(4505), + [anon_sym_BSLASHcitep] = ACTIONS(4505), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteauthor] = ACTIONS(4505), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4505), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitetitle] = ACTIONS(4505), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteyear] = ACTIONS(4505), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4503), + [anon_sym_BSLASHcitedate] = ACTIONS(4505), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4503), + [anon_sym_BSLASHciteurl] = ACTIONS(4505), + [anon_sym_BSLASHfullcite] = ACTIONS(4505), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4505), + [anon_sym_BSLASHcitealt] = ACTIONS(4505), + [anon_sym_BSLASHcitealp] = ACTIONS(4505), + [anon_sym_BSLASHcitetext] = ACTIONS(4505), + [anon_sym_BSLASHparencite] = ACTIONS(4505), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHParencite] = ACTIONS(4505), + [anon_sym_BSLASHfootcite] = ACTIONS(4505), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4505), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4505), + [anon_sym_BSLASHtextcite] = ACTIONS(4505), + [anon_sym_BSLASHTextcite] = ACTIONS(4505), + [anon_sym_BSLASHsmartcite] = ACTIONS(4505), + [anon_sym_BSLASHSmartcite] = ACTIONS(4505), + [anon_sym_BSLASHsupercite] = ACTIONS(4505), + [anon_sym_BSLASHautocite] = ACTIONS(4505), + [anon_sym_BSLASHAutocite] = ACTIONS(4505), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4503), + [anon_sym_BSLASHvolcite] = ACTIONS(4505), + [anon_sym_BSLASHVolcite] = ACTIONS(4505), + [anon_sym_BSLASHpvolcite] = ACTIONS(4505), + [anon_sym_BSLASHPvolcite] = ACTIONS(4505), + [anon_sym_BSLASHfvolcite] = ACTIONS(4505), + [anon_sym_BSLASHftvolcite] = ACTIONS(4505), + [anon_sym_BSLASHsvolcite] = ACTIONS(4505), + [anon_sym_BSLASHSvolcite] = ACTIONS(4505), + [anon_sym_BSLASHtvolcite] = ACTIONS(4505), + [anon_sym_BSLASHTvolcite] = ACTIONS(4505), + [anon_sym_BSLASHavolcite] = ACTIONS(4505), + [anon_sym_BSLASHAvolcite] = ACTIONS(4505), + [anon_sym_BSLASHnotecite] = ACTIONS(4505), + [anon_sym_BSLASHNotecite] = ACTIONS(4505), + [anon_sym_BSLASHpnotecite] = ACTIONS(4505), + [anon_sym_BSLASHPnotecite] = ACTIONS(4505), + [anon_sym_BSLASHfnotecite] = ACTIONS(4505), + [anon_sym_BSLASHlabel] = ACTIONS(4505), + [anon_sym_BSLASHref] = ACTIONS(4505), + [anon_sym_BSLASHeqref] = ACTIONS(4505), + [anon_sym_BSLASHvref] = ACTIONS(4505), + [anon_sym_BSLASHVref] = ACTIONS(4505), + [anon_sym_BSLASHautoref] = ACTIONS(4505), + [anon_sym_BSLASHpageref] = ACTIONS(4505), + [anon_sym_BSLASHcref] = ACTIONS(4505), + [anon_sym_BSLASHCref] = ACTIONS(4505), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4503), + [anon_sym_BSLASHnamecref] = ACTIONS(4505), + [anon_sym_BSLASHnameCref] = ACTIONS(4505), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4505), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4505), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4505), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4505), + [anon_sym_BSLASHlabelcref] = ACTIONS(4505), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4505), + [anon_sym_BSLASHcrefrange] = ACTIONS(4505), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4503), + [anon_sym_BSLASHCrefrange] = ACTIONS(4505), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4503), + [anon_sym_BSLASHnewlabel] = ACTIONS(4505), + [anon_sym_BSLASHnewcommand] = ACTIONS(4505), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4505), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4505), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4503), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4505), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4503), + [anon_sym_BSLASHdef] = ACTIONS(4505), + [anon_sym_BSLASHlet] = ACTIONS(4505), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4505), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4505), + [anon_sym_BSLASHgls] = ACTIONS(4505), + [anon_sym_BSLASHGls] = ACTIONS(4505), + [anon_sym_BSLASHGLS] = ACTIONS(4505), + [anon_sym_BSLASHglspl] = ACTIONS(4505), + [anon_sym_BSLASHGlspl] = ACTIONS(4505), + [anon_sym_BSLASHGLSpl] = ACTIONS(4505), + [anon_sym_BSLASHglsdisp] = ACTIONS(4505), + [anon_sym_BSLASHglslink] = ACTIONS(4505), + [anon_sym_BSLASHglstext] = ACTIONS(4505), + [anon_sym_BSLASHGlstext] = ACTIONS(4505), + [anon_sym_BSLASHGLStext] = ACTIONS(4505), + [anon_sym_BSLASHglsfirst] = ACTIONS(4505), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4505), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4505), + [anon_sym_BSLASHglsplural] = ACTIONS(4505), + [anon_sym_BSLASHGlsplural] = ACTIONS(4505), + [anon_sym_BSLASHGLSplural] = ACTIONS(4505), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4505), + [anon_sym_BSLASHglsname] = ACTIONS(4505), + [anon_sym_BSLASHGlsname] = ACTIONS(4505), + [anon_sym_BSLASHGLSname] = ACTIONS(4505), + [anon_sym_BSLASHglssymbol] = ACTIONS(4505), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4505), + [anon_sym_BSLASHglsdesc] = ACTIONS(4505), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4505), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4505), + [anon_sym_BSLASHglsuseri] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4505), + [anon_sym_BSLASHglsuserii] = ACTIONS(4505), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4505), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4505), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4505), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4505), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4505), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4505), + [anon_sym_BSLASHglsuserv] = ACTIONS(4505), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4505), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4505), + [anon_sym_BSLASHglsuservi] = ACTIONS(4505), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4505), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4505), + [anon_sym_BSLASHnewacronym] = ACTIONS(4505), + [anon_sym_BSLASHacrshort] = ACTIONS(4505), + [anon_sym_BSLASHAcrshort] = ACTIONS(4505), + [anon_sym_BSLASHACRshort] = ACTIONS(4505), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4505), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4505), + [anon_sym_BSLASHacrlong] = ACTIONS(4505), + [anon_sym_BSLASHAcrlong] = ACTIONS(4505), + [anon_sym_BSLASHACRlong] = ACTIONS(4505), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4505), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4505), + [anon_sym_BSLASHacrfull] = ACTIONS(4505), + [anon_sym_BSLASHAcrfull] = ACTIONS(4505), + [anon_sym_BSLASHACRfull] = ACTIONS(4505), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4505), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4505), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4505), + [anon_sym_BSLASHacs] = ACTIONS(4505), + [anon_sym_BSLASHAcs] = ACTIONS(4505), + [anon_sym_BSLASHacsp] = ACTIONS(4505), + [anon_sym_BSLASHAcsp] = ACTIONS(4505), + [anon_sym_BSLASHacl] = ACTIONS(4505), + [anon_sym_BSLASHAcl] = ACTIONS(4505), + [anon_sym_BSLASHaclp] = ACTIONS(4505), + [anon_sym_BSLASHAclp] = ACTIONS(4505), + [anon_sym_BSLASHacf] = ACTIONS(4505), + [anon_sym_BSLASHAcf] = ACTIONS(4505), + [anon_sym_BSLASHacfp] = ACTIONS(4505), + [anon_sym_BSLASHAcfp] = ACTIONS(4505), + [anon_sym_BSLASHac] = ACTIONS(4505), + [anon_sym_BSLASHAc] = ACTIONS(4505), + [anon_sym_BSLASHacp] = ACTIONS(4505), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4505), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4505), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4505), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4505), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4505), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4505), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4505), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4505), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4505), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4505), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4505), + [anon_sym_BSLASHcolor] = ACTIONS(4505), + [anon_sym_BSLASHcolorbox] = ACTIONS(4505), + [anon_sym_BSLASHtextcolor] = ACTIONS(4505), + [anon_sym_BSLASHpagecolor] = ACTIONS(4505), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4505), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4505), + [anon_sym_BSLASHtext] = ACTIONS(4505), + [anon_sym_BSLASHintertext] = ACTIONS(4505), + [anon_sym_shortintertext] = ACTIONS(4505), + }, + [636] = { + [sym__enum_itemdeclaration] = STATE(203), + [sym_enum_item] = STATE(636), + [aux_sym__section_repeat8] = STATE(636), + [sym_command_name] = ACTIONS(4495), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4495), + [anon_sym_LPAREN] = ACTIONS(4493), + [anon_sym_RPAREN] = ACTIONS(4493), + [anon_sym_LBRACK] = ACTIONS(4493), + [anon_sym_RBRACK] = ACTIONS(4493), + [anon_sym_COMMA] = ACTIONS(4493), + [anon_sym_EQ] = ACTIONS(4493), + [anon_sym_BSLASHpart] = ACTIONS(4495), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddpart] = ACTIONS(4495), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4493), + [anon_sym_BSLASHchapter] = ACTIONS(4495), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddchap] = ACTIONS(4495), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsection] = ACTIONS(4495), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHaddsec] = ACTIONS(4495), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubsection] = ACTIONS(4495), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4495), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4493), + [anon_sym_BSLASHparagraph] = ACTIONS(4495), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4493), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4495), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4493), + [anon_sym_BSLASHitem] = ACTIONS(4809), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4812), + [anon_sym_LBRACE] = ACTIONS(4493), + [sym_word] = ACTIONS(4495), + [sym_placeholder] = ACTIONS(4493), + [anon_sym_PLUS] = ACTIONS(4495), + [anon_sym_DASH] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4495), + [anon_sym_SLASH] = ACTIONS(4495), + [anon_sym_CARET] = ACTIONS(4495), + [anon_sym__] = ACTIONS(4495), + [anon_sym_LT] = ACTIONS(4495), + [anon_sym_GT] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_PIPE] = ACTIONS(4495), + [anon_sym_COLON] = ACTIONS(4495), + [anon_sym_SQUOTE] = ACTIONS(4495), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4493), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4493), + [anon_sym_DOLLAR] = ACTIONS(4495), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4493), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4493), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4493), + [anon_sym_BSLASHbegin] = ACTIONS(4495), + [anon_sym_BSLASHusepackage] = ACTIONS(4495), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4495), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4495), + [anon_sym_BSLASHinclude] = ACTIONS(4495), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4495), + [anon_sym_BSLASHinput] = ACTIONS(4495), + [anon_sym_BSLASHsubfile] = ACTIONS(4495), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4495), + [anon_sym_BSLASHbibliography] = ACTIONS(4495), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4495), + [anon_sym_BSLASHincludesvg] = ACTIONS(4495), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4495), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4495), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4495), + [anon_sym_BSLASHimport] = ACTIONS(4495), + [anon_sym_BSLASHsubimport] = ACTIONS(4495), + [anon_sym_BSLASHinputfrom] = ACTIONS(4495), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4495), + [anon_sym_BSLASHincludefrom] = ACTIONS(4495), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4495), + [anon_sym_BSLASHcaption] = ACTIONS(4495), + [anon_sym_BSLASHcite] = ACTIONS(4495), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCite] = ACTIONS(4495), + [anon_sym_BSLASHnocite] = ACTIONS(4495), + [anon_sym_BSLASHcitet] = ACTIONS(4495), + [anon_sym_BSLASHcitep] = ACTIONS(4495), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteauthor] = ACTIONS(4495), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4495), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitetitle] = ACTIONS(4495), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteyear] = ACTIONS(4495), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4493), + [anon_sym_BSLASHcitedate] = ACTIONS(4495), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4493), + [anon_sym_BSLASHciteurl] = ACTIONS(4495), + [anon_sym_BSLASHfullcite] = ACTIONS(4495), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4495), + [anon_sym_BSLASHcitealt] = ACTIONS(4495), + [anon_sym_BSLASHcitealp] = ACTIONS(4495), + [anon_sym_BSLASHcitetext] = ACTIONS(4495), + [anon_sym_BSLASHparencite] = ACTIONS(4495), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHParencite] = ACTIONS(4495), + [anon_sym_BSLASHfootcite] = ACTIONS(4495), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4495), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4495), + [anon_sym_BSLASHtextcite] = ACTIONS(4495), + [anon_sym_BSLASHTextcite] = ACTIONS(4495), + [anon_sym_BSLASHsmartcite] = ACTIONS(4495), + [anon_sym_BSLASHSmartcite] = ACTIONS(4495), + [anon_sym_BSLASHsupercite] = ACTIONS(4495), + [anon_sym_BSLASHautocite] = ACTIONS(4495), + [anon_sym_BSLASHAutocite] = ACTIONS(4495), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4493), + [anon_sym_BSLASHvolcite] = ACTIONS(4495), + [anon_sym_BSLASHVolcite] = ACTIONS(4495), + [anon_sym_BSLASHpvolcite] = ACTIONS(4495), + [anon_sym_BSLASHPvolcite] = ACTIONS(4495), + [anon_sym_BSLASHfvolcite] = ACTIONS(4495), + [anon_sym_BSLASHftvolcite] = ACTIONS(4495), + [anon_sym_BSLASHsvolcite] = ACTIONS(4495), + [anon_sym_BSLASHSvolcite] = ACTIONS(4495), + [anon_sym_BSLASHtvolcite] = ACTIONS(4495), + [anon_sym_BSLASHTvolcite] = ACTIONS(4495), + [anon_sym_BSLASHavolcite] = ACTIONS(4495), + [anon_sym_BSLASHAvolcite] = ACTIONS(4495), + [anon_sym_BSLASHnotecite] = ACTIONS(4495), + [anon_sym_BSLASHNotecite] = ACTIONS(4495), + [anon_sym_BSLASHpnotecite] = ACTIONS(4495), + [anon_sym_BSLASHPnotecite] = ACTIONS(4495), + [anon_sym_BSLASHfnotecite] = ACTIONS(4495), + [anon_sym_BSLASHlabel] = ACTIONS(4495), + [anon_sym_BSLASHref] = ACTIONS(4495), + [anon_sym_BSLASHeqref] = ACTIONS(4495), + [anon_sym_BSLASHvref] = ACTIONS(4495), + [anon_sym_BSLASHVref] = ACTIONS(4495), + [anon_sym_BSLASHautoref] = ACTIONS(4495), + [anon_sym_BSLASHpageref] = ACTIONS(4495), + [anon_sym_BSLASHcref] = ACTIONS(4495), + [anon_sym_BSLASHCref] = ACTIONS(4495), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4493), + [anon_sym_BSLASHnamecref] = ACTIONS(4495), + [anon_sym_BSLASHnameCref] = ACTIONS(4495), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4495), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4495), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4495), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4495), + [anon_sym_BSLASHlabelcref] = ACTIONS(4495), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4495), + [anon_sym_BSLASHcrefrange] = ACTIONS(4495), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4493), + [anon_sym_BSLASHCrefrange] = ACTIONS(4495), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4493), + [anon_sym_BSLASHnewlabel] = ACTIONS(4495), + [anon_sym_BSLASHnewcommand] = ACTIONS(4495), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4495), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4495), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4493), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4495), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4493), + [anon_sym_BSLASHdef] = ACTIONS(4495), + [anon_sym_BSLASHlet] = ACTIONS(4495), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4495), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4495), + [anon_sym_BSLASHgls] = ACTIONS(4495), + [anon_sym_BSLASHGls] = ACTIONS(4495), + [anon_sym_BSLASHGLS] = ACTIONS(4495), + [anon_sym_BSLASHglspl] = ACTIONS(4495), + [anon_sym_BSLASHGlspl] = ACTIONS(4495), + [anon_sym_BSLASHGLSpl] = ACTIONS(4495), + [anon_sym_BSLASHglsdisp] = ACTIONS(4495), + [anon_sym_BSLASHglslink] = ACTIONS(4495), + [anon_sym_BSLASHglstext] = ACTIONS(4495), + [anon_sym_BSLASHGlstext] = ACTIONS(4495), + [anon_sym_BSLASHGLStext] = ACTIONS(4495), + [anon_sym_BSLASHglsfirst] = ACTIONS(4495), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4495), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4495), + [anon_sym_BSLASHglsplural] = ACTIONS(4495), + [anon_sym_BSLASHGlsplural] = ACTIONS(4495), + [anon_sym_BSLASHGLSplural] = ACTIONS(4495), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4495), + [anon_sym_BSLASHglsname] = ACTIONS(4495), + [anon_sym_BSLASHGlsname] = ACTIONS(4495), + [anon_sym_BSLASHGLSname] = ACTIONS(4495), + [anon_sym_BSLASHglssymbol] = ACTIONS(4495), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4495), + [anon_sym_BSLASHglsdesc] = ACTIONS(4495), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4495), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4495), + [anon_sym_BSLASHglsuseri] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4495), + [anon_sym_BSLASHglsuserii] = ACTIONS(4495), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4495), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4495), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4495), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4495), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4495), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4495), + [anon_sym_BSLASHglsuserv] = ACTIONS(4495), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4495), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4495), + [anon_sym_BSLASHglsuservi] = ACTIONS(4495), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4495), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4495), + [anon_sym_BSLASHnewacronym] = ACTIONS(4495), + [anon_sym_BSLASHacrshort] = ACTIONS(4495), + [anon_sym_BSLASHAcrshort] = ACTIONS(4495), + [anon_sym_BSLASHACRshort] = ACTIONS(4495), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4495), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4495), + [anon_sym_BSLASHacrlong] = ACTIONS(4495), + [anon_sym_BSLASHAcrlong] = ACTIONS(4495), + [anon_sym_BSLASHACRlong] = ACTIONS(4495), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4495), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4495), + [anon_sym_BSLASHacrfull] = ACTIONS(4495), + [anon_sym_BSLASHAcrfull] = ACTIONS(4495), + [anon_sym_BSLASHACRfull] = ACTIONS(4495), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4495), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4495), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4495), + [anon_sym_BSLASHacs] = ACTIONS(4495), + [anon_sym_BSLASHAcs] = ACTIONS(4495), + [anon_sym_BSLASHacsp] = ACTIONS(4495), + [anon_sym_BSLASHAcsp] = ACTIONS(4495), + [anon_sym_BSLASHacl] = ACTIONS(4495), + [anon_sym_BSLASHAcl] = ACTIONS(4495), + [anon_sym_BSLASHaclp] = ACTIONS(4495), + [anon_sym_BSLASHAclp] = ACTIONS(4495), + [anon_sym_BSLASHacf] = ACTIONS(4495), + [anon_sym_BSLASHAcf] = ACTIONS(4495), + [anon_sym_BSLASHacfp] = ACTIONS(4495), + [anon_sym_BSLASHAcfp] = ACTIONS(4495), + [anon_sym_BSLASHac] = ACTIONS(4495), + [anon_sym_BSLASHAc] = ACTIONS(4495), + [anon_sym_BSLASHacp] = ACTIONS(4495), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4495), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4495), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4495), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4495), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4495), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4495), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4495), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4495), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4495), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4495), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4495), + [anon_sym_BSLASHcolor] = ACTIONS(4495), + [anon_sym_BSLASHcolorbox] = ACTIONS(4495), + [anon_sym_BSLASHtextcolor] = ACTIONS(4495), + [anon_sym_BSLASHpagecolor] = ACTIONS(4495), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4495), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4495), + [anon_sym_BSLASHtext] = ACTIONS(4495), + [anon_sym_BSLASHintertext] = ACTIONS(4495), + [anon_sym_shortintertext] = ACTIONS(4495), + }, + [637] = { + [sym__enum_itemdeclaration] = STATE(195), + [sym_enum_item] = STATE(441), + [aux_sym__section_repeat8] = STATE(441), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [638] = { + [sym__subparagraph_declaration] = STATE(190), + [sym_subparagraph] = STATE(444), + [aux_sym__section_repeat7] = STATE(444), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(179), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [639] = { + [sym__paragraph_declaration] = STATE(180), + [sym_paragraph] = STATE(448), + [aux_sym__section_repeat6] = STATE(448), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(173), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [640] = { + [sym__subsubsection_declaration] = STATE(170), + [sym_subsubsection] = STATE(449), + [aux_sym__section_repeat5] = STATE(449), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(171), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [641] = { + [sym__subsection_declaration] = STATE(154), + [sym_subsection] = STATE(451), + [aux_sym__section_repeat4] = STATE(451), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [642] = { + [sym_curly_group] = STATE(952), + [sym_mixed_group] = STATE(952), + [aux_sym_generic_command_repeat1] = STATE(618), + [sym_command_name] = ACTIONS(4565), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(4759), + [anon_sym_RPAREN] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(4759), + [anon_sym_RBRACK] = ACTIONS(4563), + [anon_sym_COMMA] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_BSLASHpart] = ACTIONS(4565), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddpart] = ACTIONS(4565), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4563), + [anon_sym_BSLASHchapter] = ACTIONS(4565), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddchap] = ACTIONS(4565), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsection] = ACTIONS(4565), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHaddsec] = ACTIONS(4565), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubsection] = ACTIONS(4565), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4565), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4563), + [anon_sym_BSLASHparagraph] = ACTIONS(4565), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4563), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4565), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4563), + [anon_sym_BSLASHitem] = ACTIONS(4565), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(4565), + [sym_placeholder] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4565), + [anon_sym_DASH] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_SLASH] = ACTIONS(4565), + [anon_sym_CARET] = ACTIONS(4565), + [anon_sym__] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4565), + [anon_sym_GT] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_PIPE] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4565), + [anon_sym_SQUOTE] = ACTIONS(4565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), + [anon_sym_DOLLAR] = ACTIONS(4565), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), + [anon_sym_BSLASHbegin] = ACTIONS(4565), + [anon_sym_BSLASHusepackage] = ACTIONS(4565), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), + [anon_sym_BSLASHinclude] = ACTIONS(4565), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), + [anon_sym_BSLASHinput] = ACTIONS(4565), + [anon_sym_BSLASHsubfile] = ACTIONS(4565), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), + [anon_sym_BSLASHbibliography] = ACTIONS(4565), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), + [anon_sym_BSLASHincludesvg] = ACTIONS(4565), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), + [anon_sym_BSLASHimport] = ACTIONS(4565), + [anon_sym_BSLASHsubimport] = ACTIONS(4565), + [anon_sym_BSLASHinputfrom] = ACTIONS(4565), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), + [anon_sym_BSLASHincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHcaption] = ACTIONS(4565), + [anon_sym_BSLASHcite] = ACTIONS(4565), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCite] = ACTIONS(4565), + [anon_sym_BSLASHnocite] = ACTIONS(4565), + [anon_sym_BSLASHcitet] = ACTIONS(4565), + [anon_sym_BSLASHcitep] = ACTIONS(4565), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteauthor] = ACTIONS(4565), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitetitle] = ACTIONS(4565), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteyear] = ACTIONS(4565), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitedate] = ACTIONS(4565), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteurl] = ACTIONS(4565), + [anon_sym_BSLASHfullcite] = ACTIONS(4565), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), + [anon_sym_BSLASHcitealt] = ACTIONS(4565), + [anon_sym_BSLASHcitealp] = ACTIONS(4565), + [anon_sym_BSLASHcitetext] = ACTIONS(4565), + [anon_sym_BSLASHparencite] = ACTIONS(4565), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHParencite] = ACTIONS(4565), + [anon_sym_BSLASHfootcite] = ACTIONS(4565), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), + [anon_sym_BSLASHtextcite] = ACTIONS(4565), + [anon_sym_BSLASHTextcite] = ACTIONS(4565), + [anon_sym_BSLASHsmartcite] = ACTIONS(4565), + [anon_sym_BSLASHSmartcite] = ACTIONS(4565), + [anon_sym_BSLASHsupercite] = ACTIONS(4565), + [anon_sym_BSLASHautocite] = ACTIONS(4565), + [anon_sym_BSLASHAutocite] = ACTIONS(4565), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHvolcite] = ACTIONS(4565), + [anon_sym_BSLASHVolcite] = ACTIONS(4565), + [anon_sym_BSLASHpvolcite] = ACTIONS(4565), + [anon_sym_BSLASHPvolcite] = ACTIONS(4565), + [anon_sym_BSLASHfvolcite] = ACTIONS(4565), + [anon_sym_BSLASHftvolcite] = ACTIONS(4565), + [anon_sym_BSLASHsvolcite] = ACTIONS(4565), + [anon_sym_BSLASHSvolcite] = ACTIONS(4565), + [anon_sym_BSLASHtvolcite] = ACTIONS(4565), + [anon_sym_BSLASHTvolcite] = ACTIONS(4565), + [anon_sym_BSLASHavolcite] = ACTIONS(4565), + [anon_sym_BSLASHAvolcite] = ACTIONS(4565), + [anon_sym_BSLASHnotecite] = ACTIONS(4565), + [anon_sym_BSLASHNotecite] = ACTIONS(4565), + [anon_sym_BSLASHpnotecite] = ACTIONS(4565), + [anon_sym_BSLASHPnotecite] = ACTIONS(4565), + [anon_sym_BSLASHfnotecite] = ACTIONS(4565), + [anon_sym_BSLASHlabel] = ACTIONS(4565), + [anon_sym_BSLASHref] = ACTIONS(4565), + [anon_sym_BSLASHeqref] = ACTIONS(4565), + [anon_sym_BSLASHvref] = ACTIONS(4565), + [anon_sym_BSLASHVref] = ACTIONS(4565), + [anon_sym_BSLASHautoref] = ACTIONS(4565), + [anon_sym_BSLASHpageref] = ACTIONS(4565), + [anon_sym_BSLASHcref] = ACTIONS(4565), + [anon_sym_BSLASHCref] = ACTIONS(4565), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnameCref] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHlabelcref] = ACTIONS(4565), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCrefrange] = ACTIONS(4565), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnewlabel] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), + [anon_sym_BSLASHdef] = ACTIONS(4565), + [anon_sym_BSLASHlet] = ACTIONS(4565), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), + [anon_sym_BSLASHgls] = ACTIONS(4565), + [anon_sym_BSLASHGls] = ACTIONS(4565), + [anon_sym_BSLASHGLS] = ACTIONS(4565), + [anon_sym_BSLASHglspl] = ACTIONS(4565), + [anon_sym_BSLASHGlspl] = ACTIONS(4565), + [anon_sym_BSLASHGLSpl] = ACTIONS(4565), + [anon_sym_BSLASHglsdisp] = ACTIONS(4565), + [anon_sym_BSLASHglslink] = ACTIONS(4565), + [anon_sym_BSLASHglstext] = ACTIONS(4565), + [anon_sym_BSLASHGlstext] = ACTIONS(4565), + [anon_sym_BSLASHGLStext] = ACTIONS(4565), + [anon_sym_BSLASHglsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), + [anon_sym_BSLASHglsplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSplural] = ACTIONS(4565), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHglsname] = ACTIONS(4565), + [anon_sym_BSLASHGlsname] = ACTIONS(4565), + [anon_sym_BSLASHGLSname] = ACTIONS(4565), + [anon_sym_BSLASHglssymbol] = ACTIONS(4565), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), + [anon_sym_BSLASHglsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), + [anon_sym_BSLASHglsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), + [anon_sym_BSLASHglsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), + [anon_sym_BSLASHglsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), + [anon_sym_BSLASHglsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), + [anon_sym_BSLASHnewacronym] = ACTIONS(4565), + [anon_sym_BSLASHacrshort] = ACTIONS(4565), + [anon_sym_BSLASHAcrshort] = ACTIONS(4565), + [anon_sym_BSLASHACRshort] = ACTIONS(4565), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), + [anon_sym_BSLASHacrlong] = ACTIONS(4565), + [anon_sym_BSLASHAcrlong] = ACTIONS(4565), + [anon_sym_BSLASHACRlong] = ACTIONS(4565), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), + [anon_sym_BSLASHacrfull] = ACTIONS(4565), + [anon_sym_BSLASHAcrfull] = ACTIONS(4565), + [anon_sym_BSLASHACRfull] = ACTIONS(4565), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), + [anon_sym_BSLASHacs] = ACTIONS(4565), + [anon_sym_BSLASHAcs] = ACTIONS(4565), + [anon_sym_BSLASHacsp] = ACTIONS(4565), + [anon_sym_BSLASHAcsp] = ACTIONS(4565), + [anon_sym_BSLASHacl] = ACTIONS(4565), + [anon_sym_BSLASHAcl] = ACTIONS(4565), + [anon_sym_BSLASHaclp] = ACTIONS(4565), + [anon_sym_BSLASHAclp] = ACTIONS(4565), + [anon_sym_BSLASHacf] = ACTIONS(4565), + [anon_sym_BSLASHAcf] = ACTIONS(4565), + [anon_sym_BSLASHacfp] = ACTIONS(4565), + [anon_sym_BSLASHAcfp] = ACTIONS(4565), + [anon_sym_BSLASHac] = ACTIONS(4565), + [anon_sym_BSLASHAc] = ACTIONS(4565), + [anon_sym_BSLASHacp] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), + [anon_sym_BSLASHcolor] = ACTIONS(4565), + [anon_sym_BSLASHcolorbox] = ACTIONS(4565), + [anon_sym_BSLASHtextcolor] = ACTIONS(4565), + [anon_sym_BSLASHpagecolor] = ACTIONS(4565), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), + [anon_sym_BSLASHtext] = ACTIONS(4565), + [anon_sym_BSLASHintertext] = ACTIONS(4565), + [anon_sym_shortintertext] = ACTIONS(4565), + }, + [643] = { + [sym__section_declaration] = STATE(148), + [sym_section] = STATE(456), + [aux_sym__section_repeat3] = STATE(456), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(163), + [anon_sym_BSLASHaddsec] = ACTIONS(161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(163), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [644] = { + [sym_curly_group] = STATE(667), + [sym_brack_group_text] = STATE(2248), + [ts_builtin_sym_end] = ACTIONS(4815), + [sym_command_name] = ACTIONS(4817), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4815), + [anon_sym_COMMA] = ACTIONS(4815), + [anon_sym_EQ] = ACTIONS(4815), + [anon_sym_BSLASHpart] = ACTIONS(4817), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddpart] = ACTIONS(4817), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4815), + [anon_sym_BSLASHchapter] = ACTIONS(4817), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddchap] = ACTIONS(4817), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsection] = ACTIONS(4817), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddsec] = ACTIONS(4817), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubsection] = ACTIONS(4817), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4817), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHparagraph] = ACTIONS(4817), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4817), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4815), + [anon_sym_BSLASHitem] = ACTIONS(4817), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4815), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(4815), + [sym_word] = ACTIONS(4817), + [sym_placeholder] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym__] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_BANG] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_SQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(4817), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), + [anon_sym_BSLASHbegin] = ACTIONS(4817), + [anon_sym_BSLASHusepackage] = ACTIONS(4817), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), + [anon_sym_BSLASHinclude] = ACTIONS(4817), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), + [anon_sym_BSLASHinput] = ACTIONS(4817), + [anon_sym_BSLASHsubfile] = ACTIONS(4817), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), + [anon_sym_BSLASHbibliography] = ACTIONS(4817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), + [anon_sym_BSLASHincludesvg] = ACTIONS(4817), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), + [anon_sym_BSLASHimport] = ACTIONS(4817), + [anon_sym_BSLASHsubimport] = ACTIONS(4817), + [anon_sym_BSLASHinputfrom] = ACTIONS(4817), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), + [anon_sym_BSLASHincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHcaption] = ACTIONS(4817), + [anon_sym_BSLASHcite] = ACTIONS(4817), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCite] = ACTIONS(4817), + [anon_sym_BSLASHnocite] = ACTIONS(4817), + [anon_sym_BSLASHcitet] = ACTIONS(4817), + [anon_sym_BSLASHcitep] = ACTIONS(4817), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteauthor] = ACTIONS(4817), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitetitle] = ACTIONS(4817), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteyear] = ACTIONS(4817), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitedate] = ACTIONS(4817), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteurl] = ACTIONS(4817), + [anon_sym_BSLASHfullcite] = ACTIONS(4817), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), + [anon_sym_BSLASHcitealt] = ACTIONS(4817), + [anon_sym_BSLASHcitealp] = ACTIONS(4817), + [anon_sym_BSLASHcitetext] = ACTIONS(4817), + [anon_sym_BSLASHparencite] = ACTIONS(4817), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHParencite] = ACTIONS(4817), + [anon_sym_BSLASHfootcite] = ACTIONS(4817), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), + [anon_sym_BSLASHtextcite] = ACTIONS(4817), + [anon_sym_BSLASHTextcite] = ACTIONS(4817), + [anon_sym_BSLASHsmartcite] = ACTIONS(4817), + [anon_sym_BSLASHSmartcite] = ACTIONS(4817), + [anon_sym_BSLASHsupercite] = ACTIONS(4817), + [anon_sym_BSLASHautocite] = ACTIONS(4817), + [anon_sym_BSLASHAutocite] = ACTIONS(4817), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHvolcite] = ACTIONS(4817), + [anon_sym_BSLASHVolcite] = ACTIONS(4817), + [anon_sym_BSLASHpvolcite] = ACTIONS(4817), + [anon_sym_BSLASHPvolcite] = ACTIONS(4817), + [anon_sym_BSLASHfvolcite] = ACTIONS(4817), + [anon_sym_BSLASHftvolcite] = ACTIONS(4817), + [anon_sym_BSLASHsvolcite] = ACTIONS(4817), + [anon_sym_BSLASHSvolcite] = ACTIONS(4817), + [anon_sym_BSLASHtvolcite] = ACTIONS(4817), + [anon_sym_BSLASHTvolcite] = ACTIONS(4817), + [anon_sym_BSLASHavolcite] = ACTIONS(4817), + [anon_sym_BSLASHAvolcite] = ACTIONS(4817), + [anon_sym_BSLASHnotecite] = ACTIONS(4817), + [anon_sym_BSLASHNotecite] = ACTIONS(4817), + [anon_sym_BSLASHpnotecite] = ACTIONS(4817), + [anon_sym_BSLASHPnotecite] = ACTIONS(4817), + [anon_sym_BSLASHfnotecite] = ACTIONS(4817), + [anon_sym_BSLASHlabel] = ACTIONS(4817), + [anon_sym_BSLASHref] = ACTIONS(4817), + [anon_sym_BSLASHeqref] = ACTIONS(4817), + [anon_sym_BSLASHvref] = ACTIONS(4817), + [anon_sym_BSLASHVref] = ACTIONS(4817), + [anon_sym_BSLASHautoref] = ACTIONS(4817), + [anon_sym_BSLASHpageref] = ACTIONS(4817), + [anon_sym_BSLASHcref] = ACTIONS(4817), + [anon_sym_BSLASHCref] = ACTIONS(4817), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnameCref] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHlabelcref] = ACTIONS(4817), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCrefrange] = ACTIONS(4817), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnewlabel] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), + [anon_sym_BSLASHdef] = ACTIONS(4817), + [anon_sym_BSLASHlet] = ACTIONS(4817), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), + [anon_sym_BSLASHgls] = ACTIONS(4817), + [anon_sym_BSLASHGls] = ACTIONS(4817), + [anon_sym_BSLASHGLS] = ACTIONS(4817), + [anon_sym_BSLASHglspl] = ACTIONS(4817), + [anon_sym_BSLASHGlspl] = ACTIONS(4817), + [anon_sym_BSLASHGLSpl] = ACTIONS(4817), + [anon_sym_BSLASHglsdisp] = ACTIONS(4817), + [anon_sym_BSLASHglslink] = ACTIONS(4817), + [anon_sym_BSLASHglstext] = ACTIONS(4817), + [anon_sym_BSLASHGlstext] = ACTIONS(4817), + [anon_sym_BSLASHGLStext] = ACTIONS(4817), + [anon_sym_BSLASHglsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), + [anon_sym_BSLASHglsplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSplural] = ACTIONS(4817), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHglsname] = ACTIONS(4817), + [anon_sym_BSLASHGlsname] = ACTIONS(4817), + [anon_sym_BSLASHGLSname] = ACTIONS(4817), + [anon_sym_BSLASHglssymbol] = ACTIONS(4817), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), + [anon_sym_BSLASHglsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), + [anon_sym_BSLASHglsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), + [anon_sym_BSLASHglsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), + [anon_sym_BSLASHglsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), + [anon_sym_BSLASHglsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), + [anon_sym_BSLASHnewacronym] = ACTIONS(4817), + [anon_sym_BSLASHacrshort] = ACTIONS(4817), + [anon_sym_BSLASHAcrshort] = ACTIONS(4817), + [anon_sym_BSLASHACRshort] = ACTIONS(4817), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), + [anon_sym_BSLASHacrlong] = ACTIONS(4817), + [anon_sym_BSLASHAcrlong] = ACTIONS(4817), + [anon_sym_BSLASHACRlong] = ACTIONS(4817), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), + [anon_sym_BSLASHacrfull] = ACTIONS(4817), + [anon_sym_BSLASHAcrfull] = ACTIONS(4817), + [anon_sym_BSLASHACRfull] = ACTIONS(4817), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), + [anon_sym_BSLASHacs] = ACTIONS(4817), + [anon_sym_BSLASHAcs] = ACTIONS(4817), + [anon_sym_BSLASHacsp] = ACTIONS(4817), + [anon_sym_BSLASHAcsp] = ACTIONS(4817), + [anon_sym_BSLASHacl] = ACTIONS(4817), + [anon_sym_BSLASHAcl] = ACTIONS(4817), + [anon_sym_BSLASHaclp] = ACTIONS(4817), + [anon_sym_BSLASHAclp] = ACTIONS(4817), + [anon_sym_BSLASHacf] = ACTIONS(4817), + [anon_sym_BSLASHAcf] = ACTIONS(4817), + [anon_sym_BSLASHacfp] = ACTIONS(4817), + [anon_sym_BSLASHAcfp] = ACTIONS(4817), + [anon_sym_BSLASHac] = ACTIONS(4817), + [anon_sym_BSLASHAc] = ACTIONS(4817), + [anon_sym_BSLASHacp] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), + [anon_sym_BSLASHcolor] = ACTIONS(4817), + [anon_sym_BSLASHcolorbox] = ACTIONS(4817), + [anon_sym_BSLASHtextcolor] = ACTIONS(4817), + [anon_sym_BSLASHpagecolor] = ACTIONS(4817), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), + [anon_sym_BSLASHtext] = ACTIONS(4817), + [anon_sym_BSLASHintertext] = ACTIONS(4817), + [anon_sym_shortintertext] = ACTIONS(4817), + }, + [645] = { + [sym__chapter_declaration] = STATE(139), + [sym_chapter] = STATE(462), + [aux_sym__section_repeat2] = STATE(462), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(4447), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddpart] = ACTIONS(4447), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4445), + [anon_sym_BSLASHchapter] = ACTIONS(157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(159), + [anon_sym_BSLASHaddchap] = ACTIONS(157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(159), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [646] = { + [sym__part_declaration] = STATE(129), + [sym_part] = STATE(469), + [aux_sym__section_repeat1] = STATE(469), + [sym_command_name] = ACTIONS(4447), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4447), + [anon_sym_LPAREN] = ACTIONS(4445), + [anon_sym_RPAREN] = ACTIONS(4445), + [anon_sym_LBRACK] = ACTIONS(4445), + [anon_sym_RBRACK] = ACTIONS(4445), + [anon_sym_COMMA] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(4445), + [anon_sym_BSLASHpart] = ACTIONS(153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHaddpart] = ACTIONS(153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(155), + [anon_sym_BSLASHchapter] = ACTIONS(4447), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddchap] = ACTIONS(4447), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsection] = ACTIONS(4447), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHaddsec] = ACTIONS(4447), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4447), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4445), + [anon_sym_BSLASHparagraph] = ACTIONS(4447), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4447), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4445), + [anon_sym_BSLASHitem] = ACTIONS(4447), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4445), + [anon_sym_LBRACE] = ACTIONS(4445), + [sym_word] = ACTIONS(4447), + [sym_placeholder] = ACTIONS(4445), + [anon_sym_PLUS] = ACTIONS(4447), + [anon_sym_DASH] = ACTIONS(4447), + [anon_sym_STAR] = ACTIONS(4447), + [anon_sym_SLASH] = ACTIONS(4447), + [anon_sym_CARET] = ACTIONS(4447), + [anon_sym__] = ACTIONS(4447), + [anon_sym_LT] = ACTIONS(4447), + [anon_sym_GT] = ACTIONS(4447), + [anon_sym_BANG] = ACTIONS(4447), + [anon_sym_PIPE] = ACTIONS(4447), + [anon_sym_COLON] = ACTIONS(4447), + [anon_sym_SQUOTE] = ACTIONS(4447), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4445), + [anon_sym_DOLLAR] = ACTIONS(4447), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4445), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4445), + [anon_sym_BSLASHbegin] = ACTIONS(4447), + [anon_sym_BSLASHusepackage] = ACTIONS(4447), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4447), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4447), + [anon_sym_BSLASHinclude] = ACTIONS(4447), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4447), + [anon_sym_BSLASHinput] = ACTIONS(4447), + [anon_sym_BSLASHsubfile] = ACTIONS(4447), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4447), + [anon_sym_BSLASHbibliography] = ACTIONS(4447), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4447), + [anon_sym_BSLASHincludesvg] = ACTIONS(4447), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4447), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4447), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4447), + [anon_sym_BSLASHimport] = ACTIONS(4447), + [anon_sym_BSLASHsubimport] = ACTIONS(4447), + [anon_sym_BSLASHinputfrom] = ACTIONS(4447), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4447), + [anon_sym_BSLASHincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4447), + [anon_sym_BSLASHcaption] = ACTIONS(4447), + [anon_sym_BSLASHcite] = ACTIONS(4447), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCite] = ACTIONS(4447), + [anon_sym_BSLASHnocite] = ACTIONS(4447), + [anon_sym_BSLASHcitet] = ACTIONS(4447), + [anon_sym_BSLASHcitep] = ACTIONS(4447), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteauthor] = ACTIONS(4447), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4447), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitetitle] = ACTIONS(4447), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteyear] = ACTIONS(4447), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4445), + [anon_sym_BSLASHcitedate] = ACTIONS(4447), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4445), + [anon_sym_BSLASHciteurl] = ACTIONS(4447), + [anon_sym_BSLASHfullcite] = ACTIONS(4447), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4447), + [anon_sym_BSLASHcitealt] = ACTIONS(4447), + [anon_sym_BSLASHcitealp] = ACTIONS(4447), + [anon_sym_BSLASHcitetext] = ACTIONS(4447), + [anon_sym_BSLASHparencite] = ACTIONS(4447), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHParencite] = ACTIONS(4447), + [anon_sym_BSLASHfootcite] = ACTIONS(4447), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4447), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4447), + [anon_sym_BSLASHtextcite] = ACTIONS(4447), + [anon_sym_BSLASHTextcite] = ACTIONS(4447), + [anon_sym_BSLASHsmartcite] = ACTIONS(4447), + [anon_sym_BSLASHSmartcite] = ACTIONS(4447), + [anon_sym_BSLASHsupercite] = ACTIONS(4447), + [anon_sym_BSLASHautocite] = ACTIONS(4447), + [anon_sym_BSLASHAutocite] = ACTIONS(4447), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4445), + [anon_sym_BSLASHvolcite] = ACTIONS(4447), + [anon_sym_BSLASHVolcite] = ACTIONS(4447), + [anon_sym_BSLASHpvolcite] = ACTIONS(4447), + [anon_sym_BSLASHPvolcite] = ACTIONS(4447), + [anon_sym_BSLASHfvolcite] = ACTIONS(4447), + [anon_sym_BSLASHftvolcite] = ACTIONS(4447), + [anon_sym_BSLASHsvolcite] = ACTIONS(4447), + [anon_sym_BSLASHSvolcite] = ACTIONS(4447), + [anon_sym_BSLASHtvolcite] = ACTIONS(4447), + [anon_sym_BSLASHTvolcite] = ACTIONS(4447), + [anon_sym_BSLASHavolcite] = ACTIONS(4447), + [anon_sym_BSLASHAvolcite] = ACTIONS(4447), + [anon_sym_BSLASHnotecite] = ACTIONS(4447), + [anon_sym_BSLASHNotecite] = ACTIONS(4447), + [anon_sym_BSLASHpnotecite] = ACTIONS(4447), + [anon_sym_BSLASHPnotecite] = ACTIONS(4447), + [anon_sym_BSLASHfnotecite] = ACTIONS(4447), + [anon_sym_BSLASHlabel] = ACTIONS(4447), + [anon_sym_BSLASHref] = ACTIONS(4447), + [anon_sym_BSLASHeqref] = ACTIONS(4447), + [anon_sym_BSLASHvref] = ACTIONS(4447), + [anon_sym_BSLASHVref] = ACTIONS(4447), + [anon_sym_BSLASHautoref] = ACTIONS(4447), + [anon_sym_BSLASHpageref] = ACTIONS(4447), + [anon_sym_BSLASHcref] = ACTIONS(4447), + [anon_sym_BSLASHCref] = ACTIONS(4447), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnameCref] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4447), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4447), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4447), + [anon_sym_BSLASHlabelcref] = ACTIONS(4447), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange] = ACTIONS(4447), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHCrefrange] = ACTIONS(4447), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4445), + [anon_sym_BSLASHnewlabel] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand] = ACTIONS(4447), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4447), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4447), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4445), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4447), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4445), + [anon_sym_BSLASHdef] = ACTIONS(4447), + [anon_sym_BSLASHlet] = ACTIONS(4447), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4447), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4447), + [anon_sym_BSLASHgls] = ACTIONS(4447), + [anon_sym_BSLASHGls] = ACTIONS(4447), + [anon_sym_BSLASHGLS] = ACTIONS(4447), + [anon_sym_BSLASHglspl] = ACTIONS(4447), + [anon_sym_BSLASHGlspl] = ACTIONS(4447), + [anon_sym_BSLASHGLSpl] = ACTIONS(4447), + [anon_sym_BSLASHglsdisp] = ACTIONS(4447), + [anon_sym_BSLASHglslink] = ACTIONS(4447), + [anon_sym_BSLASHglstext] = ACTIONS(4447), + [anon_sym_BSLASHGlstext] = ACTIONS(4447), + [anon_sym_BSLASHGLStext] = ACTIONS(4447), + [anon_sym_BSLASHglsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4447), + [anon_sym_BSLASHglsplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSplural] = ACTIONS(4447), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4447), + [anon_sym_BSLASHglsname] = ACTIONS(4447), + [anon_sym_BSLASHGlsname] = ACTIONS(4447), + [anon_sym_BSLASHGLSname] = ACTIONS(4447), + [anon_sym_BSLASHglssymbol] = ACTIONS(4447), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4447), + [anon_sym_BSLASHglsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4447), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4447), + [anon_sym_BSLASHglsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4447), + [anon_sym_BSLASHglsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4447), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4447), + [anon_sym_BSLASHglsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4447), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4447), + [anon_sym_BSLASHglsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4447), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4447), + [anon_sym_BSLASHnewacronym] = ACTIONS(4447), + [anon_sym_BSLASHacrshort] = ACTIONS(4447), + [anon_sym_BSLASHAcrshort] = ACTIONS(4447), + [anon_sym_BSLASHACRshort] = ACTIONS(4447), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4447), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4447), + [anon_sym_BSLASHacrlong] = ACTIONS(4447), + [anon_sym_BSLASHAcrlong] = ACTIONS(4447), + [anon_sym_BSLASHACRlong] = ACTIONS(4447), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4447), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4447), + [anon_sym_BSLASHacrfull] = ACTIONS(4447), + [anon_sym_BSLASHAcrfull] = ACTIONS(4447), + [anon_sym_BSLASHACRfull] = ACTIONS(4447), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4447), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4447), + [anon_sym_BSLASHacs] = ACTIONS(4447), + [anon_sym_BSLASHAcs] = ACTIONS(4447), + [anon_sym_BSLASHacsp] = ACTIONS(4447), + [anon_sym_BSLASHAcsp] = ACTIONS(4447), + [anon_sym_BSLASHacl] = ACTIONS(4447), + [anon_sym_BSLASHAcl] = ACTIONS(4447), + [anon_sym_BSLASHaclp] = ACTIONS(4447), + [anon_sym_BSLASHAclp] = ACTIONS(4447), + [anon_sym_BSLASHacf] = ACTIONS(4447), + [anon_sym_BSLASHAcf] = ACTIONS(4447), + [anon_sym_BSLASHacfp] = ACTIONS(4447), + [anon_sym_BSLASHAcfp] = ACTIONS(4447), + [anon_sym_BSLASHac] = ACTIONS(4447), + [anon_sym_BSLASHAc] = ACTIONS(4447), + [anon_sym_BSLASHacp] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4447), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4447), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4447), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4447), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4447), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4447), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4447), + [anon_sym_BSLASHcolor] = ACTIONS(4447), + [anon_sym_BSLASHcolorbox] = ACTIONS(4447), + [anon_sym_BSLASHtextcolor] = ACTIONS(4447), + [anon_sym_BSLASHpagecolor] = ACTIONS(4447), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4447), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4447), + [anon_sym_BSLASHtext] = ACTIONS(4447), + [anon_sym_BSLASHintertext] = ACTIONS(4447), + [anon_sym_shortintertext] = ACTIONS(4447), + }, + [647] = { + [sym_curly_group] = STATE(785), + [sym_brack_group_text] = STATE(1965), + [sym_command_name] = ACTIONS(4817), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4815), + [anon_sym_COMMA] = ACTIONS(4815), + [anon_sym_EQ] = ACTIONS(4815), + [anon_sym_BSLASHpart] = ACTIONS(4817), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddpart] = ACTIONS(4817), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4815), + [anon_sym_BSLASHchapter] = ACTIONS(4817), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddchap] = ACTIONS(4817), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsection] = ACTIONS(4817), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddsec] = ACTIONS(4817), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubsection] = ACTIONS(4817), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4817), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHparagraph] = ACTIONS(4817), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4817), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4815), + [anon_sym_BSLASHitem] = ACTIONS(4817), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4815), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(4817), + [sym_placeholder] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym__] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_BANG] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_SQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(4817), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), + [anon_sym_BSLASHbegin] = ACTIONS(4817), + [anon_sym_BSLASHend] = ACTIONS(4817), + [anon_sym_BSLASHusepackage] = ACTIONS(4817), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), + [anon_sym_BSLASHinclude] = ACTIONS(4817), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), + [anon_sym_BSLASHinput] = ACTIONS(4817), + [anon_sym_BSLASHsubfile] = ACTIONS(4817), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), + [anon_sym_BSLASHbibliography] = ACTIONS(4817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), + [anon_sym_BSLASHincludesvg] = ACTIONS(4817), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), + [anon_sym_BSLASHimport] = ACTIONS(4817), + [anon_sym_BSLASHsubimport] = ACTIONS(4817), + [anon_sym_BSLASHinputfrom] = ACTIONS(4817), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), + [anon_sym_BSLASHincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHcaption] = ACTIONS(4817), + [anon_sym_BSLASHcite] = ACTIONS(4817), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCite] = ACTIONS(4817), + [anon_sym_BSLASHnocite] = ACTIONS(4817), + [anon_sym_BSLASHcitet] = ACTIONS(4817), + [anon_sym_BSLASHcitep] = ACTIONS(4817), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteauthor] = ACTIONS(4817), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitetitle] = ACTIONS(4817), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteyear] = ACTIONS(4817), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitedate] = ACTIONS(4817), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteurl] = ACTIONS(4817), + [anon_sym_BSLASHfullcite] = ACTIONS(4817), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), + [anon_sym_BSLASHcitealt] = ACTIONS(4817), + [anon_sym_BSLASHcitealp] = ACTIONS(4817), + [anon_sym_BSLASHcitetext] = ACTIONS(4817), + [anon_sym_BSLASHparencite] = ACTIONS(4817), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHParencite] = ACTIONS(4817), + [anon_sym_BSLASHfootcite] = ACTIONS(4817), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), + [anon_sym_BSLASHtextcite] = ACTIONS(4817), + [anon_sym_BSLASHTextcite] = ACTIONS(4817), + [anon_sym_BSLASHsmartcite] = ACTIONS(4817), + [anon_sym_BSLASHSmartcite] = ACTIONS(4817), + [anon_sym_BSLASHsupercite] = ACTIONS(4817), + [anon_sym_BSLASHautocite] = ACTIONS(4817), + [anon_sym_BSLASHAutocite] = ACTIONS(4817), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHvolcite] = ACTIONS(4817), + [anon_sym_BSLASHVolcite] = ACTIONS(4817), + [anon_sym_BSLASHpvolcite] = ACTIONS(4817), + [anon_sym_BSLASHPvolcite] = ACTIONS(4817), + [anon_sym_BSLASHfvolcite] = ACTIONS(4817), + [anon_sym_BSLASHftvolcite] = ACTIONS(4817), + [anon_sym_BSLASHsvolcite] = ACTIONS(4817), + [anon_sym_BSLASHSvolcite] = ACTIONS(4817), + [anon_sym_BSLASHtvolcite] = ACTIONS(4817), + [anon_sym_BSLASHTvolcite] = ACTIONS(4817), + [anon_sym_BSLASHavolcite] = ACTIONS(4817), + [anon_sym_BSLASHAvolcite] = ACTIONS(4817), + [anon_sym_BSLASHnotecite] = ACTIONS(4817), + [anon_sym_BSLASHNotecite] = ACTIONS(4817), + [anon_sym_BSLASHpnotecite] = ACTIONS(4817), + [anon_sym_BSLASHPnotecite] = ACTIONS(4817), + [anon_sym_BSLASHfnotecite] = ACTIONS(4817), + [anon_sym_BSLASHlabel] = ACTIONS(4817), + [anon_sym_BSLASHref] = ACTIONS(4817), + [anon_sym_BSLASHeqref] = ACTIONS(4817), + [anon_sym_BSLASHvref] = ACTIONS(4817), + [anon_sym_BSLASHVref] = ACTIONS(4817), + [anon_sym_BSLASHautoref] = ACTIONS(4817), + [anon_sym_BSLASHpageref] = ACTIONS(4817), + [anon_sym_BSLASHcref] = ACTIONS(4817), + [anon_sym_BSLASHCref] = ACTIONS(4817), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnameCref] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHlabelcref] = ACTIONS(4817), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCrefrange] = ACTIONS(4817), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnewlabel] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), + [anon_sym_BSLASHdef] = ACTIONS(4817), + [anon_sym_BSLASHlet] = ACTIONS(4817), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), + [anon_sym_BSLASHgls] = ACTIONS(4817), + [anon_sym_BSLASHGls] = ACTIONS(4817), + [anon_sym_BSLASHGLS] = ACTIONS(4817), + [anon_sym_BSLASHglspl] = ACTIONS(4817), + [anon_sym_BSLASHGlspl] = ACTIONS(4817), + [anon_sym_BSLASHGLSpl] = ACTIONS(4817), + [anon_sym_BSLASHglsdisp] = ACTIONS(4817), + [anon_sym_BSLASHglslink] = ACTIONS(4817), + [anon_sym_BSLASHglstext] = ACTIONS(4817), + [anon_sym_BSLASHGlstext] = ACTIONS(4817), + [anon_sym_BSLASHGLStext] = ACTIONS(4817), + [anon_sym_BSLASHglsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), + [anon_sym_BSLASHglsplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSplural] = ACTIONS(4817), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHglsname] = ACTIONS(4817), + [anon_sym_BSLASHGlsname] = ACTIONS(4817), + [anon_sym_BSLASHGLSname] = ACTIONS(4817), + [anon_sym_BSLASHglssymbol] = ACTIONS(4817), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), + [anon_sym_BSLASHglsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), + [anon_sym_BSLASHglsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), + [anon_sym_BSLASHglsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), + [anon_sym_BSLASHglsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), + [anon_sym_BSLASHglsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), + [anon_sym_BSLASHnewacronym] = ACTIONS(4817), + [anon_sym_BSLASHacrshort] = ACTIONS(4817), + [anon_sym_BSLASHAcrshort] = ACTIONS(4817), + [anon_sym_BSLASHACRshort] = ACTIONS(4817), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), + [anon_sym_BSLASHacrlong] = ACTIONS(4817), + [anon_sym_BSLASHAcrlong] = ACTIONS(4817), + [anon_sym_BSLASHACRlong] = ACTIONS(4817), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), + [anon_sym_BSLASHacrfull] = ACTIONS(4817), + [anon_sym_BSLASHAcrfull] = ACTIONS(4817), + [anon_sym_BSLASHACRfull] = ACTIONS(4817), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), + [anon_sym_BSLASHacs] = ACTIONS(4817), + [anon_sym_BSLASHAcs] = ACTIONS(4817), + [anon_sym_BSLASHacsp] = ACTIONS(4817), + [anon_sym_BSLASHAcsp] = ACTIONS(4817), + [anon_sym_BSLASHacl] = ACTIONS(4817), + [anon_sym_BSLASHAcl] = ACTIONS(4817), + [anon_sym_BSLASHaclp] = ACTIONS(4817), + [anon_sym_BSLASHAclp] = ACTIONS(4817), + [anon_sym_BSLASHacf] = ACTIONS(4817), + [anon_sym_BSLASHAcf] = ACTIONS(4817), + [anon_sym_BSLASHacfp] = ACTIONS(4817), + [anon_sym_BSLASHAcfp] = ACTIONS(4817), + [anon_sym_BSLASHac] = ACTIONS(4817), + [anon_sym_BSLASHAc] = ACTIONS(4817), + [anon_sym_BSLASHacp] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), + [anon_sym_BSLASHcolor] = ACTIONS(4817), + [anon_sym_BSLASHcolorbox] = ACTIONS(4817), + [anon_sym_BSLASHtextcolor] = ACTIONS(4817), + [anon_sym_BSLASHpagecolor] = ACTIONS(4817), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), + [anon_sym_BSLASHtext] = ACTIONS(4817), + [anon_sym_BSLASHintertext] = ACTIONS(4817), + [anon_sym_shortintertext] = ACTIONS(4817), + }, + [648] = { + [sym_command_name] = ACTIONS(4753), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4753), + [anon_sym_BSLASHfi] = ACTIONS(4819), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_BSLASHpart] = ACTIONS(4753), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddpart] = ACTIONS(4753), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4751), + [anon_sym_BSLASHchapter] = ACTIONS(4753), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddchap] = ACTIONS(4753), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsection] = ACTIONS(4753), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddsec] = ACTIONS(4753), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubsection] = ACTIONS(4753), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4753), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHparagraph] = ACTIONS(4753), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4753), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4751), + [anon_sym_BSLASHitem] = ACTIONS(4753), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4751), + [sym_word] = ACTIONS(4753), + [sym_placeholder] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_STAR] = ACTIONS(4753), + [anon_sym_SLASH] = ACTIONS(4753), + [anon_sym_CARET] = ACTIONS(4753), + [anon_sym__] = ACTIONS(4753), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_COLON] = ACTIONS(4753), + [anon_sym_SQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4751), + [anon_sym_BSLASHbegin] = ACTIONS(4753), + [anon_sym_BSLASHusepackage] = ACTIONS(4753), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), + [anon_sym_BSLASHinclude] = ACTIONS(4753), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), + [anon_sym_BSLASHinput] = ACTIONS(4753), + [anon_sym_BSLASHsubfile] = ACTIONS(4753), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), + [anon_sym_BSLASHbibliography] = ACTIONS(4753), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), + [anon_sym_BSLASHincludesvg] = ACTIONS(4753), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), + [anon_sym_BSLASHimport] = ACTIONS(4753), + [anon_sym_BSLASHsubimport] = ACTIONS(4753), + [anon_sym_BSLASHinputfrom] = ACTIONS(4753), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), + [anon_sym_BSLASHincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHcaption] = ACTIONS(4753), + [anon_sym_BSLASHcite] = ACTIONS(4753), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCite] = ACTIONS(4753), + [anon_sym_BSLASHnocite] = ACTIONS(4753), + [anon_sym_BSLASHcitet] = ACTIONS(4753), + [anon_sym_BSLASHcitep] = ACTIONS(4753), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteauthor] = ACTIONS(4753), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitetitle] = ACTIONS(4753), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteyear] = ACTIONS(4753), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitedate] = ACTIONS(4753), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteurl] = ACTIONS(4753), + [anon_sym_BSLASHfullcite] = ACTIONS(4753), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), + [anon_sym_BSLASHcitealt] = ACTIONS(4753), + [anon_sym_BSLASHcitealp] = ACTIONS(4753), + [anon_sym_BSLASHcitetext] = ACTIONS(4753), + [anon_sym_BSLASHparencite] = ACTIONS(4753), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHParencite] = ACTIONS(4753), + [anon_sym_BSLASHfootcite] = ACTIONS(4753), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), + [anon_sym_BSLASHtextcite] = ACTIONS(4753), + [anon_sym_BSLASHTextcite] = ACTIONS(4753), + [anon_sym_BSLASHsmartcite] = ACTIONS(4753), + [anon_sym_BSLASHSmartcite] = ACTIONS(4753), + [anon_sym_BSLASHsupercite] = ACTIONS(4753), + [anon_sym_BSLASHautocite] = ACTIONS(4753), + [anon_sym_BSLASHAutocite] = ACTIONS(4753), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHvolcite] = ACTIONS(4753), + [anon_sym_BSLASHVolcite] = ACTIONS(4753), + [anon_sym_BSLASHpvolcite] = ACTIONS(4753), + [anon_sym_BSLASHPvolcite] = ACTIONS(4753), + [anon_sym_BSLASHfvolcite] = ACTIONS(4753), + [anon_sym_BSLASHftvolcite] = ACTIONS(4753), + [anon_sym_BSLASHsvolcite] = ACTIONS(4753), + [anon_sym_BSLASHSvolcite] = ACTIONS(4753), + [anon_sym_BSLASHtvolcite] = ACTIONS(4753), + [anon_sym_BSLASHTvolcite] = ACTIONS(4753), + [anon_sym_BSLASHavolcite] = ACTIONS(4753), + [anon_sym_BSLASHAvolcite] = ACTIONS(4753), + [anon_sym_BSLASHnotecite] = ACTIONS(4753), + [anon_sym_BSLASHNotecite] = ACTIONS(4753), + [anon_sym_BSLASHpnotecite] = ACTIONS(4753), + [anon_sym_BSLASHPnotecite] = ACTIONS(4753), + [anon_sym_BSLASHfnotecite] = ACTIONS(4753), + [anon_sym_BSLASHlabel] = ACTIONS(4753), + [anon_sym_BSLASHref] = ACTIONS(4753), + [anon_sym_BSLASHeqref] = ACTIONS(4753), + [anon_sym_BSLASHvref] = ACTIONS(4753), + [anon_sym_BSLASHVref] = ACTIONS(4753), + [anon_sym_BSLASHautoref] = ACTIONS(4753), + [anon_sym_BSLASHpageref] = ACTIONS(4753), + [anon_sym_BSLASHcref] = ACTIONS(4753), + [anon_sym_BSLASHCref] = ACTIONS(4753), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnameCref] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHlabelcref] = ACTIONS(4753), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCrefrange] = ACTIONS(4753), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnewlabel] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), + [anon_sym_BSLASHdef] = ACTIONS(4753), + [anon_sym_BSLASHlet] = ACTIONS(4753), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), + [anon_sym_BSLASHgls] = ACTIONS(4753), + [anon_sym_BSLASHGls] = ACTIONS(4753), + [anon_sym_BSLASHGLS] = ACTIONS(4753), + [anon_sym_BSLASHglspl] = ACTIONS(4753), + [anon_sym_BSLASHGlspl] = ACTIONS(4753), + [anon_sym_BSLASHGLSpl] = ACTIONS(4753), + [anon_sym_BSLASHglsdisp] = ACTIONS(4753), + [anon_sym_BSLASHglslink] = ACTIONS(4753), + [anon_sym_BSLASHglstext] = ACTIONS(4753), + [anon_sym_BSLASHGlstext] = ACTIONS(4753), + [anon_sym_BSLASHGLStext] = ACTIONS(4753), + [anon_sym_BSLASHglsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), + [anon_sym_BSLASHglsplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSplural] = ACTIONS(4753), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHglsname] = ACTIONS(4753), + [anon_sym_BSLASHGlsname] = ACTIONS(4753), + [anon_sym_BSLASHGLSname] = ACTIONS(4753), + [anon_sym_BSLASHglssymbol] = ACTIONS(4753), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), + [anon_sym_BSLASHglsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), + [anon_sym_BSLASHglsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), + [anon_sym_BSLASHglsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), + [anon_sym_BSLASHglsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), + [anon_sym_BSLASHglsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), + [anon_sym_BSLASHnewacronym] = ACTIONS(4753), + [anon_sym_BSLASHacrshort] = ACTIONS(4753), + [anon_sym_BSLASHAcrshort] = ACTIONS(4753), + [anon_sym_BSLASHACRshort] = ACTIONS(4753), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), + [anon_sym_BSLASHacrlong] = ACTIONS(4753), + [anon_sym_BSLASHAcrlong] = ACTIONS(4753), + [anon_sym_BSLASHACRlong] = ACTIONS(4753), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), + [anon_sym_BSLASHacrfull] = ACTIONS(4753), + [anon_sym_BSLASHAcrfull] = ACTIONS(4753), + [anon_sym_BSLASHACRfull] = ACTIONS(4753), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), + [anon_sym_BSLASHacs] = ACTIONS(4753), + [anon_sym_BSLASHAcs] = ACTIONS(4753), + [anon_sym_BSLASHacsp] = ACTIONS(4753), + [anon_sym_BSLASHAcsp] = ACTIONS(4753), + [anon_sym_BSLASHacl] = ACTIONS(4753), + [anon_sym_BSLASHAcl] = ACTIONS(4753), + [anon_sym_BSLASHaclp] = ACTIONS(4753), + [anon_sym_BSLASHAclp] = ACTIONS(4753), + [anon_sym_BSLASHacf] = ACTIONS(4753), + [anon_sym_BSLASHAcf] = ACTIONS(4753), + [anon_sym_BSLASHacfp] = ACTIONS(4753), + [anon_sym_BSLASHAcfp] = ACTIONS(4753), + [anon_sym_BSLASHac] = ACTIONS(4753), + [anon_sym_BSLASHAc] = ACTIONS(4753), + [anon_sym_BSLASHacp] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), + [anon_sym_BSLASHcolor] = ACTIONS(4753), + [anon_sym_BSLASHcolorbox] = ACTIONS(4753), + [anon_sym_BSLASHtextcolor] = ACTIONS(4753), + [anon_sym_BSLASHpagecolor] = ACTIONS(4753), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), + [anon_sym_BSLASHtext] = ACTIONS(4753), + [anon_sym_BSLASHintertext] = ACTIONS(4753), + [anon_sym_shortintertext] = ACTIONS(4753), + [sym__trivia_raw_fi] = ACTIONS(4821), + }, + [649] = { + [sym_curly_group] = STATE(750), + [ts_builtin_sym_end] = ACTIONS(4823), + [sym_command_name] = ACTIONS(4825), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4825), + [anon_sym_LPAREN] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_LBRACK] = ACTIONS(4823), + [anon_sym_RBRACK] = ACTIONS(4823), + [anon_sym_COMMA] = ACTIONS(4823), + [anon_sym_EQ] = ACTIONS(4823), + [anon_sym_BSLASHpart] = ACTIONS(4825), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddpart] = ACTIONS(4825), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4823), + [anon_sym_BSLASHchapter] = ACTIONS(4825), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddchap] = ACTIONS(4825), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsection] = ACTIONS(4825), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddsec] = ACTIONS(4825), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubsection] = ACTIONS(4825), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4825), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHparagraph] = ACTIONS(4825), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4825), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4823), + [anon_sym_BSLASHitem] = ACTIONS(4825), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4823), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(4823), + [sym_word] = ACTIONS(4825), + [sym_placeholder] = ACTIONS(4823), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym__] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_BANG] = ACTIONS(4825), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_COLON] = ACTIONS(4825), + [anon_sym_SQUOTE] = ACTIONS(4825), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4823), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4825), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4823), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4823), + [anon_sym_BSLASHbegin] = ACTIONS(4825), + [anon_sym_BSLASHusepackage] = ACTIONS(4825), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4825), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4825), + [anon_sym_BSLASHinclude] = ACTIONS(4825), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4825), + [anon_sym_BSLASHinput] = ACTIONS(4825), + [anon_sym_BSLASHsubfile] = ACTIONS(4825), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4825), + [anon_sym_BSLASHbibliography] = ACTIONS(4825), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4825), + [anon_sym_BSLASHincludesvg] = ACTIONS(4825), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4825), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4825), + [anon_sym_BSLASHimport] = ACTIONS(4825), + [anon_sym_BSLASHsubimport] = ACTIONS(4825), + [anon_sym_BSLASHinputfrom] = ACTIONS(4825), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4825), + [anon_sym_BSLASHincludefrom] = ACTIONS(4825), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4825), + [anon_sym_BSLASHcaption] = ACTIONS(4825), + [anon_sym_BSLASHcite] = ACTIONS(4825), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCite] = ACTIONS(4825), + [anon_sym_BSLASHnocite] = ACTIONS(4825), + [anon_sym_BSLASHcitet] = ACTIONS(4825), + [anon_sym_BSLASHcitep] = ACTIONS(4825), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteauthor] = ACTIONS(4825), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4825), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitetitle] = ACTIONS(4825), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteyear] = ACTIONS(4825), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitedate] = ACTIONS(4825), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteurl] = ACTIONS(4825), + [anon_sym_BSLASHfullcite] = ACTIONS(4825), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4825), + [anon_sym_BSLASHcitealt] = ACTIONS(4825), + [anon_sym_BSLASHcitealp] = ACTIONS(4825), + [anon_sym_BSLASHcitetext] = ACTIONS(4825), + [anon_sym_BSLASHparencite] = ACTIONS(4825), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHParencite] = ACTIONS(4825), + [anon_sym_BSLASHfootcite] = ACTIONS(4825), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4825), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4825), + [anon_sym_BSLASHtextcite] = ACTIONS(4825), + [anon_sym_BSLASHTextcite] = ACTIONS(4825), + [anon_sym_BSLASHsmartcite] = ACTIONS(4825), + [anon_sym_BSLASHSmartcite] = ACTIONS(4825), + [anon_sym_BSLASHsupercite] = ACTIONS(4825), + [anon_sym_BSLASHautocite] = ACTIONS(4825), + [anon_sym_BSLASHAutocite] = ACTIONS(4825), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHvolcite] = ACTIONS(4825), + [anon_sym_BSLASHVolcite] = ACTIONS(4825), + [anon_sym_BSLASHpvolcite] = ACTIONS(4825), + [anon_sym_BSLASHPvolcite] = ACTIONS(4825), + [anon_sym_BSLASHfvolcite] = ACTIONS(4825), + [anon_sym_BSLASHftvolcite] = ACTIONS(4825), + [anon_sym_BSLASHsvolcite] = ACTIONS(4825), + [anon_sym_BSLASHSvolcite] = ACTIONS(4825), + [anon_sym_BSLASHtvolcite] = ACTIONS(4825), + [anon_sym_BSLASHTvolcite] = ACTIONS(4825), + [anon_sym_BSLASHavolcite] = ACTIONS(4825), + [anon_sym_BSLASHAvolcite] = ACTIONS(4825), + [anon_sym_BSLASHnotecite] = ACTIONS(4825), + [anon_sym_BSLASHNotecite] = ACTIONS(4825), + [anon_sym_BSLASHpnotecite] = ACTIONS(4825), + [anon_sym_BSLASHPnotecite] = ACTIONS(4825), + [anon_sym_BSLASHfnotecite] = ACTIONS(4825), + [anon_sym_BSLASHlabel] = ACTIONS(4825), + [anon_sym_BSLASHref] = ACTIONS(4825), + [anon_sym_BSLASHeqref] = ACTIONS(4825), + [anon_sym_BSLASHvref] = ACTIONS(4825), + [anon_sym_BSLASHVref] = ACTIONS(4825), + [anon_sym_BSLASHautoref] = ACTIONS(4825), + [anon_sym_BSLASHpageref] = ACTIONS(4825), + [anon_sym_BSLASHcref] = ACTIONS(4825), + [anon_sym_BSLASHCref] = ACTIONS(4825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4823), + [anon_sym_BSLASHnamecref] = ACTIONS(4825), + [anon_sym_BSLASHnameCref] = ACTIONS(4825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4825), + [anon_sym_BSLASHlabelcref] = ACTIONS(4825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4825), + [anon_sym_BSLASHcrefrange] = ACTIONS(4825), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCrefrange] = ACTIONS(4825), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4823), + [anon_sym_BSLASHnewlabel] = ACTIONS(4825), + [anon_sym_BSLASHnewcommand] = ACTIONS(4825), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4825), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4825), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4825), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4823), + [anon_sym_BSLASHdef] = ACTIONS(4825), + [anon_sym_BSLASHlet] = ACTIONS(4825), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4825), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4825), + [anon_sym_BSLASHgls] = ACTIONS(4825), + [anon_sym_BSLASHGls] = ACTIONS(4825), + [anon_sym_BSLASHGLS] = ACTIONS(4825), + [anon_sym_BSLASHglspl] = ACTIONS(4825), + [anon_sym_BSLASHGlspl] = ACTIONS(4825), + [anon_sym_BSLASHGLSpl] = ACTIONS(4825), + [anon_sym_BSLASHglsdisp] = ACTIONS(4825), + [anon_sym_BSLASHglslink] = ACTIONS(4825), + [anon_sym_BSLASHglstext] = ACTIONS(4825), + [anon_sym_BSLASHGlstext] = ACTIONS(4825), + [anon_sym_BSLASHGLStext] = ACTIONS(4825), + [anon_sym_BSLASHglsfirst] = ACTIONS(4825), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4825), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4825), + [anon_sym_BSLASHglsplural] = ACTIONS(4825), + [anon_sym_BSLASHGlsplural] = ACTIONS(4825), + [anon_sym_BSLASHGLSplural] = ACTIONS(4825), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHglsname] = ACTIONS(4825), + [anon_sym_BSLASHGlsname] = ACTIONS(4825), + [anon_sym_BSLASHGLSname] = ACTIONS(4825), + [anon_sym_BSLASHglssymbol] = ACTIONS(4825), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4825), + [anon_sym_BSLASHglsdesc] = ACTIONS(4825), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4825), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4825), + [anon_sym_BSLASHglsuseri] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4825), + [anon_sym_BSLASHglsuserii] = ACTIONS(4825), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4825), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4825), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4825), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4825), + [anon_sym_BSLASHglsuserv] = ACTIONS(4825), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4825), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4825), + [anon_sym_BSLASHglsuservi] = ACTIONS(4825), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4825), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4825), + [anon_sym_BSLASHnewacronym] = ACTIONS(4825), + [anon_sym_BSLASHacrshort] = ACTIONS(4825), + [anon_sym_BSLASHAcrshort] = ACTIONS(4825), + [anon_sym_BSLASHACRshort] = ACTIONS(4825), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4825), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4825), + [anon_sym_BSLASHacrlong] = ACTIONS(4825), + [anon_sym_BSLASHAcrlong] = ACTIONS(4825), + [anon_sym_BSLASHACRlong] = ACTIONS(4825), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4825), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4825), + [anon_sym_BSLASHacrfull] = ACTIONS(4825), + [anon_sym_BSLASHAcrfull] = ACTIONS(4825), + [anon_sym_BSLASHACRfull] = ACTIONS(4825), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4825), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4825), + [anon_sym_BSLASHacs] = ACTIONS(4825), + [anon_sym_BSLASHAcs] = ACTIONS(4825), + [anon_sym_BSLASHacsp] = ACTIONS(4825), + [anon_sym_BSLASHAcsp] = ACTIONS(4825), + [anon_sym_BSLASHacl] = ACTIONS(4825), + [anon_sym_BSLASHAcl] = ACTIONS(4825), + [anon_sym_BSLASHaclp] = ACTIONS(4825), + [anon_sym_BSLASHAclp] = ACTIONS(4825), + [anon_sym_BSLASHacf] = ACTIONS(4825), + [anon_sym_BSLASHAcf] = ACTIONS(4825), + [anon_sym_BSLASHacfp] = ACTIONS(4825), + [anon_sym_BSLASHAcfp] = ACTIONS(4825), + [anon_sym_BSLASHac] = ACTIONS(4825), + [anon_sym_BSLASHAc] = ACTIONS(4825), + [anon_sym_BSLASHacp] = ACTIONS(4825), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4825), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4825), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4825), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4825), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4825), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4825), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4825), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4825), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4825), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4825), + [anon_sym_BSLASHcolor] = ACTIONS(4825), + [anon_sym_BSLASHcolorbox] = ACTIONS(4825), + [anon_sym_BSLASHtextcolor] = ACTIONS(4825), + [anon_sym_BSLASHpagecolor] = ACTIONS(4825), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4825), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4825), + [anon_sym_BSLASHtext] = ACTIONS(4825), + [anon_sym_BSLASHintertext] = ACTIONS(4825), + [anon_sym_shortintertext] = ACTIONS(4825), + }, + [650] = { + [sym_curly_group] = STATE(749), + [ts_builtin_sym_end] = ACTIONS(4827), + [sym_command_name] = ACTIONS(4829), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4829), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_RBRACK] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_EQ] = ACTIONS(4827), + [anon_sym_BSLASHpart] = ACTIONS(4829), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddpart] = ACTIONS(4829), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4827), + [anon_sym_BSLASHchapter] = ACTIONS(4829), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddchap] = ACTIONS(4829), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsection] = ACTIONS(4829), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddsec] = ACTIONS(4829), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubsection] = ACTIONS(4829), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4829), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHparagraph] = ACTIONS(4829), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4829), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4827), + [anon_sym_BSLASHitem] = ACTIONS(4829), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(4827), + [sym_word] = ACTIONS(4829), + [sym_placeholder] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4829), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_CARET] = ACTIONS(4829), + [anon_sym__] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_BANG] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_COLON] = ACTIONS(4829), + [anon_sym_SQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4827), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(4829), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4827), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4827), + [anon_sym_BSLASHbegin] = ACTIONS(4829), + [anon_sym_BSLASHusepackage] = ACTIONS(4829), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4829), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4829), + [anon_sym_BSLASHinclude] = ACTIONS(4829), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4829), + [anon_sym_BSLASHinput] = ACTIONS(4829), + [anon_sym_BSLASHsubfile] = ACTIONS(4829), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4829), + [anon_sym_BSLASHbibliography] = ACTIONS(4829), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4829), + [anon_sym_BSLASHincludesvg] = ACTIONS(4829), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4829), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4829), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4829), + [anon_sym_BSLASHimport] = ACTIONS(4829), + [anon_sym_BSLASHsubimport] = ACTIONS(4829), + [anon_sym_BSLASHinputfrom] = ACTIONS(4829), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4829), + [anon_sym_BSLASHincludefrom] = ACTIONS(4829), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4829), + [anon_sym_BSLASHcaption] = ACTIONS(4829), + [anon_sym_BSLASHcite] = ACTIONS(4829), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCite] = ACTIONS(4829), + [anon_sym_BSLASHnocite] = ACTIONS(4829), + [anon_sym_BSLASHcitet] = ACTIONS(4829), + [anon_sym_BSLASHcitep] = ACTIONS(4829), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteauthor] = ACTIONS(4829), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4829), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitetitle] = ACTIONS(4829), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteyear] = ACTIONS(4829), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitedate] = ACTIONS(4829), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteurl] = ACTIONS(4829), + [anon_sym_BSLASHfullcite] = ACTIONS(4829), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4829), + [anon_sym_BSLASHcitealt] = ACTIONS(4829), + [anon_sym_BSLASHcitealp] = ACTIONS(4829), + [anon_sym_BSLASHcitetext] = ACTIONS(4829), + [anon_sym_BSLASHparencite] = ACTIONS(4829), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHParencite] = ACTIONS(4829), + [anon_sym_BSLASHfootcite] = ACTIONS(4829), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4829), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4829), + [anon_sym_BSLASHtextcite] = ACTIONS(4829), + [anon_sym_BSLASHTextcite] = ACTIONS(4829), + [anon_sym_BSLASHsmartcite] = ACTIONS(4829), + [anon_sym_BSLASHSmartcite] = ACTIONS(4829), + [anon_sym_BSLASHsupercite] = ACTIONS(4829), + [anon_sym_BSLASHautocite] = ACTIONS(4829), + [anon_sym_BSLASHAutocite] = ACTIONS(4829), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHvolcite] = ACTIONS(4829), + [anon_sym_BSLASHVolcite] = ACTIONS(4829), + [anon_sym_BSLASHpvolcite] = ACTIONS(4829), + [anon_sym_BSLASHPvolcite] = ACTIONS(4829), + [anon_sym_BSLASHfvolcite] = ACTIONS(4829), + [anon_sym_BSLASHftvolcite] = ACTIONS(4829), + [anon_sym_BSLASHsvolcite] = ACTIONS(4829), + [anon_sym_BSLASHSvolcite] = ACTIONS(4829), + [anon_sym_BSLASHtvolcite] = ACTIONS(4829), + [anon_sym_BSLASHTvolcite] = ACTIONS(4829), + [anon_sym_BSLASHavolcite] = ACTIONS(4829), + [anon_sym_BSLASHAvolcite] = ACTIONS(4829), + [anon_sym_BSLASHnotecite] = ACTIONS(4829), + [anon_sym_BSLASHNotecite] = ACTIONS(4829), + [anon_sym_BSLASHpnotecite] = ACTIONS(4829), + [anon_sym_BSLASHPnotecite] = ACTIONS(4829), + [anon_sym_BSLASHfnotecite] = ACTIONS(4829), + [anon_sym_BSLASHlabel] = ACTIONS(4829), + [anon_sym_BSLASHref] = ACTIONS(4829), + [anon_sym_BSLASHeqref] = ACTIONS(4829), + [anon_sym_BSLASHvref] = ACTIONS(4829), + [anon_sym_BSLASHVref] = ACTIONS(4829), + [anon_sym_BSLASHautoref] = ACTIONS(4829), + [anon_sym_BSLASHpageref] = ACTIONS(4829), + [anon_sym_BSLASHcref] = ACTIONS(4829), + [anon_sym_BSLASHCref] = ACTIONS(4829), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4827), + [anon_sym_BSLASHnamecref] = ACTIONS(4829), + [anon_sym_BSLASHnameCref] = ACTIONS(4829), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4829), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4829), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4829), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4829), + [anon_sym_BSLASHlabelcref] = ACTIONS(4829), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4829), + [anon_sym_BSLASHcrefrange] = ACTIONS(4829), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCrefrange] = ACTIONS(4829), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4827), + [anon_sym_BSLASHnewlabel] = ACTIONS(4829), + [anon_sym_BSLASHnewcommand] = ACTIONS(4829), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4829), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4829), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4829), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4827), + [anon_sym_BSLASHdef] = ACTIONS(4829), + [anon_sym_BSLASHlet] = ACTIONS(4829), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4829), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4829), + [anon_sym_BSLASHgls] = ACTIONS(4829), + [anon_sym_BSLASHGls] = ACTIONS(4829), + [anon_sym_BSLASHGLS] = ACTIONS(4829), + [anon_sym_BSLASHglspl] = ACTIONS(4829), + [anon_sym_BSLASHGlspl] = ACTIONS(4829), + [anon_sym_BSLASHGLSpl] = ACTIONS(4829), + [anon_sym_BSLASHglsdisp] = ACTIONS(4829), + [anon_sym_BSLASHglslink] = ACTIONS(4829), + [anon_sym_BSLASHglstext] = ACTIONS(4829), + [anon_sym_BSLASHGlstext] = ACTIONS(4829), + [anon_sym_BSLASHGLStext] = ACTIONS(4829), + [anon_sym_BSLASHglsfirst] = ACTIONS(4829), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4829), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4829), + [anon_sym_BSLASHglsplural] = ACTIONS(4829), + [anon_sym_BSLASHGlsplural] = ACTIONS(4829), + [anon_sym_BSLASHGLSplural] = ACTIONS(4829), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHglsname] = ACTIONS(4829), + [anon_sym_BSLASHGlsname] = ACTIONS(4829), + [anon_sym_BSLASHGLSname] = ACTIONS(4829), + [anon_sym_BSLASHglssymbol] = ACTIONS(4829), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4829), + [anon_sym_BSLASHglsdesc] = ACTIONS(4829), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4829), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4829), + [anon_sym_BSLASHglsuseri] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4829), + [anon_sym_BSLASHglsuserii] = ACTIONS(4829), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4829), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4829), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4829), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4829), + [anon_sym_BSLASHglsuserv] = ACTIONS(4829), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4829), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4829), + [anon_sym_BSLASHglsuservi] = ACTIONS(4829), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4829), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4829), + [anon_sym_BSLASHnewacronym] = ACTIONS(4829), + [anon_sym_BSLASHacrshort] = ACTIONS(4829), + [anon_sym_BSLASHAcrshort] = ACTIONS(4829), + [anon_sym_BSLASHACRshort] = ACTIONS(4829), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4829), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4829), + [anon_sym_BSLASHacrlong] = ACTIONS(4829), + [anon_sym_BSLASHAcrlong] = ACTIONS(4829), + [anon_sym_BSLASHACRlong] = ACTIONS(4829), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4829), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4829), + [anon_sym_BSLASHacrfull] = ACTIONS(4829), + [anon_sym_BSLASHAcrfull] = ACTIONS(4829), + [anon_sym_BSLASHACRfull] = ACTIONS(4829), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4829), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4829), + [anon_sym_BSLASHacs] = ACTIONS(4829), + [anon_sym_BSLASHAcs] = ACTIONS(4829), + [anon_sym_BSLASHacsp] = ACTIONS(4829), + [anon_sym_BSLASHAcsp] = ACTIONS(4829), + [anon_sym_BSLASHacl] = ACTIONS(4829), + [anon_sym_BSLASHAcl] = ACTIONS(4829), + [anon_sym_BSLASHaclp] = ACTIONS(4829), + [anon_sym_BSLASHAclp] = ACTIONS(4829), + [anon_sym_BSLASHacf] = ACTIONS(4829), + [anon_sym_BSLASHAcf] = ACTIONS(4829), + [anon_sym_BSLASHacfp] = ACTIONS(4829), + [anon_sym_BSLASHAcfp] = ACTIONS(4829), + [anon_sym_BSLASHac] = ACTIONS(4829), + [anon_sym_BSLASHAc] = ACTIONS(4829), + [anon_sym_BSLASHacp] = ACTIONS(4829), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4829), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4829), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4829), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4829), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4829), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4829), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4829), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4829), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4829), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4829), + [anon_sym_BSLASHcolor] = ACTIONS(4829), + [anon_sym_BSLASHcolorbox] = ACTIONS(4829), + [anon_sym_BSLASHtextcolor] = ACTIONS(4829), + [anon_sym_BSLASHpagecolor] = ACTIONS(4829), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4829), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4829), + [anon_sym_BSLASHtext] = ACTIONS(4829), + [anon_sym_BSLASHintertext] = ACTIONS(4829), + [anon_sym_shortintertext] = ACTIONS(4829), + }, + [651] = { + [sym_curly_group] = STATE(747), + [ts_builtin_sym_end] = ACTIONS(4831), + [sym_command_name] = ACTIONS(4833), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_EQ] = ACTIONS(4831), + [anon_sym_BSLASHpart] = ACTIONS(4833), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddpart] = ACTIONS(4833), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4831), + [anon_sym_BSLASHchapter] = ACTIONS(4833), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddchap] = ACTIONS(4833), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsection] = ACTIONS(4833), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddsec] = ACTIONS(4833), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubsection] = ACTIONS(4833), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4833), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHparagraph] = ACTIONS(4833), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4833), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4831), + [anon_sym_BSLASHitem] = ACTIONS(4833), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(4831), + [sym_word] = ACTIONS(4833), + [sym_placeholder] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_CARET] = ACTIONS(4833), + [anon_sym__] = ACTIONS(4833), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_BANG] = ACTIONS(4833), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_COLON] = ACTIONS(4833), + [anon_sym_SQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4831), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4831), + [anon_sym_DOLLAR] = ACTIONS(4833), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4831), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4831), + [anon_sym_BSLASHbegin] = ACTIONS(4833), + [anon_sym_BSLASHusepackage] = ACTIONS(4833), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4833), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4833), + [anon_sym_BSLASHinclude] = ACTIONS(4833), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4833), + [anon_sym_BSLASHinput] = ACTIONS(4833), + [anon_sym_BSLASHsubfile] = ACTIONS(4833), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4833), + [anon_sym_BSLASHbibliography] = ACTIONS(4833), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4833), + [anon_sym_BSLASHincludesvg] = ACTIONS(4833), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4833), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4833), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4833), + [anon_sym_BSLASHimport] = ACTIONS(4833), + [anon_sym_BSLASHsubimport] = ACTIONS(4833), + [anon_sym_BSLASHinputfrom] = ACTIONS(4833), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4833), + [anon_sym_BSLASHincludefrom] = ACTIONS(4833), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4833), + [anon_sym_BSLASHcaption] = ACTIONS(4833), + [anon_sym_BSLASHcite] = ACTIONS(4833), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCite] = ACTIONS(4833), + [anon_sym_BSLASHnocite] = ACTIONS(4833), + [anon_sym_BSLASHcitet] = ACTIONS(4833), + [anon_sym_BSLASHcitep] = ACTIONS(4833), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteauthor] = ACTIONS(4833), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4833), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitetitle] = ACTIONS(4833), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteyear] = ACTIONS(4833), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitedate] = ACTIONS(4833), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteurl] = ACTIONS(4833), + [anon_sym_BSLASHfullcite] = ACTIONS(4833), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4833), + [anon_sym_BSLASHcitealt] = ACTIONS(4833), + [anon_sym_BSLASHcitealp] = ACTIONS(4833), + [anon_sym_BSLASHcitetext] = ACTIONS(4833), + [anon_sym_BSLASHparencite] = ACTIONS(4833), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHParencite] = ACTIONS(4833), + [anon_sym_BSLASHfootcite] = ACTIONS(4833), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4833), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4833), + [anon_sym_BSLASHtextcite] = ACTIONS(4833), + [anon_sym_BSLASHTextcite] = ACTIONS(4833), + [anon_sym_BSLASHsmartcite] = ACTIONS(4833), + [anon_sym_BSLASHSmartcite] = ACTIONS(4833), + [anon_sym_BSLASHsupercite] = ACTIONS(4833), + [anon_sym_BSLASHautocite] = ACTIONS(4833), + [anon_sym_BSLASHAutocite] = ACTIONS(4833), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHvolcite] = ACTIONS(4833), + [anon_sym_BSLASHVolcite] = ACTIONS(4833), + [anon_sym_BSLASHpvolcite] = ACTIONS(4833), + [anon_sym_BSLASHPvolcite] = ACTIONS(4833), + [anon_sym_BSLASHfvolcite] = ACTIONS(4833), + [anon_sym_BSLASHftvolcite] = ACTIONS(4833), + [anon_sym_BSLASHsvolcite] = ACTIONS(4833), + [anon_sym_BSLASHSvolcite] = ACTIONS(4833), + [anon_sym_BSLASHtvolcite] = ACTIONS(4833), + [anon_sym_BSLASHTvolcite] = ACTIONS(4833), + [anon_sym_BSLASHavolcite] = ACTIONS(4833), + [anon_sym_BSLASHAvolcite] = ACTIONS(4833), + [anon_sym_BSLASHnotecite] = ACTIONS(4833), + [anon_sym_BSLASHNotecite] = ACTIONS(4833), + [anon_sym_BSLASHpnotecite] = ACTIONS(4833), + [anon_sym_BSLASHPnotecite] = ACTIONS(4833), + [anon_sym_BSLASHfnotecite] = ACTIONS(4833), + [anon_sym_BSLASHlabel] = ACTIONS(4833), + [anon_sym_BSLASHref] = ACTIONS(4833), + [anon_sym_BSLASHeqref] = ACTIONS(4833), + [anon_sym_BSLASHvref] = ACTIONS(4833), + [anon_sym_BSLASHVref] = ACTIONS(4833), + [anon_sym_BSLASHautoref] = ACTIONS(4833), + [anon_sym_BSLASHpageref] = ACTIONS(4833), + [anon_sym_BSLASHcref] = ACTIONS(4833), + [anon_sym_BSLASHCref] = ACTIONS(4833), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4831), + [anon_sym_BSLASHnamecref] = ACTIONS(4833), + [anon_sym_BSLASHnameCref] = ACTIONS(4833), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4833), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4833), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4833), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4833), + [anon_sym_BSLASHlabelcref] = ACTIONS(4833), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4833), + [anon_sym_BSLASHcrefrange] = ACTIONS(4833), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCrefrange] = ACTIONS(4833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4831), + [anon_sym_BSLASHnewlabel] = ACTIONS(4833), + [anon_sym_BSLASHnewcommand] = ACTIONS(4833), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4833), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4833), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4833), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4831), + [anon_sym_BSLASHdef] = ACTIONS(4833), + [anon_sym_BSLASHlet] = ACTIONS(4833), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4833), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4833), + [anon_sym_BSLASHgls] = ACTIONS(4833), + [anon_sym_BSLASHGls] = ACTIONS(4833), + [anon_sym_BSLASHGLS] = ACTIONS(4833), + [anon_sym_BSLASHglspl] = ACTIONS(4833), + [anon_sym_BSLASHGlspl] = ACTIONS(4833), + [anon_sym_BSLASHGLSpl] = ACTIONS(4833), + [anon_sym_BSLASHglsdisp] = ACTIONS(4833), + [anon_sym_BSLASHglslink] = ACTIONS(4833), + [anon_sym_BSLASHglstext] = ACTIONS(4833), + [anon_sym_BSLASHGlstext] = ACTIONS(4833), + [anon_sym_BSLASHGLStext] = ACTIONS(4833), + [anon_sym_BSLASHglsfirst] = ACTIONS(4833), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4833), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4833), + [anon_sym_BSLASHglsplural] = ACTIONS(4833), + [anon_sym_BSLASHGlsplural] = ACTIONS(4833), + [anon_sym_BSLASHGLSplural] = ACTIONS(4833), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHglsname] = ACTIONS(4833), + [anon_sym_BSLASHGlsname] = ACTIONS(4833), + [anon_sym_BSLASHGLSname] = ACTIONS(4833), + [anon_sym_BSLASHglssymbol] = ACTIONS(4833), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4833), + [anon_sym_BSLASHglsdesc] = ACTIONS(4833), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4833), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4833), + [anon_sym_BSLASHglsuseri] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4833), + [anon_sym_BSLASHglsuserii] = ACTIONS(4833), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4833), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4833), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4833), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4833), + [anon_sym_BSLASHglsuserv] = ACTIONS(4833), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4833), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4833), + [anon_sym_BSLASHglsuservi] = ACTIONS(4833), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4833), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4833), + [anon_sym_BSLASHnewacronym] = ACTIONS(4833), + [anon_sym_BSLASHacrshort] = ACTIONS(4833), + [anon_sym_BSLASHAcrshort] = ACTIONS(4833), + [anon_sym_BSLASHACRshort] = ACTIONS(4833), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4833), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4833), + [anon_sym_BSLASHacrlong] = ACTIONS(4833), + [anon_sym_BSLASHAcrlong] = ACTIONS(4833), + [anon_sym_BSLASHACRlong] = ACTIONS(4833), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4833), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4833), + [anon_sym_BSLASHacrfull] = ACTIONS(4833), + [anon_sym_BSLASHAcrfull] = ACTIONS(4833), + [anon_sym_BSLASHACRfull] = ACTIONS(4833), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4833), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4833), + [anon_sym_BSLASHacs] = ACTIONS(4833), + [anon_sym_BSLASHAcs] = ACTIONS(4833), + [anon_sym_BSLASHacsp] = ACTIONS(4833), + [anon_sym_BSLASHAcsp] = ACTIONS(4833), + [anon_sym_BSLASHacl] = ACTIONS(4833), + [anon_sym_BSLASHAcl] = ACTIONS(4833), + [anon_sym_BSLASHaclp] = ACTIONS(4833), + [anon_sym_BSLASHAclp] = ACTIONS(4833), + [anon_sym_BSLASHacf] = ACTIONS(4833), + [anon_sym_BSLASHAcf] = ACTIONS(4833), + [anon_sym_BSLASHacfp] = ACTIONS(4833), + [anon_sym_BSLASHAcfp] = ACTIONS(4833), + [anon_sym_BSLASHac] = ACTIONS(4833), + [anon_sym_BSLASHAc] = ACTIONS(4833), + [anon_sym_BSLASHacp] = ACTIONS(4833), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4833), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4833), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4833), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4833), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4833), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4833), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4833), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4833), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4833), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4833), + [anon_sym_BSLASHcolor] = ACTIONS(4833), + [anon_sym_BSLASHcolorbox] = ACTIONS(4833), + [anon_sym_BSLASHtextcolor] = ACTIONS(4833), + [anon_sym_BSLASHpagecolor] = ACTIONS(4833), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4833), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4833), + [anon_sym_BSLASHtext] = ACTIONS(4833), + [anon_sym_BSLASHintertext] = ACTIONS(4833), + [anon_sym_shortintertext] = ACTIONS(4833), + }, + [652] = { + [sym_curly_group] = STATE(744), + [ts_builtin_sym_end] = ACTIONS(4835), + [sym_command_name] = ACTIONS(4837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4837), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4835), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_RBRACK] = ACTIONS(4835), + [anon_sym_COMMA] = ACTIONS(4835), + [anon_sym_EQ] = ACTIONS(4835), + [anon_sym_BSLASHpart] = ACTIONS(4837), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddpart] = ACTIONS(4837), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4835), + [anon_sym_BSLASHchapter] = ACTIONS(4837), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddchap] = ACTIONS(4837), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsection] = ACTIONS(4837), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddsec] = ACTIONS(4837), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubsection] = ACTIONS(4837), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4837), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHparagraph] = ACTIONS(4837), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4837), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4835), + [anon_sym_BSLASHitem] = ACTIONS(4837), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4835), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(4835), + [sym_word] = ACTIONS(4837), + [sym_placeholder] = ACTIONS(4835), + [anon_sym_PLUS] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4837), + [anon_sym_STAR] = ACTIONS(4837), + [anon_sym_SLASH] = ACTIONS(4837), + [anon_sym_CARET] = ACTIONS(4837), + [anon_sym__] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_BANG] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_COLON] = ACTIONS(4837), + [anon_sym_SQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4835), + [anon_sym_BSLASHbegin] = ACTIONS(4837), + [anon_sym_BSLASHusepackage] = ACTIONS(4837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4837), + [anon_sym_BSLASHinclude] = ACTIONS(4837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4837), + [anon_sym_BSLASHinput] = ACTIONS(4837), + [anon_sym_BSLASHsubfile] = ACTIONS(4837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4837), + [anon_sym_BSLASHbibliography] = ACTIONS(4837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4837), + [anon_sym_BSLASHincludesvg] = ACTIONS(4837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4837), + [anon_sym_BSLASHimport] = ACTIONS(4837), + [anon_sym_BSLASHsubimport] = ACTIONS(4837), + [anon_sym_BSLASHinputfrom] = ACTIONS(4837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4837), + [anon_sym_BSLASHincludefrom] = ACTIONS(4837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4837), + [anon_sym_BSLASHcaption] = ACTIONS(4837), + [anon_sym_BSLASHcite] = ACTIONS(4837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCite] = ACTIONS(4837), + [anon_sym_BSLASHnocite] = ACTIONS(4837), + [anon_sym_BSLASHcitet] = ACTIONS(4837), + [anon_sym_BSLASHcitep] = ACTIONS(4837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteauthor] = ACTIONS(4837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitetitle] = ACTIONS(4837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteyear] = ACTIONS(4837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitedate] = ACTIONS(4837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteurl] = ACTIONS(4837), + [anon_sym_BSLASHfullcite] = ACTIONS(4837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4837), + [anon_sym_BSLASHcitealt] = ACTIONS(4837), + [anon_sym_BSLASHcitealp] = ACTIONS(4837), + [anon_sym_BSLASHcitetext] = ACTIONS(4837), + [anon_sym_BSLASHparencite] = ACTIONS(4837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHParencite] = ACTIONS(4837), + [anon_sym_BSLASHfootcite] = ACTIONS(4837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4837), + [anon_sym_BSLASHtextcite] = ACTIONS(4837), + [anon_sym_BSLASHTextcite] = ACTIONS(4837), + [anon_sym_BSLASHsmartcite] = ACTIONS(4837), + [anon_sym_BSLASHSmartcite] = ACTIONS(4837), + [anon_sym_BSLASHsupercite] = ACTIONS(4837), + [anon_sym_BSLASHautocite] = ACTIONS(4837), + [anon_sym_BSLASHAutocite] = ACTIONS(4837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHvolcite] = ACTIONS(4837), + [anon_sym_BSLASHVolcite] = ACTIONS(4837), + [anon_sym_BSLASHpvolcite] = ACTIONS(4837), + [anon_sym_BSLASHPvolcite] = ACTIONS(4837), + [anon_sym_BSLASHfvolcite] = ACTIONS(4837), + [anon_sym_BSLASHftvolcite] = ACTIONS(4837), + [anon_sym_BSLASHsvolcite] = ACTIONS(4837), + [anon_sym_BSLASHSvolcite] = ACTIONS(4837), + [anon_sym_BSLASHtvolcite] = ACTIONS(4837), + [anon_sym_BSLASHTvolcite] = ACTIONS(4837), + [anon_sym_BSLASHavolcite] = ACTIONS(4837), + [anon_sym_BSLASHAvolcite] = ACTIONS(4837), + [anon_sym_BSLASHnotecite] = ACTIONS(4837), + [anon_sym_BSLASHNotecite] = ACTIONS(4837), + [anon_sym_BSLASHpnotecite] = ACTIONS(4837), + [anon_sym_BSLASHPnotecite] = ACTIONS(4837), + [anon_sym_BSLASHfnotecite] = ACTIONS(4837), + [anon_sym_BSLASHlabel] = ACTIONS(4837), + [anon_sym_BSLASHref] = ACTIONS(4837), + [anon_sym_BSLASHeqref] = ACTIONS(4837), + [anon_sym_BSLASHvref] = ACTIONS(4837), + [anon_sym_BSLASHVref] = ACTIONS(4837), + [anon_sym_BSLASHautoref] = ACTIONS(4837), + [anon_sym_BSLASHpageref] = ACTIONS(4837), + [anon_sym_BSLASHcref] = ACTIONS(4837), + [anon_sym_BSLASHCref] = ACTIONS(4837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4835), + [anon_sym_BSLASHnamecref] = ACTIONS(4837), + [anon_sym_BSLASHnameCref] = ACTIONS(4837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4837), + [anon_sym_BSLASHlabelcref] = ACTIONS(4837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4837), + [anon_sym_BSLASHcrefrange] = ACTIONS(4837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCrefrange] = ACTIONS(4837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4835), + [anon_sym_BSLASHnewlabel] = ACTIONS(4837), + [anon_sym_BSLASHnewcommand] = ACTIONS(4837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4835), + [anon_sym_BSLASHdef] = ACTIONS(4837), + [anon_sym_BSLASHlet] = ACTIONS(4837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4837), + [anon_sym_BSLASHgls] = ACTIONS(4837), + [anon_sym_BSLASHGls] = ACTIONS(4837), + [anon_sym_BSLASHGLS] = ACTIONS(4837), + [anon_sym_BSLASHglspl] = ACTIONS(4837), + [anon_sym_BSLASHGlspl] = ACTIONS(4837), + [anon_sym_BSLASHGLSpl] = ACTIONS(4837), + [anon_sym_BSLASHglsdisp] = ACTIONS(4837), + [anon_sym_BSLASHglslink] = ACTIONS(4837), + [anon_sym_BSLASHglstext] = ACTIONS(4837), + [anon_sym_BSLASHGlstext] = ACTIONS(4837), + [anon_sym_BSLASHGLStext] = ACTIONS(4837), + [anon_sym_BSLASHglsfirst] = ACTIONS(4837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4837), + [anon_sym_BSLASHglsplural] = ACTIONS(4837), + [anon_sym_BSLASHGlsplural] = ACTIONS(4837), + [anon_sym_BSLASHGLSplural] = ACTIONS(4837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHglsname] = ACTIONS(4837), + [anon_sym_BSLASHGlsname] = ACTIONS(4837), + [anon_sym_BSLASHGLSname] = ACTIONS(4837), + [anon_sym_BSLASHglssymbol] = ACTIONS(4837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4837), + [anon_sym_BSLASHglsdesc] = ACTIONS(4837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4837), + [anon_sym_BSLASHglsuseri] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4837), + [anon_sym_BSLASHglsuserii] = ACTIONS(4837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4837), + [anon_sym_BSLASHglsuserv] = ACTIONS(4837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4837), + [anon_sym_BSLASHglsuservi] = ACTIONS(4837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4837), + [anon_sym_BSLASHnewacronym] = ACTIONS(4837), + [anon_sym_BSLASHacrshort] = ACTIONS(4837), + [anon_sym_BSLASHAcrshort] = ACTIONS(4837), + [anon_sym_BSLASHACRshort] = ACTIONS(4837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4837), + [anon_sym_BSLASHacrlong] = ACTIONS(4837), + [anon_sym_BSLASHAcrlong] = ACTIONS(4837), + [anon_sym_BSLASHACRlong] = ACTIONS(4837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4837), + [anon_sym_BSLASHacrfull] = ACTIONS(4837), + [anon_sym_BSLASHAcrfull] = ACTIONS(4837), + [anon_sym_BSLASHACRfull] = ACTIONS(4837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4837), + [anon_sym_BSLASHacs] = ACTIONS(4837), + [anon_sym_BSLASHAcs] = ACTIONS(4837), + [anon_sym_BSLASHacsp] = ACTIONS(4837), + [anon_sym_BSLASHAcsp] = ACTIONS(4837), + [anon_sym_BSLASHacl] = ACTIONS(4837), + [anon_sym_BSLASHAcl] = ACTIONS(4837), + [anon_sym_BSLASHaclp] = ACTIONS(4837), + [anon_sym_BSLASHAclp] = ACTIONS(4837), + [anon_sym_BSLASHacf] = ACTIONS(4837), + [anon_sym_BSLASHAcf] = ACTIONS(4837), + [anon_sym_BSLASHacfp] = ACTIONS(4837), + [anon_sym_BSLASHAcfp] = ACTIONS(4837), + [anon_sym_BSLASHac] = ACTIONS(4837), + [anon_sym_BSLASHAc] = ACTIONS(4837), + [anon_sym_BSLASHacp] = ACTIONS(4837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4837), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4837), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4837), + [anon_sym_BSLASHcolor] = ACTIONS(4837), + [anon_sym_BSLASHcolorbox] = ACTIONS(4837), + [anon_sym_BSLASHtextcolor] = ACTIONS(4837), + [anon_sym_BSLASHpagecolor] = ACTIONS(4837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4837), + [anon_sym_BSLASHtext] = ACTIONS(4837), + [anon_sym_BSLASHintertext] = ACTIONS(4837), + [anon_sym_shortintertext] = ACTIONS(4837), + }, + [653] = { + [sym_curly_group] = STATE(735), + [ts_builtin_sym_end] = ACTIONS(4839), + [sym_command_name] = ACTIONS(4841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4841), + [anon_sym_LPAREN] = ACTIONS(4839), + [anon_sym_RPAREN] = ACTIONS(4839), + [anon_sym_LBRACK] = ACTIONS(4839), + [anon_sym_RBRACK] = ACTIONS(4839), + [anon_sym_COMMA] = ACTIONS(4839), + [anon_sym_EQ] = ACTIONS(4839), + [anon_sym_BSLASHpart] = ACTIONS(4841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddpart] = ACTIONS(4841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4839), + [anon_sym_BSLASHchapter] = ACTIONS(4841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddchap] = ACTIONS(4841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsection] = ACTIONS(4841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddsec] = ACTIONS(4841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubsection] = ACTIONS(4841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHparagraph] = ACTIONS(4841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4839), + [anon_sym_BSLASHitem] = ACTIONS(4841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4839), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(4839), + [sym_word] = ACTIONS(4841), + [sym_placeholder] = ACTIONS(4839), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_CARET] = ACTIONS(4841), + [anon_sym__] = ACTIONS(4841), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_COLON] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4839), + [anon_sym_DOLLAR] = ACTIONS(4841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4839), + [anon_sym_BSLASHbegin] = ACTIONS(4841), + [anon_sym_BSLASHusepackage] = ACTIONS(4841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4841), + [anon_sym_BSLASHinclude] = ACTIONS(4841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4841), + [anon_sym_BSLASHinput] = ACTIONS(4841), + [anon_sym_BSLASHsubfile] = ACTIONS(4841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4841), + [anon_sym_BSLASHbibliography] = ACTIONS(4841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4841), + [anon_sym_BSLASHincludesvg] = ACTIONS(4841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4841), + [anon_sym_BSLASHimport] = ACTIONS(4841), + [anon_sym_BSLASHsubimport] = ACTIONS(4841), + [anon_sym_BSLASHinputfrom] = ACTIONS(4841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4841), + [anon_sym_BSLASHincludefrom] = ACTIONS(4841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4841), + [anon_sym_BSLASHcaption] = ACTIONS(4841), + [anon_sym_BSLASHcite] = ACTIONS(4841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCite] = ACTIONS(4841), + [anon_sym_BSLASHnocite] = ACTIONS(4841), + [anon_sym_BSLASHcitet] = ACTIONS(4841), + [anon_sym_BSLASHcitep] = ACTIONS(4841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteauthor] = ACTIONS(4841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitetitle] = ACTIONS(4841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteyear] = ACTIONS(4841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitedate] = ACTIONS(4841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteurl] = ACTIONS(4841), + [anon_sym_BSLASHfullcite] = ACTIONS(4841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4841), + [anon_sym_BSLASHcitealt] = ACTIONS(4841), + [anon_sym_BSLASHcitealp] = ACTIONS(4841), + [anon_sym_BSLASHcitetext] = ACTIONS(4841), + [anon_sym_BSLASHparencite] = ACTIONS(4841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHParencite] = ACTIONS(4841), + [anon_sym_BSLASHfootcite] = ACTIONS(4841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4841), + [anon_sym_BSLASHtextcite] = ACTIONS(4841), + [anon_sym_BSLASHTextcite] = ACTIONS(4841), + [anon_sym_BSLASHsmartcite] = ACTIONS(4841), + [anon_sym_BSLASHSmartcite] = ACTIONS(4841), + [anon_sym_BSLASHsupercite] = ACTIONS(4841), + [anon_sym_BSLASHautocite] = ACTIONS(4841), + [anon_sym_BSLASHAutocite] = ACTIONS(4841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHvolcite] = ACTIONS(4841), + [anon_sym_BSLASHVolcite] = ACTIONS(4841), + [anon_sym_BSLASHpvolcite] = ACTIONS(4841), + [anon_sym_BSLASHPvolcite] = ACTIONS(4841), + [anon_sym_BSLASHfvolcite] = ACTIONS(4841), + [anon_sym_BSLASHftvolcite] = ACTIONS(4841), + [anon_sym_BSLASHsvolcite] = ACTIONS(4841), + [anon_sym_BSLASHSvolcite] = ACTIONS(4841), + [anon_sym_BSLASHtvolcite] = ACTIONS(4841), + [anon_sym_BSLASHTvolcite] = ACTIONS(4841), + [anon_sym_BSLASHavolcite] = ACTIONS(4841), + [anon_sym_BSLASHAvolcite] = ACTIONS(4841), + [anon_sym_BSLASHnotecite] = ACTIONS(4841), + [anon_sym_BSLASHNotecite] = ACTIONS(4841), + [anon_sym_BSLASHpnotecite] = ACTIONS(4841), + [anon_sym_BSLASHPnotecite] = ACTIONS(4841), + [anon_sym_BSLASHfnotecite] = ACTIONS(4841), + [anon_sym_BSLASHlabel] = ACTIONS(4841), + [anon_sym_BSLASHref] = ACTIONS(4841), + [anon_sym_BSLASHeqref] = ACTIONS(4841), + [anon_sym_BSLASHvref] = ACTIONS(4841), + [anon_sym_BSLASHVref] = ACTIONS(4841), + [anon_sym_BSLASHautoref] = ACTIONS(4841), + [anon_sym_BSLASHpageref] = ACTIONS(4841), + [anon_sym_BSLASHcref] = ACTIONS(4841), + [anon_sym_BSLASHCref] = ACTIONS(4841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4839), + [anon_sym_BSLASHnamecref] = ACTIONS(4841), + [anon_sym_BSLASHnameCref] = ACTIONS(4841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4841), + [anon_sym_BSLASHlabelcref] = ACTIONS(4841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4841), + [anon_sym_BSLASHcrefrange] = ACTIONS(4841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCrefrange] = ACTIONS(4841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4839), + [anon_sym_BSLASHnewlabel] = ACTIONS(4841), + [anon_sym_BSLASHnewcommand] = ACTIONS(4841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4839), + [anon_sym_BSLASHdef] = ACTIONS(4841), + [anon_sym_BSLASHlet] = ACTIONS(4841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4841), + [anon_sym_BSLASHgls] = ACTIONS(4841), + [anon_sym_BSLASHGls] = ACTIONS(4841), + [anon_sym_BSLASHGLS] = ACTIONS(4841), + [anon_sym_BSLASHglspl] = ACTIONS(4841), + [anon_sym_BSLASHGlspl] = ACTIONS(4841), + [anon_sym_BSLASHGLSpl] = ACTIONS(4841), + [anon_sym_BSLASHglsdisp] = ACTIONS(4841), + [anon_sym_BSLASHglslink] = ACTIONS(4841), + [anon_sym_BSLASHglstext] = ACTIONS(4841), + [anon_sym_BSLASHGlstext] = ACTIONS(4841), + [anon_sym_BSLASHGLStext] = ACTIONS(4841), + [anon_sym_BSLASHglsfirst] = ACTIONS(4841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4841), + [anon_sym_BSLASHglsplural] = ACTIONS(4841), + [anon_sym_BSLASHGlsplural] = ACTIONS(4841), + [anon_sym_BSLASHGLSplural] = ACTIONS(4841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHglsname] = ACTIONS(4841), + [anon_sym_BSLASHGlsname] = ACTIONS(4841), + [anon_sym_BSLASHGLSname] = ACTIONS(4841), + [anon_sym_BSLASHglssymbol] = ACTIONS(4841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4841), + [anon_sym_BSLASHglsdesc] = ACTIONS(4841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4841), + [anon_sym_BSLASHglsuseri] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4841), + [anon_sym_BSLASHglsuserii] = ACTIONS(4841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4841), + [anon_sym_BSLASHglsuserv] = ACTIONS(4841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4841), + [anon_sym_BSLASHglsuservi] = ACTIONS(4841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4841), + [anon_sym_BSLASHnewacronym] = ACTIONS(4841), + [anon_sym_BSLASHacrshort] = ACTIONS(4841), + [anon_sym_BSLASHAcrshort] = ACTIONS(4841), + [anon_sym_BSLASHACRshort] = ACTIONS(4841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4841), + [anon_sym_BSLASHacrlong] = ACTIONS(4841), + [anon_sym_BSLASHAcrlong] = ACTIONS(4841), + [anon_sym_BSLASHACRlong] = ACTIONS(4841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4841), + [anon_sym_BSLASHacrfull] = ACTIONS(4841), + [anon_sym_BSLASHAcrfull] = ACTIONS(4841), + [anon_sym_BSLASHACRfull] = ACTIONS(4841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4841), + [anon_sym_BSLASHacs] = ACTIONS(4841), + [anon_sym_BSLASHAcs] = ACTIONS(4841), + [anon_sym_BSLASHacsp] = ACTIONS(4841), + [anon_sym_BSLASHAcsp] = ACTIONS(4841), + [anon_sym_BSLASHacl] = ACTIONS(4841), + [anon_sym_BSLASHAcl] = ACTIONS(4841), + [anon_sym_BSLASHaclp] = ACTIONS(4841), + [anon_sym_BSLASHAclp] = ACTIONS(4841), + [anon_sym_BSLASHacf] = ACTIONS(4841), + [anon_sym_BSLASHAcf] = ACTIONS(4841), + [anon_sym_BSLASHacfp] = ACTIONS(4841), + [anon_sym_BSLASHAcfp] = ACTIONS(4841), + [anon_sym_BSLASHac] = ACTIONS(4841), + [anon_sym_BSLASHAc] = ACTIONS(4841), + [anon_sym_BSLASHacp] = ACTIONS(4841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4841), + [anon_sym_BSLASHcolor] = ACTIONS(4841), + [anon_sym_BSLASHcolorbox] = ACTIONS(4841), + [anon_sym_BSLASHtextcolor] = ACTIONS(4841), + [anon_sym_BSLASHpagecolor] = ACTIONS(4841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4841), + [anon_sym_BSLASHtext] = ACTIONS(4841), + [anon_sym_BSLASHintertext] = ACTIONS(4841), + [anon_sym_shortintertext] = ACTIONS(4841), + }, + [654] = { + [sym_curly_group] = STATE(733), + [ts_builtin_sym_end] = ACTIONS(4843), + [sym_command_name] = ACTIONS(4845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4845), + [anon_sym_LPAREN] = ACTIONS(4843), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_RBRACK] = ACTIONS(4843), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_EQ] = ACTIONS(4843), + [anon_sym_BSLASHpart] = ACTIONS(4845), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddpart] = ACTIONS(4845), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4843), + [anon_sym_BSLASHchapter] = ACTIONS(4845), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddchap] = ACTIONS(4845), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsection] = ACTIONS(4845), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddsec] = ACTIONS(4845), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubsection] = ACTIONS(4845), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4845), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHparagraph] = ACTIONS(4845), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4845), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4843), + [anon_sym_BSLASHitem] = ACTIONS(4845), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4843), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(4843), + [sym_word] = ACTIONS(4845), + [sym_placeholder] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4845), + [anon_sym_SLASH] = ACTIONS(4845), + [anon_sym_CARET] = ACTIONS(4845), + [anon_sym__] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_BANG] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_COLON] = ACTIONS(4845), + [anon_sym_SQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4843), + [anon_sym_BSLASHbegin] = ACTIONS(4845), + [anon_sym_BSLASHusepackage] = ACTIONS(4845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4845), + [anon_sym_BSLASHinclude] = ACTIONS(4845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4845), + [anon_sym_BSLASHinput] = ACTIONS(4845), + [anon_sym_BSLASHsubfile] = ACTIONS(4845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4845), + [anon_sym_BSLASHbibliography] = ACTIONS(4845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4845), + [anon_sym_BSLASHincludesvg] = ACTIONS(4845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4845), + [anon_sym_BSLASHimport] = ACTIONS(4845), + [anon_sym_BSLASHsubimport] = ACTIONS(4845), + [anon_sym_BSLASHinputfrom] = ACTIONS(4845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4845), + [anon_sym_BSLASHincludefrom] = ACTIONS(4845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4845), + [anon_sym_BSLASHcaption] = ACTIONS(4845), + [anon_sym_BSLASHcite] = ACTIONS(4845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCite] = ACTIONS(4845), + [anon_sym_BSLASHnocite] = ACTIONS(4845), + [anon_sym_BSLASHcitet] = ACTIONS(4845), + [anon_sym_BSLASHcitep] = ACTIONS(4845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteauthor] = ACTIONS(4845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitetitle] = ACTIONS(4845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteyear] = ACTIONS(4845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitedate] = ACTIONS(4845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteurl] = ACTIONS(4845), + [anon_sym_BSLASHfullcite] = ACTIONS(4845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4845), + [anon_sym_BSLASHcitealt] = ACTIONS(4845), + [anon_sym_BSLASHcitealp] = ACTIONS(4845), + [anon_sym_BSLASHcitetext] = ACTIONS(4845), + [anon_sym_BSLASHparencite] = ACTIONS(4845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHParencite] = ACTIONS(4845), + [anon_sym_BSLASHfootcite] = ACTIONS(4845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4845), + [anon_sym_BSLASHtextcite] = ACTIONS(4845), + [anon_sym_BSLASHTextcite] = ACTIONS(4845), + [anon_sym_BSLASHsmartcite] = ACTIONS(4845), + [anon_sym_BSLASHSmartcite] = ACTIONS(4845), + [anon_sym_BSLASHsupercite] = ACTIONS(4845), + [anon_sym_BSLASHautocite] = ACTIONS(4845), + [anon_sym_BSLASHAutocite] = ACTIONS(4845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHvolcite] = ACTIONS(4845), + [anon_sym_BSLASHVolcite] = ACTIONS(4845), + [anon_sym_BSLASHpvolcite] = ACTIONS(4845), + [anon_sym_BSLASHPvolcite] = ACTIONS(4845), + [anon_sym_BSLASHfvolcite] = ACTIONS(4845), + [anon_sym_BSLASHftvolcite] = ACTIONS(4845), + [anon_sym_BSLASHsvolcite] = ACTIONS(4845), + [anon_sym_BSLASHSvolcite] = ACTIONS(4845), + [anon_sym_BSLASHtvolcite] = ACTIONS(4845), + [anon_sym_BSLASHTvolcite] = ACTIONS(4845), + [anon_sym_BSLASHavolcite] = ACTIONS(4845), + [anon_sym_BSLASHAvolcite] = ACTIONS(4845), + [anon_sym_BSLASHnotecite] = ACTIONS(4845), + [anon_sym_BSLASHNotecite] = ACTIONS(4845), + [anon_sym_BSLASHpnotecite] = ACTIONS(4845), + [anon_sym_BSLASHPnotecite] = ACTIONS(4845), + [anon_sym_BSLASHfnotecite] = ACTIONS(4845), + [anon_sym_BSLASHlabel] = ACTIONS(4845), + [anon_sym_BSLASHref] = ACTIONS(4845), + [anon_sym_BSLASHeqref] = ACTIONS(4845), + [anon_sym_BSLASHvref] = ACTIONS(4845), + [anon_sym_BSLASHVref] = ACTIONS(4845), + [anon_sym_BSLASHautoref] = ACTIONS(4845), + [anon_sym_BSLASHpageref] = ACTIONS(4845), + [anon_sym_BSLASHcref] = ACTIONS(4845), + [anon_sym_BSLASHCref] = ACTIONS(4845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4843), + [anon_sym_BSLASHnamecref] = ACTIONS(4845), + [anon_sym_BSLASHnameCref] = ACTIONS(4845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4845), + [anon_sym_BSLASHlabelcref] = ACTIONS(4845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4845), + [anon_sym_BSLASHcrefrange] = ACTIONS(4845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCrefrange] = ACTIONS(4845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4843), + [anon_sym_BSLASHnewlabel] = ACTIONS(4845), + [anon_sym_BSLASHnewcommand] = ACTIONS(4845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4843), + [anon_sym_BSLASHdef] = ACTIONS(4845), + [anon_sym_BSLASHlet] = ACTIONS(4845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4845), + [anon_sym_BSLASHgls] = ACTIONS(4845), + [anon_sym_BSLASHGls] = ACTIONS(4845), + [anon_sym_BSLASHGLS] = ACTIONS(4845), + [anon_sym_BSLASHglspl] = ACTIONS(4845), + [anon_sym_BSLASHGlspl] = ACTIONS(4845), + [anon_sym_BSLASHGLSpl] = ACTIONS(4845), + [anon_sym_BSLASHglsdisp] = ACTIONS(4845), + [anon_sym_BSLASHglslink] = ACTIONS(4845), + [anon_sym_BSLASHglstext] = ACTIONS(4845), + [anon_sym_BSLASHGlstext] = ACTIONS(4845), + [anon_sym_BSLASHGLStext] = ACTIONS(4845), + [anon_sym_BSLASHglsfirst] = ACTIONS(4845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4845), + [anon_sym_BSLASHglsplural] = ACTIONS(4845), + [anon_sym_BSLASHGlsplural] = ACTIONS(4845), + [anon_sym_BSLASHGLSplural] = ACTIONS(4845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHglsname] = ACTIONS(4845), + [anon_sym_BSLASHGlsname] = ACTIONS(4845), + [anon_sym_BSLASHGLSname] = ACTIONS(4845), + [anon_sym_BSLASHglssymbol] = ACTIONS(4845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4845), + [anon_sym_BSLASHglsdesc] = ACTIONS(4845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4845), + [anon_sym_BSLASHglsuseri] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4845), + [anon_sym_BSLASHglsuserii] = ACTIONS(4845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4845), + [anon_sym_BSLASHglsuserv] = ACTIONS(4845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4845), + [anon_sym_BSLASHglsuservi] = ACTIONS(4845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4845), + [anon_sym_BSLASHnewacronym] = ACTIONS(4845), + [anon_sym_BSLASHacrshort] = ACTIONS(4845), + [anon_sym_BSLASHAcrshort] = ACTIONS(4845), + [anon_sym_BSLASHACRshort] = ACTIONS(4845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4845), + [anon_sym_BSLASHacrlong] = ACTIONS(4845), + [anon_sym_BSLASHAcrlong] = ACTIONS(4845), + [anon_sym_BSLASHACRlong] = ACTIONS(4845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4845), + [anon_sym_BSLASHacrfull] = ACTIONS(4845), + [anon_sym_BSLASHAcrfull] = ACTIONS(4845), + [anon_sym_BSLASHACRfull] = ACTIONS(4845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4845), + [anon_sym_BSLASHacs] = ACTIONS(4845), + [anon_sym_BSLASHAcs] = ACTIONS(4845), + [anon_sym_BSLASHacsp] = ACTIONS(4845), + [anon_sym_BSLASHAcsp] = ACTIONS(4845), + [anon_sym_BSLASHacl] = ACTIONS(4845), + [anon_sym_BSLASHAcl] = ACTIONS(4845), + [anon_sym_BSLASHaclp] = ACTIONS(4845), + [anon_sym_BSLASHAclp] = ACTIONS(4845), + [anon_sym_BSLASHacf] = ACTIONS(4845), + [anon_sym_BSLASHAcf] = ACTIONS(4845), + [anon_sym_BSLASHacfp] = ACTIONS(4845), + [anon_sym_BSLASHAcfp] = ACTIONS(4845), + [anon_sym_BSLASHac] = ACTIONS(4845), + [anon_sym_BSLASHAc] = ACTIONS(4845), + [anon_sym_BSLASHacp] = ACTIONS(4845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4845), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4845), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4845), + [anon_sym_BSLASHcolor] = ACTIONS(4845), + [anon_sym_BSLASHcolorbox] = ACTIONS(4845), + [anon_sym_BSLASHtextcolor] = ACTIONS(4845), + [anon_sym_BSLASHpagecolor] = ACTIONS(4845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4845), + [anon_sym_BSLASHtext] = ACTIONS(4845), + [anon_sym_BSLASHintertext] = ACTIONS(4845), + [anon_sym_shortintertext] = ACTIONS(4845), + }, + [655] = { + [sym_curly_group] = STATE(670), + [ts_builtin_sym_end] = ACTIONS(4847), + [sym_command_name] = ACTIONS(4849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4849), + [anon_sym_LPAREN] = ACTIONS(4847), + [anon_sym_RPAREN] = ACTIONS(4847), + [anon_sym_LBRACK] = ACTIONS(4847), + [anon_sym_RBRACK] = ACTIONS(4847), + [anon_sym_COMMA] = ACTIONS(4847), + [anon_sym_EQ] = ACTIONS(4847), + [anon_sym_BSLASHpart] = ACTIONS(4849), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddpart] = ACTIONS(4849), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4847), + [anon_sym_BSLASHchapter] = ACTIONS(4849), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddchap] = ACTIONS(4849), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsection] = ACTIONS(4849), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddsec] = ACTIONS(4849), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubsection] = ACTIONS(4849), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4849), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHparagraph] = ACTIONS(4849), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4849), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4847), + [anon_sym_BSLASHitem] = ACTIONS(4849), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4847), + [anon_sym_LBRACE] = ACTIONS(45), + [anon_sym_RBRACE] = ACTIONS(4847), + [sym_word] = ACTIONS(4849), + [sym_placeholder] = ACTIONS(4847), + [anon_sym_PLUS] = ACTIONS(4849), + [anon_sym_DASH] = ACTIONS(4849), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_SLASH] = ACTIONS(4849), + [anon_sym_CARET] = ACTIONS(4849), + [anon_sym__] = ACTIONS(4849), + [anon_sym_LT] = ACTIONS(4849), + [anon_sym_GT] = ACTIONS(4849), + [anon_sym_BANG] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4849), + [anon_sym_COLON] = ACTIONS(4849), + [anon_sym_SQUOTE] = ACTIONS(4849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4847), + [anon_sym_DOLLAR] = ACTIONS(4849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4847), + [anon_sym_BSLASHbegin] = ACTIONS(4849), + [anon_sym_BSLASHusepackage] = ACTIONS(4849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4849), + [anon_sym_BSLASHinclude] = ACTIONS(4849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4849), + [anon_sym_BSLASHinput] = ACTIONS(4849), + [anon_sym_BSLASHsubfile] = ACTIONS(4849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4849), + [anon_sym_BSLASHbibliography] = ACTIONS(4849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4849), + [anon_sym_BSLASHincludesvg] = ACTIONS(4849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4849), + [anon_sym_BSLASHimport] = ACTIONS(4849), + [anon_sym_BSLASHsubimport] = ACTIONS(4849), + [anon_sym_BSLASHinputfrom] = ACTIONS(4849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4849), + [anon_sym_BSLASHincludefrom] = ACTIONS(4849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4849), + [anon_sym_BSLASHcaption] = ACTIONS(4849), + [anon_sym_BSLASHcite] = ACTIONS(4849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCite] = ACTIONS(4849), + [anon_sym_BSLASHnocite] = ACTIONS(4849), + [anon_sym_BSLASHcitet] = ACTIONS(4849), + [anon_sym_BSLASHcitep] = ACTIONS(4849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteauthor] = ACTIONS(4849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitetitle] = ACTIONS(4849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteyear] = ACTIONS(4849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitedate] = ACTIONS(4849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteurl] = ACTIONS(4849), + [anon_sym_BSLASHfullcite] = ACTIONS(4849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4849), + [anon_sym_BSLASHcitealt] = ACTIONS(4849), + [anon_sym_BSLASHcitealp] = ACTIONS(4849), + [anon_sym_BSLASHcitetext] = ACTIONS(4849), + [anon_sym_BSLASHparencite] = ACTIONS(4849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHParencite] = ACTIONS(4849), + [anon_sym_BSLASHfootcite] = ACTIONS(4849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4849), + [anon_sym_BSLASHtextcite] = ACTIONS(4849), + [anon_sym_BSLASHTextcite] = ACTIONS(4849), + [anon_sym_BSLASHsmartcite] = ACTIONS(4849), + [anon_sym_BSLASHSmartcite] = ACTIONS(4849), + [anon_sym_BSLASHsupercite] = ACTIONS(4849), + [anon_sym_BSLASHautocite] = ACTIONS(4849), + [anon_sym_BSLASHAutocite] = ACTIONS(4849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHvolcite] = ACTIONS(4849), + [anon_sym_BSLASHVolcite] = ACTIONS(4849), + [anon_sym_BSLASHpvolcite] = ACTIONS(4849), + [anon_sym_BSLASHPvolcite] = ACTIONS(4849), + [anon_sym_BSLASHfvolcite] = ACTIONS(4849), + [anon_sym_BSLASHftvolcite] = ACTIONS(4849), + [anon_sym_BSLASHsvolcite] = ACTIONS(4849), + [anon_sym_BSLASHSvolcite] = ACTIONS(4849), + [anon_sym_BSLASHtvolcite] = ACTIONS(4849), + [anon_sym_BSLASHTvolcite] = ACTIONS(4849), + [anon_sym_BSLASHavolcite] = ACTIONS(4849), + [anon_sym_BSLASHAvolcite] = ACTIONS(4849), + [anon_sym_BSLASHnotecite] = ACTIONS(4849), + [anon_sym_BSLASHNotecite] = ACTIONS(4849), + [anon_sym_BSLASHpnotecite] = ACTIONS(4849), + [anon_sym_BSLASHPnotecite] = ACTIONS(4849), + [anon_sym_BSLASHfnotecite] = ACTIONS(4849), + [anon_sym_BSLASHlabel] = ACTIONS(4849), + [anon_sym_BSLASHref] = ACTIONS(4849), + [anon_sym_BSLASHeqref] = ACTIONS(4849), + [anon_sym_BSLASHvref] = ACTIONS(4849), + [anon_sym_BSLASHVref] = ACTIONS(4849), + [anon_sym_BSLASHautoref] = ACTIONS(4849), + [anon_sym_BSLASHpageref] = ACTIONS(4849), + [anon_sym_BSLASHcref] = ACTIONS(4849), + [anon_sym_BSLASHCref] = ACTIONS(4849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4847), + [anon_sym_BSLASHnamecref] = ACTIONS(4849), + [anon_sym_BSLASHnameCref] = ACTIONS(4849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4849), + [anon_sym_BSLASHlabelcref] = ACTIONS(4849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4849), + [anon_sym_BSLASHcrefrange] = ACTIONS(4849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCrefrange] = ACTIONS(4849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4847), + [anon_sym_BSLASHnewlabel] = ACTIONS(4849), + [anon_sym_BSLASHnewcommand] = ACTIONS(4849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4847), + [anon_sym_BSLASHdef] = ACTIONS(4849), + [anon_sym_BSLASHlet] = ACTIONS(4849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4849), + [anon_sym_BSLASHgls] = ACTIONS(4849), + [anon_sym_BSLASHGls] = ACTIONS(4849), + [anon_sym_BSLASHGLS] = ACTIONS(4849), + [anon_sym_BSLASHglspl] = ACTIONS(4849), + [anon_sym_BSLASHGlspl] = ACTIONS(4849), + [anon_sym_BSLASHGLSpl] = ACTIONS(4849), + [anon_sym_BSLASHglsdisp] = ACTIONS(4849), + [anon_sym_BSLASHglslink] = ACTIONS(4849), + [anon_sym_BSLASHglstext] = ACTIONS(4849), + [anon_sym_BSLASHGlstext] = ACTIONS(4849), + [anon_sym_BSLASHGLStext] = ACTIONS(4849), + [anon_sym_BSLASHglsfirst] = ACTIONS(4849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4849), + [anon_sym_BSLASHglsplural] = ACTIONS(4849), + [anon_sym_BSLASHGlsplural] = ACTIONS(4849), + [anon_sym_BSLASHGLSplural] = ACTIONS(4849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHglsname] = ACTIONS(4849), + [anon_sym_BSLASHGlsname] = ACTIONS(4849), + [anon_sym_BSLASHGLSname] = ACTIONS(4849), + [anon_sym_BSLASHglssymbol] = ACTIONS(4849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4849), + [anon_sym_BSLASHglsdesc] = ACTIONS(4849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4849), + [anon_sym_BSLASHglsuseri] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4849), + [anon_sym_BSLASHglsuserii] = ACTIONS(4849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4849), + [anon_sym_BSLASHglsuserv] = ACTIONS(4849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4849), + [anon_sym_BSLASHglsuservi] = ACTIONS(4849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4849), + [anon_sym_BSLASHnewacronym] = ACTIONS(4849), + [anon_sym_BSLASHacrshort] = ACTIONS(4849), + [anon_sym_BSLASHAcrshort] = ACTIONS(4849), + [anon_sym_BSLASHACRshort] = ACTIONS(4849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4849), + [anon_sym_BSLASHacrlong] = ACTIONS(4849), + [anon_sym_BSLASHAcrlong] = ACTIONS(4849), + [anon_sym_BSLASHACRlong] = ACTIONS(4849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4849), + [anon_sym_BSLASHacrfull] = ACTIONS(4849), + [anon_sym_BSLASHAcrfull] = ACTIONS(4849), + [anon_sym_BSLASHACRfull] = ACTIONS(4849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4849), + [anon_sym_BSLASHacs] = ACTIONS(4849), + [anon_sym_BSLASHAcs] = ACTIONS(4849), + [anon_sym_BSLASHacsp] = ACTIONS(4849), + [anon_sym_BSLASHAcsp] = ACTIONS(4849), + [anon_sym_BSLASHacl] = ACTIONS(4849), + [anon_sym_BSLASHAcl] = ACTIONS(4849), + [anon_sym_BSLASHaclp] = ACTIONS(4849), + [anon_sym_BSLASHAclp] = ACTIONS(4849), + [anon_sym_BSLASHacf] = ACTIONS(4849), + [anon_sym_BSLASHAcf] = ACTIONS(4849), + [anon_sym_BSLASHacfp] = ACTIONS(4849), + [anon_sym_BSLASHAcfp] = ACTIONS(4849), + [anon_sym_BSLASHac] = ACTIONS(4849), + [anon_sym_BSLASHAc] = ACTIONS(4849), + [anon_sym_BSLASHacp] = ACTIONS(4849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4849), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4849), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4849), + [anon_sym_BSLASHcolor] = ACTIONS(4849), + [anon_sym_BSLASHcolorbox] = ACTIONS(4849), + [anon_sym_BSLASHtextcolor] = ACTIONS(4849), + [anon_sym_BSLASHpagecolor] = ACTIONS(4849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4849), + [anon_sym_BSLASHtext] = ACTIONS(4849), + [anon_sym_BSLASHintertext] = ACTIONS(4849), + [anon_sym_shortintertext] = ACTIONS(4849), + }, + [656] = { + [sym_brack_group_text] = STATE(731), + [ts_builtin_sym_end] = ACTIONS(4851), + [sym_command_name] = ACTIONS(4853), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4851), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4851), + [anon_sym_COMMA] = ACTIONS(4851), + [anon_sym_EQ] = ACTIONS(4851), + [anon_sym_BSLASHpart] = ACTIONS(4853), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddpart] = ACTIONS(4853), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4851), + [anon_sym_BSLASHchapter] = ACTIONS(4853), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddchap] = ACTIONS(4853), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsection] = ACTIONS(4853), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddsec] = ACTIONS(4853), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubsection] = ACTIONS(4853), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4853), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHparagraph] = ACTIONS(4853), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4853), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4851), + [anon_sym_BSLASHitem] = ACTIONS(4853), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4851), + [anon_sym_LBRACE] = ACTIONS(4851), + [anon_sym_RBRACE] = ACTIONS(4851), + [sym_word] = ACTIONS(4853), + [sym_placeholder] = ACTIONS(4851), + [anon_sym_PLUS] = ACTIONS(4853), + [anon_sym_DASH] = ACTIONS(4853), + [anon_sym_STAR] = ACTIONS(4853), + [anon_sym_SLASH] = ACTIONS(4853), + [anon_sym_CARET] = ACTIONS(4853), + [anon_sym__] = ACTIONS(4853), + [anon_sym_LT] = ACTIONS(4853), + [anon_sym_GT] = ACTIONS(4853), + [anon_sym_BANG] = ACTIONS(4853), + [anon_sym_PIPE] = ACTIONS(4853), + [anon_sym_COLON] = ACTIONS(4853), + [anon_sym_SQUOTE] = ACTIONS(4853), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4851), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4853), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4851), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4851), + [anon_sym_BSLASHbegin] = ACTIONS(4853), + [anon_sym_BSLASHusepackage] = ACTIONS(4853), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), + [anon_sym_BSLASHinclude] = ACTIONS(4853), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), + [anon_sym_BSLASHinput] = ACTIONS(4853), + [anon_sym_BSLASHsubfile] = ACTIONS(4853), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), + [anon_sym_BSLASHbibliography] = ACTIONS(4853), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), + [anon_sym_BSLASHincludesvg] = ACTIONS(4853), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), + [anon_sym_BSLASHimport] = ACTIONS(4853), + [anon_sym_BSLASHsubimport] = ACTIONS(4853), + [anon_sym_BSLASHinputfrom] = ACTIONS(4853), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), + [anon_sym_BSLASHincludefrom] = ACTIONS(4853), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), + [anon_sym_BSLASHcaption] = ACTIONS(4853), + [anon_sym_BSLASHcite] = ACTIONS(4853), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCite] = ACTIONS(4853), + [anon_sym_BSLASHnocite] = ACTIONS(4853), + [anon_sym_BSLASHcitet] = ACTIONS(4853), + [anon_sym_BSLASHcitep] = ACTIONS(4853), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteauthor] = ACTIONS(4853), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitetitle] = ACTIONS(4853), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteyear] = ACTIONS(4853), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitedate] = ACTIONS(4853), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteurl] = ACTIONS(4853), + [anon_sym_BSLASHfullcite] = ACTIONS(4853), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), + [anon_sym_BSLASHcitealt] = ACTIONS(4853), + [anon_sym_BSLASHcitealp] = ACTIONS(4853), + [anon_sym_BSLASHcitetext] = ACTIONS(4853), + [anon_sym_BSLASHparencite] = ACTIONS(4853), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHParencite] = ACTIONS(4853), + [anon_sym_BSLASHfootcite] = ACTIONS(4853), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), + [anon_sym_BSLASHtextcite] = ACTIONS(4853), + [anon_sym_BSLASHTextcite] = ACTIONS(4853), + [anon_sym_BSLASHsmartcite] = ACTIONS(4853), + [anon_sym_BSLASHSmartcite] = ACTIONS(4853), + [anon_sym_BSLASHsupercite] = ACTIONS(4853), + [anon_sym_BSLASHautocite] = ACTIONS(4853), + [anon_sym_BSLASHAutocite] = ACTIONS(4853), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHvolcite] = ACTIONS(4853), + [anon_sym_BSLASHVolcite] = ACTIONS(4853), + [anon_sym_BSLASHpvolcite] = ACTIONS(4853), + [anon_sym_BSLASHPvolcite] = ACTIONS(4853), + [anon_sym_BSLASHfvolcite] = ACTIONS(4853), + [anon_sym_BSLASHftvolcite] = ACTIONS(4853), + [anon_sym_BSLASHsvolcite] = ACTIONS(4853), + [anon_sym_BSLASHSvolcite] = ACTIONS(4853), + [anon_sym_BSLASHtvolcite] = ACTIONS(4853), + [anon_sym_BSLASHTvolcite] = ACTIONS(4853), + [anon_sym_BSLASHavolcite] = ACTIONS(4853), + [anon_sym_BSLASHAvolcite] = ACTIONS(4853), + [anon_sym_BSLASHnotecite] = ACTIONS(4853), + [anon_sym_BSLASHNotecite] = ACTIONS(4853), + [anon_sym_BSLASHpnotecite] = ACTIONS(4853), + [anon_sym_BSLASHPnotecite] = ACTIONS(4853), + [anon_sym_BSLASHfnotecite] = ACTIONS(4853), + [anon_sym_BSLASHlabel] = ACTIONS(4853), + [anon_sym_BSLASHref] = ACTIONS(4853), + [anon_sym_BSLASHeqref] = ACTIONS(4853), + [anon_sym_BSLASHvref] = ACTIONS(4853), + [anon_sym_BSLASHVref] = ACTIONS(4853), + [anon_sym_BSLASHautoref] = ACTIONS(4853), + [anon_sym_BSLASHpageref] = ACTIONS(4853), + [anon_sym_BSLASHcref] = ACTIONS(4853), + [anon_sym_BSLASHCref] = ACTIONS(4853), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), + [anon_sym_BSLASHnamecref] = ACTIONS(4853), + [anon_sym_BSLASHnameCref] = ACTIONS(4853), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), + [anon_sym_BSLASHlabelcref] = ACTIONS(4853), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), + [anon_sym_BSLASHcrefrange] = ACTIONS(4853), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCrefrange] = ACTIONS(4853), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), + [anon_sym_BSLASHnewlabel] = ACTIONS(4853), + [anon_sym_BSLASHnewcommand] = ACTIONS(4853), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), + [anon_sym_BSLASHdef] = ACTIONS(4853), + [anon_sym_BSLASHlet] = ACTIONS(4853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), + [anon_sym_BSLASHgls] = ACTIONS(4853), + [anon_sym_BSLASHGls] = ACTIONS(4853), + [anon_sym_BSLASHGLS] = ACTIONS(4853), + [anon_sym_BSLASHglspl] = ACTIONS(4853), + [anon_sym_BSLASHGlspl] = ACTIONS(4853), + [anon_sym_BSLASHGLSpl] = ACTIONS(4853), + [anon_sym_BSLASHglsdisp] = ACTIONS(4853), + [anon_sym_BSLASHglslink] = ACTIONS(4853), + [anon_sym_BSLASHglstext] = ACTIONS(4853), + [anon_sym_BSLASHGlstext] = ACTIONS(4853), + [anon_sym_BSLASHGLStext] = ACTIONS(4853), + [anon_sym_BSLASHglsfirst] = ACTIONS(4853), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), + [anon_sym_BSLASHglsplural] = ACTIONS(4853), + [anon_sym_BSLASHGlsplural] = ACTIONS(4853), + [anon_sym_BSLASHGLSplural] = ACTIONS(4853), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHglsname] = ACTIONS(4853), + [anon_sym_BSLASHGlsname] = ACTIONS(4853), + [anon_sym_BSLASHGLSname] = ACTIONS(4853), + [anon_sym_BSLASHglssymbol] = ACTIONS(4853), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), + [anon_sym_BSLASHglsdesc] = ACTIONS(4853), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), + [anon_sym_BSLASHglsuseri] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), + [anon_sym_BSLASHglsuserii] = ACTIONS(4853), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), + [anon_sym_BSLASHglsuserv] = ACTIONS(4853), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), + [anon_sym_BSLASHglsuservi] = ACTIONS(4853), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), + [anon_sym_BSLASHnewacronym] = ACTIONS(4853), + [anon_sym_BSLASHacrshort] = ACTIONS(4853), + [anon_sym_BSLASHAcrshort] = ACTIONS(4853), + [anon_sym_BSLASHACRshort] = ACTIONS(4853), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), + [anon_sym_BSLASHacrlong] = ACTIONS(4853), + [anon_sym_BSLASHAcrlong] = ACTIONS(4853), + [anon_sym_BSLASHACRlong] = ACTIONS(4853), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), + [anon_sym_BSLASHacrfull] = ACTIONS(4853), + [anon_sym_BSLASHAcrfull] = ACTIONS(4853), + [anon_sym_BSLASHACRfull] = ACTIONS(4853), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), + [anon_sym_BSLASHacs] = ACTIONS(4853), + [anon_sym_BSLASHAcs] = ACTIONS(4853), + [anon_sym_BSLASHacsp] = ACTIONS(4853), + [anon_sym_BSLASHAcsp] = ACTIONS(4853), + [anon_sym_BSLASHacl] = ACTIONS(4853), + [anon_sym_BSLASHAcl] = ACTIONS(4853), + [anon_sym_BSLASHaclp] = ACTIONS(4853), + [anon_sym_BSLASHAclp] = ACTIONS(4853), + [anon_sym_BSLASHacf] = ACTIONS(4853), + [anon_sym_BSLASHAcf] = ACTIONS(4853), + [anon_sym_BSLASHacfp] = ACTIONS(4853), + [anon_sym_BSLASHAcfp] = ACTIONS(4853), + [anon_sym_BSLASHac] = ACTIONS(4853), + [anon_sym_BSLASHAc] = ACTIONS(4853), + [anon_sym_BSLASHacp] = ACTIONS(4853), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), + [anon_sym_BSLASHcolor] = ACTIONS(4853), + [anon_sym_BSLASHcolorbox] = ACTIONS(4853), + [anon_sym_BSLASHtextcolor] = ACTIONS(4853), + [anon_sym_BSLASHpagecolor] = ACTIONS(4853), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), + [anon_sym_BSLASHtext] = ACTIONS(4853), + [anon_sym_BSLASHintertext] = ACTIONS(4853), + [anon_sym_shortintertext] = ACTIONS(4853), + }, + [657] = { + [sym_brack_group_text] = STATE(775), + [ts_builtin_sym_end] = ACTIONS(4855), + [sym_command_name] = ACTIONS(4857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4857), + [anon_sym_LPAREN] = ACTIONS(4855), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4855), + [anon_sym_COMMA] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4855), + [anon_sym_BSLASHpart] = ACTIONS(4857), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddpart] = ACTIONS(4857), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4855), + [anon_sym_BSLASHchapter] = ACTIONS(4857), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddchap] = ACTIONS(4857), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsection] = ACTIONS(4857), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddsec] = ACTIONS(4857), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubsection] = ACTIONS(4857), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4857), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHparagraph] = ACTIONS(4857), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4857), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4855), + [anon_sym_BSLASHitem] = ACTIONS(4857), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4855), + [anon_sym_LBRACE] = ACTIONS(4855), + [anon_sym_RBRACE] = ACTIONS(4855), + [sym_word] = ACTIONS(4857), + [sym_placeholder] = ACTIONS(4855), + [anon_sym_PLUS] = ACTIONS(4857), + [anon_sym_DASH] = ACTIONS(4857), + [anon_sym_STAR] = ACTIONS(4857), + [anon_sym_SLASH] = ACTIONS(4857), + [anon_sym_CARET] = ACTIONS(4857), + [anon_sym__] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_BANG] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_COLON] = ACTIONS(4857), + [anon_sym_SQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), + [anon_sym_BSLASHbegin] = ACTIONS(4857), + [anon_sym_BSLASHusepackage] = ACTIONS(4857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), + [anon_sym_BSLASHinclude] = ACTIONS(4857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), + [anon_sym_BSLASHinput] = ACTIONS(4857), + [anon_sym_BSLASHsubfile] = ACTIONS(4857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), + [anon_sym_BSLASHbibliography] = ACTIONS(4857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), + [anon_sym_BSLASHincludesvg] = ACTIONS(4857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), + [anon_sym_BSLASHimport] = ACTIONS(4857), + [anon_sym_BSLASHsubimport] = ACTIONS(4857), + [anon_sym_BSLASHinputfrom] = ACTIONS(4857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), + [anon_sym_BSLASHincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHcaption] = ACTIONS(4857), + [anon_sym_BSLASHcite] = ACTIONS(4857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCite] = ACTIONS(4857), + [anon_sym_BSLASHnocite] = ACTIONS(4857), + [anon_sym_BSLASHcitet] = ACTIONS(4857), + [anon_sym_BSLASHcitep] = ACTIONS(4857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteauthor] = ACTIONS(4857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitetitle] = ACTIONS(4857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteyear] = ACTIONS(4857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitedate] = ACTIONS(4857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteurl] = ACTIONS(4857), + [anon_sym_BSLASHfullcite] = ACTIONS(4857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), + [anon_sym_BSLASHcitealt] = ACTIONS(4857), + [anon_sym_BSLASHcitealp] = ACTIONS(4857), + [anon_sym_BSLASHcitetext] = ACTIONS(4857), + [anon_sym_BSLASHparencite] = ACTIONS(4857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHParencite] = ACTIONS(4857), + [anon_sym_BSLASHfootcite] = ACTIONS(4857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), + [anon_sym_BSLASHtextcite] = ACTIONS(4857), + [anon_sym_BSLASHTextcite] = ACTIONS(4857), + [anon_sym_BSLASHsmartcite] = ACTIONS(4857), + [anon_sym_BSLASHSmartcite] = ACTIONS(4857), + [anon_sym_BSLASHsupercite] = ACTIONS(4857), + [anon_sym_BSLASHautocite] = ACTIONS(4857), + [anon_sym_BSLASHAutocite] = ACTIONS(4857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHvolcite] = ACTIONS(4857), + [anon_sym_BSLASHVolcite] = ACTIONS(4857), + [anon_sym_BSLASHpvolcite] = ACTIONS(4857), + [anon_sym_BSLASHPvolcite] = ACTIONS(4857), + [anon_sym_BSLASHfvolcite] = ACTIONS(4857), + [anon_sym_BSLASHftvolcite] = ACTIONS(4857), + [anon_sym_BSLASHsvolcite] = ACTIONS(4857), + [anon_sym_BSLASHSvolcite] = ACTIONS(4857), + [anon_sym_BSLASHtvolcite] = ACTIONS(4857), + [anon_sym_BSLASHTvolcite] = ACTIONS(4857), + [anon_sym_BSLASHavolcite] = ACTIONS(4857), + [anon_sym_BSLASHAvolcite] = ACTIONS(4857), + [anon_sym_BSLASHnotecite] = ACTIONS(4857), + [anon_sym_BSLASHNotecite] = ACTIONS(4857), + [anon_sym_BSLASHpnotecite] = ACTIONS(4857), + [anon_sym_BSLASHPnotecite] = ACTIONS(4857), + [anon_sym_BSLASHfnotecite] = ACTIONS(4857), + [anon_sym_BSLASHlabel] = ACTIONS(4857), + [anon_sym_BSLASHref] = ACTIONS(4857), + [anon_sym_BSLASHeqref] = ACTIONS(4857), + [anon_sym_BSLASHvref] = ACTIONS(4857), + [anon_sym_BSLASHVref] = ACTIONS(4857), + [anon_sym_BSLASHautoref] = ACTIONS(4857), + [anon_sym_BSLASHpageref] = ACTIONS(4857), + [anon_sym_BSLASHcref] = ACTIONS(4857), + [anon_sym_BSLASHCref] = ACTIONS(4857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnameCref] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHlabelcref] = ACTIONS(4857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCrefrange] = ACTIONS(4857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnewlabel] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), + [anon_sym_BSLASHdef] = ACTIONS(4857), + [anon_sym_BSLASHlet] = ACTIONS(4857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), + [anon_sym_BSLASHgls] = ACTIONS(4857), + [anon_sym_BSLASHGls] = ACTIONS(4857), + [anon_sym_BSLASHGLS] = ACTIONS(4857), + [anon_sym_BSLASHglspl] = ACTIONS(4857), + [anon_sym_BSLASHGlspl] = ACTIONS(4857), + [anon_sym_BSLASHGLSpl] = ACTIONS(4857), + [anon_sym_BSLASHglsdisp] = ACTIONS(4857), + [anon_sym_BSLASHglslink] = ACTIONS(4857), + [anon_sym_BSLASHglstext] = ACTIONS(4857), + [anon_sym_BSLASHGlstext] = ACTIONS(4857), + [anon_sym_BSLASHGLStext] = ACTIONS(4857), + [anon_sym_BSLASHglsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), + [anon_sym_BSLASHglsplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSplural] = ACTIONS(4857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHglsname] = ACTIONS(4857), + [anon_sym_BSLASHGlsname] = ACTIONS(4857), + [anon_sym_BSLASHGLSname] = ACTIONS(4857), + [anon_sym_BSLASHglssymbol] = ACTIONS(4857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), + [anon_sym_BSLASHglsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), + [anon_sym_BSLASHglsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), + [anon_sym_BSLASHglsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), + [anon_sym_BSLASHglsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), + [anon_sym_BSLASHglsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), + [anon_sym_BSLASHnewacronym] = ACTIONS(4857), + [anon_sym_BSLASHacrshort] = ACTIONS(4857), + [anon_sym_BSLASHAcrshort] = ACTIONS(4857), + [anon_sym_BSLASHACRshort] = ACTIONS(4857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), + [anon_sym_BSLASHacrlong] = ACTIONS(4857), + [anon_sym_BSLASHAcrlong] = ACTIONS(4857), + [anon_sym_BSLASHACRlong] = ACTIONS(4857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), + [anon_sym_BSLASHacrfull] = ACTIONS(4857), + [anon_sym_BSLASHAcrfull] = ACTIONS(4857), + [anon_sym_BSLASHACRfull] = ACTIONS(4857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), + [anon_sym_BSLASHacs] = ACTIONS(4857), + [anon_sym_BSLASHAcs] = ACTIONS(4857), + [anon_sym_BSLASHacsp] = ACTIONS(4857), + [anon_sym_BSLASHAcsp] = ACTIONS(4857), + [anon_sym_BSLASHacl] = ACTIONS(4857), + [anon_sym_BSLASHAcl] = ACTIONS(4857), + [anon_sym_BSLASHaclp] = ACTIONS(4857), + [anon_sym_BSLASHAclp] = ACTIONS(4857), + [anon_sym_BSLASHacf] = ACTIONS(4857), + [anon_sym_BSLASHAcf] = ACTIONS(4857), + [anon_sym_BSLASHacfp] = ACTIONS(4857), + [anon_sym_BSLASHAcfp] = ACTIONS(4857), + [anon_sym_BSLASHac] = ACTIONS(4857), + [anon_sym_BSLASHAc] = ACTIONS(4857), + [anon_sym_BSLASHacp] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), + [anon_sym_BSLASHcolor] = ACTIONS(4857), + [anon_sym_BSLASHcolorbox] = ACTIONS(4857), + [anon_sym_BSLASHtextcolor] = ACTIONS(4857), + [anon_sym_BSLASHpagecolor] = ACTIONS(4857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), + [anon_sym_BSLASHtext] = ACTIONS(4857), + [anon_sym_BSLASHintertext] = ACTIONS(4857), + [anon_sym_shortintertext] = ACTIONS(4857), + }, + [658] = { + [sym_curly_group] = STATE(742), + [sym_brack_group_text] = STATE(1979), + [sym_command_name] = ACTIONS(4691), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4691), + [anon_sym_LPAREN] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4689), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4689), + [anon_sym_COMMA] = ACTIONS(4689), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_BSLASHpart] = ACTIONS(4691), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddpart] = ACTIONS(4691), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), + [anon_sym_BSLASHchapter] = ACTIONS(4691), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddchap] = ACTIONS(4691), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsection] = ACTIONS(4691), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddsec] = ACTIONS(4691), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubsection] = ACTIONS(4691), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHparagraph] = ACTIONS(4691), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), + [anon_sym_BSLASHitem] = ACTIONS(4691), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(4691), + [sym_placeholder] = ACTIONS(4689), + [anon_sym_PLUS] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(4691), + [anon_sym_STAR] = ACTIONS(4691), + [anon_sym_SLASH] = ACTIONS(4691), + [anon_sym_CARET] = ACTIONS(4691), + [anon_sym__] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4691), + [anon_sym_GT] = ACTIONS(4691), + [anon_sym_BANG] = ACTIONS(4691), + [anon_sym_PIPE] = ACTIONS(4691), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_SQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), + [anon_sym_DOLLAR] = ACTIONS(4691), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), + [anon_sym_BSLASHbegin] = ACTIONS(4691), + [anon_sym_BSLASHend] = ACTIONS(4691), + [anon_sym_BSLASHusepackage] = ACTIONS(4691), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), + [anon_sym_BSLASHinclude] = ACTIONS(4691), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), + [anon_sym_BSLASHinput] = ACTIONS(4691), + [anon_sym_BSLASHsubfile] = ACTIONS(4691), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), + [anon_sym_BSLASHbibliography] = ACTIONS(4691), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), + [anon_sym_BSLASHincludesvg] = ACTIONS(4691), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), + [anon_sym_BSLASHimport] = ACTIONS(4691), + [anon_sym_BSLASHsubimport] = ACTIONS(4691), + [anon_sym_BSLASHinputfrom] = ACTIONS(4691), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), + [anon_sym_BSLASHincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHcaption] = ACTIONS(4691), + [anon_sym_BSLASHcite] = ACTIONS(4691), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCite] = ACTIONS(4691), + [anon_sym_BSLASHnocite] = ACTIONS(4691), + [anon_sym_BSLASHcitet] = ACTIONS(4691), + [anon_sym_BSLASHcitep] = ACTIONS(4691), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteauthor] = ACTIONS(4691), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitetitle] = ACTIONS(4691), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteyear] = ACTIONS(4691), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitedate] = ACTIONS(4691), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteurl] = ACTIONS(4691), + [anon_sym_BSLASHfullcite] = ACTIONS(4691), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), + [anon_sym_BSLASHcitealt] = ACTIONS(4691), + [anon_sym_BSLASHcitealp] = ACTIONS(4691), + [anon_sym_BSLASHcitetext] = ACTIONS(4691), + [anon_sym_BSLASHparencite] = ACTIONS(4691), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHParencite] = ACTIONS(4691), + [anon_sym_BSLASHfootcite] = ACTIONS(4691), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), + [anon_sym_BSLASHtextcite] = ACTIONS(4691), + [anon_sym_BSLASHTextcite] = ACTIONS(4691), + [anon_sym_BSLASHsmartcite] = ACTIONS(4691), + [anon_sym_BSLASHSmartcite] = ACTIONS(4691), + [anon_sym_BSLASHsupercite] = ACTIONS(4691), + [anon_sym_BSLASHautocite] = ACTIONS(4691), + [anon_sym_BSLASHAutocite] = ACTIONS(4691), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHvolcite] = ACTIONS(4691), + [anon_sym_BSLASHVolcite] = ACTIONS(4691), + [anon_sym_BSLASHpvolcite] = ACTIONS(4691), + [anon_sym_BSLASHPvolcite] = ACTIONS(4691), + [anon_sym_BSLASHfvolcite] = ACTIONS(4691), + [anon_sym_BSLASHftvolcite] = ACTIONS(4691), + [anon_sym_BSLASHsvolcite] = ACTIONS(4691), + [anon_sym_BSLASHSvolcite] = ACTIONS(4691), + [anon_sym_BSLASHtvolcite] = ACTIONS(4691), + [anon_sym_BSLASHTvolcite] = ACTIONS(4691), + [anon_sym_BSLASHavolcite] = ACTIONS(4691), + [anon_sym_BSLASHAvolcite] = ACTIONS(4691), + [anon_sym_BSLASHnotecite] = ACTIONS(4691), + [anon_sym_BSLASHNotecite] = ACTIONS(4691), + [anon_sym_BSLASHpnotecite] = ACTIONS(4691), + [anon_sym_BSLASHPnotecite] = ACTIONS(4691), + [anon_sym_BSLASHfnotecite] = ACTIONS(4691), + [anon_sym_BSLASHlabel] = ACTIONS(4691), + [anon_sym_BSLASHref] = ACTIONS(4691), + [anon_sym_BSLASHeqref] = ACTIONS(4691), + [anon_sym_BSLASHvref] = ACTIONS(4691), + [anon_sym_BSLASHVref] = ACTIONS(4691), + [anon_sym_BSLASHautoref] = ACTIONS(4691), + [anon_sym_BSLASHpageref] = ACTIONS(4691), + [anon_sym_BSLASHcref] = ACTIONS(4691), + [anon_sym_BSLASHCref] = ACTIONS(4691), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnameCref] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHlabelcref] = ACTIONS(4691), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCrefrange] = ACTIONS(4691), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnewlabel] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), + [anon_sym_BSLASHdef] = ACTIONS(4691), + [anon_sym_BSLASHlet] = ACTIONS(4691), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), + [anon_sym_BSLASHgls] = ACTIONS(4691), + [anon_sym_BSLASHGls] = ACTIONS(4691), + [anon_sym_BSLASHGLS] = ACTIONS(4691), + [anon_sym_BSLASHglspl] = ACTIONS(4691), + [anon_sym_BSLASHGlspl] = ACTIONS(4691), + [anon_sym_BSLASHGLSpl] = ACTIONS(4691), + [anon_sym_BSLASHglsdisp] = ACTIONS(4691), + [anon_sym_BSLASHglslink] = ACTIONS(4691), + [anon_sym_BSLASHglstext] = ACTIONS(4691), + [anon_sym_BSLASHGlstext] = ACTIONS(4691), + [anon_sym_BSLASHGLStext] = ACTIONS(4691), + [anon_sym_BSLASHglsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), + [anon_sym_BSLASHglsplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSplural] = ACTIONS(4691), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHglsname] = ACTIONS(4691), + [anon_sym_BSLASHGlsname] = ACTIONS(4691), + [anon_sym_BSLASHGLSname] = ACTIONS(4691), + [anon_sym_BSLASHglssymbol] = ACTIONS(4691), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), + [anon_sym_BSLASHglsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), + [anon_sym_BSLASHglsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), + [anon_sym_BSLASHglsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), + [anon_sym_BSLASHglsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), + [anon_sym_BSLASHglsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), + [anon_sym_BSLASHnewacronym] = ACTIONS(4691), + [anon_sym_BSLASHacrshort] = ACTIONS(4691), + [anon_sym_BSLASHAcrshort] = ACTIONS(4691), + [anon_sym_BSLASHACRshort] = ACTIONS(4691), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), + [anon_sym_BSLASHacrlong] = ACTIONS(4691), + [anon_sym_BSLASHAcrlong] = ACTIONS(4691), + [anon_sym_BSLASHACRlong] = ACTIONS(4691), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), + [anon_sym_BSLASHacrfull] = ACTIONS(4691), + [anon_sym_BSLASHAcrfull] = ACTIONS(4691), + [anon_sym_BSLASHACRfull] = ACTIONS(4691), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), + [anon_sym_BSLASHacs] = ACTIONS(4691), + [anon_sym_BSLASHAcs] = ACTIONS(4691), + [anon_sym_BSLASHacsp] = ACTIONS(4691), + [anon_sym_BSLASHAcsp] = ACTIONS(4691), + [anon_sym_BSLASHacl] = ACTIONS(4691), + [anon_sym_BSLASHAcl] = ACTIONS(4691), + [anon_sym_BSLASHaclp] = ACTIONS(4691), + [anon_sym_BSLASHAclp] = ACTIONS(4691), + [anon_sym_BSLASHacf] = ACTIONS(4691), + [anon_sym_BSLASHAcf] = ACTIONS(4691), + [anon_sym_BSLASHacfp] = ACTIONS(4691), + [anon_sym_BSLASHAcfp] = ACTIONS(4691), + [anon_sym_BSLASHac] = ACTIONS(4691), + [anon_sym_BSLASHAc] = ACTIONS(4691), + [anon_sym_BSLASHacp] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), + [anon_sym_BSLASHcolor] = ACTIONS(4691), + [anon_sym_BSLASHcolorbox] = ACTIONS(4691), + [anon_sym_BSLASHtextcolor] = ACTIONS(4691), + [anon_sym_BSLASHpagecolor] = ACTIONS(4691), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), + [anon_sym_BSLASHtext] = ACTIONS(4691), + [anon_sym_BSLASHintertext] = ACTIONS(4691), + [anon_sym_shortintertext] = ACTIONS(4691), + }, + [659] = { + [sym_curly_group] = STATE(817), + [sym_brack_group_text] = STATE(1805), + [sym_command_name] = ACTIONS(4691), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4691), + [anon_sym_LPAREN] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4689), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4689), + [anon_sym_COMMA] = ACTIONS(4689), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_BSLASHpart] = ACTIONS(4691), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddpart] = ACTIONS(4691), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), + [anon_sym_BSLASHchapter] = ACTIONS(4691), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddchap] = ACTIONS(4691), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsection] = ACTIONS(4691), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddsec] = ACTIONS(4691), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubsection] = ACTIONS(4691), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHparagraph] = ACTIONS(4691), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), + [anon_sym_BSLASHitem] = ACTIONS(4691), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(4691), + [sym_placeholder] = ACTIONS(4689), + [anon_sym_PLUS] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(4691), + [anon_sym_STAR] = ACTIONS(4691), + [anon_sym_SLASH] = ACTIONS(4691), + [anon_sym_CARET] = ACTIONS(4691), + [anon_sym__] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4691), + [anon_sym_GT] = ACTIONS(4691), + [anon_sym_BANG] = ACTIONS(4691), + [anon_sym_PIPE] = ACTIONS(4691), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_SQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), + [anon_sym_DOLLAR] = ACTIONS(4691), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), + [anon_sym_BSLASHbegin] = ACTIONS(4691), + [anon_sym_BSLASHusepackage] = ACTIONS(4691), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), + [anon_sym_BSLASHinclude] = ACTIONS(4691), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), + [anon_sym_BSLASHinput] = ACTIONS(4691), + [anon_sym_BSLASHsubfile] = ACTIONS(4691), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), + [anon_sym_BSLASHbibliography] = ACTIONS(4691), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), + [anon_sym_BSLASHincludesvg] = ACTIONS(4691), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), + [anon_sym_BSLASHimport] = ACTIONS(4691), + [anon_sym_BSLASHsubimport] = ACTIONS(4691), + [anon_sym_BSLASHinputfrom] = ACTIONS(4691), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), + [anon_sym_BSLASHincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHcaption] = ACTIONS(4691), + [anon_sym_BSLASHcite] = ACTIONS(4691), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCite] = ACTIONS(4691), + [anon_sym_BSLASHnocite] = ACTIONS(4691), + [anon_sym_BSLASHcitet] = ACTIONS(4691), + [anon_sym_BSLASHcitep] = ACTIONS(4691), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteauthor] = ACTIONS(4691), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitetitle] = ACTIONS(4691), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteyear] = ACTIONS(4691), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitedate] = ACTIONS(4691), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteurl] = ACTIONS(4691), + [anon_sym_BSLASHfullcite] = ACTIONS(4691), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), + [anon_sym_BSLASHcitealt] = ACTIONS(4691), + [anon_sym_BSLASHcitealp] = ACTIONS(4691), + [anon_sym_BSLASHcitetext] = ACTIONS(4691), + [anon_sym_BSLASHparencite] = ACTIONS(4691), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHParencite] = ACTIONS(4691), + [anon_sym_BSLASHfootcite] = ACTIONS(4691), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), + [anon_sym_BSLASHtextcite] = ACTIONS(4691), + [anon_sym_BSLASHTextcite] = ACTIONS(4691), + [anon_sym_BSLASHsmartcite] = ACTIONS(4691), + [anon_sym_BSLASHSmartcite] = ACTIONS(4691), + [anon_sym_BSLASHsupercite] = ACTIONS(4691), + [anon_sym_BSLASHautocite] = ACTIONS(4691), + [anon_sym_BSLASHAutocite] = ACTIONS(4691), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHvolcite] = ACTIONS(4691), + [anon_sym_BSLASHVolcite] = ACTIONS(4691), + [anon_sym_BSLASHpvolcite] = ACTIONS(4691), + [anon_sym_BSLASHPvolcite] = ACTIONS(4691), + [anon_sym_BSLASHfvolcite] = ACTIONS(4691), + [anon_sym_BSLASHftvolcite] = ACTIONS(4691), + [anon_sym_BSLASHsvolcite] = ACTIONS(4691), + [anon_sym_BSLASHSvolcite] = ACTIONS(4691), + [anon_sym_BSLASHtvolcite] = ACTIONS(4691), + [anon_sym_BSLASHTvolcite] = ACTIONS(4691), + [anon_sym_BSLASHavolcite] = ACTIONS(4691), + [anon_sym_BSLASHAvolcite] = ACTIONS(4691), + [anon_sym_BSLASHnotecite] = ACTIONS(4691), + [anon_sym_BSLASHNotecite] = ACTIONS(4691), + [anon_sym_BSLASHpnotecite] = ACTIONS(4691), + [anon_sym_BSLASHPnotecite] = ACTIONS(4691), + [anon_sym_BSLASHfnotecite] = ACTIONS(4691), + [anon_sym_BSLASHlabel] = ACTIONS(4691), + [anon_sym_BSLASHref] = ACTIONS(4691), + [anon_sym_BSLASHeqref] = ACTIONS(4691), + [anon_sym_BSLASHvref] = ACTIONS(4691), + [anon_sym_BSLASHVref] = ACTIONS(4691), + [anon_sym_BSLASHautoref] = ACTIONS(4691), + [anon_sym_BSLASHpageref] = ACTIONS(4691), + [anon_sym_BSLASHcref] = ACTIONS(4691), + [anon_sym_BSLASHCref] = ACTIONS(4691), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnameCref] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHlabelcref] = ACTIONS(4691), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCrefrange] = ACTIONS(4691), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnewlabel] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), + [anon_sym_BSLASHdef] = ACTIONS(4691), + [anon_sym_BSLASHlet] = ACTIONS(4691), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), + [anon_sym_BSLASHgls] = ACTIONS(4691), + [anon_sym_BSLASHGls] = ACTIONS(4691), + [anon_sym_BSLASHGLS] = ACTIONS(4691), + [anon_sym_BSLASHglspl] = ACTIONS(4691), + [anon_sym_BSLASHGlspl] = ACTIONS(4691), + [anon_sym_BSLASHGLSpl] = ACTIONS(4691), + [anon_sym_BSLASHglsdisp] = ACTIONS(4691), + [anon_sym_BSLASHglslink] = ACTIONS(4691), + [anon_sym_BSLASHglstext] = ACTIONS(4691), + [anon_sym_BSLASHGlstext] = ACTIONS(4691), + [anon_sym_BSLASHGLStext] = ACTIONS(4691), + [anon_sym_BSLASHglsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), + [anon_sym_BSLASHglsplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSplural] = ACTIONS(4691), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHglsname] = ACTIONS(4691), + [anon_sym_BSLASHGlsname] = ACTIONS(4691), + [anon_sym_BSLASHGLSname] = ACTIONS(4691), + [anon_sym_BSLASHglssymbol] = ACTIONS(4691), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), + [anon_sym_BSLASHglsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), + [anon_sym_BSLASHglsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), + [anon_sym_BSLASHglsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), + [anon_sym_BSLASHglsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), + [anon_sym_BSLASHglsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), + [anon_sym_BSLASHnewacronym] = ACTIONS(4691), + [anon_sym_BSLASHacrshort] = ACTIONS(4691), + [anon_sym_BSLASHAcrshort] = ACTIONS(4691), + [anon_sym_BSLASHACRshort] = ACTIONS(4691), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), + [anon_sym_BSLASHacrlong] = ACTIONS(4691), + [anon_sym_BSLASHAcrlong] = ACTIONS(4691), + [anon_sym_BSLASHACRlong] = ACTIONS(4691), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), + [anon_sym_BSLASHacrfull] = ACTIONS(4691), + [anon_sym_BSLASHAcrfull] = ACTIONS(4691), + [anon_sym_BSLASHACRfull] = ACTIONS(4691), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), + [anon_sym_BSLASHacs] = ACTIONS(4691), + [anon_sym_BSLASHAcs] = ACTIONS(4691), + [anon_sym_BSLASHacsp] = ACTIONS(4691), + [anon_sym_BSLASHAcsp] = ACTIONS(4691), + [anon_sym_BSLASHacl] = ACTIONS(4691), + [anon_sym_BSLASHAcl] = ACTIONS(4691), + [anon_sym_BSLASHaclp] = ACTIONS(4691), + [anon_sym_BSLASHAclp] = ACTIONS(4691), + [anon_sym_BSLASHacf] = ACTIONS(4691), + [anon_sym_BSLASHAcf] = ACTIONS(4691), + [anon_sym_BSLASHacfp] = ACTIONS(4691), + [anon_sym_BSLASHAcfp] = ACTIONS(4691), + [anon_sym_BSLASHac] = ACTIONS(4691), + [anon_sym_BSLASHAc] = ACTIONS(4691), + [anon_sym_BSLASHacp] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), + [anon_sym_BSLASHcolor] = ACTIONS(4691), + [anon_sym_BSLASHcolorbox] = ACTIONS(4691), + [anon_sym_BSLASHtextcolor] = ACTIONS(4691), + [anon_sym_BSLASHpagecolor] = ACTIONS(4691), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), + [anon_sym_BSLASHtext] = ACTIONS(4691), + [anon_sym_BSLASHintertext] = ACTIONS(4691), + [anon_sym_shortintertext] = ACTIONS(4691), + }, + [660] = { + [sym_command_name] = ACTIONS(4753), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4753), + [anon_sym_BSLASHfi] = ACTIONS(4859), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_BSLASHpart] = ACTIONS(4753), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddpart] = ACTIONS(4753), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4751), + [anon_sym_BSLASHchapter] = ACTIONS(4753), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddchap] = ACTIONS(4753), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsection] = ACTIONS(4753), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddsec] = ACTIONS(4753), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubsection] = ACTIONS(4753), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4753), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHparagraph] = ACTIONS(4753), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4753), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4751), + [anon_sym_BSLASHitem] = ACTIONS(4753), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4751), + [sym_word] = ACTIONS(4753), + [sym_placeholder] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_STAR] = ACTIONS(4753), + [anon_sym_SLASH] = ACTIONS(4753), + [anon_sym_CARET] = ACTIONS(4753), + [anon_sym__] = ACTIONS(4753), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_COLON] = ACTIONS(4753), + [anon_sym_SQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), + [anon_sym_BSLASHbegin] = ACTIONS(4753), + [anon_sym_BSLASHusepackage] = ACTIONS(4753), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), + [anon_sym_BSLASHinclude] = ACTIONS(4753), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), + [anon_sym_BSLASHinput] = ACTIONS(4753), + [anon_sym_BSLASHsubfile] = ACTIONS(4753), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), + [anon_sym_BSLASHbibliography] = ACTIONS(4753), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), + [anon_sym_BSLASHincludesvg] = ACTIONS(4753), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), + [anon_sym_BSLASHimport] = ACTIONS(4753), + [anon_sym_BSLASHsubimport] = ACTIONS(4753), + [anon_sym_BSLASHinputfrom] = ACTIONS(4753), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), + [anon_sym_BSLASHincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHcaption] = ACTIONS(4753), + [anon_sym_BSLASHcite] = ACTIONS(4753), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCite] = ACTIONS(4753), + [anon_sym_BSLASHnocite] = ACTIONS(4753), + [anon_sym_BSLASHcitet] = ACTIONS(4753), + [anon_sym_BSLASHcitep] = ACTIONS(4753), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteauthor] = ACTIONS(4753), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitetitle] = ACTIONS(4753), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteyear] = ACTIONS(4753), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitedate] = ACTIONS(4753), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteurl] = ACTIONS(4753), + [anon_sym_BSLASHfullcite] = ACTIONS(4753), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), + [anon_sym_BSLASHcitealt] = ACTIONS(4753), + [anon_sym_BSLASHcitealp] = ACTIONS(4753), + [anon_sym_BSLASHcitetext] = ACTIONS(4753), + [anon_sym_BSLASHparencite] = ACTIONS(4753), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHParencite] = ACTIONS(4753), + [anon_sym_BSLASHfootcite] = ACTIONS(4753), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), + [anon_sym_BSLASHtextcite] = ACTIONS(4753), + [anon_sym_BSLASHTextcite] = ACTIONS(4753), + [anon_sym_BSLASHsmartcite] = ACTIONS(4753), + [anon_sym_BSLASHSmartcite] = ACTIONS(4753), + [anon_sym_BSLASHsupercite] = ACTIONS(4753), + [anon_sym_BSLASHautocite] = ACTIONS(4753), + [anon_sym_BSLASHAutocite] = ACTIONS(4753), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHvolcite] = ACTIONS(4753), + [anon_sym_BSLASHVolcite] = ACTIONS(4753), + [anon_sym_BSLASHpvolcite] = ACTIONS(4753), + [anon_sym_BSLASHPvolcite] = ACTIONS(4753), + [anon_sym_BSLASHfvolcite] = ACTIONS(4753), + [anon_sym_BSLASHftvolcite] = ACTIONS(4753), + [anon_sym_BSLASHsvolcite] = ACTIONS(4753), + [anon_sym_BSLASHSvolcite] = ACTIONS(4753), + [anon_sym_BSLASHtvolcite] = ACTIONS(4753), + [anon_sym_BSLASHTvolcite] = ACTIONS(4753), + [anon_sym_BSLASHavolcite] = ACTIONS(4753), + [anon_sym_BSLASHAvolcite] = ACTIONS(4753), + [anon_sym_BSLASHnotecite] = ACTIONS(4753), + [anon_sym_BSLASHNotecite] = ACTIONS(4753), + [anon_sym_BSLASHpnotecite] = ACTIONS(4753), + [anon_sym_BSLASHPnotecite] = ACTIONS(4753), + [anon_sym_BSLASHfnotecite] = ACTIONS(4753), + [anon_sym_BSLASHlabel] = ACTIONS(4753), + [anon_sym_BSLASHref] = ACTIONS(4753), + [anon_sym_BSLASHeqref] = ACTIONS(4753), + [anon_sym_BSLASHvref] = ACTIONS(4753), + [anon_sym_BSLASHVref] = ACTIONS(4753), + [anon_sym_BSLASHautoref] = ACTIONS(4753), + [anon_sym_BSLASHpageref] = ACTIONS(4753), + [anon_sym_BSLASHcref] = ACTIONS(4753), + [anon_sym_BSLASHCref] = ACTIONS(4753), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnameCref] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHlabelcref] = ACTIONS(4753), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCrefrange] = ACTIONS(4753), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnewlabel] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), + [anon_sym_BSLASHdef] = ACTIONS(4753), + [anon_sym_BSLASHlet] = ACTIONS(4753), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), + [anon_sym_BSLASHgls] = ACTIONS(4753), + [anon_sym_BSLASHGls] = ACTIONS(4753), + [anon_sym_BSLASHGLS] = ACTIONS(4753), + [anon_sym_BSLASHglspl] = ACTIONS(4753), + [anon_sym_BSLASHGlspl] = ACTIONS(4753), + [anon_sym_BSLASHGLSpl] = ACTIONS(4753), + [anon_sym_BSLASHglsdisp] = ACTIONS(4753), + [anon_sym_BSLASHglslink] = ACTIONS(4753), + [anon_sym_BSLASHglstext] = ACTIONS(4753), + [anon_sym_BSLASHGlstext] = ACTIONS(4753), + [anon_sym_BSLASHGLStext] = ACTIONS(4753), + [anon_sym_BSLASHglsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), + [anon_sym_BSLASHglsplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSplural] = ACTIONS(4753), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHglsname] = ACTIONS(4753), + [anon_sym_BSLASHGlsname] = ACTIONS(4753), + [anon_sym_BSLASHGLSname] = ACTIONS(4753), + [anon_sym_BSLASHglssymbol] = ACTIONS(4753), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), + [anon_sym_BSLASHglsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), + [anon_sym_BSLASHglsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), + [anon_sym_BSLASHglsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), + [anon_sym_BSLASHglsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), + [anon_sym_BSLASHglsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), + [anon_sym_BSLASHnewacronym] = ACTIONS(4753), + [anon_sym_BSLASHacrshort] = ACTIONS(4753), + [anon_sym_BSLASHAcrshort] = ACTIONS(4753), + [anon_sym_BSLASHACRshort] = ACTIONS(4753), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), + [anon_sym_BSLASHacrlong] = ACTIONS(4753), + [anon_sym_BSLASHAcrlong] = ACTIONS(4753), + [anon_sym_BSLASHACRlong] = ACTIONS(4753), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), + [anon_sym_BSLASHacrfull] = ACTIONS(4753), + [anon_sym_BSLASHAcrfull] = ACTIONS(4753), + [anon_sym_BSLASHACRfull] = ACTIONS(4753), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), + [anon_sym_BSLASHacs] = ACTIONS(4753), + [anon_sym_BSLASHAcs] = ACTIONS(4753), + [anon_sym_BSLASHacsp] = ACTIONS(4753), + [anon_sym_BSLASHAcsp] = ACTIONS(4753), + [anon_sym_BSLASHacl] = ACTIONS(4753), + [anon_sym_BSLASHAcl] = ACTIONS(4753), + [anon_sym_BSLASHaclp] = ACTIONS(4753), + [anon_sym_BSLASHAclp] = ACTIONS(4753), + [anon_sym_BSLASHacf] = ACTIONS(4753), + [anon_sym_BSLASHAcf] = ACTIONS(4753), + [anon_sym_BSLASHacfp] = ACTIONS(4753), + [anon_sym_BSLASHAcfp] = ACTIONS(4753), + [anon_sym_BSLASHac] = ACTIONS(4753), + [anon_sym_BSLASHAc] = ACTIONS(4753), + [anon_sym_BSLASHacp] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), + [anon_sym_BSLASHcolor] = ACTIONS(4753), + [anon_sym_BSLASHcolorbox] = ACTIONS(4753), + [anon_sym_BSLASHtextcolor] = ACTIONS(4753), + [anon_sym_BSLASHpagecolor] = ACTIONS(4753), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), + [anon_sym_BSLASHtext] = ACTIONS(4753), + [anon_sym_BSLASHintertext] = ACTIONS(4753), + [anon_sym_shortintertext] = ACTIONS(4753), + [sym__trivia_raw_fi] = ACTIONS(4861), + }, + [661] = { + [ts_builtin_sym_end] = ACTIONS(4863), + [sym_command_name] = ACTIONS(4865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4865), + [anon_sym_BSLASHfi] = ACTIONS(4867), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_RBRACK] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_BSLASHpart] = ACTIONS(4865), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddpart] = ACTIONS(4865), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4863), + [anon_sym_BSLASHchapter] = ACTIONS(4865), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddchap] = ACTIONS(4865), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsection] = ACTIONS(4865), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddsec] = ACTIONS(4865), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubsection] = ACTIONS(4865), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4865), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHparagraph] = ACTIONS(4865), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4865), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4863), + [anon_sym_BSLASHitem] = ACTIONS(4865), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4863), + [sym_word] = ACTIONS(4865), + [sym_placeholder] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_CARET] = ACTIONS(4865), + [anon_sym__] = ACTIONS(4865), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_COLON] = ACTIONS(4865), + [anon_sym_SQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), + [anon_sym_BSLASHbegin] = ACTIONS(4865), + [anon_sym_BSLASHusepackage] = ACTIONS(4865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), + [anon_sym_BSLASHinclude] = ACTIONS(4865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), + [anon_sym_BSLASHinput] = ACTIONS(4865), + [anon_sym_BSLASHsubfile] = ACTIONS(4865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), + [anon_sym_BSLASHbibliography] = ACTIONS(4865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), + [anon_sym_BSLASHincludesvg] = ACTIONS(4865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), + [anon_sym_BSLASHimport] = ACTIONS(4865), + [anon_sym_BSLASHsubimport] = ACTIONS(4865), + [anon_sym_BSLASHinputfrom] = ACTIONS(4865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), + [anon_sym_BSLASHincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHcaption] = ACTIONS(4865), + [anon_sym_BSLASHcite] = ACTIONS(4865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCite] = ACTIONS(4865), + [anon_sym_BSLASHnocite] = ACTIONS(4865), + [anon_sym_BSLASHcitet] = ACTIONS(4865), + [anon_sym_BSLASHcitep] = ACTIONS(4865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteauthor] = ACTIONS(4865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitetitle] = ACTIONS(4865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteyear] = ACTIONS(4865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitedate] = ACTIONS(4865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteurl] = ACTIONS(4865), + [anon_sym_BSLASHfullcite] = ACTIONS(4865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), + [anon_sym_BSLASHcitealt] = ACTIONS(4865), + [anon_sym_BSLASHcitealp] = ACTIONS(4865), + [anon_sym_BSLASHcitetext] = ACTIONS(4865), + [anon_sym_BSLASHparencite] = ACTIONS(4865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHParencite] = ACTIONS(4865), + [anon_sym_BSLASHfootcite] = ACTIONS(4865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), + [anon_sym_BSLASHtextcite] = ACTIONS(4865), + [anon_sym_BSLASHTextcite] = ACTIONS(4865), + [anon_sym_BSLASHsmartcite] = ACTIONS(4865), + [anon_sym_BSLASHSmartcite] = ACTIONS(4865), + [anon_sym_BSLASHsupercite] = ACTIONS(4865), + [anon_sym_BSLASHautocite] = ACTIONS(4865), + [anon_sym_BSLASHAutocite] = ACTIONS(4865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHvolcite] = ACTIONS(4865), + [anon_sym_BSLASHVolcite] = ACTIONS(4865), + [anon_sym_BSLASHpvolcite] = ACTIONS(4865), + [anon_sym_BSLASHPvolcite] = ACTIONS(4865), + [anon_sym_BSLASHfvolcite] = ACTIONS(4865), + [anon_sym_BSLASHftvolcite] = ACTIONS(4865), + [anon_sym_BSLASHsvolcite] = ACTIONS(4865), + [anon_sym_BSLASHSvolcite] = ACTIONS(4865), + [anon_sym_BSLASHtvolcite] = ACTIONS(4865), + [anon_sym_BSLASHTvolcite] = ACTIONS(4865), + [anon_sym_BSLASHavolcite] = ACTIONS(4865), + [anon_sym_BSLASHAvolcite] = ACTIONS(4865), + [anon_sym_BSLASHnotecite] = ACTIONS(4865), + [anon_sym_BSLASHNotecite] = ACTIONS(4865), + [anon_sym_BSLASHpnotecite] = ACTIONS(4865), + [anon_sym_BSLASHPnotecite] = ACTIONS(4865), + [anon_sym_BSLASHfnotecite] = ACTIONS(4865), + [anon_sym_BSLASHlabel] = ACTIONS(4865), + [anon_sym_BSLASHref] = ACTIONS(4865), + [anon_sym_BSLASHeqref] = ACTIONS(4865), + [anon_sym_BSLASHvref] = ACTIONS(4865), + [anon_sym_BSLASHVref] = ACTIONS(4865), + [anon_sym_BSLASHautoref] = ACTIONS(4865), + [anon_sym_BSLASHpageref] = ACTIONS(4865), + [anon_sym_BSLASHcref] = ACTIONS(4865), + [anon_sym_BSLASHCref] = ACTIONS(4865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnameCref] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHlabelcref] = ACTIONS(4865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCrefrange] = ACTIONS(4865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnewlabel] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), + [anon_sym_BSLASHdef] = ACTIONS(4865), + [anon_sym_BSLASHlet] = ACTIONS(4865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), + [anon_sym_BSLASHgls] = ACTIONS(4865), + [anon_sym_BSLASHGls] = ACTIONS(4865), + [anon_sym_BSLASHGLS] = ACTIONS(4865), + [anon_sym_BSLASHglspl] = ACTIONS(4865), + [anon_sym_BSLASHGlspl] = ACTIONS(4865), + [anon_sym_BSLASHGLSpl] = ACTIONS(4865), + [anon_sym_BSLASHglsdisp] = ACTIONS(4865), + [anon_sym_BSLASHglslink] = ACTIONS(4865), + [anon_sym_BSLASHglstext] = ACTIONS(4865), + [anon_sym_BSLASHGlstext] = ACTIONS(4865), + [anon_sym_BSLASHGLStext] = ACTIONS(4865), + [anon_sym_BSLASHglsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), + [anon_sym_BSLASHglsplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSplural] = ACTIONS(4865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHglsname] = ACTIONS(4865), + [anon_sym_BSLASHGlsname] = ACTIONS(4865), + [anon_sym_BSLASHGLSname] = ACTIONS(4865), + [anon_sym_BSLASHglssymbol] = ACTIONS(4865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), + [anon_sym_BSLASHglsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), + [anon_sym_BSLASHglsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), + [anon_sym_BSLASHglsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), + [anon_sym_BSLASHglsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), + [anon_sym_BSLASHglsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), + [anon_sym_BSLASHnewacronym] = ACTIONS(4865), + [anon_sym_BSLASHacrshort] = ACTIONS(4865), + [anon_sym_BSLASHAcrshort] = ACTIONS(4865), + [anon_sym_BSLASHACRshort] = ACTIONS(4865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), + [anon_sym_BSLASHacrlong] = ACTIONS(4865), + [anon_sym_BSLASHAcrlong] = ACTIONS(4865), + [anon_sym_BSLASHACRlong] = ACTIONS(4865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), + [anon_sym_BSLASHacrfull] = ACTIONS(4865), + [anon_sym_BSLASHAcrfull] = ACTIONS(4865), + [anon_sym_BSLASHACRfull] = ACTIONS(4865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), + [anon_sym_BSLASHacs] = ACTIONS(4865), + [anon_sym_BSLASHAcs] = ACTIONS(4865), + [anon_sym_BSLASHacsp] = ACTIONS(4865), + [anon_sym_BSLASHAcsp] = ACTIONS(4865), + [anon_sym_BSLASHacl] = ACTIONS(4865), + [anon_sym_BSLASHAcl] = ACTIONS(4865), + [anon_sym_BSLASHaclp] = ACTIONS(4865), + [anon_sym_BSLASHAclp] = ACTIONS(4865), + [anon_sym_BSLASHacf] = ACTIONS(4865), + [anon_sym_BSLASHAcf] = ACTIONS(4865), + [anon_sym_BSLASHacfp] = ACTIONS(4865), + [anon_sym_BSLASHAcfp] = ACTIONS(4865), + [anon_sym_BSLASHac] = ACTIONS(4865), + [anon_sym_BSLASHAc] = ACTIONS(4865), + [anon_sym_BSLASHacp] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), + [anon_sym_BSLASHcolor] = ACTIONS(4865), + [anon_sym_BSLASHcolorbox] = ACTIONS(4865), + [anon_sym_BSLASHtextcolor] = ACTIONS(4865), + [anon_sym_BSLASHpagecolor] = ACTIONS(4865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), + [anon_sym_BSLASHtext] = ACTIONS(4865), + [anon_sym_BSLASHintertext] = ACTIONS(4865), + [anon_sym_shortintertext] = ACTIONS(4865), + }, + [662] = { + [sym_curly_group] = STATE(674), + [sym_brack_group_text] = STATE(1870), + [sym_command_name] = ACTIONS(4817), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4815), + [anon_sym_COMMA] = ACTIONS(4815), + [anon_sym_EQ] = ACTIONS(4815), + [anon_sym_BSLASHpart] = ACTIONS(4817), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddpart] = ACTIONS(4817), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4815), + [anon_sym_BSLASHchapter] = ACTIONS(4817), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddchap] = ACTIONS(4817), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsection] = ACTIONS(4817), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddsec] = ACTIONS(4817), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubsection] = ACTIONS(4817), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4817), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHparagraph] = ACTIONS(4817), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4817), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4815), + [anon_sym_BSLASHitem] = ACTIONS(4817), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4815), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(4817), + [sym_placeholder] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym__] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_BANG] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_SQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(4817), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4815), + [anon_sym_BSLASHbegin] = ACTIONS(4817), + [anon_sym_BSLASHusepackage] = ACTIONS(4817), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), + [anon_sym_BSLASHinclude] = ACTIONS(4817), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), + [anon_sym_BSLASHinput] = ACTIONS(4817), + [anon_sym_BSLASHsubfile] = ACTIONS(4817), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), + [anon_sym_BSLASHbibliography] = ACTIONS(4817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), + [anon_sym_BSLASHincludesvg] = ACTIONS(4817), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), + [anon_sym_BSLASHimport] = ACTIONS(4817), + [anon_sym_BSLASHsubimport] = ACTIONS(4817), + [anon_sym_BSLASHinputfrom] = ACTIONS(4817), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), + [anon_sym_BSLASHincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHcaption] = ACTIONS(4817), + [anon_sym_BSLASHcite] = ACTIONS(4817), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCite] = ACTIONS(4817), + [anon_sym_BSLASHnocite] = ACTIONS(4817), + [anon_sym_BSLASHcitet] = ACTIONS(4817), + [anon_sym_BSLASHcitep] = ACTIONS(4817), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteauthor] = ACTIONS(4817), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitetitle] = ACTIONS(4817), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteyear] = ACTIONS(4817), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitedate] = ACTIONS(4817), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteurl] = ACTIONS(4817), + [anon_sym_BSLASHfullcite] = ACTIONS(4817), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), + [anon_sym_BSLASHcitealt] = ACTIONS(4817), + [anon_sym_BSLASHcitealp] = ACTIONS(4817), + [anon_sym_BSLASHcitetext] = ACTIONS(4817), + [anon_sym_BSLASHparencite] = ACTIONS(4817), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHParencite] = ACTIONS(4817), + [anon_sym_BSLASHfootcite] = ACTIONS(4817), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), + [anon_sym_BSLASHtextcite] = ACTIONS(4817), + [anon_sym_BSLASHTextcite] = ACTIONS(4817), + [anon_sym_BSLASHsmartcite] = ACTIONS(4817), + [anon_sym_BSLASHSmartcite] = ACTIONS(4817), + [anon_sym_BSLASHsupercite] = ACTIONS(4817), + [anon_sym_BSLASHautocite] = ACTIONS(4817), + [anon_sym_BSLASHAutocite] = ACTIONS(4817), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHvolcite] = ACTIONS(4817), + [anon_sym_BSLASHVolcite] = ACTIONS(4817), + [anon_sym_BSLASHpvolcite] = ACTIONS(4817), + [anon_sym_BSLASHPvolcite] = ACTIONS(4817), + [anon_sym_BSLASHfvolcite] = ACTIONS(4817), + [anon_sym_BSLASHftvolcite] = ACTIONS(4817), + [anon_sym_BSLASHsvolcite] = ACTIONS(4817), + [anon_sym_BSLASHSvolcite] = ACTIONS(4817), + [anon_sym_BSLASHtvolcite] = ACTIONS(4817), + [anon_sym_BSLASHTvolcite] = ACTIONS(4817), + [anon_sym_BSLASHavolcite] = ACTIONS(4817), + [anon_sym_BSLASHAvolcite] = ACTIONS(4817), + [anon_sym_BSLASHnotecite] = ACTIONS(4817), + [anon_sym_BSLASHNotecite] = ACTIONS(4817), + [anon_sym_BSLASHpnotecite] = ACTIONS(4817), + [anon_sym_BSLASHPnotecite] = ACTIONS(4817), + [anon_sym_BSLASHfnotecite] = ACTIONS(4817), + [anon_sym_BSLASHlabel] = ACTIONS(4817), + [anon_sym_BSLASHref] = ACTIONS(4817), + [anon_sym_BSLASHeqref] = ACTIONS(4817), + [anon_sym_BSLASHvref] = ACTIONS(4817), + [anon_sym_BSLASHVref] = ACTIONS(4817), + [anon_sym_BSLASHautoref] = ACTIONS(4817), + [anon_sym_BSLASHpageref] = ACTIONS(4817), + [anon_sym_BSLASHcref] = ACTIONS(4817), + [anon_sym_BSLASHCref] = ACTIONS(4817), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnameCref] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHlabelcref] = ACTIONS(4817), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCrefrange] = ACTIONS(4817), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnewlabel] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), + [anon_sym_BSLASHdef] = ACTIONS(4817), + [anon_sym_BSLASHlet] = ACTIONS(4817), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), + [anon_sym_BSLASHgls] = ACTIONS(4817), + [anon_sym_BSLASHGls] = ACTIONS(4817), + [anon_sym_BSLASHGLS] = ACTIONS(4817), + [anon_sym_BSLASHglspl] = ACTIONS(4817), + [anon_sym_BSLASHGlspl] = ACTIONS(4817), + [anon_sym_BSLASHGLSpl] = ACTIONS(4817), + [anon_sym_BSLASHglsdisp] = ACTIONS(4817), + [anon_sym_BSLASHglslink] = ACTIONS(4817), + [anon_sym_BSLASHglstext] = ACTIONS(4817), + [anon_sym_BSLASHGlstext] = ACTIONS(4817), + [anon_sym_BSLASHGLStext] = ACTIONS(4817), + [anon_sym_BSLASHglsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), + [anon_sym_BSLASHglsplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSplural] = ACTIONS(4817), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHglsname] = ACTIONS(4817), + [anon_sym_BSLASHGlsname] = ACTIONS(4817), + [anon_sym_BSLASHGLSname] = ACTIONS(4817), + [anon_sym_BSLASHglssymbol] = ACTIONS(4817), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), + [anon_sym_BSLASHglsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), + [anon_sym_BSLASHglsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), + [anon_sym_BSLASHglsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), + [anon_sym_BSLASHglsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), + [anon_sym_BSLASHglsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), + [anon_sym_BSLASHnewacronym] = ACTIONS(4817), + [anon_sym_BSLASHacrshort] = ACTIONS(4817), + [anon_sym_BSLASHAcrshort] = ACTIONS(4817), + [anon_sym_BSLASHACRshort] = ACTIONS(4817), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), + [anon_sym_BSLASHacrlong] = ACTIONS(4817), + [anon_sym_BSLASHAcrlong] = ACTIONS(4817), + [anon_sym_BSLASHACRlong] = ACTIONS(4817), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), + [anon_sym_BSLASHacrfull] = ACTIONS(4817), + [anon_sym_BSLASHAcrfull] = ACTIONS(4817), + [anon_sym_BSLASHACRfull] = ACTIONS(4817), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), + [anon_sym_BSLASHacs] = ACTIONS(4817), + [anon_sym_BSLASHAcs] = ACTIONS(4817), + [anon_sym_BSLASHacsp] = ACTIONS(4817), + [anon_sym_BSLASHAcsp] = ACTIONS(4817), + [anon_sym_BSLASHacl] = ACTIONS(4817), + [anon_sym_BSLASHAcl] = ACTIONS(4817), + [anon_sym_BSLASHaclp] = ACTIONS(4817), + [anon_sym_BSLASHAclp] = ACTIONS(4817), + [anon_sym_BSLASHacf] = ACTIONS(4817), + [anon_sym_BSLASHAcf] = ACTIONS(4817), + [anon_sym_BSLASHacfp] = ACTIONS(4817), + [anon_sym_BSLASHAcfp] = ACTIONS(4817), + [anon_sym_BSLASHac] = ACTIONS(4817), + [anon_sym_BSLASHAc] = ACTIONS(4817), + [anon_sym_BSLASHacp] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), + [anon_sym_BSLASHcolor] = ACTIONS(4817), + [anon_sym_BSLASHcolorbox] = ACTIONS(4817), + [anon_sym_BSLASHtextcolor] = ACTIONS(4817), + [anon_sym_BSLASHpagecolor] = ACTIONS(4817), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), + [anon_sym_BSLASHtext] = ACTIONS(4817), + [anon_sym_BSLASHintertext] = ACTIONS(4817), + [anon_sym_shortintertext] = ACTIONS(4817), + }, + [663] = { + [sym_curly_group] = STATE(702), + [sym_brack_group_text] = STATE(2118), + [sym_command_name] = ACTIONS(4817), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4815), + [anon_sym_COMMA] = ACTIONS(4815), + [anon_sym_EQ] = ACTIONS(4815), + [anon_sym_BSLASHpart] = ACTIONS(4817), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddpart] = ACTIONS(4817), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4815), + [anon_sym_BSLASHchapter] = ACTIONS(4817), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddchap] = ACTIONS(4817), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsection] = ACTIONS(4817), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddsec] = ACTIONS(4817), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubsection] = ACTIONS(4817), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4817), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHparagraph] = ACTIONS(4817), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4817), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4815), + [anon_sym_BSLASHitem] = ACTIONS(4817), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4815), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(4817), + [sym_placeholder] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym__] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_BANG] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_SQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(4817), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), + [anon_sym_BSLASHbegin] = ACTIONS(4817), + [anon_sym_BSLASHusepackage] = ACTIONS(4817), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), + [anon_sym_BSLASHinclude] = ACTIONS(4817), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), + [anon_sym_BSLASHinput] = ACTIONS(4817), + [anon_sym_BSLASHsubfile] = ACTIONS(4817), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), + [anon_sym_BSLASHbibliography] = ACTIONS(4817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), + [anon_sym_BSLASHincludesvg] = ACTIONS(4817), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), + [anon_sym_BSLASHimport] = ACTIONS(4817), + [anon_sym_BSLASHsubimport] = ACTIONS(4817), + [anon_sym_BSLASHinputfrom] = ACTIONS(4817), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), + [anon_sym_BSLASHincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHcaption] = ACTIONS(4817), + [anon_sym_BSLASHcite] = ACTIONS(4817), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCite] = ACTIONS(4817), + [anon_sym_BSLASHnocite] = ACTIONS(4817), + [anon_sym_BSLASHcitet] = ACTIONS(4817), + [anon_sym_BSLASHcitep] = ACTIONS(4817), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteauthor] = ACTIONS(4817), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitetitle] = ACTIONS(4817), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteyear] = ACTIONS(4817), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitedate] = ACTIONS(4817), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteurl] = ACTIONS(4817), + [anon_sym_BSLASHfullcite] = ACTIONS(4817), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), + [anon_sym_BSLASHcitealt] = ACTIONS(4817), + [anon_sym_BSLASHcitealp] = ACTIONS(4817), + [anon_sym_BSLASHcitetext] = ACTIONS(4817), + [anon_sym_BSLASHparencite] = ACTIONS(4817), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHParencite] = ACTIONS(4817), + [anon_sym_BSLASHfootcite] = ACTIONS(4817), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), + [anon_sym_BSLASHtextcite] = ACTIONS(4817), + [anon_sym_BSLASHTextcite] = ACTIONS(4817), + [anon_sym_BSLASHsmartcite] = ACTIONS(4817), + [anon_sym_BSLASHSmartcite] = ACTIONS(4817), + [anon_sym_BSLASHsupercite] = ACTIONS(4817), + [anon_sym_BSLASHautocite] = ACTIONS(4817), + [anon_sym_BSLASHAutocite] = ACTIONS(4817), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHvolcite] = ACTIONS(4817), + [anon_sym_BSLASHVolcite] = ACTIONS(4817), + [anon_sym_BSLASHpvolcite] = ACTIONS(4817), + [anon_sym_BSLASHPvolcite] = ACTIONS(4817), + [anon_sym_BSLASHfvolcite] = ACTIONS(4817), + [anon_sym_BSLASHftvolcite] = ACTIONS(4817), + [anon_sym_BSLASHsvolcite] = ACTIONS(4817), + [anon_sym_BSLASHSvolcite] = ACTIONS(4817), + [anon_sym_BSLASHtvolcite] = ACTIONS(4817), + [anon_sym_BSLASHTvolcite] = ACTIONS(4817), + [anon_sym_BSLASHavolcite] = ACTIONS(4817), + [anon_sym_BSLASHAvolcite] = ACTIONS(4817), + [anon_sym_BSLASHnotecite] = ACTIONS(4817), + [anon_sym_BSLASHNotecite] = ACTIONS(4817), + [anon_sym_BSLASHpnotecite] = ACTIONS(4817), + [anon_sym_BSLASHPnotecite] = ACTIONS(4817), + [anon_sym_BSLASHfnotecite] = ACTIONS(4817), + [anon_sym_BSLASHlabel] = ACTIONS(4817), + [anon_sym_BSLASHref] = ACTIONS(4817), + [anon_sym_BSLASHeqref] = ACTIONS(4817), + [anon_sym_BSLASHvref] = ACTIONS(4817), + [anon_sym_BSLASHVref] = ACTIONS(4817), + [anon_sym_BSLASHautoref] = ACTIONS(4817), + [anon_sym_BSLASHpageref] = ACTIONS(4817), + [anon_sym_BSLASHcref] = ACTIONS(4817), + [anon_sym_BSLASHCref] = ACTIONS(4817), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnameCref] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHlabelcref] = ACTIONS(4817), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCrefrange] = ACTIONS(4817), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnewlabel] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), + [anon_sym_BSLASHdef] = ACTIONS(4817), + [anon_sym_BSLASHlet] = ACTIONS(4817), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), + [anon_sym_BSLASHgls] = ACTIONS(4817), + [anon_sym_BSLASHGls] = ACTIONS(4817), + [anon_sym_BSLASHGLS] = ACTIONS(4817), + [anon_sym_BSLASHglspl] = ACTIONS(4817), + [anon_sym_BSLASHGlspl] = ACTIONS(4817), + [anon_sym_BSLASHGLSpl] = ACTIONS(4817), + [anon_sym_BSLASHglsdisp] = ACTIONS(4817), + [anon_sym_BSLASHglslink] = ACTIONS(4817), + [anon_sym_BSLASHglstext] = ACTIONS(4817), + [anon_sym_BSLASHGlstext] = ACTIONS(4817), + [anon_sym_BSLASHGLStext] = ACTIONS(4817), + [anon_sym_BSLASHglsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), + [anon_sym_BSLASHglsplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSplural] = ACTIONS(4817), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHglsname] = ACTIONS(4817), + [anon_sym_BSLASHGlsname] = ACTIONS(4817), + [anon_sym_BSLASHGLSname] = ACTIONS(4817), + [anon_sym_BSLASHglssymbol] = ACTIONS(4817), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), + [anon_sym_BSLASHglsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), + [anon_sym_BSLASHglsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), + [anon_sym_BSLASHglsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), + [anon_sym_BSLASHglsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), + [anon_sym_BSLASHglsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), + [anon_sym_BSLASHnewacronym] = ACTIONS(4817), + [anon_sym_BSLASHacrshort] = ACTIONS(4817), + [anon_sym_BSLASHAcrshort] = ACTIONS(4817), + [anon_sym_BSLASHACRshort] = ACTIONS(4817), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), + [anon_sym_BSLASHacrlong] = ACTIONS(4817), + [anon_sym_BSLASHAcrlong] = ACTIONS(4817), + [anon_sym_BSLASHACRlong] = ACTIONS(4817), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), + [anon_sym_BSLASHacrfull] = ACTIONS(4817), + [anon_sym_BSLASHAcrfull] = ACTIONS(4817), + [anon_sym_BSLASHACRfull] = ACTIONS(4817), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), + [anon_sym_BSLASHacs] = ACTIONS(4817), + [anon_sym_BSLASHAcs] = ACTIONS(4817), + [anon_sym_BSLASHacsp] = ACTIONS(4817), + [anon_sym_BSLASHAcsp] = ACTIONS(4817), + [anon_sym_BSLASHacl] = ACTIONS(4817), + [anon_sym_BSLASHAcl] = ACTIONS(4817), + [anon_sym_BSLASHaclp] = ACTIONS(4817), + [anon_sym_BSLASHAclp] = ACTIONS(4817), + [anon_sym_BSLASHacf] = ACTIONS(4817), + [anon_sym_BSLASHAcf] = ACTIONS(4817), + [anon_sym_BSLASHacfp] = ACTIONS(4817), + [anon_sym_BSLASHAcfp] = ACTIONS(4817), + [anon_sym_BSLASHac] = ACTIONS(4817), + [anon_sym_BSLASHAc] = ACTIONS(4817), + [anon_sym_BSLASHacp] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), + [anon_sym_BSLASHcolor] = ACTIONS(4817), + [anon_sym_BSLASHcolorbox] = ACTIONS(4817), + [anon_sym_BSLASHtextcolor] = ACTIONS(4817), + [anon_sym_BSLASHpagecolor] = ACTIONS(4817), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), + [anon_sym_BSLASHtext] = ACTIONS(4817), + [anon_sym_BSLASHintertext] = ACTIONS(4817), + [anon_sym_shortintertext] = ACTIONS(4817), + }, + [664] = { + [sym_curly_group] = STATE(685), + [sym_brack_group_text] = STATE(2090), + [sym_command_name] = ACTIONS(4691), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4691), + [anon_sym_LPAREN] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4689), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4689), + [anon_sym_COMMA] = ACTIONS(4689), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_BSLASHpart] = ACTIONS(4691), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddpart] = ACTIONS(4691), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), + [anon_sym_BSLASHchapter] = ACTIONS(4691), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddchap] = ACTIONS(4691), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsection] = ACTIONS(4691), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddsec] = ACTIONS(4691), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubsection] = ACTIONS(4691), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHparagraph] = ACTIONS(4691), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), + [anon_sym_BSLASHitem] = ACTIONS(4691), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(4691), + [sym_placeholder] = ACTIONS(4689), + [anon_sym_PLUS] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(4691), + [anon_sym_STAR] = ACTIONS(4691), + [anon_sym_SLASH] = ACTIONS(4691), + [anon_sym_CARET] = ACTIONS(4691), + [anon_sym__] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4691), + [anon_sym_GT] = ACTIONS(4691), + [anon_sym_BANG] = ACTIONS(4691), + [anon_sym_PIPE] = ACTIONS(4691), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_SQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4689), + [anon_sym_DOLLAR] = ACTIONS(4691), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), + [anon_sym_BSLASHbegin] = ACTIONS(4691), + [anon_sym_BSLASHusepackage] = ACTIONS(4691), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), + [anon_sym_BSLASHinclude] = ACTIONS(4691), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), + [anon_sym_BSLASHinput] = ACTIONS(4691), + [anon_sym_BSLASHsubfile] = ACTIONS(4691), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), + [anon_sym_BSLASHbibliography] = ACTIONS(4691), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), + [anon_sym_BSLASHincludesvg] = ACTIONS(4691), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), + [anon_sym_BSLASHimport] = ACTIONS(4691), + [anon_sym_BSLASHsubimport] = ACTIONS(4691), + [anon_sym_BSLASHinputfrom] = ACTIONS(4691), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), + [anon_sym_BSLASHincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHcaption] = ACTIONS(4691), + [anon_sym_BSLASHcite] = ACTIONS(4691), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCite] = ACTIONS(4691), + [anon_sym_BSLASHnocite] = ACTIONS(4691), + [anon_sym_BSLASHcitet] = ACTIONS(4691), + [anon_sym_BSLASHcitep] = ACTIONS(4691), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteauthor] = ACTIONS(4691), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitetitle] = ACTIONS(4691), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteyear] = ACTIONS(4691), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitedate] = ACTIONS(4691), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteurl] = ACTIONS(4691), + [anon_sym_BSLASHfullcite] = ACTIONS(4691), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), + [anon_sym_BSLASHcitealt] = ACTIONS(4691), + [anon_sym_BSLASHcitealp] = ACTIONS(4691), + [anon_sym_BSLASHcitetext] = ACTIONS(4691), + [anon_sym_BSLASHparencite] = ACTIONS(4691), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHParencite] = ACTIONS(4691), + [anon_sym_BSLASHfootcite] = ACTIONS(4691), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), + [anon_sym_BSLASHtextcite] = ACTIONS(4691), + [anon_sym_BSLASHTextcite] = ACTIONS(4691), + [anon_sym_BSLASHsmartcite] = ACTIONS(4691), + [anon_sym_BSLASHSmartcite] = ACTIONS(4691), + [anon_sym_BSLASHsupercite] = ACTIONS(4691), + [anon_sym_BSLASHautocite] = ACTIONS(4691), + [anon_sym_BSLASHAutocite] = ACTIONS(4691), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHvolcite] = ACTIONS(4691), + [anon_sym_BSLASHVolcite] = ACTIONS(4691), + [anon_sym_BSLASHpvolcite] = ACTIONS(4691), + [anon_sym_BSLASHPvolcite] = ACTIONS(4691), + [anon_sym_BSLASHfvolcite] = ACTIONS(4691), + [anon_sym_BSLASHftvolcite] = ACTIONS(4691), + [anon_sym_BSLASHsvolcite] = ACTIONS(4691), + [anon_sym_BSLASHSvolcite] = ACTIONS(4691), + [anon_sym_BSLASHtvolcite] = ACTIONS(4691), + [anon_sym_BSLASHTvolcite] = ACTIONS(4691), + [anon_sym_BSLASHavolcite] = ACTIONS(4691), + [anon_sym_BSLASHAvolcite] = ACTIONS(4691), + [anon_sym_BSLASHnotecite] = ACTIONS(4691), + [anon_sym_BSLASHNotecite] = ACTIONS(4691), + [anon_sym_BSLASHpnotecite] = ACTIONS(4691), + [anon_sym_BSLASHPnotecite] = ACTIONS(4691), + [anon_sym_BSLASHfnotecite] = ACTIONS(4691), + [anon_sym_BSLASHlabel] = ACTIONS(4691), + [anon_sym_BSLASHref] = ACTIONS(4691), + [anon_sym_BSLASHeqref] = ACTIONS(4691), + [anon_sym_BSLASHvref] = ACTIONS(4691), + [anon_sym_BSLASHVref] = ACTIONS(4691), + [anon_sym_BSLASHautoref] = ACTIONS(4691), + [anon_sym_BSLASHpageref] = ACTIONS(4691), + [anon_sym_BSLASHcref] = ACTIONS(4691), + [anon_sym_BSLASHCref] = ACTIONS(4691), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnameCref] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHlabelcref] = ACTIONS(4691), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCrefrange] = ACTIONS(4691), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnewlabel] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), + [anon_sym_BSLASHdef] = ACTIONS(4691), + [anon_sym_BSLASHlet] = ACTIONS(4691), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), + [anon_sym_BSLASHgls] = ACTIONS(4691), + [anon_sym_BSLASHGls] = ACTIONS(4691), + [anon_sym_BSLASHGLS] = ACTIONS(4691), + [anon_sym_BSLASHglspl] = ACTIONS(4691), + [anon_sym_BSLASHGlspl] = ACTIONS(4691), + [anon_sym_BSLASHGLSpl] = ACTIONS(4691), + [anon_sym_BSLASHglsdisp] = ACTIONS(4691), + [anon_sym_BSLASHglslink] = ACTIONS(4691), + [anon_sym_BSLASHglstext] = ACTIONS(4691), + [anon_sym_BSLASHGlstext] = ACTIONS(4691), + [anon_sym_BSLASHGLStext] = ACTIONS(4691), + [anon_sym_BSLASHglsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), + [anon_sym_BSLASHglsplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSplural] = ACTIONS(4691), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHglsname] = ACTIONS(4691), + [anon_sym_BSLASHGlsname] = ACTIONS(4691), + [anon_sym_BSLASHGLSname] = ACTIONS(4691), + [anon_sym_BSLASHglssymbol] = ACTIONS(4691), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), + [anon_sym_BSLASHglsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), + [anon_sym_BSLASHglsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), + [anon_sym_BSLASHglsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), + [anon_sym_BSLASHglsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), + [anon_sym_BSLASHglsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), + [anon_sym_BSLASHnewacronym] = ACTIONS(4691), + [anon_sym_BSLASHacrshort] = ACTIONS(4691), + [anon_sym_BSLASHAcrshort] = ACTIONS(4691), + [anon_sym_BSLASHACRshort] = ACTIONS(4691), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), + [anon_sym_BSLASHacrlong] = ACTIONS(4691), + [anon_sym_BSLASHAcrlong] = ACTIONS(4691), + [anon_sym_BSLASHACRlong] = ACTIONS(4691), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), + [anon_sym_BSLASHacrfull] = ACTIONS(4691), + [anon_sym_BSLASHAcrfull] = ACTIONS(4691), + [anon_sym_BSLASHACRfull] = ACTIONS(4691), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), + [anon_sym_BSLASHacs] = ACTIONS(4691), + [anon_sym_BSLASHAcs] = ACTIONS(4691), + [anon_sym_BSLASHacsp] = ACTIONS(4691), + [anon_sym_BSLASHAcsp] = ACTIONS(4691), + [anon_sym_BSLASHacl] = ACTIONS(4691), + [anon_sym_BSLASHAcl] = ACTIONS(4691), + [anon_sym_BSLASHaclp] = ACTIONS(4691), + [anon_sym_BSLASHAclp] = ACTIONS(4691), + [anon_sym_BSLASHacf] = ACTIONS(4691), + [anon_sym_BSLASHAcf] = ACTIONS(4691), + [anon_sym_BSLASHacfp] = ACTIONS(4691), + [anon_sym_BSLASHAcfp] = ACTIONS(4691), + [anon_sym_BSLASHac] = ACTIONS(4691), + [anon_sym_BSLASHAc] = ACTIONS(4691), + [anon_sym_BSLASHacp] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), + [anon_sym_BSLASHcolor] = ACTIONS(4691), + [anon_sym_BSLASHcolorbox] = ACTIONS(4691), + [anon_sym_BSLASHtextcolor] = ACTIONS(4691), + [anon_sym_BSLASHpagecolor] = ACTIONS(4691), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), + [anon_sym_BSLASHtext] = ACTIONS(4691), + [anon_sym_BSLASHintertext] = ACTIONS(4691), + [anon_sym_shortintertext] = ACTIONS(4691), + }, + [665] = { + [sym_command_name] = ACTIONS(4753), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4753), + [anon_sym_BSLASHfi] = ACTIONS(4869), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_BSLASHpart] = ACTIONS(4753), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddpart] = ACTIONS(4753), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4751), + [anon_sym_BSLASHchapter] = ACTIONS(4753), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddchap] = ACTIONS(4753), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsection] = ACTIONS(4753), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddsec] = ACTIONS(4753), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubsection] = ACTIONS(4753), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4753), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHparagraph] = ACTIONS(4753), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4753), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4751), + [anon_sym_BSLASHitem] = ACTIONS(4753), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4751), + [sym_word] = ACTIONS(4753), + [sym_placeholder] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_STAR] = ACTIONS(4753), + [anon_sym_SLASH] = ACTIONS(4753), + [anon_sym_CARET] = ACTIONS(4753), + [anon_sym__] = ACTIONS(4753), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_COLON] = ACTIONS(4753), + [anon_sym_SQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), + [anon_sym_BSLASHbegin] = ACTIONS(4753), + [anon_sym_BSLASHend] = ACTIONS(4753), + [anon_sym_BSLASHusepackage] = ACTIONS(4753), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), + [anon_sym_BSLASHinclude] = ACTIONS(4753), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), + [anon_sym_BSLASHinput] = ACTIONS(4753), + [anon_sym_BSLASHsubfile] = ACTIONS(4753), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), + [anon_sym_BSLASHbibliography] = ACTIONS(4753), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), + [anon_sym_BSLASHincludesvg] = ACTIONS(4753), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), + [anon_sym_BSLASHimport] = ACTIONS(4753), + [anon_sym_BSLASHsubimport] = ACTIONS(4753), + [anon_sym_BSLASHinputfrom] = ACTIONS(4753), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), + [anon_sym_BSLASHincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHcaption] = ACTIONS(4753), + [anon_sym_BSLASHcite] = ACTIONS(4753), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCite] = ACTIONS(4753), + [anon_sym_BSLASHnocite] = ACTIONS(4753), + [anon_sym_BSLASHcitet] = ACTIONS(4753), + [anon_sym_BSLASHcitep] = ACTIONS(4753), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteauthor] = ACTIONS(4753), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitetitle] = ACTIONS(4753), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteyear] = ACTIONS(4753), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitedate] = ACTIONS(4753), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteurl] = ACTIONS(4753), + [anon_sym_BSLASHfullcite] = ACTIONS(4753), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), + [anon_sym_BSLASHcitealt] = ACTIONS(4753), + [anon_sym_BSLASHcitealp] = ACTIONS(4753), + [anon_sym_BSLASHcitetext] = ACTIONS(4753), + [anon_sym_BSLASHparencite] = ACTIONS(4753), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHParencite] = ACTIONS(4753), + [anon_sym_BSLASHfootcite] = ACTIONS(4753), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), + [anon_sym_BSLASHtextcite] = ACTIONS(4753), + [anon_sym_BSLASHTextcite] = ACTIONS(4753), + [anon_sym_BSLASHsmartcite] = ACTIONS(4753), + [anon_sym_BSLASHSmartcite] = ACTIONS(4753), + [anon_sym_BSLASHsupercite] = ACTIONS(4753), + [anon_sym_BSLASHautocite] = ACTIONS(4753), + [anon_sym_BSLASHAutocite] = ACTIONS(4753), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHvolcite] = ACTIONS(4753), + [anon_sym_BSLASHVolcite] = ACTIONS(4753), + [anon_sym_BSLASHpvolcite] = ACTIONS(4753), + [anon_sym_BSLASHPvolcite] = ACTIONS(4753), + [anon_sym_BSLASHfvolcite] = ACTIONS(4753), + [anon_sym_BSLASHftvolcite] = ACTIONS(4753), + [anon_sym_BSLASHsvolcite] = ACTIONS(4753), + [anon_sym_BSLASHSvolcite] = ACTIONS(4753), + [anon_sym_BSLASHtvolcite] = ACTIONS(4753), + [anon_sym_BSLASHTvolcite] = ACTIONS(4753), + [anon_sym_BSLASHavolcite] = ACTIONS(4753), + [anon_sym_BSLASHAvolcite] = ACTIONS(4753), + [anon_sym_BSLASHnotecite] = ACTIONS(4753), + [anon_sym_BSLASHNotecite] = ACTIONS(4753), + [anon_sym_BSLASHpnotecite] = ACTIONS(4753), + [anon_sym_BSLASHPnotecite] = ACTIONS(4753), + [anon_sym_BSLASHfnotecite] = ACTIONS(4753), + [anon_sym_BSLASHlabel] = ACTIONS(4753), + [anon_sym_BSLASHref] = ACTIONS(4753), + [anon_sym_BSLASHeqref] = ACTIONS(4753), + [anon_sym_BSLASHvref] = ACTIONS(4753), + [anon_sym_BSLASHVref] = ACTIONS(4753), + [anon_sym_BSLASHautoref] = ACTIONS(4753), + [anon_sym_BSLASHpageref] = ACTIONS(4753), + [anon_sym_BSLASHcref] = ACTIONS(4753), + [anon_sym_BSLASHCref] = ACTIONS(4753), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnameCref] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHlabelcref] = ACTIONS(4753), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCrefrange] = ACTIONS(4753), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnewlabel] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), + [anon_sym_BSLASHdef] = ACTIONS(4753), + [anon_sym_BSLASHlet] = ACTIONS(4753), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), + [anon_sym_BSLASHgls] = ACTIONS(4753), + [anon_sym_BSLASHGls] = ACTIONS(4753), + [anon_sym_BSLASHGLS] = ACTIONS(4753), + [anon_sym_BSLASHglspl] = ACTIONS(4753), + [anon_sym_BSLASHGlspl] = ACTIONS(4753), + [anon_sym_BSLASHGLSpl] = ACTIONS(4753), + [anon_sym_BSLASHglsdisp] = ACTIONS(4753), + [anon_sym_BSLASHglslink] = ACTIONS(4753), + [anon_sym_BSLASHglstext] = ACTIONS(4753), + [anon_sym_BSLASHGlstext] = ACTIONS(4753), + [anon_sym_BSLASHGLStext] = ACTIONS(4753), + [anon_sym_BSLASHglsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), + [anon_sym_BSLASHglsplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSplural] = ACTIONS(4753), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHglsname] = ACTIONS(4753), + [anon_sym_BSLASHGlsname] = ACTIONS(4753), + [anon_sym_BSLASHGLSname] = ACTIONS(4753), + [anon_sym_BSLASHglssymbol] = ACTIONS(4753), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), + [anon_sym_BSLASHglsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), + [anon_sym_BSLASHglsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), + [anon_sym_BSLASHglsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), + [anon_sym_BSLASHglsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), + [anon_sym_BSLASHglsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), + [anon_sym_BSLASHnewacronym] = ACTIONS(4753), + [anon_sym_BSLASHacrshort] = ACTIONS(4753), + [anon_sym_BSLASHAcrshort] = ACTIONS(4753), + [anon_sym_BSLASHACRshort] = ACTIONS(4753), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), + [anon_sym_BSLASHacrlong] = ACTIONS(4753), + [anon_sym_BSLASHAcrlong] = ACTIONS(4753), + [anon_sym_BSLASHACRlong] = ACTIONS(4753), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), + [anon_sym_BSLASHacrfull] = ACTIONS(4753), + [anon_sym_BSLASHAcrfull] = ACTIONS(4753), + [anon_sym_BSLASHACRfull] = ACTIONS(4753), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), + [anon_sym_BSLASHacs] = ACTIONS(4753), + [anon_sym_BSLASHAcs] = ACTIONS(4753), + [anon_sym_BSLASHacsp] = ACTIONS(4753), + [anon_sym_BSLASHAcsp] = ACTIONS(4753), + [anon_sym_BSLASHacl] = ACTIONS(4753), + [anon_sym_BSLASHAcl] = ACTIONS(4753), + [anon_sym_BSLASHaclp] = ACTIONS(4753), + [anon_sym_BSLASHAclp] = ACTIONS(4753), + [anon_sym_BSLASHacf] = ACTIONS(4753), + [anon_sym_BSLASHAcf] = ACTIONS(4753), + [anon_sym_BSLASHacfp] = ACTIONS(4753), + [anon_sym_BSLASHAcfp] = ACTIONS(4753), + [anon_sym_BSLASHac] = ACTIONS(4753), + [anon_sym_BSLASHAc] = ACTIONS(4753), + [anon_sym_BSLASHacp] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), + [anon_sym_BSLASHcolor] = ACTIONS(4753), + [anon_sym_BSLASHcolorbox] = ACTIONS(4753), + [anon_sym_BSLASHtextcolor] = ACTIONS(4753), + [anon_sym_BSLASHpagecolor] = ACTIONS(4753), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), + [anon_sym_BSLASHtext] = ACTIONS(4753), + [anon_sym_BSLASHintertext] = ACTIONS(4753), + [anon_sym_shortintertext] = ACTIONS(4753), + [sym__trivia_raw_fi] = ACTIONS(4871), + }, + [666] = { + [sym_command_name] = ACTIONS(4753), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4753), + [anon_sym_BSLASHfi] = ACTIONS(4873), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_BSLASHpart] = ACTIONS(4753), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddpart] = ACTIONS(4753), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4751), + [anon_sym_BSLASHchapter] = ACTIONS(4753), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddchap] = ACTIONS(4753), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsection] = ACTIONS(4753), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHaddsec] = ACTIONS(4753), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubsection] = ACTIONS(4753), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4753), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4751), + [anon_sym_BSLASHparagraph] = ACTIONS(4753), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4751), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4753), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4751), + [anon_sym_BSLASHitem] = ACTIONS(4753), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4751), + [sym_word] = ACTIONS(4753), + [sym_placeholder] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_STAR] = ACTIONS(4753), + [anon_sym_SLASH] = ACTIONS(4753), + [anon_sym_CARET] = ACTIONS(4753), + [anon_sym__] = ACTIONS(4753), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_COLON] = ACTIONS(4753), + [anon_sym_SQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), + [anon_sym_BSLASHbegin] = ACTIONS(4753), + [anon_sym_BSLASHusepackage] = ACTIONS(4753), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), + [anon_sym_BSLASHinclude] = ACTIONS(4753), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), + [anon_sym_BSLASHinput] = ACTIONS(4753), + [anon_sym_BSLASHsubfile] = ACTIONS(4753), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), + [anon_sym_BSLASHbibliography] = ACTIONS(4753), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), + [anon_sym_BSLASHincludesvg] = ACTIONS(4753), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), + [anon_sym_BSLASHimport] = ACTIONS(4753), + [anon_sym_BSLASHsubimport] = ACTIONS(4753), + [anon_sym_BSLASHinputfrom] = ACTIONS(4753), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), + [anon_sym_BSLASHincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHcaption] = ACTIONS(4753), + [anon_sym_BSLASHcite] = ACTIONS(4753), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCite] = ACTIONS(4753), + [anon_sym_BSLASHnocite] = ACTIONS(4753), + [anon_sym_BSLASHcitet] = ACTIONS(4753), + [anon_sym_BSLASHcitep] = ACTIONS(4753), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteauthor] = ACTIONS(4753), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitetitle] = ACTIONS(4753), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteyear] = ACTIONS(4753), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitedate] = ACTIONS(4753), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteurl] = ACTIONS(4753), + [anon_sym_BSLASHfullcite] = ACTIONS(4753), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), + [anon_sym_BSLASHcitealt] = ACTIONS(4753), + [anon_sym_BSLASHcitealp] = ACTIONS(4753), + [anon_sym_BSLASHcitetext] = ACTIONS(4753), + [anon_sym_BSLASHparencite] = ACTIONS(4753), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHParencite] = ACTIONS(4753), + [anon_sym_BSLASHfootcite] = ACTIONS(4753), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), + [anon_sym_BSLASHtextcite] = ACTIONS(4753), + [anon_sym_BSLASHTextcite] = ACTIONS(4753), + [anon_sym_BSLASHsmartcite] = ACTIONS(4753), + [anon_sym_BSLASHSmartcite] = ACTIONS(4753), + [anon_sym_BSLASHsupercite] = ACTIONS(4753), + [anon_sym_BSLASHautocite] = ACTIONS(4753), + [anon_sym_BSLASHAutocite] = ACTIONS(4753), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHvolcite] = ACTIONS(4753), + [anon_sym_BSLASHVolcite] = ACTIONS(4753), + [anon_sym_BSLASHpvolcite] = ACTIONS(4753), + [anon_sym_BSLASHPvolcite] = ACTIONS(4753), + [anon_sym_BSLASHfvolcite] = ACTIONS(4753), + [anon_sym_BSLASHftvolcite] = ACTIONS(4753), + [anon_sym_BSLASHsvolcite] = ACTIONS(4753), + [anon_sym_BSLASHSvolcite] = ACTIONS(4753), + [anon_sym_BSLASHtvolcite] = ACTIONS(4753), + [anon_sym_BSLASHTvolcite] = ACTIONS(4753), + [anon_sym_BSLASHavolcite] = ACTIONS(4753), + [anon_sym_BSLASHAvolcite] = ACTIONS(4753), + [anon_sym_BSLASHnotecite] = ACTIONS(4753), + [anon_sym_BSLASHNotecite] = ACTIONS(4753), + [anon_sym_BSLASHpnotecite] = ACTIONS(4753), + [anon_sym_BSLASHPnotecite] = ACTIONS(4753), + [anon_sym_BSLASHfnotecite] = ACTIONS(4753), + [anon_sym_BSLASHlabel] = ACTIONS(4753), + [anon_sym_BSLASHref] = ACTIONS(4753), + [anon_sym_BSLASHeqref] = ACTIONS(4753), + [anon_sym_BSLASHvref] = ACTIONS(4753), + [anon_sym_BSLASHVref] = ACTIONS(4753), + [anon_sym_BSLASHautoref] = ACTIONS(4753), + [anon_sym_BSLASHpageref] = ACTIONS(4753), + [anon_sym_BSLASHcref] = ACTIONS(4753), + [anon_sym_BSLASHCref] = ACTIONS(4753), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnameCref] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHlabelcref] = ACTIONS(4753), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCrefrange] = ACTIONS(4753), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnewlabel] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), + [anon_sym_BSLASHdef] = ACTIONS(4753), + [anon_sym_BSLASHlet] = ACTIONS(4753), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), + [anon_sym_BSLASHgls] = ACTIONS(4753), + [anon_sym_BSLASHGls] = ACTIONS(4753), + [anon_sym_BSLASHGLS] = ACTIONS(4753), + [anon_sym_BSLASHglspl] = ACTIONS(4753), + [anon_sym_BSLASHGlspl] = ACTIONS(4753), + [anon_sym_BSLASHGLSpl] = ACTIONS(4753), + [anon_sym_BSLASHglsdisp] = ACTIONS(4753), + [anon_sym_BSLASHglslink] = ACTIONS(4753), + [anon_sym_BSLASHglstext] = ACTIONS(4753), + [anon_sym_BSLASHGlstext] = ACTIONS(4753), + [anon_sym_BSLASHGLStext] = ACTIONS(4753), + [anon_sym_BSLASHglsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), + [anon_sym_BSLASHglsplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSplural] = ACTIONS(4753), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHglsname] = ACTIONS(4753), + [anon_sym_BSLASHGlsname] = ACTIONS(4753), + [anon_sym_BSLASHGLSname] = ACTIONS(4753), + [anon_sym_BSLASHglssymbol] = ACTIONS(4753), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), + [anon_sym_BSLASHglsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), + [anon_sym_BSLASHglsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), + [anon_sym_BSLASHglsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), + [anon_sym_BSLASHglsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), + [anon_sym_BSLASHglsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), + [anon_sym_BSLASHnewacronym] = ACTIONS(4753), + [anon_sym_BSLASHacrshort] = ACTIONS(4753), + [anon_sym_BSLASHAcrshort] = ACTIONS(4753), + [anon_sym_BSLASHACRshort] = ACTIONS(4753), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), + [anon_sym_BSLASHacrlong] = ACTIONS(4753), + [anon_sym_BSLASHAcrlong] = ACTIONS(4753), + [anon_sym_BSLASHACRlong] = ACTIONS(4753), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), + [anon_sym_BSLASHacrfull] = ACTIONS(4753), + [anon_sym_BSLASHAcrfull] = ACTIONS(4753), + [anon_sym_BSLASHACRfull] = ACTIONS(4753), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), + [anon_sym_BSLASHacs] = ACTIONS(4753), + [anon_sym_BSLASHAcs] = ACTIONS(4753), + [anon_sym_BSLASHacsp] = ACTIONS(4753), + [anon_sym_BSLASHAcsp] = ACTIONS(4753), + [anon_sym_BSLASHacl] = ACTIONS(4753), + [anon_sym_BSLASHAcl] = ACTIONS(4753), + [anon_sym_BSLASHaclp] = ACTIONS(4753), + [anon_sym_BSLASHAclp] = ACTIONS(4753), + [anon_sym_BSLASHacf] = ACTIONS(4753), + [anon_sym_BSLASHAcf] = ACTIONS(4753), + [anon_sym_BSLASHacfp] = ACTIONS(4753), + [anon_sym_BSLASHAcfp] = ACTIONS(4753), + [anon_sym_BSLASHac] = ACTIONS(4753), + [anon_sym_BSLASHAc] = ACTIONS(4753), + [anon_sym_BSLASHacp] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), + [anon_sym_BSLASHcolor] = ACTIONS(4753), + [anon_sym_BSLASHcolorbox] = ACTIONS(4753), + [anon_sym_BSLASHtextcolor] = ACTIONS(4753), + [anon_sym_BSLASHpagecolor] = ACTIONS(4753), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), + [anon_sym_BSLASHtext] = ACTIONS(4753), + [anon_sym_BSLASHintertext] = ACTIONS(4753), + [anon_sym_shortintertext] = ACTIONS(4753), + [sym__trivia_raw_fi] = ACTIONS(4875), + }, + [667] = { + [sym_brack_group_text] = STATE(794), + [ts_builtin_sym_end] = ACTIONS(4877), + [sym_command_name] = ACTIONS(4879), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4877), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_COMMA] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_BSLASHpart] = ACTIONS(4879), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddpart] = ACTIONS(4879), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4877), + [anon_sym_BSLASHchapter] = ACTIONS(4879), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddchap] = ACTIONS(4879), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsection] = ACTIONS(4879), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddsec] = ACTIONS(4879), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubsection] = ACTIONS(4879), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4879), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHparagraph] = ACTIONS(4879), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4879), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4877), + [anon_sym_BSLASHitem] = ACTIONS(4879), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4877), + [anon_sym_RBRACE] = ACTIONS(4877), + [sym_word] = ACTIONS(4879), + [sym_placeholder] = ACTIONS(4877), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4879), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_CARET] = ACTIONS(4879), + [anon_sym__] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_COLON] = ACTIONS(4879), + [anon_sym_SQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(4879), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), + [anon_sym_BSLASHbegin] = ACTIONS(4879), + [anon_sym_BSLASHusepackage] = ACTIONS(4879), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), + [anon_sym_BSLASHinclude] = ACTIONS(4879), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), + [anon_sym_BSLASHinput] = ACTIONS(4879), + [anon_sym_BSLASHsubfile] = ACTIONS(4879), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), + [anon_sym_BSLASHbibliography] = ACTIONS(4879), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), + [anon_sym_BSLASHincludesvg] = ACTIONS(4879), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), + [anon_sym_BSLASHimport] = ACTIONS(4879), + [anon_sym_BSLASHsubimport] = ACTIONS(4879), + [anon_sym_BSLASHinputfrom] = ACTIONS(4879), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), + [anon_sym_BSLASHincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHcaption] = ACTIONS(4879), + [anon_sym_BSLASHcite] = ACTIONS(4879), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCite] = ACTIONS(4879), + [anon_sym_BSLASHnocite] = ACTIONS(4879), + [anon_sym_BSLASHcitet] = ACTIONS(4879), + [anon_sym_BSLASHcitep] = ACTIONS(4879), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteauthor] = ACTIONS(4879), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitetitle] = ACTIONS(4879), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteyear] = ACTIONS(4879), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitedate] = ACTIONS(4879), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteurl] = ACTIONS(4879), + [anon_sym_BSLASHfullcite] = ACTIONS(4879), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), + [anon_sym_BSLASHcitealt] = ACTIONS(4879), + [anon_sym_BSLASHcitealp] = ACTIONS(4879), + [anon_sym_BSLASHcitetext] = ACTIONS(4879), + [anon_sym_BSLASHparencite] = ACTIONS(4879), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHParencite] = ACTIONS(4879), + [anon_sym_BSLASHfootcite] = ACTIONS(4879), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), + [anon_sym_BSLASHtextcite] = ACTIONS(4879), + [anon_sym_BSLASHTextcite] = ACTIONS(4879), + [anon_sym_BSLASHsmartcite] = ACTIONS(4879), + [anon_sym_BSLASHSmartcite] = ACTIONS(4879), + [anon_sym_BSLASHsupercite] = ACTIONS(4879), + [anon_sym_BSLASHautocite] = ACTIONS(4879), + [anon_sym_BSLASHAutocite] = ACTIONS(4879), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHvolcite] = ACTIONS(4879), + [anon_sym_BSLASHVolcite] = ACTIONS(4879), + [anon_sym_BSLASHpvolcite] = ACTIONS(4879), + [anon_sym_BSLASHPvolcite] = ACTIONS(4879), + [anon_sym_BSLASHfvolcite] = ACTIONS(4879), + [anon_sym_BSLASHftvolcite] = ACTIONS(4879), + [anon_sym_BSLASHsvolcite] = ACTIONS(4879), + [anon_sym_BSLASHSvolcite] = ACTIONS(4879), + [anon_sym_BSLASHtvolcite] = ACTIONS(4879), + [anon_sym_BSLASHTvolcite] = ACTIONS(4879), + [anon_sym_BSLASHavolcite] = ACTIONS(4879), + [anon_sym_BSLASHAvolcite] = ACTIONS(4879), + [anon_sym_BSLASHnotecite] = ACTIONS(4879), + [anon_sym_BSLASHNotecite] = ACTIONS(4879), + [anon_sym_BSLASHpnotecite] = ACTIONS(4879), + [anon_sym_BSLASHPnotecite] = ACTIONS(4879), + [anon_sym_BSLASHfnotecite] = ACTIONS(4879), + [anon_sym_BSLASHlabel] = ACTIONS(4879), + [anon_sym_BSLASHref] = ACTIONS(4879), + [anon_sym_BSLASHeqref] = ACTIONS(4879), + [anon_sym_BSLASHvref] = ACTIONS(4879), + [anon_sym_BSLASHVref] = ACTIONS(4879), + [anon_sym_BSLASHautoref] = ACTIONS(4879), + [anon_sym_BSLASHpageref] = ACTIONS(4879), + [anon_sym_BSLASHcref] = ACTIONS(4879), + [anon_sym_BSLASHCref] = ACTIONS(4879), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnameCref] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHlabelcref] = ACTIONS(4879), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCrefrange] = ACTIONS(4879), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnewlabel] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), + [anon_sym_BSLASHdef] = ACTIONS(4879), + [anon_sym_BSLASHlet] = ACTIONS(4879), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), + [anon_sym_BSLASHgls] = ACTIONS(4879), + [anon_sym_BSLASHGls] = ACTIONS(4879), + [anon_sym_BSLASHGLS] = ACTIONS(4879), + [anon_sym_BSLASHglspl] = ACTIONS(4879), + [anon_sym_BSLASHGlspl] = ACTIONS(4879), + [anon_sym_BSLASHGLSpl] = ACTIONS(4879), + [anon_sym_BSLASHglsdisp] = ACTIONS(4879), + [anon_sym_BSLASHglslink] = ACTIONS(4879), + [anon_sym_BSLASHglstext] = ACTIONS(4879), + [anon_sym_BSLASHGlstext] = ACTIONS(4879), + [anon_sym_BSLASHGLStext] = ACTIONS(4879), + [anon_sym_BSLASHglsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), + [anon_sym_BSLASHglsplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSplural] = ACTIONS(4879), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHglsname] = ACTIONS(4879), + [anon_sym_BSLASHGlsname] = ACTIONS(4879), + [anon_sym_BSLASHGLSname] = ACTIONS(4879), + [anon_sym_BSLASHglssymbol] = ACTIONS(4879), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), + [anon_sym_BSLASHglsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), + [anon_sym_BSLASHglsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), + [anon_sym_BSLASHglsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), + [anon_sym_BSLASHglsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), + [anon_sym_BSLASHglsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), + [anon_sym_BSLASHnewacronym] = ACTIONS(4879), + [anon_sym_BSLASHacrshort] = ACTIONS(4879), + [anon_sym_BSLASHAcrshort] = ACTIONS(4879), + [anon_sym_BSLASHACRshort] = ACTIONS(4879), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), + [anon_sym_BSLASHacrlong] = ACTIONS(4879), + [anon_sym_BSLASHAcrlong] = ACTIONS(4879), + [anon_sym_BSLASHACRlong] = ACTIONS(4879), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), + [anon_sym_BSLASHacrfull] = ACTIONS(4879), + [anon_sym_BSLASHAcrfull] = ACTIONS(4879), + [anon_sym_BSLASHACRfull] = ACTIONS(4879), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), + [anon_sym_BSLASHacs] = ACTIONS(4879), + [anon_sym_BSLASHAcs] = ACTIONS(4879), + [anon_sym_BSLASHacsp] = ACTIONS(4879), + [anon_sym_BSLASHAcsp] = ACTIONS(4879), + [anon_sym_BSLASHacl] = ACTIONS(4879), + [anon_sym_BSLASHAcl] = ACTIONS(4879), + [anon_sym_BSLASHaclp] = ACTIONS(4879), + [anon_sym_BSLASHAclp] = ACTIONS(4879), + [anon_sym_BSLASHacf] = ACTIONS(4879), + [anon_sym_BSLASHAcf] = ACTIONS(4879), + [anon_sym_BSLASHacfp] = ACTIONS(4879), + [anon_sym_BSLASHAcfp] = ACTIONS(4879), + [anon_sym_BSLASHac] = ACTIONS(4879), + [anon_sym_BSLASHAc] = ACTIONS(4879), + [anon_sym_BSLASHacp] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), + [anon_sym_BSLASHcolor] = ACTIONS(4879), + [anon_sym_BSLASHcolorbox] = ACTIONS(4879), + [anon_sym_BSLASHtextcolor] = ACTIONS(4879), + [anon_sym_BSLASHpagecolor] = ACTIONS(4879), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), + [anon_sym_BSLASHtext] = ACTIONS(4879), + [anon_sym_BSLASHintertext] = ACTIONS(4879), + [anon_sym_shortintertext] = ACTIONS(4879), + }, + [668] = { + [sym_curly_group] = STATE(687), + [sym_brack_group_text] = STATE(1884), + [sym_command_name] = ACTIONS(4691), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4691), + [anon_sym_LPAREN] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4689), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4689), + [anon_sym_COMMA] = ACTIONS(4689), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_BSLASHpart] = ACTIONS(4691), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddpart] = ACTIONS(4691), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4689), + [anon_sym_BSLASHchapter] = ACTIONS(4691), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddchap] = ACTIONS(4691), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsection] = ACTIONS(4691), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHaddsec] = ACTIONS(4691), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubsection] = ACTIONS(4691), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4691), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4689), + [anon_sym_BSLASHparagraph] = ACTIONS(4691), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4689), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4691), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4689), + [anon_sym_BSLASHitem] = ACTIONS(4691), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(4691), + [sym_placeholder] = ACTIONS(4689), + [anon_sym_PLUS] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(4691), + [anon_sym_STAR] = ACTIONS(4691), + [anon_sym_SLASH] = ACTIONS(4691), + [anon_sym_CARET] = ACTIONS(4691), + [anon_sym__] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4691), + [anon_sym_GT] = ACTIONS(4691), + [anon_sym_BANG] = ACTIONS(4691), + [anon_sym_PIPE] = ACTIONS(4691), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_SQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), + [anon_sym_DOLLAR] = ACTIONS(4691), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4689), + [anon_sym_BSLASHbegin] = ACTIONS(4691), + [anon_sym_BSLASHusepackage] = ACTIONS(4691), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), + [anon_sym_BSLASHinclude] = ACTIONS(4691), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), + [anon_sym_BSLASHinput] = ACTIONS(4691), + [anon_sym_BSLASHsubfile] = ACTIONS(4691), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), + [anon_sym_BSLASHbibliography] = ACTIONS(4691), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), + [anon_sym_BSLASHincludesvg] = ACTIONS(4691), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), + [anon_sym_BSLASHimport] = ACTIONS(4691), + [anon_sym_BSLASHsubimport] = ACTIONS(4691), + [anon_sym_BSLASHinputfrom] = ACTIONS(4691), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), + [anon_sym_BSLASHincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHcaption] = ACTIONS(4691), + [anon_sym_BSLASHcite] = ACTIONS(4691), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCite] = ACTIONS(4691), + [anon_sym_BSLASHnocite] = ACTIONS(4691), + [anon_sym_BSLASHcitet] = ACTIONS(4691), + [anon_sym_BSLASHcitep] = ACTIONS(4691), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteauthor] = ACTIONS(4691), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitetitle] = ACTIONS(4691), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteyear] = ACTIONS(4691), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitedate] = ACTIONS(4691), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteurl] = ACTIONS(4691), + [anon_sym_BSLASHfullcite] = ACTIONS(4691), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), + [anon_sym_BSLASHcitealt] = ACTIONS(4691), + [anon_sym_BSLASHcitealp] = ACTIONS(4691), + [anon_sym_BSLASHcitetext] = ACTIONS(4691), + [anon_sym_BSLASHparencite] = ACTIONS(4691), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHParencite] = ACTIONS(4691), + [anon_sym_BSLASHfootcite] = ACTIONS(4691), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), + [anon_sym_BSLASHtextcite] = ACTIONS(4691), + [anon_sym_BSLASHTextcite] = ACTIONS(4691), + [anon_sym_BSLASHsmartcite] = ACTIONS(4691), + [anon_sym_BSLASHSmartcite] = ACTIONS(4691), + [anon_sym_BSLASHsupercite] = ACTIONS(4691), + [anon_sym_BSLASHautocite] = ACTIONS(4691), + [anon_sym_BSLASHAutocite] = ACTIONS(4691), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHvolcite] = ACTIONS(4691), + [anon_sym_BSLASHVolcite] = ACTIONS(4691), + [anon_sym_BSLASHpvolcite] = ACTIONS(4691), + [anon_sym_BSLASHPvolcite] = ACTIONS(4691), + [anon_sym_BSLASHfvolcite] = ACTIONS(4691), + [anon_sym_BSLASHftvolcite] = ACTIONS(4691), + [anon_sym_BSLASHsvolcite] = ACTIONS(4691), + [anon_sym_BSLASHSvolcite] = ACTIONS(4691), + [anon_sym_BSLASHtvolcite] = ACTIONS(4691), + [anon_sym_BSLASHTvolcite] = ACTIONS(4691), + [anon_sym_BSLASHavolcite] = ACTIONS(4691), + [anon_sym_BSLASHAvolcite] = ACTIONS(4691), + [anon_sym_BSLASHnotecite] = ACTIONS(4691), + [anon_sym_BSLASHNotecite] = ACTIONS(4691), + [anon_sym_BSLASHpnotecite] = ACTIONS(4691), + [anon_sym_BSLASHPnotecite] = ACTIONS(4691), + [anon_sym_BSLASHfnotecite] = ACTIONS(4691), + [anon_sym_BSLASHlabel] = ACTIONS(4691), + [anon_sym_BSLASHref] = ACTIONS(4691), + [anon_sym_BSLASHeqref] = ACTIONS(4691), + [anon_sym_BSLASHvref] = ACTIONS(4691), + [anon_sym_BSLASHVref] = ACTIONS(4691), + [anon_sym_BSLASHautoref] = ACTIONS(4691), + [anon_sym_BSLASHpageref] = ACTIONS(4691), + [anon_sym_BSLASHcref] = ACTIONS(4691), + [anon_sym_BSLASHCref] = ACTIONS(4691), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnameCref] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHlabelcref] = ACTIONS(4691), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCrefrange] = ACTIONS(4691), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnewlabel] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), + [anon_sym_BSLASHdef] = ACTIONS(4691), + [anon_sym_BSLASHlet] = ACTIONS(4691), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), + [anon_sym_BSLASHgls] = ACTIONS(4691), + [anon_sym_BSLASHGls] = ACTIONS(4691), + [anon_sym_BSLASHGLS] = ACTIONS(4691), + [anon_sym_BSLASHglspl] = ACTIONS(4691), + [anon_sym_BSLASHGlspl] = ACTIONS(4691), + [anon_sym_BSLASHGLSpl] = ACTIONS(4691), + [anon_sym_BSLASHglsdisp] = ACTIONS(4691), + [anon_sym_BSLASHglslink] = ACTIONS(4691), + [anon_sym_BSLASHglstext] = ACTIONS(4691), + [anon_sym_BSLASHGlstext] = ACTIONS(4691), + [anon_sym_BSLASHGLStext] = ACTIONS(4691), + [anon_sym_BSLASHglsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), + [anon_sym_BSLASHglsplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSplural] = ACTIONS(4691), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHglsname] = ACTIONS(4691), + [anon_sym_BSLASHGlsname] = ACTIONS(4691), + [anon_sym_BSLASHGLSname] = ACTIONS(4691), + [anon_sym_BSLASHglssymbol] = ACTIONS(4691), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), + [anon_sym_BSLASHglsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), + [anon_sym_BSLASHglsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), + [anon_sym_BSLASHglsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), + [anon_sym_BSLASHglsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), + [anon_sym_BSLASHglsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), + [anon_sym_BSLASHnewacronym] = ACTIONS(4691), + [anon_sym_BSLASHacrshort] = ACTIONS(4691), + [anon_sym_BSLASHAcrshort] = ACTIONS(4691), + [anon_sym_BSLASHACRshort] = ACTIONS(4691), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), + [anon_sym_BSLASHacrlong] = ACTIONS(4691), + [anon_sym_BSLASHAcrlong] = ACTIONS(4691), + [anon_sym_BSLASHACRlong] = ACTIONS(4691), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), + [anon_sym_BSLASHacrfull] = ACTIONS(4691), + [anon_sym_BSLASHAcrfull] = ACTIONS(4691), + [anon_sym_BSLASHACRfull] = ACTIONS(4691), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), + [anon_sym_BSLASHacs] = ACTIONS(4691), + [anon_sym_BSLASHAcs] = ACTIONS(4691), + [anon_sym_BSLASHacsp] = ACTIONS(4691), + [anon_sym_BSLASHAcsp] = ACTIONS(4691), + [anon_sym_BSLASHacl] = ACTIONS(4691), + [anon_sym_BSLASHAcl] = ACTIONS(4691), + [anon_sym_BSLASHaclp] = ACTIONS(4691), + [anon_sym_BSLASHAclp] = ACTIONS(4691), + [anon_sym_BSLASHacf] = ACTIONS(4691), + [anon_sym_BSLASHAcf] = ACTIONS(4691), + [anon_sym_BSLASHacfp] = ACTIONS(4691), + [anon_sym_BSLASHAcfp] = ACTIONS(4691), + [anon_sym_BSLASHac] = ACTIONS(4691), + [anon_sym_BSLASHAc] = ACTIONS(4691), + [anon_sym_BSLASHacp] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), + [anon_sym_BSLASHcolor] = ACTIONS(4691), + [anon_sym_BSLASHcolorbox] = ACTIONS(4691), + [anon_sym_BSLASHtextcolor] = ACTIONS(4691), + [anon_sym_BSLASHpagecolor] = ACTIONS(4691), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), + [anon_sym_BSLASHtext] = ACTIONS(4691), + [anon_sym_BSLASHintertext] = ACTIONS(4691), + [anon_sym_shortintertext] = ACTIONS(4691), + }, + [669] = { + [sym_curly_group] = STATE(773), + [sym_brack_group_text] = STATE(1845), + [sym_command_name] = ACTIONS(4817), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4815), + [anon_sym_COMMA] = ACTIONS(4815), + [anon_sym_EQ] = ACTIONS(4815), + [anon_sym_BSLASHpart] = ACTIONS(4817), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddpart] = ACTIONS(4817), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4815), + [anon_sym_BSLASHchapter] = ACTIONS(4817), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddchap] = ACTIONS(4817), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsection] = ACTIONS(4817), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHaddsec] = ACTIONS(4817), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubsection] = ACTIONS(4817), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4817), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4815), + [anon_sym_BSLASHparagraph] = ACTIONS(4817), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4815), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4817), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4815), + [anon_sym_BSLASHitem] = ACTIONS(4817), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4815), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(4817), + [sym_placeholder] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym__] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_BANG] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_SQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(4817), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), + [anon_sym_BSLASHbegin] = ACTIONS(4817), + [anon_sym_BSLASHusepackage] = ACTIONS(4817), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), + [anon_sym_BSLASHinclude] = ACTIONS(4817), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), + [anon_sym_BSLASHinput] = ACTIONS(4817), + [anon_sym_BSLASHsubfile] = ACTIONS(4817), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), + [anon_sym_BSLASHbibliography] = ACTIONS(4817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), + [anon_sym_BSLASHincludesvg] = ACTIONS(4817), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), + [anon_sym_BSLASHimport] = ACTIONS(4817), + [anon_sym_BSLASHsubimport] = ACTIONS(4817), + [anon_sym_BSLASHinputfrom] = ACTIONS(4817), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), + [anon_sym_BSLASHincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHcaption] = ACTIONS(4817), + [anon_sym_BSLASHcite] = ACTIONS(4817), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCite] = ACTIONS(4817), + [anon_sym_BSLASHnocite] = ACTIONS(4817), + [anon_sym_BSLASHcitet] = ACTIONS(4817), + [anon_sym_BSLASHcitep] = ACTIONS(4817), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteauthor] = ACTIONS(4817), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitetitle] = ACTIONS(4817), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteyear] = ACTIONS(4817), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitedate] = ACTIONS(4817), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteurl] = ACTIONS(4817), + [anon_sym_BSLASHfullcite] = ACTIONS(4817), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), + [anon_sym_BSLASHcitealt] = ACTIONS(4817), + [anon_sym_BSLASHcitealp] = ACTIONS(4817), + [anon_sym_BSLASHcitetext] = ACTIONS(4817), + [anon_sym_BSLASHparencite] = ACTIONS(4817), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHParencite] = ACTIONS(4817), + [anon_sym_BSLASHfootcite] = ACTIONS(4817), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), + [anon_sym_BSLASHtextcite] = ACTIONS(4817), + [anon_sym_BSLASHTextcite] = ACTIONS(4817), + [anon_sym_BSLASHsmartcite] = ACTIONS(4817), + [anon_sym_BSLASHSmartcite] = ACTIONS(4817), + [anon_sym_BSLASHsupercite] = ACTIONS(4817), + [anon_sym_BSLASHautocite] = ACTIONS(4817), + [anon_sym_BSLASHAutocite] = ACTIONS(4817), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHvolcite] = ACTIONS(4817), + [anon_sym_BSLASHVolcite] = ACTIONS(4817), + [anon_sym_BSLASHpvolcite] = ACTIONS(4817), + [anon_sym_BSLASHPvolcite] = ACTIONS(4817), + [anon_sym_BSLASHfvolcite] = ACTIONS(4817), + [anon_sym_BSLASHftvolcite] = ACTIONS(4817), + [anon_sym_BSLASHsvolcite] = ACTIONS(4817), + [anon_sym_BSLASHSvolcite] = ACTIONS(4817), + [anon_sym_BSLASHtvolcite] = ACTIONS(4817), + [anon_sym_BSLASHTvolcite] = ACTIONS(4817), + [anon_sym_BSLASHavolcite] = ACTIONS(4817), + [anon_sym_BSLASHAvolcite] = ACTIONS(4817), + [anon_sym_BSLASHnotecite] = ACTIONS(4817), + [anon_sym_BSLASHNotecite] = ACTIONS(4817), + [anon_sym_BSLASHpnotecite] = ACTIONS(4817), + [anon_sym_BSLASHPnotecite] = ACTIONS(4817), + [anon_sym_BSLASHfnotecite] = ACTIONS(4817), + [anon_sym_BSLASHlabel] = ACTIONS(4817), + [anon_sym_BSLASHref] = ACTIONS(4817), + [anon_sym_BSLASHeqref] = ACTIONS(4817), + [anon_sym_BSLASHvref] = ACTIONS(4817), + [anon_sym_BSLASHVref] = ACTIONS(4817), + [anon_sym_BSLASHautoref] = ACTIONS(4817), + [anon_sym_BSLASHpageref] = ACTIONS(4817), + [anon_sym_BSLASHcref] = ACTIONS(4817), + [anon_sym_BSLASHCref] = ACTIONS(4817), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnameCref] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHlabelcref] = ACTIONS(4817), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCrefrange] = ACTIONS(4817), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnewlabel] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), + [anon_sym_BSLASHdef] = ACTIONS(4817), + [anon_sym_BSLASHlet] = ACTIONS(4817), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), + [anon_sym_BSLASHgls] = ACTIONS(4817), + [anon_sym_BSLASHGls] = ACTIONS(4817), + [anon_sym_BSLASHGLS] = ACTIONS(4817), + [anon_sym_BSLASHglspl] = ACTIONS(4817), + [anon_sym_BSLASHGlspl] = ACTIONS(4817), + [anon_sym_BSLASHGLSpl] = ACTIONS(4817), + [anon_sym_BSLASHglsdisp] = ACTIONS(4817), + [anon_sym_BSLASHglslink] = ACTIONS(4817), + [anon_sym_BSLASHglstext] = ACTIONS(4817), + [anon_sym_BSLASHGlstext] = ACTIONS(4817), + [anon_sym_BSLASHGLStext] = ACTIONS(4817), + [anon_sym_BSLASHglsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), + [anon_sym_BSLASHglsplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSplural] = ACTIONS(4817), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHglsname] = ACTIONS(4817), + [anon_sym_BSLASHGlsname] = ACTIONS(4817), + [anon_sym_BSLASHGLSname] = ACTIONS(4817), + [anon_sym_BSLASHglssymbol] = ACTIONS(4817), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), + [anon_sym_BSLASHglsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), + [anon_sym_BSLASHglsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), + [anon_sym_BSLASHglsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), + [anon_sym_BSLASHglsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), + [anon_sym_BSLASHglsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), + [anon_sym_BSLASHnewacronym] = ACTIONS(4817), + [anon_sym_BSLASHacrshort] = ACTIONS(4817), + [anon_sym_BSLASHAcrshort] = ACTIONS(4817), + [anon_sym_BSLASHACRshort] = ACTIONS(4817), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), + [anon_sym_BSLASHacrlong] = ACTIONS(4817), + [anon_sym_BSLASHAcrlong] = ACTIONS(4817), + [anon_sym_BSLASHACRlong] = ACTIONS(4817), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), + [anon_sym_BSLASHacrfull] = ACTIONS(4817), + [anon_sym_BSLASHAcrfull] = ACTIONS(4817), + [anon_sym_BSLASHACRfull] = ACTIONS(4817), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), + [anon_sym_BSLASHacs] = ACTIONS(4817), + [anon_sym_BSLASHAcs] = ACTIONS(4817), + [anon_sym_BSLASHacsp] = ACTIONS(4817), + [anon_sym_BSLASHAcsp] = ACTIONS(4817), + [anon_sym_BSLASHacl] = ACTIONS(4817), + [anon_sym_BSLASHAcl] = ACTIONS(4817), + [anon_sym_BSLASHaclp] = ACTIONS(4817), + [anon_sym_BSLASHAclp] = ACTIONS(4817), + [anon_sym_BSLASHacf] = ACTIONS(4817), + [anon_sym_BSLASHAcf] = ACTIONS(4817), + [anon_sym_BSLASHacfp] = ACTIONS(4817), + [anon_sym_BSLASHAcfp] = ACTIONS(4817), + [anon_sym_BSLASHac] = ACTIONS(4817), + [anon_sym_BSLASHAc] = ACTIONS(4817), + [anon_sym_BSLASHacp] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), + [anon_sym_BSLASHcolor] = ACTIONS(4817), + [anon_sym_BSLASHcolorbox] = ACTIONS(4817), + [anon_sym_BSLASHtextcolor] = ACTIONS(4817), + [anon_sym_BSLASHpagecolor] = ACTIONS(4817), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), + [anon_sym_BSLASHtext] = ACTIONS(4817), + [anon_sym_BSLASHintertext] = ACTIONS(4817), + [anon_sym_shortintertext] = ACTIONS(4817), + }, + [670] = { + [ts_builtin_sym_end] = ACTIONS(4881), + [sym_command_name] = ACTIONS(4883), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4883), + [anon_sym_LPAREN] = ACTIONS(4881), + [anon_sym_RPAREN] = ACTIONS(4881), + [anon_sym_LBRACK] = ACTIONS(4881), + [anon_sym_RBRACK] = ACTIONS(4881), + [anon_sym_COMMA] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(4881), + [anon_sym_BSLASHpart] = ACTIONS(4883), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddpart] = ACTIONS(4883), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4881), + [anon_sym_BSLASHchapter] = ACTIONS(4883), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddchap] = ACTIONS(4883), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsection] = ACTIONS(4883), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddsec] = ACTIONS(4883), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubsection] = ACTIONS(4883), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4883), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHparagraph] = ACTIONS(4883), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4883), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4881), + [anon_sym_BSLASHitem] = ACTIONS(4883), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4881), + [anon_sym_LBRACE] = ACTIONS(4881), + [anon_sym_RBRACE] = ACTIONS(4881), + [sym_word] = ACTIONS(4883), + [sym_placeholder] = ACTIONS(4881), + [anon_sym_PLUS] = ACTIONS(4883), + [anon_sym_DASH] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_CARET] = ACTIONS(4883), + [anon_sym__] = ACTIONS(4883), + [anon_sym_LT] = ACTIONS(4883), + [anon_sym_GT] = ACTIONS(4883), + [anon_sym_BANG] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4883), + [anon_sym_COLON] = ACTIONS(4883), + [anon_sym_SQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4881), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4881), + [anon_sym_DOLLAR] = ACTIONS(4883), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4881), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4881), + [anon_sym_BSLASHbegin] = ACTIONS(4883), + [anon_sym_BSLASHusepackage] = ACTIONS(4883), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4883), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4883), + [anon_sym_BSLASHinclude] = ACTIONS(4883), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4883), + [anon_sym_BSLASHinput] = ACTIONS(4883), + [anon_sym_BSLASHsubfile] = ACTIONS(4883), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4883), + [anon_sym_BSLASHbibliography] = ACTIONS(4883), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4883), + [anon_sym_BSLASHincludesvg] = ACTIONS(4883), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4883), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4883), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4883), + [anon_sym_BSLASHimport] = ACTIONS(4883), + [anon_sym_BSLASHsubimport] = ACTIONS(4883), + [anon_sym_BSLASHinputfrom] = ACTIONS(4883), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4883), + [anon_sym_BSLASHincludefrom] = ACTIONS(4883), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4883), + [anon_sym_BSLASHcaption] = ACTIONS(4883), + [anon_sym_BSLASHcite] = ACTIONS(4883), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCite] = ACTIONS(4883), + [anon_sym_BSLASHnocite] = ACTIONS(4883), + [anon_sym_BSLASHcitet] = ACTIONS(4883), + [anon_sym_BSLASHcitep] = ACTIONS(4883), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteauthor] = ACTIONS(4883), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4883), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitetitle] = ACTIONS(4883), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteyear] = ACTIONS(4883), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitedate] = ACTIONS(4883), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteurl] = ACTIONS(4883), + [anon_sym_BSLASHfullcite] = ACTIONS(4883), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4883), + [anon_sym_BSLASHcitealt] = ACTIONS(4883), + [anon_sym_BSLASHcitealp] = ACTIONS(4883), + [anon_sym_BSLASHcitetext] = ACTIONS(4883), + [anon_sym_BSLASHparencite] = ACTIONS(4883), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHParencite] = ACTIONS(4883), + [anon_sym_BSLASHfootcite] = ACTIONS(4883), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4883), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4883), + [anon_sym_BSLASHtextcite] = ACTIONS(4883), + [anon_sym_BSLASHTextcite] = ACTIONS(4883), + [anon_sym_BSLASHsmartcite] = ACTIONS(4883), + [anon_sym_BSLASHSmartcite] = ACTIONS(4883), + [anon_sym_BSLASHsupercite] = ACTIONS(4883), + [anon_sym_BSLASHautocite] = ACTIONS(4883), + [anon_sym_BSLASHAutocite] = ACTIONS(4883), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHvolcite] = ACTIONS(4883), + [anon_sym_BSLASHVolcite] = ACTIONS(4883), + [anon_sym_BSLASHpvolcite] = ACTIONS(4883), + [anon_sym_BSLASHPvolcite] = ACTIONS(4883), + [anon_sym_BSLASHfvolcite] = ACTIONS(4883), + [anon_sym_BSLASHftvolcite] = ACTIONS(4883), + [anon_sym_BSLASHsvolcite] = ACTIONS(4883), + [anon_sym_BSLASHSvolcite] = ACTIONS(4883), + [anon_sym_BSLASHtvolcite] = ACTIONS(4883), + [anon_sym_BSLASHTvolcite] = ACTIONS(4883), + [anon_sym_BSLASHavolcite] = ACTIONS(4883), + [anon_sym_BSLASHAvolcite] = ACTIONS(4883), + [anon_sym_BSLASHnotecite] = ACTIONS(4883), + [anon_sym_BSLASHNotecite] = ACTIONS(4883), + [anon_sym_BSLASHpnotecite] = ACTIONS(4883), + [anon_sym_BSLASHPnotecite] = ACTIONS(4883), + [anon_sym_BSLASHfnotecite] = ACTIONS(4883), + [anon_sym_BSLASHlabel] = ACTIONS(4883), + [anon_sym_BSLASHref] = ACTIONS(4883), + [anon_sym_BSLASHeqref] = ACTIONS(4883), + [anon_sym_BSLASHvref] = ACTIONS(4883), + [anon_sym_BSLASHVref] = ACTIONS(4883), + [anon_sym_BSLASHautoref] = ACTIONS(4883), + [anon_sym_BSLASHpageref] = ACTIONS(4883), + [anon_sym_BSLASHcref] = ACTIONS(4883), + [anon_sym_BSLASHCref] = ACTIONS(4883), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4881), + [anon_sym_BSLASHnamecref] = ACTIONS(4883), + [anon_sym_BSLASHnameCref] = ACTIONS(4883), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4883), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4883), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4883), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4883), + [anon_sym_BSLASHlabelcref] = ACTIONS(4883), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4883), + [anon_sym_BSLASHcrefrange] = ACTIONS(4883), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCrefrange] = ACTIONS(4883), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4881), + [anon_sym_BSLASHnewlabel] = ACTIONS(4883), + [anon_sym_BSLASHnewcommand] = ACTIONS(4883), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4883), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4883), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4883), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4881), + [anon_sym_BSLASHdef] = ACTIONS(4883), + [anon_sym_BSLASHlet] = ACTIONS(4883), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4883), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4883), + [anon_sym_BSLASHgls] = ACTIONS(4883), + [anon_sym_BSLASHGls] = ACTIONS(4883), + [anon_sym_BSLASHGLS] = ACTIONS(4883), + [anon_sym_BSLASHglspl] = ACTIONS(4883), + [anon_sym_BSLASHGlspl] = ACTIONS(4883), + [anon_sym_BSLASHGLSpl] = ACTIONS(4883), + [anon_sym_BSLASHglsdisp] = ACTIONS(4883), + [anon_sym_BSLASHglslink] = ACTIONS(4883), + [anon_sym_BSLASHglstext] = ACTIONS(4883), + [anon_sym_BSLASHGlstext] = ACTIONS(4883), + [anon_sym_BSLASHGLStext] = ACTIONS(4883), + [anon_sym_BSLASHglsfirst] = ACTIONS(4883), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4883), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4883), + [anon_sym_BSLASHglsplural] = ACTIONS(4883), + [anon_sym_BSLASHGlsplural] = ACTIONS(4883), + [anon_sym_BSLASHGLSplural] = ACTIONS(4883), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHglsname] = ACTIONS(4883), + [anon_sym_BSLASHGlsname] = ACTIONS(4883), + [anon_sym_BSLASHGLSname] = ACTIONS(4883), + [anon_sym_BSLASHglssymbol] = ACTIONS(4883), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4883), + [anon_sym_BSLASHglsdesc] = ACTIONS(4883), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4883), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4883), + [anon_sym_BSLASHglsuseri] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4883), + [anon_sym_BSLASHglsuserii] = ACTIONS(4883), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4883), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4883), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4883), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4883), + [anon_sym_BSLASHglsuserv] = ACTIONS(4883), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4883), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4883), + [anon_sym_BSLASHglsuservi] = ACTIONS(4883), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4883), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4883), + [anon_sym_BSLASHnewacronym] = ACTIONS(4883), + [anon_sym_BSLASHacrshort] = ACTIONS(4883), + [anon_sym_BSLASHAcrshort] = ACTIONS(4883), + [anon_sym_BSLASHACRshort] = ACTIONS(4883), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4883), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4883), + [anon_sym_BSLASHacrlong] = ACTIONS(4883), + [anon_sym_BSLASHAcrlong] = ACTIONS(4883), + [anon_sym_BSLASHACRlong] = ACTIONS(4883), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4883), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4883), + [anon_sym_BSLASHacrfull] = ACTIONS(4883), + [anon_sym_BSLASHAcrfull] = ACTIONS(4883), + [anon_sym_BSLASHACRfull] = ACTIONS(4883), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4883), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4883), + [anon_sym_BSLASHacs] = ACTIONS(4883), + [anon_sym_BSLASHAcs] = ACTIONS(4883), + [anon_sym_BSLASHacsp] = ACTIONS(4883), + [anon_sym_BSLASHAcsp] = ACTIONS(4883), + [anon_sym_BSLASHacl] = ACTIONS(4883), + [anon_sym_BSLASHAcl] = ACTIONS(4883), + [anon_sym_BSLASHaclp] = ACTIONS(4883), + [anon_sym_BSLASHAclp] = ACTIONS(4883), + [anon_sym_BSLASHacf] = ACTIONS(4883), + [anon_sym_BSLASHAcf] = ACTIONS(4883), + [anon_sym_BSLASHacfp] = ACTIONS(4883), + [anon_sym_BSLASHAcfp] = ACTIONS(4883), + [anon_sym_BSLASHac] = ACTIONS(4883), + [anon_sym_BSLASHAc] = ACTIONS(4883), + [anon_sym_BSLASHacp] = ACTIONS(4883), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4883), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4883), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4883), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4883), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4883), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4883), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4883), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4883), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4883), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4883), + [anon_sym_BSLASHcolor] = ACTIONS(4883), + [anon_sym_BSLASHcolorbox] = ACTIONS(4883), + [anon_sym_BSLASHtextcolor] = ACTIONS(4883), + [anon_sym_BSLASHpagecolor] = ACTIONS(4883), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4883), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4883), + [anon_sym_BSLASHtext] = ACTIONS(4883), + [anon_sym_BSLASHintertext] = ACTIONS(4883), + [anon_sym_shortintertext] = ACTIONS(4883), + }, + [671] = { + [ts_builtin_sym_end] = ACTIONS(4885), + [sym_command_name] = ACTIONS(4887), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_LBRACK] = ACTIONS(4885), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_BSLASHpart] = ACTIONS(4887), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddpart] = ACTIONS(4887), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4885), + [anon_sym_BSLASHchapter] = ACTIONS(4887), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddchap] = ACTIONS(4887), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsection] = ACTIONS(4887), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddsec] = ACTIONS(4887), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubsection] = ACTIONS(4887), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4887), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHparagraph] = ACTIONS(4887), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4887), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4885), + [anon_sym_BSLASHitem] = ACTIONS(4887), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_RBRACE] = ACTIONS(4885), + [sym_word] = ACTIONS(4887), + [sym_placeholder] = ACTIONS(4885), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym__] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_COLON] = ACTIONS(4887), + [anon_sym_SQUOTE] = ACTIONS(4887), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), + [anon_sym_BSLASHbegin] = ACTIONS(4887), + [anon_sym_BSLASHusepackage] = ACTIONS(4887), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), + [anon_sym_BSLASHinclude] = ACTIONS(4887), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), + [anon_sym_BSLASHinput] = ACTIONS(4887), + [anon_sym_BSLASHsubfile] = ACTIONS(4887), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), + [anon_sym_BSLASHbibliography] = ACTIONS(4887), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), + [anon_sym_BSLASHincludesvg] = ACTIONS(4887), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), + [anon_sym_BSLASHimport] = ACTIONS(4887), + [anon_sym_BSLASHsubimport] = ACTIONS(4887), + [anon_sym_BSLASHinputfrom] = ACTIONS(4887), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), + [anon_sym_BSLASHincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHcaption] = ACTIONS(4887), + [anon_sym_BSLASHcite] = ACTIONS(4887), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCite] = ACTIONS(4887), + [anon_sym_BSLASHnocite] = ACTIONS(4887), + [anon_sym_BSLASHcitet] = ACTIONS(4887), + [anon_sym_BSLASHcitep] = ACTIONS(4887), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteauthor] = ACTIONS(4887), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitetitle] = ACTIONS(4887), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteyear] = ACTIONS(4887), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitedate] = ACTIONS(4887), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteurl] = ACTIONS(4887), + [anon_sym_BSLASHfullcite] = ACTIONS(4887), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), + [anon_sym_BSLASHcitealt] = ACTIONS(4887), + [anon_sym_BSLASHcitealp] = ACTIONS(4887), + [anon_sym_BSLASHcitetext] = ACTIONS(4887), + [anon_sym_BSLASHparencite] = ACTIONS(4887), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHParencite] = ACTIONS(4887), + [anon_sym_BSLASHfootcite] = ACTIONS(4887), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), + [anon_sym_BSLASHtextcite] = ACTIONS(4887), + [anon_sym_BSLASHTextcite] = ACTIONS(4887), + [anon_sym_BSLASHsmartcite] = ACTIONS(4887), + [anon_sym_BSLASHSmartcite] = ACTIONS(4887), + [anon_sym_BSLASHsupercite] = ACTIONS(4887), + [anon_sym_BSLASHautocite] = ACTIONS(4887), + [anon_sym_BSLASHAutocite] = ACTIONS(4887), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHvolcite] = ACTIONS(4887), + [anon_sym_BSLASHVolcite] = ACTIONS(4887), + [anon_sym_BSLASHpvolcite] = ACTIONS(4887), + [anon_sym_BSLASHPvolcite] = ACTIONS(4887), + [anon_sym_BSLASHfvolcite] = ACTIONS(4887), + [anon_sym_BSLASHftvolcite] = ACTIONS(4887), + [anon_sym_BSLASHsvolcite] = ACTIONS(4887), + [anon_sym_BSLASHSvolcite] = ACTIONS(4887), + [anon_sym_BSLASHtvolcite] = ACTIONS(4887), + [anon_sym_BSLASHTvolcite] = ACTIONS(4887), + [anon_sym_BSLASHavolcite] = ACTIONS(4887), + [anon_sym_BSLASHAvolcite] = ACTIONS(4887), + [anon_sym_BSLASHnotecite] = ACTIONS(4887), + [anon_sym_BSLASHNotecite] = ACTIONS(4887), + [anon_sym_BSLASHpnotecite] = ACTIONS(4887), + [anon_sym_BSLASHPnotecite] = ACTIONS(4887), + [anon_sym_BSLASHfnotecite] = ACTIONS(4887), + [anon_sym_BSLASHlabel] = ACTIONS(4887), + [anon_sym_BSLASHref] = ACTIONS(4887), + [anon_sym_BSLASHeqref] = ACTIONS(4887), + [anon_sym_BSLASHvref] = ACTIONS(4887), + [anon_sym_BSLASHVref] = ACTIONS(4887), + [anon_sym_BSLASHautoref] = ACTIONS(4887), + [anon_sym_BSLASHpageref] = ACTIONS(4887), + [anon_sym_BSLASHcref] = ACTIONS(4887), + [anon_sym_BSLASHCref] = ACTIONS(4887), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnameCref] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHlabelcref] = ACTIONS(4887), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCrefrange] = ACTIONS(4887), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnewlabel] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), + [anon_sym_BSLASHdef] = ACTIONS(4887), + [anon_sym_BSLASHlet] = ACTIONS(4887), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), + [anon_sym_BSLASHgls] = ACTIONS(4887), + [anon_sym_BSLASHGls] = ACTIONS(4887), + [anon_sym_BSLASHGLS] = ACTIONS(4887), + [anon_sym_BSLASHglspl] = ACTIONS(4887), + [anon_sym_BSLASHGlspl] = ACTIONS(4887), + [anon_sym_BSLASHGLSpl] = ACTIONS(4887), + [anon_sym_BSLASHglsdisp] = ACTIONS(4887), + [anon_sym_BSLASHglslink] = ACTIONS(4887), + [anon_sym_BSLASHglstext] = ACTIONS(4887), + [anon_sym_BSLASHGlstext] = ACTIONS(4887), + [anon_sym_BSLASHGLStext] = ACTIONS(4887), + [anon_sym_BSLASHglsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), + [anon_sym_BSLASHglsplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSplural] = ACTIONS(4887), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHglsname] = ACTIONS(4887), + [anon_sym_BSLASHGlsname] = ACTIONS(4887), + [anon_sym_BSLASHGLSname] = ACTIONS(4887), + [anon_sym_BSLASHglssymbol] = ACTIONS(4887), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), + [anon_sym_BSLASHglsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), + [anon_sym_BSLASHglsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), + [anon_sym_BSLASHglsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), + [anon_sym_BSLASHglsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), + [anon_sym_BSLASHglsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), + [anon_sym_BSLASHnewacronym] = ACTIONS(4887), + [anon_sym_BSLASHacrshort] = ACTIONS(4887), + [anon_sym_BSLASHAcrshort] = ACTIONS(4887), + [anon_sym_BSLASHACRshort] = ACTIONS(4887), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), + [anon_sym_BSLASHacrlong] = ACTIONS(4887), + [anon_sym_BSLASHAcrlong] = ACTIONS(4887), + [anon_sym_BSLASHACRlong] = ACTIONS(4887), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), + [anon_sym_BSLASHacrfull] = ACTIONS(4887), + [anon_sym_BSLASHAcrfull] = ACTIONS(4887), + [anon_sym_BSLASHACRfull] = ACTIONS(4887), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), + [anon_sym_BSLASHacs] = ACTIONS(4887), + [anon_sym_BSLASHAcs] = ACTIONS(4887), + [anon_sym_BSLASHacsp] = ACTIONS(4887), + [anon_sym_BSLASHAcsp] = ACTIONS(4887), + [anon_sym_BSLASHacl] = ACTIONS(4887), + [anon_sym_BSLASHAcl] = ACTIONS(4887), + [anon_sym_BSLASHaclp] = ACTIONS(4887), + [anon_sym_BSLASHAclp] = ACTIONS(4887), + [anon_sym_BSLASHacf] = ACTIONS(4887), + [anon_sym_BSLASHAcf] = ACTIONS(4887), + [anon_sym_BSLASHacfp] = ACTIONS(4887), + [anon_sym_BSLASHAcfp] = ACTIONS(4887), + [anon_sym_BSLASHac] = ACTIONS(4887), + [anon_sym_BSLASHAc] = ACTIONS(4887), + [anon_sym_BSLASHacp] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), + [anon_sym_BSLASHcolor] = ACTIONS(4887), + [anon_sym_BSLASHcolorbox] = ACTIONS(4887), + [anon_sym_BSLASHtextcolor] = ACTIONS(4887), + [anon_sym_BSLASHpagecolor] = ACTIONS(4887), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), + [anon_sym_BSLASHtext] = ACTIONS(4887), + [anon_sym_BSLASHintertext] = ACTIONS(4887), + [anon_sym_shortintertext] = ACTIONS(4887), + }, + [672] = { + [sym_curly_group] = STATE(965), + [sym_command_name] = ACTIONS(4825), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4825), + [anon_sym_LPAREN] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_LBRACK] = ACTIONS(4823), + [anon_sym_RBRACK] = ACTIONS(4823), + [anon_sym_COMMA] = ACTIONS(4823), + [anon_sym_EQ] = ACTIONS(4823), + [anon_sym_BSLASHpart] = ACTIONS(4825), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddpart] = ACTIONS(4825), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4823), + [anon_sym_BSLASHchapter] = ACTIONS(4825), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddchap] = ACTIONS(4825), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsection] = ACTIONS(4825), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddsec] = ACTIONS(4825), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubsection] = ACTIONS(4825), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4825), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHparagraph] = ACTIONS(4825), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4825), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4823), + [anon_sym_BSLASHitem] = ACTIONS(4825), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4823), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(4825), + [sym_placeholder] = ACTIONS(4823), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym__] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_BANG] = ACTIONS(4825), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_COLON] = ACTIONS(4825), + [anon_sym_SQUOTE] = ACTIONS(4825), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4823), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4825), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4823), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4823), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4823), + [anon_sym_BSLASHbegin] = ACTIONS(4825), + [anon_sym_BSLASHusepackage] = ACTIONS(4825), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4825), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4825), + [anon_sym_BSLASHinclude] = ACTIONS(4825), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4825), + [anon_sym_BSLASHinput] = ACTIONS(4825), + [anon_sym_BSLASHsubfile] = ACTIONS(4825), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4825), + [anon_sym_BSLASHbibliography] = ACTIONS(4825), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4825), + [anon_sym_BSLASHincludesvg] = ACTIONS(4825), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4825), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4825), + [anon_sym_BSLASHimport] = ACTIONS(4825), + [anon_sym_BSLASHsubimport] = ACTIONS(4825), + [anon_sym_BSLASHinputfrom] = ACTIONS(4825), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4825), + [anon_sym_BSLASHincludefrom] = ACTIONS(4825), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4825), + [anon_sym_BSLASHcaption] = ACTIONS(4825), + [anon_sym_BSLASHcite] = ACTIONS(4825), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCite] = ACTIONS(4825), + [anon_sym_BSLASHnocite] = ACTIONS(4825), + [anon_sym_BSLASHcitet] = ACTIONS(4825), + [anon_sym_BSLASHcitep] = ACTIONS(4825), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteauthor] = ACTIONS(4825), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4825), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitetitle] = ACTIONS(4825), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteyear] = ACTIONS(4825), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitedate] = ACTIONS(4825), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteurl] = ACTIONS(4825), + [anon_sym_BSLASHfullcite] = ACTIONS(4825), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4825), + [anon_sym_BSLASHcitealt] = ACTIONS(4825), + [anon_sym_BSLASHcitealp] = ACTIONS(4825), + [anon_sym_BSLASHcitetext] = ACTIONS(4825), + [anon_sym_BSLASHparencite] = ACTIONS(4825), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHParencite] = ACTIONS(4825), + [anon_sym_BSLASHfootcite] = ACTIONS(4825), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4825), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4825), + [anon_sym_BSLASHtextcite] = ACTIONS(4825), + [anon_sym_BSLASHTextcite] = ACTIONS(4825), + [anon_sym_BSLASHsmartcite] = ACTIONS(4825), + [anon_sym_BSLASHSmartcite] = ACTIONS(4825), + [anon_sym_BSLASHsupercite] = ACTIONS(4825), + [anon_sym_BSLASHautocite] = ACTIONS(4825), + [anon_sym_BSLASHAutocite] = ACTIONS(4825), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHvolcite] = ACTIONS(4825), + [anon_sym_BSLASHVolcite] = ACTIONS(4825), + [anon_sym_BSLASHpvolcite] = ACTIONS(4825), + [anon_sym_BSLASHPvolcite] = ACTIONS(4825), + [anon_sym_BSLASHfvolcite] = ACTIONS(4825), + [anon_sym_BSLASHftvolcite] = ACTIONS(4825), + [anon_sym_BSLASHsvolcite] = ACTIONS(4825), + [anon_sym_BSLASHSvolcite] = ACTIONS(4825), + [anon_sym_BSLASHtvolcite] = ACTIONS(4825), + [anon_sym_BSLASHTvolcite] = ACTIONS(4825), + [anon_sym_BSLASHavolcite] = ACTIONS(4825), + [anon_sym_BSLASHAvolcite] = ACTIONS(4825), + [anon_sym_BSLASHnotecite] = ACTIONS(4825), + [anon_sym_BSLASHNotecite] = ACTIONS(4825), + [anon_sym_BSLASHpnotecite] = ACTIONS(4825), + [anon_sym_BSLASHPnotecite] = ACTIONS(4825), + [anon_sym_BSLASHfnotecite] = ACTIONS(4825), + [anon_sym_BSLASHlabel] = ACTIONS(4825), + [anon_sym_BSLASHref] = ACTIONS(4825), + [anon_sym_BSLASHeqref] = ACTIONS(4825), + [anon_sym_BSLASHvref] = ACTIONS(4825), + [anon_sym_BSLASHVref] = ACTIONS(4825), + [anon_sym_BSLASHautoref] = ACTIONS(4825), + [anon_sym_BSLASHpageref] = ACTIONS(4825), + [anon_sym_BSLASHcref] = ACTIONS(4825), + [anon_sym_BSLASHCref] = ACTIONS(4825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4823), + [anon_sym_BSLASHnamecref] = ACTIONS(4825), + [anon_sym_BSLASHnameCref] = ACTIONS(4825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4825), + [anon_sym_BSLASHlabelcref] = ACTIONS(4825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4825), + [anon_sym_BSLASHcrefrange] = ACTIONS(4825), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCrefrange] = ACTIONS(4825), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4823), + [anon_sym_BSLASHnewlabel] = ACTIONS(4825), + [anon_sym_BSLASHnewcommand] = ACTIONS(4825), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4825), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4825), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4825), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4823), + [anon_sym_BSLASHdef] = ACTIONS(4825), + [anon_sym_BSLASHlet] = ACTIONS(4825), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4825), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4825), + [anon_sym_BSLASHgls] = ACTIONS(4825), + [anon_sym_BSLASHGls] = ACTIONS(4825), + [anon_sym_BSLASHGLS] = ACTIONS(4825), + [anon_sym_BSLASHglspl] = ACTIONS(4825), + [anon_sym_BSLASHGlspl] = ACTIONS(4825), + [anon_sym_BSLASHGLSpl] = ACTIONS(4825), + [anon_sym_BSLASHglsdisp] = ACTIONS(4825), + [anon_sym_BSLASHglslink] = ACTIONS(4825), + [anon_sym_BSLASHglstext] = ACTIONS(4825), + [anon_sym_BSLASHGlstext] = ACTIONS(4825), + [anon_sym_BSLASHGLStext] = ACTIONS(4825), + [anon_sym_BSLASHglsfirst] = ACTIONS(4825), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4825), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4825), + [anon_sym_BSLASHglsplural] = ACTIONS(4825), + [anon_sym_BSLASHGlsplural] = ACTIONS(4825), + [anon_sym_BSLASHGLSplural] = ACTIONS(4825), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHglsname] = ACTIONS(4825), + [anon_sym_BSLASHGlsname] = ACTIONS(4825), + [anon_sym_BSLASHGLSname] = ACTIONS(4825), + [anon_sym_BSLASHglssymbol] = ACTIONS(4825), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4825), + [anon_sym_BSLASHglsdesc] = ACTIONS(4825), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4825), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4825), + [anon_sym_BSLASHglsuseri] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4825), + [anon_sym_BSLASHglsuserii] = ACTIONS(4825), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4825), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4825), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4825), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4825), + [anon_sym_BSLASHglsuserv] = ACTIONS(4825), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4825), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4825), + [anon_sym_BSLASHglsuservi] = ACTIONS(4825), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4825), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4825), + [anon_sym_BSLASHnewacronym] = ACTIONS(4825), + [anon_sym_BSLASHacrshort] = ACTIONS(4825), + [anon_sym_BSLASHAcrshort] = ACTIONS(4825), + [anon_sym_BSLASHACRshort] = ACTIONS(4825), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4825), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4825), + [anon_sym_BSLASHacrlong] = ACTIONS(4825), + [anon_sym_BSLASHAcrlong] = ACTIONS(4825), + [anon_sym_BSLASHACRlong] = ACTIONS(4825), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4825), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4825), + [anon_sym_BSLASHacrfull] = ACTIONS(4825), + [anon_sym_BSLASHAcrfull] = ACTIONS(4825), + [anon_sym_BSLASHACRfull] = ACTIONS(4825), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4825), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4825), + [anon_sym_BSLASHacs] = ACTIONS(4825), + [anon_sym_BSLASHAcs] = ACTIONS(4825), + [anon_sym_BSLASHacsp] = ACTIONS(4825), + [anon_sym_BSLASHAcsp] = ACTIONS(4825), + [anon_sym_BSLASHacl] = ACTIONS(4825), + [anon_sym_BSLASHAcl] = ACTIONS(4825), + [anon_sym_BSLASHaclp] = ACTIONS(4825), + [anon_sym_BSLASHAclp] = ACTIONS(4825), + [anon_sym_BSLASHacf] = ACTIONS(4825), + [anon_sym_BSLASHAcf] = ACTIONS(4825), + [anon_sym_BSLASHacfp] = ACTIONS(4825), + [anon_sym_BSLASHAcfp] = ACTIONS(4825), + [anon_sym_BSLASHac] = ACTIONS(4825), + [anon_sym_BSLASHAc] = ACTIONS(4825), + [anon_sym_BSLASHacp] = ACTIONS(4825), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4825), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4825), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4825), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4825), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4825), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4825), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4825), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4825), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4825), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4825), + [anon_sym_BSLASHcolor] = ACTIONS(4825), + [anon_sym_BSLASHcolorbox] = ACTIONS(4825), + [anon_sym_BSLASHtextcolor] = ACTIONS(4825), + [anon_sym_BSLASHpagecolor] = ACTIONS(4825), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4825), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4825), + [anon_sym_BSLASHtext] = ACTIONS(4825), + [anon_sym_BSLASHintertext] = ACTIONS(4825), + [anon_sym_shortintertext] = ACTIONS(4825), + }, + [673] = { + [ts_builtin_sym_end] = ACTIONS(4889), + [sym_command_name] = ACTIONS(4891), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_LBRACK] = ACTIONS(4889), + [anon_sym_RBRACK] = ACTIONS(4889), + [anon_sym_COMMA] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4889), + [anon_sym_BSLASHpart] = ACTIONS(4891), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddpart] = ACTIONS(4891), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4889), + [anon_sym_BSLASHchapter] = ACTIONS(4891), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddchap] = ACTIONS(4891), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsection] = ACTIONS(4891), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddsec] = ACTIONS(4891), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubsection] = ACTIONS(4891), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4891), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHparagraph] = ACTIONS(4891), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4891), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4889), + [anon_sym_BSLASHitem] = ACTIONS(4891), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(4889), + [anon_sym_RBRACE] = ACTIONS(4889), + [sym_word] = ACTIONS(4891), + [sym_placeholder] = ACTIONS(4889), + [anon_sym_PLUS] = ACTIONS(4891), + [anon_sym_DASH] = ACTIONS(4891), + [anon_sym_STAR] = ACTIONS(4891), + [anon_sym_SLASH] = ACTIONS(4891), + [anon_sym_CARET] = ACTIONS(4891), + [anon_sym__] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_BANG] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_SQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4889), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4889), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4889), + [anon_sym_BSLASHbegin] = ACTIONS(4891), + [anon_sym_BSLASHusepackage] = ACTIONS(4891), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4891), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4891), + [anon_sym_BSLASHinclude] = ACTIONS(4891), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4891), + [anon_sym_BSLASHinput] = ACTIONS(4891), + [anon_sym_BSLASHsubfile] = ACTIONS(4891), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4891), + [anon_sym_BSLASHbibliography] = ACTIONS(4891), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4891), + [anon_sym_BSLASHincludesvg] = ACTIONS(4891), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4891), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4891), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4891), + [anon_sym_BSLASHimport] = ACTIONS(4891), + [anon_sym_BSLASHsubimport] = ACTIONS(4891), + [anon_sym_BSLASHinputfrom] = ACTIONS(4891), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4891), + [anon_sym_BSLASHincludefrom] = ACTIONS(4891), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4891), + [anon_sym_BSLASHcaption] = ACTIONS(4891), + [anon_sym_BSLASHcite] = ACTIONS(4891), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCite] = ACTIONS(4891), + [anon_sym_BSLASHnocite] = ACTIONS(4891), + [anon_sym_BSLASHcitet] = ACTIONS(4891), + [anon_sym_BSLASHcitep] = ACTIONS(4891), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteauthor] = ACTIONS(4891), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4891), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitetitle] = ACTIONS(4891), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteyear] = ACTIONS(4891), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitedate] = ACTIONS(4891), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteurl] = ACTIONS(4891), + [anon_sym_BSLASHfullcite] = ACTIONS(4891), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4891), + [anon_sym_BSLASHcitealt] = ACTIONS(4891), + [anon_sym_BSLASHcitealp] = ACTIONS(4891), + [anon_sym_BSLASHcitetext] = ACTIONS(4891), + [anon_sym_BSLASHparencite] = ACTIONS(4891), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHParencite] = ACTIONS(4891), + [anon_sym_BSLASHfootcite] = ACTIONS(4891), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4891), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4891), + [anon_sym_BSLASHtextcite] = ACTIONS(4891), + [anon_sym_BSLASHTextcite] = ACTIONS(4891), + [anon_sym_BSLASHsmartcite] = ACTIONS(4891), + [anon_sym_BSLASHSmartcite] = ACTIONS(4891), + [anon_sym_BSLASHsupercite] = ACTIONS(4891), + [anon_sym_BSLASHautocite] = ACTIONS(4891), + [anon_sym_BSLASHAutocite] = ACTIONS(4891), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHvolcite] = ACTIONS(4891), + [anon_sym_BSLASHVolcite] = ACTIONS(4891), + [anon_sym_BSLASHpvolcite] = ACTIONS(4891), + [anon_sym_BSLASHPvolcite] = ACTIONS(4891), + [anon_sym_BSLASHfvolcite] = ACTIONS(4891), + [anon_sym_BSLASHftvolcite] = ACTIONS(4891), + [anon_sym_BSLASHsvolcite] = ACTIONS(4891), + [anon_sym_BSLASHSvolcite] = ACTIONS(4891), + [anon_sym_BSLASHtvolcite] = ACTIONS(4891), + [anon_sym_BSLASHTvolcite] = ACTIONS(4891), + [anon_sym_BSLASHavolcite] = ACTIONS(4891), + [anon_sym_BSLASHAvolcite] = ACTIONS(4891), + [anon_sym_BSLASHnotecite] = ACTIONS(4891), + [anon_sym_BSLASHNotecite] = ACTIONS(4891), + [anon_sym_BSLASHpnotecite] = ACTIONS(4891), + [anon_sym_BSLASHPnotecite] = ACTIONS(4891), + [anon_sym_BSLASHfnotecite] = ACTIONS(4891), + [anon_sym_BSLASHlabel] = ACTIONS(4891), + [anon_sym_BSLASHref] = ACTIONS(4891), + [anon_sym_BSLASHeqref] = ACTIONS(4891), + [anon_sym_BSLASHvref] = ACTIONS(4891), + [anon_sym_BSLASHVref] = ACTIONS(4891), + [anon_sym_BSLASHautoref] = ACTIONS(4891), + [anon_sym_BSLASHpageref] = ACTIONS(4891), + [anon_sym_BSLASHcref] = ACTIONS(4891), + [anon_sym_BSLASHCref] = ACTIONS(4891), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4889), + [anon_sym_BSLASHnamecref] = ACTIONS(4891), + [anon_sym_BSLASHnameCref] = ACTIONS(4891), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4891), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4891), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4891), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4891), + [anon_sym_BSLASHlabelcref] = ACTIONS(4891), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4891), + [anon_sym_BSLASHcrefrange] = ACTIONS(4891), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCrefrange] = ACTIONS(4891), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4889), + [anon_sym_BSLASHnewlabel] = ACTIONS(4891), + [anon_sym_BSLASHnewcommand] = ACTIONS(4891), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4889), + [anon_sym_BSLASHdef] = ACTIONS(4891), + [anon_sym_BSLASHlet] = ACTIONS(4891), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4891), + [anon_sym_BSLASHgls] = ACTIONS(4891), + [anon_sym_BSLASHGls] = ACTIONS(4891), + [anon_sym_BSLASHGLS] = ACTIONS(4891), + [anon_sym_BSLASHglspl] = ACTIONS(4891), + [anon_sym_BSLASHGlspl] = ACTIONS(4891), + [anon_sym_BSLASHGLSpl] = ACTIONS(4891), + [anon_sym_BSLASHglsdisp] = ACTIONS(4891), + [anon_sym_BSLASHglslink] = ACTIONS(4891), + [anon_sym_BSLASHglstext] = ACTIONS(4891), + [anon_sym_BSLASHGlstext] = ACTIONS(4891), + [anon_sym_BSLASHGLStext] = ACTIONS(4891), + [anon_sym_BSLASHglsfirst] = ACTIONS(4891), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4891), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4891), + [anon_sym_BSLASHglsplural] = ACTIONS(4891), + [anon_sym_BSLASHGlsplural] = ACTIONS(4891), + [anon_sym_BSLASHGLSplural] = ACTIONS(4891), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHglsname] = ACTIONS(4891), + [anon_sym_BSLASHGlsname] = ACTIONS(4891), + [anon_sym_BSLASHGLSname] = ACTIONS(4891), + [anon_sym_BSLASHglssymbol] = ACTIONS(4891), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4891), + [anon_sym_BSLASHglsdesc] = ACTIONS(4891), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4891), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4891), + [anon_sym_BSLASHglsuseri] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4891), + [anon_sym_BSLASHglsuserii] = ACTIONS(4891), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4891), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4891), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4891), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4891), + [anon_sym_BSLASHglsuserv] = ACTIONS(4891), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4891), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4891), + [anon_sym_BSLASHglsuservi] = ACTIONS(4891), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4891), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4891), + [anon_sym_BSLASHnewacronym] = ACTIONS(4891), + [anon_sym_BSLASHacrshort] = ACTIONS(4891), + [anon_sym_BSLASHAcrshort] = ACTIONS(4891), + [anon_sym_BSLASHACRshort] = ACTIONS(4891), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4891), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4891), + [anon_sym_BSLASHacrlong] = ACTIONS(4891), + [anon_sym_BSLASHAcrlong] = ACTIONS(4891), + [anon_sym_BSLASHACRlong] = ACTIONS(4891), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4891), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4891), + [anon_sym_BSLASHacrfull] = ACTIONS(4891), + [anon_sym_BSLASHAcrfull] = ACTIONS(4891), + [anon_sym_BSLASHACRfull] = ACTIONS(4891), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4891), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4891), + [anon_sym_BSLASHacs] = ACTIONS(4891), + [anon_sym_BSLASHAcs] = ACTIONS(4891), + [anon_sym_BSLASHacsp] = ACTIONS(4891), + [anon_sym_BSLASHAcsp] = ACTIONS(4891), + [anon_sym_BSLASHacl] = ACTIONS(4891), + [anon_sym_BSLASHAcl] = ACTIONS(4891), + [anon_sym_BSLASHaclp] = ACTIONS(4891), + [anon_sym_BSLASHAclp] = ACTIONS(4891), + [anon_sym_BSLASHacf] = ACTIONS(4891), + [anon_sym_BSLASHAcf] = ACTIONS(4891), + [anon_sym_BSLASHacfp] = ACTIONS(4891), + [anon_sym_BSLASHAcfp] = ACTIONS(4891), + [anon_sym_BSLASHac] = ACTIONS(4891), + [anon_sym_BSLASHAc] = ACTIONS(4891), + [anon_sym_BSLASHacp] = ACTIONS(4891), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4891), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4891), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4891), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4891), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4891), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4891), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4891), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4891), + [anon_sym_BSLASHcolor] = ACTIONS(4891), + [anon_sym_BSLASHcolorbox] = ACTIONS(4891), + [anon_sym_BSLASHtextcolor] = ACTIONS(4891), + [anon_sym_BSLASHpagecolor] = ACTIONS(4891), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4891), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4891), + [anon_sym_BSLASHtext] = ACTIONS(4891), + [anon_sym_BSLASHintertext] = ACTIONS(4891), + [anon_sym_shortintertext] = ACTIONS(4891), + }, + [674] = { + [sym_brack_group_text] = STATE(1051), + [sym_command_name] = ACTIONS(4879), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4877), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4893), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_COMMA] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_BSLASHpart] = ACTIONS(4879), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddpart] = ACTIONS(4879), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4877), + [anon_sym_BSLASHchapter] = ACTIONS(4879), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddchap] = ACTIONS(4879), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsection] = ACTIONS(4879), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddsec] = ACTIONS(4879), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubsection] = ACTIONS(4879), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4879), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHparagraph] = ACTIONS(4879), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4879), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4877), + [anon_sym_BSLASHitem] = ACTIONS(4879), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4877), + [sym_word] = ACTIONS(4879), + [sym_placeholder] = ACTIONS(4877), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4879), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_CARET] = ACTIONS(4879), + [anon_sym__] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_COLON] = ACTIONS(4879), + [anon_sym_SQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(4879), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4877), + [anon_sym_BSLASHbegin] = ACTIONS(4879), + [anon_sym_BSLASHusepackage] = ACTIONS(4879), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), + [anon_sym_BSLASHinclude] = ACTIONS(4879), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), + [anon_sym_BSLASHinput] = ACTIONS(4879), + [anon_sym_BSLASHsubfile] = ACTIONS(4879), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), + [anon_sym_BSLASHbibliography] = ACTIONS(4879), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), + [anon_sym_BSLASHincludesvg] = ACTIONS(4879), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), + [anon_sym_BSLASHimport] = ACTIONS(4879), + [anon_sym_BSLASHsubimport] = ACTIONS(4879), + [anon_sym_BSLASHinputfrom] = ACTIONS(4879), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), + [anon_sym_BSLASHincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHcaption] = ACTIONS(4879), + [anon_sym_BSLASHcite] = ACTIONS(4879), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCite] = ACTIONS(4879), + [anon_sym_BSLASHnocite] = ACTIONS(4879), + [anon_sym_BSLASHcitet] = ACTIONS(4879), + [anon_sym_BSLASHcitep] = ACTIONS(4879), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteauthor] = ACTIONS(4879), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitetitle] = ACTIONS(4879), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteyear] = ACTIONS(4879), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitedate] = ACTIONS(4879), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteurl] = ACTIONS(4879), + [anon_sym_BSLASHfullcite] = ACTIONS(4879), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), + [anon_sym_BSLASHcitealt] = ACTIONS(4879), + [anon_sym_BSLASHcitealp] = ACTIONS(4879), + [anon_sym_BSLASHcitetext] = ACTIONS(4879), + [anon_sym_BSLASHparencite] = ACTIONS(4879), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHParencite] = ACTIONS(4879), + [anon_sym_BSLASHfootcite] = ACTIONS(4879), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), + [anon_sym_BSLASHtextcite] = ACTIONS(4879), + [anon_sym_BSLASHTextcite] = ACTIONS(4879), + [anon_sym_BSLASHsmartcite] = ACTIONS(4879), + [anon_sym_BSLASHSmartcite] = ACTIONS(4879), + [anon_sym_BSLASHsupercite] = ACTIONS(4879), + [anon_sym_BSLASHautocite] = ACTIONS(4879), + [anon_sym_BSLASHAutocite] = ACTIONS(4879), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHvolcite] = ACTIONS(4879), + [anon_sym_BSLASHVolcite] = ACTIONS(4879), + [anon_sym_BSLASHpvolcite] = ACTIONS(4879), + [anon_sym_BSLASHPvolcite] = ACTIONS(4879), + [anon_sym_BSLASHfvolcite] = ACTIONS(4879), + [anon_sym_BSLASHftvolcite] = ACTIONS(4879), + [anon_sym_BSLASHsvolcite] = ACTIONS(4879), + [anon_sym_BSLASHSvolcite] = ACTIONS(4879), + [anon_sym_BSLASHtvolcite] = ACTIONS(4879), + [anon_sym_BSLASHTvolcite] = ACTIONS(4879), + [anon_sym_BSLASHavolcite] = ACTIONS(4879), + [anon_sym_BSLASHAvolcite] = ACTIONS(4879), + [anon_sym_BSLASHnotecite] = ACTIONS(4879), + [anon_sym_BSLASHNotecite] = ACTIONS(4879), + [anon_sym_BSLASHpnotecite] = ACTIONS(4879), + [anon_sym_BSLASHPnotecite] = ACTIONS(4879), + [anon_sym_BSLASHfnotecite] = ACTIONS(4879), + [anon_sym_BSLASHlabel] = ACTIONS(4879), + [anon_sym_BSLASHref] = ACTIONS(4879), + [anon_sym_BSLASHeqref] = ACTIONS(4879), + [anon_sym_BSLASHvref] = ACTIONS(4879), + [anon_sym_BSLASHVref] = ACTIONS(4879), + [anon_sym_BSLASHautoref] = ACTIONS(4879), + [anon_sym_BSLASHpageref] = ACTIONS(4879), + [anon_sym_BSLASHcref] = ACTIONS(4879), + [anon_sym_BSLASHCref] = ACTIONS(4879), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnameCref] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHlabelcref] = ACTIONS(4879), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCrefrange] = ACTIONS(4879), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnewlabel] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), + [anon_sym_BSLASHdef] = ACTIONS(4879), + [anon_sym_BSLASHlet] = ACTIONS(4879), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), + [anon_sym_BSLASHgls] = ACTIONS(4879), + [anon_sym_BSLASHGls] = ACTIONS(4879), + [anon_sym_BSLASHGLS] = ACTIONS(4879), + [anon_sym_BSLASHglspl] = ACTIONS(4879), + [anon_sym_BSLASHGlspl] = ACTIONS(4879), + [anon_sym_BSLASHGLSpl] = ACTIONS(4879), + [anon_sym_BSLASHglsdisp] = ACTIONS(4879), + [anon_sym_BSLASHglslink] = ACTIONS(4879), + [anon_sym_BSLASHglstext] = ACTIONS(4879), + [anon_sym_BSLASHGlstext] = ACTIONS(4879), + [anon_sym_BSLASHGLStext] = ACTIONS(4879), + [anon_sym_BSLASHglsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), + [anon_sym_BSLASHglsplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSplural] = ACTIONS(4879), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHglsname] = ACTIONS(4879), + [anon_sym_BSLASHGlsname] = ACTIONS(4879), + [anon_sym_BSLASHGLSname] = ACTIONS(4879), + [anon_sym_BSLASHglssymbol] = ACTIONS(4879), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), + [anon_sym_BSLASHglsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), + [anon_sym_BSLASHglsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), + [anon_sym_BSLASHglsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), + [anon_sym_BSLASHglsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), + [anon_sym_BSLASHglsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), + [anon_sym_BSLASHnewacronym] = ACTIONS(4879), + [anon_sym_BSLASHacrshort] = ACTIONS(4879), + [anon_sym_BSLASHAcrshort] = ACTIONS(4879), + [anon_sym_BSLASHACRshort] = ACTIONS(4879), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), + [anon_sym_BSLASHacrlong] = ACTIONS(4879), + [anon_sym_BSLASHAcrlong] = ACTIONS(4879), + [anon_sym_BSLASHACRlong] = ACTIONS(4879), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), + [anon_sym_BSLASHacrfull] = ACTIONS(4879), + [anon_sym_BSLASHAcrfull] = ACTIONS(4879), + [anon_sym_BSLASHACRfull] = ACTIONS(4879), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), + [anon_sym_BSLASHacs] = ACTIONS(4879), + [anon_sym_BSLASHAcs] = ACTIONS(4879), + [anon_sym_BSLASHacsp] = ACTIONS(4879), + [anon_sym_BSLASHAcsp] = ACTIONS(4879), + [anon_sym_BSLASHacl] = ACTIONS(4879), + [anon_sym_BSLASHAcl] = ACTIONS(4879), + [anon_sym_BSLASHaclp] = ACTIONS(4879), + [anon_sym_BSLASHAclp] = ACTIONS(4879), + [anon_sym_BSLASHacf] = ACTIONS(4879), + [anon_sym_BSLASHAcf] = ACTIONS(4879), + [anon_sym_BSLASHacfp] = ACTIONS(4879), + [anon_sym_BSLASHAcfp] = ACTIONS(4879), + [anon_sym_BSLASHac] = ACTIONS(4879), + [anon_sym_BSLASHAc] = ACTIONS(4879), + [anon_sym_BSLASHacp] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), + [anon_sym_BSLASHcolor] = ACTIONS(4879), + [anon_sym_BSLASHcolorbox] = ACTIONS(4879), + [anon_sym_BSLASHtextcolor] = ACTIONS(4879), + [anon_sym_BSLASHpagecolor] = ACTIONS(4879), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), + [anon_sym_BSLASHtext] = ACTIONS(4879), + [anon_sym_BSLASHintertext] = ACTIONS(4879), + [anon_sym_shortintertext] = ACTIONS(4879), }, - [918] = { - [sym_command_name] = ACTIONS(5135), + [675] = { + [ts_builtin_sym_end] = ACTIONS(4895), + [sym_command_name] = ACTIONS(4897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4897), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_RBRACK] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_BSLASHpart] = ACTIONS(4897), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddpart] = ACTIONS(4897), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4895), + [anon_sym_BSLASHchapter] = ACTIONS(4897), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddchap] = ACTIONS(4897), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsection] = ACTIONS(4897), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddsec] = ACTIONS(4897), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubsection] = ACTIONS(4897), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4897), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHparagraph] = ACTIONS(4897), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4897), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4895), + [anon_sym_BSLASHitem] = ACTIONS(4897), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4895), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [sym_word] = ACTIONS(4897), + [sym_placeholder] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_STAR] = ACTIONS(4897), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_CARET] = ACTIONS(4897), + [anon_sym__] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_BANG] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_COLON] = ACTIONS(4897), + [anon_sym_SQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(4897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), + [anon_sym_BSLASHbegin] = ACTIONS(4897), + [anon_sym_BSLASHusepackage] = ACTIONS(4897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), + [anon_sym_BSLASHinclude] = ACTIONS(4897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), + [anon_sym_BSLASHinput] = ACTIONS(4897), + [anon_sym_BSLASHsubfile] = ACTIONS(4897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), + [anon_sym_BSLASHbibliography] = ACTIONS(4897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), + [anon_sym_BSLASHincludesvg] = ACTIONS(4897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), + [anon_sym_BSLASHimport] = ACTIONS(4897), + [anon_sym_BSLASHsubimport] = ACTIONS(4897), + [anon_sym_BSLASHinputfrom] = ACTIONS(4897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), + [anon_sym_BSLASHincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHcaption] = ACTIONS(4897), + [anon_sym_BSLASHcite] = ACTIONS(4897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCite] = ACTIONS(4897), + [anon_sym_BSLASHnocite] = ACTIONS(4897), + [anon_sym_BSLASHcitet] = ACTIONS(4897), + [anon_sym_BSLASHcitep] = ACTIONS(4897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteauthor] = ACTIONS(4897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitetitle] = ACTIONS(4897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteyear] = ACTIONS(4897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitedate] = ACTIONS(4897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteurl] = ACTIONS(4897), + [anon_sym_BSLASHfullcite] = ACTIONS(4897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), + [anon_sym_BSLASHcitealt] = ACTIONS(4897), + [anon_sym_BSLASHcitealp] = ACTIONS(4897), + [anon_sym_BSLASHcitetext] = ACTIONS(4897), + [anon_sym_BSLASHparencite] = ACTIONS(4897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHParencite] = ACTIONS(4897), + [anon_sym_BSLASHfootcite] = ACTIONS(4897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), + [anon_sym_BSLASHtextcite] = ACTIONS(4897), + [anon_sym_BSLASHTextcite] = ACTIONS(4897), + [anon_sym_BSLASHsmartcite] = ACTIONS(4897), + [anon_sym_BSLASHSmartcite] = ACTIONS(4897), + [anon_sym_BSLASHsupercite] = ACTIONS(4897), + [anon_sym_BSLASHautocite] = ACTIONS(4897), + [anon_sym_BSLASHAutocite] = ACTIONS(4897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHvolcite] = ACTIONS(4897), + [anon_sym_BSLASHVolcite] = ACTIONS(4897), + [anon_sym_BSLASHpvolcite] = ACTIONS(4897), + [anon_sym_BSLASHPvolcite] = ACTIONS(4897), + [anon_sym_BSLASHfvolcite] = ACTIONS(4897), + [anon_sym_BSLASHftvolcite] = ACTIONS(4897), + [anon_sym_BSLASHsvolcite] = ACTIONS(4897), + [anon_sym_BSLASHSvolcite] = ACTIONS(4897), + [anon_sym_BSLASHtvolcite] = ACTIONS(4897), + [anon_sym_BSLASHTvolcite] = ACTIONS(4897), + [anon_sym_BSLASHavolcite] = ACTIONS(4897), + [anon_sym_BSLASHAvolcite] = ACTIONS(4897), + [anon_sym_BSLASHnotecite] = ACTIONS(4897), + [anon_sym_BSLASHNotecite] = ACTIONS(4897), + [anon_sym_BSLASHpnotecite] = ACTIONS(4897), + [anon_sym_BSLASHPnotecite] = ACTIONS(4897), + [anon_sym_BSLASHfnotecite] = ACTIONS(4897), + [anon_sym_BSLASHlabel] = ACTIONS(4897), + [anon_sym_BSLASHref] = ACTIONS(4897), + [anon_sym_BSLASHeqref] = ACTIONS(4897), + [anon_sym_BSLASHvref] = ACTIONS(4897), + [anon_sym_BSLASHVref] = ACTIONS(4897), + [anon_sym_BSLASHautoref] = ACTIONS(4897), + [anon_sym_BSLASHpageref] = ACTIONS(4897), + [anon_sym_BSLASHcref] = ACTIONS(4897), + [anon_sym_BSLASHCref] = ACTIONS(4897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnameCref] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHlabelcref] = ACTIONS(4897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCrefrange] = ACTIONS(4897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnewlabel] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), + [anon_sym_BSLASHdef] = ACTIONS(4897), + [anon_sym_BSLASHlet] = ACTIONS(4897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), + [anon_sym_BSLASHgls] = ACTIONS(4897), + [anon_sym_BSLASHGls] = ACTIONS(4897), + [anon_sym_BSLASHGLS] = ACTIONS(4897), + [anon_sym_BSLASHglspl] = ACTIONS(4897), + [anon_sym_BSLASHGlspl] = ACTIONS(4897), + [anon_sym_BSLASHGLSpl] = ACTIONS(4897), + [anon_sym_BSLASHglsdisp] = ACTIONS(4897), + [anon_sym_BSLASHglslink] = ACTIONS(4897), + [anon_sym_BSLASHglstext] = ACTIONS(4897), + [anon_sym_BSLASHGlstext] = ACTIONS(4897), + [anon_sym_BSLASHGLStext] = ACTIONS(4897), + [anon_sym_BSLASHglsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), + [anon_sym_BSLASHglsplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSplural] = ACTIONS(4897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHglsname] = ACTIONS(4897), + [anon_sym_BSLASHGlsname] = ACTIONS(4897), + [anon_sym_BSLASHGLSname] = ACTIONS(4897), + [anon_sym_BSLASHglssymbol] = ACTIONS(4897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), + [anon_sym_BSLASHglsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), + [anon_sym_BSLASHglsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), + [anon_sym_BSLASHglsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), + [anon_sym_BSLASHglsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), + [anon_sym_BSLASHglsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), + [anon_sym_BSLASHnewacronym] = ACTIONS(4897), + [anon_sym_BSLASHacrshort] = ACTIONS(4897), + [anon_sym_BSLASHAcrshort] = ACTIONS(4897), + [anon_sym_BSLASHACRshort] = ACTIONS(4897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), + [anon_sym_BSLASHacrlong] = ACTIONS(4897), + [anon_sym_BSLASHAcrlong] = ACTIONS(4897), + [anon_sym_BSLASHACRlong] = ACTIONS(4897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), + [anon_sym_BSLASHacrfull] = ACTIONS(4897), + [anon_sym_BSLASHAcrfull] = ACTIONS(4897), + [anon_sym_BSLASHACRfull] = ACTIONS(4897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), + [anon_sym_BSLASHacs] = ACTIONS(4897), + [anon_sym_BSLASHAcs] = ACTIONS(4897), + [anon_sym_BSLASHacsp] = ACTIONS(4897), + [anon_sym_BSLASHAcsp] = ACTIONS(4897), + [anon_sym_BSLASHacl] = ACTIONS(4897), + [anon_sym_BSLASHAcl] = ACTIONS(4897), + [anon_sym_BSLASHaclp] = ACTIONS(4897), + [anon_sym_BSLASHAclp] = ACTIONS(4897), + [anon_sym_BSLASHacf] = ACTIONS(4897), + [anon_sym_BSLASHAcf] = ACTIONS(4897), + [anon_sym_BSLASHacfp] = ACTIONS(4897), + [anon_sym_BSLASHAcfp] = ACTIONS(4897), + [anon_sym_BSLASHac] = ACTIONS(4897), + [anon_sym_BSLASHAc] = ACTIONS(4897), + [anon_sym_BSLASHacp] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), + [anon_sym_BSLASHcolor] = ACTIONS(4897), + [anon_sym_BSLASHcolorbox] = ACTIONS(4897), + [anon_sym_BSLASHtextcolor] = ACTIONS(4897), + [anon_sym_BSLASHpagecolor] = ACTIONS(4897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), + [anon_sym_BSLASHtext] = ACTIONS(4897), + [anon_sym_BSLASHintertext] = ACTIONS(4897), + [anon_sym_shortintertext] = ACTIONS(4897), + }, + [676] = { + [ts_builtin_sym_end] = ACTIONS(4899), + [sym_command_name] = ACTIONS(4901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4901), + [anon_sym_LPAREN] = ACTIONS(4899), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_RBRACK] = ACTIONS(4899), + [anon_sym_COMMA] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4899), + [anon_sym_BSLASHpart] = ACTIONS(4901), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddpart] = ACTIONS(4901), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4899), + [anon_sym_BSLASHchapter] = ACTIONS(4901), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddchap] = ACTIONS(4901), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsection] = ACTIONS(4901), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddsec] = ACTIONS(4901), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubsection] = ACTIONS(4901), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4901), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHparagraph] = ACTIONS(4901), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4901), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4899), + [anon_sym_BSLASHitem] = ACTIONS(4901), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4899), + [anon_sym_LBRACE] = ACTIONS(4899), + [anon_sym_RBRACE] = ACTIONS(4899), + [sym_word] = ACTIONS(4901), + [sym_placeholder] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(4901), + [anon_sym_DASH] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4901), + [anon_sym_SLASH] = ACTIONS(4901), + [anon_sym_CARET] = ACTIONS(4901), + [anon_sym__] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_BANG] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_COLON] = ACTIONS(4901), + [anon_sym_SQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), + [anon_sym_BSLASHbegin] = ACTIONS(4901), + [anon_sym_BSLASHusepackage] = ACTIONS(4901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), + [anon_sym_BSLASHinclude] = ACTIONS(4901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), + [anon_sym_BSLASHinput] = ACTIONS(4901), + [anon_sym_BSLASHsubfile] = ACTIONS(4901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), + [anon_sym_BSLASHbibliography] = ACTIONS(4901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), + [anon_sym_BSLASHincludesvg] = ACTIONS(4901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), + [anon_sym_BSLASHimport] = ACTIONS(4901), + [anon_sym_BSLASHsubimport] = ACTIONS(4901), + [anon_sym_BSLASHinputfrom] = ACTIONS(4901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), + [anon_sym_BSLASHincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHcaption] = ACTIONS(4901), + [anon_sym_BSLASHcite] = ACTIONS(4901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCite] = ACTIONS(4901), + [anon_sym_BSLASHnocite] = ACTIONS(4901), + [anon_sym_BSLASHcitet] = ACTIONS(4901), + [anon_sym_BSLASHcitep] = ACTIONS(4901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteauthor] = ACTIONS(4901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitetitle] = ACTIONS(4901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteyear] = ACTIONS(4901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitedate] = ACTIONS(4901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteurl] = ACTIONS(4901), + [anon_sym_BSLASHfullcite] = ACTIONS(4901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), + [anon_sym_BSLASHcitealt] = ACTIONS(4901), + [anon_sym_BSLASHcitealp] = ACTIONS(4901), + [anon_sym_BSLASHcitetext] = ACTIONS(4901), + [anon_sym_BSLASHparencite] = ACTIONS(4901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHParencite] = ACTIONS(4901), + [anon_sym_BSLASHfootcite] = ACTIONS(4901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), + [anon_sym_BSLASHtextcite] = ACTIONS(4901), + [anon_sym_BSLASHTextcite] = ACTIONS(4901), + [anon_sym_BSLASHsmartcite] = ACTIONS(4901), + [anon_sym_BSLASHSmartcite] = ACTIONS(4901), + [anon_sym_BSLASHsupercite] = ACTIONS(4901), + [anon_sym_BSLASHautocite] = ACTIONS(4901), + [anon_sym_BSLASHAutocite] = ACTIONS(4901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHvolcite] = ACTIONS(4901), + [anon_sym_BSLASHVolcite] = ACTIONS(4901), + [anon_sym_BSLASHpvolcite] = ACTIONS(4901), + [anon_sym_BSLASHPvolcite] = ACTIONS(4901), + [anon_sym_BSLASHfvolcite] = ACTIONS(4901), + [anon_sym_BSLASHftvolcite] = ACTIONS(4901), + [anon_sym_BSLASHsvolcite] = ACTIONS(4901), + [anon_sym_BSLASHSvolcite] = ACTIONS(4901), + [anon_sym_BSLASHtvolcite] = ACTIONS(4901), + [anon_sym_BSLASHTvolcite] = ACTIONS(4901), + [anon_sym_BSLASHavolcite] = ACTIONS(4901), + [anon_sym_BSLASHAvolcite] = ACTIONS(4901), + [anon_sym_BSLASHnotecite] = ACTIONS(4901), + [anon_sym_BSLASHNotecite] = ACTIONS(4901), + [anon_sym_BSLASHpnotecite] = ACTIONS(4901), + [anon_sym_BSLASHPnotecite] = ACTIONS(4901), + [anon_sym_BSLASHfnotecite] = ACTIONS(4901), + [anon_sym_BSLASHlabel] = ACTIONS(4901), + [anon_sym_BSLASHref] = ACTIONS(4901), + [anon_sym_BSLASHeqref] = ACTIONS(4901), + [anon_sym_BSLASHvref] = ACTIONS(4901), + [anon_sym_BSLASHVref] = ACTIONS(4901), + [anon_sym_BSLASHautoref] = ACTIONS(4901), + [anon_sym_BSLASHpageref] = ACTIONS(4901), + [anon_sym_BSLASHcref] = ACTIONS(4901), + [anon_sym_BSLASHCref] = ACTIONS(4901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnameCref] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHlabelcref] = ACTIONS(4901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCrefrange] = ACTIONS(4901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnewlabel] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), + [anon_sym_BSLASHdef] = ACTIONS(4901), + [anon_sym_BSLASHlet] = ACTIONS(4901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), + [anon_sym_BSLASHgls] = ACTIONS(4901), + [anon_sym_BSLASHGls] = ACTIONS(4901), + [anon_sym_BSLASHGLS] = ACTIONS(4901), + [anon_sym_BSLASHglspl] = ACTIONS(4901), + [anon_sym_BSLASHGlspl] = ACTIONS(4901), + [anon_sym_BSLASHGLSpl] = ACTIONS(4901), + [anon_sym_BSLASHglsdisp] = ACTIONS(4901), + [anon_sym_BSLASHglslink] = ACTIONS(4901), + [anon_sym_BSLASHglstext] = ACTIONS(4901), + [anon_sym_BSLASHGlstext] = ACTIONS(4901), + [anon_sym_BSLASHGLStext] = ACTIONS(4901), + [anon_sym_BSLASHglsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), + [anon_sym_BSLASHglsplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSplural] = ACTIONS(4901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHglsname] = ACTIONS(4901), + [anon_sym_BSLASHGlsname] = ACTIONS(4901), + [anon_sym_BSLASHGLSname] = ACTIONS(4901), + [anon_sym_BSLASHglssymbol] = ACTIONS(4901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), + [anon_sym_BSLASHglsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), + [anon_sym_BSLASHglsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), + [anon_sym_BSLASHglsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), + [anon_sym_BSLASHglsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), + [anon_sym_BSLASHglsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), + [anon_sym_BSLASHnewacronym] = ACTIONS(4901), + [anon_sym_BSLASHacrshort] = ACTIONS(4901), + [anon_sym_BSLASHAcrshort] = ACTIONS(4901), + [anon_sym_BSLASHACRshort] = ACTIONS(4901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), + [anon_sym_BSLASHacrlong] = ACTIONS(4901), + [anon_sym_BSLASHAcrlong] = ACTIONS(4901), + [anon_sym_BSLASHACRlong] = ACTIONS(4901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), + [anon_sym_BSLASHacrfull] = ACTIONS(4901), + [anon_sym_BSLASHAcrfull] = ACTIONS(4901), + [anon_sym_BSLASHACRfull] = ACTIONS(4901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), + [anon_sym_BSLASHacs] = ACTIONS(4901), + [anon_sym_BSLASHAcs] = ACTIONS(4901), + [anon_sym_BSLASHacsp] = ACTIONS(4901), + [anon_sym_BSLASHAcsp] = ACTIONS(4901), + [anon_sym_BSLASHacl] = ACTIONS(4901), + [anon_sym_BSLASHAcl] = ACTIONS(4901), + [anon_sym_BSLASHaclp] = ACTIONS(4901), + [anon_sym_BSLASHAclp] = ACTIONS(4901), + [anon_sym_BSLASHacf] = ACTIONS(4901), + [anon_sym_BSLASHAcf] = ACTIONS(4901), + [anon_sym_BSLASHacfp] = ACTIONS(4901), + [anon_sym_BSLASHAcfp] = ACTIONS(4901), + [anon_sym_BSLASHac] = ACTIONS(4901), + [anon_sym_BSLASHAc] = ACTIONS(4901), + [anon_sym_BSLASHacp] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), + [anon_sym_BSLASHcolor] = ACTIONS(4901), + [anon_sym_BSLASHcolorbox] = ACTIONS(4901), + [anon_sym_BSLASHtextcolor] = ACTIONS(4901), + [anon_sym_BSLASHpagecolor] = ACTIONS(4901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), + [anon_sym_BSLASHtext] = ACTIONS(4901), + [anon_sym_BSLASHintertext] = ACTIONS(4901), + [anon_sym_shortintertext] = ACTIONS(4901), + }, + [677] = { + [ts_builtin_sym_end] = ACTIONS(4903), + [sym_command_name] = ACTIONS(4905), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4905), + [anon_sym_LPAREN] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_LBRACK] = ACTIONS(4903), + [anon_sym_RBRACK] = ACTIONS(4903), + [anon_sym_COMMA] = ACTIONS(4903), + [anon_sym_EQ] = ACTIONS(4903), + [anon_sym_BSLASHpart] = ACTIONS(4905), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddpart] = ACTIONS(4905), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4903), + [anon_sym_BSLASHchapter] = ACTIONS(4905), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddchap] = ACTIONS(4905), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsection] = ACTIONS(4905), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddsec] = ACTIONS(4905), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubsection] = ACTIONS(4905), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4905), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHparagraph] = ACTIONS(4905), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4905), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4903), + [anon_sym_BSLASHitem] = ACTIONS(4905), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4903), + [anon_sym_LBRACE] = ACTIONS(4903), + [anon_sym_RBRACE] = ACTIONS(4903), + [sym_word] = ACTIONS(4905), + [sym_placeholder] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4905), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_CARET] = ACTIONS(4905), + [anon_sym__] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4905), + [anon_sym_COLON] = ACTIONS(4905), + [anon_sym_SQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4905), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), + [anon_sym_BSLASHbegin] = ACTIONS(4905), + [anon_sym_BSLASHusepackage] = ACTIONS(4905), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), + [anon_sym_BSLASHinclude] = ACTIONS(4905), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), + [anon_sym_BSLASHinput] = ACTIONS(4905), + [anon_sym_BSLASHsubfile] = ACTIONS(4905), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), + [anon_sym_BSLASHbibliography] = ACTIONS(4905), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), + [anon_sym_BSLASHincludesvg] = ACTIONS(4905), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), + [anon_sym_BSLASHimport] = ACTIONS(4905), + [anon_sym_BSLASHsubimport] = ACTIONS(4905), + [anon_sym_BSLASHinputfrom] = ACTIONS(4905), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), + [anon_sym_BSLASHincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHcaption] = ACTIONS(4905), + [anon_sym_BSLASHcite] = ACTIONS(4905), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCite] = ACTIONS(4905), + [anon_sym_BSLASHnocite] = ACTIONS(4905), + [anon_sym_BSLASHcitet] = ACTIONS(4905), + [anon_sym_BSLASHcitep] = ACTIONS(4905), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteauthor] = ACTIONS(4905), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitetitle] = ACTIONS(4905), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteyear] = ACTIONS(4905), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitedate] = ACTIONS(4905), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteurl] = ACTIONS(4905), + [anon_sym_BSLASHfullcite] = ACTIONS(4905), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), + [anon_sym_BSLASHcitealt] = ACTIONS(4905), + [anon_sym_BSLASHcitealp] = ACTIONS(4905), + [anon_sym_BSLASHcitetext] = ACTIONS(4905), + [anon_sym_BSLASHparencite] = ACTIONS(4905), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHParencite] = ACTIONS(4905), + [anon_sym_BSLASHfootcite] = ACTIONS(4905), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), + [anon_sym_BSLASHtextcite] = ACTIONS(4905), + [anon_sym_BSLASHTextcite] = ACTIONS(4905), + [anon_sym_BSLASHsmartcite] = ACTIONS(4905), + [anon_sym_BSLASHSmartcite] = ACTIONS(4905), + [anon_sym_BSLASHsupercite] = ACTIONS(4905), + [anon_sym_BSLASHautocite] = ACTIONS(4905), + [anon_sym_BSLASHAutocite] = ACTIONS(4905), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHvolcite] = ACTIONS(4905), + [anon_sym_BSLASHVolcite] = ACTIONS(4905), + [anon_sym_BSLASHpvolcite] = ACTIONS(4905), + [anon_sym_BSLASHPvolcite] = ACTIONS(4905), + [anon_sym_BSLASHfvolcite] = ACTIONS(4905), + [anon_sym_BSLASHftvolcite] = ACTIONS(4905), + [anon_sym_BSLASHsvolcite] = ACTIONS(4905), + [anon_sym_BSLASHSvolcite] = ACTIONS(4905), + [anon_sym_BSLASHtvolcite] = ACTIONS(4905), + [anon_sym_BSLASHTvolcite] = ACTIONS(4905), + [anon_sym_BSLASHavolcite] = ACTIONS(4905), + [anon_sym_BSLASHAvolcite] = ACTIONS(4905), + [anon_sym_BSLASHnotecite] = ACTIONS(4905), + [anon_sym_BSLASHNotecite] = ACTIONS(4905), + [anon_sym_BSLASHpnotecite] = ACTIONS(4905), + [anon_sym_BSLASHPnotecite] = ACTIONS(4905), + [anon_sym_BSLASHfnotecite] = ACTIONS(4905), + [anon_sym_BSLASHlabel] = ACTIONS(4905), + [anon_sym_BSLASHref] = ACTIONS(4905), + [anon_sym_BSLASHeqref] = ACTIONS(4905), + [anon_sym_BSLASHvref] = ACTIONS(4905), + [anon_sym_BSLASHVref] = ACTIONS(4905), + [anon_sym_BSLASHautoref] = ACTIONS(4905), + [anon_sym_BSLASHpageref] = ACTIONS(4905), + [anon_sym_BSLASHcref] = ACTIONS(4905), + [anon_sym_BSLASHCref] = ACTIONS(4905), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnameCref] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHlabelcref] = ACTIONS(4905), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCrefrange] = ACTIONS(4905), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnewlabel] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), + [anon_sym_BSLASHdef] = ACTIONS(4905), + [anon_sym_BSLASHlet] = ACTIONS(4905), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), + [anon_sym_BSLASHgls] = ACTIONS(4905), + [anon_sym_BSLASHGls] = ACTIONS(4905), + [anon_sym_BSLASHGLS] = ACTIONS(4905), + [anon_sym_BSLASHglspl] = ACTIONS(4905), + [anon_sym_BSLASHGlspl] = ACTIONS(4905), + [anon_sym_BSLASHGLSpl] = ACTIONS(4905), + [anon_sym_BSLASHglsdisp] = ACTIONS(4905), + [anon_sym_BSLASHglslink] = ACTIONS(4905), + [anon_sym_BSLASHglstext] = ACTIONS(4905), + [anon_sym_BSLASHGlstext] = ACTIONS(4905), + [anon_sym_BSLASHGLStext] = ACTIONS(4905), + [anon_sym_BSLASHglsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), + [anon_sym_BSLASHglsplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSplural] = ACTIONS(4905), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHglsname] = ACTIONS(4905), + [anon_sym_BSLASHGlsname] = ACTIONS(4905), + [anon_sym_BSLASHGLSname] = ACTIONS(4905), + [anon_sym_BSLASHglssymbol] = ACTIONS(4905), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), + [anon_sym_BSLASHglsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), + [anon_sym_BSLASHglsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), + [anon_sym_BSLASHglsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), + [anon_sym_BSLASHglsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), + [anon_sym_BSLASHglsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), + [anon_sym_BSLASHnewacronym] = ACTIONS(4905), + [anon_sym_BSLASHacrshort] = ACTIONS(4905), + [anon_sym_BSLASHAcrshort] = ACTIONS(4905), + [anon_sym_BSLASHACRshort] = ACTIONS(4905), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), + [anon_sym_BSLASHacrlong] = ACTIONS(4905), + [anon_sym_BSLASHAcrlong] = ACTIONS(4905), + [anon_sym_BSLASHACRlong] = ACTIONS(4905), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), + [anon_sym_BSLASHacrfull] = ACTIONS(4905), + [anon_sym_BSLASHAcrfull] = ACTIONS(4905), + [anon_sym_BSLASHACRfull] = ACTIONS(4905), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), + [anon_sym_BSLASHacs] = ACTIONS(4905), + [anon_sym_BSLASHAcs] = ACTIONS(4905), + [anon_sym_BSLASHacsp] = ACTIONS(4905), + [anon_sym_BSLASHAcsp] = ACTIONS(4905), + [anon_sym_BSLASHacl] = ACTIONS(4905), + [anon_sym_BSLASHAcl] = ACTIONS(4905), + [anon_sym_BSLASHaclp] = ACTIONS(4905), + [anon_sym_BSLASHAclp] = ACTIONS(4905), + [anon_sym_BSLASHacf] = ACTIONS(4905), + [anon_sym_BSLASHAcf] = ACTIONS(4905), + [anon_sym_BSLASHacfp] = ACTIONS(4905), + [anon_sym_BSLASHAcfp] = ACTIONS(4905), + [anon_sym_BSLASHac] = ACTIONS(4905), + [anon_sym_BSLASHAc] = ACTIONS(4905), + [anon_sym_BSLASHacp] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), + [anon_sym_BSLASHcolor] = ACTIONS(4905), + [anon_sym_BSLASHcolorbox] = ACTIONS(4905), + [anon_sym_BSLASHtextcolor] = ACTIONS(4905), + [anon_sym_BSLASHpagecolor] = ACTIONS(4905), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), + [anon_sym_BSLASHtext] = ACTIONS(4905), + [anon_sym_BSLASHintertext] = ACTIONS(4905), + [anon_sym_shortintertext] = ACTIONS(4905), + }, + [678] = { + [ts_builtin_sym_end] = ACTIONS(4907), + [sym_command_name] = ACTIONS(4909), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4909), + [anon_sym_LPAREN] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4907), + [anon_sym_LBRACK] = ACTIONS(4907), + [anon_sym_RBRACK] = ACTIONS(4907), + [anon_sym_COMMA] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_BSLASHpart] = ACTIONS(4909), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddpart] = ACTIONS(4909), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4907), + [anon_sym_BSLASHchapter] = ACTIONS(4909), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddchap] = ACTIONS(4909), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsection] = ACTIONS(4909), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddsec] = ACTIONS(4909), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubsection] = ACTIONS(4909), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4909), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHparagraph] = ACTIONS(4909), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4909), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4907), + [anon_sym_BSLASHitem] = ACTIONS(4909), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4907), + [anon_sym_LBRACE] = ACTIONS(4907), + [anon_sym_RBRACE] = ACTIONS(4907), + [sym_word] = ACTIONS(4909), + [sym_placeholder] = ACTIONS(4907), + [anon_sym_PLUS] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_STAR] = ACTIONS(4909), + [anon_sym_SLASH] = ACTIONS(4909), + [anon_sym_CARET] = ACTIONS(4909), + [anon_sym__] = ACTIONS(4909), + [anon_sym_LT] = ACTIONS(4909), + [anon_sym_GT] = ACTIONS(4909), + [anon_sym_BANG] = ACTIONS(4909), + [anon_sym_PIPE] = ACTIONS(4909), + [anon_sym_COLON] = ACTIONS(4909), + [anon_sym_SQUOTE] = ACTIONS(4909), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), + [anon_sym_DOLLAR] = ACTIONS(4909), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), + [anon_sym_BSLASHbegin] = ACTIONS(4909), + [anon_sym_BSLASHusepackage] = ACTIONS(4909), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), + [anon_sym_BSLASHinclude] = ACTIONS(4909), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), + [anon_sym_BSLASHinput] = ACTIONS(4909), + [anon_sym_BSLASHsubfile] = ACTIONS(4909), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), + [anon_sym_BSLASHbibliography] = ACTIONS(4909), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), + [anon_sym_BSLASHincludesvg] = ACTIONS(4909), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), + [anon_sym_BSLASHimport] = ACTIONS(4909), + [anon_sym_BSLASHsubimport] = ACTIONS(4909), + [anon_sym_BSLASHinputfrom] = ACTIONS(4909), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), + [anon_sym_BSLASHincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHcaption] = ACTIONS(4909), + [anon_sym_BSLASHcite] = ACTIONS(4909), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCite] = ACTIONS(4909), + [anon_sym_BSLASHnocite] = ACTIONS(4909), + [anon_sym_BSLASHcitet] = ACTIONS(4909), + [anon_sym_BSLASHcitep] = ACTIONS(4909), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteauthor] = ACTIONS(4909), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitetitle] = ACTIONS(4909), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteyear] = ACTIONS(4909), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitedate] = ACTIONS(4909), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteurl] = ACTIONS(4909), + [anon_sym_BSLASHfullcite] = ACTIONS(4909), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), + [anon_sym_BSLASHcitealt] = ACTIONS(4909), + [anon_sym_BSLASHcitealp] = ACTIONS(4909), + [anon_sym_BSLASHcitetext] = ACTIONS(4909), + [anon_sym_BSLASHparencite] = ACTIONS(4909), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHParencite] = ACTIONS(4909), + [anon_sym_BSLASHfootcite] = ACTIONS(4909), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), + [anon_sym_BSLASHtextcite] = ACTIONS(4909), + [anon_sym_BSLASHTextcite] = ACTIONS(4909), + [anon_sym_BSLASHsmartcite] = ACTIONS(4909), + [anon_sym_BSLASHSmartcite] = ACTIONS(4909), + [anon_sym_BSLASHsupercite] = ACTIONS(4909), + [anon_sym_BSLASHautocite] = ACTIONS(4909), + [anon_sym_BSLASHAutocite] = ACTIONS(4909), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHvolcite] = ACTIONS(4909), + [anon_sym_BSLASHVolcite] = ACTIONS(4909), + [anon_sym_BSLASHpvolcite] = ACTIONS(4909), + [anon_sym_BSLASHPvolcite] = ACTIONS(4909), + [anon_sym_BSLASHfvolcite] = ACTIONS(4909), + [anon_sym_BSLASHftvolcite] = ACTIONS(4909), + [anon_sym_BSLASHsvolcite] = ACTIONS(4909), + [anon_sym_BSLASHSvolcite] = ACTIONS(4909), + [anon_sym_BSLASHtvolcite] = ACTIONS(4909), + [anon_sym_BSLASHTvolcite] = ACTIONS(4909), + [anon_sym_BSLASHavolcite] = ACTIONS(4909), + [anon_sym_BSLASHAvolcite] = ACTIONS(4909), + [anon_sym_BSLASHnotecite] = ACTIONS(4909), + [anon_sym_BSLASHNotecite] = ACTIONS(4909), + [anon_sym_BSLASHpnotecite] = ACTIONS(4909), + [anon_sym_BSLASHPnotecite] = ACTIONS(4909), + [anon_sym_BSLASHfnotecite] = ACTIONS(4909), + [anon_sym_BSLASHlabel] = ACTIONS(4909), + [anon_sym_BSLASHref] = ACTIONS(4909), + [anon_sym_BSLASHeqref] = ACTIONS(4909), + [anon_sym_BSLASHvref] = ACTIONS(4909), + [anon_sym_BSLASHVref] = ACTIONS(4909), + [anon_sym_BSLASHautoref] = ACTIONS(4909), + [anon_sym_BSLASHpageref] = ACTIONS(4909), + [anon_sym_BSLASHcref] = ACTIONS(4909), + [anon_sym_BSLASHCref] = ACTIONS(4909), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnameCref] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHlabelcref] = ACTIONS(4909), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCrefrange] = ACTIONS(4909), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnewlabel] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), + [anon_sym_BSLASHdef] = ACTIONS(4909), + [anon_sym_BSLASHlet] = ACTIONS(4909), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), + [anon_sym_BSLASHgls] = ACTIONS(4909), + [anon_sym_BSLASHGls] = ACTIONS(4909), + [anon_sym_BSLASHGLS] = ACTIONS(4909), + [anon_sym_BSLASHglspl] = ACTIONS(4909), + [anon_sym_BSLASHGlspl] = ACTIONS(4909), + [anon_sym_BSLASHGLSpl] = ACTIONS(4909), + [anon_sym_BSLASHglsdisp] = ACTIONS(4909), + [anon_sym_BSLASHglslink] = ACTIONS(4909), + [anon_sym_BSLASHglstext] = ACTIONS(4909), + [anon_sym_BSLASHGlstext] = ACTIONS(4909), + [anon_sym_BSLASHGLStext] = ACTIONS(4909), + [anon_sym_BSLASHglsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), + [anon_sym_BSLASHglsplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSplural] = ACTIONS(4909), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHglsname] = ACTIONS(4909), + [anon_sym_BSLASHGlsname] = ACTIONS(4909), + [anon_sym_BSLASHGLSname] = ACTIONS(4909), + [anon_sym_BSLASHglssymbol] = ACTIONS(4909), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), + [anon_sym_BSLASHglsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), + [anon_sym_BSLASHglsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), + [anon_sym_BSLASHglsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), + [anon_sym_BSLASHglsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), + [anon_sym_BSLASHglsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), + [anon_sym_BSLASHnewacronym] = ACTIONS(4909), + [anon_sym_BSLASHacrshort] = ACTIONS(4909), + [anon_sym_BSLASHAcrshort] = ACTIONS(4909), + [anon_sym_BSLASHACRshort] = ACTIONS(4909), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), + [anon_sym_BSLASHacrlong] = ACTIONS(4909), + [anon_sym_BSLASHAcrlong] = ACTIONS(4909), + [anon_sym_BSLASHACRlong] = ACTIONS(4909), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), + [anon_sym_BSLASHacrfull] = ACTIONS(4909), + [anon_sym_BSLASHAcrfull] = ACTIONS(4909), + [anon_sym_BSLASHACRfull] = ACTIONS(4909), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), + [anon_sym_BSLASHacs] = ACTIONS(4909), + [anon_sym_BSLASHAcs] = ACTIONS(4909), + [anon_sym_BSLASHacsp] = ACTIONS(4909), + [anon_sym_BSLASHAcsp] = ACTIONS(4909), + [anon_sym_BSLASHacl] = ACTIONS(4909), + [anon_sym_BSLASHAcl] = ACTIONS(4909), + [anon_sym_BSLASHaclp] = ACTIONS(4909), + [anon_sym_BSLASHAclp] = ACTIONS(4909), + [anon_sym_BSLASHacf] = ACTIONS(4909), + [anon_sym_BSLASHAcf] = ACTIONS(4909), + [anon_sym_BSLASHacfp] = ACTIONS(4909), + [anon_sym_BSLASHAcfp] = ACTIONS(4909), + [anon_sym_BSLASHac] = ACTIONS(4909), + [anon_sym_BSLASHAc] = ACTIONS(4909), + [anon_sym_BSLASHacp] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), + [anon_sym_BSLASHcolor] = ACTIONS(4909), + [anon_sym_BSLASHcolorbox] = ACTIONS(4909), + [anon_sym_BSLASHtextcolor] = ACTIONS(4909), + [anon_sym_BSLASHpagecolor] = ACTIONS(4909), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), + [anon_sym_BSLASHtext] = ACTIONS(4909), + [anon_sym_BSLASHintertext] = ACTIONS(4909), + [anon_sym_shortintertext] = ACTIONS(4909), + }, + [679] = { + [ts_builtin_sym_end] = ACTIONS(4911), + [sym_command_name] = ACTIONS(4913), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4913), + [anon_sym_LPAREN] = ACTIONS(4911), + [anon_sym_RPAREN] = ACTIONS(4911), + [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_RBRACK] = ACTIONS(4911), + [anon_sym_COMMA] = ACTIONS(4911), + [anon_sym_EQ] = ACTIONS(4911), + [anon_sym_BSLASHpart] = ACTIONS(4913), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddpart] = ACTIONS(4913), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4911), + [anon_sym_BSLASHchapter] = ACTIONS(4913), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddchap] = ACTIONS(4913), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsection] = ACTIONS(4913), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddsec] = ACTIONS(4913), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubsection] = ACTIONS(4913), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4913), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHparagraph] = ACTIONS(4913), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4913), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4911), + [anon_sym_BSLASHitem] = ACTIONS(4913), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4911), + [anon_sym_RBRACE] = ACTIONS(4911), + [sym_word] = ACTIONS(4913), + [sym_placeholder] = ACTIONS(4911), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4913), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_CARET] = ACTIONS(4913), + [anon_sym__] = ACTIONS(4913), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_BANG] = ACTIONS(4913), + [anon_sym_PIPE] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4913), + [anon_sym_SQUOTE] = ACTIONS(4913), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), + [anon_sym_DOLLAR] = ACTIONS(4913), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), + [anon_sym_BSLASHbegin] = ACTIONS(4913), + [anon_sym_BSLASHusepackage] = ACTIONS(4913), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), + [anon_sym_BSLASHinclude] = ACTIONS(4913), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), + [anon_sym_BSLASHinput] = ACTIONS(4913), + [anon_sym_BSLASHsubfile] = ACTIONS(4913), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), + [anon_sym_BSLASHbibliography] = ACTIONS(4913), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), + [anon_sym_BSLASHincludesvg] = ACTIONS(4913), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), + [anon_sym_BSLASHimport] = ACTIONS(4913), + [anon_sym_BSLASHsubimport] = ACTIONS(4913), + [anon_sym_BSLASHinputfrom] = ACTIONS(4913), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), + [anon_sym_BSLASHincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHcaption] = ACTIONS(4913), + [anon_sym_BSLASHcite] = ACTIONS(4913), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCite] = ACTIONS(4913), + [anon_sym_BSLASHnocite] = ACTIONS(4913), + [anon_sym_BSLASHcitet] = ACTIONS(4913), + [anon_sym_BSLASHcitep] = ACTIONS(4913), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteauthor] = ACTIONS(4913), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitetitle] = ACTIONS(4913), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteyear] = ACTIONS(4913), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitedate] = ACTIONS(4913), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteurl] = ACTIONS(4913), + [anon_sym_BSLASHfullcite] = ACTIONS(4913), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), + [anon_sym_BSLASHcitealt] = ACTIONS(4913), + [anon_sym_BSLASHcitealp] = ACTIONS(4913), + [anon_sym_BSLASHcitetext] = ACTIONS(4913), + [anon_sym_BSLASHparencite] = ACTIONS(4913), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHParencite] = ACTIONS(4913), + [anon_sym_BSLASHfootcite] = ACTIONS(4913), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), + [anon_sym_BSLASHtextcite] = ACTIONS(4913), + [anon_sym_BSLASHTextcite] = ACTIONS(4913), + [anon_sym_BSLASHsmartcite] = ACTIONS(4913), + [anon_sym_BSLASHSmartcite] = ACTIONS(4913), + [anon_sym_BSLASHsupercite] = ACTIONS(4913), + [anon_sym_BSLASHautocite] = ACTIONS(4913), + [anon_sym_BSLASHAutocite] = ACTIONS(4913), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHvolcite] = ACTIONS(4913), + [anon_sym_BSLASHVolcite] = ACTIONS(4913), + [anon_sym_BSLASHpvolcite] = ACTIONS(4913), + [anon_sym_BSLASHPvolcite] = ACTIONS(4913), + [anon_sym_BSLASHfvolcite] = ACTIONS(4913), + [anon_sym_BSLASHftvolcite] = ACTIONS(4913), + [anon_sym_BSLASHsvolcite] = ACTIONS(4913), + [anon_sym_BSLASHSvolcite] = ACTIONS(4913), + [anon_sym_BSLASHtvolcite] = ACTIONS(4913), + [anon_sym_BSLASHTvolcite] = ACTIONS(4913), + [anon_sym_BSLASHavolcite] = ACTIONS(4913), + [anon_sym_BSLASHAvolcite] = ACTIONS(4913), + [anon_sym_BSLASHnotecite] = ACTIONS(4913), + [anon_sym_BSLASHNotecite] = ACTIONS(4913), + [anon_sym_BSLASHpnotecite] = ACTIONS(4913), + [anon_sym_BSLASHPnotecite] = ACTIONS(4913), + [anon_sym_BSLASHfnotecite] = ACTIONS(4913), + [anon_sym_BSLASHlabel] = ACTIONS(4913), + [anon_sym_BSLASHref] = ACTIONS(4913), + [anon_sym_BSLASHeqref] = ACTIONS(4913), + [anon_sym_BSLASHvref] = ACTIONS(4913), + [anon_sym_BSLASHVref] = ACTIONS(4913), + [anon_sym_BSLASHautoref] = ACTIONS(4913), + [anon_sym_BSLASHpageref] = ACTIONS(4913), + [anon_sym_BSLASHcref] = ACTIONS(4913), + [anon_sym_BSLASHCref] = ACTIONS(4913), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnameCref] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHlabelcref] = ACTIONS(4913), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCrefrange] = ACTIONS(4913), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnewlabel] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), + [anon_sym_BSLASHdef] = ACTIONS(4913), + [anon_sym_BSLASHlet] = ACTIONS(4913), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), + [anon_sym_BSLASHgls] = ACTIONS(4913), + [anon_sym_BSLASHGls] = ACTIONS(4913), + [anon_sym_BSLASHGLS] = ACTIONS(4913), + [anon_sym_BSLASHglspl] = ACTIONS(4913), + [anon_sym_BSLASHGlspl] = ACTIONS(4913), + [anon_sym_BSLASHGLSpl] = ACTIONS(4913), + [anon_sym_BSLASHglsdisp] = ACTIONS(4913), + [anon_sym_BSLASHglslink] = ACTIONS(4913), + [anon_sym_BSLASHglstext] = ACTIONS(4913), + [anon_sym_BSLASHGlstext] = ACTIONS(4913), + [anon_sym_BSLASHGLStext] = ACTIONS(4913), + [anon_sym_BSLASHglsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), + [anon_sym_BSLASHglsplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSplural] = ACTIONS(4913), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHglsname] = ACTIONS(4913), + [anon_sym_BSLASHGlsname] = ACTIONS(4913), + [anon_sym_BSLASHGLSname] = ACTIONS(4913), + [anon_sym_BSLASHglssymbol] = ACTIONS(4913), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), + [anon_sym_BSLASHglsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), + [anon_sym_BSLASHglsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), + [anon_sym_BSLASHglsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), + [anon_sym_BSLASHglsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), + [anon_sym_BSLASHglsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), + [anon_sym_BSLASHnewacronym] = ACTIONS(4913), + [anon_sym_BSLASHacrshort] = ACTIONS(4913), + [anon_sym_BSLASHAcrshort] = ACTIONS(4913), + [anon_sym_BSLASHACRshort] = ACTIONS(4913), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), + [anon_sym_BSLASHacrlong] = ACTIONS(4913), + [anon_sym_BSLASHAcrlong] = ACTIONS(4913), + [anon_sym_BSLASHACRlong] = ACTIONS(4913), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), + [anon_sym_BSLASHacrfull] = ACTIONS(4913), + [anon_sym_BSLASHAcrfull] = ACTIONS(4913), + [anon_sym_BSLASHACRfull] = ACTIONS(4913), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), + [anon_sym_BSLASHacs] = ACTIONS(4913), + [anon_sym_BSLASHAcs] = ACTIONS(4913), + [anon_sym_BSLASHacsp] = ACTIONS(4913), + [anon_sym_BSLASHAcsp] = ACTIONS(4913), + [anon_sym_BSLASHacl] = ACTIONS(4913), + [anon_sym_BSLASHAcl] = ACTIONS(4913), + [anon_sym_BSLASHaclp] = ACTIONS(4913), + [anon_sym_BSLASHAclp] = ACTIONS(4913), + [anon_sym_BSLASHacf] = ACTIONS(4913), + [anon_sym_BSLASHAcf] = ACTIONS(4913), + [anon_sym_BSLASHacfp] = ACTIONS(4913), + [anon_sym_BSLASHAcfp] = ACTIONS(4913), + [anon_sym_BSLASHac] = ACTIONS(4913), + [anon_sym_BSLASHAc] = ACTIONS(4913), + [anon_sym_BSLASHacp] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), + [anon_sym_BSLASHcolor] = ACTIONS(4913), + [anon_sym_BSLASHcolorbox] = ACTIONS(4913), + [anon_sym_BSLASHtextcolor] = ACTIONS(4913), + [anon_sym_BSLASHpagecolor] = ACTIONS(4913), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), + [anon_sym_BSLASHtext] = ACTIONS(4913), + [anon_sym_BSLASHintertext] = ACTIONS(4913), + [anon_sym_shortintertext] = ACTIONS(4913), + }, + [680] = { + [ts_builtin_sym_end] = ACTIONS(4915), + [sym_command_name] = ACTIONS(4917), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_RPAREN] = ACTIONS(4915), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4915), + [anon_sym_BSLASHpart] = ACTIONS(4917), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddpart] = ACTIONS(4917), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4915), + [anon_sym_BSLASHchapter] = ACTIONS(4917), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddchap] = ACTIONS(4917), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsection] = ACTIONS(4917), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddsec] = ACTIONS(4917), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubsection] = ACTIONS(4917), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4917), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHparagraph] = ACTIONS(4917), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4917), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4915), + [anon_sym_BSLASHitem] = ACTIONS(4917), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4915), + [anon_sym_RBRACE] = ACTIONS(4915), + [sym_word] = ACTIONS(4917), + [sym_placeholder] = ACTIONS(4915), + [anon_sym_PLUS] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4917), + [anon_sym_CARET] = ACTIONS(4917), + [anon_sym__] = ACTIONS(4917), + [anon_sym_LT] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4917), + [anon_sym_BANG] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_SQUOTE] = ACTIONS(4917), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), + [anon_sym_DOLLAR] = ACTIONS(4917), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), + [anon_sym_BSLASHbegin] = ACTIONS(4917), + [anon_sym_BSLASHusepackage] = ACTIONS(4917), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), + [anon_sym_BSLASHinclude] = ACTIONS(4917), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), + [anon_sym_BSLASHinput] = ACTIONS(4917), + [anon_sym_BSLASHsubfile] = ACTIONS(4917), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), + [anon_sym_BSLASHbibliography] = ACTIONS(4917), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), + [anon_sym_BSLASHincludesvg] = ACTIONS(4917), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), + [anon_sym_BSLASHimport] = ACTIONS(4917), + [anon_sym_BSLASHsubimport] = ACTIONS(4917), + [anon_sym_BSLASHinputfrom] = ACTIONS(4917), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), + [anon_sym_BSLASHincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHcaption] = ACTIONS(4917), + [anon_sym_BSLASHcite] = ACTIONS(4917), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCite] = ACTIONS(4917), + [anon_sym_BSLASHnocite] = ACTIONS(4917), + [anon_sym_BSLASHcitet] = ACTIONS(4917), + [anon_sym_BSLASHcitep] = ACTIONS(4917), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteauthor] = ACTIONS(4917), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitetitle] = ACTIONS(4917), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteyear] = ACTIONS(4917), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitedate] = ACTIONS(4917), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteurl] = ACTIONS(4917), + [anon_sym_BSLASHfullcite] = ACTIONS(4917), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), + [anon_sym_BSLASHcitealt] = ACTIONS(4917), + [anon_sym_BSLASHcitealp] = ACTIONS(4917), + [anon_sym_BSLASHcitetext] = ACTIONS(4917), + [anon_sym_BSLASHparencite] = ACTIONS(4917), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHParencite] = ACTIONS(4917), + [anon_sym_BSLASHfootcite] = ACTIONS(4917), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), + [anon_sym_BSLASHtextcite] = ACTIONS(4917), + [anon_sym_BSLASHTextcite] = ACTIONS(4917), + [anon_sym_BSLASHsmartcite] = ACTIONS(4917), + [anon_sym_BSLASHSmartcite] = ACTIONS(4917), + [anon_sym_BSLASHsupercite] = ACTIONS(4917), + [anon_sym_BSLASHautocite] = ACTIONS(4917), + [anon_sym_BSLASHAutocite] = ACTIONS(4917), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHvolcite] = ACTIONS(4917), + [anon_sym_BSLASHVolcite] = ACTIONS(4917), + [anon_sym_BSLASHpvolcite] = ACTIONS(4917), + [anon_sym_BSLASHPvolcite] = ACTIONS(4917), + [anon_sym_BSLASHfvolcite] = ACTIONS(4917), + [anon_sym_BSLASHftvolcite] = ACTIONS(4917), + [anon_sym_BSLASHsvolcite] = ACTIONS(4917), + [anon_sym_BSLASHSvolcite] = ACTIONS(4917), + [anon_sym_BSLASHtvolcite] = ACTIONS(4917), + [anon_sym_BSLASHTvolcite] = ACTIONS(4917), + [anon_sym_BSLASHavolcite] = ACTIONS(4917), + [anon_sym_BSLASHAvolcite] = ACTIONS(4917), + [anon_sym_BSLASHnotecite] = ACTIONS(4917), + [anon_sym_BSLASHNotecite] = ACTIONS(4917), + [anon_sym_BSLASHpnotecite] = ACTIONS(4917), + [anon_sym_BSLASHPnotecite] = ACTIONS(4917), + [anon_sym_BSLASHfnotecite] = ACTIONS(4917), + [anon_sym_BSLASHlabel] = ACTIONS(4917), + [anon_sym_BSLASHref] = ACTIONS(4917), + [anon_sym_BSLASHeqref] = ACTIONS(4917), + [anon_sym_BSLASHvref] = ACTIONS(4917), + [anon_sym_BSLASHVref] = ACTIONS(4917), + [anon_sym_BSLASHautoref] = ACTIONS(4917), + [anon_sym_BSLASHpageref] = ACTIONS(4917), + [anon_sym_BSLASHcref] = ACTIONS(4917), + [anon_sym_BSLASHCref] = ACTIONS(4917), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnameCref] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHlabelcref] = ACTIONS(4917), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCrefrange] = ACTIONS(4917), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnewlabel] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), + [anon_sym_BSLASHdef] = ACTIONS(4917), + [anon_sym_BSLASHlet] = ACTIONS(4917), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), + [anon_sym_BSLASHgls] = ACTIONS(4917), + [anon_sym_BSLASHGls] = ACTIONS(4917), + [anon_sym_BSLASHGLS] = ACTIONS(4917), + [anon_sym_BSLASHglspl] = ACTIONS(4917), + [anon_sym_BSLASHGlspl] = ACTIONS(4917), + [anon_sym_BSLASHGLSpl] = ACTIONS(4917), + [anon_sym_BSLASHglsdisp] = ACTIONS(4917), + [anon_sym_BSLASHglslink] = ACTIONS(4917), + [anon_sym_BSLASHglstext] = ACTIONS(4917), + [anon_sym_BSLASHGlstext] = ACTIONS(4917), + [anon_sym_BSLASHGLStext] = ACTIONS(4917), + [anon_sym_BSLASHglsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), + [anon_sym_BSLASHglsplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSplural] = ACTIONS(4917), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHglsname] = ACTIONS(4917), + [anon_sym_BSLASHGlsname] = ACTIONS(4917), + [anon_sym_BSLASHGLSname] = ACTIONS(4917), + [anon_sym_BSLASHglssymbol] = ACTIONS(4917), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), + [anon_sym_BSLASHglsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), + [anon_sym_BSLASHglsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), + [anon_sym_BSLASHglsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), + [anon_sym_BSLASHglsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), + [anon_sym_BSLASHglsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), + [anon_sym_BSLASHnewacronym] = ACTIONS(4917), + [anon_sym_BSLASHacrshort] = ACTIONS(4917), + [anon_sym_BSLASHAcrshort] = ACTIONS(4917), + [anon_sym_BSLASHACRshort] = ACTIONS(4917), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), + [anon_sym_BSLASHacrlong] = ACTIONS(4917), + [anon_sym_BSLASHAcrlong] = ACTIONS(4917), + [anon_sym_BSLASHACRlong] = ACTIONS(4917), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), + [anon_sym_BSLASHacrfull] = ACTIONS(4917), + [anon_sym_BSLASHAcrfull] = ACTIONS(4917), + [anon_sym_BSLASHACRfull] = ACTIONS(4917), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), + [anon_sym_BSLASHacs] = ACTIONS(4917), + [anon_sym_BSLASHAcs] = ACTIONS(4917), + [anon_sym_BSLASHacsp] = ACTIONS(4917), + [anon_sym_BSLASHAcsp] = ACTIONS(4917), + [anon_sym_BSLASHacl] = ACTIONS(4917), + [anon_sym_BSLASHAcl] = ACTIONS(4917), + [anon_sym_BSLASHaclp] = ACTIONS(4917), + [anon_sym_BSLASHAclp] = ACTIONS(4917), + [anon_sym_BSLASHacf] = ACTIONS(4917), + [anon_sym_BSLASHAcf] = ACTIONS(4917), + [anon_sym_BSLASHacfp] = ACTIONS(4917), + [anon_sym_BSLASHAcfp] = ACTIONS(4917), + [anon_sym_BSLASHac] = ACTIONS(4917), + [anon_sym_BSLASHAc] = ACTIONS(4917), + [anon_sym_BSLASHacp] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), + [anon_sym_BSLASHcolor] = ACTIONS(4917), + [anon_sym_BSLASHcolorbox] = ACTIONS(4917), + [anon_sym_BSLASHtextcolor] = ACTIONS(4917), + [anon_sym_BSLASHpagecolor] = ACTIONS(4917), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), + [anon_sym_BSLASHtext] = ACTIONS(4917), + [anon_sym_BSLASHintertext] = ACTIONS(4917), + [anon_sym_shortintertext] = ACTIONS(4917), + }, + [681] = { + [ts_builtin_sym_end] = ACTIONS(4919), + [sym_command_name] = ACTIONS(4921), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4921), + [anon_sym_LPAREN] = ACTIONS(4919), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_RBRACK] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4919), + [anon_sym_BSLASHpart] = ACTIONS(4921), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddpart] = ACTIONS(4921), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4919), + [anon_sym_BSLASHchapter] = ACTIONS(4921), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddchap] = ACTIONS(4921), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsection] = ACTIONS(4921), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddsec] = ACTIONS(4921), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubsection] = ACTIONS(4921), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4921), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHparagraph] = ACTIONS(4921), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4921), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4919), + [anon_sym_BSLASHitem] = ACTIONS(4921), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4919), + [anon_sym_LBRACE] = ACTIONS(4919), + [anon_sym_RBRACE] = ACTIONS(4919), + [sym_word] = ACTIONS(4921), + [sym_placeholder] = ACTIONS(4919), + [anon_sym_PLUS] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4921), + [anon_sym_CARET] = ACTIONS(4921), + [anon_sym__] = ACTIONS(4921), + [anon_sym_LT] = ACTIONS(4921), + [anon_sym_GT] = ACTIONS(4921), + [anon_sym_BANG] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_COLON] = ACTIONS(4921), + [anon_sym_SQUOTE] = ACTIONS(4921), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), + [anon_sym_DOLLAR] = ACTIONS(4921), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), + [anon_sym_BSLASHbegin] = ACTIONS(4921), + [anon_sym_BSLASHusepackage] = ACTIONS(4921), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), + [anon_sym_BSLASHinclude] = ACTIONS(4921), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), + [anon_sym_BSLASHinput] = ACTIONS(4921), + [anon_sym_BSLASHsubfile] = ACTIONS(4921), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), + [anon_sym_BSLASHbibliography] = ACTIONS(4921), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), + [anon_sym_BSLASHincludesvg] = ACTIONS(4921), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), + [anon_sym_BSLASHimport] = ACTIONS(4921), + [anon_sym_BSLASHsubimport] = ACTIONS(4921), + [anon_sym_BSLASHinputfrom] = ACTIONS(4921), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), + [anon_sym_BSLASHincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHcaption] = ACTIONS(4921), + [anon_sym_BSLASHcite] = ACTIONS(4921), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCite] = ACTIONS(4921), + [anon_sym_BSLASHnocite] = ACTIONS(4921), + [anon_sym_BSLASHcitet] = ACTIONS(4921), + [anon_sym_BSLASHcitep] = ACTIONS(4921), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteauthor] = ACTIONS(4921), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitetitle] = ACTIONS(4921), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteyear] = ACTIONS(4921), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitedate] = ACTIONS(4921), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteurl] = ACTIONS(4921), + [anon_sym_BSLASHfullcite] = ACTIONS(4921), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), + [anon_sym_BSLASHcitealt] = ACTIONS(4921), + [anon_sym_BSLASHcitealp] = ACTIONS(4921), + [anon_sym_BSLASHcitetext] = ACTIONS(4921), + [anon_sym_BSLASHparencite] = ACTIONS(4921), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHParencite] = ACTIONS(4921), + [anon_sym_BSLASHfootcite] = ACTIONS(4921), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), + [anon_sym_BSLASHtextcite] = ACTIONS(4921), + [anon_sym_BSLASHTextcite] = ACTIONS(4921), + [anon_sym_BSLASHsmartcite] = ACTIONS(4921), + [anon_sym_BSLASHSmartcite] = ACTIONS(4921), + [anon_sym_BSLASHsupercite] = ACTIONS(4921), + [anon_sym_BSLASHautocite] = ACTIONS(4921), + [anon_sym_BSLASHAutocite] = ACTIONS(4921), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHvolcite] = ACTIONS(4921), + [anon_sym_BSLASHVolcite] = ACTIONS(4921), + [anon_sym_BSLASHpvolcite] = ACTIONS(4921), + [anon_sym_BSLASHPvolcite] = ACTIONS(4921), + [anon_sym_BSLASHfvolcite] = ACTIONS(4921), + [anon_sym_BSLASHftvolcite] = ACTIONS(4921), + [anon_sym_BSLASHsvolcite] = ACTIONS(4921), + [anon_sym_BSLASHSvolcite] = ACTIONS(4921), + [anon_sym_BSLASHtvolcite] = ACTIONS(4921), + [anon_sym_BSLASHTvolcite] = ACTIONS(4921), + [anon_sym_BSLASHavolcite] = ACTIONS(4921), + [anon_sym_BSLASHAvolcite] = ACTIONS(4921), + [anon_sym_BSLASHnotecite] = ACTIONS(4921), + [anon_sym_BSLASHNotecite] = ACTIONS(4921), + [anon_sym_BSLASHpnotecite] = ACTIONS(4921), + [anon_sym_BSLASHPnotecite] = ACTIONS(4921), + [anon_sym_BSLASHfnotecite] = ACTIONS(4921), + [anon_sym_BSLASHlabel] = ACTIONS(4921), + [anon_sym_BSLASHref] = ACTIONS(4921), + [anon_sym_BSLASHeqref] = ACTIONS(4921), + [anon_sym_BSLASHvref] = ACTIONS(4921), + [anon_sym_BSLASHVref] = ACTIONS(4921), + [anon_sym_BSLASHautoref] = ACTIONS(4921), + [anon_sym_BSLASHpageref] = ACTIONS(4921), + [anon_sym_BSLASHcref] = ACTIONS(4921), + [anon_sym_BSLASHCref] = ACTIONS(4921), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnameCref] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHlabelcref] = ACTIONS(4921), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCrefrange] = ACTIONS(4921), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnewlabel] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), + [anon_sym_BSLASHdef] = ACTIONS(4921), + [anon_sym_BSLASHlet] = ACTIONS(4921), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), + [anon_sym_BSLASHgls] = ACTIONS(4921), + [anon_sym_BSLASHGls] = ACTIONS(4921), + [anon_sym_BSLASHGLS] = ACTIONS(4921), + [anon_sym_BSLASHglspl] = ACTIONS(4921), + [anon_sym_BSLASHGlspl] = ACTIONS(4921), + [anon_sym_BSLASHGLSpl] = ACTIONS(4921), + [anon_sym_BSLASHglsdisp] = ACTIONS(4921), + [anon_sym_BSLASHglslink] = ACTIONS(4921), + [anon_sym_BSLASHglstext] = ACTIONS(4921), + [anon_sym_BSLASHGlstext] = ACTIONS(4921), + [anon_sym_BSLASHGLStext] = ACTIONS(4921), + [anon_sym_BSLASHglsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), + [anon_sym_BSLASHglsplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSplural] = ACTIONS(4921), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHglsname] = ACTIONS(4921), + [anon_sym_BSLASHGlsname] = ACTIONS(4921), + [anon_sym_BSLASHGLSname] = ACTIONS(4921), + [anon_sym_BSLASHglssymbol] = ACTIONS(4921), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), + [anon_sym_BSLASHglsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), + [anon_sym_BSLASHglsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), + [anon_sym_BSLASHglsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), + [anon_sym_BSLASHglsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), + [anon_sym_BSLASHglsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), + [anon_sym_BSLASHnewacronym] = ACTIONS(4921), + [anon_sym_BSLASHacrshort] = ACTIONS(4921), + [anon_sym_BSLASHAcrshort] = ACTIONS(4921), + [anon_sym_BSLASHACRshort] = ACTIONS(4921), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), + [anon_sym_BSLASHacrlong] = ACTIONS(4921), + [anon_sym_BSLASHAcrlong] = ACTIONS(4921), + [anon_sym_BSLASHACRlong] = ACTIONS(4921), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), + [anon_sym_BSLASHacrfull] = ACTIONS(4921), + [anon_sym_BSLASHAcrfull] = ACTIONS(4921), + [anon_sym_BSLASHACRfull] = ACTIONS(4921), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), + [anon_sym_BSLASHacs] = ACTIONS(4921), + [anon_sym_BSLASHAcs] = ACTIONS(4921), + [anon_sym_BSLASHacsp] = ACTIONS(4921), + [anon_sym_BSLASHAcsp] = ACTIONS(4921), + [anon_sym_BSLASHacl] = ACTIONS(4921), + [anon_sym_BSLASHAcl] = ACTIONS(4921), + [anon_sym_BSLASHaclp] = ACTIONS(4921), + [anon_sym_BSLASHAclp] = ACTIONS(4921), + [anon_sym_BSLASHacf] = ACTIONS(4921), + [anon_sym_BSLASHAcf] = ACTIONS(4921), + [anon_sym_BSLASHacfp] = ACTIONS(4921), + [anon_sym_BSLASHAcfp] = ACTIONS(4921), + [anon_sym_BSLASHac] = ACTIONS(4921), + [anon_sym_BSLASHAc] = ACTIONS(4921), + [anon_sym_BSLASHacp] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), + [anon_sym_BSLASHcolor] = ACTIONS(4921), + [anon_sym_BSLASHcolorbox] = ACTIONS(4921), + [anon_sym_BSLASHtextcolor] = ACTIONS(4921), + [anon_sym_BSLASHpagecolor] = ACTIONS(4921), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), + [anon_sym_BSLASHtext] = ACTIONS(4921), + [anon_sym_BSLASHintertext] = ACTIONS(4921), + [anon_sym_shortintertext] = ACTIONS(4921), + }, + [682] = { + [ts_builtin_sym_end] = ACTIONS(4923), + [sym_command_name] = ACTIONS(4925), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_RBRACK] = ACTIONS(4923), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_EQ] = ACTIONS(4923), + [anon_sym_BSLASHpart] = ACTIONS(4925), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddpart] = ACTIONS(4925), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4923), + [anon_sym_BSLASHchapter] = ACTIONS(4925), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddchap] = ACTIONS(4925), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsection] = ACTIONS(4925), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddsec] = ACTIONS(4925), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubsection] = ACTIONS(4925), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4925), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHparagraph] = ACTIONS(4925), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4925), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4923), + [anon_sym_BSLASHitem] = ACTIONS(4925), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4923), + [anon_sym_RBRACE] = ACTIONS(4923), + [sym_word] = ACTIONS(4925), + [sym_placeholder] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym__] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_BANG] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_SQUOTE] = ACTIONS(4925), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), + [anon_sym_DOLLAR] = ACTIONS(4925), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), + [anon_sym_BSLASHbegin] = ACTIONS(4925), + [anon_sym_BSLASHusepackage] = ACTIONS(4925), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), + [anon_sym_BSLASHinclude] = ACTIONS(4925), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), + [anon_sym_BSLASHinput] = ACTIONS(4925), + [anon_sym_BSLASHsubfile] = ACTIONS(4925), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), + [anon_sym_BSLASHbibliography] = ACTIONS(4925), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), + [anon_sym_BSLASHincludesvg] = ACTIONS(4925), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), + [anon_sym_BSLASHimport] = ACTIONS(4925), + [anon_sym_BSLASHsubimport] = ACTIONS(4925), + [anon_sym_BSLASHinputfrom] = ACTIONS(4925), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), + [anon_sym_BSLASHincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHcaption] = ACTIONS(4925), + [anon_sym_BSLASHcite] = ACTIONS(4925), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCite] = ACTIONS(4925), + [anon_sym_BSLASHnocite] = ACTIONS(4925), + [anon_sym_BSLASHcitet] = ACTIONS(4925), + [anon_sym_BSLASHcitep] = ACTIONS(4925), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteauthor] = ACTIONS(4925), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitetitle] = ACTIONS(4925), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteyear] = ACTIONS(4925), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitedate] = ACTIONS(4925), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteurl] = ACTIONS(4925), + [anon_sym_BSLASHfullcite] = ACTIONS(4925), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4925), + [anon_sym_BSLASHcitealt] = ACTIONS(4925), + [anon_sym_BSLASHcitealp] = ACTIONS(4925), + [anon_sym_BSLASHcitetext] = ACTIONS(4925), + [anon_sym_BSLASHparencite] = ACTIONS(4925), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHParencite] = ACTIONS(4925), + [anon_sym_BSLASHfootcite] = ACTIONS(4925), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4925), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4925), + [anon_sym_BSLASHtextcite] = ACTIONS(4925), + [anon_sym_BSLASHTextcite] = ACTIONS(4925), + [anon_sym_BSLASHsmartcite] = ACTIONS(4925), + [anon_sym_BSLASHSmartcite] = ACTIONS(4925), + [anon_sym_BSLASHsupercite] = ACTIONS(4925), + [anon_sym_BSLASHautocite] = ACTIONS(4925), + [anon_sym_BSLASHAutocite] = ACTIONS(4925), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHvolcite] = ACTIONS(4925), + [anon_sym_BSLASHVolcite] = ACTIONS(4925), + [anon_sym_BSLASHpvolcite] = ACTIONS(4925), + [anon_sym_BSLASHPvolcite] = ACTIONS(4925), + [anon_sym_BSLASHfvolcite] = ACTIONS(4925), + [anon_sym_BSLASHftvolcite] = ACTIONS(4925), + [anon_sym_BSLASHsvolcite] = ACTIONS(4925), + [anon_sym_BSLASHSvolcite] = ACTIONS(4925), + [anon_sym_BSLASHtvolcite] = ACTIONS(4925), + [anon_sym_BSLASHTvolcite] = ACTIONS(4925), + [anon_sym_BSLASHavolcite] = ACTIONS(4925), + [anon_sym_BSLASHAvolcite] = ACTIONS(4925), + [anon_sym_BSLASHnotecite] = ACTIONS(4925), + [anon_sym_BSLASHNotecite] = ACTIONS(4925), + [anon_sym_BSLASHpnotecite] = ACTIONS(4925), + [anon_sym_BSLASHPnotecite] = ACTIONS(4925), + [anon_sym_BSLASHfnotecite] = ACTIONS(4925), + [anon_sym_BSLASHlabel] = ACTIONS(4925), + [anon_sym_BSLASHref] = ACTIONS(4925), + [anon_sym_BSLASHeqref] = ACTIONS(4925), + [anon_sym_BSLASHvref] = ACTIONS(4925), + [anon_sym_BSLASHVref] = ACTIONS(4925), + [anon_sym_BSLASHautoref] = ACTIONS(4925), + [anon_sym_BSLASHpageref] = ACTIONS(4925), + [anon_sym_BSLASHcref] = ACTIONS(4925), + [anon_sym_BSLASHCref] = ACTIONS(4925), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnameCref] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHlabelcref] = ACTIONS(4925), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCrefrange] = ACTIONS(4925), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnewlabel] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), + [anon_sym_BSLASHdef] = ACTIONS(4925), + [anon_sym_BSLASHlet] = ACTIONS(4925), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), + [anon_sym_BSLASHgls] = ACTIONS(4925), + [anon_sym_BSLASHGls] = ACTIONS(4925), + [anon_sym_BSLASHGLS] = ACTIONS(4925), + [anon_sym_BSLASHglspl] = ACTIONS(4925), + [anon_sym_BSLASHGlspl] = ACTIONS(4925), + [anon_sym_BSLASHGLSpl] = ACTIONS(4925), + [anon_sym_BSLASHglsdisp] = ACTIONS(4925), + [anon_sym_BSLASHglslink] = ACTIONS(4925), + [anon_sym_BSLASHglstext] = ACTIONS(4925), + [anon_sym_BSLASHGlstext] = ACTIONS(4925), + [anon_sym_BSLASHGLStext] = ACTIONS(4925), + [anon_sym_BSLASHglsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), + [anon_sym_BSLASHglsplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSplural] = ACTIONS(4925), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHglsname] = ACTIONS(4925), + [anon_sym_BSLASHGlsname] = ACTIONS(4925), + [anon_sym_BSLASHGLSname] = ACTIONS(4925), + [anon_sym_BSLASHglssymbol] = ACTIONS(4925), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), + [anon_sym_BSLASHglsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), + [anon_sym_BSLASHglsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), + [anon_sym_BSLASHglsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), + [anon_sym_BSLASHglsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), + [anon_sym_BSLASHglsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), + [anon_sym_BSLASHnewacronym] = ACTIONS(4925), + [anon_sym_BSLASHacrshort] = ACTIONS(4925), + [anon_sym_BSLASHAcrshort] = ACTIONS(4925), + [anon_sym_BSLASHACRshort] = ACTIONS(4925), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), + [anon_sym_BSLASHacrlong] = ACTIONS(4925), + [anon_sym_BSLASHAcrlong] = ACTIONS(4925), + [anon_sym_BSLASHACRlong] = ACTIONS(4925), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), + [anon_sym_BSLASHacrfull] = ACTIONS(4925), + [anon_sym_BSLASHAcrfull] = ACTIONS(4925), + [anon_sym_BSLASHACRfull] = ACTIONS(4925), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), + [anon_sym_BSLASHacs] = ACTIONS(4925), + [anon_sym_BSLASHAcs] = ACTIONS(4925), + [anon_sym_BSLASHacsp] = ACTIONS(4925), + [anon_sym_BSLASHAcsp] = ACTIONS(4925), + [anon_sym_BSLASHacl] = ACTIONS(4925), + [anon_sym_BSLASHAcl] = ACTIONS(4925), + [anon_sym_BSLASHaclp] = ACTIONS(4925), + [anon_sym_BSLASHAclp] = ACTIONS(4925), + [anon_sym_BSLASHacf] = ACTIONS(4925), + [anon_sym_BSLASHAcf] = ACTIONS(4925), + [anon_sym_BSLASHacfp] = ACTIONS(4925), + [anon_sym_BSLASHAcfp] = ACTIONS(4925), + [anon_sym_BSLASHac] = ACTIONS(4925), + [anon_sym_BSLASHAc] = ACTIONS(4925), + [anon_sym_BSLASHacp] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), + [anon_sym_BSLASHcolor] = ACTIONS(4925), + [anon_sym_BSLASHcolorbox] = ACTIONS(4925), + [anon_sym_BSLASHtextcolor] = ACTIONS(4925), + [anon_sym_BSLASHpagecolor] = ACTIONS(4925), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), + [anon_sym_BSLASHtext] = ACTIONS(4925), + [anon_sym_BSLASHintertext] = ACTIONS(4925), + [anon_sym_shortintertext] = ACTIONS(4925), + }, + [683] = { + [sym_curly_group] = STATE(889), + [sym_command_name] = ACTIONS(4845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4845), + [anon_sym_LPAREN] = ACTIONS(4843), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_RBRACK] = ACTIONS(4843), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_EQ] = ACTIONS(4843), + [anon_sym_BSLASHpart] = ACTIONS(4845), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddpart] = ACTIONS(4845), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4843), + [anon_sym_BSLASHchapter] = ACTIONS(4845), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddchap] = ACTIONS(4845), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsection] = ACTIONS(4845), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddsec] = ACTIONS(4845), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubsection] = ACTIONS(4845), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4845), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHparagraph] = ACTIONS(4845), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4845), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4843), + [anon_sym_BSLASHitem] = ACTIONS(4845), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4843), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(4845), + [sym_placeholder] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4845), + [anon_sym_SLASH] = ACTIONS(4845), + [anon_sym_CARET] = ACTIONS(4845), + [anon_sym__] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_BANG] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_COLON] = ACTIONS(4845), + [anon_sym_SQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4843), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4843), + [anon_sym_BSLASHbegin] = ACTIONS(4845), + [anon_sym_BSLASHusepackage] = ACTIONS(4845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4845), + [anon_sym_BSLASHinclude] = ACTIONS(4845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4845), + [anon_sym_BSLASHinput] = ACTIONS(4845), + [anon_sym_BSLASHsubfile] = ACTIONS(4845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4845), + [anon_sym_BSLASHbibliography] = ACTIONS(4845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4845), + [anon_sym_BSLASHincludesvg] = ACTIONS(4845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4845), + [anon_sym_BSLASHimport] = ACTIONS(4845), + [anon_sym_BSLASHsubimport] = ACTIONS(4845), + [anon_sym_BSLASHinputfrom] = ACTIONS(4845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4845), + [anon_sym_BSLASHincludefrom] = ACTIONS(4845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4845), + [anon_sym_BSLASHcaption] = ACTIONS(4845), + [anon_sym_BSLASHcite] = ACTIONS(4845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCite] = ACTIONS(4845), + [anon_sym_BSLASHnocite] = ACTIONS(4845), + [anon_sym_BSLASHcitet] = ACTIONS(4845), + [anon_sym_BSLASHcitep] = ACTIONS(4845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteauthor] = ACTIONS(4845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitetitle] = ACTIONS(4845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteyear] = ACTIONS(4845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitedate] = ACTIONS(4845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteurl] = ACTIONS(4845), + [anon_sym_BSLASHfullcite] = ACTIONS(4845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4845), + [anon_sym_BSLASHcitealt] = ACTIONS(4845), + [anon_sym_BSLASHcitealp] = ACTIONS(4845), + [anon_sym_BSLASHcitetext] = ACTIONS(4845), + [anon_sym_BSLASHparencite] = ACTIONS(4845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHParencite] = ACTIONS(4845), + [anon_sym_BSLASHfootcite] = ACTIONS(4845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4845), + [anon_sym_BSLASHtextcite] = ACTIONS(4845), + [anon_sym_BSLASHTextcite] = ACTIONS(4845), + [anon_sym_BSLASHsmartcite] = ACTIONS(4845), + [anon_sym_BSLASHSmartcite] = ACTIONS(4845), + [anon_sym_BSLASHsupercite] = ACTIONS(4845), + [anon_sym_BSLASHautocite] = ACTIONS(4845), + [anon_sym_BSLASHAutocite] = ACTIONS(4845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHvolcite] = ACTIONS(4845), + [anon_sym_BSLASHVolcite] = ACTIONS(4845), + [anon_sym_BSLASHpvolcite] = ACTIONS(4845), + [anon_sym_BSLASHPvolcite] = ACTIONS(4845), + [anon_sym_BSLASHfvolcite] = ACTIONS(4845), + [anon_sym_BSLASHftvolcite] = ACTIONS(4845), + [anon_sym_BSLASHsvolcite] = ACTIONS(4845), + [anon_sym_BSLASHSvolcite] = ACTIONS(4845), + [anon_sym_BSLASHtvolcite] = ACTIONS(4845), + [anon_sym_BSLASHTvolcite] = ACTIONS(4845), + [anon_sym_BSLASHavolcite] = ACTIONS(4845), + [anon_sym_BSLASHAvolcite] = ACTIONS(4845), + [anon_sym_BSLASHnotecite] = ACTIONS(4845), + [anon_sym_BSLASHNotecite] = ACTIONS(4845), + [anon_sym_BSLASHpnotecite] = ACTIONS(4845), + [anon_sym_BSLASHPnotecite] = ACTIONS(4845), + [anon_sym_BSLASHfnotecite] = ACTIONS(4845), + [anon_sym_BSLASHlabel] = ACTIONS(4845), + [anon_sym_BSLASHref] = ACTIONS(4845), + [anon_sym_BSLASHeqref] = ACTIONS(4845), + [anon_sym_BSLASHvref] = ACTIONS(4845), + [anon_sym_BSLASHVref] = ACTIONS(4845), + [anon_sym_BSLASHautoref] = ACTIONS(4845), + [anon_sym_BSLASHpageref] = ACTIONS(4845), + [anon_sym_BSLASHcref] = ACTIONS(4845), + [anon_sym_BSLASHCref] = ACTIONS(4845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4843), + [anon_sym_BSLASHnamecref] = ACTIONS(4845), + [anon_sym_BSLASHnameCref] = ACTIONS(4845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4845), + [anon_sym_BSLASHlabelcref] = ACTIONS(4845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4845), + [anon_sym_BSLASHcrefrange] = ACTIONS(4845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCrefrange] = ACTIONS(4845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4843), + [anon_sym_BSLASHnewlabel] = ACTIONS(4845), + [anon_sym_BSLASHnewcommand] = ACTIONS(4845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4843), + [anon_sym_BSLASHdef] = ACTIONS(4845), + [anon_sym_BSLASHlet] = ACTIONS(4845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4845), + [anon_sym_BSLASHgls] = ACTIONS(4845), + [anon_sym_BSLASHGls] = ACTIONS(4845), + [anon_sym_BSLASHGLS] = ACTIONS(4845), + [anon_sym_BSLASHglspl] = ACTIONS(4845), + [anon_sym_BSLASHGlspl] = ACTIONS(4845), + [anon_sym_BSLASHGLSpl] = ACTIONS(4845), + [anon_sym_BSLASHglsdisp] = ACTIONS(4845), + [anon_sym_BSLASHglslink] = ACTIONS(4845), + [anon_sym_BSLASHglstext] = ACTIONS(4845), + [anon_sym_BSLASHGlstext] = ACTIONS(4845), + [anon_sym_BSLASHGLStext] = ACTIONS(4845), + [anon_sym_BSLASHglsfirst] = ACTIONS(4845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4845), + [anon_sym_BSLASHglsplural] = ACTIONS(4845), + [anon_sym_BSLASHGlsplural] = ACTIONS(4845), + [anon_sym_BSLASHGLSplural] = ACTIONS(4845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHglsname] = ACTIONS(4845), + [anon_sym_BSLASHGlsname] = ACTIONS(4845), + [anon_sym_BSLASHGLSname] = ACTIONS(4845), + [anon_sym_BSLASHglssymbol] = ACTIONS(4845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4845), + [anon_sym_BSLASHglsdesc] = ACTIONS(4845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4845), + [anon_sym_BSLASHglsuseri] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4845), + [anon_sym_BSLASHglsuserii] = ACTIONS(4845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4845), + [anon_sym_BSLASHglsuserv] = ACTIONS(4845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4845), + [anon_sym_BSLASHglsuservi] = ACTIONS(4845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4845), + [anon_sym_BSLASHnewacronym] = ACTIONS(4845), + [anon_sym_BSLASHacrshort] = ACTIONS(4845), + [anon_sym_BSLASHAcrshort] = ACTIONS(4845), + [anon_sym_BSLASHACRshort] = ACTIONS(4845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4845), + [anon_sym_BSLASHacrlong] = ACTIONS(4845), + [anon_sym_BSLASHAcrlong] = ACTIONS(4845), + [anon_sym_BSLASHACRlong] = ACTIONS(4845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4845), + [anon_sym_BSLASHacrfull] = ACTIONS(4845), + [anon_sym_BSLASHAcrfull] = ACTIONS(4845), + [anon_sym_BSLASHACRfull] = ACTIONS(4845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4845), + [anon_sym_BSLASHacs] = ACTIONS(4845), + [anon_sym_BSLASHAcs] = ACTIONS(4845), + [anon_sym_BSLASHacsp] = ACTIONS(4845), + [anon_sym_BSLASHAcsp] = ACTIONS(4845), + [anon_sym_BSLASHacl] = ACTIONS(4845), + [anon_sym_BSLASHAcl] = ACTIONS(4845), + [anon_sym_BSLASHaclp] = ACTIONS(4845), + [anon_sym_BSLASHAclp] = ACTIONS(4845), + [anon_sym_BSLASHacf] = ACTIONS(4845), + [anon_sym_BSLASHAcf] = ACTIONS(4845), + [anon_sym_BSLASHacfp] = ACTIONS(4845), + [anon_sym_BSLASHAcfp] = ACTIONS(4845), + [anon_sym_BSLASHac] = ACTIONS(4845), + [anon_sym_BSLASHAc] = ACTIONS(4845), + [anon_sym_BSLASHacp] = ACTIONS(4845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4845), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4845), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4845), + [anon_sym_BSLASHcolor] = ACTIONS(4845), + [anon_sym_BSLASHcolorbox] = ACTIONS(4845), + [anon_sym_BSLASHtextcolor] = ACTIONS(4845), + [anon_sym_BSLASHpagecolor] = ACTIONS(4845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4845), + [anon_sym_BSLASHtext] = ACTIONS(4845), + [anon_sym_BSLASHintertext] = ACTIONS(4845), + [anon_sym_shortintertext] = ACTIONS(4845), + }, + [684] = { + [ts_builtin_sym_end] = ACTIONS(4927), + [sym_command_name] = ACTIONS(4929), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_BSLASHpart] = ACTIONS(5135), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddpart] = ACTIONS(5135), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHchapter] = ACTIONS(5135), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddchap] = ACTIONS(5135), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsection] = ACTIONS(5135), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddsec] = ACTIONS(5135), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHparagraph] = ACTIONS(5135), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHitem] = ACTIONS(5135), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASHbegin] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [anon_sym_BSLASHiffalse] = ACTIONS(4929), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_RBRACK] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_EQ] = ACTIONS(4927), + [anon_sym_BSLASHpart] = ACTIONS(4929), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddpart] = ACTIONS(4929), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), + [anon_sym_BSLASHchapter] = ACTIONS(4929), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddchap] = ACTIONS(4929), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsection] = ACTIONS(4929), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddsec] = ACTIONS(4929), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubsection] = ACTIONS(4929), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHparagraph] = ACTIONS(4929), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), + [anon_sym_BSLASHitem] = ACTIONS(4929), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), + [anon_sym_LBRACE] = ACTIONS(4927), + [anon_sym_RBRACE] = ACTIONS(4927), + [sym_word] = ACTIONS(4929), + [sym_placeholder] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_CARET] = ACTIONS(4929), + [anon_sym__] = ACTIONS(4929), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_BANG] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4929), + [anon_sym_COLON] = ACTIONS(4929), + [anon_sym_SQUOTE] = ACTIONS(4929), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), + [anon_sym_DOLLAR] = ACTIONS(4929), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), + [anon_sym_BSLASHbegin] = ACTIONS(4929), + [anon_sym_BSLASHusepackage] = ACTIONS(4929), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), + [anon_sym_BSLASHinclude] = ACTIONS(4929), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), + [anon_sym_BSLASHinput] = ACTIONS(4929), + [anon_sym_BSLASHsubfile] = ACTIONS(4929), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), + [anon_sym_BSLASHbibliography] = ACTIONS(4929), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), + [anon_sym_BSLASHincludesvg] = ACTIONS(4929), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), + [anon_sym_BSLASHimport] = ACTIONS(4929), + [anon_sym_BSLASHsubimport] = ACTIONS(4929), + [anon_sym_BSLASHinputfrom] = ACTIONS(4929), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), + [anon_sym_BSLASHincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHcaption] = ACTIONS(4929), + [anon_sym_BSLASHcite] = ACTIONS(4929), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCite] = ACTIONS(4929), + [anon_sym_BSLASHnocite] = ACTIONS(4929), + [anon_sym_BSLASHcitet] = ACTIONS(4929), + [anon_sym_BSLASHcitep] = ACTIONS(4929), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteauthor] = ACTIONS(4929), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitetitle] = ACTIONS(4929), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteyear] = ACTIONS(4929), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitedate] = ACTIONS(4929), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteurl] = ACTIONS(4929), + [anon_sym_BSLASHfullcite] = ACTIONS(4929), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), + [anon_sym_BSLASHcitealt] = ACTIONS(4929), + [anon_sym_BSLASHcitealp] = ACTIONS(4929), + [anon_sym_BSLASHcitetext] = ACTIONS(4929), + [anon_sym_BSLASHparencite] = ACTIONS(4929), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHParencite] = ACTIONS(4929), + [anon_sym_BSLASHfootcite] = ACTIONS(4929), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), + [anon_sym_BSLASHtextcite] = ACTIONS(4929), + [anon_sym_BSLASHTextcite] = ACTIONS(4929), + [anon_sym_BSLASHsmartcite] = ACTIONS(4929), + [anon_sym_BSLASHSmartcite] = ACTIONS(4929), + [anon_sym_BSLASHsupercite] = ACTIONS(4929), + [anon_sym_BSLASHautocite] = ACTIONS(4929), + [anon_sym_BSLASHAutocite] = ACTIONS(4929), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHvolcite] = ACTIONS(4929), + [anon_sym_BSLASHVolcite] = ACTIONS(4929), + [anon_sym_BSLASHpvolcite] = ACTIONS(4929), + [anon_sym_BSLASHPvolcite] = ACTIONS(4929), + [anon_sym_BSLASHfvolcite] = ACTIONS(4929), + [anon_sym_BSLASHftvolcite] = ACTIONS(4929), + [anon_sym_BSLASHsvolcite] = ACTIONS(4929), + [anon_sym_BSLASHSvolcite] = ACTIONS(4929), + [anon_sym_BSLASHtvolcite] = ACTIONS(4929), + [anon_sym_BSLASHTvolcite] = ACTIONS(4929), + [anon_sym_BSLASHavolcite] = ACTIONS(4929), + [anon_sym_BSLASHAvolcite] = ACTIONS(4929), + [anon_sym_BSLASHnotecite] = ACTIONS(4929), + [anon_sym_BSLASHNotecite] = ACTIONS(4929), + [anon_sym_BSLASHpnotecite] = ACTIONS(4929), + [anon_sym_BSLASHPnotecite] = ACTIONS(4929), + [anon_sym_BSLASHfnotecite] = ACTIONS(4929), + [anon_sym_BSLASHlabel] = ACTIONS(4929), + [anon_sym_BSLASHref] = ACTIONS(4929), + [anon_sym_BSLASHeqref] = ACTIONS(4929), + [anon_sym_BSLASHvref] = ACTIONS(4929), + [anon_sym_BSLASHVref] = ACTIONS(4929), + [anon_sym_BSLASHautoref] = ACTIONS(4929), + [anon_sym_BSLASHpageref] = ACTIONS(4929), + [anon_sym_BSLASHcref] = ACTIONS(4929), + [anon_sym_BSLASHCref] = ACTIONS(4929), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnameCref] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHlabelcref] = ACTIONS(4929), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCrefrange] = ACTIONS(4929), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnewlabel] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), + [anon_sym_BSLASHdef] = ACTIONS(4929), + [anon_sym_BSLASHlet] = ACTIONS(4929), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), + [anon_sym_BSLASHgls] = ACTIONS(4929), + [anon_sym_BSLASHGls] = ACTIONS(4929), + [anon_sym_BSLASHGLS] = ACTIONS(4929), + [anon_sym_BSLASHglspl] = ACTIONS(4929), + [anon_sym_BSLASHGlspl] = ACTIONS(4929), + [anon_sym_BSLASHGLSpl] = ACTIONS(4929), + [anon_sym_BSLASHglsdisp] = ACTIONS(4929), + [anon_sym_BSLASHglslink] = ACTIONS(4929), + [anon_sym_BSLASHglstext] = ACTIONS(4929), + [anon_sym_BSLASHGlstext] = ACTIONS(4929), + [anon_sym_BSLASHGLStext] = ACTIONS(4929), + [anon_sym_BSLASHglsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), + [anon_sym_BSLASHglsplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSplural] = ACTIONS(4929), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHglsname] = ACTIONS(4929), + [anon_sym_BSLASHGlsname] = ACTIONS(4929), + [anon_sym_BSLASHGLSname] = ACTIONS(4929), + [anon_sym_BSLASHglssymbol] = ACTIONS(4929), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), + [anon_sym_BSLASHglsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), + [anon_sym_BSLASHglsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), + [anon_sym_BSLASHglsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), + [anon_sym_BSLASHglsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), + [anon_sym_BSLASHglsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), + [anon_sym_BSLASHnewacronym] = ACTIONS(4929), + [anon_sym_BSLASHacrshort] = ACTIONS(4929), + [anon_sym_BSLASHAcrshort] = ACTIONS(4929), + [anon_sym_BSLASHACRshort] = ACTIONS(4929), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), + [anon_sym_BSLASHacrlong] = ACTIONS(4929), + [anon_sym_BSLASHAcrlong] = ACTIONS(4929), + [anon_sym_BSLASHACRlong] = ACTIONS(4929), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), + [anon_sym_BSLASHacrfull] = ACTIONS(4929), + [anon_sym_BSLASHAcrfull] = ACTIONS(4929), + [anon_sym_BSLASHACRfull] = ACTIONS(4929), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), + [anon_sym_BSLASHacs] = ACTIONS(4929), + [anon_sym_BSLASHAcs] = ACTIONS(4929), + [anon_sym_BSLASHacsp] = ACTIONS(4929), + [anon_sym_BSLASHAcsp] = ACTIONS(4929), + [anon_sym_BSLASHacl] = ACTIONS(4929), + [anon_sym_BSLASHAcl] = ACTIONS(4929), + [anon_sym_BSLASHaclp] = ACTIONS(4929), + [anon_sym_BSLASHAclp] = ACTIONS(4929), + [anon_sym_BSLASHacf] = ACTIONS(4929), + [anon_sym_BSLASHAcf] = ACTIONS(4929), + [anon_sym_BSLASHacfp] = ACTIONS(4929), + [anon_sym_BSLASHAcfp] = ACTIONS(4929), + [anon_sym_BSLASHac] = ACTIONS(4929), + [anon_sym_BSLASHAc] = ACTIONS(4929), + [anon_sym_BSLASHacp] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), + [anon_sym_BSLASHcolor] = ACTIONS(4929), + [anon_sym_BSLASHcolorbox] = ACTIONS(4929), + [anon_sym_BSLASHtextcolor] = ACTIONS(4929), + [anon_sym_BSLASHpagecolor] = ACTIONS(4929), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), + [anon_sym_BSLASHtext] = ACTIONS(4929), + [anon_sym_BSLASHintertext] = ACTIONS(4929), + [anon_sym_shortintertext] = ACTIONS(4929), }, - [919] = { - [sym_command_name] = ACTIONS(5125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_BSLASHpart] = ACTIONS(5125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddpart] = ACTIONS(5125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHchapter] = ACTIONS(5125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddchap] = ACTIONS(5125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsection] = ACTIONS(5125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddsec] = ACTIONS(5125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHparagraph] = ACTIONS(5125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHitem] = ACTIONS(5125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASHbegin] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), + [685] = { + [sym_brack_group_text] = STATE(998), + [sym_command_name] = ACTIONS(4857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4857), + [anon_sym_LPAREN] = ACTIONS(4855), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_LBRACK] = ACTIONS(4931), + [anon_sym_RBRACK] = ACTIONS(4855), + [anon_sym_COMMA] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4855), + [anon_sym_BSLASHpart] = ACTIONS(4857), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddpart] = ACTIONS(4857), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4855), + [anon_sym_BSLASHchapter] = ACTIONS(4857), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddchap] = ACTIONS(4857), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsection] = ACTIONS(4857), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddsec] = ACTIONS(4857), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubsection] = ACTIONS(4857), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4857), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHparagraph] = ACTIONS(4857), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4857), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4855), + [anon_sym_BSLASHitem] = ACTIONS(4857), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4855), + [anon_sym_LBRACE] = ACTIONS(4855), + [sym_word] = ACTIONS(4857), + [sym_placeholder] = ACTIONS(4855), + [anon_sym_PLUS] = ACTIONS(4857), + [anon_sym_DASH] = ACTIONS(4857), + [anon_sym_STAR] = ACTIONS(4857), + [anon_sym_SLASH] = ACTIONS(4857), + [anon_sym_CARET] = ACTIONS(4857), + [anon_sym__] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_BANG] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_COLON] = ACTIONS(4857), + [anon_sym_SQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), + [anon_sym_BSLASHbegin] = ACTIONS(4857), + [anon_sym_BSLASHusepackage] = ACTIONS(4857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), + [anon_sym_BSLASHinclude] = ACTIONS(4857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), + [anon_sym_BSLASHinput] = ACTIONS(4857), + [anon_sym_BSLASHsubfile] = ACTIONS(4857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), + [anon_sym_BSLASHbibliography] = ACTIONS(4857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), + [anon_sym_BSLASHincludesvg] = ACTIONS(4857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), + [anon_sym_BSLASHimport] = ACTIONS(4857), + [anon_sym_BSLASHsubimport] = ACTIONS(4857), + [anon_sym_BSLASHinputfrom] = ACTIONS(4857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), + [anon_sym_BSLASHincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHcaption] = ACTIONS(4857), + [anon_sym_BSLASHcite] = ACTIONS(4857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCite] = ACTIONS(4857), + [anon_sym_BSLASHnocite] = ACTIONS(4857), + [anon_sym_BSLASHcitet] = ACTIONS(4857), + [anon_sym_BSLASHcitep] = ACTIONS(4857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteauthor] = ACTIONS(4857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitetitle] = ACTIONS(4857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteyear] = ACTIONS(4857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitedate] = ACTIONS(4857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteurl] = ACTIONS(4857), + [anon_sym_BSLASHfullcite] = ACTIONS(4857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), + [anon_sym_BSLASHcitealt] = ACTIONS(4857), + [anon_sym_BSLASHcitealp] = ACTIONS(4857), + [anon_sym_BSLASHcitetext] = ACTIONS(4857), + [anon_sym_BSLASHparencite] = ACTIONS(4857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHParencite] = ACTIONS(4857), + [anon_sym_BSLASHfootcite] = ACTIONS(4857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), + [anon_sym_BSLASHtextcite] = ACTIONS(4857), + [anon_sym_BSLASHTextcite] = ACTIONS(4857), + [anon_sym_BSLASHsmartcite] = ACTIONS(4857), + [anon_sym_BSLASHSmartcite] = ACTIONS(4857), + [anon_sym_BSLASHsupercite] = ACTIONS(4857), + [anon_sym_BSLASHautocite] = ACTIONS(4857), + [anon_sym_BSLASHAutocite] = ACTIONS(4857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHvolcite] = ACTIONS(4857), + [anon_sym_BSLASHVolcite] = ACTIONS(4857), + [anon_sym_BSLASHpvolcite] = ACTIONS(4857), + [anon_sym_BSLASHPvolcite] = ACTIONS(4857), + [anon_sym_BSLASHfvolcite] = ACTIONS(4857), + [anon_sym_BSLASHftvolcite] = ACTIONS(4857), + [anon_sym_BSLASHsvolcite] = ACTIONS(4857), + [anon_sym_BSLASHSvolcite] = ACTIONS(4857), + [anon_sym_BSLASHtvolcite] = ACTIONS(4857), + [anon_sym_BSLASHTvolcite] = ACTIONS(4857), + [anon_sym_BSLASHavolcite] = ACTIONS(4857), + [anon_sym_BSLASHAvolcite] = ACTIONS(4857), + [anon_sym_BSLASHnotecite] = ACTIONS(4857), + [anon_sym_BSLASHNotecite] = ACTIONS(4857), + [anon_sym_BSLASHpnotecite] = ACTIONS(4857), + [anon_sym_BSLASHPnotecite] = ACTIONS(4857), + [anon_sym_BSLASHfnotecite] = ACTIONS(4857), + [anon_sym_BSLASHlabel] = ACTIONS(4857), + [anon_sym_BSLASHref] = ACTIONS(4857), + [anon_sym_BSLASHeqref] = ACTIONS(4857), + [anon_sym_BSLASHvref] = ACTIONS(4857), + [anon_sym_BSLASHVref] = ACTIONS(4857), + [anon_sym_BSLASHautoref] = ACTIONS(4857), + [anon_sym_BSLASHpageref] = ACTIONS(4857), + [anon_sym_BSLASHcref] = ACTIONS(4857), + [anon_sym_BSLASHCref] = ACTIONS(4857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnameCref] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHlabelcref] = ACTIONS(4857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCrefrange] = ACTIONS(4857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnewlabel] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), + [anon_sym_BSLASHdef] = ACTIONS(4857), + [anon_sym_BSLASHlet] = ACTIONS(4857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), + [anon_sym_BSLASHgls] = ACTIONS(4857), + [anon_sym_BSLASHGls] = ACTIONS(4857), + [anon_sym_BSLASHGLS] = ACTIONS(4857), + [anon_sym_BSLASHglspl] = ACTIONS(4857), + [anon_sym_BSLASHGlspl] = ACTIONS(4857), + [anon_sym_BSLASHGLSpl] = ACTIONS(4857), + [anon_sym_BSLASHglsdisp] = ACTIONS(4857), + [anon_sym_BSLASHglslink] = ACTIONS(4857), + [anon_sym_BSLASHglstext] = ACTIONS(4857), + [anon_sym_BSLASHGlstext] = ACTIONS(4857), + [anon_sym_BSLASHGLStext] = ACTIONS(4857), + [anon_sym_BSLASHglsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), + [anon_sym_BSLASHglsplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSplural] = ACTIONS(4857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHglsname] = ACTIONS(4857), + [anon_sym_BSLASHGlsname] = ACTIONS(4857), + [anon_sym_BSLASHGLSname] = ACTIONS(4857), + [anon_sym_BSLASHglssymbol] = ACTIONS(4857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), + [anon_sym_BSLASHglsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), + [anon_sym_BSLASHglsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), + [anon_sym_BSLASHglsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), + [anon_sym_BSLASHglsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), + [anon_sym_BSLASHglsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), + [anon_sym_BSLASHnewacronym] = ACTIONS(4857), + [anon_sym_BSLASHacrshort] = ACTIONS(4857), + [anon_sym_BSLASHAcrshort] = ACTIONS(4857), + [anon_sym_BSLASHACRshort] = ACTIONS(4857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), + [anon_sym_BSLASHacrlong] = ACTIONS(4857), + [anon_sym_BSLASHAcrlong] = ACTIONS(4857), + [anon_sym_BSLASHACRlong] = ACTIONS(4857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), + [anon_sym_BSLASHacrfull] = ACTIONS(4857), + [anon_sym_BSLASHAcrfull] = ACTIONS(4857), + [anon_sym_BSLASHACRfull] = ACTIONS(4857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), + [anon_sym_BSLASHacs] = ACTIONS(4857), + [anon_sym_BSLASHAcs] = ACTIONS(4857), + [anon_sym_BSLASHacsp] = ACTIONS(4857), + [anon_sym_BSLASHAcsp] = ACTIONS(4857), + [anon_sym_BSLASHacl] = ACTIONS(4857), + [anon_sym_BSLASHAcl] = ACTIONS(4857), + [anon_sym_BSLASHaclp] = ACTIONS(4857), + [anon_sym_BSLASHAclp] = ACTIONS(4857), + [anon_sym_BSLASHacf] = ACTIONS(4857), + [anon_sym_BSLASHAcf] = ACTIONS(4857), + [anon_sym_BSLASHacfp] = ACTIONS(4857), + [anon_sym_BSLASHAcfp] = ACTIONS(4857), + [anon_sym_BSLASHac] = ACTIONS(4857), + [anon_sym_BSLASHAc] = ACTIONS(4857), + [anon_sym_BSLASHacp] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), + [anon_sym_BSLASHcolor] = ACTIONS(4857), + [anon_sym_BSLASHcolorbox] = ACTIONS(4857), + [anon_sym_BSLASHtextcolor] = ACTIONS(4857), + [anon_sym_BSLASHpagecolor] = ACTIONS(4857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), + [anon_sym_BSLASHtext] = ACTIONS(4857), + [anon_sym_BSLASHintertext] = ACTIONS(4857), + [anon_sym_shortintertext] = ACTIONS(4857), }, - [920] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_BSLASHpart] = ACTIONS(5175), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddpart] = ACTIONS(5175), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHchapter] = ACTIONS(5175), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddchap] = ACTIONS(5175), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsection] = ACTIONS(5175), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddsec] = ACTIONS(5175), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHparagraph] = ACTIONS(5175), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHitem] = ACTIONS(5175), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASHbegin] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), + [686] = { + [ts_builtin_sym_end] = ACTIONS(4933), + [sym_command_name] = ACTIONS(4935), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4935), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_RPAREN] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_RBRACK] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_EQ] = ACTIONS(4933), + [anon_sym_BSLASHpart] = ACTIONS(4935), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddpart] = ACTIONS(4935), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4933), + [anon_sym_BSLASHchapter] = ACTIONS(4935), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddchap] = ACTIONS(4935), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsection] = ACTIONS(4935), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddsec] = ACTIONS(4935), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubsection] = ACTIONS(4935), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4935), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHparagraph] = ACTIONS(4935), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4935), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4933), + [anon_sym_BSLASHitem] = ACTIONS(4935), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4933), + [anon_sym_RBRACE] = ACTIONS(4933), + [sym_word] = ACTIONS(4935), + [sym_placeholder] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4935), + [anon_sym_DASH] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4935), + [anon_sym_SLASH] = ACTIONS(4935), + [anon_sym_CARET] = ACTIONS(4935), + [anon_sym__] = ACTIONS(4935), + [anon_sym_LT] = ACTIONS(4935), + [anon_sym_GT] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4935), + [anon_sym_PIPE] = ACTIONS(4935), + [anon_sym_COLON] = ACTIONS(4935), + [anon_sym_SQUOTE] = ACTIONS(4935), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4933), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4933), + [anon_sym_DOLLAR] = ACTIONS(4935), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4933), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4933), + [anon_sym_BSLASHbegin] = ACTIONS(4935), + [anon_sym_BSLASHusepackage] = ACTIONS(4935), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4935), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4935), + [anon_sym_BSLASHinclude] = ACTIONS(4935), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4935), + [anon_sym_BSLASHinput] = ACTIONS(4935), + [anon_sym_BSLASHsubfile] = ACTIONS(4935), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4935), + [anon_sym_BSLASHbibliography] = ACTIONS(4935), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4935), + [anon_sym_BSLASHincludesvg] = ACTIONS(4935), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4935), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4935), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4935), + [anon_sym_BSLASHimport] = ACTIONS(4935), + [anon_sym_BSLASHsubimport] = ACTIONS(4935), + [anon_sym_BSLASHinputfrom] = ACTIONS(4935), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4935), + [anon_sym_BSLASHincludefrom] = ACTIONS(4935), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4935), + [anon_sym_BSLASHcaption] = ACTIONS(4935), + [anon_sym_BSLASHcite] = ACTIONS(4935), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCite] = ACTIONS(4935), + [anon_sym_BSLASHnocite] = ACTIONS(4935), + [anon_sym_BSLASHcitet] = ACTIONS(4935), + [anon_sym_BSLASHcitep] = ACTIONS(4935), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteauthor] = ACTIONS(4935), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4935), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitetitle] = ACTIONS(4935), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteyear] = ACTIONS(4935), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitedate] = ACTIONS(4935), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteurl] = ACTIONS(4935), + [anon_sym_BSLASHfullcite] = ACTIONS(4935), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4935), + [anon_sym_BSLASHcitealt] = ACTIONS(4935), + [anon_sym_BSLASHcitealp] = ACTIONS(4935), + [anon_sym_BSLASHcitetext] = ACTIONS(4935), + [anon_sym_BSLASHparencite] = ACTIONS(4935), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHParencite] = ACTIONS(4935), + [anon_sym_BSLASHfootcite] = ACTIONS(4935), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4935), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4935), + [anon_sym_BSLASHtextcite] = ACTIONS(4935), + [anon_sym_BSLASHTextcite] = ACTIONS(4935), + [anon_sym_BSLASHsmartcite] = ACTIONS(4935), + [anon_sym_BSLASHSmartcite] = ACTIONS(4935), + [anon_sym_BSLASHsupercite] = ACTIONS(4935), + [anon_sym_BSLASHautocite] = ACTIONS(4935), + [anon_sym_BSLASHAutocite] = ACTIONS(4935), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHvolcite] = ACTIONS(4935), + [anon_sym_BSLASHVolcite] = ACTIONS(4935), + [anon_sym_BSLASHpvolcite] = ACTIONS(4935), + [anon_sym_BSLASHPvolcite] = ACTIONS(4935), + [anon_sym_BSLASHfvolcite] = ACTIONS(4935), + [anon_sym_BSLASHftvolcite] = ACTIONS(4935), + [anon_sym_BSLASHsvolcite] = ACTIONS(4935), + [anon_sym_BSLASHSvolcite] = ACTIONS(4935), + [anon_sym_BSLASHtvolcite] = ACTIONS(4935), + [anon_sym_BSLASHTvolcite] = ACTIONS(4935), + [anon_sym_BSLASHavolcite] = ACTIONS(4935), + [anon_sym_BSLASHAvolcite] = ACTIONS(4935), + [anon_sym_BSLASHnotecite] = ACTIONS(4935), + [anon_sym_BSLASHNotecite] = ACTIONS(4935), + [anon_sym_BSLASHpnotecite] = ACTIONS(4935), + [anon_sym_BSLASHPnotecite] = ACTIONS(4935), + [anon_sym_BSLASHfnotecite] = ACTIONS(4935), + [anon_sym_BSLASHlabel] = ACTIONS(4935), + [anon_sym_BSLASHref] = ACTIONS(4935), + [anon_sym_BSLASHeqref] = ACTIONS(4935), + [anon_sym_BSLASHvref] = ACTIONS(4935), + [anon_sym_BSLASHVref] = ACTIONS(4935), + [anon_sym_BSLASHautoref] = ACTIONS(4935), + [anon_sym_BSLASHpageref] = ACTIONS(4935), + [anon_sym_BSLASHcref] = ACTIONS(4935), + [anon_sym_BSLASHCref] = ACTIONS(4935), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4933), + [anon_sym_BSLASHnamecref] = ACTIONS(4935), + [anon_sym_BSLASHnameCref] = ACTIONS(4935), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4935), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4935), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4935), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4935), + [anon_sym_BSLASHlabelcref] = ACTIONS(4935), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4935), + [anon_sym_BSLASHcrefrange] = ACTIONS(4935), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCrefrange] = ACTIONS(4935), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4933), + [anon_sym_BSLASHnewlabel] = ACTIONS(4935), + [anon_sym_BSLASHnewcommand] = ACTIONS(4935), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4935), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4935), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4935), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4933), + [anon_sym_BSLASHdef] = ACTIONS(4935), + [anon_sym_BSLASHlet] = ACTIONS(4935), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4935), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4935), + [anon_sym_BSLASHgls] = ACTIONS(4935), + [anon_sym_BSLASHGls] = ACTIONS(4935), + [anon_sym_BSLASHGLS] = ACTIONS(4935), + [anon_sym_BSLASHglspl] = ACTIONS(4935), + [anon_sym_BSLASHGlspl] = ACTIONS(4935), + [anon_sym_BSLASHGLSpl] = ACTIONS(4935), + [anon_sym_BSLASHglsdisp] = ACTIONS(4935), + [anon_sym_BSLASHglslink] = ACTIONS(4935), + [anon_sym_BSLASHglstext] = ACTIONS(4935), + [anon_sym_BSLASHGlstext] = ACTIONS(4935), + [anon_sym_BSLASHGLStext] = ACTIONS(4935), + [anon_sym_BSLASHglsfirst] = ACTIONS(4935), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4935), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4935), + [anon_sym_BSLASHglsplural] = ACTIONS(4935), + [anon_sym_BSLASHGlsplural] = ACTIONS(4935), + [anon_sym_BSLASHGLSplural] = ACTIONS(4935), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHglsname] = ACTIONS(4935), + [anon_sym_BSLASHGlsname] = ACTIONS(4935), + [anon_sym_BSLASHGLSname] = ACTIONS(4935), + [anon_sym_BSLASHglssymbol] = ACTIONS(4935), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4935), + [anon_sym_BSLASHglsdesc] = ACTIONS(4935), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4935), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4935), + [anon_sym_BSLASHglsuseri] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4935), + [anon_sym_BSLASHglsuserii] = ACTIONS(4935), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4935), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4935), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4935), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4935), + [anon_sym_BSLASHglsuserv] = ACTIONS(4935), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4935), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4935), + [anon_sym_BSLASHglsuservi] = ACTIONS(4935), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4935), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4935), + [anon_sym_BSLASHnewacronym] = ACTIONS(4935), + [anon_sym_BSLASHacrshort] = ACTIONS(4935), + [anon_sym_BSLASHAcrshort] = ACTIONS(4935), + [anon_sym_BSLASHACRshort] = ACTIONS(4935), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4935), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4935), + [anon_sym_BSLASHacrlong] = ACTIONS(4935), + [anon_sym_BSLASHAcrlong] = ACTIONS(4935), + [anon_sym_BSLASHACRlong] = ACTIONS(4935), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4935), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4935), + [anon_sym_BSLASHacrfull] = ACTIONS(4935), + [anon_sym_BSLASHAcrfull] = ACTIONS(4935), + [anon_sym_BSLASHACRfull] = ACTIONS(4935), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4935), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4935), + [anon_sym_BSLASHacs] = ACTIONS(4935), + [anon_sym_BSLASHAcs] = ACTIONS(4935), + [anon_sym_BSLASHacsp] = ACTIONS(4935), + [anon_sym_BSLASHAcsp] = ACTIONS(4935), + [anon_sym_BSLASHacl] = ACTIONS(4935), + [anon_sym_BSLASHAcl] = ACTIONS(4935), + [anon_sym_BSLASHaclp] = ACTIONS(4935), + [anon_sym_BSLASHAclp] = ACTIONS(4935), + [anon_sym_BSLASHacf] = ACTIONS(4935), + [anon_sym_BSLASHAcf] = ACTIONS(4935), + [anon_sym_BSLASHacfp] = ACTIONS(4935), + [anon_sym_BSLASHAcfp] = ACTIONS(4935), + [anon_sym_BSLASHac] = ACTIONS(4935), + [anon_sym_BSLASHAc] = ACTIONS(4935), + [anon_sym_BSLASHacp] = ACTIONS(4935), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4935), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4935), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4935), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4935), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4935), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4935), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4935), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4935), + [anon_sym_BSLASHcolor] = ACTIONS(4935), + [anon_sym_BSLASHcolorbox] = ACTIONS(4935), + [anon_sym_BSLASHtextcolor] = ACTIONS(4935), + [anon_sym_BSLASHpagecolor] = ACTIONS(4935), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4935), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), + [anon_sym_BSLASHtext] = ACTIONS(4935), + [anon_sym_BSLASHintertext] = ACTIONS(4935), + [anon_sym_shortintertext] = ACTIONS(4935), }, - [921] = { - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_BSLASHpart] = ACTIONS(5121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddpart] = ACTIONS(5121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHchapter] = ACTIONS(5121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddchap] = ACTIONS(5121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsection] = ACTIONS(5121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddsec] = ACTIONS(5121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHparagraph] = ACTIONS(5121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHitem] = ACTIONS(5121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASHbegin] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), + [687] = { + [sym_brack_group_text] = STATE(1067), + [sym_command_name] = ACTIONS(4857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4857), + [anon_sym_LPAREN] = ACTIONS(4855), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_LBRACK] = ACTIONS(4893), + [anon_sym_RBRACK] = ACTIONS(4855), + [anon_sym_COMMA] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4855), + [anon_sym_BSLASHpart] = ACTIONS(4857), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddpart] = ACTIONS(4857), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4855), + [anon_sym_BSLASHchapter] = ACTIONS(4857), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddchap] = ACTIONS(4857), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsection] = ACTIONS(4857), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddsec] = ACTIONS(4857), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubsection] = ACTIONS(4857), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4857), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHparagraph] = ACTIONS(4857), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4857), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4855), + [anon_sym_BSLASHitem] = ACTIONS(4857), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4855), + [anon_sym_LBRACE] = ACTIONS(4855), + [sym_word] = ACTIONS(4857), + [sym_placeholder] = ACTIONS(4855), + [anon_sym_PLUS] = ACTIONS(4857), + [anon_sym_DASH] = ACTIONS(4857), + [anon_sym_STAR] = ACTIONS(4857), + [anon_sym_SLASH] = ACTIONS(4857), + [anon_sym_CARET] = ACTIONS(4857), + [anon_sym__] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_BANG] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_COLON] = ACTIONS(4857), + [anon_sym_SQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4855), + [anon_sym_BSLASHbegin] = ACTIONS(4857), + [anon_sym_BSLASHusepackage] = ACTIONS(4857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), + [anon_sym_BSLASHinclude] = ACTIONS(4857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), + [anon_sym_BSLASHinput] = ACTIONS(4857), + [anon_sym_BSLASHsubfile] = ACTIONS(4857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), + [anon_sym_BSLASHbibliography] = ACTIONS(4857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), + [anon_sym_BSLASHincludesvg] = ACTIONS(4857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), + [anon_sym_BSLASHimport] = ACTIONS(4857), + [anon_sym_BSLASHsubimport] = ACTIONS(4857), + [anon_sym_BSLASHinputfrom] = ACTIONS(4857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), + [anon_sym_BSLASHincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHcaption] = ACTIONS(4857), + [anon_sym_BSLASHcite] = ACTIONS(4857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCite] = ACTIONS(4857), + [anon_sym_BSLASHnocite] = ACTIONS(4857), + [anon_sym_BSLASHcitet] = ACTIONS(4857), + [anon_sym_BSLASHcitep] = ACTIONS(4857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteauthor] = ACTIONS(4857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitetitle] = ACTIONS(4857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteyear] = ACTIONS(4857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitedate] = ACTIONS(4857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteurl] = ACTIONS(4857), + [anon_sym_BSLASHfullcite] = ACTIONS(4857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), + [anon_sym_BSLASHcitealt] = ACTIONS(4857), + [anon_sym_BSLASHcitealp] = ACTIONS(4857), + [anon_sym_BSLASHcitetext] = ACTIONS(4857), + [anon_sym_BSLASHparencite] = ACTIONS(4857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHParencite] = ACTIONS(4857), + [anon_sym_BSLASHfootcite] = ACTIONS(4857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), + [anon_sym_BSLASHtextcite] = ACTIONS(4857), + [anon_sym_BSLASHTextcite] = ACTIONS(4857), + [anon_sym_BSLASHsmartcite] = ACTIONS(4857), + [anon_sym_BSLASHSmartcite] = ACTIONS(4857), + [anon_sym_BSLASHsupercite] = ACTIONS(4857), + [anon_sym_BSLASHautocite] = ACTIONS(4857), + [anon_sym_BSLASHAutocite] = ACTIONS(4857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHvolcite] = ACTIONS(4857), + [anon_sym_BSLASHVolcite] = ACTIONS(4857), + [anon_sym_BSLASHpvolcite] = ACTIONS(4857), + [anon_sym_BSLASHPvolcite] = ACTIONS(4857), + [anon_sym_BSLASHfvolcite] = ACTIONS(4857), + [anon_sym_BSLASHftvolcite] = ACTIONS(4857), + [anon_sym_BSLASHsvolcite] = ACTIONS(4857), + [anon_sym_BSLASHSvolcite] = ACTIONS(4857), + [anon_sym_BSLASHtvolcite] = ACTIONS(4857), + [anon_sym_BSLASHTvolcite] = ACTIONS(4857), + [anon_sym_BSLASHavolcite] = ACTIONS(4857), + [anon_sym_BSLASHAvolcite] = ACTIONS(4857), + [anon_sym_BSLASHnotecite] = ACTIONS(4857), + [anon_sym_BSLASHNotecite] = ACTIONS(4857), + [anon_sym_BSLASHpnotecite] = ACTIONS(4857), + [anon_sym_BSLASHPnotecite] = ACTIONS(4857), + [anon_sym_BSLASHfnotecite] = ACTIONS(4857), + [anon_sym_BSLASHlabel] = ACTIONS(4857), + [anon_sym_BSLASHref] = ACTIONS(4857), + [anon_sym_BSLASHeqref] = ACTIONS(4857), + [anon_sym_BSLASHvref] = ACTIONS(4857), + [anon_sym_BSLASHVref] = ACTIONS(4857), + [anon_sym_BSLASHautoref] = ACTIONS(4857), + [anon_sym_BSLASHpageref] = ACTIONS(4857), + [anon_sym_BSLASHcref] = ACTIONS(4857), + [anon_sym_BSLASHCref] = ACTIONS(4857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnameCref] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHlabelcref] = ACTIONS(4857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCrefrange] = ACTIONS(4857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnewlabel] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), + [anon_sym_BSLASHdef] = ACTIONS(4857), + [anon_sym_BSLASHlet] = ACTIONS(4857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), + [anon_sym_BSLASHgls] = ACTIONS(4857), + [anon_sym_BSLASHGls] = ACTIONS(4857), + [anon_sym_BSLASHGLS] = ACTIONS(4857), + [anon_sym_BSLASHglspl] = ACTIONS(4857), + [anon_sym_BSLASHGlspl] = ACTIONS(4857), + [anon_sym_BSLASHGLSpl] = ACTIONS(4857), + [anon_sym_BSLASHglsdisp] = ACTIONS(4857), + [anon_sym_BSLASHglslink] = ACTIONS(4857), + [anon_sym_BSLASHglstext] = ACTIONS(4857), + [anon_sym_BSLASHGlstext] = ACTIONS(4857), + [anon_sym_BSLASHGLStext] = ACTIONS(4857), + [anon_sym_BSLASHglsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), + [anon_sym_BSLASHglsplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSplural] = ACTIONS(4857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHglsname] = ACTIONS(4857), + [anon_sym_BSLASHGlsname] = ACTIONS(4857), + [anon_sym_BSLASHGLSname] = ACTIONS(4857), + [anon_sym_BSLASHglssymbol] = ACTIONS(4857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), + [anon_sym_BSLASHglsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), + [anon_sym_BSLASHglsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), + [anon_sym_BSLASHglsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), + [anon_sym_BSLASHglsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), + [anon_sym_BSLASHglsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), + [anon_sym_BSLASHnewacronym] = ACTIONS(4857), + [anon_sym_BSLASHacrshort] = ACTIONS(4857), + [anon_sym_BSLASHAcrshort] = ACTIONS(4857), + [anon_sym_BSLASHACRshort] = ACTIONS(4857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), + [anon_sym_BSLASHacrlong] = ACTIONS(4857), + [anon_sym_BSLASHAcrlong] = ACTIONS(4857), + [anon_sym_BSLASHACRlong] = ACTIONS(4857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), + [anon_sym_BSLASHacrfull] = ACTIONS(4857), + [anon_sym_BSLASHAcrfull] = ACTIONS(4857), + [anon_sym_BSLASHACRfull] = ACTIONS(4857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), + [anon_sym_BSLASHacs] = ACTIONS(4857), + [anon_sym_BSLASHAcs] = ACTIONS(4857), + [anon_sym_BSLASHacsp] = ACTIONS(4857), + [anon_sym_BSLASHAcsp] = ACTIONS(4857), + [anon_sym_BSLASHacl] = ACTIONS(4857), + [anon_sym_BSLASHAcl] = ACTIONS(4857), + [anon_sym_BSLASHaclp] = ACTIONS(4857), + [anon_sym_BSLASHAclp] = ACTIONS(4857), + [anon_sym_BSLASHacf] = ACTIONS(4857), + [anon_sym_BSLASHAcf] = ACTIONS(4857), + [anon_sym_BSLASHacfp] = ACTIONS(4857), + [anon_sym_BSLASHAcfp] = ACTIONS(4857), + [anon_sym_BSLASHac] = ACTIONS(4857), + [anon_sym_BSLASHAc] = ACTIONS(4857), + [anon_sym_BSLASHacp] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), + [anon_sym_BSLASHcolor] = ACTIONS(4857), + [anon_sym_BSLASHcolorbox] = ACTIONS(4857), + [anon_sym_BSLASHtextcolor] = ACTIONS(4857), + [anon_sym_BSLASHpagecolor] = ACTIONS(4857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), + [anon_sym_BSLASHtext] = ACTIONS(4857), + [anon_sym_BSLASHintertext] = ACTIONS(4857), + [anon_sym_shortintertext] = ACTIONS(4857), }, - [922] = { - [sym_command_name] = ACTIONS(5101), + [688] = { + [ts_builtin_sym_end] = ACTIONS(4937), + [sym_command_name] = ACTIONS(4939), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4937), + [anon_sym_RPAREN] = ACTIONS(4937), + [anon_sym_LBRACK] = ACTIONS(4937), + [anon_sym_RBRACK] = ACTIONS(4937), + [anon_sym_COMMA] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_BSLASHpart] = ACTIONS(4939), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddpart] = ACTIONS(4939), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4937), + [anon_sym_BSLASHchapter] = ACTIONS(4939), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddchap] = ACTIONS(4939), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsection] = ACTIONS(4939), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddsec] = ACTIONS(4939), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubsection] = ACTIONS(4939), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4939), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHparagraph] = ACTIONS(4939), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4939), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4937), + [anon_sym_BSLASHitem] = ACTIONS(4939), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4937), + [anon_sym_RBRACE] = ACTIONS(4937), + [sym_word] = ACTIONS(4939), + [sym_placeholder] = ACTIONS(4937), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_SLASH] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(4939), + [anon_sym__] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4939), + [anon_sym_GT] = ACTIONS(4939), + [anon_sym_BANG] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4939), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_SQUOTE] = ACTIONS(4939), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), + [anon_sym_DOLLAR] = ACTIONS(4939), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), + [anon_sym_BSLASHbegin] = ACTIONS(4939), + [anon_sym_BSLASHusepackage] = ACTIONS(4939), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), + [anon_sym_BSLASHinclude] = ACTIONS(4939), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), + [anon_sym_BSLASHinput] = ACTIONS(4939), + [anon_sym_BSLASHsubfile] = ACTIONS(4939), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), + [anon_sym_BSLASHbibliography] = ACTIONS(4939), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), + [anon_sym_BSLASHincludesvg] = ACTIONS(4939), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), + [anon_sym_BSLASHimport] = ACTIONS(4939), + [anon_sym_BSLASHsubimport] = ACTIONS(4939), + [anon_sym_BSLASHinputfrom] = ACTIONS(4939), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), + [anon_sym_BSLASHincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHcaption] = ACTIONS(4939), + [anon_sym_BSLASHcite] = ACTIONS(4939), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCite] = ACTIONS(4939), + [anon_sym_BSLASHnocite] = ACTIONS(4939), + [anon_sym_BSLASHcitet] = ACTIONS(4939), + [anon_sym_BSLASHcitep] = ACTIONS(4939), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteauthor] = ACTIONS(4939), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitetitle] = ACTIONS(4939), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteyear] = ACTIONS(4939), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitedate] = ACTIONS(4939), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteurl] = ACTIONS(4939), + [anon_sym_BSLASHfullcite] = ACTIONS(4939), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), + [anon_sym_BSLASHcitealt] = ACTIONS(4939), + [anon_sym_BSLASHcitealp] = ACTIONS(4939), + [anon_sym_BSLASHcitetext] = ACTIONS(4939), + [anon_sym_BSLASHparencite] = ACTIONS(4939), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHParencite] = ACTIONS(4939), + [anon_sym_BSLASHfootcite] = ACTIONS(4939), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), + [anon_sym_BSLASHtextcite] = ACTIONS(4939), + [anon_sym_BSLASHTextcite] = ACTIONS(4939), + [anon_sym_BSLASHsmartcite] = ACTIONS(4939), + [anon_sym_BSLASHSmartcite] = ACTIONS(4939), + [anon_sym_BSLASHsupercite] = ACTIONS(4939), + [anon_sym_BSLASHautocite] = ACTIONS(4939), + [anon_sym_BSLASHAutocite] = ACTIONS(4939), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHvolcite] = ACTIONS(4939), + [anon_sym_BSLASHVolcite] = ACTIONS(4939), + [anon_sym_BSLASHpvolcite] = ACTIONS(4939), + [anon_sym_BSLASHPvolcite] = ACTIONS(4939), + [anon_sym_BSLASHfvolcite] = ACTIONS(4939), + [anon_sym_BSLASHftvolcite] = ACTIONS(4939), + [anon_sym_BSLASHsvolcite] = ACTIONS(4939), + [anon_sym_BSLASHSvolcite] = ACTIONS(4939), + [anon_sym_BSLASHtvolcite] = ACTIONS(4939), + [anon_sym_BSLASHTvolcite] = ACTIONS(4939), + [anon_sym_BSLASHavolcite] = ACTIONS(4939), + [anon_sym_BSLASHAvolcite] = ACTIONS(4939), + [anon_sym_BSLASHnotecite] = ACTIONS(4939), + [anon_sym_BSLASHNotecite] = ACTIONS(4939), + [anon_sym_BSLASHpnotecite] = ACTIONS(4939), + [anon_sym_BSLASHPnotecite] = ACTIONS(4939), + [anon_sym_BSLASHfnotecite] = ACTIONS(4939), + [anon_sym_BSLASHlabel] = ACTIONS(4939), + [anon_sym_BSLASHref] = ACTIONS(4939), + [anon_sym_BSLASHeqref] = ACTIONS(4939), + [anon_sym_BSLASHvref] = ACTIONS(4939), + [anon_sym_BSLASHVref] = ACTIONS(4939), + [anon_sym_BSLASHautoref] = ACTIONS(4939), + [anon_sym_BSLASHpageref] = ACTIONS(4939), + [anon_sym_BSLASHcref] = ACTIONS(4939), + [anon_sym_BSLASHCref] = ACTIONS(4939), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnameCref] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHlabelcref] = ACTIONS(4939), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCrefrange] = ACTIONS(4939), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnewlabel] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), + [anon_sym_BSLASHdef] = ACTIONS(4939), + [anon_sym_BSLASHlet] = ACTIONS(4939), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), + [anon_sym_BSLASHgls] = ACTIONS(4939), + [anon_sym_BSLASHGls] = ACTIONS(4939), + [anon_sym_BSLASHGLS] = ACTIONS(4939), + [anon_sym_BSLASHglspl] = ACTIONS(4939), + [anon_sym_BSLASHGlspl] = ACTIONS(4939), + [anon_sym_BSLASHGLSpl] = ACTIONS(4939), + [anon_sym_BSLASHglsdisp] = ACTIONS(4939), + [anon_sym_BSLASHglslink] = ACTIONS(4939), + [anon_sym_BSLASHglstext] = ACTIONS(4939), + [anon_sym_BSLASHGlstext] = ACTIONS(4939), + [anon_sym_BSLASHGLStext] = ACTIONS(4939), + [anon_sym_BSLASHglsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), + [anon_sym_BSLASHglsplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSplural] = ACTIONS(4939), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHglsname] = ACTIONS(4939), + [anon_sym_BSLASHGlsname] = ACTIONS(4939), + [anon_sym_BSLASHGLSname] = ACTIONS(4939), + [anon_sym_BSLASHglssymbol] = ACTIONS(4939), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), + [anon_sym_BSLASHglsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), + [anon_sym_BSLASHglsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), + [anon_sym_BSLASHglsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), + [anon_sym_BSLASHglsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), + [anon_sym_BSLASHglsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), + [anon_sym_BSLASHnewacronym] = ACTIONS(4939), + [anon_sym_BSLASHacrshort] = ACTIONS(4939), + [anon_sym_BSLASHAcrshort] = ACTIONS(4939), + [anon_sym_BSLASHACRshort] = ACTIONS(4939), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), + [anon_sym_BSLASHacrlong] = ACTIONS(4939), + [anon_sym_BSLASHAcrlong] = ACTIONS(4939), + [anon_sym_BSLASHACRlong] = ACTIONS(4939), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), + [anon_sym_BSLASHacrfull] = ACTIONS(4939), + [anon_sym_BSLASHAcrfull] = ACTIONS(4939), + [anon_sym_BSLASHACRfull] = ACTIONS(4939), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), + [anon_sym_BSLASHacs] = ACTIONS(4939), + [anon_sym_BSLASHAcs] = ACTIONS(4939), + [anon_sym_BSLASHacsp] = ACTIONS(4939), + [anon_sym_BSLASHAcsp] = ACTIONS(4939), + [anon_sym_BSLASHacl] = ACTIONS(4939), + [anon_sym_BSLASHAcl] = ACTIONS(4939), + [anon_sym_BSLASHaclp] = ACTIONS(4939), + [anon_sym_BSLASHAclp] = ACTIONS(4939), + [anon_sym_BSLASHacf] = ACTIONS(4939), + [anon_sym_BSLASHAcf] = ACTIONS(4939), + [anon_sym_BSLASHacfp] = ACTIONS(4939), + [anon_sym_BSLASHAcfp] = ACTIONS(4939), + [anon_sym_BSLASHac] = ACTIONS(4939), + [anon_sym_BSLASHAc] = ACTIONS(4939), + [anon_sym_BSLASHacp] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), + [anon_sym_BSLASHcolor] = ACTIONS(4939), + [anon_sym_BSLASHcolorbox] = ACTIONS(4939), + [anon_sym_BSLASHtextcolor] = ACTIONS(4939), + [anon_sym_BSLASHpagecolor] = ACTIONS(4939), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), + [anon_sym_BSLASHtext] = ACTIONS(4939), + [anon_sym_BSLASHintertext] = ACTIONS(4939), + [anon_sym_shortintertext] = ACTIONS(4939), + }, + [689] = { + [ts_builtin_sym_end] = ACTIONS(4941), + [sym_command_name] = ACTIONS(4943), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4941), + [anon_sym_RPAREN] = ACTIONS(4941), + [anon_sym_LBRACK] = ACTIONS(4941), + [anon_sym_RBRACK] = ACTIONS(4941), + [anon_sym_COMMA] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4941), + [anon_sym_BSLASHpart] = ACTIONS(4943), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddpart] = ACTIONS(4943), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4941), + [anon_sym_BSLASHchapter] = ACTIONS(4943), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddchap] = ACTIONS(4943), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsection] = ACTIONS(4943), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddsec] = ACTIONS(4943), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubsection] = ACTIONS(4943), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4943), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHparagraph] = ACTIONS(4943), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4943), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4941), + [anon_sym_BSLASHitem] = ACTIONS(4943), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4941), + [anon_sym_LBRACE] = ACTIONS(4941), + [anon_sym_RBRACE] = ACTIONS(4941), + [sym_word] = ACTIONS(4943), + [sym_placeholder] = ACTIONS(4941), + [anon_sym_PLUS] = ACTIONS(4943), + [anon_sym_DASH] = ACTIONS(4943), + [anon_sym_STAR] = ACTIONS(4943), + [anon_sym_SLASH] = ACTIONS(4943), + [anon_sym_CARET] = ACTIONS(4943), + [anon_sym__] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4943), + [anon_sym_GT] = ACTIONS(4943), + [anon_sym_BANG] = ACTIONS(4943), + [anon_sym_PIPE] = ACTIONS(4943), + [anon_sym_COLON] = ACTIONS(4943), + [anon_sym_SQUOTE] = ACTIONS(4943), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4941), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4941), + [anon_sym_DOLLAR] = ACTIONS(4943), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4941), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4941), + [anon_sym_BSLASHbegin] = ACTIONS(4943), + [anon_sym_BSLASHusepackage] = ACTIONS(4943), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4943), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4943), + [anon_sym_BSLASHinclude] = ACTIONS(4943), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4943), + [anon_sym_BSLASHinput] = ACTIONS(4943), + [anon_sym_BSLASHsubfile] = ACTIONS(4943), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), + [anon_sym_BSLASHbibliography] = ACTIONS(4943), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4943), + [anon_sym_BSLASHincludesvg] = ACTIONS(4943), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4943), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4943), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4943), + [anon_sym_BSLASHimport] = ACTIONS(4943), + [anon_sym_BSLASHsubimport] = ACTIONS(4943), + [anon_sym_BSLASHinputfrom] = ACTIONS(4943), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4943), + [anon_sym_BSLASHincludefrom] = ACTIONS(4943), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4943), + [anon_sym_BSLASHcaption] = ACTIONS(4943), + [anon_sym_BSLASHcite] = ACTIONS(4943), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCite] = ACTIONS(4943), + [anon_sym_BSLASHnocite] = ACTIONS(4943), + [anon_sym_BSLASHcitet] = ACTIONS(4943), + [anon_sym_BSLASHcitep] = ACTIONS(4943), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteauthor] = ACTIONS(4943), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4943), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitetitle] = ACTIONS(4943), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteyear] = ACTIONS(4943), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitedate] = ACTIONS(4943), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteurl] = ACTIONS(4943), + [anon_sym_BSLASHfullcite] = ACTIONS(4943), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4943), + [anon_sym_BSLASHcitealt] = ACTIONS(4943), + [anon_sym_BSLASHcitealp] = ACTIONS(4943), + [anon_sym_BSLASHcitetext] = ACTIONS(4943), + [anon_sym_BSLASHparencite] = ACTIONS(4943), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHParencite] = ACTIONS(4943), + [anon_sym_BSLASHfootcite] = ACTIONS(4943), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4943), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4943), + [anon_sym_BSLASHtextcite] = ACTIONS(4943), + [anon_sym_BSLASHTextcite] = ACTIONS(4943), + [anon_sym_BSLASHsmartcite] = ACTIONS(4943), + [anon_sym_BSLASHSmartcite] = ACTIONS(4943), + [anon_sym_BSLASHsupercite] = ACTIONS(4943), + [anon_sym_BSLASHautocite] = ACTIONS(4943), + [anon_sym_BSLASHAutocite] = ACTIONS(4943), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHvolcite] = ACTIONS(4943), + [anon_sym_BSLASHVolcite] = ACTIONS(4943), + [anon_sym_BSLASHpvolcite] = ACTIONS(4943), + [anon_sym_BSLASHPvolcite] = ACTIONS(4943), + [anon_sym_BSLASHfvolcite] = ACTIONS(4943), + [anon_sym_BSLASHftvolcite] = ACTIONS(4943), + [anon_sym_BSLASHsvolcite] = ACTIONS(4943), + [anon_sym_BSLASHSvolcite] = ACTIONS(4943), + [anon_sym_BSLASHtvolcite] = ACTIONS(4943), + [anon_sym_BSLASHTvolcite] = ACTIONS(4943), + [anon_sym_BSLASHavolcite] = ACTIONS(4943), + [anon_sym_BSLASHAvolcite] = ACTIONS(4943), + [anon_sym_BSLASHnotecite] = ACTIONS(4943), + [anon_sym_BSLASHNotecite] = ACTIONS(4943), + [anon_sym_BSLASHpnotecite] = ACTIONS(4943), + [anon_sym_BSLASHPnotecite] = ACTIONS(4943), + [anon_sym_BSLASHfnotecite] = ACTIONS(4943), + [anon_sym_BSLASHlabel] = ACTIONS(4943), + [anon_sym_BSLASHref] = ACTIONS(4943), + [anon_sym_BSLASHeqref] = ACTIONS(4943), + [anon_sym_BSLASHvref] = ACTIONS(4943), + [anon_sym_BSLASHVref] = ACTIONS(4943), + [anon_sym_BSLASHautoref] = ACTIONS(4943), + [anon_sym_BSLASHpageref] = ACTIONS(4943), + [anon_sym_BSLASHcref] = ACTIONS(4943), + [anon_sym_BSLASHCref] = ACTIONS(4943), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4941), + [anon_sym_BSLASHnamecref] = ACTIONS(4943), + [anon_sym_BSLASHnameCref] = ACTIONS(4943), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4943), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4943), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4943), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4943), + [anon_sym_BSLASHlabelcref] = ACTIONS(4943), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4943), + [anon_sym_BSLASHcrefrange] = ACTIONS(4943), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCrefrange] = ACTIONS(4943), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4941), + [anon_sym_BSLASHnewlabel] = ACTIONS(4943), + [anon_sym_BSLASHnewcommand] = ACTIONS(4943), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4943), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4943), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4943), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4941), + [anon_sym_BSLASHdef] = ACTIONS(4943), + [anon_sym_BSLASHlet] = ACTIONS(4943), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4943), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4943), + [anon_sym_BSLASHgls] = ACTIONS(4943), + [anon_sym_BSLASHGls] = ACTIONS(4943), + [anon_sym_BSLASHGLS] = ACTIONS(4943), + [anon_sym_BSLASHglspl] = ACTIONS(4943), + [anon_sym_BSLASHGlspl] = ACTIONS(4943), + [anon_sym_BSLASHGLSpl] = ACTIONS(4943), + [anon_sym_BSLASHglsdisp] = ACTIONS(4943), + [anon_sym_BSLASHglslink] = ACTIONS(4943), + [anon_sym_BSLASHglstext] = ACTIONS(4943), + [anon_sym_BSLASHGlstext] = ACTIONS(4943), + [anon_sym_BSLASHGLStext] = ACTIONS(4943), + [anon_sym_BSLASHglsfirst] = ACTIONS(4943), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4943), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4943), + [anon_sym_BSLASHglsplural] = ACTIONS(4943), + [anon_sym_BSLASHGlsplural] = ACTIONS(4943), + [anon_sym_BSLASHGLSplural] = ACTIONS(4943), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHglsname] = ACTIONS(4943), + [anon_sym_BSLASHGlsname] = ACTIONS(4943), + [anon_sym_BSLASHGLSname] = ACTIONS(4943), + [anon_sym_BSLASHglssymbol] = ACTIONS(4943), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4943), + [anon_sym_BSLASHglsdesc] = ACTIONS(4943), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4943), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4943), + [anon_sym_BSLASHglsuseri] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4943), + [anon_sym_BSLASHglsuserii] = ACTIONS(4943), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4943), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4943), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4943), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4943), + [anon_sym_BSLASHglsuserv] = ACTIONS(4943), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4943), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4943), + [anon_sym_BSLASHglsuservi] = ACTIONS(4943), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4943), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4943), + [anon_sym_BSLASHnewacronym] = ACTIONS(4943), + [anon_sym_BSLASHacrshort] = ACTIONS(4943), + [anon_sym_BSLASHAcrshort] = ACTIONS(4943), + [anon_sym_BSLASHACRshort] = ACTIONS(4943), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4943), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4943), + [anon_sym_BSLASHacrlong] = ACTIONS(4943), + [anon_sym_BSLASHAcrlong] = ACTIONS(4943), + [anon_sym_BSLASHACRlong] = ACTIONS(4943), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4943), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4943), + [anon_sym_BSLASHacrfull] = ACTIONS(4943), + [anon_sym_BSLASHAcrfull] = ACTIONS(4943), + [anon_sym_BSLASHACRfull] = ACTIONS(4943), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4943), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4943), + [anon_sym_BSLASHacs] = ACTIONS(4943), + [anon_sym_BSLASHAcs] = ACTIONS(4943), + [anon_sym_BSLASHacsp] = ACTIONS(4943), + [anon_sym_BSLASHAcsp] = ACTIONS(4943), + [anon_sym_BSLASHacl] = ACTIONS(4943), + [anon_sym_BSLASHAcl] = ACTIONS(4943), + [anon_sym_BSLASHaclp] = ACTIONS(4943), + [anon_sym_BSLASHAclp] = ACTIONS(4943), + [anon_sym_BSLASHacf] = ACTIONS(4943), + [anon_sym_BSLASHAcf] = ACTIONS(4943), + [anon_sym_BSLASHacfp] = ACTIONS(4943), + [anon_sym_BSLASHAcfp] = ACTIONS(4943), + [anon_sym_BSLASHac] = ACTIONS(4943), + [anon_sym_BSLASHAc] = ACTIONS(4943), + [anon_sym_BSLASHacp] = ACTIONS(4943), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4943), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4943), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4943), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4943), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4943), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4943), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4943), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4943), + [anon_sym_BSLASHcolor] = ACTIONS(4943), + [anon_sym_BSLASHcolorbox] = ACTIONS(4943), + [anon_sym_BSLASHtextcolor] = ACTIONS(4943), + [anon_sym_BSLASHpagecolor] = ACTIONS(4943), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4943), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4943), + [anon_sym_BSLASHtext] = ACTIONS(4943), + [anon_sym_BSLASHintertext] = ACTIONS(4943), + [anon_sym_shortintertext] = ACTIONS(4943), + }, + [690] = { + [ts_builtin_sym_end] = ACTIONS(4945), + [sym_command_name] = ACTIONS(4947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4947), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_RPAREN] = ACTIONS(4945), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_RBRACK] = ACTIONS(4945), + [anon_sym_COMMA] = ACTIONS(4945), + [anon_sym_EQ] = ACTIONS(4945), + [anon_sym_BSLASHpart] = ACTIONS(4947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddpart] = ACTIONS(4947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4945), + [anon_sym_BSLASHchapter] = ACTIONS(4947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddchap] = ACTIONS(4947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsection] = ACTIONS(4947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddsec] = ACTIONS(4947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubsection] = ACTIONS(4947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHparagraph] = ACTIONS(4947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4947), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4945), + [anon_sym_BSLASHitem] = ACTIONS(4947), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4945), + [anon_sym_LBRACE] = ACTIONS(4945), + [anon_sym_RBRACE] = ACTIONS(4945), + [sym_word] = ACTIONS(4947), + [sym_placeholder] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(4947), + [anon_sym_DASH] = ACTIONS(4947), + [anon_sym_STAR] = ACTIONS(4947), + [anon_sym_SLASH] = ACTIONS(4947), + [anon_sym_CARET] = ACTIONS(4947), + [anon_sym__] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_BANG] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_COLON] = ACTIONS(4947), + [anon_sym_SQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4945), + [anon_sym_DOLLAR] = ACTIONS(4947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4945), + [anon_sym_BSLASHbegin] = ACTIONS(4947), + [anon_sym_BSLASHusepackage] = ACTIONS(4947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4947), + [anon_sym_BSLASHinclude] = ACTIONS(4947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4947), + [anon_sym_BSLASHinput] = ACTIONS(4947), + [anon_sym_BSLASHsubfile] = ACTIONS(4947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4947), + [anon_sym_BSLASHbibliography] = ACTIONS(4947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4947), + [anon_sym_BSLASHincludesvg] = ACTIONS(4947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4947), + [anon_sym_BSLASHimport] = ACTIONS(4947), + [anon_sym_BSLASHsubimport] = ACTIONS(4947), + [anon_sym_BSLASHinputfrom] = ACTIONS(4947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4947), + [anon_sym_BSLASHincludefrom] = ACTIONS(4947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4947), + [anon_sym_BSLASHcaption] = ACTIONS(4947), + [anon_sym_BSLASHcite] = ACTIONS(4947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCite] = ACTIONS(4947), + [anon_sym_BSLASHnocite] = ACTIONS(4947), + [anon_sym_BSLASHcitet] = ACTIONS(4947), + [anon_sym_BSLASHcitep] = ACTIONS(4947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteauthor] = ACTIONS(4947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitetitle] = ACTIONS(4947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteyear] = ACTIONS(4947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitedate] = ACTIONS(4947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteurl] = ACTIONS(4947), + [anon_sym_BSLASHfullcite] = ACTIONS(4947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4947), + [anon_sym_BSLASHcitealt] = ACTIONS(4947), + [anon_sym_BSLASHcitealp] = ACTIONS(4947), + [anon_sym_BSLASHcitetext] = ACTIONS(4947), + [anon_sym_BSLASHparencite] = ACTIONS(4947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHParencite] = ACTIONS(4947), + [anon_sym_BSLASHfootcite] = ACTIONS(4947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4947), + [anon_sym_BSLASHtextcite] = ACTIONS(4947), + [anon_sym_BSLASHTextcite] = ACTIONS(4947), + [anon_sym_BSLASHsmartcite] = ACTIONS(4947), + [anon_sym_BSLASHSmartcite] = ACTIONS(4947), + [anon_sym_BSLASHsupercite] = ACTIONS(4947), + [anon_sym_BSLASHautocite] = ACTIONS(4947), + [anon_sym_BSLASHAutocite] = ACTIONS(4947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHvolcite] = ACTIONS(4947), + [anon_sym_BSLASHVolcite] = ACTIONS(4947), + [anon_sym_BSLASHpvolcite] = ACTIONS(4947), + [anon_sym_BSLASHPvolcite] = ACTIONS(4947), + [anon_sym_BSLASHfvolcite] = ACTIONS(4947), + [anon_sym_BSLASHftvolcite] = ACTIONS(4947), + [anon_sym_BSLASHsvolcite] = ACTIONS(4947), + [anon_sym_BSLASHSvolcite] = ACTIONS(4947), + [anon_sym_BSLASHtvolcite] = ACTIONS(4947), + [anon_sym_BSLASHTvolcite] = ACTIONS(4947), + [anon_sym_BSLASHavolcite] = ACTIONS(4947), + [anon_sym_BSLASHAvolcite] = ACTIONS(4947), + [anon_sym_BSLASHnotecite] = ACTIONS(4947), + [anon_sym_BSLASHNotecite] = ACTIONS(4947), + [anon_sym_BSLASHpnotecite] = ACTIONS(4947), + [anon_sym_BSLASHPnotecite] = ACTIONS(4947), + [anon_sym_BSLASHfnotecite] = ACTIONS(4947), + [anon_sym_BSLASHlabel] = ACTIONS(4947), + [anon_sym_BSLASHref] = ACTIONS(4947), + [anon_sym_BSLASHeqref] = ACTIONS(4947), + [anon_sym_BSLASHvref] = ACTIONS(4947), + [anon_sym_BSLASHVref] = ACTIONS(4947), + [anon_sym_BSLASHautoref] = ACTIONS(4947), + [anon_sym_BSLASHpageref] = ACTIONS(4947), + [anon_sym_BSLASHcref] = ACTIONS(4947), + [anon_sym_BSLASHCref] = ACTIONS(4947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4945), + [anon_sym_BSLASHnamecref] = ACTIONS(4947), + [anon_sym_BSLASHnameCref] = ACTIONS(4947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4947), + [anon_sym_BSLASHlabelcref] = ACTIONS(4947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4947), + [anon_sym_BSLASHcrefrange] = ACTIONS(4947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCrefrange] = ACTIONS(4947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4945), + [anon_sym_BSLASHnewlabel] = ACTIONS(4947), + [anon_sym_BSLASHnewcommand] = ACTIONS(4947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4945), + [anon_sym_BSLASHdef] = ACTIONS(4947), + [anon_sym_BSLASHlet] = ACTIONS(4947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), + [anon_sym_BSLASHgls] = ACTIONS(4947), + [anon_sym_BSLASHGls] = ACTIONS(4947), + [anon_sym_BSLASHGLS] = ACTIONS(4947), + [anon_sym_BSLASHglspl] = ACTIONS(4947), + [anon_sym_BSLASHGlspl] = ACTIONS(4947), + [anon_sym_BSLASHGLSpl] = ACTIONS(4947), + [anon_sym_BSLASHglsdisp] = ACTIONS(4947), + [anon_sym_BSLASHglslink] = ACTIONS(4947), + [anon_sym_BSLASHglstext] = ACTIONS(4947), + [anon_sym_BSLASHGlstext] = ACTIONS(4947), + [anon_sym_BSLASHGLStext] = ACTIONS(4947), + [anon_sym_BSLASHglsfirst] = ACTIONS(4947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4947), + [anon_sym_BSLASHglsplural] = ACTIONS(4947), + [anon_sym_BSLASHGlsplural] = ACTIONS(4947), + [anon_sym_BSLASHGLSplural] = ACTIONS(4947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHglsname] = ACTIONS(4947), + [anon_sym_BSLASHGlsname] = ACTIONS(4947), + [anon_sym_BSLASHGLSname] = ACTIONS(4947), + [anon_sym_BSLASHglssymbol] = ACTIONS(4947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4947), + [anon_sym_BSLASHglsdesc] = ACTIONS(4947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4947), + [anon_sym_BSLASHglsuseri] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4947), + [anon_sym_BSLASHglsuserii] = ACTIONS(4947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4947), + [anon_sym_BSLASHglsuserv] = ACTIONS(4947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4947), + [anon_sym_BSLASHglsuservi] = ACTIONS(4947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4947), + [anon_sym_BSLASHnewacronym] = ACTIONS(4947), + [anon_sym_BSLASHacrshort] = ACTIONS(4947), + [anon_sym_BSLASHAcrshort] = ACTIONS(4947), + [anon_sym_BSLASHACRshort] = ACTIONS(4947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4947), + [anon_sym_BSLASHacrlong] = ACTIONS(4947), + [anon_sym_BSLASHAcrlong] = ACTIONS(4947), + [anon_sym_BSLASHACRlong] = ACTIONS(4947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4947), + [anon_sym_BSLASHacrfull] = ACTIONS(4947), + [anon_sym_BSLASHAcrfull] = ACTIONS(4947), + [anon_sym_BSLASHACRfull] = ACTIONS(4947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4947), + [anon_sym_BSLASHacs] = ACTIONS(4947), + [anon_sym_BSLASHAcs] = ACTIONS(4947), + [anon_sym_BSLASHacsp] = ACTIONS(4947), + [anon_sym_BSLASHAcsp] = ACTIONS(4947), + [anon_sym_BSLASHacl] = ACTIONS(4947), + [anon_sym_BSLASHAcl] = ACTIONS(4947), + [anon_sym_BSLASHaclp] = ACTIONS(4947), + [anon_sym_BSLASHAclp] = ACTIONS(4947), + [anon_sym_BSLASHacf] = ACTIONS(4947), + [anon_sym_BSLASHAcf] = ACTIONS(4947), + [anon_sym_BSLASHacfp] = ACTIONS(4947), + [anon_sym_BSLASHAcfp] = ACTIONS(4947), + [anon_sym_BSLASHac] = ACTIONS(4947), + [anon_sym_BSLASHAc] = ACTIONS(4947), + [anon_sym_BSLASHacp] = ACTIONS(4947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4947), + [anon_sym_BSLASHcolor] = ACTIONS(4947), + [anon_sym_BSLASHcolorbox] = ACTIONS(4947), + [anon_sym_BSLASHtextcolor] = ACTIONS(4947), + [anon_sym_BSLASHpagecolor] = ACTIONS(4947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4947), + [anon_sym_BSLASHtext] = ACTIONS(4947), + [anon_sym_BSLASHintertext] = ACTIONS(4947), + [anon_sym_shortintertext] = ACTIONS(4947), + }, + [691] = { + [ts_builtin_sym_end] = ACTIONS(4949), + [sym_command_name] = ACTIONS(4951), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [anon_sym_RBRACK] = ACTIONS(4949), + [anon_sym_COMMA] = ACTIONS(4949), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_BSLASHpart] = ACTIONS(4951), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddpart] = ACTIONS(4951), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4949), + [anon_sym_BSLASHchapter] = ACTIONS(4951), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddchap] = ACTIONS(4951), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsection] = ACTIONS(4951), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddsec] = ACTIONS(4951), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubsection] = ACTIONS(4951), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4951), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHparagraph] = ACTIONS(4951), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4951), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4949), + [anon_sym_BSLASHitem] = ACTIONS(4951), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4949), + [anon_sym_RBRACE] = ACTIONS(4949), + [sym_word] = ACTIONS(4951), + [sym_placeholder] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_STAR] = ACTIONS(4951), + [anon_sym_SLASH] = ACTIONS(4951), + [anon_sym_CARET] = ACTIONS(4951), + [anon_sym__] = ACTIONS(4951), + [anon_sym_LT] = ACTIONS(4951), + [anon_sym_GT] = ACTIONS(4951), + [anon_sym_BANG] = ACTIONS(4951), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_COLON] = ACTIONS(4951), + [anon_sym_SQUOTE] = ACTIONS(4951), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4949), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4949), + [anon_sym_DOLLAR] = ACTIONS(4951), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4949), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4949), + [anon_sym_BSLASHbegin] = ACTIONS(4951), + [anon_sym_BSLASHusepackage] = ACTIONS(4951), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4951), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4951), + [anon_sym_BSLASHinclude] = ACTIONS(4951), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4951), + [anon_sym_BSLASHinput] = ACTIONS(4951), + [anon_sym_BSLASHsubfile] = ACTIONS(4951), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4951), + [anon_sym_BSLASHbibliography] = ACTIONS(4951), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4951), + [anon_sym_BSLASHincludesvg] = ACTIONS(4951), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4951), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4951), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4951), + [anon_sym_BSLASHimport] = ACTIONS(4951), + [anon_sym_BSLASHsubimport] = ACTIONS(4951), + [anon_sym_BSLASHinputfrom] = ACTIONS(4951), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4951), + [anon_sym_BSLASHincludefrom] = ACTIONS(4951), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4951), + [anon_sym_BSLASHcaption] = ACTIONS(4951), + [anon_sym_BSLASHcite] = ACTIONS(4951), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCite] = ACTIONS(4951), + [anon_sym_BSLASHnocite] = ACTIONS(4951), + [anon_sym_BSLASHcitet] = ACTIONS(4951), + [anon_sym_BSLASHcitep] = ACTIONS(4951), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteauthor] = ACTIONS(4951), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4951), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitetitle] = ACTIONS(4951), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteyear] = ACTIONS(4951), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitedate] = ACTIONS(4951), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteurl] = ACTIONS(4951), + [anon_sym_BSLASHfullcite] = ACTIONS(4951), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4951), + [anon_sym_BSLASHcitealt] = ACTIONS(4951), + [anon_sym_BSLASHcitealp] = ACTIONS(4951), + [anon_sym_BSLASHcitetext] = ACTIONS(4951), + [anon_sym_BSLASHparencite] = ACTIONS(4951), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHParencite] = ACTIONS(4951), + [anon_sym_BSLASHfootcite] = ACTIONS(4951), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4951), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4951), + [anon_sym_BSLASHtextcite] = ACTIONS(4951), + [anon_sym_BSLASHTextcite] = ACTIONS(4951), + [anon_sym_BSLASHsmartcite] = ACTIONS(4951), + [anon_sym_BSLASHSmartcite] = ACTIONS(4951), + [anon_sym_BSLASHsupercite] = ACTIONS(4951), + [anon_sym_BSLASHautocite] = ACTIONS(4951), + [anon_sym_BSLASHAutocite] = ACTIONS(4951), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHvolcite] = ACTIONS(4951), + [anon_sym_BSLASHVolcite] = ACTIONS(4951), + [anon_sym_BSLASHpvolcite] = ACTIONS(4951), + [anon_sym_BSLASHPvolcite] = ACTIONS(4951), + [anon_sym_BSLASHfvolcite] = ACTIONS(4951), + [anon_sym_BSLASHftvolcite] = ACTIONS(4951), + [anon_sym_BSLASHsvolcite] = ACTIONS(4951), + [anon_sym_BSLASHSvolcite] = ACTIONS(4951), + [anon_sym_BSLASHtvolcite] = ACTIONS(4951), + [anon_sym_BSLASHTvolcite] = ACTIONS(4951), + [anon_sym_BSLASHavolcite] = ACTIONS(4951), + [anon_sym_BSLASHAvolcite] = ACTIONS(4951), + [anon_sym_BSLASHnotecite] = ACTIONS(4951), + [anon_sym_BSLASHNotecite] = ACTIONS(4951), + [anon_sym_BSLASHpnotecite] = ACTIONS(4951), + [anon_sym_BSLASHPnotecite] = ACTIONS(4951), + [anon_sym_BSLASHfnotecite] = ACTIONS(4951), + [anon_sym_BSLASHlabel] = ACTIONS(4951), + [anon_sym_BSLASHref] = ACTIONS(4951), + [anon_sym_BSLASHeqref] = ACTIONS(4951), + [anon_sym_BSLASHvref] = ACTIONS(4951), + [anon_sym_BSLASHVref] = ACTIONS(4951), + [anon_sym_BSLASHautoref] = ACTIONS(4951), + [anon_sym_BSLASHpageref] = ACTIONS(4951), + [anon_sym_BSLASHcref] = ACTIONS(4951), + [anon_sym_BSLASHCref] = ACTIONS(4951), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4949), + [anon_sym_BSLASHnamecref] = ACTIONS(4951), + [anon_sym_BSLASHnameCref] = ACTIONS(4951), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4951), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4951), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4951), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4951), + [anon_sym_BSLASHlabelcref] = ACTIONS(4951), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4951), + [anon_sym_BSLASHcrefrange] = ACTIONS(4951), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCrefrange] = ACTIONS(4951), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4949), + [anon_sym_BSLASHnewlabel] = ACTIONS(4951), + [anon_sym_BSLASHnewcommand] = ACTIONS(4951), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4951), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4951), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4951), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4949), + [anon_sym_BSLASHdef] = ACTIONS(4951), + [anon_sym_BSLASHlet] = ACTIONS(4951), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4951), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4951), + [anon_sym_BSLASHgls] = ACTIONS(4951), + [anon_sym_BSLASHGls] = ACTIONS(4951), + [anon_sym_BSLASHGLS] = ACTIONS(4951), + [anon_sym_BSLASHglspl] = ACTIONS(4951), + [anon_sym_BSLASHGlspl] = ACTIONS(4951), + [anon_sym_BSLASHGLSpl] = ACTIONS(4951), + [anon_sym_BSLASHglsdisp] = ACTIONS(4951), + [anon_sym_BSLASHglslink] = ACTIONS(4951), + [anon_sym_BSLASHglstext] = ACTIONS(4951), + [anon_sym_BSLASHGlstext] = ACTIONS(4951), + [anon_sym_BSLASHGLStext] = ACTIONS(4951), + [anon_sym_BSLASHglsfirst] = ACTIONS(4951), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4951), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4951), + [anon_sym_BSLASHglsplural] = ACTIONS(4951), + [anon_sym_BSLASHGlsplural] = ACTIONS(4951), + [anon_sym_BSLASHGLSplural] = ACTIONS(4951), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHglsname] = ACTIONS(4951), + [anon_sym_BSLASHGlsname] = ACTIONS(4951), + [anon_sym_BSLASHGLSname] = ACTIONS(4951), + [anon_sym_BSLASHglssymbol] = ACTIONS(4951), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4951), + [anon_sym_BSLASHglsdesc] = ACTIONS(4951), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4951), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4951), + [anon_sym_BSLASHglsuseri] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4951), + [anon_sym_BSLASHglsuserii] = ACTIONS(4951), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4951), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4951), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4951), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4951), + [anon_sym_BSLASHglsuserv] = ACTIONS(4951), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4951), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4951), + [anon_sym_BSLASHglsuservi] = ACTIONS(4951), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4951), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4951), + [anon_sym_BSLASHnewacronym] = ACTIONS(4951), + [anon_sym_BSLASHacrshort] = ACTIONS(4951), + [anon_sym_BSLASHAcrshort] = ACTIONS(4951), + [anon_sym_BSLASHACRshort] = ACTIONS(4951), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4951), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4951), + [anon_sym_BSLASHacrlong] = ACTIONS(4951), + [anon_sym_BSLASHAcrlong] = ACTIONS(4951), + [anon_sym_BSLASHACRlong] = ACTIONS(4951), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4951), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4951), + [anon_sym_BSLASHacrfull] = ACTIONS(4951), + [anon_sym_BSLASHAcrfull] = ACTIONS(4951), + [anon_sym_BSLASHACRfull] = ACTIONS(4951), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4951), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4951), + [anon_sym_BSLASHacs] = ACTIONS(4951), + [anon_sym_BSLASHAcs] = ACTIONS(4951), + [anon_sym_BSLASHacsp] = ACTIONS(4951), + [anon_sym_BSLASHAcsp] = ACTIONS(4951), + [anon_sym_BSLASHacl] = ACTIONS(4951), + [anon_sym_BSLASHAcl] = ACTIONS(4951), + [anon_sym_BSLASHaclp] = ACTIONS(4951), + [anon_sym_BSLASHAclp] = ACTIONS(4951), + [anon_sym_BSLASHacf] = ACTIONS(4951), + [anon_sym_BSLASHAcf] = ACTIONS(4951), + [anon_sym_BSLASHacfp] = ACTIONS(4951), + [anon_sym_BSLASHAcfp] = ACTIONS(4951), + [anon_sym_BSLASHac] = ACTIONS(4951), + [anon_sym_BSLASHAc] = ACTIONS(4951), + [anon_sym_BSLASHacp] = ACTIONS(4951), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4951), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4951), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4951), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4951), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4951), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4951), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4951), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4951), + [anon_sym_BSLASHcolor] = ACTIONS(4951), + [anon_sym_BSLASHcolorbox] = ACTIONS(4951), + [anon_sym_BSLASHtextcolor] = ACTIONS(4951), + [anon_sym_BSLASHpagecolor] = ACTIONS(4951), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4951), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4951), + [anon_sym_BSLASHtext] = ACTIONS(4951), + [anon_sym_BSLASHintertext] = ACTIONS(4951), + [anon_sym_shortintertext] = ACTIONS(4951), + }, + [692] = { + [ts_builtin_sym_end] = ACTIONS(4953), + [sym_command_name] = ACTIONS(4955), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_EQ] = ACTIONS(4953), + [anon_sym_BSLASHpart] = ACTIONS(4955), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddpart] = ACTIONS(4955), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4953), + [anon_sym_BSLASHchapter] = ACTIONS(4955), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddchap] = ACTIONS(4955), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsection] = ACTIONS(4955), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddsec] = ACTIONS(4955), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubsection] = ACTIONS(4955), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4955), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHparagraph] = ACTIONS(4955), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4955), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4953), + [anon_sym_BSLASHitem] = ACTIONS(4955), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4953), + [anon_sym_RBRACE] = ACTIONS(4953), + [sym_word] = ACTIONS(4955), + [sym_placeholder] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4955), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), + [anon_sym__] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(4955), + [anon_sym_SQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), + [anon_sym_DOLLAR] = ACTIONS(4955), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), + [anon_sym_BSLASHbegin] = ACTIONS(4955), + [anon_sym_BSLASHusepackage] = ACTIONS(4955), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), + [anon_sym_BSLASHinclude] = ACTIONS(4955), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), + [anon_sym_BSLASHinput] = ACTIONS(4955), + [anon_sym_BSLASHsubfile] = ACTIONS(4955), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), + [anon_sym_BSLASHbibliography] = ACTIONS(4955), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), + [anon_sym_BSLASHincludesvg] = ACTIONS(4955), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), + [anon_sym_BSLASHimport] = ACTIONS(4955), + [anon_sym_BSLASHsubimport] = ACTIONS(4955), + [anon_sym_BSLASHinputfrom] = ACTIONS(4955), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), + [anon_sym_BSLASHincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHcaption] = ACTIONS(4955), + [anon_sym_BSLASHcite] = ACTIONS(4955), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCite] = ACTIONS(4955), + [anon_sym_BSLASHnocite] = ACTIONS(4955), + [anon_sym_BSLASHcitet] = ACTIONS(4955), + [anon_sym_BSLASHcitep] = ACTIONS(4955), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteauthor] = ACTIONS(4955), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitetitle] = ACTIONS(4955), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteyear] = ACTIONS(4955), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitedate] = ACTIONS(4955), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteurl] = ACTIONS(4955), + [anon_sym_BSLASHfullcite] = ACTIONS(4955), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), + [anon_sym_BSLASHcitealt] = ACTIONS(4955), + [anon_sym_BSLASHcitealp] = ACTIONS(4955), + [anon_sym_BSLASHcitetext] = ACTIONS(4955), + [anon_sym_BSLASHparencite] = ACTIONS(4955), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHParencite] = ACTIONS(4955), + [anon_sym_BSLASHfootcite] = ACTIONS(4955), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), + [anon_sym_BSLASHtextcite] = ACTIONS(4955), + [anon_sym_BSLASHTextcite] = ACTIONS(4955), + [anon_sym_BSLASHsmartcite] = ACTIONS(4955), + [anon_sym_BSLASHSmartcite] = ACTIONS(4955), + [anon_sym_BSLASHsupercite] = ACTIONS(4955), + [anon_sym_BSLASHautocite] = ACTIONS(4955), + [anon_sym_BSLASHAutocite] = ACTIONS(4955), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHvolcite] = ACTIONS(4955), + [anon_sym_BSLASHVolcite] = ACTIONS(4955), + [anon_sym_BSLASHpvolcite] = ACTIONS(4955), + [anon_sym_BSLASHPvolcite] = ACTIONS(4955), + [anon_sym_BSLASHfvolcite] = ACTIONS(4955), + [anon_sym_BSLASHftvolcite] = ACTIONS(4955), + [anon_sym_BSLASHsvolcite] = ACTIONS(4955), + [anon_sym_BSLASHSvolcite] = ACTIONS(4955), + [anon_sym_BSLASHtvolcite] = ACTIONS(4955), + [anon_sym_BSLASHTvolcite] = ACTIONS(4955), + [anon_sym_BSLASHavolcite] = ACTIONS(4955), + [anon_sym_BSLASHAvolcite] = ACTIONS(4955), + [anon_sym_BSLASHnotecite] = ACTIONS(4955), + [anon_sym_BSLASHNotecite] = ACTIONS(4955), + [anon_sym_BSLASHpnotecite] = ACTIONS(4955), + [anon_sym_BSLASHPnotecite] = ACTIONS(4955), + [anon_sym_BSLASHfnotecite] = ACTIONS(4955), + [anon_sym_BSLASHlabel] = ACTIONS(4955), + [anon_sym_BSLASHref] = ACTIONS(4955), + [anon_sym_BSLASHeqref] = ACTIONS(4955), + [anon_sym_BSLASHvref] = ACTIONS(4955), + [anon_sym_BSLASHVref] = ACTIONS(4955), + [anon_sym_BSLASHautoref] = ACTIONS(4955), + [anon_sym_BSLASHpageref] = ACTIONS(4955), + [anon_sym_BSLASHcref] = ACTIONS(4955), + [anon_sym_BSLASHCref] = ACTIONS(4955), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnameCref] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHlabelcref] = ACTIONS(4955), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCrefrange] = ACTIONS(4955), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnewlabel] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), + [anon_sym_BSLASHdef] = ACTIONS(4955), + [anon_sym_BSLASHlet] = ACTIONS(4955), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), + [anon_sym_BSLASHgls] = ACTIONS(4955), + [anon_sym_BSLASHGls] = ACTIONS(4955), + [anon_sym_BSLASHGLS] = ACTIONS(4955), + [anon_sym_BSLASHglspl] = ACTIONS(4955), + [anon_sym_BSLASHGlspl] = ACTIONS(4955), + [anon_sym_BSLASHGLSpl] = ACTIONS(4955), + [anon_sym_BSLASHglsdisp] = ACTIONS(4955), + [anon_sym_BSLASHglslink] = ACTIONS(4955), + [anon_sym_BSLASHglstext] = ACTIONS(4955), + [anon_sym_BSLASHGlstext] = ACTIONS(4955), + [anon_sym_BSLASHGLStext] = ACTIONS(4955), + [anon_sym_BSLASHglsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), + [anon_sym_BSLASHglsplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSplural] = ACTIONS(4955), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHglsname] = ACTIONS(4955), + [anon_sym_BSLASHGlsname] = ACTIONS(4955), + [anon_sym_BSLASHGLSname] = ACTIONS(4955), + [anon_sym_BSLASHglssymbol] = ACTIONS(4955), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), + [anon_sym_BSLASHglsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), + [anon_sym_BSLASHglsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), + [anon_sym_BSLASHglsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), + [anon_sym_BSLASHglsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), + [anon_sym_BSLASHglsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), + [anon_sym_BSLASHnewacronym] = ACTIONS(4955), + [anon_sym_BSLASHacrshort] = ACTIONS(4955), + [anon_sym_BSLASHAcrshort] = ACTIONS(4955), + [anon_sym_BSLASHACRshort] = ACTIONS(4955), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), + [anon_sym_BSLASHacrlong] = ACTIONS(4955), + [anon_sym_BSLASHAcrlong] = ACTIONS(4955), + [anon_sym_BSLASHACRlong] = ACTIONS(4955), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), + [anon_sym_BSLASHacrfull] = ACTIONS(4955), + [anon_sym_BSLASHAcrfull] = ACTIONS(4955), + [anon_sym_BSLASHACRfull] = ACTIONS(4955), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), + [anon_sym_BSLASHacs] = ACTIONS(4955), + [anon_sym_BSLASHAcs] = ACTIONS(4955), + [anon_sym_BSLASHacsp] = ACTIONS(4955), + [anon_sym_BSLASHAcsp] = ACTIONS(4955), + [anon_sym_BSLASHacl] = ACTIONS(4955), + [anon_sym_BSLASHAcl] = ACTIONS(4955), + [anon_sym_BSLASHaclp] = ACTIONS(4955), + [anon_sym_BSLASHAclp] = ACTIONS(4955), + [anon_sym_BSLASHacf] = ACTIONS(4955), + [anon_sym_BSLASHAcf] = ACTIONS(4955), + [anon_sym_BSLASHacfp] = ACTIONS(4955), + [anon_sym_BSLASHAcfp] = ACTIONS(4955), + [anon_sym_BSLASHac] = ACTIONS(4955), + [anon_sym_BSLASHAc] = ACTIONS(4955), + [anon_sym_BSLASHacp] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), + [anon_sym_BSLASHcolor] = ACTIONS(4955), + [anon_sym_BSLASHcolorbox] = ACTIONS(4955), + [anon_sym_BSLASHtextcolor] = ACTIONS(4955), + [anon_sym_BSLASHpagecolor] = ACTIONS(4955), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), + [anon_sym_BSLASHtext] = ACTIONS(4955), + [anon_sym_BSLASHintertext] = ACTIONS(4955), + [anon_sym_shortintertext] = ACTIONS(4955), + }, + [693] = { + [sym_curly_group] = STATE(1104), + [sym_command_name] = ACTIONS(4825), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4825), + [anon_sym_LPAREN] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_LBRACK] = ACTIONS(4823), + [anon_sym_RBRACK] = ACTIONS(4823), + [anon_sym_COMMA] = ACTIONS(4823), + [anon_sym_EQ] = ACTIONS(4823), + [anon_sym_BSLASHpart] = ACTIONS(4825), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddpart] = ACTIONS(4825), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4823), + [anon_sym_BSLASHchapter] = ACTIONS(4825), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddchap] = ACTIONS(4825), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsection] = ACTIONS(4825), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddsec] = ACTIONS(4825), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubsection] = ACTIONS(4825), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4825), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHparagraph] = ACTIONS(4825), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4825), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4823), + [anon_sym_BSLASHitem] = ACTIONS(4825), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4823), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(4825), + [sym_placeholder] = ACTIONS(4823), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym__] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_BANG] = ACTIONS(4825), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_COLON] = ACTIONS(4825), + [anon_sym_SQUOTE] = ACTIONS(4825), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4823), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4825), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4823), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4823), + [anon_sym_BSLASHbegin] = ACTIONS(4825), + [anon_sym_BSLASHend] = ACTIONS(4825), + [anon_sym_BSLASHusepackage] = ACTIONS(4825), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4825), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4825), + [anon_sym_BSLASHinclude] = ACTIONS(4825), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4825), + [anon_sym_BSLASHinput] = ACTIONS(4825), + [anon_sym_BSLASHsubfile] = ACTIONS(4825), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4825), + [anon_sym_BSLASHbibliography] = ACTIONS(4825), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4825), + [anon_sym_BSLASHincludesvg] = ACTIONS(4825), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4825), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4825), + [anon_sym_BSLASHimport] = ACTIONS(4825), + [anon_sym_BSLASHsubimport] = ACTIONS(4825), + [anon_sym_BSLASHinputfrom] = ACTIONS(4825), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4825), + [anon_sym_BSLASHincludefrom] = ACTIONS(4825), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4825), + [anon_sym_BSLASHcaption] = ACTIONS(4825), + [anon_sym_BSLASHcite] = ACTIONS(4825), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCite] = ACTIONS(4825), + [anon_sym_BSLASHnocite] = ACTIONS(4825), + [anon_sym_BSLASHcitet] = ACTIONS(4825), + [anon_sym_BSLASHcitep] = ACTIONS(4825), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteauthor] = ACTIONS(4825), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4825), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitetitle] = ACTIONS(4825), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteyear] = ACTIONS(4825), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitedate] = ACTIONS(4825), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteurl] = ACTIONS(4825), + [anon_sym_BSLASHfullcite] = ACTIONS(4825), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4825), + [anon_sym_BSLASHcitealt] = ACTIONS(4825), + [anon_sym_BSLASHcitealp] = ACTIONS(4825), + [anon_sym_BSLASHcitetext] = ACTIONS(4825), + [anon_sym_BSLASHparencite] = ACTIONS(4825), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHParencite] = ACTIONS(4825), + [anon_sym_BSLASHfootcite] = ACTIONS(4825), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4825), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4825), + [anon_sym_BSLASHtextcite] = ACTIONS(4825), + [anon_sym_BSLASHTextcite] = ACTIONS(4825), + [anon_sym_BSLASHsmartcite] = ACTIONS(4825), + [anon_sym_BSLASHSmartcite] = ACTIONS(4825), + [anon_sym_BSLASHsupercite] = ACTIONS(4825), + [anon_sym_BSLASHautocite] = ACTIONS(4825), + [anon_sym_BSLASHAutocite] = ACTIONS(4825), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHvolcite] = ACTIONS(4825), + [anon_sym_BSLASHVolcite] = ACTIONS(4825), + [anon_sym_BSLASHpvolcite] = ACTIONS(4825), + [anon_sym_BSLASHPvolcite] = ACTIONS(4825), + [anon_sym_BSLASHfvolcite] = ACTIONS(4825), + [anon_sym_BSLASHftvolcite] = ACTIONS(4825), + [anon_sym_BSLASHsvolcite] = ACTIONS(4825), + [anon_sym_BSLASHSvolcite] = ACTIONS(4825), + [anon_sym_BSLASHtvolcite] = ACTIONS(4825), + [anon_sym_BSLASHTvolcite] = ACTIONS(4825), + [anon_sym_BSLASHavolcite] = ACTIONS(4825), + [anon_sym_BSLASHAvolcite] = ACTIONS(4825), + [anon_sym_BSLASHnotecite] = ACTIONS(4825), + [anon_sym_BSLASHNotecite] = ACTIONS(4825), + [anon_sym_BSLASHpnotecite] = ACTIONS(4825), + [anon_sym_BSLASHPnotecite] = ACTIONS(4825), + [anon_sym_BSLASHfnotecite] = ACTIONS(4825), + [anon_sym_BSLASHlabel] = ACTIONS(4825), + [anon_sym_BSLASHref] = ACTIONS(4825), + [anon_sym_BSLASHeqref] = ACTIONS(4825), + [anon_sym_BSLASHvref] = ACTIONS(4825), + [anon_sym_BSLASHVref] = ACTIONS(4825), + [anon_sym_BSLASHautoref] = ACTIONS(4825), + [anon_sym_BSLASHpageref] = ACTIONS(4825), + [anon_sym_BSLASHcref] = ACTIONS(4825), + [anon_sym_BSLASHCref] = ACTIONS(4825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4823), + [anon_sym_BSLASHnamecref] = ACTIONS(4825), + [anon_sym_BSLASHnameCref] = ACTIONS(4825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4825), + [anon_sym_BSLASHlabelcref] = ACTIONS(4825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4825), + [anon_sym_BSLASHcrefrange] = ACTIONS(4825), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCrefrange] = ACTIONS(4825), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4823), + [anon_sym_BSLASHnewlabel] = ACTIONS(4825), + [anon_sym_BSLASHnewcommand] = ACTIONS(4825), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4825), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4825), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4825), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4823), + [anon_sym_BSLASHdef] = ACTIONS(4825), + [anon_sym_BSLASHlet] = ACTIONS(4825), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4825), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4825), + [anon_sym_BSLASHgls] = ACTIONS(4825), + [anon_sym_BSLASHGls] = ACTIONS(4825), + [anon_sym_BSLASHGLS] = ACTIONS(4825), + [anon_sym_BSLASHglspl] = ACTIONS(4825), + [anon_sym_BSLASHGlspl] = ACTIONS(4825), + [anon_sym_BSLASHGLSpl] = ACTIONS(4825), + [anon_sym_BSLASHglsdisp] = ACTIONS(4825), + [anon_sym_BSLASHglslink] = ACTIONS(4825), + [anon_sym_BSLASHglstext] = ACTIONS(4825), + [anon_sym_BSLASHGlstext] = ACTIONS(4825), + [anon_sym_BSLASHGLStext] = ACTIONS(4825), + [anon_sym_BSLASHglsfirst] = ACTIONS(4825), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4825), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4825), + [anon_sym_BSLASHglsplural] = ACTIONS(4825), + [anon_sym_BSLASHGlsplural] = ACTIONS(4825), + [anon_sym_BSLASHGLSplural] = ACTIONS(4825), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHglsname] = ACTIONS(4825), + [anon_sym_BSLASHGlsname] = ACTIONS(4825), + [anon_sym_BSLASHGLSname] = ACTIONS(4825), + [anon_sym_BSLASHglssymbol] = ACTIONS(4825), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4825), + [anon_sym_BSLASHglsdesc] = ACTIONS(4825), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4825), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4825), + [anon_sym_BSLASHglsuseri] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4825), + [anon_sym_BSLASHglsuserii] = ACTIONS(4825), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4825), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4825), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4825), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4825), + [anon_sym_BSLASHglsuserv] = ACTIONS(4825), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4825), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4825), + [anon_sym_BSLASHglsuservi] = ACTIONS(4825), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4825), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4825), + [anon_sym_BSLASHnewacronym] = ACTIONS(4825), + [anon_sym_BSLASHacrshort] = ACTIONS(4825), + [anon_sym_BSLASHAcrshort] = ACTIONS(4825), + [anon_sym_BSLASHACRshort] = ACTIONS(4825), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4825), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4825), + [anon_sym_BSLASHacrlong] = ACTIONS(4825), + [anon_sym_BSLASHAcrlong] = ACTIONS(4825), + [anon_sym_BSLASHACRlong] = ACTIONS(4825), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4825), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4825), + [anon_sym_BSLASHacrfull] = ACTIONS(4825), + [anon_sym_BSLASHAcrfull] = ACTIONS(4825), + [anon_sym_BSLASHACRfull] = ACTIONS(4825), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4825), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4825), + [anon_sym_BSLASHacs] = ACTIONS(4825), + [anon_sym_BSLASHAcs] = ACTIONS(4825), + [anon_sym_BSLASHacsp] = ACTIONS(4825), + [anon_sym_BSLASHAcsp] = ACTIONS(4825), + [anon_sym_BSLASHacl] = ACTIONS(4825), + [anon_sym_BSLASHAcl] = ACTIONS(4825), + [anon_sym_BSLASHaclp] = ACTIONS(4825), + [anon_sym_BSLASHAclp] = ACTIONS(4825), + [anon_sym_BSLASHacf] = ACTIONS(4825), + [anon_sym_BSLASHAcf] = ACTIONS(4825), + [anon_sym_BSLASHacfp] = ACTIONS(4825), + [anon_sym_BSLASHAcfp] = ACTIONS(4825), + [anon_sym_BSLASHac] = ACTIONS(4825), + [anon_sym_BSLASHAc] = ACTIONS(4825), + [anon_sym_BSLASHacp] = ACTIONS(4825), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4825), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4825), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4825), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4825), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4825), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4825), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4825), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4825), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4825), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4825), + [anon_sym_BSLASHcolor] = ACTIONS(4825), + [anon_sym_BSLASHcolorbox] = ACTIONS(4825), + [anon_sym_BSLASHtextcolor] = ACTIONS(4825), + [anon_sym_BSLASHpagecolor] = ACTIONS(4825), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4825), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4825), + [anon_sym_BSLASHtext] = ACTIONS(4825), + [anon_sym_BSLASHintertext] = ACTIONS(4825), + [anon_sym_shortintertext] = ACTIONS(4825), + }, + [694] = { + [sym_curly_group] = STATE(1105), + [sym_command_name] = ACTIONS(4829), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4829), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_RBRACK] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_EQ] = ACTIONS(4827), + [anon_sym_BSLASHpart] = ACTIONS(4829), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddpart] = ACTIONS(4829), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4827), + [anon_sym_BSLASHchapter] = ACTIONS(4829), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddchap] = ACTIONS(4829), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsection] = ACTIONS(4829), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddsec] = ACTIONS(4829), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubsection] = ACTIONS(4829), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4829), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHparagraph] = ACTIONS(4829), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4829), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4827), + [anon_sym_BSLASHitem] = ACTIONS(4829), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(4829), + [sym_placeholder] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4829), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_CARET] = ACTIONS(4829), + [anon_sym__] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_BANG] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_COLON] = ACTIONS(4829), + [anon_sym_SQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4827), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(4829), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4827), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4827), + [anon_sym_BSLASHbegin] = ACTIONS(4829), + [anon_sym_BSLASHend] = ACTIONS(4829), + [anon_sym_BSLASHusepackage] = ACTIONS(4829), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4829), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4829), + [anon_sym_BSLASHinclude] = ACTIONS(4829), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4829), + [anon_sym_BSLASHinput] = ACTIONS(4829), + [anon_sym_BSLASHsubfile] = ACTIONS(4829), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4829), + [anon_sym_BSLASHbibliography] = ACTIONS(4829), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4829), + [anon_sym_BSLASHincludesvg] = ACTIONS(4829), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4829), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4829), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4829), + [anon_sym_BSLASHimport] = ACTIONS(4829), + [anon_sym_BSLASHsubimport] = ACTIONS(4829), + [anon_sym_BSLASHinputfrom] = ACTIONS(4829), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4829), + [anon_sym_BSLASHincludefrom] = ACTIONS(4829), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4829), + [anon_sym_BSLASHcaption] = ACTIONS(4829), + [anon_sym_BSLASHcite] = ACTIONS(4829), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCite] = ACTIONS(4829), + [anon_sym_BSLASHnocite] = ACTIONS(4829), + [anon_sym_BSLASHcitet] = ACTIONS(4829), + [anon_sym_BSLASHcitep] = ACTIONS(4829), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteauthor] = ACTIONS(4829), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4829), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitetitle] = ACTIONS(4829), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteyear] = ACTIONS(4829), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitedate] = ACTIONS(4829), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteurl] = ACTIONS(4829), + [anon_sym_BSLASHfullcite] = ACTIONS(4829), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4829), + [anon_sym_BSLASHcitealt] = ACTIONS(4829), + [anon_sym_BSLASHcitealp] = ACTIONS(4829), + [anon_sym_BSLASHcitetext] = ACTIONS(4829), + [anon_sym_BSLASHparencite] = ACTIONS(4829), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHParencite] = ACTIONS(4829), + [anon_sym_BSLASHfootcite] = ACTIONS(4829), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4829), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4829), + [anon_sym_BSLASHtextcite] = ACTIONS(4829), + [anon_sym_BSLASHTextcite] = ACTIONS(4829), + [anon_sym_BSLASHsmartcite] = ACTIONS(4829), + [anon_sym_BSLASHSmartcite] = ACTIONS(4829), + [anon_sym_BSLASHsupercite] = ACTIONS(4829), + [anon_sym_BSLASHautocite] = ACTIONS(4829), + [anon_sym_BSLASHAutocite] = ACTIONS(4829), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHvolcite] = ACTIONS(4829), + [anon_sym_BSLASHVolcite] = ACTIONS(4829), + [anon_sym_BSLASHpvolcite] = ACTIONS(4829), + [anon_sym_BSLASHPvolcite] = ACTIONS(4829), + [anon_sym_BSLASHfvolcite] = ACTIONS(4829), + [anon_sym_BSLASHftvolcite] = ACTIONS(4829), + [anon_sym_BSLASHsvolcite] = ACTIONS(4829), + [anon_sym_BSLASHSvolcite] = ACTIONS(4829), + [anon_sym_BSLASHtvolcite] = ACTIONS(4829), + [anon_sym_BSLASHTvolcite] = ACTIONS(4829), + [anon_sym_BSLASHavolcite] = ACTIONS(4829), + [anon_sym_BSLASHAvolcite] = ACTIONS(4829), + [anon_sym_BSLASHnotecite] = ACTIONS(4829), + [anon_sym_BSLASHNotecite] = ACTIONS(4829), + [anon_sym_BSLASHpnotecite] = ACTIONS(4829), + [anon_sym_BSLASHPnotecite] = ACTIONS(4829), + [anon_sym_BSLASHfnotecite] = ACTIONS(4829), + [anon_sym_BSLASHlabel] = ACTIONS(4829), + [anon_sym_BSLASHref] = ACTIONS(4829), + [anon_sym_BSLASHeqref] = ACTIONS(4829), + [anon_sym_BSLASHvref] = ACTIONS(4829), + [anon_sym_BSLASHVref] = ACTIONS(4829), + [anon_sym_BSLASHautoref] = ACTIONS(4829), + [anon_sym_BSLASHpageref] = ACTIONS(4829), + [anon_sym_BSLASHcref] = ACTIONS(4829), + [anon_sym_BSLASHCref] = ACTIONS(4829), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4827), + [anon_sym_BSLASHnamecref] = ACTIONS(4829), + [anon_sym_BSLASHnameCref] = ACTIONS(4829), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4829), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4829), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4829), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4829), + [anon_sym_BSLASHlabelcref] = ACTIONS(4829), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4829), + [anon_sym_BSLASHcrefrange] = ACTIONS(4829), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCrefrange] = ACTIONS(4829), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4827), + [anon_sym_BSLASHnewlabel] = ACTIONS(4829), + [anon_sym_BSLASHnewcommand] = ACTIONS(4829), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4829), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4829), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4829), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4827), + [anon_sym_BSLASHdef] = ACTIONS(4829), + [anon_sym_BSLASHlet] = ACTIONS(4829), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4829), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4829), + [anon_sym_BSLASHgls] = ACTIONS(4829), + [anon_sym_BSLASHGls] = ACTIONS(4829), + [anon_sym_BSLASHGLS] = ACTIONS(4829), + [anon_sym_BSLASHglspl] = ACTIONS(4829), + [anon_sym_BSLASHGlspl] = ACTIONS(4829), + [anon_sym_BSLASHGLSpl] = ACTIONS(4829), + [anon_sym_BSLASHglsdisp] = ACTIONS(4829), + [anon_sym_BSLASHglslink] = ACTIONS(4829), + [anon_sym_BSLASHglstext] = ACTIONS(4829), + [anon_sym_BSLASHGlstext] = ACTIONS(4829), + [anon_sym_BSLASHGLStext] = ACTIONS(4829), + [anon_sym_BSLASHglsfirst] = ACTIONS(4829), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4829), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4829), + [anon_sym_BSLASHglsplural] = ACTIONS(4829), + [anon_sym_BSLASHGlsplural] = ACTIONS(4829), + [anon_sym_BSLASHGLSplural] = ACTIONS(4829), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHglsname] = ACTIONS(4829), + [anon_sym_BSLASHGlsname] = ACTIONS(4829), + [anon_sym_BSLASHGLSname] = ACTIONS(4829), + [anon_sym_BSLASHglssymbol] = ACTIONS(4829), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4829), + [anon_sym_BSLASHglsdesc] = ACTIONS(4829), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4829), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4829), + [anon_sym_BSLASHglsuseri] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4829), + [anon_sym_BSLASHglsuserii] = ACTIONS(4829), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4829), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4829), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4829), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4829), + [anon_sym_BSLASHglsuserv] = ACTIONS(4829), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4829), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4829), + [anon_sym_BSLASHglsuservi] = ACTIONS(4829), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4829), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4829), + [anon_sym_BSLASHnewacronym] = ACTIONS(4829), + [anon_sym_BSLASHacrshort] = ACTIONS(4829), + [anon_sym_BSLASHAcrshort] = ACTIONS(4829), + [anon_sym_BSLASHACRshort] = ACTIONS(4829), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4829), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4829), + [anon_sym_BSLASHacrlong] = ACTIONS(4829), + [anon_sym_BSLASHAcrlong] = ACTIONS(4829), + [anon_sym_BSLASHACRlong] = ACTIONS(4829), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4829), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4829), + [anon_sym_BSLASHacrfull] = ACTIONS(4829), + [anon_sym_BSLASHAcrfull] = ACTIONS(4829), + [anon_sym_BSLASHACRfull] = ACTIONS(4829), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4829), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4829), + [anon_sym_BSLASHacs] = ACTIONS(4829), + [anon_sym_BSLASHAcs] = ACTIONS(4829), + [anon_sym_BSLASHacsp] = ACTIONS(4829), + [anon_sym_BSLASHAcsp] = ACTIONS(4829), + [anon_sym_BSLASHacl] = ACTIONS(4829), + [anon_sym_BSLASHAcl] = ACTIONS(4829), + [anon_sym_BSLASHaclp] = ACTIONS(4829), + [anon_sym_BSLASHAclp] = ACTIONS(4829), + [anon_sym_BSLASHacf] = ACTIONS(4829), + [anon_sym_BSLASHAcf] = ACTIONS(4829), + [anon_sym_BSLASHacfp] = ACTIONS(4829), + [anon_sym_BSLASHAcfp] = ACTIONS(4829), + [anon_sym_BSLASHac] = ACTIONS(4829), + [anon_sym_BSLASHAc] = ACTIONS(4829), + [anon_sym_BSLASHacp] = ACTIONS(4829), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4829), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4829), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4829), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4829), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4829), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4829), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4829), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4829), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4829), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4829), + [anon_sym_BSLASHcolor] = ACTIONS(4829), + [anon_sym_BSLASHcolorbox] = ACTIONS(4829), + [anon_sym_BSLASHtextcolor] = ACTIONS(4829), + [anon_sym_BSLASHpagecolor] = ACTIONS(4829), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4829), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4829), + [anon_sym_BSLASHtext] = ACTIONS(4829), + [anon_sym_BSLASHintertext] = ACTIONS(4829), + [anon_sym_shortintertext] = ACTIONS(4829), + }, + [695] = { + [sym_curly_group] = STATE(1106), + [sym_command_name] = ACTIONS(4833), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_EQ] = ACTIONS(4831), + [anon_sym_BSLASHpart] = ACTIONS(4833), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddpart] = ACTIONS(4833), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4831), + [anon_sym_BSLASHchapter] = ACTIONS(4833), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddchap] = ACTIONS(4833), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsection] = ACTIONS(4833), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddsec] = ACTIONS(4833), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubsection] = ACTIONS(4833), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4833), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHparagraph] = ACTIONS(4833), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4833), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4831), + [anon_sym_BSLASHitem] = ACTIONS(4833), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(4833), + [sym_placeholder] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_CARET] = ACTIONS(4833), + [anon_sym__] = ACTIONS(4833), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_BANG] = ACTIONS(4833), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_COLON] = ACTIONS(4833), + [anon_sym_SQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4831), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4831), + [anon_sym_DOLLAR] = ACTIONS(4833), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4831), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4831), + [anon_sym_BSLASHbegin] = ACTIONS(4833), + [anon_sym_BSLASHend] = ACTIONS(4833), + [anon_sym_BSLASHusepackage] = ACTIONS(4833), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4833), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4833), + [anon_sym_BSLASHinclude] = ACTIONS(4833), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4833), + [anon_sym_BSLASHinput] = ACTIONS(4833), + [anon_sym_BSLASHsubfile] = ACTIONS(4833), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4833), + [anon_sym_BSLASHbibliography] = ACTIONS(4833), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4833), + [anon_sym_BSLASHincludesvg] = ACTIONS(4833), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4833), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4833), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4833), + [anon_sym_BSLASHimport] = ACTIONS(4833), + [anon_sym_BSLASHsubimport] = ACTIONS(4833), + [anon_sym_BSLASHinputfrom] = ACTIONS(4833), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4833), + [anon_sym_BSLASHincludefrom] = ACTIONS(4833), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4833), + [anon_sym_BSLASHcaption] = ACTIONS(4833), + [anon_sym_BSLASHcite] = ACTIONS(4833), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCite] = ACTIONS(4833), + [anon_sym_BSLASHnocite] = ACTIONS(4833), + [anon_sym_BSLASHcitet] = ACTIONS(4833), + [anon_sym_BSLASHcitep] = ACTIONS(4833), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteauthor] = ACTIONS(4833), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4833), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitetitle] = ACTIONS(4833), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteyear] = ACTIONS(4833), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitedate] = ACTIONS(4833), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteurl] = ACTIONS(4833), + [anon_sym_BSLASHfullcite] = ACTIONS(4833), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4833), + [anon_sym_BSLASHcitealt] = ACTIONS(4833), + [anon_sym_BSLASHcitealp] = ACTIONS(4833), + [anon_sym_BSLASHcitetext] = ACTIONS(4833), + [anon_sym_BSLASHparencite] = ACTIONS(4833), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHParencite] = ACTIONS(4833), + [anon_sym_BSLASHfootcite] = ACTIONS(4833), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4833), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4833), + [anon_sym_BSLASHtextcite] = ACTIONS(4833), + [anon_sym_BSLASHTextcite] = ACTIONS(4833), + [anon_sym_BSLASHsmartcite] = ACTIONS(4833), + [anon_sym_BSLASHSmartcite] = ACTIONS(4833), + [anon_sym_BSLASHsupercite] = ACTIONS(4833), + [anon_sym_BSLASHautocite] = ACTIONS(4833), + [anon_sym_BSLASHAutocite] = ACTIONS(4833), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHvolcite] = ACTIONS(4833), + [anon_sym_BSLASHVolcite] = ACTIONS(4833), + [anon_sym_BSLASHpvolcite] = ACTIONS(4833), + [anon_sym_BSLASHPvolcite] = ACTIONS(4833), + [anon_sym_BSLASHfvolcite] = ACTIONS(4833), + [anon_sym_BSLASHftvolcite] = ACTIONS(4833), + [anon_sym_BSLASHsvolcite] = ACTIONS(4833), + [anon_sym_BSLASHSvolcite] = ACTIONS(4833), + [anon_sym_BSLASHtvolcite] = ACTIONS(4833), + [anon_sym_BSLASHTvolcite] = ACTIONS(4833), + [anon_sym_BSLASHavolcite] = ACTIONS(4833), + [anon_sym_BSLASHAvolcite] = ACTIONS(4833), + [anon_sym_BSLASHnotecite] = ACTIONS(4833), + [anon_sym_BSLASHNotecite] = ACTIONS(4833), + [anon_sym_BSLASHpnotecite] = ACTIONS(4833), + [anon_sym_BSLASHPnotecite] = ACTIONS(4833), + [anon_sym_BSLASHfnotecite] = ACTIONS(4833), + [anon_sym_BSLASHlabel] = ACTIONS(4833), + [anon_sym_BSLASHref] = ACTIONS(4833), + [anon_sym_BSLASHeqref] = ACTIONS(4833), + [anon_sym_BSLASHvref] = ACTIONS(4833), + [anon_sym_BSLASHVref] = ACTIONS(4833), + [anon_sym_BSLASHautoref] = ACTIONS(4833), + [anon_sym_BSLASHpageref] = ACTIONS(4833), + [anon_sym_BSLASHcref] = ACTIONS(4833), + [anon_sym_BSLASHCref] = ACTIONS(4833), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4831), + [anon_sym_BSLASHnamecref] = ACTIONS(4833), + [anon_sym_BSLASHnameCref] = ACTIONS(4833), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4833), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4833), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4833), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4833), + [anon_sym_BSLASHlabelcref] = ACTIONS(4833), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4833), + [anon_sym_BSLASHcrefrange] = ACTIONS(4833), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCrefrange] = ACTIONS(4833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4831), + [anon_sym_BSLASHnewlabel] = ACTIONS(4833), + [anon_sym_BSLASHnewcommand] = ACTIONS(4833), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4833), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4833), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4833), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4831), + [anon_sym_BSLASHdef] = ACTIONS(4833), + [anon_sym_BSLASHlet] = ACTIONS(4833), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4833), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4833), + [anon_sym_BSLASHgls] = ACTIONS(4833), + [anon_sym_BSLASHGls] = ACTIONS(4833), + [anon_sym_BSLASHGLS] = ACTIONS(4833), + [anon_sym_BSLASHglspl] = ACTIONS(4833), + [anon_sym_BSLASHGlspl] = ACTIONS(4833), + [anon_sym_BSLASHGLSpl] = ACTIONS(4833), + [anon_sym_BSLASHglsdisp] = ACTIONS(4833), + [anon_sym_BSLASHglslink] = ACTIONS(4833), + [anon_sym_BSLASHglstext] = ACTIONS(4833), + [anon_sym_BSLASHGlstext] = ACTIONS(4833), + [anon_sym_BSLASHGLStext] = ACTIONS(4833), + [anon_sym_BSLASHglsfirst] = ACTIONS(4833), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4833), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4833), + [anon_sym_BSLASHglsplural] = ACTIONS(4833), + [anon_sym_BSLASHGlsplural] = ACTIONS(4833), + [anon_sym_BSLASHGLSplural] = ACTIONS(4833), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHglsname] = ACTIONS(4833), + [anon_sym_BSLASHGlsname] = ACTIONS(4833), + [anon_sym_BSLASHGLSname] = ACTIONS(4833), + [anon_sym_BSLASHglssymbol] = ACTIONS(4833), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4833), + [anon_sym_BSLASHglsdesc] = ACTIONS(4833), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4833), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4833), + [anon_sym_BSLASHglsuseri] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4833), + [anon_sym_BSLASHglsuserii] = ACTIONS(4833), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4833), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4833), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4833), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4833), + [anon_sym_BSLASHglsuserv] = ACTIONS(4833), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4833), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4833), + [anon_sym_BSLASHglsuservi] = ACTIONS(4833), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4833), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4833), + [anon_sym_BSLASHnewacronym] = ACTIONS(4833), + [anon_sym_BSLASHacrshort] = ACTIONS(4833), + [anon_sym_BSLASHAcrshort] = ACTIONS(4833), + [anon_sym_BSLASHACRshort] = ACTIONS(4833), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4833), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4833), + [anon_sym_BSLASHacrlong] = ACTIONS(4833), + [anon_sym_BSLASHAcrlong] = ACTIONS(4833), + [anon_sym_BSLASHACRlong] = ACTIONS(4833), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4833), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4833), + [anon_sym_BSLASHacrfull] = ACTIONS(4833), + [anon_sym_BSLASHAcrfull] = ACTIONS(4833), + [anon_sym_BSLASHACRfull] = ACTIONS(4833), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4833), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4833), + [anon_sym_BSLASHacs] = ACTIONS(4833), + [anon_sym_BSLASHAcs] = ACTIONS(4833), + [anon_sym_BSLASHacsp] = ACTIONS(4833), + [anon_sym_BSLASHAcsp] = ACTIONS(4833), + [anon_sym_BSLASHacl] = ACTIONS(4833), + [anon_sym_BSLASHAcl] = ACTIONS(4833), + [anon_sym_BSLASHaclp] = ACTIONS(4833), + [anon_sym_BSLASHAclp] = ACTIONS(4833), + [anon_sym_BSLASHacf] = ACTIONS(4833), + [anon_sym_BSLASHAcf] = ACTIONS(4833), + [anon_sym_BSLASHacfp] = ACTIONS(4833), + [anon_sym_BSLASHAcfp] = ACTIONS(4833), + [anon_sym_BSLASHac] = ACTIONS(4833), + [anon_sym_BSLASHAc] = ACTIONS(4833), + [anon_sym_BSLASHacp] = ACTIONS(4833), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4833), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4833), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4833), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4833), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4833), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4833), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4833), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4833), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4833), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4833), + [anon_sym_BSLASHcolor] = ACTIONS(4833), + [anon_sym_BSLASHcolorbox] = ACTIONS(4833), + [anon_sym_BSLASHtextcolor] = ACTIONS(4833), + [anon_sym_BSLASHpagecolor] = ACTIONS(4833), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4833), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4833), + [anon_sym_BSLASHtext] = ACTIONS(4833), + [anon_sym_BSLASHintertext] = ACTIONS(4833), + [anon_sym_shortintertext] = ACTIONS(4833), + }, + [696] = { + [sym_curly_group] = STATE(1107), + [sym_command_name] = ACTIONS(4837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4837), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4835), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_RBRACK] = ACTIONS(4835), + [anon_sym_COMMA] = ACTIONS(4835), + [anon_sym_EQ] = ACTIONS(4835), + [anon_sym_BSLASHpart] = ACTIONS(4837), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddpart] = ACTIONS(4837), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4835), + [anon_sym_BSLASHchapter] = ACTIONS(4837), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddchap] = ACTIONS(4837), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsection] = ACTIONS(4837), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddsec] = ACTIONS(4837), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubsection] = ACTIONS(4837), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4837), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHparagraph] = ACTIONS(4837), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4837), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4835), + [anon_sym_BSLASHitem] = ACTIONS(4837), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4835), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(4837), + [sym_placeholder] = ACTIONS(4835), + [anon_sym_PLUS] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4837), + [anon_sym_STAR] = ACTIONS(4837), + [anon_sym_SLASH] = ACTIONS(4837), + [anon_sym_CARET] = ACTIONS(4837), + [anon_sym__] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_BANG] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_COLON] = ACTIONS(4837), + [anon_sym_SQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4835), + [anon_sym_BSLASHbegin] = ACTIONS(4837), + [anon_sym_BSLASHend] = ACTIONS(4837), + [anon_sym_BSLASHusepackage] = ACTIONS(4837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4837), + [anon_sym_BSLASHinclude] = ACTIONS(4837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4837), + [anon_sym_BSLASHinput] = ACTIONS(4837), + [anon_sym_BSLASHsubfile] = ACTIONS(4837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4837), + [anon_sym_BSLASHbibliography] = ACTIONS(4837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4837), + [anon_sym_BSLASHincludesvg] = ACTIONS(4837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4837), + [anon_sym_BSLASHimport] = ACTIONS(4837), + [anon_sym_BSLASHsubimport] = ACTIONS(4837), + [anon_sym_BSLASHinputfrom] = ACTIONS(4837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4837), + [anon_sym_BSLASHincludefrom] = ACTIONS(4837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4837), + [anon_sym_BSLASHcaption] = ACTIONS(4837), + [anon_sym_BSLASHcite] = ACTIONS(4837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCite] = ACTIONS(4837), + [anon_sym_BSLASHnocite] = ACTIONS(4837), + [anon_sym_BSLASHcitet] = ACTIONS(4837), + [anon_sym_BSLASHcitep] = ACTIONS(4837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteauthor] = ACTIONS(4837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitetitle] = ACTIONS(4837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteyear] = ACTIONS(4837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitedate] = ACTIONS(4837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteurl] = ACTIONS(4837), + [anon_sym_BSLASHfullcite] = ACTIONS(4837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4837), + [anon_sym_BSLASHcitealt] = ACTIONS(4837), + [anon_sym_BSLASHcitealp] = ACTIONS(4837), + [anon_sym_BSLASHcitetext] = ACTIONS(4837), + [anon_sym_BSLASHparencite] = ACTIONS(4837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHParencite] = ACTIONS(4837), + [anon_sym_BSLASHfootcite] = ACTIONS(4837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4837), + [anon_sym_BSLASHtextcite] = ACTIONS(4837), + [anon_sym_BSLASHTextcite] = ACTIONS(4837), + [anon_sym_BSLASHsmartcite] = ACTIONS(4837), + [anon_sym_BSLASHSmartcite] = ACTIONS(4837), + [anon_sym_BSLASHsupercite] = ACTIONS(4837), + [anon_sym_BSLASHautocite] = ACTIONS(4837), + [anon_sym_BSLASHAutocite] = ACTIONS(4837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHvolcite] = ACTIONS(4837), + [anon_sym_BSLASHVolcite] = ACTIONS(4837), + [anon_sym_BSLASHpvolcite] = ACTIONS(4837), + [anon_sym_BSLASHPvolcite] = ACTIONS(4837), + [anon_sym_BSLASHfvolcite] = ACTIONS(4837), + [anon_sym_BSLASHftvolcite] = ACTIONS(4837), + [anon_sym_BSLASHsvolcite] = ACTIONS(4837), + [anon_sym_BSLASHSvolcite] = ACTIONS(4837), + [anon_sym_BSLASHtvolcite] = ACTIONS(4837), + [anon_sym_BSLASHTvolcite] = ACTIONS(4837), + [anon_sym_BSLASHavolcite] = ACTIONS(4837), + [anon_sym_BSLASHAvolcite] = ACTIONS(4837), + [anon_sym_BSLASHnotecite] = ACTIONS(4837), + [anon_sym_BSLASHNotecite] = ACTIONS(4837), + [anon_sym_BSLASHpnotecite] = ACTIONS(4837), + [anon_sym_BSLASHPnotecite] = ACTIONS(4837), + [anon_sym_BSLASHfnotecite] = ACTIONS(4837), + [anon_sym_BSLASHlabel] = ACTIONS(4837), + [anon_sym_BSLASHref] = ACTIONS(4837), + [anon_sym_BSLASHeqref] = ACTIONS(4837), + [anon_sym_BSLASHvref] = ACTIONS(4837), + [anon_sym_BSLASHVref] = ACTIONS(4837), + [anon_sym_BSLASHautoref] = ACTIONS(4837), + [anon_sym_BSLASHpageref] = ACTIONS(4837), + [anon_sym_BSLASHcref] = ACTIONS(4837), + [anon_sym_BSLASHCref] = ACTIONS(4837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4835), + [anon_sym_BSLASHnamecref] = ACTIONS(4837), + [anon_sym_BSLASHnameCref] = ACTIONS(4837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4837), + [anon_sym_BSLASHlabelcref] = ACTIONS(4837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4837), + [anon_sym_BSLASHcrefrange] = ACTIONS(4837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCrefrange] = ACTIONS(4837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4835), + [anon_sym_BSLASHnewlabel] = ACTIONS(4837), + [anon_sym_BSLASHnewcommand] = ACTIONS(4837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4835), + [anon_sym_BSLASHdef] = ACTIONS(4837), + [anon_sym_BSLASHlet] = ACTIONS(4837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4837), + [anon_sym_BSLASHgls] = ACTIONS(4837), + [anon_sym_BSLASHGls] = ACTIONS(4837), + [anon_sym_BSLASHGLS] = ACTIONS(4837), + [anon_sym_BSLASHglspl] = ACTIONS(4837), + [anon_sym_BSLASHGlspl] = ACTIONS(4837), + [anon_sym_BSLASHGLSpl] = ACTIONS(4837), + [anon_sym_BSLASHglsdisp] = ACTIONS(4837), + [anon_sym_BSLASHglslink] = ACTIONS(4837), + [anon_sym_BSLASHglstext] = ACTIONS(4837), + [anon_sym_BSLASHGlstext] = ACTIONS(4837), + [anon_sym_BSLASHGLStext] = ACTIONS(4837), + [anon_sym_BSLASHglsfirst] = ACTIONS(4837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4837), + [anon_sym_BSLASHglsplural] = ACTIONS(4837), + [anon_sym_BSLASHGlsplural] = ACTIONS(4837), + [anon_sym_BSLASHGLSplural] = ACTIONS(4837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHglsname] = ACTIONS(4837), + [anon_sym_BSLASHGlsname] = ACTIONS(4837), + [anon_sym_BSLASHGLSname] = ACTIONS(4837), + [anon_sym_BSLASHglssymbol] = ACTIONS(4837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4837), + [anon_sym_BSLASHglsdesc] = ACTIONS(4837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4837), + [anon_sym_BSLASHglsuseri] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4837), + [anon_sym_BSLASHglsuserii] = ACTIONS(4837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4837), + [anon_sym_BSLASHglsuserv] = ACTIONS(4837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4837), + [anon_sym_BSLASHglsuservi] = ACTIONS(4837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4837), + [anon_sym_BSLASHnewacronym] = ACTIONS(4837), + [anon_sym_BSLASHacrshort] = ACTIONS(4837), + [anon_sym_BSLASHAcrshort] = ACTIONS(4837), + [anon_sym_BSLASHACRshort] = ACTIONS(4837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4837), + [anon_sym_BSLASHacrlong] = ACTIONS(4837), + [anon_sym_BSLASHAcrlong] = ACTIONS(4837), + [anon_sym_BSLASHACRlong] = ACTIONS(4837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4837), + [anon_sym_BSLASHacrfull] = ACTIONS(4837), + [anon_sym_BSLASHAcrfull] = ACTIONS(4837), + [anon_sym_BSLASHACRfull] = ACTIONS(4837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4837), + [anon_sym_BSLASHacs] = ACTIONS(4837), + [anon_sym_BSLASHAcs] = ACTIONS(4837), + [anon_sym_BSLASHacsp] = ACTIONS(4837), + [anon_sym_BSLASHAcsp] = ACTIONS(4837), + [anon_sym_BSLASHacl] = ACTIONS(4837), + [anon_sym_BSLASHAcl] = ACTIONS(4837), + [anon_sym_BSLASHaclp] = ACTIONS(4837), + [anon_sym_BSLASHAclp] = ACTIONS(4837), + [anon_sym_BSLASHacf] = ACTIONS(4837), + [anon_sym_BSLASHAcf] = ACTIONS(4837), + [anon_sym_BSLASHacfp] = ACTIONS(4837), + [anon_sym_BSLASHAcfp] = ACTIONS(4837), + [anon_sym_BSLASHac] = ACTIONS(4837), + [anon_sym_BSLASHAc] = ACTIONS(4837), + [anon_sym_BSLASHacp] = ACTIONS(4837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4837), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4837), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4837), + [anon_sym_BSLASHcolor] = ACTIONS(4837), + [anon_sym_BSLASHcolorbox] = ACTIONS(4837), + [anon_sym_BSLASHtextcolor] = ACTIONS(4837), + [anon_sym_BSLASHpagecolor] = ACTIONS(4837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4837), + [anon_sym_BSLASHtext] = ACTIONS(4837), + [anon_sym_BSLASHintertext] = ACTIONS(4837), + [anon_sym_shortintertext] = ACTIONS(4837), + }, + [697] = { + [sym_curly_group] = STATE(1108), + [sym_command_name] = ACTIONS(4841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4841), + [anon_sym_LPAREN] = ACTIONS(4839), + [anon_sym_RPAREN] = ACTIONS(4839), + [anon_sym_LBRACK] = ACTIONS(4839), + [anon_sym_RBRACK] = ACTIONS(4839), + [anon_sym_COMMA] = ACTIONS(4839), + [anon_sym_EQ] = ACTIONS(4839), + [anon_sym_BSLASHpart] = ACTIONS(4841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddpart] = ACTIONS(4841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4839), + [anon_sym_BSLASHchapter] = ACTIONS(4841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddchap] = ACTIONS(4841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsection] = ACTIONS(4841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddsec] = ACTIONS(4841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubsection] = ACTIONS(4841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHparagraph] = ACTIONS(4841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4839), + [anon_sym_BSLASHitem] = ACTIONS(4841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4839), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(4841), + [sym_placeholder] = ACTIONS(4839), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_CARET] = ACTIONS(4841), + [anon_sym__] = ACTIONS(4841), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_COLON] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4839), + [anon_sym_DOLLAR] = ACTIONS(4841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4839), + [anon_sym_BSLASHbegin] = ACTIONS(4841), + [anon_sym_BSLASHend] = ACTIONS(4841), + [anon_sym_BSLASHusepackage] = ACTIONS(4841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4841), + [anon_sym_BSLASHinclude] = ACTIONS(4841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4841), + [anon_sym_BSLASHinput] = ACTIONS(4841), + [anon_sym_BSLASHsubfile] = ACTIONS(4841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4841), + [anon_sym_BSLASHbibliography] = ACTIONS(4841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4841), + [anon_sym_BSLASHincludesvg] = ACTIONS(4841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4841), + [anon_sym_BSLASHimport] = ACTIONS(4841), + [anon_sym_BSLASHsubimport] = ACTIONS(4841), + [anon_sym_BSLASHinputfrom] = ACTIONS(4841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4841), + [anon_sym_BSLASHincludefrom] = ACTIONS(4841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4841), + [anon_sym_BSLASHcaption] = ACTIONS(4841), + [anon_sym_BSLASHcite] = ACTIONS(4841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCite] = ACTIONS(4841), + [anon_sym_BSLASHnocite] = ACTIONS(4841), + [anon_sym_BSLASHcitet] = ACTIONS(4841), + [anon_sym_BSLASHcitep] = ACTIONS(4841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteauthor] = ACTIONS(4841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitetitle] = ACTIONS(4841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteyear] = ACTIONS(4841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitedate] = ACTIONS(4841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteurl] = ACTIONS(4841), + [anon_sym_BSLASHfullcite] = ACTIONS(4841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4841), + [anon_sym_BSLASHcitealt] = ACTIONS(4841), + [anon_sym_BSLASHcitealp] = ACTIONS(4841), + [anon_sym_BSLASHcitetext] = ACTIONS(4841), + [anon_sym_BSLASHparencite] = ACTIONS(4841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHParencite] = ACTIONS(4841), + [anon_sym_BSLASHfootcite] = ACTIONS(4841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4841), + [anon_sym_BSLASHtextcite] = ACTIONS(4841), + [anon_sym_BSLASHTextcite] = ACTIONS(4841), + [anon_sym_BSLASHsmartcite] = ACTIONS(4841), + [anon_sym_BSLASHSmartcite] = ACTIONS(4841), + [anon_sym_BSLASHsupercite] = ACTIONS(4841), + [anon_sym_BSLASHautocite] = ACTIONS(4841), + [anon_sym_BSLASHAutocite] = ACTIONS(4841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHvolcite] = ACTIONS(4841), + [anon_sym_BSLASHVolcite] = ACTIONS(4841), + [anon_sym_BSLASHpvolcite] = ACTIONS(4841), + [anon_sym_BSLASHPvolcite] = ACTIONS(4841), + [anon_sym_BSLASHfvolcite] = ACTIONS(4841), + [anon_sym_BSLASHftvolcite] = ACTIONS(4841), + [anon_sym_BSLASHsvolcite] = ACTIONS(4841), + [anon_sym_BSLASHSvolcite] = ACTIONS(4841), + [anon_sym_BSLASHtvolcite] = ACTIONS(4841), + [anon_sym_BSLASHTvolcite] = ACTIONS(4841), + [anon_sym_BSLASHavolcite] = ACTIONS(4841), + [anon_sym_BSLASHAvolcite] = ACTIONS(4841), + [anon_sym_BSLASHnotecite] = ACTIONS(4841), + [anon_sym_BSLASHNotecite] = ACTIONS(4841), + [anon_sym_BSLASHpnotecite] = ACTIONS(4841), + [anon_sym_BSLASHPnotecite] = ACTIONS(4841), + [anon_sym_BSLASHfnotecite] = ACTIONS(4841), + [anon_sym_BSLASHlabel] = ACTIONS(4841), + [anon_sym_BSLASHref] = ACTIONS(4841), + [anon_sym_BSLASHeqref] = ACTIONS(4841), + [anon_sym_BSLASHvref] = ACTIONS(4841), + [anon_sym_BSLASHVref] = ACTIONS(4841), + [anon_sym_BSLASHautoref] = ACTIONS(4841), + [anon_sym_BSLASHpageref] = ACTIONS(4841), + [anon_sym_BSLASHcref] = ACTIONS(4841), + [anon_sym_BSLASHCref] = ACTIONS(4841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4839), + [anon_sym_BSLASHnamecref] = ACTIONS(4841), + [anon_sym_BSLASHnameCref] = ACTIONS(4841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4841), + [anon_sym_BSLASHlabelcref] = ACTIONS(4841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4841), + [anon_sym_BSLASHcrefrange] = ACTIONS(4841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCrefrange] = ACTIONS(4841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4839), + [anon_sym_BSLASHnewlabel] = ACTIONS(4841), + [anon_sym_BSLASHnewcommand] = ACTIONS(4841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4839), + [anon_sym_BSLASHdef] = ACTIONS(4841), + [anon_sym_BSLASHlet] = ACTIONS(4841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4841), + [anon_sym_BSLASHgls] = ACTIONS(4841), + [anon_sym_BSLASHGls] = ACTIONS(4841), + [anon_sym_BSLASHGLS] = ACTIONS(4841), + [anon_sym_BSLASHglspl] = ACTIONS(4841), + [anon_sym_BSLASHGlspl] = ACTIONS(4841), + [anon_sym_BSLASHGLSpl] = ACTIONS(4841), + [anon_sym_BSLASHglsdisp] = ACTIONS(4841), + [anon_sym_BSLASHglslink] = ACTIONS(4841), + [anon_sym_BSLASHglstext] = ACTIONS(4841), + [anon_sym_BSLASHGlstext] = ACTIONS(4841), + [anon_sym_BSLASHGLStext] = ACTIONS(4841), + [anon_sym_BSLASHglsfirst] = ACTIONS(4841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4841), + [anon_sym_BSLASHglsplural] = ACTIONS(4841), + [anon_sym_BSLASHGlsplural] = ACTIONS(4841), + [anon_sym_BSLASHGLSplural] = ACTIONS(4841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHglsname] = ACTIONS(4841), + [anon_sym_BSLASHGlsname] = ACTIONS(4841), + [anon_sym_BSLASHGLSname] = ACTIONS(4841), + [anon_sym_BSLASHglssymbol] = ACTIONS(4841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4841), + [anon_sym_BSLASHglsdesc] = ACTIONS(4841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4841), + [anon_sym_BSLASHglsuseri] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4841), + [anon_sym_BSLASHglsuserii] = ACTIONS(4841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4841), + [anon_sym_BSLASHglsuserv] = ACTIONS(4841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4841), + [anon_sym_BSLASHglsuservi] = ACTIONS(4841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4841), + [anon_sym_BSLASHnewacronym] = ACTIONS(4841), + [anon_sym_BSLASHacrshort] = ACTIONS(4841), + [anon_sym_BSLASHAcrshort] = ACTIONS(4841), + [anon_sym_BSLASHACRshort] = ACTIONS(4841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4841), + [anon_sym_BSLASHacrlong] = ACTIONS(4841), + [anon_sym_BSLASHAcrlong] = ACTIONS(4841), + [anon_sym_BSLASHACRlong] = ACTIONS(4841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4841), + [anon_sym_BSLASHacrfull] = ACTIONS(4841), + [anon_sym_BSLASHAcrfull] = ACTIONS(4841), + [anon_sym_BSLASHACRfull] = ACTIONS(4841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4841), + [anon_sym_BSLASHacs] = ACTIONS(4841), + [anon_sym_BSLASHAcs] = ACTIONS(4841), + [anon_sym_BSLASHacsp] = ACTIONS(4841), + [anon_sym_BSLASHAcsp] = ACTIONS(4841), + [anon_sym_BSLASHacl] = ACTIONS(4841), + [anon_sym_BSLASHAcl] = ACTIONS(4841), + [anon_sym_BSLASHaclp] = ACTIONS(4841), + [anon_sym_BSLASHAclp] = ACTIONS(4841), + [anon_sym_BSLASHacf] = ACTIONS(4841), + [anon_sym_BSLASHAcf] = ACTIONS(4841), + [anon_sym_BSLASHacfp] = ACTIONS(4841), + [anon_sym_BSLASHAcfp] = ACTIONS(4841), + [anon_sym_BSLASHac] = ACTIONS(4841), + [anon_sym_BSLASHAc] = ACTIONS(4841), + [anon_sym_BSLASHacp] = ACTIONS(4841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4841), + [anon_sym_BSLASHcolor] = ACTIONS(4841), + [anon_sym_BSLASHcolorbox] = ACTIONS(4841), + [anon_sym_BSLASHtextcolor] = ACTIONS(4841), + [anon_sym_BSLASHpagecolor] = ACTIONS(4841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4841), + [anon_sym_BSLASHtext] = ACTIONS(4841), + [anon_sym_BSLASHintertext] = ACTIONS(4841), + [anon_sym_shortintertext] = ACTIONS(4841), + }, + [698] = { + [ts_builtin_sym_end] = ACTIONS(4957), + [sym_command_name] = ACTIONS(4959), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_BSLASHpart] = ACTIONS(5101), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddpart] = ACTIONS(5101), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHchapter] = ACTIONS(5101), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddchap] = ACTIONS(5101), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsection] = ACTIONS(5101), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddsec] = ACTIONS(5101), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHparagraph] = ACTIONS(5101), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHitem] = ACTIONS(5101), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASHbegin] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), + [anon_sym_BSLASHiffalse] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_BSLASHpart] = ACTIONS(4959), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddpart] = ACTIONS(4959), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), + [anon_sym_BSLASHchapter] = ACTIONS(4959), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddchap] = ACTIONS(4959), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsection] = ACTIONS(4959), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddsec] = ACTIONS(4959), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubsection] = ACTIONS(4959), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHparagraph] = ACTIONS(4959), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), + [anon_sym_BSLASHitem] = ACTIONS(4959), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4957), + [anon_sym_RBRACE] = ACTIONS(4957), + [sym_word] = ACTIONS(4959), + [sym_placeholder] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_CARET] = ACTIONS(4959), + [anon_sym__] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_COLON] = ACTIONS(4959), + [anon_sym_SQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), + [anon_sym_DOLLAR] = ACTIONS(4959), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), + [anon_sym_BSLASHbegin] = ACTIONS(4959), + [anon_sym_BSLASHusepackage] = ACTIONS(4959), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), + [anon_sym_BSLASHinclude] = ACTIONS(4959), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), + [anon_sym_BSLASHinput] = ACTIONS(4959), + [anon_sym_BSLASHsubfile] = ACTIONS(4959), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), + [anon_sym_BSLASHbibliography] = ACTIONS(4959), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), + [anon_sym_BSLASHincludesvg] = ACTIONS(4959), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), + [anon_sym_BSLASHimport] = ACTIONS(4959), + [anon_sym_BSLASHsubimport] = ACTIONS(4959), + [anon_sym_BSLASHinputfrom] = ACTIONS(4959), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), + [anon_sym_BSLASHincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHcaption] = ACTIONS(4959), + [anon_sym_BSLASHcite] = ACTIONS(4959), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCite] = ACTIONS(4959), + [anon_sym_BSLASHnocite] = ACTIONS(4959), + [anon_sym_BSLASHcitet] = ACTIONS(4959), + [anon_sym_BSLASHcitep] = ACTIONS(4959), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteauthor] = ACTIONS(4959), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitetitle] = ACTIONS(4959), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteyear] = ACTIONS(4959), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitedate] = ACTIONS(4959), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteurl] = ACTIONS(4959), + [anon_sym_BSLASHfullcite] = ACTIONS(4959), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), + [anon_sym_BSLASHcitealt] = ACTIONS(4959), + [anon_sym_BSLASHcitealp] = ACTIONS(4959), + [anon_sym_BSLASHcitetext] = ACTIONS(4959), + [anon_sym_BSLASHparencite] = ACTIONS(4959), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHParencite] = ACTIONS(4959), + [anon_sym_BSLASHfootcite] = ACTIONS(4959), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), + [anon_sym_BSLASHtextcite] = ACTIONS(4959), + [anon_sym_BSLASHTextcite] = ACTIONS(4959), + [anon_sym_BSLASHsmartcite] = ACTIONS(4959), + [anon_sym_BSLASHSmartcite] = ACTIONS(4959), + [anon_sym_BSLASHsupercite] = ACTIONS(4959), + [anon_sym_BSLASHautocite] = ACTIONS(4959), + [anon_sym_BSLASHAutocite] = ACTIONS(4959), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHvolcite] = ACTIONS(4959), + [anon_sym_BSLASHVolcite] = ACTIONS(4959), + [anon_sym_BSLASHpvolcite] = ACTIONS(4959), + [anon_sym_BSLASHPvolcite] = ACTIONS(4959), + [anon_sym_BSLASHfvolcite] = ACTIONS(4959), + [anon_sym_BSLASHftvolcite] = ACTIONS(4959), + [anon_sym_BSLASHsvolcite] = ACTIONS(4959), + [anon_sym_BSLASHSvolcite] = ACTIONS(4959), + [anon_sym_BSLASHtvolcite] = ACTIONS(4959), + [anon_sym_BSLASHTvolcite] = ACTIONS(4959), + [anon_sym_BSLASHavolcite] = ACTIONS(4959), + [anon_sym_BSLASHAvolcite] = ACTIONS(4959), + [anon_sym_BSLASHnotecite] = ACTIONS(4959), + [anon_sym_BSLASHNotecite] = ACTIONS(4959), + [anon_sym_BSLASHpnotecite] = ACTIONS(4959), + [anon_sym_BSLASHPnotecite] = ACTIONS(4959), + [anon_sym_BSLASHfnotecite] = ACTIONS(4959), + [anon_sym_BSLASHlabel] = ACTIONS(4959), + [anon_sym_BSLASHref] = ACTIONS(4959), + [anon_sym_BSLASHeqref] = ACTIONS(4959), + [anon_sym_BSLASHvref] = ACTIONS(4959), + [anon_sym_BSLASHVref] = ACTIONS(4959), + [anon_sym_BSLASHautoref] = ACTIONS(4959), + [anon_sym_BSLASHpageref] = ACTIONS(4959), + [anon_sym_BSLASHcref] = ACTIONS(4959), + [anon_sym_BSLASHCref] = ACTIONS(4959), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnameCref] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHlabelcref] = ACTIONS(4959), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCrefrange] = ACTIONS(4959), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnewlabel] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), + [anon_sym_BSLASHdef] = ACTIONS(4959), + [anon_sym_BSLASHlet] = ACTIONS(4959), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), + [anon_sym_BSLASHgls] = ACTIONS(4959), + [anon_sym_BSLASHGls] = ACTIONS(4959), + [anon_sym_BSLASHGLS] = ACTIONS(4959), + [anon_sym_BSLASHglspl] = ACTIONS(4959), + [anon_sym_BSLASHGlspl] = ACTIONS(4959), + [anon_sym_BSLASHGLSpl] = ACTIONS(4959), + [anon_sym_BSLASHglsdisp] = ACTIONS(4959), + [anon_sym_BSLASHglslink] = ACTIONS(4959), + [anon_sym_BSLASHglstext] = ACTIONS(4959), + [anon_sym_BSLASHGlstext] = ACTIONS(4959), + [anon_sym_BSLASHGLStext] = ACTIONS(4959), + [anon_sym_BSLASHglsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), + [anon_sym_BSLASHglsplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSplural] = ACTIONS(4959), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHglsname] = ACTIONS(4959), + [anon_sym_BSLASHGlsname] = ACTIONS(4959), + [anon_sym_BSLASHGLSname] = ACTIONS(4959), + [anon_sym_BSLASHglssymbol] = ACTIONS(4959), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), + [anon_sym_BSLASHglsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), + [anon_sym_BSLASHglsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), + [anon_sym_BSLASHglsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), + [anon_sym_BSLASHglsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), + [anon_sym_BSLASHglsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), + [anon_sym_BSLASHnewacronym] = ACTIONS(4959), + [anon_sym_BSLASHacrshort] = ACTIONS(4959), + [anon_sym_BSLASHAcrshort] = ACTIONS(4959), + [anon_sym_BSLASHACRshort] = ACTIONS(4959), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), + [anon_sym_BSLASHacrlong] = ACTIONS(4959), + [anon_sym_BSLASHAcrlong] = ACTIONS(4959), + [anon_sym_BSLASHACRlong] = ACTIONS(4959), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), + [anon_sym_BSLASHacrfull] = ACTIONS(4959), + [anon_sym_BSLASHAcrfull] = ACTIONS(4959), + [anon_sym_BSLASHACRfull] = ACTIONS(4959), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), + [anon_sym_BSLASHacs] = ACTIONS(4959), + [anon_sym_BSLASHAcs] = ACTIONS(4959), + [anon_sym_BSLASHacsp] = ACTIONS(4959), + [anon_sym_BSLASHAcsp] = ACTIONS(4959), + [anon_sym_BSLASHacl] = ACTIONS(4959), + [anon_sym_BSLASHAcl] = ACTIONS(4959), + [anon_sym_BSLASHaclp] = ACTIONS(4959), + [anon_sym_BSLASHAclp] = ACTIONS(4959), + [anon_sym_BSLASHacf] = ACTIONS(4959), + [anon_sym_BSLASHAcf] = ACTIONS(4959), + [anon_sym_BSLASHacfp] = ACTIONS(4959), + [anon_sym_BSLASHAcfp] = ACTIONS(4959), + [anon_sym_BSLASHac] = ACTIONS(4959), + [anon_sym_BSLASHAc] = ACTIONS(4959), + [anon_sym_BSLASHacp] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), + [anon_sym_BSLASHcolor] = ACTIONS(4959), + [anon_sym_BSLASHcolorbox] = ACTIONS(4959), + [anon_sym_BSLASHtextcolor] = ACTIONS(4959), + [anon_sym_BSLASHpagecolor] = ACTIONS(4959), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHtext] = ACTIONS(4959), + [anon_sym_BSLASHintertext] = ACTIONS(4959), + [anon_sym_shortintertext] = ACTIONS(4959), }, - [923] = { - [sym_command_name] = ACTIONS(5093), + [699] = { + [sym_curly_group] = STATE(1109), + [sym_command_name] = ACTIONS(4845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4845), + [anon_sym_LPAREN] = ACTIONS(4843), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_RBRACK] = ACTIONS(4843), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_EQ] = ACTIONS(4843), + [anon_sym_BSLASHpart] = ACTIONS(4845), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddpart] = ACTIONS(4845), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4843), + [anon_sym_BSLASHchapter] = ACTIONS(4845), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddchap] = ACTIONS(4845), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsection] = ACTIONS(4845), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddsec] = ACTIONS(4845), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubsection] = ACTIONS(4845), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4845), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHparagraph] = ACTIONS(4845), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4845), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4843), + [anon_sym_BSLASHitem] = ACTIONS(4845), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4843), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(4845), + [sym_placeholder] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4845), + [anon_sym_SLASH] = ACTIONS(4845), + [anon_sym_CARET] = ACTIONS(4845), + [anon_sym__] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_BANG] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_COLON] = ACTIONS(4845), + [anon_sym_SQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4843), + [anon_sym_BSLASHbegin] = ACTIONS(4845), + [anon_sym_BSLASHend] = ACTIONS(4845), + [anon_sym_BSLASHusepackage] = ACTIONS(4845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4845), + [anon_sym_BSLASHinclude] = ACTIONS(4845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4845), + [anon_sym_BSLASHinput] = ACTIONS(4845), + [anon_sym_BSLASHsubfile] = ACTIONS(4845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4845), + [anon_sym_BSLASHbibliography] = ACTIONS(4845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4845), + [anon_sym_BSLASHincludesvg] = ACTIONS(4845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4845), + [anon_sym_BSLASHimport] = ACTIONS(4845), + [anon_sym_BSLASHsubimport] = ACTIONS(4845), + [anon_sym_BSLASHinputfrom] = ACTIONS(4845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4845), + [anon_sym_BSLASHincludefrom] = ACTIONS(4845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4845), + [anon_sym_BSLASHcaption] = ACTIONS(4845), + [anon_sym_BSLASHcite] = ACTIONS(4845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCite] = ACTIONS(4845), + [anon_sym_BSLASHnocite] = ACTIONS(4845), + [anon_sym_BSLASHcitet] = ACTIONS(4845), + [anon_sym_BSLASHcitep] = ACTIONS(4845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteauthor] = ACTIONS(4845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitetitle] = ACTIONS(4845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteyear] = ACTIONS(4845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitedate] = ACTIONS(4845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteurl] = ACTIONS(4845), + [anon_sym_BSLASHfullcite] = ACTIONS(4845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4845), + [anon_sym_BSLASHcitealt] = ACTIONS(4845), + [anon_sym_BSLASHcitealp] = ACTIONS(4845), + [anon_sym_BSLASHcitetext] = ACTIONS(4845), + [anon_sym_BSLASHparencite] = ACTIONS(4845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHParencite] = ACTIONS(4845), + [anon_sym_BSLASHfootcite] = ACTIONS(4845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4845), + [anon_sym_BSLASHtextcite] = ACTIONS(4845), + [anon_sym_BSLASHTextcite] = ACTIONS(4845), + [anon_sym_BSLASHsmartcite] = ACTIONS(4845), + [anon_sym_BSLASHSmartcite] = ACTIONS(4845), + [anon_sym_BSLASHsupercite] = ACTIONS(4845), + [anon_sym_BSLASHautocite] = ACTIONS(4845), + [anon_sym_BSLASHAutocite] = ACTIONS(4845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHvolcite] = ACTIONS(4845), + [anon_sym_BSLASHVolcite] = ACTIONS(4845), + [anon_sym_BSLASHpvolcite] = ACTIONS(4845), + [anon_sym_BSLASHPvolcite] = ACTIONS(4845), + [anon_sym_BSLASHfvolcite] = ACTIONS(4845), + [anon_sym_BSLASHftvolcite] = ACTIONS(4845), + [anon_sym_BSLASHsvolcite] = ACTIONS(4845), + [anon_sym_BSLASHSvolcite] = ACTIONS(4845), + [anon_sym_BSLASHtvolcite] = ACTIONS(4845), + [anon_sym_BSLASHTvolcite] = ACTIONS(4845), + [anon_sym_BSLASHavolcite] = ACTIONS(4845), + [anon_sym_BSLASHAvolcite] = ACTIONS(4845), + [anon_sym_BSLASHnotecite] = ACTIONS(4845), + [anon_sym_BSLASHNotecite] = ACTIONS(4845), + [anon_sym_BSLASHpnotecite] = ACTIONS(4845), + [anon_sym_BSLASHPnotecite] = ACTIONS(4845), + [anon_sym_BSLASHfnotecite] = ACTIONS(4845), + [anon_sym_BSLASHlabel] = ACTIONS(4845), + [anon_sym_BSLASHref] = ACTIONS(4845), + [anon_sym_BSLASHeqref] = ACTIONS(4845), + [anon_sym_BSLASHvref] = ACTIONS(4845), + [anon_sym_BSLASHVref] = ACTIONS(4845), + [anon_sym_BSLASHautoref] = ACTIONS(4845), + [anon_sym_BSLASHpageref] = ACTIONS(4845), + [anon_sym_BSLASHcref] = ACTIONS(4845), + [anon_sym_BSLASHCref] = ACTIONS(4845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4843), + [anon_sym_BSLASHnamecref] = ACTIONS(4845), + [anon_sym_BSLASHnameCref] = ACTIONS(4845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4845), + [anon_sym_BSLASHlabelcref] = ACTIONS(4845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4845), + [anon_sym_BSLASHcrefrange] = ACTIONS(4845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCrefrange] = ACTIONS(4845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4843), + [anon_sym_BSLASHnewlabel] = ACTIONS(4845), + [anon_sym_BSLASHnewcommand] = ACTIONS(4845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4843), + [anon_sym_BSLASHdef] = ACTIONS(4845), + [anon_sym_BSLASHlet] = ACTIONS(4845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4845), + [anon_sym_BSLASHgls] = ACTIONS(4845), + [anon_sym_BSLASHGls] = ACTIONS(4845), + [anon_sym_BSLASHGLS] = ACTIONS(4845), + [anon_sym_BSLASHglspl] = ACTIONS(4845), + [anon_sym_BSLASHGlspl] = ACTIONS(4845), + [anon_sym_BSLASHGLSpl] = ACTIONS(4845), + [anon_sym_BSLASHglsdisp] = ACTIONS(4845), + [anon_sym_BSLASHglslink] = ACTIONS(4845), + [anon_sym_BSLASHglstext] = ACTIONS(4845), + [anon_sym_BSLASHGlstext] = ACTIONS(4845), + [anon_sym_BSLASHGLStext] = ACTIONS(4845), + [anon_sym_BSLASHglsfirst] = ACTIONS(4845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4845), + [anon_sym_BSLASHglsplural] = ACTIONS(4845), + [anon_sym_BSLASHGlsplural] = ACTIONS(4845), + [anon_sym_BSLASHGLSplural] = ACTIONS(4845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHglsname] = ACTIONS(4845), + [anon_sym_BSLASHGlsname] = ACTIONS(4845), + [anon_sym_BSLASHGLSname] = ACTIONS(4845), + [anon_sym_BSLASHglssymbol] = ACTIONS(4845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4845), + [anon_sym_BSLASHglsdesc] = ACTIONS(4845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4845), + [anon_sym_BSLASHglsuseri] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4845), + [anon_sym_BSLASHglsuserii] = ACTIONS(4845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4845), + [anon_sym_BSLASHglsuserv] = ACTIONS(4845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4845), + [anon_sym_BSLASHglsuservi] = ACTIONS(4845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4845), + [anon_sym_BSLASHnewacronym] = ACTIONS(4845), + [anon_sym_BSLASHacrshort] = ACTIONS(4845), + [anon_sym_BSLASHAcrshort] = ACTIONS(4845), + [anon_sym_BSLASHACRshort] = ACTIONS(4845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4845), + [anon_sym_BSLASHacrlong] = ACTIONS(4845), + [anon_sym_BSLASHAcrlong] = ACTIONS(4845), + [anon_sym_BSLASHACRlong] = ACTIONS(4845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4845), + [anon_sym_BSLASHacrfull] = ACTIONS(4845), + [anon_sym_BSLASHAcrfull] = ACTIONS(4845), + [anon_sym_BSLASHACRfull] = ACTIONS(4845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4845), + [anon_sym_BSLASHacs] = ACTIONS(4845), + [anon_sym_BSLASHAcs] = ACTIONS(4845), + [anon_sym_BSLASHacsp] = ACTIONS(4845), + [anon_sym_BSLASHAcsp] = ACTIONS(4845), + [anon_sym_BSLASHacl] = ACTIONS(4845), + [anon_sym_BSLASHAcl] = ACTIONS(4845), + [anon_sym_BSLASHaclp] = ACTIONS(4845), + [anon_sym_BSLASHAclp] = ACTIONS(4845), + [anon_sym_BSLASHacf] = ACTIONS(4845), + [anon_sym_BSLASHAcf] = ACTIONS(4845), + [anon_sym_BSLASHacfp] = ACTIONS(4845), + [anon_sym_BSLASHAcfp] = ACTIONS(4845), + [anon_sym_BSLASHac] = ACTIONS(4845), + [anon_sym_BSLASHAc] = ACTIONS(4845), + [anon_sym_BSLASHacp] = ACTIONS(4845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4845), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4845), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4845), + [anon_sym_BSLASHcolor] = ACTIONS(4845), + [anon_sym_BSLASHcolorbox] = ACTIONS(4845), + [anon_sym_BSLASHtextcolor] = ACTIONS(4845), + [anon_sym_BSLASHpagecolor] = ACTIONS(4845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4845), + [anon_sym_BSLASHtext] = ACTIONS(4845), + [anon_sym_BSLASHintertext] = ACTIONS(4845), + [anon_sym_shortintertext] = ACTIONS(4845), + }, + [700] = { + [sym_curly_group] = STATE(1110), + [sym_command_name] = ACTIONS(4849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4849), + [anon_sym_LPAREN] = ACTIONS(4847), + [anon_sym_RPAREN] = ACTIONS(4847), + [anon_sym_LBRACK] = ACTIONS(4847), + [anon_sym_RBRACK] = ACTIONS(4847), + [anon_sym_COMMA] = ACTIONS(4847), + [anon_sym_EQ] = ACTIONS(4847), + [anon_sym_BSLASHpart] = ACTIONS(4849), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddpart] = ACTIONS(4849), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4847), + [anon_sym_BSLASHchapter] = ACTIONS(4849), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddchap] = ACTIONS(4849), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsection] = ACTIONS(4849), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddsec] = ACTIONS(4849), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubsection] = ACTIONS(4849), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4849), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHparagraph] = ACTIONS(4849), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4849), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4847), + [anon_sym_BSLASHitem] = ACTIONS(4849), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4847), + [anon_sym_LBRACE] = ACTIONS(223), + [sym_word] = ACTIONS(4849), + [sym_placeholder] = ACTIONS(4847), + [anon_sym_PLUS] = ACTIONS(4849), + [anon_sym_DASH] = ACTIONS(4849), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_SLASH] = ACTIONS(4849), + [anon_sym_CARET] = ACTIONS(4849), + [anon_sym__] = ACTIONS(4849), + [anon_sym_LT] = ACTIONS(4849), + [anon_sym_GT] = ACTIONS(4849), + [anon_sym_BANG] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4849), + [anon_sym_COLON] = ACTIONS(4849), + [anon_sym_SQUOTE] = ACTIONS(4849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4847), + [anon_sym_DOLLAR] = ACTIONS(4849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4847), + [anon_sym_BSLASHbegin] = ACTIONS(4849), + [anon_sym_BSLASHend] = ACTIONS(4849), + [anon_sym_BSLASHusepackage] = ACTIONS(4849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4849), + [anon_sym_BSLASHinclude] = ACTIONS(4849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4849), + [anon_sym_BSLASHinput] = ACTIONS(4849), + [anon_sym_BSLASHsubfile] = ACTIONS(4849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4849), + [anon_sym_BSLASHbibliography] = ACTIONS(4849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4849), + [anon_sym_BSLASHincludesvg] = ACTIONS(4849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4849), + [anon_sym_BSLASHimport] = ACTIONS(4849), + [anon_sym_BSLASHsubimport] = ACTIONS(4849), + [anon_sym_BSLASHinputfrom] = ACTIONS(4849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4849), + [anon_sym_BSLASHincludefrom] = ACTIONS(4849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4849), + [anon_sym_BSLASHcaption] = ACTIONS(4849), + [anon_sym_BSLASHcite] = ACTIONS(4849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCite] = ACTIONS(4849), + [anon_sym_BSLASHnocite] = ACTIONS(4849), + [anon_sym_BSLASHcitet] = ACTIONS(4849), + [anon_sym_BSLASHcitep] = ACTIONS(4849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteauthor] = ACTIONS(4849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitetitle] = ACTIONS(4849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteyear] = ACTIONS(4849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitedate] = ACTIONS(4849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteurl] = ACTIONS(4849), + [anon_sym_BSLASHfullcite] = ACTIONS(4849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4849), + [anon_sym_BSLASHcitealt] = ACTIONS(4849), + [anon_sym_BSLASHcitealp] = ACTIONS(4849), + [anon_sym_BSLASHcitetext] = ACTIONS(4849), + [anon_sym_BSLASHparencite] = ACTIONS(4849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHParencite] = ACTIONS(4849), + [anon_sym_BSLASHfootcite] = ACTIONS(4849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4849), + [anon_sym_BSLASHtextcite] = ACTIONS(4849), + [anon_sym_BSLASHTextcite] = ACTIONS(4849), + [anon_sym_BSLASHsmartcite] = ACTIONS(4849), + [anon_sym_BSLASHSmartcite] = ACTIONS(4849), + [anon_sym_BSLASHsupercite] = ACTIONS(4849), + [anon_sym_BSLASHautocite] = ACTIONS(4849), + [anon_sym_BSLASHAutocite] = ACTIONS(4849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHvolcite] = ACTIONS(4849), + [anon_sym_BSLASHVolcite] = ACTIONS(4849), + [anon_sym_BSLASHpvolcite] = ACTIONS(4849), + [anon_sym_BSLASHPvolcite] = ACTIONS(4849), + [anon_sym_BSLASHfvolcite] = ACTIONS(4849), + [anon_sym_BSLASHftvolcite] = ACTIONS(4849), + [anon_sym_BSLASHsvolcite] = ACTIONS(4849), + [anon_sym_BSLASHSvolcite] = ACTIONS(4849), + [anon_sym_BSLASHtvolcite] = ACTIONS(4849), + [anon_sym_BSLASHTvolcite] = ACTIONS(4849), + [anon_sym_BSLASHavolcite] = ACTIONS(4849), + [anon_sym_BSLASHAvolcite] = ACTIONS(4849), + [anon_sym_BSLASHnotecite] = ACTIONS(4849), + [anon_sym_BSLASHNotecite] = ACTIONS(4849), + [anon_sym_BSLASHpnotecite] = ACTIONS(4849), + [anon_sym_BSLASHPnotecite] = ACTIONS(4849), + [anon_sym_BSLASHfnotecite] = ACTIONS(4849), + [anon_sym_BSLASHlabel] = ACTIONS(4849), + [anon_sym_BSLASHref] = ACTIONS(4849), + [anon_sym_BSLASHeqref] = ACTIONS(4849), + [anon_sym_BSLASHvref] = ACTIONS(4849), + [anon_sym_BSLASHVref] = ACTIONS(4849), + [anon_sym_BSLASHautoref] = ACTIONS(4849), + [anon_sym_BSLASHpageref] = ACTIONS(4849), + [anon_sym_BSLASHcref] = ACTIONS(4849), + [anon_sym_BSLASHCref] = ACTIONS(4849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4847), + [anon_sym_BSLASHnamecref] = ACTIONS(4849), + [anon_sym_BSLASHnameCref] = ACTIONS(4849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4849), + [anon_sym_BSLASHlabelcref] = ACTIONS(4849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4849), + [anon_sym_BSLASHcrefrange] = ACTIONS(4849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCrefrange] = ACTIONS(4849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4847), + [anon_sym_BSLASHnewlabel] = ACTIONS(4849), + [anon_sym_BSLASHnewcommand] = ACTIONS(4849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4847), + [anon_sym_BSLASHdef] = ACTIONS(4849), + [anon_sym_BSLASHlet] = ACTIONS(4849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4849), + [anon_sym_BSLASHgls] = ACTIONS(4849), + [anon_sym_BSLASHGls] = ACTIONS(4849), + [anon_sym_BSLASHGLS] = ACTIONS(4849), + [anon_sym_BSLASHglspl] = ACTIONS(4849), + [anon_sym_BSLASHGlspl] = ACTIONS(4849), + [anon_sym_BSLASHGLSpl] = ACTIONS(4849), + [anon_sym_BSLASHglsdisp] = ACTIONS(4849), + [anon_sym_BSLASHglslink] = ACTIONS(4849), + [anon_sym_BSLASHglstext] = ACTIONS(4849), + [anon_sym_BSLASHGlstext] = ACTIONS(4849), + [anon_sym_BSLASHGLStext] = ACTIONS(4849), + [anon_sym_BSLASHglsfirst] = ACTIONS(4849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4849), + [anon_sym_BSLASHglsplural] = ACTIONS(4849), + [anon_sym_BSLASHGlsplural] = ACTIONS(4849), + [anon_sym_BSLASHGLSplural] = ACTIONS(4849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHglsname] = ACTIONS(4849), + [anon_sym_BSLASHGlsname] = ACTIONS(4849), + [anon_sym_BSLASHGLSname] = ACTIONS(4849), + [anon_sym_BSLASHglssymbol] = ACTIONS(4849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4849), + [anon_sym_BSLASHglsdesc] = ACTIONS(4849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4849), + [anon_sym_BSLASHglsuseri] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4849), + [anon_sym_BSLASHglsuserii] = ACTIONS(4849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4849), + [anon_sym_BSLASHglsuserv] = ACTIONS(4849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4849), + [anon_sym_BSLASHglsuservi] = ACTIONS(4849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4849), + [anon_sym_BSLASHnewacronym] = ACTIONS(4849), + [anon_sym_BSLASHacrshort] = ACTIONS(4849), + [anon_sym_BSLASHAcrshort] = ACTIONS(4849), + [anon_sym_BSLASHACRshort] = ACTIONS(4849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4849), + [anon_sym_BSLASHacrlong] = ACTIONS(4849), + [anon_sym_BSLASHAcrlong] = ACTIONS(4849), + [anon_sym_BSLASHACRlong] = ACTIONS(4849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4849), + [anon_sym_BSLASHacrfull] = ACTIONS(4849), + [anon_sym_BSLASHAcrfull] = ACTIONS(4849), + [anon_sym_BSLASHACRfull] = ACTIONS(4849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4849), + [anon_sym_BSLASHacs] = ACTIONS(4849), + [anon_sym_BSLASHAcs] = ACTIONS(4849), + [anon_sym_BSLASHacsp] = ACTIONS(4849), + [anon_sym_BSLASHAcsp] = ACTIONS(4849), + [anon_sym_BSLASHacl] = ACTIONS(4849), + [anon_sym_BSLASHAcl] = ACTIONS(4849), + [anon_sym_BSLASHaclp] = ACTIONS(4849), + [anon_sym_BSLASHAclp] = ACTIONS(4849), + [anon_sym_BSLASHacf] = ACTIONS(4849), + [anon_sym_BSLASHAcf] = ACTIONS(4849), + [anon_sym_BSLASHacfp] = ACTIONS(4849), + [anon_sym_BSLASHAcfp] = ACTIONS(4849), + [anon_sym_BSLASHac] = ACTIONS(4849), + [anon_sym_BSLASHAc] = ACTIONS(4849), + [anon_sym_BSLASHacp] = ACTIONS(4849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4849), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4849), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4849), + [anon_sym_BSLASHcolor] = ACTIONS(4849), + [anon_sym_BSLASHcolorbox] = ACTIONS(4849), + [anon_sym_BSLASHtextcolor] = ACTIONS(4849), + [anon_sym_BSLASHpagecolor] = ACTIONS(4849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4849), + [anon_sym_BSLASHtext] = ACTIONS(4849), + [anon_sym_BSLASHintertext] = ACTIONS(4849), + [anon_sym_shortintertext] = ACTIONS(4849), + }, + [701] = { + [ts_builtin_sym_end] = ACTIONS(4961), + [sym_command_name] = ACTIONS(4963), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_BSLASHpart] = ACTIONS(5093), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddpart] = ACTIONS(5093), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHchapter] = ACTIONS(5093), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddchap] = ACTIONS(5093), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsection] = ACTIONS(5093), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddsec] = ACTIONS(5093), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHparagraph] = ACTIONS(5093), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHitem] = ACTIONS(5093), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASHbegin] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHiffalse] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_RBRACK] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_EQ] = ACTIONS(4961), + [anon_sym_BSLASHpart] = ACTIONS(4963), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddpart] = ACTIONS(4963), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4961), + [anon_sym_BSLASHchapter] = ACTIONS(4963), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddchap] = ACTIONS(4963), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsection] = ACTIONS(4963), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddsec] = ACTIONS(4963), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubsection] = ACTIONS(4963), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4963), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHparagraph] = ACTIONS(4963), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4963), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4961), + [anon_sym_BSLASHitem] = ACTIONS(4963), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4961), + [anon_sym_LBRACE] = ACTIONS(4961), + [anon_sym_RBRACE] = ACTIONS(4961), + [sym_word] = ACTIONS(4963), + [sym_placeholder] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), + [anon_sym__] = ACTIONS(4963), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_COLON] = ACTIONS(4963), + [anon_sym_SQUOTE] = ACTIONS(4963), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), + [anon_sym_DOLLAR] = ACTIONS(4963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), + [anon_sym_BSLASHbegin] = ACTIONS(4963), + [anon_sym_BSLASHusepackage] = ACTIONS(4963), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), + [anon_sym_BSLASHinclude] = ACTIONS(4963), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), + [anon_sym_BSLASHinput] = ACTIONS(4963), + [anon_sym_BSLASHsubfile] = ACTIONS(4963), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), + [anon_sym_BSLASHbibliography] = ACTIONS(4963), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), + [anon_sym_BSLASHincludesvg] = ACTIONS(4963), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), + [anon_sym_BSLASHimport] = ACTIONS(4963), + [anon_sym_BSLASHsubimport] = ACTIONS(4963), + [anon_sym_BSLASHinputfrom] = ACTIONS(4963), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), + [anon_sym_BSLASHincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHcaption] = ACTIONS(4963), + [anon_sym_BSLASHcite] = ACTIONS(4963), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCite] = ACTIONS(4963), + [anon_sym_BSLASHnocite] = ACTIONS(4963), + [anon_sym_BSLASHcitet] = ACTIONS(4963), + [anon_sym_BSLASHcitep] = ACTIONS(4963), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteauthor] = ACTIONS(4963), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitetitle] = ACTIONS(4963), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteyear] = ACTIONS(4963), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitedate] = ACTIONS(4963), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteurl] = ACTIONS(4963), + [anon_sym_BSLASHfullcite] = ACTIONS(4963), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), + [anon_sym_BSLASHcitealt] = ACTIONS(4963), + [anon_sym_BSLASHcitealp] = ACTIONS(4963), + [anon_sym_BSLASHcitetext] = ACTIONS(4963), + [anon_sym_BSLASHparencite] = ACTIONS(4963), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHParencite] = ACTIONS(4963), + [anon_sym_BSLASHfootcite] = ACTIONS(4963), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), + [anon_sym_BSLASHtextcite] = ACTIONS(4963), + [anon_sym_BSLASHTextcite] = ACTIONS(4963), + [anon_sym_BSLASHsmartcite] = ACTIONS(4963), + [anon_sym_BSLASHSmartcite] = ACTIONS(4963), + [anon_sym_BSLASHsupercite] = ACTIONS(4963), + [anon_sym_BSLASHautocite] = ACTIONS(4963), + [anon_sym_BSLASHAutocite] = ACTIONS(4963), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHvolcite] = ACTIONS(4963), + [anon_sym_BSLASHVolcite] = ACTIONS(4963), + [anon_sym_BSLASHpvolcite] = ACTIONS(4963), + [anon_sym_BSLASHPvolcite] = ACTIONS(4963), + [anon_sym_BSLASHfvolcite] = ACTIONS(4963), + [anon_sym_BSLASHftvolcite] = ACTIONS(4963), + [anon_sym_BSLASHsvolcite] = ACTIONS(4963), + [anon_sym_BSLASHSvolcite] = ACTIONS(4963), + [anon_sym_BSLASHtvolcite] = ACTIONS(4963), + [anon_sym_BSLASHTvolcite] = ACTIONS(4963), + [anon_sym_BSLASHavolcite] = ACTIONS(4963), + [anon_sym_BSLASHAvolcite] = ACTIONS(4963), + [anon_sym_BSLASHnotecite] = ACTIONS(4963), + [anon_sym_BSLASHNotecite] = ACTIONS(4963), + [anon_sym_BSLASHpnotecite] = ACTIONS(4963), + [anon_sym_BSLASHPnotecite] = ACTIONS(4963), + [anon_sym_BSLASHfnotecite] = ACTIONS(4963), + [anon_sym_BSLASHlabel] = ACTIONS(4963), + [anon_sym_BSLASHref] = ACTIONS(4963), + [anon_sym_BSLASHeqref] = ACTIONS(4963), + [anon_sym_BSLASHvref] = ACTIONS(4963), + [anon_sym_BSLASHVref] = ACTIONS(4963), + [anon_sym_BSLASHautoref] = ACTIONS(4963), + [anon_sym_BSLASHpageref] = ACTIONS(4963), + [anon_sym_BSLASHcref] = ACTIONS(4963), + [anon_sym_BSLASHCref] = ACTIONS(4963), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnameCref] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHlabelcref] = ACTIONS(4963), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCrefrange] = ACTIONS(4963), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnewlabel] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), + [anon_sym_BSLASHdef] = ACTIONS(4963), + [anon_sym_BSLASHlet] = ACTIONS(4963), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), + [anon_sym_BSLASHgls] = ACTIONS(4963), + [anon_sym_BSLASHGls] = ACTIONS(4963), + [anon_sym_BSLASHGLS] = ACTIONS(4963), + [anon_sym_BSLASHglspl] = ACTIONS(4963), + [anon_sym_BSLASHGlspl] = ACTIONS(4963), + [anon_sym_BSLASHGLSpl] = ACTIONS(4963), + [anon_sym_BSLASHglsdisp] = ACTIONS(4963), + [anon_sym_BSLASHglslink] = ACTIONS(4963), + [anon_sym_BSLASHglstext] = ACTIONS(4963), + [anon_sym_BSLASHGlstext] = ACTIONS(4963), + [anon_sym_BSLASHGLStext] = ACTIONS(4963), + [anon_sym_BSLASHglsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), + [anon_sym_BSLASHglsplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSplural] = ACTIONS(4963), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHglsname] = ACTIONS(4963), + [anon_sym_BSLASHGlsname] = ACTIONS(4963), + [anon_sym_BSLASHGLSname] = ACTIONS(4963), + [anon_sym_BSLASHglssymbol] = ACTIONS(4963), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), + [anon_sym_BSLASHglsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), + [anon_sym_BSLASHglsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), + [anon_sym_BSLASHglsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), + [anon_sym_BSLASHglsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), + [anon_sym_BSLASHglsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), + [anon_sym_BSLASHnewacronym] = ACTIONS(4963), + [anon_sym_BSLASHacrshort] = ACTIONS(4963), + [anon_sym_BSLASHAcrshort] = ACTIONS(4963), + [anon_sym_BSLASHACRshort] = ACTIONS(4963), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), + [anon_sym_BSLASHacrlong] = ACTIONS(4963), + [anon_sym_BSLASHAcrlong] = ACTIONS(4963), + [anon_sym_BSLASHACRlong] = ACTIONS(4963), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), + [anon_sym_BSLASHacrfull] = ACTIONS(4963), + [anon_sym_BSLASHAcrfull] = ACTIONS(4963), + [anon_sym_BSLASHACRfull] = ACTIONS(4963), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), + [anon_sym_BSLASHacs] = ACTIONS(4963), + [anon_sym_BSLASHAcs] = ACTIONS(4963), + [anon_sym_BSLASHacsp] = ACTIONS(4963), + [anon_sym_BSLASHAcsp] = ACTIONS(4963), + [anon_sym_BSLASHacl] = ACTIONS(4963), + [anon_sym_BSLASHAcl] = ACTIONS(4963), + [anon_sym_BSLASHaclp] = ACTIONS(4963), + [anon_sym_BSLASHAclp] = ACTIONS(4963), + [anon_sym_BSLASHacf] = ACTIONS(4963), + [anon_sym_BSLASHAcf] = ACTIONS(4963), + [anon_sym_BSLASHacfp] = ACTIONS(4963), + [anon_sym_BSLASHAcfp] = ACTIONS(4963), + [anon_sym_BSLASHac] = ACTIONS(4963), + [anon_sym_BSLASHAc] = ACTIONS(4963), + [anon_sym_BSLASHacp] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), + [anon_sym_BSLASHcolor] = ACTIONS(4963), + [anon_sym_BSLASHcolorbox] = ACTIONS(4963), + [anon_sym_BSLASHtextcolor] = ACTIONS(4963), + [anon_sym_BSLASHpagecolor] = ACTIONS(4963), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), + [anon_sym_BSLASHtext] = ACTIONS(4963), + [anon_sym_BSLASHintertext] = ACTIONS(4963), + [anon_sym_shortintertext] = ACTIONS(4963), + }, + [702] = { + [sym_brack_group_text] = STATE(1012), + [sym_command_name] = ACTIONS(4879), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4877), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4931), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_COMMA] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_BSLASHpart] = ACTIONS(4879), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddpart] = ACTIONS(4879), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4877), + [anon_sym_BSLASHchapter] = ACTIONS(4879), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddchap] = ACTIONS(4879), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsection] = ACTIONS(4879), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddsec] = ACTIONS(4879), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubsection] = ACTIONS(4879), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4879), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHparagraph] = ACTIONS(4879), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4879), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4877), + [anon_sym_BSLASHitem] = ACTIONS(4879), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4877), + [sym_word] = ACTIONS(4879), + [sym_placeholder] = ACTIONS(4877), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4879), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_CARET] = ACTIONS(4879), + [anon_sym__] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_COLON] = ACTIONS(4879), + [anon_sym_SQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(4879), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), + [anon_sym_BSLASHbegin] = ACTIONS(4879), + [anon_sym_BSLASHusepackage] = ACTIONS(4879), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), + [anon_sym_BSLASHinclude] = ACTIONS(4879), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), + [anon_sym_BSLASHinput] = ACTIONS(4879), + [anon_sym_BSLASHsubfile] = ACTIONS(4879), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), + [anon_sym_BSLASHbibliography] = ACTIONS(4879), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), + [anon_sym_BSLASHincludesvg] = ACTIONS(4879), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), + [anon_sym_BSLASHimport] = ACTIONS(4879), + [anon_sym_BSLASHsubimport] = ACTIONS(4879), + [anon_sym_BSLASHinputfrom] = ACTIONS(4879), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), + [anon_sym_BSLASHincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHcaption] = ACTIONS(4879), + [anon_sym_BSLASHcite] = ACTIONS(4879), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCite] = ACTIONS(4879), + [anon_sym_BSLASHnocite] = ACTIONS(4879), + [anon_sym_BSLASHcitet] = ACTIONS(4879), + [anon_sym_BSLASHcitep] = ACTIONS(4879), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteauthor] = ACTIONS(4879), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitetitle] = ACTIONS(4879), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteyear] = ACTIONS(4879), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitedate] = ACTIONS(4879), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteurl] = ACTIONS(4879), + [anon_sym_BSLASHfullcite] = ACTIONS(4879), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), + [anon_sym_BSLASHcitealt] = ACTIONS(4879), + [anon_sym_BSLASHcitealp] = ACTIONS(4879), + [anon_sym_BSLASHcitetext] = ACTIONS(4879), + [anon_sym_BSLASHparencite] = ACTIONS(4879), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHParencite] = ACTIONS(4879), + [anon_sym_BSLASHfootcite] = ACTIONS(4879), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), + [anon_sym_BSLASHtextcite] = ACTIONS(4879), + [anon_sym_BSLASHTextcite] = ACTIONS(4879), + [anon_sym_BSLASHsmartcite] = ACTIONS(4879), + [anon_sym_BSLASHSmartcite] = ACTIONS(4879), + [anon_sym_BSLASHsupercite] = ACTIONS(4879), + [anon_sym_BSLASHautocite] = ACTIONS(4879), + [anon_sym_BSLASHAutocite] = ACTIONS(4879), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHvolcite] = ACTIONS(4879), + [anon_sym_BSLASHVolcite] = ACTIONS(4879), + [anon_sym_BSLASHpvolcite] = ACTIONS(4879), + [anon_sym_BSLASHPvolcite] = ACTIONS(4879), + [anon_sym_BSLASHfvolcite] = ACTIONS(4879), + [anon_sym_BSLASHftvolcite] = ACTIONS(4879), + [anon_sym_BSLASHsvolcite] = ACTIONS(4879), + [anon_sym_BSLASHSvolcite] = ACTIONS(4879), + [anon_sym_BSLASHtvolcite] = ACTIONS(4879), + [anon_sym_BSLASHTvolcite] = ACTIONS(4879), + [anon_sym_BSLASHavolcite] = ACTIONS(4879), + [anon_sym_BSLASHAvolcite] = ACTIONS(4879), + [anon_sym_BSLASHnotecite] = ACTIONS(4879), + [anon_sym_BSLASHNotecite] = ACTIONS(4879), + [anon_sym_BSLASHpnotecite] = ACTIONS(4879), + [anon_sym_BSLASHPnotecite] = ACTIONS(4879), + [anon_sym_BSLASHfnotecite] = ACTIONS(4879), + [anon_sym_BSLASHlabel] = ACTIONS(4879), + [anon_sym_BSLASHref] = ACTIONS(4879), + [anon_sym_BSLASHeqref] = ACTIONS(4879), + [anon_sym_BSLASHvref] = ACTIONS(4879), + [anon_sym_BSLASHVref] = ACTIONS(4879), + [anon_sym_BSLASHautoref] = ACTIONS(4879), + [anon_sym_BSLASHpageref] = ACTIONS(4879), + [anon_sym_BSLASHcref] = ACTIONS(4879), + [anon_sym_BSLASHCref] = ACTIONS(4879), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnameCref] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHlabelcref] = ACTIONS(4879), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCrefrange] = ACTIONS(4879), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnewlabel] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), + [anon_sym_BSLASHdef] = ACTIONS(4879), + [anon_sym_BSLASHlet] = ACTIONS(4879), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), + [anon_sym_BSLASHgls] = ACTIONS(4879), + [anon_sym_BSLASHGls] = ACTIONS(4879), + [anon_sym_BSLASHGLS] = ACTIONS(4879), + [anon_sym_BSLASHglspl] = ACTIONS(4879), + [anon_sym_BSLASHGlspl] = ACTIONS(4879), + [anon_sym_BSLASHGLSpl] = ACTIONS(4879), + [anon_sym_BSLASHglsdisp] = ACTIONS(4879), + [anon_sym_BSLASHglslink] = ACTIONS(4879), + [anon_sym_BSLASHglstext] = ACTIONS(4879), + [anon_sym_BSLASHGlstext] = ACTIONS(4879), + [anon_sym_BSLASHGLStext] = ACTIONS(4879), + [anon_sym_BSLASHglsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), + [anon_sym_BSLASHglsplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSplural] = ACTIONS(4879), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHglsname] = ACTIONS(4879), + [anon_sym_BSLASHGlsname] = ACTIONS(4879), + [anon_sym_BSLASHGLSname] = ACTIONS(4879), + [anon_sym_BSLASHglssymbol] = ACTIONS(4879), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), + [anon_sym_BSLASHglsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), + [anon_sym_BSLASHglsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), + [anon_sym_BSLASHglsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), + [anon_sym_BSLASHglsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), + [anon_sym_BSLASHglsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), + [anon_sym_BSLASHnewacronym] = ACTIONS(4879), + [anon_sym_BSLASHacrshort] = ACTIONS(4879), + [anon_sym_BSLASHAcrshort] = ACTIONS(4879), + [anon_sym_BSLASHACRshort] = ACTIONS(4879), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), + [anon_sym_BSLASHacrlong] = ACTIONS(4879), + [anon_sym_BSLASHAcrlong] = ACTIONS(4879), + [anon_sym_BSLASHACRlong] = ACTIONS(4879), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), + [anon_sym_BSLASHacrfull] = ACTIONS(4879), + [anon_sym_BSLASHAcrfull] = ACTIONS(4879), + [anon_sym_BSLASHACRfull] = ACTIONS(4879), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), + [anon_sym_BSLASHacs] = ACTIONS(4879), + [anon_sym_BSLASHAcs] = ACTIONS(4879), + [anon_sym_BSLASHacsp] = ACTIONS(4879), + [anon_sym_BSLASHAcsp] = ACTIONS(4879), + [anon_sym_BSLASHacl] = ACTIONS(4879), + [anon_sym_BSLASHAcl] = ACTIONS(4879), + [anon_sym_BSLASHaclp] = ACTIONS(4879), + [anon_sym_BSLASHAclp] = ACTIONS(4879), + [anon_sym_BSLASHacf] = ACTIONS(4879), + [anon_sym_BSLASHAcf] = ACTIONS(4879), + [anon_sym_BSLASHacfp] = ACTIONS(4879), + [anon_sym_BSLASHAcfp] = ACTIONS(4879), + [anon_sym_BSLASHac] = ACTIONS(4879), + [anon_sym_BSLASHAc] = ACTIONS(4879), + [anon_sym_BSLASHacp] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), + [anon_sym_BSLASHcolor] = ACTIONS(4879), + [anon_sym_BSLASHcolorbox] = ACTIONS(4879), + [anon_sym_BSLASHtextcolor] = ACTIONS(4879), + [anon_sym_BSLASHpagecolor] = ACTIONS(4879), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), + [anon_sym_BSLASHtext] = ACTIONS(4879), + [anon_sym_BSLASHintertext] = ACTIONS(4879), + [anon_sym_shortintertext] = ACTIONS(4879), + }, + [703] = { + [sym_brack_group_text] = STATE(1111), + [sym_command_name] = ACTIONS(4853), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4851), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_RBRACK] = ACTIONS(4851), + [anon_sym_COMMA] = ACTIONS(4851), + [anon_sym_EQ] = ACTIONS(4851), + [anon_sym_BSLASHpart] = ACTIONS(4853), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddpart] = ACTIONS(4853), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4851), + [anon_sym_BSLASHchapter] = ACTIONS(4853), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddchap] = ACTIONS(4853), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsection] = ACTIONS(4853), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddsec] = ACTIONS(4853), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubsection] = ACTIONS(4853), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4853), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHparagraph] = ACTIONS(4853), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4853), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4851), + [anon_sym_BSLASHitem] = ACTIONS(4853), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4851), + [anon_sym_LBRACE] = ACTIONS(4851), + [sym_word] = ACTIONS(4853), + [sym_placeholder] = ACTIONS(4851), + [anon_sym_PLUS] = ACTIONS(4853), + [anon_sym_DASH] = ACTIONS(4853), + [anon_sym_STAR] = ACTIONS(4853), + [anon_sym_SLASH] = ACTIONS(4853), + [anon_sym_CARET] = ACTIONS(4853), + [anon_sym__] = ACTIONS(4853), + [anon_sym_LT] = ACTIONS(4853), + [anon_sym_GT] = ACTIONS(4853), + [anon_sym_BANG] = ACTIONS(4853), + [anon_sym_PIPE] = ACTIONS(4853), + [anon_sym_COLON] = ACTIONS(4853), + [anon_sym_SQUOTE] = ACTIONS(4853), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4851), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4853), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4851), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4851), + [anon_sym_BSLASHbegin] = ACTIONS(4853), + [anon_sym_BSLASHend] = ACTIONS(4853), + [anon_sym_BSLASHusepackage] = ACTIONS(4853), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), + [anon_sym_BSLASHinclude] = ACTIONS(4853), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), + [anon_sym_BSLASHinput] = ACTIONS(4853), + [anon_sym_BSLASHsubfile] = ACTIONS(4853), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), + [anon_sym_BSLASHbibliography] = ACTIONS(4853), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), + [anon_sym_BSLASHincludesvg] = ACTIONS(4853), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), + [anon_sym_BSLASHimport] = ACTIONS(4853), + [anon_sym_BSLASHsubimport] = ACTIONS(4853), + [anon_sym_BSLASHinputfrom] = ACTIONS(4853), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), + [anon_sym_BSLASHincludefrom] = ACTIONS(4853), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), + [anon_sym_BSLASHcaption] = ACTIONS(4853), + [anon_sym_BSLASHcite] = ACTIONS(4853), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCite] = ACTIONS(4853), + [anon_sym_BSLASHnocite] = ACTIONS(4853), + [anon_sym_BSLASHcitet] = ACTIONS(4853), + [anon_sym_BSLASHcitep] = ACTIONS(4853), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteauthor] = ACTIONS(4853), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitetitle] = ACTIONS(4853), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteyear] = ACTIONS(4853), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitedate] = ACTIONS(4853), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteurl] = ACTIONS(4853), + [anon_sym_BSLASHfullcite] = ACTIONS(4853), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), + [anon_sym_BSLASHcitealt] = ACTIONS(4853), + [anon_sym_BSLASHcitealp] = ACTIONS(4853), + [anon_sym_BSLASHcitetext] = ACTIONS(4853), + [anon_sym_BSLASHparencite] = ACTIONS(4853), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHParencite] = ACTIONS(4853), + [anon_sym_BSLASHfootcite] = ACTIONS(4853), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), + [anon_sym_BSLASHtextcite] = ACTIONS(4853), + [anon_sym_BSLASHTextcite] = ACTIONS(4853), + [anon_sym_BSLASHsmartcite] = ACTIONS(4853), + [anon_sym_BSLASHSmartcite] = ACTIONS(4853), + [anon_sym_BSLASHsupercite] = ACTIONS(4853), + [anon_sym_BSLASHautocite] = ACTIONS(4853), + [anon_sym_BSLASHAutocite] = ACTIONS(4853), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHvolcite] = ACTIONS(4853), + [anon_sym_BSLASHVolcite] = ACTIONS(4853), + [anon_sym_BSLASHpvolcite] = ACTIONS(4853), + [anon_sym_BSLASHPvolcite] = ACTIONS(4853), + [anon_sym_BSLASHfvolcite] = ACTIONS(4853), + [anon_sym_BSLASHftvolcite] = ACTIONS(4853), + [anon_sym_BSLASHsvolcite] = ACTIONS(4853), + [anon_sym_BSLASHSvolcite] = ACTIONS(4853), + [anon_sym_BSLASHtvolcite] = ACTIONS(4853), + [anon_sym_BSLASHTvolcite] = ACTIONS(4853), + [anon_sym_BSLASHavolcite] = ACTIONS(4853), + [anon_sym_BSLASHAvolcite] = ACTIONS(4853), + [anon_sym_BSLASHnotecite] = ACTIONS(4853), + [anon_sym_BSLASHNotecite] = ACTIONS(4853), + [anon_sym_BSLASHpnotecite] = ACTIONS(4853), + [anon_sym_BSLASHPnotecite] = ACTIONS(4853), + [anon_sym_BSLASHfnotecite] = ACTIONS(4853), + [anon_sym_BSLASHlabel] = ACTIONS(4853), + [anon_sym_BSLASHref] = ACTIONS(4853), + [anon_sym_BSLASHeqref] = ACTIONS(4853), + [anon_sym_BSLASHvref] = ACTIONS(4853), + [anon_sym_BSLASHVref] = ACTIONS(4853), + [anon_sym_BSLASHautoref] = ACTIONS(4853), + [anon_sym_BSLASHpageref] = ACTIONS(4853), + [anon_sym_BSLASHcref] = ACTIONS(4853), + [anon_sym_BSLASHCref] = ACTIONS(4853), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), + [anon_sym_BSLASHnamecref] = ACTIONS(4853), + [anon_sym_BSLASHnameCref] = ACTIONS(4853), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), + [anon_sym_BSLASHlabelcref] = ACTIONS(4853), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), + [anon_sym_BSLASHcrefrange] = ACTIONS(4853), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCrefrange] = ACTIONS(4853), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), + [anon_sym_BSLASHnewlabel] = ACTIONS(4853), + [anon_sym_BSLASHnewcommand] = ACTIONS(4853), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), + [anon_sym_BSLASHdef] = ACTIONS(4853), + [anon_sym_BSLASHlet] = ACTIONS(4853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), + [anon_sym_BSLASHgls] = ACTIONS(4853), + [anon_sym_BSLASHGls] = ACTIONS(4853), + [anon_sym_BSLASHGLS] = ACTIONS(4853), + [anon_sym_BSLASHglspl] = ACTIONS(4853), + [anon_sym_BSLASHGlspl] = ACTIONS(4853), + [anon_sym_BSLASHGLSpl] = ACTIONS(4853), + [anon_sym_BSLASHglsdisp] = ACTIONS(4853), + [anon_sym_BSLASHglslink] = ACTIONS(4853), + [anon_sym_BSLASHglstext] = ACTIONS(4853), + [anon_sym_BSLASHGlstext] = ACTIONS(4853), + [anon_sym_BSLASHGLStext] = ACTIONS(4853), + [anon_sym_BSLASHglsfirst] = ACTIONS(4853), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), + [anon_sym_BSLASHglsplural] = ACTIONS(4853), + [anon_sym_BSLASHGlsplural] = ACTIONS(4853), + [anon_sym_BSLASHGLSplural] = ACTIONS(4853), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHglsname] = ACTIONS(4853), + [anon_sym_BSLASHGlsname] = ACTIONS(4853), + [anon_sym_BSLASHGLSname] = ACTIONS(4853), + [anon_sym_BSLASHglssymbol] = ACTIONS(4853), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), + [anon_sym_BSLASHglsdesc] = ACTIONS(4853), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), + [anon_sym_BSLASHglsuseri] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), + [anon_sym_BSLASHglsuserii] = ACTIONS(4853), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), + [anon_sym_BSLASHglsuserv] = ACTIONS(4853), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), + [anon_sym_BSLASHglsuservi] = ACTIONS(4853), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), + [anon_sym_BSLASHnewacronym] = ACTIONS(4853), + [anon_sym_BSLASHacrshort] = ACTIONS(4853), + [anon_sym_BSLASHAcrshort] = ACTIONS(4853), + [anon_sym_BSLASHACRshort] = ACTIONS(4853), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), + [anon_sym_BSLASHacrlong] = ACTIONS(4853), + [anon_sym_BSLASHAcrlong] = ACTIONS(4853), + [anon_sym_BSLASHACRlong] = ACTIONS(4853), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), + [anon_sym_BSLASHacrfull] = ACTIONS(4853), + [anon_sym_BSLASHAcrfull] = ACTIONS(4853), + [anon_sym_BSLASHACRfull] = ACTIONS(4853), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), + [anon_sym_BSLASHacs] = ACTIONS(4853), + [anon_sym_BSLASHAcs] = ACTIONS(4853), + [anon_sym_BSLASHacsp] = ACTIONS(4853), + [anon_sym_BSLASHAcsp] = ACTIONS(4853), + [anon_sym_BSLASHacl] = ACTIONS(4853), + [anon_sym_BSLASHAcl] = ACTIONS(4853), + [anon_sym_BSLASHaclp] = ACTIONS(4853), + [anon_sym_BSLASHAclp] = ACTIONS(4853), + [anon_sym_BSLASHacf] = ACTIONS(4853), + [anon_sym_BSLASHAcf] = ACTIONS(4853), + [anon_sym_BSLASHacfp] = ACTIONS(4853), + [anon_sym_BSLASHAcfp] = ACTIONS(4853), + [anon_sym_BSLASHac] = ACTIONS(4853), + [anon_sym_BSLASHAc] = ACTIONS(4853), + [anon_sym_BSLASHacp] = ACTIONS(4853), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), + [anon_sym_BSLASHcolor] = ACTIONS(4853), + [anon_sym_BSLASHcolorbox] = ACTIONS(4853), + [anon_sym_BSLASHtextcolor] = ACTIONS(4853), + [anon_sym_BSLASHpagecolor] = ACTIONS(4853), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), + [anon_sym_BSLASHtext] = ACTIONS(4853), + [anon_sym_BSLASHintertext] = ACTIONS(4853), + [anon_sym_shortintertext] = ACTIONS(4853), + }, + [704] = { + [ts_builtin_sym_end] = ACTIONS(147), + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_BSLASHpart] = ACTIONS(149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddpart] = ACTIONS(149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHchapter] = ACTIONS(149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddchap] = ACTIONS(149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), + [anon_sym_BSLASHsection] = ACTIONS(149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddsec] = ACTIONS(149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHparagraph] = ACTIONS(149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHitem] = ACTIONS(149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), + }, + [705] = { + [ts_builtin_sym_end] = ACTIONS(4967), + [sym_command_name] = ACTIONS(4969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_EQ] = ACTIONS(4967), + [anon_sym_BSLASHpart] = ACTIONS(4969), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddpart] = ACTIONS(4969), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4967), + [anon_sym_BSLASHchapter] = ACTIONS(4969), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddchap] = ACTIONS(4969), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsection] = ACTIONS(4969), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddsec] = ACTIONS(4969), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubsection] = ACTIONS(4969), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4969), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHparagraph] = ACTIONS(4969), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4969), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4967), + [anon_sym_BSLASHitem] = ACTIONS(4969), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_RBRACE] = ACTIONS(4967), + [sym_word] = ACTIONS(4969), + [sym_placeholder] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_CARET] = ACTIONS(4969), + [anon_sym__] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_COLON] = ACTIONS(4969), + [anon_sym_SQUOTE] = ACTIONS(4969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), + [anon_sym_BSLASHbegin] = ACTIONS(4969), + [anon_sym_BSLASHusepackage] = ACTIONS(4969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), + [anon_sym_BSLASHinclude] = ACTIONS(4969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), + [anon_sym_BSLASHinput] = ACTIONS(4969), + [anon_sym_BSLASHsubfile] = ACTIONS(4969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), + [anon_sym_BSLASHbibliography] = ACTIONS(4969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), + [anon_sym_BSLASHincludesvg] = ACTIONS(4969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), + [anon_sym_BSLASHimport] = ACTIONS(4969), + [anon_sym_BSLASHsubimport] = ACTIONS(4969), + [anon_sym_BSLASHinputfrom] = ACTIONS(4969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), + [anon_sym_BSLASHincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHcaption] = ACTIONS(4969), + [anon_sym_BSLASHcite] = ACTIONS(4969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCite] = ACTIONS(4969), + [anon_sym_BSLASHnocite] = ACTIONS(4969), + [anon_sym_BSLASHcitet] = ACTIONS(4969), + [anon_sym_BSLASHcitep] = ACTIONS(4969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteauthor] = ACTIONS(4969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitetitle] = ACTIONS(4969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteyear] = ACTIONS(4969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitedate] = ACTIONS(4969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteurl] = ACTIONS(4969), + [anon_sym_BSLASHfullcite] = ACTIONS(4969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), + [anon_sym_BSLASHcitealt] = ACTIONS(4969), + [anon_sym_BSLASHcitealp] = ACTIONS(4969), + [anon_sym_BSLASHcitetext] = ACTIONS(4969), + [anon_sym_BSLASHparencite] = ACTIONS(4969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHParencite] = ACTIONS(4969), + [anon_sym_BSLASHfootcite] = ACTIONS(4969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), + [anon_sym_BSLASHtextcite] = ACTIONS(4969), + [anon_sym_BSLASHTextcite] = ACTIONS(4969), + [anon_sym_BSLASHsmartcite] = ACTIONS(4969), + [anon_sym_BSLASHSmartcite] = ACTIONS(4969), + [anon_sym_BSLASHsupercite] = ACTIONS(4969), + [anon_sym_BSLASHautocite] = ACTIONS(4969), + [anon_sym_BSLASHAutocite] = ACTIONS(4969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHvolcite] = ACTIONS(4969), + [anon_sym_BSLASHVolcite] = ACTIONS(4969), + [anon_sym_BSLASHpvolcite] = ACTIONS(4969), + [anon_sym_BSLASHPvolcite] = ACTIONS(4969), + [anon_sym_BSLASHfvolcite] = ACTIONS(4969), + [anon_sym_BSLASHftvolcite] = ACTIONS(4969), + [anon_sym_BSLASHsvolcite] = ACTIONS(4969), + [anon_sym_BSLASHSvolcite] = ACTIONS(4969), + [anon_sym_BSLASHtvolcite] = ACTIONS(4969), + [anon_sym_BSLASHTvolcite] = ACTIONS(4969), + [anon_sym_BSLASHavolcite] = ACTIONS(4969), + [anon_sym_BSLASHAvolcite] = ACTIONS(4969), + [anon_sym_BSLASHnotecite] = ACTIONS(4969), + [anon_sym_BSLASHNotecite] = ACTIONS(4969), + [anon_sym_BSLASHpnotecite] = ACTIONS(4969), + [anon_sym_BSLASHPnotecite] = ACTIONS(4969), + [anon_sym_BSLASHfnotecite] = ACTIONS(4969), + [anon_sym_BSLASHlabel] = ACTIONS(4969), + [anon_sym_BSLASHref] = ACTIONS(4969), + [anon_sym_BSLASHeqref] = ACTIONS(4969), + [anon_sym_BSLASHvref] = ACTIONS(4969), + [anon_sym_BSLASHVref] = ACTIONS(4969), + [anon_sym_BSLASHautoref] = ACTIONS(4969), + [anon_sym_BSLASHpageref] = ACTIONS(4969), + [anon_sym_BSLASHcref] = ACTIONS(4969), + [anon_sym_BSLASHCref] = ACTIONS(4969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnameCref] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHlabelcref] = ACTIONS(4969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCrefrange] = ACTIONS(4969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnewlabel] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), + [anon_sym_BSLASHdef] = ACTIONS(4969), + [anon_sym_BSLASHlet] = ACTIONS(4969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), + [anon_sym_BSLASHgls] = ACTIONS(4969), + [anon_sym_BSLASHGls] = ACTIONS(4969), + [anon_sym_BSLASHGLS] = ACTIONS(4969), + [anon_sym_BSLASHglspl] = ACTIONS(4969), + [anon_sym_BSLASHGlspl] = ACTIONS(4969), + [anon_sym_BSLASHGLSpl] = ACTIONS(4969), + [anon_sym_BSLASHglsdisp] = ACTIONS(4969), + [anon_sym_BSLASHglslink] = ACTIONS(4969), + [anon_sym_BSLASHglstext] = ACTIONS(4969), + [anon_sym_BSLASHGlstext] = ACTIONS(4969), + [anon_sym_BSLASHGLStext] = ACTIONS(4969), + [anon_sym_BSLASHglsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), + [anon_sym_BSLASHglsplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSplural] = ACTIONS(4969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHglsname] = ACTIONS(4969), + [anon_sym_BSLASHGlsname] = ACTIONS(4969), + [anon_sym_BSLASHGLSname] = ACTIONS(4969), + [anon_sym_BSLASHglssymbol] = ACTIONS(4969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), + [anon_sym_BSLASHglsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), + [anon_sym_BSLASHglsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), + [anon_sym_BSLASHglsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), + [anon_sym_BSLASHglsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), + [anon_sym_BSLASHglsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), + [anon_sym_BSLASHnewacronym] = ACTIONS(4969), + [anon_sym_BSLASHacrshort] = ACTIONS(4969), + [anon_sym_BSLASHAcrshort] = ACTIONS(4969), + [anon_sym_BSLASHACRshort] = ACTIONS(4969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), + [anon_sym_BSLASHacrlong] = ACTIONS(4969), + [anon_sym_BSLASHAcrlong] = ACTIONS(4969), + [anon_sym_BSLASHACRlong] = ACTIONS(4969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), + [anon_sym_BSLASHacrfull] = ACTIONS(4969), + [anon_sym_BSLASHAcrfull] = ACTIONS(4969), + [anon_sym_BSLASHACRfull] = ACTIONS(4969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), + [anon_sym_BSLASHacs] = ACTIONS(4969), + [anon_sym_BSLASHAcs] = ACTIONS(4969), + [anon_sym_BSLASHacsp] = ACTIONS(4969), + [anon_sym_BSLASHAcsp] = ACTIONS(4969), + [anon_sym_BSLASHacl] = ACTIONS(4969), + [anon_sym_BSLASHAcl] = ACTIONS(4969), + [anon_sym_BSLASHaclp] = ACTIONS(4969), + [anon_sym_BSLASHAclp] = ACTIONS(4969), + [anon_sym_BSLASHacf] = ACTIONS(4969), + [anon_sym_BSLASHAcf] = ACTIONS(4969), + [anon_sym_BSLASHacfp] = ACTIONS(4969), + [anon_sym_BSLASHAcfp] = ACTIONS(4969), + [anon_sym_BSLASHac] = ACTIONS(4969), + [anon_sym_BSLASHAc] = ACTIONS(4969), + [anon_sym_BSLASHacp] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), + [anon_sym_BSLASHcolor] = ACTIONS(4969), + [anon_sym_BSLASHcolorbox] = ACTIONS(4969), + [anon_sym_BSLASHtextcolor] = ACTIONS(4969), + [anon_sym_BSLASHpagecolor] = ACTIONS(4969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), + [anon_sym_BSLASHtext] = ACTIONS(4969), + [anon_sym_BSLASHintertext] = ACTIONS(4969), + [anon_sym_shortintertext] = ACTIONS(4969), + }, + [706] = { + [ts_builtin_sym_end] = ACTIONS(4971), + [sym_command_name] = ACTIONS(4973), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4971), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), + [anon_sym_RBRACK] = ACTIONS(4971), + [anon_sym_COMMA] = ACTIONS(4971), + [anon_sym_EQ] = ACTIONS(4971), + [anon_sym_BSLASHpart] = ACTIONS(4973), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddpart] = ACTIONS(4973), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4971), + [anon_sym_BSLASHchapter] = ACTIONS(4973), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddchap] = ACTIONS(4973), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsection] = ACTIONS(4973), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddsec] = ACTIONS(4973), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubsection] = ACTIONS(4973), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4973), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHparagraph] = ACTIONS(4973), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4973), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4971), + [anon_sym_BSLASHitem] = ACTIONS(4973), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4971), + [anon_sym_LBRACE] = ACTIONS(4971), + [anon_sym_RBRACE] = ACTIONS(4971), + [sym_word] = ACTIONS(4973), + [sym_placeholder] = ACTIONS(4971), + [anon_sym_PLUS] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym__] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4973), + [anon_sym_GT] = ACTIONS(4973), + [anon_sym_BANG] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_SQUOTE] = ACTIONS(4973), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), + [anon_sym_DOLLAR] = ACTIONS(4973), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), + [anon_sym_BSLASHbegin] = ACTIONS(4973), + [anon_sym_BSLASHusepackage] = ACTIONS(4973), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), + [anon_sym_BSLASHinclude] = ACTIONS(4973), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), + [anon_sym_BSLASHinput] = ACTIONS(4973), + [anon_sym_BSLASHsubfile] = ACTIONS(4973), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), + [anon_sym_BSLASHbibliography] = ACTIONS(4973), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), + [anon_sym_BSLASHincludesvg] = ACTIONS(4973), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), + [anon_sym_BSLASHimport] = ACTIONS(4973), + [anon_sym_BSLASHsubimport] = ACTIONS(4973), + [anon_sym_BSLASHinputfrom] = ACTIONS(4973), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), + [anon_sym_BSLASHincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHcaption] = ACTIONS(4973), + [anon_sym_BSLASHcite] = ACTIONS(4973), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCite] = ACTIONS(4973), + [anon_sym_BSLASHnocite] = ACTIONS(4973), + [anon_sym_BSLASHcitet] = ACTIONS(4973), + [anon_sym_BSLASHcitep] = ACTIONS(4973), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteauthor] = ACTIONS(4973), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitetitle] = ACTIONS(4973), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteyear] = ACTIONS(4973), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitedate] = ACTIONS(4973), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteurl] = ACTIONS(4973), + [anon_sym_BSLASHfullcite] = ACTIONS(4973), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), + [anon_sym_BSLASHcitealt] = ACTIONS(4973), + [anon_sym_BSLASHcitealp] = ACTIONS(4973), + [anon_sym_BSLASHcitetext] = ACTIONS(4973), + [anon_sym_BSLASHparencite] = ACTIONS(4973), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHParencite] = ACTIONS(4973), + [anon_sym_BSLASHfootcite] = ACTIONS(4973), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), + [anon_sym_BSLASHtextcite] = ACTIONS(4973), + [anon_sym_BSLASHTextcite] = ACTIONS(4973), + [anon_sym_BSLASHsmartcite] = ACTIONS(4973), + [anon_sym_BSLASHSmartcite] = ACTIONS(4973), + [anon_sym_BSLASHsupercite] = ACTIONS(4973), + [anon_sym_BSLASHautocite] = ACTIONS(4973), + [anon_sym_BSLASHAutocite] = ACTIONS(4973), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHvolcite] = ACTIONS(4973), + [anon_sym_BSLASHVolcite] = ACTIONS(4973), + [anon_sym_BSLASHpvolcite] = ACTIONS(4973), + [anon_sym_BSLASHPvolcite] = ACTIONS(4973), + [anon_sym_BSLASHfvolcite] = ACTIONS(4973), + [anon_sym_BSLASHftvolcite] = ACTIONS(4973), + [anon_sym_BSLASHsvolcite] = ACTIONS(4973), + [anon_sym_BSLASHSvolcite] = ACTIONS(4973), + [anon_sym_BSLASHtvolcite] = ACTIONS(4973), + [anon_sym_BSLASHTvolcite] = ACTIONS(4973), + [anon_sym_BSLASHavolcite] = ACTIONS(4973), + [anon_sym_BSLASHAvolcite] = ACTIONS(4973), + [anon_sym_BSLASHnotecite] = ACTIONS(4973), + [anon_sym_BSLASHNotecite] = ACTIONS(4973), + [anon_sym_BSLASHpnotecite] = ACTIONS(4973), + [anon_sym_BSLASHPnotecite] = ACTIONS(4973), + [anon_sym_BSLASHfnotecite] = ACTIONS(4973), + [anon_sym_BSLASHlabel] = ACTIONS(4973), + [anon_sym_BSLASHref] = ACTIONS(4973), + [anon_sym_BSLASHeqref] = ACTIONS(4973), + [anon_sym_BSLASHvref] = ACTIONS(4973), + [anon_sym_BSLASHVref] = ACTIONS(4973), + [anon_sym_BSLASHautoref] = ACTIONS(4973), + [anon_sym_BSLASHpageref] = ACTIONS(4973), + [anon_sym_BSLASHcref] = ACTIONS(4973), + [anon_sym_BSLASHCref] = ACTIONS(4973), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnameCref] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHlabelcref] = ACTIONS(4973), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCrefrange] = ACTIONS(4973), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnewlabel] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), + [anon_sym_BSLASHdef] = ACTIONS(4973), + [anon_sym_BSLASHlet] = ACTIONS(4973), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), + [anon_sym_BSLASHgls] = ACTIONS(4973), + [anon_sym_BSLASHGls] = ACTIONS(4973), + [anon_sym_BSLASHGLS] = ACTIONS(4973), + [anon_sym_BSLASHglspl] = ACTIONS(4973), + [anon_sym_BSLASHGlspl] = ACTIONS(4973), + [anon_sym_BSLASHGLSpl] = ACTIONS(4973), + [anon_sym_BSLASHglsdisp] = ACTIONS(4973), + [anon_sym_BSLASHglslink] = ACTIONS(4973), + [anon_sym_BSLASHglstext] = ACTIONS(4973), + [anon_sym_BSLASHGlstext] = ACTIONS(4973), + [anon_sym_BSLASHGLStext] = ACTIONS(4973), + [anon_sym_BSLASHglsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), + [anon_sym_BSLASHglsplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSplural] = ACTIONS(4973), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHglsname] = ACTIONS(4973), + [anon_sym_BSLASHGlsname] = ACTIONS(4973), + [anon_sym_BSLASHGLSname] = ACTIONS(4973), + [anon_sym_BSLASHglssymbol] = ACTIONS(4973), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), + [anon_sym_BSLASHglsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), + [anon_sym_BSLASHglsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), + [anon_sym_BSLASHglsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), + [anon_sym_BSLASHglsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), + [anon_sym_BSLASHglsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), + [anon_sym_BSLASHnewacronym] = ACTIONS(4973), + [anon_sym_BSLASHacrshort] = ACTIONS(4973), + [anon_sym_BSLASHAcrshort] = ACTIONS(4973), + [anon_sym_BSLASHACRshort] = ACTIONS(4973), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), + [anon_sym_BSLASHacrlong] = ACTIONS(4973), + [anon_sym_BSLASHAcrlong] = ACTIONS(4973), + [anon_sym_BSLASHACRlong] = ACTIONS(4973), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), + [anon_sym_BSLASHacrfull] = ACTIONS(4973), + [anon_sym_BSLASHAcrfull] = ACTIONS(4973), + [anon_sym_BSLASHACRfull] = ACTIONS(4973), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), + [anon_sym_BSLASHacs] = ACTIONS(4973), + [anon_sym_BSLASHAcs] = ACTIONS(4973), + [anon_sym_BSLASHacsp] = ACTIONS(4973), + [anon_sym_BSLASHAcsp] = ACTIONS(4973), + [anon_sym_BSLASHacl] = ACTIONS(4973), + [anon_sym_BSLASHAcl] = ACTIONS(4973), + [anon_sym_BSLASHaclp] = ACTIONS(4973), + [anon_sym_BSLASHAclp] = ACTIONS(4973), + [anon_sym_BSLASHacf] = ACTIONS(4973), + [anon_sym_BSLASHAcf] = ACTIONS(4973), + [anon_sym_BSLASHacfp] = ACTIONS(4973), + [anon_sym_BSLASHAcfp] = ACTIONS(4973), + [anon_sym_BSLASHac] = ACTIONS(4973), + [anon_sym_BSLASHAc] = ACTIONS(4973), + [anon_sym_BSLASHacp] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), + [anon_sym_BSLASHcolor] = ACTIONS(4973), + [anon_sym_BSLASHcolorbox] = ACTIONS(4973), + [anon_sym_BSLASHtextcolor] = ACTIONS(4973), + [anon_sym_BSLASHpagecolor] = ACTIONS(4973), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), + [anon_sym_BSLASHtext] = ACTIONS(4973), + [anon_sym_BSLASHintertext] = ACTIONS(4973), + [anon_sym_shortintertext] = ACTIONS(4973), + }, + [707] = { + [sym_brack_group] = STATE(1215), + [sym_command_name] = ACTIONS(4975), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4977), + [anon_sym_RPAREN] = ACTIONS(4977), + [anon_sym_LBRACK] = ACTIONS(4979), + [anon_sym_RBRACK] = ACTIONS(4977), + [anon_sym_COMMA] = ACTIONS(4977), + [anon_sym_EQ] = ACTIONS(4977), + [anon_sym_BSLASHpart] = ACTIONS(4975), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4977), + [anon_sym_BSLASHaddpart] = ACTIONS(4975), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4977), + [anon_sym_BSLASHchapter] = ACTIONS(4975), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4977), + [anon_sym_BSLASHaddchap] = ACTIONS(4975), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4977), + [anon_sym_BSLASHsection] = ACTIONS(4975), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4977), + [anon_sym_BSLASHaddsec] = ACTIONS(4975), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4977), + [anon_sym_BSLASHsubsection] = ACTIONS(4975), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4977), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4975), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4977), + [anon_sym_BSLASHparagraph] = ACTIONS(4975), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4977), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4975), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4977), + [anon_sym_BSLASHitem] = ACTIONS(4975), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4977), + [anon_sym_LBRACE] = ACTIONS(4977), + [sym_word] = ACTIONS(4975), + [sym_placeholder] = ACTIONS(4977), + [anon_sym_PLUS] = ACTIONS(4975), + [anon_sym_DASH] = ACTIONS(4975), + [anon_sym_STAR] = ACTIONS(4975), + [anon_sym_SLASH] = ACTIONS(4975), + [anon_sym_CARET] = ACTIONS(4975), + [anon_sym__] = ACTIONS(4975), + [anon_sym_LT] = ACTIONS(4975), + [anon_sym_GT] = ACTIONS(4975), + [anon_sym_BANG] = ACTIONS(4975), + [anon_sym_PIPE] = ACTIONS(4975), + [anon_sym_COLON] = ACTIONS(4975), + [anon_sym_SQUOTE] = ACTIONS(4975), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4977), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4977), + [anon_sym_DOLLAR] = ACTIONS(4975), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4977), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4977), + [anon_sym_BSLASHbegin] = ACTIONS(4975), + [anon_sym_BSLASHend] = ACTIONS(4975), + [anon_sym_BSLASHusepackage] = ACTIONS(4975), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4975), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4975), + [anon_sym_BSLASHinclude] = ACTIONS(4975), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4975), + [anon_sym_BSLASHinput] = ACTIONS(4975), + [anon_sym_BSLASHsubfile] = ACTIONS(4975), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4975), + [anon_sym_BSLASHbibliography] = ACTIONS(4975), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4975), + [anon_sym_BSLASHincludesvg] = ACTIONS(4975), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4975), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4975), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4975), + [anon_sym_BSLASHimport] = ACTIONS(4975), + [anon_sym_BSLASHsubimport] = ACTIONS(4975), + [anon_sym_BSLASHinputfrom] = ACTIONS(4975), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4975), + [anon_sym_BSLASHincludefrom] = ACTIONS(4975), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4975), + [anon_sym_BSLASHcaption] = ACTIONS(4975), + [anon_sym_BSLASHcite] = ACTIONS(4975), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4977), + [anon_sym_BSLASHCite] = ACTIONS(4975), + [anon_sym_BSLASHnocite] = ACTIONS(4975), + [anon_sym_BSLASHcitet] = ACTIONS(4975), + [anon_sym_BSLASHcitep] = ACTIONS(4975), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4977), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4977), + [anon_sym_BSLASHciteauthor] = ACTIONS(4975), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4977), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4975), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4977), + [anon_sym_BSLASHcitetitle] = ACTIONS(4975), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4977), + [anon_sym_BSLASHciteyear] = ACTIONS(4975), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4977), + [anon_sym_BSLASHcitedate] = ACTIONS(4975), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4977), + [anon_sym_BSLASHciteurl] = ACTIONS(4975), + [anon_sym_BSLASHfullcite] = ACTIONS(4975), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4975), + [anon_sym_BSLASHcitealt] = ACTIONS(4975), + [anon_sym_BSLASHcitealp] = ACTIONS(4975), + [anon_sym_BSLASHcitetext] = ACTIONS(4975), + [anon_sym_BSLASHparencite] = ACTIONS(4975), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4977), + [anon_sym_BSLASHParencite] = ACTIONS(4975), + [anon_sym_BSLASHfootcite] = ACTIONS(4975), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4975), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4975), + [anon_sym_BSLASHtextcite] = ACTIONS(4975), + [anon_sym_BSLASHTextcite] = ACTIONS(4975), + [anon_sym_BSLASHsmartcite] = ACTIONS(4975), + [anon_sym_BSLASHSmartcite] = ACTIONS(4975), + [anon_sym_BSLASHsupercite] = ACTIONS(4975), + [anon_sym_BSLASHautocite] = ACTIONS(4975), + [anon_sym_BSLASHAutocite] = ACTIONS(4975), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4977), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4977), + [anon_sym_BSLASHvolcite] = ACTIONS(4975), + [anon_sym_BSLASHVolcite] = ACTIONS(4975), + [anon_sym_BSLASHpvolcite] = ACTIONS(4975), + [anon_sym_BSLASHPvolcite] = ACTIONS(4975), + [anon_sym_BSLASHfvolcite] = ACTIONS(4975), + [anon_sym_BSLASHftvolcite] = ACTIONS(4975), + [anon_sym_BSLASHsvolcite] = ACTIONS(4975), + [anon_sym_BSLASHSvolcite] = ACTIONS(4975), + [anon_sym_BSLASHtvolcite] = ACTIONS(4975), + [anon_sym_BSLASHTvolcite] = ACTIONS(4975), + [anon_sym_BSLASHavolcite] = ACTIONS(4975), + [anon_sym_BSLASHAvolcite] = ACTIONS(4975), + [anon_sym_BSLASHnotecite] = ACTIONS(4975), + [anon_sym_BSLASHNotecite] = ACTIONS(4975), + [anon_sym_BSLASHpnotecite] = ACTIONS(4975), + [anon_sym_BSLASHPnotecite] = ACTIONS(4975), + [anon_sym_BSLASHfnotecite] = ACTIONS(4975), + [anon_sym_BSLASHlabel] = ACTIONS(4975), + [anon_sym_BSLASHref] = ACTIONS(4975), + [anon_sym_BSLASHeqref] = ACTIONS(4975), + [anon_sym_BSLASHvref] = ACTIONS(4975), + [anon_sym_BSLASHVref] = ACTIONS(4975), + [anon_sym_BSLASHautoref] = ACTIONS(4975), + [anon_sym_BSLASHpageref] = ACTIONS(4975), + [anon_sym_BSLASHcref] = ACTIONS(4975), + [anon_sym_BSLASHCref] = ACTIONS(4975), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4977), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4977), + [anon_sym_BSLASHnamecref] = ACTIONS(4975), + [anon_sym_BSLASHnameCref] = ACTIONS(4975), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4975), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4975), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4975), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4975), + [anon_sym_BSLASHlabelcref] = ACTIONS(4975), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4975), + [anon_sym_BSLASHcrefrange] = ACTIONS(4975), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4977), + [anon_sym_BSLASHCrefrange] = ACTIONS(4975), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4977), + [anon_sym_BSLASHnewlabel] = ACTIONS(4975), + [anon_sym_BSLASHnewcommand] = ACTIONS(4975), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4977), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4975), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4977), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4975), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4977), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4975), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4977), + [anon_sym_BSLASHdef] = ACTIONS(4975), + [anon_sym_BSLASHlet] = ACTIONS(4975), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4975), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4975), + [anon_sym_BSLASHgls] = ACTIONS(4975), + [anon_sym_BSLASHGls] = ACTIONS(4975), + [anon_sym_BSLASHGLS] = ACTIONS(4975), + [anon_sym_BSLASHglspl] = ACTIONS(4975), + [anon_sym_BSLASHGlspl] = ACTIONS(4975), + [anon_sym_BSLASHGLSpl] = ACTIONS(4975), + [anon_sym_BSLASHglsdisp] = ACTIONS(4975), + [anon_sym_BSLASHglslink] = ACTIONS(4975), + [anon_sym_BSLASHglstext] = ACTIONS(4975), + [anon_sym_BSLASHGlstext] = ACTIONS(4975), + [anon_sym_BSLASHGLStext] = ACTIONS(4975), + [anon_sym_BSLASHglsfirst] = ACTIONS(4975), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4975), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4975), + [anon_sym_BSLASHglsplural] = ACTIONS(4975), + [anon_sym_BSLASHGlsplural] = ACTIONS(4975), + [anon_sym_BSLASHGLSplural] = ACTIONS(4975), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4975), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4975), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4975), + [anon_sym_BSLASHglsname] = ACTIONS(4975), + [anon_sym_BSLASHGlsname] = ACTIONS(4975), + [anon_sym_BSLASHGLSname] = ACTIONS(4975), + [anon_sym_BSLASHglssymbol] = ACTIONS(4975), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4975), + [anon_sym_BSLASHglsdesc] = ACTIONS(4975), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4975), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4975), + [anon_sym_BSLASHglsuseri] = ACTIONS(4975), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4975), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4975), + [anon_sym_BSLASHglsuserii] = ACTIONS(4975), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4975), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4975), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4975), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4975), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4975), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4975), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4975), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4975), + [anon_sym_BSLASHglsuserv] = ACTIONS(4975), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4975), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4975), + [anon_sym_BSLASHglsuservi] = ACTIONS(4975), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4975), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4975), + [anon_sym_BSLASHnewacronym] = ACTIONS(4975), + [anon_sym_BSLASHacrshort] = ACTIONS(4975), + [anon_sym_BSLASHAcrshort] = ACTIONS(4975), + [anon_sym_BSLASHACRshort] = ACTIONS(4975), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4975), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4975), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4975), + [anon_sym_BSLASHacrlong] = ACTIONS(4975), + [anon_sym_BSLASHAcrlong] = ACTIONS(4975), + [anon_sym_BSLASHACRlong] = ACTIONS(4975), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4975), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4975), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4975), + [anon_sym_BSLASHacrfull] = ACTIONS(4975), + [anon_sym_BSLASHAcrfull] = ACTIONS(4975), + [anon_sym_BSLASHACRfull] = ACTIONS(4975), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4975), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4975), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4975), + [anon_sym_BSLASHacs] = ACTIONS(4975), + [anon_sym_BSLASHAcs] = ACTIONS(4975), + [anon_sym_BSLASHacsp] = ACTIONS(4975), + [anon_sym_BSLASHAcsp] = ACTIONS(4975), + [anon_sym_BSLASHacl] = ACTIONS(4975), + [anon_sym_BSLASHAcl] = ACTIONS(4975), + [anon_sym_BSLASHaclp] = ACTIONS(4975), + [anon_sym_BSLASHAclp] = ACTIONS(4975), + [anon_sym_BSLASHacf] = ACTIONS(4975), + [anon_sym_BSLASHAcf] = ACTIONS(4975), + [anon_sym_BSLASHacfp] = ACTIONS(4975), + [anon_sym_BSLASHAcfp] = ACTIONS(4975), + [anon_sym_BSLASHac] = ACTIONS(4975), + [anon_sym_BSLASHAc] = ACTIONS(4975), + [anon_sym_BSLASHacp] = ACTIONS(4975), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4975), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4975), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4975), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4975), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4975), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4975), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4975), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4975), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4975), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4975), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4975), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4975), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4975), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4975), + [anon_sym_BSLASHcolor] = ACTIONS(4975), + [anon_sym_BSLASHcolorbox] = ACTIONS(4975), + [anon_sym_BSLASHtextcolor] = ACTIONS(4975), + [anon_sym_BSLASHpagecolor] = ACTIONS(4975), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4975), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4975), + [anon_sym_BSLASHtext] = ACTIONS(4975), + [anon_sym_BSLASHintertext] = ACTIONS(4975), + [anon_sym_shortintertext] = ACTIONS(4975), }, - [924] = { - [sym_command_name] = ACTIONS(5089), + [708] = { + [ts_builtin_sym_end] = ACTIONS(4981), + [sym_command_name] = ACTIONS(4983), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_BSLASHpart] = ACTIONS(5089), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddpart] = ACTIONS(5089), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHchapter] = ACTIONS(5089), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddchap] = ACTIONS(5089), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsection] = ACTIONS(5089), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddsec] = ACTIONS(5089), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHparagraph] = ACTIONS(5089), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHitem] = ACTIONS(5089), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASHbegin] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHiffalse] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_RBRACK] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4981), + [anon_sym_BSLASHpart] = ACTIONS(4983), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddpart] = ACTIONS(4983), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), + [anon_sym_BSLASHchapter] = ACTIONS(4983), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddchap] = ACTIONS(4983), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsection] = ACTIONS(4983), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddsec] = ACTIONS(4983), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubsection] = ACTIONS(4983), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHparagraph] = ACTIONS(4983), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), + [anon_sym_BSLASHitem] = ACTIONS(4983), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4981), + [anon_sym_RBRACE] = ACTIONS(4981), + [sym_word] = ACTIONS(4983), + [sym_placeholder] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym__] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_SQUOTE] = ACTIONS(4983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), + [anon_sym_DOLLAR] = ACTIONS(4983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), + [anon_sym_BSLASHbegin] = ACTIONS(4983), + [anon_sym_BSLASHusepackage] = ACTIONS(4983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), + [anon_sym_BSLASHinclude] = ACTIONS(4983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), + [anon_sym_BSLASHinput] = ACTIONS(4983), + [anon_sym_BSLASHsubfile] = ACTIONS(4983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), + [anon_sym_BSLASHbibliography] = ACTIONS(4983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), + [anon_sym_BSLASHincludesvg] = ACTIONS(4983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), + [anon_sym_BSLASHimport] = ACTIONS(4983), + [anon_sym_BSLASHsubimport] = ACTIONS(4983), + [anon_sym_BSLASHinputfrom] = ACTIONS(4983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), + [anon_sym_BSLASHincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHcaption] = ACTIONS(4983), + [anon_sym_BSLASHcite] = ACTIONS(4983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCite] = ACTIONS(4983), + [anon_sym_BSLASHnocite] = ACTIONS(4983), + [anon_sym_BSLASHcitet] = ACTIONS(4983), + [anon_sym_BSLASHcitep] = ACTIONS(4983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteauthor] = ACTIONS(4983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitetitle] = ACTIONS(4983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteyear] = ACTIONS(4983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitedate] = ACTIONS(4983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteurl] = ACTIONS(4983), + [anon_sym_BSLASHfullcite] = ACTIONS(4983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), + [anon_sym_BSLASHcitealt] = ACTIONS(4983), + [anon_sym_BSLASHcitealp] = ACTIONS(4983), + [anon_sym_BSLASHcitetext] = ACTIONS(4983), + [anon_sym_BSLASHparencite] = ACTIONS(4983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHParencite] = ACTIONS(4983), + [anon_sym_BSLASHfootcite] = ACTIONS(4983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), + [anon_sym_BSLASHtextcite] = ACTIONS(4983), + [anon_sym_BSLASHTextcite] = ACTIONS(4983), + [anon_sym_BSLASHsmartcite] = ACTIONS(4983), + [anon_sym_BSLASHSmartcite] = ACTIONS(4983), + [anon_sym_BSLASHsupercite] = ACTIONS(4983), + [anon_sym_BSLASHautocite] = ACTIONS(4983), + [anon_sym_BSLASHAutocite] = ACTIONS(4983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHvolcite] = ACTIONS(4983), + [anon_sym_BSLASHVolcite] = ACTIONS(4983), + [anon_sym_BSLASHpvolcite] = ACTIONS(4983), + [anon_sym_BSLASHPvolcite] = ACTIONS(4983), + [anon_sym_BSLASHfvolcite] = ACTIONS(4983), + [anon_sym_BSLASHftvolcite] = ACTIONS(4983), + [anon_sym_BSLASHsvolcite] = ACTIONS(4983), + [anon_sym_BSLASHSvolcite] = ACTIONS(4983), + [anon_sym_BSLASHtvolcite] = ACTIONS(4983), + [anon_sym_BSLASHTvolcite] = ACTIONS(4983), + [anon_sym_BSLASHavolcite] = ACTIONS(4983), + [anon_sym_BSLASHAvolcite] = ACTIONS(4983), + [anon_sym_BSLASHnotecite] = ACTIONS(4983), + [anon_sym_BSLASHNotecite] = ACTIONS(4983), + [anon_sym_BSLASHpnotecite] = ACTIONS(4983), + [anon_sym_BSLASHPnotecite] = ACTIONS(4983), + [anon_sym_BSLASHfnotecite] = ACTIONS(4983), + [anon_sym_BSLASHlabel] = ACTIONS(4983), + [anon_sym_BSLASHref] = ACTIONS(4983), + [anon_sym_BSLASHeqref] = ACTIONS(4983), + [anon_sym_BSLASHvref] = ACTIONS(4983), + [anon_sym_BSLASHVref] = ACTIONS(4983), + [anon_sym_BSLASHautoref] = ACTIONS(4983), + [anon_sym_BSLASHpageref] = ACTIONS(4983), + [anon_sym_BSLASHcref] = ACTIONS(4983), + [anon_sym_BSLASHCref] = ACTIONS(4983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnameCref] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHlabelcref] = ACTIONS(4983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCrefrange] = ACTIONS(4983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnewlabel] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), + [anon_sym_BSLASHdef] = ACTIONS(4983), + [anon_sym_BSLASHlet] = ACTIONS(4983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), + [anon_sym_BSLASHgls] = ACTIONS(4983), + [anon_sym_BSLASHGls] = ACTIONS(4983), + [anon_sym_BSLASHGLS] = ACTIONS(4983), + [anon_sym_BSLASHglspl] = ACTIONS(4983), + [anon_sym_BSLASHGlspl] = ACTIONS(4983), + [anon_sym_BSLASHGLSpl] = ACTIONS(4983), + [anon_sym_BSLASHglsdisp] = ACTIONS(4983), + [anon_sym_BSLASHglslink] = ACTIONS(4983), + [anon_sym_BSLASHglstext] = ACTIONS(4983), + [anon_sym_BSLASHGlstext] = ACTIONS(4983), + [anon_sym_BSLASHGLStext] = ACTIONS(4983), + [anon_sym_BSLASHglsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), + [anon_sym_BSLASHglsplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSplural] = ACTIONS(4983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHglsname] = ACTIONS(4983), + [anon_sym_BSLASHGlsname] = ACTIONS(4983), + [anon_sym_BSLASHGLSname] = ACTIONS(4983), + [anon_sym_BSLASHglssymbol] = ACTIONS(4983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), + [anon_sym_BSLASHglsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), + [anon_sym_BSLASHglsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), + [anon_sym_BSLASHglsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), + [anon_sym_BSLASHglsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), + [anon_sym_BSLASHglsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), + [anon_sym_BSLASHnewacronym] = ACTIONS(4983), + [anon_sym_BSLASHacrshort] = ACTIONS(4983), + [anon_sym_BSLASHAcrshort] = ACTIONS(4983), + [anon_sym_BSLASHACRshort] = ACTIONS(4983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), + [anon_sym_BSLASHacrlong] = ACTIONS(4983), + [anon_sym_BSLASHAcrlong] = ACTIONS(4983), + [anon_sym_BSLASHACRlong] = ACTIONS(4983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), + [anon_sym_BSLASHacrfull] = ACTIONS(4983), + [anon_sym_BSLASHAcrfull] = ACTIONS(4983), + [anon_sym_BSLASHACRfull] = ACTIONS(4983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), + [anon_sym_BSLASHacs] = ACTIONS(4983), + [anon_sym_BSLASHAcs] = ACTIONS(4983), + [anon_sym_BSLASHacsp] = ACTIONS(4983), + [anon_sym_BSLASHAcsp] = ACTIONS(4983), + [anon_sym_BSLASHacl] = ACTIONS(4983), + [anon_sym_BSLASHAcl] = ACTIONS(4983), + [anon_sym_BSLASHaclp] = ACTIONS(4983), + [anon_sym_BSLASHAclp] = ACTIONS(4983), + [anon_sym_BSLASHacf] = ACTIONS(4983), + [anon_sym_BSLASHAcf] = ACTIONS(4983), + [anon_sym_BSLASHacfp] = ACTIONS(4983), + [anon_sym_BSLASHAcfp] = ACTIONS(4983), + [anon_sym_BSLASHac] = ACTIONS(4983), + [anon_sym_BSLASHAc] = ACTIONS(4983), + [anon_sym_BSLASHacp] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), + [anon_sym_BSLASHcolor] = ACTIONS(4983), + [anon_sym_BSLASHcolorbox] = ACTIONS(4983), + [anon_sym_BSLASHtextcolor] = ACTIONS(4983), + [anon_sym_BSLASHpagecolor] = ACTIONS(4983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHtext] = ACTIONS(4983), + [anon_sym_BSLASHintertext] = ACTIONS(4983), + [anon_sym_shortintertext] = ACTIONS(4983), }, - [925] = { - [sym_command_name] = ACTIONS(5081), + [709] = { + [ts_builtin_sym_end] = ACTIONS(4985), + [sym_command_name] = ACTIONS(4987), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_BSLASHpart] = ACTIONS(5081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddpart] = ACTIONS(5081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHchapter] = ACTIONS(5081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddchap] = ACTIONS(5081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsection] = ACTIONS(5081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddsec] = ACTIONS(5081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHparagraph] = ACTIONS(5081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHitem] = ACTIONS(5081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASHbegin] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), - }, - [926] = { - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_BSLASHpart] = ACTIONS(5015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddpart] = ACTIONS(5015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHchapter] = ACTIONS(5015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddchap] = ACTIONS(5015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsection] = ACTIONS(5015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddsec] = ACTIONS(5015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHparagraph] = ACTIONS(5015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHitem] = ACTIONS(5015), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASHbegin] = ACTIONS(5015), - [anon_sym_BSLASHend] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), + [anon_sym_BSLASHiffalse] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4985), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(4985), + [anon_sym_RBRACK] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_BSLASHpart] = ACTIONS(4987), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddpart] = ACTIONS(4987), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), + [anon_sym_BSLASHchapter] = ACTIONS(4987), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddchap] = ACTIONS(4987), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsection] = ACTIONS(4987), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddsec] = ACTIONS(4987), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubsection] = ACTIONS(4987), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHparagraph] = ACTIONS(4987), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), + [anon_sym_BSLASHitem] = ACTIONS(4987), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4985), + [anon_sym_RBRACE] = ACTIONS(4985), + [sym_word] = ACTIONS(4987), + [sym_placeholder] = ACTIONS(4985), + [anon_sym_PLUS] = ACTIONS(4987), + [anon_sym_DASH] = ACTIONS(4987), + [anon_sym_STAR] = ACTIONS(4987), + [anon_sym_SLASH] = ACTIONS(4987), + [anon_sym_CARET] = ACTIONS(4987), + [anon_sym__] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym_GT] = ACTIONS(4987), + [anon_sym_BANG] = ACTIONS(4987), + [anon_sym_PIPE] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_SQUOTE] = ACTIONS(4987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(4987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), + [anon_sym_BSLASHbegin] = ACTIONS(4987), + [anon_sym_BSLASHusepackage] = ACTIONS(4987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), + [anon_sym_BSLASHinclude] = ACTIONS(4987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), + [anon_sym_BSLASHinput] = ACTIONS(4987), + [anon_sym_BSLASHsubfile] = ACTIONS(4987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), + [anon_sym_BSLASHbibliography] = ACTIONS(4987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), + [anon_sym_BSLASHincludesvg] = ACTIONS(4987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), + [anon_sym_BSLASHimport] = ACTIONS(4987), + [anon_sym_BSLASHsubimport] = ACTIONS(4987), + [anon_sym_BSLASHinputfrom] = ACTIONS(4987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), + [anon_sym_BSLASHincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHcaption] = ACTIONS(4987), + [anon_sym_BSLASHcite] = ACTIONS(4987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCite] = ACTIONS(4987), + [anon_sym_BSLASHnocite] = ACTIONS(4987), + [anon_sym_BSLASHcitet] = ACTIONS(4987), + [anon_sym_BSLASHcitep] = ACTIONS(4987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteauthor] = ACTIONS(4987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitetitle] = ACTIONS(4987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteyear] = ACTIONS(4987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitedate] = ACTIONS(4987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteurl] = ACTIONS(4987), + [anon_sym_BSLASHfullcite] = ACTIONS(4987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), + [anon_sym_BSLASHcitealt] = ACTIONS(4987), + [anon_sym_BSLASHcitealp] = ACTIONS(4987), + [anon_sym_BSLASHcitetext] = ACTIONS(4987), + [anon_sym_BSLASHparencite] = ACTIONS(4987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHParencite] = ACTIONS(4987), + [anon_sym_BSLASHfootcite] = ACTIONS(4987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), + [anon_sym_BSLASHtextcite] = ACTIONS(4987), + [anon_sym_BSLASHTextcite] = ACTIONS(4987), + [anon_sym_BSLASHsmartcite] = ACTIONS(4987), + [anon_sym_BSLASHSmartcite] = ACTIONS(4987), + [anon_sym_BSLASHsupercite] = ACTIONS(4987), + [anon_sym_BSLASHautocite] = ACTIONS(4987), + [anon_sym_BSLASHAutocite] = ACTIONS(4987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHvolcite] = ACTIONS(4987), + [anon_sym_BSLASHVolcite] = ACTIONS(4987), + [anon_sym_BSLASHpvolcite] = ACTIONS(4987), + [anon_sym_BSLASHPvolcite] = ACTIONS(4987), + [anon_sym_BSLASHfvolcite] = ACTIONS(4987), + [anon_sym_BSLASHftvolcite] = ACTIONS(4987), + [anon_sym_BSLASHsvolcite] = ACTIONS(4987), + [anon_sym_BSLASHSvolcite] = ACTIONS(4987), + [anon_sym_BSLASHtvolcite] = ACTIONS(4987), + [anon_sym_BSLASHTvolcite] = ACTIONS(4987), + [anon_sym_BSLASHavolcite] = ACTIONS(4987), + [anon_sym_BSLASHAvolcite] = ACTIONS(4987), + [anon_sym_BSLASHnotecite] = ACTIONS(4987), + [anon_sym_BSLASHNotecite] = ACTIONS(4987), + [anon_sym_BSLASHpnotecite] = ACTIONS(4987), + [anon_sym_BSLASHPnotecite] = ACTIONS(4987), + [anon_sym_BSLASHfnotecite] = ACTIONS(4987), + [anon_sym_BSLASHlabel] = ACTIONS(4987), + [anon_sym_BSLASHref] = ACTIONS(4987), + [anon_sym_BSLASHeqref] = ACTIONS(4987), + [anon_sym_BSLASHvref] = ACTIONS(4987), + [anon_sym_BSLASHVref] = ACTIONS(4987), + [anon_sym_BSLASHautoref] = ACTIONS(4987), + [anon_sym_BSLASHpageref] = ACTIONS(4987), + [anon_sym_BSLASHcref] = ACTIONS(4987), + [anon_sym_BSLASHCref] = ACTIONS(4987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnameCref] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHlabelcref] = ACTIONS(4987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCrefrange] = ACTIONS(4987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnewlabel] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), + [anon_sym_BSLASHdef] = ACTIONS(4987), + [anon_sym_BSLASHlet] = ACTIONS(4987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), + [anon_sym_BSLASHgls] = ACTIONS(4987), + [anon_sym_BSLASHGls] = ACTIONS(4987), + [anon_sym_BSLASHGLS] = ACTIONS(4987), + [anon_sym_BSLASHglspl] = ACTIONS(4987), + [anon_sym_BSLASHGlspl] = ACTIONS(4987), + [anon_sym_BSLASHGLSpl] = ACTIONS(4987), + [anon_sym_BSLASHglsdisp] = ACTIONS(4987), + [anon_sym_BSLASHglslink] = ACTIONS(4987), + [anon_sym_BSLASHglstext] = ACTIONS(4987), + [anon_sym_BSLASHGlstext] = ACTIONS(4987), + [anon_sym_BSLASHGLStext] = ACTIONS(4987), + [anon_sym_BSLASHglsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), + [anon_sym_BSLASHglsplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSplural] = ACTIONS(4987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHglsname] = ACTIONS(4987), + [anon_sym_BSLASHGlsname] = ACTIONS(4987), + [anon_sym_BSLASHGLSname] = ACTIONS(4987), + [anon_sym_BSLASHglssymbol] = ACTIONS(4987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), + [anon_sym_BSLASHglsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), + [anon_sym_BSLASHglsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), + [anon_sym_BSLASHglsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), + [anon_sym_BSLASHglsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), + [anon_sym_BSLASHglsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), + [anon_sym_BSLASHnewacronym] = ACTIONS(4987), + [anon_sym_BSLASHacrshort] = ACTIONS(4987), + [anon_sym_BSLASHAcrshort] = ACTIONS(4987), + [anon_sym_BSLASHACRshort] = ACTIONS(4987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), + [anon_sym_BSLASHacrlong] = ACTIONS(4987), + [anon_sym_BSLASHAcrlong] = ACTIONS(4987), + [anon_sym_BSLASHACRlong] = ACTIONS(4987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), + [anon_sym_BSLASHacrfull] = ACTIONS(4987), + [anon_sym_BSLASHAcrfull] = ACTIONS(4987), + [anon_sym_BSLASHACRfull] = ACTIONS(4987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), + [anon_sym_BSLASHacs] = ACTIONS(4987), + [anon_sym_BSLASHAcs] = ACTIONS(4987), + [anon_sym_BSLASHacsp] = ACTIONS(4987), + [anon_sym_BSLASHAcsp] = ACTIONS(4987), + [anon_sym_BSLASHacl] = ACTIONS(4987), + [anon_sym_BSLASHAcl] = ACTIONS(4987), + [anon_sym_BSLASHaclp] = ACTIONS(4987), + [anon_sym_BSLASHAclp] = ACTIONS(4987), + [anon_sym_BSLASHacf] = ACTIONS(4987), + [anon_sym_BSLASHAcf] = ACTIONS(4987), + [anon_sym_BSLASHacfp] = ACTIONS(4987), + [anon_sym_BSLASHAcfp] = ACTIONS(4987), + [anon_sym_BSLASHac] = ACTIONS(4987), + [anon_sym_BSLASHAc] = ACTIONS(4987), + [anon_sym_BSLASHacp] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), + [anon_sym_BSLASHcolor] = ACTIONS(4987), + [anon_sym_BSLASHcolorbox] = ACTIONS(4987), + [anon_sym_BSLASHtextcolor] = ACTIONS(4987), + [anon_sym_BSLASHpagecolor] = ACTIONS(4987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), + [anon_sym_BSLASHtext] = ACTIONS(4987), + [anon_sym_BSLASHintertext] = ACTIONS(4987), + [anon_sym_shortintertext] = ACTIONS(4987), }, - [927] = { - [sym_command_name] = ACTIONS(5077), + [710] = { + [ts_builtin_sym_end] = ACTIONS(4989), + [sym_command_name] = ACTIONS(4991), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_BSLASHpart] = ACTIONS(5077), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddpart] = ACTIONS(5077), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHchapter] = ACTIONS(5077), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddchap] = ACTIONS(5077), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsection] = ACTIONS(5077), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddsec] = ACTIONS(5077), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHparagraph] = ACTIONS(5077), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHitem] = ACTIONS(5077), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5077), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), - [anon_sym_BSLASHbegin] = ACTIONS(5077), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), + [anon_sym_BSLASHiffalse] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4989), + [anon_sym_RPAREN] = ACTIONS(4989), + [anon_sym_LBRACK] = ACTIONS(4989), + [anon_sym_RBRACK] = ACTIONS(4989), + [anon_sym_COMMA] = ACTIONS(4989), + [anon_sym_EQ] = ACTIONS(4989), + [anon_sym_BSLASHpart] = ACTIONS(4991), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddpart] = ACTIONS(4991), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), + [anon_sym_BSLASHchapter] = ACTIONS(4991), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddchap] = ACTIONS(4991), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsection] = ACTIONS(4991), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddsec] = ACTIONS(4991), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubsection] = ACTIONS(4991), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHparagraph] = ACTIONS(4991), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), + [anon_sym_BSLASHitem] = ACTIONS(4991), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(4989), + [anon_sym_RBRACE] = ACTIONS(4989), + [sym_word] = ACTIONS(4991), + [sym_placeholder] = ACTIONS(4989), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym__] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_BANG] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_SQUOTE] = ACTIONS(4991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), + [anon_sym_DOLLAR] = ACTIONS(4991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), + [anon_sym_BSLASHbegin] = ACTIONS(4991), + [anon_sym_BSLASHusepackage] = ACTIONS(4991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), + [anon_sym_BSLASHinclude] = ACTIONS(4991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), + [anon_sym_BSLASHinput] = ACTIONS(4991), + [anon_sym_BSLASHsubfile] = ACTIONS(4991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), + [anon_sym_BSLASHbibliography] = ACTIONS(4991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), + [anon_sym_BSLASHincludesvg] = ACTIONS(4991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), + [anon_sym_BSLASHimport] = ACTIONS(4991), + [anon_sym_BSLASHsubimport] = ACTIONS(4991), + [anon_sym_BSLASHinputfrom] = ACTIONS(4991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), + [anon_sym_BSLASHincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHcaption] = ACTIONS(4991), + [anon_sym_BSLASHcite] = ACTIONS(4991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCite] = ACTIONS(4991), + [anon_sym_BSLASHnocite] = ACTIONS(4991), + [anon_sym_BSLASHcitet] = ACTIONS(4991), + [anon_sym_BSLASHcitep] = ACTIONS(4991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteauthor] = ACTIONS(4991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitetitle] = ACTIONS(4991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteyear] = ACTIONS(4991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitedate] = ACTIONS(4991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteurl] = ACTIONS(4991), + [anon_sym_BSLASHfullcite] = ACTIONS(4991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), + [anon_sym_BSLASHcitealt] = ACTIONS(4991), + [anon_sym_BSLASHcitealp] = ACTIONS(4991), + [anon_sym_BSLASHcitetext] = ACTIONS(4991), + [anon_sym_BSLASHparencite] = ACTIONS(4991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHParencite] = ACTIONS(4991), + [anon_sym_BSLASHfootcite] = ACTIONS(4991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), + [anon_sym_BSLASHtextcite] = ACTIONS(4991), + [anon_sym_BSLASHTextcite] = ACTIONS(4991), + [anon_sym_BSLASHsmartcite] = ACTIONS(4991), + [anon_sym_BSLASHSmartcite] = ACTIONS(4991), + [anon_sym_BSLASHsupercite] = ACTIONS(4991), + [anon_sym_BSLASHautocite] = ACTIONS(4991), + [anon_sym_BSLASHAutocite] = ACTIONS(4991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHvolcite] = ACTIONS(4991), + [anon_sym_BSLASHVolcite] = ACTIONS(4991), + [anon_sym_BSLASHpvolcite] = ACTIONS(4991), + [anon_sym_BSLASHPvolcite] = ACTIONS(4991), + [anon_sym_BSLASHfvolcite] = ACTIONS(4991), + [anon_sym_BSLASHftvolcite] = ACTIONS(4991), + [anon_sym_BSLASHsvolcite] = ACTIONS(4991), + [anon_sym_BSLASHSvolcite] = ACTIONS(4991), + [anon_sym_BSLASHtvolcite] = ACTIONS(4991), + [anon_sym_BSLASHTvolcite] = ACTIONS(4991), + [anon_sym_BSLASHavolcite] = ACTIONS(4991), + [anon_sym_BSLASHAvolcite] = ACTIONS(4991), + [anon_sym_BSLASHnotecite] = ACTIONS(4991), + [anon_sym_BSLASHNotecite] = ACTIONS(4991), + [anon_sym_BSLASHpnotecite] = ACTIONS(4991), + [anon_sym_BSLASHPnotecite] = ACTIONS(4991), + [anon_sym_BSLASHfnotecite] = ACTIONS(4991), + [anon_sym_BSLASHlabel] = ACTIONS(4991), + [anon_sym_BSLASHref] = ACTIONS(4991), + [anon_sym_BSLASHeqref] = ACTIONS(4991), + [anon_sym_BSLASHvref] = ACTIONS(4991), + [anon_sym_BSLASHVref] = ACTIONS(4991), + [anon_sym_BSLASHautoref] = ACTIONS(4991), + [anon_sym_BSLASHpageref] = ACTIONS(4991), + [anon_sym_BSLASHcref] = ACTIONS(4991), + [anon_sym_BSLASHCref] = ACTIONS(4991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnameCref] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHlabelcref] = ACTIONS(4991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCrefrange] = ACTIONS(4991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnewlabel] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), + [anon_sym_BSLASHdef] = ACTIONS(4991), + [anon_sym_BSLASHlet] = ACTIONS(4991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), + [anon_sym_BSLASHgls] = ACTIONS(4991), + [anon_sym_BSLASHGls] = ACTIONS(4991), + [anon_sym_BSLASHGLS] = ACTIONS(4991), + [anon_sym_BSLASHglspl] = ACTIONS(4991), + [anon_sym_BSLASHGlspl] = ACTIONS(4991), + [anon_sym_BSLASHGLSpl] = ACTIONS(4991), + [anon_sym_BSLASHglsdisp] = ACTIONS(4991), + [anon_sym_BSLASHglslink] = ACTIONS(4991), + [anon_sym_BSLASHglstext] = ACTIONS(4991), + [anon_sym_BSLASHGlstext] = ACTIONS(4991), + [anon_sym_BSLASHGLStext] = ACTIONS(4991), + [anon_sym_BSLASHglsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), + [anon_sym_BSLASHglsplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSplural] = ACTIONS(4991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHglsname] = ACTIONS(4991), + [anon_sym_BSLASHGlsname] = ACTIONS(4991), + [anon_sym_BSLASHGLSname] = ACTIONS(4991), + [anon_sym_BSLASHglssymbol] = ACTIONS(4991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), + [anon_sym_BSLASHglsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), + [anon_sym_BSLASHglsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), + [anon_sym_BSLASHglsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), + [anon_sym_BSLASHglsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), + [anon_sym_BSLASHglsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), + [anon_sym_BSLASHnewacronym] = ACTIONS(4991), + [anon_sym_BSLASHacrshort] = ACTIONS(4991), + [anon_sym_BSLASHAcrshort] = ACTIONS(4991), + [anon_sym_BSLASHACRshort] = ACTIONS(4991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), + [anon_sym_BSLASHacrlong] = ACTIONS(4991), + [anon_sym_BSLASHAcrlong] = ACTIONS(4991), + [anon_sym_BSLASHACRlong] = ACTIONS(4991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), + [anon_sym_BSLASHacrfull] = ACTIONS(4991), + [anon_sym_BSLASHAcrfull] = ACTIONS(4991), + [anon_sym_BSLASHACRfull] = ACTIONS(4991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), + [anon_sym_BSLASHacs] = ACTIONS(4991), + [anon_sym_BSLASHAcs] = ACTIONS(4991), + [anon_sym_BSLASHacsp] = ACTIONS(4991), + [anon_sym_BSLASHAcsp] = ACTIONS(4991), + [anon_sym_BSLASHacl] = ACTIONS(4991), + [anon_sym_BSLASHAcl] = ACTIONS(4991), + [anon_sym_BSLASHaclp] = ACTIONS(4991), + [anon_sym_BSLASHAclp] = ACTIONS(4991), + [anon_sym_BSLASHacf] = ACTIONS(4991), + [anon_sym_BSLASHAcf] = ACTIONS(4991), + [anon_sym_BSLASHacfp] = ACTIONS(4991), + [anon_sym_BSLASHAcfp] = ACTIONS(4991), + [anon_sym_BSLASHac] = ACTIONS(4991), + [anon_sym_BSLASHAc] = ACTIONS(4991), + [anon_sym_BSLASHacp] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), + [anon_sym_BSLASHcolor] = ACTIONS(4991), + [anon_sym_BSLASHcolorbox] = ACTIONS(4991), + [anon_sym_BSLASHtextcolor] = ACTIONS(4991), + [anon_sym_BSLASHpagecolor] = ACTIONS(4991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHtext] = ACTIONS(4991), + [anon_sym_BSLASHintertext] = ACTIONS(4991), + [anon_sym_shortintertext] = ACTIONS(4991), }, - [928] = { - [sym_command_name] = ACTIONS(5073), + [711] = { + [ts_builtin_sym_end] = ACTIONS(4993), + [sym_command_name] = ACTIONS(4995), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_BSLASHpart] = ACTIONS(5073), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddpart] = ACTIONS(5073), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHchapter] = ACTIONS(5073), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddchap] = ACTIONS(5073), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsection] = ACTIONS(5073), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddsec] = ACTIONS(5073), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHparagraph] = ACTIONS(5073), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHitem] = ACTIONS(5073), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASHbegin] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHiffalse] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4993), + [anon_sym_RBRACK] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_BSLASHpart] = ACTIONS(4995), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), + [anon_sym_BSLASHaddpart] = ACTIONS(4995), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), + [anon_sym_BSLASHchapter] = ACTIONS(4995), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), + [anon_sym_BSLASHaddchap] = ACTIONS(4995), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsection] = ACTIONS(4995), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), + [anon_sym_BSLASHaddsec] = ACTIONS(4995), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsubsection] = ACTIONS(4995), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), + [anon_sym_BSLASHparagraph] = ACTIONS(4995), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), + [anon_sym_BSLASHitem] = ACTIONS(4995), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4993), + [anon_sym_RBRACE] = ACTIONS(4993), + [sym_word] = ACTIONS(4995), + [sym_placeholder] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym__] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_BANG] = ACTIONS(4995), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_SQUOTE] = ACTIONS(4995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), + [anon_sym_DOLLAR] = ACTIONS(4995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), + [anon_sym_BSLASHbegin] = ACTIONS(4995), + [anon_sym_BSLASHusepackage] = ACTIONS(4995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), + [anon_sym_BSLASHinclude] = ACTIONS(4995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), + [anon_sym_BSLASHinput] = ACTIONS(4995), + [anon_sym_BSLASHsubfile] = ACTIONS(4995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), + [anon_sym_BSLASHbibliography] = ACTIONS(4995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), + [anon_sym_BSLASHincludesvg] = ACTIONS(4995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), + [anon_sym_BSLASHimport] = ACTIONS(4995), + [anon_sym_BSLASHsubimport] = ACTIONS(4995), + [anon_sym_BSLASHinputfrom] = ACTIONS(4995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), + [anon_sym_BSLASHincludefrom] = ACTIONS(4995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), + [anon_sym_BSLASHcaption] = ACTIONS(4995), + [anon_sym_BSLASHcite] = ACTIONS(4995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCite] = ACTIONS(4995), + [anon_sym_BSLASHnocite] = ACTIONS(4995), + [anon_sym_BSLASHcitet] = ACTIONS(4995), + [anon_sym_BSLASHcitep] = ACTIONS(4995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteauthor] = ACTIONS(4995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitetitle] = ACTIONS(4995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteyear] = ACTIONS(4995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitedate] = ACTIONS(4995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteurl] = ACTIONS(4995), + [anon_sym_BSLASHfullcite] = ACTIONS(4995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), + [anon_sym_BSLASHcitealt] = ACTIONS(4995), + [anon_sym_BSLASHcitealp] = ACTIONS(4995), + [anon_sym_BSLASHcitetext] = ACTIONS(4995), + [anon_sym_BSLASHparencite] = ACTIONS(4995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHParencite] = ACTIONS(4995), + [anon_sym_BSLASHfootcite] = ACTIONS(4995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), + [anon_sym_BSLASHtextcite] = ACTIONS(4995), + [anon_sym_BSLASHTextcite] = ACTIONS(4995), + [anon_sym_BSLASHsmartcite] = ACTIONS(4995), + [anon_sym_BSLASHSmartcite] = ACTIONS(4995), + [anon_sym_BSLASHsupercite] = ACTIONS(4995), + [anon_sym_BSLASHautocite] = ACTIONS(4995), + [anon_sym_BSLASHAutocite] = ACTIONS(4995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHvolcite] = ACTIONS(4995), + [anon_sym_BSLASHVolcite] = ACTIONS(4995), + [anon_sym_BSLASHpvolcite] = ACTIONS(4995), + [anon_sym_BSLASHPvolcite] = ACTIONS(4995), + [anon_sym_BSLASHfvolcite] = ACTIONS(4995), + [anon_sym_BSLASHftvolcite] = ACTIONS(4995), + [anon_sym_BSLASHsvolcite] = ACTIONS(4995), + [anon_sym_BSLASHSvolcite] = ACTIONS(4995), + [anon_sym_BSLASHtvolcite] = ACTIONS(4995), + [anon_sym_BSLASHTvolcite] = ACTIONS(4995), + [anon_sym_BSLASHavolcite] = ACTIONS(4995), + [anon_sym_BSLASHAvolcite] = ACTIONS(4995), + [anon_sym_BSLASHnotecite] = ACTIONS(4995), + [anon_sym_BSLASHNotecite] = ACTIONS(4995), + [anon_sym_BSLASHpnotecite] = ACTIONS(4995), + [anon_sym_BSLASHPnotecite] = ACTIONS(4995), + [anon_sym_BSLASHfnotecite] = ACTIONS(4995), + [anon_sym_BSLASHlabel] = ACTIONS(4995), + [anon_sym_BSLASHref] = ACTIONS(4995), + [anon_sym_BSLASHeqref] = ACTIONS(4995), + [anon_sym_BSLASHvref] = ACTIONS(4995), + [anon_sym_BSLASHVref] = ACTIONS(4995), + [anon_sym_BSLASHautoref] = ACTIONS(4995), + [anon_sym_BSLASHpageref] = ACTIONS(4995), + [anon_sym_BSLASHcref] = ACTIONS(4995), + [anon_sym_BSLASHCref] = ACTIONS(4995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), + [anon_sym_BSLASHnamecref] = ACTIONS(4995), + [anon_sym_BSLASHnameCref] = ACTIONS(4995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), + [anon_sym_BSLASHlabelcref] = ACTIONS(4995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), + [anon_sym_BSLASHcrefrange] = ACTIONS(4995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCrefrange] = ACTIONS(4995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), + [anon_sym_BSLASHnewlabel] = ACTIONS(4995), + [anon_sym_BSLASHnewcommand] = ACTIONS(4995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), + [anon_sym_BSLASHdef] = ACTIONS(4995), + [anon_sym_BSLASHlet] = ACTIONS(4995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), + [anon_sym_BSLASHgls] = ACTIONS(4995), + [anon_sym_BSLASHGls] = ACTIONS(4995), + [anon_sym_BSLASHGLS] = ACTIONS(4995), + [anon_sym_BSLASHglspl] = ACTIONS(4995), + [anon_sym_BSLASHGlspl] = ACTIONS(4995), + [anon_sym_BSLASHGLSpl] = ACTIONS(4995), + [anon_sym_BSLASHglsdisp] = ACTIONS(4995), + [anon_sym_BSLASHglslink] = ACTIONS(4995), + [anon_sym_BSLASHglstext] = ACTIONS(4995), + [anon_sym_BSLASHGlstext] = ACTIONS(4995), + [anon_sym_BSLASHGLStext] = ACTIONS(4995), + [anon_sym_BSLASHglsfirst] = ACTIONS(4995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), + [anon_sym_BSLASHglsplural] = ACTIONS(4995), + [anon_sym_BSLASHGlsplural] = ACTIONS(4995), + [anon_sym_BSLASHGLSplural] = ACTIONS(4995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHglsname] = ACTIONS(4995), + [anon_sym_BSLASHGlsname] = ACTIONS(4995), + [anon_sym_BSLASHGLSname] = ACTIONS(4995), + [anon_sym_BSLASHglssymbol] = ACTIONS(4995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), + [anon_sym_BSLASHglsdesc] = ACTIONS(4995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), + [anon_sym_BSLASHglsuseri] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), + [anon_sym_BSLASHglsuserii] = ACTIONS(4995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), + [anon_sym_BSLASHglsuserv] = ACTIONS(4995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), + [anon_sym_BSLASHglsuservi] = ACTIONS(4995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), + [anon_sym_BSLASHnewacronym] = ACTIONS(4995), + [anon_sym_BSLASHacrshort] = ACTIONS(4995), + [anon_sym_BSLASHAcrshort] = ACTIONS(4995), + [anon_sym_BSLASHACRshort] = ACTIONS(4995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), + [anon_sym_BSLASHacrlong] = ACTIONS(4995), + [anon_sym_BSLASHAcrlong] = ACTIONS(4995), + [anon_sym_BSLASHACRlong] = ACTIONS(4995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), + [anon_sym_BSLASHacrfull] = ACTIONS(4995), + [anon_sym_BSLASHAcrfull] = ACTIONS(4995), + [anon_sym_BSLASHACRfull] = ACTIONS(4995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), + [anon_sym_BSLASHacs] = ACTIONS(4995), + [anon_sym_BSLASHAcs] = ACTIONS(4995), + [anon_sym_BSLASHacsp] = ACTIONS(4995), + [anon_sym_BSLASHAcsp] = ACTIONS(4995), + [anon_sym_BSLASHacl] = ACTIONS(4995), + [anon_sym_BSLASHAcl] = ACTIONS(4995), + [anon_sym_BSLASHaclp] = ACTIONS(4995), + [anon_sym_BSLASHAclp] = ACTIONS(4995), + [anon_sym_BSLASHacf] = ACTIONS(4995), + [anon_sym_BSLASHAcf] = ACTIONS(4995), + [anon_sym_BSLASHacfp] = ACTIONS(4995), + [anon_sym_BSLASHAcfp] = ACTIONS(4995), + [anon_sym_BSLASHac] = ACTIONS(4995), + [anon_sym_BSLASHAc] = ACTIONS(4995), + [anon_sym_BSLASHacp] = ACTIONS(4995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), + [anon_sym_BSLASHcolor] = ACTIONS(4995), + [anon_sym_BSLASHcolorbox] = ACTIONS(4995), + [anon_sym_BSLASHtextcolor] = ACTIONS(4995), + [anon_sym_BSLASHpagecolor] = ACTIONS(4995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), + [anon_sym_BSLASHtext] = ACTIONS(4995), + [anon_sym_BSLASHintertext] = ACTIONS(4995), + [anon_sym_shortintertext] = ACTIONS(4995), }, - [929] = { - [sym_command_name] = ACTIONS(5069), + [712] = { + [ts_builtin_sym_end] = ACTIONS(4997), + [sym_command_name] = ACTIONS(4999), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_BSLASHpart] = ACTIONS(5069), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddpart] = ACTIONS(5069), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHchapter] = ACTIONS(5069), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddchap] = ACTIONS(5069), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsection] = ACTIONS(5069), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddsec] = ACTIONS(5069), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHparagraph] = ACTIONS(5069), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHitem] = ACTIONS(5069), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), - [anon_sym_BSLASHbegin] = ACTIONS(5069), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), + [anon_sym_BSLASHiffalse] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_RBRACK] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4997), + [anon_sym_BSLASHpart] = ACTIONS(4999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddpart] = ACTIONS(4999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), + [anon_sym_BSLASHchapter] = ACTIONS(4999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddchap] = ACTIONS(4999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsection] = ACTIONS(4999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddsec] = ACTIONS(4999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubsection] = ACTIONS(4999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHparagraph] = ACTIONS(4999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), + [anon_sym_BSLASHitem] = ACTIONS(4999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4997), + [anon_sym_RBRACE] = ACTIONS(4997), + [sym_word] = ACTIONS(4999), + [sym_placeholder] = ACTIONS(4997), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym__] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_BANG] = ACTIONS(4999), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_SQUOTE] = ACTIONS(4999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), + [anon_sym_DOLLAR] = ACTIONS(4999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), + [anon_sym_BSLASHbegin] = ACTIONS(4999), + [anon_sym_BSLASHusepackage] = ACTIONS(4999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), + [anon_sym_BSLASHinclude] = ACTIONS(4999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), + [anon_sym_BSLASHinput] = ACTIONS(4999), + [anon_sym_BSLASHsubfile] = ACTIONS(4999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), + [anon_sym_BSLASHbibliography] = ACTIONS(4999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), + [anon_sym_BSLASHincludesvg] = ACTIONS(4999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), + [anon_sym_BSLASHimport] = ACTIONS(4999), + [anon_sym_BSLASHsubimport] = ACTIONS(4999), + [anon_sym_BSLASHinputfrom] = ACTIONS(4999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), + [anon_sym_BSLASHincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHcaption] = ACTIONS(4999), + [anon_sym_BSLASHcite] = ACTIONS(4999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCite] = ACTIONS(4999), + [anon_sym_BSLASHnocite] = ACTIONS(4999), + [anon_sym_BSLASHcitet] = ACTIONS(4999), + [anon_sym_BSLASHcitep] = ACTIONS(4999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteauthor] = ACTIONS(4999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitetitle] = ACTIONS(4999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteyear] = ACTIONS(4999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitedate] = ACTIONS(4999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteurl] = ACTIONS(4999), + [anon_sym_BSLASHfullcite] = ACTIONS(4999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), + [anon_sym_BSLASHcitealt] = ACTIONS(4999), + [anon_sym_BSLASHcitealp] = ACTIONS(4999), + [anon_sym_BSLASHcitetext] = ACTIONS(4999), + [anon_sym_BSLASHparencite] = ACTIONS(4999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHParencite] = ACTIONS(4999), + [anon_sym_BSLASHfootcite] = ACTIONS(4999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), + [anon_sym_BSLASHtextcite] = ACTIONS(4999), + [anon_sym_BSLASHTextcite] = ACTIONS(4999), + [anon_sym_BSLASHsmartcite] = ACTIONS(4999), + [anon_sym_BSLASHSmartcite] = ACTIONS(4999), + [anon_sym_BSLASHsupercite] = ACTIONS(4999), + [anon_sym_BSLASHautocite] = ACTIONS(4999), + [anon_sym_BSLASHAutocite] = ACTIONS(4999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHvolcite] = ACTIONS(4999), + [anon_sym_BSLASHVolcite] = ACTIONS(4999), + [anon_sym_BSLASHpvolcite] = ACTIONS(4999), + [anon_sym_BSLASHPvolcite] = ACTIONS(4999), + [anon_sym_BSLASHfvolcite] = ACTIONS(4999), + [anon_sym_BSLASHftvolcite] = ACTIONS(4999), + [anon_sym_BSLASHsvolcite] = ACTIONS(4999), + [anon_sym_BSLASHSvolcite] = ACTIONS(4999), + [anon_sym_BSLASHtvolcite] = ACTIONS(4999), + [anon_sym_BSLASHTvolcite] = ACTIONS(4999), + [anon_sym_BSLASHavolcite] = ACTIONS(4999), + [anon_sym_BSLASHAvolcite] = ACTIONS(4999), + [anon_sym_BSLASHnotecite] = ACTIONS(4999), + [anon_sym_BSLASHNotecite] = ACTIONS(4999), + [anon_sym_BSLASHpnotecite] = ACTIONS(4999), + [anon_sym_BSLASHPnotecite] = ACTIONS(4999), + [anon_sym_BSLASHfnotecite] = ACTIONS(4999), + [anon_sym_BSLASHlabel] = ACTIONS(4999), + [anon_sym_BSLASHref] = ACTIONS(4999), + [anon_sym_BSLASHeqref] = ACTIONS(4999), + [anon_sym_BSLASHvref] = ACTIONS(4999), + [anon_sym_BSLASHVref] = ACTIONS(4999), + [anon_sym_BSLASHautoref] = ACTIONS(4999), + [anon_sym_BSLASHpageref] = ACTIONS(4999), + [anon_sym_BSLASHcref] = ACTIONS(4999), + [anon_sym_BSLASHCref] = ACTIONS(4999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnameCref] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHlabelcref] = ACTIONS(4999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCrefrange] = ACTIONS(4999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnewlabel] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), + [anon_sym_BSLASHdef] = ACTIONS(4999), + [anon_sym_BSLASHlet] = ACTIONS(4999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), + [anon_sym_BSLASHgls] = ACTIONS(4999), + [anon_sym_BSLASHGls] = ACTIONS(4999), + [anon_sym_BSLASHGLS] = ACTIONS(4999), + [anon_sym_BSLASHglspl] = ACTIONS(4999), + [anon_sym_BSLASHGlspl] = ACTIONS(4999), + [anon_sym_BSLASHGLSpl] = ACTIONS(4999), + [anon_sym_BSLASHglsdisp] = ACTIONS(4999), + [anon_sym_BSLASHglslink] = ACTIONS(4999), + [anon_sym_BSLASHglstext] = ACTIONS(4999), + [anon_sym_BSLASHGlstext] = ACTIONS(4999), + [anon_sym_BSLASHGLStext] = ACTIONS(4999), + [anon_sym_BSLASHglsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), + [anon_sym_BSLASHglsplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSplural] = ACTIONS(4999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHglsname] = ACTIONS(4999), + [anon_sym_BSLASHGlsname] = ACTIONS(4999), + [anon_sym_BSLASHGLSname] = ACTIONS(4999), + [anon_sym_BSLASHglssymbol] = ACTIONS(4999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), + [anon_sym_BSLASHglsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), + [anon_sym_BSLASHglsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), + [anon_sym_BSLASHglsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), + [anon_sym_BSLASHglsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), + [anon_sym_BSLASHglsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), + [anon_sym_BSLASHnewacronym] = ACTIONS(4999), + [anon_sym_BSLASHacrshort] = ACTIONS(4999), + [anon_sym_BSLASHAcrshort] = ACTIONS(4999), + [anon_sym_BSLASHACRshort] = ACTIONS(4999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), + [anon_sym_BSLASHacrlong] = ACTIONS(4999), + [anon_sym_BSLASHAcrlong] = ACTIONS(4999), + [anon_sym_BSLASHACRlong] = ACTIONS(4999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), + [anon_sym_BSLASHacrfull] = ACTIONS(4999), + [anon_sym_BSLASHAcrfull] = ACTIONS(4999), + [anon_sym_BSLASHACRfull] = ACTIONS(4999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), + [anon_sym_BSLASHacs] = ACTIONS(4999), + [anon_sym_BSLASHAcs] = ACTIONS(4999), + [anon_sym_BSLASHacsp] = ACTIONS(4999), + [anon_sym_BSLASHAcsp] = ACTIONS(4999), + [anon_sym_BSLASHacl] = ACTIONS(4999), + [anon_sym_BSLASHAcl] = ACTIONS(4999), + [anon_sym_BSLASHaclp] = ACTIONS(4999), + [anon_sym_BSLASHAclp] = ACTIONS(4999), + [anon_sym_BSLASHacf] = ACTIONS(4999), + [anon_sym_BSLASHAcf] = ACTIONS(4999), + [anon_sym_BSLASHacfp] = ACTIONS(4999), + [anon_sym_BSLASHAcfp] = ACTIONS(4999), + [anon_sym_BSLASHac] = ACTIONS(4999), + [anon_sym_BSLASHAc] = ACTIONS(4999), + [anon_sym_BSLASHacp] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), + [anon_sym_BSLASHcolor] = ACTIONS(4999), + [anon_sym_BSLASHcolorbox] = ACTIONS(4999), + [anon_sym_BSLASHtextcolor] = ACTIONS(4999), + [anon_sym_BSLASHpagecolor] = ACTIONS(4999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), + [anon_sym_BSLASHtext] = ACTIONS(4999), + [anon_sym_BSLASHintertext] = ACTIONS(4999), + [anon_sym_shortintertext] = ACTIONS(4999), + }, + [713] = { + [ts_builtin_sym_end] = ACTIONS(5001), + [sym_command_name] = ACTIONS(5003), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_RBRACK] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(5001), + [anon_sym_BSLASHpart] = ACTIONS(5003), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddpart] = ACTIONS(5003), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), + [anon_sym_BSLASHchapter] = ACTIONS(5003), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddchap] = ACTIONS(5003), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsection] = ACTIONS(5003), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddsec] = ACTIONS(5003), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubsection] = ACTIONS(5003), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHparagraph] = ACTIONS(5003), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), + [anon_sym_BSLASHitem] = ACTIONS(5003), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_RBRACE] = ACTIONS(5001), + [sym_word] = ACTIONS(5003), + [sym_placeholder] = ACTIONS(5001), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym__] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_BANG] = ACTIONS(5003), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_SQUOTE] = ACTIONS(5003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), + [anon_sym_DOLLAR] = ACTIONS(5003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), + [anon_sym_BSLASHbegin] = ACTIONS(5003), + [anon_sym_BSLASHusepackage] = ACTIONS(5003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), + [anon_sym_BSLASHinclude] = ACTIONS(5003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), + [anon_sym_BSLASHinput] = ACTIONS(5003), + [anon_sym_BSLASHsubfile] = ACTIONS(5003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), + [anon_sym_BSLASHbibliography] = ACTIONS(5003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), + [anon_sym_BSLASHincludesvg] = ACTIONS(5003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), + [anon_sym_BSLASHimport] = ACTIONS(5003), + [anon_sym_BSLASHsubimport] = ACTIONS(5003), + [anon_sym_BSLASHinputfrom] = ACTIONS(5003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), + [anon_sym_BSLASHincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHcaption] = ACTIONS(5003), + [anon_sym_BSLASHcite] = ACTIONS(5003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCite] = ACTIONS(5003), + [anon_sym_BSLASHnocite] = ACTIONS(5003), + [anon_sym_BSLASHcitet] = ACTIONS(5003), + [anon_sym_BSLASHcitep] = ACTIONS(5003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteauthor] = ACTIONS(5003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitetitle] = ACTIONS(5003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteyear] = ACTIONS(5003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitedate] = ACTIONS(5003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteurl] = ACTIONS(5003), + [anon_sym_BSLASHfullcite] = ACTIONS(5003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), + [anon_sym_BSLASHcitealt] = ACTIONS(5003), + [anon_sym_BSLASHcitealp] = ACTIONS(5003), + [anon_sym_BSLASHcitetext] = ACTIONS(5003), + [anon_sym_BSLASHparencite] = ACTIONS(5003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHParencite] = ACTIONS(5003), + [anon_sym_BSLASHfootcite] = ACTIONS(5003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), + [anon_sym_BSLASHtextcite] = ACTIONS(5003), + [anon_sym_BSLASHTextcite] = ACTIONS(5003), + [anon_sym_BSLASHsmartcite] = ACTIONS(5003), + [anon_sym_BSLASHSmartcite] = ACTIONS(5003), + [anon_sym_BSLASHsupercite] = ACTIONS(5003), + [anon_sym_BSLASHautocite] = ACTIONS(5003), + [anon_sym_BSLASHAutocite] = ACTIONS(5003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHvolcite] = ACTIONS(5003), + [anon_sym_BSLASHVolcite] = ACTIONS(5003), + [anon_sym_BSLASHpvolcite] = ACTIONS(5003), + [anon_sym_BSLASHPvolcite] = ACTIONS(5003), + [anon_sym_BSLASHfvolcite] = ACTIONS(5003), + [anon_sym_BSLASHftvolcite] = ACTIONS(5003), + [anon_sym_BSLASHsvolcite] = ACTIONS(5003), + [anon_sym_BSLASHSvolcite] = ACTIONS(5003), + [anon_sym_BSLASHtvolcite] = ACTIONS(5003), + [anon_sym_BSLASHTvolcite] = ACTIONS(5003), + [anon_sym_BSLASHavolcite] = ACTIONS(5003), + [anon_sym_BSLASHAvolcite] = ACTIONS(5003), + [anon_sym_BSLASHnotecite] = ACTIONS(5003), + [anon_sym_BSLASHNotecite] = ACTIONS(5003), + [anon_sym_BSLASHpnotecite] = ACTIONS(5003), + [anon_sym_BSLASHPnotecite] = ACTIONS(5003), + [anon_sym_BSLASHfnotecite] = ACTIONS(5003), + [anon_sym_BSLASHlabel] = ACTIONS(5003), + [anon_sym_BSLASHref] = ACTIONS(5003), + [anon_sym_BSLASHeqref] = ACTIONS(5003), + [anon_sym_BSLASHvref] = ACTIONS(5003), + [anon_sym_BSLASHVref] = ACTIONS(5003), + [anon_sym_BSLASHautoref] = ACTIONS(5003), + [anon_sym_BSLASHpageref] = ACTIONS(5003), + [anon_sym_BSLASHcref] = ACTIONS(5003), + [anon_sym_BSLASHCref] = ACTIONS(5003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnameCref] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHlabelcref] = ACTIONS(5003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCrefrange] = ACTIONS(5003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnewlabel] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), + [anon_sym_BSLASHdef] = ACTIONS(5003), + [anon_sym_BSLASHlet] = ACTIONS(5003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), + [anon_sym_BSLASHgls] = ACTIONS(5003), + [anon_sym_BSLASHGls] = ACTIONS(5003), + [anon_sym_BSLASHGLS] = ACTIONS(5003), + [anon_sym_BSLASHglspl] = ACTIONS(5003), + [anon_sym_BSLASHGlspl] = ACTIONS(5003), + [anon_sym_BSLASHGLSpl] = ACTIONS(5003), + [anon_sym_BSLASHglsdisp] = ACTIONS(5003), + [anon_sym_BSLASHglslink] = ACTIONS(5003), + [anon_sym_BSLASHglstext] = ACTIONS(5003), + [anon_sym_BSLASHGlstext] = ACTIONS(5003), + [anon_sym_BSLASHGLStext] = ACTIONS(5003), + [anon_sym_BSLASHglsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), + [anon_sym_BSLASHglsplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSplural] = ACTIONS(5003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHglsname] = ACTIONS(5003), + [anon_sym_BSLASHGlsname] = ACTIONS(5003), + [anon_sym_BSLASHGLSname] = ACTIONS(5003), + [anon_sym_BSLASHglssymbol] = ACTIONS(5003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), + [anon_sym_BSLASHglsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), + [anon_sym_BSLASHglsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), + [anon_sym_BSLASHglsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), + [anon_sym_BSLASHglsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), + [anon_sym_BSLASHglsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), + [anon_sym_BSLASHnewacronym] = ACTIONS(5003), + [anon_sym_BSLASHacrshort] = ACTIONS(5003), + [anon_sym_BSLASHAcrshort] = ACTIONS(5003), + [anon_sym_BSLASHACRshort] = ACTIONS(5003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), + [anon_sym_BSLASHacrlong] = ACTIONS(5003), + [anon_sym_BSLASHAcrlong] = ACTIONS(5003), + [anon_sym_BSLASHACRlong] = ACTIONS(5003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), + [anon_sym_BSLASHacrfull] = ACTIONS(5003), + [anon_sym_BSLASHAcrfull] = ACTIONS(5003), + [anon_sym_BSLASHACRfull] = ACTIONS(5003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), + [anon_sym_BSLASHacs] = ACTIONS(5003), + [anon_sym_BSLASHAcs] = ACTIONS(5003), + [anon_sym_BSLASHacsp] = ACTIONS(5003), + [anon_sym_BSLASHAcsp] = ACTIONS(5003), + [anon_sym_BSLASHacl] = ACTIONS(5003), + [anon_sym_BSLASHAcl] = ACTIONS(5003), + [anon_sym_BSLASHaclp] = ACTIONS(5003), + [anon_sym_BSLASHAclp] = ACTIONS(5003), + [anon_sym_BSLASHacf] = ACTIONS(5003), + [anon_sym_BSLASHAcf] = ACTIONS(5003), + [anon_sym_BSLASHacfp] = ACTIONS(5003), + [anon_sym_BSLASHAcfp] = ACTIONS(5003), + [anon_sym_BSLASHac] = ACTIONS(5003), + [anon_sym_BSLASHAc] = ACTIONS(5003), + [anon_sym_BSLASHacp] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), + [anon_sym_BSLASHcolor] = ACTIONS(5003), + [anon_sym_BSLASHcolorbox] = ACTIONS(5003), + [anon_sym_BSLASHtextcolor] = ACTIONS(5003), + [anon_sym_BSLASHpagecolor] = ACTIONS(5003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), + [anon_sym_BSLASHtext] = ACTIONS(5003), + [anon_sym_BSLASHintertext] = ACTIONS(5003), + [anon_sym_shortintertext] = ACTIONS(5003), }, - [930] = { - [sym_command_name] = ACTIONS(5065), + [714] = { + [ts_builtin_sym_end] = ACTIONS(5005), + [sym_command_name] = ACTIONS(5007), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_BSLASHpart] = ACTIONS(5065), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddpart] = ACTIONS(5065), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHchapter] = ACTIONS(5065), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddchap] = ACTIONS(5065), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsection] = ACTIONS(5065), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddsec] = ACTIONS(5065), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHparagraph] = ACTIONS(5065), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHitem] = ACTIONS(5065), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASHbegin] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHiffalse] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_RBRACK] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_BSLASHpart] = ACTIONS(5007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddpart] = ACTIONS(5007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), + [anon_sym_BSLASHchapter] = ACTIONS(5007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddchap] = ACTIONS(5007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsection] = ACTIONS(5007), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddsec] = ACTIONS(5007), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubsection] = ACTIONS(5007), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHparagraph] = ACTIONS(5007), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), + [anon_sym_BSLASHitem] = ACTIONS(5007), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_RBRACE] = ACTIONS(5005), + [sym_word] = ACTIONS(5007), + [sym_placeholder] = ACTIONS(5005), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym__] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_BANG] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5007), + [anon_sym_SQUOTE] = ACTIONS(5007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), + [anon_sym_DOLLAR] = ACTIONS(5007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), + [anon_sym_BSLASHbegin] = ACTIONS(5007), + [anon_sym_BSLASHusepackage] = ACTIONS(5007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), + [anon_sym_BSLASHinclude] = ACTIONS(5007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), + [anon_sym_BSLASHinput] = ACTIONS(5007), + [anon_sym_BSLASHsubfile] = ACTIONS(5007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), + [anon_sym_BSLASHbibliography] = ACTIONS(5007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), + [anon_sym_BSLASHincludesvg] = ACTIONS(5007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), + [anon_sym_BSLASHimport] = ACTIONS(5007), + [anon_sym_BSLASHsubimport] = ACTIONS(5007), + [anon_sym_BSLASHinputfrom] = ACTIONS(5007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), + [anon_sym_BSLASHincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHcaption] = ACTIONS(5007), + [anon_sym_BSLASHcite] = ACTIONS(5007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCite] = ACTIONS(5007), + [anon_sym_BSLASHnocite] = ACTIONS(5007), + [anon_sym_BSLASHcitet] = ACTIONS(5007), + [anon_sym_BSLASHcitep] = ACTIONS(5007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteauthor] = ACTIONS(5007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitetitle] = ACTIONS(5007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteyear] = ACTIONS(5007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitedate] = ACTIONS(5007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteurl] = ACTIONS(5007), + [anon_sym_BSLASHfullcite] = ACTIONS(5007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), + [anon_sym_BSLASHcitealt] = ACTIONS(5007), + [anon_sym_BSLASHcitealp] = ACTIONS(5007), + [anon_sym_BSLASHcitetext] = ACTIONS(5007), + [anon_sym_BSLASHparencite] = ACTIONS(5007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHParencite] = ACTIONS(5007), + [anon_sym_BSLASHfootcite] = ACTIONS(5007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), + [anon_sym_BSLASHtextcite] = ACTIONS(5007), + [anon_sym_BSLASHTextcite] = ACTIONS(5007), + [anon_sym_BSLASHsmartcite] = ACTIONS(5007), + [anon_sym_BSLASHSmartcite] = ACTIONS(5007), + [anon_sym_BSLASHsupercite] = ACTIONS(5007), + [anon_sym_BSLASHautocite] = ACTIONS(5007), + [anon_sym_BSLASHAutocite] = ACTIONS(5007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHvolcite] = ACTIONS(5007), + [anon_sym_BSLASHVolcite] = ACTIONS(5007), + [anon_sym_BSLASHpvolcite] = ACTIONS(5007), + [anon_sym_BSLASHPvolcite] = ACTIONS(5007), + [anon_sym_BSLASHfvolcite] = ACTIONS(5007), + [anon_sym_BSLASHftvolcite] = ACTIONS(5007), + [anon_sym_BSLASHsvolcite] = ACTIONS(5007), + [anon_sym_BSLASHSvolcite] = ACTIONS(5007), + [anon_sym_BSLASHtvolcite] = ACTIONS(5007), + [anon_sym_BSLASHTvolcite] = ACTIONS(5007), + [anon_sym_BSLASHavolcite] = ACTIONS(5007), + [anon_sym_BSLASHAvolcite] = ACTIONS(5007), + [anon_sym_BSLASHnotecite] = ACTIONS(5007), + [anon_sym_BSLASHNotecite] = ACTIONS(5007), + [anon_sym_BSLASHpnotecite] = ACTIONS(5007), + [anon_sym_BSLASHPnotecite] = ACTIONS(5007), + [anon_sym_BSLASHfnotecite] = ACTIONS(5007), + [anon_sym_BSLASHlabel] = ACTIONS(5007), + [anon_sym_BSLASHref] = ACTIONS(5007), + [anon_sym_BSLASHeqref] = ACTIONS(5007), + [anon_sym_BSLASHvref] = ACTIONS(5007), + [anon_sym_BSLASHVref] = ACTIONS(5007), + [anon_sym_BSLASHautoref] = ACTIONS(5007), + [anon_sym_BSLASHpageref] = ACTIONS(5007), + [anon_sym_BSLASHcref] = ACTIONS(5007), + [anon_sym_BSLASHCref] = ACTIONS(5007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnameCref] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHlabelcref] = ACTIONS(5007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCrefrange] = ACTIONS(5007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnewlabel] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), + [anon_sym_BSLASHdef] = ACTIONS(5007), + [anon_sym_BSLASHlet] = ACTIONS(5007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), + [anon_sym_BSLASHgls] = ACTIONS(5007), + [anon_sym_BSLASHGls] = ACTIONS(5007), + [anon_sym_BSLASHGLS] = ACTIONS(5007), + [anon_sym_BSLASHglspl] = ACTIONS(5007), + [anon_sym_BSLASHGlspl] = ACTIONS(5007), + [anon_sym_BSLASHGLSpl] = ACTIONS(5007), + [anon_sym_BSLASHglsdisp] = ACTIONS(5007), + [anon_sym_BSLASHglslink] = ACTIONS(5007), + [anon_sym_BSLASHglstext] = ACTIONS(5007), + [anon_sym_BSLASHGlstext] = ACTIONS(5007), + [anon_sym_BSLASHGLStext] = ACTIONS(5007), + [anon_sym_BSLASHglsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), + [anon_sym_BSLASHglsplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSplural] = ACTIONS(5007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHglsname] = ACTIONS(5007), + [anon_sym_BSLASHGlsname] = ACTIONS(5007), + [anon_sym_BSLASHGLSname] = ACTIONS(5007), + [anon_sym_BSLASHglssymbol] = ACTIONS(5007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), + [anon_sym_BSLASHglsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), + [anon_sym_BSLASHglsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), + [anon_sym_BSLASHglsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), + [anon_sym_BSLASHglsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), + [anon_sym_BSLASHglsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), + [anon_sym_BSLASHnewacronym] = ACTIONS(5007), + [anon_sym_BSLASHacrshort] = ACTIONS(5007), + [anon_sym_BSLASHAcrshort] = ACTIONS(5007), + [anon_sym_BSLASHACRshort] = ACTIONS(5007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), + [anon_sym_BSLASHacrlong] = ACTIONS(5007), + [anon_sym_BSLASHAcrlong] = ACTIONS(5007), + [anon_sym_BSLASHACRlong] = ACTIONS(5007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), + [anon_sym_BSLASHacrfull] = ACTIONS(5007), + [anon_sym_BSLASHAcrfull] = ACTIONS(5007), + [anon_sym_BSLASHACRfull] = ACTIONS(5007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), + [anon_sym_BSLASHacs] = ACTIONS(5007), + [anon_sym_BSLASHAcs] = ACTIONS(5007), + [anon_sym_BSLASHacsp] = ACTIONS(5007), + [anon_sym_BSLASHAcsp] = ACTIONS(5007), + [anon_sym_BSLASHacl] = ACTIONS(5007), + [anon_sym_BSLASHAcl] = ACTIONS(5007), + [anon_sym_BSLASHaclp] = ACTIONS(5007), + [anon_sym_BSLASHAclp] = ACTIONS(5007), + [anon_sym_BSLASHacf] = ACTIONS(5007), + [anon_sym_BSLASHAcf] = ACTIONS(5007), + [anon_sym_BSLASHacfp] = ACTIONS(5007), + [anon_sym_BSLASHAcfp] = ACTIONS(5007), + [anon_sym_BSLASHac] = ACTIONS(5007), + [anon_sym_BSLASHAc] = ACTIONS(5007), + [anon_sym_BSLASHacp] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), + [anon_sym_BSLASHcolor] = ACTIONS(5007), + [anon_sym_BSLASHcolorbox] = ACTIONS(5007), + [anon_sym_BSLASHtextcolor] = ACTIONS(5007), + [anon_sym_BSLASHpagecolor] = ACTIONS(5007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), + [anon_sym_BSLASHtext] = ACTIONS(5007), + [anon_sym_BSLASHintertext] = ACTIONS(5007), + [anon_sym_shortintertext] = ACTIONS(5007), }, - [931] = { - [sym_command_name] = ACTIONS(5061), + [715] = { + [sym_command_name] = ACTIONS(4865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4865), + [anon_sym_BSLASHfi] = ACTIONS(5009), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_RBRACK] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_BSLASHpart] = ACTIONS(4865), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddpart] = ACTIONS(4865), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4863), + [anon_sym_BSLASHchapter] = ACTIONS(4865), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddchap] = ACTIONS(4865), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsection] = ACTIONS(4865), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddsec] = ACTIONS(4865), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubsection] = ACTIONS(4865), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4865), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHparagraph] = ACTIONS(4865), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4865), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4863), + [anon_sym_BSLASHitem] = ACTIONS(4865), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4863), + [sym_word] = ACTIONS(4865), + [sym_placeholder] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_CARET] = ACTIONS(4865), + [anon_sym__] = ACTIONS(4865), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_COLON] = ACTIONS(4865), + [anon_sym_SQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), + [anon_sym_BSLASHbegin] = ACTIONS(4865), + [anon_sym_BSLASHend] = ACTIONS(4865), + [anon_sym_BSLASHusepackage] = ACTIONS(4865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), + [anon_sym_BSLASHinclude] = ACTIONS(4865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), + [anon_sym_BSLASHinput] = ACTIONS(4865), + [anon_sym_BSLASHsubfile] = ACTIONS(4865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), + [anon_sym_BSLASHbibliography] = ACTIONS(4865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), + [anon_sym_BSLASHincludesvg] = ACTIONS(4865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), + [anon_sym_BSLASHimport] = ACTIONS(4865), + [anon_sym_BSLASHsubimport] = ACTIONS(4865), + [anon_sym_BSLASHinputfrom] = ACTIONS(4865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), + [anon_sym_BSLASHincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHcaption] = ACTIONS(4865), + [anon_sym_BSLASHcite] = ACTIONS(4865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCite] = ACTIONS(4865), + [anon_sym_BSLASHnocite] = ACTIONS(4865), + [anon_sym_BSLASHcitet] = ACTIONS(4865), + [anon_sym_BSLASHcitep] = ACTIONS(4865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteauthor] = ACTIONS(4865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitetitle] = ACTIONS(4865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteyear] = ACTIONS(4865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitedate] = ACTIONS(4865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteurl] = ACTIONS(4865), + [anon_sym_BSLASHfullcite] = ACTIONS(4865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), + [anon_sym_BSLASHcitealt] = ACTIONS(4865), + [anon_sym_BSLASHcitealp] = ACTIONS(4865), + [anon_sym_BSLASHcitetext] = ACTIONS(4865), + [anon_sym_BSLASHparencite] = ACTIONS(4865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHParencite] = ACTIONS(4865), + [anon_sym_BSLASHfootcite] = ACTIONS(4865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), + [anon_sym_BSLASHtextcite] = ACTIONS(4865), + [anon_sym_BSLASHTextcite] = ACTIONS(4865), + [anon_sym_BSLASHsmartcite] = ACTIONS(4865), + [anon_sym_BSLASHSmartcite] = ACTIONS(4865), + [anon_sym_BSLASHsupercite] = ACTIONS(4865), + [anon_sym_BSLASHautocite] = ACTIONS(4865), + [anon_sym_BSLASHAutocite] = ACTIONS(4865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHvolcite] = ACTIONS(4865), + [anon_sym_BSLASHVolcite] = ACTIONS(4865), + [anon_sym_BSLASHpvolcite] = ACTIONS(4865), + [anon_sym_BSLASHPvolcite] = ACTIONS(4865), + [anon_sym_BSLASHfvolcite] = ACTIONS(4865), + [anon_sym_BSLASHftvolcite] = ACTIONS(4865), + [anon_sym_BSLASHsvolcite] = ACTIONS(4865), + [anon_sym_BSLASHSvolcite] = ACTIONS(4865), + [anon_sym_BSLASHtvolcite] = ACTIONS(4865), + [anon_sym_BSLASHTvolcite] = ACTIONS(4865), + [anon_sym_BSLASHavolcite] = ACTIONS(4865), + [anon_sym_BSLASHAvolcite] = ACTIONS(4865), + [anon_sym_BSLASHnotecite] = ACTIONS(4865), + [anon_sym_BSLASHNotecite] = ACTIONS(4865), + [anon_sym_BSLASHpnotecite] = ACTIONS(4865), + [anon_sym_BSLASHPnotecite] = ACTIONS(4865), + [anon_sym_BSLASHfnotecite] = ACTIONS(4865), + [anon_sym_BSLASHlabel] = ACTIONS(4865), + [anon_sym_BSLASHref] = ACTIONS(4865), + [anon_sym_BSLASHeqref] = ACTIONS(4865), + [anon_sym_BSLASHvref] = ACTIONS(4865), + [anon_sym_BSLASHVref] = ACTIONS(4865), + [anon_sym_BSLASHautoref] = ACTIONS(4865), + [anon_sym_BSLASHpageref] = ACTIONS(4865), + [anon_sym_BSLASHcref] = ACTIONS(4865), + [anon_sym_BSLASHCref] = ACTIONS(4865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnameCref] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHlabelcref] = ACTIONS(4865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCrefrange] = ACTIONS(4865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnewlabel] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), + [anon_sym_BSLASHdef] = ACTIONS(4865), + [anon_sym_BSLASHlet] = ACTIONS(4865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), + [anon_sym_BSLASHgls] = ACTIONS(4865), + [anon_sym_BSLASHGls] = ACTIONS(4865), + [anon_sym_BSLASHGLS] = ACTIONS(4865), + [anon_sym_BSLASHglspl] = ACTIONS(4865), + [anon_sym_BSLASHGlspl] = ACTIONS(4865), + [anon_sym_BSLASHGLSpl] = ACTIONS(4865), + [anon_sym_BSLASHglsdisp] = ACTIONS(4865), + [anon_sym_BSLASHglslink] = ACTIONS(4865), + [anon_sym_BSLASHglstext] = ACTIONS(4865), + [anon_sym_BSLASHGlstext] = ACTIONS(4865), + [anon_sym_BSLASHGLStext] = ACTIONS(4865), + [anon_sym_BSLASHglsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), + [anon_sym_BSLASHglsplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSplural] = ACTIONS(4865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHglsname] = ACTIONS(4865), + [anon_sym_BSLASHGlsname] = ACTIONS(4865), + [anon_sym_BSLASHGLSname] = ACTIONS(4865), + [anon_sym_BSLASHglssymbol] = ACTIONS(4865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), + [anon_sym_BSLASHglsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), + [anon_sym_BSLASHglsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), + [anon_sym_BSLASHglsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), + [anon_sym_BSLASHglsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), + [anon_sym_BSLASHglsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), + [anon_sym_BSLASHnewacronym] = ACTIONS(4865), + [anon_sym_BSLASHacrshort] = ACTIONS(4865), + [anon_sym_BSLASHAcrshort] = ACTIONS(4865), + [anon_sym_BSLASHACRshort] = ACTIONS(4865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), + [anon_sym_BSLASHacrlong] = ACTIONS(4865), + [anon_sym_BSLASHAcrlong] = ACTIONS(4865), + [anon_sym_BSLASHACRlong] = ACTIONS(4865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), + [anon_sym_BSLASHacrfull] = ACTIONS(4865), + [anon_sym_BSLASHAcrfull] = ACTIONS(4865), + [anon_sym_BSLASHACRfull] = ACTIONS(4865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), + [anon_sym_BSLASHacs] = ACTIONS(4865), + [anon_sym_BSLASHAcs] = ACTIONS(4865), + [anon_sym_BSLASHacsp] = ACTIONS(4865), + [anon_sym_BSLASHAcsp] = ACTIONS(4865), + [anon_sym_BSLASHacl] = ACTIONS(4865), + [anon_sym_BSLASHAcl] = ACTIONS(4865), + [anon_sym_BSLASHaclp] = ACTIONS(4865), + [anon_sym_BSLASHAclp] = ACTIONS(4865), + [anon_sym_BSLASHacf] = ACTIONS(4865), + [anon_sym_BSLASHAcf] = ACTIONS(4865), + [anon_sym_BSLASHacfp] = ACTIONS(4865), + [anon_sym_BSLASHAcfp] = ACTIONS(4865), + [anon_sym_BSLASHac] = ACTIONS(4865), + [anon_sym_BSLASHAc] = ACTIONS(4865), + [anon_sym_BSLASHacp] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), + [anon_sym_BSLASHcolor] = ACTIONS(4865), + [anon_sym_BSLASHcolorbox] = ACTIONS(4865), + [anon_sym_BSLASHtextcolor] = ACTIONS(4865), + [anon_sym_BSLASHpagecolor] = ACTIONS(4865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), + [anon_sym_BSLASHtext] = ACTIONS(4865), + [anon_sym_BSLASHintertext] = ACTIONS(4865), + [anon_sym_shortintertext] = ACTIONS(4865), + }, + [716] = { + [ts_builtin_sym_end] = ACTIONS(5011), + [sym_command_name] = ACTIONS(5013), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5013), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_RBRACK] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_BSLASHpart] = ACTIONS(5013), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddpart] = ACTIONS(5013), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5011), + [anon_sym_BSLASHchapter] = ACTIONS(5013), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddchap] = ACTIONS(5013), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsection] = ACTIONS(5013), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddsec] = ACTIONS(5013), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubsection] = ACTIONS(5013), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5013), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHparagraph] = ACTIONS(5013), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5013), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5011), + [anon_sym_BSLASHitem] = ACTIONS(5013), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5011), + [anon_sym_LBRACE] = ACTIONS(5011), + [anon_sym_RBRACE] = ACTIONS(5011), + [sym_word] = ACTIONS(5013), + [sym_placeholder] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5013), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_CARET] = ACTIONS(5013), + [anon_sym__] = ACTIONS(5013), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_PIPE] = ACTIONS(5013), + [anon_sym_COLON] = ACTIONS(5013), + [anon_sym_SQUOTE] = ACTIONS(5013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), + [anon_sym_DOLLAR] = ACTIONS(5013), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), + [anon_sym_BSLASHbegin] = ACTIONS(5013), + [anon_sym_BSLASHusepackage] = ACTIONS(5013), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), + [anon_sym_BSLASHinclude] = ACTIONS(5013), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), + [anon_sym_BSLASHinput] = ACTIONS(5013), + [anon_sym_BSLASHsubfile] = ACTIONS(5013), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), + [anon_sym_BSLASHbibliography] = ACTIONS(5013), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), + [anon_sym_BSLASHincludesvg] = ACTIONS(5013), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), + [anon_sym_BSLASHimport] = ACTIONS(5013), + [anon_sym_BSLASHsubimport] = ACTIONS(5013), + [anon_sym_BSLASHinputfrom] = ACTIONS(5013), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), + [anon_sym_BSLASHincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHcaption] = ACTIONS(5013), + [anon_sym_BSLASHcite] = ACTIONS(5013), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCite] = ACTIONS(5013), + [anon_sym_BSLASHnocite] = ACTIONS(5013), + [anon_sym_BSLASHcitet] = ACTIONS(5013), + [anon_sym_BSLASHcitep] = ACTIONS(5013), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteauthor] = ACTIONS(5013), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitetitle] = ACTIONS(5013), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteyear] = ACTIONS(5013), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitedate] = ACTIONS(5013), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteurl] = ACTIONS(5013), + [anon_sym_BSLASHfullcite] = ACTIONS(5013), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), + [anon_sym_BSLASHcitealt] = ACTIONS(5013), + [anon_sym_BSLASHcitealp] = ACTIONS(5013), + [anon_sym_BSLASHcitetext] = ACTIONS(5013), + [anon_sym_BSLASHparencite] = ACTIONS(5013), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHParencite] = ACTIONS(5013), + [anon_sym_BSLASHfootcite] = ACTIONS(5013), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), + [anon_sym_BSLASHtextcite] = ACTIONS(5013), + [anon_sym_BSLASHTextcite] = ACTIONS(5013), + [anon_sym_BSLASHsmartcite] = ACTIONS(5013), + [anon_sym_BSLASHSmartcite] = ACTIONS(5013), + [anon_sym_BSLASHsupercite] = ACTIONS(5013), + [anon_sym_BSLASHautocite] = ACTIONS(5013), + [anon_sym_BSLASHAutocite] = ACTIONS(5013), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHvolcite] = ACTIONS(5013), + [anon_sym_BSLASHVolcite] = ACTIONS(5013), + [anon_sym_BSLASHpvolcite] = ACTIONS(5013), + [anon_sym_BSLASHPvolcite] = ACTIONS(5013), + [anon_sym_BSLASHfvolcite] = ACTIONS(5013), + [anon_sym_BSLASHftvolcite] = ACTIONS(5013), + [anon_sym_BSLASHsvolcite] = ACTIONS(5013), + [anon_sym_BSLASHSvolcite] = ACTIONS(5013), + [anon_sym_BSLASHtvolcite] = ACTIONS(5013), + [anon_sym_BSLASHTvolcite] = ACTIONS(5013), + [anon_sym_BSLASHavolcite] = ACTIONS(5013), + [anon_sym_BSLASHAvolcite] = ACTIONS(5013), + [anon_sym_BSLASHnotecite] = ACTIONS(5013), + [anon_sym_BSLASHNotecite] = ACTIONS(5013), + [anon_sym_BSLASHpnotecite] = ACTIONS(5013), + [anon_sym_BSLASHPnotecite] = ACTIONS(5013), + [anon_sym_BSLASHfnotecite] = ACTIONS(5013), + [anon_sym_BSLASHlabel] = ACTIONS(5013), + [anon_sym_BSLASHref] = ACTIONS(5013), + [anon_sym_BSLASHeqref] = ACTIONS(5013), + [anon_sym_BSLASHvref] = ACTIONS(5013), + [anon_sym_BSLASHVref] = ACTIONS(5013), + [anon_sym_BSLASHautoref] = ACTIONS(5013), + [anon_sym_BSLASHpageref] = ACTIONS(5013), + [anon_sym_BSLASHcref] = ACTIONS(5013), + [anon_sym_BSLASHCref] = ACTIONS(5013), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnameCref] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHlabelcref] = ACTIONS(5013), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCrefrange] = ACTIONS(5013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnewlabel] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), + [anon_sym_BSLASHdef] = ACTIONS(5013), + [anon_sym_BSLASHlet] = ACTIONS(5013), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), + [anon_sym_BSLASHgls] = ACTIONS(5013), + [anon_sym_BSLASHGls] = ACTIONS(5013), + [anon_sym_BSLASHGLS] = ACTIONS(5013), + [anon_sym_BSLASHglspl] = ACTIONS(5013), + [anon_sym_BSLASHGlspl] = ACTIONS(5013), + [anon_sym_BSLASHGLSpl] = ACTIONS(5013), + [anon_sym_BSLASHglsdisp] = ACTIONS(5013), + [anon_sym_BSLASHglslink] = ACTIONS(5013), + [anon_sym_BSLASHglstext] = ACTIONS(5013), + [anon_sym_BSLASHGlstext] = ACTIONS(5013), + [anon_sym_BSLASHGLStext] = ACTIONS(5013), + [anon_sym_BSLASHglsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), + [anon_sym_BSLASHglsplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSplural] = ACTIONS(5013), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHglsname] = ACTIONS(5013), + [anon_sym_BSLASHGlsname] = ACTIONS(5013), + [anon_sym_BSLASHGLSname] = ACTIONS(5013), + [anon_sym_BSLASHglssymbol] = ACTIONS(5013), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), + [anon_sym_BSLASHglsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), + [anon_sym_BSLASHglsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), + [anon_sym_BSLASHglsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), + [anon_sym_BSLASHglsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), + [anon_sym_BSLASHglsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), + [anon_sym_BSLASHnewacronym] = ACTIONS(5013), + [anon_sym_BSLASHacrshort] = ACTIONS(5013), + [anon_sym_BSLASHAcrshort] = ACTIONS(5013), + [anon_sym_BSLASHACRshort] = ACTIONS(5013), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), + [anon_sym_BSLASHacrlong] = ACTIONS(5013), + [anon_sym_BSLASHAcrlong] = ACTIONS(5013), + [anon_sym_BSLASHACRlong] = ACTIONS(5013), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), + [anon_sym_BSLASHacrfull] = ACTIONS(5013), + [anon_sym_BSLASHAcrfull] = ACTIONS(5013), + [anon_sym_BSLASHACRfull] = ACTIONS(5013), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), + [anon_sym_BSLASHacs] = ACTIONS(5013), + [anon_sym_BSLASHAcs] = ACTIONS(5013), + [anon_sym_BSLASHacsp] = ACTIONS(5013), + [anon_sym_BSLASHAcsp] = ACTIONS(5013), + [anon_sym_BSLASHacl] = ACTIONS(5013), + [anon_sym_BSLASHAcl] = ACTIONS(5013), + [anon_sym_BSLASHaclp] = ACTIONS(5013), + [anon_sym_BSLASHAclp] = ACTIONS(5013), + [anon_sym_BSLASHacf] = ACTIONS(5013), + [anon_sym_BSLASHAcf] = ACTIONS(5013), + [anon_sym_BSLASHacfp] = ACTIONS(5013), + [anon_sym_BSLASHAcfp] = ACTIONS(5013), + [anon_sym_BSLASHac] = ACTIONS(5013), + [anon_sym_BSLASHAc] = ACTIONS(5013), + [anon_sym_BSLASHacp] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), + [anon_sym_BSLASHcolor] = ACTIONS(5013), + [anon_sym_BSLASHcolorbox] = ACTIONS(5013), + [anon_sym_BSLASHtextcolor] = ACTIONS(5013), + [anon_sym_BSLASHpagecolor] = ACTIONS(5013), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), + [anon_sym_BSLASHtext] = ACTIONS(5013), + [anon_sym_BSLASHintertext] = ACTIONS(5013), + [anon_sym_shortintertext] = ACTIONS(5013), + }, + [717] = { + [ts_builtin_sym_end] = ACTIONS(5015), + [sym_command_name] = ACTIONS(5017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5017), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_RPAREN] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_RBRACK] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_EQ] = ACTIONS(5015), + [anon_sym_BSLASHpart] = ACTIONS(5017), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddpart] = ACTIONS(5017), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5015), + [anon_sym_BSLASHchapter] = ACTIONS(5017), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddchap] = ACTIONS(5017), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsection] = ACTIONS(5017), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddsec] = ACTIONS(5017), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubsection] = ACTIONS(5017), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5017), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHparagraph] = ACTIONS(5017), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5017), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5015), + [anon_sym_BSLASHitem] = ACTIONS(5017), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5015), + [anon_sym_LBRACE] = ACTIONS(5015), + [anon_sym_RBRACE] = ACTIONS(5015), + [sym_word] = ACTIONS(5017), + [sym_placeholder] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5017), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_CARET] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5017), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_COLON] = ACTIONS(5017), + [anon_sym_SQUOTE] = ACTIONS(5017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), + [anon_sym_DOLLAR] = ACTIONS(5017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), + [anon_sym_BSLASHbegin] = ACTIONS(5017), + [anon_sym_BSLASHusepackage] = ACTIONS(5017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), + [anon_sym_BSLASHinclude] = ACTIONS(5017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), + [anon_sym_BSLASHinput] = ACTIONS(5017), + [anon_sym_BSLASHsubfile] = ACTIONS(5017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), + [anon_sym_BSLASHbibliography] = ACTIONS(5017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), + [anon_sym_BSLASHincludesvg] = ACTIONS(5017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), + [anon_sym_BSLASHimport] = ACTIONS(5017), + [anon_sym_BSLASHsubimport] = ACTIONS(5017), + [anon_sym_BSLASHinputfrom] = ACTIONS(5017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), + [anon_sym_BSLASHincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHcaption] = ACTIONS(5017), + [anon_sym_BSLASHcite] = ACTIONS(5017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCite] = ACTIONS(5017), + [anon_sym_BSLASHnocite] = ACTIONS(5017), + [anon_sym_BSLASHcitet] = ACTIONS(5017), + [anon_sym_BSLASHcitep] = ACTIONS(5017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteauthor] = ACTIONS(5017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitetitle] = ACTIONS(5017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteyear] = ACTIONS(5017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitedate] = ACTIONS(5017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteurl] = ACTIONS(5017), + [anon_sym_BSLASHfullcite] = ACTIONS(5017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), + [anon_sym_BSLASHcitealt] = ACTIONS(5017), + [anon_sym_BSLASHcitealp] = ACTIONS(5017), + [anon_sym_BSLASHcitetext] = ACTIONS(5017), + [anon_sym_BSLASHparencite] = ACTIONS(5017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHParencite] = ACTIONS(5017), + [anon_sym_BSLASHfootcite] = ACTIONS(5017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), + [anon_sym_BSLASHtextcite] = ACTIONS(5017), + [anon_sym_BSLASHTextcite] = ACTIONS(5017), + [anon_sym_BSLASHsmartcite] = ACTIONS(5017), + [anon_sym_BSLASHSmartcite] = ACTIONS(5017), + [anon_sym_BSLASHsupercite] = ACTIONS(5017), + [anon_sym_BSLASHautocite] = ACTIONS(5017), + [anon_sym_BSLASHAutocite] = ACTIONS(5017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHvolcite] = ACTIONS(5017), + [anon_sym_BSLASHVolcite] = ACTIONS(5017), + [anon_sym_BSLASHpvolcite] = ACTIONS(5017), + [anon_sym_BSLASHPvolcite] = ACTIONS(5017), + [anon_sym_BSLASHfvolcite] = ACTIONS(5017), + [anon_sym_BSLASHftvolcite] = ACTIONS(5017), + [anon_sym_BSLASHsvolcite] = ACTIONS(5017), + [anon_sym_BSLASHSvolcite] = ACTIONS(5017), + [anon_sym_BSLASHtvolcite] = ACTIONS(5017), + [anon_sym_BSLASHTvolcite] = ACTIONS(5017), + [anon_sym_BSLASHavolcite] = ACTIONS(5017), + [anon_sym_BSLASHAvolcite] = ACTIONS(5017), + [anon_sym_BSLASHnotecite] = ACTIONS(5017), + [anon_sym_BSLASHNotecite] = ACTIONS(5017), + [anon_sym_BSLASHpnotecite] = ACTIONS(5017), + [anon_sym_BSLASHPnotecite] = ACTIONS(5017), + [anon_sym_BSLASHfnotecite] = ACTIONS(5017), + [anon_sym_BSLASHlabel] = ACTIONS(5017), + [anon_sym_BSLASHref] = ACTIONS(5017), + [anon_sym_BSLASHeqref] = ACTIONS(5017), + [anon_sym_BSLASHvref] = ACTIONS(5017), + [anon_sym_BSLASHVref] = ACTIONS(5017), + [anon_sym_BSLASHautoref] = ACTIONS(5017), + [anon_sym_BSLASHpageref] = ACTIONS(5017), + [anon_sym_BSLASHcref] = ACTIONS(5017), + [anon_sym_BSLASHCref] = ACTIONS(5017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnameCref] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHlabelcref] = ACTIONS(5017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCrefrange] = ACTIONS(5017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnewlabel] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), + [anon_sym_BSLASHdef] = ACTIONS(5017), + [anon_sym_BSLASHlet] = ACTIONS(5017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), + [anon_sym_BSLASHgls] = ACTIONS(5017), + [anon_sym_BSLASHGls] = ACTIONS(5017), + [anon_sym_BSLASHGLS] = ACTIONS(5017), + [anon_sym_BSLASHglspl] = ACTIONS(5017), + [anon_sym_BSLASHGlspl] = ACTIONS(5017), + [anon_sym_BSLASHGLSpl] = ACTIONS(5017), + [anon_sym_BSLASHglsdisp] = ACTIONS(5017), + [anon_sym_BSLASHglslink] = ACTIONS(5017), + [anon_sym_BSLASHglstext] = ACTIONS(5017), + [anon_sym_BSLASHGlstext] = ACTIONS(5017), + [anon_sym_BSLASHGLStext] = ACTIONS(5017), + [anon_sym_BSLASHglsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), + [anon_sym_BSLASHglsplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSplural] = ACTIONS(5017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHglsname] = ACTIONS(5017), + [anon_sym_BSLASHGlsname] = ACTIONS(5017), + [anon_sym_BSLASHGLSname] = ACTIONS(5017), + [anon_sym_BSLASHglssymbol] = ACTIONS(5017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), + [anon_sym_BSLASHglsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), + [anon_sym_BSLASHglsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), + [anon_sym_BSLASHglsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), + [anon_sym_BSLASHglsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), + [anon_sym_BSLASHglsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), + [anon_sym_BSLASHnewacronym] = ACTIONS(5017), + [anon_sym_BSLASHacrshort] = ACTIONS(5017), + [anon_sym_BSLASHAcrshort] = ACTIONS(5017), + [anon_sym_BSLASHACRshort] = ACTIONS(5017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), + [anon_sym_BSLASHacrlong] = ACTIONS(5017), + [anon_sym_BSLASHAcrlong] = ACTIONS(5017), + [anon_sym_BSLASHACRlong] = ACTIONS(5017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), + [anon_sym_BSLASHacrfull] = ACTIONS(5017), + [anon_sym_BSLASHAcrfull] = ACTIONS(5017), + [anon_sym_BSLASHACRfull] = ACTIONS(5017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), + [anon_sym_BSLASHacs] = ACTIONS(5017), + [anon_sym_BSLASHAcs] = ACTIONS(5017), + [anon_sym_BSLASHacsp] = ACTIONS(5017), + [anon_sym_BSLASHAcsp] = ACTIONS(5017), + [anon_sym_BSLASHacl] = ACTIONS(5017), + [anon_sym_BSLASHAcl] = ACTIONS(5017), + [anon_sym_BSLASHaclp] = ACTIONS(5017), + [anon_sym_BSLASHAclp] = ACTIONS(5017), + [anon_sym_BSLASHacf] = ACTIONS(5017), + [anon_sym_BSLASHAcf] = ACTIONS(5017), + [anon_sym_BSLASHacfp] = ACTIONS(5017), + [anon_sym_BSLASHAcfp] = ACTIONS(5017), + [anon_sym_BSLASHac] = ACTIONS(5017), + [anon_sym_BSLASHAc] = ACTIONS(5017), + [anon_sym_BSLASHacp] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), + [anon_sym_BSLASHcolor] = ACTIONS(5017), + [anon_sym_BSLASHcolorbox] = ACTIONS(5017), + [anon_sym_BSLASHtextcolor] = ACTIONS(5017), + [anon_sym_BSLASHpagecolor] = ACTIONS(5017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), + [anon_sym_BSLASHtext] = ACTIONS(5017), + [anon_sym_BSLASHintertext] = ACTIONS(5017), + [anon_sym_shortintertext] = ACTIONS(5017), + }, + [718] = { + [ts_builtin_sym_end] = ACTIONS(5019), + [sym_command_name] = ACTIONS(5021), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_BSLASHpart] = ACTIONS(5061), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddpart] = ACTIONS(5061), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHchapter] = ACTIONS(5061), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddchap] = ACTIONS(5061), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsection] = ACTIONS(5061), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddsec] = ACTIONS(5061), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHparagraph] = ACTIONS(5061), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHitem] = ACTIONS(5061), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASHbegin] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [anon_sym_BSLASHiffalse] = ACTIONS(5021), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_BSLASHpart] = ACTIONS(5021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddpart] = ACTIONS(5021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), + [anon_sym_BSLASHchapter] = ACTIONS(5021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddchap] = ACTIONS(5021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsection] = ACTIONS(5021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddsec] = ACTIONS(5021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubsection] = ACTIONS(5021), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHparagraph] = ACTIONS(5021), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), + [anon_sym_BSLASHitem] = ACTIONS(5021), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_RBRACE] = ACTIONS(5019), + [sym_word] = ACTIONS(5021), + [sym_placeholder] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5021), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_CARET] = ACTIONS(5021), + [anon_sym__] = ACTIONS(5021), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_COLON] = ACTIONS(5021), + [anon_sym_SQUOTE] = ACTIONS(5021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), + [anon_sym_DOLLAR] = ACTIONS(5021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), + [anon_sym_BSLASHbegin] = ACTIONS(5021), + [anon_sym_BSLASHusepackage] = ACTIONS(5021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), + [anon_sym_BSLASHinclude] = ACTIONS(5021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), + [anon_sym_BSLASHinput] = ACTIONS(5021), + [anon_sym_BSLASHsubfile] = ACTIONS(5021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), + [anon_sym_BSLASHbibliography] = ACTIONS(5021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), + [anon_sym_BSLASHincludesvg] = ACTIONS(5021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), + [anon_sym_BSLASHimport] = ACTIONS(5021), + [anon_sym_BSLASHsubimport] = ACTIONS(5021), + [anon_sym_BSLASHinputfrom] = ACTIONS(5021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), + [anon_sym_BSLASHincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHcaption] = ACTIONS(5021), + [anon_sym_BSLASHcite] = ACTIONS(5021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCite] = ACTIONS(5021), + [anon_sym_BSLASHnocite] = ACTIONS(5021), + [anon_sym_BSLASHcitet] = ACTIONS(5021), + [anon_sym_BSLASHcitep] = ACTIONS(5021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteauthor] = ACTIONS(5021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitetitle] = ACTIONS(5021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteyear] = ACTIONS(5021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitedate] = ACTIONS(5021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteurl] = ACTIONS(5021), + [anon_sym_BSLASHfullcite] = ACTIONS(5021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), + [anon_sym_BSLASHcitealt] = ACTIONS(5021), + [anon_sym_BSLASHcitealp] = ACTIONS(5021), + [anon_sym_BSLASHcitetext] = ACTIONS(5021), + [anon_sym_BSLASHparencite] = ACTIONS(5021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHParencite] = ACTIONS(5021), + [anon_sym_BSLASHfootcite] = ACTIONS(5021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), + [anon_sym_BSLASHtextcite] = ACTIONS(5021), + [anon_sym_BSLASHTextcite] = ACTIONS(5021), + [anon_sym_BSLASHsmartcite] = ACTIONS(5021), + [anon_sym_BSLASHSmartcite] = ACTIONS(5021), + [anon_sym_BSLASHsupercite] = ACTIONS(5021), + [anon_sym_BSLASHautocite] = ACTIONS(5021), + [anon_sym_BSLASHAutocite] = ACTIONS(5021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHvolcite] = ACTIONS(5021), + [anon_sym_BSLASHVolcite] = ACTIONS(5021), + [anon_sym_BSLASHpvolcite] = ACTIONS(5021), + [anon_sym_BSLASHPvolcite] = ACTIONS(5021), + [anon_sym_BSLASHfvolcite] = ACTIONS(5021), + [anon_sym_BSLASHftvolcite] = ACTIONS(5021), + [anon_sym_BSLASHsvolcite] = ACTIONS(5021), + [anon_sym_BSLASHSvolcite] = ACTIONS(5021), + [anon_sym_BSLASHtvolcite] = ACTIONS(5021), + [anon_sym_BSLASHTvolcite] = ACTIONS(5021), + [anon_sym_BSLASHavolcite] = ACTIONS(5021), + [anon_sym_BSLASHAvolcite] = ACTIONS(5021), + [anon_sym_BSLASHnotecite] = ACTIONS(5021), + [anon_sym_BSLASHNotecite] = ACTIONS(5021), + [anon_sym_BSLASHpnotecite] = ACTIONS(5021), + [anon_sym_BSLASHPnotecite] = ACTIONS(5021), + [anon_sym_BSLASHfnotecite] = ACTIONS(5021), + [anon_sym_BSLASHlabel] = ACTIONS(5021), + [anon_sym_BSLASHref] = ACTIONS(5021), + [anon_sym_BSLASHeqref] = ACTIONS(5021), + [anon_sym_BSLASHvref] = ACTIONS(5021), + [anon_sym_BSLASHVref] = ACTIONS(5021), + [anon_sym_BSLASHautoref] = ACTIONS(5021), + [anon_sym_BSLASHpageref] = ACTIONS(5021), + [anon_sym_BSLASHcref] = ACTIONS(5021), + [anon_sym_BSLASHCref] = ACTIONS(5021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnameCref] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHlabelcref] = ACTIONS(5021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCrefrange] = ACTIONS(5021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnewlabel] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), + [anon_sym_BSLASHdef] = ACTIONS(5021), + [anon_sym_BSLASHlet] = ACTIONS(5021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), + [anon_sym_BSLASHgls] = ACTIONS(5021), + [anon_sym_BSLASHGls] = ACTIONS(5021), + [anon_sym_BSLASHGLS] = ACTIONS(5021), + [anon_sym_BSLASHglspl] = ACTIONS(5021), + [anon_sym_BSLASHGlspl] = ACTIONS(5021), + [anon_sym_BSLASHGLSpl] = ACTIONS(5021), + [anon_sym_BSLASHglsdisp] = ACTIONS(5021), + [anon_sym_BSLASHglslink] = ACTIONS(5021), + [anon_sym_BSLASHglstext] = ACTIONS(5021), + [anon_sym_BSLASHGlstext] = ACTIONS(5021), + [anon_sym_BSLASHGLStext] = ACTIONS(5021), + [anon_sym_BSLASHglsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), + [anon_sym_BSLASHglsplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSplural] = ACTIONS(5021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHglsname] = ACTIONS(5021), + [anon_sym_BSLASHGlsname] = ACTIONS(5021), + [anon_sym_BSLASHGLSname] = ACTIONS(5021), + [anon_sym_BSLASHglssymbol] = ACTIONS(5021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), + [anon_sym_BSLASHglsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), + [anon_sym_BSLASHglsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), + [anon_sym_BSLASHglsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), + [anon_sym_BSLASHglsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), + [anon_sym_BSLASHglsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), + [anon_sym_BSLASHnewacronym] = ACTIONS(5021), + [anon_sym_BSLASHacrshort] = ACTIONS(5021), + [anon_sym_BSLASHAcrshort] = ACTIONS(5021), + [anon_sym_BSLASHACRshort] = ACTIONS(5021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), + [anon_sym_BSLASHacrlong] = ACTIONS(5021), + [anon_sym_BSLASHAcrlong] = ACTIONS(5021), + [anon_sym_BSLASHACRlong] = ACTIONS(5021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), + [anon_sym_BSLASHacrfull] = ACTIONS(5021), + [anon_sym_BSLASHAcrfull] = ACTIONS(5021), + [anon_sym_BSLASHACRfull] = ACTIONS(5021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), + [anon_sym_BSLASHacs] = ACTIONS(5021), + [anon_sym_BSLASHAcs] = ACTIONS(5021), + [anon_sym_BSLASHacsp] = ACTIONS(5021), + [anon_sym_BSLASHAcsp] = ACTIONS(5021), + [anon_sym_BSLASHacl] = ACTIONS(5021), + [anon_sym_BSLASHAcl] = ACTIONS(5021), + [anon_sym_BSLASHaclp] = ACTIONS(5021), + [anon_sym_BSLASHAclp] = ACTIONS(5021), + [anon_sym_BSLASHacf] = ACTIONS(5021), + [anon_sym_BSLASHAcf] = ACTIONS(5021), + [anon_sym_BSLASHacfp] = ACTIONS(5021), + [anon_sym_BSLASHAcfp] = ACTIONS(5021), + [anon_sym_BSLASHac] = ACTIONS(5021), + [anon_sym_BSLASHAc] = ACTIONS(5021), + [anon_sym_BSLASHacp] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), + [anon_sym_BSLASHcolor] = ACTIONS(5021), + [anon_sym_BSLASHcolorbox] = ACTIONS(5021), + [anon_sym_BSLASHtextcolor] = ACTIONS(5021), + [anon_sym_BSLASHpagecolor] = ACTIONS(5021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHtext] = ACTIONS(5021), + [anon_sym_BSLASHintertext] = ACTIONS(5021), + [anon_sym_shortintertext] = ACTIONS(5021), }, - [932] = { - [sym_command_name] = ACTIONS(5057), + [719] = { + [ts_builtin_sym_end] = ACTIONS(5023), + [sym_command_name] = ACTIONS(5025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_BSLASHpart] = ACTIONS(5057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddpart] = ACTIONS(5057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHchapter] = ACTIONS(5057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddchap] = ACTIONS(5057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsection] = ACTIONS(5057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddsec] = ACTIONS(5057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHparagraph] = ACTIONS(5057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHitem] = ACTIONS(5057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASHbegin] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [anon_sym_BSLASHiffalse] = ACTIONS(5025), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_RBRACK] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5023), + [anon_sym_BSLASHpart] = ACTIONS(5025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddpart] = ACTIONS(5025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), + [anon_sym_BSLASHchapter] = ACTIONS(5025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddchap] = ACTIONS(5025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsection] = ACTIONS(5025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddsec] = ACTIONS(5025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubsection] = ACTIONS(5025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHparagraph] = ACTIONS(5025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), + [anon_sym_BSLASHitem] = ACTIONS(5025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5023), + [anon_sym_RBRACE] = ACTIONS(5023), + [sym_word] = ACTIONS(5025), + [sym_placeholder] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5025), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_SLASH] = ACTIONS(5025), + [anon_sym_CARET] = ACTIONS(5025), + [anon_sym__] = ACTIONS(5025), + [anon_sym_LT] = ACTIONS(5025), + [anon_sym_GT] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5025), + [anon_sym_PIPE] = ACTIONS(5025), + [anon_sym_COLON] = ACTIONS(5025), + [anon_sym_SQUOTE] = ACTIONS(5025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(5025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), + [anon_sym_BSLASHbegin] = ACTIONS(5025), + [anon_sym_BSLASHusepackage] = ACTIONS(5025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), + [anon_sym_BSLASHinclude] = ACTIONS(5025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), + [anon_sym_BSLASHinput] = ACTIONS(5025), + [anon_sym_BSLASHsubfile] = ACTIONS(5025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), + [anon_sym_BSLASHbibliography] = ACTIONS(5025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), + [anon_sym_BSLASHincludesvg] = ACTIONS(5025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), + [anon_sym_BSLASHimport] = ACTIONS(5025), + [anon_sym_BSLASHsubimport] = ACTIONS(5025), + [anon_sym_BSLASHinputfrom] = ACTIONS(5025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), + [anon_sym_BSLASHincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHcaption] = ACTIONS(5025), + [anon_sym_BSLASHcite] = ACTIONS(5025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCite] = ACTIONS(5025), + [anon_sym_BSLASHnocite] = ACTIONS(5025), + [anon_sym_BSLASHcitet] = ACTIONS(5025), + [anon_sym_BSLASHcitep] = ACTIONS(5025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteauthor] = ACTIONS(5025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitetitle] = ACTIONS(5025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteyear] = ACTIONS(5025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitedate] = ACTIONS(5025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteurl] = ACTIONS(5025), + [anon_sym_BSLASHfullcite] = ACTIONS(5025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), + [anon_sym_BSLASHcitealt] = ACTIONS(5025), + [anon_sym_BSLASHcitealp] = ACTIONS(5025), + [anon_sym_BSLASHcitetext] = ACTIONS(5025), + [anon_sym_BSLASHparencite] = ACTIONS(5025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHParencite] = ACTIONS(5025), + [anon_sym_BSLASHfootcite] = ACTIONS(5025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), + [anon_sym_BSLASHtextcite] = ACTIONS(5025), + [anon_sym_BSLASHTextcite] = ACTIONS(5025), + [anon_sym_BSLASHsmartcite] = ACTIONS(5025), + [anon_sym_BSLASHSmartcite] = ACTIONS(5025), + [anon_sym_BSLASHsupercite] = ACTIONS(5025), + [anon_sym_BSLASHautocite] = ACTIONS(5025), + [anon_sym_BSLASHAutocite] = ACTIONS(5025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHvolcite] = ACTIONS(5025), + [anon_sym_BSLASHVolcite] = ACTIONS(5025), + [anon_sym_BSLASHpvolcite] = ACTIONS(5025), + [anon_sym_BSLASHPvolcite] = ACTIONS(5025), + [anon_sym_BSLASHfvolcite] = ACTIONS(5025), + [anon_sym_BSLASHftvolcite] = ACTIONS(5025), + [anon_sym_BSLASHsvolcite] = ACTIONS(5025), + [anon_sym_BSLASHSvolcite] = ACTIONS(5025), + [anon_sym_BSLASHtvolcite] = ACTIONS(5025), + [anon_sym_BSLASHTvolcite] = ACTIONS(5025), + [anon_sym_BSLASHavolcite] = ACTIONS(5025), + [anon_sym_BSLASHAvolcite] = ACTIONS(5025), + [anon_sym_BSLASHnotecite] = ACTIONS(5025), + [anon_sym_BSLASHNotecite] = ACTIONS(5025), + [anon_sym_BSLASHpnotecite] = ACTIONS(5025), + [anon_sym_BSLASHPnotecite] = ACTIONS(5025), + [anon_sym_BSLASHfnotecite] = ACTIONS(5025), + [anon_sym_BSLASHlabel] = ACTIONS(5025), + [anon_sym_BSLASHref] = ACTIONS(5025), + [anon_sym_BSLASHeqref] = ACTIONS(5025), + [anon_sym_BSLASHvref] = ACTIONS(5025), + [anon_sym_BSLASHVref] = ACTIONS(5025), + [anon_sym_BSLASHautoref] = ACTIONS(5025), + [anon_sym_BSLASHpageref] = ACTIONS(5025), + [anon_sym_BSLASHcref] = ACTIONS(5025), + [anon_sym_BSLASHCref] = ACTIONS(5025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnameCref] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHlabelcref] = ACTIONS(5025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCrefrange] = ACTIONS(5025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnewlabel] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), + [anon_sym_BSLASHdef] = ACTIONS(5025), + [anon_sym_BSLASHlet] = ACTIONS(5025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), + [anon_sym_BSLASHgls] = ACTIONS(5025), + [anon_sym_BSLASHGls] = ACTIONS(5025), + [anon_sym_BSLASHGLS] = ACTIONS(5025), + [anon_sym_BSLASHglspl] = ACTIONS(5025), + [anon_sym_BSLASHGlspl] = ACTIONS(5025), + [anon_sym_BSLASHGLSpl] = ACTIONS(5025), + [anon_sym_BSLASHglsdisp] = ACTIONS(5025), + [anon_sym_BSLASHglslink] = ACTIONS(5025), + [anon_sym_BSLASHglstext] = ACTIONS(5025), + [anon_sym_BSLASHGlstext] = ACTIONS(5025), + [anon_sym_BSLASHGLStext] = ACTIONS(5025), + [anon_sym_BSLASHglsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), + [anon_sym_BSLASHglsplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSplural] = ACTIONS(5025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHglsname] = ACTIONS(5025), + [anon_sym_BSLASHGlsname] = ACTIONS(5025), + [anon_sym_BSLASHGLSname] = ACTIONS(5025), + [anon_sym_BSLASHglssymbol] = ACTIONS(5025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), + [anon_sym_BSLASHglsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), + [anon_sym_BSLASHglsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), + [anon_sym_BSLASHglsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), + [anon_sym_BSLASHglsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), + [anon_sym_BSLASHglsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), + [anon_sym_BSLASHnewacronym] = ACTIONS(5025), + [anon_sym_BSLASHacrshort] = ACTIONS(5025), + [anon_sym_BSLASHAcrshort] = ACTIONS(5025), + [anon_sym_BSLASHACRshort] = ACTIONS(5025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), + [anon_sym_BSLASHacrlong] = ACTIONS(5025), + [anon_sym_BSLASHAcrlong] = ACTIONS(5025), + [anon_sym_BSLASHACRlong] = ACTIONS(5025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), + [anon_sym_BSLASHacrfull] = ACTIONS(5025), + [anon_sym_BSLASHAcrfull] = ACTIONS(5025), + [anon_sym_BSLASHACRfull] = ACTIONS(5025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), + [anon_sym_BSLASHacs] = ACTIONS(5025), + [anon_sym_BSLASHAcs] = ACTIONS(5025), + [anon_sym_BSLASHacsp] = ACTIONS(5025), + [anon_sym_BSLASHAcsp] = ACTIONS(5025), + [anon_sym_BSLASHacl] = ACTIONS(5025), + [anon_sym_BSLASHAcl] = ACTIONS(5025), + [anon_sym_BSLASHaclp] = ACTIONS(5025), + [anon_sym_BSLASHAclp] = ACTIONS(5025), + [anon_sym_BSLASHacf] = ACTIONS(5025), + [anon_sym_BSLASHAcf] = ACTIONS(5025), + [anon_sym_BSLASHacfp] = ACTIONS(5025), + [anon_sym_BSLASHAcfp] = ACTIONS(5025), + [anon_sym_BSLASHac] = ACTIONS(5025), + [anon_sym_BSLASHAc] = ACTIONS(5025), + [anon_sym_BSLASHacp] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), + [anon_sym_BSLASHcolor] = ACTIONS(5025), + [anon_sym_BSLASHcolorbox] = ACTIONS(5025), + [anon_sym_BSLASHtextcolor] = ACTIONS(5025), + [anon_sym_BSLASHpagecolor] = ACTIONS(5025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [anon_sym_BSLASHtext] = ACTIONS(5025), + [anon_sym_BSLASHintertext] = ACTIONS(5025), + [anon_sym_shortintertext] = ACTIONS(5025), }, - [933] = { - [sym_command_name] = ACTIONS(5053), + [720] = { + [ts_builtin_sym_end] = ACTIONS(141), + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHchapter] = ACTIONS(143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddchap] = ACTIONS(143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), + [anon_sym_BSLASHsection] = ACTIONS(143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddsec] = ACTIONS(143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHparagraph] = ACTIONS(143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHitem] = ACTIONS(143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_RBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), + }, + [721] = { + [ts_builtin_sym_end] = ACTIONS(5027), + [sym_command_name] = ACTIONS(5029), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_BSLASHpart] = ACTIONS(5053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddpart] = ACTIONS(5053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHchapter] = ACTIONS(5053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddchap] = ACTIONS(5053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsection] = ACTIONS(5053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddsec] = ACTIONS(5053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHparagraph] = ACTIONS(5053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHitem] = ACTIONS(5053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASHbegin] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [anon_sym_BSLASHiffalse] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_RBRACK] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_BSLASHpart] = ACTIONS(5029), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddpart] = ACTIONS(5029), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), + [anon_sym_BSLASHchapter] = ACTIONS(5029), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddchap] = ACTIONS(5029), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsection] = ACTIONS(5029), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddsec] = ACTIONS(5029), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubsection] = ACTIONS(5029), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHparagraph] = ACTIONS(5029), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), + [anon_sym_BSLASHitem] = ACTIONS(5029), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5027), + [sym_word] = ACTIONS(5029), + [sym_placeholder] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_CARET] = ACTIONS(5029), + [anon_sym__] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_COLON] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), + [anon_sym_DOLLAR] = ACTIONS(5029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), + [anon_sym_BSLASHbegin] = ACTIONS(5029), + [anon_sym_BSLASHusepackage] = ACTIONS(5029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), + [anon_sym_BSLASHinclude] = ACTIONS(5029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), + [anon_sym_BSLASHinput] = ACTIONS(5029), + [anon_sym_BSLASHsubfile] = ACTIONS(5029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), + [anon_sym_BSLASHbibliography] = ACTIONS(5029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), + [anon_sym_BSLASHincludesvg] = ACTIONS(5029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), + [anon_sym_BSLASHimport] = ACTIONS(5029), + [anon_sym_BSLASHsubimport] = ACTIONS(5029), + [anon_sym_BSLASHinputfrom] = ACTIONS(5029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), + [anon_sym_BSLASHincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHcaption] = ACTIONS(5029), + [anon_sym_BSLASHcite] = ACTIONS(5029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCite] = ACTIONS(5029), + [anon_sym_BSLASHnocite] = ACTIONS(5029), + [anon_sym_BSLASHcitet] = ACTIONS(5029), + [anon_sym_BSLASHcitep] = ACTIONS(5029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteauthor] = ACTIONS(5029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitetitle] = ACTIONS(5029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteyear] = ACTIONS(5029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitedate] = ACTIONS(5029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteurl] = ACTIONS(5029), + [anon_sym_BSLASHfullcite] = ACTIONS(5029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), + [anon_sym_BSLASHcitealt] = ACTIONS(5029), + [anon_sym_BSLASHcitealp] = ACTIONS(5029), + [anon_sym_BSLASHcitetext] = ACTIONS(5029), + [anon_sym_BSLASHparencite] = ACTIONS(5029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHParencite] = ACTIONS(5029), + [anon_sym_BSLASHfootcite] = ACTIONS(5029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), + [anon_sym_BSLASHtextcite] = ACTIONS(5029), + [anon_sym_BSLASHTextcite] = ACTIONS(5029), + [anon_sym_BSLASHsmartcite] = ACTIONS(5029), + [anon_sym_BSLASHSmartcite] = ACTIONS(5029), + [anon_sym_BSLASHsupercite] = ACTIONS(5029), + [anon_sym_BSLASHautocite] = ACTIONS(5029), + [anon_sym_BSLASHAutocite] = ACTIONS(5029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHvolcite] = ACTIONS(5029), + [anon_sym_BSLASHVolcite] = ACTIONS(5029), + [anon_sym_BSLASHpvolcite] = ACTIONS(5029), + [anon_sym_BSLASHPvolcite] = ACTIONS(5029), + [anon_sym_BSLASHfvolcite] = ACTIONS(5029), + [anon_sym_BSLASHftvolcite] = ACTIONS(5029), + [anon_sym_BSLASHsvolcite] = ACTIONS(5029), + [anon_sym_BSLASHSvolcite] = ACTIONS(5029), + [anon_sym_BSLASHtvolcite] = ACTIONS(5029), + [anon_sym_BSLASHTvolcite] = ACTIONS(5029), + [anon_sym_BSLASHavolcite] = ACTIONS(5029), + [anon_sym_BSLASHAvolcite] = ACTIONS(5029), + [anon_sym_BSLASHnotecite] = ACTIONS(5029), + [anon_sym_BSLASHNotecite] = ACTIONS(5029), + [anon_sym_BSLASHpnotecite] = ACTIONS(5029), + [anon_sym_BSLASHPnotecite] = ACTIONS(5029), + [anon_sym_BSLASHfnotecite] = ACTIONS(5029), + [anon_sym_BSLASHlabel] = ACTIONS(5029), + [anon_sym_BSLASHref] = ACTIONS(5029), + [anon_sym_BSLASHeqref] = ACTIONS(5029), + [anon_sym_BSLASHvref] = ACTIONS(5029), + [anon_sym_BSLASHVref] = ACTIONS(5029), + [anon_sym_BSLASHautoref] = ACTIONS(5029), + [anon_sym_BSLASHpageref] = ACTIONS(5029), + [anon_sym_BSLASHcref] = ACTIONS(5029), + [anon_sym_BSLASHCref] = ACTIONS(5029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnameCref] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHlabelcref] = ACTIONS(5029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCrefrange] = ACTIONS(5029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnewlabel] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), + [anon_sym_BSLASHdef] = ACTIONS(5029), + [anon_sym_BSLASHlet] = ACTIONS(5029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), + [anon_sym_BSLASHgls] = ACTIONS(5029), + [anon_sym_BSLASHGls] = ACTIONS(5029), + [anon_sym_BSLASHGLS] = ACTIONS(5029), + [anon_sym_BSLASHglspl] = ACTIONS(5029), + [anon_sym_BSLASHGlspl] = ACTIONS(5029), + [anon_sym_BSLASHGLSpl] = ACTIONS(5029), + [anon_sym_BSLASHglsdisp] = ACTIONS(5029), + [anon_sym_BSLASHglslink] = ACTIONS(5029), + [anon_sym_BSLASHglstext] = ACTIONS(5029), + [anon_sym_BSLASHGlstext] = ACTIONS(5029), + [anon_sym_BSLASHGLStext] = ACTIONS(5029), + [anon_sym_BSLASHglsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), + [anon_sym_BSLASHglsplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSplural] = ACTIONS(5029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHglsname] = ACTIONS(5029), + [anon_sym_BSLASHGlsname] = ACTIONS(5029), + [anon_sym_BSLASHGLSname] = ACTIONS(5029), + [anon_sym_BSLASHglssymbol] = ACTIONS(5029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), + [anon_sym_BSLASHglsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), + [anon_sym_BSLASHglsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), + [anon_sym_BSLASHglsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), + [anon_sym_BSLASHglsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), + [anon_sym_BSLASHglsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), + [anon_sym_BSLASHnewacronym] = ACTIONS(5029), + [anon_sym_BSLASHacrshort] = ACTIONS(5029), + [anon_sym_BSLASHAcrshort] = ACTIONS(5029), + [anon_sym_BSLASHACRshort] = ACTIONS(5029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), + [anon_sym_BSLASHacrlong] = ACTIONS(5029), + [anon_sym_BSLASHAcrlong] = ACTIONS(5029), + [anon_sym_BSLASHACRlong] = ACTIONS(5029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), + [anon_sym_BSLASHacrfull] = ACTIONS(5029), + [anon_sym_BSLASHAcrfull] = ACTIONS(5029), + [anon_sym_BSLASHACRfull] = ACTIONS(5029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), + [anon_sym_BSLASHacs] = ACTIONS(5029), + [anon_sym_BSLASHAcs] = ACTIONS(5029), + [anon_sym_BSLASHacsp] = ACTIONS(5029), + [anon_sym_BSLASHAcsp] = ACTIONS(5029), + [anon_sym_BSLASHacl] = ACTIONS(5029), + [anon_sym_BSLASHAcl] = ACTIONS(5029), + [anon_sym_BSLASHaclp] = ACTIONS(5029), + [anon_sym_BSLASHAclp] = ACTIONS(5029), + [anon_sym_BSLASHacf] = ACTIONS(5029), + [anon_sym_BSLASHAcf] = ACTIONS(5029), + [anon_sym_BSLASHacfp] = ACTIONS(5029), + [anon_sym_BSLASHAcfp] = ACTIONS(5029), + [anon_sym_BSLASHac] = ACTIONS(5029), + [anon_sym_BSLASHAc] = ACTIONS(5029), + [anon_sym_BSLASHacp] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), + [anon_sym_BSLASHcolor] = ACTIONS(5029), + [anon_sym_BSLASHcolorbox] = ACTIONS(5029), + [anon_sym_BSLASHtextcolor] = ACTIONS(5029), + [anon_sym_BSLASHpagecolor] = ACTIONS(5029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), + [anon_sym_BSLASHtext] = ACTIONS(5029), + [anon_sym_BSLASHintertext] = ACTIONS(5029), + [anon_sym_shortintertext] = ACTIONS(5029), }, - [934] = { - [sym_command_name] = ACTIONS(5049), + [722] = { + [ts_builtin_sym_end] = ACTIONS(131), + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_BSLASHpart] = ACTIONS(133), + [anon_sym_BSLASHpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddpart] = ACTIONS(133), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHchapter] = ACTIONS(133), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddchap] = ACTIONS(133), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), + [anon_sym_BSLASHsection] = ACTIONS(133), + [anon_sym_BSLASHsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddsec] = ACTIONS(133), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHparagraph] = ACTIONS(133), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubparagraph] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHitem] = ACTIONS(133), + [anon_sym_BSLASHitem_STAR] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), + }, + [723] = { + [ts_builtin_sym_end] = ACTIONS(5031), + [sym_command_name] = ACTIONS(5033), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_BSLASHpart] = ACTIONS(5049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddpart] = ACTIONS(5049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHchapter] = ACTIONS(5049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddchap] = ACTIONS(5049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsection] = ACTIONS(5049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddsec] = ACTIONS(5049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHparagraph] = ACTIONS(5049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHitem] = ACTIONS(5049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASHbegin] = ACTIONS(5049), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [anon_sym_BSLASHiffalse] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_BSLASHpart] = ACTIONS(5033), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddpart] = ACTIONS(5033), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), + [anon_sym_BSLASHchapter] = ACTIONS(5033), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddchap] = ACTIONS(5033), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsection] = ACTIONS(5033), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddsec] = ACTIONS(5033), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubsection] = ACTIONS(5033), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHparagraph] = ACTIONS(5033), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), + [anon_sym_BSLASHitem] = ACTIONS(5033), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [sym_word] = ACTIONS(5033), + [sym_placeholder] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5033), + [anon_sym_DASH] = ACTIONS(5033), + [anon_sym_STAR] = ACTIONS(5033), + [anon_sym_SLASH] = ACTIONS(5033), + [anon_sym_CARET] = ACTIONS(5033), + [anon_sym__] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5033), + [anon_sym_PIPE] = ACTIONS(5033), + [anon_sym_COLON] = ACTIONS(5033), + [anon_sym_SQUOTE] = ACTIONS(5033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), + [anon_sym_DOLLAR] = ACTIONS(5033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), + [anon_sym_BSLASHbegin] = ACTIONS(5033), + [anon_sym_BSLASHusepackage] = ACTIONS(5033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), + [anon_sym_BSLASHinclude] = ACTIONS(5033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), + [anon_sym_BSLASHinput] = ACTIONS(5033), + [anon_sym_BSLASHsubfile] = ACTIONS(5033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), + [anon_sym_BSLASHbibliography] = ACTIONS(5033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), + [anon_sym_BSLASHincludesvg] = ACTIONS(5033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), + [anon_sym_BSLASHimport] = ACTIONS(5033), + [anon_sym_BSLASHsubimport] = ACTIONS(5033), + [anon_sym_BSLASHinputfrom] = ACTIONS(5033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), + [anon_sym_BSLASHincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHcaption] = ACTIONS(5033), + [anon_sym_BSLASHcite] = ACTIONS(5033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCite] = ACTIONS(5033), + [anon_sym_BSLASHnocite] = ACTIONS(5033), + [anon_sym_BSLASHcitet] = ACTIONS(5033), + [anon_sym_BSLASHcitep] = ACTIONS(5033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteauthor] = ACTIONS(5033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitetitle] = ACTIONS(5033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteyear] = ACTIONS(5033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitedate] = ACTIONS(5033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteurl] = ACTIONS(5033), + [anon_sym_BSLASHfullcite] = ACTIONS(5033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), + [anon_sym_BSLASHcitealt] = ACTIONS(5033), + [anon_sym_BSLASHcitealp] = ACTIONS(5033), + [anon_sym_BSLASHcitetext] = ACTIONS(5033), + [anon_sym_BSLASHparencite] = ACTIONS(5033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHParencite] = ACTIONS(5033), + [anon_sym_BSLASHfootcite] = ACTIONS(5033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), + [anon_sym_BSLASHtextcite] = ACTIONS(5033), + [anon_sym_BSLASHTextcite] = ACTIONS(5033), + [anon_sym_BSLASHsmartcite] = ACTIONS(5033), + [anon_sym_BSLASHSmartcite] = ACTIONS(5033), + [anon_sym_BSLASHsupercite] = ACTIONS(5033), + [anon_sym_BSLASHautocite] = ACTIONS(5033), + [anon_sym_BSLASHAutocite] = ACTIONS(5033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHvolcite] = ACTIONS(5033), + [anon_sym_BSLASHVolcite] = ACTIONS(5033), + [anon_sym_BSLASHpvolcite] = ACTIONS(5033), + [anon_sym_BSLASHPvolcite] = ACTIONS(5033), + [anon_sym_BSLASHfvolcite] = ACTIONS(5033), + [anon_sym_BSLASHftvolcite] = ACTIONS(5033), + [anon_sym_BSLASHsvolcite] = ACTIONS(5033), + [anon_sym_BSLASHSvolcite] = ACTIONS(5033), + [anon_sym_BSLASHtvolcite] = ACTIONS(5033), + [anon_sym_BSLASHTvolcite] = ACTIONS(5033), + [anon_sym_BSLASHavolcite] = ACTIONS(5033), + [anon_sym_BSLASHAvolcite] = ACTIONS(5033), + [anon_sym_BSLASHnotecite] = ACTIONS(5033), + [anon_sym_BSLASHNotecite] = ACTIONS(5033), + [anon_sym_BSLASHpnotecite] = ACTIONS(5033), + [anon_sym_BSLASHPnotecite] = ACTIONS(5033), + [anon_sym_BSLASHfnotecite] = ACTIONS(5033), + [anon_sym_BSLASHlabel] = ACTIONS(5033), + [anon_sym_BSLASHref] = ACTIONS(5033), + [anon_sym_BSLASHeqref] = ACTIONS(5033), + [anon_sym_BSLASHvref] = ACTIONS(5033), + [anon_sym_BSLASHVref] = ACTIONS(5033), + [anon_sym_BSLASHautoref] = ACTIONS(5033), + [anon_sym_BSLASHpageref] = ACTIONS(5033), + [anon_sym_BSLASHcref] = ACTIONS(5033), + [anon_sym_BSLASHCref] = ACTIONS(5033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnameCref] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHlabelcref] = ACTIONS(5033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCrefrange] = ACTIONS(5033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnewlabel] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), + [anon_sym_BSLASHdef] = ACTIONS(5033), + [anon_sym_BSLASHlet] = ACTIONS(5033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), + [anon_sym_BSLASHgls] = ACTIONS(5033), + [anon_sym_BSLASHGls] = ACTIONS(5033), + [anon_sym_BSLASHGLS] = ACTIONS(5033), + [anon_sym_BSLASHglspl] = ACTIONS(5033), + [anon_sym_BSLASHGlspl] = ACTIONS(5033), + [anon_sym_BSLASHGLSpl] = ACTIONS(5033), + [anon_sym_BSLASHglsdisp] = ACTIONS(5033), + [anon_sym_BSLASHglslink] = ACTIONS(5033), + [anon_sym_BSLASHglstext] = ACTIONS(5033), + [anon_sym_BSLASHGlstext] = ACTIONS(5033), + [anon_sym_BSLASHGLStext] = ACTIONS(5033), + [anon_sym_BSLASHglsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), + [anon_sym_BSLASHglsplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSplural] = ACTIONS(5033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHglsname] = ACTIONS(5033), + [anon_sym_BSLASHGlsname] = ACTIONS(5033), + [anon_sym_BSLASHGLSname] = ACTIONS(5033), + [anon_sym_BSLASHglssymbol] = ACTIONS(5033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), + [anon_sym_BSLASHglsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), + [anon_sym_BSLASHglsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), + [anon_sym_BSLASHglsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), + [anon_sym_BSLASHglsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), + [anon_sym_BSLASHglsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), + [anon_sym_BSLASHnewacronym] = ACTIONS(5033), + [anon_sym_BSLASHacrshort] = ACTIONS(5033), + [anon_sym_BSLASHAcrshort] = ACTIONS(5033), + [anon_sym_BSLASHACRshort] = ACTIONS(5033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), + [anon_sym_BSLASHacrlong] = ACTIONS(5033), + [anon_sym_BSLASHAcrlong] = ACTIONS(5033), + [anon_sym_BSLASHACRlong] = ACTIONS(5033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), + [anon_sym_BSLASHacrfull] = ACTIONS(5033), + [anon_sym_BSLASHAcrfull] = ACTIONS(5033), + [anon_sym_BSLASHACRfull] = ACTIONS(5033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), + [anon_sym_BSLASHacs] = ACTIONS(5033), + [anon_sym_BSLASHAcs] = ACTIONS(5033), + [anon_sym_BSLASHacsp] = ACTIONS(5033), + [anon_sym_BSLASHAcsp] = ACTIONS(5033), + [anon_sym_BSLASHacl] = ACTIONS(5033), + [anon_sym_BSLASHAcl] = ACTIONS(5033), + [anon_sym_BSLASHaclp] = ACTIONS(5033), + [anon_sym_BSLASHAclp] = ACTIONS(5033), + [anon_sym_BSLASHacf] = ACTIONS(5033), + [anon_sym_BSLASHAcf] = ACTIONS(5033), + [anon_sym_BSLASHacfp] = ACTIONS(5033), + [anon_sym_BSLASHAcfp] = ACTIONS(5033), + [anon_sym_BSLASHac] = ACTIONS(5033), + [anon_sym_BSLASHAc] = ACTIONS(5033), + [anon_sym_BSLASHacp] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), + [anon_sym_BSLASHcolor] = ACTIONS(5033), + [anon_sym_BSLASHcolorbox] = ACTIONS(5033), + [anon_sym_BSLASHtextcolor] = ACTIONS(5033), + [anon_sym_BSLASHpagecolor] = ACTIONS(5033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [anon_sym_BSLASHtext] = ACTIONS(5033), + [anon_sym_BSLASHintertext] = ACTIONS(5033), + [anon_sym_shortintertext] = ACTIONS(5033), }, - [935] = { + [724] = { + [ts_builtin_sym_end] = ACTIONS(137), + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(137), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [725] = { + [ts_builtin_sym_end] = ACTIONS(5035), [sym_command_name] = ACTIONS(5037), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -289644,6 +233261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHitem] = ACTIONS(5037), [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), [anon_sym_LBRACE] = ACTIONS(5035), + [anon_sym_RBRACE] = ACTIONS(5035), [sym_word] = ACTIONS(5037), [sym_placeholder] = ACTIONS(5035), [anon_sym_PLUS] = ACTIONS(5037), @@ -289662,7 +233280,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), [anon_sym_DOLLAR] = ACTIONS(5037), [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5035), [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), [anon_sym_BSLASHbegin] = ACTIONS(5037), [anon_sym_BSLASHusepackage] = ACTIONS(5037), @@ -289878,13458 +233495,27307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(5037), [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [anon_sym_BSLASHtext] = ACTIONS(5037), + [anon_sym_BSLASHintertext] = ACTIONS(5037), + [anon_sym_shortintertext] = ACTIONS(5037), }, - [936] = { - [sym_command_name] = ACTIONS(5033), + [726] = { + [ts_builtin_sym_end] = ACTIONS(5039), + [sym_command_name] = ACTIONS(5041), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_BSLASHpart] = ACTIONS(5033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddpart] = ACTIONS(5033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHchapter] = ACTIONS(5033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddchap] = ACTIONS(5033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsection] = ACTIONS(5033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddsec] = ACTIONS(5033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHparagraph] = ACTIONS(5033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHitem] = ACTIONS(5033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASHbegin] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), - }, - [937] = { - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_BSLASHpart] = ACTIONS(131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddpart] = ACTIONS(131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHchapter] = ACTIONS(131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddchap] = ACTIONS(131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(129), - [anon_sym_BSLASHsection] = ACTIONS(131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddsec] = ACTIONS(131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHparagraph] = ACTIONS(131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHitem] = ACTIONS(131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_RPAREN] = ACTIONS(129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [anon_sym_BSLASHiffalse] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_RBRACK] = ACTIONS(5039), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_BSLASHpart] = ACTIONS(5041), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddpart] = ACTIONS(5041), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), + [anon_sym_BSLASHchapter] = ACTIONS(5041), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddchap] = ACTIONS(5041), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsection] = ACTIONS(5041), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddsec] = ACTIONS(5041), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubsection] = ACTIONS(5041), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHparagraph] = ACTIONS(5041), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), + [anon_sym_BSLASHitem] = ACTIONS(5041), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5039), + [anon_sym_RBRACE] = ACTIONS(5039), + [sym_word] = ACTIONS(5041), + [sym_placeholder] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_SLASH] = ACTIONS(5041), + [anon_sym_CARET] = ACTIONS(5041), + [anon_sym__] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5041), + [anon_sym_PIPE] = ACTIONS(5041), + [anon_sym_COLON] = ACTIONS(5041), + [anon_sym_SQUOTE] = ACTIONS(5041), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), + [anon_sym_BSLASHbegin] = ACTIONS(5041), + [anon_sym_BSLASHusepackage] = ACTIONS(5041), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), + [anon_sym_BSLASHinclude] = ACTIONS(5041), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), + [anon_sym_BSLASHinput] = ACTIONS(5041), + [anon_sym_BSLASHsubfile] = ACTIONS(5041), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), + [anon_sym_BSLASHbibliography] = ACTIONS(5041), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), + [anon_sym_BSLASHincludesvg] = ACTIONS(5041), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), + [anon_sym_BSLASHimport] = ACTIONS(5041), + [anon_sym_BSLASHsubimport] = ACTIONS(5041), + [anon_sym_BSLASHinputfrom] = ACTIONS(5041), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), + [anon_sym_BSLASHincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHcaption] = ACTIONS(5041), + [anon_sym_BSLASHcite] = ACTIONS(5041), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCite] = ACTIONS(5041), + [anon_sym_BSLASHnocite] = ACTIONS(5041), + [anon_sym_BSLASHcitet] = ACTIONS(5041), + [anon_sym_BSLASHcitep] = ACTIONS(5041), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteauthor] = ACTIONS(5041), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitetitle] = ACTIONS(5041), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteyear] = ACTIONS(5041), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitedate] = ACTIONS(5041), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteurl] = ACTIONS(5041), + [anon_sym_BSLASHfullcite] = ACTIONS(5041), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), + [anon_sym_BSLASHcitealt] = ACTIONS(5041), + [anon_sym_BSLASHcitealp] = ACTIONS(5041), + [anon_sym_BSLASHcitetext] = ACTIONS(5041), + [anon_sym_BSLASHparencite] = ACTIONS(5041), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHParencite] = ACTIONS(5041), + [anon_sym_BSLASHfootcite] = ACTIONS(5041), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), + [anon_sym_BSLASHtextcite] = ACTIONS(5041), + [anon_sym_BSLASHTextcite] = ACTIONS(5041), + [anon_sym_BSLASHsmartcite] = ACTIONS(5041), + [anon_sym_BSLASHSmartcite] = ACTIONS(5041), + [anon_sym_BSLASHsupercite] = ACTIONS(5041), + [anon_sym_BSLASHautocite] = ACTIONS(5041), + [anon_sym_BSLASHAutocite] = ACTIONS(5041), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHvolcite] = ACTIONS(5041), + [anon_sym_BSLASHVolcite] = ACTIONS(5041), + [anon_sym_BSLASHpvolcite] = ACTIONS(5041), + [anon_sym_BSLASHPvolcite] = ACTIONS(5041), + [anon_sym_BSLASHfvolcite] = ACTIONS(5041), + [anon_sym_BSLASHftvolcite] = ACTIONS(5041), + [anon_sym_BSLASHsvolcite] = ACTIONS(5041), + [anon_sym_BSLASHSvolcite] = ACTIONS(5041), + [anon_sym_BSLASHtvolcite] = ACTIONS(5041), + [anon_sym_BSLASHTvolcite] = ACTIONS(5041), + [anon_sym_BSLASHavolcite] = ACTIONS(5041), + [anon_sym_BSLASHAvolcite] = ACTIONS(5041), + [anon_sym_BSLASHnotecite] = ACTIONS(5041), + [anon_sym_BSLASHNotecite] = ACTIONS(5041), + [anon_sym_BSLASHpnotecite] = ACTIONS(5041), + [anon_sym_BSLASHPnotecite] = ACTIONS(5041), + [anon_sym_BSLASHfnotecite] = ACTIONS(5041), + [anon_sym_BSLASHlabel] = ACTIONS(5041), + [anon_sym_BSLASHref] = ACTIONS(5041), + [anon_sym_BSLASHeqref] = ACTIONS(5041), + [anon_sym_BSLASHvref] = ACTIONS(5041), + [anon_sym_BSLASHVref] = ACTIONS(5041), + [anon_sym_BSLASHautoref] = ACTIONS(5041), + [anon_sym_BSLASHpageref] = ACTIONS(5041), + [anon_sym_BSLASHcref] = ACTIONS(5041), + [anon_sym_BSLASHCref] = ACTIONS(5041), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnameCref] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHlabelcref] = ACTIONS(5041), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCrefrange] = ACTIONS(5041), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnewlabel] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), + [anon_sym_BSLASHdef] = ACTIONS(5041), + [anon_sym_BSLASHlet] = ACTIONS(5041), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), + [anon_sym_BSLASHgls] = ACTIONS(5041), + [anon_sym_BSLASHGls] = ACTIONS(5041), + [anon_sym_BSLASHGLS] = ACTIONS(5041), + [anon_sym_BSLASHglspl] = ACTIONS(5041), + [anon_sym_BSLASHGlspl] = ACTIONS(5041), + [anon_sym_BSLASHGLSpl] = ACTIONS(5041), + [anon_sym_BSLASHglsdisp] = ACTIONS(5041), + [anon_sym_BSLASHglslink] = ACTIONS(5041), + [anon_sym_BSLASHglstext] = ACTIONS(5041), + [anon_sym_BSLASHGlstext] = ACTIONS(5041), + [anon_sym_BSLASHGLStext] = ACTIONS(5041), + [anon_sym_BSLASHglsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), + [anon_sym_BSLASHglsplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSplural] = ACTIONS(5041), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHglsname] = ACTIONS(5041), + [anon_sym_BSLASHGlsname] = ACTIONS(5041), + [anon_sym_BSLASHGLSname] = ACTIONS(5041), + [anon_sym_BSLASHglssymbol] = ACTIONS(5041), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), + [anon_sym_BSLASHglsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), + [anon_sym_BSLASHglsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), + [anon_sym_BSLASHglsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), + [anon_sym_BSLASHglsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), + [anon_sym_BSLASHglsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), + [anon_sym_BSLASHnewacronym] = ACTIONS(5041), + [anon_sym_BSLASHacrshort] = ACTIONS(5041), + [anon_sym_BSLASHAcrshort] = ACTIONS(5041), + [anon_sym_BSLASHACRshort] = ACTIONS(5041), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), + [anon_sym_BSLASHacrlong] = ACTIONS(5041), + [anon_sym_BSLASHAcrlong] = ACTIONS(5041), + [anon_sym_BSLASHACRlong] = ACTIONS(5041), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), + [anon_sym_BSLASHacrfull] = ACTIONS(5041), + [anon_sym_BSLASHAcrfull] = ACTIONS(5041), + [anon_sym_BSLASHACRfull] = ACTIONS(5041), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), + [anon_sym_BSLASHacs] = ACTIONS(5041), + [anon_sym_BSLASHAcs] = ACTIONS(5041), + [anon_sym_BSLASHacsp] = ACTIONS(5041), + [anon_sym_BSLASHAcsp] = ACTIONS(5041), + [anon_sym_BSLASHacl] = ACTIONS(5041), + [anon_sym_BSLASHAcl] = ACTIONS(5041), + [anon_sym_BSLASHaclp] = ACTIONS(5041), + [anon_sym_BSLASHAclp] = ACTIONS(5041), + [anon_sym_BSLASHacf] = ACTIONS(5041), + [anon_sym_BSLASHAcf] = ACTIONS(5041), + [anon_sym_BSLASHacfp] = ACTIONS(5041), + [anon_sym_BSLASHAcfp] = ACTIONS(5041), + [anon_sym_BSLASHac] = ACTIONS(5041), + [anon_sym_BSLASHAc] = ACTIONS(5041), + [anon_sym_BSLASHacp] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), + [anon_sym_BSLASHcolor] = ACTIONS(5041), + [anon_sym_BSLASHcolorbox] = ACTIONS(5041), + [anon_sym_BSLASHtextcolor] = ACTIONS(5041), + [anon_sym_BSLASHpagecolor] = ACTIONS(5041), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + [anon_sym_BSLASHtext] = ACTIONS(5041), + [anon_sym_BSLASHintertext] = ACTIONS(5041), + [anon_sym_shortintertext] = ACTIONS(5041), }, - [938] = { - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_BSLASHpart] = ACTIONS(147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddpart] = ACTIONS(147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHchapter] = ACTIONS(147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddchap] = ACTIONS(147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(145), - [anon_sym_BSLASHsection] = ACTIONS(147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddsec] = ACTIONS(147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHparagraph] = ACTIONS(147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHitem] = ACTIONS(147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_RPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), + [727] = { + [ts_builtin_sym_end] = ACTIONS(5043), + [sym_command_name] = ACTIONS(5045), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_RBRACK] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_BSLASHpart] = ACTIONS(5045), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddpart] = ACTIONS(5045), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5043), + [anon_sym_BSLASHchapter] = ACTIONS(5045), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddchap] = ACTIONS(5045), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsection] = ACTIONS(5045), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddsec] = ACTIONS(5045), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubsection] = ACTIONS(5045), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5045), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHparagraph] = ACTIONS(5045), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5045), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5043), + [anon_sym_BSLASHitem] = ACTIONS(5045), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5043), + [anon_sym_RBRACE] = ACTIONS(5043), + [sym_word] = ACTIONS(5045), + [sym_placeholder] = ACTIONS(5043), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_CARET] = ACTIONS(5045), + [anon_sym__] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_COLON] = ACTIONS(5045), + [anon_sym_SQUOTE] = ACTIONS(5045), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), + [anon_sym_DOLLAR] = ACTIONS(5045), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), + [anon_sym_BSLASHbegin] = ACTIONS(5045), + [anon_sym_BSLASHusepackage] = ACTIONS(5045), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), + [anon_sym_BSLASHinclude] = ACTIONS(5045), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), + [anon_sym_BSLASHinput] = ACTIONS(5045), + [anon_sym_BSLASHsubfile] = ACTIONS(5045), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), + [anon_sym_BSLASHbibliography] = ACTIONS(5045), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), + [anon_sym_BSLASHincludesvg] = ACTIONS(5045), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), + [anon_sym_BSLASHimport] = ACTIONS(5045), + [anon_sym_BSLASHsubimport] = ACTIONS(5045), + [anon_sym_BSLASHinputfrom] = ACTIONS(5045), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), + [anon_sym_BSLASHincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHcaption] = ACTIONS(5045), + [anon_sym_BSLASHcite] = ACTIONS(5045), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCite] = ACTIONS(5045), + [anon_sym_BSLASHnocite] = ACTIONS(5045), + [anon_sym_BSLASHcitet] = ACTIONS(5045), + [anon_sym_BSLASHcitep] = ACTIONS(5045), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteauthor] = ACTIONS(5045), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitetitle] = ACTIONS(5045), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteyear] = ACTIONS(5045), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitedate] = ACTIONS(5045), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteurl] = ACTIONS(5045), + [anon_sym_BSLASHfullcite] = ACTIONS(5045), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), + [anon_sym_BSLASHcitealt] = ACTIONS(5045), + [anon_sym_BSLASHcitealp] = ACTIONS(5045), + [anon_sym_BSLASHcitetext] = ACTIONS(5045), + [anon_sym_BSLASHparencite] = ACTIONS(5045), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHParencite] = ACTIONS(5045), + [anon_sym_BSLASHfootcite] = ACTIONS(5045), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), + [anon_sym_BSLASHtextcite] = ACTIONS(5045), + [anon_sym_BSLASHTextcite] = ACTIONS(5045), + [anon_sym_BSLASHsmartcite] = ACTIONS(5045), + [anon_sym_BSLASHSmartcite] = ACTIONS(5045), + [anon_sym_BSLASHsupercite] = ACTIONS(5045), + [anon_sym_BSLASHautocite] = ACTIONS(5045), + [anon_sym_BSLASHAutocite] = ACTIONS(5045), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHvolcite] = ACTIONS(5045), + [anon_sym_BSLASHVolcite] = ACTIONS(5045), + [anon_sym_BSLASHpvolcite] = ACTIONS(5045), + [anon_sym_BSLASHPvolcite] = ACTIONS(5045), + [anon_sym_BSLASHfvolcite] = ACTIONS(5045), + [anon_sym_BSLASHftvolcite] = ACTIONS(5045), + [anon_sym_BSLASHsvolcite] = ACTIONS(5045), + [anon_sym_BSLASHSvolcite] = ACTIONS(5045), + [anon_sym_BSLASHtvolcite] = ACTIONS(5045), + [anon_sym_BSLASHTvolcite] = ACTIONS(5045), + [anon_sym_BSLASHavolcite] = ACTIONS(5045), + [anon_sym_BSLASHAvolcite] = ACTIONS(5045), + [anon_sym_BSLASHnotecite] = ACTIONS(5045), + [anon_sym_BSLASHNotecite] = ACTIONS(5045), + [anon_sym_BSLASHpnotecite] = ACTIONS(5045), + [anon_sym_BSLASHPnotecite] = ACTIONS(5045), + [anon_sym_BSLASHfnotecite] = ACTIONS(5045), + [anon_sym_BSLASHlabel] = ACTIONS(5045), + [anon_sym_BSLASHref] = ACTIONS(5045), + [anon_sym_BSLASHeqref] = ACTIONS(5045), + [anon_sym_BSLASHvref] = ACTIONS(5045), + [anon_sym_BSLASHVref] = ACTIONS(5045), + [anon_sym_BSLASHautoref] = ACTIONS(5045), + [anon_sym_BSLASHpageref] = ACTIONS(5045), + [anon_sym_BSLASHcref] = ACTIONS(5045), + [anon_sym_BSLASHCref] = ACTIONS(5045), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnameCref] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHlabelcref] = ACTIONS(5045), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCrefrange] = ACTIONS(5045), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnewlabel] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), + [anon_sym_BSLASHdef] = ACTIONS(5045), + [anon_sym_BSLASHlet] = ACTIONS(5045), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), + [anon_sym_BSLASHgls] = ACTIONS(5045), + [anon_sym_BSLASHGls] = ACTIONS(5045), + [anon_sym_BSLASHGLS] = ACTIONS(5045), + [anon_sym_BSLASHglspl] = ACTIONS(5045), + [anon_sym_BSLASHGlspl] = ACTIONS(5045), + [anon_sym_BSLASHGLSpl] = ACTIONS(5045), + [anon_sym_BSLASHglsdisp] = ACTIONS(5045), + [anon_sym_BSLASHglslink] = ACTIONS(5045), + [anon_sym_BSLASHglstext] = ACTIONS(5045), + [anon_sym_BSLASHGlstext] = ACTIONS(5045), + [anon_sym_BSLASHGLStext] = ACTIONS(5045), + [anon_sym_BSLASHglsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), + [anon_sym_BSLASHglsplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSplural] = ACTIONS(5045), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHglsname] = ACTIONS(5045), + [anon_sym_BSLASHGlsname] = ACTIONS(5045), + [anon_sym_BSLASHGLSname] = ACTIONS(5045), + [anon_sym_BSLASHglssymbol] = ACTIONS(5045), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), + [anon_sym_BSLASHglsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), + [anon_sym_BSLASHglsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), + [anon_sym_BSLASHglsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), + [anon_sym_BSLASHglsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), + [anon_sym_BSLASHglsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), + [anon_sym_BSLASHnewacronym] = ACTIONS(5045), + [anon_sym_BSLASHacrshort] = ACTIONS(5045), + [anon_sym_BSLASHAcrshort] = ACTIONS(5045), + [anon_sym_BSLASHACRshort] = ACTIONS(5045), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), + [anon_sym_BSLASHacrlong] = ACTIONS(5045), + [anon_sym_BSLASHAcrlong] = ACTIONS(5045), + [anon_sym_BSLASHACRlong] = ACTIONS(5045), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), + [anon_sym_BSLASHacrfull] = ACTIONS(5045), + [anon_sym_BSLASHAcrfull] = ACTIONS(5045), + [anon_sym_BSLASHACRfull] = ACTIONS(5045), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), + [anon_sym_BSLASHacs] = ACTIONS(5045), + [anon_sym_BSLASHAcs] = ACTIONS(5045), + [anon_sym_BSLASHacsp] = ACTIONS(5045), + [anon_sym_BSLASHAcsp] = ACTIONS(5045), + [anon_sym_BSLASHacl] = ACTIONS(5045), + [anon_sym_BSLASHAcl] = ACTIONS(5045), + [anon_sym_BSLASHaclp] = ACTIONS(5045), + [anon_sym_BSLASHAclp] = ACTIONS(5045), + [anon_sym_BSLASHacf] = ACTIONS(5045), + [anon_sym_BSLASHAcf] = ACTIONS(5045), + [anon_sym_BSLASHacfp] = ACTIONS(5045), + [anon_sym_BSLASHAcfp] = ACTIONS(5045), + [anon_sym_BSLASHac] = ACTIONS(5045), + [anon_sym_BSLASHAc] = ACTIONS(5045), + [anon_sym_BSLASHacp] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), + [anon_sym_BSLASHcolor] = ACTIONS(5045), + [anon_sym_BSLASHcolorbox] = ACTIONS(5045), + [anon_sym_BSLASHtextcolor] = ACTIONS(5045), + [anon_sym_BSLASHpagecolor] = ACTIONS(5045), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), + [anon_sym_BSLASHtext] = ACTIONS(5045), + [anon_sym_BSLASHintertext] = ACTIONS(5045), + [anon_sym_shortintertext] = ACTIONS(5045), }, - [939] = { - [sym_command_name] = ACTIONS(5025), + [728] = { + [ts_builtin_sym_end] = ACTIONS(5047), + [sym_command_name] = ACTIONS(5049), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_BSLASHpart] = ACTIONS(5025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddpart] = ACTIONS(5025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHchapter] = ACTIONS(5025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddchap] = ACTIONS(5025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsection] = ACTIONS(5025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddsec] = ACTIONS(5025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHparagraph] = ACTIONS(5025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHitem] = ACTIONS(5025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASHbegin] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [anon_sym_BSLASHiffalse] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5047), + [anon_sym_RPAREN] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_RBRACK] = ACTIONS(5047), + [anon_sym_COMMA] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_BSLASHpart] = ACTIONS(5049), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), + [anon_sym_BSLASHaddpart] = ACTIONS(5049), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), + [anon_sym_BSLASHchapter] = ACTIONS(5049), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), + [anon_sym_BSLASHaddchap] = ACTIONS(5049), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsection] = ACTIONS(5049), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), + [anon_sym_BSLASHaddsec] = ACTIONS(5049), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsubsection] = ACTIONS(5049), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), + [anon_sym_BSLASHparagraph] = ACTIONS(5049), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), + [anon_sym_BSLASHitem] = ACTIONS(5049), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5047), + [anon_sym_RBRACE] = ACTIONS(5047), + [sym_word] = ACTIONS(5049), + [sym_placeholder] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5049), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_CARET] = ACTIONS(5049), + [anon_sym__] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5049), + [anon_sym_PIPE] = ACTIONS(5049), + [anon_sym_COLON] = ACTIONS(5049), + [anon_sym_SQUOTE] = ACTIONS(5049), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), + [anon_sym_DOLLAR] = ACTIONS(5049), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), + [anon_sym_BSLASHbegin] = ACTIONS(5049), + [anon_sym_BSLASHusepackage] = ACTIONS(5049), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), + [anon_sym_BSLASHinclude] = ACTIONS(5049), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), + [anon_sym_BSLASHinput] = ACTIONS(5049), + [anon_sym_BSLASHsubfile] = ACTIONS(5049), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), + [anon_sym_BSLASHbibliography] = ACTIONS(5049), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), + [anon_sym_BSLASHincludesvg] = ACTIONS(5049), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), + [anon_sym_BSLASHimport] = ACTIONS(5049), + [anon_sym_BSLASHsubimport] = ACTIONS(5049), + [anon_sym_BSLASHinputfrom] = ACTIONS(5049), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), + [anon_sym_BSLASHincludefrom] = ACTIONS(5049), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), + [anon_sym_BSLASHcaption] = ACTIONS(5049), + [anon_sym_BSLASHcite] = ACTIONS(5049), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCite] = ACTIONS(5049), + [anon_sym_BSLASHnocite] = ACTIONS(5049), + [anon_sym_BSLASHcitet] = ACTIONS(5049), + [anon_sym_BSLASHcitep] = ACTIONS(5049), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteauthor] = ACTIONS(5049), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitetitle] = ACTIONS(5049), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteyear] = ACTIONS(5049), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitedate] = ACTIONS(5049), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteurl] = ACTIONS(5049), + [anon_sym_BSLASHfullcite] = ACTIONS(5049), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), + [anon_sym_BSLASHcitealt] = ACTIONS(5049), + [anon_sym_BSLASHcitealp] = ACTIONS(5049), + [anon_sym_BSLASHcitetext] = ACTIONS(5049), + [anon_sym_BSLASHparencite] = ACTIONS(5049), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHParencite] = ACTIONS(5049), + [anon_sym_BSLASHfootcite] = ACTIONS(5049), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), + [anon_sym_BSLASHtextcite] = ACTIONS(5049), + [anon_sym_BSLASHTextcite] = ACTIONS(5049), + [anon_sym_BSLASHsmartcite] = ACTIONS(5049), + [anon_sym_BSLASHSmartcite] = ACTIONS(5049), + [anon_sym_BSLASHsupercite] = ACTIONS(5049), + [anon_sym_BSLASHautocite] = ACTIONS(5049), + [anon_sym_BSLASHAutocite] = ACTIONS(5049), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHvolcite] = ACTIONS(5049), + [anon_sym_BSLASHVolcite] = ACTIONS(5049), + [anon_sym_BSLASHpvolcite] = ACTIONS(5049), + [anon_sym_BSLASHPvolcite] = ACTIONS(5049), + [anon_sym_BSLASHfvolcite] = ACTIONS(5049), + [anon_sym_BSLASHftvolcite] = ACTIONS(5049), + [anon_sym_BSLASHsvolcite] = ACTIONS(5049), + [anon_sym_BSLASHSvolcite] = ACTIONS(5049), + [anon_sym_BSLASHtvolcite] = ACTIONS(5049), + [anon_sym_BSLASHTvolcite] = ACTIONS(5049), + [anon_sym_BSLASHavolcite] = ACTIONS(5049), + [anon_sym_BSLASHAvolcite] = ACTIONS(5049), + [anon_sym_BSLASHnotecite] = ACTIONS(5049), + [anon_sym_BSLASHNotecite] = ACTIONS(5049), + [anon_sym_BSLASHpnotecite] = ACTIONS(5049), + [anon_sym_BSLASHPnotecite] = ACTIONS(5049), + [anon_sym_BSLASHfnotecite] = ACTIONS(5049), + [anon_sym_BSLASHlabel] = ACTIONS(5049), + [anon_sym_BSLASHref] = ACTIONS(5049), + [anon_sym_BSLASHeqref] = ACTIONS(5049), + [anon_sym_BSLASHvref] = ACTIONS(5049), + [anon_sym_BSLASHVref] = ACTIONS(5049), + [anon_sym_BSLASHautoref] = ACTIONS(5049), + [anon_sym_BSLASHpageref] = ACTIONS(5049), + [anon_sym_BSLASHcref] = ACTIONS(5049), + [anon_sym_BSLASHCref] = ACTIONS(5049), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), + [anon_sym_BSLASHnamecref] = ACTIONS(5049), + [anon_sym_BSLASHnameCref] = ACTIONS(5049), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), + [anon_sym_BSLASHlabelcref] = ACTIONS(5049), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), + [anon_sym_BSLASHcrefrange] = ACTIONS(5049), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCrefrange] = ACTIONS(5049), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), + [anon_sym_BSLASHnewlabel] = ACTIONS(5049), + [anon_sym_BSLASHnewcommand] = ACTIONS(5049), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), + [anon_sym_BSLASHdef] = ACTIONS(5049), + [anon_sym_BSLASHlet] = ACTIONS(5049), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), + [anon_sym_BSLASHgls] = ACTIONS(5049), + [anon_sym_BSLASHGls] = ACTIONS(5049), + [anon_sym_BSLASHGLS] = ACTIONS(5049), + [anon_sym_BSLASHglspl] = ACTIONS(5049), + [anon_sym_BSLASHGlspl] = ACTIONS(5049), + [anon_sym_BSLASHGLSpl] = ACTIONS(5049), + [anon_sym_BSLASHglsdisp] = ACTIONS(5049), + [anon_sym_BSLASHglslink] = ACTIONS(5049), + [anon_sym_BSLASHglstext] = ACTIONS(5049), + [anon_sym_BSLASHGlstext] = ACTIONS(5049), + [anon_sym_BSLASHGLStext] = ACTIONS(5049), + [anon_sym_BSLASHglsfirst] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), + [anon_sym_BSLASHglsplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSplural] = ACTIONS(5049), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHglsname] = ACTIONS(5049), + [anon_sym_BSLASHGlsname] = ACTIONS(5049), + [anon_sym_BSLASHGLSname] = ACTIONS(5049), + [anon_sym_BSLASHglssymbol] = ACTIONS(5049), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), + [anon_sym_BSLASHglsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), + [anon_sym_BSLASHglsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), + [anon_sym_BSLASHglsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), + [anon_sym_BSLASHglsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), + [anon_sym_BSLASHglsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), + [anon_sym_BSLASHnewacronym] = ACTIONS(5049), + [anon_sym_BSLASHacrshort] = ACTIONS(5049), + [anon_sym_BSLASHAcrshort] = ACTIONS(5049), + [anon_sym_BSLASHACRshort] = ACTIONS(5049), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), + [anon_sym_BSLASHacrlong] = ACTIONS(5049), + [anon_sym_BSLASHAcrlong] = ACTIONS(5049), + [anon_sym_BSLASHACRlong] = ACTIONS(5049), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), + [anon_sym_BSLASHacrfull] = ACTIONS(5049), + [anon_sym_BSLASHAcrfull] = ACTIONS(5049), + [anon_sym_BSLASHACRfull] = ACTIONS(5049), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), + [anon_sym_BSLASHacs] = ACTIONS(5049), + [anon_sym_BSLASHAcs] = ACTIONS(5049), + [anon_sym_BSLASHacsp] = ACTIONS(5049), + [anon_sym_BSLASHAcsp] = ACTIONS(5049), + [anon_sym_BSLASHacl] = ACTIONS(5049), + [anon_sym_BSLASHAcl] = ACTIONS(5049), + [anon_sym_BSLASHaclp] = ACTIONS(5049), + [anon_sym_BSLASHAclp] = ACTIONS(5049), + [anon_sym_BSLASHacf] = ACTIONS(5049), + [anon_sym_BSLASHAcf] = ACTIONS(5049), + [anon_sym_BSLASHacfp] = ACTIONS(5049), + [anon_sym_BSLASHAcfp] = ACTIONS(5049), + [anon_sym_BSLASHac] = ACTIONS(5049), + [anon_sym_BSLASHAc] = ACTIONS(5049), + [anon_sym_BSLASHacp] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), + [anon_sym_BSLASHcolor] = ACTIONS(5049), + [anon_sym_BSLASHcolorbox] = ACTIONS(5049), + [anon_sym_BSLASHtextcolor] = ACTIONS(5049), + [anon_sym_BSLASHpagecolor] = ACTIONS(5049), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [anon_sym_BSLASHtext] = ACTIONS(5049), + [anon_sym_BSLASHintertext] = ACTIONS(5049), + [anon_sym_shortintertext] = ACTIONS(5049), }, - [940] = { - [sym_command_name] = ACTIONS(5021), + [729] = { + [ts_builtin_sym_end] = ACTIONS(5051), + [sym_command_name] = ACTIONS(5053), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_BSLASHpart] = ACTIONS(5021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddpart] = ACTIONS(5021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHchapter] = ACTIONS(5021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddchap] = ACTIONS(5021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsection] = ACTIONS(5021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddsec] = ACTIONS(5021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHparagraph] = ACTIONS(5021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHitem] = ACTIONS(5021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASHbegin] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHiffalse] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_BSLASHpart] = ACTIONS(5053), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddpart] = ACTIONS(5053), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), + [anon_sym_BSLASHchapter] = ACTIONS(5053), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddchap] = ACTIONS(5053), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsection] = ACTIONS(5053), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddsec] = ACTIONS(5053), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubsection] = ACTIONS(5053), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHparagraph] = ACTIONS(5053), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), + [anon_sym_BSLASHitem] = ACTIONS(5053), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5051), + [anon_sym_RBRACE] = ACTIONS(5051), + [sym_word] = ACTIONS(5053), + [sym_placeholder] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5053), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5053), + [anon_sym__] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_COLON] = ACTIONS(5053), + [anon_sym_SQUOTE] = ACTIONS(5053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), + [anon_sym_DOLLAR] = ACTIONS(5053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), + [anon_sym_BSLASHbegin] = ACTIONS(5053), + [anon_sym_BSLASHusepackage] = ACTIONS(5053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), + [anon_sym_BSLASHinclude] = ACTIONS(5053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), + [anon_sym_BSLASHinput] = ACTIONS(5053), + [anon_sym_BSLASHsubfile] = ACTIONS(5053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), + [anon_sym_BSLASHbibliography] = ACTIONS(5053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), + [anon_sym_BSLASHincludesvg] = ACTIONS(5053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), + [anon_sym_BSLASHimport] = ACTIONS(5053), + [anon_sym_BSLASHsubimport] = ACTIONS(5053), + [anon_sym_BSLASHinputfrom] = ACTIONS(5053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), + [anon_sym_BSLASHincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHcaption] = ACTIONS(5053), + [anon_sym_BSLASHcite] = ACTIONS(5053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCite] = ACTIONS(5053), + [anon_sym_BSLASHnocite] = ACTIONS(5053), + [anon_sym_BSLASHcitet] = ACTIONS(5053), + [anon_sym_BSLASHcitep] = ACTIONS(5053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteauthor] = ACTIONS(5053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitetitle] = ACTIONS(5053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteyear] = ACTIONS(5053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitedate] = ACTIONS(5053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteurl] = ACTIONS(5053), + [anon_sym_BSLASHfullcite] = ACTIONS(5053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), + [anon_sym_BSLASHcitealt] = ACTIONS(5053), + [anon_sym_BSLASHcitealp] = ACTIONS(5053), + [anon_sym_BSLASHcitetext] = ACTIONS(5053), + [anon_sym_BSLASHparencite] = ACTIONS(5053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHParencite] = ACTIONS(5053), + [anon_sym_BSLASHfootcite] = ACTIONS(5053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), + [anon_sym_BSLASHtextcite] = ACTIONS(5053), + [anon_sym_BSLASHTextcite] = ACTIONS(5053), + [anon_sym_BSLASHsmartcite] = ACTIONS(5053), + [anon_sym_BSLASHSmartcite] = ACTIONS(5053), + [anon_sym_BSLASHsupercite] = ACTIONS(5053), + [anon_sym_BSLASHautocite] = ACTIONS(5053), + [anon_sym_BSLASHAutocite] = ACTIONS(5053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHvolcite] = ACTIONS(5053), + [anon_sym_BSLASHVolcite] = ACTIONS(5053), + [anon_sym_BSLASHpvolcite] = ACTIONS(5053), + [anon_sym_BSLASHPvolcite] = ACTIONS(5053), + [anon_sym_BSLASHfvolcite] = ACTIONS(5053), + [anon_sym_BSLASHftvolcite] = ACTIONS(5053), + [anon_sym_BSLASHsvolcite] = ACTIONS(5053), + [anon_sym_BSLASHSvolcite] = ACTIONS(5053), + [anon_sym_BSLASHtvolcite] = ACTIONS(5053), + [anon_sym_BSLASHTvolcite] = ACTIONS(5053), + [anon_sym_BSLASHavolcite] = ACTIONS(5053), + [anon_sym_BSLASHAvolcite] = ACTIONS(5053), + [anon_sym_BSLASHnotecite] = ACTIONS(5053), + [anon_sym_BSLASHNotecite] = ACTIONS(5053), + [anon_sym_BSLASHpnotecite] = ACTIONS(5053), + [anon_sym_BSLASHPnotecite] = ACTIONS(5053), + [anon_sym_BSLASHfnotecite] = ACTIONS(5053), + [anon_sym_BSLASHlabel] = ACTIONS(5053), + [anon_sym_BSLASHref] = ACTIONS(5053), + [anon_sym_BSLASHeqref] = ACTIONS(5053), + [anon_sym_BSLASHvref] = ACTIONS(5053), + [anon_sym_BSLASHVref] = ACTIONS(5053), + [anon_sym_BSLASHautoref] = ACTIONS(5053), + [anon_sym_BSLASHpageref] = ACTIONS(5053), + [anon_sym_BSLASHcref] = ACTIONS(5053), + [anon_sym_BSLASHCref] = ACTIONS(5053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnameCref] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHlabelcref] = ACTIONS(5053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCrefrange] = ACTIONS(5053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnewlabel] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), + [anon_sym_BSLASHdef] = ACTIONS(5053), + [anon_sym_BSLASHlet] = ACTIONS(5053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), + [anon_sym_BSLASHgls] = ACTIONS(5053), + [anon_sym_BSLASHGls] = ACTIONS(5053), + [anon_sym_BSLASHGLS] = ACTIONS(5053), + [anon_sym_BSLASHglspl] = ACTIONS(5053), + [anon_sym_BSLASHGlspl] = ACTIONS(5053), + [anon_sym_BSLASHGLSpl] = ACTIONS(5053), + [anon_sym_BSLASHglsdisp] = ACTIONS(5053), + [anon_sym_BSLASHglslink] = ACTIONS(5053), + [anon_sym_BSLASHglstext] = ACTIONS(5053), + [anon_sym_BSLASHGlstext] = ACTIONS(5053), + [anon_sym_BSLASHGLStext] = ACTIONS(5053), + [anon_sym_BSLASHglsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), + [anon_sym_BSLASHglsplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSplural] = ACTIONS(5053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHglsname] = ACTIONS(5053), + [anon_sym_BSLASHGlsname] = ACTIONS(5053), + [anon_sym_BSLASHGLSname] = ACTIONS(5053), + [anon_sym_BSLASHglssymbol] = ACTIONS(5053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), + [anon_sym_BSLASHglsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), + [anon_sym_BSLASHglsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), + [anon_sym_BSLASHglsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), + [anon_sym_BSLASHglsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), + [anon_sym_BSLASHglsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), + [anon_sym_BSLASHnewacronym] = ACTIONS(5053), + [anon_sym_BSLASHacrshort] = ACTIONS(5053), + [anon_sym_BSLASHAcrshort] = ACTIONS(5053), + [anon_sym_BSLASHACRshort] = ACTIONS(5053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), + [anon_sym_BSLASHacrlong] = ACTIONS(5053), + [anon_sym_BSLASHAcrlong] = ACTIONS(5053), + [anon_sym_BSLASHACRlong] = ACTIONS(5053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), + [anon_sym_BSLASHacrfull] = ACTIONS(5053), + [anon_sym_BSLASHAcrfull] = ACTIONS(5053), + [anon_sym_BSLASHACRfull] = ACTIONS(5053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), + [anon_sym_BSLASHacs] = ACTIONS(5053), + [anon_sym_BSLASHAcs] = ACTIONS(5053), + [anon_sym_BSLASHacsp] = ACTIONS(5053), + [anon_sym_BSLASHAcsp] = ACTIONS(5053), + [anon_sym_BSLASHacl] = ACTIONS(5053), + [anon_sym_BSLASHAcl] = ACTIONS(5053), + [anon_sym_BSLASHaclp] = ACTIONS(5053), + [anon_sym_BSLASHAclp] = ACTIONS(5053), + [anon_sym_BSLASHacf] = ACTIONS(5053), + [anon_sym_BSLASHAcf] = ACTIONS(5053), + [anon_sym_BSLASHacfp] = ACTIONS(5053), + [anon_sym_BSLASHAcfp] = ACTIONS(5053), + [anon_sym_BSLASHac] = ACTIONS(5053), + [anon_sym_BSLASHAc] = ACTIONS(5053), + [anon_sym_BSLASHacp] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), + [anon_sym_BSLASHcolor] = ACTIONS(5053), + [anon_sym_BSLASHcolorbox] = ACTIONS(5053), + [anon_sym_BSLASHtextcolor] = ACTIONS(5053), + [anon_sym_BSLASHpagecolor] = ACTIONS(5053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [anon_sym_BSLASHtext] = ACTIONS(5053), + [anon_sym_BSLASHintertext] = ACTIONS(5053), + [anon_sym_shortintertext] = ACTIONS(5053), }, - [941] = { - [sym_command_name] = ACTIONS(4999), + [730] = { + [ts_builtin_sym_end] = ACTIONS(5055), + [sym_command_name] = ACTIONS(5057), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4997), - [anon_sym_BSLASHpart] = ACTIONS(4999), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddpart] = ACTIONS(4999), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHchapter] = ACTIONS(4999), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddchap] = ACTIONS(4999), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsection] = ACTIONS(4999), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddsec] = ACTIONS(4999), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHparagraph] = ACTIONS(4999), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHitem] = ACTIONS(4999), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4997), - [sym_word] = ACTIONS(4999), - [sym_placeholder] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym__] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), - [anon_sym_BSLASHbegin] = ACTIONS(4999), - [anon_sym_BSLASHusepackage] = ACTIONS(4999), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), - [anon_sym_BSLASHinclude] = ACTIONS(4999), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), - [anon_sym_BSLASHinput] = ACTIONS(4999), - [anon_sym_BSLASHsubfile] = ACTIONS(4999), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), - [anon_sym_BSLASHbibliography] = ACTIONS(4999), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), - [anon_sym_BSLASHincludesvg] = ACTIONS(4999), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), - [anon_sym_BSLASHimport] = ACTIONS(4999), - [anon_sym_BSLASHsubimport] = ACTIONS(4999), - [anon_sym_BSLASHinputfrom] = ACTIONS(4999), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), - [anon_sym_BSLASHincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHcaption] = ACTIONS(4999), - [anon_sym_BSLASHcite] = ACTIONS(4999), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCite] = ACTIONS(4999), - [anon_sym_BSLASHnocite] = ACTIONS(4999), - [anon_sym_BSLASHcitet] = ACTIONS(4999), - [anon_sym_BSLASHcitep] = ACTIONS(4999), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteauthor] = ACTIONS(4999), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitetitle] = ACTIONS(4999), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteyear] = ACTIONS(4999), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitedate] = ACTIONS(4999), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteurl] = ACTIONS(4999), - [anon_sym_BSLASHfullcite] = ACTIONS(4999), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), - [anon_sym_BSLASHcitealt] = ACTIONS(4999), - [anon_sym_BSLASHcitealp] = ACTIONS(4999), - [anon_sym_BSLASHcitetext] = ACTIONS(4999), - [anon_sym_BSLASHparencite] = ACTIONS(4999), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHParencite] = ACTIONS(4999), - [anon_sym_BSLASHfootcite] = ACTIONS(4999), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), - [anon_sym_BSLASHtextcite] = ACTIONS(4999), - [anon_sym_BSLASHTextcite] = ACTIONS(4999), - [anon_sym_BSLASHsmartcite] = ACTIONS(4999), - [anon_sym_BSLASHSmartcite] = ACTIONS(4999), - [anon_sym_BSLASHsupercite] = ACTIONS(4999), - [anon_sym_BSLASHautocite] = ACTIONS(4999), - [anon_sym_BSLASHAutocite] = ACTIONS(4999), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHvolcite] = ACTIONS(4999), - [anon_sym_BSLASHVolcite] = ACTIONS(4999), - [anon_sym_BSLASHpvolcite] = ACTIONS(4999), - [anon_sym_BSLASHPvolcite] = ACTIONS(4999), - [anon_sym_BSLASHfvolcite] = ACTIONS(4999), - [anon_sym_BSLASHftvolcite] = ACTIONS(4999), - [anon_sym_BSLASHsvolcite] = ACTIONS(4999), - [anon_sym_BSLASHSvolcite] = ACTIONS(4999), - [anon_sym_BSLASHtvolcite] = ACTIONS(4999), - [anon_sym_BSLASHTvolcite] = ACTIONS(4999), - [anon_sym_BSLASHavolcite] = ACTIONS(4999), - [anon_sym_BSLASHAvolcite] = ACTIONS(4999), - [anon_sym_BSLASHnotecite] = ACTIONS(4999), - [anon_sym_BSLASHNotecite] = ACTIONS(4999), - [anon_sym_BSLASHpnotecite] = ACTIONS(4999), - [anon_sym_BSLASHPnotecite] = ACTIONS(4999), - [anon_sym_BSLASHfnotecite] = ACTIONS(4999), - [anon_sym_BSLASHlabel] = ACTIONS(4999), - [anon_sym_BSLASHref] = ACTIONS(4999), - [anon_sym_BSLASHeqref] = ACTIONS(4999), - [anon_sym_BSLASHvref] = ACTIONS(4999), - [anon_sym_BSLASHVref] = ACTIONS(4999), - [anon_sym_BSLASHautoref] = ACTIONS(4999), - [anon_sym_BSLASHpageref] = ACTIONS(4999), - [anon_sym_BSLASHcref] = ACTIONS(4999), - [anon_sym_BSLASHCref] = ACTIONS(4999), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnameCref] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHlabelcref] = ACTIONS(4999), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCrefrange] = ACTIONS(4999), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnewlabel] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdef] = ACTIONS(4999), - [anon_sym_BSLASHlet] = ACTIONS(4999), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), - [anon_sym_BSLASHgls] = ACTIONS(4999), - [anon_sym_BSLASHGls] = ACTIONS(4999), - [anon_sym_BSLASHGLS] = ACTIONS(4999), - [anon_sym_BSLASHglspl] = ACTIONS(4999), - [anon_sym_BSLASHGlspl] = ACTIONS(4999), - [anon_sym_BSLASHGLSpl] = ACTIONS(4999), - [anon_sym_BSLASHglsdisp] = ACTIONS(4999), - [anon_sym_BSLASHglslink] = ACTIONS(4999), - [anon_sym_BSLASHglstext] = ACTIONS(4999), - [anon_sym_BSLASHGlstext] = ACTIONS(4999), - [anon_sym_BSLASHGLStext] = ACTIONS(4999), - [anon_sym_BSLASHglsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), - [anon_sym_BSLASHglsplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSplural] = ACTIONS(4999), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHglsname] = ACTIONS(4999), - [anon_sym_BSLASHGlsname] = ACTIONS(4999), - [anon_sym_BSLASHGLSname] = ACTIONS(4999), - [anon_sym_BSLASHglssymbol] = ACTIONS(4999), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), - [anon_sym_BSLASHglsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), - [anon_sym_BSLASHglsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), - [anon_sym_BSLASHglsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), - [anon_sym_BSLASHglsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), - [anon_sym_BSLASHglsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), - [anon_sym_BSLASHnewacronym] = ACTIONS(4999), - [anon_sym_BSLASHacrshort] = ACTIONS(4999), - [anon_sym_BSLASHAcrshort] = ACTIONS(4999), - [anon_sym_BSLASHACRshort] = ACTIONS(4999), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), - [anon_sym_BSLASHacrlong] = ACTIONS(4999), - [anon_sym_BSLASHAcrlong] = ACTIONS(4999), - [anon_sym_BSLASHACRlong] = ACTIONS(4999), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), - [anon_sym_BSLASHacrfull] = ACTIONS(4999), - [anon_sym_BSLASHAcrfull] = ACTIONS(4999), - [anon_sym_BSLASHACRfull] = ACTIONS(4999), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), - [anon_sym_BSLASHacs] = ACTIONS(4999), - [anon_sym_BSLASHAcs] = ACTIONS(4999), - [anon_sym_BSLASHacsp] = ACTIONS(4999), - [anon_sym_BSLASHAcsp] = ACTIONS(4999), - [anon_sym_BSLASHacl] = ACTIONS(4999), - [anon_sym_BSLASHAcl] = ACTIONS(4999), - [anon_sym_BSLASHaclp] = ACTIONS(4999), - [anon_sym_BSLASHAclp] = ACTIONS(4999), - [anon_sym_BSLASHacf] = ACTIONS(4999), - [anon_sym_BSLASHAcf] = ACTIONS(4999), - [anon_sym_BSLASHacfp] = ACTIONS(4999), - [anon_sym_BSLASHAcfp] = ACTIONS(4999), - [anon_sym_BSLASHac] = ACTIONS(4999), - [anon_sym_BSLASHAc] = ACTIONS(4999), - [anon_sym_BSLASHacp] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), - [anon_sym_BSLASHcolor] = ACTIONS(4999), - [anon_sym_BSLASHcolorbox] = ACTIONS(4999), - [anon_sym_BSLASHtextcolor] = ACTIONS(4999), - [anon_sym_BSLASHpagecolor] = ACTIONS(4999), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), + [anon_sym_BSLASHiffalse] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5055), + [anon_sym_RPAREN] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5055), + [anon_sym_RBRACK] = ACTIONS(5055), + [anon_sym_COMMA] = ACTIONS(5055), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_BSLASHpart] = ACTIONS(5057), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), + [anon_sym_BSLASHaddpart] = ACTIONS(5057), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), + [anon_sym_BSLASHchapter] = ACTIONS(5057), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), + [anon_sym_BSLASHaddchap] = ACTIONS(5057), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsection] = ACTIONS(5057), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), + [anon_sym_BSLASHaddsec] = ACTIONS(5057), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsubsection] = ACTIONS(5057), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), + [anon_sym_BSLASHparagraph] = ACTIONS(5057), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), + [anon_sym_BSLASHitem] = ACTIONS(5057), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5055), + [anon_sym_RBRACE] = ACTIONS(5055), + [sym_word] = ACTIONS(5057), + [sym_placeholder] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_STAR] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5057), + [anon_sym_CARET] = ACTIONS(5057), + [anon_sym__] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5057), + [anon_sym_BANG] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5057), + [anon_sym_COLON] = ACTIONS(5057), + [anon_sym_SQUOTE] = ACTIONS(5057), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), + [anon_sym_DOLLAR] = ACTIONS(5057), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), + [anon_sym_BSLASHbegin] = ACTIONS(5057), + [anon_sym_BSLASHusepackage] = ACTIONS(5057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), + [anon_sym_BSLASHinclude] = ACTIONS(5057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), + [anon_sym_BSLASHinput] = ACTIONS(5057), + [anon_sym_BSLASHsubfile] = ACTIONS(5057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), + [anon_sym_BSLASHbibliography] = ACTIONS(5057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), + [anon_sym_BSLASHincludesvg] = ACTIONS(5057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), + [anon_sym_BSLASHimport] = ACTIONS(5057), + [anon_sym_BSLASHsubimport] = ACTIONS(5057), + [anon_sym_BSLASHinputfrom] = ACTIONS(5057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), + [anon_sym_BSLASHincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHcaption] = ACTIONS(5057), + [anon_sym_BSLASHcite] = ACTIONS(5057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCite] = ACTIONS(5057), + [anon_sym_BSLASHnocite] = ACTIONS(5057), + [anon_sym_BSLASHcitet] = ACTIONS(5057), + [anon_sym_BSLASHcitep] = ACTIONS(5057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteauthor] = ACTIONS(5057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitetitle] = ACTIONS(5057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteyear] = ACTIONS(5057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitedate] = ACTIONS(5057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteurl] = ACTIONS(5057), + [anon_sym_BSLASHfullcite] = ACTIONS(5057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), + [anon_sym_BSLASHcitealt] = ACTIONS(5057), + [anon_sym_BSLASHcitealp] = ACTIONS(5057), + [anon_sym_BSLASHcitetext] = ACTIONS(5057), + [anon_sym_BSLASHparencite] = ACTIONS(5057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHParencite] = ACTIONS(5057), + [anon_sym_BSLASHfootcite] = ACTIONS(5057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), + [anon_sym_BSLASHtextcite] = ACTIONS(5057), + [anon_sym_BSLASHTextcite] = ACTIONS(5057), + [anon_sym_BSLASHsmartcite] = ACTIONS(5057), + [anon_sym_BSLASHSmartcite] = ACTIONS(5057), + [anon_sym_BSLASHsupercite] = ACTIONS(5057), + [anon_sym_BSLASHautocite] = ACTIONS(5057), + [anon_sym_BSLASHAutocite] = ACTIONS(5057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHvolcite] = ACTIONS(5057), + [anon_sym_BSLASHVolcite] = ACTIONS(5057), + [anon_sym_BSLASHpvolcite] = ACTIONS(5057), + [anon_sym_BSLASHPvolcite] = ACTIONS(5057), + [anon_sym_BSLASHfvolcite] = ACTIONS(5057), + [anon_sym_BSLASHftvolcite] = ACTIONS(5057), + [anon_sym_BSLASHsvolcite] = ACTIONS(5057), + [anon_sym_BSLASHSvolcite] = ACTIONS(5057), + [anon_sym_BSLASHtvolcite] = ACTIONS(5057), + [anon_sym_BSLASHTvolcite] = ACTIONS(5057), + [anon_sym_BSLASHavolcite] = ACTIONS(5057), + [anon_sym_BSLASHAvolcite] = ACTIONS(5057), + [anon_sym_BSLASHnotecite] = ACTIONS(5057), + [anon_sym_BSLASHNotecite] = ACTIONS(5057), + [anon_sym_BSLASHpnotecite] = ACTIONS(5057), + [anon_sym_BSLASHPnotecite] = ACTIONS(5057), + [anon_sym_BSLASHfnotecite] = ACTIONS(5057), + [anon_sym_BSLASHlabel] = ACTIONS(5057), + [anon_sym_BSLASHref] = ACTIONS(5057), + [anon_sym_BSLASHeqref] = ACTIONS(5057), + [anon_sym_BSLASHvref] = ACTIONS(5057), + [anon_sym_BSLASHVref] = ACTIONS(5057), + [anon_sym_BSLASHautoref] = ACTIONS(5057), + [anon_sym_BSLASHpageref] = ACTIONS(5057), + [anon_sym_BSLASHcref] = ACTIONS(5057), + [anon_sym_BSLASHCref] = ACTIONS(5057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnameCref] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHlabelcref] = ACTIONS(5057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCrefrange] = ACTIONS(5057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnewlabel] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), + [anon_sym_BSLASHdef] = ACTIONS(5057), + [anon_sym_BSLASHlet] = ACTIONS(5057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), + [anon_sym_BSLASHgls] = ACTIONS(5057), + [anon_sym_BSLASHGls] = ACTIONS(5057), + [anon_sym_BSLASHGLS] = ACTIONS(5057), + [anon_sym_BSLASHglspl] = ACTIONS(5057), + [anon_sym_BSLASHGlspl] = ACTIONS(5057), + [anon_sym_BSLASHGLSpl] = ACTIONS(5057), + [anon_sym_BSLASHglsdisp] = ACTIONS(5057), + [anon_sym_BSLASHglslink] = ACTIONS(5057), + [anon_sym_BSLASHglstext] = ACTIONS(5057), + [anon_sym_BSLASHGlstext] = ACTIONS(5057), + [anon_sym_BSLASHGLStext] = ACTIONS(5057), + [anon_sym_BSLASHglsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), + [anon_sym_BSLASHglsplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSplural] = ACTIONS(5057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHglsname] = ACTIONS(5057), + [anon_sym_BSLASHGlsname] = ACTIONS(5057), + [anon_sym_BSLASHGLSname] = ACTIONS(5057), + [anon_sym_BSLASHglssymbol] = ACTIONS(5057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), + [anon_sym_BSLASHglsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), + [anon_sym_BSLASHglsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), + [anon_sym_BSLASHglsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), + [anon_sym_BSLASHglsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), + [anon_sym_BSLASHglsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), + [anon_sym_BSLASHnewacronym] = ACTIONS(5057), + [anon_sym_BSLASHacrshort] = ACTIONS(5057), + [anon_sym_BSLASHAcrshort] = ACTIONS(5057), + [anon_sym_BSLASHACRshort] = ACTIONS(5057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), + [anon_sym_BSLASHacrlong] = ACTIONS(5057), + [anon_sym_BSLASHAcrlong] = ACTIONS(5057), + [anon_sym_BSLASHACRlong] = ACTIONS(5057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), + [anon_sym_BSLASHacrfull] = ACTIONS(5057), + [anon_sym_BSLASHAcrfull] = ACTIONS(5057), + [anon_sym_BSLASHACRfull] = ACTIONS(5057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), + [anon_sym_BSLASHacs] = ACTIONS(5057), + [anon_sym_BSLASHAcs] = ACTIONS(5057), + [anon_sym_BSLASHacsp] = ACTIONS(5057), + [anon_sym_BSLASHAcsp] = ACTIONS(5057), + [anon_sym_BSLASHacl] = ACTIONS(5057), + [anon_sym_BSLASHAcl] = ACTIONS(5057), + [anon_sym_BSLASHaclp] = ACTIONS(5057), + [anon_sym_BSLASHAclp] = ACTIONS(5057), + [anon_sym_BSLASHacf] = ACTIONS(5057), + [anon_sym_BSLASHAcf] = ACTIONS(5057), + [anon_sym_BSLASHacfp] = ACTIONS(5057), + [anon_sym_BSLASHAcfp] = ACTIONS(5057), + [anon_sym_BSLASHac] = ACTIONS(5057), + [anon_sym_BSLASHAc] = ACTIONS(5057), + [anon_sym_BSLASHacp] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), + [anon_sym_BSLASHcolor] = ACTIONS(5057), + [anon_sym_BSLASHcolorbox] = ACTIONS(5057), + [anon_sym_BSLASHtextcolor] = ACTIONS(5057), + [anon_sym_BSLASHpagecolor] = ACTIONS(5057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [anon_sym_BSLASHtext] = ACTIONS(5057), + [anon_sym_BSLASHintertext] = ACTIONS(5057), + [anon_sym_shortintertext] = ACTIONS(5057), }, - [942] = { - [sym_command_name] = ACTIONS(4991), + [731] = { + [ts_builtin_sym_end] = ACTIONS(5059), + [sym_command_name] = ACTIONS(5061), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_BSLASHpart] = ACTIONS(4991), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddpart] = ACTIONS(4991), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHchapter] = ACTIONS(4991), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddchap] = ACTIONS(4991), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsection] = ACTIONS(4991), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddsec] = ACTIONS(4991), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHparagraph] = ACTIONS(4991), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHitem] = ACTIONS(4991), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4989), - [sym_word] = ACTIONS(4991), - [sym_placeholder] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym__] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), - [anon_sym_BSLASHbegin] = ACTIONS(4991), - [anon_sym_BSLASHusepackage] = ACTIONS(4991), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), - [anon_sym_BSLASHinclude] = ACTIONS(4991), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), - [anon_sym_BSLASHinput] = ACTIONS(4991), - [anon_sym_BSLASHsubfile] = ACTIONS(4991), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), - [anon_sym_BSLASHbibliography] = ACTIONS(4991), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), - [anon_sym_BSLASHincludesvg] = ACTIONS(4991), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), - [anon_sym_BSLASHimport] = ACTIONS(4991), - [anon_sym_BSLASHsubimport] = ACTIONS(4991), - [anon_sym_BSLASHinputfrom] = ACTIONS(4991), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), - [anon_sym_BSLASHincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHcaption] = ACTIONS(4991), - [anon_sym_BSLASHcite] = ACTIONS(4991), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCite] = ACTIONS(4991), - [anon_sym_BSLASHnocite] = ACTIONS(4991), - [anon_sym_BSLASHcitet] = ACTIONS(4991), - [anon_sym_BSLASHcitep] = ACTIONS(4991), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteauthor] = ACTIONS(4991), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitetitle] = ACTIONS(4991), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteyear] = ACTIONS(4991), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitedate] = ACTIONS(4991), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteurl] = ACTIONS(4991), - [anon_sym_BSLASHfullcite] = ACTIONS(4991), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), - [anon_sym_BSLASHcitealt] = ACTIONS(4991), - [anon_sym_BSLASHcitealp] = ACTIONS(4991), - [anon_sym_BSLASHcitetext] = ACTIONS(4991), - [anon_sym_BSLASHparencite] = ACTIONS(4991), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHParencite] = ACTIONS(4991), - [anon_sym_BSLASHfootcite] = ACTIONS(4991), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), - [anon_sym_BSLASHtextcite] = ACTIONS(4991), - [anon_sym_BSLASHTextcite] = ACTIONS(4991), - [anon_sym_BSLASHsmartcite] = ACTIONS(4991), - [anon_sym_BSLASHSmartcite] = ACTIONS(4991), - [anon_sym_BSLASHsupercite] = ACTIONS(4991), - [anon_sym_BSLASHautocite] = ACTIONS(4991), - [anon_sym_BSLASHAutocite] = ACTIONS(4991), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHvolcite] = ACTIONS(4991), - [anon_sym_BSLASHVolcite] = ACTIONS(4991), - [anon_sym_BSLASHpvolcite] = ACTIONS(4991), - [anon_sym_BSLASHPvolcite] = ACTIONS(4991), - [anon_sym_BSLASHfvolcite] = ACTIONS(4991), - [anon_sym_BSLASHftvolcite] = ACTIONS(4991), - [anon_sym_BSLASHsvolcite] = ACTIONS(4991), - [anon_sym_BSLASHSvolcite] = ACTIONS(4991), - [anon_sym_BSLASHtvolcite] = ACTIONS(4991), - [anon_sym_BSLASHTvolcite] = ACTIONS(4991), - [anon_sym_BSLASHavolcite] = ACTIONS(4991), - [anon_sym_BSLASHAvolcite] = ACTIONS(4991), - [anon_sym_BSLASHnotecite] = ACTIONS(4991), - [anon_sym_BSLASHNotecite] = ACTIONS(4991), - [anon_sym_BSLASHpnotecite] = ACTIONS(4991), - [anon_sym_BSLASHPnotecite] = ACTIONS(4991), - [anon_sym_BSLASHfnotecite] = ACTIONS(4991), - [anon_sym_BSLASHlabel] = ACTIONS(4991), - [anon_sym_BSLASHref] = ACTIONS(4991), - [anon_sym_BSLASHeqref] = ACTIONS(4991), - [anon_sym_BSLASHvref] = ACTIONS(4991), - [anon_sym_BSLASHVref] = ACTIONS(4991), - [anon_sym_BSLASHautoref] = ACTIONS(4991), - [anon_sym_BSLASHpageref] = ACTIONS(4991), - [anon_sym_BSLASHcref] = ACTIONS(4991), - [anon_sym_BSLASHCref] = ACTIONS(4991), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnameCref] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHlabelcref] = ACTIONS(4991), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCrefrange] = ACTIONS(4991), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnewlabel] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdef] = ACTIONS(4991), - [anon_sym_BSLASHlet] = ACTIONS(4991), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), - [anon_sym_BSLASHgls] = ACTIONS(4991), - [anon_sym_BSLASHGls] = ACTIONS(4991), - [anon_sym_BSLASHGLS] = ACTIONS(4991), - [anon_sym_BSLASHglspl] = ACTIONS(4991), - [anon_sym_BSLASHGlspl] = ACTIONS(4991), - [anon_sym_BSLASHGLSpl] = ACTIONS(4991), - [anon_sym_BSLASHglsdisp] = ACTIONS(4991), - [anon_sym_BSLASHglslink] = ACTIONS(4991), - [anon_sym_BSLASHglstext] = ACTIONS(4991), - [anon_sym_BSLASHGlstext] = ACTIONS(4991), - [anon_sym_BSLASHGLStext] = ACTIONS(4991), - [anon_sym_BSLASHglsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), - [anon_sym_BSLASHglsplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSplural] = ACTIONS(4991), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHglsname] = ACTIONS(4991), - [anon_sym_BSLASHGlsname] = ACTIONS(4991), - [anon_sym_BSLASHGLSname] = ACTIONS(4991), - [anon_sym_BSLASHglssymbol] = ACTIONS(4991), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), - [anon_sym_BSLASHglsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), - [anon_sym_BSLASHglsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), - [anon_sym_BSLASHglsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), - [anon_sym_BSLASHglsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), - [anon_sym_BSLASHglsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), - [anon_sym_BSLASHnewacronym] = ACTIONS(4991), - [anon_sym_BSLASHacrshort] = ACTIONS(4991), - [anon_sym_BSLASHAcrshort] = ACTIONS(4991), - [anon_sym_BSLASHACRshort] = ACTIONS(4991), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), - [anon_sym_BSLASHacrlong] = ACTIONS(4991), - [anon_sym_BSLASHAcrlong] = ACTIONS(4991), - [anon_sym_BSLASHACRlong] = ACTIONS(4991), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), - [anon_sym_BSLASHacrfull] = ACTIONS(4991), - [anon_sym_BSLASHAcrfull] = ACTIONS(4991), - [anon_sym_BSLASHACRfull] = ACTIONS(4991), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), - [anon_sym_BSLASHacs] = ACTIONS(4991), - [anon_sym_BSLASHAcs] = ACTIONS(4991), - [anon_sym_BSLASHacsp] = ACTIONS(4991), - [anon_sym_BSLASHAcsp] = ACTIONS(4991), - [anon_sym_BSLASHacl] = ACTIONS(4991), - [anon_sym_BSLASHAcl] = ACTIONS(4991), - [anon_sym_BSLASHaclp] = ACTIONS(4991), - [anon_sym_BSLASHAclp] = ACTIONS(4991), - [anon_sym_BSLASHacf] = ACTIONS(4991), - [anon_sym_BSLASHAcf] = ACTIONS(4991), - [anon_sym_BSLASHacfp] = ACTIONS(4991), - [anon_sym_BSLASHAcfp] = ACTIONS(4991), - [anon_sym_BSLASHac] = ACTIONS(4991), - [anon_sym_BSLASHAc] = ACTIONS(4991), - [anon_sym_BSLASHacp] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), - [anon_sym_BSLASHcolor] = ACTIONS(4991), - [anon_sym_BSLASHcolorbox] = ACTIONS(4991), - [anon_sym_BSLASHtextcolor] = ACTIONS(4991), - [anon_sym_BSLASHpagecolor] = ACTIONS(4991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHiffalse] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5059), + [anon_sym_RPAREN] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5059), + [anon_sym_RBRACK] = ACTIONS(5059), + [anon_sym_COMMA] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_BSLASHpart] = ACTIONS(5061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddpart] = ACTIONS(5061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), + [anon_sym_BSLASHchapter] = ACTIONS(5061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddchap] = ACTIONS(5061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsection] = ACTIONS(5061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddsec] = ACTIONS(5061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubsection] = ACTIONS(5061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHparagraph] = ACTIONS(5061), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), + [anon_sym_BSLASHitem] = ACTIONS(5061), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5059), + [anon_sym_RBRACE] = ACTIONS(5059), + [sym_word] = ACTIONS(5061), + [sym_placeholder] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_STAR] = ACTIONS(5061), + [anon_sym_SLASH] = ACTIONS(5061), + [anon_sym_CARET] = ACTIONS(5061), + [anon_sym__] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5061), + [anon_sym_GT] = ACTIONS(5061), + [anon_sym_BANG] = ACTIONS(5061), + [anon_sym_PIPE] = ACTIONS(5061), + [anon_sym_COLON] = ACTIONS(5061), + [anon_sym_SQUOTE] = ACTIONS(5061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), + [anon_sym_DOLLAR] = ACTIONS(5061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), + [anon_sym_BSLASHbegin] = ACTIONS(5061), + [anon_sym_BSLASHusepackage] = ACTIONS(5061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), + [anon_sym_BSLASHinclude] = ACTIONS(5061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), + [anon_sym_BSLASHinput] = ACTIONS(5061), + [anon_sym_BSLASHsubfile] = ACTIONS(5061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), + [anon_sym_BSLASHbibliography] = ACTIONS(5061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), + [anon_sym_BSLASHincludesvg] = ACTIONS(5061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), + [anon_sym_BSLASHimport] = ACTIONS(5061), + [anon_sym_BSLASHsubimport] = ACTIONS(5061), + [anon_sym_BSLASHinputfrom] = ACTIONS(5061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), + [anon_sym_BSLASHincludefrom] = ACTIONS(5061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), + [anon_sym_BSLASHcaption] = ACTIONS(5061), + [anon_sym_BSLASHcite] = ACTIONS(5061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCite] = ACTIONS(5061), + [anon_sym_BSLASHnocite] = ACTIONS(5061), + [anon_sym_BSLASHcitet] = ACTIONS(5061), + [anon_sym_BSLASHcitep] = ACTIONS(5061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteauthor] = ACTIONS(5061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitetitle] = ACTIONS(5061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteyear] = ACTIONS(5061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitedate] = ACTIONS(5061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteurl] = ACTIONS(5061), + [anon_sym_BSLASHfullcite] = ACTIONS(5061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), + [anon_sym_BSLASHcitealt] = ACTIONS(5061), + [anon_sym_BSLASHcitealp] = ACTIONS(5061), + [anon_sym_BSLASHcitetext] = ACTIONS(5061), + [anon_sym_BSLASHparencite] = ACTIONS(5061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHParencite] = ACTIONS(5061), + [anon_sym_BSLASHfootcite] = ACTIONS(5061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), + [anon_sym_BSLASHtextcite] = ACTIONS(5061), + [anon_sym_BSLASHTextcite] = ACTIONS(5061), + [anon_sym_BSLASHsmartcite] = ACTIONS(5061), + [anon_sym_BSLASHSmartcite] = ACTIONS(5061), + [anon_sym_BSLASHsupercite] = ACTIONS(5061), + [anon_sym_BSLASHautocite] = ACTIONS(5061), + [anon_sym_BSLASHAutocite] = ACTIONS(5061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHvolcite] = ACTIONS(5061), + [anon_sym_BSLASHVolcite] = ACTIONS(5061), + [anon_sym_BSLASHpvolcite] = ACTIONS(5061), + [anon_sym_BSLASHPvolcite] = ACTIONS(5061), + [anon_sym_BSLASHfvolcite] = ACTIONS(5061), + [anon_sym_BSLASHftvolcite] = ACTIONS(5061), + [anon_sym_BSLASHsvolcite] = ACTIONS(5061), + [anon_sym_BSLASHSvolcite] = ACTIONS(5061), + [anon_sym_BSLASHtvolcite] = ACTIONS(5061), + [anon_sym_BSLASHTvolcite] = ACTIONS(5061), + [anon_sym_BSLASHavolcite] = ACTIONS(5061), + [anon_sym_BSLASHAvolcite] = ACTIONS(5061), + [anon_sym_BSLASHnotecite] = ACTIONS(5061), + [anon_sym_BSLASHNotecite] = ACTIONS(5061), + [anon_sym_BSLASHpnotecite] = ACTIONS(5061), + [anon_sym_BSLASHPnotecite] = ACTIONS(5061), + [anon_sym_BSLASHfnotecite] = ACTIONS(5061), + [anon_sym_BSLASHlabel] = ACTIONS(5061), + [anon_sym_BSLASHref] = ACTIONS(5061), + [anon_sym_BSLASHeqref] = ACTIONS(5061), + [anon_sym_BSLASHvref] = ACTIONS(5061), + [anon_sym_BSLASHVref] = ACTIONS(5061), + [anon_sym_BSLASHautoref] = ACTIONS(5061), + [anon_sym_BSLASHpageref] = ACTIONS(5061), + [anon_sym_BSLASHcref] = ACTIONS(5061), + [anon_sym_BSLASHCref] = ACTIONS(5061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), + [anon_sym_BSLASHnamecref] = ACTIONS(5061), + [anon_sym_BSLASHnameCref] = ACTIONS(5061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), + [anon_sym_BSLASHlabelcref] = ACTIONS(5061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), + [anon_sym_BSLASHcrefrange] = ACTIONS(5061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCrefrange] = ACTIONS(5061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), + [anon_sym_BSLASHnewlabel] = ACTIONS(5061), + [anon_sym_BSLASHnewcommand] = ACTIONS(5061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), + [anon_sym_BSLASHdef] = ACTIONS(5061), + [anon_sym_BSLASHlet] = ACTIONS(5061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), + [anon_sym_BSLASHgls] = ACTIONS(5061), + [anon_sym_BSLASHGls] = ACTIONS(5061), + [anon_sym_BSLASHGLS] = ACTIONS(5061), + [anon_sym_BSLASHglspl] = ACTIONS(5061), + [anon_sym_BSLASHGlspl] = ACTIONS(5061), + [anon_sym_BSLASHGLSpl] = ACTIONS(5061), + [anon_sym_BSLASHglsdisp] = ACTIONS(5061), + [anon_sym_BSLASHglslink] = ACTIONS(5061), + [anon_sym_BSLASHglstext] = ACTIONS(5061), + [anon_sym_BSLASHGlstext] = ACTIONS(5061), + [anon_sym_BSLASHGLStext] = ACTIONS(5061), + [anon_sym_BSLASHglsfirst] = ACTIONS(5061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), + [anon_sym_BSLASHglsplural] = ACTIONS(5061), + [anon_sym_BSLASHGlsplural] = ACTIONS(5061), + [anon_sym_BSLASHGLSplural] = ACTIONS(5061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHglsname] = ACTIONS(5061), + [anon_sym_BSLASHGlsname] = ACTIONS(5061), + [anon_sym_BSLASHGLSname] = ACTIONS(5061), + [anon_sym_BSLASHglssymbol] = ACTIONS(5061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), + [anon_sym_BSLASHglsdesc] = ACTIONS(5061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), + [anon_sym_BSLASHglsuseri] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), + [anon_sym_BSLASHglsuserii] = ACTIONS(5061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), + [anon_sym_BSLASHglsuserv] = ACTIONS(5061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), + [anon_sym_BSLASHglsuservi] = ACTIONS(5061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), + [anon_sym_BSLASHnewacronym] = ACTIONS(5061), + [anon_sym_BSLASHacrshort] = ACTIONS(5061), + [anon_sym_BSLASHAcrshort] = ACTIONS(5061), + [anon_sym_BSLASHACRshort] = ACTIONS(5061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), + [anon_sym_BSLASHacrlong] = ACTIONS(5061), + [anon_sym_BSLASHAcrlong] = ACTIONS(5061), + [anon_sym_BSLASHACRlong] = ACTIONS(5061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), + [anon_sym_BSLASHacrfull] = ACTIONS(5061), + [anon_sym_BSLASHAcrfull] = ACTIONS(5061), + [anon_sym_BSLASHACRfull] = ACTIONS(5061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), + [anon_sym_BSLASHacs] = ACTIONS(5061), + [anon_sym_BSLASHAcs] = ACTIONS(5061), + [anon_sym_BSLASHacsp] = ACTIONS(5061), + [anon_sym_BSLASHAcsp] = ACTIONS(5061), + [anon_sym_BSLASHacl] = ACTIONS(5061), + [anon_sym_BSLASHAcl] = ACTIONS(5061), + [anon_sym_BSLASHaclp] = ACTIONS(5061), + [anon_sym_BSLASHAclp] = ACTIONS(5061), + [anon_sym_BSLASHacf] = ACTIONS(5061), + [anon_sym_BSLASHAcf] = ACTIONS(5061), + [anon_sym_BSLASHacfp] = ACTIONS(5061), + [anon_sym_BSLASHAcfp] = ACTIONS(5061), + [anon_sym_BSLASHac] = ACTIONS(5061), + [anon_sym_BSLASHAc] = ACTIONS(5061), + [anon_sym_BSLASHacp] = ACTIONS(5061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), + [anon_sym_BSLASHcolor] = ACTIONS(5061), + [anon_sym_BSLASHcolorbox] = ACTIONS(5061), + [anon_sym_BSLASHtextcolor] = ACTIONS(5061), + [anon_sym_BSLASHpagecolor] = ACTIONS(5061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [anon_sym_BSLASHtext] = ACTIONS(5061), + [anon_sym_BSLASHintertext] = ACTIONS(5061), + [anon_sym_shortintertext] = ACTIONS(5061), + }, + [732] = { + [ts_builtin_sym_end] = ACTIONS(5063), + [sym_command_name] = ACTIONS(5065), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_RBRACK] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_BSLASHpart] = ACTIONS(5065), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddpart] = ACTIONS(5065), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), + [anon_sym_BSLASHchapter] = ACTIONS(5065), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddchap] = ACTIONS(5065), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsection] = ACTIONS(5065), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddsec] = ACTIONS(5065), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubsection] = ACTIONS(5065), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHparagraph] = ACTIONS(5065), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), + [anon_sym_BSLASHitem] = ACTIONS(5065), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5063), + [anon_sym_RBRACE] = ACTIONS(5063), + [sym_word] = ACTIONS(5065), + [sym_placeholder] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_CARET] = ACTIONS(5065), + [anon_sym__] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_COLON] = ACTIONS(5065), + [anon_sym_SQUOTE] = ACTIONS(5065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), + [anon_sym_DOLLAR] = ACTIONS(5065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), + [anon_sym_BSLASHbegin] = ACTIONS(5065), + [anon_sym_BSLASHusepackage] = ACTIONS(5065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), + [anon_sym_BSLASHinclude] = ACTIONS(5065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), + [anon_sym_BSLASHinput] = ACTIONS(5065), + [anon_sym_BSLASHsubfile] = ACTIONS(5065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), + [anon_sym_BSLASHbibliography] = ACTIONS(5065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), + [anon_sym_BSLASHincludesvg] = ACTIONS(5065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), + [anon_sym_BSLASHimport] = ACTIONS(5065), + [anon_sym_BSLASHsubimport] = ACTIONS(5065), + [anon_sym_BSLASHinputfrom] = ACTIONS(5065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), + [anon_sym_BSLASHincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHcaption] = ACTIONS(5065), + [anon_sym_BSLASHcite] = ACTIONS(5065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCite] = ACTIONS(5065), + [anon_sym_BSLASHnocite] = ACTIONS(5065), + [anon_sym_BSLASHcitet] = ACTIONS(5065), + [anon_sym_BSLASHcitep] = ACTIONS(5065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteauthor] = ACTIONS(5065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitetitle] = ACTIONS(5065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteyear] = ACTIONS(5065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitedate] = ACTIONS(5065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteurl] = ACTIONS(5065), + [anon_sym_BSLASHfullcite] = ACTIONS(5065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), + [anon_sym_BSLASHcitealt] = ACTIONS(5065), + [anon_sym_BSLASHcitealp] = ACTIONS(5065), + [anon_sym_BSLASHcitetext] = ACTIONS(5065), + [anon_sym_BSLASHparencite] = ACTIONS(5065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHParencite] = ACTIONS(5065), + [anon_sym_BSLASHfootcite] = ACTIONS(5065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), + [anon_sym_BSLASHtextcite] = ACTIONS(5065), + [anon_sym_BSLASHTextcite] = ACTIONS(5065), + [anon_sym_BSLASHsmartcite] = ACTIONS(5065), + [anon_sym_BSLASHSmartcite] = ACTIONS(5065), + [anon_sym_BSLASHsupercite] = ACTIONS(5065), + [anon_sym_BSLASHautocite] = ACTIONS(5065), + [anon_sym_BSLASHAutocite] = ACTIONS(5065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHvolcite] = ACTIONS(5065), + [anon_sym_BSLASHVolcite] = ACTIONS(5065), + [anon_sym_BSLASHpvolcite] = ACTIONS(5065), + [anon_sym_BSLASHPvolcite] = ACTIONS(5065), + [anon_sym_BSLASHfvolcite] = ACTIONS(5065), + [anon_sym_BSLASHftvolcite] = ACTIONS(5065), + [anon_sym_BSLASHsvolcite] = ACTIONS(5065), + [anon_sym_BSLASHSvolcite] = ACTIONS(5065), + [anon_sym_BSLASHtvolcite] = ACTIONS(5065), + [anon_sym_BSLASHTvolcite] = ACTIONS(5065), + [anon_sym_BSLASHavolcite] = ACTIONS(5065), + [anon_sym_BSLASHAvolcite] = ACTIONS(5065), + [anon_sym_BSLASHnotecite] = ACTIONS(5065), + [anon_sym_BSLASHNotecite] = ACTIONS(5065), + [anon_sym_BSLASHpnotecite] = ACTIONS(5065), + [anon_sym_BSLASHPnotecite] = ACTIONS(5065), + [anon_sym_BSLASHfnotecite] = ACTIONS(5065), + [anon_sym_BSLASHlabel] = ACTIONS(5065), + [anon_sym_BSLASHref] = ACTIONS(5065), + [anon_sym_BSLASHeqref] = ACTIONS(5065), + [anon_sym_BSLASHvref] = ACTIONS(5065), + [anon_sym_BSLASHVref] = ACTIONS(5065), + [anon_sym_BSLASHautoref] = ACTIONS(5065), + [anon_sym_BSLASHpageref] = ACTIONS(5065), + [anon_sym_BSLASHcref] = ACTIONS(5065), + [anon_sym_BSLASHCref] = ACTIONS(5065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnameCref] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHlabelcref] = ACTIONS(5065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCrefrange] = ACTIONS(5065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnewlabel] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), + [anon_sym_BSLASHdef] = ACTIONS(5065), + [anon_sym_BSLASHlet] = ACTIONS(5065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), + [anon_sym_BSLASHgls] = ACTIONS(5065), + [anon_sym_BSLASHGls] = ACTIONS(5065), + [anon_sym_BSLASHGLS] = ACTIONS(5065), + [anon_sym_BSLASHglspl] = ACTIONS(5065), + [anon_sym_BSLASHGlspl] = ACTIONS(5065), + [anon_sym_BSLASHGLSpl] = ACTIONS(5065), + [anon_sym_BSLASHglsdisp] = ACTIONS(5065), + [anon_sym_BSLASHglslink] = ACTIONS(5065), + [anon_sym_BSLASHglstext] = ACTIONS(5065), + [anon_sym_BSLASHGlstext] = ACTIONS(5065), + [anon_sym_BSLASHGLStext] = ACTIONS(5065), + [anon_sym_BSLASHglsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), + [anon_sym_BSLASHglsplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSplural] = ACTIONS(5065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHglsname] = ACTIONS(5065), + [anon_sym_BSLASHGlsname] = ACTIONS(5065), + [anon_sym_BSLASHGLSname] = ACTIONS(5065), + [anon_sym_BSLASHglssymbol] = ACTIONS(5065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), + [anon_sym_BSLASHglsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), + [anon_sym_BSLASHglsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), + [anon_sym_BSLASHglsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), + [anon_sym_BSLASHglsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), + [anon_sym_BSLASHglsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), + [anon_sym_BSLASHnewacronym] = ACTIONS(5065), + [anon_sym_BSLASHacrshort] = ACTIONS(5065), + [anon_sym_BSLASHAcrshort] = ACTIONS(5065), + [anon_sym_BSLASHACRshort] = ACTIONS(5065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), + [anon_sym_BSLASHacrlong] = ACTIONS(5065), + [anon_sym_BSLASHAcrlong] = ACTIONS(5065), + [anon_sym_BSLASHACRlong] = ACTIONS(5065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), + [anon_sym_BSLASHacrfull] = ACTIONS(5065), + [anon_sym_BSLASHAcrfull] = ACTIONS(5065), + [anon_sym_BSLASHACRfull] = ACTIONS(5065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), + [anon_sym_BSLASHacs] = ACTIONS(5065), + [anon_sym_BSLASHAcs] = ACTIONS(5065), + [anon_sym_BSLASHacsp] = ACTIONS(5065), + [anon_sym_BSLASHAcsp] = ACTIONS(5065), + [anon_sym_BSLASHacl] = ACTIONS(5065), + [anon_sym_BSLASHAcl] = ACTIONS(5065), + [anon_sym_BSLASHaclp] = ACTIONS(5065), + [anon_sym_BSLASHAclp] = ACTIONS(5065), + [anon_sym_BSLASHacf] = ACTIONS(5065), + [anon_sym_BSLASHAcf] = ACTIONS(5065), + [anon_sym_BSLASHacfp] = ACTIONS(5065), + [anon_sym_BSLASHAcfp] = ACTIONS(5065), + [anon_sym_BSLASHac] = ACTIONS(5065), + [anon_sym_BSLASHAc] = ACTIONS(5065), + [anon_sym_BSLASHacp] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), + [anon_sym_BSLASHcolor] = ACTIONS(5065), + [anon_sym_BSLASHcolorbox] = ACTIONS(5065), + [anon_sym_BSLASHtextcolor] = ACTIONS(5065), + [anon_sym_BSLASHpagecolor] = ACTIONS(5065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHtext] = ACTIONS(5065), + [anon_sym_BSLASHintertext] = ACTIONS(5065), + [anon_sym_shortintertext] = ACTIONS(5065), }, - [943] = { - [sym_command_name] = ACTIONS(4987), + [733] = { + [ts_builtin_sym_end] = ACTIONS(5067), + [sym_command_name] = ACTIONS(5069), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_BSLASHpart] = ACTIONS(4987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddpart] = ACTIONS(4987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHchapter] = ACTIONS(4987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddchap] = ACTIONS(4987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsection] = ACTIONS(4987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddsec] = ACTIONS(4987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHparagraph] = ACTIONS(4987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHitem] = ACTIONS(4987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(4985), - [sym_word] = ACTIONS(4987), - [sym_placeholder] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym__] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), - [anon_sym_BSLASHbegin] = ACTIONS(4987), - [anon_sym_BSLASHusepackage] = ACTIONS(4987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), - [anon_sym_BSLASHinclude] = ACTIONS(4987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), - [anon_sym_BSLASHinput] = ACTIONS(4987), - [anon_sym_BSLASHsubfile] = ACTIONS(4987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), - [anon_sym_BSLASHbibliography] = ACTIONS(4987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), - [anon_sym_BSLASHincludesvg] = ACTIONS(4987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), - [anon_sym_BSLASHimport] = ACTIONS(4987), - [anon_sym_BSLASHsubimport] = ACTIONS(4987), - [anon_sym_BSLASHinputfrom] = ACTIONS(4987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), - [anon_sym_BSLASHincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHcaption] = ACTIONS(4987), - [anon_sym_BSLASHcite] = ACTIONS(4987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCite] = ACTIONS(4987), - [anon_sym_BSLASHnocite] = ACTIONS(4987), - [anon_sym_BSLASHcitet] = ACTIONS(4987), - [anon_sym_BSLASHcitep] = ACTIONS(4987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteauthor] = ACTIONS(4987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitetitle] = ACTIONS(4987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteyear] = ACTIONS(4987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitedate] = ACTIONS(4987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteurl] = ACTIONS(4987), - [anon_sym_BSLASHfullcite] = ACTIONS(4987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), - [anon_sym_BSLASHcitealt] = ACTIONS(4987), - [anon_sym_BSLASHcitealp] = ACTIONS(4987), - [anon_sym_BSLASHcitetext] = ACTIONS(4987), - [anon_sym_BSLASHparencite] = ACTIONS(4987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHParencite] = ACTIONS(4987), - [anon_sym_BSLASHfootcite] = ACTIONS(4987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), - [anon_sym_BSLASHtextcite] = ACTIONS(4987), - [anon_sym_BSLASHTextcite] = ACTIONS(4987), - [anon_sym_BSLASHsmartcite] = ACTIONS(4987), - [anon_sym_BSLASHSmartcite] = ACTIONS(4987), - [anon_sym_BSLASHsupercite] = ACTIONS(4987), - [anon_sym_BSLASHautocite] = ACTIONS(4987), - [anon_sym_BSLASHAutocite] = ACTIONS(4987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHvolcite] = ACTIONS(4987), - [anon_sym_BSLASHVolcite] = ACTIONS(4987), - [anon_sym_BSLASHpvolcite] = ACTIONS(4987), - [anon_sym_BSLASHPvolcite] = ACTIONS(4987), - [anon_sym_BSLASHfvolcite] = ACTIONS(4987), - [anon_sym_BSLASHftvolcite] = ACTIONS(4987), - [anon_sym_BSLASHsvolcite] = ACTIONS(4987), - [anon_sym_BSLASHSvolcite] = ACTIONS(4987), - [anon_sym_BSLASHtvolcite] = ACTIONS(4987), - [anon_sym_BSLASHTvolcite] = ACTIONS(4987), - [anon_sym_BSLASHavolcite] = ACTIONS(4987), - [anon_sym_BSLASHAvolcite] = ACTIONS(4987), - [anon_sym_BSLASHnotecite] = ACTIONS(4987), - [anon_sym_BSLASHNotecite] = ACTIONS(4987), - [anon_sym_BSLASHpnotecite] = ACTIONS(4987), - [anon_sym_BSLASHPnotecite] = ACTIONS(4987), - [anon_sym_BSLASHfnotecite] = ACTIONS(4987), - [anon_sym_BSLASHlabel] = ACTIONS(4987), - [anon_sym_BSLASHref] = ACTIONS(4987), - [anon_sym_BSLASHeqref] = ACTIONS(4987), - [anon_sym_BSLASHvref] = ACTIONS(4987), - [anon_sym_BSLASHVref] = ACTIONS(4987), - [anon_sym_BSLASHautoref] = ACTIONS(4987), - [anon_sym_BSLASHpageref] = ACTIONS(4987), - [anon_sym_BSLASHcref] = ACTIONS(4987), - [anon_sym_BSLASHCref] = ACTIONS(4987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnameCref] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHlabelcref] = ACTIONS(4987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCrefrange] = ACTIONS(4987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnewlabel] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdef] = ACTIONS(4987), - [anon_sym_BSLASHlet] = ACTIONS(4987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), - [anon_sym_BSLASHgls] = ACTIONS(4987), - [anon_sym_BSLASHGls] = ACTIONS(4987), - [anon_sym_BSLASHGLS] = ACTIONS(4987), - [anon_sym_BSLASHglspl] = ACTIONS(4987), - [anon_sym_BSLASHGlspl] = ACTIONS(4987), - [anon_sym_BSLASHGLSpl] = ACTIONS(4987), - [anon_sym_BSLASHglsdisp] = ACTIONS(4987), - [anon_sym_BSLASHglslink] = ACTIONS(4987), - [anon_sym_BSLASHglstext] = ACTIONS(4987), - [anon_sym_BSLASHGlstext] = ACTIONS(4987), - [anon_sym_BSLASHGLStext] = ACTIONS(4987), - [anon_sym_BSLASHglsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), - [anon_sym_BSLASHglsplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSplural] = ACTIONS(4987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHglsname] = ACTIONS(4987), - [anon_sym_BSLASHGlsname] = ACTIONS(4987), - [anon_sym_BSLASHGLSname] = ACTIONS(4987), - [anon_sym_BSLASHglssymbol] = ACTIONS(4987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), - [anon_sym_BSLASHglsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), - [anon_sym_BSLASHglsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), - [anon_sym_BSLASHglsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), - [anon_sym_BSLASHglsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), - [anon_sym_BSLASHglsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), - [anon_sym_BSLASHnewacronym] = ACTIONS(4987), - [anon_sym_BSLASHacrshort] = ACTIONS(4987), - [anon_sym_BSLASHAcrshort] = ACTIONS(4987), - [anon_sym_BSLASHACRshort] = ACTIONS(4987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), - [anon_sym_BSLASHacrlong] = ACTIONS(4987), - [anon_sym_BSLASHAcrlong] = ACTIONS(4987), - [anon_sym_BSLASHACRlong] = ACTIONS(4987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), - [anon_sym_BSLASHacrfull] = ACTIONS(4987), - [anon_sym_BSLASHAcrfull] = ACTIONS(4987), - [anon_sym_BSLASHACRfull] = ACTIONS(4987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), - [anon_sym_BSLASHacs] = ACTIONS(4987), - [anon_sym_BSLASHAcs] = ACTIONS(4987), - [anon_sym_BSLASHacsp] = ACTIONS(4987), - [anon_sym_BSLASHAcsp] = ACTIONS(4987), - [anon_sym_BSLASHacl] = ACTIONS(4987), - [anon_sym_BSLASHAcl] = ACTIONS(4987), - [anon_sym_BSLASHaclp] = ACTIONS(4987), - [anon_sym_BSLASHAclp] = ACTIONS(4987), - [anon_sym_BSLASHacf] = ACTIONS(4987), - [anon_sym_BSLASHAcf] = ACTIONS(4987), - [anon_sym_BSLASHacfp] = ACTIONS(4987), - [anon_sym_BSLASHAcfp] = ACTIONS(4987), - [anon_sym_BSLASHac] = ACTIONS(4987), - [anon_sym_BSLASHAc] = ACTIONS(4987), - [anon_sym_BSLASHacp] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), - [anon_sym_BSLASHcolor] = ACTIONS(4987), - [anon_sym_BSLASHcolorbox] = ACTIONS(4987), - [anon_sym_BSLASHtextcolor] = ACTIONS(4987), - [anon_sym_BSLASHpagecolor] = ACTIONS(4987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), - }, - [944] = { - [sym_command_name] = ACTIONS(5357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_BSLASHpart] = ACTIONS(5357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddpart] = ACTIONS(5357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHchapter] = ACTIONS(5357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddchap] = ACTIONS(5357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsection] = ACTIONS(5357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddsec] = ACTIONS(5357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHparagraph] = ACTIONS(5357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHitem] = ACTIONS(5357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASHbegin] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), - }, - [945] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_BSLASHpart] = ACTIONS(5361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddpart] = ACTIONS(5361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHchapter] = ACTIONS(5361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddchap] = ACTIONS(5361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsection] = ACTIONS(5361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddsec] = ACTIONS(5361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHparagraph] = ACTIONS(5361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHitem] = ACTIONS(5361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASHbegin] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - }, - [946] = { - [sym_command_name] = ACTIONS(5367), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5367), - [anon_sym_LPAREN] = ACTIONS(5365), - [anon_sym_RPAREN] = ACTIONS(5365), - [anon_sym_LBRACK] = ACTIONS(5365), - [anon_sym_RBRACK] = ACTIONS(5365), - [anon_sym_COMMA] = ACTIONS(5365), - [anon_sym_EQ] = ACTIONS(5365), - [anon_sym_BSLASHpart] = ACTIONS(5367), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddpart] = ACTIONS(5367), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5365), - [anon_sym_BSLASHchapter] = ACTIONS(5367), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddchap] = ACTIONS(5367), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsection] = ACTIONS(5367), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddsec] = ACTIONS(5367), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubsection] = ACTIONS(5367), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5367), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHparagraph] = ACTIONS(5367), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5367), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5365), - [anon_sym_BSLASHitem] = ACTIONS(5367), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5365), - [anon_sym_LBRACE] = ACTIONS(5365), - [sym_word] = ACTIONS(5367), - [sym_placeholder] = ACTIONS(5365), - [anon_sym_PLUS] = ACTIONS(5367), - [anon_sym_DASH] = ACTIONS(5367), - [anon_sym_STAR] = ACTIONS(5367), - [anon_sym_SLASH] = ACTIONS(5367), - [anon_sym_CARET] = ACTIONS(5367), - [anon_sym__] = ACTIONS(5367), - [anon_sym_LT] = ACTIONS(5367), - [anon_sym_GT] = ACTIONS(5367), - [anon_sym_BANG] = ACTIONS(5367), - [anon_sym_PIPE] = ACTIONS(5367), - [anon_sym_COLON] = ACTIONS(5367), - [anon_sym_SQUOTE] = ACTIONS(5367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5365), - [anon_sym_DOLLAR] = ACTIONS(5367), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5365), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5365), - [anon_sym_BSLASHbegin] = ACTIONS(5367), - [anon_sym_BSLASHusepackage] = ACTIONS(5367), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5367), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5367), - [anon_sym_BSLASHinclude] = ACTIONS(5367), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5367), - [anon_sym_BSLASHinput] = ACTIONS(5367), - [anon_sym_BSLASHsubfile] = ACTIONS(5367), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5367), - [anon_sym_BSLASHbibliography] = ACTIONS(5367), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5367), - [anon_sym_BSLASHincludesvg] = ACTIONS(5367), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5367), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5367), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5367), - [anon_sym_BSLASHimport] = ACTIONS(5367), - [anon_sym_BSLASHsubimport] = ACTIONS(5367), - [anon_sym_BSLASHinputfrom] = ACTIONS(5367), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5367), - [anon_sym_BSLASHincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHcaption] = ACTIONS(5367), - [anon_sym_BSLASHcite] = ACTIONS(5367), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCite] = ACTIONS(5367), - [anon_sym_BSLASHnocite] = ACTIONS(5367), - [anon_sym_BSLASHcitet] = ACTIONS(5367), - [anon_sym_BSLASHcitep] = ACTIONS(5367), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor] = ACTIONS(5367), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5367), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle] = ACTIONS(5367), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteyear] = ACTIONS(5367), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitedate] = ACTIONS(5367), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteurl] = ACTIONS(5367), - [anon_sym_BSLASHfullcite] = ACTIONS(5367), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5367), - [anon_sym_BSLASHcitealt] = ACTIONS(5367), - [anon_sym_BSLASHcitealp] = ACTIONS(5367), - [anon_sym_BSLASHcitetext] = ACTIONS(5367), - [anon_sym_BSLASHparencite] = ACTIONS(5367), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHParencite] = ACTIONS(5367), - [anon_sym_BSLASHfootcite] = ACTIONS(5367), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5367), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5367), - [anon_sym_BSLASHtextcite] = ACTIONS(5367), - [anon_sym_BSLASHTextcite] = ACTIONS(5367), - [anon_sym_BSLASHsmartcite] = ACTIONS(5367), - [anon_sym_BSLASHSmartcite] = ACTIONS(5367), - [anon_sym_BSLASHsupercite] = ACTIONS(5367), - [anon_sym_BSLASHautocite] = ACTIONS(5367), - [anon_sym_BSLASHAutocite] = ACTIONS(5367), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHvolcite] = ACTIONS(5367), - [anon_sym_BSLASHVolcite] = ACTIONS(5367), - [anon_sym_BSLASHpvolcite] = ACTIONS(5367), - [anon_sym_BSLASHPvolcite] = ACTIONS(5367), - [anon_sym_BSLASHfvolcite] = ACTIONS(5367), - [anon_sym_BSLASHftvolcite] = ACTIONS(5367), - [anon_sym_BSLASHsvolcite] = ACTIONS(5367), - [anon_sym_BSLASHSvolcite] = ACTIONS(5367), - [anon_sym_BSLASHtvolcite] = ACTIONS(5367), - [anon_sym_BSLASHTvolcite] = ACTIONS(5367), - [anon_sym_BSLASHavolcite] = ACTIONS(5367), - [anon_sym_BSLASHAvolcite] = ACTIONS(5367), - [anon_sym_BSLASHnotecite] = ACTIONS(5367), - [anon_sym_BSLASHNotecite] = ACTIONS(5367), - [anon_sym_BSLASHpnotecite] = ACTIONS(5367), - [anon_sym_BSLASHPnotecite] = ACTIONS(5367), - [anon_sym_BSLASHfnotecite] = ACTIONS(5367), - [anon_sym_BSLASHlabel] = ACTIONS(5367), - [anon_sym_BSLASHref] = ACTIONS(5367), - [anon_sym_BSLASHeqref] = ACTIONS(5367), - [anon_sym_BSLASHvref] = ACTIONS(5367), - [anon_sym_BSLASHVref] = ACTIONS(5367), - [anon_sym_BSLASHautoref] = ACTIONS(5367), - [anon_sym_BSLASHpageref] = ACTIONS(5367), - [anon_sym_BSLASHcref] = ACTIONS(5367), - [anon_sym_BSLASHCref] = ACTIONS(5367), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnameCref] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHlabelcref] = ACTIONS(5367), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange] = ACTIONS(5367), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnewlabel] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5367), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5367), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5367), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5365), - [anon_sym_BSLASHdef] = ACTIONS(5367), - [anon_sym_BSLASHlet] = ACTIONS(5367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5367), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5367), - [anon_sym_BSLASHgls] = ACTIONS(5367), - [anon_sym_BSLASHGls] = ACTIONS(5367), - [anon_sym_BSLASHGLS] = ACTIONS(5367), - [anon_sym_BSLASHglspl] = ACTIONS(5367), - [anon_sym_BSLASHGlspl] = ACTIONS(5367), - [anon_sym_BSLASHGLSpl] = ACTIONS(5367), - [anon_sym_BSLASHglsdisp] = ACTIONS(5367), - [anon_sym_BSLASHglslink] = ACTIONS(5367), - [anon_sym_BSLASHglstext] = ACTIONS(5367), - [anon_sym_BSLASHGlstext] = ACTIONS(5367), - [anon_sym_BSLASHGLStext] = ACTIONS(5367), - [anon_sym_BSLASHglsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5367), - [anon_sym_BSLASHglsplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSplural] = ACTIONS(5367), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHglsname] = ACTIONS(5367), - [anon_sym_BSLASHGlsname] = ACTIONS(5367), - [anon_sym_BSLASHGLSname] = ACTIONS(5367), - [anon_sym_BSLASHglssymbol] = ACTIONS(5367), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5367), - [anon_sym_BSLASHglsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5367), - [anon_sym_BSLASHglsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5367), - [anon_sym_BSLASHglsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5367), - [anon_sym_BSLASHglsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5367), - [anon_sym_BSLASHglsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5367), - [anon_sym_BSLASHnewacronym] = ACTIONS(5367), - [anon_sym_BSLASHacrshort] = ACTIONS(5367), - [anon_sym_BSLASHAcrshort] = ACTIONS(5367), - [anon_sym_BSLASHACRshort] = ACTIONS(5367), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5367), - [anon_sym_BSLASHacrlong] = ACTIONS(5367), - [anon_sym_BSLASHAcrlong] = ACTIONS(5367), - [anon_sym_BSLASHACRlong] = ACTIONS(5367), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5367), - [anon_sym_BSLASHacrfull] = ACTIONS(5367), - [anon_sym_BSLASHAcrfull] = ACTIONS(5367), - [anon_sym_BSLASHACRfull] = ACTIONS(5367), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5367), - [anon_sym_BSLASHacs] = ACTIONS(5367), - [anon_sym_BSLASHAcs] = ACTIONS(5367), - [anon_sym_BSLASHacsp] = ACTIONS(5367), - [anon_sym_BSLASHAcsp] = ACTIONS(5367), - [anon_sym_BSLASHacl] = ACTIONS(5367), - [anon_sym_BSLASHAcl] = ACTIONS(5367), - [anon_sym_BSLASHaclp] = ACTIONS(5367), - [anon_sym_BSLASHAclp] = ACTIONS(5367), - [anon_sym_BSLASHacf] = ACTIONS(5367), - [anon_sym_BSLASHAcf] = ACTIONS(5367), - [anon_sym_BSLASHacfp] = ACTIONS(5367), - [anon_sym_BSLASHAcfp] = ACTIONS(5367), - [anon_sym_BSLASHac] = ACTIONS(5367), - [anon_sym_BSLASHAc] = ACTIONS(5367), - [anon_sym_BSLASHacp] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5367), - [anon_sym_BSLASHcolor] = ACTIONS(5367), - [anon_sym_BSLASHcolorbox] = ACTIONS(5367), - [anon_sym_BSLASHtextcolor] = ACTIONS(5367), - [anon_sym_BSLASHpagecolor] = ACTIONS(5367), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5367), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5367), - }, - [947] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_BSLASHpart] = ACTIONS(5371), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddpart] = ACTIONS(5371), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHchapter] = ACTIONS(5371), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddchap] = ACTIONS(5371), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsection] = ACTIONS(5371), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddsec] = ACTIONS(5371), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHparagraph] = ACTIONS(5371), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5371), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHitem] = ACTIONS(5371), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASHbegin] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), + [anon_sym_BSLASHiffalse] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_RPAREN] = ACTIONS(5067), + [anon_sym_LBRACK] = ACTIONS(5067), + [anon_sym_RBRACK] = ACTIONS(5067), + [anon_sym_COMMA] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_BSLASHpart] = ACTIONS(5069), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddpart] = ACTIONS(5069), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), + [anon_sym_BSLASHchapter] = ACTIONS(5069), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddchap] = ACTIONS(5069), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsection] = ACTIONS(5069), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddsec] = ACTIONS(5069), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubsection] = ACTIONS(5069), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHparagraph] = ACTIONS(5069), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), + [anon_sym_BSLASHitem] = ACTIONS(5069), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5067), + [anon_sym_RBRACE] = ACTIONS(5067), + [sym_word] = ACTIONS(5069), + [sym_placeholder] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_STAR] = ACTIONS(5069), + [anon_sym_SLASH] = ACTIONS(5069), + [anon_sym_CARET] = ACTIONS(5069), + [anon_sym__] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5069), + [anon_sym_GT] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5069), + [anon_sym_PIPE] = ACTIONS(5069), + [anon_sym_COLON] = ACTIONS(5069), + [anon_sym_SQUOTE] = ACTIONS(5069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), + [anon_sym_BSLASHbegin] = ACTIONS(5069), + [anon_sym_BSLASHusepackage] = ACTIONS(5069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), + [anon_sym_BSLASHinclude] = ACTIONS(5069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), + [anon_sym_BSLASHinput] = ACTIONS(5069), + [anon_sym_BSLASHsubfile] = ACTIONS(5069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), + [anon_sym_BSLASHbibliography] = ACTIONS(5069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), + [anon_sym_BSLASHincludesvg] = ACTIONS(5069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), + [anon_sym_BSLASHimport] = ACTIONS(5069), + [anon_sym_BSLASHsubimport] = ACTIONS(5069), + [anon_sym_BSLASHinputfrom] = ACTIONS(5069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), + [anon_sym_BSLASHincludefrom] = ACTIONS(5069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), + [anon_sym_BSLASHcaption] = ACTIONS(5069), + [anon_sym_BSLASHcite] = ACTIONS(5069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCite] = ACTIONS(5069), + [anon_sym_BSLASHnocite] = ACTIONS(5069), + [anon_sym_BSLASHcitet] = ACTIONS(5069), + [anon_sym_BSLASHcitep] = ACTIONS(5069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteauthor] = ACTIONS(5069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitetitle] = ACTIONS(5069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteyear] = ACTIONS(5069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitedate] = ACTIONS(5069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteurl] = ACTIONS(5069), + [anon_sym_BSLASHfullcite] = ACTIONS(5069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), + [anon_sym_BSLASHcitealt] = ACTIONS(5069), + [anon_sym_BSLASHcitealp] = ACTIONS(5069), + [anon_sym_BSLASHcitetext] = ACTIONS(5069), + [anon_sym_BSLASHparencite] = ACTIONS(5069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHParencite] = ACTIONS(5069), + [anon_sym_BSLASHfootcite] = ACTIONS(5069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), + [anon_sym_BSLASHtextcite] = ACTIONS(5069), + [anon_sym_BSLASHTextcite] = ACTIONS(5069), + [anon_sym_BSLASHsmartcite] = ACTIONS(5069), + [anon_sym_BSLASHSmartcite] = ACTIONS(5069), + [anon_sym_BSLASHsupercite] = ACTIONS(5069), + [anon_sym_BSLASHautocite] = ACTIONS(5069), + [anon_sym_BSLASHAutocite] = ACTIONS(5069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHvolcite] = ACTIONS(5069), + [anon_sym_BSLASHVolcite] = ACTIONS(5069), + [anon_sym_BSLASHpvolcite] = ACTIONS(5069), + [anon_sym_BSLASHPvolcite] = ACTIONS(5069), + [anon_sym_BSLASHfvolcite] = ACTIONS(5069), + [anon_sym_BSLASHftvolcite] = ACTIONS(5069), + [anon_sym_BSLASHsvolcite] = ACTIONS(5069), + [anon_sym_BSLASHSvolcite] = ACTIONS(5069), + [anon_sym_BSLASHtvolcite] = ACTIONS(5069), + [anon_sym_BSLASHTvolcite] = ACTIONS(5069), + [anon_sym_BSLASHavolcite] = ACTIONS(5069), + [anon_sym_BSLASHAvolcite] = ACTIONS(5069), + [anon_sym_BSLASHnotecite] = ACTIONS(5069), + [anon_sym_BSLASHNotecite] = ACTIONS(5069), + [anon_sym_BSLASHpnotecite] = ACTIONS(5069), + [anon_sym_BSLASHPnotecite] = ACTIONS(5069), + [anon_sym_BSLASHfnotecite] = ACTIONS(5069), + [anon_sym_BSLASHlabel] = ACTIONS(5069), + [anon_sym_BSLASHref] = ACTIONS(5069), + [anon_sym_BSLASHeqref] = ACTIONS(5069), + [anon_sym_BSLASHvref] = ACTIONS(5069), + [anon_sym_BSLASHVref] = ACTIONS(5069), + [anon_sym_BSLASHautoref] = ACTIONS(5069), + [anon_sym_BSLASHpageref] = ACTIONS(5069), + [anon_sym_BSLASHcref] = ACTIONS(5069), + [anon_sym_BSLASHCref] = ACTIONS(5069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), + [anon_sym_BSLASHnamecref] = ACTIONS(5069), + [anon_sym_BSLASHnameCref] = ACTIONS(5069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), + [anon_sym_BSLASHlabelcref] = ACTIONS(5069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), + [anon_sym_BSLASHcrefrange] = ACTIONS(5069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCrefrange] = ACTIONS(5069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), + [anon_sym_BSLASHnewlabel] = ACTIONS(5069), + [anon_sym_BSLASHnewcommand] = ACTIONS(5069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), + [anon_sym_BSLASHdef] = ACTIONS(5069), + [anon_sym_BSLASHlet] = ACTIONS(5069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), + [anon_sym_BSLASHgls] = ACTIONS(5069), + [anon_sym_BSLASHGls] = ACTIONS(5069), + [anon_sym_BSLASHGLS] = ACTIONS(5069), + [anon_sym_BSLASHglspl] = ACTIONS(5069), + [anon_sym_BSLASHGlspl] = ACTIONS(5069), + [anon_sym_BSLASHGLSpl] = ACTIONS(5069), + [anon_sym_BSLASHglsdisp] = ACTIONS(5069), + [anon_sym_BSLASHglslink] = ACTIONS(5069), + [anon_sym_BSLASHglstext] = ACTIONS(5069), + [anon_sym_BSLASHGlstext] = ACTIONS(5069), + [anon_sym_BSLASHGLStext] = ACTIONS(5069), + [anon_sym_BSLASHglsfirst] = ACTIONS(5069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), + [anon_sym_BSLASHglsplural] = ACTIONS(5069), + [anon_sym_BSLASHGlsplural] = ACTIONS(5069), + [anon_sym_BSLASHGLSplural] = ACTIONS(5069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHglsname] = ACTIONS(5069), + [anon_sym_BSLASHGlsname] = ACTIONS(5069), + [anon_sym_BSLASHGLSname] = ACTIONS(5069), + [anon_sym_BSLASHglssymbol] = ACTIONS(5069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), + [anon_sym_BSLASHglsdesc] = ACTIONS(5069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), + [anon_sym_BSLASHglsuseri] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), + [anon_sym_BSLASHglsuserii] = ACTIONS(5069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), + [anon_sym_BSLASHglsuserv] = ACTIONS(5069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), + [anon_sym_BSLASHglsuservi] = ACTIONS(5069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), + [anon_sym_BSLASHnewacronym] = ACTIONS(5069), + [anon_sym_BSLASHacrshort] = ACTIONS(5069), + [anon_sym_BSLASHAcrshort] = ACTIONS(5069), + [anon_sym_BSLASHACRshort] = ACTIONS(5069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), + [anon_sym_BSLASHacrlong] = ACTIONS(5069), + [anon_sym_BSLASHAcrlong] = ACTIONS(5069), + [anon_sym_BSLASHACRlong] = ACTIONS(5069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), + [anon_sym_BSLASHacrfull] = ACTIONS(5069), + [anon_sym_BSLASHAcrfull] = ACTIONS(5069), + [anon_sym_BSLASHACRfull] = ACTIONS(5069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), + [anon_sym_BSLASHacs] = ACTIONS(5069), + [anon_sym_BSLASHAcs] = ACTIONS(5069), + [anon_sym_BSLASHacsp] = ACTIONS(5069), + [anon_sym_BSLASHAcsp] = ACTIONS(5069), + [anon_sym_BSLASHacl] = ACTIONS(5069), + [anon_sym_BSLASHAcl] = ACTIONS(5069), + [anon_sym_BSLASHaclp] = ACTIONS(5069), + [anon_sym_BSLASHAclp] = ACTIONS(5069), + [anon_sym_BSLASHacf] = ACTIONS(5069), + [anon_sym_BSLASHAcf] = ACTIONS(5069), + [anon_sym_BSLASHacfp] = ACTIONS(5069), + [anon_sym_BSLASHAcfp] = ACTIONS(5069), + [anon_sym_BSLASHac] = ACTIONS(5069), + [anon_sym_BSLASHAc] = ACTIONS(5069), + [anon_sym_BSLASHacp] = ACTIONS(5069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), + [anon_sym_BSLASHcolor] = ACTIONS(5069), + [anon_sym_BSLASHcolorbox] = ACTIONS(5069), + [anon_sym_BSLASHtextcolor] = ACTIONS(5069), + [anon_sym_BSLASHpagecolor] = ACTIONS(5069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), + [anon_sym_BSLASHtext] = ACTIONS(5069), + [anon_sym_BSLASHintertext] = ACTIONS(5069), + [anon_sym_shortintertext] = ACTIONS(5069), }, - [948] = { - [sym_command_name] = ACTIONS(5029), + [734] = { + [ts_builtin_sym_end] = ACTIONS(5071), + [sym_command_name] = ACTIONS(5073), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_BSLASHpart] = ACTIONS(5029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddpart] = ACTIONS(5029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHchapter] = ACTIONS(5029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddchap] = ACTIONS(5029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsection] = ACTIONS(5029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddsec] = ACTIONS(5029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHparagraph] = ACTIONS(5029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHitem] = ACTIONS(5029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASHbegin] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - }, - [949] = { - [sym_command_name] = ACTIONS(5381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5381), - [anon_sym_LPAREN] = ACTIONS(5379), - [anon_sym_RPAREN] = ACTIONS(5379), - [anon_sym_LBRACK] = ACTIONS(5379), - [anon_sym_RBRACK] = ACTIONS(5379), - [anon_sym_COMMA] = ACTIONS(5379), - [anon_sym_EQ] = ACTIONS(5379), - [anon_sym_BSLASHpart] = ACTIONS(5381), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddpart] = ACTIONS(5381), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5379), - [anon_sym_BSLASHchapter] = ACTIONS(5381), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddchap] = ACTIONS(5381), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsection] = ACTIONS(5381), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddsec] = ACTIONS(5381), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubsection] = ACTIONS(5381), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5381), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHparagraph] = ACTIONS(5381), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5381), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5379), - [anon_sym_BSLASHitem] = ACTIONS(5381), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5379), - [anon_sym_LBRACE] = ACTIONS(5379), - [sym_word] = ACTIONS(5381), - [sym_placeholder] = ACTIONS(5379), - [anon_sym_PLUS] = ACTIONS(5381), - [anon_sym_DASH] = ACTIONS(5381), - [anon_sym_STAR] = ACTIONS(5381), - [anon_sym_SLASH] = ACTIONS(5381), - [anon_sym_CARET] = ACTIONS(5381), - [anon_sym__] = ACTIONS(5381), - [anon_sym_LT] = ACTIONS(5381), - [anon_sym_GT] = ACTIONS(5381), - [anon_sym_BANG] = ACTIONS(5381), - [anon_sym_PIPE] = ACTIONS(5381), - [anon_sym_COLON] = ACTIONS(5381), - [anon_sym_SQUOTE] = ACTIONS(5381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5379), - [anon_sym_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5379), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5379), - [anon_sym_BSLASHbegin] = ACTIONS(5381), - [anon_sym_BSLASHusepackage] = ACTIONS(5381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5381), - [anon_sym_BSLASHinclude] = ACTIONS(5381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5381), - [anon_sym_BSLASHinput] = ACTIONS(5381), - [anon_sym_BSLASHsubfile] = ACTIONS(5381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5381), - [anon_sym_BSLASHbibliography] = ACTIONS(5381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5381), - [anon_sym_BSLASHincludesvg] = ACTIONS(5381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5381), - [anon_sym_BSLASHimport] = ACTIONS(5381), - [anon_sym_BSLASHsubimport] = ACTIONS(5381), - [anon_sym_BSLASHinputfrom] = ACTIONS(5381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5381), - [anon_sym_BSLASHincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHcaption] = ACTIONS(5381), - [anon_sym_BSLASHcite] = ACTIONS(5381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCite] = ACTIONS(5381), - [anon_sym_BSLASHnocite] = ACTIONS(5381), - [anon_sym_BSLASHcitet] = ACTIONS(5381), - [anon_sym_BSLASHcitep] = ACTIONS(5381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteyear] = ACTIONS(5381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitedate] = ACTIONS(5381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteurl] = ACTIONS(5381), - [anon_sym_BSLASHfullcite] = ACTIONS(5381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5381), - [anon_sym_BSLASHcitealt] = ACTIONS(5381), - [anon_sym_BSLASHcitealp] = ACTIONS(5381), - [anon_sym_BSLASHcitetext] = ACTIONS(5381), - [anon_sym_BSLASHparencite] = ACTIONS(5381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHParencite] = ACTIONS(5381), - [anon_sym_BSLASHfootcite] = ACTIONS(5381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5381), - [anon_sym_BSLASHtextcite] = ACTIONS(5381), - [anon_sym_BSLASHTextcite] = ACTIONS(5381), - [anon_sym_BSLASHsmartcite] = ACTIONS(5381), - [anon_sym_BSLASHSmartcite] = ACTIONS(5381), - [anon_sym_BSLASHsupercite] = ACTIONS(5381), - [anon_sym_BSLASHautocite] = ACTIONS(5381), - [anon_sym_BSLASHAutocite] = ACTIONS(5381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHvolcite] = ACTIONS(5381), - [anon_sym_BSLASHVolcite] = ACTIONS(5381), - [anon_sym_BSLASHpvolcite] = ACTIONS(5381), - [anon_sym_BSLASHPvolcite] = ACTIONS(5381), - [anon_sym_BSLASHfvolcite] = ACTIONS(5381), - [anon_sym_BSLASHftvolcite] = ACTIONS(5381), - [anon_sym_BSLASHsvolcite] = ACTIONS(5381), - [anon_sym_BSLASHSvolcite] = ACTIONS(5381), - [anon_sym_BSLASHtvolcite] = ACTIONS(5381), - [anon_sym_BSLASHTvolcite] = ACTIONS(5381), - [anon_sym_BSLASHavolcite] = ACTIONS(5381), - [anon_sym_BSLASHAvolcite] = ACTIONS(5381), - [anon_sym_BSLASHnotecite] = ACTIONS(5381), - [anon_sym_BSLASHNotecite] = ACTIONS(5381), - [anon_sym_BSLASHpnotecite] = ACTIONS(5381), - [anon_sym_BSLASHPnotecite] = ACTIONS(5381), - [anon_sym_BSLASHfnotecite] = ACTIONS(5381), - [anon_sym_BSLASHlabel] = ACTIONS(5381), - [anon_sym_BSLASHref] = ACTIONS(5381), - [anon_sym_BSLASHeqref] = ACTIONS(5381), - [anon_sym_BSLASHvref] = ACTIONS(5381), - [anon_sym_BSLASHVref] = ACTIONS(5381), - [anon_sym_BSLASHautoref] = ACTIONS(5381), - [anon_sym_BSLASHpageref] = ACTIONS(5381), - [anon_sym_BSLASHcref] = ACTIONS(5381), - [anon_sym_BSLASHCref] = ACTIONS(5381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnameCref] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHlabelcref] = ACTIONS(5381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnewlabel] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5379), - [anon_sym_BSLASHdef] = ACTIONS(5381), - [anon_sym_BSLASHlet] = ACTIONS(5381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5381), - [anon_sym_BSLASHgls] = ACTIONS(5381), - [anon_sym_BSLASHGls] = ACTIONS(5381), - [anon_sym_BSLASHGLS] = ACTIONS(5381), - [anon_sym_BSLASHglspl] = ACTIONS(5381), - [anon_sym_BSLASHGlspl] = ACTIONS(5381), - [anon_sym_BSLASHGLSpl] = ACTIONS(5381), - [anon_sym_BSLASHglsdisp] = ACTIONS(5381), - [anon_sym_BSLASHglslink] = ACTIONS(5381), - [anon_sym_BSLASHglstext] = ACTIONS(5381), - [anon_sym_BSLASHGlstext] = ACTIONS(5381), - [anon_sym_BSLASHGLStext] = ACTIONS(5381), - [anon_sym_BSLASHglsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5381), - [anon_sym_BSLASHglsplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSplural] = ACTIONS(5381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHglsname] = ACTIONS(5381), - [anon_sym_BSLASHGlsname] = ACTIONS(5381), - [anon_sym_BSLASHGLSname] = ACTIONS(5381), - [anon_sym_BSLASHglssymbol] = ACTIONS(5381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5381), - [anon_sym_BSLASHglsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5381), - [anon_sym_BSLASHglsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5381), - [anon_sym_BSLASHglsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5381), - [anon_sym_BSLASHglsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5381), - [anon_sym_BSLASHglsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5381), - [anon_sym_BSLASHnewacronym] = ACTIONS(5381), - [anon_sym_BSLASHacrshort] = ACTIONS(5381), - [anon_sym_BSLASHAcrshort] = ACTIONS(5381), - [anon_sym_BSLASHACRshort] = ACTIONS(5381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5381), - [anon_sym_BSLASHacrlong] = ACTIONS(5381), - [anon_sym_BSLASHAcrlong] = ACTIONS(5381), - [anon_sym_BSLASHACRlong] = ACTIONS(5381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5381), - [anon_sym_BSLASHacrfull] = ACTIONS(5381), - [anon_sym_BSLASHAcrfull] = ACTIONS(5381), - [anon_sym_BSLASHACRfull] = ACTIONS(5381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5381), - [anon_sym_BSLASHacs] = ACTIONS(5381), - [anon_sym_BSLASHAcs] = ACTIONS(5381), - [anon_sym_BSLASHacsp] = ACTIONS(5381), - [anon_sym_BSLASHAcsp] = ACTIONS(5381), - [anon_sym_BSLASHacl] = ACTIONS(5381), - [anon_sym_BSLASHAcl] = ACTIONS(5381), - [anon_sym_BSLASHaclp] = ACTIONS(5381), - [anon_sym_BSLASHAclp] = ACTIONS(5381), - [anon_sym_BSLASHacf] = ACTIONS(5381), - [anon_sym_BSLASHAcf] = ACTIONS(5381), - [anon_sym_BSLASHacfp] = ACTIONS(5381), - [anon_sym_BSLASHAcfp] = ACTIONS(5381), - [anon_sym_BSLASHac] = ACTIONS(5381), - [anon_sym_BSLASHAc] = ACTIONS(5381), - [anon_sym_BSLASHacp] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5381), - [anon_sym_BSLASHcolor] = ACTIONS(5381), - [anon_sym_BSLASHcolorbox] = ACTIONS(5381), - [anon_sym_BSLASHtextcolor] = ACTIONS(5381), - [anon_sym_BSLASHpagecolor] = ACTIONS(5381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5381), - }, - [950] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_BSLASHpart] = ACTIONS(5129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddpart] = ACTIONS(5129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHchapter] = ACTIONS(5129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddchap] = ACTIONS(5129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsection] = ACTIONS(5129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddsec] = ACTIONS(5129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHparagraph] = ACTIONS(5129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHitem] = ACTIONS(5129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASHbegin] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), + [anon_sym_BSLASHiffalse] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5071), + [anon_sym_RPAREN] = ACTIONS(5071), + [anon_sym_LBRACK] = ACTIONS(5071), + [anon_sym_RBRACK] = ACTIONS(5071), + [anon_sym_COMMA] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_BSLASHpart] = ACTIONS(5073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddpart] = ACTIONS(5073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), + [anon_sym_BSLASHchapter] = ACTIONS(5073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddchap] = ACTIONS(5073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsection] = ACTIONS(5073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddsec] = ACTIONS(5073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubsection] = ACTIONS(5073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHparagraph] = ACTIONS(5073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), + [anon_sym_BSLASHitem] = ACTIONS(5073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5071), + [anon_sym_RBRACE] = ACTIONS(5071), + [sym_word] = ACTIONS(5073), + [sym_placeholder] = ACTIONS(5071), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_CARET] = ACTIONS(5073), + [anon_sym__] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_PIPE] = ACTIONS(5073), + [anon_sym_COLON] = ACTIONS(5073), + [anon_sym_SQUOTE] = ACTIONS(5073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), + [anon_sym_DOLLAR] = ACTIONS(5073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), + [anon_sym_BSLASHbegin] = ACTIONS(5073), + [anon_sym_BSLASHusepackage] = ACTIONS(5073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), + [anon_sym_BSLASHinclude] = ACTIONS(5073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), + [anon_sym_BSLASHinput] = ACTIONS(5073), + [anon_sym_BSLASHsubfile] = ACTIONS(5073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), + [anon_sym_BSLASHbibliography] = ACTIONS(5073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), + [anon_sym_BSLASHincludesvg] = ACTIONS(5073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), + [anon_sym_BSLASHimport] = ACTIONS(5073), + [anon_sym_BSLASHsubimport] = ACTIONS(5073), + [anon_sym_BSLASHinputfrom] = ACTIONS(5073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), + [anon_sym_BSLASHincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHcaption] = ACTIONS(5073), + [anon_sym_BSLASHcite] = ACTIONS(5073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCite] = ACTIONS(5073), + [anon_sym_BSLASHnocite] = ACTIONS(5073), + [anon_sym_BSLASHcitet] = ACTIONS(5073), + [anon_sym_BSLASHcitep] = ACTIONS(5073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteauthor] = ACTIONS(5073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitetitle] = ACTIONS(5073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteyear] = ACTIONS(5073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitedate] = ACTIONS(5073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteurl] = ACTIONS(5073), + [anon_sym_BSLASHfullcite] = ACTIONS(5073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), + [anon_sym_BSLASHcitealt] = ACTIONS(5073), + [anon_sym_BSLASHcitealp] = ACTIONS(5073), + [anon_sym_BSLASHcitetext] = ACTIONS(5073), + [anon_sym_BSLASHparencite] = ACTIONS(5073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHParencite] = ACTIONS(5073), + [anon_sym_BSLASHfootcite] = ACTIONS(5073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), + [anon_sym_BSLASHtextcite] = ACTIONS(5073), + [anon_sym_BSLASHTextcite] = ACTIONS(5073), + [anon_sym_BSLASHsmartcite] = ACTIONS(5073), + [anon_sym_BSLASHSmartcite] = ACTIONS(5073), + [anon_sym_BSLASHsupercite] = ACTIONS(5073), + [anon_sym_BSLASHautocite] = ACTIONS(5073), + [anon_sym_BSLASHAutocite] = ACTIONS(5073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHvolcite] = ACTIONS(5073), + [anon_sym_BSLASHVolcite] = ACTIONS(5073), + [anon_sym_BSLASHpvolcite] = ACTIONS(5073), + [anon_sym_BSLASHPvolcite] = ACTIONS(5073), + [anon_sym_BSLASHfvolcite] = ACTIONS(5073), + [anon_sym_BSLASHftvolcite] = ACTIONS(5073), + [anon_sym_BSLASHsvolcite] = ACTIONS(5073), + [anon_sym_BSLASHSvolcite] = ACTIONS(5073), + [anon_sym_BSLASHtvolcite] = ACTIONS(5073), + [anon_sym_BSLASHTvolcite] = ACTIONS(5073), + [anon_sym_BSLASHavolcite] = ACTIONS(5073), + [anon_sym_BSLASHAvolcite] = ACTIONS(5073), + [anon_sym_BSLASHnotecite] = ACTIONS(5073), + [anon_sym_BSLASHNotecite] = ACTIONS(5073), + [anon_sym_BSLASHpnotecite] = ACTIONS(5073), + [anon_sym_BSLASHPnotecite] = ACTIONS(5073), + [anon_sym_BSLASHfnotecite] = ACTIONS(5073), + [anon_sym_BSLASHlabel] = ACTIONS(5073), + [anon_sym_BSLASHref] = ACTIONS(5073), + [anon_sym_BSLASHeqref] = ACTIONS(5073), + [anon_sym_BSLASHvref] = ACTIONS(5073), + [anon_sym_BSLASHVref] = ACTIONS(5073), + [anon_sym_BSLASHautoref] = ACTIONS(5073), + [anon_sym_BSLASHpageref] = ACTIONS(5073), + [anon_sym_BSLASHcref] = ACTIONS(5073), + [anon_sym_BSLASHCref] = ACTIONS(5073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnameCref] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHlabelcref] = ACTIONS(5073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCrefrange] = ACTIONS(5073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnewlabel] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), + [anon_sym_BSLASHdef] = ACTIONS(5073), + [anon_sym_BSLASHlet] = ACTIONS(5073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), + [anon_sym_BSLASHgls] = ACTIONS(5073), + [anon_sym_BSLASHGls] = ACTIONS(5073), + [anon_sym_BSLASHGLS] = ACTIONS(5073), + [anon_sym_BSLASHglspl] = ACTIONS(5073), + [anon_sym_BSLASHGlspl] = ACTIONS(5073), + [anon_sym_BSLASHGLSpl] = ACTIONS(5073), + [anon_sym_BSLASHglsdisp] = ACTIONS(5073), + [anon_sym_BSLASHglslink] = ACTIONS(5073), + [anon_sym_BSLASHglstext] = ACTIONS(5073), + [anon_sym_BSLASHGlstext] = ACTIONS(5073), + [anon_sym_BSLASHGLStext] = ACTIONS(5073), + [anon_sym_BSLASHglsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), + [anon_sym_BSLASHglsplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSplural] = ACTIONS(5073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHglsname] = ACTIONS(5073), + [anon_sym_BSLASHGlsname] = ACTIONS(5073), + [anon_sym_BSLASHGLSname] = ACTIONS(5073), + [anon_sym_BSLASHglssymbol] = ACTIONS(5073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), + [anon_sym_BSLASHglsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), + [anon_sym_BSLASHglsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), + [anon_sym_BSLASHglsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), + [anon_sym_BSLASHglsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), + [anon_sym_BSLASHglsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), + [anon_sym_BSLASHnewacronym] = ACTIONS(5073), + [anon_sym_BSLASHacrshort] = ACTIONS(5073), + [anon_sym_BSLASHAcrshort] = ACTIONS(5073), + [anon_sym_BSLASHACRshort] = ACTIONS(5073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), + [anon_sym_BSLASHacrlong] = ACTIONS(5073), + [anon_sym_BSLASHAcrlong] = ACTIONS(5073), + [anon_sym_BSLASHACRlong] = ACTIONS(5073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), + [anon_sym_BSLASHacrfull] = ACTIONS(5073), + [anon_sym_BSLASHAcrfull] = ACTIONS(5073), + [anon_sym_BSLASHACRfull] = ACTIONS(5073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), + [anon_sym_BSLASHacs] = ACTIONS(5073), + [anon_sym_BSLASHAcs] = ACTIONS(5073), + [anon_sym_BSLASHacsp] = ACTIONS(5073), + [anon_sym_BSLASHAcsp] = ACTIONS(5073), + [anon_sym_BSLASHacl] = ACTIONS(5073), + [anon_sym_BSLASHAcl] = ACTIONS(5073), + [anon_sym_BSLASHaclp] = ACTIONS(5073), + [anon_sym_BSLASHAclp] = ACTIONS(5073), + [anon_sym_BSLASHacf] = ACTIONS(5073), + [anon_sym_BSLASHAcf] = ACTIONS(5073), + [anon_sym_BSLASHacfp] = ACTIONS(5073), + [anon_sym_BSLASHAcfp] = ACTIONS(5073), + [anon_sym_BSLASHac] = ACTIONS(5073), + [anon_sym_BSLASHAc] = ACTIONS(5073), + [anon_sym_BSLASHacp] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), + [anon_sym_BSLASHcolor] = ACTIONS(5073), + [anon_sym_BSLASHcolorbox] = ACTIONS(5073), + [anon_sym_BSLASHtextcolor] = ACTIONS(5073), + [anon_sym_BSLASHpagecolor] = ACTIONS(5073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHtext] = ACTIONS(5073), + [anon_sym_BSLASHintertext] = ACTIONS(5073), + [anon_sym_shortintertext] = ACTIONS(5073), }, - [951] = { - [sym_command_name] = ACTIONS(4999), + [735] = { + [ts_builtin_sym_end] = ACTIONS(5075), + [sym_command_name] = ACTIONS(5077), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4997), - [anon_sym_BSLASHpart] = ACTIONS(4999), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddpart] = ACTIONS(4999), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHchapter] = ACTIONS(4999), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddchap] = ACTIONS(4999), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsection] = ACTIONS(4999), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddsec] = ACTIONS(4999), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHparagraph] = ACTIONS(4999), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHitem] = ACTIONS(4999), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4997), - [sym_word] = ACTIONS(4999), - [sym_placeholder] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym__] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4997), - [anon_sym_BSLASHbegin] = ACTIONS(4999), - [anon_sym_BSLASHusepackage] = ACTIONS(4999), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), - [anon_sym_BSLASHinclude] = ACTIONS(4999), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), - [anon_sym_BSLASHinput] = ACTIONS(4999), - [anon_sym_BSLASHsubfile] = ACTIONS(4999), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), - [anon_sym_BSLASHbibliography] = ACTIONS(4999), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), - [anon_sym_BSLASHincludesvg] = ACTIONS(4999), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), - [anon_sym_BSLASHimport] = ACTIONS(4999), - [anon_sym_BSLASHsubimport] = ACTIONS(4999), - [anon_sym_BSLASHinputfrom] = ACTIONS(4999), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), - [anon_sym_BSLASHincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHcaption] = ACTIONS(4999), - [anon_sym_BSLASHcite] = ACTIONS(4999), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCite] = ACTIONS(4999), - [anon_sym_BSLASHnocite] = ACTIONS(4999), - [anon_sym_BSLASHcitet] = ACTIONS(4999), - [anon_sym_BSLASHcitep] = ACTIONS(4999), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteauthor] = ACTIONS(4999), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitetitle] = ACTIONS(4999), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteyear] = ACTIONS(4999), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitedate] = ACTIONS(4999), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteurl] = ACTIONS(4999), - [anon_sym_BSLASHfullcite] = ACTIONS(4999), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), - [anon_sym_BSLASHcitealt] = ACTIONS(4999), - [anon_sym_BSLASHcitealp] = ACTIONS(4999), - [anon_sym_BSLASHcitetext] = ACTIONS(4999), - [anon_sym_BSLASHparencite] = ACTIONS(4999), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHParencite] = ACTIONS(4999), - [anon_sym_BSLASHfootcite] = ACTIONS(4999), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), - [anon_sym_BSLASHtextcite] = ACTIONS(4999), - [anon_sym_BSLASHTextcite] = ACTIONS(4999), - [anon_sym_BSLASHsmartcite] = ACTIONS(4999), - [anon_sym_BSLASHSmartcite] = ACTIONS(4999), - [anon_sym_BSLASHsupercite] = ACTIONS(4999), - [anon_sym_BSLASHautocite] = ACTIONS(4999), - [anon_sym_BSLASHAutocite] = ACTIONS(4999), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHvolcite] = ACTIONS(4999), - [anon_sym_BSLASHVolcite] = ACTIONS(4999), - [anon_sym_BSLASHpvolcite] = ACTIONS(4999), - [anon_sym_BSLASHPvolcite] = ACTIONS(4999), - [anon_sym_BSLASHfvolcite] = ACTIONS(4999), - [anon_sym_BSLASHftvolcite] = ACTIONS(4999), - [anon_sym_BSLASHsvolcite] = ACTIONS(4999), - [anon_sym_BSLASHSvolcite] = ACTIONS(4999), - [anon_sym_BSLASHtvolcite] = ACTIONS(4999), - [anon_sym_BSLASHTvolcite] = ACTIONS(4999), - [anon_sym_BSLASHavolcite] = ACTIONS(4999), - [anon_sym_BSLASHAvolcite] = ACTIONS(4999), - [anon_sym_BSLASHnotecite] = ACTIONS(4999), - [anon_sym_BSLASHNotecite] = ACTIONS(4999), - [anon_sym_BSLASHpnotecite] = ACTIONS(4999), - [anon_sym_BSLASHPnotecite] = ACTIONS(4999), - [anon_sym_BSLASHfnotecite] = ACTIONS(4999), - [anon_sym_BSLASHlabel] = ACTIONS(4999), - [anon_sym_BSLASHref] = ACTIONS(4999), - [anon_sym_BSLASHeqref] = ACTIONS(4999), - [anon_sym_BSLASHvref] = ACTIONS(4999), - [anon_sym_BSLASHVref] = ACTIONS(4999), - [anon_sym_BSLASHautoref] = ACTIONS(4999), - [anon_sym_BSLASHpageref] = ACTIONS(4999), - [anon_sym_BSLASHcref] = ACTIONS(4999), - [anon_sym_BSLASHCref] = ACTIONS(4999), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnameCref] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHlabelcref] = ACTIONS(4999), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCrefrange] = ACTIONS(4999), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnewlabel] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdef] = ACTIONS(4999), - [anon_sym_BSLASHlet] = ACTIONS(4999), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), - [anon_sym_BSLASHgls] = ACTIONS(4999), - [anon_sym_BSLASHGls] = ACTIONS(4999), - [anon_sym_BSLASHGLS] = ACTIONS(4999), - [anon_sym_BSLASHglspl] = ACTIONS(4999), - [anon_sym_BSLASHGlspl] = ACTIONS(4999), - [anon_sym_BSLASHGLSpl] = ACTIONS(4999), - [anon_sym_BSLASHglsdisp] = ACTIONS(4999), - [anon_sym_BSLASHglslink] = ACTIONS(4999), - [anon_sym_BSLASHglstext] = ACTIONS(4999), - [anon_sym_BSLASHGlstext] = ACTIONS(4999), - [anon_sym_BSLASHGLStext] = ACTIONS(4999), - [anon_sym_BSLASHglsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), - [anon_sym_BSLASHglsplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSplural] = ACTIONS(4999), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHglsname] = ACTIONS(4999), - [anon_sym_BSLASHGlsname] = ACTIONS(4999), - [anon_sym_BSLASHGLSname] = ACTIONS(4999), - [anon_sym_BSLASHglssymbol] = ACTIONS(4999), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), - [anon_sym_BSLASHglsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), - [anon_sym_BSLASHglsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), - [anon_sym_BSLASHglsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), - [anon_sym_BSLASHglsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), - [anon_sym_BSLASHglsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), - [anon_sym_BSLASHnewacronym] = ACTIONS(4999), - [anon_sym_BSLASHacrshort] = ACTIONS(4999), - [anon_sym_BSLASHAcrshort] = ACTIONS(4999), - [anon_sym_BSLASHACRshort] = ACTIONS(4999), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), - [anon_sym_BSLASHacrlong] = ACTIONS(4999), - [anon_sym_BSLASHAcrlong] = ACTIONS(4999), - [anon_sym_BSLASHACRlong] = ACTIONS(4999), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), - [anon_sym_BSLASHacrfull] = ACTIONS(4999), - [anon_sym_BSLASHAcrfull] = ACTIONS(4999), - [anon_sym_BSLASHACRfull] = ACTIONS(4999), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), - [anon_sym_BSLASHacs] = ACTIONS(4999), - [anon_sym_BSLASHAcs] = ACTIONS(4999), - [anon_sym_BSLASHacsp] = ACTIONS(4999), - [anon_sym_BSLASHAcsp] = ACTIONS(4999), - [anon_sym_BSLASHacl] = ACTIONS(4999), - [anon_sym_BSLASHAcl] = ACTIONS(4999), - [anon_sym_BSLASHaclp] = ACTIONS(4999), - [anon_sym_BSLASHAclp] = ACTIONS(4999), - [anon_sym_BSLASHacf] = ACTIONS(4999), - [anon_sym_BSLASHAcf] = ACTIONS(4999), - [anon_sym_BSLASHacfp] = ACTIONS(4999), - [anon_sym_BSLASHAcfp] = ACTIONS(4999), - [anon_sym_BSLASHac] = ACTIONS(4999), - [anon_sym_BSLASHAc] = ACTIONS(4999), - [anon_sym_BSLASHacp] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), - [anon_sym_BSLASHcolor] = ACTIONS(4999), - [anon_sym_BSLASHcolorbox] = ACTIONS(4999), - [anon_sym_BSLASHtextcolor] = ACTIONS(4999), - [anon_sym_BSLASHpagecolor] = ACTIONS(4999), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), - }, - [952] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_BSLASHpart] = ACTIONS(5143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddpart] = ACTIONS(5143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHchapter] = ACTIONS(5143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddchap] = ACTIONS(5143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsection] = ACTIONS(5143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddsec] = ACTIONS(5143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHparagraph] = ACTIONS(5143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHitem] = ACTIONS(5143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASHbegin] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), - }, - [953] = { - [sym_command_name] = ACTIONS(5353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_BSLASHpart] = ACTIONS(5353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddpart] = ACTIONS(5353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHchapter] = ACTIONS(5353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddchap] = ACTIONS(5353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsection] = ACTIONS(5353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddsec] = ACTIONS(5353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHparagraph] = ACTIONS(5353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHitem] = ACTIONS(5353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASHbegin] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [anon_sym_BSLASHiffalse] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_RPAREN] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_RBRACK] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_EQ] = ACTIONS(5075), + [anon_sym_BSLASHpart] = ACTIONS(5077), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddpart] = ACTIONS(5077), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), + [anon_sym_BSLASHchapter] = ACTIONS(5077), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddchap] = ACTIONS(5077), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsection] = ACTIONS(5077), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddsec] = ACTIONS(5077), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubsection] = ACTIONS(5077), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHparagraph] = ACTIONS(5077), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), + [anon_sym_BSLASHitem] = ACTIONS(5077), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5075), + [anon_sym_RBRACE] = ACTIONS(5075), + [sym_word] = ACTIONS(5077), + [sym_placeholder] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_CARET] = ACTIONS(5077), + [anon_sym__] = ACTIONS(5077), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_PIPE] = ACTIONS(5077), + [anon_sym_COLON] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), + [anon_sym_DOLLAR] = ACTIONS(5077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), + [anon_sym_BSLASHbegin] = ACTIONS(5077), + [anon_sym_BSLASHusepackage] = ACTIONS(5077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), + [anon_sym_BSLASHinclude] = ACTIONS(5077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), + [anon_sym_BSLASHinput] = ACTIONS(5077), + [anon_sym_BSLASHsubfile] = ACTIONS(5077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), + [anon_sym_BSLASHbibliography] = ACTIONS(5077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), + [anon_sym_BSLASHincludesvg] = ACTIONS(5077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), + [anon_sym_BSLASHimport] = ACTIONS(5077), + [anon_sym_BSLASHsubimport] = ACTIONS(5077), + [anon_sym_BSLASHinputfrom] = ACTIONS(5077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), + [anon_sym_BSLASHincludefrom] = ACTIONS(5077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), + [anon_sym_BSLASHcaption] = ACTIONS(5077), + [anon_sym_BSLASHcite] = ACTIONS(5077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCite] = ACTIONS(5077), + [anon_sym_BSLASHnocite] = ACTIONS(5077), + [anon_sym_BSLASHcitet] = ACTIONS(5077), + [anon_sym_BSLASHcitep] = ACTIONS(5077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteauthor] = ACTIONS(5077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitetitle] = ACTIONS(5077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteyear] = ACTIONS(5077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitedate] = ACTIONS(5077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteurl] = ACTIONS(5077), + [anon_sym_BSLASHfullcite] = ACTIONS(5077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), + [anon_sym_BSLASHcitealt] = ACTIONS(5077), + [anon_sym_BSLASHcitealp] = ACTIONS(5077), + [anon_sym_BSLASHcitetext] = ACTIONS(5077), + [anon_sym_BSLASHparencite] = ACTIONS(5077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHParencite] = ACTIONS(5077), + [anon_sym_BSLASHfootcite] = ACTIONS(5077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), + [anon_sym_BSLASHtextcite] = ACTIONS(5077), + [anon_sym_BSLASHTextcite] = ACTIONS(5077), + [anon_sym_BSLASHsmartcite] = ACTIONS(5077), + [anon_sym_BSLASHSmartcite] = ACTIONS(5077), + [anon_sym_BSLASHsupercite] = ACTIONS(5077), + [anon_sym_BSLASHautocite] = ACTIONS(5077), + [anon_sym_BSLASHAutocite] = ACTIONS(5077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHvolcite] = ACTIONS(5077), + [anon_sym_BSLASHVolcite] = ACTIONS(5077), + [anon_sym_BSLASHpvolcite] = ACTIONS(5077), + [anon_sym_BSLASHPvolcite] = ACTIONS(5077), + [anon_sym_BSLASHfvolcite] = ACTIONS(5077), + [anon_sym_BSLASHftvolcite] = ACTIONS(5077), + [anon_sym_BSLASHsvolcite] = ACTIONS(5077), + [anon_sym_BSLASHSvolcite] = ACTIONS(5077), + [anon_sym_BSLASHtvolcite] = ACTIONS(5077), + [anon_sym_BSLASHTvolcite] = ACTIONS(5077), + [anon_sym_BSLASHavolcite] = ACTIONS(5077), + [anon_sym_BSLASHAvolcite] = ACTIONS(5077), + [anon_sym_BSLASHnotecite] = ACTIONS(5077), + [anon_sym_BSLASHNotecite] = ACTIONS(5077), + [anon_sym_BSLASHpnotecite] = ACTIONS(5077), + [anon_sym_BSLASHPnotecite] = ACTIONS(5077), + [anon_sym_BSLASHfnotecite] = ACTIONS(5077), + [anon_sym_BSLASHlabel] = ACTIONS(5077), + [anon_sym_BSLASHref] = ACTIONS(5077), + [anon_sym_BSLASHeqref] = ACTIONS(5077), + [anon_sym_BSLASHvref] = ACTIONS(5077), + [anon_sym_BSLASHVref] = ACTIONS(5077), + [anon_sym_BSLASHautoref] = ACTIONS(5077), + [anon_sym_BSLASHpageref] = ACTIONS(5077), + [anon_sym_BSLASHcref] = ACTIONS(5077), + [anon_sym_BSLASHCref] = ACTIONS(5077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), + [anon_sym_BSLASHnamecref] = ACTIONS(5077), + [anon_sym_BSLASHnameCref] = ACTIONS(5077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), + [anon_sym_BSLASHlabelcref] = ACTIONS(5077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), + [anon_sym_BSLASHcrefrange] = ACTIONS(5077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCrefrange] = ACTIONS(5077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), + [anon_sym_BSLASHnewlabel] = ACTIONS(5077), + [anon_sym_BSLASHnewcommand] = ACTIONS(5077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), + [anon_sym_BSLASHdef] = ACTIONS(5077), + [anon_sym_BSLASHlet] = ACTIONS(5077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), + [anon_sym_BSLASHgls] = ACTIONS(5077), + [anon_sym_BSLASHGls] = ACTIONS(5077), + [anon_sym_BSLASHGLS] = ACTIONS(5077), + [anon_sym_BSLASHglspl] = ACTIONS(5077), + [anon_sym_BSLASHGlspl] = ACTIONS(5077), + [anon_sym_BSLASHGLSpl] = ACTIONS(5077), + [anon_sym_BSLASHglsdisp] = ACTIONS(5077), + [anon_sym_BSLASHglslink] = ACTIONS(5077), + [anon_sym_BSLASHglstext] = ACTIONS(5077), + [anon_sym_BSLASHGlstext] = ACTIONS(5077), + [anon_sym_BSLASHGLStext] = ACTIONS(5077), + [anon_sym_BSLASHglsfirst] = ACTIONS(5077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), + [anon_sym_BSLASHglsplural] = ACTIONS(5077), + [anon_sym_BSLASHGlsplural] = ACTIONS(5077), + [anon_sym_BSLASHGLSplural] = ACTIONS(5077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHglsname] = ACTIONS(5077), + [anon_sym_BSLASHGlsname] = ACTIONS(5077), + [anon_sym_BSLASHGLSname] = ACTIONS(5077), + [anon_sym_BSLASHglssymbol] = ACTIONS(5077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), + [anon_sym_BSLASHglsdesc] = ACTIONS(5077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), + [anon_sym_BSLASHglsuseri] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), + [anon_sym_BSLASHglsuserii] = ACTIONS(5077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), + [anon_sym_BSLASHglsuserv] = ACTIONS(5077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), + [anon_sym_BSLASHglsuservi] = ACTIONS(5077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), + [anon_sym_BSLASHnewacronym] = ACTIONS(5077), + [anon_sym_BSLASHacrshort] = ACTIONS(5077), + [anon_sym_BSLASHAcrshort] = ACTIONS(5077), + [anon_sym_BSLASHACRshort] = ACTIONS(5077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), + [anon_sym_BSLASHacrlong] = ACTIONS(5077), + [anon_sym_BSLASHAcrlong] = ACTIONS(5077), + [anon_sym_BSLASHACRlong] = ACTIONS(5077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), + [anon_sym_BSLASHacrfull] = ACTIONS(5077), + [anon_sym_BSLASHAcrfull] = ACTIONS(5077), + [anon_sym_BSLASHACRfull] = ACTIONS(5077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), + [anon_sym_BSLASHacs] = ACTIONS(5077), + [anon_sym_BSLASHAcs] = ACTIONS(5077), + [anon_sym_BSLASHacsp] = ACTIONS(5077), + [anon_sym_BSLASHAcsp] = ACTIONS(5077), + [anon_sym_BSLASHacl] = ACTIONS(5077), + [anon_sym_BSLASHAcl] = ACTIONS(5077), + [anon_sym_BSLASHaclp] = ACTIONS(5077), + [anon_sym_BSLASHAclp] = ACTIONS(5077), + [anon_sym_BSLASHacf] = ACTIONS(5077), + [anon_sym_BSLASHAcf] = ACTIONS(5077), + [anon_sym_BSLASHacfp] = ACTIONS(5077), + [anon_sym_BSLASHAcfp] = ACTIONS(5077), + [anon_sym_BSLASHac] = ACTIONS(5077), + [anon_sym_BSLASHAc] = ACTIONS(5077), + [anon_sym_BSLASHacp] = ACTIONS(5077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), + [anon_sym_BSLASHcolor] = ACTIONS(5077), + [anon_sym_BSLASHcolorbox] = ACTIONS(5077), + [anon_sym_BSLASHtextcolor] = ACTIONS(5077), + [anon_sym_BSLASHpagecolor] = ACTIONS(5077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), + [anon_sym_BSLASHtext] = ACTIONS(5077), + [anon_sym_BSLASHintertext] = ACTIONS(5077), + [anon_sym_shortintertext] = ACTIONS(5077), }, - [954] = { - [sym_command_name] = ACTIONS(5185), + [736] = { + [ts_builtin_sym_end] = ACTIONS(5079), + [sym_command_name] = ACTIONS(5081), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_BSLASHpart] = ACTIONS(5185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddpart] = ACTIONS(5185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHchapter] = ACTIONS(5185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddchap] = ACTIONS(5185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsection] = ACTIONS(5185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddsec] = ACTIONS(5185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHparagraph] = ACTIONS(5185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHitem] = ACTIONS(5185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASHbegin] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - }, - [955] = { - [sym_command_name] = ACTIONS(4949), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4947), - [anon_sym_RBRACK] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_BSLASHpart] = ACTIONS(4949), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddpart] = ACTIONS(4949), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4947), - [anon_sym_BSLASHchapter] = ACTIONS(4949), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddchap] = ACTIONS(4949), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsection] = ACTIONS(4949), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddsec] = ACTIONS(4949), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubsection] = ACTIONS(4949), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4949), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHparagraph] = ACTIONS(4949), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4949), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4947), - [anon_sym_BSLASHitem] = ACTIONS(4949), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [sym_word] = ACTIONS(4949), - [sym_placeholder] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4949), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym__] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4949), - [anon_sym_BANG] = ACTIONS(4949), - [anon_sym_PIPE] = ACTIONS(4949), - [anon_sym_COLON] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4949), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4947), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4947), - [anon_sym_BSLASHbegin] = ACTIONS(4949), - [anon_sym_BSLASHusepackage] = ACTIONS(4949), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4949), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4949), - [anon_sym_BSLASHinclude] = ACTIONS(4949), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4949), - [anon_sym_BSLASHinput] = ACTIONS(4949), - [anon_sym_BSLASHsubfile] = ACTIONS(4949), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4949), - [anon_sym_BSLASHbibliography] = ACTIONS(4949), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4949), - [anon_sym_BSLASHincludesvg] = ACTIONS(4949), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4949), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4949), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4949), - [anon_sym_BSLASHimport] = ACTIONS(4949), - [anon_sym_BSLASHsubimport] = ACTIONS(4949), - [anon_sym_BSLASHinputfrom] = ACTIONS(4949), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4949), - [anon_sym_BSLASHincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHcaption] = ACTIONS(4949), - [anon_sym_BSLASHcite] = ACTIONS(4949), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCite] = ACTIONS(4949), - [anon_sym_BSLASHnocite] = ACTIONS(4949), - [anon_sym_BSLASHcitet] = ACTIONS(4949), - [anon_sym_BSLASHcitep] = ACTIONS(4949), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteyear] = ACTIONS(4949), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitedate] = ACTIONS(4949), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteurl] = ACTIONS(4949), - [anon_sym_BSLASHfullcite] = ACTIONS(4949), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4949), - [anon_sym_BSLASHcitealt] = ACTIONS(4949), - [anon_sym_BSLASHcitealp] = ACTIONS(4949), - [anon_sym_BSLASHcitetext] = ACTIONS(4949), - [anon_sym_BSLASHparencite] = ACTIONS(4949), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHParencite] = ACTIONS(4949), - [anon_sym_BSLASHfootcite] = ACTIONS(4949), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4949), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4949), - [anon_sym_BSLASHtextcite] = ACTIONS(4949), - [anon_sym_BSLASHTextcite] = ACTIONS(4949), - [anon_sym_BSLASHsmartcite] = ACTIONS(4949), - [anon_sym_BSLASHSmartcite] = ACTIONS(4949), - [anon_sym_BSLASHsupercite] = ACTIONS(4949), - [anon_sym_BSLASHautocite] = ACTIONS(4949), - [anon_sym_BSLASHAutocite] = ACTIONS(4949), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHvolcite] = ACTIONS(4949), - [anon_sym_BSLASHVolcite] = ACTIONS(4949), - [anon_sym_BSLASHpvolcite] = ACTIONS(4949), - [anon_sym_BSLASHPvolcite] = ACTIONS(4949), - [anon_sym_BSLASHfvolcite] = ACTIONS(4949), - [anon_sym_BSLASHftvolcite] = ACTIONS(4949), - [anon_sym_BSLASHsvolcite] = ACTIONS(4949), - [anon_sym_BSLASHSvolcite] = ACTIONS(4949), - [anon_sym_BSLASHtvolcite] = ACTIONS(4949), - [anon_sym_BSLASHTvolcite] = ACTIONS(4949), - [anon_sym_BSLASHavolcite] = ACTIONS(4949), - [anon_sym_BSLASHAvolcite] = ACTIONS(4949), - [anon_sym_BSLASHnotecite] = ACTIONS(4949), - [anon_sym_BSLASHNotecite] = ACTIONS(4949), - [anon_sym_BSLASHpnotecite] = ACTIONS(4949), - [anon_sym_BSLASHPnotecite] = ACTIONS(4949), - [anon_sym_BSLASHfnotecite] = ACTIONS(4949), - [anon_sym_BSLASHlabel] = ACTIONS(4949), - [anon_sym_BSLASHref] = ACTIONS(4949), - [anon_sym_BSLASHeqref] = ACTIONS(4949), - [anon_sym_BSLASHvref] = ACTIONS(4949), - [anon_sym_BSLASHVref] = ACTIONS(4949), - [anon_sym_BSLASHautoref] = ACTIONS(4949), - [anon_sym_BSLASHpageref] = ACTIONS(4949), - [anon_sym_BSLASHcref] = ACTIONS(4949), - [anon_sym_BSLASHCref] = ACTIONS(4949), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnameCref] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHlabelcref] = ACTIONS(4949), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnewlabel] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4947), - [anon_sym_BSLASHdef] = ACTIONS(4949), - [anon_sym_BSLASHlet] = ACTIONS(4949), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4949), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4949), - [anon_sym_BSLASHgls] = ACTIONS(4949), - [anon_sym_BSLASHGls] = ACTIONS(4949), - [anon_sym_BSLASHGLS] = ACTIONS(4949), - [anon_sym_BSLASHglspl] = ACTIONS(4949), - [anon_sym_BSLASHGlspl] = ACTIONS(4949), - [anon_sym_BSLASHGLSpl] = ACTIONS(4949), - [anon_sym_BSLASHglsdisp] = ACTIONS(4949), - [anon_sym_BSLASHglslink] = ACTIONS(4949), - [anon_sym_BSLASHglstext] = ACTIONS(4949), - [anon_sym_BSLASHGlstext] = ACTIONS(4949), - [anon_sym_BSLASHGLStext] = ACTIONS(4949), - [anon_sym_BSLASHglsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4949), - [anon_sym_BSLASHglsplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSplural] = ACTIONS(4949), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHglsname] = ACTIONS(4949), - [anon_sym_BSLASHGlsname] = ACTIONS(4949), - [anon_sym_BSLASHGLSname] = ACTIONS(4949), - [anon_sym_BSLASHglssymbol] = ACTIONS(4949), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4949), - [anon_sym_BSLASHglsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4949), - [anon_sym_BSLASHglsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4949), - [anon_sym_BSLASHglsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4949), - [anon_sym_BSLASHglsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4949), - [anon_sym_BSLASHglsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4949), - [anon_sym_BSLASHnewacronym] = ACTIONS(4949), - [anon_sym_BSLASHacrshort] = ACTIONS(4949), - [anon_sym_BSLASHAcrshort] = ACTIONS(4949), - [anon_sym_BSLASHACRshort] = ACTIONS(4949), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4949), - [anon_sym_BSLASHacrlong] = ACTIONS(4949), - [anon_sym_BSLASHAcrlong] = ACTIONS(4949), - [anon_sym_BSLASHACRlong] = ACTIONS(4949), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4949), - [anon_sym_BSLASHacrfull] = ACTIONS(4949), - [anon_sym_BSLASHAcrfull] = ACTIONS(4949), - [anon_sym_BSLASHACRfull] = ACTIONS(4949), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4949), - [anon_sym_BSLASHacs] = ACTIONS(4949), - [anon_sym_BSLASHAcs] = ACTIONS(4949), - [anon_sym_BSLASHacsp] = ACTIONS(4949), - [anon_sym_BSLASHAcsp] = ACTIONS(4949), - [anon_sym_BSLASHacl] = ACTIONS(4949), - [anon_sym_BSLASHAcl] = ACTIONS(4949), - [anon_sym_BSLASHaclp] = ACTIONS(4949), - [anon_sym_BSLASHAclp] = ACTIONS(4949), - [anon_sym_BSLASHacf] = ACTIONS(4949), - [anon_sym_BSLASHAcf] = ACTIONS(4949), - [anon_sym_BSLASHacfp] = ACTIONS(4949), - [anon_sym_BSLASHAcfp] = ACTIONS(4949), - [anon_sym_BSLASHac] = ACTIONS(4949), - [anon_sym_BSLASHAc] = ACTIONS(4949), - [anon_sym_BSLASHacp] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4949), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4949), - [anon_sym_BSLASHcolor] = ACTIONS(4949), - [anon_sym_BSLASHcolorbox] = ACTIONS(4949), - [anon_sym_BSLASHtextcolor] = ACTIONS(4949), - [anon_sym_BSLASHpagecolor] = ACTIONS(4949), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4949), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4949), - }, - [956] = { - [sym_command_name] = ACTIONS(4953), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_RBRACK] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_BSLASHpart] = ACTIONS(4953), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddpart] = ACTIONS(4953), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4951), - [anon_sym_BSLASHchapter] = ACTIONS(4953), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddchap] = ACTIONS(4953), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsection] = ACTIONS(4953), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddsec] = ACTIONS(4953), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubsection] = ACTIONS(4953), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4953), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHparagraph] = ACTIONS(4953), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4953), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4951), - [anon_sym_BSLASHitem] = ACTIONS(4953), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [sym_word] = ACTIONS(4953), - [sym_placeholder] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym__] = ACTIONS(4953), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4953), - [anon_sym_COLON] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4953), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4951), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4951), - [anon_sym_BSLASHbegin] = ACTIONS(4953), - [anon_sym_BSLASHusepackage] = ACTIONS(4953), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4953), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4953), - [anon_sym_BSLASHinclude] = ACTIONS(4953), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4953), - [anon_sym_BSLASHinput] = ACTIONS(4953), - [anon_sym_BSLASHsubfile] = ACTIONS(4953), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4953), - [anon_sym_BSLASHbibliography] = ACTIONS(4953), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4953), - [anon_sym_BSLASHincludesvg] = ACTIONS(4953), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4953), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4953), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4953), - [anon_sym_BSLASHimport] = ACTIONS(4953), - [anon_sym_BSLASHsubimport] = ACTIONS(4953), - [anon_sym_BSLASHinputfrom] = ACTIONS(4953), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4953), - [anon_sym_BSLASHincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHcaption] = ACTIONS(4953), - [anon_sym_BSLASHcite] = ACTIONS(4953), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCite] = ACTIONS(4953), - [anon_sym_BSLASHnocite] = ACTIONS(4953), - [anon_sym_BSLASHcitet] = ACTIONS(4953), - [anon_sym_BSLASHcitep] = ACTIONS(4953), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteyear] = ACTIONS(4953), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitedate] = ACTIONS(4953), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteurl] = ACTIONS(4953), - [anon_sym_BSLASHfullcite] = ACTIONS(4953), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4953), - [anon_sym_BSLASHcitealt] = ACTIONS(4953), - [anon_sym_BSLASHcitealp] = ACTIONS(4953), - [anon_sym_BSLASHcitetext] = ACTIONS(4953), - [anon_sym_BSLASHparencite] = ACTIONS(4953), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHParencite] = ACTIONS(4953), - [anon_sym_BSLASHfootcite] = ACTIONS(4953), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4953), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4953), - [anon_sym_BSLASHtextcite] = ACTIONS(4953), - [anon_sym_BSLASHTextcite] = ACTIONS(4953), - [anon_sym_BSLASHsmartcite] = ACTIONS(4953), - [anon_sym_BSLASHSmartcite] = ACTIONS(4953), - [anon_sym_BSLASHsupercite] = ACTIONS(4953), - [anon_sym_BSLASHautocite] = ACTIONS(4953), - [anon_sym_BSLASHAutocite] = ACTIONS(4953), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHvolcite] = ACTIONS(4953), - [anon_sym_BSLASHVolcite] = ACTIONS(4953), - [anon_sym_BSLASHpvolcite] = ACTIONS(4953), - [anon_sym_BSLASHPvolcite] = ACTIONS(4953), - [anon_sym_BSLASHfvolcite] = ACTIONS(4953), - [anon_sym_BSLASHftvolcite] = ACTIONS(4953), - [anon_sym_BSLASHsvolcite] = ACTIONS(4953), - [anon_sym_BSLASHSvolcite] = ACTIONS(4953), - [anon_sym_BSLASHtvolcite] = ACTIONS(4953), - [anon_sym_BSLASHTvolcite] = ACTIONS(4953), - [anon_sym_BSLASHavolcite] = ACTIONS(4953), - [anon_sym_BSLASHAvolcite] = ACTIONS(4953), - [anon_sym_BSLASHnotecite] = ACTIONS(4953), - [anon_sym_BSLASHNotecite] = ACTIONS(4953), - [anon_sym_BSLASHpnotecite] = ACTIONS(4953), - [anon_sym_BSLASHPnotecite] = ACTIONS(4953), - [anon_sym_BSLASHfnotecite] = ACTIONS(4953), - [anon_sym_BSLASHlabel] = ACTIONS(4953), - [anon_sym_BSLASHref] = ACTIONS(4953), - [anon_sym_BSLASHeqref] = ACTIONS(4953), - [anon_sym_BSLASHvref] = ACTIONS(4953), - [anon_sym_BSLASHVref] = ACTIONS(4953), - [anon_sym_BSLASHautoref] = ACTIONS(4953), - [anon_sym_BSLASHpageref] = ACTIONS(4953), - [anon_sym_BSLASHcref] = ACTIONS(4953), - [anon_sym_BSLASHCref] = ACTIONS(4953), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnameCref] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHlabelcref] = ACTIONS(4953), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnewlabel] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4951), - [anon_sym_BSLASHdef] = ACTIONS(4953), - [anon_sym_BSLASHlet] = ACTIONS(4953), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4953), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4953), - [anon_sym_BSLASHgls] = ACTIONS(4953), - [anon_sym_BSLASHGls] = ACTIONS(4953), - [anon_sym_BSLASHGLS] = ACTIONS(4953), - [anon_sym_BSLASHglspl] = ACTIONS(4953), - [anon_sym_BSLASHGlspl] = ACTIONS(4953), - [anon_sym_BSLASHGLSpl] = ACTIONS(4953), - [anon_sym_BSLASHglsdisp] = ACTIONS(4953), - [anon_sym_BSLASHglslink] = ACTIONS(4953), - [anon_sym_BSLASHglstext] = ACTIONS(4953), - [anon_sym_BSLASHGlstext] = ACTIONS(4953), - [anon_sym_BSLASHGLStext] = ACTIONS(4953), - [anon_sym_BSLASHglsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4953), - [anon_sym_BSLASHglsplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSplural] = ACTIONS(4953), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHglsname] = ACTIONS(4953), - [anon_sym_BSLASHGlsname] = ACTIONS(4953), - [anon_sym_BSLASHGLSname] = ACTIONS(4953), - [anon_sym_BSLASHglssymbol] = ACTIONS(4953), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4953), - [anon_sym_BSLASHglsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4953), - [anon_sym_BSLASHglsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4953), - [anon_sym_BSLASHglsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4953), - [anon_sym_BSLASHglsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4953), - [anon_sym_BSLASHglsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4953), - [anon_sym_BSLASHnewacronym] = ACTIONS(4953), - [anon_sym_BSLASHacrshort] = ACTIONS(4953), - [anon_sym_BSLASHAcrshort] = ACTIONS(4953), - [anon_sym_BSLASHACRshort] = ACTIONS(4953), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4953), - [anon_sym_BSLASHacrlong] = ACTIONS(4953), - [anon_sym_BSLASHAcrlong] = ACTIONS(4953), - [anon_sym_BSLASHACRlong] = ACTIONS(4953), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4953), - [anon_sym_BSLASHacrfull] = ACTIONS(4953), - [anon_sym_BSLASHAcrfull] = ACTIONS(4953), - [anon_sym_BSLASHACRfull] = ACTIONS(4953), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4953), - [anon_sym_BSLASHacs] = ACTIONS(4953), - [anon_sym_BSLASHAcs] = ACTIONS(4953), - [anon_sym_BSLASHacsp] = ACTIONS(4953), - [anon_sym_BSLASHAcsp] = ACTIONS(4953), - [anon_sym_BSLASHacl] = ACTIONS(4953), - [anon_sym_BSLASHAcl] = ACTIONS(4953), - [anon_sym_BSLASHaclp] = ACTIONS(4953), - [anon_sym_BSLASHAclp] = ACTIONS(4953), - [anon_sym_BSLASHacf] = ACTIONS(4953), - [anon_sym_BSLASHAcf] = ACTIONS(4953), - [anon_sym_BSLASHacfp] = ACTIONS(4953), - [anon_sym_BSLASHAcfp] = ACTIONS(4953), - [anon_sym_BSLASHac] = ACTIONS(4953), - [anon_sym_BSLASHAc] = ACTIONS(4953), - [anon_sym_BSLASHacp] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4953), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4953), - [anon_sym_BSLASHcolor] = ACTIONS(4953), - [anon_sym_BSLASHcolorbox] = ACTIONS(4953), - [anon_sym_BSLASHtextcolor] = ACTIONS(4953), - [anon_sym_BSLASHpagecolor] = ACTIONS(4953), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4953), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4953), + [anon_sym_BSLASHiffalse] = ACTIONS(5081), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_RPAREN] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_RBRACK] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_EQ] = ACTIONS(5079), + [anon_sym_BSLASHpart] = ACTIONS(5081), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddpart] = ACTIONS(5081), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), + [anon_sym_BSLASHchapter] = ACTIONS(5081), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddchap] = ACTIONS(5081), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsection] = ACTIONS(5081), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddsec] = ACTIONS(5081), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubsection] = ACTIONS(5081), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHparagraph] = ACTIONS(5081), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), + [anon_sym_BSLASHitem] = ACTIONS(5081), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), + [anon_sym_LBRACE] = ACTIONS(5079), + [anon_sym_RBRACE] = ACTIONS(5079), + [sym_word] = ACTIONS(5081), + [sym_placeholder] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(5081), + [anon_sym_STAR] = ACTIONS(5081), + [anon_sym_SLASH] = ACTIONS(5081), + [anon_sym_CARET] = ACTIONS(5081), + [anon_sym__] = ACTIONS(5081), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_GT] = ACTIONS(5081), + [anon_sym_BANG] = ACTIONS(5081), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_COLON] = ACTIONS(5081), + [anon_sym_SQUOTE] = ACTIONS(5081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), + [anon_sym_BSLASHbegin] = ACTIONS(5081), + [anon_sym_BSLASHusepackage] = ACTIONS(5081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), + [anon_sym_BSLASHinclude] = ACTIONS(5081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), + [anon_sym_BSLASHinput] = ACTIONS(5081), + [anon_sym_BSLASHsubfile] = ACTIONS(5081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), + [anon_sym_BSLASHbibliography] = ACTIONS(5081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), + [anon_sym_BSLASHincludesvg] = ACTIONS(5081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), + [anon_sym_BSLASHimport] = ACTIONS(5081), + [anon_sym_BSLASHsubimport] = ACTIONS(5081), + [anon_sym_BSLASHinputfrom] = ACTIONS(5081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), + [anon_sym_BSLASHincludefrom] = ACTIONS(5081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), + [anon_sym_BSLASHcaption] = ACTIONS(5081), + [anon_sym_BSLASHcite] = ACTIONS(5081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCite] = ACTIONS(5081), + [anon_sym_BSLASHnocite] = ACTIONS(5081), + [anon_sym_BSLASHcitet] = ACTIONS(5081), + [anon_sym_BSLASHcitep] = ACTIONS(5081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteauthor] = ACTIONS(5081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitetitle] = ACTIONS(5081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteyear] = ACTIONS(5081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitedate] = ACTIONS(5081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteurl] = ACTIONS(5081), + [anon_sym_BSLASHfullcite] = ACTIONS(5081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), + [anon_sym_BSLASHcitealt] = ACTIONS(5081), + [anon_sym_BSLASHcitealp] = ACTIONS(5081), + [anon_sym_BSLASHcitetext] = ACTIONS(5081), + [anon_sym_BSLASHparencite] = ACTIONS(5081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHParencite] = ACTIONS(5081), + [anon_sym_BSLASHfootcite] = ACTIONS(5081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), + [anon_sym_BSLASHtextcite] = ACTIONS(5081), + [anon_sym_BSLASHTextcite] = ACTIONS(5081), + [anon_sym_BSLASHsmartcite] = ACTIONS(5081), + [anon_sym_BSLASHSmartcite] = ACTIONS(5081), + [anon_sym_BSLASHsupercite] = ACTIONS(5081), + [anon_sym_BSLASHautocite] = ACTIONS(5081), + [anon_sym_BSLASHAutocite] = ACTIONS(5081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHvolcite] = ACTIONS(5081), + [anon_sym_BSLASHVolcite] = ACTIONS(5081), + [anon_sym_BSLASHpvolcite] = ACTIONS(5081), + [anon_sym_BSLASHPvolcite] = ACTIONS(5081), + [anon_sym_BSLASHfvolcite] = ACTIONS(5081), + [anon_sym_BSLASHftvolcite] = ACTIONS(5081), + [anon_sym_BSLASHsvolcite] = ACTIONS(5081), + [anon_sym_BSLASHSvolcite] = ACTIONS(5081), + [anon_sym_BSLASHtvolcite] = ACTIONS(5081), + [anon_sym_BSLASHTvolcite] = ACTIONS(5081), + [anon_sym_BSLASHavolcite] = ACTIONS(5081), + [anon_sym_BSLASHAvolcite] = ACTIONS(5081), + [anon_sym_BSLASHnotecite] = ACTIONS(5081), + [anon_sym_BSLASHNotecite] = ACTIONS(5081), + [anon_sym_BSLASHpnotecite] = ACTIONS(5081), + [anon_sym_BSLASHPnotecite] = ACTIONS(5081), + [anon_sym_BSLASHfnotecite] = ACTIONS(5081), + [anon_sym_BSLASHlabel] = ACTIONS(5081), + [anon_sym_BSLASHref] = ACTIONS(5081), + [anon_sym_BSLASHeqref] = ACTIONS(5081), + [anon_sym_BSLASHvref] = ACTIONS(5081), + [anon_sym_BSLASHVref] = ACTIONS(5081), + [anon_sym_BSLASHautoref] = ACTIONS(5081), + [anon_sym_BSLASHpageref] = ACTIONS(5081), + [anon_sym_BSLASHcref] = ACTIONS(5081), + [anon_sym_BSLASHCref] = ACTIONS(5081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), + [anon_sym_BSLASHnamecref] = ACTIONS(5081), + [anon_sym_BSLASHnameCref] = ACTIONS(5081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), + [anon_sym_BSLASHlabelcref] = ACTIONS(5081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), + [anon_sym_BSLASHcrefrange] = ACTIONS(5081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCrefrange] = ACTIONS(5081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), + [anon_sym_BSLASHnewlabel] = ACTIONS(5081), + [anon_sym_BSLASHnewcommand] = ACTIONS(5081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), + [anon_sym_BSLASHdef] = ACTIONS(5081), + [anon_sym_BSLASHlet] = ACTIONS(5081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), + [anon_sym_BSLASHgls] = ACTIONS(5081), + [anon_sym_BSLASHGls] = ACTIONS(5081), + [anon_sym_BSLASHGLS] = ACTIONS(5081), + [anon_sym_BSLASHglspl] = ACTIONS(5081), + [anon_sym_BSLASHGlspl] = ACTIONS(5081), + [anon_sym_BSLASHGLSpl] = ACTIONS(5081), + [anon_sym_BSLASHglsdisp] = ACTIONS(5081), + [anon_sym_BSLASHglslink] = ACTIONS(5081), + [anon_sym_BSLASHglstext] = ACTIONS(5081), + [anon_sym_BSLASHGlstext] = ACTIONS(5081), + [anon_sym_BSLASHGLStext] = ACTIONS(5081), + [anon_sym_BSLASHglsfirst] = ACTIONS(5081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), + [anon_sym_BSLASHglsplural] = ACTIONS(5081), + [anon_sym_BSLASHGlsplural] = ACTIONS(5081), + [anon_sym_BSLASHGLSplural] = ACTIONS(5081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHglsname] = ACTIONS(5081), + [anon_sym_BSLASHGlsname] = ACTIONS(5081), + [anon_sym_BSLASHGLSname] = ACTIONS(5081), + [anon_sym_BSLASHglssymbol] = ACTIONS(5081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), + [anon_sym_BSLASHglsdesc] = ACTIONS(5081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), + [anon_sym_BSLASHglsuseri] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), + [anon_sym_BSLASHglsuserii] = ACTIONS(5081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), + [anon_sym_BSLASHglsuserv] = ACTIONS(5081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), + [anon_sym_BSLASHglsuservi] = ACTIONS(5081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), + [anon_sym_BSLASHnewacronym] = ACTIONS(5081), + [anon_sym_BSLASHacrshort] = ACTIONS(5081), + [anon_sym_BSLASHAcrshort] = ACTIONS(5081), + [anon_sym_BSLASHACRshort] = ACTIONS(5081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), + [anon_sym_BSLASHacrlong] = ACTIONS(5081), + [anon_sym_BSLASHAcrlong] = ACTIONS(5081), + [anon_sym_BSLASHACRlong] = ACTIONS(5081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), + [anon_sym_BSLASHacrfull] = ACTIONS(5081), + [anon_sym_BSLASHAcrfull] = ACTIONS(5081), + [anon_sym_BSLASHACRfull] = ACTIONS(5081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), + [anon_sym_BSLASHacs] = ACTIONS(5081), + [anon_sym_BSLASHAcs] = ACTIONS(5081), + [anon_sym_BSLASHacsp] = ACTIONS(5081), + [anon_sym_BSLASHAcsp] = ACTIONS(5081), + [anon_sym_BSLASHacl] = ACTIONS(5081), + [anon_sym_BSLASHAcl] = ACTIONS(5081), + [anon_sym_BSLASHaclp] = ACTIONS(5081), + [anon_sym_BSLASHAclp] = ACTIONS(5081), + [anon_sym_BSLASHacf] = ACTIONS(5081), + [anon_sym_BSLASHAcf] = ACTIONS(5081), + [anon_sym_BSLASHacfp] = ACTIONS(5081), + [anon_sym_BSLASHAcfp] = ACTIONS(5081), + [anon_sym_BSLASHac] = ACTIONS(5081), + [anon_sym_BSLASHAc] = ACTIONS(5081), + [anon_sym_BSLASHacp] = ACTIONS(5081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), + [anon_sym_BSLASHcolor] = ACTIONS(5081), + [anon_sym_BSLASHcolorbox] = ACTIONS(5081), + [anon_sym_BSLASHtextcolor] = ACTIONS(5081), + [anon_sym_BSLASHpagecolor] = ACTIONS(5081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), + [anon_sym_BSLASHtext] = ACTIONS(5081), + [anon_sym_BSLASHintertext] = ACTIONS(5081), + [anon_sym_shortintertext] = ACTIONS(5081), }, - [957] = { - [sym_command_name] = ACTIONS(4959), + [737] = { + [ts_builtin_sym_end] = ACTIONS(5083), + [sym_command_name] = ACTIONS(5085), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_BSLASHpart] = ACTIONS(4959), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddpart] = ACTIONS(4959), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHchapter] = ACTIONS(4959), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddchap] = ACTIONS(4959), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsection] = ACTIONS(4959), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddsec] = ACTIONS(4959), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHparagraph] = ACTIONS(4959), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHitem] = ACTIONS(4959), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASHbegin] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHiffalse] = ACTIONS(5085), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_RPAREN] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_RBRACK] = ACTIONS(5083), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5083), + [anon_sym_BSLASHpart] = ACTIONS(5085), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddpart] = ACTIONS(5085), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), + [anon_sym_BSLASHchapter] = ACTIONS(5085), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddchap] = ACTIONS(5085), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsection] = ACTIONS(5085), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddsec] = ACTIONS(5085), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubsection] = ACTIONS(5085), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHparagraph] = ACTIONS(5085), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), + [anon_sym_BSLASHitem] = ACTIONS(5085), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), + [anon_sym_LBRACE] = ACTIONS(5083), + [anon_sym_RBRACE] = ACTIONS(5083), + [sym_word] = ACTIONS(5085), + [sym_placeholder] = ACTIONS(5083), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_CARET] = ACTIONS(5085), + [anon_sym__] = ACTIONS(5085), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_PIPE] = ACTIONS(5085), + [anon_sym_COLON] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), + [anon_sym_DOLLAR] = ACTIONS(5085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), + [anon_sym_BSLASHbegin] = ACTIONS(5085), + [anon_sym_BSLASHusepackage] = ACTIONS(5085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), + [anon_sym_BSLASHinclude] = ACTIONS(5085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), + [anon_sym_BSLASHinput] = ACTIONS(5085), + [anon_sym_BSLASHsubfile] = ACTIONS(5085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), + [anon_sym_BSLASHbibliography] = ACTIONS(5085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), + [anon_sym_BSLASHincludesvg] = ACTIONS(5085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), + [anon_sym_BSLASHimport] = ACTIONS(5085), + [anon_sym_BSLASHsubimport] = ACTIONS(5085), + [anon_sym_BSLASHinputfrom] = ACTIONS(5085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), + [anon_sym_BSLASHincludefrom] = ACTIONS(5085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), + [anon_sym_BSLASHcaption] = ACTIONS(5085), + [anon_sym_BSLASHcite] = ACTIONS(5085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCite] = ACTIONS(5085), + [anon_sym_BSLASHnocite] = ACTIONS(5085), + [anon_sym_BSLASHcitet] = ACTIONS(5085), + [anon_sym_BSLASHcitep] = ACTIONS(5085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteauthor] = ACTIONS(5085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitetitle] = ACTIONS(5085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteyear] = ACTIONS(5085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitedate] = ACTIONS(5085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteurl] = ACTIONS(5085), + [anon_sym_BSLASHfullcite] = ACTIONS(5085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), + [anon_sym_BSLASHcitealt] = ACTIONS(5085), + [anon_sym_BSLASHcitealp] = ACTIONS(5085), + [anon_sym_BSLASHcitetext] = ACTIONS(5085), + [anon_sym_BSLASHparencite] = ACTIONS(5085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHParencite] = ACTIONS(5085), + [anon_sym_BSLASHfootcite] = ACTIONS(5085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), + [anon_sym_BSLASHtextcite] = ACTIONS(5085), + [anon_sym_BSLASHTextcite] = ACTIONS(5085), + [anon_sym_BSLASHsmartcite] = ACTIONS(5085), + [anon_sym_BSLASHSmartcite] = ACTIONS(5085), + [anon_sym_BSLASHsupercite] = ACTIONS(5085), + [anon_sym_BSLASHautocite] = ACTIONS(5085), + [anon_sym_BSLASHAutocite] = ACTIONS(5085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHvolcite] = ACTIONS(5085), + [anon_sym_BSLASHVolcite] = ACTIONS(5085), + [anon_sym_BSLASHpvolcite] = ACTIONS(5085), + [anon_sym_BSLASHPvolcite] = ACTIONS(5085), + [anon_sym_BSLASHfvolcite] = ACTIONS(5085), + [anon_sym_BSLASHftvolcite] = ACTIONS(5085), + [anon_sym_BSLASHsvolcite] = ACTIONS(5085), + [anon_sym_BSLASHSvolcite] = ACTIONS(5085), + [anon_sym_BSLASHtvolcite] = ACTIONS(5085), + [anon_sym_BSLASHTvolcite] = ACTIONS(5085), + [anon_sym_BSLASHavolcite] = ACTIONS(5085), + [anon_sym_BSLASHAvolcite] = ACTIONS(5085), + [anon_sym_BSLASHnotecite] = ACTIONS(5085), + [anon_sym_BSLASHNotecite] = ACTIONS(5085), + [anon_sym_BSLASHpnotecite] = ACTIONS(5085), + [anon_sym_BSLASHPnotecite] = ACTIONS(5085), + [anon_sym_BSLASHfnotecite] = ACTIONS(5085), + [anon_sym_BSLASHlabel] = ACTIONS(5085), + [anon_sym_BSLASHref] = ACTIONS(5085), + [anon_sym_BSLASHeqref] = ACTIONS(5085), + [anon_sym_BSLASHvref] = ACTIONS(5085), + [anon_sym_BSLASHVref] = ACTIONS(5085), + [anon_sym_BSLASHautoref] = ACTIONS(5085), + [anon_sym_BSLASHpageref] = ACTIONS(5085), + [anon_sym_BSLASHcref] = ACTIONS(5085), + [anon_sym_BSLASHCref] = ACTIONS(5085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), + [anon_sym_BSLASHnamecref] = ACTIONS(5085), + [anon_sym_BSLASHnameCref] = ACTIONS(5085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), + [anon_sym_BSLASHlabelcref] = ACTIONS(5085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), + [anon_sym_BSLASHcrefrange] = ACTIONS(5085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCrefrange] = ACTIONS(5085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), + [anon_sym_BSLASHnewlabel] = ACTIONS(5085), + [anon_sym_BSLASHnewcommand] = ACTIONS(5085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), + [anon_sym_BSLASHdef] = ACTIONS(5085), + [anon_sym_BSLASHlet] = ACTIONS(5085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), + [anon_sym_BSLASHgls] = ACTIONS(5085), + [anon_sym_BSLASHGls] = ACTIONS(5085), + [anon_sym_BSLASHGLS] = ACTIONS(5085), + [anon_sym_BSLASHglspl] = ACTIONS(5085), + [anon_sym_BSLASHGlspl] = ACTIONS(5085), + [anon_sym_BSLASHGLSpl] = ACTIONS(5085), + [anon_sym_BSLASHglsdisp] = ACTIONS(5085), + [anon_sym_BSLASHglslink] = ACTIONS(5085), + [anon_sym_BSLASHglstext] = ACTIONS(5085), + [anon_sym_BSLASHGlstext] = ACTIONS(5085), + [anon_sym_BSLASHGLStext] = ACTIONS(5085), + [anon_sym_BSLASHglsfirst] = ACTIONS(5085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), + [anon_sym_BSLASHglsplural] = ACTIONS(5085), + [anon_sym_BSLASHGlsplural] = ACTIONS(5085), + [anon_sym_BSLASHGLSplural] = ACTIONS(5085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHglsname] = ACTIONS(5085), + [anon_sym_BSLASHGlsname] = ACTIONS(5085), + [anon_sym_BSLASHGLSname] = ACTIONS(5085), + [anon_sym_BSLASHglssymbol] = ACTIONS(5085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), + [anon_sym_BSLASHglsdesc] = ACTIONS(5085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), + [anon_sym_BSLASHglsuseri] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), + [anon_sym_BSLASHglsuserii] = ACTIONS(5085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), + [anon_sym_BSLASHglsuserv] = ACTIONS(5085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), + [anon_sym_BSLASHglsuservi] = ACTIONS(5085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), + [anon_sym_BSLASHnewacronym] = ACTIONS(5085), + [anon_sym_BSLASHacrshort] = ACTIONS(5085), + [anon_sym_BSLASHAcrshort] = ACTIONS(5085), + [anon_sym_BSLASHACRshort] = ACTIONS(5085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), + [anon_sym_BSLASHacrlong] = ACTIONS(5085), + [anon_sym_BSLASHAcrlong] = ACTIONS(5085), + [anon_sym_BSLASHACRlong] = ACTIONS(5085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), + [anon_sym_BSLASHacrfull] = ACTIONS(5085), + [anon_sym_BSLASHAcrfull] = ACTIONS(5085), + [anon_sym_BSLASHACRfull] = ACTIONS(5085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), + [anon_sym_BSLASHacs] = ACTIONS(5085), + [anon_sym_BSLASHAcs] = ACTIONS(5085), + [anon_sym_BSLASHacsp] = ACTIONS(5085), + [anon_sym_BSLASHAcsp] = ACTIONS(5085), + [anon_sym_BSLASHacl] = ACTIONS(5085), + [anon_sym_BSLASHAcl] = ACTIONS(5085), + [anon_sym_BSLASHaclp] = ACTIONS(5085), + [anon_sym_BSLASHAclp] = ACTIONS(5085), + [anon_sym_BSLASHacf] = ACTIONS(5085), + [anon_sym_BSLASHAcf] = ACTIONS(5085), + [anon_sym_BSLASHacfp] = ACTIONS(5085), + [anon_sym_BSLASHAcfp] = ACTIONS(5085), + [anon_sym_BSLASHac] = ACTIONS(5085), + [anon_sym_BSLASHAc] = ACTIONS(5085), + [anon_sym_BSLASHacp] = ACTIONS(5085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), + [anon_sym_BSLASHcolor] = ACTIONS(5085), + [anon_sym_BSLASHcolorbox] = ACTIONS(5085), + [anon_sym_BSLASHtextcolor] = ACTIONS(5085), + [anon_sym_BSLASHpagecolor] = ACTIONS(5085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), + [anon_sym_BSLASHtext] = ACTIONS(5085), + [anon_sym_BSLASHintertext] = ACTIONS(5085), + [anon_sym_shortintertext] = ACTIONS(5085), }, - [958] = { - [sym_command_name] = ACTIONS(4967), + [738] = { + [ts_builtin_sym_end] = ACTIONS(5087), + [sym_command_name] = ACTIONS(5089), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4965), - [anon_sym_BSLASHpart] = ACTIONS(4967), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddpart] = ACTIONS(4967), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4965), - [anon_sym_BSLASHchapter] = ACTIONS(4967), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddchap] = ACTIONS(4967), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsection] = ACTIONS(4967), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddsec] = ACTIONS(4967), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubsection] = ACTIONS(4967), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4967), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHparagraph] = ACTIONS(4967), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4967), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4965), - [anon_sym_BSLASHitem] = ACTIONS(4967), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4965), - [sym_word] = ACTIONS(4967), - [sym_placeholder] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_CARET] = ACTIONS(4967), - [anon_sym__] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4965), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4965), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4965), - [anon_sym_BSLASHbegin] = ACTIONS(4967), - [anon_sym_BSLASHusepackage] = ACTIONS(4967), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4967), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4967), - [anon_sym_BSLASHinclude] = ACTIONS(4967), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4967), - [anon_sym_BSLASHinput] = ACTIONS(4967), - [anon_sym_BSLASHsubfile] = ACTIONS(4967), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4967), - [anon_sym_BSLASHbibliography] = ACTIONS(4967), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4967), - [anon_sym_BSLASHincludesvg] = ACTIONS(4967), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4967), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4967), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4967), - [anon_sym_BSLASHimport] = ACTIONS(4967), - [anon_sym_BSLASHsubimport] = ACTIONS(4967), - [anon_sym_BSLASHinputfrom] = ACTIONS(4967), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4967), - [anon_sym_BSLASHincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHcaption] = ACTIONS(4967), - [anon_sym_BSLASHcite] = ACTIONS(4967), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCite] = ACTIONS(4967), - [anon_sym_BSLASHnocite] = ACTIONS(4967), - [anon_sym_BSLASHcitet] = ACTIONS(4967), - [anon_sym_BSLASHcitep] = ACTIONS(4967), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteauthor] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitetitle] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteyear] = ACTIONS(4967), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitedate] = ACTIONS(4967), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteurl] = ACTIONS(4967), - [anon_sym_BSLASHfullcite] = ACTIONS(4967), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4967), - [anon_sym_BSLASHcitealt] = ACTIONS(4967), - [anon_sym_BSLASHcitealp] = ACTIONS(4967), - [anon_sym_BSLASHcitetext] = ACTIONS(4967), - [anon_sym_BSLASHparencite] = ACTIONS(4967), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHParencite] = ACTIONS(4967), - [anon_sym_BSLASHfootcite] = ACTIONS(4967), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4967), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4967), - [anon_sym_BSLASHtextcite] = ACTIONS(4967), - [anon_sym_BSLASHTextcite] = ACTIONS(4967), - [anon_sym_BSLASHsmartcite] = ACTIONS(4967), - [anon_sym_BSLASHSmartcite] = ACTIONS(4967), - [anon_sym_BSLASHsupercite] = ACTIONS(4967), - [anon_sym_BSLASHautocite] = ACTIONS(4967), - [anon_sym_BSLASHAutocite] = ACTIONS(4967), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHvolcite] = ACTIONS(4967), - [anon_sym_BSLASHVolcite] = ACTIONS(4967), - [anon_sym_BSLASHpvolcite] = ACTIONS(4967), - [anon_sym_BSLASHPvolcite] = ACTIONS(4967), - [anon_sym_BSLASHfvolcite] = ACTIONS(4967), - [anon_sym_BSLASHftvolcite] = ACTIONS(4967), - [anon_sym_BSLASHsvolcite] = ACTIONS(4967), - [anon_sym_BSLASHSvolcite] = ACTIONS(4967), - [anon_sym_BSLASHtvolcite] = ACTIONS(4967), - [anon_sym_BSLASHTvolcite] = ACTIONS(4967), - [anon_sym_BSLASHavolcite] = ACTIONS(4967), - [anon_sym_BSLASHAvolcite] = ACTIONS(4967), - [anon_sym_BSLASHnotecite] = ACTIONS(4967), - [anon_sym_BSLASHNotecite] = ACTIONS(4967), - [anon_sym_BSLASHpnotecite] = ACTIONS(4967), - [anon_sym_BSLASHPnotecite] = ACTIONS(4967), - [anon_sym_BSLASHfnotecite] = ACTIONS(4967), - [anon_sym_BSLASHlabel] = ACTIONS(4967), - [anon_sym_BSLASHref] = ACTIONS(4967), - [anon_sym_BSLASHeqref] = ACTIONS(4967), - [anon_sym_BSLASHvref] = ACTIONS(4967), - [anon_sym_BSLASHVref] = ACTIONS(4967), - [anon_sym_BSLASHautoref] = ACTIONS(4967), - [anon_sym_BSLASHpageref] = ACTIONS(4967), - [anon_sym_BSLASHcref] = ACTIONS(4967), - [anon_sym_BSLASHCref] = ACTIONS(4967), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnameCref] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHlabelcref] = ACTIONS(4967), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCrefrange] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnewlabel] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4965), - [anon_sym_BSLASHdef] = ACTIONS(4967), - [anon_sym_BSLASHlet] = ACTIONS(4967), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4967), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4967), - [anon_sym_BSLASHgls] = ACTIONS(4967), - [anon_sym_BSLASHGls] = ACTIONS(4967), - [anon_sym_BSLASHGLS] = ACTIONS(4967), - [anon_sym_BSLASHglspl] = ACTIONS(4967), - [anon_sym_BSLASHGlspl] = ACTIONS(4967), - [anon_sym_BSLASHGLSpl] = ACTIONS(4967), - [anon_sym_BSLASHglsdisp] = ACTIONS(4967), - [anon_sym_BSLASHglslink] = ACTIONS(4967), - [anon_sym_BSLASHglstext] = ACTIONS(4967), - [anon_sym_BSLASHGlstext] = ACTIONS(4967), - [anon_sym_BSLASHGLStext] = ACTIONS(4967), - [anon_sym_BSLASHglsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4967), - [anon_sym_BSLASHglsplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSplural] = ACTIONS(4967), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHglsname] = ACTIONS(4967), - [anon_sym_BSLASHGlsname] = ACTIONS(4967), - [anon_sym_BSLASHGLSname] = ACTIONS(4967), - [anon_sym_BSLASHglssymbol] = ACTIONS(4967), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4967), - [anon_sym_BSLASHglsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4967), - [anon_sym_BSLASHglsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4967), - [anon_sym_BSLASHglsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4967), - [anon_sym_BSLASHglsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4967), - [anon_sym_BSLASHglsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4967), - [anon_sym_BSLASHnewacronym] = ACTIONS(4967), - [anon_sym_BSLASHacrshort] = ACTIONS(4967), - [anon_sym_BSLASHAcrshort] = ACTIONS(4967), - [anon_sym_BSLASHACRshort] = ACTIONS(4967), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4967), - [anon_sym_BSLASHacrlong] = ACTIONS(4967), - [anon_sym_BSLASHAcrlong] = ACTIONS(4967), - [anon_sym_BSLASHACRlong] = ACTIONS(4967), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4967), - [anon_sym_BSLASHacrfull] = ACTIONS(4967), - [anon_sym_BSLASHAcrfull] = ACTIONS(4967), - [anon_sym_BSLASHACRfull] = ACTIONS(4967), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4967), - [anon_sym_BSLASHacs] = ACTIONS(4967), - [anon_sym_BSLASHAcs] = ACTIONS(4967), - [anon_sym_BSLASHacsp] = ACTIONS(4967), - [anon_sym_BSLASHAcsp] = ACTIONS(4967), - [anon_sym_BSLASHacl] = ACTIONS(4967), - [anon_sym_BSLASHAcl] = ACTIONS(4967), - [anon_sym_BSLASHaclp] = ACTIONS(4967), - [anon_sym_BSLASHAclp] = ACTIONS(4967), - [anon_sym_BSLASHacf] = ACTIONS(4967), - [anon_sym_BSLASHAcf] = ACTIONS(4967), - [anon_sym_BSLASHacfp] = ACTIONS(4967), - [anon_sym_BSLASHAcfp] = ACTIONS(4967), - [anon_sym_BSLASHac] = ACTIONS(4967), - [anon_sym_BSLASHAc] = ACTIONS(4967), - [anon_sym_BSLASHacp] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4967), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4967), - [anon_sym_BSLASHcolor] = ACTIONS(4967), - [anon_sym_BSLASHcolorbox] = ACTIONS(4967), - [anon_sym_BSLASHtextcolor] = ACTIONS(4967), - [anon_sym_BSLASHpagecolor] = ACTIONS(4967), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4967), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4967), + [anon_sym_BSLASHiffalse] = ACTIONS(5089), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_RPAREN] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_RBRACK] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_EQ] = ACTIONS(5087), + [anon_sym_BSLASHpart] = ACTIONS(5089), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddpart] = ACTIONS(5089), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), + [anon_sym_BSLASHchapter] = ACTIONS(5089), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddchap] = ACTIONS(5089), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsection] = ACTIONS(5089), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddsec] = ACTIONS(5089), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubsection] = ACTIONS(5089), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHparagraph] = ACTIONS(5089), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), + [anon_sym_BSLASHitem] = ACTIONS(5089), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), + [anon_sym_LBRACE] = ACTIONS(5087), + [anon_sym_RBRACE] = ACTIONS(5087), + [sym_word] = ACTIONS(5089), + [sym_placeholder] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5089), + [anon_sym__] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_BANG] = ACTIONS(5089), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_COLON] = ACTIONS(5089), + [anon_sym_SQUOTE] = ACTIONS(5089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), + [anon_sym_DOLLAR] = ACTIONS(5089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), + [anon_sym_BSLASHbegin] = ACTIONS(5089), + [anon_sym_BSLASHusepackage] = ACTIONS(5089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), + [anon_sym_BSLASHinclude] = ACTIONS(5089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), + [anon_sym_BSLASHinput] = ACTIONS(5089), + [anon_sym_BSLASHsubfile] = ACTIONS(5089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), + [anon_sym_BSLASHbibliography] = ACTIONS(5089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), + [anon_sym_BSLASHincludesvg] = ACTIONS(5089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), + [anon_sym_BSLASHimport] = ACTIONS(5089), + [anon_sym_BSLASHsubimport] = ACTIONS(5089), + [anon_sym_BSLASHinputfrom] = ACTIONS(5089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), + [anon_sym_BSLASHincludefrom] = ACTIONS(5089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), + [anon_sym_BSLASHcaption] = ACTIONS(5089), + [anon_sym_BSLASHcite] = ACTIONS(5089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCite] = ACTIONS(5089), + [anon_sym_BSLASHnocite] = ACTIONS(5089), + [anon_sym_BSLASHcitet] = ACTIONS(5089), + [anon_sym_BSLASHcitep] = ACTIONS(5089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteauthor] = ACTIONS(5089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitetitle] = ACTIONS(5089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteyear] = ACTIONS(5089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitedate] = ACTIONS(5089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteurl] = ACTIONS(5089), + [anon_sym_BSLASHfullcite] = ACTIONS(5089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), + [anon_sym_BSLASHcitealt] = ACTIONS(5089), + [anon_sym_BSLASHcitealp] = ACTIONS(5089), + [anon_sym_BSLASHcitetext] = ACTIONS(5089), + [anon_sym_BSLASHparencite] = ACTIONS(5089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHParencite] = ACTIONS(5089), + [anon_sym_BSLASHfootcite] = ACTIONS(5089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), + [anon_sym_BSLASHtextcite] = ACTIONS(5089), + [anon_sym_BSLASHTextcite] = ACTIONS(5089), + [anon_sym_BSLASHsmartcite] = ACTIONS(5089), + [anon_sym_BSLASHSmartcite] = ACTIONS(5089), + [anon_sym_BSLASHsupercite] = ACTIONS(5089), + [anon_sym_BSLASHautocite] = ACTIONS(5089), + [anon_sym_BSLASHAutocite] = ACTIONS(5089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHvolcite] = ACTIONS(5089), + [anon_sym_BSLASHVolcite] = ACTIONS(5089), + [anon_sym_BSLASHpvolcite] = ACTIONS(5089), + [anon_sym_BSLASHPvolcite] = ACTIONS(5089), + [anon_sym_BSLASHfvolcite] = ACTIONS(5089), + [anon_sym_BSLASHftvolcite] = ACTIONS(5089), + [anon_sym_BSLASHsvolcite] = ACTIONS(5089), + [anon_sym_BSLASHSvolcite] = ACTIONS(5089), + [anon_sym_BSLASHtvolcite] = ACTIONS(5089), + [anon_sym_BSLASHTvolcite] = ACTIONS(5089), + [anon_sym_BSLASHavolcite] = ACTIONS(5089), + [anon_sym_BSLASHAvolcite] = ACTIONS(5089), + [anon_sym_BSLASHnotecite] = ACTIONS(5089), + [anon_sym_BSLASHNotecite] = ACTIONS(5089), + [anon_sym_BSLASHpnotecite] = ACTIONS(5089), + [anon_sym_BSLASHPnotecite] = ACTIONS(5089), + [anon_sym_BSLASHfnotecite] = ACTIONS(5089), + [anon_sym_BSLASHlabel] = ACTIONS(5089), + [anon_sym_BSLASHref] = ACTIONS(5089), + [anon_sym_BSLASHeqref] = ACTIONS(5089), + [anon_sym_BSLASHvref] = ACTIONS(5089), + [anon_sym_BSLASHVref] = ACTIONS(5089), + [anon_sym_BSLASHautoref] = ACTIONS(5089), + [anon_sym_BSLASHpageref] = ACTIONS(5089), + [anon_sym_BSLASHcref] = ACTIONS(5089), + [anon_sym_BSLASHCref] = ACTIONS(5089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), + [anon_sym_BSLASHnamecref] = ACTIONS(5089), + [anon_sym_BSLASHnameCref] = ACTIONS(5089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), + [anon_sym_BSLASHlabelcref] = ACTIONS(5089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), + [anon_sym_BSLASHcrefrange] = ACTIONS(5089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCrefrange] = ACTIONS(5089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), + [anon_sym_BSLASHnewlabel] = ACTIONS(5089), + [anon_sym_BSLASHnewcommand] = ACTIONS(5089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), + [anon_sym_BSLASHdef] = ACTIONS(5089), + [anon_sym_BSLASHlet] = ACTIONS(5089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), + [anon_sym_BSLASHgls] = ACTIONS(5089), + [anon_sym_BSLASHGls] = ACTIONS(5089), + [anon_sym_BSLASHGLS] = ACTIONS(5089), + [anon_sym_BSLASHglspl] = ACTIONS(5089), + [anon_sym_BSLASHGlspl] = ACTIONS(5089), + [anon_sym_BSLASHGLSpl] = ACTIONS(5089), + [anon_sym_BSLASHglsdisp] = ACTIONS(5089), + [anon_sym_BSLASHglslink] = ACTIONS(5089), + [anon_sym_BSLASHglstext] = ACTIONS(5089), + [anon_sym_BSLASHGlstext] = ACTIONS(5089), + [anon_sym_BSLASHGLStext] = ACTIONS(5089), + [anon_sym_BSLASHglsfirst] = ACTIONS(5089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), + [anon_sym_BSLASHglsplural] = ACTIONS(5089), + [anon_sym_BSLASHGlsplural] = ACTIONS(5089), + [anon_sym_BSLASHGLSplural] = ACTIONS(5089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHglsname] = ACTIONS(5089), + [anon_sym_BSLASHGlsname] = ACTIONS(5089), + [anon_sym_BSLASHGLSname] = ACTIONS(5089), + [anon_sym_BSLASHglssymbol] = ACTIONS(5089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), + [anon_sym_BSLASHglsdesc] = ACTIONS(5089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), + [anon_sym_BSLASHglsuseri] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), + [anon_sym_BSLASHglsuserii] = ACTIONS(5089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), + [anon_sym_BSLASHglsuserv] = ACTIONS(5089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), + [anon_sym_BSLASHglsuservi] = ACTIONS(5089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), + [anon_sym_BSLASHnewacronym] = ACTIONS(5089), + [anon_sym_BSLASHacrshort] = ACTIONS(5089), + [anon_sym_BSLASHAcrshort] = ACTIONS(5089), + [anon_sym_BSLASHACRshort] = ACTIONS(5089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), + [anon_sym_BSLASHacrlong] = ACTIONS(5089), + [anon_sym_BSLASHAcrlong] = ACTIONS(5089), + [anon_sym_BSLASHACRlong] = ACTIONS(5089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), + [anon_sym_BSLASHacrfull] = ACTIONS(5089), + [anon_sym_BSLASHAcrfull] = ACTIONS(5089), + [anon_sym_BSLASHACRfull] = ACTIONS(5089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), + [anon_sym_BSLASHacs] = ACTIONS(5089), + [anon_sym_BSLASHAcs] = ACTIONS(5089), + [anon_sym_BSLASHacsp] = ACTIONS(5089), + [anon_sym_BSLASHAcsp] = ACTIONS(5089), + [anon_sym_BSLASHacl] = ACTIONS(5089), + [anon_sym_BSLASHAcl] = ACTIONS(5089), + [anon_sym_BSLASHaclp] = ACTIONS(5089), + [anon_sym_BSLASHAclp] = ACTIONS(5089), + [anon_sym_BSLASHacf] = ACTIONS(5089), + [anon_sym_BSLASHAcf] = ACTIONS(5089), + [anon_sym_BSLASHacfp] = ACTIONS(5089), + [anon_sym_BSLASHAcfp] = ACTIONS(5089), + [anon_sym_BSLASHac] = ACTIONS(5089), + [anon_sym_BSLASHAc] = ACTIONS(5089), + [anon_sym_BSLASHacp] = ACTIONS(5089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), + [anon_sym_BSLASHcolor] = ACTIONS(5089), + [anon_sym_BSLASHcolorbox] = ACTIONS(5089), + [anon_sym_BSLASHtextcolor] = ACTIONS(5089), + [anon_sym_BSLASHpagecolor] = ACTIONS(5089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHtext] = ACTIONS(5089), + [anon_sym_BSLASHintertext] = ACTIONS(5089), + [anon_sym_shortintertext] = ACTIONS(5089), }, - [959] = { - [sym_command_name] = ACTIONS(4971), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_RBRACK] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_BSLASHpart] = ACTIONS(4971), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddpart] = ACTIONS(4971), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4969), - [anon_sym_BSLASHchapter] = ACTIONS(4971), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddchap] = ACTIONS(4971), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsection] = ACTIONS(4971), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddsec] = ACTIONS(4971), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubsection] = ACTIONS(4971), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4971), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHparagraph] = ACTIONS(4971), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4971), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4969), - [anon_sym_BSLASHitem] = ACTIONS(4971), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4969), - [anon_sym_LBRACE] = ACTIONS(4969), - [sym_word] = ACTIONS(4971), - [sym_placeholder] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_CARET] = ACTIONS(4971), - [anon_sym__] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4969), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4969), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4969), - [anon_sym_BSLASHbegin] = ACTIONS(4971), - [anon_sym_BSLASHusepackage] = ACTIONS(4971), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4971), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4971), - [anon_sym_BSLASHinclude] = ACTIONS(4971), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4971), - [anon_sym_BSLASHinput] = ACTIONS(4971), - [anon_sym_BSLASHsubfile] = ACTIONS(4971), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4971), - [anon_sym_BSLASHbibliography] = ACTIONS(4971), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4971), - [anon_sym_BSLASHincludesvg] = ACTIONS(4971), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4971), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4971), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4971), - [anon_sym_BSLASHimport] = ACTIONS(4971), - [anon_sym_BSLASHsubimport] = ACTIONS(4971), - [anon_sym_BSLASHinputfrom] = ACTIONS(4971), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4971), - [anon_sym_BSLASHincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHcaption] = ACTIONS(4971), - [anon_sym_BSLASHcite] = ACTIONS(4971), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCite] = ACTIONS(4971), - [anon_sym_BSLASHnocite] = ACTIONS(4971), - [anon_sym_BSLASHcitet] = ACTIONS(4971), - [anon_sym_BSLASHcitep] = ACTIONS(4971), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteyear] = ACTIONS(4971), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitedate] = ACTIONS(4971), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteurl] = ACTIONS(4971), - [anon_sym_BSLASHfullcite] = ACTIONS(4971), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4971), - [anon_sym_BSLASHcitealt] = ACTIONS(4971), - [anon_sym_BSLASHcitealp] = ACTIONS(4971), - [anon_sym_BSLASHcitetext] = ACTIONS(4971), - [anon_sym_BSLASHparencite] = ACTIONS(4971), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHParencite] = ACTIONS(4971), - [anon_sym_BSLASHfootcite] = ACTIONS(4971), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4971), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4971), - [anon_sym_BSLASHtextcite] = ACTIONS(4971), - [anon_sym_BSLASHTextcite] = ACTIONS(4971), - [anon_sym_BSLASHsmartcite] = ACTIONS(4971), - [anon_sym_BSLASHSmartcite] = ACTIONS(4971), - [anon_sym_BSLASHsupercite] = ACTIONS(4971), - [anon_sym_BSLASHautocite] = ACTIONS(4971), - [anon_sym_BSLASHAutocite] = ACTIONS(4971), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHvolcite] = ACTIONS(4971), - [anon_sym_BSLASHVolcite] = ACTIONS(4971), - [anon_sym_BSLASHpvolcite] = ACTIONS(4971), - [anon_sym_BSLASHPvolcite] = ACTIONS(4971), - [anon_sym_BSLASHfvolcite] = ACTIONS(4971), - [anon_sym_BSLASHftvolcite] = ACTIONS(4971), - [anon_sym_BSLASHsvolcite] = ACTIONS(4971), - [anon_sym_BSLASHSvolcite] = ACTIONS(4971), - [anon_sym_BSLASHtvolcite] = ACTIONS(4971), - [anon_sym_BSLASHTvolcite] = ACTIONS(4971), - [anon_sym_BSLASHavolcite] = ACTIONS(4971), - [anon_sym_BSLASHAvolcite] = ACTIONS(4971), - [anon_sym_BSLASHnotecite] = ACTIONS(4971), - [anon_sym_BSLASHNotecite] = ACTIONS(4971), - [anon_sym_BSLASHpnotecite] = ACTIONS(4971), - [anon_sym_BSLASHPnotecite] = ACTIONS(4971), - [anon_sym_BSLASHfnotecite] = ACTIONS(4971), - [anon_sym_BSLASHlabel] = ACTIONS(4971), - [anon_sym_BSLASHref] = ACTIONS(4971), - [anon_sym_BSLASHeqref] = ACTIONS(4971), - [anon_sym_BSLASHvref] = ACTIONS(4971), - [anon_sym_BSLASHVref] = ACTIONS(4971), - [anon_sym_BSLASHautoref] = ACTIONS(4971), - [anon_sym_BSLASHpageref] = ACTIONS(4971), - [anon_sym_BSLASHcref] = ACTIONS(4971), - [anon_sym_BSLASHCref] = ACTIONS(4971), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnameCref] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHlabelcref] = ACTIONS(4971), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnewlabel] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4969), - [anon_sym_BSLASHdef] = ACTIONS(4971), - [anon_sym_BSLASHlet] = ACTIONS(4971), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4971), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4971), - [anon_sym_BSLASHgls] = ACTIONS(4971), - [anon_sym_BSLASHGls] = ACTIONS(4971), - [anon_sym_BSLASHGLS] = ACTIONS(4971), - [anon_sym_BSLASHglspl] = ACTIONS(4971), - [anon_sym_BSLASHGlspl] = ACTIONS(4971), - [anon_sym_BSLASHGLSpl] = ACTIONS(4971), - [anon_sym_BSLASHglsdisp] = ACTIONS(4971), - [anon_sym_BSLASHglslink] = ACTIONS(4971), - [anon_sym_BSLASHglstext] = ACTIONS(4971), - [anon_sym_BSLASHGlstext] = ACTIONS(4971), - [anon_sym_BSLASHGLStext] = ACTIONS(4971), - [anon_sym_BSLASHglsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4971), - [anon_sym_BSLASHglsplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSplural] = ACTIONS(4971), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHglsname] = ACTIONS(4971), - [anon_sym_BSLASHGlsname] = ACTIONS(4971), - [anon_sym_BSLASHGLSname] = ACTIONS(4971), - [anon_sym_BSLASHglssymbol] = ACTIONS(4971), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4971), - [anon_sym_BSLASHglsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4971), - [anon_sym_BSLASHglsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4971), - [anon_sym_BSLASHglsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4971), - [anon_sym_BSLASHglsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4971), - [anon_sym_BSLASHglsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4971), - [anon_sym_BSLASHnewacronym] = ACTIONS(4971), - [anon_sym_BSLASHacrshort] = ACTIONS(4971), - [anon_sym_BSLASHAcrshort] = ACTIONS(4971), - [anon_sym_BSLASHACRshort] = ACTIONS(4971), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4971), - [anon_sym_BSLASHacrlong] = ACTIONS(4971), - [anon_sym_BSLASHAcrlong] = ACTIONS(4971), - [anon_sym_BSLASHACRlong] = ACTIONS(4971), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4971), - [anon_sym_BSLASHacrfull] = ACTIONS(4971), - [anon_sym_BSLASHAcrfull] = ACTIONS(4971), - [anon_sym_BSLASHACRfull] = ACTIONS(4971), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4971), - [anon_sym_BSLASHacs] = ACTIONS(4971), - [anon_sym_BSLASHAcs] = ACTIONS(4971), - [anon_sym_BSLASHacsp] = ACTIONS(4971), - [anon_sym_BSLASHAcsp] = ACTIONS(4971), - [anon_sym_BSLASHacl] = ACTIONS(4971), - [anon_sym_BSLASHAcl] = ACTIONS(4971), - [anon_sym_BSLASHaclp] = ACTIONS(4971), - [anon_sym_BSLASHAclp] = ACTIONS(4971), - [anon_sym_BSLASHacf] = ACTIONS(4971), - [anon_sym_BSLASHAcf] = ACTIONS(4971), - [anon_sym_BSLASHacfp] = ACTIONS(4971), - [anon_sym_BSLASHAcfp] = ACTIONS(4971), - [anon_sym_BSLASHac] = ACTIONS(4971), - [anon_sym_BSLASHAc] = ACTIONS(4971), - [anon_sym_BSLASHacp] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4971), - [anon_sym_BSLASHcolor] = ACTIONS(4971), - [anon_sym_BSLASHcolorbox] = ACTIONS(4971), - [anon_sym_BSLASHtextcolor] = ACTIONS(4971), - [anon_sym_BSLASHpagecolor] = ACTIONS(4971), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4971), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4971), + [739] = { + [ts_builtin_sym_end] = ACTIONS(5091), + [sym_command_name] = ACTIONS(5093), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_RBRACK] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5091), + [anon_sym_BSLASHpart] = ACTIONS(5093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddpart] = ACTIONS(5093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), + [anon_sym_BSLASHchapter] = ACTIONS(5093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddchap] = ACTIONS(5093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsection] = ACTIONS(5093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddsec] = ACTIONS(5093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubsection] = ACTIONS(5093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHparagraph] = ACTIONS(5093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), + [anon_sym_BSLASHitem] = ACTIONS(5093), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), + [anon_sym_LBRACE] = ACTIONS(5091), + [anon_sym_RBRACE] = ACTIONS(5091), + [sym_word] = ACTIONS(5093), + [sym_placeholder] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(5093), + [anon_sym_STAR] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5093), + [anon_sym_CARET] = ACTIONS(5093), + [anon_sym__] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5093), + [anon_sym_GT] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(5093), + [anon_sym_PIPE] = ACTIONS(5093), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_SQUOTE] = ACTIONS(5093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), + [anon_sym_DOLLAR] = ACTIONS(5093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), + [anon_sym_BSLASHbegin] = ACTIONS(5093), + [anon_sym_BSLASHusepackage] = ACTIONS(5093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), + [anon_sym_BSLASHinclude] = ACTIONS(5093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), + [anon_sym_BSLASHinput] = ACTIONS(5093), + [anon_sym_BSLASHsubfile] = ACTIONS(5093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), + [anon_sym_BSLASHbibliography] = ACTIONS(5093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), + [anon_sym_BSLASHincludesvg] = ACTIONS(5093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), + [anon_sym_BSLASHimport] = ACTIONS(5093), + [anon_sym_BSLASHsubimport] = ACTIONS(5093), + [anon_sym_BSLASHinputfrom] = ACTIONS(5093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), + [anon_sym_BSLASHincludefrom] = ACTIONS(5093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), + [anon_sym_BSLASHcaption] = ACTIONS(5093), + [anon_sym_BSLASHcite] = ACTIONS(5093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCite] = ACTIONS(5093), + [anon_sym_BSLASHnocite] = ACTIONS(5093), + [anon_sym_BSLASHcitet] = ACTIONS(5093), + [anon_sym_BSLASHcitep] = ACTIONS(5093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteauthor] = ACTIONS(5093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitetitle] = ACTIONS(5093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteyear] = ACTIONS(5093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitedate] = ACTIONS(5093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteurl] = ACTIONS(5093), + [anon_sym_BSLASHfullcite] = ACTIONS(5093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), + [anon_sym_BSLASHcitealt] = ACTIONS(5093), + [anon_sym_BSLASHcitealp] = ACTIONS(5093), + [anon_sym_BSLASHcitetext] = ACTIONS(5093), + [anon_sym_BSLASHparencite] = ACTIONS(5093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHParencite] = ACTIONS(5093), + [anon_sym_BSLASHfootcite] = ACTIONS(5093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), + [anon_sym_BSLASHtextcite] = ACTIONS(5093), + [anon_sym_BSLASHTextcite] = ACTIONS(5093), + [anon_sym_BSLASHsmartcite] = ACTIONS(5093), + [anon_sym_BSLASHSmartcite] = ACTIONS(5093), + [anon_sym_BSLASHsupercite] = ACTIONS(5093), + [anon_sym_BSLASHautocite] = ACTIONS(5093), + [anon_sym_BSLASHAutocite] = ACTIONS(5093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHvolcite] = ACTIONS(5093), + [anon_sym_BSLASHVolcite] = ACTIONS(5093), + [anon_sym_BSLASHpvolcite] = ACTIONS(5093), + [anon_sym_BSLASHPvolcite] = ACTIONS(5093), + [anon_sym_BSLASHfvolcite] = ACTIONS(5093), + [anon_sym_BSLASHftvolcite] = ACTIONS(5093), + [anon_sym_BSLASHsvolcite] = ACTIONS(5093), + [anon_sym_BSLASHSvolcite] = ACTIONS(5093), + [anon_sym_BSLASHtvolcite] = ACTIONS(5093), + [anon_sym_BSLASHTvolcite] = ACTIONS(5093), + [anon_sym_BSLASHavolcite] = ACTIONS(5093), + [anon_sym_BSLASHAvolcite] = ACTIONS(5093), + [anon_sym_BSLASHnotecite] = ACTIONS(5093), + [anon_sym_BSLASHNotecite] = ACTIONS(5093), + [anon_sym_BSLASHpnotecite] = ACTIONS(5093), + [anon_sym_BSLASHPnotecite] = ACTIONS(5093), + [anon_sym_BSLASHfnotecite] = ACTIONS(5093), + [anon_sym_BSLASHlabel] = ACTIONS(5093), + [anon_sym_BSLASHref] = ACTIONS(5093), + [anon_sym_BSLASHeqref] = ACTIONS(5093), + [anon_sym_BSLASHvref] = ACTIONS(5093), + [anon_sym_BSLASHVref] = ACTIONS(5093), + [anon_sym_BSLASHautoref] = ACTIONS(5093), + [anon_sym_BSLASHpageref] = ACTIONS(5093), + [anon_sym_BSLASHcref] = ACTIONS(5093), + [anon_sym_BSLASHCref] = ACTIONS(5093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), + [anon_sym_BSLASHnamecref] = ACTIONS(5093), + [anon_sym_BSLASHnameCref] = ACTIONS(5093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), + [anon_sym_BSLASHlabelcref] = ACTIONS(5093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), + [anon_sym_BSLASHcrefrange] = ACTIONS(5093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCrefrange] = ACTIONS(5093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), + [anon_sym_BSLASHnewlabel] = ACTIONS(5093), + [anon_sym_BSLASHnewcommand] = ACTIONS(5093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), + [anon_sym_BSLASHdef] = ACTIONS(5093), + [anon_sym_BSLASHlet] = ACTIONS(5093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), + [anon_sym_BSLASHgls] = ACTIONS(5093), + [anon_sym_BSLASHGls] = ACTIONS(5093), + [anon_sym_BSLASHGLS] = ACTIONS(5093), + [anon_sym_BSLASHglspl] = ACTIONS(5093), + [anon_sym_BSLASHGlspl] = ACTIONS(5093), + [anon_sym_BSLASHGLSpl] = ACTIONS(5093), + [anon_sym_BSLASHglsdisp] = ACTIONS(5093), + [anon_sym_BSLASHglslink] = ACTIONS(5093), + [anon_sym_BSLASHglstext] = ACTIONS(5093), + [anon_sym_BSLASHGlstext] = ACTIONS(5093), + [anon_sym_BSLASHGLStext] = ACTIONS(5093), + [anon_sym_BSLASHglsfirst] = ACTIONS(5093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), + [anon_sym_BSLASHglsplural] = ACTIONS(5093), + [anon_sym_BSLASHGlsplural] = ACTIONS(5093), + [anon_sym_BSLASHGLSplural] = ACTIONS(5093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHglsname] = ACTIONS(5093), + [anon_sym_BSLASHGlsname] = ACTIONS(5093), + [anon_sym_BSLASHGLSname] = ACTIONS(5093), + [anon_sym_BSLASHglssymbol] = ACTIONS(5093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), + [anon_sym_BSLASHglsdesc] = ACTIONS(5093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), + [anon_sym_BSLASHglsuseri] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), + [anon_sym_BSLASHglsuserii] = ACTIONS(5093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), + [anon_sym_BSLASHglsuserv] = ACTIONS(5093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), + [anon_sym_BSLASHglsuservi] = ACTIONS(5093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), + [anon_sym_BSLASHnewacronym] = ACTIONS(5093), + [anon_sym_BSLASHacrshort] = ACTIONS(5093), + [anon_sym_BSLASHAcrshort] = ACTIONS(5093), + [anon_sym_BSLASHACRshort] = ACTIONS(5093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), + [anon_sym_BSLASHacrlong] = ACTIONS(5093), + [anon_sym_BSLASHAcrlong] = ACTIONS(5093), + [anon_sym_BSLASHACRlong] = ACTIONS(5093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), + [anon_sym_BSLASHacrfull] = ACTIONS(5093), + [anon_sym_BSLASHAcrfull] = ACTIONS(5093), + [anon_sym_BSLASHACRfull] = ACTIONS(5093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), + [anon_sym_BSLASHacs] = ACTIONS(5093), + [anon_sym_BSLASHAcs] = ACTIONS(5093), + [anon_sym_BSLASHacsp] = ACTIONS(5093), + [anon_sym_BSLASHAcsp] = ACTIONS(5093), + [anon_sym_BSLASHacl] = ACTIONS(5093), + [anon_sym_BSLASHAcl] = ACTIONS(5093), + [anon_sym_BSLASHaclp] = ACTIONS(5093), + [anon_sym_BSLASHAclp] = ACTIONS(5093), + [anon_sym_BSLASHacf] = ACTIONS(5093), + [anon_sym_BSLASHAcf] = ACTIONS(5093), + [anon_sym_BSLASHacfp] = ACTIONS(5093), + [anon_sym_BSLASHAcfp] = ACTIONS(5093), + [anon_sym_BSLASHac] = ACTIONS(5093), + [anon_sym_BSLASHAc] = ACTIONS(5093), + [anon_sym_BSLASHacp] = ACTIONS(5093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), + [anon_sym_BSLASHcolor] = ACTIONS(5093), + [anon_sym_BSLASHcolorbox] = ACTIONS(5093), + [anon_sym_BSLASHtextcolor] = ACTIONS(5093), + [anon_sym_BSLASHpagecolor] = ACTIONS(5093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHtext] = ACTIONS(5093), + [anon_sym_BSLASHintertext] = ACTIONS(5093), + [anon_sym_shortintertext] = ACTIONS(5093), }, - [960] = { - [sym_command_name] = ACTIONS(4975), + [740] = { + [ts_builtin_sym_end] = ACTIONS(5095), + [sym_command_name] = ACTIONS(5097), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_RPAREN] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_RBRACK] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4973), - [anon_sym_BSLASHpart] = ACTIONS(4975), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddpart] = ACTIONS(4975), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4973), - [anon_sym_BSLASHchapter] = ACTIONS(4975), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddchap] = ACTIONS(4975), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsection] = ACTIONS(4975), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddsec] = ACTIONS(4975), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubsection] = ACTIONS(4975), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4975), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHparagraph] = ACTIONS(4975), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4975), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4973), - [anon_sym_BSLASHitem] = ACTIONS(4975), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4973), - [anon_sym_LBRACE] = ACTIONS(4973), - [sym_word] = ACTIONS(4975), - [sym_placeholder] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym__] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4973), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4973), - [anon_sym_BSLASHbegin] = ACTIONS(4975), - [anon_sym_BSLASHusepackage] = ACTIONS(4975), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4975), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4975), - [anon_sym_BSLASHinclude] = ACTIONS(4975), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4975), - [anon_sym_BSLASHinput] = ACTIONS(4975), - [anon_sym_BSLASHsubfile] = ACTIONS(4975), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4975), - [anon_sym_BSLASHbibliography] = ACTIONS(4975), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4975), - [anon_sym_BSLASHincludesvg] = ACTIONS(4975), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4975), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4975), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4975), - [anon_sym_BSLASHimport] = ACTIONS(4975), - [anon_sym_BSLASHsubimport] = ACTIONS(4975), - [anon_sym_BSLASHinputfrom] = ACTIONS(4975), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4975), - [anon_sym_BSLASHincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHcaption] = ACTIONS(4975), - [anon_sym_BSLASHcite] = ACTIONS(4975), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCite] = ACTIONS(4975), - [anon_sym_BSLASHnocite] = ACTIONS(4975), - [anon_sym_BSLASHcitet] = ACTIONS(4975), - [anon_sym_BSLASHcitep] = ACTIONS(4975), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor] = ACTIONS(4975), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4975), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle] = ACTIONS(4975), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteyear] = ACTIONS(4975), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitedate] = ACTIONS(4975), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteurl] = ACTIONS(4975), - [anon_sym_BSLASHfullcite] = ACTIONS(4975), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4975), - [anon_sym_BSLASHcitealt] = ACTIONS(4975), - [anon_sym_BSLASHcitealp] = ACTIONS(4975), - [anon_sym_BSLASHcitetext] = ACTIONS(4975), - [anon_sym_BSLASHparencite] = ACTIONS(4975), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHParencite] = ACTIONS(4975), - [anon_sym_BSLASHfootcite] = ACTIONS(4975), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4975), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4975), - [anon_sym_BSLASHtextcite] = ACTIONS(4975), - [anon_sym_BSLASHTextcite] = ACTIONS(4975), - [anon_sym_BSLASHsmartcite] = ACTIONS(4975), - [anon_sym_BSLASHSmartcite] = ACTIONS(4975), - [anon_sym_BSLASHsupercite] = ACTIONS(4975), - [anon_sym_BSLASHautocite] = ACTIONS(4975), - [anon_sym_BSLASHAutocite] = ACTIONS(4975), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHvolcite] = ACTIONS(4975), - [anon_sym_BSLASHVolcite] = ACTIONS(4975), - [anon_sym_BSLASHpvolcite] = ACTIONS(4975), - [anon_sym_BSLASHPvolcite] = ACTIONS(4975), - [anon_sym_BSLASHfvolcite] = ACTIONS(4975), - [anon_sym_BSLASHftvolcite] = ACTIONS(4975), - [anon_sym_BSLASHsvolcite] = ACTIONS(4975), - [anon_sym_BSLASHSvolcite] = ACTIONS(4975), - [anon_sym_BSLASHtvolcite] = ACTIONS(4975), - [anon_sym_BSLASHTvolcite] = ACTIONS(4975), - [anon_sym_BSLASHavolcite] = ACTIONS(4975), - [anon_sym_BSLASHAvolcite] = ACTIONS(4975), - [anon_sym_BSLASHnotecite] = ACTIONS(4975), - [anon_sym_BSLASHNotecite] = ACTIONS(4975), - [anon_sym_BSLASHpnotecite] = ACTIONS(4975), - [anon_sym_BSLASHPnotecite] = ACTIONS(4975), - [anon_sym_BSLASHfnotecite] = ACTIONS(4975), - [anon_sym_BSLASHlabel] = ACTIONS(4975), - [anon_sym_BSLASHref] = ACTIONS(4975), - [anon_sym_BSLASHeqref] = ACTIONS(4975), - [anon_sym_BSLASHvref] = ACTIONS(4975), - [anon_sym_BSLASHVref] = ACTIONS(4975), - [anon_sym_BSLASHautoref] = ACTIONS(4975), - [anon_sym_BSLASHpageref] = ACTIONS(4975), - [anon_sym_BSLASHcref] = ACTIONS(4975), - [anon_sym_BSLASHCref] = ACTIONS(4975), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnameCref] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHlabelcref] = ACTIONS(4975), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange] = ACTIONS(4975), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnewlabel] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4975), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4975), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4975), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4973), - [anon_sym_BSLASHdef] = ACTIONS(4975), - [anon_sym_BSLASHlet] = ACTIONS(4975), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4975), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4975), - [anon_sym_BSLASHgls] = ACTIONS(4975), - [anon_sym_BSLASHGls] = ACTIONS(4975), - [anon_sym_BSLASHGLS] = ACTIONS(4975), - [anon_sym_BSLASHglspl] = ACTIONS(4975), - [anon_sym_BSLASHGlspl] = ACTIONS(4975), - [anon_sym_BSLASHGLSpl] = ACTIONS(4975), - [anon_sym_BSLASHglsdisp] = ACTIONS(4975), - [anon_sym_BSLASHglslink] = ACTIONS(4975), - [anon_sym_BSLASHglstext] = ACTIONS(4975), - [anon_sym_BSLASHGlstext] = ACTIONS(4975), - [anon_sym_BSLASHGLStext] = ACTIONS(4975), - [anon_sym_BSLASHglsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4975), - [anon_sym_BSLASHglsplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSplural] = ACTIONS(4975), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHglsname] = ACTIONS(4975), - [anon_sym_BSLASHGlsname] = ACTIONS(4975), - [anon_sym_BSLASHGLSname] = ACTIONS(4975), - [anon_sym_BSLASHglssymbol] = ACTIONS(4975), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4975), - [anon_sym_BSLASHglsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4975), - [anon_sym_BSLASHglsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4975), - [anon_sym_BSLASHglsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4975), - [anon_sym_BSLASHglsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4975), - [anon_sym_BSLASHglsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4975), - [anon_sym_BSLASHnewacronym] = ACTIONS(4975), - [anon_sym_BSLASHacrshort] = ACTIONS(4975), - [anon_sym_BSLASHAcrshort] = ACTIONS(4975), - [anon_sym_BSLASHACRshort] = ACTIONS(4975), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4975), - [anon_sym_BSLASHacrlong] = ACTIONS(4975), - [anon_sym_BSLASHAcrlong] = ACTIONS(4975), - [anon_sym_BSLASHACRlong] = ACTIONS(4975), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4975), - [anon_sym_BSLASHacrfull] = ACTIONS(4975), - [anon_sym_BSLASHAcrfull] = ACTIONS(4975), - [anon_sym_BSLASHACRfull] = ACTIONS(4975), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4975), - [anon_sym_BSLASHacs] = ACTIONS(4975), - [anon_sym_BSLASHAcs] = ACTIONS(4975), - [anon_sym_BSLASHacsp] = ACTIONS(4975), - [anon_sym_BSLASHAcsp] = ACTIONS(4975), - [anon_sym_BSLASHacl] = ACTIONS(4975), - [anon_sym_BSLASHAcl] = ACTIONS(4975), - [anon_sym_BSLASHaclp] = ACTIONS(4975), - [anon_sym_BSLASHAclp] = ACTIONS(4975), - [anon_sym_BSLASHacf] = ACTIONS(4975), - [anon_sym_BSLASHAcf] = ACTIONS(4975), - [anon_sym_BSLASHacfp] = ACTIONS(4975), - [anon_sym_BSLASHAcfp] = ACTIONS(4975), - [anon_sym_BSLASHac] = ACTIONS(4975), - [anon_sym_BSLASHAc] = ACTIONS(4975), - [anon_sym_BSLASHacp] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4975), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4975), - [anon_sym_BSLASHcolor] = ACTIONS(4975), - [anon_sym_BSLASHcolorbox] = ACTIONS(4975), - [anon_sym_BSLASHtextcolor] = ACTIONS(4975), - [anon_sym_BSLASHpagecolor] = ACTIONS(4975), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4975), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4975), + [anon_sym_BSLASHiffalse] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5095), + [anon_sym_RPAREN] = ACTIONS(5095), + [anon_sym_LBRACK] = ACTIONS(5095), + [anon_sym_RBRACK] = ACTIONS(5095), + [anon_sym_COMMA] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_BSLASHpart] = ACTIONS(5097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddpart] = ACTIONS(5097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), + [anon_sym_BSLASHchapter] = ACTIONS(5097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddchap] = ACTIONS(5097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsection] = ACTIONS(5097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddsec] = ACTIONS(5097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubsection] = ACTIONS(5097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHparagraph] = ACTIONS(5097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), + [anon_sym_BSLASHitem] = ACTIONS(5097), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5095), + [anon_sym_RBRACE] = ACTIONS(5095), + [sym_word] = ACTIONS(5097), + [sym_placeholder] = ACTIONS(5095), + [anon_sym_PLUS] = ACTIONS(5097), + [anon_sym_DASH] = ACTIONS(5097), + [anon_sym_STAR] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5097), + [anon_sym_CARET] = ACTIONS(5097), + [anon_sym__] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5097), + [anon_sym_GT] = ACTIONS(5097), + [anon_sym_BANG] = ACTIONS(5097), + [anon_sym_PIPE] = ACTIONS(5097), + [anon_sym_COLON] = ACTIONS(5097), + [anon_sym_SQUOTE] = ACTIONS(5097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), + [anon_sym_DOLLAR] = ACTIONS(5097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), + [anon_sym_BSLASHbegin] = ACTIONS(5097), + [anon_sym_BSLASHusepackage] = ACTIONS(5097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), + [anon_sym_BSLASHinclude] = ACTIONS(5097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), + [anon_sym_BSLASHinput] = ACTIONS(5097), + [anon_sym_BSLASHsubfile] = ACTIONS(5097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), + [anon_sym_BSLASHbibliography] = ACTIONS(5097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), + [anon_sym_BSLASHincludesvg] = ACTIONS(5097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), + [anon_sym_BSLASHimport] = ACTIONS(5097), + [anon_sym_BSLASHsubimport] = ACTIONS(5097), + [anon_sym_BSLASHinputfrom] = ACTIONS(5097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), + [anon_sym_BSLASHincludefrom] = ACTIONS(5097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), + [anon_sym_BSLASHcaption] = ACTIONS(5097), + [anon_sym_BSLASHcite] = ACTIONS(5097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCite] = ACTIONS(5097), + [anon_sym_BSLASHnocite] = ACTIONS(5097), + [anon_sym_BSLASHcitet] = ACTIONS(5097), + [anon_sym_BSLASHcitep] = ACTIONS(5097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteauthor] = ACTIONS(5097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitetitle] = ACTIONS(5097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteyear] = ACTIONS(5097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitedate] = ACTIONS(5097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteurl] = ACTIONS(5097), + [anon_sym_BSLASHfullcite] = ACTIONS(5097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), + [anon_sym_BSLASHcitealt] = ACTIONS(5097), + [anon_sym_BSLASHcitealp] = ACTIONS(5097), + [anon_sym_BSLASHcitetext] = ACTIONS(5097), + [anon_sym_BSLASHparencite] = ACTIONS(5097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHParencite] = ACTIONS(5097), + [anon_sym_BSLASHfootcite] = ACTIONS(5097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), + [anon_sym_BSLASHtextcite] = ACTIONS(5097), + [anon_sym_BSLASHTextcite] = ACTIONS(5097), + [anon_sym_BSLASHsmartcite] = ACTIONS(5097), + [anon_sym_BSLASHSmartcite] = ACTIONS(5097), + [anon_sym_BSLASHsupercite] = ACTIONS(5097), + [anon_sym_BSLASHautocite] = ACTIONS(5097), + [anon_sym_BSLASHAutocite] = ACTIONS(5097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHvolcite] = ACTIONS(5097), + [anon_sym_BSLASHVolcite] = ACTIONS(5097), + [anon_sym_BSLASHpvolcite] = ACTIONS(5097), + [anon_sym_BSLASHPvolcite] = ACTIONS(5097), + [anon_sym_BSLASHfvolcite] = ACTIONS(5097), + [anon_sym_BSLASHftvolcite] = ACTIONS(5097), + [anon_sym_BSLASHsvolcite] = ACTIONS(5097), + [anon_sym_BSLASHSvolcite] = ACTIONS(5097), + [anon_sym_BSLASHtvolcite] = ACTIONS(5097), + [anon_sym_BSLASHTvolcite] = ACTIONS(5097), + [anon_sym_BSLASHavolcite] = ACTIONS(5097), + [anon_sym_BSLASHAvolcite] = ACTIONS(5097), + [anon_sym_BSLASHnotecite] = ACTIONS(5097), + [anon_sym_BSLASHNotecite] = ACTIONS(5097), + [anon_sym_BSLASHpnotecite] = ACTIONS(5097), + [anon_sym_BSLASHPnotecite] = ACTIONS(5097), + [anon_sym_BSLASHfnotecite] = ACTIONS(5097), + [anon_sym_BSLASHlabel] = ACTIONS(5097), + [anon_sym_BSLASHref] = ACTIONS(5097), + [anon_sym_BSLASHeqref] = ACTIONS(5097), + [anon_sym_BSLASHvref] = ACTIONS(5097), + [anon_sym_BSLASHVref] = ACTIONS(5097), + [anon_sym_BSLASHautoref] = ACTIONS(5097), + [anon_sym_BSLASHpageref] = ACTIONS(5097), + [anon_sym_BSLASHcref] = ACTIONS(5097), + [anon_sym_BSLASHCref] = ACTIONS(5097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), + [anon_sym_BSLASHnamecref] = ACTIONS(5097), + [anon_sym_BSLASHnameCref] = ACTIONS(5097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), + [anon_sym_BSLASHlabelcref] = ACTIONS(5097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), + [anon_sym_BSLASHcrefrange] = ACTIONS(5097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCrefrange] = ACTIONS(5097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), + [anon_sym_BSLASHnewlabel] = ACTIONS(5097), + [anon_sym_BSLASHnewcommand] = ACTIONS(5097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), + [anon_sym_BSLASHdef] = ACTIONS(5097), + [anon_sym_BSLASHlet] = ACTIONS(5097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), + [anon_sym_BSLASHgls] = ACTIONS(5097), + [anon_sym_BSLASHGls] = ACTIONS(5097), + [anon_sym_BSLASHGLS] = ACTIONS(5097), + [anon_sym_BSLASHglspl] = ACTIONS(5097), + [anon_sym_BSLASHGlspl] = ACTIONS(5097), + [anon_sym_BSLASHGLSpl] = ACTIONS(5097), + [anon_sym_BSLASHglsdisp] = ACTIONS(5097), + [anon_sym_BSLASHglslink] = ACTIONS(5097), + [anon_sym_BSLASHglstext] = ACTIONS(5097), + [anon_sym_BSLASHGlstext] = ACTIONS(5097), + [anon_sym_BSLASHGLStext] = ACTIONS(5097), + [anon_sym_BSLASHglsfirst] = ACTIONS(5097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), + [anon_sym_BSLASHglsplural] = ACTIONS(5097), + [anon_sym_BSLASHGlsplural] = ACTIONS(5097), + [anon_sym_BSLASHGLSplural] = ACTIONS(5097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHglsname] = ACTIONS(5097), + [anon_sym_BSLASHGlsname] = ACTIONS(5097), + [anon_sym_BSLASHGLSname] = ACTIONS(5097), + [anon_sym_BSLASHglssymbol] = ACTIONS(5097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), + [anon_sym_BSLASHglsdesc] = ACTIONS(5097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), + [anon_sym_BSLASHglsuseri] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), + [anon_sym_BSLASHglsuserii] = ACTIONS(5097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), + [anon_sym_BSLASHglsuserv] = ACTIONS(5097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), + [anon_sym_BSLASHglsuservi] = ACTIONS(5097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), + [anon_sym_BSLASHnewacronym] = ACTIONS(5097), + [anon_sym_BSLASHacrshort] = ACTIONS(5097), + [anon_sym_BSLASHAcrshort] = ACTIONS(5097), + [anon_sym_BSLASHACRshort] = ACTIONS(5097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), + [anon_sym_BSLASHacrlong] = ACTIONS(5097), + [anon_sym_BSLASHAcrlong] = ACTIONS(5097), + [anon_sym_BSLASHACRlong] = ACTIONS(5097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), + [anon_sym_BSLASHacrfull] = ACTIONS(5097), + [anon_sym_BSLASHAcrfull] = ACTIONS(5097), + [anon_sym_BSLASHACRfull] = ACTIONS(5097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), + [anon_sym_BSLASHacs] = ACTIONS(5097), + [anon_sym_BSLASHAcs] = ACTIONS(5097), + [anon_sym_BSLASHacsp] = ACTIONS(5097), + [anon_sym_BSLASHAcsp] = ACTIONS(5097), + [anon_sym_BSLASHacl] = ACTIONS(5097), + [anon_sym_BSLASHAcl] = ACTIONS(5097), + [anon_sym_BSLASHaclp] = ACTIONS(5097), + [anon_sym_BSLASHAclp] = ACTIONS(5097), + [anon_sym_BSLASHacf] = ACTIONS(5097), + [anon_sym_BSLASHAcf] = ACTIONS(5097), + [anon_sym_BSLASHacfp] = ACTIONS(5097), + [anon_sym_BSLASHAcfp] = ACTIONS(5097), + [anon_sym_BSLASHac] = ACTIONS(5097), + [anon_sym_BSLASHAc] = ACTIONS(5097), + [anon_sym_BSLASHacp] = ACTIONS(5097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), + [anon_sym_BSLASHcolor] = ACTIONS(5097), + [anon_sym_BSLASHcolorbox] = ACTIONS(5097), + [anon_sym_BSLASHtextcolor] = ACTIONS(5097), + [anon_sym_BSLASHpagecolor] = ACTIONS(5097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), + [anon_sym_BSLASHtext] = ACTIONS(5097), + [anon_sym_BSLASHintertext] = ACTIONS(5097), + [anon_sym_shortintertext] = ACTIONS(5097), }, - [961] = { - [sym_command_name] = ACTIONS(4983), + [741] = { + [ts_builtin_sym_end] = ACTIONS(5099), + [sym_command_name] = ACTIONS(5101), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_BSLASHpart] = ACTIONS(4983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddpart] = ACTIONS(4983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHchapter] = ACTIONS(4983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddchap] = ACTIONS(4983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsection] = ACTIONS(4983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddsec] = ACTIONS(4983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHparagraph] = ACTIONS(4983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHitem] = ACTIONS(4983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(4981), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), - [anon_sym_BSLASHbegin] = ACTIONS(4983), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHiffalse] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5099), + [anon_sym_RPAREN] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [anon_sym_RBRACK] = ACTIONS(5099), + [anon_sym_COMMA] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_BSLASHpart] = ACTIONS(5101), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddpart] = ACTIONS(5101), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), + [anon_sym_BSLASHchapter] = ACTIONS(5101), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddchap] = ACTIONS(5101), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsection] = ACTIONS(5101), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddsec] = ACTIONS(5101), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubsection] = ACTIONS(5101), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHparagraph] = ACTIONS(5101), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), + [anon_sym_BSLASHitem] = ACTIONS(5101), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5099), + [anon_sym_RBRACE] = ACTIONS(5099), + [sym_word] = ACTIONS(5101), + [sym_placeholder] = ACTIONS(5099), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_CARET] = ACTIONS(5101), + [anon_sym__] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_BANG] = ACTIONS(5101), + [anon_sym_PIPE] = ACTIONS(5101), + [anon_sym_COLON] = ACTIONS(5101), + [anon_sym_SQUOTE] = ACTIONS(5101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), + [anon_sym_DOLLAR] = ACTIONS(5101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), + [anon_sym_BSLASHbegin] = ACTIONS(5101), + [anon_sym_BSLASHusepackage] = ACTIONS(5101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), + [anon_sym_BSLASHinclude] = ACTIONS(5101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), + [anon_sym_BSLASHinput] = ACTIONS(5101), + [anon_sym_BSLASHsubfile] = ACTIONS(5101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), + [anon_sym_BSLASHbibliography] = ACTIONS(5101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), + [anon_sym_BSLASHincludesvg] = ACTIONS(5101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), + [anon_sym_BSLASHimport] = ACTIONS(5101), + [anon_sym_BSLASHsubimport] = ACTIONS(5101), + [anon_sym_BSLASHinputfrom] = ACTIONS(5101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), + [anon_sym_BSLASHincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHcaption] = ACTIONS(5101), + [anon_sym_BSLASHcite] = ACTIONS(5101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCite] = ACTIONS(5101), + [anon_sym_BSLASHnocite] = ACTIONS(5101), + [anon_sym_BSLASHcitet] = ACTIONS(5101), + [anon_sym_BSLASHcitep] = ACTIONS(5101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteauthor] = ACTIONS(5101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitetitle] = ACTIONS(5101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteyear] = ACTIONS(5101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitedate] = ACTIONS(5101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteurl] = ACTIONS(5101), + [anon_sym_BSLASHfullcite] = ACTIONS(5101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), + [anon_sym_BSLASHcitealt] = ACTIONS(5101), + [anon_sym_BSLASHcitealp] = ACTIONS(5101), + [anon_sym_BSLASHcitetext] = ACTIONS(5101), + [anon_sym_BSLASHparencite] = ACTIONS(5101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHParencite] = ACTIONS(5101), + [anon_sym_BSLASHfootcite] = ACTIONS(5101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), + [anon_sym_BSLASHtextcite] = ACTIONS(5101), + [anon_sym_BSLASHTextcite] = ACTIONS(5101), + [anon_sym_BSLASHsmartcite] = ACTIONS(5101), + [anon_sym_BSLASHSmartcite] = ACTIONS(5101), + [anon_sym_BSLASHsupercite] = ACTIONS(5101), + [anon_sym_BSLASHautocite] = ACTIONS(5101), + [anon_sym_BSLASHAutocite] = ACTIONS(5101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHvolcite] = ACTIONS(5101), + [anon_sym_BSLASHVolcite] = ACTIONS(5101), + [anon_sym_BSLASHpvolcite] = ACTIONS(5101), + [anon_sym_BSLASHPvolcite] = ACTIONS(5101), + [anon_sym_BSLASHfvolcite] = ACTIONS(5101), + [anon_sym_BSLASHftvolcite] = ACTIONS(5101), + [anon_sym_BSLASHsvolcite] = ACTIONS(5101), + [anon_sym_BSLASHSvolcite] = ACTIONS(5101), + [anon_sym_BSLASHtvolcite] = ACTIONS(5101), + [anon_sym_BSLASHTvolcite] = ACTIONS(5101), + [anon_sym_BSLASHavolcite] = ACTIONS(5101), + [anon_sym_BSLASHAvolcite] = ACTIONS(5101), + [anon_sym_BSLASHnotecite] = ACTIONS(5101), + [anon_sym_BSLASHNotecite] = ACTIONS(5101), + [anon_sym_BSLASHpnotecite] = ACTIONS(5101), + [anon_sym_BSLASHPnotecite] = ACTIONS(5101), + [anon_sym_BSLASHfnotecite] = ACTIONS(5101), + [anon_sym_BSLASHlabel] = ACTIONS(5101), + [anon_sym_BSLASHref] = ACTIONS(5101), + [anon_sym_BSLASHeqref] = ACTIONS(5101), + [anon_sym_BSLASHvref] = ACTIONS(5101), + [anon_sym_BSLASHVref] = ACTIONS(5101), + [anon_sym_BSLASHautoref] = ACTIONS(5101), + [anon_sym_BSLASHpageref] = ACTIONS(5101), + [anon_sym_BSLASHcref] = ACTIONS(5101), + [anon_sym_BSLASHCref] = ACTIONS(5101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), + [anon_sym_BSLASHnamecref] = ACTIONS(5101), + [anon_sym_BSLASHnameCref] = ACTIONS(5101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), + [anon_sym_BSLASHlabelcref] = ACTIONS(5101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), + [anon_sym_BSLASHcrefrange] = ACTIONS(5101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCrefrange] = ACTIONS(5101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), + [anon_sym_BSLASHnewlabel] = ACTIONS(5101), + [anon_sym_BSLASHnewcommand] = ACTIONS(5101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), + [anon_sym_BSLASHdef] = ACTIONS(5101), + [anon_sym_BSLASHlet] = ACTIONS(5101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), + [anon_sym_BSLASHgls] = ACTIONS(5101), + [anon_sym_BSLASHGls] = ACTIONS(5101), + [anon_sym_BSLASHGLS] = ACTIONS(5101), + [anon_sym_BSLASHglspl] = ACTIONS(5101), + [anon_sym_BSLASHGlspl] = ACTIONS(5101), + [anon_sym_BSLASHGLSpl] = ACTIONS(5101), + [anon_sym_BSLASHglsdisp] = ACTIONS(5101), + [anon_sym_BSLASHglslink] = ACTIONS(5101), + [anon_sym_BSLASHglstext] = ACTIONS(5101), + [anon_sym_BSLASHGlstext] = ACTIONS(5101), + [anon_sym_BSLASHGLStext] = ACTIONS(5101), + [anon_sym_BSLASHglsfirst] = ACTIONS(5101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), + [anon_sym_BSLASHglsplural] = ACTIONS(5101), + [anon_sym_BSLASHGlsplural] = ACTIONS(5101), + [anon_sym_BSLASHGLSplural] = ACTIONS(5101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHglsname] = ACTIONS(5101), + [anon_sym_BSLASHGlsname] = ACTIONS(5101), + [anon_sym_BSLASHGLSname] = ACTIONS(5101), + [anon_sym_BSLASHglssymbol] = ACTIONS(5101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), + [anon_sym_BSLASHglsdesc] = ACTIONS(5101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), + [anon_sym_BSLASHglsuseri] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), + [anon_sym_BSLASHglsuserii] = ACTIONS(5101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), + [anon_sym_BSLASHglsuserv] = ACTIONS(5101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), + [anon_sym_BSLASHglsuservi] = ACTIONS(5101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), + [anon_sym_BSLASHnewacronym] = ACTIONS(5101), + [anon_sym_BSLASHacrshort] = ACTIONS(5101), + [anon_sym_BSLASHAcrshort] = ACTIONS(5101), + [anon_sym_BSLASHACRshort] = ACTIONS(5101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), + [anon_sym_BSLASHacrlong] = ACTIONS(5101), + [anon_sym_BSLASHAcrlong] = ACTIONS(5101), + [anon_sym_BSLASHACRlong] = ACTIONS(5101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), + [anon_sym_BSLASHacrfull] = ACTIONS(5101), + [anon_sym_BSLASHAcrfull] = ACTIONS(5101), + [anon_sym_BSLASHACRfull] = ACTIONS(5101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), + [anon_sym_BSLASHacs] = ACTIONS(5101), + [anon_sym_BSLASHAcs] = ACTIONS(5101), + [anon_sym_BSLASHacsp] = ACTIONS(5101), + [anon_sym_BSLASHAcsp] = ACTIONS(5101), + [anon_sym_BSLASHacl] = ACTIONS(5101), + [anon_sym_BSLASHAcl] = ACTIONS(5101), + [anon_sym_BSLASHaclp] = ACTIONS(5101), + [anon_sym_BSLASHAclp] = ACTIONS(5101), + [anon_sym_BSLASHacf] = ACTIONS(5101), + [anon_sym_BSLASHAcf] = ACTIONS(5101), + [anon_sym_BSLASHacfp] = ACTIONS(5101), + [anon_sym_BSLASHAcfp] = ACTIONS(5101), + [anon_sym_BSLASHac] = ACTIONS(5101), + [anon_sym_BSLASHAc] = ACTIONS(5101), + [anon_sym_BSLASHacp] = ACTIONS(5101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), + [anon_sym_BSLASHcolor] = ACTIONS(5101), + [anon_sym_BSLASHcolorbox] = ACTIONS(5101), + [anon_sym_BSLASHtextcolor] = ACTIONS(5101), + [anon_sym_BSLASHpagecolor] = ACTIONS(5101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), + [anon_sym_BSLASHtext] = ACTIONS(5101), + [anon_sym_BSLASHintertext] = ACTIONS(5101), + [anon_sym_shortintertext] = ACTIONS(5101), }, - [962] = { - [sym_command_name] = ACTIONS(5021), + [742] = { + [sym_brack_group_text] = STATE(1184), + [sym_command_name] = ACTIONS(4857), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_BSLASHpart] = ACTIONS(5021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddpart] = ACTIONS(5021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHchapter] = ACTIONS(5021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddchap] = ACTIONS(5021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsection] = ACTIONS(5021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddsec] = ACTIONS(5021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHparagraph] = ACTIONS(5021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHitem] = ACTIONS(5021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5019), - [anon_sym_BSLASHbegin] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHiffalse] = ACTIONS(4857), + [anon_sym_LPAREN] = ACTIONS(4855), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_RBRACK] = ACTIONS(4855), + [anon_sym_COMMA] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4855), + [anon_sym_BSLASHpart] = ACTIONS(4857), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddpart] = ACTIONS(4857), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4855), + [anon_sym_BSLASHchapter] = ACTIONS(4857), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddchap] = ACTIONS(4857), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsection] = ACTIONS(4857), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddsec] = ACTIONS(4857), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubsection] = ACTIONS(4857), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4857), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHparagraph] = ACTIONS(4857), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4857), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4855), + [anon_sym_BSLASHitem] = ACTIONS(4857), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4855), + [anon_sym_LBRACE] = ACTIONS(4855), + [sym_word] = ACTIONS(4857), + [sym_placeholder] = ACTIONS(4855), + [anon_sym_PLUS] = ACTIONS(4857), + [anon_sym_DASH] = ACTIONS(4857), + [anon_sym_STAR] = ACTIONS(4857), + [anon_sym_SLASH] = ACTIONS(4857), + [anon_sym_CARET] = ACTIONS(4857), + [anon_sym__] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_BANG] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_COLON] = ACTIONS(4857), + [anon_sym_SQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), + [anon_sym_BSLASHbegin] = ACTIONS(4857), + [anon_sym_BSLASHend] = ACTIONS(4857), + [anon_sym_BSLASHusepackage] = ACTIONS(4857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), + [anon_sym_BSLASHinclude] = ACTIONS(4857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), + [anon_sym_BSLASHinput] = ACTIONS(4857), + [anon_sym_BSLASHsubfile] = ACTIONS(4857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), + [anon_sym_BSLASHbibliography] = ACTIONS(4857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), + [anon_sym_BSLASHincludesvg] = ACTIONS(4857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), + [anon_sym_BSLASHimport] = ACTIONS(4857), + [anon_sym_BSLASHsubimport] = ACTIONS(4857), + [anon_sym_BSLASHinputfrom] = ACTIONS(4857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), + [anon_sym_BSLASHincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHcaption] = ACTIONS(4857), + [anon_sym_BSLASHcite] = ACTIONS(4857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCite] = ACTIONS(4857), + [anon_sym_BSLASHnocite] = ACTIONS(4857), + [anon_sym_BSLASHcitet] = ACTIONS(4857), + [anon_sym_BSLASHcitep] = ACTIONS(4857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteauthor] = ACTIONS(4857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitetitle] = ACTIONS(4857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteyear] = ACTIONS(4857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitedate] = ACTIONS(4857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteurl] = ACTIONS(4857), + [anon_sym_BSLASHfullcite] = ACTIONS(4857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), + [anon_sym_BSLASHcitealt] = ACTIONS(4857), + [anon_sym_BSLASHcitealp] = ACTIONS(4857), + [anon_sym_BSLASHcitetext] = ACTIONS(4857), + [anon_sym_BSLASHparencite] = ACTIONS(4857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHParencite] = ACTIONS(4857), + [anon_sym_BSLASHfootcite] = ACTIONS(4857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), + [anon_sym_BSLASHtextcite] = ACTIONS(4857), + [anon_sym_BSLASHTextcite] = ACTIONS(4857), + [anon_sym_BSLASHsmartcite] = ACTIONS(4857), + [anon_sym_BSLASHSmartcite] = ACTIONS(4857), + [anon_sym_BSLASHsupercite] = ACTIONS(4857), + [anon_sym_BSLASHautocite] = ACTIONS(4857), + [anon_sym_BSLASHAutocite] = ACTIONS(4857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHvolcite] = ACTIONS(4857), + [anon_sym_BSLASHVolcite] = ACTIONS(4857), + [anon_sym_BSLASHpvolcite] = ACTIONS(4857), + [anon_sym_BSLASHPvolcite] = ACTIONS(4857), + [anon_sym_BSLASHfvolcite] = ACTIONS(4857), + [anon_sym_BSLASHftvolcite] = ACTIONS(4857), + [anon_sym_BSLASHsvolcite] = ACTIONS(4857), + [anon_sym_BSLASHSvolcite] = ACTIONS(4857), + [anon_sym_BSLASHtvolcite] = ACTIONS(4857), + [anon_sym_BSLASHTvolcite] = ACTIONS(4857), + [anon_sym_BSLASHavolcite] = ACTIONS(4857), + [anon_sym_BSLASHAvolcite] = ACTIONS(4857), + [anon_sym_BSLASHnotecite] = ACTIONS(4857), + [anon_sym_BSLASHNotecite] = ACTIONS(4857), + [anon_sym_BSLASHpnotecite] = ACTIONS(4857), + [anon_sym_BSLASHPnotecite] = ACTIONS(4857), + [anon_sym_BSLASHfnotecite] = ACTIONS(4857), + [anon_sym_BSLASHlabel] = ACTIONS(4857), + [anon_sym_BSLASHref] = ACTIONS(4857), + [anon_sym_BSLASHeqref] = ACTIONS(4857), + [anon_sym_BSLASHvref] = ACTIONS(4857), + [anon_sym_BSLASHVref] = ACTIONS(4857), + [anon_sym_BSLASHautoref] = ACTIONS(4857), + [anon_sym_BSLASHpageref] = ACTIONS(4857), + [anon_sym_BSLASHcref] = ACTIONS(4857), + [anon_sym_BSLASHCref] = ACTIONS(4857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnameCref] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHlabelcref] = ACTIONS(4857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCrefrange] = ACTIONS(4857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnewlabel] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), + [anon_sym_BSLASHdef] = ACTIONS(4857), + [anon_sym_BSLASHlet] = ACTIONS(4857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), + [anon_sym_BSLASHgls] = ACTIONS(4857), + [anon_sym_BSLASHGls] = ACTIONS(4857), + [anon_sym_BSLASHGLS] = ACTIONS(4857), + [anon_sym_BSLASHglspl] = ACTIONS(4857), + [anon_sym_BSLASHGlspl] = ACTIONS(4857), + [anon_sym_BSLASHGLSpl] = ACTIONS(4857), + [anon_sym_BSLASHglsdisp] = ACTIONS(4857), + [anon_sym_BSLASHglslink] = ACTIONS(4857), + [anon_sym_BSLASHglstext] = ACTIONS(4857), + [anon_sym_BSLASHGlstext] = ACTIONS(4857), + [anon_sym_BSLASHGLStext] = ACTIONS(4857), + [anon_sym_BSLASHglsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), + [anon_sym_BSLASHglsplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSplural] = ACTIONS(4857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHglsname] = ACTIONS(4857), + [anon_sym_BSLASHGlsname] = ACTIONS(4857), + [anon_sym_BSLASHGLSname] = ACTIONS(4857), + [anon_sym_BSLASHglssymbol] = ACTIONS(4857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), + [anon_sym_BSLASHglsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), + [anon_sym_BSLASHglsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), + [anon_sym_BSLASHglsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), + [anon_sym_BSLASHglsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), + [anon_sym_BSLASHglsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), + [anon_sym_BSLASHnewacronym] = ACTIONS(4857), + [anon_sym_BSLASHacrshort] = ACTIONS(4857), + [anon_sym_BSLASHAcrshort] = ACTIONS(4857), + [anon_sym_BSLASHACRshort] = ACTIONS(4857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), + [anon_sym_BSLASHacrlong] = ACTIONS(4857), + [anon_sym_BSLASHAcrlong] = ACTIONS(4857), + [anon_sym_BSLASHACRlong] = ACTIONS(4857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), + [anon_sym_BSLASHacrfull] = ACTIONS(4857), + [anon_sym_BSLASHAcrfull] = ACTIONS(4857), + [anon_sym_BSLASHACRfull] = ACTIONS(4857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), + [anon_sym_BSLASHacs] = ACTIONS(4857), + [anon_sym_BSLASHAcs] = ACTIONS(4857), + [anon_sym_BSLASHacsp] = ACTIONS(4857), + [anon_sym_BSLASHAcsp] = ACTIONS(4857), + [anon_sym_BSLASHacl] = ACTIONS(4857), + [anon_sym_BSLASHAcl] = ACTIONS(4857), + [anon_sym_BSLASHaclp] = ACTIONS(4857), + [anon_sym_BSLASHAclp] = ACTIONS(4857), + [anon_sym_BSLASHacf] = ACTIONS(4857), + [anon_sym_BSLASHAcf] = ACTIONS(4857), + [anon_sym_BSLASHacfp] = ACTIONS(4857), + [anon_sym_BSLASHAcfp] = ACTIONS(4857), + [anon_sym_BSLASHac] = ACTIONS(4857), + [anon_sym_BSLASHAc] = ACTIONS(4857), + [anon_sym_BSLASHacp] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), + [anon_sym_BSLASHcolor] = ACTIONS(4857), + [anon_sym_BSLASHcolorbox] = ACTIONS(4857), + [anon_sym_BSLASHtextcolor] = ACTIONS(4857), + [anon_sym_BSLASHpagecolor] = ACTIONS(4857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), + [anon_sym_BSLASHtext] = ACTIONS(4857), + [anon_sym_BSLASHintertext] = ACTIONS(4857), + [anon_sym_shortintertext] = ACTIONS(4857), + }, + [743] = { + [ts_builtin_sym_end] = ACTIONS(5103), + [sym_command_name] = ACTIONS(5105), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_RPAREN] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_RBRACK] = ACTIONS(5103), + [anon_sym_COMMA] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_BSLASHpart] = ACTIONS(5105), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), + [anon_sym_BSLASHaddpart] = ACTIONS(5105), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), + [anon_sym_BSLASHchapter] = ACTIONS(5105), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), + [anon_sym_BSLASHaddchap] = ACTIONS(5105), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsection] = ACTIONS(5105), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), + [anon_sym_BSLASHaddsec] = ACTIONS(5105), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsubsection] = ACTIONS(5105), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), + [anon_sym_BSLASHparagraph] = ACTIONS(5105), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), + [anon_sym_BSLASHitem] = ACTIONS(5105), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5103), + [anon_sym_RBRACE] = ACTIONS(5103), + [sym_word] = ACTIONS(5105), + [sym_placeholder] = ACTIONS(5103), + [anon_sym_PLUS] = ACTIONS(5105), + [anon_sym_DASH] = ACTIONS(5105), + [anon_sym_STAR] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5105), + [anon_sym_CARET] = ACTIONS(5105), + [anon_sym__] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5105), + [anon_sym_GT] = ACTIONS(5105), + [anon_sym_BANG] = ACTIONS(5105), + [anon_sym_PIPE] = ACTIONS(5105), + [anon_sym_COLON] = ACTIONS(5105), + [anon_sym_SQUOTE] = ACTIONS(5105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), + [anon_sym_DOLLAR] = ACTIONS(5105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), + [anon_sym_BSLASHbegin] = ACTIONS(5105), + [anon_sym_BSLASHusepackage] = ACTIONS(5105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), + [anon_sym_BSLASHinclude] = ACTIONS(5105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), + [anon_sym_BSLASHinput] = ACTIONS(5105), + [anon_sym_BSLASHsubfile] = ACTIONS(5105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), + [anon_sym_BSLASHbibliography] = ACTIONS(5105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), + [anon_sym_BSLASHincludesvg] = ACTIONS(5105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), + [anon_sym_BSLASHimport] = ACTIONS(5105), + [anon_sym_BSLASHsubimport] = ACTIONS(5105), + [anon_sym_BSLASHinputfrom] = ACTIONS(5105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), + [anon_sym_BSLASHincludefrom] = ACTIONS(5105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), + [anon_sym_BSLASHcaption] = ACTIONS(5105), + [anon_sym_BSLASHcite] = ACTIONS(5105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCite] = ACTIONS(5105), + [anon_sym_BSLASHnocite] = ACTIONS(5105), + [anon_sym_BSLASHcitet] = ACTIONS(5105), + [anon_sym_BSLASHcitep] = ACTIONS(5105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteauthor] = ACTIONS(5105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitetitle] = ACTIONS(5105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteyear] = ACTIONS(5105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitedate] = ACTIONS(5105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteurl] = ACTIONS(5105), + [anon_sym_BSLASHfullcite] = ACTIONS(5105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), + [anon_sym_BSLASHcitealt] = ACTIONS(5105), + [anon_sym_BSLASHcitealp] = ACTIONS(5105), + [anon_sym_BSLASHcitetext] = ACTIONS(5105), + [anon_sym_BSLASHparencite] = ACTIONS(5105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHParencite] = ACTIONS(5105), + [anon_sym_BSLASHfootcite] = ACTIONS(5105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), + [anon_sym_BSLASHtextcite] = ACTIONS(5105), + [anon_sym_BSLASHTextcite] = ACTIONS(5105), + [anon_sym_BSLASHsmartcite] = ACTIONS(5105), + [anon_sym_BSLASHSmartcite] = ACTIONS(5105), + [anon_sym_BSLASHsupercite] = ACTIONS(5105), + [anon_sym_BSLASHautocite] = ACTIONS(5105), + [anon_sym_BSLASHAutocite] = ACTIONS(5105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHvolcite] = ACTIONS(5105), + [anon_sym_BSLASHVolcite] = ACTIONS(5105), + [anon_sym_BSLASHpvolcite] = ACTIONS(5105), + [anon_sym_BSLASHPvolcite] = ACTIONS(5105), + [anon_sym_BSLASHfvolcite] = ACTIONS(5105), + [anon_sym_BSLASHftvolcite] = ACTIONS(5105), + [anon_sym_BSLASHsvolcite] = ACTIONS(5105), + [anon_sym_BSLASHSvolcite] = ACTIONS(5105), + [anon_sym_BSLASHtvolcite] = ACTIONS(5105), + [anon_sym_BSLASHTvolcite] = ACTIONS(5105), + [anon_sym_BSLASHavolcite] = ACTIONS(5105), + [anon_sym_BSLASHAvolcite] = ACTIONS(5105), + [anon_sym_BSLASHnotecite] = ACTIONS(5105), + [anon_sym_BSLASHNotecite] = ACTIONS(5105), + [anon_sym_BSLASHpnotecite] = ACTIONS(5105), + [anon_sym_BSLASHPnotecite] = ACTIONS(5105), + [anon_sym_BSLASHfnotecite] = ACTIONS(5105), + [anon_sym_BSLASHlabel] = ACTIONS(5105), + [anon_sym_BSLASHref] = ACTIONS(5105), + [anon_sym_BSLASHeqref] = ACTIONS(5105), + [anon_sym_BSLASHvref] = ACTIONS(5105), + [anon_sym_BSLASHVref] = ACTIONS(5105), + [anon_sym_BSLASHautoref] = ACTIONS(5105), + [anon_sym_BSLASHpageref] = ACTIONS(5105), + [anon_sym_BSLASHcref] = ACTIONS(5105), + [anon_sym_BSLASHCref] = ACTIONS(5105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), + [anon_sym_BSLASHnamecref] = ACTIONS(5105), + [anon_sym_BSLASHnameCref] = ACTIONS(5105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), + [anon_sym_BSLASHlabelcref] = ACTIONS(5105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), + [anon_sym_BSLASHcrefrange] = ACTIONS(5105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCrefrange] = ACTIONS(5105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), + [anon_sym_BSLASHnewlabel] = ACTIONS(5105), + [anon_sym_BSLASHnewcommand] = ACTIONS(5105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), + [anon_sym_BSLASHdef] = ACTIONS(5105), + [anon_sym_BSLASHlet] = ACTIONS(5105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), + [anon_sym_BSLASHgls] = ACTIONS(5105), + [anon_sym_BSLASHGls] = ACTIONS(5105), + [anon_sym_BSLASHGLS] = ACTIONS(5105), + [anon_sym_BSLASHglspl] = ACTIONS(5105), + [anon_sym_BSLASHGlspl] = ACTIONS(5105), + [anon_sym_BSLASHGLSpl] = ACTIONS(5105), + [anon_sym_BSLASHglsdisp] = ACTIONS(5105), + [anon_sym_BSLASHglslink] = ACTIONS(5105), + [anon_sym_BSLASHglstext] = ACTIONS(5105), + [anon_sym_BSLASHGlstext] = ACTIONS(5105), + [anon_sym_BSLASHGLStext] = ACTIONS(5105), + [anon_sym_BSLASHglsfirst] = ACTIONS(5105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), + [anon_sym_BSLASHglsplural] = ACTIONS(5105), + [anon_sym_BSLASHGlsplural] = ACTIONS(5105), + [anon_sym_BSLASHGLSplural] = ACTIONS(5105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHglsname] = ACTIONS(5105), + [anon_sym_BSLASHGlsname] = ACTIONS(5105), + [anon_sym_BSLASHGLSname] = ACTIONS(5105), + [anon_sym_BSLASHglssymbol] = ACTIONS(5105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), + [anon_sym_BSLASHglsdesc] = ACTIONS(5105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), + [anon_sym_BSLASHglsuseri] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), + [anon_sym_BSLASHglsuserii] = ACTIONS(5105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), + [anon_sym_BSLASHglsuserv] = ACTIONS(5105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), + [anon_sym_BSLASHglsuservi] = ACTIONS(5105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), + [anon_sym_BSLASHnewacronym] = ACTIONS(5105), + [anon_sym_BSLASHacrshort] = ACTIONS(5105), + [anon_sym_BSLASHAcrshort] = ACTIONS(5105), + [anon_sym_BSLASHACRshort] = ACTIONS(5105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), + [anon_sym_BSLASHacrlong] = ACTIONS(5105), + [anon_sym_BSLASHAcrlong] = ACTIONS(5105), + [anon_sym_BSLASHACRlong] = ACTIONS(5105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), + [anon_sym_BSLASHacrfull] = ACTIONS(5105), + [anon_sym_BSLASHAcrfull] = ACTIONS(5105), + [anon_sym_BSLASHACRfull] = ACTIONS(5105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), + [anon_sym_BSLASHacs] = ACTIONS(5105), + [anon_sym_BSLASHAcs] = ACTIONS(5105), + [anon_sym_BSLASHacsp] = ACTIONS(5105), + [anon_sym_BSLASHAcsp] = ACTIONS(5105), + [anon_sym_BSLASHacl] = ACTIONS(5105), + [anon_sym_BSLASHAcl] = ACTIONS(5105), + [anon_sym_BSLASHaclp] = ACTIONS(5105), + [anon_sym_BSLASHAclp] = ACTIONS(5105), + [anon_sym_BSLASHacf] = ACTIONS(5105), + [anon_sym_BSLASHAcf] = ACTIONS(5105), + [anon_sym_BSLASHacfp] = ACTIONS(5105), + [anon_sym_BSLASHAcfp] = ACTIONS(5105), + [anon_sym_BSLASHac] = ACTIONS(5105), + [anon_sym_BSLASHAc] = ACTIONS(5105), + [anon_sym_BSLASHacp] = ACTIONS(5105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), + [anon_sym_BSLASHcolor] = ACTIONS(5105), + [anon_sym_BSLASHcolorbox] = ACTIONS(5105), + [anon_sym_BSLASHtextcolor] = ACTIONS(5105), + [anon_sym_BSLASHpagecolor] = ACTIONS(5105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), + [anon_sym_BSLASHtext] = ACTIONS(5105), + [anon_sym_BSLASHintertext] = ACTIONS(5105), + [anon_sym_shortintertext] = ACTIONS(5105), }, - [963] = { - [sym_command_name] = ACTIONS(5025), + [744] = { + [ts_builtin_sym_end] = ACTIONS(5107), + [sym_command_name] = ACTIONS(5109), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_BSLASHpart] = ACTIONS(5025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddpart] = ACTIONS(5025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHchapter] = ACTIONS(5025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddchap] = ACTIONS(5025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsection] = ACTIONS(5025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddsec] = ACTIONS(5025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHparagraph] = ACTIONS(5025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHitem] = ACTIONS(5025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5023), - [anon_sym_BSLASHbegin] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [anon_sym_BSLASHiffalse] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [anon_sym_RBRACK] = ACTIONS(5107), + [anon_sym_COMMA] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_BSLASHpart] = ACTIONS(5109), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddpart] = ACTIONS(5109), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), + [anon_sym_BSLASHchapter] = ACTIONS(5109), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddchap] = ACTIONS(5109), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsection] = ACTIONS(5109), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddsec] = ACTIONS(5109), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubsection] = ACTIONS(5109), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHparagraph] = ACTIONS(5109), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), + [anon_sym_BSLASHitem] = ACTIONS(5109), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), + [anon_sym_LBRACE] = ACTIONS(5107), + [anon_sym_RBRACE] = ACTIONS(5107), + [sym_word] = ACTIONS(5109), + [sym_placeholder] = ACTIONS(5107), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_CARET] = ACTIONS(5109), + [anon_sym__] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_BANG] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5109), + [anon_sym_COLON] = ACTIONS(5109), + [anon_sym_SQUOTE] = ACTIONS(5109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), + [anon_sym_DOLLAR] = ACTIONS(5109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), + [anon_sym_BSLASHbegin] = ACTIONS(5109), + [anon_sym_BSLASHusepackage] = ACTIONS(5109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), + [anon_sym_BSLASHinclude] = ACTIONS(5109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), + [anon_sym_BSLASHinput] = ACTIONS(5109), + [anon_sym_BSLASHsubfile] = ACTIONS(5109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), + [anon_sym_BSLASHbibliography] = ACTIONS(5109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), + [anon_sym_BSLASHincludesvg] = ACTIONS(5109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), + [anon_sym_BSLASHimport] = ACTIONS(5109), + [anon_sym_BSLASHsubimport] = ACTIONS(5109), + [anon_sym_BSLASHinputfrom] = ACTIONS(5109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), + [anon_sym_BSLASHincludefrom] = ACTIONS(5109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), + [anon_sym_BSLASHcaption] = ACTIONS(5109), + [anon_sym_BSLASHcite] = ACTIONS(5109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCite] = ACTIONS(5109), + [anon_sym_BSLASHnocite] = ACTIONS(5109), + [anon_sym_BSLASHcitet] = ACTIONS(5109), + [anon_sym_BSLASHcitep] = ACTIONS(5109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteauthor] = ACTIONS(5109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitetitle] = ACTIONS(5109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteyear] = ACTIONS(5109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitedate] = ACTIONS(5109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteurl] = ACTIONS(5109), + [anon_sym_BSLASHfullcite] = ACTIONS(5109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), + [anon_sym_BSLASHcitealt] = ACTIONS(5109), + [anon_sym_BSLASHcitealp] = ACTIONS(5109), + [anon_sym_BSLASHcitetext] = ACTIONS(5109), + [anon_sym_BSLASHparencite] = ACTIONS(5109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHParencite] = ACTIONS(5109), + [anon_sym_BSLASHfootcite] = ACTIONS(5109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), + [anon_sym_BSLASHtextcite] = ACTIONS(5109), + [anon_sym_BSLASHTextcite] = ACTIONS(5109), + [anon_sym_BSLASHsmartcite] = ACTIONS(5109), + [anon_sym_BSLASHSmartcite] = ACTIONS(5109), + [anon_sym_BSLASHsupercite] = ACTIONS(5109), + [anon_sym_BSLASHautocite] = ACTIONS(5109), + [anon_sym_BSLASHAutocite] = ACTIONS(5109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHvolcite] = ACTIONS(5109), + [anon_sym_BSLASHVolcite] = ACTIONS(5109), + [anon_sym_BSLASHpvolcite] = ACTIONS(5109), + [anon_sym_BSLASHPvolcite] = ACTIONS(5109), + [anon_sym_BSLASHfvolcite] = ACTIONS(5109), + [anon_sym_BSLASHftvolcite] = ACTIONS(5109), + [anon_sym_BSLASHsvolcite] = ACTIONS(5109), + [anon_sym_BSLASHSvolcite] = ACTIONS(5109), + [anon_sym_BSLASHtvolcite] = ACTIONS(5109), + [anon_sym_BSLASHTvolcite] = ACTIONS(5109), + [anon_sym_BSLASHavolcite] = ACTIONS(5109), + [anon_sym_BSLASHAvolcite] = ACTIONS(5109), + [anon_sym_BSLASHnotecite] = ACTIONS(5109), + [anon_sym_BSLASHNotecite] = ACTIONS(5109), + [anon_sym_BSLASHpnotecite] = ACTIONS(5109), + [anon_sym_BSLASHPnotecite] = ACTIONS(5109), + [anon_sym_BSLASHfnotecite] = ACTIONS(5109), + [anon_sym_BSLASHlabel] = ACTIONS(5109), + [anon_sym_BSLASHref] = ACTIONS(5109), + [anon_sym_BSLASHeqref] = ACTIONS(5109), + [anon_sym_BSLASHvref] = ACTIONS(5109), + [anon_sym_BSLASHVref] = ACTIONS(5109), + [anon_sym_BSLASHautoref] = ACTIONS(5109), + [anon_sym_BSLASHpageref] = ACTIONS(5109), + [anon_sym_BSLASHcref] = ACTIONS(5109), + [anon_sym_BSLASHCref] = ACTIONS(5109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), + [anon_sym_BSLASHnamecref] = ACTIONS(5109), + [anon_sym_BSLASHnameCref] = ACTIONS(5109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), + [anon_sym_BSLASHlabelcref] = ACTIONS(5109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), + [anon_sym_BSLASHcrefrange] = ACTIONS(5109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCrefrange] = ACTIONS(5109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), + [anon_sym_BSLASHnewlabel] = ACTIONS(5109), + [anon_sym_BSLASHnewcommand] = ACTIONS(5109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), + [anon_sym_BSLASHdef] = ACTIONS(5109), + [anon_sym_BSLASHlet] = ACTIONS(5109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), + [anon_sym_BSLASHgls] = ACTIONS(5109), + [anon_sym_BSLASHGls] = ACTIONS(5109), + [anon_sym_BSLASHGLS] = ACTIONS(5109), + [anon_sym_BSLASHglspl] = ACTIONS(5109), + [anon_sym_BSLASHGlspl] = ACTIONS(5109), + [anon_sym_BSLASHGLSpl] = ACTIONS(5109), + [anon_sym_BSLASHglsdisp] = ACTIONS(5109), + [anon_sym_BSLASHglslink] = ACTIONS(5109), + [anon_sym_BSLASHglstext] = ACTIONS(5109), + [anon_sym_BSLASHGlstext] = ACTIONS(5109), + [anon_sym_BSLASHGLStext] = ACTIONS(5109), + [anon_sym_BSLASHglsfirst] = ACTIONS(5109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), + [anon_sym_BSLASHglsplural] = ACTIONS(5109), + [anon_sym_BSLASHGlsplural] = ACTIONS(5109), + [anon_sym_BSLASHGLSplural] = ACTIONS(5109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHglsname] = ACTIONS(5109), + [anon_sym_BSLASHGlsname] = ACTIONS(5109), + [anon_sym_BSLASHGLSname] = ACTIONS(5109), + [anon_sym_BSLASHglssymbol] = ACTIONS(5109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), + [anon_sym_BSLASHglsdesc] = ACTIONS(5109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), + [anon_sym_BSLASHglsuseri] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), + [anon_sym_BSLASHglsuserii] = ACTIONS(5109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), + [anon_sym_BSLASHglsuserv] = ACTIONS(5109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), + [anon_sym_BSLASHglsuservi] = ACTIONS(5109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), + [anon_sym_BSLASHnewacronym] = ACTIONS(5109), + [anon_sym_BSLASHacrshort] = ACTIONS(5109), + [anon_sym_BSLASHAcrshort] = ACTIONS(5109), + [anon_sym_BSLASHACRshort] = ACTIONS(5109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), + [anon_sym_BSLASHacrlong] = ACTIONS(5109), + [anon_sym_BSLASHAcrlong] = ACTIONS(5109), + [anon_sym_BSLASHACRlong] = ACTIONS(5109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), + [anon_sym_BSLASHacrfull] = ACTIONS(5109), + [anon_sym_BSLASHAcrfull] = ACTIONS(5109), + [anon_sym_BSLASHACRfull] = ACTIONS(5109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), + [anon_sym_BSLASHacs] = ACTIONS(5109), + [anon_sym_BSLASHAcs] = ACTIONS(5109), + [anon_sym_BSLASHacsp] = ACTIONS(5109), + [anon_sym_BSLASHAcsp] = ACTIONS(5109), + [anon_sym_BSLASHacl] = ACTIONS(5109), + [anon_sym_BSLASHAcl] = ACTIONS(5109), + [anon_sym_BSLASHaclp] = ACTIONS(5109), + [anon_sym_BSLASHAclp] = ACTIONS(5109), + [anon_sym_BSLASHacf] = ACTIONS(5109), + [anon_sym_BSLASHAcf] = ACTIONS(5109), + [anon_sym_BSLASHacfp] = ACTIONS(5109), + [anon_sym_BSLASHAcfp] = ACTIONS(5109), + [anon_sym_BSLASHac] = ACTIONS(5109), + [anon_sym_BSLASHAc] = ACTIONS(5109), + [anon_sym_BSLASHacp] = ACTIONS(5109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), + [anon_sym_BSLASHcolor] = ACTIONS(5109), + [anon_sym_BSLASHcolorbox] = ACTIONS(5109), + [anon_sym_BSLASHtextcolor] = ACTIONS(5109), + [anon_sym_BSLASHpagecolor] = ACTIONS(5109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), + [anon_sym_BSLASHtext] = ACTIONS(5109), + [anon_sym_BSLASHintertext] = ACTIONS(5109), + [anon_sym_shortintertext] = ACTIONS(5109), }, - [964] = { - [sym_command_name] = ACTIONS(5041), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_BSLASHpart] = ACTIONS(5041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddpart] = ACTIONS(5041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHchapter] = ACTIONS(5041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddchap] = ACTIONS(5041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsection] = ACTIONS(5041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddsec] = ACTIONS(5041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHparagraph] = ACTIONS(5041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHitem] = ACTIONS(5041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASHbegin] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + [745] = { + [sym_curly_group] = STATE(964), + [sym_command_name] = ACTIONS(4829), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4829), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_RBRACK] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_EQ] = ACTIONS(4827), + [anon_sym_BSLASHpart] = ACTIONS(4829), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddpart] = ACTIONS(4829), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4827), + [anon_sym_BSLASHchapter] = ACTIONS(4829), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddchap] = ACTIONS(4829), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsection] = ACTIONS(4829), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddsec] = ACTIONS(4829), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubsection] = ACTIONS(4829), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4829), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHparagraph] = ACTIONS(4829), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4829), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4827), + [anon_sym_BSLASHitem] = ACTIONS(4829), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(4829), + [sym_placeholder] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4829), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_CARET] = ACTIONS(4829), + [anon_sym__] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_BANG] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_COLON] = ACTIONS(4829), + [anon_sym_SQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4827), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(4829), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4827), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4827), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4827), + [anon_sym_BSLASHbegin] = ACTIONS(4829), + [anon_sym_BSLASHusepackage] = ACTIONS(4829), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4829), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4829), + [anon_sym_BSLASHinclude] = ACTIONS(4829), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4829), + [anon_sym_BSLASHinput] = ACTIONS(4829), + [anon_sym_BSLASHsubfile] = ACTIONS(4829), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4829), + [anon_sym_BSLASHbibliography] = ACTIONS(4829), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4829), + [anon_sym_BSLASHincludesvg] = ACTIONS(4829), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4829), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4829), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4829), + [anon_sym_BSLASHimport] = ACTIONS(4829), + [anon_sym_BSLASHsubimport] = ACTIONS(4829), + [anon_sym_BSLASHinputfrom] = ACTIONS(4829), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4829), + [anon_sym_BSLASHincludefrom] = ACTIONS(4829), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4829), + [anon_sym_BSLASHcaption] = ACTIONS(4829), + [anon_sym_BSLASHcite] = ACTIONS(4829), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCite] = ACTIONS(4829), + [anon_sym_BSLASHnocite] = ACTIONS(4829), + [anon_sym_BSLASHcitet] = ACTIONS(4829), + [anon_sym_BSLASHcitep] = ACTIONS(4829), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteauthor] = ACTIONS(4829), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4829), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitetitle] = ACTIONS(4829), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteyear] = ACTIONS(4829), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitedate] = ACTIONS(4829), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteurl] = ACTIONS(4829), + [anon_sym_BSLASHfullcite] = ACTIONS(4829), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4829), + [anon_sym_BSLASHcitealt] = ACTIONS(4829), + [anon_sym_BSLASHcitealp] = ACTIONS(4829), + [anon_sym_BSLASHcitetext] = ACTIONS(4829), + [anon_sym_BSLASHparencite] = ACTIONS(4829), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHParencite] = ACTIONS(4829), + [anon_sym_BSLASHfootcite] = ACTIONS(4829), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4829), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4829), + [anon_sym_BSLASHtextcite] = ACTIONS(4829), + [anon_sym_BSLASHTextcite] = ACTIONS(4829), + [anon_sym_BSLASHsmartcite] = ACTIONS(4829), + [anon_sym_BSLASHSmartcite] = ACTIONS(4829), + [anon_sym_BSLASHsupercite] = ACTIONS(4829), + [anon_sym_BSLASHautocite] = ACTIONS(4829), + [anon_sym_BSLASHAutocite] = ACTIONS(4829), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHvolcite] = ACTIONS(4829), + [anon_sym_BSLASHVolcite] = ACTIONS(4829), + [anon_sym_BSLASHpvolcite] = ACTIONS(4829), + [anon_sym_BSLASHPvolcite] = ACTIONS(4829), + [anon_sym_BSLASHfvolcite] = ACTIONS(4829), + [anon_sym_BSLASHftvolcite] = ACTIONS(4829), + [anon_sym_BSLASHsvolcite] = ACTIONS(4829), + [anon_sym_BSLASHSvolcite] = ACTIONS(4829), + [anon_sym_BSLASHtvolcite] = ACTIONS(4829), + [anon_sym_BSLASHTvolcite] = ACTIONS(4829), + [anon_sym_BSLASHavolcite] = ACTIONS(4829), + [anon_sym_BSLASHAvolcite] = ACTIONS(4829), + [anon_sym_BSLASHnotecite] = ACTIONS(4829), + [anon_sym_BSLASHNotecite] = ACTIONS(4829), + [anon_sym_BSLASHpnotecite] = ACTIONS(4829), + [anon_sym_BSLASHPnotecite] = ACTIONS(4829), + [anon_sym_BSLASHfnotecite] = ACTIONS(4829), + [anon_sym_BSLASHlabel] = ACTIONS(4829), + [anon_sym_BSLASHref] = ACTIONS(4829), + [anon_sym_BSLASHeqref] = ACTIONS(4829), + [anon_sym_BSLASHvref] = ACTIONS(4829), + [anon_sym_BSLASHVref] = ACTIONS(4829), + [anon_sym_BSLASHautoref] = ACTIONS(4829), + [anon_sym_BSLASHpageref] = ACTIONS(4829), + [anon_sym_BSLASHcref] = ACTIONS(4829), + [anon_sym_BSLASHCref] = ACTIONS(4829), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4827), + [anon_sym_BSLASHnamecref] = ACTIONS(4829), + [anon_sym_BSLASHnameCref] = ACTIONS(4829), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4829), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4829), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4829), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4829), + [anon_sym_BSLASHlabelcref] = ACTIONS(4829), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4829), + [anon_sym_BSLASHcrefrange] = ACTIONS(4829), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCrefrange] = ACTIONS(4829), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4827), + [anon_sym_BSLASHnewlabel] = ACTIONS(4829), + [anon_sym_BSLASHnewcommand] = ACTIONS(4829), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4829), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4829), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4829), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4827), + [anon_sym_BSLASHdef] = ACTIONS(4829), + [anon_sym_BSLASHlet] = ACTIONS(4829), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4829), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4829), + [anon_sym_BSLASHgls] = ACTIONS(4829), + [anon_sym_BSLASHGls] = ACTIONS(4829), + [anon_sym_BSLASHGLS] = ACTIONS(4829), + [anon_sym_BSLASHglspl] = ACTIONS(4829), + [anon_sym_BSLASHGlspl] = ACTIONS(4829), + [anon_sym_BSLASHGLSpl] = ACTIONS(4829), + [anon_sym_BSLASHglsdisp] = ACTIONS(4829), + [anon_sym_BSLASHglslink] = ACTIONS(4829), + [anon_sym_BSLASHglstext] = ACTIONS(4829), + [anon_sym_BSLASHGlstext] = ACTIONS(4829), + [anon_sym_BSLASHGLStext] = ACTIONS(4829), + [anon_sym_BSLASHglsfirst] = ACTIONS(4829), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4829), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4829), + [anon_sym_BSLASHglsplural] = ACTIONS(4829), + [anon_sym_BSLASHGlsplural] = ACTIONS(4829), + [anon_sym_BSLASHGLSplural] = ACTIONS(4829), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHglsname] = ACTIONS(4829), + [anon_sym_BSLASHGlsname] = ACTIONS(4829), + [anon_sym_BSLASHGLSname] = ACTIONS(4829), + [anon_sym_BSLASHglssymbol] = ACTIONS(4829), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4829), + [anon_sym_BSLASHglsdesc] = ACTIONS(4829), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4829), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4829), + [anon_sym_BSLASHglsuseri] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4829), + [anon_sym_BSLASHglsuserii] = ACTIONS(4829), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4829), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4829), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4829), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4829), + [anon_sym_BSLASHglsuserv] = ACTIONS(4829), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4829), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4829), + [anon_sym_BSLASHglsuservi] = ACTIONS(4829), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4829), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4829), + [anon_sym_BSLASHnewacronym] = ACTIONS(4829), + [anon_sym_BSLASHacrshort] = ACTIONS(4829), + [anon_sym_BSLASHAcrshort] = ACTIONS(4829), + [anon_sym_BSLASHACRshort] = ACTIONS(4829), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4829), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4829), + [anon_sym_BSLASHacrlong] = ACTIONS(4829), + [anon_sym_BSLASHAcrlong] = ACTIONS(4829), + [anon_sym_BSLASHACRlong] = ACTIONS(4829), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4829), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4829), + [anon_sym_BSLASHacrfull] = ACTIONS(4829), + [anon_sym_BSLASHAcrfull] = ACTIONS(4829), + [anon_sym_BSLASHACRfull] = ACTIONS(4829), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4829), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4829), + [anon_sym_BSLASHacs] = ACTIONS(4829), + [anon_sym_BSLASHAcs] = ACTIONS(4829), + [anon_sym_BSLASHacsp] = ACTIONS(4829), + [anon_sym_BSLASHAcsp] = ACTIONS(4829), + [anon_sym_BSLASHacl] = ACTIONS(4829), + [anon_sym_BSLASHAcl] = ACTIONS(4829), + [anon_sym_BSLASHaclp] = ACTIONS(4829), + [anon_sym_BSLASHAclp] = ACTIONS(4829), + [anon_sym_BSLASHacf] = ACTIONS(4829), + [anon_sym_BSLASHAcf] = ACTIONS(4829), + [anon_sym_BSLASHacfp] = ACTIONS(4829), + [anon_sym_BSLASHAcfp] = ACTIONS(4829), + [anon_sym_BSLASHac] = ACTIONS(4829), + [anon_sym_BSLASHAc] = ACTIONS(4829), + [anon_sym_BSLASHacp] = ACTIONS(4829), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4829), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4829), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4829), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4829), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4829), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4829), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4829), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4829), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4829), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4829), + [anon_sym_BSLASHcolor] = ACTIONS(4829), + [anon_sym_BSLASHcolorbox] = ACTIONS(4829), + [anon_sym_BSLASHtextcolor] = ACTIONS(4829), + [anon_sym_BSLASHpagecolor] = ACTIONS(4829), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4829), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4829), + [anon_sym_BSLASHtext] = ACTIONS(4829), + [anon_sym_BSLASHintertext] = ACTIONS(4829), + [anon_sym_shortintertext] = ACTIONS(4829), }, - [965] = { - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_BSLASHpart] = ACTIONS(147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddpart] = ACTIONS(147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHchapter] = ACTIONS(147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddchap] = ACTIONS(147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(145), - [anon_sym_BSLASHsection] = ACTIONS(147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddsec] = ACTIONS(147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHparagraph] = ACTIONS(147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHitem] = ACTIONS(147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASH_RBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), + [746] = { + [sym_command_name] = ACTIONS(4865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4865), + [anon_sym_BSLASHfi] = ACTIONS(5111), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_RBRACK] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_BSLASHpart] = ACTIONS(4865), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddpart] = ACTIONS(4865), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4863), + [anon_sym_BSLASHchapter] = ACTIONS(4865), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddchap] = ACTIONS(4865), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsection] = ACTIONS(4865), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddsec] = ACTIONS(4865), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubsection] = ACTIONS(4865), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4865), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHparagraph] = ACTIONS(4865), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4865), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4863), + [anon_sym_BSLASHitem] = ACTIONS(4865), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4863), + [sym_word] = ACTIONS(4865), + [sym_placeholder] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_CARET] = ACTIONS(4865), + [anon_sym__] = ACTIONS(4865), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_COLON] = ACTIONS(4865), + [anon_sym_SQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), + [anon_sym_BSLASHbegin] = ACTIONS(4865), + [anon_sym_BSLASHusepackage] = ACTIONS(4865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), + [anon_sym_BSLASHinclude] = ACTIONS(4865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), + [anon_sym_BSLASHinput] = ACTIONS(4865), + [anon_sym_BSLASHsubfile] = ACTIONS(4865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), + [anon_sym_BSLASHbibliography] = ACTIONS(4865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), + [anon_sym_BSLASHincludesvg] = ACTIONS(4865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), + [anon_sym_BSLASHimport] = ACTIONS(4865), + [anon_sym_BSLASHsubimport] = ACTIONS(4865), + [anon_sym_BSLASHinputfrom] = ACTIONS(4865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), + [anon_sym_BSLASHincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHcaption] = ACTIONS(4865), + [anon_sym_BSLASHcite] = ACTIONS(4865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCite] = ACTIONS(4865), + [anon_sym_BSLASHnocite] = ACTIONS(4865), + [anon_sym_BSLASHcitet] = ACTIONS(4865), + [anon_sym_BSLASHcitep] = ACTIONS(4865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteauthor] = ACTIONS(4865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitetitle] = ACTIONS(4865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteyear] = ACTIONS(4865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitedate] = ACTIONS(4865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteurl] = ACTIONS(4865), + [anon_sym_BSLASHfullcite] = ACTIONS(4865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), + [anon_sym_BSLASHcitealt] = ACTIONS(4865), + [anon_sym_BSLASHcitealp] = ACTIONS(4865), + [anon_sym_BSLASHcitetext] = ACTIONS(4865), + [anon_sym_BSLASHparencite] = ACTIONS(4865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHParencite] = ACTIONS(4865), + [anon_sym_BSLASHfootcite] = ACTIONS(4865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), + [anon_sym_BSLASHtextcite] = ACTIONS(4865), + [anon_sym_BSLASHTextcite] = ACTIONS(4865), + [anon_sym_BSLASHsmartcite] = ACTIONS(4865), + [anon_sym_BSLASHSmartcite] = ACTIONS(4865), + [anon_sym_BSLASHsupercite] = ACTIONS(4865), + [anon_sym_BSLASHautocite] = ACTIONS(4865), + [anon_sym_BSLASHAutocite] = ACTIONS(4865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHvolcite] = ACTIONS(4865), + [anon_sym_BSLASHVolcite] = ACTIONS(4865), + [anon_sym_BSLASHpvolcite] = ACTIONS(4865), + [anon_sym_BSLASHPvolcite] = ACTIONS(4865), + [anon_sym_BSLASHfvolcite] = ACTIONS(4865), + [anon_sym_BSLASHftvolcite] = ACTIONS(4865), + [anon_sym_BSLASHsvolcite] = ACTIONS(4865), + [anon_sym_BSLASHSvolcite] = ACTIONS(4865), + [anon_sym_BSLASHtvolcite] = ACTIONS(4865), + [anon_sym_BSLASHTvolcite] = ACTIONS(4865), + [anon_sym_BSLASHavolcite] = ACTIONS(4865), + [anon_sym_BSLASHAvolcite] = ACTIONS(4865), + [anon_sym_BSLASHnotecite] = ACTIONS(4865), + [anon_sym_BSLASHNotecite] = ACTIONS(4865), + [anon_sym_BSLASHpnotecite] = ACTIONS(4865), + [anon_sym_BSLASHPnotecite] = ACTIONS(4865), + [anon_sym_BSLASHfnotecite] = ACTIONS(4865), + [anon_sym_BSLASHlabel] = ACTIONS(4865), + [anon_sym_BSLASHref] = ACTIONS(4865), + [anon_sym_BSLASHeqref] = ACTIONS(4865), + [anon_sym_BSLASHvref] = ACTIONS(4865), + [anon_sym_BSLASHVref] = ACTIONS(4865), + [anon_sym_BSLASHautoref] = ACTIONS(4865), + [anon_sym_BSLASHpageref] = ACTIONS(4865), + [anon_sym_BSLASHcref] = ACTIONS(4865), + [anon_sym_BSLASHCref] = ACTIONS(4865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnameCref] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHlabelcref] = ACTIONS(4865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCrefrange] = ACTIONS(4865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnewlabel] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), + [anon_sym_BSLASHdef] = ACTIONS(4865), + [anon_sym_BSLASHlet] = ACTIONS(4865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), + [anon_sym_BSLASHgls] = ACTIONS(4865), + [anon_sym_BSLASHGls] = ACTIONS(4865), + [anon_sym_BSLASHGLS] = ACTIONS(4865), + [anon_sym_BSLASHglspl] = ACTIONS(4865), + [anon_sym_BSLASHGlspl] = ACTIONS(4865), + [anon_sym_BSLASHGLSpl] = ACTIONS(4865), + [anon_sym_BSLASHglsdisp] = ACTIONS(4865), + [anon_sym_BSLASHglslink] = ACTIONS(4865), + [anon_sym_BSLASHglstext] = ACTIONS(4865), + [anon_sym_BSLASHGlstext] = ACTIONS(4865), + [anon_sym_BSLASHGLStext] = ACTIONS(4865), + [anon_sym_BSLASHglsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), + [anon_sym_BSLASHglsplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSplural] = ACTIONS(4865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHglsname] = ACTIONS(4865), + [anon_sym_BSLASHGlsname] = ACTIONS(4865), + [anon_sym_BSLASHGLSname] = ACTIONS(4865), + [anon_sym_BSLASHglssymbol] = ACTIONS(4865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), + [anon_sym_BSLASHglsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), + [anon_sym_BSLASHglsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), + [anon_sym_BSLASHglsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), + [anon_sym_BSLASHglsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), + [anon_sym_BSLASHglsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), + [anon_sym_BSLASHnewacronym] = ACTIONS(4865), + [anon_sym_BSLASHacrshort] = ACTIONS(4865), + [anon_sym_BSLASHAcrshort] = ACTIONS(4865), + [anon_sym_BSLASHACRshort] = ACTIONS(4865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), + [anon_sym_BSLASHacrlong] = ACTIONS(4865), + [anon_sym_BSLASHAcrlong] = ACTIONS(4865), + [anon_sym_BSLASHACRlong] = ACTIONS(4865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), + [anon_sym_BSLASHacrfull] = ACTIONS(4865), + [anon_sym_BSLASHAcrfull] = ACTIONS(4865), + [anon_sym_BSLASHACRfull] = ACTIONS(4865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), + [anon_sym_BSLASHacs] = ACTIONS(4865), + [anon_sym_BSLASHAcs] = ACTIONS(4865), + [anon_sym_BSLASHacsp] = ACTIONS(4865), + [anon_sym_BSLASHAcsp] = ACTIONS(4865), + [anon_sym_BSLASHacl] = ACTIONS(4865), + [anon_sym_BSLASHAcl] = ACTIONS(4865), + [anon_sym_BSLASHaclp] = ACTIONS(4865), + [anon_sym_BSLASHAclp] = ACTIONS(4865), + [anon_sym_BSLASHacf] = ACTIONS(4865), + [anon_sym_BSLASHAcf] = ACTIONS(4865), + [anon_sym_BSLASHacfp] = ACTIONS(4865), + [anon_sym_BSLASHAcfp] = ACTIONS(4865), + [anon_sym_BSLASHac] = ACTIONS(4865), + [anon_sym_BSLASHAc] = ACTIONS(4865), + [anon_sym_BSLASHacp] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), + [anon_sym_BSLASHcolor] = ACTIONS(4865), + [anon_sym_BSLASHcolorbox] = ACTIONS(4865), + [anon_sym_BSLASHtextcolor] = ACTIONS(4865), + [anon_sym_BSLASHpagecolor] = ACTIONS(4865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), + [anon_sym_BSLASHtext] = ACTIONS(4865), + [anon_sym_BSLASHintertext] = ACTIONS(4865), + [anon_sym_shortintertext] = ACTIONS(4865), }, - [966] = { - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_RPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), + [747] = { + [ts_builtin_sym_end] = ACTIONS(5113), + [sym_command_name] = ACTIONS(5115), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5115), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_RPAREN] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_RBRACK] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_EQ] = ACTIONS(5113), + [anon_sym_BSLASHpart] = ACTIONS(5115), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddpart] = ACTIONS(5115), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5113), + [anon_sym_BSLASHchapter] = ACTIONS(5115), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddchap] = ACTIONS(5115), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsection] = ACTIONS(5115), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddsec] = ACTIONS(5115), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubsection] = ACTIONS(5115), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5115), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHparagraph] = ACTIONS(5115), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5115), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5113), + [anon_sym_BSLASHitem] = ACTIONS(5115), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(5113), + [anon_sym_RBRACE] = ACTIONS(5113), + [sym_word] = ACTIONS(5115), + [sym_placeholder] = ACTIONS(5113), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_CARET] = ACTIONS(5115), + [anon_sym__] = ACTIONS(5115), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_BANG] = ACTIONS(5115), + [anon_sym_PIPE] = ACTIONS(5115), + [anon_sym_COLON] = ACTIONS(5115), + [anon_sym_SQUOTE] = ACTIONS(5115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5113), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5113), + [anon_sym_DOLLAR] = ACTIONS(5115), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5113), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5113), + [anon_sym_BSLASHbegin] = ACTIONS(5115), + [anon_sym_BSLASHusepackage] = ACTIONS(5115), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5115), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5115), + [anon_sym_BSLASHinclude] = ACTIONS(5115), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5115), + [anon_sym_BSLASHinput] = ACTIONS(5115), + [anon_sym_BSLASHsubfile] = ACTIONS(5115), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5115), + [anon_sym_BSLASHbibliography] = ACTIONS(5115), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5115), + [anon_sym_BSLASHincludesvg] = ACTIONS(5115), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5115), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5115), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5115), + [anon_sym_BSLASHimport] = ACTIONS(5115), + [anon_sym_BSLASHsubimport] = ACTIONS(5115), + [anon_sym_BSLASHinputfrom] = ACTIONS(5115), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5115), + [anon_sym_BSLASHincludefrom] = ACTIONS(5115), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5115), + [anon_sym_BSLASHcaption] = ACTIONS(5115), + [anon_sym_BSLASHcite] = ACTIONS(5115), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCite] = ACTIONS(5115), + [anon_sym_BSLASHnocite] = ACTIONS(5115), + [anon_sym_BSLASHcitet] = ACTIONS(5115), + [anon_sym_BSLASHcitep] = ACTIONS(5115), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteauthor] = ACTIONS(5115), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5115), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitetitle] = ACTIONS(5115), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteyear] = ACTIONS(5115), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitedate] = ACTIONS(5115), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteurl] = ACTIONS(5115), + [anon_sym_BSLASHfullcite] = ACTIONS(5115), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5115), + [anon_sym_BSLASHcitealt] = ACTIONS(5115), + [anon_sym_BSLASHcitealp] = ACTIONS(5115), + [anon_sym_BSLASHcitetext] = ACTIONS(5115), + [anon_sym_BSLASHparencite] = ACTIONS(5115), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHParencite] = ACTIONS(5115), + [anon_sym_BSLASHfootcite] = ACTIONS(5115), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5115), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5115), + [anon_sym_BSLASHtextcite] = ACTIONS(5115), + [anon_sym_BSLASHTextcite] = ACTIONS(5115), + [anon_sym_BSLASHsmartcite] = ACTIONS(5115), + [anon_sym_BSLASHSmartcite] = ACTIONS(5115), + [anon_sym_BSLASHsupercite] = ACTIONS(5115), + [anon_sym_BSLASHautocite] = ACTIONS(5115), + [anon_sym_BSLASHAutocite] = ACTIONS(5115), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHvolcite] = ACTIONS(5115), + [anon_sym_BSLASHVolcite] = ACTIONS(5115), + [anon_sym_BSLASHpvolcite] = ACTIONS(5115), + [anon_sym_BSLASHPvolcite] = ACTIONS(5115), + [anon_sym_BSLASHfvolcite] = ACTIONS(5115), + [anon_sym_BSLASHftvolcite] = ACTIONS(5115), + [anon_sym_BSLASHsvolcite] = ACTIONS(5115), + [anon_sym_BSLASHSvolcite] = ACTIONS(5115), + [anon_sym_BSLASHtvolcite] = ACTIONS(5115), + [anon_sym_BSLASHTvolcite] = ACTIONS(5115), + [anon_sym_BSLASHavolcite] = ACTIONS(5115), + [anon_sym_BSLASHAvolcite] = ACTIONS(5115), + [anon_sym_BSLASHnotecite] = ACTIONS(5115), + [anon_sym_BSLASHNotecite] = ACTIONS(5115), + [anon_sym_BSLASHpnotecite] = ACTIONS(5115), + [anon_sym_BSLASHPnotecite] = ACTIONS(5115), + [anon_sym_BSLASHfnotecite] = ACTIONS(5115), + [anon_sym_BSLASHlabel] = ACTIONS(5115), + [anon_sym_BSLASHref] = ACTIONS(5115), + [anon_sym_BSLASHeqref] = ACTIONS(5115), + [anon_sym_BSLASHvref] = ACTIONS(5115), + [anon_sym_BSLASHVref] = ACTIONS(5115), + [anon_sym_BSLASHautoref] = ACTIONS(5115), + [anon_sym_BSLASHpageref] = ACTIONS(5115), + [anon_sym_BSLASHcref] = ACTIONS(5115), + [anon_sym_BSLASHCref] = ACTIONS(5115), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5113), + [anon_sym_BSLASHnamecref] = ACTIONS(5115), + [anon_sym_BSLASHnameCref] = ACTIONS(5115), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5115), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5115), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5115), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5115), + [anon_sym_BSLASHlabelcref] = ACTIONS(5115), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5115), + [anon_sym_BSLASHcrefrange] = ACTIONS(5115), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCrefrange] = ACTIONS(5115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5113), + [anon_sym_BSLASHnewlabel] = ACTIONS(5115), + [anon_sym_BSLASHnewcommand] = ACTIONS(5115), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5115), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5115), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5115), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5113), + [anon_sym_BSLASHdef] = ACTIONS(5115), + [anon_sym_BSLASHlet] = ACTIONS(5115), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5115), + [anon_sym_BSLASHgls] = ACTIONS(5115), + [anon_sym_BSLASHGls] = ACTIONS(5115), + [anon_sym_BSLASHGLS] = ACTIONS(5115), + [anon_sym_BSLASHglspl] = ACTIONS(5115), + [anon_sym_BSLASHGlspl] = ACTIONS(5115), + [anon_sym_BSLASHGLSpl] = ACTIONS(5115), + [anon_sym_BSLASHglsdisp] = ACTIONS(5115), + [anon_sym_BSLASHglslink] = ACTIONS(5115), + [anon_sym_BSLASHglstext] = ACTIONS(5115), + [anon_sym_BSLASHGlstext] = ACTIONS(5115), + [anon_sym_BSLASHGLStext] = ACTIONS(5115), + [anon_sym_BSLASHglsfirst] = ACTIONS(5115), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5115), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5115), + [anon_sym_BSLASHglsplural] = ACTIONS(5115), + [anon_sym_BSLASHGlsplural] = ACTIONS(5115), + [anon_sym_BSLASHGLSplural] = ACTIONS(5115), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHglsname] = ACTIONS(5115), + [anon_sym_BSLASHGlsname] = ACTIONS(5115), + [anon_sym_BSLASHGLSname] = ACTIONS(5115), + [anon_sym_BSLASHglssymbol] = ACTIONS(5115), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5115), + [anon_sym_BSLASHglsdesc] = ACTIONS(5115), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5115), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5115), + [anon_sym_BSLASHglsuseri] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5115), + [anon_sym_BSLASHglsuserii] = ACTIONS(5115), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5115), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5115), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5115), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5115), + [anon_sym_BSLASHglsuserv] = ACTIONS(5115), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5115), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5115), + [anon_sym_BSLASHglsuservi] = ACTIONS(5115), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5115), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5115), + [anon_sym_BSLASHnewacronym] = ACTIONS(5115), + [anon_sym_BSLASHacrshort] = ACTIONS(5115), + [anon_sym_BSLASHAcrshort] = ACTIONS(5115), + [anon_sym_BSLASHACRshort] = ACTIONS(5115), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5115), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5115), + [anon_sym_BSLASHacrlong] = ACTIONS(5115), + [anon_sym_BSLASHAcrlong] = ACTIONS(5115), + [anon_sym_BSLASHACRlong] = ACTIONS(5115), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5115), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5115), + [anon_sym_BSLASHacrfull] = ACTIONS(5115), + [anon_sym_BSLASHAcrfull] = ACTIONS(5115), + [anon_sym_BSLASHACRfull] = ACTIONS(5115), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5115), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5115), + [anon_sym_BSLASHacs] = ACTIONS(5115), + [anon_sym_BSLASHAcs] = ACTIONS(5115), + [anon_sym_BSLASHacsp] = ACTIONS(5115), + [anon_sym_BSLASHAcsp] = ACTIONS(5115), + [anon_sym_BSLASHacl] = ACTIONS(5115), + [anon_sym_BSLASHAcl] = ACTIONS(5115), + [anon_sym_BSLASHaclp] = ACTIONS(5115), + [anon_sym_BSLASHAclp] = ACTIONS(5115), + [anon_sym_BSLASHacf] = ACTIONS(5115), + [anon_sym_BSLASHAcf] = ACTIONS(5115), + [anon_sym_BSLASHacfp] = ACTIONS(5115), + [anon_sym_BSLASHAcfp] = ACTIONS(5115), + [anon_sym_BSLASHac] = ACTIONS(5115), + [anon_sym_BSLASHAc] = ACTIONS(5115), + [anon_sym_BSLASHacp] = ACTIONS(5115), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5115), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5115), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5115), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5115), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5115), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5115), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5115), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5115), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5115), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5115), + [anon_sym_BSLASHcolor] = ACTIONS(5115), + [anon_sym_BSLASHcolorbox] = ACTIONS(5115), + [anon_sym_BSLASHtextcolor] = ACTIONS(5115), + [anon_sym_BSLASHpagecolor] = ACTIONS(5115), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5115), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5115), + [anon_sym_BSLASHtext] = ACTIONS(5115), + [anon_sym_BSLASHintertext] = ACTIONS(5115), + [anon_sym_shortintertext] = ACTIONS(5115), + }, + [748] = { + [ts_builtin_sym_end] = ACTIONS(5117), + [sym_command_name] = ACTIONS(5119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_BSLASHpart] = ACTIONS(5119), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddpart] = ACTIONS(5119), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5117), + [anon_sym_BSLASHchapter] = ACTIONS(5119), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddchap] = ACTIONS(5119), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsection] = ACTIONS(5119), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddsec] = ACTIONS(5119), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubsection] = ACTIONS(5119), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5119), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHparagraph] = ACTIONS(5119), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5119), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5117), + [anon_sym_BSLASHitem] = ACTIONS(5119), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5117), + [sym_word] = ACTIONS(5119), + [sym_placeholder] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5119), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_CARET] = ACTIONS(5119), + [anon_sym__] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_COLON] = ACTIONS(5119), + [anon_sym_SQUOTE] = ACTIONS(5119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), + [anon_sym_DOLLAR] = ACTIONS(5119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), + [anon_sym_BSLASHbegin] = ACTIONS(5119), + [anon_sym_BSLASHusepackage] = ACTIONS(5119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), + [anon_sym_BSLASHinclude] = ACTIONS(5119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), + [anon_sym_BSLASHinput] = ACTIONS(5119), + [anon_sym_BSLASHsubfile] = ACTIONS(5119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), + [anon_sym_BSLASHbibliography] = ACTIONS(5119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), + [anon_sym_BSLASHincludesvg] = ACTIONS(5119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), + [anon_sym_BSLASHimport] = ACTIONS(5119), + [anon_sym_BSLASHsubimport] = ACTIONS(5119), + [anon_sym_BSLASHinputfrom] = ACTIONS(5119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), + [anon_sym_BSLASHincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHcaption] = ACTIONS(5119), + [anon_sym_BSLASHcite] = ACTIONS(5119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCite] = ACTIONS(5119), + [anon_sym_BSLASHnocite] = ACTIONS(5119), + [anon_sym_BSLASHcitet] = ACTIONS(5119), + [anon_sym_BSLASHcitep] = ACTIONS(5119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteauthor] = ACTIONS(5119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitetitle] = ACTIONS(5119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteyear] = ACTIONS(5119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitedate] = ACTIONS(5119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteurl] = ACTIONS(5119), + [anon_sym_BSLASHfullcite] = ACTIONS(5119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), + [anon_sym_BSLASHcitealt] = ACTIONS(5119), + [anon_sym_BSLASHcitealp] = ACTIONS(5119), + [anon_sym_BSLASHcitetext] = ACTIONS(5119), + [anon_sym_BSLASHparencite] = ACTIONS(5119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHParencite] = ACTIONS(5119), + [anon_sym_BSLASHfootcite] = ACTIONS(5119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), + [anon_sym_BSLASHtextcite] = ACTIONS(5119), + [anon_sym_BSLASHTextcite] = ACTIONS(5119), + [anon_sym_BSLASHsmartcite] = ACTIONS(5119), + [anon_sym_BSLASHSmartcite] = ACTIONS(5119), + [anon_sym_BSLASHsupercite] = ACTIONS(5119), + [anon_sym_BSLASHautocite] = ACTIONS(5119), + [anon_sym_BSLASHAutocite] = ACTIONS(5119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHvolcite] = ACTIONS(5119), + [anon_sym_BSLASHVolcite] = ACTIONS(5119), + [anon_sym_BSLASHpvolcite] = ACTIONS(5119), + [anon_sym_BSLASHPvolcite] = ACTIONS(5119), + [anon_sym_BSLASHfvolcite] = ACTIONS(5119), + [anon_sym_BSLASHftvolcite] = ACTIONS(5119), + [anon_sym_BSLASHsvolcite] = ACTIONS(5119), + [anon_sym_BSLASHSvolcite] = ACTIONS(5119), + [anon_sym_BSLASHtvolcite] = ACTIONS(5119), + [anon_sym_BSLASHTvolcite] = ACTIONS(5119), + [anon_sym_BSLASHavolcite] = ACTIONS(5119), + [anon_sym_BSLASHAvolcite] = ACTIONS(5119), + [anon_sym_BSLASHnotecite] = ACTIONS(5119), + [anon_sym_BSLASHNotecite] = ACTIONS(5119), + [anon_sym_BSLASHpnotecite] = ACTIONS(5119), + [anon_sym_BSLASHPnotecite] = ACTIONS(5119), + [anon_sym_BSLASHfnotecite] = ACTIONS(5119), + [anon_sym_BSLASHlabel] = ACTIONS(5119), + [anon_sym_BSLASHref] = ACTIONS(5119), + [anon_sym_BSLASHeqref] = ACTIONS(5119), + [anon_sym_BSLASHvref] = ACTIONS(5119), + [anon_sym_BSLASHVref] = ACTIONS(5119), + [anon_sym_BSLASHautoref] = ACTIONS(5119), + [anon_sym_BSLASHpageref] = ACTIONS(5119), + [anon_sym_BSLASHcref] = ACTIONS(5119), + [anon_sym_BSLASHCref] = ACTIONS(5119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnameCref] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHlabelcref] = ACTIONS(5119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCrefrange] = ACTIONS(5119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnewlabel] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), + [anon_sym_BSLASHdef] = ACTIONS(5119), + [anon_sym_BSLASHlet] = ACTIONS(5119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), + [anon_sym_BSLASHgls] = ACTIONS(5119), + [anon_sym_BSLASHGls] = ACTIONS(5119), + [anon_sym_BSLASHGLS] = ACTIONS(5119), + [anon_sym_BSLASHglspl] = ACTIONS(5119), + [anon_sym_BSLASHGlspl] = ACTIONS(5119), + [anon_sym_BSLASHGLSpl] = ACTIONS(5119), + [anon_sym_BSLASHglsdisp] = ACTIONS(5119), + [anon_sym_BSLASHglslink] = ACTIONS(5119), + [anon_sym_BSLASHglstext] = ACTIONS(5119), + [anon_sym_BSLASHGlstext] = ACTIONS(5119), + [anon_sym_BSLASHGLStext] = ACTIONS(5119), + [anon_sym_BSLASHglsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), + [anon_sym_BSLASHglsplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSplural] = ACTIONS(5119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHglsname] = ACTIONS(5119), + [anon_sym_BSLASHGlsname] = ACTIONS(5119), + [anon_sym_BSLASHGLSname] = ACTIONS(5119), + [anon_sym_BSLASHglssymbol] = ACTIONS(5119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), + [anon_sym_BSLASHglsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), + [anon_sym_BSLASHglsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), + [anon_sym_BSLASHglsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), + [anon_sym_BSLASHglsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), + [anon_sym_BSLASHglsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), + [anon_sym_BSLASHnewacronym] = ACTIONS(5119), + [anon_sym_BSLASHacrshort] = ACTIONS(5119), + [anon_sym_BSLASHAcrshort] = ACTIONS(5119), + [anon_sym_BSLASHACRshort] = ACTIONS(5119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), + [anon_sym_BSLASHacrlong] = ACTIONS(5119), + [anon_sym_BSLASHAcrlong] = ACTIONS(5119), + [anon_sym_BSLASHACRlong] = ACTIONS(5119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), + [anon_sym_BSLASHacrfull] = ACTIONS(5119), + [anon_sym_BSLASHAcrfull] = ACTIONS(5119), + [anon_sym_BSLASHACRfull] = ACTIONS(5119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), + [anon_sym_BSLASHacs] = ACTIONS(5119), + [anon_sym_BSLASHAcs] = ACTIONS(5119), + [anon_sym_BSLASHacsp] = ACTIONS(5119), + [anon_sym_BSLASHAcsp] = ACTIONS(5119), + [anon_sym_BSLASHacl] = ACTIONS(5119), + [anon_sym_BSLASHAcl] = ACTIONS(5119), + [anon_sym_BSLASHaclp] = ACTIONS(5119), + [anon_sym_BSLASHAclp] = ACTIONS(5119), + [anon_sym_BSLASHacf] = ACTIONS(5119), + [anon_sym_BSLASHAcf] = ACTIONS(5119), + [anon_sym_BSLASHacfp] = ACTIONS(5119), + [anon_sym_BSLASHAcfp] = ACTIONS(5119), + [anon_sym_BSLASHac] = ACTIONS(5119), + [anon_sym_BSLASHAc] = ACTIONS(5119), + [anon_sym_BSLASHacp] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), + [anon_sym_BSLASHcolor] = ACTIONS(5119), + [anon_sym_BSLASHcolorbox] = ACTIONS(5119), + [anon_sym_BSLASHtextcolor] = ACTIONS(5119), + [anon_sym_BSLASHpagecolor] = ACTIONS(5119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), + [anon_sym_BSLASHtext] = ACTIONS(5119), + [anon_sym_BSLASHintertext] = ACTIONS(5119), + [anon_sym_shortintertext] = ACTIONS(5119), + }, + [749] = { + [ts_builtin_sym_end] = ACTIONS(5121), + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_RBRACK] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_BSLASHpart] = ACTIONS(5123), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddpart] = ACTIONS(5123), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5121), + [anon_sym_BSLASHchapter] = ACTIONS(5123), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddchap] = ACTIONS(5123), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsection] = ACTIONS(5123), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddsec] = ACTIONS(5123), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubsection] = ACTIONS(5123), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5123), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHparagraph] = ACTIONS(5123), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5123), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5121), + [anon_sym_BSLASHitem] = ACTIONS(5123), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5121), + [anon_sym_RBRACE] = ACTIONS(5121), + [sym_word] = ACTIONS(5123), + [sym_placeholder] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5123), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_CARET] = ACTIONS(5123), + [anon_sym__] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5123), + [anon_sym_COLON] = ACTIONS(5123), + [anon_sym_SQUOTE] = ACTIONS(5123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5121), + [anon_sym_DOLLAR] = ACTIONS(5123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5121), + [anon_sym_BSLASHbegin] = ACTIONS(5123), + [anon_sym_BSLASHusepackage] = ACTIONS(5123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5123), + [anon_sym_BSLASHinclude] = ACTIONS(5123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5123), + [anon_sym_BSLASHinput] = ACTIONS(5123), + [anon_sym_BSLASHsubfile] = ACTIONS(5123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5123), + [anon_sym_BSLASHbibliography] = ACTIONS(5123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5123), + [anon_sym_BSLASHincludesvg] = ACTIONS(5123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5123), + [anon_sym_BSLASHimport] = ACTIONS(5123), + [anon_sym_BSLASHsubimport] = ACTIONS(5123), + [anon_sym_BSLASHinputfrom] = ACTIONS(5123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5123), + [anon_sym_BSLASHincludefrom] = ACTIONS(5123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5123), + [anon_sym_BSLASHcaption] = ACTIONS(5123), + [anon_sym_BSLASHcite] = ACTIONS(5123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCite] = ACTIONS(5123), + [anon_sym_BSLASHnocite] = ACTIONS(5123), + [anon_sym_BSLASHcitet] = ACTIONS(5123), + [anon_sym_BSLASHcitep] = ACTIONS(5123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteauthor] = ACTIONS(5123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitetitle] = ACTIONS(5123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteyear] = ACTIONS(5123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitedate] = ACTIONS(5123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteurl] = ACTIONS(5123), + [anon_sym_BSLASHfullcite] = ACTIONS(5123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5123), + [anon_sym_BSLASHcitealt] = ACTIONS(5123), + [anon_sym_BSLASHcitealp] = ACTIONS(5123), + [anon_sym_BSLASHcitetext] = ACTIONS(5123), + [anon_sym_BSLASHparencite] = ACTIONS(5123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHParencite] = ACTIONS(5123), + [anon_sym_BSLASHfootcite] = ACTIONS(5123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5123), + [anon_sym_BSLASHtextcite] = ACTIONS(5123), + [anon_sym_BSLASHTextcite] = ACTIONS(5123), + [anon_sym_BSLASHsmartcite] = ACTIONS(5123), + [anon_sym_BSLASHSmartcite] = ACTIONS(5123), + [anon_sym_BSLASHsupercite] = ACTIONS(5123), + [anon_sym_BSLASHautocite] = ACTIONS(5123), + [anon_sym_BSLASHAutocite] = ACTIONS(5123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHvolcite] = ACTIONS(5123), + [anon_sym_BSLASHVolcite] = ACTIONS(5123), + [anon_sym_BSLASHpvolcite] = ACTIONS(5123), + [anon_sym_BSLASHPvolcite] = ACTIONS(5123), + [anon_sym_BSLASHfvolcite] = ACTIONS(5123), + [anon_sym_BSLASHftvolcite] = ACTIONS(5123), + [anon_sym_BSLASHsvolcite] = ACTIONS(5123), + [anon_sym_BSLASHSvolcite] = ACTIONS(5123), + [anon_sym_BSLASHtvolcite] = ACTIONS(5123), + [anon_sym_BSLASHTvolcite] = ACTIONS(5123), + [anon_sym_BSLASHavolcite] = ACTIONS(5123), + [anon_sym_BSLASHAvolcite] = ACTIONS(5123), + [anon_sym_BSLASHnotecite] = ACTIONS(5123), + [anon_sym_BSLASHNotecite] = ACTIONS(5123), + [anon_sym_BSLASHpnotecite] = ACTIONS(5123), + [anon_sym_BSLASHPnotecite] = ACTIONS(5123), + [anon_sym_BSLASHfnotecite] = ACTIONS(5123), + [anon_sym_BSLASHlabel] = ACTIONS(5123), + [anon_sym_BSLASHref] = ACTIONS(5123), + [anon_sym_BSLASHeqref] = ACTIONS(5123), + [anon_sym_BSLASHvref] = ACTIONS(5123), + [anon_sym_BSLASHVref] = ACTIONS(5123), + [anon_sym_BSLASHautoref] = ACTIONS(5123), + [anon_sym_BSLASHpageref] = ACTIONS(5123), + [anon_sym_BSLASHcref] = ACTIONS(5123), + [anon_sym_BSLASHCref] = ACTIONS(5123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5121), + [anon_sym_BSLASHnamecref] = ACTIONS(5123), + [anon_sym_BSLASHnameCref] = ACTIONS(5123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5123), + [anon_sym_BSLASHlabelcref] = ACTIONS(5123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5123), + [anon_sym_BSLASHcrefrange] = ACTIONS(5123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCrefrange] = ACTIONS(5123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5121), + [anon_sym_BSLASHnewlabel] = ACTIONS(5123), + [anon_sym_BSLASHnewcommand] = ACTIONS(5123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5121), + [anon_sym_BSLASHdef] = ACTIONS(5123), + [anon_sym_BSLASHlet] = ACTIONS(5123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5123), + [anon_sym_BSLASHgls] = ACTIONS(5123), + [anon_sym_BSLASHGls] = ACTIONS(5123), + [anon_sym_BSLASHGLS] = ACTIONS(5123), + [anon_sym_BSLASHglspl] = ACTIONS(5123), + [anon_sym_BSLASHGlspl] = ACTIONS(5123), + [anon_sym_BSLASHGLSpl] = ACTIONS(5123), + [anon_sym_BSLASHglsdisp] = ACTIONS(5123), + [anon_sym_BSLASHglslink] = ACTIONS(5123), + [anon_sym_BSLASHglstext] = ACTIONS(5123), + [anon_sym_BSLASHGlstext] = ACTIONS(5123), + [anon_sym_BSLASHGLStext] = ACTIONS(5123), + [anon_sym_BSLASHglsfirst] = ACTIONS(5123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5123), + [anon_sym_BSLASHglsplural] = ACTIONS(5123), + [anon_sym_BSLASHGlsplural] = ACTIONS(5123), + [anon_sym_BSLASHGLSplural] = ACTIONS(5123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHglsname] = ACTIONS(5123), + [anon_sym_BSLASHGlsname] = ACTIONS(5123), + [anon_sym_BSLASHGLSname] = ACTIONS(5123), + [anon_sym_BSLASHglssymbol] = ACTIONS(5123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5123), + [anon_sym_BSLASHglsdesc] = ACTIONS(5123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5123), + [anon_sym_BSLASHglsuseri] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5123), + [anon_sym_BSLASHglsuserii] = ACTIONS(5123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5123), + [anon_sym_BSLASHglsuserv] = ACTIONS(5123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5123), + [anon_sym_BSLASHglsuservi] = ACTIONS(5123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5123), + [anon_sym_BSLASHnewacronym] = ACTIONS(5123), + [anon_sym_BSLASHacrshort] = ACTIONS(5123), + [anon_sym_BSLASHAcrshort] = ACTIONS(5123), + [anon_sym_BSLASHACRshort] = ACTIONS(5123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5123), + [anon_sym_BSLASHacrlong] = ACTIONS(5123), + [anon_sym_BSLASHAcrlong] = ACTIONS(5123), + [anon_sym_BSLASHACRlong] = ACTIONS(5123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5123), + [anon_sym_BSLASHacrfull] = ACTIONS(5123), + [anon_sym_BSLASHAcrfull] = ACTIONS(5123), + [anon_sym_BSLASHACRfull] = ACTIONS(5123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5123), + [anon_sym_BSLASHacs] = ACTIONS(5123), + [anon_sym_BSLASHAcs] = ACTIONS(5123), + [anon_sym_BSLASHacsp] = ACTIONS(5123), + [anon_sym_BSLASHAcsp] = ACTIONS(5123), + [anon_sym_BSLASHacl] = ACTIONS(5123), + [anon_sym_BSLASHAcl] = ACTIONS(5123), + [anon_sym_BSLASHaclp] = ACTIONS(5123), + [anon_sym_BSLASHAclp] = ACTIONS(5123), + [anon_sym_BSLASHacf] = ACTIONS(5123), + [anon_sym_BSLASHAcf] = ACTIONS(5123), + [anon_sym_BSLASHacfp] = ACTIONS(5123), + [anon_sym_BSLASHAcfp] = ACTIONS(5123), + [anon_sym_BSLASHac] = ACTIONS(5123), + [anon_sym_BSLASHAc] = ACTIONS(5123), + [anon_sym_BSLASHacp] = ACTIONS(5123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5123), + [anon_sym_BSLASHcolor] = ACTIONS(5123), + [anon_sym_BSLASHcolorbox] = ACTIONS(5123), + [anon_sym_BSLASHtextcolor] = ACTIONS(5123), + [anon_sym_BSLASHpagecolor] = ACTIONS(5123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5123), + [anon_sym_BSLASHtext] = ACTIONS(5123), + [anon_sym_BSLASHintertext] = ACTIONS(5123), + [anon_sym_shortintertext] = ACTIONS(5123), + }, + [750] = { + [ts_builtin_sym_end] = ACTIONS(5125), + [sym_command_name] = ACTIONS(5127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_RPAREN] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_BSLASHpart] = ACTIONS(5127), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddpart] = ACTIONS(5127), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5125), + [anon_sym_BSLASHchapter] = ACTIONS(5127), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddchap] = ACTIONS(5127), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsection] = ACTIONS(5127), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddsec] = ACTIONS(5127), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubsection] = ACTIONS(5127), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5127), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHparagraph] = ACTIONS(5127), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5127), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5125), + [anon_sym_BSLASHitem] = ACTIONS(5127), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5125), + [anon_sym_RBRACE] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5127), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_CARET] = ACTIONS(5127), + [anon_sym__] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5127), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_COLON] = ACTIONS(5127), + [anon_sym_SQUOTE] = ACTIONS(5127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5125), + [anon_sym_DOLLAR] = ACTIONS(5127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5125), + [anon_sym_BSLASHbegin] = ACTIONS(5127), + [anon_sym_BSLASHusepackage] = ACTIONS(5127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5127), + [anon_sym_BSLASHinclude] = ACTIONS(5127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5127), + [anon_sym_BSLASHinput] = ACTIONS(5127), + [anon_sym_BSLASHsubfile] = ACTIONS(5127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5127), + [anon_sym_BSLASHbibliography] = ACTIONS(5127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5127), + [anon_sym_BSLASHincludesvg] = ACTIONS(5127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5127), + [anon_sym_BSLASHimport] = ACTIONS(5127), + [anon_sym_BSLASHsubimport] = ACTIONS(5127), + [anon_sym_BSLASHinputfrom] = ACTIONS(5127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5127), + [anon_sym_BSLASHincludefrom] = ACTIONS(5127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5127), + [anon_sym_BSLASHcaption] = ACTIONS(5127), + [anon_sym_BSLASHcite] = ACTIONS(5127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCite] = ACTIONS(5127), + [anon_sym_BSLASHnocite] = ACTIONS(5127), + [anon_sym_BSLASHcitet] = ACTIONS(5127), + [anon_sym_BSLASHcitep] = ACTIONS(5127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteauthor] = ACTIONS(5127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitetitle] = ACTIONS(5127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteyear] = ACTIONS(5127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitedate] = ACTIONS(5127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteurl] = ACTIONS(5127), + [anon_sym_BSLASHfullcite] = ACTIONS(5127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5127), + [anon_sym_BSLASHcitealt] = ACTIONS(5127), + [anon_sym_BSLASHcitealp] = ACTIONS(5127), + [anon_sym_BSLASHcitetext] = ACTIONS(5127), + [anon_sym_BSLASHparencite] = ACTIONS(5127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHParencite] = ACTIONS(5127), + [anon_sym_BSLASHfootcite] = ACTIONS(5127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5127), + [anon_sym_BSLASHtextcite] = ACTIONS(5127), + [anon_sym_BSLASHTextcite] = ACTIONS(5127), + [anon_sym_BSLASHsmartcite] = ACTIONS(5127), + [anon_sym_BSLASHSmartcite] = ACTIONS(5127), + [anon_sym_BSLASHsupercite] = ACTIONS(5127), + [anon_sym_BSLASHautocite] = ACTIONS(5127), + [anon_sym_BSLASHAutocite] = ACTIONS(5127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHvolcite] = ACTIONS(5127), + [anon_sym_BSLASHVolcite] = ACTIONS(5127), + [anon_sym_BSLASHpvolcite] = ACTIONS(5127), + [anon_sym_BSLASHPvolcite] = ACTIONS(5127), + [anon_sym_BSLASHfvolcite] = ACTIONS(5127), + [anon_sym_BSLASHftvolcite] = ACTIONS(5127), + [anon_sym_BSLASHsvolcite] = ACTIONS(5127), + [anon_sym_BSLASHSvolcite] = ACTIONS(5127), + [anon_sym_BSLASHtvolcite] = ACTIONS(5127), + [anon_sym_BSLASHTvolcite] = ACTIONS(5127), + [anon_sym_BSLASHavolcite] = ACTIONS(5127), + [anon_sym_BSLASHAvolcite] = ACTIONS(5127), + [anon_sym_BSLASHnotecite] = ACTIONS(5127), + [anon_sym_BSLASHNotecite] = ACTIONS(5127), + [anon_sym_BSLASHpnotecite] = ACTIONS(5127), + [anon_sym_BSLASHPnotecite] = ACTIONS(5127), + [anon_sym_BSLASHfnotecite] = ACTIONS(5127), + [anon_sym_BSLASHlabel] = ACTIONS(5127), + [anon_sym_BSLASHref] = ACTIONS(5127), + [anon_sym_BSLASHeqref] = ACTIONS(5127), + [anon_sym_BSLASHvref] = ACTIONS(5127), + [anon_sym_BSLASHVref] = ACTIONS(5127), + [anon_sym_BSLASHautoref] = ACTIONS(5127), + [anon_sym_BSLASHpageref] = ACTIONS(5127), + [anon_sym_BSLASHcref] = ACTIONS(5127), + [anon_sym_BSLASHCref] = ACTIONS(5127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5125), + [anon_sym_BSLASHnamecref] = ACTIONS(5127), + [anon_sym_BSLASHnameCref] = ACTIONS(5127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5127), + [anon_sym_BSLASHlabelcref] = ACTIONS(5127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5127), + [anon_sym_BSLASHcrefrange] = ACTIONS(5127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCrefrange] = ACTIONS(5127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5125), + [anon_sym_BSLASHnewlabel] = ACTIONS(5127), + [anon_sym_BSLASHnewcommand] = ACTIONS(5127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5125), + [anon_sym_BSLASHdef] = ACTIONS(5127), + [anon_sym_BSLASHlet] = ACTIONS(5127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5127), + [anon_sym_BSLASHgls] = ACTIONS(5127), + [anon_sym_BSLASHGls] = ACTIONS(5127), + [anon_sym_BSLASHGLS] = ACTIONS(5127), + [anon_sym_BSLASHglspl] = ACTIONS(5127), + [anon_sym_BSLASHGlspl] = ACTIONS(5127), + [anon_sym_BSLASHGLSpl] = ACTIONS(5127), + [anon_sym_BSLASHglsdisp] = ACTIONS(5127), + [anon_sym_BSLASHglslink] = ACTIONS(5127), + [anon_sym_BSLASHglstext] = ACTIONS(5127), + [anon_sym_BSLASHGlstext] = ACTIONS(5127), + [anon_sym_BSLASHGLStext] = ACTIONS(5127), + [anon_sym_BSLASHglsfirst] = ACTIONS(5127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5127), + [anon_sym_BSLASHglsplural] = ACTIONS(5127), + [anon_sym_BSLASHGlsplural] = ACTIONS(5127), + [anon_sym_BSLASHGLSplural] = ACTIONS(5127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHglsname] = ACTIONS(5127), + [anon_sym_BSLASHGlsname] = ACTIONS(5127), + [anon_sym_BSLASHGLSname] = ACTIONS(5127), + [anon_sym_BSLASHglssymbol] = ACTIONS(5127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5127), + [anon_sym_BSLASHglsdesc] = ACTIONS(5127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5127), + [anon_sym_BSLASHglsuseri] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5127), + [anon_sym_BSLASHglsuserii] = ACTIONS(5127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5127), + [anon_sym_BSLASHglsuserv] = ACTIONS(5127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5127), + [anon_sym_BSLASHglsuservi] = ACTIONS(5127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5127), + [anon_sym_BSLASHnewacronym] = ACTIONS(5127), + [anon_sym_BSLASHacrshort] = ACTIONS(5127), + [anon_sym_BSLASHAcrshort] = ACTIONS(5127), + [anon_sym_BSLASHACRshort] = ACTIONS(5127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5127), + [anon_sym_BSLASHacrlong] = ACTIONS(5127), + [anon_sym_BSLASHAcrlong] = ACTIONS(5127), + [anon_sym_BSLASHACRlong] = ACTIONS(5127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5127), + [anon_sym_BSLASHacrfull] = ACTIONS(5127), + [anon_sym_BSLASHAcrfull] = ACTIONS(5127), + [anon_sym_BSLASHACRfull] = ACTIONS(5127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5127), + [anon_sym_BSLASHacs] = ACTIONS(5127), + [anon_sym_BSLASHAcs] = ACTIONS(5127), + [anon_sym_BSLASHacsp] = ACTIONS(5127), + [anon_sym_BSLASHAcsp] = ACTIONS(5127), + [anon_sym_BSLASHacl] = ACTIONS(5127), + [anon_sym_BSLASHAcl] = ACTIONS(5127), + [anon_sym_BSLASHaclp] = ACTIONS(5127), + [anon_sym_BSLASHAclp] = ACTIONS(5127), + [anon_sym_BSLASHacf] = ACTIONS(5127), + [anon_sym_BSLASHAcf] = ACTIONS(5127), + [anon_sym_BSLASHacfp] = ACTIONS(5127), + [anon_sym_BSLASHAcfp] = ACTIONS(5127), + [anon_sym_BSLASHac] = ACTIONS(5127), + [anon_sym_BSLASHAc] = ACTIONS(5127), + [anon_sym_BSLASHacp] = ACTIONS(5127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5127), + [anon_sym_BSLASHcolor] = ACTIONS(5127), + [anon_sym_BSLASHcolorbox] = ACTIONS(5127), + [anon_sym_BSLASHtextcolor] = ACTIONS(5127), + [anon_sym_BSLASHpagecolor] = ACTIONS(5127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5127), + [anon_sym_BSLASHtext] = ACTIONS(5127), + [anon_sym_BSLASHintertext] = ACTIONS(5127), + [anon_sym_shortintertext] = ACTIONS(5127), + }, + [751] = { + [ts_builtin_sym_end] = ACTIONS(5129), + [sym_command_name] = ACTIONS(5131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_BSLASHpart] = ACTIONS(5131), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddpart] = ACTIONS(5131), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5129), + [anon_sym_BSLASHchapter] = ACTIONS(5131), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddchap] = ACTIONS(5131), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsection] = ACTIONS(5131), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddsec] = ACTIONS(5131), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubsection] = ACTIONS(5131), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5131), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHparagraph] = ACTIONS(5131), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5131), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5129), + [anon_sym_BSLASHitem] = ACTIONS(5131), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5129), + [anon_sym_RBRACE] = ACTIONS(5129), + [sym_word] = ACTIONS(5131), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5129), + [anon_sym_DOLLAR] = ACTIONS(5131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5129), + [anon_sym_BSLASHbegin] = ACTIONS(5131), + [anon_sym_BSLASHusepackage] = ACTIONS(5131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5131), + [anon_sym_BSLASHinclude] = ACTIONS(5131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5131), + [anon_sym_BSLASHinput] = ACTIONS(5131), + [anon_sym_BSLASHsubfile] = ACTIONS(5131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5131), + [anon_sym_BSLASHbibliography] = ACTIONS(5131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5131), + [anon_sym_BSLASHincludesvg] = ACTIONS(5131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5131), + [anon_sym_BSLASHimport] = ACTIONS(5131), + [anon_sym_BSLASHsubimport] = ACTIONS(5131), + [anon_sym_BSLASHinputfrom] = ACTIONS(5131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5131), + [anon_sym_BSLASHincludefrom] = ACTIONS(5131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5131), + [anon_sym_BSLASHcaption] = ACTIONS(5131), + [anon_sym_BSLASHcite] = ACTIONS(5131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCite] = ACTIONS(5131), + [anon_sym_BSLASHnocite] = ACTIONS(5131), + [anon_sym_BSLASHcitet] = ACTIONS(5131), + [anon_sym_BSLASHcitep] = ACTIONS(5131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteauthor] = ACTIONS(5131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitetitle] = ACTIONS(5131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteyear] = ACTIONS(5131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitedate] = ACTIONS(5131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteurl] = ACTIONS(5131), + [anon_sym_BSLASHfullcite] = ACTIONS(5131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5131), + [anon_sym_BSLASHcitealt] = ACTIONS(5131), + [anon_sym_BSLASHcitealp] = ACTIONS(5131), + [anon_sym_BSLASHcitetext] = ACTIONS(5131), + [anon_sym_BSLASHparencite] = ACTIONS(5131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHParencite] = ACTIONS(5131), + [anon_sym_BSLASHfootcite] = ACTIONS(5131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5131), + [anon_sym_BSLASHtextcite] = ACTIONS(5131), + [anon_sym_BSLASHTextcite] = ACTIONS(5131), + [anon_sym_BSLASHsmartcite] = ACTIONS(5131), + [anon_sym_BSLASHSmartcite] = ACTIONS(5131), + [anon_sym_BSLASHsupercite] = ACTIONS(5131), + [anon_sym_BSLASHautocite] = ACTIONS(5131), + [anon_sym_BSLASHAutocite] = ACTIONS(5131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHvolcite] = ACTIONS(5131), + [anon_sym_BSLASHVolcite] = ACTIONS(5131), + [anon_sym_BSLASHpvolcite] = ACTIONS(5131), + [anon_sym_BSLASHPvolcite] = ACTIONS(5131), + [anon_sym_BSLASHfvolcite] = ACTIONS(5131), + [anon_sym_BSLASHftvolcite] = ACTIONS(5131), + [anon_sym_BSLASHsvolcite] = ACTIONS(5131), + [anon_sym_BSLASHSvolcite] = ACTIONS(5131), + [anon_sym_BSLASHtvolcite] = ACTIONS(5131), + [anon_sym_BSLASHTvolcite] = ACTIONS(5131), + [anon_sym_BSLASHavolcite] = ACTIONS(5131), + [anon_sym_BSLASHAvolcite] = ACTIONS(5131), + [anon_sym_BSLASHnotecite] = ACTIONS(5131), + [anon_sym_BSLASHNotecite] = ACTIONS(5131), + [anon_sym_BSLASHpnotecite] = ACTIONS(5131), + [anon_sym_BSLASHPnotecite] = ACTIONS(5131), + [anon_sym_BSLASHfnotecite] = ACTIONS(5131), + [anon_sym_BSLASHlabel] = ACTIONS(5131), + [anon_sym_BSLASHref] = ACTIONS(5131), + [anon_sym_BSLASHeqref] = ACTIONS(5131), + [anon_sym_BSLASHvref] = ACTIONS(5131), + [anon_sym_BSLASHVref] = ACTIONS(5131), + [anon_sym_BSLASHautoref] = ACTIONS(5131), + [anon_sym_BSLASHpageref] = ACTIONS(5131), + [anon_sym_BSLASHcref] = ACTIONS(5131), + [anon_sym_BSLASHCref] = ACTIONS(5131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5129), + [anon_sym_BSLASHnamecref] = ACTIONS(5131), + [anon_sym_BSLASHnameCref] = ACTIONS(5131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5131), + [anon_sym_BSLASHlabelcref] = ACTIONS(5131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5131), + [anon_sym_BSLASHcrefrange] = ACTIONS(5131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCrefrange] = ACTIONS(5131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5129), + [anon_sym_BSLASHnewlabel] = ACTIONS(5131), + [anon_sym_BSLASHnewcommand] = ACTIONS(5131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5129), + [anon_sym_BSLASHdef] = ACTIONS(5131), + [anon_sym_BSLASHlet] = ACTIONS(5131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5131), + [anon_sym_BSLASHgls] = ACTIONS(5131), + [anon_sym_BSLASHGls] = ACTIONS(5131), + [anon_sym_BSLASHGLS] = ACTIONS(5131), + [anon_sym_BSLASHglspl] = ACTIONS(5131), + [anon_sym_BSLASHGlspl] = ACTIONS(5131), + [anon_sym_BSLASHGLSpl] = ACTIONS(5131), + [anon_sym_BSLASHglsdisp] = ACTIONS(5131), + [anon_sym_BSLASHglslink] = ACTIONS(5131), + [anon_sym_BSLASHglstext] = ACTIONS(5131), + [anon_sym_BSLASHGlstext] = ACTIONS(5131), + [anon_sym_BSLASHGLStext] = ACTIONS(5131), + [anon_sym_BSLASHglsfirst] = ACTIONS(5131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5131), + [anon_sym_BSLASHglsplural] = ACTIONS(5131), + [anon_sym_BSLASHGlsplural] = ACTIONS(5131), + [anon_sym_BSLASHGLSplural] = ACTIONS(5131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHglsname] = ACTIONS(5131), + [anon_sym_BSLASHGlsname] = ACTIONS(5131), + [anon_sym_BSLASHGLSname] = ACTIONS(5131), + [anon_sym_BSLASHglssymbol] = ACTIONS(5131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5131), + [anon_sym_BSLASHglsdesc] = ACTIONS(5131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5131), + [anon_sym_BSLASHglsuseri] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5131), + [anon_sym_BSLASHglsuserii] = ACTIONS(5131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5131), + [anon_sym_BSLASHglsuserv] = ACTIONS(5131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5131), + [anon_sym_BSLASHglsuservi] = ACTIONS(5131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5131), + [anon_sym_BSLASHnewacronym] = ACTIONS(5131), + [anon_sym_BSLASHacrshort] = ACTIONS(5131), + [anon_sym_BSLASHAcrshort] = ACTIONS(5131), + [anon_sym_BSLASHACRshort] = ACTIONS(5131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5131), + [anon_sym_BSLASHacrlong] = ACTIONS(5131), + [anon_sym_BSLASHAcrlong] = ACTIONS(5131), + [anon_sym_BSLASHACRlong] = ACTIONS(5131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5131), + [anon_sym_BSLASHacrfull] = ACTIONS(5131), + [anon_sym_BSLASHAcrfull] = ACTIONS(5131), + [anon_sym_BSLASHACRfull] = ACTIONS(5131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5131), + [anon_sym_BSLASHacs] = ACTIONS(5131), + [anon_sym_BSLASHAcs] = ACTIONS(5131), + [anon_sym_BSLASHacsp] = ACTIONS(5131), + [anon_sym_BSLASHAcsp] = ACTIONS(5131), + [anon_sym_BSLASHacl] = ACTIONS(5131), + [anon_sym_BSLASHAcl] = ACTIONS(5131), + [anon_sym_BSLASHaclp] = ACTIONS(5131), + [anon_sym_BSLASHAclp] = ACTIONS(5131), + [anon_sym_BSLASHacf] = ACTIONS(5131), + [anon_sym_BSLASHAcf] = ACTIONS(5131), + [anon_sym_BSLASHacfp] = ACTIONS(5131), + [anon_sym_BSLASHAcfp] = ACTIONS(5131), + [anon_sym_BSLASHac] = ACTIONS(5131), + [anon_sym_BSLASHAc] = ACTIONS(5131), + [anon_sym_BSLASHacp] = ACTIONS(5131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5131), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5131), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5131), + [anon_sym_BSLASHcolor] = ACTIONS(5131), + [anon_sym_BSLASHcolorbox] = ACTIONS(5131), + [anon_sym_BSLASHtextcolor] = ACTIONS(5131), + [anon_sym_BSLASHpagecolor] = ACTIONS(5131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5131), + [anon_sym_BSLASHtext] = ACTIONS(5131), + [anon_sym_BSLASHintertext] = ACTIONS(5131), + [anon_sym_shortintertext] = ACTIONS(5131), + }, + [752] = { + [ts_builtin_sym_end] = ACTIONS(5133), + [sym_command_name] = ACTIONS(5135), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_RPAREN] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_RBRACK] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_BSLASHpart] = ACTIONS(5135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), + [anon_sym_BSLASHaddpart] = ACTIONS(5135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), + [anon_sym_BSLASHchapter] = ACTIONS(5135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), + [anon_sym_BSLASHaddchap] = ACTIONS(5135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsection] = ACTIONS(5135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), + [anon_sym_BSLASHaddsec] = ACTIONS(5135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsubsection] = ACTIONS(5135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), + [anon_sym_BSLASHparagraph] = ACTIONS(5135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), + [anon_sym_BSLASHitem] = ACTIONS(5135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [sym_word] = ACTIONS(5135), + [sym_placeholder] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_CARET] = ACTIONS(5135), + [anon_sym__] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_PIPE] = ACTIONS(5135), + [anon_sym_COLON] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), + [anon_sym_DOLLAR] = ACTIONS(5135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), + [anon_sym_BSLASHbegin] = ACTIONS(5135), + [anon_sym_BSLASHusepackage] = ACTIONS(5135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), + [anon_sym_BSLASHinclude] = ACTIONS(5135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), + [anon_sym_BSLASHinput] = ACTIONS(5135), + [anon_sym_BSLASHsubfile] = ACTIONS(5135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), + [anon_sym_BSLASHbibliography] = ACTIONS(5135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), + [anon_sym_BSLASHincludesvg] = ACTIONS(5135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), + [anon_sym_BSLASHimport] = ACTIONS(5135), + [anon_sym_BSLASHsubimport] = ACTIONS(5135), + [anon_sym_BSLASHinputfrom] = ACTIONS(5135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), + [anon_sym_BSLASHincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHcaption] = ACTIONS(5135), + [anon_sym_BSLASHcite] = ACTIONS(5135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCite] = ACTIONS(5135), + [anon_sym_BSLASHnocite] = ACTIONS(5135), + [anon_sym_BSLASHcitet] = ACTIONS(5135), + [anon_sym_BSLASHcitep] = ACTIONS(5135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteauthor] = ACTIONS(5135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitetitle] = ACTIONS(5135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteyear] = ACTIONS(5135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitedate] = ACTIONS(5135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteurl] = ACTIONS(5135), + [anon_sym_BSLASHfullcite] = ACTIONS(5135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), + [anon_sym_BSLASHcitealt] = ACTIONS(5135), + [anon_sym_BSLASHcitealp] = ACTIONS(5135), + [anon_sym_BSLASHcitetext] = ACTIONS(5135), + [anon_sym_BSLASHparencite] = ACTIONS(5135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHParencite] = ACTIONS(5135), + [anon_sym_BSLASHfootcite] = ACTIONS(5135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), + [anon_sym_BSLASHtextcite] = ACTIONS(5135), + [anon_sym_BSLASHTextcite] = ACTIONS(5135), + [anon_sym_BSLASHsmartcite] = ACTIONS(5135), + [anon_sym_BSLASHSmartcite] = ACTIONS(5135), + [anon_sym_BSLASHsupercite] = ACTIONS(5135), + [anon_sym_BSLASHautocite] = ACTIONS(5135), + [anon_sym_BSLASHAutocite] = ACTIONS(5135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHvolcite] = ACTIONS(5135), + [anon_sym_BSLASHVolcite] = ACTIONS(5135), + [anon_sym_BSLASHpvolcite] = ACTIONS(5135), + [anon_sym_BSLASHPvolcite] = ACTIONS(5135), + [anon_sym_BSLASHfvolcite] = ACTIONS(5135), + [anon_sym_BSLASHftvolcite] = ACTIONS(5135), + [anon_sym_BSLASHsvolcite] = ACTIONS(5135), + [anon_sym_BSLASHSvolcite] = ACTIONS(5135), + [anon_sym_BSLASHtvolcite] = ACTIONS(5135), + [anon_sym_BSLASHTvolcite] = ACTIONS(5135), + [anon_sym_BSLASHavolcite] = ACTIONS(5135), + [anon_sym_BSLASHAvolcite] = ACTIONS(5135), + [anon_sym_BSLASHnotecite] = ACTIONS(5135), + [anon_sym_BSLASHNotecite] = ACTIONS(5135), + [anon_sym_BSLASHpnotecite] = ACTIONS(5135), + [anon_sym_BSLASHPnotecite] = ACTIONS(5135), + [anon_sym_BSLASHfnotecite] = ACTIONS(5135), + [anon_sym_BSLASHlabel] = ACTIONS(5135), + [anon_sym_BSLASHref] = ACTIONS(5135), + [anon_sym_BSLASHeqref] = ACTIONS(5135), + [anon_sym_BSLASHvref] = ACTIONS(5135), + [anon_sym_BSLASHVref] = ACTIONS(5135), + [anon_sym_BSLASHautoref] = ACTIONS(5135), + [anon_sym_BSLASHpageref] = ACTIONS(5135), + [anon_sym_BSLASHcref] = ACTIONS(5135), + [anon_sym_BSLASHCref] = ACTIONS(5135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnameCref] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHlabelcref] = ACTIONS(5135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCrefrange] = ACTIONS(5135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnewlabel] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), + [anon_sym_BSLASHdef] = ACTIONS(5135), + [anon_sym_BSLASHlet] = ACTIONS(5135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), + [anon_sym_BSLASHgls] = ACTIONS(5135), + [anon_sym_BSLASHGls] = ACTIONS(5135), + [anon_sym_BSLASHGLS] = ACTIONS(5135), + [anon_sym_BSLASHglspl] = ACTIONS(5135), + [anon_sym_BSLASHGlspl] = ACTIONS(5135), + [anon_sym_BSLASHGLSpl] = ACTIONS(5135), + [anon_sym_BSLASHglsdisp] = ACTIONS(5135), + [anon_sym_BSLASHglslink] = ACTIONS(5135), + [anon_sym_BSLASHglstext] = ACTIONS(5135), + [anon_sym_BSLASHGlstext] = ACTIONS(5135), + [anon_sym_BSLASHGLStext] = ACTIONS(5135), + [anon_sym_BSLASHglsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), + [anon_sym_BSLASHglsplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSplural] = ACTIONS(5135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHglsname] = ACTIONS(5135), + [anon_sym_BSLASHGlsname] = ACTIONS(5135), + [anon_sym_BSLASHGLSname] = ACTIONS(5135), + [anon_sym_BSLASHglssymbol] = ACTIONS(5135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), + [anon_sym_BSLASHglsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), + [anon_sym_BSLASHglsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), + [anon_sym_BSLASHglsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), + [anon_sym_BSLASHglsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), + [anon_sym_BSLASHglsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), + [anon_sym_BSLASHnewacronym] = ACTIONS(5135), + [anon_sym_BSLASHacrshort] = ACTIONS(5135), + [anon_sym_BSLASHAcrshort] = ACTIONS(5135), + [anon_sym_BSLASHACRshort] = ACTIONS(5135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), + [anon_sym_BSLASHacrlong] = ACTIONS(5135), + [anon_sym_BSLASHAcrlong] = ACTIONS(5135), + [anon_sym_BSLASHACRlong] = ACTIONS(5135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), + [anon_sym_BSLASHacrfull] = ACTIONS(5135), + [anon_sym_BSLASHAcrfull] = ACTIONS(5135), + [anon_sym_BSLASHACRfull] = ACTIONS(5135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), + [anon_sym_BSLASHacs] = ACTIONS(5135), + [anon_sym_BSLASHAcs] = ACTIONS(5135), + [anon_sym_BSLASHacsp] = ACTIONS(5135), + [anon_sym_BSLASHAcsp] = ACTIONS(5135), + [anon_sym_BSLASHacl] = ACTIONS(5135), + [anon_sym_BSLASHAcl] = ACTIONS(5135), + [anon_sym_BSLASHaclp] = ACTIONS(5135), + [anon_sym_BSLASHAclp] = ACTIONS(5135), + [anon_sym_BSLASHacf] = ACTIONS(5135), + [anon_sym_BSLASHAcf] = ACTIONS(5135), + [anon_sym_BSLASHacfp] = ACTIONS(5135), + [anon_sym_BSLASHAcfp] = ACTIONS(5135), + [anon_sym_BSLASHac] = ACTIONS(5135), + [anon_sym_BSLASHAc] = ACTIONS(5135), + [anon_sym_BSLASHacp] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), + [anon_sym_BSLASHcolor] = ACTIONS(5135), + [anon_sym_BSLASHcolorbox] = ACTIONS(5135), + [anon_sym_BSLASHtextcolor] = ACTIONS(5135), + [anon_sym_BSLASHpagecolor] = ACTIONS(5135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [anon_sym_BSLASHtext] = ACTIONS(5135), + [anon_sym_BSLASHintertext] = ACTIONS(5135), + [anon_sym_shortintertext] = ACTIONS(5135), }, - [967] = { - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_BSLASHpart] = ACTIONS(131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddpart] = ACTIONS(131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHchapter] = ACTIONS(131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddchap] = ACTIONS(131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(129), - [anon_sym_BSLASHsection] = ACTIONS(131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddsec] = ACTIONS(131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHparagraph] = ACTIONS(131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHitem] = ACTIONS(131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASH_RBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [753] = { + [sym_brack_group_text] = STATE(1167), + [sym_command_name] = ACTIONS(4853), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4851), + [anon_sym_LBRACK] = ACTIONS(4931), + [anon_sym_RBRACK] = ACTIONS(4851), + [anon_sym_COMMA] = ACTIONS(4851), + [anon_sym_EQ] = ACTIONS(4851), + [anon_sym_BSLASHpart] = ACTIONS(4853), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddpart] = ACTIONS(4853), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4851), + [anon_sym_BSLASHchapter] = ACTIONS(4853), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddchap] = ACTIONS(4853), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsection] = ACTIONS(4853), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddsec] = ACTIONS(4853), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubsection] = ACTIONS(4853), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4853), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHparagraph] = ACTIONS(4853), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4853), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4851), + [anon_sym_BSLASHitem] = ACTIONS(4853), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4851), + [anon_sym_LBRACE] = ACTIONS(4851), + [sym_word] = ACTIONS(4853), + [sym_placeholder] = ACTIONS(4851), + [anon_sym_PLUS] = ACTIONS(4853), + [anon_sym_DASH] = ACTIONS(4853), + [anon_sym_STAR] = ACTIONS(4853), + [anon_sym_SLASH] = ACTIONS(4853), + [anon_sym_CARET] = ACTIONS(4853), + [anon_sym__] = ACTIONS(4853), + [anon_sym_LT] = ACTIONS(4853), + [anon_sym_GT] = ACTIONS(4853), + [anon_sym_BANG] = ACTIONS(4853), + [anon_sym_PIPE] = ACTIONS(4853), + [anon_sym_COLON] = ACTIONS(4853), + [anon_sym_SQUOTE] = ACTIONS(4853), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4851), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4851), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4853), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4851), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4851), + [anon_sym_BSLASHbegin] = ACTIONS(4853), + [anon_sym_BSLASHusepackage] = ACTIONS(4853), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), + [anon_sym_BSLASHinclude] = ACTIONS(4853), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), + [anon_sym_BSLASHinput] = ACTIONS(4853), + [anon_sym_BSLASHsubfile] = ACTIONS(4853), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), + [anon_sym_BSLASHbibliography] = ACTIONS(4853), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), + [anon_sym_BSLASHincludesvg] = ACTIONS(4853), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), + [anon_sym_BSLASHimport] = ACTIONS(4853), + [anon_sym_BSLASHsubimport] = ACTIONS(4853), + [anon_sym_BSLASHinputfrom] = ACTIONS(4853), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), + [anon_sym_BSLASHincludefrom] = ACTIONS(4853), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), + [anon_sym_BSLASHcaption] = ACTIONS(4853), + [anon_sym_BSLASHcite] = ACTIONS(4853), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCite] = ACTIONS(4853), + [anon_sym_BSLASHnocite] = ACTIONS(4853), + [anon_sym_BSLASHcitet] = ACTIONS(4853), + [anon_sym_BSLASHcitep] = ACTIONS(4853), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteauthor] = ACTIONS(4853), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitetitle] = ACTIONS(4853), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteyear] = ACTIONS(4853), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitedate] = ACTIONS(4853), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteurl] = ACTIONS(4853), + [anon_sym_BSLASHfullcite] = ACTIONS(4853), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), + [anon_sym_BSLASHcitealt] = ACTIONS(4853), + [anon_sym_BSLASHcitealp] = ACTIONS(4853), + [anon_sym_BSLASHcitetext] = ACTIONS(4853), + [anon_sym_BSLASHparencite] = ACTIONS(4853), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHParencite] = ACTIONS(4853), + [anon_sym_BSLASHfootcite] = ACTIONS(4853), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), + [anon_sym_BSLASHtextcite] = ACTIONS(4853), + [anon_sym_BSLASHTextcite] = ACTIONS(4853), + [anon_sym_BSLASHsmartcite] = ACTIONS(4853), + [anon_sym_BSLASHSmartcite] = ACTIONS(4853), + [anon_sym_BSLASHsupercite] = ACTIONS(4853), + [anon_sym_BSLASHautocite] = ACTIONS(4853), + [anon_sym_BSLASHAutocite] = ACTIONS(4853), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHvolcite] = ACTIONS(4853), + [anon_sym_BSLASHVolcite] = ACTIONS(4853), + [anon_sym_BSLASHpvolcite] = ACTIONS(4853), + [anon_sym_BSLASHPvolcite] = ACTIONS(4853), + [anon_sym_BSLASHfvolcite] = ACTIONS(4853), + [anon_sym_BSLASHftvolcite] = ACTIONS(4853), + [anon_sym_BSLASHsvolcite] = ACTIONS(4853), + [anon_sym_BSLASHSvolcite] = ACTIONS(4853), + [anon_sym_BSLASHtvolcite] = ACTIONS(4853), + [anon_sym_BSLASHTvolcite] = ACTIONS(4853), + [anon_sym_BSLASHavolcite] = ACTIONS(4853), + [anon_sym_BSLASHAvolcite] = ACTIONS(4853), + [anon_sym_BSLASHnotecite] = ACTIONS(4853), + [anon_sym_BSLASHNotecite] = ACTIONS(4853), + [anon_sym_BSLASHpnotecite] = ACTIONS(4853), + [anon_sym_BSLASHPnotecite] = ACTIONS(4853), + [anon_sym_BSLASHfnotecite] = ACTIONS(4853), + [anon_sym_BSLASHlabel] = ACTIONS(4853), + [anon_sym_BSLASHref] = ACTIONS(4853), + [anon_sym_BSLASHeqref] = ACTIONS(4853), + [anon_sym_BSLASHvref] = ACTIONS(4853), + [anon_sym_BSLASHVref] = ACTIONS(4853), + [anon_sym_BSLASHautoref] = ACTIONS(4853), + [anon_sym_BSLASHpageref] = ACTIONS(4853), + [anon_sym_BSLASHcref] = ACTIONS(4853), + [anon_sym_BSLASHCref] = ACTIONS(4853), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), + [anon_sym_BSLASHnamecref] = ACTIONS(4853), + [anon_sym_BSLASHnameCref] = ACTIONS(4853), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), + [anon_sym_BSLASHlabelcref] = ACTIONS(4853), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), + [anon_sym_BSLASHcrefrange] = ACTIONS(4853), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCrefrange] = ACTIONS(4853), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), + [anon_sym_BSLASHnewlabel] = ACTIONS(4853), + [anon_sym_BSLASHnewcommand] = ACTIONS(4853), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), + [anon_sym_BSLASHdef] = ACTIONS(4853), + [anon_sym_BSLASHlet] = ACTIONS(4853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), + [anon_sym_BSLASHgls] = ACTIONS(4853), + [anon_sym_BSLASHGls] = ACTIONS(4853), + [anon_sym_BSLASHGLS] = ACTIONS(4853), + [anon_sym_BSLASHglspl] = ACTIONS(4853), + [anon_sym_BSLASHGlspl] = ACTIONS(4853), + [anon_sym_BSLASHGLSpl] = ACTIONS(4853), + [anon_sym_BSLASHglsdisp] = ACTIONS(4853), + [anon_sym_BSLASHglslink] = ACTIONS(4853), + [anon_sym_BSLASHglstext] = ACTIONS(4853), + [anon_sym_BSLASHGlstext] = ACTIONS(4853), + [anon_sym_BSLASHGLStext] = ACTIONS(4853), + [anon_sym_BSLASHglsfirst] = ACTIONS(4853), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), + [anon_sym_BSLASHglsplural] = ACTIONS(4853), + [anon_sym_BSLASHGlsplural] = ACTIONS(4853), + [anon_sym_BSLASHGLSplural] = ACTIONS(4853), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHglsname] = ACTIONS(4853), + [anon_sym_BSLASHGlsname] = ACTIONS(4853), + [anon_sym_BSLASHGLSname] = ACTIONS(4853), + [anon_sym_BSLASHglssymbol] = ACTIONS(4853), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), + [anon_sym_BSLASHglsdesc] = ACTIONS(4853), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), + [anon_sym_BSLASHglsuseri] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), + [anon_sym_BSLASHglsuserii] = ACTIONS(4853), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), + [anon_sym_BSLASHglsuserv] = ACTIONS(4853), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), + [anon_sym_BSLASHglsuservi] = ACTIONS(4853), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), + [anon_sym_BSLASHnewacronym] = ACTIONS(4853), + [anon_sym_BSLASHacrshort] = ACTIONS(4853), + [anon_sym_BSLASHAcrshort] = ACTIONS(4853), + [anon_sym_BSLASHACRshort] = ACTIONS(4853), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), + [anon_sym_BSLASHacrlong] = ACTIONS(4853), + [anon_sym_BSLASHAcrlong] = ACTIONS(4853), + [anon_sym_BSLASHACRlong] = ACTIONS(4853), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), + [anon_sym_BSLASHacrfull] = ACTIONS(4853), + [anon_sym_BSLASHAcrfull] = ACTIONS(4853), + [anon_sym_BSLASHACRfull] = ACTIONS(4853), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), + [anon_sym_BSLASHacs] = ACTIONS(4853), + [anon_sym_BSLASHAcs] = ACTIONS(4853), + [anon_sym_BSLASHacsp] = ACTIONS(4853), + [anon_sym_BSLASHAcsp] = ACTIONS(4853), + [anon_sym_BSLASHacl] = ACTIONS(4853), + [anon_sym_BSLASHAcl] = ACTIONS(4853), + [anon_sym_BSLASHaclp] = ACTIONS(4853), + [anon_sym_BSLASHAclp] = ACTIONS(4853), + [anon_sym_BSLASHacf] = ACTIONS(4853), + [anon_sym_BSLASHAcf] = ACTIONS(4853), + [anon_sym_BSLASHacfp] = ACTIONS(4853), + [anon_sym_BSLASHAcfp] = ACTIONS(4853), + [anon_sym_BSLASHac] = ACTIONS(4853), + [anon_sym_BSLASHAc] = ACTIONS(4853), + [anon_sym_BSLASHacp] = ACTIONS(4853), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), + [anon_sym_BSLASHcolor] = ACTIONS(4853), + [anon_sym_BSLASHcolorbox] = ACTIONS(4853), + [anon_sym_BSLASHtextcolor] = ACTIONS(4853), + [anon_sym_BSLASHpagecolor] = ACTIONS(4853), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), + [anon_sym_BSLASHtext] = ACTIONS(4853), + [anon_sym_BSLASHintertext] = ACTIONS(4853), + [anon_sym_shortintertext] = ACTIONS(4853), }, - [968] = { - [sym_command_name] = ACTIONS(5033), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_BSLASHpart] = ACTIONS(5033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddpart] = ACTIONS(5033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHchapter] = ACTIONS(5033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddchap] = ACTIONS(5033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsection] = ACTIONS(5033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddsec] = ACTIONS(5033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHparagraph] = ACTIONS(5033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHitem] = ACTIONS(5033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5031), - [anon_sym_BSLASHbegin] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [754] = { + [sym_curly_group] = STATE(1168), + [sym_command_name] = ACTIONS(4849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4849), + [anon_sym_LPAREN] = ACTIONS(4847), + [anon_sym_RPAREN] = ACTIONS(4847), + [anon_sym_LBRACK] = ACTIONS(4847), + [anon_sym_RBRACK] = ACTIONS(4847), + [anon_sym_COMMA] = ACTIONS(4847), + [anon_sym_EQ] = ACTIONS(4847), + [anon_sym_BSLASHpart] = ACTIONS(4849), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddpart] = ACTIONS(4849), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4847), + [anon_sym_BSLASHchapter] = ACTIONS(4849), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddchap] = ACTIONS(4849), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsection] = ACTIONS(4849), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddsec] = ACTIONS(4849), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubsection] = ACTIONS(4849), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4849), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHparagraph] = ACTIONS(4849), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4849), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4847), + [anon_sym_BSLASHitem] = ACTIONS(4849), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4847), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(4849), + [sym_placeholder] = ACTIONS(4847), + [anon_sym_PLUS] = ACTIONS(4849), + [anon_sym_DASH] = ACTIONS(4849), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_SLASH] = ACTIONS(4849), + [anon_sym_CARET] = ACTIONS(4849), + [anon_sym__] = ACTIONS(4849), + [anon_sym_LT] = ACTIONS(4849), + [anon_sym_GT] = ACTIONS(4849), + [anon_sym_BANG] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4849), + [anon_sym_COLON] = ACTIONS(4849), + [anon_sym_SQUOTE] = ACTIONS(4849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4847), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4847), + [anon_sym_DOLLAR] = ACTIONS(4849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4847), + [anon_sym_BSLASHbegin] = ACTIONS(4849), + [anon_sym_BSLASHusepackage] = ACTIONS(4849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4849), + [anon_sym_BSLASHinclude] = ACTIONS(4849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4849), + [anon_sym_BSLASHinput] = ACTIONS(4849), + [anon_sym_BSLASHsubfile] = ACTIONS(4849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4849), + [anon_sym_BSLASHbibliography] = ACTIONS(4849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4849), + [anon_sym_BSLASHincludesvg] = ACTIONS(4849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4849), + [anon_sym_BSLASHimport] = ACTIONS(4849), + [anon_sym_BSLASHsubimport] = ACTIONS(4849), + [anon_sym_BSLASHinputfrom] = ACTIONS(4849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4849), + [anon_sym_BSLASHincludefrom] = ACTIONS(4849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4849), + [anon_sym_BSLASHcaption] = ACTIONS(4849), + [anon_sym_BSLASHcite] = ACTIONS(4849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCite] = ACTIONS(4849), + [anon_sym_BSLASHnocite] = ACTIONS(4849), + [anon_sym_BSLASHcitet] = ACTIONS(4849), + [anon_sym_BSLASHcitep] = ACTIONS(4849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteauthor] = ACTIONS(4849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitetitle] = ACTIONS(4849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteyear] = ACTIONS(4849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitedate] = ACTIONS(4849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteurl] = ACTIONS(4849), + [anon_sym_BSLASHfullcite] = ACTIONS(4849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4849), + [anon_sym_BSLASHcitealt] = ACTIONS(4849), + [anon_sym_BSLASHcitealp] = ACTIONS(4849), + [anon_sym_BSLASHcitetext] = ACTIONS(4849), + [anon_sym_BSLASHparencite] = ACTIONS(4849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHParencite] = ACTIONS(4849), + [anon_sym_BSLASHfootcite] = ACTIONS(4849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4849), + [anon_sym_BSLASHtextcite] = ACTIONS(4849), + [anon_sym_BSLASHTextcite] = ACTIONS(4849), + [anon_sym_BSLASHsmartcite] = ACTIONS(4849), + [anon_sym_BSLASHSmartcite] = ACTIONS(4849), + [anon_sym_BSLASHsupercite] = ACTIONS(4849), + [anon_sym_BSLASHautocite] = ACTIONS(4849), + [anon_sym_BSLASHAutocite] = ACTIONS(4849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHvolcite] = ACTIONS(4849), + [anon_sym_BSLASHVolcite] = ACTIONS(4849), + [anon_sym_BSLASHpvolcite] = ACTIONS(4849), + [anon_sym_BSLASHPvolcite] = ACTIONS(4849), + [anon_sym_BSLASHfvolcite] = ACTIONS(4849), + [anon_sym_BSLASHftvolcite] = ACTIONS(4849), + [anon_sym_BSLASHsvolcite] = ACTIONS(4849), + [anon_sym_BSLASHSvolcite] = ACTIONS(4849), + [anon_sym_BSLASHtvolcite] = ACTIONS(4849), + [anon_sym_BSLASHTvolcite] = ACTIONS(4849), + [anon_sym_BSLASHavolcite] = ACTIONS(4849), + [anon_sym_BSLASHAvolcite] = ACTIONS(4849), + [anon_sym_BSLASHnotecite] = ACTIONS(4849), + [anon_sym_BSLASHNotecite] = ACTIONS(4849), + [anon_sym_BSLASHpnotecite] = ACTIONS(4849), + [anon_sym_BSLASHPnotecite] = ACTIONS(4849), + [anon_sym_BSLASHfnotecite] = ACTIONS(4849), + [anon_sym_BSLASHlabel] = ACTIONS(4849), + [anon_sym_BSLASHref] = ACTIONS(4849), + [anon_sym_BSLASHeqref] = ACTIONS(4849), + [anon_sym_BSLASHvref] = ACTIONS(4849), + [anon_sym_BSLASHVref] = ACTIONS(4849), + [anon_sym_BSLASHautoref] = ACTIONS(4849), + [anon_sym_BSLASHpageref] = ACTIONS(4849), + [anon_sym_BSLASHcref] = ACTIONS(4849), + [anon_sym_BSLASHCref] = ACTIONS(4849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4847), + [anon_sym_BSLASHnamecref] = ACTIONS(4849), + [anon_sym_BSLASHnameCref] = ACTIONS(4849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4849), + [anon_sym_BSLASHlabelcref] = ACTIONS(4849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4849), + [anon_sym_BSLASHcrefrange] = ACTIONS(4849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCrefrange] = ACTIONS(4849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4847), + [anon_sym_BSLASHnewlabel] = ACTIONS(4849), + [anon_sym_BSLASHnewcommand] = ACTIONS(4849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4847), + [anon_sym_BSLASHdef] = ACTIONS(4849), + [anon_sym_BSLASHlet] = ACTIONS(4849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4849), + [anon_sym_BSLASHgls] = ACTIONS(4849), + [anon_sym_BSLASHGls] = ACTIONS(4849), + [anon_sym_BSLASHGLS] = ACTIONS(4849), + [anon_sym_BSLASHglspl] = ACTIONS(4849), + [anon_sym_BSLASHGlspl] = ACTIONS(4849), + [anon_sym_BSLASHGLSpl] = ACTIONS(4849), + [anon_sym_BSLASHglsdisp] = ACTIONS(4849), + [anon_sym_BSLASHglslink] = ACTIONS(4849), + [anon_sym_BSLASHglstext] = ACTIONS(4849), + [anon_sym_BSLASHGlstext] = ACTIONS(4849), + [anon_sym_BSLASHGLStext] = ACTIONS(4849), + [anon_sym_BSLASHglsfirst] = ACTIONS(4849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4849), + [anon_sym_BSLASHglsplural] = ACTIONS(4849), + [anon_sym_BSLASHGlsplural] = ACTIONS(4849), + [anon_sym_BSLASHGLSplural] = ACTIONS(4849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHglsname] = ACTIONS(4849), + [anon_sym_BSLASHGlsname] = ACTIONS(4849), + [anon_sym_BSLASHGLSname] = ACTIONS(4849), + [anon_sym_BSLASHglssymbol] = ACTIONS(4849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4849), + [anon_sym_BSLASHglsdesc] = ACTIONS(4849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4849), + [anon_sym_BSLASHglsuseri] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4849), + [anon_sym_BSLASHglsuserii] = ACTIONS(4849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4849), + [anon_sym_BSLASHglsuserv] = ACTIONS(4849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4849), + [anon_sym_BSLASHglsuservi] = ACTIONS(4849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4849), + [anon_sym_BSLASHnewacronym] = ACTIONS(4849), + [anon_sym_BSLASHacrshort] = ACTIONS(4849), + [anon_sym_BSLASHAcrshort] = ACTIONS(4849), + [anon_sym_BSLASHACRshort] = ACTIONS(4849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4849), + [anon_sym_BSLASHacrlong] = ACTIONS(4849), + [anon_sym_BSLASHAcrlong] = ACTIONS(4849), + [anon_sym_BSLASHACRlong] = ACTIONS(4849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4849), + [anon_sym_BSLASHacrfull] = ACTIONS(4849), + [anon_sym_BSLASHAcrfull] = ACTIONS(4849), + [anon_sym_BSLASHACRfull] = ACTIONS(4849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4849), + [anon_sym_BSLASHacs] = ACTIONS(4849), + [anon_sym_BSLASHAcs] = ACTIONS(4849), + [anon_sym_BSLASHacsp] = ACTIONS(4849), + [anon_sym_BSLASHAcsp] = ACTIONS(4849), + [anon_sym_BSLASHacl] = ACTIONS(4849), + [anon_sym_BSLASHAcl] = ACTIONS(4849), + [anon_sym_BSLASHaclp] = ACTIONS(4849), + [anon_sym_BSLASHAclp] = ACTIONS(4849), + [anon_sym_BSLASHacf] = ACTIONS(4849), + [anon_sym_BSLASHAcf] = ACTIONS(4849), + [anon_sym_BSLASHacfp] = ACTIONS(4849), + [anon_sym_BSLASHAcfp] = ACTIONS(4849), + [anon_sym_BSLASHac] = ACTIONS(4849), + [anon_sym_BSLASHAc] = ACTIONS(4849), + [anon_sym_BSLASHacp] = ACTIONS(4849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4849), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4849), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4849), + [anon_sym_BSLASHcolor] = ACTIONS(4849), + [anon_sym_BSLASHcolorbox] = ACTIONS(4849), + [anon_sym_BSLASHtextcolor] = ACTIONS(4849), + [anon_sym_BSLASHpagecolor] = ACTIONS(4849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4849), + [anon_sym_BSLASHtext] = ACTIONS(4849), + [anon_sym_BSLASHintertext] = ACTIONS(4849), + [anon_sym_shortintertext] = ACTIONS(4849), }, - [969] = { - [sym_command_name] = ACTIONS(5037), + [755] = { + [sym_curly_group] = STATE(1169), + [sym_command_name] = ACTIONS(4845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4845), + [anon_sym_LPAREN] = ACTIONS(4843), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_RBRACK] = ACTIONS(4843), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_EQ] = ACTIONS(4843), + [anon_sym_BSLASHpart] = ACTIONS(4845), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddpart] = ACTIONS(4845), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4843), + [anon_sym_BSLASHchapter] = ACTIONS(4845), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddchap] = ACTIONS(4845), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsection] = ACTIONS(4845), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddsec] = ACTIONS(4845), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubsection] = ACTIONS(4845), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4845), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHparagraph] = ACTIONS(4845), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4845), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4843), + [anon_sym_BSLASHitem] = ACTIONS(4845), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4843), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(4845), + [sym_placeholder] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4845), + [anon_sym_SLASH] = ACTIONS(4845), + [anon_sym_CARET] = ACTIONS(4845), + [anon_sym__] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_BANG] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_COLON] = ACTIONS(4845), + [anon_sym_SQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4843), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4843), + [anon_sym_BSLASHbegin] = ACTIONS(4845), + [anon_sym_BSLASHusepackage] = ACTIONS(4845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4845), + [anon_sym_BSLASHinclude] = ACTIONS(4845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4845), + [anon_sym_BSLASHinput] = ACTIONS(4845), + [anon_sym_BSLASHsubfile] = ACTIONS(4845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4845), + [anon_sym_BSLASHbibliography] = ACTIONS(4845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4845), + [anon_sym_BSLASHincludesvg] = ACTIONS(4845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4845), + [anon_sym_BSLASHimport] = ACTIONS(4845), + [anon_sym_BSLASHsubimport] = ACTIONS(4845), + [anon_sym_BSLASHinputfrom] = ACTIONS(4845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4845), + [anon_sym_BSLASHincludefrom] = ACTIONS(4845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4845), + [anon_sym_BSLASHcaption] = ACTIONS(4845), + [anon_sym_BSLASHcite] = ACTIONS(4845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCite] = ACTIONS(4845), + [anon_sym_BSLASHnocite] = ACTIONS(4845), + [anon_sym_BSLASHcitet] = ACTIONS(4845), + [anon_sym_BSLASHcitep] = ACTIONS(4845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteauthor] = ACTIONS(4845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitetitle] = ACTIONS(4845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteyear] = ACTIONS(4845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitedate] = ACTIONS(4845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteurl] = ACTIONS(4845), + [anon_sym_BSLASHfullcite] = ACTIONS(4845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4845), + [anon_sym_BSLASHcitealt] = ACTIONS(4845), + [anon_sym_BSLASHcitealp] = ACTIONS(4845), + [anon_sym_BSLASHcitetext] = ACTIONS(4845), + [anon_sym_BSLASHparencite] = ACTIONS(4845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHParencite] = ACTIONS(4845), + [anon_sym_BSLASHfootcite] = ACTIONS(4845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4845), + [anon_sym_BSLASHtextcite] = ACTIONS(4845), + [anon_sym_BSLASHTextcite] = ACTIONS(4845), + [anon_sym_BSLASHsmartcite] = ACTIONS(4845), + [anon_sym_BSLASHSmartcite] = ACTIONS(4845), + [anon_sym_BSLASHsupercite] = ACTIONS(4845), + [anon_sym_BSLASHautocite] = ACTIONS(4845), + [anon_sym_BSLASHAutocite] = ACTIONS(4845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHvolcite] = ACTIONS(4845), + [anon_sym_BSLASHVolcite] = ACTIONS(4845), + [anon_sym_BSLASHpvolcite] = ACTIONS(4845), + [anon_sym_BSLASHPvolcite] = ACTIONS(4845), + [anon_sym_BSLASHfvolcite] = ACTIONS(4845), + [anon_sym_BSLASHftvolcite] = ACTIONS(4845), + [anon_sym_BSLASHsvolcite] = ACTIONS(4845), + [anon_sym_BSLASHSvolcite] = ACTIONS(4845), + [anon_sym_BSLASHtvolcite] = ACTIONS(4845), + [anon_sym_BSLASHTvolcite] = ACTIONS(4845), + [anon_sym_BSLASHavolcite] = ACTIONS(4845), + [anon_sym_BSLASHAvolcite] = ACTIONS(4845), + [anon_sym_BSLASHnotecite] = ACTIONS(4845), + [anon_sym_BSLASHNotecite] = ACTIONS(4845), + [anon_sym_BSLASHpnotecite] = ACTIONS(4845), + [anon_sym_BSLASHPnotecite] = ACTIONS(4845), + [anon_sym_BSLASHfnotecite] = ACTIONS(4845), + [anon_sym_BSLASHlabel] = ACTIONS(4845), + [anon_sym_BSLASHref] = ACTIONS(4845), + [anon_sym_BSLASHeqref] = ACTIONS(4845), + [anon_sym_BSLASHvref] = ACTIONS(4845), + [anon_sym_BSLASHVref] = ACTIONS(4845), + [anon_sym_BSLASHautoref] = ACTIONS(4845), + [anon_sym_BSLASHpageref] = ACTIONS(4845), + [anon_sym_BSLASHcref] = ACTIONS(4845), + [anon_sym_BSLASHCref] = ACTIONS(4845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4843), + [anon_sym_BSLASHnamecref] = ACTIONS(4845), + [anon_sym_BSLASHnameCref] = ACTIONS(4845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4845), + [anon_sym_BSLASHlabelcref] = ACTIONS(4845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4845), + [anon_sym_BSLASHcrefrange] = ACTIONS(4845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCrefrange] = ACTIONS(4845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4843), + [anon_sym_BSLASHnewlabel] = ACTIONS(4845), + [anon_sym_BSLASHnewcommand] = ACTIONS(4845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4843), + [anon_sym_BSLASHdef] = ACTIONS(4845), + [anon_sym_BSLASHlet] = ACTIONS(4845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4845), + [anon_sym_BSLASHgls] = ACTIONS(4845), + [anon_sym_BSLASHGls] = ACTIONS(4845), + [anon_sym_BSLASHGLS] = ACTIONS(4845), + [anon_sym_BSLASHglspl] = ACTIONS(4845), + [anon_sym_BSLASHGlspl] = ACTIONS(4845), + [anon_sym_BSLASHGLSpl] = ACTIONS(4845), + [anon_sym_BSLASHglsdisp] = ACTIONS(4845), + [anon_sym_BSLASHglslink] = ACTIONS(4845), + [anon_sym_BSLASHglstext] = ACTIONS(4845), + [anon_sym_BSLASHGlstext] = ACTIONS(4845), + [anon_sym_BSLASHGLStext] = ACTIONS(4845), + [anon_sym_BSLASHglsfirst] = ACTIONS(4845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4845), + [anon_sym_BSLASHglsplural] = ACTIONS(4845), + [anon_sym_BSLASHGlsplural] = ACTIONS(4845), + [anon_sym_BSLASHGLSplural] = ACTIONS(4845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHglsname] = ACTIONS(4845), + [anon_sym_BSLASHGlsname] = ACTIONS(4845), + [anon_sym_BSLASHGLSname] = ACTIONS(4845), + [anon_sym_BSLASHglssymbol] = ACTIONS(4845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4845), + [anon_sym_BSLASHglsdesc] = ACTIONS(4845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4845), + [anon_sym_BSLASHglsuseri] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4845), + [anon_sym_BSLASHglsuserii] = ACTIONS(4845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4845), + [anon_sym_BSLASHglsuserv] = ACTIONS(4845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4845), + [anon_sym_BSLASHglsuservi] = ACTIONS(4845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4845), + [anon_sym_BSLASHnewacronym] = ACTIONS(4845), + [anon_sym_BSLASHacrshort] = ACTIONS(4845), + [anon_sym_BSLASHAcrshort] = ACTIONS(4845), + [anon_sym_BSLASHACRshort] = ACTIONS(4845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4845), + [anon_sym_BSLASHacrlong] = ACTIONS(4845), + [anon_sym_BSLASHAcrlong] = ACTIONS(4845), + [anon_sym_BSLASHACRlong] = ACTIONS(4845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4845), + [anon_sym_BSLASHacrfull] = ACTIONS(4845), + [anon_sym_BSLASHAcrfull] = ACTIONS(4845), + [anon_sym_BSLASHACRfull] = ACTIONS(4845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4845), + [anon_sym_BSLASHacs] = ACTIONS(4845), + [anon_sym_BSLASHAcs] = ACTIONS(4845), + [anon_sym_BSLASHacsp] = ACTIONS(4845), + [anon_sym_BSLASHAcsp] = ACTIONS(4845), + [anon_sym_BSLASHacl] = ACTIONS(4845), + [anon_sym_BSLASHAcl] = ACTIONS(4845), + [anon_sym_BSLASHaclp] = ACTIONS(4845), + [anon_sym_BSLASHAclp] = ACTIONS(4845), + [anon_sym_BSLASHacf] = ACTIONS(4845), + [anon_sym_BSLASHAcf] = ACTIONS(4845), + [anon_sym_BSLASHacfp] = ACTIONS(4845), + [anon_sym_BSLASHAcfp] = ACTIONS(4845), + [anon_sym_BSLASHac] = ACTIONS(4845), + [anon_sym_BSLASHAc] = ACTIONS(4845), + [anon_sym_BSLASHacp] = ACTIONS(4845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4845), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4845), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4845), + [anon_sym_BSLASHcolor] = ACTIONS(4845), + [anon_sym_BSLASHcolorbox] = ACTIONS(4845), + [anon_sym_BSLASHtextcolor] = ACTIONS(4845), + [anon_sym_BSLASHpagecolor] = ACTIONS(4845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4845), + [anon_sym_BSLASHtext] = ACTIONS(4845), + [anon_sym_BSLASHintertext] = ACTIONS(4845), + [anon_sym_shortintertext] = ACTIONS(4845), + }, + [756] = { + [sym_curly_group] = STATE(1170), + [sym_command_name] = ACTIONS(4841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4841), + [anon_sym_LPAREN] = ACTIONS(4839), + [anon_sym_RPAREN] = ACTIONS(4839), + [anon_sym_LBRACK] = ACTIONS(4839), + [anon_sym_RBRACK] = ACTIONS(4839), + [anon_sym_COMMA] = ACTIONS(4839), + [anon_sym_EQ] = ACTIONS(4839), + [anon_sym_BSLASHpart] = ACTIONS(4841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddpart] = ACTIONS(4841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4839), + [anon_sym_BSLASHchapter] = ACTIONS(4841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddchap] = ACTIONS(4841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsection] = ACTIONS(4841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddsec] = ACTIONS(4841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubsection] = ACTIONS(4841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHparagraph] = ACTIONS(4841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4839), + [anon_sym_BSLASHitem] = ACTIONS(4841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4839), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(4841), + [sym_placeholder] = ACTIONS(4839), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_CARET] = ACTIONS(4841), + [anon_sym__] = ACTIONS(4841), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_COLON] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4839), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4839), + [anon_sym_DOLLAR] = ACTIONS(4841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4839), + [anon_sym_BSLASHbegin] = ACTIONS(4841), + [anon_sym_BSLASHusepackage] = ACTIONS(4841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4841), + [anon_sym_BSLASHinclude] = ACTIONS(4841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4841), + [anon_sym_BSLASHinput] = ACTIONS(4841), + [anon_sym_BSLASHsubfile] = ACTIONS(4841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4841), + [anon_sym_BSLASHbibliography] = ACTIONS(4841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4841), + [anon_sym_BSLASHincludesvg] = ACTIONS(4841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4841), + [anon_sym_BSLASHimport] = ACTIONS(4841), + [anon_sym_BSLASHsubimport] = ACTIONS(4841), + [anon_sym_BSLASHinputfrom] = ACTIONS(4841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4841), + [anon_sym_BSLASHincludefrom] = ACTIONS(4841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4841), + [anon_sym_BSLASHcaption] = ACTIONS(4841), + [anon_sym_BSLASHcite] = ACTIONS(4841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCite] = ACTIONS(4841), + [anon_sym_BSLASHnocite] = ACTIONS(4841), + [anon_sym_BSLASHcitet] = ACTIONS(4841), + [anon_sym_BSLASHcitep] = ACTIONS(4841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteauthor] = ACTIONS(4841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitetitle] = ACTIONS(4841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteyear] = ACTIONS(4841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitedate] = ACTIONS(4841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteurl] = ACTIONS(4841), + [anon_sym_BSLASHfullcite] = ACTIONS(4841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4841), + [anon_sym_BSLASHcitealt] = ACTIONS(4841), + [anon_sym_BSLASHcitealp] = ACTIONS(4841), + [anon_sym_BSLASHcitetext] = ACTIONS(4841), + [anon_sym_BSLASHparencite] = ACTIONS(4841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHParencite] = ACTIONS(4841), + [anon_sym_BSLASHfootcite] = ACTIONS(4841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4841), + [anon_sym_BSLASHtextcite] = ACTIONS(4841), + [anon_sym_BSLASHTextcite] = ACTIONS(4841), + [anon_sym_BSLASHsmartcite] = ACTIONS(4841), + [anon_sym_BSLASHSmartcite] = ACTIONS(4841), + [anon_sym_BSLASHsupercite] = ACTIONS(4841), + [anon_sym_BSLASHautocite] = ACTIONS(4841), + [anon_sym_BSLASHAutocite] = ACTIONS(4841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHvolcite] = ACTIONS(4841), + [anon_sym_BSLASHVolcite] = ACTIONS(4841), + [anon_sym_BSLASHpvolcite] = ACTIONS(4841), + [anon_sym_BSLASHPvolcite] = ACTIONS(4841), + [anon_sym_BSLASHfvolcite] = ACTIONS(4841), + [anon_sym_BSLASHftvolcite] = ACTIONS(4841), + [anon_sym_BSLASHsvolcite] = ACTIONS(4841), + [anon_sym_BSLASHSvolcite] = ACTIONS(4841), + [anon_sym_BSLASHtvolcite] = ACTIONS(4841), + [anon_sym_BSLASHTvolcite] = ACTIONS(4841), + [anon_sym_BSLASHavolcite] = ACTIONS(4841), + [anon_sym_BSLASHAvolcite] = ACTIONS(4841), + [anon_sym_BSLASHnotecite] = ACTIONS(4841), + [anon_sym_BSLASHNotecite] = ACTIONS(4841), + [anon_sym_BSLASHpnotecite] = ACTIONS(4841), + [anon_sym_BSLASHPnotecite] = ACTIONS(4841), + [anon_sym_BSLASHfnotecite] = ACTIONS(4841), + [anon_sym_BSLASHlabel] = ACTIONS(4841), + [anon_sym_BSLASHref] = ACTIONS(4841), + [anon_sym_BSLASHeqref] = ACTIONS(4841), + [anon_sym_BSLASHvref] = ACTIONS(4841), + [anon_sym_BSLASHVref] = ACTIONS(4841), + [anon_sym_BSLASHautoref] = ACTIONS(4841), + [anon_sym_BSLASHpageref] = ACTIONS(4841), + [anon_sym_BSLASHcref] = ACTIONS(4841), + [anon_sym_BSLASHCref] = ACTIONS(4841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4839), + [anon_sym_BSLASHnamecref] = ACTIONS(4841), + [anon_sym_BSLASHnameCref] = ACTIONS(4841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4841), + [anon_sym_BSLASHlabelcref] = ACTIONS(4841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4841), + [anon_sym_BSLASHcrefrange] = ACTIONS(4841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCrefrange] = ACTIONS(4841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4839), + [anon_sym_BSLASHnewlabel] = ACTIONS(4841), + [anon_sym_BSLASHnewcommand] = ACTIONS(4841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4839), + [anon_sym_BSLASHdef] = ACTIONS(4841), + [anon_sym_BSLASHlet] = ACTIONS(4841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4841), + [anon_sym_BSLASHgls] = ACTIONS(4841), + [anon_sym_BSLASHGls] = ACTIONS(4841), + [anon_sym_BSLASHGLS] = ACTIONS(4841), + [anon_sym_BSLASHglspl] = ACTIONS(4841), + [anon_sym_BSLASHGlspl] = ACTIONS(4841), + [anon_sym_BSLASHGLSpl] = ACTIONS(4841), + [anon_sym_BSLASHglsdisp] = ACTIONS(4841), + [anon_sym_BSLASHglslink] = ACTIONS(4841), + [anon_sym_BSLASHglstext] = ACTIONS(4841), + [anon_sym_BSLASHGlstext] = ACTIONS(4841), + [anon_sym_BSLASHGLStext] = ACTIONS(4841), + [anon_sym_BSLASHglsfirst] = ACTIONS(4841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4841), + [anon_sym_BSLASHglsplural] = ACTIONS(4841), + [anon_sym_BSLASHGlsplural] = ACTIONS(4841), + [anon_sym_BSLASHGLSplural] = ACTIONS(4841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHglsname] = ACTIONS(4841), + [anon_sym_BSLASHGlsname] = ACTIONS(4841), + [anon_sym_BSLASHGLSname] = ACTIONS(4841), + [anon_sym_BSLASHglssymbol] = ACTIONS(4841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4841), + [anon_sym_BSLASHglsdesc] = ACTIONS(4841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4841), + [anon_sym_BSLASHglsuseri] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4841), + [anon_sym_BSLASHglsuserii] = ACTIONS(4841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4841), + [anon_sym_BSLASHglsuserv] = ACTIONS(4841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4841), + [anon_sym_BSLASHglsuservi] = ACTIONS(4841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4841), + [anon_sym_BSLASHnewacronym] = ACTIONS(4841), + [anon_sym_BSLASHacrshort] = ACTIONS(4841), + [anon_sym_BSLASHAcrshort] = ACTIONS(4841), + [anon_sym_BSLASHACRshort] = ACTIONS(4841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4841), + [anon_sym_BSLASHacrlong] = ACTIONS(4841), + [anon_sym_BSLASHAcrlong] = ACTIONS(4841), + [anon_sym_BSLASHACRlong] = ACTIONS(4841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4841), + [anon_sym_BSLASHacrfull] = ACTIONS(4841), + [anon_sym_BSLASHAcrfull] = ACTIONS(4841), + [anon_sym_BSLASHACRfull] = ACTIONS(4841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4841), + [anon_sym_BSLASHacs] = ACTIONS(4841), + [anon_sym_BSLASHAcs] = ACTIONS(4841), + [anon_sym_BSLASHacsp] = ACTIONS(4841), + [anon_sym_BSLASHAcsp] = ACTIONS(4841), + [anon_sym_BSLASHacl] = ACTIONS(4841), + [anon_sym_BSLASHAcl] = ACTIONS(4841), + [anon_sym_BSLASHaclp] = ACTIONS(4841), + [anon_sym_BSLASHAclp] = ACTIONS(4841), + [anon_sym_BSLASHacf] = ACTIONS(4841), + [anon_sym_BSLASHAcf] = ACTIONS(4841), + [anon_sym_BSLASHacfp] = ACTIONS(4841), + [anon_sym_BSLASHAcfp] = ACTIONS(4841), + [anon_sym_BSLASHac] = ACTIONS(4841), + [anon_sym_BSLASHAc] = ACTIONS(4841), + [anon_sym_BSLASHacp] = ACTIONS(4841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4841), + [anon_sym_BSLASHcolor] = ACTIONS(4841), + [anon_sym_BSLASHcolorbox] = ACTIONS(4841), + [anon_sym_BSLASHtextcolor] = ACTIONS(4841), + [anon_sym_BSLASHpagecolor] = ACTIONS(4841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4841), + [anon_sym_BSLASHtext] = ACTIONS(4841), + [anon_sym_BSLASHintertext] = ACTIONS(4841), + [anon_sym_shortintertext] = ACTIONS(4841), + }, + [757] = { + [sym_curly_group] = STATE(1171), + [sym_command_name] = ACTIONS(4837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4837), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4835), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_RBRACK] = ACTIONS(4835), + [anon_sym_COMMA] = ACTIONS(4835), + [anon_sym_EQ] = ACTIONS(4835), + [anon_sym_BSLASHpart] = ACTIONS(4837), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddpart] = ACTIONS(4837), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4835), + [anon_sym_BSLASHchapter] = ACTIONS(4837), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddchap] = ACTIONS(4837), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsection] = ACTIONS(4837), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddsec] = ACTIONS(4837), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubsection] = ACTIONS(4837), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4837), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHparagraph] = ACTIONS(4837), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4837), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4835), + [anon_sym_BSLASHitem] = ACTIONS(4837), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4835), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(4837), + [sym_placeholder] = ACTIONS(4835), + [anon_sym_PLUS] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4837), + [anon_sym_STAR] = ACTIONS(4837), + [anon_sym_SLASH] = ACTIONS(4837), + [anon_sym_CARET] = ACTIONS(4837), + [anon_sym__] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_BANG] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_COLON] = ACTIONS(4837), + [anon_sym_SQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4835), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4835), + [anon_sym_BSLASHbegin] = ACTIONS(4837), + [anon_sym_BSLASHusepackage] = ACTIONS(4837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4837), + [anon_sym_BSLASHinclude] = ACTIONS(4837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4837), + [anon_sym_BSLASHinput] = ACTIONS(4837), + [anon_sym_BSLASHsubfile] = ACTIONS(4837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4837), + [anon_sym_BSLASHbibliography] = ACTIONS(4837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4837), + [anon_sym_BSLASHincludesvg] = ACTIONS(4837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4837), + [anon_sym_BSLASHimport] = ACTIONS(4837), + [anon_sym_BSLASHsubimport] = ACTIONS(4837), + [anon_sym_BSLASHinputfrom] = ACTIONS(4837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4837), + [anon_sym_BSLASHincludefrom] = ACTIONS(4837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4837), + [anon_sym_BSLASHcaption] = ACTIONS(4837), + [anon_sym_BSLASHcite] = ACTIONS(4837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCite] = ACTIONS(4837), + [anon_sym_BSLASHnocite] = ACTIONS(4837), + [anon_sym_BSLASHcitet] = ACTIONS(4837), + [anon_sym_BSLASHcitep] = ACTIONS(4837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteauthor] = ACTIONS(4837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitetitle] = ACTIONS(4837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteyear] = ACTIONS(4837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitedate] = ACTIONS(4837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteurl] = ACTIONS(4837), + [anon_sym_BSLASHfullcite] = ACTIONS(4837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4837), + [anon_sym_BSLASHcitealt] = ACTIONS(4837), + [anon_sym_BSLASHcitealp] = ACTIONS(4837), + [anon_sym_BSLASHcitetext] = ACTIONS(4837), + [anon_sym_BSLASHparencite] = ACTIONS(4837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHParencite] = ACTIONS(4837), + [anon_sym_BSLASHfootcite] = ACTIONS(4837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4837), + [anon_sym_BSLASHtextcite] = ACTIONS(4837), + [anon_sym_BSLASHTextcite] = ACTIONS(4837), + [anon_sym_BSLASHsmartcite] = ACTIONS(4837), + [anon_sym_BSLASHSmartcite] = ACTIONS(4837), + [anon_sym_BSLASHsupercite] = ACTIONS(4837), + [anon_sym_BSLASHautocite] = ACTIONS(4837), + [anon_sym_BSLASHAutocite] = ACTIONS(4837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHvolcite] = ACTIONS(4837), + [anon_sym_BSLASHVolcite] = ACTIONS(4837), + [anon_sym_BSLASHpvolcite] = ACTIONS(4837), + [anon_sym_BSLASHPvolcite] = ACTIONS(4837), + [anon_sym_BSLASHfvolcite] = ACTIONS(4837), + [anon_sym_BSLASHftvolcite] = ACTIONS(4837), + [anon_sym_BSLASHsvolcite] = ACTIONS(4837), + [anon_sym_BSLASHSvolcite] = ACTIONS(4837), + [anon_sym_BSLASHtvolcite] = ACTIONS(4837), + [anon_sym_BSLASHTvolcite] = ACTIONS(4837), + [anon_sym_BSLASHavolcite] = ACTIONS(4837), + [anon_sym_BSLASHAvolcite] = ACTIONS(4837), + [anon_sym_BSLASHnotecite] = ACTIONS(4837), + [anon_sym_BSLASHNotecite] = ACTIONS(4837), + [anon_sym_BSLASHpnotecite] = ACTIONS(4837), + [anon_sym_BSLASHPnotecite] = ACTIONS(4837), + [anon_sym_BSLASHfnotecite] = ACTIONS(4837), + [anon_sym_BSLASHlabel] = ACTIONS(4837), + [anon_sym_BSLASHref] = ACTIONS(4837), + [anon_sym_BSLASHeqref] = ACTIONS(4837), + [anon_sym_BSLASHvref] = ACTIONS(4837), + [anon_sym_BSLASHVref] = ACTIONS(4837), + [anon_sym_BSLASHautoref] = ACTIONS(4837), + [anon_sym_BSLASHpageref] = ACTIONS(4837), + [anon_sym_BSLASHcref] = ACTIONS(4837), + [anon_sym_BSLASHCref] = ACTIONS(4837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4835), + [anon_sym_BSLASHnamecref] = ACTIONS(4837), + [anon_sym_BSLASHnameCref] = ACTIONS(4837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4837), + [anon_sym_BSLASHlabelcref] = ACTIONS(4837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4837), + [anon_sym_BSLASHcrefrange] = ACTIONS(4837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCrefrange] = ACTIONS(4837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4835), + [anon_sym_BSLASHnewlabel] = ACTIONS(4837), + [anon_sym_BSLASHnewcommand] = ACTIONS(4837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4835), + [anon_sym_BSLASHdef] = ACTIONS(4837), + [anon_sym_BSLASHlet] = ACTIONS(4837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4837), + [anon_sym_BSLASHgls] = ACTIONS(4837), + [anon_sym_BSLASHGls] = ACTIONS(4837), + [anon_sym_BSLASHGLS] = ACTIONS(4837), + [anon_sym_BSLASHglspl] = ACTIONS(4837), + [anon_sym_BSLASHGlspl] = ACTIONS(4837), + [anon_sym_BSLASHGLSpl] = ACTIONS(4837), + [anon_sym_BSLASHglsdisp] = ACTIONS(4837), + [anon_sym_BSLASHglslink] = ACTIONS(4837), + [anon_sym_BSLASHglstext] = ACTIONS(4837), + [anon_sym_BSLASHGlstext] = ACTIONS(4837), + [anon_sym_BSLASHGLStext] = ACTIONS(4837), + [anon_sym_BSLASHglsfirst] = ACTIONS(4837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4837), + [anon_sym_BSLASHglsplural] = ACTIONS(4837), + [anon_sym_BSLASHGlsplural] = ACTIONS(4837), + [anon_sym_BSLASHGLSplural] = ACTIONS(4837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHglsname] = ACTIONS(4837), + [anon_sym_BSLASHGlsname] = ACTIONS(4837), + [anon_sym_BSLASHGLSname] = ACTIONS(4837), + [anon_sym_BSLASHglssymbol] = ACTIONS(4837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4837), + [anon_sym_BSLASHglsdesc] = ACTIONS(4837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4837), + [anon_sym_BSLASHglsuseri] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4837), + [anon_sym_BSLASHglsuserii] = ACTIONS(4837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4837), + [anon_sym_BSLASHglsuserv] = ACTIONS(4837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4837), + [anon_sym_BSLASHglsuservi] = ACTIONS(4837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4837), + [anon_sym_BSLASHnewacronym] = ACTIONS(4837), + [anon_sym_BSLASHacrshort] = ACTIONS(4837), + [anon_sym_BSLASHAcrshort] = ACTIONS(4837), + [anon_sym_BSLASHACRshort] = ACTIONS(4837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4837), + [anon_sym_BSLASHacrlong] = ACTIONS(4837), + [anon_sym_BSLASHAcrlong] = ACTIONS(4837), + [anon_sym_BSLASHACRlong] = ACTIONS(4837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4837), + [anon_sym_BSLASHacrfull] = ACTIONS(4837), + [anon_sym_BSLASHAcrfull] = ACTIONS(4837), + [anon_sym_BSLASHACRfull] = ACTIONS(4837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4837), + [anon_sym_BSLASHacs] = ACTIONS(4837), + [anon_sym_BSLASHAcs] = ACTIONS(4837), + [anon_sym_BSLASHacsp] = ACTIONS(4837), + [anon_sym_BSLASHAcsp] = ACTIONS(4837), + [anon_sym_BSLASHacl] = ACTIONS(4837), + [anon_sym_BSLASHAcl] = ACTIONS(4837), + [anon_sym_BSLASHaclp] = ACTIONS(4837), + [anon_sym_BSLASHAclp] = ACTIONS(4837), + [anon_sym_BSLASHacf] = ACTIONS(4837), + [anon_sym_BSLASHAcf] = ACTIONS(4837), + [anon_sym_BSLASHacfp] = ACTIONS(4837), + [anon_sym_BSLASHAcfp] = ACTIONS(4837), + [anon_sym_BSLASHac] = ACTIONS(4837), + [anon_sym_BSLASHAc] = ACTIONS(4837), + [anon_sym_BSLASHacp] = ACTIONS(4837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4837), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4837), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4837), + [anon_sym_BSLASHcolor] = ACTIONS(4837), + [anon_sym_BSLASHcolorbox] = ACTIONS(4837), + [anon_sym_BSLASHtextcolor] = ACTIONS(4837), + [anon_sym_BSLASHpagecolor] = ACTIONS(4837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4837), + [anon_sym_BSLASHtext] = ACTIONS(4837), + [anon_sym_BSLASHintertext] = ACTIONS(4837), + [anon_sym_shortintertext] = ACTIONS(4837), + }, + [758] = { + [sym_curly_group] = STATE(1172), + [sym_command_name] = ACTIONS(4833), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_EQ] = ACTIONS(4831), + [anon_sym_BSLASHpart] = ACTIONS(4833), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddpart] = ACTIONS(4833), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4831), + [anon_sym_BSLASHchapter] = ACTIONS(4833), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddchap] = ACTIONS(4833), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsection] = ACTIONS(4833), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddsec] = ACTIONS(4833), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubsection] = ACTIONS(4833), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4833), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHparagraph] = ACTIONS(4833), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4833), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4831), + [anon_sym_BSLASHitem] = ACTIONS(4833), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(4833), + [sym_placeholder] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_CARET] = ACTIONS(4833), + [anon_sym__] = ACTIONS(4833), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_BANG] = ACTIONS(4833), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_COLON] = ACTIONS(4833), + [anon_sym_SQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4831), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4831), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4831), + [anon_sym_DOLLAR] = ACTIONS(4833), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4831), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4831), + [anon_sym_BSLASHbegin] = ACTIONS(4833), + [anon_sym_BSLASHusepackage] = ACTIONS(4833), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4833), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4833), + [anon_sym_BSLASHinclude] = ACTIONS(4833), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4833), + [anon_sym_BSLASHinput] = ACTIONS(4833), + [anon_sym_BSLASHsubfile] = ACTIONS(4833), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4833), + [anon_sym_BSLASHbibliography] = ACTIONS(4833), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4833), + [anon_sym_BSLASHincludesvg] = ACTIONS(4833), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4833), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4833), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4833), + [anon_sym_BSLASHimport] = ACTIONS(4833), + [anon_sym_BSLASHsubimport] = ACTIONS(4833), + [anon_sym_BSLASHinputfrom] = ACTIONS(4833), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4833), + [anon_sym_BSLASHincludefrom] = ACTIONS(4833), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4833), + [anon_sym_BSLASHcaption] = ACTIONS(4833), + [anon_sym_BSLASHcite] = ACTIONS(4833), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCite] = ACTIONS(4833), + [anon_sym_BSLASHnocite] = ACTIONS(4833), + [anon_sym_BSLASHcitet] = ACTIONS(4833), + [anon_sym_BSLASHcitep] = ACTIONS(4833), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteauthor] = ACTIONS(4833), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4833), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitetitle] = ACTIONS(4833), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteyear] = ACTIONS(4833), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitedate] = ACTIONS(4833), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteurl] = ACTIONS(4833), + [anon_sym_BSLASHfullcite] = ACTIONS(4833), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4833), + [anon_sym_BSLASHcitealt] = ACTIONS(4833), + [anon_sym_BSLASHcitealp] = ACTIONS(4833), + [anon_sym_BSLASHcitetext] = ACTIONS(4833), + [anon_sym_BSLASHparencite] = ACTIONS(4833), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHParencite] = ACTIONS(4833), + [anon_sym_BSLASHfootcite] = ACTIONS(4833), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4833), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4833), + [anon_sym_BSLASHtextcite] = ACTIONS(4833), + [anon_sym_BSLASHTextcite] = ACTIONS(4833), + [anon_sym_BSLASHsmartcite] = ACTIONS(4833), + [anon_sym_BSLASHSmartcite] = ACTIONS(4833), + [anon_sym_BSLASHsupercite] = ACTIONS(4833), + [anon_sym_BSLASHautocite] = ACTIONS(4833), + [anon_sym_BSLASHAutocite] = ACTIONS(4833), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHvolcite] = ACTIONS(4833), + [anon_sym_BSLASHVolcite] = ACTIONS(4833), + [anon_sym_BSLASHpvolcite] = ACTIONS(4833), + [anon_sym_BSLASHPvolcite] = ACTIONS(4833), + [anon_sym_BSLASHfvolcite] = ACTIONS(4833), + [anon_sym_BSLASHftvolcite] = ACTIONS(4833), + [anon_sym_BSLASHsvolcite] = ACTIONS(4833), + [anon_sym_BSLASHSvolcite] = ACTIONS(4833), + [anon_sym_BSLASHtvolcite] = ACTIONS(4833), + [anon_sym_BSLASHTvolcite] = ACTIONS(4833), + [anon_sym_BSLASHavolcite] = ACTIONS(4833), + [anon_sym_BSLASHAvolcite] = ACTIONS(4833), + [anon_sym_BSLASHnotecite] = ACTIONS(4833), + [anon_sym_BSLASHNotecite] = ACTIONS(4833), + [anon_sym_BSLASHpnotecite] = ACTIONS(4833), + [anon_sym_BSLASHPnotecite] = ACTIONS(4833), + [anon_sym_BSLASHfnotecite] = ACTIONS(4833), + [anon_sym_BSLASHlabel] = ACTIONS(4833), + [anon_sym_BSLASHref] = ACTIONS(4833), + [anon_sym_BSLASHeqref] = ACTIONS(4833), + [anon_sym_BSLASHvref] = ACTIONS(4833), + [anon_sym_BSLASHVref] = ACTIONS(4833), + [anon_sym_BSLASHautoref] = ACTIONS(4833), + [anon_sym_BSLASHpageref] = ACTIONS(4833), + [anon_sym_BSLASHcref] = ACTIONS(4833), + [anon_sym_BSLASHCref] = ACTIONS(4833), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4831), + [anon_sym_BSLASHnamecref] = ACTIONS(4833), + [anon_sym_BSLASHnameCref] = ACTIONS(4833), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4833), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4833), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4833), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4833), + [anon_sym_BSLASHlabelcref] = ACTIONS(4833), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4833), + [anon_sym_BSLASHcrefrange] = ACTIONS(4833), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCrefrange] = ACTIONS(4833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4831), + [anon_sym_BSLASHnewlabel] = ACTIONS(4833), + [anon_sym_BSLASHnewcommand] = ACTIONS(4833), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4833), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4833), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4833), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4831), + [anon_sym_BSLASHdef] = ACTIONS(4833), + [anon_sym_BSLASHlet] = ACTIONS(4833), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4833), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4833), + [anon_sym_BSLASHgls] = ACTIONS(4833), + [anon_sym_BSLASHGls] = ACTIONS(4833), + [anon_sym_BSLASHGLS] = ACTIONS(4833), + [anon_sym_BSLASHglspl] = ACTIONS(4833), + [anon_sym_BSLASHGlspl] = ACTIONS(4833), + [anon_sym_BSLASHGLSpl] = ACTIONS(4833), + [anon_sym_BSLASHglsdisp] = ACTIONS(4833), + [anon_sym_BSLASHglslink] = ACTIONS(4833), + [anon_sym_BSLASHglstext] = ACTIONS(4833), + [anon_sym_BSLASHGlstext] = ACTIONS(4833), + [anon_sym_BSLASHGLStext] = ACTIONS(4833), + [anon_sym_BSLASHglsfirst] = ACTIONS(4833), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4833), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4833), + [anon_sym_BSLASHglsplural] = ACTIONS(4833), + [anon_sym_BSLASHGlsplural] = ACTIONS(4833), + [anon_sym_BSLASHGLSplural] = ACTIONS(4833), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHglsname] = ACTIONS(4833), + [anon_sym_BSLASHGlsname] = ACTIONS(4833), + [anon_sym_BSLASHGLSname] = ACTIONS(4833), + [anon_sym_BSLASHglssymbol] = ACTIONS(4833), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4833), + [anon_sym_BSLASHglsdesc] = ACTIONS(4833), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4833), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4833), + [anon_sym_BSLASHglsuseri] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4833), + [anon_sym_BSLASHglsuserii] = ACTIONS(4833), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4833), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4833), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4833), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4833), + [anon_sym_BSLASHglsuserv] = ACTIONS(4833), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4833), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4833), + [anon_sym_BSLASHglsuservi] = ACTIONS(4833), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4833), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4833), + [anon_sym_BSLASHnewacronym] = ACTIONS(4833), + [anon_sym_BSLASHacrshort] = ACTIONS(4833), + [anon_sym_BSLASHAcrshort] = ACTIONS(4833), + [anon_sym_BSLASHACRshort] = ACTIONS(4833), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4833), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4833), + [anon_sym_BSLASHacrlong] = ACTIONS(4833), + [anon_sym_BSLASHAcrlong] = ACTIONS(4833), + [anon_sym_BSLASHACRlong] = ACTIONS(4833), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4833), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4833), + [anon_sym_BSLASHacrfull] = ACTIONS(4833), + [anon_sym_BSLASHAcrfull] = ACTIONS(4833), + [anon_sym_BSLASHACRfull] = ACTIONS(4833), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4833), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4833), + [anon_sym_BSLASHacs] = ACTIONS(4833), + [anon_sym_BSLASHAcs] = ACTIONS(4833), + [anon_sym_BSLASHacsp] = ACTIONS(4833), + [anon_sym_BSLASHAcsp] = ACTIONS(4833), + [anon_sym_BSLASHacl] = ACTIONS(4833), + [anon_sym_BSLASHAcl] = ACTIONS(4833), + [anon_sym_BSLASHaclp] = ACTIONS(4833), + [anon_sym_BSLASHAclp] = ACTIONS(4833), + [anon_sym_BSLASHacf] = ACTIONS(4833), + [anon_sym_BSLASHAcf] = ACTIONS(4833), + [anon_sym_BSLASHacfp] = ACTIONS(4833), + [anon_sym_BSLASHAcfp] = ACTIONS(4833), + [anon_sym_BSLASHac] = ACTIONS(4833), + [anon_sym_BSLASHAc] = ACTIONS(4833), + [anon_sym_BSLASHacp] = ACTIONS(4833), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4833), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4833), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4833), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4833), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4833), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4833), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4833), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4833), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4833), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4833), + [anon_sym_BSLASHcolor] = ACTIONS(4833), + [anon_sym_BSLASHcolorbox] = ACTIONS(4833), + [anon_sym_BSLASHtextcolor] = ACTIONS(4833), + [anon_sym_BSLASHpagecolor] = ACTIONS(4833), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4833), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4833), + [anon_sym_BSLASHtext] = ACTIONS(4833), + [anon_sym_BSLASHintertext] = ACTIONS(4833), + [anon_sym_shortintertext] = ACTIONS(4833), + }, + [759] = { + [sym_curly_group] = STATE(963), + [sym_command_name] = ACTIONS(4833), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_EQ] = ACTIONS(4831), + [anon_sym_BSLASHpart] = ACTIONS(4833), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddpart] = ACTIONS(4833), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4831), + [anon_sym_BSLASHchapter] = ACTIONS(4833), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddchap] = ACTIONS(4833), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsection] = ACTIONS(4833), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddsec] = ACTIONS(4833), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubsection] = ACTIONS(4833), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4833), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHparagraph] = ACTIONS(4833), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4833), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4831), + [anon_sym_BSLASHitem] = ACTIONS(4833), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(4833), + [sym_placeholder] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_CARET] = ACTIONS(4833), + [anon_sym__] = ACTIONS(4833), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_BANG] = ACTIONS(4833), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_COLON] = ACTIONS(4833), + [anon_sym_SQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4831), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4831), + [anon_sym_DOLLAR] = ACTIONS(4833), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4831), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4831), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4831), + [anon_sym_BSLASHbegin] = ACTIONS(4833), + [anon_sym_BSLASHusepackage] = ACTIONS(4833), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4833), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4833), + [anon_sym_BSLASHinclude] = ACTIONS(4833), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4833), + [anon_sym_BSLASHinput] = ACTIONS(4833), + [anon_sym_BSLASHsubfile] = ACTIONS(4833), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4833), + [anon_sym_BSLASHbibliography] = ACTIONS(4833), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4833), + [anon_sym_BSLASHincludesvg] = ACTIONS(4833), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4833), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4833), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4833), + [anon_sym_BSLASHimport] = ACTIONS(4833), + [anon_sym_BSLASHsubimport] = ACTIONS(4833), + [anon_sym_BSLASHinputfrom] = ACTIONS(4833), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4833), + [anon_sym_BSLASHincludefrom] = ACTIONS(4833), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4833), + [anon_sym_BSLASHcaption] = ACTIONS(4833), + [anon_sym_BSLASHcite] = ACTIONS(4833), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCite] = ACTIONS(4833), + [anon_sym_BSLASHnocite] = ACTIONS(4833), + [anon_sym_BSLASHcitet] = ACTIONS(4833), + [anon_sym_BSLASHcitep] = ACTIONS(4833), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteauthor] = ACTIONS(4833), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4833), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitetitle] = ACTIONS(4833), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteyear] = ACTIONS(4833), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitedate] = ACTIONS(4833), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteurl] = ACTIONS(4833), + [anon_sym_BSLASHfullcite] = ACTIONS(4833), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4833), + [anon_sym_BSLASHcitealt] = ACTIONS(4833), + [anon_sym_BSLASHcitealp] = ACTIONS(4833), + [anon_sym_BSLASHcitetext] = ACTIONS(4833), + [anon_sym_BSLASHparencite] = ACTIONS(4833), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHParencite] = ACTIONS(4833), + [anon_sym_BSLASHfootcite] = ACTIONS(4833), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4833), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4833), + [anon_sym_BSLASHtextcite] = ACTIONS(4833), + [anon_sym_BSLASHTextcite] = ACTIONS(4833), + [anon_sym_BSLASHsmartcite] = ACTIONS(4833), + [anon_sym_BSLASHSmartcite] = ACTIONS(4833), + [anon_sym_BSLASHsupercite] = ACTIONS(4833), + [anon_sym_BSLASHautocite] = ACTIONS(4833), + [anon_sym_BSLASHAutocite] = ACTIONS(4833), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHvolcite] = ACTIONS(4833), + [anon_sym_BSLASHVolcite] = ACTIONS(4833), + [anon_sym_BSLASHpvolcite] = ACTIONS(4833), + [anon_sym_BSLASHPvolcite] = ACTIONS(4833), + [anon_sym_BSLASHfvolcite] = ACTIONS(4833), + [anon_sym_BSLASHftvolcite] = ACTIONS(4833), + [anon_sym_BSLASHsvolcite] = ACTIONS(4833), + [anon_sym_BSLASHSvolcite] = ACTIONS(4833), + [anon_sym_BSLASHtvolcite] = ACTIONS(4833), + [anon_sym_BSLASHTvolcite] = ACTIONS(4833), + [anon_sym_BSLASHavolcite] = ACTIONS(4833), + [anon_sym_BSLASHAvolcite] = ACTIONS(4833), + [anon_sym_BSLASHnotecite] = ACTIONS(4833), + [anon_sym_BSLASHNotecite] = ACTIONS(4833), + [anon_sym_BSLASHpnotecite] = ACTIONS(4833), + [anon_sym_BSLASHPnotecite] = ACTIONS(4833), + [anon_sym_BSLASHfnotecite] = ACTIONS(4833), + [anon_sym_BSLASHlabel] = ACTIONS(4833), + [anon_sym_BSLASHref] = ACTIONS(4833), + [anon_sym_BSLASHeqref] = ACTIONS(4833), + [anon_sym_BSLASHvref] = ACTIONS(4833), + [anon_sym_BSLASHVref] = ACTIONS(4833), + [anon_sym_BSLASHautoref] = ACTIONS(4833), + [anon_sym_BSLASHpageref] = ACTIONS(4833), + [anon_sym_BSLASHcref] = ACTIONS(4833), + [anon_sym_BSLASHCref] = ACTIONS(4833), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4831), + [anon_sym_BSLASHnamecref] = ACTIONS(4833), + [anon_sym_BSLASHnameCref] = ACTIONS(4833), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4833), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4833), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4833), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4833), + [anon_sym_BSLASHlabelcref] = ACTIONS(4833), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4833), + [anon_sym_BSLASHcrefrange] = ACTIONS(4833), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCrefrange] = ACTIONS(4833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4831), + [anon_sym_BSLASHnewlabel] = ACTIONS(4833), + [anon_sym_BSLASHnewcommand] = ACTIONS(4833), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4833), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4833), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4833), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4831), + [anon_sym_BSLASHdef] = ACTIONS(4833), + [anon_sym_BSLASHlet] = ACTIONS(4833), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4833), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4833), + [anon_sym_BSLASHgls] = ACTIONS(4833), + [anon_sym_BSLASHGls] = ACTIONS(4833), + [anon_sym_BSLASHGLS] = ACTIONS(4833), + [anon_sym_BSLASHglspl] = ACTIONS(4833), + [anon_sym_BSLASHGlspl] = ACTIONS(4833), + [anon_sym_BSLASHGLSpl] = ACTIONS(4833), + [anon_sym_BSLASHglsdisp] = ACTIONS(4833), + [anon_sym_BSLASHglslink] = ACTIONS(4833), + [anon_sym_BSLASHglstext] = ACTIONS(4833), + [anon_sym_BSLASHGlstext] = ACTIONS(4833), + [anon_sym_BSLASHGLStext] = ACTIONS(4833), + [anon_sym_BSLASHglsfirst] = ACTIONS(4833), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4833), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4833), + [anon_sym_BSLASHglsplural] = ACTIONS(4833), + [anon_sym_BSLASHGlsplural] = ACTIONS(4833), + [anon_sym_BSLASHGLSplural] = ACTIONS(4833), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHglsname] = ACTIONS(4833), + [anon_sym_BSLASHGlsname] = ACTIONS(4833), + [anon_sym_BSLASHGLSname] = ACTIONS(4833), + [anon_sym_BSLASHglssymbol] = ACTIONS(4833), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4833), + [anon_sym_BSLASHglsdesc] = ACTIONS(4833), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4833), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4833), + [anon_sym_BSLASHglsuseri] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4833), + [anon_sym_BSLASHglsuserii] = ACTIONS(4833), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4833), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4833), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4833), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4833), + [anon_sym_BSLASHglsuserv] = ACTIONS(4833), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4833), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4833), + [anon_sym_BSLASHglsuservi] = ACTIONS(4833), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4833), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4833), + [anon_sym_BSLASHnewacronym] = ACTIONS(4833), + [anon_sym_BSLASHacrshort] = ACTIONS(4833), + [anon_sym_BSLASHAcrshort] = ACTIONS(4833), + [anon_sym_BSLASHACRshort] = ACTIONS(4833), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4833), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4833), + [anon_sym_BSLASHacrlong] = ACTIONS(4833), + [anon_sym_BSLASHAcrlong] = ACTIONS(4833), + [anon_sym_BSLASHACRlong] = ACTIONS(4833), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4833), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4833), + [anon_sym_BSLASHacrfull] = ACTIONS(4833), + [anon_sym_BSLASHAcrfull] = ACTIONS(4833), + [anon_sym_BSLASHACRfull] = ACTIONS(4833), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4833), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4833), + [anon_sym_BSLASHacs] = ACTIONS(4833), + [anon_sym_BSLASHAcs] = ACTIONS(4833), + [anon_sym_BSLASHacsp] = ACTIONS(4833), + [anon_sym_BSLASHAcsp] = ACTIONS(4833), + [anon_sym_BSLASHacl] = ACTIONS(4833), + [anon_sym_BSLASHAcl] = ACTIONS(4833), + [anon_sym_BSLASHaclp] = ACTIONS(4833), + [anon_sym_BSLASHAclp] = ACTIONS(4833), + [anon_sym_BSLASHacf] = ACTIONS(4833), + [anon_sym_BSLASHAcf] = ACTIONS(4833), + [anon_sym_BSLASHacfp] = ACTIONS(4833), + [anon_sym_BSLASHAcfp] = ACTIONS(4833), + [anon_sym_BSLASHac] = ACTIONS(4833), + [anon_sym_BSLASHAc] = ACTIONS(4833), + [anon_sym_BSLASHacp] = ACTIONS(4833), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4833), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4833), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4833), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4833), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4833), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4833), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4833), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4833), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4833), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4833), + [anon_sym_BSLASHcolor] = ACTIONS(4833), + [anon_sym_BSLASHcolorbox] = ACTIONS(4833), + [anon_sym_BSLASHtextcolor] = ACTIONS(4833), + [anon_sym_BSLASHpagecolor] = ACTIONS(4833), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4833), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4833), + [anon_sym_BSLASHtext] = ACTIONS(4833), + [anon_sym_BSLASHintertext] = ACTIONS(4833), + [anon_sym_shortintertext] = ACTIONS(4833), + }, + [760] = { + [sym_curly_group] = STATE(1173), + [sym_command_name] = ACTIONS(4829), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4829), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_RBRACK] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_EQ] = ACTIONS(4827), + [anon_sym_BSLASHpart] = ACTIONS(4829), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddpart] = ACTIONS(4829), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4827), + [anon_sym_BSLASHchapter] = ACTIONS(4829), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddchap] = ACTIONS(4829), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsection] = ACTIONS(4829), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddsec] = ACTIONS(4829), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubsection] = ACTIONS(4829), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4829), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHparagraph] = ACTIONS(4829), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4829), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4827), + [anon_sym_BSLASHitem] = ACTIONS(4829), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(4829), + [sym_placeholder] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4829), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_CARET] = ACTIONS(4829), + [anon_sym__] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_BANG] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_COLON] = ACTIONS(4829), + [anon_sym_SQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4827), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4827), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(4829), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4827), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4827), + [anon_sym_BSLASHbegin] = ACTIONS(4829), + [anon_sym_BSLASHusepackage] = ACTIONS(4829), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4829), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4829), + [anon_sym_BSLASHinclude] = ACTIONS(4829), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4829), + [anon_sym_BSLASHinput] = ACTIONS(4829), + [anon_sym_BSLASHsubfile] = ACTIONS(4829), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4829), + [anon_sym_BSLASHbibliography] = ACTIONS(4829), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4829), + [anon_sym_BSLASHincludesvg] = ACTIONS(4829), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4829), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4829), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4829), + [anon_sym_BSLASHimport] = ACTIONS(4829), + [anon_sym_BSLASHsubimport] = ACTIONS(4829), + [anon_sym_BSLASHinputfrom] = ACTIONS(4829), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4829), + [anon_sym_BSLASHincludefrom] = ACTIONS(4829), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4829), + [anon_sym_BSLASHcaption] = ACTIONS(4829), + [anon_sym_BSLASHcite] = ACTIONS(4829), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCite] = ACTIONS(4829), + [anon_sym_BSLASHnocite] = ACTIONS(4829), + [anon_sym_BSLASHcitet] = ACTIONS(4829), + [anon_sym_BSLASHcitep] = ACTIONS(4829), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteauthor] = ACTIONS(4829), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4829), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitetitle] = ACTIONS(4829), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteyear] = ACTIONS(4829), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitedate] = ACTIONS(4829), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteurl] = ACTIONS(4829), + [anon_sym_BSLASHfullcite] = ACTIONS(4829), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4829), + [anon_sym_BSLASHcitealt] = ACTIONS(4829), + [anon_sym_BSLASHcitealp] = ACTIONS(4829), + [anon_sym_BSLASHcitetext] = ACTIONS(4829), + [anon_sym_BSLASHparencite] = ACTIONS(4829), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHParencite] = ACTIONS(4829), + [anon_sym_BSLASHfootcite] = ACTIONS(4829), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4829), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4829), + [anon_sym_BSLASHtextcite] = ACTIONS(4829), + [anon_sym_BSLASHTextcite] = ACTIONS(4829), + [anon_sym_BSLASHsmartcite] = ACTIONS(4829), + [anon_sym_BSLASHSmartcite] = ACTIONS(4829), + [anon_sym_BSLASHsupercite] = ACTIONS(4829), + [anon_sym_BSLASHautocite] = ACTIONS(4829), + [anon_sym_BSLASHAutocite] = ACTIONS(4829), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHvolcite] = ACTIONS(4829), + [anon_sym_BSLASHVolcite] = ACTIONS(4829), + [anon_sym_BSLASHpvolcite] = ACTIONS(4829), + [anon_sym_BSLASHPvolcite] = ACTIONS(4829), + [anon_sym_BSLASHfvolcite] = ACTIONS(4829), + [anon_sym_BSLASHftvolcite] = ACTIONS(4829), + [anon_sym_BSLASHsvolcite] = ACTIONS(4829), + [anon_sym_BSLASHSvolcite] = ACTIONS(4829), + [anon_sym_BSLASHtvolcite] = ACTIONS(4829), + [anon_sym_BSLASHTvolcite] = ACTIONS(4829), + [anon_sym_BSLASHavolcite] = ACTIONS(4829), + [anon_sym_BSLASHAvolcite] = ACTIONS(4829), + [anon_sym_BSLASHnotecite] = ACTIONS(4829), + [anon_sym_BSLASHNotecite] = ACTIONS(4829), + [anon_sym_BSLASHpnotecite] = ACTIONS(4829), + [anon_sym_BSLASHPnotecite] = ACTIONS(4829), + [anon_sym_BSLASHfnotecite] = ACTIONS(4829), + [anon_sym_BSLASHlabel] = ACTIONS(4829), + [anon_sym_BSLASHref] = ACTIONS(4829), + [anon_sym_BSLASHeqref] = ACTIONS(4829), + [anon_sym_BSLASHvref] = ACTIONS(4829), + [anon_sym_BSLASHVref] = ACTIONS(4829), + [anon_sym_BSLASHautoref] = ACTIONS(4829), + [anon_sym_BSLASHpageref] = ACTIONS(4829), + [anon_sym_BSLASHcref] = ACTIONS(4829), + [anon_sym_BSLASHCref] = ACTIONS(4829), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4827), + [anon_sym_BSLASHnamecref] = ACTIONS(4829), + [anon_sym_BSLASHnameCref] = ACTIONS(4829), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4829), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4829), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4829), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4829), + [anon_sym_BSLASHlabelcref] = ACTIONS(4829), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4829), + [anon_sym_BSLASHcrefrange] = ACTIONS(4829), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCrefrange] = ACTIONS(4829), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4827), + [anon_sym_BSLASHnewlabel] = ACTIONS(4829), + [anon_sym_BSLASHnewcommand] = ACTIONS(4829), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4829), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4829), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4829), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4827), + [anon_sym_BSLASHdef] = ACTIONS(4829), + [anon_sym_BSLASHlet] = ACTIONS(4829), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4829), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4829), + [anon_sym_BSLASHgls] = ACTIONS(4829), + [anon_sym_BSLASHGls] = ACTIONS(4829), + [anon_sym_BSLASHGLS] = ACTIONS(4829), + [anon_sym_BSLASHglspl] = ACTIONS(4829), + [anon_sym_BSLASHGlspl] = ACTIONS(4829), + [anon_sym_BSLASHGLSpl] = ACTIONS(4829), + [anon_sym_BSLASHglsdisp] = ACTIONS(4829), + [anon_sym_BSLASHglslink] = ACTIONS(4829), + [anon_sym_BSLASHglstext] = ACTIONS(4829), + [anon_sym_BSLASHGlstext] = ACTIONS(4829), + [anon_sym_BSLASHGLStext] = ACTIONS(4829), + [anon_sym_BSLASHglsfirst] = ACTIONS(4829), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4829), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4829), + [anon_sym_BSLASHglsplural] = ACTIONS(4829), + [anon_sym_BSLASHGlsplural] = ACTIONS(4829), + [anon_sym_BSLASHGLSplural] = ACTIONS(4829), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHglsname] = ACTIONS(4829), + [anon_sym_BSLASHGlsname] = ACTIONS(4829), + [anon_sym_BSLASHGLSname] = ACTIONS(4829), + [anon_sym_BSLASHglssymbol] = ACTIONS(4829), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4829), + [anon_sym_BSLASHglsdesc] = ACTIONS(4829), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4829), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4829), + [anon_sym_BSLASHglsuseri] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4829), + [anon_sym_BSLASHglsuserii] = ACTIONS(4829), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4829), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4829), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4829), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4829), + [anon_sym_BSLASHglsuserv] = ACTIONS(4829), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4829), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4829), + [anon_sym_BSLASHglsuservi] = ACTIONS(4829), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4829), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4829), + [anon_sym_BSLASHnewacronym] = ACTIONS(4829), + [anon_sym_BSLASHacrshort] = ACTIONS(4829), + [anon_sym_BSLASHAcrshort] = ACTIONS(4829), + [anon_sym_BSLASHACRshort] = ACTIONS(4829), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4829), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4829), + [anon_sym_BSLASHacrlong] = ACTIONS(4829), + [anon_sym_BSLASHAcrlong] = ACTIONS(4829), + [anon_sym_BSLASHACRlong] = ACTIONS(4829), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4829), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4829), + [anon_sym_BSLASHacrfull] = ACTIONS(4829), + [anon_sym_BSLASHAcrfull] = ACTIONS(4829), + [anon_sym_BSLASHACRfull] = ACTIONS(4829), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4829), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4829), + [anon_sym_BSLASHacs] = ACTIONS(4829), + [anon_sym_BSLASHAcs] = ACTIONS(4829), + [anon_sym_BSLASHacsp] = ACTIONS(4829), + [anon_sym_BSLASHAcsp] = ACTIONS(4829), + [anon_sym_BSLASHacl] = ACTIONS(4829), + [anon_sym_BSLASHAcl] = ACTIONS(4829), + [anon_sym_BSLASHaclp] = ACTIONS(4829), + [anon_sym_BSLASHAclp] = ACTIONS(4829), + [anon_sym_BSLASHacf] = ACTIONS(4829), + [anon_sym_BSLASHAcf] = ACTIONS(4829), + [anon_sym_BSLASHacfp] = ACTIONS(4829), + [anon_sym_BSLASHAcfp] = ACTIONS(4829), + [anon_sym_BSLASHac] = ACTIONS(4829), + [anon_sym_BSLASHAc] = ACTIONS(4829), + [anon_sym_BSLASHacp] = ACTIONS(4829), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4829), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4829), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4829), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4829), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4829), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4829), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4829), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4829), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4829), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4829), + [anon_sym_BSLASHcolor] = ACTIONS(4829), + [anon_sym_BSLASHcolorbox] = ACTIONS(4829), + [anon_sym_BSLASHtextcolor] = ACTIONS(4829), + [anon_sym_BSLASHpagecolor] = ACTIONS(4829), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4829), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4829), + [anon_sym_BSLASHtext] = ACTIONS(4829), + [anon_sym_BSLASHintertext] = ACTIONS(4829), + [anon_sym_shortintertext] = ACTIONS(4829), + }, + [761] = { + [ts_builtin_sym_end] = ACTIONS(5137), + [sym_command_name] = ACTIONS(5139), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_BSLASHpart] = ACTIONS(5037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddpart] = ACTIONS(5037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHchapter] = ACTIONS(5037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddchap] = ACTIONS(5037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsection] = ACTIONS(5037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddsec] = ACTIONS(5037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHparagraph] = ACTIONS(5037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHitem] = ACTIONS(5037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5035), - [anon_sym_BSLASHbegin] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [anon_sym_BSLASHiffalse] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_RBRACK] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_BSLASHpart] = ACTIONS(5139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), + [anon_sym_BSLASHaddpart] = ACTIONS(5139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), + [anon_sym_BSLASHchapter] = ACTIONS(5139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), + [anon_sym_BSLASHaddchap] = ACTIONS(5139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsection] = ACTIONS(5139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), + [anon_sym_BSLASHaddsec] = ACTIONS(5139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsubsection] = ACTIONS(5139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), + [anon_sym_BSLASHparagraph] = ACTIONS(5139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), + [anon_sym_BSLASHitem] = ACTIONS(5139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [sym_word] = ACTIONS(5139), + [sym_placeholder] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_CARET] = ACTIONS(5139), + [anon_sym__] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_PIPE] = ACTIONS(5139), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), + [anon_sym_DOLLAR] = ACTIONS(5139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), + [anon_sym_BSLASHbegin] = ACTIONS(5139), + [anon_sym_BSLASHusepackage] = ACTIONS(5139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), + [anon_sym_BSLASHinclude] = ACTIONS(5139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), + [anon_sym_BSLASHinput] = ACTIONS(5139), + [anon_sym_BSLASHsubfile] = ACTIONS(5139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), + [anon_sym_BSLASHbibliography] = ACTIONS(5139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), + [anon_sym_BSLASHincludesvg] = ACTIONS(5139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), + [anon_sym_BSLASHimport] = ACTIONS(5139), + [anon_sym_BSLASHsubimport] = ACTIONS(5139), + [anon_sym_BSLASHinputfrom] = ACTIONS(5139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), + [anon_sym_BSLASHincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHcaption] = ACTIONS(5139), + [anon_sym_BSLASHcite] = ACTIONS(5139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCite] = ACTIONS(5139), + [anon_sym_BSLASHnocite] = ACTIONS(5139), + [anon_sym_BSLASHcitet] = ACTIONS(5139), + [anon_sym_BSLASHcitep] = ACTIONS(5139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteauthor] = ACTIONS(5139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitetitle] = ACTIONS(5139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteyear] = ACTIONS(5139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitedate] = ACTIONS(5139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteurl] = ACTIONS(5139), + [anon_sym_BSLASHfullcite] = ACTIONS(5139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), + [anon_sym_BSLASHcitealt] = ACTIONS(5139), + [anon_sym_BSLASHcitealp] = ACTIONS(5139), + [anon_sym_BSLASHcitetext] = ACTIONS(5139), + [anon_sym_BSLASHparencite] = ACTIONS(5139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHParencite] = ACTIONS(5139), + [anon_sym_BSLASHfootcite] = ACTIONS(5139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), + [anon_sym_BSLASHtextcite] = ACTIONS(5139), + [anon_sym_BSLASHTextcite] = ACTIONS(5139), + [anon_sym_BSLASHsmartcite] = ACTIONS(5139), + [anon_sym_BSLASHSmartcite] = ACTIONS(5139), + [anon_sym_BSLASHsupercite] = ACTIONS(5139), + [anon_sym_BSLASHautocite] = ACTIONS(5139), + [anon_sym_BSLASHAutocite] = ACTIONS(5139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHvolcite] = ACTIONS(5139), + [anon_sym_BSLASHVolcite] = ACTIONS(5139), + [anon_sym_BSLASHpvolcite] = ACTIONS(5139), + [anon_sym_BSLASHPvolcite] = ACTIONS(5139), + [anon_sym_BSLASHfvolcite] = ACTIONS(5139), + [anon_sym_BSLASHftvolcite] = ACTIONS(5139), + [anon_sym_BSLASHsvolcite] = ACTIONS(5139), + [anon_sym_BSLASHSvolcite] = ACTIONS(5139), + [anon_sym_BSLASHtvolcite] = ACTIONS(5139), + [anon_sym_BSLASHTvolcite] = ACTIONS(5139), + [anon_sym_BSLASHavolcite] = ACTIONS(5139), + [anon_sym_BSLASHAvolcite] = ACTIONS(5139), + [anon_sym_BSLASHnotecite] = ACTIONS(5139), + [anon_sym_BSLASHNotecite] = ACTIONS(5139), + [anon_sym_BSLASHpnotecite] = ACTIONS(5139), + [anon_sym_BSLASHPnotecite] = ACTIONS(5139), + [anon_sym_BSLASHfnotecite] = ACTIONS(5139), + [anon_sym_BSLASHlabel] = ACTIONS(5139), + [anon_sym_BSLASHref] = ACTIONS(5139), + [anon_sym_BSLASHeqref] = ACTIONS(5139), + [anon_sym_BSLASHvref] = ACTIONS(5139), + [anon_sym_BSLASHVref] = ACTIONS(5139), + [anon_sym_BSLASHautoref] = ACTIONS(5139), + [anon_sym_BSLASHpageref] = ACTIONS(5139), + [anon_sym_BSLASHcref] = ACTIONS(5139), + [anon_sym_BSLASHCref] = ACTIONS(5139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnameCref] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHlabelcref] = ACTIONS(5139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCrefrange] = ACTIONS(5139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnewlabel] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), + [anon_sym_BSLASHdef] = ACTIONS(5139), + [anon_sym_BSLASHlet] = ACTIONS(5139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), + [anon_sym_BSLASHgls] = ACTIONS(5139), + [anon_sym_BSLASHGls] = ACTIONS(5139), + [anon_sym_BSLASHGLS] = ACTIONS(5139), + [anon_sym_BSLASHglspl] = ACTIONS(5139), + [anon_sym_BSLASHGlspl] = ACTIONS(5139), + [anon_sym_BSLASHGLSpl] = ACTIONS(5139), + [anon_sym_BSLASHglsdisp] = ACTIONS(5139), + [anon_sym_BSLASHglslink] = ACTIONS(5139), + [anon_sym_BSLASHglstext] = ACTIONS(5139), + [anon_sym_BSLASHGlstext] = ACTIONS(5139), + [anon_sym_BSLASHGLStext] = ACTIONS(5139), + [anon_sym_BSLASHglsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), + [anon_sym_BSLASHglsplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSplural] = ACTIONS(5139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHglsname] = ACTIONS(5139), + [anon_sym_BSLASHGlsname] = ACTIONS(5139), + [anon_sym_BSLASHGLSname] = ACTIONS(5139), + [anon_sym_BSLASHglssymbol] = ACTIONS(5139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), + [anon_sym_BSLASHglsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), + [anon_sym_BSLASHglsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), + [anon_sym_BSLASHglsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), + [anon_sym_BSLASHglsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), + [anon_sym_BSLASHglsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), + [anon_sym_BSLASHnewacronym] = ACTIONS(5139), + [anon_sym_BSLASHacrshort] = ACTIONS(5139), + [anon_sym_BSLASHAcrshort] = ACTIONS(5139), + [anon_sym_BSLASHACRshort] = ACTIONS(5139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), + [anon_sym_BSLASHacrlong] = ACTIONS(5139), + [anon_sym_BSLASHAcrlong] = ACTIONS(5139), + [anon_sym_BSLASHACRlong] = ACTIONS(5139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), + [anon_sym_BSLASHacrfull] = ACTIONS(5139), + [anon_sym_BSLASHAcrfull] = ACTIONS(5139), + [anon_sym_BSLASHACRfull] = ACTIONS(5139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), + [anon_sym_BSLASHacs] = ACTIONS(5139), + [anon_sym_BSLASHAcs] = ACTIONS(5139), + [anon_sym_BSLASHacsp] = ACTIONS(5139), + [anon_sym_BSLASHAcsp] = ACTIONS(5139), + [anon_sym_BSLASHacl] = ACTIONS(5139), + [anon_sym_BSLASHAcl] = ACTIONS(5139), + [anon_sym_BSLASHaclp] = ACTIONS(5139), + [anon_sym_BSLASHAclp] = ACTIONS(5139), + [anon_sym_BSLASHacf] = ACTIONS(5139), + [anon_sym_BSLASHAcf] = ACTIONS(5139), + [anon_sym_BSLASHacfp] = ACTIONS(5139), + [anon_sym_BSLASHAcfp] = ACTIONS(5139), + [anon_sym_BSLASHac] = ACTIONS(5139), + [anon_sym_BSLASHAc] = ACTIONS(5139), + [anon_sym_BSLASHacp] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), + [anon_sym_BSLASHcolor] = ACTIONS(5139), + [anon_sym_BSLASHcolorbox] = ACTIONS(5139), + [anon_sym_BSLASHtextcolor] = ACTIONS(5139), + [anon_sym_BSLASHpagecolor] = ACTIONS(5139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHtext] = ACTIONS(5139), + [anon_sym_BSLASHintertext] = ACTIONS(5139), + [anon_sym_shortintertext] = ACTIONS(5139), }, - [970] = { - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_BSLASHpart] = ACTIONS(141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddpart] = ACTIONS(141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHchapter] = ACTIONS(141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddchap] = ACTIONS(141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), - [anon_sym_BSLASHsection] = ACTIONS(141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddsec] = ACTIONS(141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHparagraph] = ACTIONS(141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHitem] = ACTIONS(141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_RPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [762] = { + [sym_curly_group] = STATE(962), + [sym_command_name] = ACTIONS(4837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4837), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4835), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_RBRACK] = ACTIONS(4835), + [anon_sym_COMMA] = ACTIONS(4835), + [anon_sym_EQ] = ACTIONS(4835), + [anon_sym_BSLASHpart] = ACTIONS(4837), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddpart] = ACTIONS(4837), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4835), + [anon_sym_BSLASHchapter] = ACTIONS(4837), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddchap] = ACTIONS(4837), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsection] = ACTIONS(4837), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddsec] = ACTIONS(4837), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubsection] = ACTIONS(4837), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4837), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHparagraph] = ACTIONS(4837), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4837), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4835), + [anon_sym_BSLASHitem] = ACTIONS(4837), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4835), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(4837), + [sym_placeholder] = ACTIONS(4835), + [anon_sym_PLUS] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4837), + [anon_sym_STAR] = ACTIONS(4837), + [anon_sym_SLASH] = ACTIONS(4837), + [anon_sym_CARET] = ACTIONS(4837), + [anon_sym__] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_BANG] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_COLON] = ACTIONS(4837), + [anon_sym_SQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4835), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4835), + [anon_sym_BSLASHbegin] = ACTIONS(4837), + [anon_sym_BSLASHusepackage] = ACTIONS(4837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4837), + [anon_sym_BSLASHinclude] = ACTIONS(4837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4837), + [anon_sym_BSLASHinput] = ACTIONS(4837), + [anon_sym_BSLASHsubfile] = ACTIONS(4837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4837), + [anon_sym_BSLASHbibliography] = ACTIONS(4837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4837), + [anon_sym_BSLASHincludesvg] = ACTIONS(4837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4837), + [anon_sym_BSLASHimport] = ACTIONS(4837), + [anon_sym_BSLASHsubimport] = ACTIONS(4837), + [anon_sym_BSLASHinputfrom] = ACTIONS(4837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4837), + [anon_sym_BSLASHincludefrom] = ACTIONS(4837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4837), + [anon_sym_BSLASHcaption] = ACTIONS(4837), + [anon_sym_BSLASHcite] = ACTIONS(4837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCite] = ACTIONS(4837), + [anon_sym_BSLASHnocite] = ACTIONS(4837), + [anon_sym_BSLASHcitet] = ACTIONS(4837), + [anon_sym_BSLASHcitep] = ACTIONS(4837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteauthor] = ACTIONS(4837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitetitle] = ACTIONS(4837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteyear] = ACTIONS(4837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitedate] = ACTIONS(4837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteurl] = ACTIONS(4837), + [anon_sym_BSLASHfullcite] = ACTIONS(4837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4837), + [anon_sym_BSLASHcitealt] = ACTIONS(4837), + [anon_sym_BSLASHcitealp] = ACTIONS(4837), + [anon_sym_BSLASHcitetext] = ACTIONS(4837), + [anon_sym_BSLASHparencite] = ACTIONS(4837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHParencite] = ACTIONS(4837), + [anon_sym_BSLASHfootcite] = ACTIONS(4837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4837), + [anon_sym_BSLASHtextcite] = ACTIONS(4837), + [anon_sym_BSLASHTextcite] = ACTIONS(4837), + [anon_sym_BSLASHsmartcite] = ACTIONS(4837), + [anon_sym_BSLASHSmartcite] = ACTIONS(4837), + [anon_sym_BSLASHsupercite] = ACTIONS(4837), + [anon_sym_BSLASHautocite] = ACTIONS(4837), + [anon_sym_BSLASHAutocite] = ACTIONS(4837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHvolcite] = ACTIONS(4837), + [anon_sym_BSLASHVolcite] = ACTIONS(4837), + [anon_sym_BSLASHpvolcite] = ACTIONS(4837), + [anon_sym_BSLASHPvolcite] = ACTIONS(4837), + [anon_sym_BSLASHfvolcite] = ACTIONS(4837), + [anon_sym_BSLASHftvolcite] = ACTIONS(4837), + [anon_sym_BSLASHsvolcite] = ACTIONS(4837), + [anon_sym_BSLASHSvolcite] = ACTIONS(4837), + [anon_sym_BSLASHtvolcite] = ACTIONS(4837), + [anon_sym_BSLASHTvolcite] = ACTIONS(4837), + [anon_sym_BSLASHavolcite] = ACTIONS(4837), + [anon_sym_BSLASHAvolcite] = ACTIONS(4837), + [anon_sym_BSLASHnotecite] = ACTIONS(4837), + [anon_sym_BSLASHNotecite] = ACTIONS(4837), + [anon_sym_BSLASHpnotecite] = ACTIONS(4837), + [anon_sym_BSLASHPnotecite] = ACTIONS(4837), + [anon_sym_BSLASHfnotecite] = ACTIONS(4837), + [anon_sym_BSLASHlabel] = ACTIONS(4837), + [anon_sym_BSLASHref] = ACTIONS(4837), + [anon_sym_BSLASHeqref] = ACTIONS(4837), + [anon_sym_BSLASHvref] = ACTIONS(4837), + [anon_sym_BSLASHVref] = ACTIONS(4837), + [anon_sym_BSLASHautoref] = ACTIONS(4837), + [anon_sym_BSLASHpageref] = ACTIONS(4837), + [anon_sym_BSLASHcref] = ACTIONS(4837), + [anon_sym_BSLASHCref] = ACTIONS(4837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4835), + [anon_sym_BSLASHnamecref] = ACTIONS(4837), + [anon_sym_BSLASHnameCref] = ACTIONS(4837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4837), + [anon_sym_BSLASHlabelcref] = ACTIONS(4837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4837), + [anon_sym_BSLASHcrefrange] = ACTIONS(4837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCrefrange] = ACTIONS(4837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4835), + [anon_sym_BSLASHnewlabel] = ACTIONS(4837), + [anon_sym_BSLASHnewcommand] = ACTIONS(4837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4835), + [anon_sym_BSLASHdef] = ACTIONS(4837), + [anon_sym_BSLASHlet] = ACTIONS(4837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4837), + [anon_sym_BSLASHgls] = ACTIONS(4837), + [anon_sym_BSLASHGls] = ACTIONS(4837), + [anon_sym_BSLASHGLS] = ACTIONS(4837), + [anon_sym_BSLASHglspl] = ACTIONS(4837), + [anon_sym_BSLASHGlspl] = ACTIONS(4837), + [anon_sym_BSLASHGLSpl] = ACTIONS(4837), + [anon_sym_BSLASHglsdisp] = ACTIONS(4837), + [anon_sym_BSLASHglslink] = ACTIONS(4837), + [anon_sym_BSLASHglstext] = ACTIONS(4837), + [anon_sym_BSLASHGlstext] = ACTIONS(4837), + [anon_sym_BSLASHGLStext] = ACTIONS(4837), + [anon_sym_BSLASHglsfirst] = ACTIONS(4837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4837), + [anon_sym_BSLASHglsplural] = ACTIONS(4837), + [anon_sym_BSLASHGlsplural] = ACTIONS(4837), + [anon_sym_BSLASHGLSplural] = ACTIONS(4837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHglsname] = ACTIONS(4837), + [anon_sym_BSLASHGlsname] = ACTIONS(4837), + [anon_sym_BSLASHGLSname] = ACTIONS(4837), + [anon_sym_BSLASHglssymbol] = ACTIONS(4837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4837), + [anon_sym_BSLASHglsdesc] = ACTIONS(4837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4837), + [anon_sym_BSLASHglsuseri] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4837), + [anon_sym_BSLASHglsuserii] = ACTIONS(4837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4837), + [anon_sym_BSLASHglsuserv] = ACTIONS(4837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4837), + [anon_sym_BSLASHglsuservi] = ACTIONS(4837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4837), + [anon_sym_BSLASHnewacronym] = ACTIONS(4837), + [anon_sym_BSLASHacrshort] = ACTIONS(4837), + [anon_sym_BSLASHAcrshort] = ACTIONS(4837), + [anon_sym_BSLASHACRshort] = ACTIONS(4837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4837), + [anon_sym_BSLASHacrlong] = ACTIONS(4837), + [anon_sym_BSLASHAcrlong] = ACTIONS(4837), + [anon_sym_BSLASHACRlong] = ACTIONS(4837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4837), + [anon_sym_BSLASHacrfull] = ACTIONS(4837), + [anon_sym_BSLASHAcrfull] = ACTIONS(4837), + [anon_sym_BSLASHACRfull] = ACTIONS(4837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4837), + [anon_sym_BSLASHacs] = ACTIONS(4837), + [anon_sym_BSLASHAcs] = ACTIONS(4837), + [anon_sym_BSLASHacsp] = ACTIONS(4837), + [anon_sym_BSLASHAcsp] = ACTIONS(4837), + [anon_sym_BSLASHacl] = ACTIONS(4837), + [anon_sym_BSLASHAcl] = ACTIONS(4837), + [anon_sym_BSLASHaclp] = ACTIONS(4837), + [anon_sym_BSLASHAclp] = ACTIONS(4837), + [anon_sym_BSLASHacf] = ACTIONS(4837), + [anon_sym_BSLASHAcf] = ACTIONS(4837), + [anon_sym_BSLASHacfp] = ACTIONS(4837), + [anon_sym_BSLASHAcfp] = ACTIONS(4837), + [anon_sym_BSLASHac] = ACTIONS(4837), + [anon_sym_BSLASHAc] = ACTIONS(4837), + [anon_sym_BSLASHacp] = ACTIONS(4837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4837), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4837), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4837), + [anon_sym_BSLASHcolor] = ACTIONS(4837), + [anon_sym_BSLASHcolorbox] = ACTIONS(4837), + [anon_sym_BSLASHtextcolor] = ACTIONS(4837), + [anon_sym_BSLASHpagecolor] = ACTIONS(4837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4837), + [anon_sym_BSLASHtext] = ACTIONS(4837), + [anon_sym_BSLASHintertext] = ACTIONS(4837), + [anon_sym_shortintertext] = ACTIONS(4837), }, - [971] = { - [sym_command_name] = ACTIONS(5049), + [763] = { + [sym_command_name] = ACTIONS(4865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4865), + [anon_sym_BSLASHfi] = ACTIONS(5141), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_RBRACK] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_BSLASHpart] = ACTIONS(4865), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddpart] = ACTIONS(4865), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4863), + [anon_sym_BSLASHchapter] = ACTIONS(4865), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddchap] = ACTIONS(4865), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsection] = ACTIONS(4865), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddsec] = ACTIONS(4865), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubsection] = ACTIONS(4865), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4865), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHparagraph] = ACTIONS(4865), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4865), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4863), + [anon_sym_BSLASHitem] = ACTIONS(4865), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4863), + [sym_word] = ACTIONS(4865), + [sym_placeholder] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_CARET] = ACTIONS(4865), + [anon_sym__] = ACTIONS(4865), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_COLON] = ACTIONS(4865), + [anon_sym_SQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4863), + [anon_sym_BSLASHbegin] = ACTIONS(4865), + [anon_sym_BSLASHusepackage] = ACTIONS(4865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), + [anon_sym_BSLASHinclude] = ACTIONS(4865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), + [anon_sym_BSLASHinput] = ACTIONS(4865), + [anon_sym_BSLASHsubfile] = ACTIONS(4865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), + [anon_sym_BSLASHbibliography] = ACTIONS(4865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), + [anon_sym_BSLASHincludesvg] = ACTIONS(4865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), + [anon_sym_BSLASHimport] = ACTIONS(4865), + [anon_sym_BSLASHsubimport] = ACTIONS(4865), + [anon_sym_BSLASHinputfrom] = ACTIONS(4865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), + [anon_sym_BSLASHincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHcaption] = ACTIONS(4865), + [anon_sym_BSLASHcite] = ACTIONS(4865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCite] = ACTIONS(4865), + [anon_sym_BSLASHnocite] = ACTIONS(4865), + [anon_sym_BSLASHcitet] = ACTIONS(4865), + [anon_sym_BSLASHcitep] = ACTIONS(4865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteauthor] = ACTIONS(4865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitetitle] = ACTIONS(4865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteyear] = ACTIONS(4865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitedate] = ACTIONS(4865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteurl] = ACTIONS(4865), + [anon_sym_BSLASHfullcite] = ACTIONS(4865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), + [anon_sym_BSLASHcitealt] = ACTIONS(4865), + [anon_sym_BSLASHcitealp] = ACTIONS(4865), + [anon_sym_BSLASHcitetext] = ACTIONS(4865), + [anon_sym_BSLASHparencite] = ACTIONS(4865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHParencite] = ACTIONS(4865), + [anon_sym_BSLASHfootcite] = ACTIONS(4865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), + [anon_sym_BSLASHtextcite] = ACTIONS(4865), + [anon_sym_BSLASHTextcite] = ACTIONS(4865), + [anon_sym_BSLASHsmartcite] = ACTIONS(4865), + [anon_sym_BSLASHSmartcite] = ACTIONS(4865), + [anon_sym_BSLASHsupercite] = ACTIONS(4865), + [anon_sym_BSLASHautocite] = ACTIONS(4865), + [anon_sym_BSLASHAutocite] = ACTIONS(4865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHvolcite] = ACTIONS(4865), + [anon_sym_BSLASHVolcite] = ACTIONS(4865), + [anon_sym_BSLASHpvolcite] = ACTIONS(4865), + [anon_sym_BSLASHPvolcite] = ACTIONS(4865), + [anon_sym_BSLASHfvolcite] = ACTIONS(4865), + [anon_sym_BSLASHftvolcite] = ACTIONS(4865), + [anon_sym_BSLASHsvolcite] = ACTIONS(4865), + [anon_sym_BSLASHSvolcite] = ACTIONS(4865), + [anon_sym_BSLASHtvolcite] = ACTIONS(4865), + [anon_sym_BSLASHTvolcite] = ACTIONS(4865), + [anon_sym_BSLASHavolcite] = ACTIONS(4865), + [anon_sym_BSLASHAvolcite] = ACTIONS(4865), + [anon_sym_BSLASHnotecite] = ACTIONS(4865), + [anon_sym_BSLASHNotecite] = ACTIONS(4865), + [anon_sym_BSLASHpnotecite] = ACTIONS(4865), + [anon_sym_BSLASHPnotecite] = ACTIONS(4865), + [anon_sym_BSLASHfnotecite] = ACTIONS(4865), + [anon_sym_BSLASHlabel] = ACTIONS(4865), + [anon_sym_BSLASHref] = ACTIONS(4865), + [anon_sym_BSLASHeqref] = ACTIONS(4865), + [anon_sym_BSLASHvref] = ACTIONS(4865), + [anon_sym_BSLASHVref] = ACTIONS(4865), + [anon_sym_BSLASHautoref] = ACTIONS(4865), + [anon_sym_BSLASHpageref] = ACTIONS(4865), + [anon_sym_BSLASHcref] = ACTIONS(4865), + [anon_sym_BSLASHCref] = ACTIONS(4865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnameCref] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHlabelcref] = ACTIONS(4865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCrefrange] = ACTIONS(4865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnewlabel] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), + [anon_sym_BSLASHdef] = ACTIONS(4865), + [anon_sym_BSLASHlet] = ACTIONS(4865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), + [anon_sym_BSLASHgls] = ACTIONS(4865), + [anon_sym_BSLASHGls] = ACTIONS(4865), + [anon_sym_BSLASHGLS] = ACTIONS(4865), + [anon_sym_BSLASHglspl] = ACTIONS(4865), + [anon_sym_BSLASHGlspl] = ACTIONS(4865), + [anon_sym_BSLASHGLSpl] = ACTIONS(4865), + [anon_sym_BSLASHglsdisp] = ACTIONS(4865), + [anon_sym_BSLASHglslink] = ACTIONS(4865), + [anon_sym_BSLASHglstext] = ACTIONS(4865), + [anon_sym_BSLASHGlstext] = ACTIONS(4865), + [anon_sym_BSLASHGLStext] = ACTIONS(4865), + [anon_sym_BSLASHglsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), + [anon_sym_BSLASHglsplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSplural] = ACTIONS(4865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHglsname] = ACTIONS(4865), + [anon_sym_BSLASHGlsname] = ACTIONS(4865), + [anon_sym_BSLASHGLSname] = ACTIONS(4865), + [anon_sym_BSLASHglssymbol] = ACTIONS(4865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), + [anon_sym_BSLASHglsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), + [anon_sym_BSLASHglsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), + [anon_sym_BSLASHglsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), + [anon_sym_BSLASHglsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), + [anon_sym_BSLASHglsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), + [anon_sym_BSLASHnewacronym] = ACTIONS(4865), + [anon_sym_BSLASHacrshort] = ACTIONS(4865), + [anon_sym_BSLASHAcrshort] = ACTIONS(4865), + [anon_sym_BSLASHACRshort] = ACTIONS(4865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), + [anon_sym_BSLASHacrlong] = ACTIONS(4865), + [anon_sym_BSLASHAcrlong] = ACTIONS(4865), + [anon_sym_BSLASHACRlong] = ACTIONS(4865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), + [anon_sym_BSLASHacrfull] = ACTIONS(4865), + [anon_sym_BSLASHAcrfull] = ACTIONS(4865), + [anon_sym_BSLASHACRfull] = ACTIONS(4865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), + [anon_sym_BSLASHacs] = ACTIONS(4865), + [anon_sym_BSLASHAcs] = ACTIONS(4865), + [anon_sym_BSLASHacsp] = ACTIONS(4865), + [anon_sym_BSLASHAcsp] = ACTIONS(4865), + [anon_sym_BSLASHacl] = ACTIONS(4865), + [anon_sym_BSLASHAcl] = ACTIONS(4865), + [anon_sym_BSLASHaclp] = ACTIONS(4865), + [anon_sym_BSLASHAclp] = ACTIONS(4865), + [anon_sym_BSLASHacf] = ACTIONS(4865), + [anon_sym_BSLASHAcf] = ACTIONS(4865), + [anon_sym_BSLASHacfp] = ACTIONS(4865), + [anon_sym_BSLASHAcfp] = ACTIONS(4865), + [anon_sym_BSLASHac] = ACTIONS(4865), + [anon_sym_BSLASHAc] = ACTIONS(4865), + [anon_sym_BSLASHacp] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), + [anon_sym_BSLASHcolor] = ACTIONS(4865), + [anon_sym_BSLASHcolorbox] = ACTIONS(4865), + [anon_sym_BSLASHtextcolor] = ACTIONS(4865), + [anon_sym_BSLASHpagecolor] = ACTIONS(4865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), + [anon_sym_BSLASHtext] = ACTIONS(4865), + [anon_sym_BSLASHintertext] = ACTIONS(4865), + [anon_sym_shortintertext] = ACTIONS(4865), + }, + [764] = { + [ts_builtin_sym_end] = ACTIONS(5143), + [sym_command_name] = ACTIONS(5145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_RPAREN] = ACTIONS(5143), + [anon_sym_LBRACK] = ACTIONS(5143), + [anon_sym_RBRACK] = ACTIONS(5143), + [anon_sym_COMMA] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_BSLASHpart] = ACTIONS(5145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddpart] = ACTIONS(5145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5143), + [anon_sym_BSLASHchapter] = ACTIONS(5145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddchap] = ACTIONS(5145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsection] = ACTIONS(5145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddsec] = ACTIONS(5145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubsection] = ACTIONS(5145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHparagraph] = ACTIONS(5145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5143), + [anon_sym_BSLASHitem] = ACTIONS(5145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5143), + [anon_sym_RBRACE] = ACTIONS(5143), + [sym_word] = ACTIONS(5145), + [sym_placeholder] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym__] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5145), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), + [anon_sym_DOLLAR] = ACTIONS(5145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), + [anon_sym_BSLASHbegin] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5145), + [anon_sym_BSLASHinclude] = ACTIONS(5145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5145), + [anon_sym_BSLASHinput] = ACTIONS(5145), + [anon_sym_BSLASHsubfile] = ACTIONS(5145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5145), + [anon_sym_BSLASHbibliography] = ACTIONS(5145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5145), + [anon_sym_BSLASHincludesvg] = ACTIONS(5145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5145), + [anon_sym_BSLASHimport] = ACTIONS(5145), + [anon_sym_BSLASHsubimport] = ACTIONS(5145), + [anon_sym_BSLASHinputfrom] = ACTIONS(5145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5145), + [anon_sym_BSLASHincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHcaption] = ACTIONS(5145), + [anon_sym_BSLASHcite] = ACTIONS(5145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCite] = ACTIONS(5145), + [anon_sym_BSLASHnocite] = ACTIONS(5145), + [anon_sym_BSLASHcitet] = ACTIONS(5145), + [anon_sym_BSLASHcitep] = ACTIONS(5145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteauthor] = ACTIONS(5145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitetitle] = ACTIONS(5145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteyear] = ACTIONS(5145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitedate] = ACTIONS(5145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteurl] = ACTIONS(5145), + [anon_sym_BSLASHfullcite] = ACTIONS(5145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5145), + [anon_sym_BSLASHcitealt] = ACTIONS(5145), + [anon_sym_BSLASHcitealp] = ACTIONS(5145), + [anon_sym_BSLASHcitetext] = ACTIONS(5145), + [anon_sym_BSLASHparencite] = ACTIONS(5145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHParencite] = ACTIONS(5145), + [anon_sym_BSLASHfootcite] = ACTIONS(5145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5145), + [anon_sym_BSLASHtextcite] = ACTIONS(5145), + [anon_sym_BSLASHTextcite] = ACTIONS(5145), + [anon_sym_BSLASHsmartcite] = ACTIONS(5145), + [anon_sym_BSLASHSmartcite] = ACTIONS(5145), + [anon_sym_BSLASHsupercite] = ACTIONS(5145), + [anon_sym_BSLASHautocite] = ACTIONS(5145), + [anon_sym_BSLASHAutocite] = ACTIONS(5145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHvolcite] = ACTIONS(5145), + [anon_sym_BSLASHVolcite] = ACTIONS(5145), + [anon_sym_BSLASHpvolcite] = ACTIONS(5145), + [anon_sym_BSLASHPvolcite] = ACTIONS(5145), + [anon_sym_BSLASHfvolcite] = ACTIONS(5145), + [anon_sym_BSLASHftvolcite] = ACTIONS(5145), + [anon_sym_BSLASHsvolcite] = ACTIONS(5145), + [anon_sym_BSLASHSvolcite] = ACTIONS(5145), + [anon_sym_BSLASHtvolcite] = ACTIONS(5145), + [anon_sym_BSLASHTvolcite] = ACTIONS(5145), + [anon_sym_BSLASHavolcite] = ACTIONS(5145), + [anon_sym_BSLASHAvolcite] = ACTIONS(5145), + [anon_sym_BSLASHnotecite] = ACTIONS(5145), + [anon_sym_BSLASHNotecite] = ACTIONS(5145), + [anon_sym_BSLASHpnotecite] = ACTIONS(5145), + [anon_sym_BSLASHPnotecite] = ACTIONS(5145), + [anon_sym_BSLASHfnotecite] = ACTIONS(5145), + [anon_sym_BSLASHlabel] = ACTIONS(5145), + [anon_sym_BSLASHref] = ACTIONS(5145), + [anon_sym_BSLASHeqref] = ACTIONS(5145), + [anon_sym_BSLASHvref] = ACTIONS(5145), + [anon_sym_BSLASHVref] = ACTIONS(5145), + [anon_sym_BSLASHautoref] = ACTIONS(5145), + [anon_sym_BSLASHpageref] = ACTIONS(5145), + [anon_sym_BSLASHcref] = ACTIONS(5145), + [anon_sym_BSLASHCref] = ACTIONS(5145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnameCref] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHlabelcref] = ACTIONS(5145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCrefrange] = ACTIONS(5145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnewlabel] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), + [anon_sym_BSLASHdef] = ACTIONS(5145), + [anon_sym_BSLASHlet] = ACTIONS(5145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5145), + [anon_sym_BSLASHgls] = ACTIONS(5145), + [anon_sym_BSLASHGls] = ACTIONS(5145), + [anon_sym_BSLASHGLS] = ACTIONS(5145), + [anon_sym_BSLASHglspl] = ACTIONS(5145), + [anon_sym_BSLASHGlspl] = ACTIONS(5145), + [anon_sym_BSLASHGLSpl] = ACTIONS(5145), + [anon_sym_BSLASHglsdisp] = ACTIONS(5145), + [anon_sym_BSLASHglslink] = ACTIONS(5145), + [anon_sym_BSLASHglstext] = ACTIONS(5145), + [anon_sym_BSLASHGlstext] = ACTIONS(5145), + [anon_sym_BSLASHGLStext] = ACTIONS(5145), + [anon_sym_BSLASHglsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5145), + [anon_sym_BSLASHglsplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSplural] = ACTIONS(5145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHglsname] = ACTIONS(5145), + [anon_sym_BSLASHGlsname] = ACTIONS(5145), + [anon_sym_BSLASHGLSname] = ACTIONS(5145), + [anon_sym_BSLASHglssymbol] = ACTIONS(5145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5145), + [anon_sym_BSLASHglsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5145), + [anon_sym_BSLASHglsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5145), + [anon_sym_BSLASHglsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5145), + [anon_sym_BSLASHglsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5145), + [anon_sym_BSLASHglsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5145), + [anon_sym_BSLASHnewacronym] = ACTIONS(5145), + [anon_sym_BSLASHacrshort] = ACTIONS(5145), + [anon_sym_BSLASHAcrshort] = ACTIONS(5145), + [anon_sym_BSLASHACRshort] = ACTIONS(5145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5145), + [anon_sym_BSLASHacrlong] = ACTIONS(5145), + [anon_sym_BSLASHAcrlong] = ACTIONS(5145), + [anon_sym_BSLASHACRlong] = ACTIONS(5145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5145), + [anon_sym_BSLASHacrfull] = ACTIONS(5145), + [anon_sym_BSLASHAcrfull] = ACTIONS(5145), + [anon_sym_BSLASHACRfull] = ACTIONS(5145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5145), + [anon_sym_BSLASHacs] = ACTIONS(5145), + [anon_sym_BSLASHAcs] = ACTIONS(5145), + [anon_sym_BSLASHacsp] = ACTIONS(5145), + [anon_sym_BSLASHAcsp] = ACTIONS(5145), + [anon_sym_BSLASHacl] = ACTIONS(5145), + [anon_sym_BSLASHAcl] = ACTIONS(5145), + [anon_sym_BSLASHaclp] = ACTIONS(5145), + [anon_sym_BSLASHAclp] = ACTIONS(5145), + [anon_sym_BSLASHacf] = ACTIONS(5145), + [anon_sym_BSLASHAcf] = ACTIONS(5145), + [anon_sym_BSLASHacfp] = ACTIONS(5145), + [anon_sym_BSLASHAcfp] = ACTIONS(5145), + [anon_sym_BSLASHac] = ACTIONS(5145), + [anon_sym_BSLASHAc] = ACTIONS(5145), + [anon_sym_BSLASHacp] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5145), + [anon_sym_BSLASHcolor] = ACTIONS(5145), + [anon_sym_BSLASHcolorbox] = ACTIONS(5145), + [anon_sym_BSLASHtextcolor] = ACTIONS(5145), + [anon_sym_BSLASHpagecolor] = ACTIONS(5145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5145), + [anon_sym_BSLASHtext] = ACTIONS(5145), + [anon_sym_BSLASHintertext] = ACTIONS(5145), + [anon_sym_shortintertext] = ACTIONS(5145), + }, + [765] = { + [sym_curly_group] = STATE(1174), + [sym_command_name] = ACTIONS(4825), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4825), + [anon_sym_LPAREN] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_LBRACK] = ACTIONS(4823), + [anon_sym_RBRACK] = ACTIONS(4823), + [anon_sym_COMMA] = ACTIONS(4823), + [anon_sym_EQ] = ACTIONS(4823), + [anon_sym_BSLASHpart] = ACTIONS(4825), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddpart] = ACTIONS(4825), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4823), + [anon_sym_BSLASHchapter] = ACTIONS(4825), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddchap] = ACTIONS(4825), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsection] = ACTIONS(4825), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddsec] = ACTIONS(4825), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubsection] = ACTIONS(4825), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4825), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHparagraph] = ACTIONS(4825), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4825), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4823), + [anon_sym_BSLASHitem] = ACTIONS(4825), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4823), + [anon_sym_LBRACE] = ACTIONS(789), + [sym_word] = ACTIONS(4825), + [sym_placeholder] = ACTIONS(4823), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym__] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_BANG] = ACTIONS(4825), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_COLON] = ACTIONS(4825), + [anon_sym_SQUOTE] = ACTIONS(4825), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4823), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4823), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4825), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4823), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4823), + [anon_sym_BSLASHbegin] = ACTIONS(4825), + [anon_sym_BSLASHusepackage] = ACTIONS(4825), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4825), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4825), + [anon_sym_BSLASHinclude] = ACTIONS(4825), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4825), + [anon_sym_BSLASHinput] = ACTIONS(4825), + [anon_sym_BSLASHsubfile] = ACTIONS(4825), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4825), + [anon_sym_BSLASHbibliography] = ACTIONS(4825), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4825), + [anon_sym_BSLASHincludesvg] = ACTIONS(4825), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4825), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4825), + [anon_sym_BSLASHimport] = ACTIONS(4825), + [anon_sym_BSLASHsubimport] = ACTIONS(4825), + [anon_sym_BSLASHinputfrom] = ACTIONS(4825), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4825), + [anon_sym_BSLASHincludefrom] = ACTIONS(4825), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4825), + [anon_sym_BSLASHcaption] = ACTIONS(4825), + [anon_sym_BSLASHcite] = ACTIONS(4825), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCite] = ACTIONS(4825), + [anon_sym_BSLASHnocite] = ACTIONS(4825), + [anon_sym_BSLASHcitet] = ACTIONS(4825), + [anon_sym_BSLASHcitep] = ACTIONS(4825), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteauthor] = ACTIONS(4825), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4825), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitetitle] = ACTIONS(4825), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteyear] = ACTIONS(4825), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitedate] = ACTIONS(4825), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteurl] = ACTIONS(4825), + [anon_sym_BSLASHfullcite] = ACTIONS(4825), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4825), + [anon_sym_BSLASHcitealt] = ACTIONS(4825), + [anon_sym_BSLASHcitealp] = ACTIONS(4825), + [anon_sym_BSLASHcitetext] = ACTIONS(4825), + [anon_sym_BSLASHparencite] = ACTIONS(4825), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHParencite] = ACTIONS(4825), + [anon_sym_BSLASHfootcite] = ACTIONS(4825), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4825), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4825), + [anon_sym_BSLASHtextcite] = ACTIONS(4825), + [anon_sym_BSLASHTextcite] = ACTIONS(4825), + [anon_sym_BSLASHsmartcite] = ACTIONS(4825), + [anon_sym_BSLASHSmartcite] = ACTIONS(4825), + [anon_sym_BSLASHsupercite] = ACTIONS(4825), + [anon_sym_BSLASHautocite] = ACTIONS(4825), + [anon_sym_BSLASHAutocite] = ACTIONS(4825), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHvolcite] = ACTIONS(4825), + [anon_sym_BSLASHVolcite] = ACTIONS(4825), + [anon_sym_BSLASHpvolcite] = ACTIONS(4825), + [anon_sym_BSLASHPvolcite] = ACTIONS(4825), + [anon_sym_BSLASHfvolcite] = ACTIONS(4825), + [anon_sym_BSLASHftvolcite] = ACTIONS(4825), + [anon_sym_BSLASHsvolcite] = ACTIONS(4825), + [anon_sym_BSLASHSvolcite] = ACTIONS(4825), + [anon_sym_BSLASHtvolcite] = ACTIONS(4825), + [anon_sym_BSLASHTvolcite] = ACTIONS(4825), + [anon_sym_BSLASHavolcite] = ACTIONS(4825), + [anon_sym_BSLASHAvolcite] = ACTIONS(4825), + [anon_sym_BSLASHnotecite] = ACTIONS(4825), + [anon_sym_BSLASHNotecite] = ACTIONS(4825), + [anon_sym_BSLASHpnotecite] = ACTIONS(4825), + [anon_sym_BSLASHPnotecite] = ACTIONS(4825), + [anon_sym_BSLASHfnotecite] = ACTIONS(4825), + [anon_sym_BSLASHlabel] = ACTIONS(4825), + [anon_sym_BSLASHref] = ACTIONS(4825), + [anon_sym_BSLASHeqref] = ACTIONS(4825), + [anon_sym_BSLASHvref] = ACTIONS(4825), + [anon_sym_BSLASHVref] = ACTIONS(4825), + [anon_sym_BSLASHautoref] = ACTIONS(4825), + [anon_sym_BSLASHpageref] = ACTIONS(4825), + [anon_sym_BSLASHcref] = ACTIONS(4825), + [anon_sym_BSLASHCref] = ACTIONS(4825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4823), + [anon_sym_BSLASHnamecref] = ACTIONS(4825), + [anon_sym_BSLASHnameCref] = ACTIONS(4825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4825), + [anon_sym_BSLASHlabelcref] = ACTIONS(4825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4825), + [anon_sym_BSLASHcrefrange] = ACTIONS(4825), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCrefrange] = ACTIONS(4825), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4823), + [anon_sym_BSLASHnewlabel] = ACTIONS(4825), + [anon_sym_BSLASHnewcommand] = ACTIONS(4825), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4825), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4825), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4825), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4823), + [anon_sym_BSLASHdef] = ACTIONS(4825), + [anon_sym_BSLASHlet] = ACTIONS(4825), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4825), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4825), + [anon_sym_BSLASHgls] = ACTIONS(4825), + [anon_sym_BSLASHGls] = ACTIONS(4825), + [anon_sym_BSLASHGLS] = ACTIONS(4825), + [anon_sym_BSLASHglspl] = ACTIONS(4825), + [anon_sym_BSLASHGlspl] = ACTIONS(4825), + [anon_sym_BSLASHGLSpl] = ACTIONS(4825), + [anon_sym_BSLASHglsdisp] = ACTIONS(4825), + [anon_sym_BSLASHglslink] = ACTIONS(4825), + [anon_sym_BSLASHglstext] = ACTIONS(4825), + [anon_sym_BSLASHGlstext] = ACTIONS(4825), + [anon_sym_BSLASHGLStext] = ACTIONS(4825), + [anon_sym_BSLASHglsfirst] = ACTIONS(4825), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4825), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4825), + [anon_sym_BSLASHglsplural] = ACTIONS(4825), + [anon_sym_BSLASHGlsplural] = ACTIONS(4825), + [anon_sym_BSLASHGLSplural] = ACTIONS(4825), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHglsname] = ACTIONS(4825), + [anon_sym_BSLASHGlsname] = ACTIONS(4825), + [anon_sym_BSLASHGLSname] = ACTIONS(4825), + [anon_sym_BSLASHglssymbol] = ACTIONS(4825), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4825), + [anon_sym_BSLASHglsdesc] = ACTIONS(4825), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4825), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4825), + [anon_sym_BSLASHglsuseri] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4825), + [anon_sym_BSLASHglsuserii] = ACTIONS(4825), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4825), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4825), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4825), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4825), + [anon_sym_BSLASHglsuserv] = ACTIONS(4825), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4825), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4825), + [anon_sym_BSLASHglsuservi] = ACTIONS(4825), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4825), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4825), + [anon_sym_BSLASHnewacronym] = ACTIONS(4825), + [anon_sym_BSLASHacrshort] = ACTIONS(4825), + [anon_sym_BSLASHAcrshort] = ACTIONS(4825), + [anon_sym_BSLASHACRshort] = ACTIONS(4825), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4825), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4825), + [anon_sym_BSLASHacrlong] = ACTIONS(4825), + [anon_sym_BSLASHAcrlong] = ACTIONS(4825), + [anon_sym_BSLASHACRlong] = ACTIONS(4825), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4825), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4825), + [anon_sym_BSLASHacrfull] = ACTIONS(4825), + [anon_sym_BSLASHAcrfull] = ACTIONS(4825), + [anon_sym_BSLASHACRfull] = ACTIONS(4825), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4825), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4825), + [anon_sym_BSLASHacs] = ACTIONS(4825), + [anon_sym_BSLASHAcs] = ACTIONS(4825), + [anon_sym_BSLASHacsp] = ACTIONS(4825), + [anon_sym_BSLASHAcsp] = ACTIONS(4825), + [anon_sym_BSLASHacl] = ACTIONS(4825), + [anon_sym_BSLASHAcl] = ACTIONS(4825), + [anon_sym_BSLASHaclp] = ACTIONS(4825), + [anon_sym_BSLASHAclp] = ACTIONS(4825), + [anon_sym_BSLASHacf] = ACTIONS(4825), + [anon_sym_BSLASHAcf] = ACTIONS(4825), + [anon_sym_BSLASHacfp] = ACTIONS(4825), + [anon_sym_BSLASHAcfp] = ACTIONS(4825), + [anon_sym_BSLASHac] = ACTIONS(4825), + [anon_sym_BSLASHAc] = ACTIONS(4825), + [anon_sym_BSLASHacp] = ACTIONS(4825), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4825), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4825), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4825), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4825), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4825), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4825), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4825), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4825), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4825), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4825), + [anon_sym_BSLASHcolor] = ACTIONS(4825), + [anon_sym_BSLASHcolorbox] = ACTIONS(4825), + [anon_sym_BSLASHtextcolor] = ACTIONS(4825), + [anon_sym_BSLASHpagecolor] = ACTIONS(4825), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4825), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4825), + [anon_sym_BSLASHtext] = ACTIONS(4825), + [anon_sym_BSLASHintertext] = ACTIONS(4825), + [anon_sym_shortintertext] = ACTIONS(4825), + }, + [766] = { + [sym_curly_group] = STATE(961), + [sym_command_name] = ACTIONS(4841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4841), + [anon_sym_LPAREN] = ACTIONS(4839), + [anon_sym_RPAREN] = ACTIONS(4839), + [anon_sym_LBRACK] = ACTIONS(4839), + [anon_sym_RBRACK] = ACTIONS(4839), + [anon_sym_COMMA] = ACTIONS(4839), + [anon_sym_EQ] = ACTIONS(4839), + [anon_sym_BSLASHpart] = ACTIONS(4841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddpart] = ACTIONS(4841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4839), + [anon_sym_BSLASHchapter] = ACTIONS(4841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddchap] = ACTIONS(4841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsection] = ACTIONS(4841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddsec] = ACTIONS(4841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubsection] = ACTIONS(4841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHparagraph] = ACTIONS(4841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4839), + [anon_sym_BSLASHitem] = ACTIONS(4841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4839), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(4841), + [sym_placeholder] = ACTIONS(4839), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_CARET] = ACTIONS(4841), + [anon_sym__] = ACTIONS(4841), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_COLON] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4839), + [anon_sym_DOLLAR] = ACTIONS(4841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4839), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4839), + [anon_sym_BSLASHbegin] = ACTIONS(4841), + [anon_sym_BSLASHusepackage] = ACTIONS(4841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4841), + [anon_sym_BSLASHinclude] = ACTIONS(4841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4841), + [anon_sym_BSLASHinput] = ACTIONS(4841), + [anon_sym_BSLASHsubfile] = ACTIONS(4841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4841), + [anon_sym_BSLASHbibliography] = ACTIONS(4841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4841), + [anon_sym_BSLASHincludesvg] = ACTIONS(4841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4841), + [anon_sym_BSLASHimport] = ACTIONS(4841), + [anon_sym_BSLASHsubimport] = ACTIONS(4841), + [anon_sym_BSLASHinputfrom] = ACTIONS(4841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4841), + [anon_sym_BSLASHincludefrom] = ACTIONS(4841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4841), + [anon_sym_BSLASHcaption] = ACTIONS(4841), + [anon_sym_BSLASHcite] = ACTIONS(4841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCite] = ACTIONS(4841), + [anon_sym_BSLASHnocite] = ACTIONS(4841), + [anon_sym_BSLASHcitet] = ACTIONS(4841), + [anon_sym_BSLASHcitep] = ACTIONS(4841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteauthor] = ACTIONS(4841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitetitle] = ACTIONS(4841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteyear] = ACTIONS(4841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitedate] = ACTIONS(4841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteurl] = ACTIONS(4841), + [anon_sym_BSLASHfullcite] = ACTIONS(4841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4841), + [anon_sym_BSLASHcitealt] = ACTIONS(4841), + [anon_sym_BSLASHcitealp] = ACTIONS(4841), + [anon_sym_BSLASHcitetext] = ACTIONS(4841), + [anon_sym_BSLASHparencite] = ACTIONS(4841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHParencite] = ACTIONS(4841), + [anon_sym_BSLASHfootcite] = ACTIONS(4841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4841), + [anon_sym_BSLASHtextcite] = ACTIONS(4841), + [anon_sym_BSLASHTextcite] = ACTIONS(4841), + [anon_sym_BSLASHsmartcite] = ACTIONS(4841), + [anon_sym_BSLASHSmartcite] = ACTIONS(4841), + [anon_sym_BSLASHsupercite] = ACTIONS(4841), + [anon_sym_BSLASHautocite] = ACTIONS(4841), + [anon_sym_BSLASHAutocite] = ACTIONS(4841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHvolcite] = ACTIONS(4841), + [anon_sym_BSLASHVolcite] = ACTIONS(4841), + [anon_sym_BSLASHpvolcite] = ACTIONS(4841), + [anon_sym_BSLASHPvolcite] = ACTIONS(4841), + [anon_sym_BSLASHfvolcite] = ACTIONS(4841), + [anon_sym_BSLASHftvolcite] = ACTIONS(4841), + [anon_sym_BSLASHsvolcite] = ACTIONS(4841), + [anon_sym_BSLASHSvolcite] = ACTIONS(4841), + [anon_sym_BSLASHtvolcite] = ACTIONS(4841), + [anon_sym_BSLASHTvolcite] = ACTIONS(4841), + [anon_sym_BSLASHavolcite] = ACTIONS(4841), + [anon_sym_BSLASHAvolcite] = ACTIONS(4841), + [anon_sym_BSLASHnotecite] = ACTIONS(4841), + [anon_sym_BSLASHNotecite] = ACTIONS(4841), + [anon_sym_BSLASHpnotecite] = ACTIONS(4841), + [anon_sym_BSLASHPnotecite] = ACTIONS(4841), + [anon_sym_BSLASHfnotecite] = ACTIONS(4841), + [anon_sym_BSLASHlabel] = ACTIONS(4841), + [anon_sym_BSLASHref] = ACTIONS(4841), + [anon_sym_BSLASHeqref] = ACTIONS(4841), + [anon_sym_BSLASHvref] = ACTIONS(4841), + [anon_sym_BSLASHVref] = ACTIONS(4841), + [anon_sym_BSLASHautoref] = ACTIONS(4841), + [anon_sym_BSLASHpageref] = ACTIONS(4841), + [anon_sym_BSLASHcref] = ACTIONS(4841), + [anon_sym_BSLASHCref] = ACTIONS(4841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4839), + [anon_sym_BSLASHnamecref] = ACTIONS(4841), + [anon_sym_BSLASHnameCref] = ACTIONS(4841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4841), + [anon_sym_BSLASHlabelcref] = ACTIONS(4841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4841), + [anon_sym_BSLASHcrefrange] = ACTIONS(4841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCrefrange] = ACTIONS(4841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4839), + [anon_sym_BSLASHnewlabel] = ACTIONS(4841), + [anon_sym_BSLASHnewcommand] = ACTIONS(4841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4839), + [anon_sym_BSLASHdef] = ACTIONS(4841), + [anon_sym_BSLASHlet] = ACTIONS(4841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4841), + [anon_sym_BSLASHgls] = ACTIONS(4841), + [anon_sym_BSLASHGls] = ACTIONS(4841), + [anon_sym_BSLASHGLS] = ACTIONS(4841), + [anon_sym_BSLASHglspl] = ACTIONS(4841), + [anon_sym_BSLASHGlspl] = ACTIONS(4841), + [anon_sym_BSLASHGLSpl] = ACTIONS(4841), + [anon_sym_BSLASHglsdisp] = ACTIONS(4841), + [anon_sym_BSLASHglslink] = ACTIONS(4841), + [anon_sym_BSLASHglstext] = ACTIONS(4841), + [anon_sym_BSLASHGlstext] = ACTIONS(4841), + [anon_sym_BSLASHGLStext] = ACTIONS(4841), + [anon_sym_BSLASHglsfirst] = ACTIONS(4841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4841), + [anon_sym_BSLASHglsplural] = ACTIONS(4841), + [anon_sym_BSLASHGlsplural] = ACTIONS(4841), + [anon_sym_BSLASHGLSplural] = ACTIONS(4841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHglsname] = ACTIONS(4841), + [anon_sym_BSLASHGlsname] = ACTIONS(4841), + [anon_sym_BSLASHGLSname] = ACTIONS(4841), + [anon_sym_BSLASHglssymbol] = ACTIONS(4841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4841), + [anon_sym_BSLASHglsdesc] = ACTIONS(4841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4841), + [anon_sym_BSLASHglsuseri] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4841), + [anon_sym_BSLASHglsuserii] = ACTIONS(4841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4841), + [anon_sym_BSLASHglsuserv] = ACTIONS(4841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4841), + [anon_sym_BSLASHglsuservi] = ACTIONS(4841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4841), + [anon_sym_BSLASHnewacronym] = ACTIONS(4841), + [anon_sym_BSLASHacrshort] = ACTIONS(4841), + [anon_sym_BSLASHAcrshort] = ACTIONS(4841), + [anon_sym_BSLASHACRshort] = ACTIONS(4841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4841), + [anon_sym_BSLASHacrlong] = ACTIONS(4841), + [anon_sym_BSLASHAcrlong] = ACTIONS(4841), + [anon_sym_BSLASHACRlong] = ACTIONS(4841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4841), + [anon_sym_BSLASHacrfull] = ACTIONS(4841), + [anon_sym_BSLASHAcrfull] = ACTIONS(4841), + [anon_sym_BSLASHACRfull] = ACTIONS(4841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4841), + [anon_sym_BSLASHacs] = ACTIONS(4841), + [anon_sym_BSLASHAcs] = ACTIONS(4841), + [anon_sym_BSLASHacsp] = ACTIONS(4841), + [anon_sym_BSLASHAcsp] = ACTIONS(4841), + [anon_sym_BSLASHacl] = ACTIONS(4841), + [anon_sym_BSLASHAcl] = ACTIONS(4841), + [anon_sym_BSLASHaclp] = ACTIONS(4841), + [anon_sym_BSLASHAclp] = ACTIONS(4841), + [anon_sym_BSLASHacf] = ACTIONS(4841), + [anon_sym_BSLASHAcf] = ACTIONS(4841), + [anon_sym_BSLASHacfp] = ACTIONS(4841), + [anon_sym_BSLASHAcfp] = ACTIONS(4841), + [anon_sym_BSLASHac] = ACTIONS(4841), + [anon_sym_BSLASHAc] = ACTIONS(4841), + [anon_sym_BSLASHacp] = ACTIONS(4841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4841), + [anon_sym_BSLASHcolor] = ACTIONS(4841), + [anon_sym_BSLASHcolorbox] = ACTIONS(4841), + [anon_sym_BSLASHtextcolor] = ACTIONS(4841), + [anon_sym_BSLASHpagecolor] = ACTIONS(4841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4841), + [anon_sym_BSLASHtext] = ACTIONS(4841), + [anon_sym_BSLASHintertext] = ACTIONS(4841), + [anon_sym_shortintertext] = ACTIONS(4841), + }, + [767] = { + [ts_builtin_sym_end] = ACTIONS(5147), + [sym_command_name] = ACTIONS(5149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_RPAREN] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_RBRACK] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_BSLASHpart] = ACTIONS(5149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddpart] = ACTIONS(5149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5147), + [anon_sym_BSLASHchapter] = ACTIONS(5149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddchap] = ACTIONS(5149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsection] = ACTIONS(5149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddsec] = ACTIONS(5149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubsection] = ACTIONS(5149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHparagraph] = ACTIONS(5149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5147), + [anon_sym_BSLASHitem] = ACTIONS(5149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5147), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [sym_word] = ACTIONS(5149), + [sym_placeholder] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym__] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_COLON] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), + [anon_sym_DOLLAR] = ACTIONS(5149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), + [anon_sym_BSLASHbegin] = ACTIONS(5149), + [anon_sym_BSLASHusepackage] = ACTIONS(5149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), + [anon_sym_BSLASHinput] = ACTIONS(5149), + [anon_sym_BSLASHsubfile] = ACTIONS(5149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), + [anon_sym_BSLASHbibliography] = ACTIONS(5149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), + [anon_sym_BSLASHincludesvg] = ACTIONS(5149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), + [anon_sym_BSLASHimport] = ACTIONS(5149), + [anon_sym_BSLASHsubimport] = ACTIONS(5149), + [anon_sym_BSLASHinputfrom] = ACTIONS(5149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), + [anon_sym_BSLASHincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHcaption] = ACTIONS(5149), + [anon_sym_BSLASHcite] = ACTIONS(5149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCite] = ACTIONS(5149), + [anon_sym_BSLASHnocite] = ACTIONS(5149), + [anon_sym_BSLASHcitet] = ACTIONS(5149), + [anon_sym_BSLASHcitep] = ACTIONS(5149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteauthor] = ACTIONS(5149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitetitle] = ACTIONS(5149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteyear] = ACTIONS(5149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitedate] = ACTIONS(5149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteurl] = ACTIONS(5149), + [anon_sym_BSLASHfullcite] = ACTIONS(5149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), + [anon_sym_BSLASHcitealt] = ACTIONS(5149), + [anon_sym_BSLASHcitealp] = ACTIONS(5149), + [anon_sym_BSLASHcitetext] = ACTIONS(5149), + [anon_sym_BSLASHparencite] = ACTIONS(5149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHParencite] = ACTIONS(5149), + [anon_sym_BSLASHfootcite] = ACTIONS(5149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), + [anon_sym_BSLASHtextcite] = ACTIONS(5149), + [anon_sym_BSLASHTextcite] = ACTIONS(5149), + [anon_sym_BSLASHsmartcite] = ACTIONS(5149), + [anon_sym_BSLASHSmartcite] = ACTIONS(5149), + [anon_sym_BSLASHsupercite] = ACTIONS(5149), + [anon_sym_BSLASHautocite] = ACTIONS(5149), + [anon_sym_BSLASHAutocite] = ACTIONS(5149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHvolcite] = ACTIONS(5149), + [anon_sym_BSLASHVolcite] = ACTIONS(5149), + [anon_sym_BSLASHpvolcite] = ACTIONS(5149), + [anon_sym_BSLASHPvolcite] = ACTIONS(5149), + [anon_sym_BSLASHfvolcite] = ACTIONS(5149), + [anon_sym_BSLASHftvolcite] = ACTIONS(5149), + [anon_sym_BSLASHsvolcite] = ACTIONS(5149), + [anon_sym_BSLASHSvolcite] = ACTIONS(5149), + [anon_sym_BSLASHtvolcite] = ACTIONS(5149), + [anon_sym_BSLASHTvolcite] = ACTIONS(5149), + [anon_sym_BSLASHavolcite] = ACTIONS(5149), + [anon_sym_BSLASHAvolcite] = ACTIONS(5149), + [anon_sym_BSLASHnotecite] = ACTIONS(5149), + [anon_sym_BSLASHNotecite] = ACTIONS(5149), + [anon_sym_BSLASHpnotecite] = ACTIONS(5149), + [anon_sym_BSLASHPnotecite] = ACTIONS(5149), + [anon_sym_BSLASHfnotecite] = ACTIONS(5149), + [anon_sym_BSLASHlabel] = ACTIONS(5149), + [anon_sym_BSLASHref] = ACTIONS(5149), + [anon_sym_BSLASHeqref] = ACTIONS(5149), + [anon_sym_BSLASHvref] = ACTIONS(5149), + [anon_sym_BSLASHVref] = ACTIONS(5149), + [anon_sym_BSLASHautoref] = ACTIONS(5149), + [anon_sym_BSLASHpageref] = ACTIONS(5149), + [anon_sym_BSLASHcref] = ACTIONS(5149), + [anon_sym_BSLASHCref] = ACTIONS(5149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnameCref] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHlabelcref] = ACTIONS(5149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCrefrange] = ACTIONS(5149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnewlabel] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), + [anon_sym_BSLASHdef] = ACTIONS(5149), + [anon_sym_BSLASHlet] = ACTIONS(5149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), + [anon_sym_BSLASHgls] = ACTIONS(5149), + [anon_sym_BSLASHGls] = ACTIONS(5149), + [anon_sym_BSLASHGLS] = ACTIONS(5149), + [anon_sym_BSLASHglspl] = ACTIONS(5149), + [anon_sym_BSLASHGlspl] = ACTIONS(5149), + [anon_sym_BSLASHGLSpl] = ACTIONS(5149), + [anon_sym_BSLASHglsdisp] = ACTIONS(5149), + [anon_sym_BSLASHglslink] = ACTIONS(5149), + [anon_sym_BSLASHglstext] = ACTIONS(5149), + [anon_sym_BSLASHGlstext] = ACTIONS(5149), + [anon_sym_BSLASHGLStext] = ACTIONS(5149), + [anon_sym_BSLASHglsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), + [anon_sym_BSLASHglsplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSplural] = ACTIONS(5149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHglsname] = ACTIONS(5149), + [anon_sym_BSLASHGlsname] = ACTIONS(5149), + [anon_sym_BSLASHGLSname] = ACTIONS(5149), + [anon_sym_BSLASHglssymbol] = ACTIONS(5149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), + [anon_sym_BSLASHglsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), + [anon_sym_BSLASHglsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), + [anon_sym_BSLASHglsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), + [anon_sym_BSLASHglsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), + [anon_sym_BSLASHglsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), + [anon_sym_BSLASHnewacronym] = ACTIONS(5149), + [anon_sym_BSLASHacrshort] = ACTIONS(5149), + [anon_sym_BSLASHAcrshort] = ACTIONS(5149), + [anon_sym_BSLASHACRshort] = ACTIONS(5149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), + [anon_sym_BSLASHacrlong] = ACTIONS(5149), + [anon_sym_BSLASHAcrlong] = ACTIONS(5149), + [anon_sym_BSLASHACRlong] = ACTIONS(5149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), + [anon_sym_BSLASHacrfull] = ACTIONS(5149), + [anon_sym_BSLASHAcrfull] = ACTIONS(5149), + [anon_sym_BSLASHACRfull] = ACTIONS(5149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), + [anon_sym_BSLASHacs] = ACTIONS(5149), + [anon_sym_BSLASHAcs] = ACTIONS(5149), + [anon_sym_BSLASHacsp] = ACTIONS(5149), + [anon_sym_BSLASHAcsp] = ACTIONS(5149), + [anon_sym_BSLASHacl] = ACTIONS(5149), + [anon_sym_BSLASHAcl] = ACTIONS(5149), + [anon_sym_BSLASHaclp] = ACTIONS(5149), + [anon_sym_BSLASHAclp] = ACTIONS(5149), + [anon_sym_BSLASHacf] = ACTIONS(5149), + [anon_sym_BSLASHAcf] = ACTIONS(5149), + [anon_sym_BSLASHacfp] = ACTIONS(5149), + [anon_sym_BSLASHAcfp] = ACTIONS(5149), + [anon_sym_BSLASHac] = ACTIONS(5149), + [anon_sym_BSLASHAc] = ACTIONS(5149), + [anon_sym_BSLASHacp] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), + [anon_sym_BSLASHcolor] = ACTIONS(5149), + [anon_sym_BSLASHcolorbox] = ACTIONS(5149), + [anon_sym_BSLASHtextcolor] = ACTIONS(5149), + [anon_sym_BSLASHpagecolor] = ACTIONS(5149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), + [anon_sym_BSLASHtext] = ACTIONS(5149), + [anon_sym_BSLASHintertext] = ACTIONS(5149), + [anon_sym_shortintertext] = ACTIONS(5149), + }, + [768] = { + [ts_builtin_sym_end] = ACTIONS(5151), + [sym_command_name] = ACTIONS(5153), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_RPAREN] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_RBRACK] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(5151), + [anon_sym_BSLASHpart] = ACTIONS(5153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddpart] = ACTIONS(5153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5151), + [anon_sym_BSLASHchapter] = ACTIONS(5153), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddchap] = ACTIONS(5153), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsection] = ACTIONS(5153), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddsec] = ACTIONS(5153), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubsection] = ACTIONS(5153), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5153), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHparagraph] = ACTIONS(5153), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5153), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5151), + [anon_sym_BSLASHitem] = ACTIONS(5153), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [sym_word] = ACTIONS(5153), + [sym_placeholder] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym__] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5153), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), + [anon_sym_DOLLAR] = ACTIONS(5153), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), + [anon_sym_BSLASHbegin] = ACTIONS(5153), + [anon_sym_BSLASHusepackage] = ACTIONS(5153), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), + [anon_sym_BSLASHinclude] = ACTIONS(5153), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), + [anon_sym_BSLASHinput] = ACTIONS(5153), + [anon_sym_BSLASHsubfile] = ACTIONS(5153), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5153), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), + [anon_sym_BSLASHincludesvg] = ACTIONS(5153), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), + [anon_sym_BSLASHimport] = ACTIONS(5153), + [anon_sym_BSLASHsubimport] = ACTIONS(5153), + [anon_sym_BSLASHinputfrom] = ACTIONS(5153), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), + [anon_sym_BSLASHincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHcaption] = ACTIONS(5153), + [anon_sym_BSLASHcite] = ACTIONS(5153), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCite] = ACTIONS(5153), + [anon_sym_BSLASHnocite] = ACTIONS(5153), + [anon_sym_BSLASHcitet] = ACTIONS(5153), + [anon_sym_BSLASHcitep] = ACTIONS(5153), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteauthor] = ACTIONS(5153), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitetitle] = ACTIONS(5153), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteyear] = ACTIONS(5153), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitedate] = ACTIONS(5153), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteurl] = ACTIONS(5153), + [anon_sym_BSLASHfullcite] = ACTIONS(5153), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), + [anon_sym_BSLASHcitealt] = ACTIONS(5153), + [anon_sym_BSLASHcitealp] = ACTIONS(5153), + [anon_sym_BSLASHcitetext] = ACTIONS(5153), + [anon_sym_BSLASHparencite] = ACTIONS(5153), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHParencite] = ACTIONS(5153), + [anon_sym_BSLASHfootcite] = ACTIONS(5153), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), + [anon_sym_BSLASHtextcite] = ACTIONS(5153), + [anon_sym_BSLASHTextcite] = ACTIONS(5153), + [anon_sym_BSLASHsmartcite] = ACTIONS(5153), + [anon_sym_BSLASHSmartcite] = ACTIONS(5153), + [anon_sym_BSLASHsupercite] = ACTIONS(5153), + [anon_sym_BSLASHautocite] = ACTIONS(5153), + [anon_sym_BSLASHAutocite] = ACTIONS(5153), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHvolcite] = ACTIONS(5153), + [anon_sym_BSLASHVolcite] = ACTIONS(5153), + [anon_sym_BSLASHpvolcite] = ACTIONS(5153), + [anon_sym_BSLASHPvolcite] = ACTIONS(5153), + [anon_sym_BSLASHfvolcite] = ACTIONS(5153), + [anon_sym_BSLASHftvolcite] = ACTIONS(5153), + [anon_sym_BSLASHsvolcite] = ACTIONS(5153), + [anon_sym_BSLASHSvolcite] = ACTIONS(5153), + [anon_sym_BSLASHtvolcite] = ACTIONS(5153), + [anon_sym_BSLASHTvolcite] = ACTIONS(5153), + [anon_sym_BSLASHavolcite] = ACTIONS(5153), + [anon_sym_BSLASHAvolcite] = ACTIONS(5153), + [anon_sym_BSLASHnotecite] = ACTIONS(5153), + [anon_sym_BSLASHNotecite] = ACTIONS(5153), + [anon_sym_BSLASHpnotecite] = ACTIONS(5153), + [anon_sym_BSLASHPnotecite] = ACTIONS(5153), + [anon_sym_BSLASHfnotecite] = ACTIONS(5153), + [anon_sym_BSLASHlabel] = ACTIONS(5153), + [anon_sym_BSLASHref] = ACTIONS(5153), + [anon_sym_BSLASHeqref] = ACTIONS(5153), + [anon_sym_BSLASHvref] = ACTIONS(5153), + [anon_sym_BSLASHVref] = ACTIONS(5153), + [anon_sym_BSLASHautoref] = ACTIONS(5153), + [anon_sym_BSLASHpageref] = ACTIONS(5153), + [anon_sym_BSLASHcref] = ACTIONS(5153), + [anon_sym_BSLASHCref] = ACTIONS(5153), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnameCref] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHlabelcref] = ACTIONS(5153), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCrefrange] = ACTIONS(5153), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnewlabel] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), + [anon_sym_BSLASHdef] = ACTIONS(5153), + [anon_sym_BSLASHlet] = ACTIONS(5153), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), + [anon_sym_BSLASHgls] = ACTIONS(5153), + [anon_sym_BSLASHGls] = ACTIONS(5153), + [anon_sym_BSLASHGLS] = ACTIONS(5153), + [anon_sym_BSLASHglspl] = ACTIONS(5153), + [anon_sym_BSLASHGlspl] = ACTIONS(5153), + [anon_sym_BSLASHGLSpl] = ACTIONS(5153), + [anon_sym_BSLASHglsdisp] = ACTIONS(5153), + [anon_sym_BSLASHglslink] = ACTIONS(5153), + [anon_sym_BSLASHglstext] = ACTIONS(5153), + [anon_sym_BSLASHGlstext] = ACTIONS(5153), + [anon_sym_BSLASHGLStext] = ACTIONS(5153), + [anon_sym_BSLASHglsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), + [anon_sym_BSLASHglsplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSplural] = ACTIONS(5153), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHglsname] = ACTIONS(5153), + [anon_sym_BSLASHGlsname] = ACTIONS(5153), + [anon_sym_BSLASHGLSname] = ACTIONS(5153), + [anon_sym_BSLASHglssymbol] = ACTIONS(5153), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), + [anon_sym_BSLASHglsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), + [anon_sym_BSLASHglsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), + [anon_sym_BSLASHglsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), + [anon_sym_BSLASHglsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), + [anon_sym_BSLASHglsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), + [anon_sym_BSLASHnewacronym] = ACTIONS(5153), + [anon_sym_BSLASHacrshort] = ACTIONS(5153), + [anon_sym_BSLASHAcrshort] = ACTIONS(5153), + [anon_sym_BSLASHACRshort] = ACTIONS(5153), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), + [anon_sym_BSLASHacrlong] = ACTIONS(5153), + [anon_sym_BSLASHAcrlong] = ACTIONS(5153), + [anon_sym_BSLASHACRlong] = ACTIONS(5153), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), + [anon_sym_BSLASHacrfull] = ACTIONS(5153), + [anon_sym_BSLASHAcrfull] = ACTIONS(5153), + [anon_sym_BSLASHACRfull] = ACTIONS(5153), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), + [anon_sym_BSLASHacs] = ACTIONS(5153), + [anon_sym_BSLASHAcs] = ACTIONS(5153), + [anon_sym_BSLASHacsp] = ACTIONS(5153), + [anon_sym_BSLASHAcsp] = ACTIONS(5153), + [anon_sym_BSLASHacl] = ACTIONS(5153), + [anon_sym_BSLASHAcl] = ACTIONS(5153), + [anon_sym_BSLASHaclp] = ACTIONS(5153), + [anon_sym_BSLASHAclp] = ACTIONS(5153), + [anon_sym_BSLASHacf] = ACTIONS(5153), + [anon_sym_BSLASHAcf] = ACTIONS(5153), + [anon_sym_BSLASHacfp] = ACTIONS(5153), + [anon_sym_BSLASHAcfp] = ACTIONS(5153), + [anon_sym_BSLASHac] = ACTIONS(5153), + [anon_sym_BSLASHAc] = ACTIONS(5153), + [anon_sym_BSLASHacp] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), + [anon_sym_BSLASHcolor] = ACTIONS(5153), + [anon_sym_BSLASHcolorbox] = ACTIONS(5153), + [anon_sym_BSLASHtextcolor] = ACTIONS(5153), + [anon_sym_BSLASHpagecolor] = ACTIONS(5153), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), + [anon_sym_BSLASHtext] = ACTIONS(5153), + [anon_sym_BSLASHintertext] = ACTIONS(5153), + [anon_sym_shortintertext] = ACTIONS(5153), + }, + [769] = { + [ts_builtin_sym_end] = ACTIONS(5155), + [sym_command_name] = ACTIONS(5157), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5157), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RBRACK] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_EQ] = ACTIONS(5155), + [anon_sym_BSLASHpart] = ACTIONS(5157), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddpart] = ACTIONS(5157), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5155), + [anon_sym_BSLASHchapter] = ACTIONS(5157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddchap] = ACTIONS(5157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsection] = ACTIONS(5157), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddsec] = ACTIONS(5157), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubsection] = ACTIONS(5157), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5157), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHparagraph] = ACTIONS(5157), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5157), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5155), + [anon_sym_BSLASHitem] = ACTIONS(5157), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5155), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [sym_word] = ACTIONS(5157), + [sym_placeholder] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(5157), + [anon_sym_STAR] = ACTIONS(5157), + [anon_sym_SLASH] = ACTIONS(5157), + [anon_sym_CARET] = ACTIONS(5157), + [anon_sym__] = ACTIONS(5157), + [anon_sym_LT] = ACTIONS(5157), + [anon_sym_GT] = ACTIONS(5157), + [anon_sym_BANG] = ACTIONS(5157), + [anon_sym_PIPE] = ACTIONS(5157), + [anon_sym_COLON] = ACTIONS(5157), + [anon_sym_SQUOTE] = ACTIONS(5157), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), + [anon_sym_DOLLAR] = ACTIONS(5157), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), + [anon_sym_BSLASHbegin] = ACTIONS(5157), + [anon_sym_BSLASHusepackage] = ACTIONS(5157), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), + [anon_sym_BSLASHinclude] = ACTIONS(5157), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), + [anon_sym_BSLASHinput] = ACTIONS(5157), + [anon_sym_BSLASHsubfile] = ACTIONS(5157), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), + [anon_sym_BSLASHbibliography] = ACTIONS(5157), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5157), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), + [anon_sym_BSLASHimport] = ACTIONS(5157), + [anon_sym_BSLASHsubimport] = ACTIONS(5157), + [anon_sym_BSLASHinputfrom] = ACTIONS(5157), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), + [anon_sym_BSLASHincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHcaption] = ACTIONS(5157), + [anon_sym_BSLASHcite] = ACTIONS(5157), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCite] = ACTIONS(5157), + [anon_sym_BSLASHnocite] = ACTIONS(5157), + [anon_sym_BSLASHcitet] = ACTIONS(5157), + [anon_sym_BSLASHcitep] = ACTIONS(5157), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteauthor] = ACTIONS(5157), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitetitle] = ACTIONS(5157), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteyear] = ACTIONS(5157), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitedate] = ACTIONS(5157), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteurl] = ACTIONS(5157), + [anon_sym_BSLASHfullcite] = ACTIONS(5157), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), + [anon_sym_BSLASHcitealt] = ACTIONS(5157), + [anon_sym_BSLASHcitealp] = ACTIONS(5157), + [anon_sym_BSLASHcitetext] = ACTIONS(5157), + [anon_sym_BSLASHparencite] = ACTIONS(5157), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHParencite] = ACTIONS(5157), + [anon_sym_BSLASHfootcite] = ACTIONS(5157), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), + [anon_sym_BSLASHtextcite] = ACTIONS(5157), + [anon_sym_BSLASHTextcite] = ACTIONS(5157), + [anon_sym_BSLASHsmartcite] = ACTIONS(5157), + [anon_sym_BSLASHSmartcite] = ACTIONS(5157), + [anon_sym_BSLASHsupercite] = ACTIONS(5157), + [anon_sym_BSLASHautocite] = ACTIONS(5157), + [anon_sym_BSLASHAutocite] = ACTIONS(5157), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHvolcite] = ACTIONS(5157), + [anon_sym_BSLASHVolcite] = ACTIONS(5157), + [anon_sym_BSLASHpvolcite] = ACTIONS(5157), + [anon_sym_BSLASHPvolcite] = ACTIONS(5157), + [anon_sym_BSLASHfvolcite] = ACTIONS(5157), + [anon_sym_BSLASHftvolcite] = ACTIONS(5157), + [anon_sym_BSLASHsvolcite] = ACTIONS(5157), + [anon_sym_BSLASHSvolcite] = ACTIONS(5157), + [anon_sym_BSLASHtvolcite] = ACTIONS(5157), + [anon_sym_BSLASHTvolcite] = ACTIONS(5157), + [anon_sym_BSLASHavolcite] = ACTIONS(5157), + [anon_sym_BSLASHAvolcite] = ACTIONS(5157), + [anon_sym_BSLASHnotecite] = ACTIONS(5157), + [anon_sym_BSLASHNotecite] = ACTIONS(5157), + [anon_sym_BSLASHpnotecite] = ACTIONS(5157), + [anon_sym_BSLASHPnotecite] = ACTIONS(5157), + [anon_sym_BSLASHfnotecite] = ACTIONS(5157), + [anon_sym_BSLASHlabel] = ACTIONS(5157), + [anon_sym_BSLASHref] = ACTIONS(5157), + [anon_sym_BSLASHeqref] = ACTIONS(5157), + [anon_sym_BSLASHvref] = ACTIONS(5157), + [anon_sym_BSLASHVref] = ACTIONS(5157), + [anon_sym_BSLASHautoref] = ACTIONS(5157), + [anon_sym_BSLASHpageref] = ACTIONS(5157), + [anon_sym_BSLASHcref] = ACTIONS(5157), + [anon_sym_BSLASHCref] = ACTIONS(5157), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnameCref] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHlabelcref] = ACTIONS(5157), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCrefrange] = ACTIONS(5157), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnewlabel] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), + [anon_sym_BSLASHdef] = ACTIONS(5157), + [anon_sym_BSLASHlet] = ACTIONS(5157), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), + [anon_sym_BSLASHgls] = ACTIONS(5157), + [anon_sym_BSLASHGls] = ACTIONS(5157), + [anon_sym_BSLASHGLS] = ACTIONS(5157), + [anon_sym_BSLASHglspl] = ACTIONS(5157), + [anon_sym_BSLASHGlspl] = ACTIONS(5157), + [anon_sym_BSLASHGLSpl] = ACTIONS(5157), + [anon_sym_BSLASHglsdisp] = ACTIONS(5157), + [anon_sym_BSLASHglslink] = ACTIONS(5157), + [anon_sym_BSLASHglstext] = ACTIONS(5157), + [anon_sym_BSLASHGlstext] = ACTIONS(5157), + [anon_sym_BSLASHGLStext] = ACTIONS(5157), + [anon_sym_BSLASHglsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), + [anon_sym_BSLASHglsplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSplural] = ACTIONS(5157), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHglsname] = ACTIONS(5157), + [anon_sym_BSLASHGlsname] = ACTIONS(5157), + [anon_sym_BSLASHGLSname] = ACTIONS(5157), + [anon_sym_BSLASHglssymbol] = ACTIONS(5157), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), + [anon_sym_BSLASHglsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), + [anon_sym_BSLASHglsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), + [anon_sym_BSLASHglsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), + [anon_sym_BSLASHglsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), + [anon_sym_BSLASHglsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), + [anon_sym_BSLASHnewacronym] = ACTIONS(5157), + [anon_sym_BSLASHacrshort] = ACTIONS(5157), + [anon_sym_BSLASHAcrshort] = ACTIONS(5157), + [anon_sym_BSLASHACRshort] = ACTIONS(5157), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), + [anon_sym_BSLASHacrlong] = ACTIONS(5157), + [anon_sym_BSLASHAcrlong] = ACTIONS(5157), + [anon_sym_BSLASHACRlong] = ACTIONS(5157), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), + [anon_sym_BSLASHacrfull] = ACTIONS(5157), + [anon_sym_BSLASHAcrfull] = ACTIONS(5157), + [anon_sym_BSLASHACRfull] = ACTIONS(5157), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), + [anon_sym_BSLASHacs] = ACTIONS(5157), + [anon_sym_BSLASHAcs] = ACTIONS(5157), + [anon_sym_BSLASHacsp] = ACTIONS(5157), + [anon_sym_BSLASHAcsp] = ACTIONS(5157), + [anon_sym_BSLASHacl] = ACTIONS(5157), + [anon_sym_BSLASHAcl] = ACTIONS(5157), + [anon_sym_BSLASHaclp] = ACTIONS(5157), + [anon_sym_BSLASHAclp] = ACTIONS(5157), + [anon_sym_BSLASHacf] = ACTIONS(5157), + [anon_sym_BSLASHAcf] = ACTIONS(5157), + [anon_sym_BSLASHacfp] = ACTIONS(5157), + [anon_sym_BSLASHAcfp] = ACTIONS(5157), + [anon_sym_BSLASHac] = ACTIONS(5157), + [anon_sym_BSLASHAc] = ACTIONS(5157), + [anon_sym_BSLASHacp] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), + [anon_sym_BSLASHcolor] = ACTIONS(5157), + [anon_sym_BSLASHcolorbox] = ACTIONS(5157), + [anon_sym_BSLASHtextcolor] = ACTIONS(5157), + [anon_sym_BSLASHpagecolor] = ACTIONS(5157), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), + [anon_sym_BSLASHtext] = ACTIONS(5157), + [anon_sym_BSLASHintertext] = ACTIONS(5157), + [anon_sym_shortintertext] = ACTIONS(5157), + }, + [770] = { + [ts_builtin_sym_end] = ACTIONS(5159), + [sym_command_name] = ACTIONS(5161), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_RBRACK] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_BSLASHpart] = ACTIONS(5161), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddpart] = ACTIONS(5161), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5159), + [anon_sym_BSLASHchapter] = ACTIONS(5161), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddchap] = ACTIONS(5161), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsection] = ACTIONS(5161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddsec] = ACTIONS(5161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubsection] = ACTIONS(5161), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5161), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHparagraph] = ACTIONS(5161), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5161), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5159), + [anon_sym_BSLASHitem] = ACTIONS(5161), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5159), + [anon_sym_RBRACE] = ACTIONS(5159), + [sym_word] = ACTIONS(5161), + [sym_placeholder] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_CARET] = ACTIONS(5161), + [anon_sym__] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_COLON] = ACTIONS(5161), + [anon_sym_SQUOTE] = ACTIONS(5161), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), + [anon_sym_DOLLAR] = ACTIONS(5161), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), + [anon_sym_BSLASHbegin] = ACTIONS(5161), + [anon_sym_BSLASHusepackage] = ACTIONS(5161), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), + [anon_sym_BSLASHinclude] = ACTIONS(5161), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), + [anon_sym_BSLASHinput] = ACTIONS(5161), + [anon_sym_BSLASHsubfile] = ACTIONS(5161), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), + [anon_sym_BSLASHbibliography] = ACTIONS(5161), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), + [anon_sym_BSLASHincludesvg] = ACTIONS(5161), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), + [anon_sym_BSLASHimport] = ACTIONS(5161), + [anon_sym_BSLASHsubimport] = ACTIONS(5161), + [anon_sym_BSLASHinputfrom] = ACTIONS(5161), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), + [anon_sym_BSLASHincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHcaption] = ACTIONS(5161), + [anon_sym_BSLASHcite] = ACTIONS(5161), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCite] = ACTIONS(5161), + [anon_sym_BSLASHnocite] = ACTIONS(5161), + [anon_sym_BSLASHcitet] = ACTIONS(5161), + [anon_sym_BSLASHcitep] = ACTIONS(5161), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteauthor] = ACTIONS(5161), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitetitle] = ACTIONS(5161), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteyear] = ACTIONS(5161), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitedate] = ACTIONS(5161), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteurl] = ACTIONS(5161), + [anon_sym_BSLASHfullcite] = ACTIONS(5161), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), + [anon_sym_BSLASHcitealt] = ACTIONS(5161), + [anon_sym_BSLASHcitealp] = ACTIONS(5161), + [anon_sym_BSLASHcitetext] = ACTIONS(5161), + [anon_sym_BSLASHparencite] = ACTIONS(5161), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHParencite] = ACTIONS(5161), + [anon_sym_BSLASHfootcite] = ACTIONS(5161), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), + [anon_sym_BSLASHtextcite] = ACTIONS(5161), + [anon_sym_BSLASHTextcite] = ACTIONS(5161), + [anon_sym_BSLASHsmartcite] = ACTIONS(5161), + [anon_sym_BSLASHSmartcite] = ACTIONS(5161), + [anon_sym_BSLASHsupercite] = ACTIONS(5161), + [anon_sym_BSLASHautocite] = ACTIONS(5161), + [anon_sym_BSLASHAutocite] = ACTIONS(5161), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHvolcite] = ACTIONS(5161), + [anon_sym_BSLASHVolcite] = ACTIONS(5161), + [anon_sym_BSLASHpvolcite] = ACTIONS(5161), + [anon_sym_BSLASHPvolcite] = ACTIONS(5161), + [anon_sym_BSLASHfvolcite] = ACTIONS(5161), + [anon_sym_BSLASHftvolcite] = ACTIONS(5161), + [anon_sym_BSLASHsvolcite] = ACTIONS(5161), + [anon_sym_BSLASHSvolcite] = ACTIONS(5161), + [anon_sym_BSLASHtvolcite] = ACTIONS(5161), + [anon_sym_BSLASHTvolcite] = ACTIONS(5161), + [anon_sym_BSLASHavolcite] = ACTIONS(5161), + [anon_sym_BSLASHAvolcite] = ACTIONS(5161), + [anon_sym_BSLASHnotecite] = ACTIONS(5161), + [anon_sym_BSLASHNotecite] = ACTIONS(5161), + [anon_sym_BSLASHpnotecite] = ACTIONS(5161), + [anon_sym_BSLASHPnotecite] = ACTIONS(5161), + [anon_sym_BSLASHfnotecite] = ACTIONS(5161), + [anon_sym_BSLASHlabel] = ACTIONS(5161), + [anon_sym_BSLASHref] = ACTIONS(5161), + [anon_sym_BSLASHeqref] = ACTIONS(5161), + [anon_sym_BSLASHvref] = ACTIONS(5161), + [anon_sym_BSLASHVref] = ACTIONS(5161), + [anon_sym_BSLASHautoref] = ACTIONS(5161), + [anon_sym_BSLASHpageref] = ACTIONS(5161), + [anon_sym_BSLASHcref] = ACTIONS(5161), + [anon_sym_BSLASHCref] = ACTIONS(5161), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnameCref] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHlabelcref] = ACTIONS(5161), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCrefrange] = ACTIONS(5161), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnewlabel] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), + [anon_sym_BSLASHdef] = ACTIONS(5161), + [anon_sym_BSLASHlet] = ACTIONS(5161), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), + [anon_sym_BSLASHgls] = ACTIONS(5161), + [anon_sym_BSLASHGls] = ACTIONS(5161), + [anon_sym_BSLASHGLS] = ACTIONS(5161), + [anon_sym_BSLASHglspl] = ACTIONS(5161), + [anon_sym_BSLASHGlspl] = ACTIONS(5161), + [anon_sym_BSLASHGLSpl] = ACTIONS(5161), + [anon_sym_BSLASHglsdisp] = ACTIONS(5161), + [anon_sym_BSLASHglslink] = ACTIONS(5161), + [anon_sym_BSLASHglstext] = ACTIONS(5161), + [anon_sym_BSLASHGlstext] = ACTIONS(5161), + [anon_sym_BSLASHGLStext] = ACTIONS(5161), + [anon_sym_BSLASHglsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), + [anon_sym_BSLASHglsplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSplural] = ACTIONS(5161), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHglsname] = ACTIONS(5161), + [anon_sym_BSLASHGlsname] = ACTIONS(5161), + [anon_sym_BSLASHGLSname] = ACTIONS(5161), + [anon_sym_BSLASHglssymbol] = ACTIONS(5161), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), + [anon_sym_BSLASHglsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), + [anon_sym_BSLASHglsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), + [anon_sym_BSLASHglsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), + [anon_sym_BSLASHglsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), + [anon_sym_BSLASHglsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), + [anon_sym_BSLASHnewacronym] = ACTIONS(5161), + [anon_sym_BSLASHacrshort] = ACTIONS(5161), + [anon_sym_BSLASHAcrshort] = ACTIONS(5161), + [anon_sym_BSLASHACRshort] = ACTIONS(5161), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), + [anon_sym_BSLASHacrlong] = ACTIONS(5161), + [anon_sym_BSLASHAcrlong] = ACTIONS(5161), + [anon_sym_BSLASHACRlong] = ACTIONS(5161), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), + [anon_sym_BSLASHacrfull] = ACTIONS(5161), + [anon_sym_BSLASHAcrfull] = ACTIONS(5161), + [anon_sym_BSLASHACRfull] = ACTIONS(5161), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), + [anon_sym_BSLASHacs] = ACTIONS(5161), + [anon_sym_BSLASHAcs] = ACTIONS(5161), + [anon_sym_BSLASHacsp] = ACTIONS(5161), + [anon_sym_BSLASHAcsp] = ACTIONS(5161), + [anon_sym_BSLASHacl] = ACTIONS(5161), + [anon_sym_BSLASHAcl] = ACTIONS(5161), + [anon_sym_BSLASHaclp] = ACTIONS(5161), + [anon_sym_BSLASHAclp] = ACTIONS(5161), + [anon_sym_BSLASHacf] = ACTIONS(5161), + [anon_sym_BSLASHAcf] = ACTIONS(5161), + [anon_sym_BSLASHacfp] = ACTIONS(5161), + [anon_sym_BSLASHAcfp] = ACTIONS(5161), + [anon_sym_BSLASHac] = ACTIONS(5161), + [anon_sym_BSLASHAc] = ACTIONS(5161), + [anon_sym_BSLASHacp] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), + [anon_sym_BSLASHcolor] = ACTIONS(5161), + [anon_sym_BSLASHcolorbox] = ACTIONS(5161), + [anon_sym_BSLASHtextcolor] = ACTIONS(5161), + [anon_sym_BSLASHpagecolor] = ACTIONS(5161), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), + [anon_sym_BSLASHtext] = ACTIONS(5161), + [anon_sym_BSLASHintertext] = ACTIONS(5161), + [anon_sym_shortintertext] = ACTIONS(5161), + }, + [771] = { + [ts_builtin_sym_end] = ACTIONS(5163), + [sym_command_name] = ACTIONS(5165), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_BSLASHpart] = ACTIONS(5165), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddpart] = ACTIONS(5165), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5163), + [anon_sym_BSLASHchapter] = ACTIONS(5165), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddchap] = ACTIONS(5165), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsection] = ACTIONS(5165), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddsec] = ACTIONS(5165), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubsection] = ACTIONS(5165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5165), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHparagraph] = ACTIONS(5165), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5165), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5163), + [anon_sym_BSLASHitem] = ACTIONS(5165), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [sym_word] = ACTIONS(5165), + [sym_placeholder] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5165), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_CARET] = ACTIONS(5165), + [anon_sym__] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_COLON] = ACTIONS(5165), + [anon_sym_SQUOTE] = ACTIONS(5165), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), + [anon_sym_DOLLAR] = ACTIONS(5165), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), + [anon_sym_BSLASHbegin] = ACTIONS(5165), + [anon_sym_BSLASHusepackage] = ACTIONS(5165), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), + [anon_sym_BSLASHinclude] = ACTIONS(5165), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), + [anon_sym_BSLASHinput] = ACTIONS(5165), + [anon_sym_BSLASHsubfile] = ACTIONS(5165), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), + [anon_sym_BSLASHbibliography] = ACTIONS(5165), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), + [anon_sym_BSLASHincludesvg] = ACTIONS(5165), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5165), + [anon_sym_BSLASHcite] = ACTIONS(5165), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCite] = ACTIONS(5165), + [anon_sym_BSLASHnocite] = ACTIONS(5165), + [anon_sym_BSLASHcitet] = ACTIONS(5165), + [anon_sym_BSLASHcitep] = ACTIONS(5165), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteauthor] = ACTIONS(5165), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitetitle] = ACTIONS(5165), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteyear] = ACTIONS(5165), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitedate] = ACTIONS(5165), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteurl] = ACTIONS(5165), + [anon_sym_BSLASHfullcite] = ACTIONS(5165), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), + [anon_sym_BSLASHcitealt] = ACTIONS(5165), + [anon_sym_BSLASHcitealp] = ACTIONS(5165), + [anon_sym_BSLASHcitetext] = ACTIONS(5165), + [anon_sym_BSLASHparencite] = ACTIONS(5165), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHParencite] = ACTIONS(5165), + [anon_sym_BSLASHfootcite] = ACTIONS(5165), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), + [anon_sym_BSLASHtextcite] = ACTIONS(5165), + [anon_sym_BSLASHTextcite] = ACTIONS(5165), + [anon_sym_BSLASHsmartcite] = ACTIONS(5165), + [anon_sym_BSLASHSmartcite] = ACTIONS(5165), + [anon_sym_BSLASHsupercite] = ACTIONS(5165), + [anon_sym_BSLASHautocite] = ACTIONS(5165), + [anon_sym_BSLASHAutocite] = ACTIONS(5165), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHvolcite] = ACTIONS(5165), + [anon_sym_BSLASHVolcite] = ACTIONS(5165), + [anon_sym_BSLASHpvolcite] = ACTIONS(5165), + [anon_sym_BSLASHPvolcite] = ACTIONS(5165), + [anon_sym_BSLASHfvolcite] = ACTIONS(5165), + [anon_sym_BSLASHftvolcite] = ACTIONS(5165), + [anon_sym_BSLASHsvolcite] = ACTIONS(5165), + [anon_sym_BSLASHSvolcite] = ACTIONS(5165), + [anon_sym_BSLASHtvolcite] = ACTIONS(5165), + [anon_sym_BSLASHTvolcite] = ACTIONS(5165), + [anon_sym_BSLASHavolcite] = ACTIONS(5165), + [anon_sym_BSLASHAvolcite] = ACTIONS(5165), + [anon_sym_BSLASHnotecite] = ACTIONS(5165), + [anon_sym_BSLASHNotecite] = ACTIONS(5165), + [anon_sym_BSLASHpnotecite] = ACTIONS(5165), + [anon_sym_BSLASHPnotecite] = ACTIONS(5165), + [anon_sym_BSLASHfnotecite] = ACTIONS(5165), + [anon_sym_BSLASHlabel] = ACTIONS(5165), + [anon_sym_BSLASHref] = ACTIONS(5165), + [anon_sym_BSLASHeqref] = ACTIONS(5165), + [anon_sym_BSLASHvref] = ACTIONS(5165), + [anon_sym_BSLASHVref] = ACTIONS(5165), + [anon_sym_BSLASHautoref] = ACTIONS(5165), + [anon_sym_BSLASHpageref] = ACTIONS(5165), + [anon_sym_BSLASHcref] = ACTIONS(5165), + [anon_sym_BSLASHCref] = ACTIONS(5165), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnameCref] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHlabelcref] = ACTIONS(5165), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCrefrange] = ACTIONS(5165), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnewlabel] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), + [anon_sym_BSLASHdef] = ACTIONS(5165), + [anon_sym_BSLASHlet] = ACTIONS(5165), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), + [anon_sym_BSLASHgls] = ACTIONS(5165), + [anon_sym_BSLASHGls] = ACTIONS(5165), + [anon_sym_BSLASHGLS] = ACTIONS(5165), + [anon_sym_BSLASHglspl] = ACTIONS(5165), + [anon_sym_BSLASHGlspl] = ACTIONS(5165), + [anon_sym_BSLASHGLSpl] = ACTIONS(5165), + [anon_sym_BSLASHglsdisp] = ACTIONS(5165), + [anon_sym_BSLASHglslink] = ACTIONS(5165), + [anon_sym_BSLASHglstext] = ACTIONS(5165), + [anon_sym_BSLASHGlstext] = ACTIONS(5165), + [anon_sym_BSLASHGLStext] = ACTIONS(5165), + [anon_sym_BSLASHglsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), + [anon_sym_BSLASHglsplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSplural] = ACTIONS(5165), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHglsname] = ACTIONS(5165), + [anon_sym_BSLASHGlsname] = ACTIONS(5165), + [anon_sym_BSLASHGLSname] = ACTIONS(5165), + [anon_sym_BSLASHglssymbol] = ACTIONS(5165), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), + [anon_sym_BSLASHglsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), + [anon_sym_BSLASHglsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), + [anon_sym_BSLASHglsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), + [anon_sym_BSLASHglsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), + [anon_sym_BSLASHglsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), + [anon_sym_BSLASHnewacronym] = ACTIONS(5165), + [anon_sym_BSLASHacrshort] = ACTIONS(5165), + [anon_sym_BSLASHAcrshort] = ACTIONS(5165), + [anon_sym_BSLASHACRshort] = ACTIONS(5165), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), + [anon_sym_BSLASHacrlong] = ACTIONS(5165), + [anon_sym_BSLASHAcrlong] = ACTIONS(5165), + [anon_sym_BSLASHACRlong] = ACTIONS(5165), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), + [anon_sym_BSLASHacrfull] = ACTIONS(5165), + [anon_sym_BSLASHAcrfull] = ACTIONS(5165), + [anon_sym_BSLASHACRfull] = ACTIONS(5165), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), + [anon_sym_BSLASHacs] = ACTIONS(5165), + [anon_sym_BSLASHAcs] = ACTIONS(5165), + [anon_sym_BSLASHacsp] = ACTIONS(5165), + [anon_sym_BSLASHAcsp] = ACTIONS(5165), + [anon_sym_BSLASHacl] = ACTIONS(5165), + [anon_sym_BSLASHAcl] = ACTIONS(5165), + [anon_sym_BSLASHaclp] = ACTIONS(5165), + [anon_sym_BSLASHAclp] = ACTIONS(5165), + [anon_sym_BSLASHacf] = ACTIONS(5165), + [anon_sym_BSLASHAcf] = ACTIONS(5165), + [anon_sym_BSLASHacfp] = ACTIONS(5165), + [anon_sym_BSLASHAcfp] = ACTIONS(5165), + [anon_sym_BSLASHac] = ACTIONS(5165), + [anon_sym_BSLASHAc] = ACTIONS(5165), + [anon_sym_BSLASHacp] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), + [anon_sym_BSLASHcolor] = ACTIONS(5165), + [anon_sym_BSLASHcolorbox] = ACTIONS(5165), + [anon_sym_BSLASHtextcolor] = ACTIONS(5165), + [anon_sym_BSLASHpagecolor] = ACTIONS(5165), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), + [anon_sym_BSLASHtext] = ACTIONS(5165), + [anon_sym_BSLASHintertext] = ACTIONS(5165), + [anon_sym_shortintertext] = ACTIONS(5165), + }, + [772] = { + [ts_builtin_sym_end] = ACTIONS(5167), + [sym_command_name] = ACTIONS(5169), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_BSLASHpart] = ACTIONS(5169), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddpart] = ACTIONS(5169), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5167), + [anon_sym_BSLASHchapter] = ACTIONS(5169), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddchap] = ACTIONS(5169), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsection] = ACTIONS(5169), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddsec] = ACTIONS(5169), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubsection] = ACTIONS(5169), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHparagraph] = ACTIONS(5169), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5169), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5167), + [anon_sym_BSLASHitem] = ACTIONS(5169), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5167), + [sym_word] = ACTIONS(5169), + [sym_placeholder] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_CARET] = ACTIONS(5169), + [anon_sym__] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_PIPE] = ACTIONS(5169), + [anon_sym_COLON] = ACTIONS(5169), + [anon_sym_SQUOTE] = ACTIONS(5169), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), + [anon_sym_DOLLAR] = ACTIONS(5169), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), + [anon_sym_BSLASHbegin] = ACTIONS(5169), + [anon_sym_BSLASHusepackage] = ACTIONS(5169), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), + [anon_sym_BSLASHinclude] = ACTIONS(5169), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), + [anon_sym_BSLASHinput] = ACTIONS(5169), + [anon_sym_BSLASHsubfile] = ACTIONS(5169), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), + [anon_sym_BSLASHbibliography] = ACTIONS(5169), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), + [anon_sym_BSLASHincludesvg] = ACTIONS(5169), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), + [anon_sym_BSLASHimport] = ACTIONS(5169), + [anon_sym_BSLASHsubimport] = ACTIONS(5169), + [anon_sym_BSLASHinputfrom] = ACTIONS(5169), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), + [anon_sym_BSLASHincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHcaption] = ACTIONS(5169), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5169), + [anon_sym_BSLASHref] = ACTIONS(5169), + [anon_sym_BSLASHeqref] = ACTIONS(5169), + [anon_sym_BSLASHvref] = ACTIONS(5169), + [anon_sym_BSLASHVref] = ACTIONS(5169), + [anon_sym_BSLASHautoref] = ACTIONS(5169), + [anon_sym_BSLASHpageref] = ACTIONS(5169), + [anon_sym_BSLASHcref] = ACTIONS(5169), + [anon_sym_BSLASHCref] = ACTIONS(5169), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnameCref] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHlabelcref] = ACTIONS(5169), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCrefrange] = ACTIONS(5169), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnewlabel] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), + [anon_sym_BSLASHdef] = ACTIONS(5169), + [anon_sym_BSLASHlet] = ACTIONS(5169), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), + [anon_sym_BSLASHgls] = ACTIONS(5169), + [anon_sym_BSLASHGls] = ACTIONS(5169), + [anon_sym_BSLASHGLS] = ACTIONS(5169), + [anon_sym_BSLASHglspl] = ACTIONS(5169), + [anon_sym_BSLASHGlspl] = ACTIONS(5169), + [anon_sym_BSLASHGLSpl] = ACTIONS(5169), + [anon_sym_BSLASHglsdisp] = ACTIONS(5169), + [anon_sym_BSLASHglslink] = ACTIONS(5169), + [anon_sym_BSLASHglstext] = ACTIONS(5169), + [anon_sym_BSLASHGlstext] = ACTIONS(5169), + [anon_sym_BSLASHGLStext] = ACTIONS(5169), + [anon_sym_BSLASHglsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), + [anon_sym_BSLASHglsplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSplural] = ACTIONS(5169), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHglsname] = ACTIONS(5169), + [anon_sym_BSLASHGlsname] = ACTIONS(5169), + [anon_sym_BSLASHGLSname] = ACTIONS(5169), + [anon_sym_BSLASHglssymbol] = ACTIONS(5169), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), + [anon_sym_BSLASHglsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), + [anon_sym_BSLASHglsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), + [anon_sym_BSLASHglsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), + [anon_sym_BSLASHglsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), + [anon_sym_BSLASHglsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), + [anon_sym_BSLASHnewacronym] = ACTIONS(5169), + [anon_sym_BSLASHacrshort] = ACTIONS(5169), + [anon_sym_BSLASHAcrshort] = ACTIONS(5169), + [anon_sym_BSLASHACRshort] = ACTIONS(5169), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), + [anon_sym_BSLASHacrlong] = ACTIONS(5169), + [anon_sym_BSLASHAcrlong] = ACTIONS(5169), + [anon_sym_BSLASHACRlong] = ACTIONS(5169), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), + [anon_sym_BSLASHacrfull] = ACTIONS(5169), + [anon_sym_BSLASHAcrfull] = ACTIONS(5169), + [anon_sym_BSLASHACRfull] = ACTIONS(5169), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), + [anon_sym_BSLASHacs] = ACTIONS(5169), + [anon_sym_BSLASHAcs] = ACTIONS(5169), + [anon_sym_BSLASHacsp] = ACTIONS(5169), + [anon_sym_BSLASHAcsp] = ACTIONS(5169), + [anon_sym_BSLASHacl] = ACTIONS(5169), + [anon_sym_BSLASHAcl] = ACTIONS(5169), + [anon_sym_BSLASHaclp] = ACTIONS(5169), + [anon_sym_BSLASHAclp] = ACTIONS(5169), + [anon_sym_BSLASHacf] = ACTIONS(5169), + [anon_sym_BSLASHAcf] = ACTIONS(5169), + [anon_sym_BSLASHacfp] = ACTIONS(5169), + [anon_sym_BSLASHAcfp] = ACTIONS(5169), + [anon_sym_BSLASHac] = ACTIONS(5169), + [anon_sym_BSLASHAc] = ACTIONS(5169), + [anon_sym_BSLASHacp] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), + [anon_sym_BSLASHcolor] = ACTIONS(5169), + [anon_sym_BSLASHcolorbox] = ACTIONS(5169), + [anon_sym_BSLASHtextcolor] = ACTIONS(5169), + [anon_sym_BSLASHpagecolor] = ACTIONS(5169), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), + [anon_sym_BSLASHtext] = ACTIONS(5169), + [anon_sym_BSLASHintertext] = ACTIONS(5169), + [anon_sym_shortintertext] = ACTIONS(5169), + }, + [773] = { + [sym_brack_group_text] = STATE(839), + [sym_command_name] = ACTIONS(4879), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4877), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_COMMA] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_BSLASHpart] = ACTIONS(4879), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddpart] = ACTIONS(4879), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4877), + [anon_sym_BSLASHchapter] = ACTIONS(4879), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddchap] = ACTIONS(4879), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsection] = ACTIONS(4879), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddsec] = ACTIONS(4879), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubsection] = ACTIONS(4879), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4879), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHparagraph] = ACTIONS(4879), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4879), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4877), + [anon_sym_BSLASHitem] = ACTIONS(4879), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4877), + [sym_word] = ACTIONS(4879), + [sym_placeholder] = ACTIONS(4877), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4879), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_CARET] = ACTIONS(4879), + [anon_sym__] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_COLON] = ACTIONS(4879), + [anon_sym_SQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(4879), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), + [anon_sym_BSLASHbegin] = ACTIONS(4879), + [anon_sym_BSLASHusepackage] = ACTIONS(4879), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), + [anon_sym_BSLASHinclude] = ACTIONS(4879), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), + [anon_sym_BSLASHinput] = ACTIONS(4879), + [anon_sym_BSLASHsubfile] = ACTIONS(4879), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), + [anon_sym_BSLASHbibliography] = ACTIONS(4879), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), + [anon_sym_BSLASHincludesvg] = ACTIONS(4879), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), + [anon_sym_BSLASHimport] = ACTIONS(4879), + [anon_sym_BSLASHsubimport] = ACTIONS(4879), + [anon_sym_BSLASHinputfrom] = ACTIONS(4879), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), + [anon_sym_BSLASHincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHcaption] = ACTIONS(4879), + [anon_sym_BSLASHcite] = ACTIONS(4879), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCite] = ACTIONS(4879), + [anon_sym_BSLASHnocite] = ACTIONS(4879), + [anon_sym_BSLASHcitet] = ACTIONS(4879), + [anon_sym_BSLASHcitep] = ACTIONS(4879), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteauthor] = ACTIONS(4879), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitetitle] = ACTIONS(4879), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteyear] = ACTIONS(4879), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitedate] = ACTIONS(4879), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteurl] = ACTIONS(4879), + [anon_sym_BSLASHfullcite] = ACTIONS(4879), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), + [anon_sym_BSLASHcitealt] = ACTIONS(4879), + [anon_sym_BSLASHcitealp] = ACTIONS(4879), + [anon_sym_BSLASHcitetext] = ACTIONS(4879), + [anon_sym_BSLASHparencite] = ACTIONS(4879), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHParencite] = ACTIONS(4879), + [anon_sym_BSLASHfootcite] = ACTIONS(4879), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), + [anon_sym_BSLASHtextcite] = ACTIONS(4879), + [anon_sym_BSLASHTextcite] = ACTIONS(4879), + [anon_sym_BSLASHsmartcite] = ACTIONS(4879), + [anon_sym_BSLASHSmartcite] = ACTIONS(4879), + [anon_sym_BSLASHsupercite] = ACTIONS(4879), + [anon_sym_BSLASHautocite] = ACTIONS(4879), + [anon_sym_BSLASHAutocite] = ACTIONS(4879), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHvolcite] = ACTIONS(4879), + [anon_sym_BSLASHVolcite] = ACTIONS(4879), + [anon_sym_BSLASHpvolcite] = ACTIONS(4879), + [anon_sym_BSLASHPvolcite] = ACTIONS(4879), + [anon_sym_BSLASHfvolcite] = ACTIONS(4879), + [anon_sym_BSLASHftvolcite] = ACTIONS(4879), + [anon_sym_BSLASHsvolcite] = ACTIONS(4879), + [anon_sym_BSLASHSvolcite] = ACTIONS(4879), + [anon_sym_BSLASHtvolcite] = ACTIONS(4879), + [anon_sym_BSLASHTvolcite] = ACTIONS(4879), + [anon_sym_BSLASHavolcite] = ACTIONS(4879), + [anon_sym_BSLASHAvolcite] = ACTIONS(4879), + [anon_sym_BSLASHnotecite] = ACTIONS(4879), + [anon_sym_BSLASHNotecite] = ACTIONS(4879), + [anon_sym_BSLASHpnotecite] = ACTIONS(4879), + [anon_sym_BSLASHPnotecite] = ACTIONS(4879), + [anon_sym_BSLASHfnotecite] = ACTIONS(4879), + [anon_sym_BSLASHlabel] = ACTIONS(4879), + [anon_sym_BSLASHref] = ACTIONS(4879), + [anon_sym_BSLASHeqref] = ACTIONS(4879), + [anon_sym_BSLASHvref] = ACTIONS(4879), + [anon_sym_BSLASHVref] = ACTIONS(4879), + [anon_sym_BSLASHautoref] = ACTIONS(4879), + [anon_sym_BSLASHpageref] = ACTIONS(4879), + [anon_sym_BSLASHcref] = ACTIONS(4879), + [anon_sym_BSLASHCref] = ACTIONS(4879), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnameCref] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHlabelcref] = ACTIONS(4879), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCrefrange] = ACTIONS(4879), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnewlabel] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), + [anon_sym_BSLASHdef] = ACTIONS(4879), + [anon_sym_BSLASHlet] = ACTIONS(4879), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), + [anon_sym_BSLASHgls] = ACTIONS(4879), + [anon_sym_BSLASHGls] = ACTIONS(4879), + [anon_sym_BSLASHGLS] = ACTIONS(4879), + [anon_sym_BSLASHglspl] = ACTIONS(4879), + [anon_sym_BSLASHGlspl] = ACTIONS(4879), + [anon_sym_BSLASHGLSpl] = ACTIONS(4879), + [anon_sym_BSLASHglsdisp] = ACTIONS(4879), + [anon_sym_BSLASHglslink] = ACTIONS(4879), + [anon_sym_BSLASHglstext] = ACTIONS(4879), + [anon_sym_BSLASHGlstext] = ACTIONS(4879), + [anon_sym_BSLASHGLStext] = ACTIONS(4879), + [anon_sym_BSLASHglsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), + [anon_sym_BSLASHglsplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSplural] = ACTIONS(4879), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHglsname] = ACTIONS(4879), + [anon_sym_BSLASHGlsname] = ACTIONS(4879), + [anon_sym_BSLASHGLSname] = ACTIONS(4879), + [anon_sym_BSLASHglssymbol] = ACTIONS(4879), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), + [anon_sym_BSLASHglsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), + [anon_sym_BSLASHglsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), + [anon_sym_BSLASHglsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), + [anon_sym_BSLASHglsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), + [anon_sym_BSLASHglsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), + [anon_sym_BSLASHnewacronym] = ACTIONS(4879), + [anon_sym_BSLASHacrshort] = ACTIONS(4879), + [anon_sym_BSLASHAcrshort] = ACTIONS(4879), + [anon_sym_BSLASHACRshort] = ACTIONS(4879), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), + [anon_sym_BSLASHacrlong] = ACTIONS(4879), + [anon_sym_BSLASHAcrlong] = ACTIONS(4879), + [anon_sym_BSLASHACRlong] = ACTIONS(4879), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), + [anon_sym_BSLASHacrfull] = ACTIONS(4879), + [anon_sym_BSLASHAcrfull] = ACTIONS(4879), + [anon_sym_BSLASHACRfull] = ACTIONS(4879), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), + [anon_sym_BSLASHacs] = ACTIONS(4879), + [anon_sym_BSLASHAcs] = ACTIONS(4879), + [anon_sym_BSLASHacsp] = ACTIONS(4879), + [anon_sym_BSLASHAcsp] = ACTIONS(4879), + [anon_sym_BSLASHacl] = ACTIONS(4879), + [anon_sym_BSLASHAcl] = ACTIONS(4879), + [anon_sym_BSLASHaclp] = ACTIONS(4879), + [anon_sym_BSLASHAclp] = ACTIONS(4879), + [anon_sym_BSLASHacf] = ACTIONS(4879), + [anon_sym_BSLASHAcf] = ACTIONS(4879), + [anon_sym_BSLASHacfp] = ACTIONS(4879), + [anon_sym_BSLASHAcfp] = ACTIONS(4879), + [anon_sym_BSLASHac] = ACTIONS(4879), + [anon_sym_BSLASHAc] = ACTIONS(4879), + [anon_sym_BSLASHacp] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), + [anon_sym_BSLASHcolor] = ACTIONS(4879), + [anon_sym_BSLASHcolorbox] = ACTIONS(4879), + [anon_sym_BSLASHtextcolor] = ACTIONS(4879), + [anon_sym_BSLASHpagecolor] = ACTIONS(4879), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), + [anon_sym_BSLASHtext] = ACTIONS(4879), + [anon_sym_BSLASHintertext] = ACTIONS(4879), + [anon_sym_shortintertext] = ACTIONS(4879), + }, + [774] = { + [sym_command_name] = ACTIONS(4865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4865), + [anon_sym_BSLASHfi] = ACTIONS(5173), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_RBRACK] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_BSLASHpart] = ACTIONS(4865), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddpart] = ACTIONS(4865), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4863), + [anon_sym_BSLASHchapter] = ACTIONS(4865), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddchap] = ACTIONS(4865), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsection] = ACTIONS(4865), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHaddsec] = ACTIONS(4865), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubsection] = ACTIONS(4865), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4865), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4863), + [anon_sym_BSLASHparagraph] = ACTIONS(4865), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4863), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4865), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4863), + [anon_sym_BSLASHitem] = ACTIONS(4865), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4863), + [sym_word] = ACTIONS(4865), + [sym_placeholder] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_CARET] = ACTIONS(4865), + [anon_sym__] = ACTIONS(4865), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_COLON] = ACTIONS(4865), + [anon_sym_SQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), + [anon_sym_BSLASHbegin] = ACTIONS(4865), + [anon_sym_BSLASHusepackage] = ACTIONS(4865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), + [anon_sym_BSLASHinclude] = ACTIONS(4865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), + [anon_sym_BSLASHinput] = ACTIONS(4865), + [anon_sym_BSLASHsubfile] = ACTIONS(4865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), + [anon_sym_BSLASHbibliography] = ACTIONS(4865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), + [anon_sym_BSLASHincludesvg] = ACTIONS(4865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), + [anon_sym_BSLASHimport] = ACTIONS(4865), + [anon_sym_BSLASHsubimport] = ACTIONS(4865), + [anon_sym_BSLASHinputfrom] = ACTIONS(4865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), + [anon_sym_BSLASHincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHcaption] = ACTIONS(4865), + [anon_sym_BSLASHcite] = ACTIONS(4865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCite] = ACTIONS(4865), + [anon_sym_BSLASHnocite] = ACTIONS(4865), + [anon_sym_BSLASHcitet] = ACTIONS(4865), + [anon_sym_BSLASHcitep] = ACTIONS(4865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteauthor] = ACTIONS(4865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitetitle] = ACTIONS(4865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteyear] = ACTIONS(4865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitedate] = ACTIONS(4865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteurl] = ACTIONS(4865), + [anon_sym_BSLASHfullcite] = ACTIONS(4865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), + [anon_sym_BSLASHcitealt] = ACTIONS(4865), + [anon_sym_BSLASHcitealp] = ACTIONS(4865), + [anon_sym_BSLASHcitetext] = ACTIONS(4865), + [anon_sym_BSLASHparencite] = ACTIONS(4865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHParencite] = ACTIONS(4865), + [anon_sym_BSLASHfootcite] = ACTIONS(4865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), + [anon_sym_BSLASHtextcite] = ACTIONS(4865), + [anon_sym_BSLASHTextcite] = ACTIONS(4865), + [anon_sym_BSLASHsmartcite] = ACTIONS(4865), + [anon_sym_BSLASHSmartcite] = ACTIONS(4865), + [anon_sym_BSLASHsupercite] = ACTIONS(4865), + [anon_sym_BSLASHautocite] = ACTIONS(4865), + [anon_sym_BSLASHAutocite] = ACTIONS(4865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHvolcite] = ACTIONS(4865), + [anon_sym_BSLASHVolcite] = ACTIONS(4865), + [anon_sym_BSLASHpvolcite] = ACTIONS(4865), + [anon_sym_BSLASHPvolcite] = ACTIONS(4865), + [anon_sym_BSLASHfvolcite] = ACTIONS(4865), + [anon_sym_BSLASHftvolcite] = ACTIONS(4865), + [anon_sym_BSLASHsvolcite] = ACTIONS(4865), + [anon_sym_BSLASHSvolcite] = ACTIONS(4865), + [anon_sym_BSLASHtvolcite] = ACTIONS(4865), + [anon_sym_BSLASHTvolcite] = ACTIONS(4865), + [anon_sym_BSLASHavolcite] = ACTIONS(4865), + [anon_sym_BSLASHAvolcite] = ACTIONS(4865), + [anon_sym_BSLASHnotecite] = ACTIONS(4865), + [anon_sym_BSLASHNotecite] = ACTIONS(4865), + [anon_sym_BSLASHpnotecite] = ACTIONS(4865), + [anon_sym_BSLASHPnotecite] = ACTIONS(4865), + [anon_sym_BSLASHfnotecite] = ACTIONS(4865), + [anon_sym_BSLASHlabel] = ACTIONS(4865), + [anon_sym_BSLASHref] = ACTIONS(4865), + [anon_sym_BSLASHeqref] = ACTIONS(4865), + [anon_sym_BSLASHvref] = ACTIONS(4865), + [anon_sym_BSLASHVref] = ACTIONS(4865), + [anon_sym_BSLASHautoref] = ACTIONS(4865), + [anon_sym_BSLASHpageref] = ACTIONS(4865), + [anon_sym_BSLASHcref] = ACTIONS(4865), + [anon_sym_BSLASHCref] = ACTIONS(4865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnameCref] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHlabelcref] = ACTIONS(4865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCrefrange] = ACTIONS(4865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnewlabel] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), + [anon_sym_BSLASHdef] = ACTIONS(4865), + [anon_sym_BSLASHlet] = ACTIONS(4865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), + [anon_sym_BSLASHgls] = ACTIONS(4865), + [anon_sym_BSLASHGls] = ACTIONS(4865), + [anon_sym_BSLASHGLS] = ACTIONS(4865), + [anon_sym_BSLASHglspl] = ACTIONS(4865), + [anon_sym_BSLASHGlspl] = ACTIONS(4865), + [anon_sym_BSLASHGLSpl] = ACTIONS(4865), + [anon_sym_BSLASHglsdisp] = ACTIONS(4865), + [anon_sym_BSLASHglslink] = ACTIONS(4865), + [anon_sym_BSLASHglstext] = ACTIONS(4865), + [anon_sym_BSLASHGlstext] = ACTIONS(4865), + [anon_sym_BSLASHGLStext] = ACTIONS(4865), + [anon_sym_BSLASHglsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), + [anon_sym_BSLASHglsplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSplural] = ACTIONS(4865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHglsname] = ACTIONS(4865), + [anon_sym_BSLASHGlsname] = ACTIONS(4865), + [anon_sym_BSLASHGLSname] = ACTIONS(4865), + [anon_sym_BSLASHglssymbol] = ACTIONS(4865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), + [anon_sym_BSLASHglsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), + [anon_sym_BSLASHglsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), + [anon_sym_BSLASHglsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), + [anon_sym_BSLASHglsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), + [anon_sym_BSLASHglsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), + [anon_sym_BSLASHnewacronym] = ACTIONS(4865), + [anon_sym_BSLASHacrshort] = ACTIONS(4865), + [anon_sym_BSLASHAcrshort] = ACTIONS(4865), + [anon_sym_BSLASHACRshort] = ACTIONS(4865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), + [anon_sym_BSLASHacrlong] = ACTIONS(4865), + [anon_sym_BSLASHAcrlong] = ACTIONS(4865), + [anon_sym_BSLASHACRlong] = ACTIONS(4865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), + [anon_sym_BSLASHacrfull] = ACTIONS(4865), + [anon_sym_BSLASHAcrfull] = ACTIONS(4865), + [anon_sym_BSLASHACRfull] = ACTIONS(4865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), + [anon_sym_BSLASHacs] = ACTIONS(4865), + [anon_sym_BSLASHAcs] = ACTIONS(4865), + [anon_sym_BSLASHacsp] = ACTIONS(4865), + [anon_sym_BSLASHAcsp] = ACTIONS(4865), + [anon_sym_BSLASHacl] = ACTIONS(4865), + [anon_sym_BSLASHAcl] = ACTIONS(4865), + [anon_sym_BSLASHaclp] = ACTIONS(4865), + [anon_sym_BSLASHAclp] = ACTIONS(4865), + [anon_sym_BSLASHacf] = ACTIONS(4865), + [anon_sym_BSLASHAcf] = ACTIONS(4865), + [anon_sym_BSLASHacfp] = ACTIONS(4865), + [anon_sym_BSLASHAcfp] = ACTIONS(4865), + [anon_sym_BSLASHac] = ACTIONS(4865), + [anon_sym_BSLASHAc] = ACTIONS(4865), + [anon_sym_BSLASHacp] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), + [anon_sym_BSLASHcolor] = ACTIONS(4865), + [anon_sym_BSLASHcolorbox] = ACTIONS(4865), + [anon_sym_BSLASHtextcolor] = ACTIONS(4865), + [anon_sym_BSLASHpagecolor] = ACTIONS(4865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), + [anon_sym_BSLASHtext] = ACTIONS(4865), + [anon_sym_BSLASHintertext] = ACTIONS(4865), + [anon_sym_shortintertext] = ACTIONS(4865), + }, + [775] = { + [ts_builtin_sym_end] = ACTIONS(5175), + [sym_command_name] = ACTIONS(5177), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5175), + [anon_sym_RPAREN] = ACTIONS(5175), + [anon_sym_LBRACK] = ACTIONS(5175), + [anon_sym_RBRACK] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_BSLASHpart] = ACTIONS(5177), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddpart] = ACTIONS(5177), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5175), + [anon_sym_BSLASHchapter] = ACTIONS(5177), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddchap] = ACTIONS(5177), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsection] = ACTIONS(5177), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddsec] = ACTIONS(5177), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubsection] = ACTIONS(5177), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5177), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHparagraph] = ACTIONS(5177), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5175), + [anon_sym_BSLASHitem] = ACTIONS(5177), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5175), + [anon_sym_RBRACE] = ACTIONS(5175), + [sym_word] = ACTIONS(5177), + [sym_placeholder] = ACTIONS(5175), + [anon_sym_PLUS] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5177), + [anon_sym_SLASH] = ACTIONS(5177), + [anon_sym_CARET] = ACTIONS(5177), + [anon_sym__] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5177), + [anon_sym_GT] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5177), + [anon_sym_PIPE] = ACTIONS(5177), + [anon_sym_COLON] = ACTIONS(5177), + [anon_sym_SQUOTE] = ACTIONS(5177), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), + [anon_sym_DOLLAR] = ACTIONS(5177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), + [anon_sym_BSLASHbegin] = ACTIONS(5177), + [anon_sym_BSLASHusepackage] = ACTIONS(5177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), + [anon_sym_BSLASHinclude] = ACTIONS(5177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), + [anon_sym_BSLASHinput] = ACTIONS(5177), + [anon_sym_BSLASHsubfile] = ACTIONS(5177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), + [anon_sym_BSLASHbibliography] = ACTIONS(5177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), + [anon_sym_BSLASHincludesvg] = ACTIONS(5177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), + [anon_sym_BSLASHimport] = ACTIONS(5177), + [anon_sym_BSLASHsubimport] = ACTIONS(5177), + [anon_sym_BSLASHinputfrom] = ACTIONS(5177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), + [anon_sym_BSLASHincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHcaption] = ACTIONS(5177), + [anon_sym_BSLASHcite] = ACTIONS(5177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCite] = ACTIONS(5177), + [anon_sym_BSLASHnocite] = ACTIONS(5177), + [anon_sym_BSLASHcitet] = ACTIONS(5177), + [anon_sym_BSLASHcitep] = ACTIONS(5177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteauthor] = ACTIONS(5177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitetitle] = ACTIONS(5177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteyear] = ACTIONS(5177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitedate] = ACTIONS(5177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteurl] = ACTIONS(5177), + [anon_sym_BSLASHfullcite] = ACTIONS(5177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), + [anon_sym_BSLASHcitealt] = ACTIONS(5177), + [anon_sym_BSLASHcitealp] = ACTIONS(5177), + [anon_sym_BSLASHcitetext] = ACTIONS(5177), + [anon_sym_BSLASHparencite] = ACTIONS(5177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHParencite] = ACTIONS(5177), + [anon_sym_BSLASHfootcite] = ACTIONS(5177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), + [anon_sym_BSLASHtextcite] = ACTIONS(5177), + [anon_sym_BSLASHTextcite] = ACTIONS(5177), + [anon_sym_BSLASHsmartcite] = ACTIONS(5177), + [anon_sym_BSLASHSmartcite] = ACTIONS(5177), + [anon_sym_BSLASHsupercite] = ACTIONS(5177), + [anon_sym_BSLASHautocite] = ACTIONS(5177), + [anon_sym_BSLASHAutocite] = ACTIONS(5177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHvolcite] = ACTIONS(5177), + [anon_sym_BSLASHVolcite] = ACTIONS(5177), + [anon_sym_BSLASHpvolcite] = ACTIONS(5177), + [anon_sym_BSLASHPvolcite] = ACTIONS(5177), + [anon_sym_BSLASHfvolcite] = ACTIONS(5177), + [anon_sym_BSLASHftvolcite] = ACTIONS(5177), + [anon_sym_BSLASHsvolcite] = ACTIONS(5177), + [anon_sym_BSLASHSvolcite] = ACTIONS(5177), + [anon_sym_BSLASHtvolcite] = ACTIONS(5177), + [anon_sym_BSLASHTvolcite] = ACTIONS(5177), + [anon_sym_BSLASHavolcite] = ACTIONS(5177), + [anon_sym_BSLASHAvolcite] = ACTIONS(5177), + [anon_sym_BSLASHnotecite] = ACTIONS(5177), + [anon_sym_BSLASHNotecite] = ACTIONS(5177), + [anon_sym_BSLASHpnotecite] = ACTIONS(5177), + [anon_sym_BSLASHPnotecite] = ACTIONS(5177), + [anon_sym_BSLASHfnotecite] = ACTIONS(5177), + [anon_sym_BSLASHlabel] = ACTIONS(5177), + [anon_sym_BSLASHref] = ACTIONS(5177), + [anon_sym_BSLASHeqref] = ACTIONS(5177), + [anon_sym_BSLASHvref] = ACTIONS(5177), + [anon_sym_BSLASHVref] = ACTIONS(5177), + [anon_sym_BSLASHautoref] = ACTIONS(5177), + [anon_sym_BSLASHpageref] = ACTIONS(5177), + [anon_sym_BSLASHcref] = ACTIONS(5177), + [anon_sym_BSLASHCref] = ACTIONS(5177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnameCref] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHlabelcref] = ACTIONS(5177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCrefrange] = ACTIONS(5177), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnewlabel] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), + [anon_sym_BSLASHdef] = ACTIONS(5177), + [anon_sym_BSLASHlet] = ACTIONS(5177), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), + [anon_sym_BSLASHgls] = ACTIONS(5177), + [anon_sym_BSLASHGls] = ACTIONS(5177), + [anon_sym_BSLASHGLS] = ACTIONS(5177), + [anon_sym_BSLASHglspl] = ACTIONS(5177), + [anon_sym_BSLASHGlspl] = ACTIONS(5177), + [anon_sym_BSLASHGLSpl] = ACTIONS(5177), + [anon_sym_BSLASHglsdisp] = ACTIONS(5177), + [anon_sym_BSLASHglslink] = ACTIONS(5177), + [anon_sym_BSLASHglstext] = ACTIONS(5177), + [anon_sym_BSLASHGlstext] = ACTIONS(5177), + [anon_sym_BSLASHGLStext] = ACTIONS(5177), + [anon_sym_BSLASHglsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), + [anon_sym_BSLASHglsplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSplural] = ACTIONS(5177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHglsname] = ACTIONS(5177), + [anon_sym_BSLASHGlsname] = ACTIONS(5177), + [anon_sym_BSLASHGLSname] = ACTIONS(5177), + [anon_sym_BSLASHglssymbol] = ACTIONS(5177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), + [anon_sym_BSLASHglsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), + [anon_sym_BSLASHglsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), + [anon_sym_BSLASHglsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), + [anon_sym_BSLASHglsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), + [anon_sym_BSLASHglsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), + [anon_sym_BSLASHnewacronym] = ACTIONS(5177), + [anon_sym_BSLASHacrshort] = ACTIONS(5177), + [anon_sym_BSLASHAcrshort] = ACTIONS(5177), + [anon_sym_BSLASHACRshort] = ACTIONS(5177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), + [anon_sym_BSLASHacrlong] = ACTIONS(5177), + [anon_sym_BSLASHAcrlong] = ACTIONS(5177), + [anon_sym_BSLASHACRlong] = ACTIONS(5177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), + [anon_sym_BSLASHacrfull] = ACTIONS(5177), + [anon_sym_BSLASHAcrfull] = ACTIONS(5177), + [anon_sym_BSLASHACRfull] = ACTIONS(5177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), + [anon_sym_BSLASHacs] = ACTIONS(5177), + [anon_sym_BSLASHAcs] = ACTIONS(5177), + [anon_sym_BSLASHacsp] = ACTIONS(5177), + [anon_sym_BSLASHAcsp] = ACTIONS(5177), + [anon_sym_BSLASHacl] = ACTIONS(5177), + [anon_sym_BSLASHAcl] = ACTIONS(5177), + [anon_sym_BSLASHaclp] = ACTIONS(5177), + [anon_sym_BSLASHAclp] = ACTIONS(5177), + [anon_sym_BSLASHacf] = ACTIONS(5177), + [anon_sym_BSLASHAcf] = ACTIONS(5177), + [anon_sym_BSLASHacfp] = ACTIONS(5177), + [anon_sym_BSLASHAcfp] = ACTIONS(5177), + [anon_sym_BSLASHac] = ACTIONS(5177), + [anon_sym_BSLASHAc] = ACTIONS(5177), + [anon_sym_BSLASHacp] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), + [anon_sym_BSLASHcolor] = ACTIONS(5177), + [anon_sym_BSLASHcolorbox] = ACTIONS(5177), + [anon_sym_BSLASHtextcolor] = ACTIONS(5177), + [anon_sym_BSLASHpagecolor] = ACTIONS(5177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), + [anon_sym_BSLASHtext] = ACTIONS(5177), + [anon_sym_BSLASHintertext] = ACTIONS(5177), + [anon_sym_shortintertext] = ACTIONS(5177), + }, + [776] = { + [ts_builtin_sym_end] = ACTIONS(5179), + [sym_command_name] = ACTIONS(5181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5179), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_RBRACK] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_BSLASHpart] = ACTIONS(5181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddpart] = ACTIONS(5181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5179), + [anon_sym_BSLASHchapter] = ACTIONS(5181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddchap] = ACTIONS(5181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsection] = ACTIONS(5181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddsec] = ACTIONS(5181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubsection] = ACTIONS(5181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHparagraph] = ACTIONS(5181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5179), + [anon_sym_BSLASHitem] = ACTIONS(5181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5179), + [anon_sym_RBRACE] = ACTIONS(5179), + [sym_word] = ACTIONS(5181), + [sym_placeholder] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5181), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_CARET] = ACTIONS(5181), + [anon_sym__] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_COLON] = ACTIONS(5181), + [anon_sym_SQUOTE] = ACTIONS(5181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), + [anon_sym_DOLLAR] = ACTIONS(5181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), + [anon_sym_BSLASHbegin] = ACTIONS(5181), + [anon_sym_BSLASHusepackage] = ACTIONS(5181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), + [anon_sym_BSLASHinclude] = ACTIONS(5181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), + [anon_sym_BSLASHinput] = ACTIONS(5181), + [anon_sym_BSLASHsubfile] = ACTIONS(5181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), + [anon_sym_BSLASHbibliography] = ACTIONS(5181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), + [anon_sym_BSLASHincludesvg] = ACTIONS(5181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), + [anon_sym_BSLASHimport] = ACTIONS(5181), + [anon_sym_BSLASHsubimport] = ACTIONS(5181), + [anon_sym_BSLASHinputfrom] = ACTIONS(5181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), + [anon_sym_BSLASHincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHcaption] = ACTIONS(5181), + [anon_sym_BSLASHcite] = ACTIONS(5181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCite] = ACTIONS(5181), + [anon_sym_BSLASHnocite] = ACTIONS(5181), + [anon_sym_BSLASHcitet] = ACTIONS(5181), + [anon_sym_BSLASHcitep] = ACTIONS(5181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteauthor] = ACTIONS(5181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitetitle] = ACTIONS(5181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteyear] = ACTIONS(5181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitedate] = ACTIONS(5181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteurl] = ACTIONS(5181), + [anon_sym_BSLASHfullcite] = ACTIONS(5181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), + [anon_sym_BSLASHcitealt] = ACTIONS(5181), + [anon_sym_BSLASHcitealp] = ACTIONS(5181), + [anon_sym_BSLASHcitetext] = ACTIONS(5181), + [anon_sym_BSLASHparencite] = ACTIONS(5181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHParencite] = ACTIONS(5181), + [anon_sym_BSLASHfootcite] = ACTIONS(5181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), + [anon_sym_BSLASHtextcite] = ACTIONS(5181), + [anon_sym_BSLASHTextcite] = ACTIONS(5181), + [anon_sym_BSLASHsmartcite] = ACTIONS(5181), + [anon_sym_BSLASHSmartcite] = ACTIONS(5181), + [anon_sym_BSLASHsupercite] = ACTIONS(5181), + [anon_sym_BSLASHautocite] = ACTIONS(5181), + [anon_sym_BSLASHAutocite] = ACTIONS(5181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHvolcite] = ACTIONS(5181), + [anon_sym_BSLASHVolcite] = ACTIONS(5181), + [anon_sym_BSLASHpvolcite] = ACTIONS(5181), + [anon_sym_BSLASHPvolcite] = ACTIONS(5181), + [anon_sym_BSLASHfvolcite] = ACTIONS(5181), + [anon_sym_BSLASHftvolcite] = ACTIONS(5181), + [anon_sym_BSLASHsvolcite] = ACTIONS(5181), + [anon_sym_BSLASHSvolcite] = ACTIONS(5181), + [anon_sym_BSLASHtvolcite] = ACTIONS(5181), + [anon_sym_BSLASHTvolcite] = ACTIONS(5181), + [anon_sym_BSLASHavolcite] = ACTIONS(5181), + [anon_sym_BSLASHAvolcite] = ACTIONS(5181), + [anon_sym_BSLASHnotecite] = ACTIONS(5181), + [anon_sym_BSLASHNotecite] = ACTIONS(5181), + [anon_sym_BSLASHpnotecite] = ACTIONS(5181), + [anon_sym_BSLASHPnotecite] = ACTIONS(5181), + [anon_sym_BSLASHfnotecite] = ACTIONS(5181), + [anon_sym_BSLASHlabel] = ACTIONS(5181), + [anon_sym_BSLASHref] = ACTIONS(5181), + [anon_sym_BSLASHeqref] = ACTIONS(5181), + [anon_sym_BSLASHvref] = ACTIONS(5181), + [anon_sym_BSLASHVref] = ACTIONS(5181), + [anon_sym_BSLASHautoref] = ACTIONS(5181), + [anon_sym_BSLASHpageref] = ACTIONS(5181), + [anon_sym_BSLASHcref] = ACTIONS(5181), + [anon_sym_BSLASHCref] = ACTIONS(5181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnameCref] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHlabelcref] = ACTIONS(5181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnewlabel] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), + [anon_sym_BSLASHdef] = ACTIONS(5181), + [anon_sym_BSLASHlet] = ACTIONS(5181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), + [anon_sym_BSLASHgls] = ACTIONS(5181), + [anon_sym_BSLASHGls] = ACTIONS(5181), + [anon_sym_BSLASHGLS] = ACTIONS(5181), + [anon_sym_BSLASHglspl] = ACTIONS(5181), + [anon_sym_BSLASHGlspl] = ACTIONS(5181), + [anon_sym_BSLASHGLSpl] = ACTIONS(5181), + [anon_sym_BSLASHglsdisp] = ACTIONS(5181), + [anon_sym_BSLASHglslink] = ACTIONS(5181), + [anon_sym_BSLASHglstext] = ACTIONS(5181), + [anon_sym_BSLASHGlstext] = ACTIONS(5181), + [anon_sym_BSLASHGLStext] = ACTIONS(5181), + [anon_sym_BSLASHglsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), + [anon_sym_BSLASHglsplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSplural] = ACTIONS(5181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHglsname] = ACTIONS(5181), + [anon_sym_BSLASHGlsname] = ACTIONS(5181), + [anon_sym_BSLASHGLSname] = ACTIONS(5181), + [anon_sym_BSLASHglssymbol] = ACTIONS(5181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), + [anon_sym_BSLASHglsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), + [anon_sym_BSLASHglsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), + [anon_sym_BSLASHglsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), + [anon_sym_BSLASHglsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), + [anon_sym_BSLASHglsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), + [anon_sym_BSLASHnewacronym] = ACTIONS(5181), + [anon_sym_BSLASHacrshort] = ACTIONS(5181), + [anon_sym_BSLASHAcrshort] = ACTIONS(5181), + [anon_sym_BSLASHACRshort] = ACTIONS(5181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), + [anon_sym_BSLASHacrlong] = ACTIONS(5181), + [anon_sym_BSLASHAcrlong] = ACTIONS(5181), + [anon_sym_BSLASHACRlong] = ACTIONS(5181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), + [anon_sym_BSLASHacrfull] = ACTIONS(5181), + [anon_sym_BSLASHAcrfull] = ACTIONS(5181), + [anon_sym_BSLASHACRfull] = ACTIONS(5181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), + [anon_sym_BSLASHacs] = ACTIONS(5181), + [anon_sym_BSLASHAcs] = ACTIONS(5181), + [anon_sym_BSLASHacsp] = ACTIONS(5181), + [anon_sym_BSLASHAcsp] = ACTIONS(5181), + [anon_sym_BSLASHacl] = ACTIONS(5181), + [anon_sym_BSLASHAcl] = ACTIONS(5181), + [anon_sym_BSLASHaclp] = ACTIONS(5181), + [anon_sym_BSLASHAclp] = ACTIONS(5181), + [anon_sym_BSLASHacf] = ACTIONS(5181), + [anon_sym_BSLASHAcf] = ACTIONS(5181), + [anon_sym_BSLASHacfp] = ACTIONS(5181), + [anon_sym_BSLASHAcfp] = ACTIONS(5181), + [anon_sym_BSLASHac] = ACTIONS(5181), + [anon_sym_BSLASHAc] = ACTIONS(5181), + [anon_sym_BSLASHacp] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), + [anon_sym_BSLASHcolor] = ACTIONS(5181), + [anon_sym_BSLASHcolorbox] = ACTIONS(5181), + [anon_sym_BSLASHtextcolor] = ACTIONS(5181), + [anon_sym_BSLASHpagecolor] = ACTIONS(5181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), + [anon_sym_BSLASHtext] = ACTIONS(5181), + [anon_sym_BSLASHintertext] = ACTIONS(5181), + [anon_sym_shortintertext] = ACTIONS(5181), + }, + [777] = { + [ts_builtin_sym_end] = ACTIONS(5183), + [sym_command_name] = ACTIONS(5185), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_BSLASHpart] = ACTIONS(5049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddpart] = ACTIONS(5049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHchapter] = ACTIONS(5049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddchap] = ACTIONS(5049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsection] = ACTIONS(5049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddsec] = ACTIONS(5049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHparagraph] = ACTIONS(5049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHitem] = ACTIONS(5049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5047), - [anon_sym_BSLASHbegin] = ACTIONS(5049), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [anon_sym_BSLASHiffalse] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5183), + [anon_sym_RPAREN] = ACTIONS(5183), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_RBRACK] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_BSLASHpart] = ACTIONS(5185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddpart] = ACTIONS(5185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), + [anon_sym_BSLASHchapter] = ACTIONS(5185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddchap] = ACTIONS(5185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsection] = ACTIONS(5185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddsec] = ACTIONS(5185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubsection] = ACTIONS(5185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHparagraph] = ACTIONS(5185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), + [anon_sym_BSLASHitem] = ACTIONS(5185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5183), + [anon_sym_RBRACE] = ACTIONS(5183), + [sym_word] = ACTIONS(5185), + [sym_placeholder] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_CARET] = ACTIONS(5185), + [anon_sym__] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_COLON] = ACTIONS(5185), + [anon_sym_SQUOTE] = ACTIONS(5185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), + [anon_sym_DOLLAR] = ACTIONS(5185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), + [anon_sym_BSLASHbegin] = ACTIONS(5185), + [anon_sym_BSLASHusepackage] = ACTIONS(5185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), + [anon_sym_BSLASHinclude] = ACTIONS(5185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), + [anon_sym_BSLASHinput] = ACTIONS(5185), + [anon_sym_BSLASHsubfile] = ACTIONS(5185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), + [anon_sym_BSLASHbibliography] = ACTIONS(5185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), + [anon_sym_BSLASHincludesvg] = ACTIONS(5185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), + [anon_sym_BSLASHimport] = ACTIONS(5185), + [anon_sym_BSLASHsubimport] = ACTIONS(5185), + [anon_sym_BSLASHinputfrom] = ACTIONS(5185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), + [anon_sym_BSLASHincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHcaption] = ACTIONS(5185), + [anon_sym_BSLASHcite] = ACTIONS(5185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCite] = ACTIONS(5185), + [anon_sym_BSLASHnocite] = ACTIONS(5185), + [anon_sym_BSLASHcitet] = ACTIONS(5185), + [anon_sym_BSLASHcitep] = ACTIONS(5185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteauthor] = ACTIONS(5185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitetitle] = ACTIONS(5185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteyear] = ACTIONS(5185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitedate] = ACTIONS(5185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteurl] = ACTIONS(5185), + [anon_sym_BSLASHfullcite] = ACTIONS(5185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), + [anon_sym_BSLASHcitealt] = ACTIONS(5185), + [anon_sym_BSLASHcitealp] = ACTIONS(5185), + [anon_sym_BSLASHcitetext] = ACTIONS(5185), + [anon_sym_BSLASHparencite] = ACTIONS(5185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHParencite] = ACTIONS(5185), + [anon_sym_BSLASHfootcite] = ACTIONS(5185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), + [anon_sym_BSLASHtextcite] = ACTIONS(5185), + [anon_sym_BSLASHTextcite] = ACTIONS(5185), + [anon_sym_BSLASHsmartcite] = ACTIONS(5185), + [anon_sym_BSLASHSmartcite] = ACTIONS(5185), + [anon_sym_BSLASHsupercite] = ACTIONS(5185), + [anon_sym_BSLASHautocite] = ACTIONS(5185), + [anon_sym_BSLASHAutocite] = ACTIONS(5185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHvolcite] = ACTIONS(5185), + [anon_sym_BSLASHVolcite] = ACTIONS(5185), + [anon_sym_BSLASHpvolcite] = ACTIONS(5185), + [anon_sym_BSLASHPvolcite] = ACTIONS(5185), + [anon_sym_BSLASHfvolcite] = ACTIONS(5185), + [anon_sym_BSLASHftvolcite] = ACTIONS(5185), + [anon_sym_BSLASHsvolcite] = ACTIONS(5185), + [anon_sym_BSLASHSvolcite] = ACTIONS(5185), + [anon_sym_BSLASHtvolcite] = ACTIONS(5185), + [anon_sym_BSLASHTvolcite] = ACTIONS(5185), + [anon_sym_BSLASHavolcite] = ACTIONS(5185), + [anon_sym_BSLASHAvolcite] = ACTIONS(5185), + [anon_sym_BSLASHnotecite] = ACTIONS(5185), + [anon_sym_BSLASHNotecite] = ACTIONS(5185), + [anon_sym_BSLASHpnotecite] = ACTIONS(5185), + [anon_sym_BSLASHPnotecite] = ACTIONS(5185), + [anon_sym_BSLASHfnotecite] = ACTIONS(5185), + [anon_sym_BSLASHlabel] = ACTIONS(5185), + [anon_sym_BSLASHref] = ACTIONS(5185), + [anon_sym_BSLASHeqref] = ACTIONS(5185), + [anon_sym_BSLASHvref] = ACTIONS(5185), + [anon_sym_BSLASHVref] = ACTIONS(5185), + [anon_sym_BSLASHautoref] = ACTIONS(5185), + [anon_sym_BSLASHpageref] = ACTIONS(5185), + [anon_sym_BSLASHcref] = ACTIONS(5185), + [anon_sym_BSLASHCref] = ACTIONS(5185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnameCref] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHlabelcref] = ACTIONS(5185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCrefrange] = ACTIONS(5185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnewlabel] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), + [anon_sym_BSLASHdef] = ACTIONS(5185), + [anon_sym_BSLASHlet] = ACTIONS(5185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), + [anon_sym_BSLASHgls] = ACTIONS(5185), + [anon_sym_BSLASHGls] = ACTIONS(5185), + [anon_sym_BSLASHGLS] = ACTIONS(5185), + [anon_sym_BSLASHglspl] = ACTIONS(5185), + [anon_sym_BSLASHGlspl] = ACTIONS(5185), + [anon_sym_BSLASHGLSpl] = ACTIONS(5185), + [anon_sym_BSLASHglsdisp] = ACTIONS(5185), + [anon_sym_BSLASHglslink] = ACTIONS(5185), + [anon_sym_BSLASHglstext] = ACTIONS(5185), + [anon_sym_BSLASHGlstext] = ACTIONS(5185), + [anon_sym_BSLASHGLStext] = ACTIONS(5185), + [anon_sym_BSLASHglsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), + [anon_sym_BSLASHglsplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSplural] = ACTIONS(5185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHglsname] = ACTIONS(5185), + [anon_sym_BSLASHGlsname] = ACTIONS(5185), + [anon_sym_BSLASHGLSname] = ACTIONS(5185), + [anon_sym_BSLASHglssymbol] = ACTIONS(5185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), + [anon_sym_BSLASHglsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), + [anon_sym_BSLASHglsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), + [anon_sym_BSLASHglsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), + [anon_sym_BSLASHglsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), + [anon_sym_BSLASHglsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), + [anon_sym_BSLASHnewacronym] = ACTIONS(5185), + [anon_sym_BSLASHacrshort] = ACTIONS(5185), + [anon_sym_BSLASHAcrshort] = ACTIONS(5185), + [anon_sym_BSLASHACRshort] = ACTIONS(5185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), + [anon_sym_BSLASHacrlong] = ACTIONS(5185), + [anon_sym_BSLASHAcrlong] = ACTIONS(5185), + [anon_sym_BSLASHACRlong] = ACTIONS(5185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), + [anon_sym_BSLASHacrfull] = ACTIONS(5185), + [anon_sym_BSLASHAcrfull] = ACTIONS(5185), + [anon_sym_BSLASHACRfull] = ACTIONS(5185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), + [anon_sym_BSLASHacs] = ACTIONS(5185), + [anon_sym_BSLASHAcs] = ACTIONS(5185), + [anon_sym_BSLASHacsp] = ACTIONS(5185), + [anon_sym_BSLASHAcsp] = ACTIONS(5185), + [anon_sym_BSLASHacl] = ACTIONS(5185), + [anon_sym_BSLASHAcl] = ACTIONS(5185), + [anon_sym_BSLASHaclp] = ACTIONS(5185), + [anon_sym_BSLASHAclp] = ACTIONS(5185), + [anon_sym_BSLASHacf] = ACTIONS(5185), + [anon_sym_BSLASHAcf] = ACTIONS(5185), + [anon_sym_BSLASHacfp] = ACTIONS(5185), + [anon_sym_BSLASHAcfp] = ACTIONS(5185), + [anon_sym_BSLASHac] = ACTIONS(5185), + [anon_sym_BSLASHAc] = ACTIONS(5185), + [anon_sym_BSLASHacp] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), + [anon_sym_BSLASHcolor] = ACTIONS(5185), + [anon_sym_BSLASHcolorbox] = ACTIONS(5185), + [anon_sym_BSLASHtextcolor] = ACTIONS(5185), + [anon_sym_BSLASHpagecolor] = ACTIONS(5185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), + [anon_sym_BSLASHtext] = ACTIONS(5185), + [anon_sym_BSLASHintertext] = ACTIONS(5185), + [anon_sym_shortintertext] = ACTIONS(5185), }, - [972] = { - [sym_command_name] = ACTIONS(5053), + [778] = { + [ts_builtin_sym_end] = ACTIONS(5187), + [sym_command_name] = ACTIONS(5189), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_BSLASHpart] = ACTIONS(5053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddpart] = ACTIONS(5053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHchapter] = ACTIONS(5053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddchap] = ACTIONS(5053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsection] = ACTIONS(5053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddsec] = ACTIONS(5053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHparagraph] = ACTIONS(5053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHitem] = ACTIONS(5053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5051), - [anon_sym_BSLASHbegin] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [anon_sym_BSLASHiffalse] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_RPAREN] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_RBRACK] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_BSLASHpart] = ACTIONS(5189), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddpart] = ACTIONS(5189), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), + [anon_sym_BSLASHchapter] = ACTIONS(5189), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddchap] = ACTIONS(5189), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsection] = ACTIONS(5189), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddsec] = ACTIONS(5189), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubsection] = ACTIONS(5189), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHparagraph] = ACTIONS(5189), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), + [anon_sym_BSLASHitem] = ACTIONS(5189), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5187), + [anon_sym_RBRACE] = ACTIONS(5187), + [sym_word] = ACTIONS(5189), + [sym_placeholder] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_STAR] = ACTIONS(5189), + [anon_sym_SLASH] = ACTIONS(5189), + [anon_sym_CARET] = ACTIONS(5189), + [anon_sym__] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5189), + [anon_sym_GT] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_PIPE] = ACTIONS(5189), + [anon_sym_COLON] = ACTIONS(5189), + [anon_sym_SQUOTE] = ACTIONS(5189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), + [anon_sym_DOLLAR] = ACTIONS(5189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), + [anon_sym_BSLASHbegin] = ACTIONS(5189), + [anon_sym_BSLASHusepackage] = ACTIONS(5189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), + [anon_sym_BSLASHinclude] = ACTIONS(5189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), + [anon_sym_BSLASHinput] = ACTIONS(5189), + [anon_sym_BSLASHsubfile] = ACTIONS(5189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), + [anon_sym_BSLASHbibliography] = ACTIONS(5189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), + [anon_sym_BSLASHincludesvg] = ACTIONS(5189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), + [anon_sym_BSLASHimport] = ACTIONS(5189), + [anon_sym_BSLASHsubimport] = ACTIONS(5189), + [anon_sym_BSLASHinputfrom] = ACTIONS(5189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), + [anon_sym_BSLASHincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHcaption] = ACTIONS(5189), + [anon_sym_BSLASHcite] = ACTIONS(5189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCite] = ACTIONS(5189), + [anon_sym_BSLASHnocite] = ACTIONS(5189), + [anon_sym_BSLASHcitet] = ACTIONS(5189), + [anon_sym_BSLASHcitep] = ACTIONS(5189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteauthor] = ACTIONS(5189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitetitle] = ACTIONS(5189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteyear] = ACTIONS(5189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitedate] = ACTIONS(5189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteurl] = ACTIONS(5189), + [anon_sym_BSLASHfullcite] = ACTIONS(5189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), + [anon_sym_BSLASHcitealt] = ACTIONS(5189), + [anon_sym_BSLASHcitealp] = ACTIONS(5189), + [anon_sym_BSLASHcitetext] = ACTIONS(5189), + [anon_sym_BSLASHparencite] = ACTIONS(5189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHParencite] = ACTIONS(5189), + [anon_sym_BSLASHfootcite] = ACTIONS(5189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), + [anon_sym_BSLASHtextcite] = ACTIONS(5189), + [anon_sym_BSLASHTextcite] = ACTIONS(5189), + [anon_sym_BSLASHsmartcite] = ACTIONS(5189), + [anon_sym_BSLASHSmartcite] = ACTIONS(5189), + [anon_sym_BSLASHsupercite] = ACTIONS(5189), + [anon_sym_BSLASHautocite] = ACTIONS(5189), + [anon_sym_BSLASHAutocite] = ACTIONS(5189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHvolcite] = ACTIONS(5189), + [anon_sym_BSLASHVolcite] = ACTIONS(5189), + [anon_sym_BSLASHpvolcite] = ACTIONS(5189), + [anon_sym_BSLASHPvolcite] = ACTIONS(5189), + [anon_sym_BSLASHfvolcite] = ACTIONS(5189), + [anon_sym_BSLASHftvolcite] = ACTIONS(5189), + [anon_sym_BSLASHsvolcite] = ACTIONS(5189), + [anon_sym_BSLASHSvolcite] = ACTIONS(5189), + [anon_sym_BSLASHtvolcite] = ACTIONS(5189), + [anon_sym_BSLASHTvolcite] = ACTIONS(5189), + [anon_sym_BSLASHavolcite] = ACTIONS(5189), + [anon_sym_BSLASHAvolcite] = ACTIONS(5189), + [anon_sym_BSLASHnotecite] = ACTIONS(5189), + [anon_sym_BSLASHNotecite] = ACTIONS(5189), + [anon_sym_BSLASHpnotecite] = ACTIONS(5189), + [anon_sym_BSLASHPnotecite] = ACTIONS(5189), + [anon_sym_BSLASHfnotecite] = ACTIONS(5189), + [anon_sym_BSLASHlabel] = ACTIONS(5189), + [anon_sym_BSLASHref] = ACTIONS(5189), + [anon_sym_BSLASHeqref] = ACTIONS(5189), + [anon_sym_BSLASHvref] = ACTIONS(5189), + [anon_sym_BSLASHVref] = ACTIONS(5189), + [anon_sym_BSLASHautoref] = ACTIONS(5189), + [anon_sym_BSLASHpageref] = ACTIONS(5189), + [anon_sym_BSLASHcref] = ACTIONS(5189), + [anon_sym_BSLASHCref] = ACTIONS(5189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnameCref] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHlabelcref] = ACTIONS(5189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCrefrange] = ACTIONS(5189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnewlabel] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), + [anon_sym_BSLASHgls] = ACTIONS(5189), + [anon_sym_BSLASHGls] = ACTIONS(5189), + [anon_sym_BSLASHGLS] = ACTIONS(5189), + [anon_sym_BSLASHglspl] = ACTIONS(5189), + [anon_sym_BSLASHGlspl] = ACTIONS(5189), + [anon_sym_BSLASHGLSpl] = ACTIONS(5189), + [anon_sym_BSLASHglsdisp] = ACTIONS(5189), + [anon_sym_BSLASHglslink] = ACTIONS(5189), + [anon_sym_BSLASHglstext] = ACTIONS(5189), + [anon_sym_BSLASHGlstext] = ACTIONS(5189), + [anon_sym_BSLASHGLStext] = ACTIONS(5189), + [anon_sym_BSLASHglsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), + [anon_sym_BSLASHglsplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSplural] = ACTIONS(5189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHglsname] = ACTIONS(5189), + [anon_sym_BSLASHGlsname] = ACTIONS(5189), + [anon_sym_BSLASHGLSname] = ACTIONS(5189), + [anon_sym_BSLASHglssymbol] = ACTIONS(5189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), + [anon_sym_BSLASHglsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), + [anon_sym_BSLASHglsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), + [anon_sym_BSLASHglsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), + [anon_sym_BSLASHglsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), + [anon_sym_BSLASHglsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), + [anon_sym_BSLASHnewacronym] = ACTIONS(5189), + [anon_sym_BSLASHacrshort] = ACTIONS(5189), + [anon_sym_BSLASHAcrshort] = ACTIONS(5189), + [anon_sym_BSLASHACRshort] = ACTIONS(5189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), + [anon_sym_BSLASHacrlong] = ACTIONS(5189), + [anon_sym_BSLASHAcrlong] = ACTIONS(5189), + [anon_sym_BSLASHACRlong] = ACTIONS(5189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), + [anon_sym_BSLASHacrfull] = ACTIONS(5189), + [anon_sym_BSLASHAcrfull] = ACTIONS(5189), + [anon_sym_BSLASHACRfull] = ACTIONS(5189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), + [anon_sym_BSLASHacs] = ACTIONS(5189), + [anon_sym_BSLASHAcs] = ACTIONS(5189), + [anon_sym_BSLASHacsp] = ACTIONS(5189), + [anon_sym_BSLASHAcsp] = ACTIONS(5189), + [anon_sym_BSLASHacl] = ACTIONS(5189), + [anon_sym_BSLASHAcl] = ACTIONS(5189), + [anon_sym_BSLASHaclp] = ACTIONS(5189), + [anon_sym_BSLASHAclp] = ACTIONS(5189), + [anon_sym_BSLASHacf] = ACTIONS(5189), + [anon_sym_BSLASHAcf] = ACTIONS(5189), + [anon_sym_BSLASHacfp] = ACTIONS(5189), + [anon_sym_BSLASHAcfp] = ACTIONS(5189), + [anon_sym_BSLASHac] = ACTIONS(5189), + [anon_sym_BSLASHAc] = ACTIONS(5189), + [anon_sym_BSLASHacp] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), + [anon_sym_BSLASHcolor] = ACTIONS(5189), + [anon_sym_BSLASHcolorbox] = ACTIONS(5189), + [anon_sym_BSLASHtextcolor] = ACTIONS(5189), + [anon_sym_BSLASHpagecolor] = ACTIONS(5189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), + [anon_sym_BSLASHtext] = ACTIONS(5189), + [anon_sym_BSLASHintertext] = ACTIONS(5189), + [anon_sym_shortintertext] = ACTIONS(5189), }, - [973] = { - [sym_command_name] = ACTIONS(5057), + [779] = { + [ts_builtin_sym_end] = ACTIONS(5191), + [sym_command_name] = ACTIONS(5193), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_BSLASHpart] = ACTIONS(5057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddpart] = ACTIONS(5057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHchapter] = ACTIONS(5057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddchap] = ACTIONS(5057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsection] = ACTIONS(5057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddsec] = ACTIONS(5057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHparagraph] = ACTIONS(5057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHitem] = ACTIONS(5057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5055), - [anon_sym_BSLASHbegin] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [anon_sym_BSLASHiffalse] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5191), + [anon_sym_RPAREN] = ACTIONS(5191), + [anon_sym_LBRACK] = ACTIONS(5191), + [anon_sym_RBRACK] = ACTIONS(5191), + [anon_sym_COMMA] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_BSLASHpart] = ACTIONS(5193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddpart] = ACTIONS(5193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), + [anon_sym_BSLASHchapter] = ACTIONS(5193), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddchap] = ACTIONS(5193), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsection] = ACTIONS(5193), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddsec] = ACTIONS(5193), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubsection] = ACTIONS(5193), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHparagraph] = ACTIONS(5193), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), + [anon_sym_BSLASHitem] = ACTIONS(5193), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5191), + [anon_sym_RBRACE] = ACTIONS(5191), + [sym_word] = ACTIONS(5193), + [sym_placeholder] = ACTIONS(5191), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5193), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_CARET] = ACTIONS(5193), + [anon_sym__] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_PIPE] = ACTIONS(5193), + [anon_sym_COLON] = ACTIONS(5193), + [anon_sym_SQUOTE] = ACTIONS(5193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), + [anon_sym_DOLLAR] = ACTIONS(5193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), + [anon_sym_BSLASHbegin] = ACTIONS(5193), + [anon_sym_BSLASHusepackage] = ACTIONS(5193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), + [anon_sym_BSLASHinclude] = ACTIONS(5193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), + [anon_sym_BSLASHinput] = ACTIONS(5193), + [anon_sym_BSLASHsubfile] = ACTIONS(5193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), + [anon_sym_BSLASHbibliography] = ACTIONS(5193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), + [anon_sym_BSLASHincludesvg] = ACTIONS(5193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), + [anon_sym_BSLASHimport] = ACTIONS(5193), + [anon_sym_BSLASHsubimport] = ACTIONS(5193), + [anon_sym_BSLASHinputfrom] = ACTIONS(5193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), + [anon_sym_BSLASHincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHcaption] = ACTIONS(5193), + [anon_sym_BSLASHcite] = ACTIONS(5193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCite] = ACTIONS(5193), + [anon_sym_BSLASHnocite] = ACTIONS(5193), + [anon_sym_BSLASHcitet] = ACTIONS(5193), + [anon_sym_BSLASHcitep] = ACTIONS(5193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteauthor] = ACTIONS(5193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitetitle] = ACTIONS(5193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteyear] = ACTIONS(5193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitedate] = ACTIONS(5193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteurl] = ACTIONS(5193), + [anon_sym_BSLASHfullcite] = ACTIONS(5193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), + [anon_sym_BSLASHcitealt] = ACTIONS(5193), + [anon_sym_BSLASHcitealp] = ACTIONS(5193), + [anon_sym_BSLASHcitetext] = ACTIONS(5193), + [anon_sym_BSLASHparencite] = ACTIONS(5193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHParencite] = ACTIONS(5193), + [anon_sym_BSLASHfootcite] = ACTIONS(5193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), + [anon_sym_BSLASHtextcite] = ACTIONS(5193), + [anon_sym_BSLASHTextcite] = ACTIONS(5193), + [anon_sym_BSLASHsmartcite] = ACTIONS(5193), + [anon_sym_BSLASHSmartcite] = ACTIONS(5193), + [anon_sym_BSLASHsupercite] = ACTIONS(5193), + [anon_sym_BSLASHautocite] = ACTIONS(5193), + [anon_sym_BSLASHAutocite] = ACTIONS(5193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHvolcite] = ACTIONS(5193), + [anon_sym_BSLASHVolcite] = ACTIONS(5193), + [anon_sym_BSLASHpvolcite] = ACTIONS(5193), + [anon_sym_BSLASHPvolcite] = ACTIONS(5193), + [anon_sym_BSLASHfvolcite] = ACTIONS(5193), + [anon_sym_BSLASHftvolcite] = ACTIONS(5193), + [anon_sym_BSLASHsvolcite] = ACTIONS(5193), + [anon_sym_BSLASHSvolcite] = ACTIONS(5193), + [anon_sym_BSLASHtvolcite] = ACTIONS(5193), + [anon_sym_BSLASHTvolcite] = ACTIONS(5193), + [anon_sym_BSLASHavolcite] = ACTIONS(5193), + [anon_sym_BSLASHAvolcite] = ACTIONS(5193), + [anon_sym_BSLASHnotecite] = ACTIONS(5193), + [anon_sym_BSLASHNotecite] = ACTIONS(5193), + [anon_sym_BSLASHpnotecite] = ACTIONS(5193), + [anon_sym_BSLASHPnotecite] = ACTIONS(5193), + [anon_sym_BSLASHfnotecite] = ACTIONS(5193), + [anon_sym_BSLASHlabel] = ACTIONS(5193), + [anon_sym_BSLASHref] = ACTIONS(5193), + [anon_sym_BSLASHeqref] = ACTIONS(5193), + [anon_sym_BSLASHvref] = ACTIONS(5193), + [anon_sym_BSLASHVref] = ACTIONS(5193), + [anon_sym_BSLASHautoref] = ACTIONS(5193), + [anon_sym_BSLASHpageref] = ACTIONS(5193), + [anon_sym_BSLASHcref] = ACTIONS(5193), + [anon_sym_BSLASHCref] = ACTIONS(5193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnameCref] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHlabelcref] = ACTIONS(5193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCrefrange] = ACTIONS(5193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnewlabel] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), + [anon_sym_BSLASHdef] = ACTIONS(5193), + [anon_sym_BSLASHlet] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), + [anon_sym_BSLASHgls] = ACTIONS(5193), + [anon_sym_BSLASHGls] = ACTIONS(5193), + [anon_sym_BSLASHGLS] = ACTIONS(5193), + [anon_sym_BSLASHglspl] = ACTIONS(5193), + [anon_sym_BSLASHGlspl] = ACTIONS(5193), + [anon_sym_BSLASHGLSpl] = ACTIONS(5193), + [anon_sym_BSLASHglsdisp] = ACTIONS(5193), + [anon_sym_BSLASHglslink] = ACTIONS(5193), + [anon_sym_BSLASHglstext] = ACTIONS(5193), + [anon_sym_BSLASHGlstext] = ACTIONS(5193), + [anon_sym_BSLASHGLStext] = ACTIONS(5193), + [anon_sym_BSLASHglsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), + [anon_sym_BSLASHglsplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSplural] = ACTIONS(5193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHglsname] = ACTIONS(5193), + [anon_sym_BSLASHGlsname] = ACTIONS(5193), + [anon_sym_BSLASHGLSname] = ACTIONS(5193), + [anon_sym_BSLASHglssymbol] = ACTIONS(5193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), + [anon_sym_BSLASHglsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), + [anon_sym_BSLASHglsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), + [anon_sym_BSLASHglsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), + [anon_sym_BSLASHglsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), + [anon_sym_BSLASHglsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), + [anon_sym_BSLASHnewacronym] = ACTIONS(5193), + [anon_sym_BSLASHacrshort] = ACTIONS(5193), + [anon_sym_BSLASHAcrshort] = ACTIONS(5193), + [anon_sym_BSLASHACRshort] = ACTIONS(5193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), + [anon_sym_BSLASHacrlong] = ACTIONS(5193), + [anon_sym_BSLASHAcrlong] = ACTIONS(5193), + [anon_sym_BSLASHACRlong] = ACTIONS(5193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), + [anon_sym_BSLASHacrfull] = ACTIONS(5193), + [anon_sym_BSLASHAcrfull] = ACTIONS(5193), + [anon_sym_BSLASHACRfull] = ACTIONS(5193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), + [anon_sym_BSLASHacs] = ACTIONS(5193), + [anon_sym_BSLASHAcs] = ACTIONS(5193), + [anon_sym_BSLASHacsp] = ACTIONS(5193), + [anon_sym_BSLASHAcsp] = ACTIONS(5193), + [anon_sym_BSLASHacl] = ACTIONS(5193), + [anon_sym_BSLASHAcl] = ACTIONS(5193), + [anon_sym_BSLASHaclp] = ACTIONS(5193), + [anon_sym_BSLASHAclp] = ACTIONS(5193), + [anon_sym_BSLASHacf] = ACTIONS(5193), + [anon_sym_BSLASHAcf] = ACTIONS(5193), + [anon_sym_BSLASHacfp] = ACTIONS(5193), + [anon_sym_BSLASHAcfp] = ACTIONS(5193), + [anon_sym_BSLASHac] = ACTIONS(5193), + [anon_sym_BSLASHAc] = ACTIONS(5193), + [anon_sym_BSLASHacp] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), + [anon_sym_BSLASHcolor] = ACTIONS(5193), + [anon_sym_BSLASHcolorbox] = ACTIONS(5193), + [anon_sym_BSLASHtextcolor] = ACTIONS(5193), + [anon_sym_BSLASHpagecolor] = ACTIONS(5193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [anon_sym_BSLASHtext] = ACTIONS(5193), + [anon_sym_BSLASHintertext] = ACTIONS(5193), + [anon_sym_shortintertext] = ACTIONS(5193), }, - [974] = { - [sym_command_name] = ACTIONS(5061), + [780] = { + [ts_builtin_sym_end] = ACTIONS(5195), + [sym_command_name] = ACTIONS(5197), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_BSLASHpart] = ACTIONS(5061), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddpart] = ACTIONS(5061), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHchapter] = ACTIONS(5061), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddchap] = ACTIONS(5061), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsection] = ACTIONS(5061), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddsec] = ACTIONS(5061), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHparagraph] = ACTIONS(5061), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHitem] = ACTIONS(5061), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5059), - [anon_sym_BSLASHbegin] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [anon_sym_BSLASHiffalse] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_BSLASHpart] = ACTIONS(5197), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddpart] = ACTIONS(5197), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), + [anon_sym_BSLASHchapter] = ACTIONS(5197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddchap] = ACTIONS(5197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsection] = ACTIONS(5197), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddsec] = ACTIONS(5197), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubsection] = ACTIONS(5197), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHparagraph] = ACTIONS(5197), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), + [anon_sym_BSLASHitem] = ACTIONS(5197), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(5195), + [sym_word] = ACTIONS(5197), + [sym_placeholder] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_CARET] = ACTIONS(5197), + [anon_sym__] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_COLON] = ACTIONS(5197), + [anon_sym_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), + [anon_sym_DOLLAR] = ACTIONS(5197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), + [anon_sym_BSLASHbegin] = ACTIONS(5197), + [anon_sym_BSLASHusepackage] = ACTIONS(5197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), + [anon_sym_BSLASHinclude] = ACTIONS(5197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), + [anon_sym_BSLASHinput] = ACTIONS(5197), + [anon_sym_BSLASHsubfile] = ACTIONS(5197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), + [anon_sym_BSLASHbibliography] = ACTIONS(5197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), + [anon_sym_BSLASHincludesvg] = ACTIONS(5197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), + [anon_sym_BSLASHimport] = ACTIONS(5197), + [anon_sym_BSLASHsubimport] = ACTIONS(5197), + [anon_sym_BSLASHinputfrom] = ACTIONS(5197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), + [anon_sym_BSLASHincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHcaption] = ACTIONS(5197), + [anon_sym_BSLASHcite] = ACTIONS(5197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCite] = ACTIONS(5197), + [anon_sym_BSLASHnocite] = ACTIONS(5197), + [anon_sym_BSLASHcitet] = ACTIONS(5197), + [anon_sym_BSLASHcitep] = ACTIONS(5197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteauthor] = ACTIONS(5197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitetitle] = ACTIONS(5197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteyear] = ACTIONS(5197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitedate] = ACTIONS(5197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteurl] = ACTIONS(5197), + [anon_sym_BSLASHfullcite] = ACTIONS(5197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), + [anon_sym_BSLASHcitealt] = ACTIONS(5197), + [anon_sym_BSLASHcitealp] = ACTIONS(5197), + [anon_sym_BSLASHcitetext] = ACTIONS(5197), + [anon_sym_BSLASHparencite] = ACTIONS(5197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHParencite] = ACTIONS(5197), + [anon_sym_BSLASHfootcite] = ACTIONS(5197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), + [anon_sym_BSLASHtextcite] = ACTIONS(5197), + [anon_sym_BSLASHTextcite] = ACTIONS(5197), + [anon_sym_BSLASHsmartcite] = ACTIONS(5197), + [anon_sym_BSLASHSmartcite] = ACTIONS(5197), + [anon_sym_BSLASHsupercite] = ACTIONS(5197), + [anon_sym_BSLASHautocite] = ACTIONS(5197), + [anon_sym_BSLASHAutocite] = ACTIONS(5197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHvolcite] = ACTIONS(5197), + [anon_sym_BSLASHVolcite] = ACTIONS(5197), + [anon_sym_BSLASHpvolcite] = ACTIONS(5197), + [anon_sym_BSLASHPvolcite] = ACTIONS(5197), + [anon_sym_BSLASHfvolcite] = ACTIONS(5197), + [anon_sym_BSLASHftvolcite] = ACTIONS(5197), + [anon_sym_BSLASHsvolcite] = ACTIONS(5197), + [anon_sym_BSLASHSvolcite] = ACTIONS(5197), + [anon_sym_BSLASHtvolcite] = ACTIONS(5197), + [anon_sym_BSLASHTvolcite] = ACTIONS(5197), + [anon_sym_BSLASHavolcite] = ACTIONS(5197), + [anon_sym_BSLASHAvolcite] = ACTIONS(5197), + [anon_sym_BSLASHnotecite] = ACTIONS(5197), + [anon_sym_BSLASHNotecite] = ACTIONS(5197), + [anon_sym_BSLASHpnotecite] = ACTIONS(5197), + [anon_sym_BSLASHPnotecite] = ACTIONS(5197), + [anon_sym_BSLASHfnotecite] = ACTIONS(5197), + [anon_sym_BSLASHlabel] = ACTIONS(5197), + [anon_sym_BSLASHref] = ACTIONS(5197), + [anon_sym_BSLASHeqref] = ACTIONS(5197), + [anon_sym_BSLASHvref] = ACTIONS(5197), + [anon_sym_BSLASHVref] = ACTIONS(5197), + [anon_sym_BSLASHautoref] = ACTIONS(5197), + [anon_sym_BSLASHpageref] = ACTIONS(5197), + [anon_sym_BSLASHcref] = ACTIONS(5197), + [anon_sym_BSLASHCref] = ACTIONS(5197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnameCref] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHlabelcref] = ACTIONS(5197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCrefrange] = ACTIONS(5197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnewlabel] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), + [anon_sym_BSLASHdef] = ACTIONS(5197), + [anon_sym_BSLASHlet] = ACTIONS(5197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5197), + [anon_sym_BSLASHGls] = ACTIONS(5197), + [anon_sym_BSLASHGLS] = ACTIONS(5197), + [anon_sym_BSLASHglspl] = ACTIONS(5197), + [anon_sym_BSLASHGlspl] = ACTIONS(5197), + [anon_sym_BSLASHGLSpl] = ACTIONS(5197), + [anon_sym_BSLASHglsdisp] = ACTIONS(5197), + [anon_sym_BSLASHglslink] = ACTIONS(5197), + [anon_sym_BSLASHglstext] = ACTIONS(5197), + [anon_sym_BSLASHGlstext] = ACTIONS(5197), + [anon_sym_BSLASHGLStext] = ACTIONS(5197), + [anon_sym_BSLASHglsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), + [anon_sym_BSLASHglsplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSplural] = ACTIONS(5197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHglsname] = ACTIONS(5197), + [anon_sym_BSLASHGlsname] = ACTIONS(5197), + [anon_sym_BSLASHGLSname] = ACTIONS(5197), + [anon_sym_BSLASHglssymbol] = ACTIONS(5197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), + [anon_sym_BSLASHglsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), + [anon_sym_BSLASHglsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), + [anon_sym_BSLASHglsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), + [anon_sym_BSLASHglsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), + [anon_sym_BSLASHglsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), + [anon_sym_BSLASHnewacronym] = ACTIONS(5197), + [anon_sym_BSLASHacrshort] = ACTIONS(5197), + [anon_sym_BSLASHAcrshort] = ACTIONS(5197), + [anon_sym_BSLASHACRshort] = ACTIONS(5197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), + [anon_sym_BSLASHacrlong] = ACTIONS(5197), + [anon_sym_BSLASHAcrlong] = ACTIONS(5197), + [anon_sym_BSLASHACRlong] = ACTIONS(5197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), + [anon_sym_BSLASHacrfull] = ACTIONS(5197), + [anon_sym_BSLASHAcrfull] = ACTIONS(5197), + [anon_sym_BSLASHACRfull] = ACTIONS(5197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), + [anon_sym_BSLASHacs] = ACTIONS(5197), + [anon_sym_BSLASHAcs] = ACTIONS(5197), + [anon_sym_BSLASHacsp] = ACTIONS(5197), + [anon_sym_BSLASHAcsp] = ACTIONS(5197), + [anon_sym_BSLASHacl] = ACTIONS(5197), + [anon_sym_BSLASHAcl] = ACTIONS(5197), + [anon_sym_BSLASHaclp] = ACTIONS(5197), + [anon_sym_BSLASHAclp] = ACTIONS(5197), + [anon_sym_BSLASHacf] = ACTIONS(5197), + [anon_sym_BSLASHAcf] = ACTIONS(5197), + [anon_sym_BSLASHacfp] = ACTIONS(5197), + [anon_sym_BSLASHAcfp] = ACTIONS(5197), + [anon_sym_BSLASHac] = ACTIONS(5197), + [anon_sym_BSLASHAc] = ACTIONS(5197), + [anon_sym_BSLASHacp] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), + [anon_sym_BSLASHcolor] = ACTIONS(5197), + [anon_sym_BSLASHcolorbox] = ACTIONS(5197), + [anon_sym_BSLASHtextcolor] = ACTIONS(5197), + [anon_sym_BSLASHpagecolor] = ACTIONS(5197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + [anon_sym_BSLASHtext] = ACTIONS(5197), + [anon_sym_BSLASHintertext] = ACTIONS(5197), + [anon_sym_shortintertext] = ACTIONS(5197), }, - [975] = { - [sym_command_name] = ACTIONS(5065), + [781] = { + [ts_builtin_sym_end] = ACTIONS(5199), + [sym_command_name] = ACTIONS(5201), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_BSLASHpart] = ACTIONS(5065), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddpart] = ACTIONS(5065), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHchapter] = ACTIONS(5065), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddchap] = ACTIONS(5065), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsection] = ACTIONS(5065), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddsec] = ACTIONS(5065), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHparagraph] = ACTIONS(5065), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHitem] = ACTIONS(5065), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5063), - [anon_sym_BSLASHbegin] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHiffalse] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_BSLASHpart] = ACTIONS(5201), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddpart] = ACTIONS(5201), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), + [anon_sym_BSLASHchapter] = ACTIONS(5201), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddchap] = ACTIONS(5201), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsection] = ACTIONS(5201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddsec] = ACTIONS(5201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubsection] = ACTIONS(5201), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHparagraph] = ACTIONS(5201), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), + [anon_sym_BSLASHitem] = ACTIONS(5201), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5199), + [anon_sym_RBRACE] = ACTIONS(5199), + [sym_word] = ACTIONS(5201), + [sym_placeholder] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5201), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_CARET] = ACTIONS(5201), + [anon_sym__] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_SQUOTE] = ACTIONS(5201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), + [anon_sym_DOLLAR] = ACTIONS(5201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), + [anon_sym_BSLASHbegin] = ACTIONS(5201), + [anon_sym_BSLASHusepackage] = ACTIONS(5201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), + [anon_sym_BSLASHinclude] = ACTIONS(5201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), + [anon_sym_BSLASHinput] = ACTIONS(5201), + [anon_sym_BSLASHsubfile] = ACTIONS(5201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), + [anon_sym_BSLASHbibliography] = ACTIONS(5201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), + [anon_sym_BSLASHincludesvg] = ACTIONS(5201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), + [anon_sym_BSLASHimport] = ACTIONS(5201), + [anon_sym_BSLASHsubimport] = ACTIONS(5201), + [anon_sym_BSLASHinputfrom] = ACTIONS(5201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), + [anon_sym_BSLASHincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHcaption] = ACTIONS(5201), + [anon_sym_BSLASHcite] = ACTIONS(5201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCite] = ACTIONS(5201), + [anon_sym_BSLASHnocite] = ACTIONS(5201), + [anon_sym_BSLASHcitet] = ACTIONS(5201), + [anon_sym_BSLASHcitep] = ACTIONS(5201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteauthor] = ACTIONS(5201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitetitle] = ACTIONS(5201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteyear] = ACTIONS(5201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitedate] = ACTIONS(5201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteurl] = ACTIONS(5201), + [anon_sym_BSLASHfullcite] = ACTIONS(5201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), + [anon_sym_BSLASHcitealt] = ACTIONS(5201), + [anon_sym_BSLASHcitealp] = ACTIONS(5201), + [anon_sym_BSLASHcitetext] = ACTIONS(5201), + [anon_sym_BSLASHparencite] = ACTIONS(5201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHParencite] = ACTIONS(5201), + [anon_sym_BSLASHfootcite] = ACTIONS(5201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), + [anon_sym_BSLASHtextcite] = ACTIONS(5201), + [anon_sym_BSLASHTextcite] = ACTIONS(5201), + [anon_sym_BSLASHsmartcite] = ACTIONS(5201), + [anon_sym_BSLASHSmartcite] = ACTIONS(5201), + [anon_sym_BSLASHsupercite] = ACTIONS(5201), + [anon_sym_BSLASHautocite] = ACTIONS(5201), + [anon_sym_BSLASHAutocite] = ACTIONS(5201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHvolcite] = ACTIONS(5201), + [anon_sym_BSLASHVolcite] = ACTIONS(5201), + [anon_sym_BSLASHpvolcite] = ACTIONS(5201), + [anon_sym_BSLASHPvolcite] = ACTIONS(5201), + [anon_sym_BSLASHfvolcite] = ACTIONS(5201), + [anon_sym_BSLASHftvolcite] = ACTIONS(5201), + [anon_sym_BSLASHsvolcite] = ACTIONS(5201), + [anon_sym_BSLASHSvolcite] = ACTIONS(5201), + [anon_sym_BSLASHtvolcite] = ACTIONS(5201), + [anon_sym_BSLASHTvolcite] = ACTIONS(5201), + [anon_sym_BSLASHavolcite] = ACTIONS(5201), + [anon_sym_BSLASHAvolcite] = ACTIONS(5201), + [anon_sym_BSLASHnotecite] = ACTIONS(5201), + [anon_sym_BSLASHNotecite] = ACTIONS(5201), + [anon_sym_BSLASHpnotecite] = ACTIONS(5201), + [anon_sym_BSLASHPnotecite] = ACTIONS(5201), + [anon_sym_BSLASHfnotecite] = ACTIONS(5201), + [anon_sym_BSLASHlabel] = ACTIONS(5201), + [anon_sym_BSLASHref] = ACTIONS(5201), + [anon_sym_BSLASHeqref] = ACTIONS(5201), + [anon_sym_BSLASHvref] = ACTIONS(5201), + [anon_sym_BSLASHVref] = ACTIONS(5201), + [anon_sym_BSLASHautoref] = ACTIONS(5201), + [anon_sym_BSLASHpageref] = ACTIONS(5201), + [anon_sym_BSLASHcref] = ACTIONS(5201), + [anon_sym_BSLASHCref] = ACTIONS(5201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnameCref] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHlabelcref] = ACTIONS(5201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCrefrange] = ACTIONS(5201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnewlabel] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), + [anon_sym_BSLASHdef] = ACTIONS(5201), + [anon_sym_BSLASHlet] = ACTIONS(5201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), + [anon_sym_BSLASHgls] = ACTIONS(5201), + [anon_sym_BSLASHGls] = ACTIONS(5201), + [anon_sym_BSLASHGLS] = ACTIONS(5201), + [anon_sym_BSLASHglspl] = ACTIONS(5201), + [anon_sym_BSLASHGlspl] = ACTIONS(5201), + [anon_sym_BSLASHGLSpl] = ACTIONS(5201), + [anon_sym_BSLASHglsdisp] = ACTIONS(5201), + [anon_sym_BSLASHglslink] = ACTIONS(5201), + [anon_sym_BSLASHglstext] = ACTIONS(5201), + [anon_sym_BSLASHGlstext] = ACTIONS(5201), + [anon_sym_BSLASHGLStext] = ACTIONS(5201), + [anon_sym_BSLASHglsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), + [anon_sym_BSLASHglsplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSplural] = ACTIONS(5201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHglsname] = ACTIONS(5201), + [anon_sym_BSLASHGlsname] = ACTIONS(5201), + [anon_sym_BSLASHGLSname] = ACTIONS(5201), + [anon_sym_BSLASHglssymbol] = ACTIONS(5201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), + [anon_sym_BSLASHglsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), + [anon_sym_BSLASHglsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), + [anon_sym_BSLASHglsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), + [anon_sym_BSLASHglsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), + [anon_sym_BSLASHglsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5201), + [anon_sym_BSLASHAcrshort] = ACTIONS(5201), + [anon_sym_BSLASHACRshort] = ACTIONS(5201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), + [anon_sym_BSLASHacrlong] = ACTIONS(5201), + [anon_sym_BSLASHAcrlong] = ACTIONS(5201), + [anon_sym_BSLASHACRlong] = ACTIONS(5201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), + [anon_sym_BSLASHacrfull] = ACTIONS(5201), + [anon_sym_BSLASHAcrfull] = ACTIONS(5201), + [anon_sym_BSLASHACRfull] = ACTIONS(5201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), + [anon_sym_BSLASHacs] = ACTIONS(5201), + [anon_sym_BSLASHAcs] = ACTIONS(5201), + [anon_sym_BSLASHacsp] = ACTIONS(5201), + [anon_sym_BSLASHAcsp] = ACTIONS(5201), + [anon_sym_BSLASHacl] = ACTIONS(5201), + [anon_sym_BSLASHAcl] = ACTIONS(5201), + [anon_sym_BSLASHaclp] = ACTIONS(5201), + [anon_sym_BSLASHAclp] = ACTIONS(5201), + [anon_sym_BSLASHacf] = ACTIONS(5201), + [anon_sym_BSLASHAcf] = ACTIONS(5201), + [anon_sym_BSLASHacfp] = ACTIONS(5201), + [anon_sym_BSLASHAcfp] = ACTIONS(5201), + [anon_sym_BSLASHac] = ACTIONS(5201), + [anon_sym_BSLASHAc] = ACTIONS(5201), + [anon_sym_BSLASHacp] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), + [anon_sym_BSLASHcolor] = ACTIONS(5201), + [anon_sym_BSLASHcolorbox] = ACTIONS(5201), + [anon_sym_BSLASHtextcolor] = ACTIONS(5201), + [anon_sym_BSLASHpagecolor] = ACTIONS(5201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), + [anon_sym_BSLASHtext] = ACTIONS(5201), + [anon_sym_BSLASHintertext] = ACTIONS(5201), + [anon_sym_shortintertext] = ACTIONS(5201), }, - [976] = { - [sym_command_name] = ACTIONS(5069), + [782] = { + [ts_builtin_sym_end] = ACTIONS(5203), + [sym_command_name] = ACTIONS(5205), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_BSLASHpart] = ACTIONS(5069), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddpart] = ACTIONS(5069), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHchapter] = ACTIONS(5069), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddchap] = ACTIONS(5069), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsection] = ACTIONS(5069), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddsec] = ACTIONS(5069), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHparagraph] = ACTIONS(5069), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHitem] = ACTIONS(5069), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5067), - [anon_sym_BSLASHbegin] = ACTIONS(5069), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), + [anon_sym_BSLASHiffalse] = ACTIONS(5205), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_RPAREN] = ACTIONS(5203), + [anon_sym_LBRACK] = ACTIONS(5203), + [anon_sym_RBRACK] = ACTIONS(5203), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_EQ] = ACTIONS(5203), + [anon_sym_BSLASHpart] = ACTIONS(5205), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddpart] = ACTIONS(5205), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), + [anon_sym_BSLASHchapter] = ACTIONS(5205), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddchap] = ACTIONS(5205), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsection] = ACTIONS(5205), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddsec] = ACTIONS(5205), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubsection] = ACTIONS(5205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHparagraph] = ACTIONS(5205), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), + [anon_sym_BSLASHitem] = ACTIONS(5205), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), + [anon_sym_LBRACE] = ACTIONS(5203), + [anon_sym_RBRACE] = ACTIONS(5203), + [sym_word] = ACTIONS(5205), + [sym_placeholder] = ACTIONS(5203), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_CARET] = ACTIONS(5205), + [anon_sym__] = ACTIONS(5205), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_PIPE] = ACTIONS(5205), + [anon_sym_COLON] = ACTIONS(5205), + [anon_sym_SQUOTE] = ACTIONS(5205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), + [anon_sym_BSLASHbegin] = ACTIONS(5205), + [anon_sym_BSLASHusepackage] = ACTIONS(5205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), + [anon_sym_BSLASHinclude] = ACTIONS(5205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), + [anon_sym_BSLASHinput] = ACTIONS(5205), + [anon_sym_BSLASHsubfile] = ACTIONS(5205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), + [anon_sym_BSLASHbibliography] = ACTIONS(5205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), + [anon_sym_BSLASHincludesvg] = ACTIONS(5205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), + [anon_sym_BSLASHimport] = ACTIONS(5205), + [anon_sym_BSLASHsubimport] = ACTIONS(5205), + [anon_sym_BSLASHinputfrom] = ACTIONS(5205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), + [anon_sym_BSLASHincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHcaption] = ACTIONS(5205), + [anon_sym_BSLASHcite] = ACTIONS(5205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCite] = ACTIONS(5205), + [anon_sym_BSLASHnocite] = ACTIONS(5205), + [anon_sym_BSLASHcitet] = ACTIONS(5205), + [anon_sym_BSLASHcitep] = ACTIONS(5205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteauthor] = ACTIONS(5205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitetitle] = ACTIONS(5205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteyear] = ACTIONS(5205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitedate] = ACTIONS(5205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteurl] = ACTIONS(5205), + [anon_sym_BSLASHfullcite] = ACTIONS(5205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), + [anon_sym_BSLASHcitealt] = ACTIONS(5205), + [anon_sym_BSLASHcitealp] = ACTIONS(5205), + [anon_sym_BSLASHcitetext] = ACTIONS(5205), + [anon_sym_BSLASHparencite] = ACTIONS(5205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHParencite] = ACTIONS(5205), + [anon_sym_BSLASHfootcite] = ACTIONS(5205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), + [anon_sym_BSLASHtextcite] = ACTIONS(5205), + [anon_sym_BSLASHTextcite] = ACTIONS(5205), + [anon_sym_BSLASHsmartcite] = ACTIONS(5205), + [anon_sym_BSLASHSmartcite] = ACTIONS(5205), + [anon_sym_BSLASHsupercite] = ACTIONS(5205), + [anon_sym_BSLASHautocite] = ACTIONS(5205), + [anon_sym_BSLASHAutocite] = ACTIONS(5205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHvolcite] = ACTIONS(5205), + [anon_sym_BSLASHVolcite] = ACTIONS(5205), + [anon_sym_BSLASHpvolcite] = ACTIONS(5205), + [anon_sym_BSLASHPvolcite] = ACTIONS(5205), + [anon_sym_BSLASHfvolcite] = ACTIONS(5205), + [anon_sym_BSLASHftvolcite] = ACTIONS(5205), + [anon_sym_BSLASHsvolcite] = ACTIONS(5205), + [anon_sym_BSLASHSvolcite] = ACTIONS(5205), + [anon_sym_BSLASHtvolcite] = ACTIONS(5205), + [anon_sym_BSLASHTvolcite] = ACTIONS(5205), + [anon_sym_BSLASHavolcite] = ACTIONS(5205), + [anon_sym_BSLASHAvolcite] = ACTIONS(5205), + [anon_sym_BSLASHnotecite] = ACTIONS(5205), + [anon_sym_BSLASHNotecite] = ACTIONS(5205), + [anon_sym_BSLASHpnotecite] = ACTIONS(5205), + [anon_sym_BSLASHPnotecite] = ACTIONS(5205), + [anon_sym_BSLASHfnotecite] = ACTIONS(5205), + [anon_sym_BSLASHlabel] = ACTIONS(5205), + [anon_sym_BSLASHref] = ACTIONS(5205), + [anon_sym_BSLASHeqref] = ACTIONS(5205), + [anon_sym_BSLASHvref] = ACTIONS(5205), + [anon_sym_BSLASHVref] = ACTIONS(5205), + [anon_sym_BSLASHautoref] = ACTIONS(5205), + [anon_sym_BSLASHpageref] = ACTIONS(5205), + [anon_sym_BSLASHcref] = ACTIONS(5205), + [anon_sym_BSLASHCref] = ACTIONS(5205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnameCref] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHlabelcref] = ACTIONS(5205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCrefrange] = ACTIONS(5205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnewlabel] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), + [anon_sym_BSLASHdef] = ACTIONS(5205), + [anon_sym_BSLASHlet] = ACTIONS(5205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), + [anon_sym_BSLASHgls] = ACTIONS(5205), + [anon_sym_BSLASHGls] = ACTIONS(5205), + [anon_sym_BSLASHGLS] = ACTIONS(5205), + [anon_sym_BSLASHglspl] = ACTIONS(5205), + [anon_sym_BSLASHGlspl] = ACTIONS(5205), + [anon_sym_BSLASHGLSpl] = ACTIONS(5205), + [anon_sym_BSLASHglsdisp] = ACTIONS(5205), + [anon_sym_BSLASHglslink] = ACTIONS(5205), + [anon_sym_BSLASHglstext] = ACTIONS(5205), + [anon_sym_BSLASHGlstext] = ACTIONS(5205), + [anon_sym_BSLASHGLStext] = ACTIONS(5205), + [anon_sym_BSLASHglsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), + [anon_sym_BSLASHglsplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSplural] = ACTIONS(5205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHglsname] = ACTIONS(5205), + [anon_sym_BSLASHGlsname] = ACTIONS(5205), + [anon_sym_BSLASHGLSname] = ACTIONS(5205), + [anon_sym_BSLASHglssymbol] = ACTIONS(5205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), + [anon_sym_BSLASHglsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), + [anon_sym_BSLASHglsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), + [anon_sym_BSLASHglsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), + [anon_sym_BSLASHglsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), + [anon_sym_BSLASHglsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), + [anon_sym_BSLASHnewacronym] = ACTIONS(5205), + [anon_sym_BSLASHacrshort] = ACTIONS(5205), + [anon_sym_BSLASHAcrshort] = ACTIONS(5205), + [anon_sym_BSLASHACRshort] = ACTIONS(5205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), + [anon_sym_BSLASHacrlong] = ACTIONS(5205), + [anon_sym_BSLASHAcrlong] = ACTIONS(5205), + [anon_sym_BSLASHACRlong] = ACTIONS(5205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), + [anon_sym_BSLASHacrfull] = ACTIONS(5205), + [anon_sym_BSLASHAcrfull] = ACTIONS(5205), + [anon_sym_BSLASHACRfull] = ACTIONS(5205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), + [anon_sym_BSLASHacs] = ACTIONS(5205), + [anon_sym_BSLASHAcs] = ACTIONS(5205), + [anon_sym_BSLASHacsp] = ACTIONS(5205), + [anon_sym_BSLASHAcsp] = ACTIONS(5205), + [anon_sym_BSLASHacl] = ACTIONS(5205), + [anon_sym_BSLASHAcl] = ACTIONS(5205), + [anon_sym_BSLASHaclp] = ACTIONS(5205), + [anon_sym_BSLASHAclp] = ACTIONS(5205), + [anon_sym_BSLASHacf] = ACTIONS(5205), + [anon_sym_BSLASHAcf] = ACTIONS(5205), + [anon_sym_BSLASHacfp] = ACTIONS(5205), + [anon_sym_BSLASHAcfp] = ACTIONS(5205), + [anon_sym_BSLASHac] = ACTIONS(5205), + [anon_sym_BSLASHAc] = ACTIONS(5205), + [anon_sym_BSLASHacp] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), + [anon_sym_BSLASHcolor] = ACTIONS(5205), + [anon_sym_BSLASHcolorbox] = ACTIONS(5205), + [anon_sym_BSLASHtextcolor] = ACTIONS(5205), + [anon_sym_BSLASHpagecolor] = ACTIONS(5205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), + [anon_sym_BSLASHtext] = ACTIONS(5205), + [anon_sym_BSLASHintertext] = ACTIONS(5205), + [anon_sym_shortintertext] = ACTIONS(5205), }, - [977] = { - [sym_command_name] = ACTIONS(5073), + [783] = { + [ts_builtin_sym_end] = ACTIONS(5207), + [sym_command_name] = ACTIONS(5209), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_BSLASHpart] = ACTIONS(5073), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddpart] = ACTIONS(5073), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHchapter] = ACTIONS(5073), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddchap] = ACTIONS(5073), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsection] = ACTIONS(5073), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddsec] = ACTIONS(5073), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHparagraph] = ACTIONS(5073), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHitem] = ACTIONS(5073), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5071), - [anon_sym_BSLASHbegin] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHiffalse] = ACTIONS(5209), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_RPAREN] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_RBRACK] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_BSLASHpart] = ACTIONS(5209), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddpart] = ACTIONS(5209), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), + [anon_sym_BSLASHchapter] = ACTIONS(5209), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddchap] = ACTIONS(5209), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsection] = ACTIONS(5209), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddsec] = ACTIONS(5209), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubsection] = ACTIONS(5209), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHparagraph] = ACTIONS(5209), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), + [anon_sym_BSLASHitem] = ACTIONS(5209), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), + [anon_sym_LBRACE] = ACTIONS(5207), + [anon_sym_RBRACE] = ACTIONS(5207), + [sym_word] = ACTIONS(5209), + [sym_placeholder] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_CARET] = ACTIONS(5209), + [anon_sym__] = ACTIONS(5209), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_PIPE] = ACTIONS(5209), + [anon_sym_COLON] = ACTIONS(5209), + [anon_sym_SQUOTE] = ACTIONS(5209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), + [anon_sym_DOLLAR] = ACTIONS(5209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), + [anon_sym_BSLASHbegin] = ACTIONS(5209), + [anon_sym_BSLASHusepackage] = ACTIONS(5209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), + [anon_sym_BSLASHinclude] = ACTIONS(5209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), + [anon_sym_BSLASHinput] = ACTIONS(5209), + [anon_sym_BSLASHsubfile] = ACTIONS(5209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), + [anon_sym_BSLASHbibliography] = ACTIONS(5209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), + [anon_sym_BSLASHincludesvg] = ACTIONS(5209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), + [anon_sym_BSLASHimport] = ACTIONS(5209), + [anon_sym_BSLASHsubimport] = ACTIONS(5209), + [anon_sym_BSLASHinputfrom] = ACTIONS(5209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), + [anon_sym_BSLASHincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHcaption] = ACTIONS(5209), + [anon_sym_BSLASHcite] = ACTIONS(5209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCite] = ACTIONS(5209), + [anon_sym_BSLASHnocite] = ACTIONS(5209), + [anon_sym_BSLASHcitet] = ACTIONS(5209), + [anon_sym_BSLASHcitep] = ACTIONS(5209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteauthor] = ACTIONS(5209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitetitle] = ACTIONS(5209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteyear] = ACTIONS(5209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitedate] = ACTIONS(5209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteurl] = ACTIONS(5209), + [anon_sym_BSLASHfullcite] = ACTIONS(5209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), + [anon_sym_BSLASHcitealt] = ACTIONS(5209), + [anon_sym_BSLASHcitealp] = ACTIONS(5209), + [anon_sym_BSLASHcitetext] = ACTIONS(5209), + [anon_sym_BSLASHparencite] = ACTIONS(5209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHParencite] = ACTIONS(5209), + [anon_sym_BSLASHfootcite] = ACTIONS(5209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), + [anon_sym_BSLASHtextcite] = ACTIONS(5209), + [anon_sym_BSLASHTextcite] = ACTIONS(5209), + [anon_sym_BSLASHsmartcite] = ACTIONS(5209), + [anon_sym_BSLASHSmartcite] = ACTIONS(5209), + [anon_sym_BSLASHsupercite] = ACTIONS(5209), + [anon_sym_BSLASHautocite] = ACTIONS(5209), + [anon_sym_BSLASHAutocite] = ACTIONS(5209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHvolcite] = ACTIONS(5209), + [anon_sym_BSLASHVolcite] = ACTIONS(5209), + [anon_sym_BSLASHpvolcite] = ACTIONS(5209), + [anon_sym_BSLASHPvolcite] = ACTIONS(5209), + [anon_sym_BSLASHfvolcite] = ACTIONS(5209), + [anon_sym_BSLASHftvolcite] = ACTIONS(5209), + [anon_sym_BSLASHsvolcite] = ACTIONS(5209), + [anon_sym_BSLASHSvolcite] = ACTIONS(5209), + [anon_sym_BSLASHtvolcite] = ACTIONS(5209), + [anon_sym_BSLASHTvolcite] = ACTIONS(5209), + [anon_sym_BSLASHavolcite] = ACTIONS(5209), + [anon_sym_BSLASHAvolcite] = ACTIONS(5209), + [anon_sym_BSLASHnotecite] = ACTIONS(5209), + [anon_sym_BSLASHNotecite] = ACTIONS(5209), + [anon_sym_BSLASHpnotecite] = ACTIONS(5209), + [anon_sym_BSLASHPnotecite] = ACTIONS(5209), + [anon_sym_BSLASHfnotecite] = ACTIONS(5209), + [anon_sym_BSLASHlabel] = ACTIONS(5209), + [anon_sym_BSLASHref] = ACTIONS(5209), + [anon_sym_BSLASHeqref] = ACTIONS(5209), + [anon_sym_BSLASHvref] = ACTIONS(5209), + [anon_sym_BSLASHVref] = ACTIONS(5209), + [anon_sym_BSLASHautoref] = ACTIONS(5209), + [anon_sym_BSLASHpageref] = ACTIONS(5209), + [anon_sym_BSLASHcref] = ACTIONS(5209), + [anon_sym_BSLASHCref] = ACTIONS(5209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnameCref] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHlabelcref] = ACTIONS(5209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCrefrange] = ACTIONS(5209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnewlabel] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdef] = ACTIONS(5209), + [anon_sym_BSLASHlet] = ACTIONS(5209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), + [anon_sym_BSLASHgls] = ACTIONS(5209), + [anon_sym_BSLASHGls] = ACTIONS(5209), + [anon_sym_BSLASHGLS] = ACTIONS(5209), + [anon_sym_BSLASHglspl] = ACTIONS(5209), + [anon_sym_BSLASHGlspl] = ACTIONS(5209), + [anon_sym_BSLASHGLSpl] = ACTIONS(5209), + [anon_sym_BSLASHglsdisp] = ACTIONS(5209), + [anon_sym_BSLASHglslink] = ACTIONS(5209), + [anon_sym_BSLASHglstext] = ACTIONS(5209), + [anon_sym_BSLASHGlstext] = ACTIONS(5209), + [anon_sym_BSLASHGLStext] = ACTIONS(5209), + [anon_sym_BSLASHglsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), + [anon_sym_BSLASHglsplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSplural] = ACTIONS(5209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHglsname] = ACTIONS(5209), + [anon_sym_BSLASHGlsname] = ACTIONS(5209), + [anon_sym_BSLASHGLSname] = ACTIONS(5209), + [anon_sym_BSLASHglssymbol] = ACTIONS(5209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), + [anon_sym_BSLASHglsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), + [anon_sym_BSLASHglsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), + [anon_sym_BSLASHglsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), + [anon_sym_BSLASHglsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), + [anon_sym_BSLASHglsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), + [anon_sym_BSLASHnewacronym] = ACTIONS(5209), + [anon_sym_BSLASHacrshort] = ACTIONS(5209), + [anon_sym_BSLASHAcrshort] = ACTIONS(5209), + [anon_sym_BSLASHACRshort] = ACTIONS(5209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), + [anon_sym_BSLASHacrlong] = ACTIONS(5209), + [anon_sym_BSLASHAcrlong] = ACTIONS(5209), + [anon_sym_BSLASHACRlong] = ACTIONS(5209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), + [anon_sym_BSLASHacrfull] = ACTIONS(5209), + [anon_sym_BSLASHAcrfull] = ACTIONS(5209), + [anon_sym_BSLASHACRfull] = ACTIONS(5209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), + [anon_sym_BSLASHacs] = ACTIONS(5209), + [anon_sym_BSLASHAcs] = ACTIONS(5209), + [anon_sym_BSLASHacsp] = ACTIONS(5209), + [anon_sym_BSLASHAcsp] = ACTIONS(5209), + [anon_sym_BSLASHacl] = ACTIONS(5209), + [anon_sym_BSLASHAcl] = ACTIONS(5209), + [anon_sym_BSLASHaclp] = ACTIONS(5209), + [anon_sym_BSLASHAclp] = ACTIONS(5209), + [anon_sym_BSLASHacf] = ACTIONS(5209), + [anon_sym_BSLASHAcf] = ACTIONS(5209), + [anon_sym_BSLASHacfp] = ACTIONS(5209), + [anon_sym_BSLASHAcfp] = ACTIONS(5209), + [anon_sym_BSLASHac] = ACTIONS(5209), + [anon_sym_BSLASHAc] = ACTIONS(5209), + [anon_sym_BSLASHacp] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), + [anon_sym_BSLASHcolor] = ACTIONS(5209), + [anon_sym_BSLASHcolorbox] = ACTIONS(5209), + [anon_sym_BSLASHtextcolor] = ACTIONS(5209), + [anon_sym_BSLASHpagecolor] = ACTIONS(5209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHtext] = ACTIONS(5209), + [anon_sym_BSLASHintertext] = ACTIONS(5209), + [anon_sym_shortintertext] = ACTIONS(5209), }, - [978] = { - [sym_command_name] = ACTIONS(5077), + [784] = { + [ts_builtin_sym_end] = ACTIONS(5211), + [sym_command_name] = ACTIONS(5213), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_RPAREN] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_RBRACK] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_EQ] = ACTIONS(5211), + [anon_sym_BSLASHpart] = ACTIONS(5213), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddpart] = ACTIONS(5213), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5211), + [anon_sym_BSLASHchapter] = ACTIONS(5213), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddchap] = ACTIONS(5213), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsection] = ACTIONS(5213), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddsec] = ACTIONS(5213), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubsection] = ACTIONS(5213), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5213), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHparagraph] = ACTIONS(5213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5213), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5211), + [anon_sym_BSLASHitem] = ACTIONS(5213), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(5211), + [anon_sym_RBRACE] = ACTIONS(5211), + [sym_word] = ACTIONS(5213), + [sym_placeholder] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_CARET] = ACTIONS(5213), + [anon_sym__] = ACTIONS(5213), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_SQUOTE] = ACTIONS(5213), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), + [anon_sym_DOLLAR] = ACTIONS(5213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), + [anon_sym_BSLASHbegin] = ACTIONS(5213), + [anon_sym_BSLASHusepackage] = ACTIONS(5213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), + [anon_sym_BSLASHinclude] = ACTIONS(5213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), + [anon_sym_BSLASHinput] = ACTIONS(5213), + [anon_sym_BSLASHsubfile] = ACTIONS(5213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), + [anon_sym_BSLASHbibliography] = ACTIONS(5213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), + [anon_sym_BSLASHincludesvg] = ACTIONS(5213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), + [anon_sym_BSLASHimport] = ACTIONS(5213), + [anon_sym_BSLASHsubimport] = ACTIONS(5213), + [anon_sym_BSLASHinputfrom] = ACTIONS(5213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), + [anon_sym_BSLASHincludefrom] = ACTIONS(5213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), + [anon_sym_BSLASHcaption] = ACTIONS(5213), + [anon_sym_BSLASHcite] = ACTIONS(5213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCite] = ACTIONS(5213), + [anon_sym_BSLASHnocite] = ACTIONS(5213), + [anon_sym_BSLASHcitet] = ACTIONS(5213), + [anon_sym_BSLASHcitep] = ACTIONS(5213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteauthor] = ACTIONS(5213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitetitle] = ACTIONS(5213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteyear] = ACTIONS(5213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitedate] = ACTIONS(5213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteurl] = ACTIONS(5213), + [anon_sym_BSLASHfullcite] = ACTIONS(5213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), + [anon_sym_BSLASHcitealt] = ACTIONS(5213), + [anon_sym_BSLASHcitealp] = ACTIONS(5213), + [anon_sym_BSLASHcitetext] = ACTIONS(5213), + [anon_sym_BSLASHparencite] = ACTIONS(5213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHParencite] = ACTIONS(5213), + [anon_sym_BSLASHfootcite] = ACTIONS(5213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), + [anon_sym_BSLASHtextcite] = ACTIONS(5213), + [anon_sym_BSLASHTextcite] = ACTIONS(5213), + [anon_sym_BSLASHsmartcite] = ACTIONS(5213), + [anon_sym_BSLASHSmartcite] = ACTIONS(5213), + [anon_sym_BSLASHsupercite] = ACTIONS(5213), + [anon_sym_BSLASHautocite] = ACTIONS(5213), + [anon_sym_BSLASHAutocite] = ACTIONS(5213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHvolcite] = ACTIONS(5213), + [anon_sym_BSLASHVolcite] = ACTIONS(5213), + [anon_sym_BSLASHpvolcite] = ACTIONS(5213), + [anon_sym_BSLASHPvolcite] = ACTIONS(5213), + [anon_sym_BSLASHfvolcite] = ACTIONS(5213), + [anon_sym_BSLASHftvolcite] = ACTIONS(5213), + [anon_sym_BSLASHsvolcite] = ACTIONS(5213), + [anon_sym_BSLASHSvolcite] = ACTIONS(5213), + [anon_sym_BSLASHtvolcite] = ACTIONS(5213), + [anon_sym_BSLASHTvolcite] = ACTIONS(5213), + [anon_sym_BSLASHavolcite] = ACTIONS(5213), + [anon_sym_BSLASHAvolcite] = ACTIONS(5213), + [anon_sym_BSLASHnotecite] = ACTIONS(5213), + [anon_sym_BSLASHNotecite] = ACTIONS(5213), + [anon_sym_BSLASHpnotecite] = ACTIONS(5213), + [anon_sym_BSLASHPnotecite] = ACTIONS(5213), + [anon_sym_BSLASHfnotecite] = ACTIONS(5213), + [anon_sym_BSLASHlabel] = ACTIONS(5213), + [anon_sym_BSLASHref] = ACTIONS(5213), + [anon_sym_BSLASHeqref] = ACTIONS(5213), + [anon_sym_BSLASHvref] = ACTIONS(5213), + [anon_sym_BSLASHVref] = ACTIONS(5213), + [anon_sym_BSLASHautoref] = ACTIONS(5213), + [anon_sym_BSLASHpageref] = ACTIONS(5213), + [anon_sym_BSLASHcref] = ACTIONS(5213), + [anon_sym_BSLASHCref] = ACTIONS(5213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), + [anon_sym_BSLASHnamecref] = ACTIONS(5213), + [anon_sym_BSLASHnameCref] = ACTIONS(5213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), + [anon_sym_BSLASHlabelcref] = ACTIONS(5213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), + [anon_sym_BSLASHcrefrange] = ACTIONS(5213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCrefrange] = ACTIONS(5213), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), + [anon_sym_BSLASHnewlabel] = ACTIONS(5213), + [anon_sym_BSLASHnewcommand] = ACTIONS(5213), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), + [anon_sym_BSLASHdef] = ACTIONS(5213), + [anon_sym_BSLASHlet] = ACTIONS(5213), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), + [anon_sym_BSLASHgls] = ACTIONS(5213), + [anon_sym_BSLASHGls] = ACTIONS(5213), + [anon_sym_BSLASHGLS] = ACTIONS(5213), + [anon_sym_BSLASHglspl] = ACTIONS(5213), + [anon_sym_BSLASHGlspl] = ACTIONS(5213), + [anon_sym_BSLASHGLSpl] = ACTIONS(5213), + [anon_sym_BSLASHglsdisp] = ACTIONS(5213), + [anon_sym_BSLASHglslink] = ACTIONS(5213), + [anon_sym_BSLASHglstext] = ACTIONS(5213), + [anon_sym_BSLASHGlstext] = ACTIONS(5213), + [anon_sym_BSLASHGLStext] = ACTIONS(5213), + [anon_sym_BSLASHglsfirst] = ACTIONS(5213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), + [anon_sym_BSLASHglsplural] = ACTIONS(5213), + [anon_sym_BSLASHGlsplural] = ACTIONS(5213), + [anon_sym_BSLASHGLSplural] = ACTIONS(5213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHglsname] = ACTIONS(5213), + [anon_sym_BSLASHGlsname] = ACTIONS(5213), + [anon_sym_BSLASHGLSname] = ACTIONS(5213), + [anon_sym_BSLASHglssymbol] = ACTIONS(5213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), + [anon_sym_BSLASHglsdesc] = ACTIONS(5213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), + [anon_sym_BSLASHglsuseri] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), + [anon_sym_BSLASHglsuserii] = ACTIONS(5213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), + [anon_sym_BSLASHglsuserv] = ACTIONS(5213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), + [anon_sym_BSLASHglsuservi] = ACTIONS(5213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), + [anon_sym_BSLASHnewacronym] = ACTIONS(5213), + [anon_sym_BSLASHacrshort] = ACTIONS(5213), + [anon_sym_BSLASHAcrshort] = ACTIONS(5213), + [anon_sym_BSLASHACRshort] = ACTIONS(5213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), + [anon_sym_BSLASHacrlong] = ACTIONS(5213), + [anon_sym_BSLASHAcrlong] = ACTIONS(5213), + [anon_sym_BSLASHACRlong] = ACTIONS(5213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), + [anon_sym_BSLASHacrfull] = ACTIONS(5213), + [anon_sym_BSLASHAcrfull] = ACTIONS(5213), + [anon_sym_BSLASHACRfull] = ACTIONS(5213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), + [anon_sym_BSLASHacs] = ACTIONS(5213), + [anon_sym_BSLASHAcs] = ACTIONS(5213), + [anon_sym_BSLASHacsp] = ACTIONS(5213), + [anon_sym_BSLASHAcsp] = ACTIONS(5213), + [anon_sym_BSLASHacl] = ACTIONS(5213), + [anon_sym_BSLASHAcl] = ACTIONS(5213), + [anon_sym_BSLASHaclp] = ACTIONS(5213), + [anon_sym_BSLASHAclp] = ACTIONS(5213), + [anon_sym_BSLASHacf] = ACTIONS(5213), + [anon_sym_BSLASHAcf] = ACTIONS(5213), + [anon_sym_BSLASHacfp] = ACTIONS(5213), + [anon_sym_BSLASHAcfp] = ACTIONS(5213), + [anon_sym_BSLASHac] = ACTIONS(5213), + [anon_sym_BSLASHAc] = ACTIONS(5213), + [anon_sym_BSLASHacp] = ACTIONS(5213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), + [anon_sym_BSLASHtext] = ACTIONS(5213), + [anon_sym_BSLASHintertext] = ACTIONS(5213), + [anon_sym_shortintertext] = ACTIONS(5213), + }, + [785] = { + [sym_brack_group_text] = STATE(1226), + [sym_command_name] = ACTIONS(4879), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4877), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(4965), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_COMMA] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_BSLASHpart] = ACTIONS(4879), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddpart] = ACTIONS(4879), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4877), + [anon_sym_BSLASHchapter] = ACTIONS(4879), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddchap] = ACTIONS(4879), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsection] = ACTIONS(4879), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHaddsec] = ACTIONS(4879), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubsection] = ACTIONS(4879), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4879), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4877), + [anon_sym_BSLASHparagraph] = ACTIONS(4879), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4877), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4879), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4877), + [anon_sym_BSLASHitem] = ACTIONS(4879), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4877), + [sym_word] = ACTIONS(4879), + [sym_placeholder] = ACTIONS(4877), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4879), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_CARET] = ACTIONS(4879), + [anon_sym__] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_COLON] = ACTIONS(4879), + [anon_sym_SQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(4879), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), + [anon_sym_BSLASHbegin] = ACTIONS(4879), + [anon_sym_BSLASHend] = ACTIONS(4879), + [anon_sym_BSLASHusepackage] = ACTIONS(4879), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), + [anon_sym_BSLASHinclude] = ACTIONS(4879), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), + [anon_sym_BSLASHinput] = ACTIONS(4879), + [anon_sym_BSLASHsubfile] = ACTIONS(4879), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), + [anon_sym_BSLASHbibliography] = ACTIONS(4879), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), + [anon_sym_BSLASHincludesvg] = ACTIONS(4879), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), + [anon_sym_BSLASHimport] = ACTIONS(4879), + [anon_sym_BSLASHsubimport] = ACTIONS(4879), + [anon_sym_BSLASHinputfrom] = ACTIONS(4879), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), + [anon_sym_BSLASHincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHcaption] = ACTIONS(4879), + [anon_sym_BSLASHcite] = ACTIONS(4879), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCite] = ACTIONS(4879), + [anon_sym_BSLASHnocite] = ACTIONS(4879), + [anon_sym_BSLASHcitet] = ACTIONS(4879), + [anon_sym_BSLASHcitep] = ACTIONS(4879), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteauthor] = ACTIONS(4879), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitetitle] = ACTIONS(4879), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteyear] = ACTIONS(4879), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitedate] = ACTIONS(4879), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteurl] = ACTIONS(4879), + [anon_sym_BSLASHfullcite] = ACTIONS(4879), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), + [anon_sym_BSLASHcitealt] = ACTIONS(4879), + [anon_sym_BSLASHcitealp] = ACTIONS(4879), + [anon_sym_BSLASHcitetext] = ACTIONS(4879), + [anon_sym_BSLASHparencite] = ACTIONS(4879), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHParencite] = ACTIONS(4879), + [anon_sym_BSLASHfootcite] = ACTIONS(4879), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), + [anon_sym_BSLASHtextcite] = ACTIONS(4879), + [anon_sym_BSLASHTextcite] = ACTIONS(4879), + [anon_sym_BSLASHsmartcite] = ACTIONS(4879), + [anon_sym_BSLASHSmartcite] = ACTIONS(4879), + [anon_sym_BSLASHsupercite] = ACTIONS(4879), + [anon_sym_BSLASHautocite] = ACTIONS(4879), + [anon_sym_BSLASHAutocite] = ACTIONS(4879), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHvolcite] = ACTIONS(4879), + [anon_sym_BSLASHVolcite] = ACTIONS(4879), + [anon_sym_BSLASHpvolcite] = ACTIONS(4879), + [anon_sym_BSLASHPvolcite] = ACTIONS(4879), + [anon_sym_BSLASHfvolcite] = ACTIONS(4879), + [anon_sym_BSLASHftvolcite] = ACTIONS(4879), + [anon_sym_BSLASHsvolcite] = ACTIONS(4879), + [anon_sym_BSLASHSvolcite] = ACTIONS(4879), + [anon_sym_BSLASHtvolcite] = ACTIONS(4879), + [anon_sym_BSLASHTvolcite] = ACTIONS(4879), + [anon_sym_BSLASHavolcite] = ACTIONS(4879), + [anon_sym_BSLASHAvolcite] = ACTIONS(4879), + [anon_sym_BSLASHnotecite] = ACTIONS(4879), + [anon_sym_BSLASHNotecite] = ACTIONS(4879), + [anon_sym_BSLASHpnotecite] = ACTIONS(4879), + [anon_sym_BSLASHPnotecite] = ACTIONS(4879), + [anon_sym_BSLASHfnotecite] = ACTIONS(4879), + [anon_sym_BSLASHlabel] = ACTIONS(4879), + [anon_sym_BSLASHref] = ACTIONS(4879), + [anon_sym_BSLASHeqref] = ACTIONS(4879), + [anon_sym_BSLASHvref] = ACTIONS(4879), + [anon_sym_BSLASHVref] = ACTIONS(4879), + [anon_sym_BSLASHautoref] = ACTIONS(4879), + [anon_sym_BSLASHpageref] = ACTIONS(4879), + [anon_sym_BSLASHcref] = ACTIONS(4879), + [anon_sym_BSLASHCref] = ACTIONS(4879), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnameCref] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHlabelcref] = ACTIONS(4879), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCrefrange] = ACTIONS(4879), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnewlabel] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), + [anon_sym_BSLASHdef] = ACTIONS(4879), + [anon_sym_BSLASHlet] = ACTIONS(4879), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), + [anon_sym_BSLASHgls] = ACTIONS(4879), + [anon_sym_BSLASHGls] = ACTIONS(4879), + [anon_sym_BSLASHGLS] = ACTIONS(4879), + [anon_sym_BSLASHglspl] = ACTIONS(4879), + [anon_sym_BSLASHGlspl] = ACTIONS(4879), + [anon_sym_BSLASHGLSpl] = ACTIONS(4879), + [anon_sym_BSLASHglsdisp] = ACTIONS(4879), + [anon_sym_BSLASHglslink] = ACTIONS(4879), + [anon_sym_BSLASHglstext] = ACTIONS(4879), + [anon_sym_BSLASHGlstext] = ACTIONS(4879), + [anon_sym_BSLASHGLStext] = ACTIONS(4879), + [anon_sym_BSLASHglsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), + [anon_sym_BSLASHglsplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSplural] = ACTIONS(4879), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHglsname] = ACTIONS(4879), + [anon_sym_BSLASHGlsname] = ACTIONS(4879), + [anon_sym_BSLASHGLSname] = ACTIONS(4879), + [anon_sym_BSLASHglssymbol] = ACTIONS(4879), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), + [anon_sym_BSLASHglsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), + [anon_sym_BSLASHglsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), + [anon_sym_BSLASHglsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), + [anon_sym_BSLASHglsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), + [anon_sym_BSLASHglsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), + [anon_sym_BSLASHnewacronym] = ACTIONS(4879), + [anon_sym_BSLASHacrshort] = ACTIONS(4879), + [anon_sym_BSLASHAcrshort] = ACTIONS(4879), + [anon_sym_BSLASHACRshort] = ACTIONS(4879), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), + [anon_sym_BSLASHacrlong] = ACTIONS(4879), + [anon_sym_BSLASHAcrlong] = ACTIONS(4879), + [anon_sym_BSLASHACRlong] = ACTIONS(4879), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), + [anon_sym_BSLASHacrfull] = ACTIONS(4879), + [anon_sym_BSLASHAcrfull] = ACTIONS(4879), + [anon_sym_BSLASHACRfull] = ACTIONS(4879), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), + [anon_sym_BSLASHacs] = ACTIONS(4879), + [anon_sym_BSLASHAcs] = ACTIONS(4879), + [anon_sym_BSLASHacsp] = ACTIONS(4879), + [anon_sym_BSLASHAcsp] = ACTIONS(4879), + [anon_sym_BSLASHacl] = ACTIONS(4879), + [anon_sym_BSLASHAcl] = ACTIONS(4879), + [anon_sym_BSLASHaclp] = ACTIONS(4879), + [anon_sym_BSLASHAclp] = ACTIONS(4879), + [anon_sym_BSLASHacf] = ACTIONS(4879), + [anon_sym_BSLASHAcf] = ACTIONS(4879), + [anon_sym_BSLASHacfp] = ACTIONS(4879), + [anon_sym_BSLASHAcfp] = ACTIONS(4879), + [anon_sym_BSLASHac] = ACTIONS(4879), + [anon_sym_BSLASHAc] = ACTIONS(4879), + [anon_sym_BSLASHacp] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), + [anon_sym_BSLASHcolor] = ACTIONS(4879), + [anon_sym_BSLASHcolorbox] = ACTIONS(4879), + [anon_sym_BSLASHtextcolor] = ACTIONS(4879), + [anon_sym_BSLASHpagecolor] = ACTIONS(4879), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), + [anon_sym_BSLASHtext] = ACTIONS(4879), + [anon_sym_BSLASHintertext] = ACTIONS(4879), + [anon_sym_shortintertext] = ACTIONS(4879), + }, + [786] = { + [ts_builtin_sym_end] = ACTIONS(5215), + [sym_command_name] = ACTIONS(5217), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5217), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_RPAREN] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_RBRACK] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_BSLASHpart] = ACTIONS(5217), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddpart] = ACTIONS(5217), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), + [anon_sym_BSLASHchapter] = ACTIONS(5217), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddchap] = ACTIONS(5217), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsection] = ACTIONS(5217), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddsec] = ACTIONS(5217), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubsection] = ACTIONS(5217), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHparagraph] = ACTIONS(5217), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), + [anon_sym_BSLASHitem] = ACTIONS(5217), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(5215), + [anon_sym_RBRACE] = ACTIONS(5215), + [sym_word] = ACTIONS(5217), + [sym_placeholder] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5217), + [anon_sym_DASH] = ACTIONS(5217), + [anon_sym_STAR] = ACTIONS(5217), + [anon_sym_SLASH] = ACTIONS(5217), + [anon_sym_CARET] = ACTIONS(5217), + [anon_sym__] = ACTIONS(5217), + [anon_sym_LT] = ACTIONS(5217), + [anon_sym_GT] = ACTIONS(5217), + [anon_sym_BANG] = ACTIONS(5217), + [anon_sym_PIPE] = ACTIONS(5217), + [anon_sym_COLON] = ACTIONS(5217), + [anon_sym_SQUOTE] = ACTIONS(5217), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), + [anon_sym_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), + [anon_sym_BSLASHbegin] = ACTIONS(5217), + [anon_sym_BSLASHusepackage] = ACTIONS(5217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), + [anon_sym_BSLASHinclude] = ACTIONS(5217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), + [anon_sym_BSLASHinput] = ACTIONS(5217), + [anon_sym_BSLASHsubfile] = ACTIONS(5217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), + [anon_sym_BSLASHbibliography] = ACTIONS(5217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), + [anon_sym_BSLASHincludesvg] = ACTIONS(5217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), + [anon_sym_BSLASHimport] = ACTIONS(5217), + [anon_sym_BSLASHsubimport] = ACTIONS(5217), + [anon_sym_BSLASHinputfrom] = ACTIONS(5217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), + [anon_sym_BSLASHincludefrom] = ACTIONS(5217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), + [anon_sym_BSLASHcaption] = ACTIONS(5217), + [anon_sym_BSLASHcite] = ACTIONS(5217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCite] = ACTIONS(5217), + [anon_sym_BSLASHnocite] = ACTIONS(5217), + [anon_sym_BSLASHcitet] = ACTIONS(5217), + [anon_sym_BSLASHcitep] = ACTIONS(5217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteauthor] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitetitle] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteyear] = ACTIONS(5217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitedate] = ACTIONS(5217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteurl] = ACTIONS(5217), + [anon_sym_BSLASHfullcite] = ACTIONS(5217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), + [anon_sym_BSLASHcitealt] = ACTIONS(5217), + [anon_sym_BSLASHcitealp] = ACTIONS(5217), + [anon_sym_BSLASHcitetext] = ACTIONS(5217), + [anon_sym_BSLASHparencite] = ACTIONS(5217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHParencite] = ACTIONS(5217), + [anon_sym_BSLASHfootcite] = ACTIONS(5217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), + [anon_sym_BSLASHtextcite] = ACTIONS(5217), + [anon_sym_BSLASHTextcite] = ACTIONS(5217), + [anon_sym_BSLASHsmartcite] = ACTIONS(5217), + [anon_sym_BSLASHSmartcite] = ACTIONS(5217), + [anon_sym_BSLASHsupercite] = ACTIONS(5217), + [anon_sym_BSLASHautocite] = ACTIONS(5217), + [anon_sym_BSLASHAutocite] = ACTIONS(5217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHvolcite] = ACTIONS(5217), + [anon_sym_BSLASHVolcite] = ACTIONS(5217), + [anon_sym_BSLASHpvolcite] = ACTIONS(5217), + [anon_sym_BSLASHPvolcite] = ACTIONS(5217), + [anon_sym_BSLASHfvolcite] = ACTIONS(5217), + [anon_sym_BSLASHftvolcite] = ACTIONS(5217), + [anon_sym_BSLASHsvolcite] = ACTIONS(5217), + [anon_sym_BSLASHSvolcite] = ACTIONS(5217), + [anon_sym_BSLASHtvolcite] = ACTIONS(5217), + [anon_sym_BSLASHTvolcite] = ACTIONS(5217), + [anon_sym_BSLASHavolcite] = ACTIONS(5217), + [anon_sym_BSLASHAvolcite] = ACTIONS(5217), + [anon_sym_BSLASHnotecite] = ACTIONS(5217), + [anon_sym_BSLASHNotecite] = ACTIONS(5217), + [anon_sym_BSLASHpnotecite] = ACTIONS(5217), + [anon_sym_BSLASHPnotecite] = ACTIONS(5217), + [anon_sym_BSLASHfnotecite] = ACTIONS(5217), + [anon_sym_BSLASHlabel] = ACTIONS(5217), + [anon_sym_BSLASHref] = ACTIONS(5217), + [anon_sym_BSLASHeqref] = ACTIONS(5217), + [anon_sym_BSLASHvref] = ACTIONS(5217), + [anon_sym_BSLASHVref] = ACTIONS(5217), + [anon_sym_BSLASHautoref] = ACTIONS(5217), + [anon_sym_BSLASHpageref] = ACTIONS(5217), + [anon_sym_BSLASHcref] = ACTIONS(5217), + [anon_sym_BSLASHCref] = ACTIONS(5217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), + [anon_sym_BSLASHnamecref] = ACTIONS(5217), + [anon_sym_BSLASHnameCref] = ACTIONS(5217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), + [anon_sym_BSLASHlabelcref] = ACTIONS(5217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), + [anon_sym_BSLASHcrefrange] = ACTIONS(5217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCrefrange] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), + [anon_sym_BSLASHnewlabel] = ACTIONS(5217), + [anon_sym_BSLASHnewcommand] = ACTIONS(5217), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), + [anon_sym_BSLASHdef] = ACTIONS(5217), + [anon_sym_BSLASHlet] = ACTIONS(5217), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), + [anon_sym_BSLASHgls] = ACTIONS(5217), + [anon_sym_BSLASHGls] = ACTIONS(5217), + [anon_sym_BSLASHGLS] = ACTIONS(5217), + [anon_sym_BSLASHglspl] = ACTIONS(5217), + [anon_sym_BSLASHGlspl] = ACTIONS(5217), + [anon_sym_BSLASHGLSpl] = ACTIONS(5217), + [anon_sym_BSLASHglsdisp] = ACTIONS(5217), + [anon_sym_BSLASHglslink] = ACTIONS(5217), + [anon_sym_BSLASHglstext] = ACTIONS(5217), + [anon_sym_BSLASHGlstext] = ACTIONS(5217), + [anon_sym_BSLASHGLStext] = ACTIONS(5217), + [anon_sym_BSLASHglsfirst] = ACTIONS(5217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), + [anon_sym_BSLASHglsplural] = ACTIONS(5217), + [anon_sym_BSLASHGlsplural] = ACTIONS(5217), + [anon_sym_BSLASHGLSplural] = ACTIONS(5217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHglsname] = ACTIONS(5217), + [anon_sym_BSLASHGlsname] = ACTIONS(5217), + [anon_sym_BSLASHGLSname] = ACTIONS(5217), + [anon_sym_BSLASHglssymbol] = ACTIONS(5217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), + [anon_sym_BSLASHglsdesc] = ACTIONS(5217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), + [anon_sym_BSLASHglsuseri] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), + [anon_sym_BSLASHglsuserii] = ACTIONS(5217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), + [anon_sym_BSLASHglsuserv] = ACTIONS(5217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), + [anon_sym_BSLASHglsuservi] = ACTIONS(5217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), + [anon_sym_BSLASHnewacronym] = ACTIONS(5217), + [anon_sym_BSLASHacrshort] = ACTIONS(5217), + [anon_sym_BSLASHAcrshort] = ACTIONS(5217), + [anon_sym_BSLASHACRshort] = ACTIONS(5217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), + [anon_sym_BSLASHacrlong] = ACTIONS(5217), + [anon_sym_BSLASHAcrlong] = ACTIONS(5217), + [anon_sym_BSLASHACRlong] = ACTIONS(5217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), + [anon_sym_BSLASHacrfull] = ACTIONS(5217), + [anon_sym_BSLASHAcrfull] = ACTIONS(5217), + [anon_sym_BSLASHACRfull] = ACTIONS(5217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), + [anon_sym_BSLASHacs] = ACTIONS(5217), + [anon_sym_BSLASHAcs] = ACTIONS(5217), + [anon_sym_BSLASHacsp] = ACTIONS(5217), + [anon_sym_BSLASHAcsp] = ACTIONS(5217), + [anon_sym_BSLASHacl] = ACTIONS(5217), + [anon_sym_BSLASHAcl] = ACTIONS(5217), + [anon_sym_BSLASHaclp] = ACTIONS(5217), + [anon_sym_BSLASHAclp] = ACTIONS(5217), + [anon_sym_BSLASHacf] = ACTIONS(5217), + [anon_sym_BSLASHAcf] = ACTIONS(5217), + [anon_sym_BSLASHacfp] = ACTIONS(5217), + [anon_sym_BSLASHAcfp] = ACTIONS(5217), + [anon_sym_BSLASHac] = ACTIONS(5217), + [anon_sym_BSLASHAc] = ACTIONS(5217), + [anon_sym_BSLASHacp] = ACTIONS(5217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), + [anon_sym_BSLASHcolor] = ACTIONS(5217), + [anon_sym_BSLASHcolorbox] = ACTIONS(5217), + [anon_sym_BSLASHtextcolor] = ACTIONS(5217), + [anon_sym_BSLASHpagecolor] = ACTIONS(5217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [anon_sym_BSLASHtext] = ACTIONS(5217), + [anon_sym_BSLASHintertext] = ACTIONS(5217), + [anon_sym_shortintertext] = ACTIONS(5217), + }, + [787] = { + [ts_builtin_sym_end] = ACTIONS(5219), + [sym_command_name] = ACTIONS(5221), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_BSLASHpart] = ACTIONS(5077), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddpart] = ACTIONS(5077), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHchapter] = ACTIONS(5077), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddchap] = ACTIONS(5077), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsection] = ACTIONS(5077), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddsec] = ACTIONS(5077), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHparagraph] = ACTIONS(5077), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHitem] = ACTIONS(5077), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5077), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5075), - [anon_sym_BSLASHbegin] = ACTIONS(5077), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), + [anon_sym_BSLASHiffalse] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5219), + [anon_sym_RPAREN] = ACTIONS(5219), + [anon_sym_LBRACK] = ACTIONS(5219), + [anon_sym_RBRACK] = ACTIONS(5219), + [anon_sym_COMMA] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_BSLASHpart] = ACTIONS(5221), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddpart] = ACTIONS(5221), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), + [anon_sym_BSLASHchapter] = ACTIONS(5221), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddchap] = ACTIONS(5221), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsection] = ACTIONS(5221), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddsec] = ACTIONS(5221), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubsection] = ACTIONS(5221), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHparagraph] = ACTIONS(5221), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), + [anon_sym_BSLASHitem] = ACTIONS(5221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5219), + [anon_sym_RBRACE] = ACTIONS(5219), + [sym_word] = ACTIONS(5221), + [sym_placeholder] = ACTIONS(5219), + [anon_sym_PLUS] = ACTIONS(5221), + [anon_sym_DASH] = ACTIONS(5221), + [anon_sym_STAR] = ACTIONS(5221), + [anon_sym_SLASH] = ACTIONS(5221), + [anon_sym_CARET] = ACTIONS(5221), + [anon_sym__] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5221), + [anon_sym_GT] = ACTIONS(5221), + [anon_sym_BANG] = ACTIONS(5221), + [anon_sym_PIPE] = ACTIONS(5221), + [anon_sym_COLON] = ACTIONS(5221), + [anon_sym_SQUOTE] = ACTIONS(5221), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), + [anon_sym_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), + [anon_sym_BSLASHbegin] = ACTIONS(5221), + [anon_sym_BSLASHusepackage] = ACTIONS(5221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), + [anon_sym_BSLASHinclude] = ACTIONS(5221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), + [anon_sym_BSLASHinput] = ACTIONS(5221), + [anon_sym_BSLASHsubfile] = ACTIONS(5221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), + [anon_sym_BSLASHbibliography] = ACTIONS(5221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), + [anon_sym_BSLASHincludesvg] = ACTIONS(5221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), + [anon_sym_BSLASHimport] = ACTIONS(5221), + [anon_sym_BSLASHsubimport] = ACTIONS(5221), + [anon_sym_BSLASHinputfrom] = ACTIONS(5221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), + [anon_sym_BSLASHincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHcaption] = ACTIONS(5221), + [anon_sym_BSLASHcite] = ACTIONS(5221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCite] = ACTIONS(5221), + [anon_sym_BSLASHnocite] = ACTIONS(5221), + [anon_sym_BSLASHcitet] = ACTIONS(5221), + [anon_sym_BSLASHcitep] = ACTIONS(5221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteyear] = ACTIONS(5221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitedate] = ACTIONS(5221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteurl] = ACTIONS(5221), + [anon_sym_BSLASHfullcite] = ACTIONS(5221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), + [anon_sym_BSLASHcitealt] = ACTIONS(5221), + [anon_sym_BSLASHcitealp] = ACTIONS(5221), + [anon_sym_BSLASHcitetext] = ACTIONS(5221), + [anon_sym_BSLASHparencite] = ACTIONS(5221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHParencite] = ACTIONS(5221), + [anon_sym_BSLASHfootcite] = ACTIONS(5221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), + [anon_sym_BSLASHtextcite] = ACTIONS(5221), + [anon_sym_BSLASHTextcite] = ACTIONS(5221), + [anon_sym_BSLASHsmartcite] = ACTIONS(5221), + [anon_sym_BSLASHSmartcite] = ACTIONS(5221), + [anon_sym_BSLASHsupercite] = ACTIONS(5221), + [anon_sym_BSLASHautocite] = ACTIONS(5221), + [anon_sym_BSLASHAutocite] = ACTIONS(5221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHvolcite] = ACTIONS(5221), + [anon_sym_BSLASHVolcite] = ACTIONS(5221), + [anon_sym_BSLASHpvolcite] = ACTIONS(5221), + [anon_sym_BSLASHPvolcite] = ACTIONS(5221), + [anon_sym_BSLASHfvolcite] = ACTIONS(5221), + [anon_sym_BSLASHftvolcite] = ACTIONS(5221), + [anon_sym_BSLASHsvolcite] = ACTIONS(5221), + [anon_sym_BSLASHSvolcite] = ACTIONS(5221), + [anon_sym_BSLASHtvolcite] = ACTIONS(5221), + [anon_sym_BSLASHTvolcite] = ACTIONS(5221), + [anon_sym_BSLASHavolcite] = ACTIONS(5221), + [anon_sym_BSLASHAvolcite] = ACTIONS(5221), + [anon_sym_BSLASHnotecite] = ACTIONS(5221), + [anon_sym_BSLASHNotecite] = ACTIONS(5221), + [anon_sym_BSLASHpnotecite] = ACTIONS(5221), + [anon_sym_BSLASHPnotecite] = ACTIONS(5221), + [anon_sym_BSLASHfnotecite] = ACTIONS(5221), + [anon_sym_BSLASHlabel] = ACTIONS(5221), + [anon_sym_BSLASHref] = ACTIONS(5221), + [anon_sym_BSLASHeqref] = ACTIONS(5221), + [anon_sym_BSLASHvref] = ACTIONS(5221), + [anon_sym_BSLASHVref] = ACTIONS(5221), + [anon_sym_BSLASHautoref] = ACTIONS(5221), + [anon_sym_BSLASHpageref] = ACTIONS(5221), + [anon_sym_BSLASHcref] = ACTIONS(5221), + [anon_sym_BSLASHCref] = ACTIONS(5221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnameCref] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHlabelcref] = ACTIONS(5221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnewlabel] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), + [anon_sym_BSLASHdef] = ACTIONS(5221), + [anon_sym_BSLASHlet] = ACTIONS(5221), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), + [anon_sym_BSLASHgls] = ACTIONS(5221), + [anon_sym_BSLASHGls] = ACTIONS(5221), + [anon_sym_BSLASHGLS] = ACTIONS(5221), + [anon_sym_BSLASHglspl] = ACTIONS(5221), + [anon_sym_BSLASHGlspl] = ACTIONS(5221), + [anon_sym_BSLASHGLSpl] = ACTIONS(5221), + [anon_sym_BSLASHglsdisp] = ACTIONS(5221), + [anon_sym_BSLASHglslink] = ACTIONS(5221), + [anon_sym_BSLASHglstext] = ACTIONS(5221), + [anon_sym_BSLASHGlstext] = ACTIONS(5221), + [anon_sym_BSLASHGLStext] = ACTIONS(5221), + [anon_sym_BSLASHglsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), + [anon_sym_BSLASHglsplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSplural] = ACTIONS(5221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHglsname] = ACTIONS(5221), + [anon_sym_BSLASHGlsname] = ACTIONS(5221), + [anon_sym_BSLASHGLSname] = ACTIONS(5221), + [anon_sym_BSLASHglssymbol] = ACTIONS(5221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), + [anon_sym_BSLASHglsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), + [anon_sym_BSLASHglsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), + [anon_sym_BSLASHglsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), + [anon_sym_BSLASHglsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), + [anon_sym_BSLASHglsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), + [anon_sym_BSLASHnewacronym] = ACTIONS(5221), + [anon_sym_BSLASHacrshort] = ACTIONS(5221), + [anon_sym_BSLASHAcrshort] = ACTIONS(5221), + [anon_sym_BSLASHACRshort] = ACTIONS(5221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), + [anon_sym_BSLASHacrlong] = ACTIONS(5221), + [anon_sym_BSLASHAcrlong] = ACTIONS(5221), + [anon_sym_BSLASHACRlong] = ACTIONS(5221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), + [anon_sym_BSLASHacrfull] = ACTIONS(5221), + [anon_sym_BSLASHAcrfull] = ACTIONS(5221), + [anon_sym_BSLASHACRfull] = ACTIONS(5221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), + [anon_sym_BSLASHacs] = ACTIONS(5221), + [anon_sym_BSLASHAcs] = ACTIONS(5221), + [anon_sym_BSLASHacsp] = ACTIONS(5221), + [anon_sym_BSLASHAcsp] = ACTIONS(5221), + [anon_sym_BSLASHacl] = ACTIONS(5221), + [anon_sym_BSLASHAcl] = ACTIONS(5221), + [anon_sym_BSLASHaclp] = ACTIONS(5221), + [anon_sym_BSLASHAclp] = ACTIONS(5221), + [anon_sym_BSLASHacf] = ACTIONS(5221), + [anon_sym_BSLASHAcf] = ACTIONS(5221), + [anon_sym_BSLASHacfp] = ACTIONS(5221), + [anon_sym_BSLASHAcfp] = ACTIONS(5221), + [anon_sym_BSLASHac] = ACTIONS(5221), + [anon_sym_BSLASHAc] = ACTIONS(5221), + [anon_sym_BSLASHacp] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), + [anon_sym_BSLASHcolor] = ACTIONS(5221), + [anon_sym_BSLASHcolorbox] = ACTIONS(5221), + [anon_sym_BSLASHtextcolor] = ACTIONS(5221), + [anon_sym_BSLASHpagecolor] = ACTIONS(5221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), + [anon_sym_BSLASHtext] = ACTIONS(5221), + [anon_sym_BSLASHintertext] = ACTIONS(5221), + [anon_sym_shortintertext] = ACTIONS(5221), }, - [979] = { - [sym_command_name] = ACTIONS(5081), + [788] = { + [ts_builtin_sym_end] = ACTIONS(5223), + [sym_command_name] = ACTIONS(5225), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_BSLASHpart] = ACTIONS(5081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddpart] = ACTIONS(5081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHchapter] = ACTIONS(5081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddchap] = ACTIONS(5081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsection] = ACTIONS(5081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddsec] = ACTIONS(5081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHparagraph] = ACTIONS(5081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHitem] = ACTIONS(5081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5079), - [anon_sym_BSLASHbegin] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), + [anon_sym_BSLASHiffalse] = ACTIONS(5225), + [anon_sym_LPAREN] = ACTIONS(5223), + [anon_sym_RPAREN] = ACTIONS(5223), + [anon_sym_LBRACK] = ACTIONS(5223), + [anon_sym_RBRACK] = ACTIONS(5223), + [anon_sym_COMMA] = ACTIONS(5223), + [anon_sym_EQ] = ACTIONS(5223), + [anon_sym_BSLASHpart] = ACTIONS(5225), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddpart] = ACTIONS(5225), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), + [anon_sym_BSLASHchapter] = ACTIONS(5225), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddchap] = ACTIONS(5225), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsection] = ACTIONS(5225), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddsec] = ACTIONS(5225), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubsection] = ACTIONS(5225), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHparagraph] = ACTIONS(5225), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), + [anon_sym_BSLASHitem] = ACTIONS(5225), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), + [anon_sym_LBRACE] = ACTIONS(5223), + [anon_sym_RBRACE] = ACTIONS(5223), + [sym_word] = ACTIONS(5225), + [sym_placeholder] = ACTIONS(5223), + [anon_sym_PLUS] = ACTIONS(5225), + [anon_sym_DASH] = ACTIONS(5225), + [anon_sym_STAR] = ACTIONS(5225), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_CARET] = ACTIONS(5225), + [anon_sym__] = ACTIONS(5225), + [anon_sym_LT] = ACTIONS(5225), + [anon_sym_GT] = ACTIONS(5225), + [anon_sym_BANG] = ACTIONS(5225), + [anon_sym_PIPE] = ACTIONS(5225), + [anon_sym_COLON] = ACTIONS(5225), + [anon_sym_SQUOTE] = ACTIONS(5225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), + [anon_sym_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), + [anon_sym_BSLASHbegin] = ACTIONS(5225), + [anon_sym_BSLASHusepackage] = ACTIONS(5225), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), + [anon_sym_BSLASHinclude] = ACTIONS(5225), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), + [anon_sym_BSLASHinput] = ACTIONS(5225), + [anon_sym_BSLASHsubfile] = ACTIONS(5225), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), + [anon_sym_BSLASHbibliography] = ACTIONS(5225), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), + [anon_sym_BSLASHincludesvg] = ACTIONS(5225), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), + [anon_sym_BSLASHimport] = ACTIONS(5225), + [anon_sym_BSLASHsubimport] = ACTIONS(5225), + [anon_sym_BSLASHinputfrom] = ACTIONS(5225), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), + [anon_sym_BSLASHincludefrom] = ACTIONS(5225), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), + [anon_sym_BSLASHcaption] = ACTIONS(5225), + [anon_sym_BSLASHcite] = ACTIONS(5225), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCite] = ACTIONS(5225), + [anon_sym_BSLASHnocite] = ACTIONS(5225), + [anon_sym_BSLASHcitet] = ACTIONS(5225), + [anon_sym_BSLASHcitep] = ACTIONS(5225), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteyear] = ACTIONS(5225), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitedate] = ACTIONS(5225), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteurl] = ACTIONS(5225), + [anon_sym_BSLASHfullcite] = ACTIONS(5225), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), + [anon_sym_BSLASHcitealt] = ACTIONS(5225), + [anon_sym_BSLASHcitealp] = ACTIONS(5225), + [anon_sym_BSLASHcitetext] = ACTIONS(5225), + [anon_sym_BSLASHparencite] = ACTIONS(5225), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHParencite] = ACTIONS(5225), + [anon_sym_BSLASHfootcite] = ACTIONS(5225), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), + [anon_sym_BSLASHtextcite] = ACTIONS(5225), + [anon_sym_BSLASHTextcite] = ACTIONS(5225), + [anon_sym_BSLASHsmartcite] = ACTIONS(5225), + [anon_sym_BSLASHSmartcite] = ACTIONS(5225), + [anon_sym_BSLASHsupercite] = ACTIONS(5225), + [anon_sym_BSLASHautocite] = ACTIONS(5225), + [anon_sym_BSLASHAutocite] = ACTIONS(5225), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHvolcite] = ACTIONS(5225), + [anon_sym_BSLASHVolcite] = ACTIONS(5225), + [anon_sym_BSLASHpvolcite] = ACTIONS(5225), + [anon_sym_BSLASHPvolcite] = ACTIONS(5225), + [anon_sym_BSLASHfvolcite] = ACTIONS(5225), + [anon_sym_BSLASHftvolcite] = ACTIONS(5225), + [anon_sym_BSLASHsvolcite] = ACTIONS(5225), + [anon_sym_BSLASHSvolcite] = ACTIONS(5225), + [anon_sym_BSLASHtvolcite] = ACTIONS(5225), + [anon_sym_BSLASHTvolcite] = ACTIONS(5225), + [anon_sym_BSLASHavolcite] = ACTIONS(5225), + [anon_sym_BSLASHAvolcite] = ACTIONS(5225), + [anon_sym_BSLASHnotecite] = ACTIONS(5225), + [anon_sym_BSLASHNotecite] = ACTIONS(5225), + [anon_sym_BSLASHpnotecite] = ACTIONS(5225), + [anon_sym_BSLASHPnotecite] = ACTIONS(5225), + [anon_sym_BSLASHfnotecite] = ACTIONS(5225), + [anon_sym_BSLASHlabel] = ACTIONS(5225), + [anon_sym_BSLASHref] = ACTIONS(5225), + [anon_sym_BSLASHeqref] = ACTIONS(5225), + [anon_sym_BSLASHvref] = ACTIONS(5225), + [anon_sym_BSLASHVref] = ACTIONS(5225), + [anon_sym_BSLASHautoref] = ACTIONS(5225), + [anon_sym_BSLASHpageref] = ACTIONS(5225), + [anon_sym_BSLASHcref] = ACTIONS(5225), + [anon_sym_BSLASHCref] = ACTIONS(5225), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), + [anon_sym_BSLASHnamecref] = ACTIONS(5225), + [anon_sym_BSLASHnameCref] = ACTIONS(5225), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), + [anon_sym_BSLASHlabelcref] = ACTIONS(5225), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), + [anon_sym_BSLASHcrefrange] = ACTIONS(5225), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), + [anon_sym_BSLASHnewlabel] = ACTIONS(5225), + [anon_sym_BSLASHnewcommand] = ACTIONS(5225), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), + [anon_sym_BSLASHdef] = ACTIONS(5225), + [anon_sym_BSLASHlet] = ACTIONS(5225), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), + [anon_sym_BSLASHgls] = ACTIONS(5225), + [anon_sym_BSLASHGls] = ACTIONS(5225), + [anon_sym_BSLASHGLS] = ACTIONS(5225), + [anon_sym_BSLASHglspl] = ACTIONS(5225), + [anon_sym_BSLASHGlspl] = ACTIONS(5225), + [anon_sym_BSLASHGLSpl] = ACTIONS(5225), + [anon_sym_BSLASHglsdisp] = ACTIONS(5225), + [anon_sym_BSLASHglslink] = ACTIONS(5225), + [anon_sym_BSLASHglstext] = ACTIONS(5225), + [anon_sym_BSLASHGlstext] = ACTIONS(5225), + [anon_sym_BSLASHGLStext] = ACTIONS(5225), + [anon_sym_BSLASHglsfirst] = ACTIONS(5225), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), + [anon_sym_BSLASHglsplural] = ACTIONS(5225), + [anon_sym_BSLASHGlsplural] = ACTIONS(5225), + [anon_sym_BSLASHGLSplural] = ACTIONS(5225), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHglsname] = ACTIONS(5225), + [anon_sym_BSLASHGlsname] = ACTIONS(5225), + [anon_sym_BSLASHGLSname] = ACTIONS(5225), + [anon_sym_BSLASHglssymbol] = ACTIONS(5225), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), + [anon_sym_BSLASHglsdesc] = ACTIONS(5225), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), + [anon_sym_BSLASHglsuseri] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), + [anon_sym_BSLASHglsuserii] = ACTIONS(5225), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), + [anon_sym_BSLASHglsuserv] = ACTIONS(5225), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), + [anon_sym_BSLASHglsuservi] = ACTIONS(5225), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), + [anon_sym_BSLASHnewacronym] = ACTIONS(5225), + [anon_sym_BSLASHacrshort] = ACTIONS(5225), + [anon_sym_BSLASHAcrshort] = ACTIONS(5225), + [anon_sym_BSLASHACRshort] = ACTIONS(5225), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), + [anon_sym_BSLASHacrlong] = ACTIONS(5225), + [anon_sym_BSLASHAcrlong] = ACTIONS(5225), + [anon_sym_BSLASHACRlong] = ACTIONS(5225), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), + [anon_sym_BSLASHacrfull] = ACTIONS(5225), + [anon_sym_BSLASHAcrfull] = ACTIONS(5225), + [anon_sym_BSLASHACRfull] = ACTIONS(5225), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), + [anon_sym_BSLASHacs] = ACTIONS(5225), + [anon_sym_BSLASHAcs] = ACTIONS(5225), + [anon_sym_BSLASHacsp] = ACTIONS(5225), + [anon_sym_BSLASHAcsp] = ACTIONS(5225), + [anon_sym_BSLASHacl] = ACTIONS(5225), + [anon_sym_BSLASHAcl] = ACTIONS(5225), + [anon_sym_BSLASHaclp] = ACTIONS(5225), + [anon_sym_BSLASHAclp] = ACTIONS(5225), + [anon_sym_BSLASHacf] = ACTIONS(5225), + [anon_sym_BSLASHAcf] = ACTIONS(5225), + [anon_sym_BSLASHacfp] = ACTIONS(5225), + [anon_sym_BSLASHAcfp] = ACTIONS(5225), + [anon_sym_BSLASHac] = ACTIONS(5225), + [anon_sym_BSLASHAc] = ACTIONS(5225), + [anon_sym_BSLASHacp] = ACTIONS(5225), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), + [anon_sym_BSLASHcolor] = ACTIONS(5225), + [anon_sym_BSLASHcolorbox] = ACTIONS(5225), + [anon_sym_BSLASHtextcolor] = ACTIONS(5225), + [anon_sym_BSLASHpagecolor] = ACTIONS(5225), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), + [anon_sym_BSLASHtext] = ACTIONS(5225), + [anon_sym_BSLASHintertext] = ACTIONS(5225), + [anon_sym_shortintertext] = ACTIONS(5225), }, - [980] = { - [sym_command_name] = ACTIONS(5089), + [789] = { + [ts_builtin_sym_end] = ACTIONS(5227), + [sym_command_name] = ACTIONS(5229), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5229), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5227), + [anon_sym_LBRACK] = ACTIONS(5227), + [anon_sym_RBRACK] = ACTIONS(5227), + [anon_sym_COMMA] = ACTIONS(5227), + [anon_sym_EQ] = ACTIONS(5227), + [anon_sym_BSLASHpart] = ACTIONS(5229), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddpart] = ACTIONS(5229), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5227), + [anon_sym_BSLASHchapter] = ACTIONS(5229), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddchap] = ACTIONS(5229), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsection] = ACTIONS(5229), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddsec] = ACTIONS(5229), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubsection] = ACTIONS(5229), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHparagraph] = ACTIONS(5229), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5227), + [anon_sym_BSLASHitem] = ACTIONS(5229), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5227), + [anon_sym_LBRACE] = ACTIONS(5227), + [anon_sym_RBRACE] = ACTIONS(5227), + [sym_word] = ACTIONS(5229), + [sym_placeholder] = ACTIONS(5227), + [anon_sym_PLUS] = ACTIONS(5229), + [anon_sym_DASH] = ACTIONS(5229), + [anon_sym_STAR] = ACTIONS(5229), + [anon_sym_SLASH] = ACTIONS(5229), + [anon_sym_CARET] = ACTIONS(5229), + [anon_sym__] = ACTIONS(5229), + [anon_sym_LT] = ACTIONS(5229), + [anon_sym_GT] = ACTIONS(5229), + [anon_sym_BANG] = ACTIONS(5229), + [anon_sym_PIPE] = ACTIONS(5229), + [anon_sym_COLON] = ACTIONS(5229), + [anon_sym_SQUOTE] = ACTIONS(5229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), + [anon_sym_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), + [anon_sym_BSLASHbegin] = ACTIONS(5229), + [anon_sym_BSLASHusepackage] = ACTIONS(5229), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), + [anon_sym_BSLASHinclude] = ACTIONS(5229), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), + [anon_sym_BSLASHinput] = ACTIONS(5229), + [anon_sym_BSLASHsubfile] = ACTIONS(5229), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), + [anon_sym_BSLASHbibliography] = ACTIONS(5229), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), + [anon_sym_BSLASHincludesvg] = ACTIONS(5229), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), + [anon_sym_BSLASHimport] = ACTIONS(5229), + [anon_sym_BSLASHsubimport] = ACTIONS(5229), + [anon_sym_BSLASHinputfrom] = ACTIONS(5229), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), + [anon_sym_BSLASHincludefrom] = ACTIONS(5229), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), + [anon_sym_BSLASHcaption] = ACTIONS(5229), + [anon_sym_BSLASHcite] = ACTIONS(5229), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCite] = ACTIONS(5229), + [anon_sym_BSLASHnocite] = ACTIONS(5229), + [anon_sym_BSLASHcitet] = ACTIONS(5229), + [anon_sym_BSLASHcitep] = ACTIONS(5229), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteyear] = ACTIONS(5229), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitedate] = ACTIONS(5229), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteurl] = ACTIONS(5229), + [anon_sym_BSLASHfullcite] = ACTIONS(5229), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), + [anon_sym_BSLASHcitealt] = ACTIONS(5229), + [anon_sym_BSLASHcitealp] = ACTIONS(5229), + [anon_sym_BSLASHcitetext] = ACTIONS(5229), + [anon_sym_BSLASHparencite] = ACTIONS(5229), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHParencite] = ACTIONS(5229), + [anon_sym_BSLASHfootcite] = ACTIONS(5229), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), + [anon_sym_BSLASHtextcite] = ACTIONS(5229), + [anon_sym_BSLASHTextcite] = ACTIONS(5229), + [anon_sym_BSLASHsmartcite] = ACTIONS(5229), + [anon_sym_BSLASHSmartcite] = ACTIONS(5229), + [anon_sym_BSLASHsupercite] = ACTIONS(5229), + [anon_sym_BSLASHautocite] = ACTIONS(5229), + [anon_sym_BSLASHAutocite] = ACTIONS(5229), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHvolcite] = ACTIONS(5229), + [anon_sym_BSLASHVolcite] = ACTIONS(5229), + [anon_sym_BSLASHpvolcite] = ACTIONS(5229), + [anon_sym_BSLASHPvolcite] = ACTIONS(5229), + [anon_sym_BSLASHfvolcite] = ACTIONS(5229), + [anon_sym_BSLASHftvolcite] = ACTIONS(5229), + [anon_sym_BSLASHsvolcite] = ACTIONS(5229), + [anon_sym_BSLASHSvolcite] = ACTIONS(5229), + [anon_sym_BSLASHtvolcite] = ACTIONS(5229), + [anon_sym_BSLASHTvolcite] = ACTIONS(5229), + [anon_sym_BSLASHavolcite] = ACTIONS(5229), + [anon_sym_BSLASHAvolcite] = ACTIONS(5229), + [anon_sym_BSLASHnotecite] = ACTIONS(5229), + [anon_sym_BSLASHNotecite] = ACTIONS(5229), + [anon_sym_BSLASHpnotecite] = ACTIONS(5229), + [anon_sym_BSLASHPnotecite] = ACTIONS(5229), + [anon_sym_BSLASHfnotecite] = ACTIONS(5229), + [anon_sym_BSLASHlabel] = ACTIONS(5229), + [anon_sym_BSLASHref] = ACTIONS(5229), + [anon_sym_BSLASHeqref] = ACTIONS(5229), + [anon_sym_BSLASHvref] = ACTIONS(5229), + [anon_sym_BSLASHVref] = ACTIONS(5229), + [anon_sym_BSLASHautoref] = ACTIONS(5229), + [anon_sym_BSLASHpageref] = ACTIONS(5229), + [anon_sym_BSLASHcref] = ACTIONS(5229), + [anon_sym_BSLASHCref] = ACTIONS(5229), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), + [anon_sym_BSLASHnamecref] = ACTIONS(5229), + [anon_sym_BSLASHnameCref] = ACTIONS(5229), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), + [anon_sym_BSLASHlabelcref] = ACTIONS(5229), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), + [anon_sym_BSLASHcrefrange] = ACTIONS(5229), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), + [anon_sym_BSLASHnewlabel] = ACTIONS(5229), + [anon_sym_BSLASHnewcommand] = ACTIONS(5229), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), + [anon_sym_BSLASHdef] = ACTIONS(5229), + [anon_sym_BSLASHlet] = ACTIONS(5229), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), + [anon_sym_BSLASHgls] = ACTIONS(5229), + [anon_sym_BSLASHGls] = ACTIONS(5229), + [anon_sym_BSLASHGLS] = ACTIONS(5229), + [anon_sym_BSLASHglspl] = ACTIONS(5229), + [anon_sym_BSLASHGlspl] = ACTIONS(5229), + [anon_sym_BSLASHGLSpl] = ACTIONS(5229), + [anon_sym_BSLASHglsdisp] = ACTIONS(5229), + [anon_sym_BSLASHglslink] = ACTIONS(5229), + [anon_sym_BSLASHglstext] = ACTIONS(5229), + [anon_sym_BSLASHGlstext] = ACTIONS(5229), + [anon_sym_BSLASHGLStext] = ACTIONS(5229), + [anon_sym_BSLASHglsfirst] = ACTIONS(5229), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), + [anon_sym_BSLASHglsplural] = ACTIONS(5229), + [anon_sym_BSLASHGlsplural] = ACTIONS(5229), + [anon_sym_BSLASHGLSplural] = ACTIONS(5229), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHglsname] = ACTIONS(5229), + [anon_sym_BSLASHGlsname] = ACTIONS(5229), + [anon_sym_BSLASHGLSname] = ACTIONS(5229), + [anon_sym_BSLASHglssymbol] = ACTIONS(5229), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), + [anon_sym_BSLASHglsdesc] = ACTIONS(5229), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), + [anon_sym_BSLASHglsuseri] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), + [anon_sym_BSLASHglsuserii] = ACTIONS(5229), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), + [anon_sym_BSLASHglsuserv] = ACTIONS(5229), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), + [anon_sym_BSLASHglsuservi] = ACTIONS(5229), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), + [anon_sym_BSLASHnewacronym] = ACTIONS(5229), + [anon_sym_BSLASHacrshort] = ACTIONS(5229), + [anon_sym_BSLASHAcrshort] = ACTIONS(5229), + [anon_sym_BSLASHACRshort] = ACTIONS(5229), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), + [anon_sym_BSLASHacrlong] = ACTIONS(5229), + [anon_sym_BSLASHAcrlong] = ACTIONS(5229), + [anon_sym_BSLASHACRlong] = ACTIONS(5229), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), + [anon_sym_BSLASHacrfull] = ACTIONS(5229), + [anon_sym_BSLASHAcrfull] = ACTIONS(5229), + [anon_sym_BSLASHACRfull] = ACTIONS(5229), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), + [anon_sym_BSLASHacs] = ACTIONS(5229), + [anon_sym_BSLASHAcs] = ACTIONS(5229), + [anon_sym_BSLASHacsp] = ACTIONS(5229), + [anon_sym_BSLASHAcsp] = ACTIONS(5229), + [anon_sym_BSLASHacl] = ACTIONS(5229), + [anon_sym_BSLASHAcl] = ACTIONS(5229), + [anon_sym_BSLASHaclp] = ACTIONS(5229), + [anon_sym_BSLASHAclp] = ACTIONS(5229), + [anon_sym_BSLASHacf] = ACTIONS(5229), + [anon_sym_BSLASHAcf] = ACTIONS(5229), + [anon_sym_BSLASHacfp] = ACTIONS(5229), + [anon_sym_BSLASHAcfp] = ACTIONS(5229), + [anon_sym_BSLASHac] = ACTIONS(5229), + [anon_sym_BSLASHAc] = ACTIONS(5229), + [anon_sym_BSLASHacp] = ACTIONS(5229), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), + [anon_sym_BSLASHcolor] = ACTIONS(5229), + [anon_sym_BSLASHcolorbox] = ACTIONS(5229), + [anon_sym_BSLASHtextcolor] = ACTIONS(5229), + [anon_sym_BSLASHpagecolor] = ACTIONS(5229), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), + [anon_sym_BSLASHtext] = ACTIONS(5229), + [anon_sym_BSLASHintertext] = ACTIONS(5229), + [anon_sym_shortintertext] = ACTIONS(5229), + }, + [790] = { + [ts_builtin_sym_end] = ACTIONS(5231), + [sym_command_name] = ACTIONS(5233), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5233), + [anon_sym_LPAREN] = ACTIONS(5231), + [anon_sym_RPAREN] = ACTIONS(5231), + [anon_sym_LBRACK] = ACTIONS(5231), + [anon_sym_RBRACK] = ACTIONS(5231), + [anon_sym_COMMA] = ACTIONS(5231), + [anon_sym_EQ] = ACTIONS(5231), + [anon_sym_BSLASHpart] = ACTIONS(5233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddpart] = ACTIONS(5233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5231), + [anon_sym_BSLASHchapter] = ACTIONS(5233), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddchap] = ACTIONS(5233), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsection] = ACTIONS(5233), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddsec] = ACTIONS(5233), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubsection] = ACTIONS(5233), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHparagraph] = ACTIONS(5233), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5231), + [anon_sym_BSLASHitem] = ACTIONS(5233), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5231), + [anon_sym_LBRACE] = ACTIONS(5231), + [anon_sym_RBRACE] = ACTIONS(5231), + [sym_word] = ACTIONS(5233), + [sym_placeholder] = ACTIONS(5231), + [anon_sym_PLUS] = ACTIONS(5233), + [anon_sym_DASH] = ACTIONS(5233), + [anon_sym_STAR] = ACTIONS(5233), + [anon_sym_SLASH] = ACTIONS(5233), + [anon_sym_CARET] = ACTIONS(5233), + [anon_sym__] = ACTIONS(5233), + [anon_sym_LT] = ACTIONS(5233), + [anon_sym_GT] = ACTIONS(5233), + [anon_sym_BANG] = ACTIONS(5233), + [anon_sym_PIPE] = ACTIONS(5233), + [anon_sym_COLON] = ACTIONS(5233), + [anon_sym_SQUOTE] = ACTIONS(5233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), + [anon_sym_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), + [anon_sym_BSLASHbegin] = ACTIONS(5233), + [anon_sym_BSLASHusepackage] = ACTIONS(5233), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), + [anon_sym_BSLASHinclude] = ACTIONS(5233), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), + [anon_sym_BSLASHinput] = ACTIONS(5233), + [anon_sym_BSLASHsubfile] = ACTIONS(5233), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), + [anon_sym_BSLASHbibliography] = ACTIONS(5233), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), + [anon_sym_BSLASHincludesvg] = ACTIONS(5233), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), + [anon_sym_BSLASHimport] = ACTIONS(5233), + [anon_sym_BSLASHsubimport] = ACTIONS(5233), + [anon_sym_BSLASHinputfrom] = ACTIONS(5233), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), + [anon_sym_BSLASHincludefrom] = ACTIONS(5233), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), + [anon_sym_BSLASHcaption] = ACTIONS(5233), + [anon_sym_BSLASHcite] = ACTIONS(5233), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCite] = ACTIONS(5233), + [anon_sym_BSLASHnocite] = ACTIONS(5233), + [anon_sym_BSLASHcitet] = ACTIONS(5233), + [anon_sym_BSLASHcitep] = ACTIONS(5233), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteyear] = ACTIONS(5233), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitedate] = ACTIONS(5233), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteurl] = ACTIONS(5233), + [anon_sym_BSLASHfullcite] = ACTIONS(5233), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), + [anon_sym_BSLASHcitealt] = ACTIONS(5233), + [anon_sym_BSLASHcitealp] = ACTIONS(5233), + [anon_sym_BSLASHcitetext] = ACTIONS(5233), + [anon_sym_BSLASHparencite] = ACTIONS(5233), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHParencite] = ACTIONS(5233), + [anon_sym_BSLASHfootcite] = ACTIONS(5233), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), + [anon_sym_BSLASHtextcite] = ACTIONS(5233), + [anon_sym_BSLASHTextcite] = ACTIONS(5233), + [anon_sym_BSLASHsmartcite] = ACTIONS(5233), + [anon_sym_BSLASHSmartcite] = ACTIONS(5233), + [anon_sym_BSLASHsupercite] = ACTIONS(5233), + [anon_sym_BSLASHautocite] = ACTIONS(5233), + [anon_sym_BSLASHAutocite] = ACTIONS(5233), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHvolcite] = ACTIONS(5233), + [anon_sym_BSLASHVolcite] = ACTIONS(5233), + [anon_sym_BSLASHpvolcite] = ACTIONS(5233), + [anon_sym_BSLASHPvolcite] = ACTIONS(5233), + [anon_sym_BSLASHfvolcite] = ACTIONS(5233), + [anon_sym_BSLASHftvolcite] = ACTIONS(5233), + [anon_sym_BSLASHsvolcite] = ACTIONS(5233), + [anon_sym_BSLASHSvolcite] = ACTIONS(5233), + [anon_sym_BSLASHtvolcite] = ACTIONS(5233), + [anon_sym_BSLASHTvolcite] = ACTIONS(5233), + [anon_sym_BSLASHavolcite] = ACTIONS(5233), + [anon_sym_BSLASHAvolcite] = ACTIONS(5233), + [anon_sym_BSLASHnotecite] = ACTIONS(5233), + [anon_sym_BSLASHNotecite] = ACTIONS(5233), + [anon_sym_BSLASHpnotecite] = ACTIONS(5233), + [anon_sym_BSLASHPnotecite] = ACTIONS(5233), + [anon_sym_BSLASHfnotecite] = ACTIONS(5233), + [anon_sym_BSLASHlabel] = ACTIONS(5233), + [anon_sym_BSLASHref] = ACTIONS(5233), + [anon_sym_BSLASHeqref] = ACTIONS(5233), + [anon_sym_BSLASHvref] = ACTIONS(5233), + [anon_sym_BSLASHVref] = ACTIONS(5233), + [anon_sym_BSLASHautoref] = ACTIONS(5233), + [anon_sym_BSLASHpageref] = ACTIONS(5233), + [anon_sym_BSLASHcref] = ACTIONS(5233), + [anon_sym_BSLASHCref] = ACTIONS(5233), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), + [anon_sym_BSLASHnamecref] = ACTIONS(5233), + [anon_sym_BSLASHnameCref] = ACTIONS(5233), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), + [anon_sym_BSLASHlabelcref] = ACTIONS(5233), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), + [anon_sym_BSLASHcrefrange] = ACTIONS(5233), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), + [anon_sym_BSLASHnewlabel] = ACTIONS(5233), + [anon_sym_BSLASHnewcommand] = ACTIONS(5233), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), + [anon_sym_BSLASHdef] = ACTIONS(5233), + [anon_sym_BSLASHlet] = ACTIONS(5233), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), + [anon_sym_BSLASHgls] = ACTIONS(5233), + [anon_sym_BSLASHGls] = ACTIONS(5233), + [anon_sym_BSLASHGLS] = ACTIONS(5233), + [anon_sym_BSLASHglspl] = ACTIONS(5233), + [anon_sym_BSLASHGlspl] = ACTIONS(5233), + [anon_sym_BSLASHGLSpl] = ACTIONS(5233), + [anon_sym_BSLASHglsdisp] = ACTIONS(5233), + [anon_sym_BSLASHglslink] = ACTIONS(5233), + [anon_sym_BSLASHglstext] = ACTIONS(5233), + [anon_sym_BSLASHGlstext] = ACTIONS(5233), + [anon_sym_BSLASHGLStext] = ACTIONS(5233), + [anon_sym_BSLASHglsfirst] = ACTIONS(5233), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), + [anon_sym_BSLASHglsplural] = ACTIONS(5233), + [anon_sym_BSLASHGlsplural] = ACTIONS(5233), + [anon_sym_BSLASHGLSplural] = ACTIONS(5233), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHglsname] = ACTIONS(5233), + [anon_sym_BSLASHGlsname] = ACTIONS(5233), + [anon_sym_BSLASHGLSname] = ACTIONS(5233), + [anon_sym_BSLASHglssymbol] = ACTIONS(5233), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), + [anon_sym_BSLASHglsdesc] = ACTIONS(5233), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), + [anon_sym_BSLASHglsuseri] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), + [anon_sym_BSLASHglsuserii] = ACTIONS(5233), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), + [anon_sym_BSLASHglsuserv] = ACTIONS(5233), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), + [anon_sym_BSLASHglsuservi] = ACTIONS(5233), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), + [anon_sym_BSLASHnewacronym] = ACTIONS(5233), + [anon_sym_BSLASHacrshort] = ACTIONS(5233), + [anon_sym_BSLASHAcrshort] = ACTIONS(5233), + [anon_sym_BSLASHACRshort] = ACTIONS(5233), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), + [anon_sym_BSLASHacrlong] = ACTIONS(5233), + [anon_sym_BSLASHAcrlong] = ACTIONS(5233), + [anon_sym_BSLASHACRlong] = ACTIONS(5233), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), + [anon_sym_BSLASHacrfull] = ACTIONS(5233), + [anon_sym_BSLASHAcrfull] = ACTIONS(5233), + [anon_sym_BSLASHACRfull] = ACTIONS(5233), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), + [anon_sym_BSLASHacs] = ACTIONS(5233), + [anon_sym_BSLASHAcs] = ACTIONS(5233), + [anon_sym_BSLASHacsp] = ACTIONS(5233), + [anon_sym_BSLASHAcsp] = ACTIONS(5233), + [anon_sym_BSLASHacl] = ACTIONS(5233), + [anon_sym_BSLASHAcl] = ACTIONS(5233), + [anon_sym_BSLASHaclp] = ACTIONS(5233), + [anon_sym_BSLASHAclp] = ACTIONS(5233), + [anon_sym_BSLASHacf] = ACTIONS(5233), + [anon_sym_BSLASHAcf] = ACTIONS(5233), + [anon_sym_BSLASHacfp] = ACTIONS(5233), + [anon_sym_BSLASHAcfp] = ACTIONS(5233), + [anon_sym_BSLASHac] = ACTIONS(5233), + [anon_sym_BSLASHAc] = ACTIONS(5233), + [anon_sym_BSLASHacp] = ACTIONS(5233), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), + [anon_sym_BSLASHcolor] = ACTIONS(5233), + [anon_sym_BSLASHcolorbox] = ACTIONS(5233), + [anon_sym_BSLASHtextcolor] = ACTIONS(5233), + [anon_sym_BSLASHpagecolor] = ACTIONS(5233), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), + [anon_sym_BSLASHtext] = ACTIONS(5233), + [anon_sym_BSLASHintertext] = ACTIONS(5233), + [anon_sym_shortintertext] = ACTIONS(5233), + }, + [791] = { + [ts_builtin_sym_end] = ACTIONS(5235), + [sym_command_name] = ACTIONS(5237), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5237), + [anon_sym_LPAREN] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(5235), + [anon_sym_LBRACK] = ACTIONS(5235), + [anon_sym_RBRACK] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_EQ] = ACTIONS(5235), + [anon_sym_BSLASHpart] = ACTIONS(5237), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddpart] = ACTIONS(5237), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5235), + [anon_sym_BSLASHchapter] = ACTIONS(5237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddchap] = ACTIONS(5237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsection] = ACTIONS(5237), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddsec] = ACTIONS(5237), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubsection] = ACTIONS(5237), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5237), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHparagraph] = ACTIONS(5237), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5237), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5235), + [anon_sym_BSLASHitem] = ACTIONS(5237), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5235), + [anon_sym_LBRACE] = ACTIONS(5235), + [anon_sym_RBRACE] = ACTIONS(5235), + [sym_word] = ACTIONS(5237), + [sym_placeholder] = ACTIONS(5235), + [anon_sym_PLUS] = ACTIONS(5237), + [anon_sym_DASH] = ACTIONS(5237), + [anon_sym_STAR] = ACTIONS(5237), + [anon_sym_SLASH] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym__] = ACTIONS(5237), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_BANG] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_COLON] = ACTIONS(5237), + [anon_sym_SQUOTE] = ACTIONS(5237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), + [anon_sym_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), + [anon_sym_BSLASHbegin] = ACTIONS(5237), + [anon_sym_BSLASHusepackage] = ACTIONS(5237), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), + [anon_sym_BSLASHinclude] = ACTIONS(5237), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), + [anon_sym_BSLASHinput] = ACTIONS(5237), + [anon_sym_BSLASHsubfile] = ACTIONS(5237), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), + [anon_sym_BSLASHbibliography] = ACTIONS(5237), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), + [anon_sym_BSLASHincludesvg] = ACTIONS(5237), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), + [anon_sym_BSLASHimport] = ACTIONS(5237), + [anon_sym_BSLASHsubimport] = ACTIONS(5237), + [anon_sym_BSLASHinputfrom] = ACTIONS(5237), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), + [anon_sym_BSLASHincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHcaption] = ACTIONS(5237), + [anon_sym_BSLASHcite] = ACTIONS(5237), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCite] = ACTIONS(5237), + [anon_sym_BSLASHnocite] = ACTIONS(5237), + [anon_sym_BSLASHcitet] = ACTIONS(5237), + [anon_sym_BSLASHcitep] = ACTIONS(5237), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteyear] = ACTIONS(5237), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitedate] = ACTIONS(5237), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteurl] = ACTIONS(5237), + [anon_sym_BSLASHfullcite] = ACTIONS(5237), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), + [anon_sym_BSLASHcitealt] = ACTIONS(5237), + [anon_sym_BSLASHcitealp] = ACTIONS(5237), + [anon_sym_BSLASHcitetext] = ACTIONS(5237), + [anon_sym_BSLASHparencite] = ACTIONS(5237), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHParencite] = ACTIONS(5237), + [anon_sym_BSLASHfootcite] = ACTIONS(5237), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), + [anon_sym_BSLASHtextcite] = ACTIONS(5237), + [anon_sym_BSLASHTextcite] = ACTIONS(5237), + [anon_sym_BSLASHsmartcite] = ACTIONS(5237), + [anon_sym_BSLASHSmartcite] = ACTIONS(5237), + [anon_sym_BSLASHsupercite] = ACTIONS(5237), + [anon_sym_BSLASHautocite] = ACTIONS(5237), + [anon_sym_BSLASHAutocite] = ACTIONS(5237), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHvolcite] = ACTIONS(5237), + [anon_sym_BSLASHVolcite] = ACTIONS(5237), + [anon_sym_BSLASHpvolcite] = ACTIONS(5237), + [anon_sym_BSLASHPvolcite] = ACTIONS(5237), + [anon_sym_BSLASHfvolcite] = ACTIONS(5237), + [anon_sym_BSLASHftvolcite] = ACTIONS(5237), + [anon_sym_BSLASHsvolcite] = ACTIONS(5237), + [anon_sym_BSLASHSvolcite] = ACTIONS(5237), + [anon_sym_BSLASHtvolcite] = ACTIONS(5237), + [anon_sym_BSLASHTvolcite] = ACTIONS(5237), + [anon_sym_BSLASHavolcite] = ACTIONS(5237), + [anon_sym_BSLASHAvolcite] = ACTIONS(5237), + [anon_sym_BSLASHnotecite] = ACTIONS(5237), + [anon_sym_BSLASHNotecite] = ACTIONS(5237), + [anon_sym_BSLASHpnotecite] = ACTIONS(5237), + [anon_sym_BSLASHPnotecite] = ACTIONS(5237), + [anon_sym_BSLASHfnotecite] = ACTIONS(5237), + [anon_sym_BSLASHlabel] = ACTIONS(5237), + [anon_sym_BSLASHref] = ACTIONS(5237), + [anon_sym_BSLASHeqref] = ACTIONS(5237), + [anon_sym_BSLASHvref] = ACTIONS(5237), + [anon_sym_BSLASHVref] = ACTIONS(5237), + [anon_sym_BSLASHautoref] = ACTIONS(5237), + [anon_sym_BSLASHpageref] = ACTIONS(5237), + [anon_sym_BSLASHcref] = ACTIONS(5237), + [anon_sym_BSLASHCref] = ACTIONS(5237), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnameCref] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHlabelcref] = ACTIONS(5237), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnewlabel] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), + [anon_sym_BSLASHdef] = ACTIONS(5237), + [anon_sym_BSLASHlet] = ACTIONS(5237), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), + [anon_sym_BSLASHgls] = ACTIONS(5237), + [anon_sym_BSLASHGls] = ACTIONS(5237), + [anon_sym_BSLASHGLS] = ACTIONS(5237), + [anon_sym_BSLASHglspl] = ACTIONS(5237), + [anon_sym_BSLASHGlspl] = ACTIONS(5237), + [anon_sym_BSLASHGLSpl] = ACTIONS(5237), + [anon_sym_BSLASHglsdisp] = ACTIONS(5237), + [anon_sym_BSLASHglslink] = ACTIONS(5237), + [anon_sym_BSLASHglstext] = ACTIONS(5237), + [anon_sym_BSLASHGlstext] = ACTIONS(5237), + [anon_sym_BSLASHGLStext] = ACTIONS(5237), + [anon_sym_BSLASHglsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), + [anon_sym_BSLASHglsplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSplural] = ACTIONS(5237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHglsname] = ACTIONS(5237), + [anon_sym_BSLASHGlsname] = ACTIONS(5237), + [anon_sym_BSLASHGLSname] = ACTIONS(5237), + [anon_sym_BSLASHglssymbol] = ACTIONS(5237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), + [anon_sym_BSLASHglsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), + [anon_sym_BSLASHglsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), + [anon_sym_BSLASHglsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), + [anon_sym_BSLASHglsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), + [anon_sym_BSLASHglsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), + [anon_sym_BSLASHnewacronym] = ACTIONS(5237), + [anon_sym_BSLASHacrshort] = ACTIONS(5237), + [anon_sym_BSLASHAcrshort] = ACTIONS(5237), + [anon_sym_BSLASHACRshort] = ACTIONS(5237), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), + [anon_sym_BSLASHacrlong] = ACTIONS(5237), + [anon_sym_BSLASHAcrlong] = ACTIONS(5237), + [anon_sym_BSLASHACRlong] = ACTIONS(5237), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), + [anon_sym_BSLASHacrfull] = ACTIONS(5237), + [anon_sym_BSLASHAcrfull] = ACTIONS(5237), + [anon_sym_BSLASHACRfull] = ACTIONS(5237), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), + [anon_sym_BSLASHacs] = ACTIONS(5237), + [anon_sym_BSLASHAcs] = ACTIONS(5237), + [anon_sym_BSLASHacsp] = ACTIONS(5237), + [anon_sym_BSLASHAcsp] = ACTIONS(5237), + [anon_sym_BSLASHacl] = ACTIONS(5237), + [anon_sym_BSLASHAcl] = ACTIONS(5237), + [anon_sym_BSLASHaclp] = ACTIONS(5237), + [anon_sym_BSLASHAclp] = ACTIONS(5237), + [anon_sym_BSLASHacf] = ACTIONS(5237), + [anon_sym_BSLASHAcf] = ACTIONS(5237), + [anon_sym_BSLASHacfp] = ACTIONS(5237), + [anon_sym_BSLASHAcfp] = ACTIONS(5237), + [anon_sym_BSLASHac] = ACTIONS(5237), + [anon_sym_BSLASHAc] = ACTIONS(5237), + [anon_sym_BSLASHacp] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), + [anon_sym_BSLASHcolor] = ACTIONS(5237), + [anon_sym_BSLASHcolorbox] = ACTIONS(5237), + [anon_sym_BSLASHtextcolor] = ACTIONS(5237), + [anon_sym_BSLASHpagecolor] = ACTIONS(5237), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), + [anon_sym_BSLASHtext] = ACTIONS(5237), + [anon_sym_BSLASHintertext] = ACTIONS(5237), + [anon_sym_shortintertext] = ACTIONS(5237), + }, + [792] = { + [sym_curly_group] = STATE(960), + [sym_command_name] = ACTIONS(4845), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4845), + [anon_sym_LPAREN] = ACTIONS(4843), + [anon_sym_RPAREN] = ACTIONS(4843), + [anon_sym_LBRACK] = ACTIONS(4843), + [anon_sym_RBRACK] = ACTIONS(4843), + [anon_sym_COMMA] = ACTIONS(4843), + [anon_sym_EQ] = ACTIONS(4843), + [anon_sym_BSLASHpart] = ACTIONS(4845), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddpart] = ACTIONS(4845), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4843), + [anon_sym_BSLASHchapter] = ACTIONS(4845), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddchap] = ACTIONS(4845), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsection] = ACTIONS(4845), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHaddsec] = ACTIONS(4845), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubsection] = ACTIONS(4845), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4845), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4843), + [anon_sym_BSLASHparagraph] = ACTIONS(4845), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4843), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4845), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4843), + [anon_sym_BSLASHitem] = ACTIONS(4845), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4843), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(4845), + [sym_placeholder] = ACTIONS(4843), + [anon_sym_PLUS] = ACTIONS(4845), + [anon_sym_DASH] = ACTIONS(4845), + [anon_sym_STAR] = ACTIONS(4845), + [anon_sym_SLASH] = ACTIONS(4845), + [anon_sym_CARET] = ACTIONS(4845), + [anon_sym__] = ACTIONS(4845), + [anon_sym_LT] = ACTIONS(4845), + [anon_sym_GT] = ACTIONS(4845), + [anon_sym_BANG] = ACTIONS(4845), + [anon_sym_PIPE] = ACTIONS(4845), + [anon_sym_COLON] = ACTIONS(4845), + [anon_sym_SQUOTE] = ACTIONS(4845), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4843), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4843), + [anon_sym_DOLLAR] = ACTIONS(4845), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4843), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4843), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4843), + [anon_sym_BSLASHbegin] = ACTIONS(4845), + [anon_sym_BSLASHusepackage] = ACTIONS(4845), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4845), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4845), + [anon_sym_BSLASHinclude] = ACTIONS(4845), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4845), + [anon_sym_BSLASHinput] = ACTIONS(4845), + [anon_sym_BSLASHsubfile] = ACTIONS(4845), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4845), + [anon_sym_BSLASHbibliography] = ACTIONS(4845), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4845), + [anon_sym_BSLASHincludesvg] = ACTIONS(4845), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4845), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4845), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4845), + [anon_sym_BSLASHimport] = ACTIONS(4845), + [anon_sym_BSLASHsubimport] = ACTIONS(4845), + [anon_sym_BSLASHinputfrom] = ACTIONS(4845), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4845), + [anon_sym_BSLASHincludefrom] = ACTIONS(4845), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4845), + [anon_sym_BSLASHcaption] = ACTIONS(4845), + [anon_sym_BSLASHcite] = ACTIONS(4845), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCite] = ACTIONS(4845), + [anon_sym_BSLASHnocite] = ACTIONS(4845), + [anon_sym_BSLASHcitet] = ACTIONS(4845), + [anon_sym_BSLASHcitep] = ACTIONS(4845), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteauthor] = ACTIONS(4845), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4845), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitetitle] = ACTIONS(4845), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteyear] = ACTIONS(4845), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4843), + [anon_sym_BSLASHcitedate] = ACTIONS(4845), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4843), + [anon_sym_BSLASHciteurl] = ACTIONS(4845), + [anon_sym_BSLASHfullcite] = ACTIONS(4845), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4845), + [anon_sym_BSLASHcitealt] = ACTIONS(4845), + [anon_sym_BSLASHcitealp] = ACTIONS(4845), + [anon_sym_BSLASHcitetext] = ACTIONS(4845), + [anon_sym_BSLASHparencite] = ACTIONS(4845), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHParencite] = ACTIONS(4845), + [anon_sym_BSLASHfootcite] = ACTIONS(4845), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4845), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4845), + [anon_sym_BSLASHtextcite] = ACTIONS(4845), + [anon_sym_BSLASHTextcite] = ACTIONS(4845), + [anon_sym_BSLASHsmartcite] = ACTIONS(4845), + [anon_sym_BSLASHSmartcite] = ACTIONS(4845), + [anon_sym_BSLASHsupercite] = ACTIONS(4845), + [anon_sym_BSLASHautocite] = ACTIONS(4845), + [anon_sym_BSLASHAutocite] = ACTIONS(4845), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4843), + [anon_sym_BSLASHvolcite] = ACTIONS(4845), + [anon_sym_BSLASHVolcite] = ACTIONS(4845), + [anon_sym_BSLASHpvolcite] = ACTIONS(4845), + [anon_sym_BSLASHPvolcite] = ACTIONS(4845), + [anon_sym_BSLASHfvolcite] = ACTIONS(4845), + [anon_sym_BSLASHftvolcite] = ACTIONS(4845), + [anon_sym_BSLASHsvolcite] = ACTIONS(4845), + [anon_sym_BSLASHSvolcite] = ACTIONS(4845), + [anon_sym_BSLASHtvolcite] = ACTIONS(4845), + [anon_sym_BSLASHTvolcite] = ACTIONS(4845), + [anon_sym_BSLASHavolcite] = ACTIONS(4845), + [anon_sym_BSLASHAvolcite] = ACTIONS(4845), + [anon_sym_BSLASHnotecite] = ACTIONS(4845), + [anon_sym_BSLASHNotecite] = ACTIONS(4845), + [anon_sym_BSLASHpnotecite] = ACTIONS(4845), + [anon_sym_BSLASHPnotecite] = ACTIONS(4845), + [anon_sym_BSLASHfnotecite] = ACTIONS(4845), + [anon_sym_BSLASHlabel] = ACTIONS(4845), + [anon_sym_BSLASHref] = ACTIONS(4845), + [anon_sym_BSLASHeqref] = ACTIONS(4845), + [anon_sym_BSLASHvref] = ACTIONS(4845), + [anon_sym_BSLASHVref] = ACTIONS(4845), + [anon_sym_BSLASHautoref] = ACTIONS(4845), + [anon_sym_BSLASHpageref] = ACTIONS(4845), + [anon_sym_BSLASHcref] = ACTIONS(4845), + [anon_sym_BSLASHCref] = ACTIONS(4845), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4843), + [anon_sym_BSLASHnamecref] = ACTIONS(4845), + [anon_sym_BSLASHnameCref] = ACTIONS(4845), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4845), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4845), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4845), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4845), + [anon_sym_BSLASHlabelcref] = ACTIONS(4845), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4845), + [anon_sym_BSLASHcrefrange] = ACTIONS(4845), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4843), + [anon_sym_BSLASHCrefrange] = ACTIONS(4845), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4843), + [anon_sym_BSLASHnewlabel] = ACTIONS(4845), + [anon_sym_BSLASHnewcommand] = ACTIONS(4845), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4845), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4845), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4843), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4845), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4843), + [anon_sym_BSLASHdef] = ACTIONS(4845), + [anon_sym_BSLASHlet] = ACTIONS(4845), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4845), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4845), + [anon_sym_BSLASHgls] = ACTIONS(4845), + [anon_sym_BSLASHGls] = ACTIONS(4845), + [anon_sym_BSLASHGLS] = ACTIONS(4845), + [anon_sym_BSLASHglspl] = ACTIONS(4845), + [anon_sym_BSLASHGlspl] = ACTIONS(4845), + [anon_sym_BSLASHGLSpl] = ACTIONS(4845), + [anon_sym_BSLASHglsdisp] = ACTIONS(4845), + [anon_sym_BSLASHglslink] = ACTIONS(4845), + [anon_sym_BSLASHglstext] = ACTIONS(4845), + [anon_sym_BSLASHGlstext] = ACTIONS(4845), + [anon_sym_BSLASHGLStext] = ACTIONS(4845), + [anon_sym_BSLASHglsfirst] = ACTIONS(4845), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4845), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4845), + [anon_sym_BSLASHglsplural] = ACTIONS(4845), + [anon_sym_BSLASHGlsplural] = ACTIONS(4845), + [anon_sym_BSLASHGLSplural] = ACTIONS(4845), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4845), + [anon_sym_BSLASHglsname] = ACTIONS(4845), + [anon_sym_BSLASHGlsname] = ACTIONS(4845), + [anon_sym_BSLASHGLSname] = ACTIONS(4845), + [anon_sym_BSLASHglssymbol] = ACTIONS(4845), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4845), + [anon_sym_BSLASHglsdesc] = ACTIONS(4845), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4845), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4845), + [anon_sym_BSLASHglsuseri] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4845), + [anon_sym_BSLASHglsuserii] = ACTIONS(4845), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4845), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4845), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4845), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4845), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4845), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4845), + [anon_sym_BSLASHglsuserv] = ACTIONS(4845), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4845), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4845), + [anon_sym_BSLASHglsuservi] = ACTIONS(4845), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4845), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4845), + [anon_sym_BSLASHnewacronym] = ACTIONS(4845), + [anon_sym_BSLASHacrshort] = ACTIONS(4845), + [anon_sym_BSLASHAcrshort] = ACTIONS(4845), + [anon_sym_BSLASHACRshort] = ACTIONS(4845), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4845), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4845), + [anon_sym_BSLASHacrlong] = ACTIONS(4845), + [anon_sym_BSLASHAcrlong] = ACTIONS(4845), + [anon_sym_BSLASHACRlong] = ACTIONS(4845), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4845), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4845), + [anon_sym_BSLASHacrfull] = ACTIONS(4845), + [anon_sym_BSLASHAcrfull] = ACTIONS(4845), + [anon_sym_BSLASHACRfull] = ACTIONS(4845), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4845), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4845), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4845), + [anon_sym_BSLASHacs] = ACTIONS(4845), + [anon_sym_BSLASHAcs] = ACTIONS(4845), + [anon_sym_BSLASHacsp] = ACTIONS(4845), + [anon_sym_BSLASHAcsp] = ACTIONS(4845), + [anon_sym_BSLASHacl] = ACTIONS(4845), + [anon_sym_BSLASHAcl] = ACTIONS(4845), + [anon_sym_BSLASHaclp] = ACTIONS(4845), + [anon_sym_BSLASHAclp] = ACTIONS(4845), + [anon_sym_BSLASHacf] = ACTIONS(4845), + [anon_sym_BSLASHAcf] = ACTIONS(4845), + [anon_sym_BSLASHacfp] = ACTIONS(4845), + [anon_sym_BSLASHAcfp] = ACTIONS(4845), + [anon_sym_BSLASHac] = ACTIONS(4845), + [anon_sym_BSLASHAc] = ACTIONS(4845), + [anon_sym_BSLASHacp] = ACTIONS(4845), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4845), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4845), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4845), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4845), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4845), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4845), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4845), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4845), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4845), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4845), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4845), + [anon_sym_BSLASHcolor] = ACTIONS(4845), + [anon_sym_BSLASHcolorbox] = ACTIONS(4845), + [anon_sym_BSLASHtextcolor] = ACTIONS(4845), + [anon_sym_BSLASHpagecolor] = ACTIONS(4845), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4845), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4845), + [anon_sym_BSLASHtext] = ACTIONS(4845), + [anon_sym_BSLASHintertext] = ACTIONS(4845), + [anon_sym_shortintertext] = ACTIONS(4845), + }, + [793] = { + [ts_builtin_sym_end] = ACTIONS(5239), + [sym_command_name] = ACTIONS(5241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5241), + [anon_sym_LPAREN] = ACTIONS(5239), + [anon_sym_RPAREN] = ACTIONS(5239), + [anon_sym_LBRACK] = ACTIONS(5239), + [anon_sym_RBRACK] = ACTIONS(5239), + [anon_sym_COMMA] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_BSLASHpart] = ACTIONS(5241), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddpart] = ACTIONS(5241), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5239), + [anon_sym_BSLASHchapter] = ACTIONS(5241), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddchap] = ACTIONS(5241), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsection] = ACTIONS(5241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddsec] = ACTIONS(5241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubsection] = ACTIONS(5241), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5241), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHparagraph] = ACTIONS(5241), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5241), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5239), + [anon_sym_BSLASHitem] = ACTIONS(5241), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(5239), + [anon_sym_RBRACE] = ACTIONS(5239), + [sym_word] = ACTIONS(5241), + [sym_placeholder] = ACTIONS(5239), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5241), + [anon_sym_CARET] = ACTIONS(5241), + [anon_sym__] = ACTIONS(5241), + [anon_sym_LT] = ACTIONS(5241), + [anon_sym_GT] = ACTIONS(5241), + [anon_sym_BANG] = ACTIONS(5241), + [anon_sym_PIPE] = ACTIONS(5241), + [anon_sym_COLON] = ACTIONS(5241), + [anon_sym_SQUOTE] = ACTIONS(5241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), + [anon_sym_DOLLAR] = ACTIONS(5241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), + [anon_sym_BSLASHbegin] = ACTIONS(5241), + [anon_sym_BSLASHusepackage] = ACTIONS(5241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), + [anon_sym_BSLASHinclude] = ACTIONS(5241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), + [anon_sym_BSLASHinput] = ACTIONS(5241), + [anon_sym_BSLASHsubfile] = ACTIONS(5241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), + [anon_sym_BSLASHbibliography] = ACTIONS(5241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), + [anon_sym_BSLASHincludesvg] = ACTIONS(5241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), + [anon_sym_BSLASHimport] = ACTIONS(5241), + [anon_sym_BSLASHsubimport] = ACTIONS(5241), + [anon_sym_BSLASHinputfrom] = ACTIONS(5241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), + [anon_sym_BSLASHincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHcaption] = ACTIONS(5241), + [anon_sym_BSLASHcite] = ACTIONS(5241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCite] = ACTIONS(5241), + [anon_sym_BSLASHnocite] = ACTIONS(5241), + [anon_sym_BSLASHcitet] = ACTIONS(5241), + [anon_sym_BSLASHcitep] = ACTIONS(5241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor] = ACTIONS(5241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle] = ACTIONS(5241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteyear] = ACTIONS(5241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitedate] = ACTIONS(5241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteurl] = ACTIONS(5241), + [anon_sym_BSLASHfullcite] = ACTIONS(5241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), + [anon_sym_BSLASHcitealt] = ACTIONS(5241), + [anon_sym_BSLASHcitealp] = ACTIONS(5241), + [anon_sym_BSLASHcitetext] = ACTIONS(5241), + [anon_sym_BSLASHparencite] = ACTIONS(5241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHParencite] = ACTIONS(5241), + [anon_sym_BSLASHfootcite] = ACTIONS(5241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), + [anon_sym_BSLASHtextcite] = ACTIONS(5241), + [anon_sym_BSLASHTextcite] = ACTIONS(5241), + [anon_sym_BSLASHsmartcite] = ACTIONS(5241), + [anon_sym_BSLASHSmartcite] = ACTIONS(5241), + [anon_sym_BSLASHsupercite] = ACTIONS(5241), + [anon_sym_BSLASHautocite] = ACTIONS(5241), + [anon_sym_BSLASHAutocite] = ACTIONS(5241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHvolcite] = ACTIONS(5241), + [anon_sym_BSLASHVolcite] = ACTIONS(5241), + [anon_sym_BSLASHpvolcite] = ACTIONS(5241), + [anon_sym_BSLASHPvolcite] = ACTIONS(5241), + [anon_sym_BSLASHfvolcite] = ACTIONS(5241), + [anon_sym_BSLASHftvolcite] = ACTIONS(5241), + [anon_sym_BSLASHsvolcite] = ACTIONS(5241), + [anon_sym_BSLASHSvolcite] = ACTIONS(5241), + [anon_sym_BSLASHtvolcite] = ACTIONS(5241), + [anon_sym_BSLASHTvolcite] = ACTIONS(5241), + [anon_sym_BSLASHavolcite] = ACTIONS(5241), + [anon_sym_BSLASHAvolcite] = ACTIONS(5241), + [anon_sym_BSLASHnotecite] = ACTIONS(5241), + [anon_sym_BSLASHNotecite] = ACTIONS(5241), + [anon_sym_BSLASHpnotecite] = ACTIONS(5241), + [anon_sym_BSLASHPnotecite] = ACTIONS(5241), + [anon_sym_BSLASHfnotecite] = ACTIONS(5241), + [anon_sym_BSLASHlabel] = ACTIONS(5241), + [anon_sym_BSLASHref] = ACTIONS(5241), + [anon_sym_BSLASHeqref] = ACTIONS(5241), + [anon_sym_BSLASHvref] = ACTIONS(5241), + [anon_sym_BSLASHVref] = ACTIONS(5241), + [anon_sym_BSLASHautoref] = ACTIONS(5241), + [anon_sym_BSLASHpageref] = ACTIONS(5241), + [anon_sym_BSLASHcref] = ACTIONS(5241), + [anon_sym_BSLASHCref] = ACTIONS(5241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnameCref] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHlabelcref] = ACTIONS(5241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange] = ACTIONS(5241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnewlabel] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), + [anon_sym_BSLASHdef] = ACTIONS(5241), + [anon_sym_BSLASHlet] = ACTIONS(5241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), + [anon_sym_BSLASHgls] = ACTIONS(5241), + [anon_sym_BSLASHGls] = ACTIONS(5241), + [anon_sym_BSLASHGLS] = ACTIONS(5241), + [anon_sym_BSLASHglspl] = ACTIONS(5241), + [anon_sym_BSLASHGlspl] = ACTIONS(5241), + [anon_sym_BSLASHGLSpl] = ACTIONS(5241), + [anon_sym_BSLASHglsdisp] = ACTIONS(5241), + [anon_sym_BSLASHglslink] = ACTIONS(5241), + [anon_sym_BSLASHglstext] = ACTIONS(5241), + [anon_sym_BSLASHGlstext] = ACTIONS(5241), + [anon_sym_BSLASHGLStext] = ACTIONS(5241), + [anon_sym_BSLASHglsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), + [anon_sym_BSLASHglsplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSplural] = ACTIONS(5241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHglsname] = ACTIONS(5241), + [anon_sym_BSLASHGlsname] = ACTIONS(5241), + [anon_sym_BSLASHGLSname] = ACTIONS(5241), + [anon_sym_BSLASHglssymbol] = ACTIONS(5241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), + [anon_sym_BSLASHglsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), + [anon_sym_BSLASHglsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), + [anon_sym_BSLASHglsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), + [anon_sym_BSLASHglsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), + [anon_sym_BSLASHglsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), + [anon_sym_BSLASHnewacronym] = ACTIONS(5241), + [anon_sym_BSLASHacrshort] = ACTIONS(5241), + [anon_sym_BSLASHAcrshort] = ACTIONS(5241), + [anon_sym_BSLASHACRshort] = ACTIONS(5241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), + [anon_sym_BSLASHacrlong] = ACTIONS(5241), + [anon_sym_BSLASHAcrlong] = ACTIONS(5241), + [anon_sym_BSLASHACRlong] = ACTIONS(5241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), + [anon_sym_BSLASHacrfull] = ACTIONS(5241), + [anon_sym_BSLASHAcrfull] = ACTIONS(5241), + [anon_sym_BSLASHACRfull] = ACTIONS(5241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), + [anon_sym_BSLASHacs] = ACTIONS(5241), + [anon_sym_BSLASHAcs] = ACTIONS(5241), + [anon_sym_BSLASHacsp] = ACTIONS(5241), + [anon_sym_BSLASHAcsp] = ACTIONS(5241), + [anon_sym_BSLASHacl] = ACTIONS(5241), + [anon_sym_BSLASHAcl] = ACTIONS(5241), + [anon_sym_BSLASHaclp] = ACTIONS(5241), + [anon_sym_BSLASHAclp] = ACTIONS(5241), + [anon_sym_BSLASHacf] = ACTIONS(5241), + [anon_sym_BSLASHAcf] = ACTIONS(5241), + [anon_sym_BSLASHacfp] = ACTIONS(5241), + [anon_sym_BSLASHAcfp] = ACTIONS(5241), + [anon_sym_BSLASHac] = ACTIONS(5241), + [anon_sym_BSLASHAc] = ACTIONS(5241), + [anon_sym_BSLASHacp] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), + [anon_sym_BSLASHcolor] = ACTIONS(5241), + [anon_sym_BSLASHcolorbox] = ACTIONS(5241), + [anon_sym_BSLASHtextcolor] = ACTIONS(5241), + [anon_sym_BSLASHpagecolor] = ACTIONS(5241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), + [anon_sym_BSLASHtext] = ACTIONS(5241), + [anon_sym_BSLASHintertext] = ACTIONS(5241), + [anon_sym_shortintertext] = ACTIONS(5241), + }, + [794] = { + [ts_builtin_sym_end] = ACTIONS(5243), + [sym_command_name] = ACTIONS(5245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5243), + [anon_sym_RPAREN] = ACTIONS(5243), + [anon_sym_LBRACK] = ACTIONS(5243), + [anon_sym_RBRACK] = ACTIONS(5243), + [anon_sym_COMMA] = ACTIONS(5243), + [anon_sym_EQ] = ACTIONS(5243), + [anon_sym_BSLASHpart] = ACTIONS(5245), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddpart] = ACTIONS(5245), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5243), + [anon_sym_BSLASHchapter] = ACTIONS(5245), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddchap] = ACTIONS(5245), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsection] = ACTIONS(5245), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddsec] = ACTIONS(5245), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubsection] = ACTIONS(5245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5245), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHparagraph] = ACTIONS(5245), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5245), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5243), + [anon_sym_BSLASHitem] = ACTIONS(5245), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5243), + [anon_sym_LBRACE] = ACTIONS(5243), + [anon_sym_RBRACE] = ACTIONS(5243), + [sym_word] = ACTIONS(5245), + [sym_placeholder] = ACTIONS(5243), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_STAR] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5245), + [anon_sym_CARET] = ACTIONS(5245), + [anon_sym__] = ACTIONS(5245), + [anon_sym_LT] = ACTIONS(5245), + [anon_sym_GT] = ACTIONS(5245), + [anon_sym_BANG] = ACTIONS(5245), + [anon_sym_PIPE] = ACTIONS(5245), + [anon_sym_COLON] = ACTIONS(5245), + [anon_sym_SQUOTE] = ACTIONS(5245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5243), + [anon_sym_DOLLAR] = ACTIONS(5245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5243), + [anon_sym_BSLASHbegin] = ACTIONS(5245), + [anon_sym_BSLASHusepackage] = ACTIONS(5245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), + [anon_sym_BSLASHinclude] = ACTIONS(5245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), + [anon_sym_BSLASHinput] = ACTIONS(5245), + [anon_sym_BSLASHsubfile] = ACTIONS(5245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), + [anon_sym_BSLASHbibliography] = ACTIONS(5245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), + [anon_sym_BSLASHincludesvg] = ACTIONS(5245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), + [anon_sym_BSLASHimport] = ACTIONS(5245), + [anon_sym_BSLASHsubimport] = ACTIONS(5245), + [anon_sym_BSLASHinputfrom] = ACTIONS(5245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), + [anon_sym_BSLASHincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHcaption] = ACTIONS(5245), + [anon_sym_BSLASHcite] = ACTIONS(5245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCite] = ACTIONS(5245), + [anon_sym_BSLASHnocite] = ACTIONS(5245), + [anon_sym_BSLASHcitet] = ACTIONS(5245), + [anon_sym_BSLASHcitep] = ACTIONS(5245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteauthor] = ACTIONS(5245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitetitle] = ACTIONS(5245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteyear] = ACTIONS(5245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitedate] = ACTIONS(5245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteurl] = ACTIONS(5245), + [anon_sym_BSLASHfullcite] = ACTIONS(5245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), + [anon_sym_BSLASHcitealt] = ACTIONS(5245), + [anon_sym_BSLASHcitealp] = ACTIONS(5245), + [anon_sym_BSLASHcitetext] = ACTIONS(5245), + [anon_sym_BSLASHparencite] = ACTIONS(5245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHParencite] = ACTIONS(5245), + [anon_sym_BSLASHfootcite] = ACTIONS(5245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), + [anon_sym_BSLASHtextcite] = ACTIONS(5245), + [anon_sym_BSLASHTextcite] = ACTIONS(5245), + [anon_sym_BSLASHsmartcite] = ACTIONS(5245), + [anon_sym_BSLASHSmartcite] = ACTIONS(5245), + [anon_sym_BSLASHsupercite] = ACTIONS(5245), + [anon_sym_BSLASHautocite] = ACTIONS(5245), + [anon_sym_BSLASHAutocite] = ACTIONS(5245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHvolcite] = ACTIONS(5245), + [anon_sym_BSLASHVolcite] = ACTIONS(5245), + [anon_sym_BSLASHpvolcite] = ACTIONS(5245), + [anon_sym_BSLASHPvolcite] = ACTIONS(5245), + [anon_sym_BSLASHfvolcite] = ACTIONS(5245), + [anon_sym_BSLASHftvolcite] = ACTIONS(5245), + [anon_sym_BSLASHsvolcite] = ACTIONS(5245), + [anon_sym_BSLASHSvolcite] = ACTIONS(5245), + [anon_sym_BSLASHtvolcite] = ACTIONS(5245), + [anon_sym_BSLASHTvolcite] = ACTIONS(5245), + [anon_sym_BSLASHavolcite] = ACTIONS(5245), + [anon_sym_BSLASHAvolcite] = ACTIONS(5245), + [anon_sym_BSLASHnotecite] = ACTIONS(5245), + [anon_sym_BSLASHNotecite] = ACTIONS(5245), + [anon_sym_BSLASHpnotecite] = ACTIONS(5245), + [anon_sym_BSLASHPnotecite] = ACTIONS(5245), + [anon_sym_BSLASHfnotecite] = ACTIONS(5245), + [anon_sym_BSLASHlabel] = ACTIONS(5245), + [anon_sym_BSLASHref] = ACTIONS(5245), + [anon_sym_BSLASHeqref] = ACTIONS(5245), + [anon_sym_BSLASHvref] = ACTIONS(5245), + [anon_sym_BSLASHVref] = ACTIONS(5245), + [anon_sym_BSLASHautoref] = ACTIONS(5245), + [anon_sym_BSLASHpageref] = ACTIONS(5245), + [anon_sym_BSLASHcref] = ACTIONS(5245), + [anon_sym_BSLASHCref] = ACTIONS(5245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnameCref] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHlabelcref] = ACTIONS(5245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCrefrange] = ACTIONS(5245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnewlabel] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), + [anon_sym_BSLASHdef] = ACTIONS(5245), + [anon_sym_BSLASHlet] = ACTIONS(5245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), + [anon_sym_BSLASHgls] = ACTIONS(5245), + [anon_sym_BSLASHGls] = ACTIONS(5245), + [anon_sym_BSLASHGLS] = ACTIONS(5245), + [anon_sym_BSLASHglspl] = ACTIONS(5245), + [anon_sym_BSLASHGlspl] = ACTIONS(5245), + [anon_sym_BSLASHGLSpl] = ACTIONS(5245), + [anon_sym_BSLASHglsdisp] = ACTIONS(5245), + [anon_sym_BSLASHglslink] = ACTIONS(5245), + [anon_sym_BSLASHglstext] = ACTIONS(5245), + [anon_sym_BSLASHGlstext] = ACTIONS(5245), + [anon_sym_BSLASHGLStext] = ACTIONS(5245), + [anon_sym_BSLASHglsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), + [anon_sym_BSLASHglsplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSplural] = ACTIONS(5245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHglsname] = ACTIONS(5245), + [anon_sym_BSLASHGlsname] = ACTIONS(5245), + [anon_sym_BSLASHGLSname] = ACTIONS(5245), + [anon_sym_BSLASHglssymbol] = ACTIONS(5245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), + [anon_sym_BSLASHglsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), + [anon_sym_BSLASHglsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), + [anon_sym_BSLASHglsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), + [anon_sym_BSLASHglsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), + [anon_sym_BSLASHglsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), + [anon_sym_BSLASHnewacronym] = ACTIONS(5245), + [anon_sym_BSLASHacrshort] = ACTIONS(5245), + [anon_sym_BSLASHAcrshort] = ACTIONS(5245), + [anon_sym_BSLASHACRshort] = ACTIONS(5245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), + [anon_sym_BSLASHacrlong] = ACTIONS(5245), + [anon_sym_BSLASHAcrlong] = ACTIONS(5245), + [anon_sym_BSLASHACRlong] = ACTIONS(5245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), + [anon_sym_BSLASHacrfull] = ACTIONS(5245), + [anon_sym_BSLASHAcrfull] = ACTIONS(5245), + [anon_sym_BSLASHACRfull] = ACTIONS(5245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), + [anon_sym_BSLASHacs] = ACTIONS(5245), + [anon_sym_BSLASHAcs] = ACTIONS(5245), + [anon_sym_BSLASHacsp] = ACTIONS(5245), + [anon_sym_BSLASHAcsp] = ACTIONS(5245), + [anon_sym_BSLASHacl] = ACTIONS(5245), + [anon_sym_BSLASHAcl] = ACTIONS(5245), + [anon_sym_BSLASHaclp] = ACTIONS(5245), + [anon_sym_BSLASHAclp] = ACTIONS(5245), + [anon_sym_BSLASHacf] = ACTIONS(5245), + [anon_sym_BSLASHAcf] = ACTIONS(5245), + [anon_sym_BSLASHacfp] = ACTIONS(5245), + [anon_sym_BSLASHAcfp] = ACTIONS(5245), + [anon_sym_BSLASHac] = ACTIONS(5245), + [anon_sym_BSLASHAc] = ACTIONS(5245), + [anon_sym_BSLASHacp] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), + [anon_sym_BSLASHcolor] = ACTIONS(5245), + [anon_sym_BSLASHcolorbox] = ACTIONS(5245), + [anon_sym_BSLASHtextcolor] = ACTIONS(5245), + [anon_sym_BSLASHpagecolor] = ACTIONS(5245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), + [anon_sym_BSLASHtext] = ACTIONS(5245), + [anon_sym_BSLASHintertext] = ACTIONS(5245), + [anon_sym_shortintertext] = ACTIONS(5245), + }, + [795] = { + [ts_builtin_sym_end] = ACTIONS(5247), + [sym_command_name] = ACTIONS(5249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5249), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5247), + [anon_sym_LBRACK] = ACTIONS(5247), + [anon_sym_RBRACK] = ACTIONS(5247), + [anon_sym_COMMA] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_BSLASHpart] = ACTIONS(5249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddpart] = ACTIONS(5249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHchapter] = ACTIONS(5249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddchap] = ACTIONS(5249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsection] = ACTIONS(5249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddsec] = ACTIONS(5249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHparagraph] = ACTIONS(5249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHitem] = ACTIONS(5249), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5247), + [anon_sym_LBRACE] = ACTIONS(5247), + [anon_sym_RBRACE] = ACTIONS(5247), + [sym_word] = ACTIONS(5249), + [sym_placeholder] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5249), + [anon_sym_STAR] = ACTIONS(5249), + [anon_sym_SLASH] = ACTIONS(5249), + [anon_sym_CARET] = ACTIONS(5249), + [anon_sym__] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(5249), + [anon_sym_GT] = ACTIONS(5249), + [anon_sym_BANG] = ACTIONS(5249), + [anon_sym_PIPE] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_SQUOTE] = ACTIONS(5249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), + [anon_sym_DOLLAR] = ACTIONS(5249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), + [anon_sym_BSLASHbegin] = ACTIONS(5249), + [anon_sym_BSLASHusepackage] = ACTIONS(5249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), + [anon_sym_BSLASHinclude] = ACTIONS(5249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), + [anon_sym_BSLASHinput] = ACTIONS(5249), + [anon_sym_BSLASHsubfile] = ACTIONS(5249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), + [anon_sym_BSLASHbibliography] = ACTIONS(5249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), + [anon_sym_BSLASHincludesvg] = ACTIONS(5249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), + [anon_sym_BSLASHimport] = ACTIONS(5249), + [anon_sym_BSLASHsubimport] = ACTIONS(5249), + [anon_sym_BSLASHinputfrom] = ACTIONS(5249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), + [anon_sym_BSLASHincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHcaption] = ACTIONS(5249), + [anon_sym_BSLASHcite] = ACTIONS(5249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCite] = ACTIONS(5249), + [anon_sym_BSLASHnocite] = ACTIONS(5249), + [anon_sym_BSLASHcitet] = ACTIONS(5249), + [anon_sym_BSLASHcitep] = ACTIONS(5249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteauthor] = ACTIONS(5249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitetitle] = ACTIONS(5249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteyear] = ACTIONS(5249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitedate] = ACTIONS(5249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteurl] = ACTIONS(5249), + [anon_sym_BSLASHfullcite] = ACTIONS(5249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), + [anon_sym_BSLASHcitealt] = ACTIONS(5249), + [anon_sym_BSLASHcitealp] = ACTIONS(5249), + [anon_sym_BSLASHcitetext] = ACTIONS(5249), + [anon_sym_BSLASHparencite] = ACTIONS(5249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHParencite] = ACTIONS(5249), + [anon_sym_BSLASHfootcite] = ACTIONS(5249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), + [anon_sym_BSLASHtextcite] = ACTIONS(5249), + [anon_sym_BSLASHTextcite] = ACTIONS(5249), + [anon_sym_BSLASHsmartcite] = ACTIONS(5249), + [anon_sym_BSLASHSmartcite] = ACTIONS(5249), + [anon_sym_BSLASHsupercite] = ACTIONS(5249), + [anon_sym_BSLASHautocite] = ACTIONS(5249), + [anon_sym_BSLASHAutocite] = ACTIONS(5249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHvolcite] = ACTIONS(5249), + [anon_sym_BSLASHVolcite] = ACTIONS(5249), + [anon_sym_BSLASHpvolcite] = ACTIONS(5249), + [anon_sym_BSLASHPvolcite] = ACTIONS(5249), + [anon_sym_BSLASHfvolcite] = ACTIONS(5249), + [anon_sym_BSLASHftvolcite] = ACTIONS(5249), + [anon_sym_BSLASHsvolcite] = ACTIONS(5249), + [anon_sym_BSLASHSvolcite] = ACTIONS(5249), + [anon_sym_BSLASHtvolcite] = ACTIONS(5249), + [anon_sym_BSLASHTvolcite] = ACTIONS(5249), + [anon_sym_BSLASHavolcite] = ACTIONS(5249), + [anon_sym_BSLASHAvolcite] = ACTIONS(5249), + [anon_sym_BSLASHnotecite] = ACTIONS(5249), + [anon_sym_BSLASHNotecite] = ACTIONS(5249), + [anon_sym_BSLASHpnotecite] = ACTIONS(5249), + [anon_sym_BSLASHPnotecite] = ACTIONS(5249), + [anon_sym_BSLASHfnotecite] = ACTIONS(5249), + [anon_sym_BSLASHlabel] = ACTIONS(5249), + [anon_sym_BSLASHref] = ACTIONS(5249), + [anon_sym_BSLASHeqref] = ACTIONS(5249), + [anon_sym_BSLASHvref] = ACTIONS(5249), + [anon_sym_BSLASHVref] = ACTIONS(5249), + [anon_sym_BSLASHautoref] = ACTIONS(5249), + [anon_sym_BSLASHpageref] = ACTIONS(5249), + [anon_sym_BSLASHcref] = ACTIONS(5249), + [anon_sym_BSLASHCref] = ACTIONS(5249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnameCref] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHlabelcref] = ACTIONS(5249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + [anon_sym_BSLASHtext] = ACTIONS(5249), + [anon_sym_BSLASHintertext] = ACTIONS(5249), + [anon_sym_shortintertext] = ACTIONS(5249), + }, + [796] = { + [ts_builtin_sym_end] = ACTIONS(5251), + [sym_command_name] = ACTIONS(5253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5253), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(5251), + [anon_sym_LBRACK] = ACTIONS(5251), + [anon_sym_RBRACK] = ACTIONS(5251), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_BSLASHpart] = ACTIONS(5253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddpart] = ACTIONS(5253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHchapter] = ACTIONS(5253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddchap] = ACTIONS(5253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsection] = ACTIONS(5253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddsec] = ACTIONS(5253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHparagraph] = ACTIONS(5253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHitem] = ACTIONS(5253), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5251), + [anon_sym_RBRACE] = ACTIONS(5251), + [sym_word] = ACTIONS(5253), + [sym_placeholder] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5253), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym__] = ACTIONS(5253), + [anon_sym_LT] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5253), + [anon_sym_BANG] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_SQUOTE] = ACTIONS(5253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), + [anon_sym_DOLLAR] = ACTIONS(5253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), + [anon_sym_BSLASHbegin] = ACTIONS(5253), + [anon_sym_BSLASHusepackage] = ACTIONS(5253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHinclude] = ACTIONS(5253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), + [anon_sym_BSLASHinput] = ACTIONS(5253), + [anon_sym_BSLASHsubfile] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), + [anon_sym_BSLASHbibliography] = ACTIONS(5253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), + [anon_sym_BSLASHincludesvg] = ACTIONS(5253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), + [anon_sym_BSLASHimport] = ACTIONS(5253), + [anon_sym_BSLASHsubimport] = ACTIONS(5253), + [anon_sym_BSLASHinputfrom] = ACTIONS(5253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), + [anon_sym_BSLASHincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHcaption] = ACTIONS(5253), + [anon_sym_BSLASHcite] = ACTIONS(5253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCite] = ACTIONS(5253), + [anon_sym_BSLASHnocite] = ACTIONS(5253), + [anon_sym_BSLASHcitet] = ACTIONS(5253), + [anon_sym_BSLASHcitep] = ACTIONS(5253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteauthor] = ACTIONS(5253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitetitle] = ACTIONS(5253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteyear] = ACTIONS(5253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitedate] = ACTIONS(5253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteurl] = ACTIONS(5253), + [anon_sym_BSLASHfullcite] = ACTIONS(5253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), + [anon_sym_BSLASHcitealt] = ACTIONS(5253), + [anon_sym_BSLASHcitealp] = ACTIONS(5253), + [anon_sym_BSLASHcitetext] = ACTIONS(5253), + [anon_sym_BSLASHparencite] = ACTIONS(5253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHParencite] = ACTIONS(5253), + [anon_sym_BSLASHfootcite] = ACTIONS(5253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), + [anon_sym_BSLASHtextcite] = ACTIONS(5253), + [anon_sym_BSLASHTextcite] = ACTIONS(5253), + [anon_sym_BSLASHsmartcite] = ACTIONS(5253), + [anon_sym_BSLASHSmartcite] = ACTIONS(5253), + [anon_sym_BSLASHsupercite] = ACTIONS(5253), + [anon_sym_BSLASHautocite] = ACTIONS(5253), + [anon_sym_BSLASHAutocite] = ACTIONS(5253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHvolcite] = ACTIONS(5253), + [anon_sym_BSLASHVolcite] = ACTIONS(5253), + [anon_sym_BSLASHpvolcite] = ACTIONS(5253), + [anon_sym_BSLASHPvolcite] = ACTIONS(5253), + [anon_sym_BSLASHfvolcite] = ACTIONS(5253), + [anon_sym_BSLASHftvolcite] = ACTIONS(5253), + [anon_sym_BSLASHsvolcite] = ACTIONS(5253), + [anon_sym_BSLASHSvolcite] = ACTIONS(5253), + [anon_sym_BSLASHtvolcite] = ACTIONS(5253), + [anon_sym_BSLASHTvolcite] = ACTIONS(5253), + [anon_sym_BSLASHavolcite] = ACTIONS(5253), + [anon_sym_BSLASHAvolcite] = ACTIONS(5253), + [anon_sym_BSLASHnotecite] = ACTIONS(5253), + [anon_sym_BSLASHNotecite] = ACTIONS(5253), + [anon_sym_BSLASHpnotecite] = ACTIONS(5253), + [anon_sym_BSLASHPnotecite] = ACTIONS(5253), + [anon_sym_BSLASHfnotecite] = ACTIONS(5253), + [anon_sym_BSLASHlabel] = ACTIONS(5253), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCrefrange] = ACTIONS(5253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnewlabel] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdef] = ACTIONS(5253), + [anon_sym_BSLASHlet] = ACTIONS(5253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), + [anon_sym_BSLASHgls] = ACTIONS(5253), + [anon_sym_BSLASHGls] = ACTIONS(5253), + [anon_sym_BSLASHGLS] = ACTIONS(5253), + [anon_sym_BSLASHglspl] = ACTIONS(5253), + [anon_sym_BSLASHGlspl] = ACTIONS(5253), + [anon_sym_BSLASHGLSpl] = ACTIONS(5253), + [anon_sym_BSLASHglsdisp] = ACTIONS(5253), + [anon_sym_BSLASHglslink] = ACTIONS(5253), + [anon_sym_BSLASHglstext] = ACTIONS(5253), + [anon_sym_BSLASHGlstext] = ACTIONS(5253), + [anon_sym_BSLASHGLStext] = ACTIONS(5253), + [anon_sym_BSLASHglsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), + [anon_sym_BSLASHglsplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSplural] = ACTIONS(5253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHglsname] = ACTIONS(5253), + [anon_sym_BSLASHGlsname] = ACTIONS(5253), + [anon_sym_BSLASHGLSname] = ACTIONS(5253), + [anon_sym_BSLASHglssymbol] = ACTIONS(5253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), + [anon_sym_BSLASHglsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), + [anon_sym_BSLASHglsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), + [anon_sym_BSLASHglsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), + [anon_sym_BSLASHglsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), + [anon_sym_BSLASHglsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), + [anon_sym_BSLASHnewacronym] = ACTIONS(5253), + [anon_sym_BSLASHacrshort] = ACTIONS(5253), + [anon_sym_BSLASHAcrshort] = ACTIONS(5253), + [anon_sym_BSLASHACRshort] = ACTIONS(5253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), + [anon_sym_BSLASHacrlong] = ACTIONS(5253), + [anon_sym_BSLASHAcrlong] = ACTIONS(5253), + [anon_sym_BSLASHACRlong] = ACTIONS(5253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), + [anon_sym_BSLASHacrfull] = ACTIONS(5253), + [anon_sym_BSLASHAcrfull] = ACTIONS(5253), + [anon_sym_BSLASHACRfull] = ACTIONS(5253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), + [anon_sym_BSLASHacs] = ACTIONS(5253), + [anon_sym_BSLASHAcs] = ACTIONS(5253), + [anon_sym_BSLASHacsp] = ACTIONS(5253), + [anon_sym_BSLASHAcsp] = ACTIONS(5253), + [anon_sym_BSLASHacl] = ACTIONS(5253), + [anon_sym_BSLASHAcl] = ACTIONS(5253), + [anon_sym_BSLASHaclp] = ACTIONS(5253), + [anon_sym_BSLASHAclp] = ACTIONS(5253), + [anon_sym_BSLASHacf] = ACTIONS(5253), + [anon_sym_BSLASHAcf] = ACTIONS(5253), + [anon_sym_BSLASHacfp] = ACTIONS(5253), + [anon_sym_BSLASHAcfp] = ACTIONS(5253), + [anon_sym_BSLASHac] = ACTIONS(5253), + [anon_sym_BSLASHAc] = ACTIONS(5253), + [anon_sym_BSLASHacp] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), + [anon_sym_BSLASHcolor] = ACTIONS(5253), + [anon_sym_BSLASHcolorbox] = ACTIONS(5253), + [anon_sym_BSLASHtextcolor] = ACTIONS(5253), + [anon_sym_BSLASHpagecolor] = ACTIONS(5253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), + [anon_sym_BSLASHtext] = ACTIONS(5253), + [anon_sym_BSLASHintertext] = ACTIONS(5253), + [anon_sym_shortintertext] = ACTIONS(5253), + }, + [797] = { + [ts_builtin_sym_end] = ACTIONS(5255), + [sym_command_name] = ACTIONS(5257), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5257), + [anon_sym_LPAREN] = ACTIONS(5255), + [anon_sym_RPAREN] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_RBRACK] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_BSLASHpart] = ACTIONS(5257), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddpart] = ACTIONS(5257), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5255), + [anon_sym_BSLASHchapter] = ACTIONS(5257), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddchap] = ACTIONS(5257), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsection] = ACTIONS(5257), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddsec] = ACTIONS(5257), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubsection] = ACTIONS(5257), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5257), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHparagraph] = ACTIONS(5257), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5255), + [anon_sym_BSLASHitem] = ACTIONS(5257), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(5255), + [anon_sym_RBRACE] = ACTIONS(5255), + [sym_word] = ACTIONS(5257), + [sym_placeholder] = ACTIONS(5255), + [anon_sym_PLUS] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(5257), + [anon_sym_STAR] = ACTIONS(5257), + [anon_sym_SLASH] = ACTIONS(5257), + [anon_sym_CARET] = ACTIONS(5257), + [anon_sym__] = ACTIONS(5257), + [anon_sym_LT] = ACTIONS(5257), + [anon_sym_GT] = ACTIONS(5257), + [anon_sym_BANG] = ACTIONS(5257), + [anon_sym_PIPE] = ACTIONS(5257), + [anon_sym_COLON] = ACTIONS(5257), + [anon_sym_SQUOTE] = ACTIONS(5257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), + [anon_sym_DOLLAR] = ACTIONS(5257), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), + [anon_sym_BSLASHbegin] = ACTIONS(5257), + [anon_sym_BSLASHusepackage] = ACTIONS(5257), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), + [anon_sym_BSLASHinclude] = ACTIONS(5257), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), + [anon_sym_BSLASHinput] = ACTIONS(5257), + [anon_sym_BSLASHsubfile] = ACTIONS(5257), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), + [anon_sym_BSLASHbibliography] = ACTIONS(5257), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), + [anon_sym_BSLASHincludesvg] = ACTIONS(5257), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), + [anon_sym_BSLASHimport] = ACTIONS(5257), + [anon_sym_BSLASHsubimport] = ACTIONS(5257), + [anon_sym_BSLASHinputfrom] = ACTIONS(5257), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), + [anon_sym_BSLASHincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHcaption] = ACTIONS(5257), + [anon_sym_BSLASHcite] = ACTIONS(5257), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCite] = ACTIONS(5257), + [anon_sym_BSLASHnocite] = ACTIONS(5257), + [anon_sym_BSLASHcitet] = ACTIONS(5257), + [anon_sym_BSLASHcitep] = ACTIONS(5257), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteauthor] = ACTIONS(5257), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitetitle] = ACTIONS(5257), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteyear] = ACTIONS(5257), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitedate] = ACTIONS(5257), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteurl] = ACTIONS(5257), + [anon_sym_BSLASHfullcite] = ACTIONS(5257), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), + [anon_sym_BSLASHcitealt] = ACTIONS(5257), + [anon_sym_BSLASHcitealp] = ACTIONS(5257), + [anon_sym_BSLASHcitetext] = ACTIONS(5257), + [anon_sym_BSLASHparencite] = ACTIONS(5257), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHParencite] = ACTIONS(5257), + [anon_sym_BSLASHfootcite] = ACTIONS(5257), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), + [anon_sym_BSLASHtextcite] = ACTIONS(5257), + [anon_sym_BSLASHTextcite] = ACTIONS(5257), + [anon_sym_BSLASHsmartcite] = ACTIONS(5257), + [anon_sym_BSLASHSmartcite] = ACTIONS(5257), + [anon_sym_BSLASHsupercite] = ACTIONS(5257), + [anon_sym_BSLASHautocite] = ACTIONS(5257), + [anon_sym_BSLASHAutocite] = ACTIONS(5257), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHvolcite] = ACTIONS(5257), + [anon_sym_BSLASHVolcite] = ACTIONS(5257), + [anon_sym_BSLASHpvolcite] = ACTIONS(5257), + [anon_sym_BSLASHPvolcite] = ACTIONS(5257), + [anon_sym_BSLASHfvolcite] = ACTIONS(5257), + [anon_sym_BSLASHftvolcite] = ACTIONS(5257), + [anon_sym_BSLASHsvolcite] = ACTIONS(5257), + [anon_sym_BSLASHSvolcite] = ACTIONS(5257), + [anon_sym_BSLASHtvolcite] = ACTIONS(5257), + [anon_sym_BSLASHTvolcite] = ACTIONS(5257), + [anon_sym_BSLASHavolcite] = ACTIONS(5257), + [anon_sym_BSLASHAvolcite] = ACTIONS(5257), + [anon_sym_BSLASHnotecite] = ACTIONS(5257), + [anon_sym_BSLASHNotecite] = ACTIONS(5257), + [anon_sym_BSLASHpnotecite] = ACTIONS(5257), + [anon_sym_BSLASHPnotecite] = ACTIONS(5257), + [anon_sym_BSLASHfnotecite] = ACTIONS(5257), + [anon_sym_BSLASHlabel] = ACTIONS(5257), + [anon_sym_BSLASHref] = ACTIONS(5257), + [anon_sym_BSLASHeqref] = ACTIONS(5257), + [anon_sym_BSLASHvref] = ACTIONS(5257), + [anon_sym_BSLASHVref] = ACTIONS(5257), + [anon_sym_BSLASHautoref] = ACTIONS(5257), + [anon_sym_BSLASHpageref] = ACTIONS(5257), + [anon_sym_BSLASHcref] = ACTIONS(5257), + [anon_sym_BSLASHCref] = ACTIONS(5257), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnameCref] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHlabelcref] = ACTIONS(5257), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCrefrange] = ACTIONS(5257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnewlabel] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), + [anon_sym_BSLASHdef] = ACTIONS(5257), + [anon_sym_BSLASHlet] = ACTIONS(5257), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), + [anon_sym_BSLASHgls] = ACTIONS(5257), + [anon_sym_BSLASHGls] = ACTIONS(5257), + [anon_sym_BSLASHGLS] = ACTIONS(5257), + [anon_sym_BSLASHglspl] = ACTIONS(5257), + [anon_sym_BSLASHGlspl] = ACTIONS(5257), + [anon_sym_BSLASHGLSpl] = ACTIONS(5257), + [anon_sym_BSLASHglsdisp] = ACTIONS(5257), + [anon_sym_BSLASHglslink] = ACTIONS(5257), + [anon_sym_BSLASHglstext] = ACTIONS(5257), + [anon_sym_BSLASHGlstext] = ACTIONS(5257), + [anon_sym_BSLASHGLStext] = ACTIONS(5257), + [anon_sym_BSLASHglsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), + [anon_sym_BSLASHglsplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSplural] = ACTIONS(5257), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHglsname] = ACTIONS(5257), + [anon_sym_BSLASHGlsname] = ACTIONS(5257), + [anon_sym_BSLASHGLSname] = ACTIONS(5257), + [anon_sym_BSLASHglssymbol] = ACTIONS(5257), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), + [anon_sym_BSLASHglsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), + [anon_sym_BSLASHglsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), + [anon_sym_BSLASHglsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), + [anon_sym_BSLASHglsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), + [anon_sym_BSLASHglsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), + [anon_sym_BSLASHnewacronym] = ACTIONS(5257), + [anon_sym_BSLASHacrshort] = ACTIONS(5257), + [anon_sym_BSLASHAcrshort] = ACTIONS(5257), + [anon_sym_BSLASHACRshort] = ACTIONS(5257), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), + [anon_sym_BSLASHacrlong] = ACTIONS(5257), + [anon_sym_BSLASHAcrlong] = ACTIONS(5257), + [anon_sym_BSLASHACRlong] = ACTIONS(5257), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), + [anon_sym_BSLASHacrfull] = ACTIONS(5257), + [anon_sym_BSLASHAcrfull] = ACTIONS(5257), + [anon_sym_BSLASHACRfull] = ACTIONS(5257), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), + [anon_sym_BSLASHacs] = ACTIONS(5257), + [anon_sym_BSLASHAcs] = ACTIONS(5257), + [anon_sym_BSLASHacsp] = ACTIONS(5257), + [anon_sym_BSLASHAcsp] = ACTIONS(5257), + [anon_sym_BSLASHacl] = ACTIONS(5257), + [anon_sym_BSLASHAcl] = ACTIONS(5257), + [anon_sym_BSLASHaclp] = ACTIONS(5257), + [anon_sym_BSLASHAclp] = ACTIONS(5257), + [anon_sym_BSLASHacf] = ACTIONS(5257), + [anon_sym_BSLASHAcf] = ACTIONS(5257), + [anon_sym_BSLASHacfp] = ACTIONS(5257), + [anon_sym_BSLASHAcfp] = ACTIONS(5257), + [anon_sym_BSLASHac] = ACTIONS(5257), + [anon_sym_BSLASHAc] = ACTIONS(5257), + [anon_sym_BSLASHacp] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), + [anon_sym_BSLASHcolor] = ACTIONS(5257), + [anon_sym_BSLASHcolorbox] = ACTIONS(5257), + [anon_sym_BSLASHtextcolor] = ACTIONS(5257), + [anon_sym_BSLASHpagecolor] = ACTIONS(5257), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), + [anon_sym_BSLASHtext] = ACTIONS(5257), + [anon_sym_BSLASHintertext] = ACTIONS(5257), + [anon_sym_shortintertext] = ACTIONS(5257), + }, + [798] = { + [ts_builtin_sym_end] = ACTIONS(5259), + [sym_command_name] = ACTIONS(5261), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5261), + [anon_sym_LPAREN] = ACTIONS(5259), + [anon_sym_RPAREN] = ACTIONS(5259), + [anon_sym_LBRACK] = ACTIONS(5259), + [anon_sym_RBRACK] = ACTIONS(5259), + [anon_sym_COMMA] = ACTIONS(5259), + [anon_sym_EQ] = ACTIONS(5259), + [anon_sym_BSLASHpart] = ACTIONS(5261), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddpart] = ACTIONS(5261), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5259), + [anon_sym_BSLASHchapter] = ACTIONS(5261), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddchap] = ACTIONS(5261), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsection] = ACTIONS(5261), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddsec] = ACTIONS(5261), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubsection] = ACTIONS(5261), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5261), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHparagraph] = ACTIONS(5261), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5261), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5259), + [anon_sym_BSLASHitem] = ACTIONS(5261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5259), + [anon_sym_LBRACE] = ACTIONS(5259), + [anon_sym_RBRACE] = ACTIONS(5259), + [sym_word] = ACTIONS(5261), + [sym_placeholder] = ACTIONS(5259), + [anon_sym_PLUS] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(5261), + [anon_sym_STAR] = ACTIONS(5261), + [anon_sym_SLASH] = ACTIONS(5261), + [anon_sym_CARET] = ACTIONS(5261), + [anon_sym__] = ACTIONS(5261), + [anon_sym_LT] = ACTIONS(5261), + [anon_sym_GT] = ACTIONS(5261), + [anon_sym_BANG] = ACTIONS(5261), + [anon_sym_PIPE] = ACTIONS(5261), + [anon_sym_COLON] = ACTIONS(5261), + [anon_sym_SQUOTE] = ACTIONS(5261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5259), + [anon_sym_DOLLAR] = ACTIONS(5261), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5259), + [anon_sym_BSLASHbegin] = ACTIONS(5261), + [anon_sym_BSLASHusepackage] = ACTIONS(5261), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), + [anon_sym_BSLASHinclude] = ACTIONS(5261), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), + [anon_sym_BSLASHinput] = ACTIONS(5261), + [anon_sym_BSLASHsubfile] = ACTIONS(5261), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), + [anon_sym_BSLASHbibliography] = ACTIONS(5261), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), + [anon_sym_BSLASHincludesvg] = ACTIONS(5261), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), + [anon_sym_BSLASHimport] = ACTIONS(5261), + [anon_sym_BSLASHsubimport] = ACTIONS(5261), + [anon_sym_BSLASHinputfrom] = ACTIONS(5261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), + [anon_sym_BSLASHincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHcaption] = ACTIONS(5261), + [anon_sym_BSLASHcite] = ACTIONS(5261), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCite] = ACTIONS(5261), + [anon_sym_BSLASHnocite] = ACTIONS(5261), + [anon_sym_BSLASHcitet] = ACTIONS(5261), + [anon_sym_BSLASHcitep] = ACTIONS(5261), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteauthor] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitetitle] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteyear] = ACTIONS(5261), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitedate] = ACTIONS(5261), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteurl] = ACTIONS(5261), + [anon_sym_BSLASHfullcite] = ACTIONS(5261), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), + [anon_sym_BSLASHcitealt] = ACTIONS(5261), + [anon_sym_BSLASHcitealp] = ACTIONS(5261), + [anon_sym_BSLASHcitetext] = ACTIONS(5261), + [anon_sym_BSLASHparencite] = ACTIONS(5261), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHParencite] = ACTIONS(5261), + [anon_sym_BSLASHfootcite] = ACTIONS(5261), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), + [anon_sym_BSLASHtextcite] = ACTIONS(5261), + [anon_sym_BSLASHTextcite] = ACTIONS(5261), + [anon_sym_BSLASHsmartcite] = ACTIONS(5261), + [anon_sym_BSLASHSmartcite] = ACTIONS(5261), + [anon_sym_BSLASHsupercite] = ACTIONS(5261), + [anon_sym_BSLASHautocite] = ACTIONS(5261), + [anon_sym_BSLASHAutocite] = ACTIONS(5261), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHvolcite] = ACTIONS(5261), + [anon_sym_BSLASHVolcite] = ACTIONS(5261), + [anon_sym_BSLASHpvolcite] = ACTIONS(5261), + [anon_sym_BSLASHPvolcite] = ACTIONS(5261), + [anon_sym_BSLASHfvolcite] = ACTIONS(5261), + [anon_sym_BSLASHftvolcite] = ACTIONS(5261), + [anon_sym_BSLASHsvolcite] = ACTIONS(5261), + [anon_sym_BSLASHSvolcite] = ACTIONS(5261), + [anon_sym_BSLASHtvolcite] = ACTIONS(5261), + [anon_sym_BSLASHTvolcite] = ACTIONS(5261), + [anon_sym_BSLASHavolcite] = ACTIONS(5261), + [anon_sym_BSLASHAvolcite] = ACTIONS(5261), + [anon_sym_BSLASHnotecite] = ACTIONS(5261), + [anon_sym_BSLASHNotecite] = ACTIONS(5261), + [anon_sym_BSLASHpnotecite] = ACTIONS(5261), + [anon_sym_BSLASHPnotecite] = ACTIONS(5261), + [anon_sym_BSLASHfnotecite] = ACTIONS(5261), + [anon_sym_BSLASHlabel] = ACTIONS(5261), + [anon_sym_BSLASHref] = ACTIONS(5261), + [anon_sym_BSLASHeqref] = ACTIONS(5261), + [anon_sym_BSLASHvref] = ACTIONS(5261), + [anon_sym_BSLASHVref] = ACTIONS(5261), + [anon_sym_BSLASHautoref] = ACTIONS(5261), + [anon_sym_BSLASHpageref] = ACTIONS(5261), + [anon_sym_BSLASHcref] = ACTIONS(5261), + [anon_sym_BSLASHCref] = ACTIONS(5261), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnameCref] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHlabelcref] = ACTIONS(5261), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCrefrange] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnewlabel] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), + [anon_sym_BSLASHdef] = ACTIONS(5261), + [anon_sym_BSLASHlet] = ACTIONS(5261), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), + [anon_sym_BSLASHgls] = ACTIONS(5261), + [anon_sym_BSLASHGls] = ACTIONS(5261), + [anon_sym_BSLASHGLS] = ACTIONS(5261), + [anon_sym_BSLASHglspl] = ACTIONS(5261), + [anon_sym_BSLASHGlspl] = ACTIONS(5261), + [anon_sym_BSLASHGLSpl] = ACTIONS(5261), + [anon_sym_BSLASHglsdisp] = ACTIONS(5261), + [anon_sym_BSLASHglslink] = ACTIONS(5261), + [anon_sym_BSLASHglstext] = ACTIONS(5261), + [anon_sym_BSLASHGlstext] = ACTIONS(5261), + [anon_sym_BSLASHGLStext] = ACTIONS(5261), + [anon_sym_BSLASHglsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), + [anon_sym_BSLASHglsplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSplural] = ACTIONS(5261), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHglsname] = ACTIONS(5261), + [anon_sym_BSLASHGlsname] = ACTIONS(5261), + [anon_sym_BSLASHGLSname] = ACTIONS(5261), + [anon_sym_BSLASHglssymbol] = ACTIONS(5261), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), + [anon_sym_BSLASHglsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), + [anon_sym_BSLASHglsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), + [anon_sym_BSLASHglsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), + [anon_sym_BSLASHglsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), + [anon_sym_BSLASHglsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), + [anon_sym_BSLASHnewacronym] = ACTIONS(5261), + [anon_sym_BSLASHacrshort] = ACTIONS(5261), + [anon_sym_BSLASHAcrshort] = ACTIONS(5261), + [anon_sym_BSLASHACRshort] = ACTIONS(5261), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), + [anon_sym_BSLASHacrlong] = ACTIONS(5261), + [anon_sym_BSLASHAcrlong] = ACTIONS(5261), + [anon_sym_BSLASHACRlong] = ACTIONS(5261), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), + [anon_sym_BSLASHacrfull] = ACTIONS(5261), + [anon_sym_BSLASHAcrfull] = ACTIONS(5261), + [anon_sym_BSLASHACRfull] = ACTIONS(5261), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), + [anon_sym_BSLASHacs] = ACTIONS(5261), + [anon_sym_BSLASHAcs] = ACTIONS(5261), + [anon_sym_BSLASHacsp] = ACTIONS(5261), + [anon_sym_BSLASHAcsp] = ACTIONS(5261), + [anon_sym_BSLASHacl] = ACTIONS(5261), + [anon_sym_BSLASHAcl] = ACTIONS(5261), + [anon_sym_BSLASHaclp] = ACTIONS(5261), + [anon_sym_BSLASHAclp] = ACTIONS(5261), + [anon_sym_BSLASHacf] = ACTIONS(5261), + [anon_sym_BSLASHAcf] = ACTIONS(5261), + [anon_sym_BSLASHacfp] = ACTIONS(5261), + [anon_sym_BSLASHAcfp] = ACTIONS(5261), + [anon_sym_BSLASHac] = ACTIONS(5261), + [anon_sym_BSLASHAc] = ACTIONS(5261), + [anon_sym_BSLASHacp] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), + [anon_sym_BSLASHcolor] = ACTIONS(5261), + [anon_sym_BSLASHcolorbox] = ACTIONS(5261), + [anon_sym_BSLASHtextcolor] = ACTIONS(5261), + [anon_sym_BSLASHpagecolor] = ACTIONS(5261), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), + [anon_sym_BSLASHtext] = ACTIONS(5261), + [anon_sym_BSLASHintertext] = ACTIONS(5261), + [anon_sym_shortintertext] = ACTIONS(5261), + }, + [799] = { + [ts_builtin_sym_end] = ACTIONS(5263), + [sym_command_name] = ACTIONS(5265), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5265), + [anon_sym_LPAREN] = ACTIONS(5263), + [anon_sym_RPAREN] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(5263), + [anon_sym_RBRACK] = ACTIONS(5263), + [anon_sym_COMMA] = ACTIONS(5263), + [anon_sym_EQ] = ACTIONS(5263), + [anon_sym_BSLASHpart] = ACTIONS(5265), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddpart] = ACTIONS(5265), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5263), + [anon_sym_BSLASHchapter] = ACTIONS(5265), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddchap] = ACTIONS(5265), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsection] = ACTIONS(5265), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddsec] = ACTIONS(5265), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubsection] = ACTIONS(5265), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5265), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHparagraph] = ACTIONS(5265), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5265), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5263), + [anon_sym_BSLASHitem] = ACTIONS(5265), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5263), + [anon_sym_LBRACE] = ACTIONS(5263), + [anon_sym_RBRACE] = ACTIONS(5263), + [sym_word] = ACTIONS(5265), + [sym_placeholder] = ACTIONS(5263), + [anon_sym_PLUS] = ACTIONS(5265), + [anon_sym_DASH] = ACTIONS(5265), + [anon_sym_STAR] = ACTIONS(5265), + [anon_sym_SLASH] = ACTIONS(5265), + [anon_sym_CARET] = ACTIONS(5265), + [anon_sym__] = ACTIONS(5265), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_GT] = ACTIONS(5265), + [anon_sym_BANG] = ACTIONS(5265), + [anon_sym_PIPE] = ACTIONS(5265), + [anon_sym_COLON] = ACTIONS(5265), + [anon_sym_SQUOTE] = ACTIONS(5265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5263), + [anon_sym_DOLLAR] = ACTIONS(5265), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5263), + [anon_sym_BSLASHbegin] = ACTIONS(5265), + [anon_sym_BSLASHusepackage] = ACTIONS(5265), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), + [anon_sym_BSLASHinclude] = ACTIONS(5265), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), + [anon_sym_BSLASHinput] = ACTIONS(5265), + [anon_sym_BSLASHsubfile] = ACTIONS(5265), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), + [anon_sym_BSLASHbibliography] = ACTIONS(5265), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), + [anon_sym_BSLASHincludesvg] = ACTIONS(5265), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), + [anon_sym_BSLASHimport] = ACTIONS(5265), + [anon_sym_BSLASHsubimport] = ACTIONS(5265), + [anon_sym_BSLASHinputfrom] = ACTIONS(5265), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), + [anon_sym_BSLASHincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHcaption] = ACTIONS(5265), + [anon_sym_BSLASHcite] = ACTIONS(5265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCite] = ACTIONS(5265), + [anon_sym_BSLASHnocite] = ACTIONS(5265), + [anon_sym_BSLASHcitet] = ACTIONS(5265), + [anon_sym_BSLASHcitep] = ACTIONS(5265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor] = ACTIONS(5265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle] = ACTIONS(5265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteyear] = ACTIONS(5265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitedate] = ACTIONS(5265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteurl] = ACTIONS(5265), + [anon_sym_BSLASHfullcite] = ACTIONS(5265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), + [anon_sym_BSLASHcitealt] = ACTIONS(5265), + [anon_sym_BSLASHcitealp] = ACTIONS(5265), + [anon_sym_BSLASHcitetext] = ACTIONS(5265), + [anon_sym_BSLASHparencite] = ACTIONS(5265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHParencite] = ACTIONS(5265), + [anon_sym_BSLASHfootcite] = ACTIONS(5265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), + [anon_sym_BSLASHtextcite] = ACTIONS(5265), + [anon_sym_BSLASHTextcite] = ACTIONS(5265), + [anon_sym_BSLASHsmartcite] = ACTIONS(5265), + [anon_sym_BSLASHSmartcite] = ACTIONS(5265), + [anon_sym_BSLASHsupercite] = ACTIONS(5265), + [anon_sym_BSLASHautocite] = ACTIONS(5265), + [anon_sym_BSLASHAutocite] = ACTIONS(5265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHvolcite] = ACTIONS(5265), + [anon_sym_BSLASHVolcite] = ACTIONS(5265), + [anon_sym_BSLASHpvolcite] = ACTIONS(5265), + [anon_sym_BSLASHPvolcite] = ACTIONS(5265), + [anon_sym_BSLASHfvolcite] = ACTIONS(5265), + [anon_sym_BSLASHftvolcite] = ACTIONS(5265), + [anon_sym_BSLASHsvolcite] = ACTIONS(5265), + [anon_sym_BSLASHSvolcite] = ACTIONS(5265), + [anon_sym_BSLASHtvolcite] = ACTIONS(5265), + [anon_sym_BSLASHTvolcite] = ACTIONS(5265), + [anon_sym_BSLASHavolcite] = ACTIONS(5265), + [anon_sym_BSLASHAvolcite] = ACTIONS(5265), + [anon_sym_BSLASHnotecite] = ACTIONS(5265), + [anon_sym_BSLASHNotecite] = ACTIONS(5265), + [anon_sym_BSLASHpnotecite] = ACTIONS(5265), + [anon_sym_BSLASHPnotecite] = ACTIONS(5265), + [anon_sym_BSLASHfnotecite] = ACTIONS(5265), + [anon_sym_BSLASHlabel] = ACTIONS(5265), + [anon_sym_BSLASHref] = ACTIONS(5265), + [anon_sym_BSLASHeqref] = ACTIONS(5265), + [anon_sym_BSLASHvref] = ACTIONS(5265), + [anon_sym_BSLASHVref] = ACTIONS(5265), + [anon_sym_BSLASHautoref] = ACTIONS(5265), + [anon_sym_BSLASHpageref] = ACTIONS(5265), + [anon_sym_BSLASHcref] = ACTIONS(5265), + [anon_sym_BSLASHCref] = ACTIONS(5265), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnameCref] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHlabelcref] = ACTIONS(5265), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange] = ACTIONS(5265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnewlabel] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), + [anon_sym_BSLASHdef] = ACTIONS(5265), + [anon_sym_BSLASHlet] = ACTIONS(5265), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), + [anon_sym_BSLASHgls] = ACTIONS(5265), + [anon_sym_BSLASHGls] = ACTIONS(5265), + [anon_sym_BSLASHGLS] = ACTIONS(5265), + [anon_sym_BSLASHglspl] = ACTIONS(5265), + [anon_sym_BSLASHGlspl] = ACTIONS(5265), + [anon_sym_BSLASHGLSpl] = ACTIONS(5265), + [anon_sym_BSLASHglsdisp] = ACTIONS(5265), + [anon_sym_BSLASHglslink] = ACTIONS(5265), + [anon_sym_BSLASHglstext] = ACTIONS(5265), + [anon_sym_BSLASHGlstext] = ACTIONS(5265), + [anon_sym_BSLASHGLStext] = ACTIONS(5265), + [anon_sym_BSLASHglsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), + [anon_sym_BSLASHglsplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSplural] = ACTIONS(5265), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHglsname] = ACTIONS(5265), + [anon_sym_BSLASHGlsname] = ACTIONS(5265), + [anon_sym_BSLASHGLSname] = ACTIONS(5265), + [anon_sym_BSLASHglssymbol] = ACTIONS(5265), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), + [anon_sym_BSLASHglsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), + [anon_sym_BSLASHglsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), + [anon_sym_BSLASHglsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), + [anon_sym_BSLASHglsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), + [anon_sym_BSLASHglsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), + [anon_sym_BSLASHnewacronym] = ACTIONS(5265), + [anon_sym_BSLASHacrshort] = ACTIONS(5265), + [anon_sym_BSLASHAcrshort] = ACTIONS(5265), + [anon_sym_BSLASHACRshort] = ACTIONS(5265), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), + [anon_sym_BSLASHacrlong] = ACTIONS(5265), + [anon_sym_BSLASHAcrlong] = ACTIONS(5265), + [anon_sym_BSLASHACRlong] = ACTIONS(5265), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), + [anon_sym_BSLASHacrfull] = ACTIONS(5265), + [anon_sym_BSLASHAcrfull] = ACTIONS(5265), + [anon_sym_BSLASHACRfull] = ACTIONS(5265), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), + [anon_sym_BSLASHacs] = ACTIONS(5265), + [anon_sym_BSLASHAcs] = ACTIONS(5265), + [anon_sym_BSLASHacsp] = ACTIONS(5265), + [anon_sym_BSLASHAcsp] = ACTIONS(5265), + [anon_sym_BSLASHacl] = ACTIONS(5265), + [anon_sym_BSLASHAcl] = ACTIONS(5265), + [anon_sym_BSLASHaclp] = ACTIONS(5265), + [anon_sym_BSLASHAclp] = ACTIONS(5265), + [anon_sym_BSLASHacf] = ACTIONS(5265), + [anon_sym_BSLASHAcf] = ACTIONS(5265), + [anon_sym_BSLASHacfp] = ACTIONS(5265), + [anon_sym_BSLASHAcfp] = ACTIONS(5265), + [anon_sym_BSLASHac] = ACTIONS(5265), + [anon_sym_BSLASHAc] = ACTIONS(5265), + [anon_sym_BSLASHacp] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), + [anon_sym_BSLASHcolor] = ACTIONS(5265), + [anon_sym_BSLASHcolorbox] = ACTIONS(5265), + [anon_sym_BSLASHtextcolor] = ACTIONS(5265), + [anon_sym_BSLASHpagecolor] = ACTIONS(5265), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), + [anon_sym_BSLASHtext] = ACTIONS(5265), + [anon_sym_BSLASHintertext] = ACTIONS(5265), + [anon_sym_shortintertext] = ACTIONS(5265), + }, + [800] = { + [ts_builtin_sym_end] = ACTIONS(5267), + [sym_command_name] = ACTIONS(5269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5269), + [anon_sym_LPAREN] = ACTIONS(5267), + [anon_sym_RPAREN] = ACTIONS(5267), + [anon_sym_LBRACK] = ACTIONS(5267), + [anon_sym_RBRACK] = ACTIONS(5267), + [anon_sym_COMMA] = ACTIONS(5267), + [anon_sym_EQ] = ACTIONS(5267), + [anon_sym_BSLASHpart] = ACTIONS(5269), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddpart] = ACTIONS(5269), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5267), + [anon_sym_BSLASHchapter] = ACTIONS(5269), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddchap] = ACTIONS(5269), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsection] = ACTIONS(5269), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddsec] = ACTIONS(5269), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubsection] = ACTIONS(5269), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5269), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHparagraph] = ACTIONS(5269), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5269), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5267), + [anon_sym_BSLASHitem] = ACTIONS(5269), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5267), + [anon_sym_LBRACE] = ACTIONS(5267), + [anon_sym_RBRACE] = ACTIONS(5267), + [sym_word] = ACTIONS(5269), + [sym_placeholder] = ACTIONS(5267), + [anon_sym_PLUS] = ACTIONS(5269), + [anon_sym_DASH] = ACTIONS(5269), + [anon_sym_STAR] = ACTIONS(5269), + [anon_sym_SLASH] = ACTIONS(5269), + [anon_sym_CARET] = ACTIONS(5269), + [anon_sym__] = ACTIONS(5269), + [anon_sym_LT] = ACTIONS(5269), + [anon_sym_GT] = ACTIONS(5269), + [anon_sym_BANG] = ACTIONS(5269), + [anon_sym_PIPE] = ACTIONS(5269), + [anon_sym_COLON] = ACTIONS(5269), + [anon_sym_SQUOTE] = ACTIONS(5269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), + [anon_sym_DOLLAR] = ACTIONS(5269), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), + [anon_sym_BSLASHbegin] = ACTIONS(5269), + [anon_sym_BSLASHusepackage] = ACTIONS(5269), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), + [anon_sym_BSLASHinclude] = ACTIONS(5269), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), + [anon_sym_BSLASHinput] = ACTIONS(5269), + [anon_sym_BSLASHsubfile] = ACTIONS(5269), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), + [anon_sym_BSLASHbibliography] = ACTIONS(5269), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), + [anon_sym_BSLASHincludesvg] = ACTIONS(5269), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), + [anon_sym_BSLASHimport] = ACTIONS(5269), + [anon_sym_BSLASHsubimport] = ACTIONS(5269), + [anon_sym_BSLASHinputfrom] = ACTIONS(5269), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), + [anon_sym_BSLASHincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHcaption] = ACTIONS(5269), + [anon_sym_BSLASHcite] = ACTIONS(5269), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCite] = ACTIONS(5269), + [anon_sym_BSLASHnocite] = ACTIONS(5269), + [anon_sym_BSLASHcitet] = ACTIONS(5269), + [anon_sym_BSLASHcitep] = ACTIONS(5269), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteauthor] = ACTIONS(5269), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitetitle] = ACTIONS(5269), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteyear] = ACTIONS(5269), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitedate] = ACTIONS(5269), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteurl] = ACTIONS(5269), + [anon_sym_BSLASHfullcite] = ACTIONS(5269), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), + [anon_sym_BSLASHcitealt] = ACTIONS(5269), + [anon_sym_BSLASHcitealp] = ACTIONS(5269), + [anon_sym_BSLASHcitetext] = ACTIONS(5269), + [anon_sym_BSLASHparencite] = ACTIONS(5269), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHParencite] = ACTIONS(5269), + [anon_sym_BSLASHfootcite] = ACTIONS(5269), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), + [anon_sym_BSLASHtextcite] = ACTIONS(5269), + [anon_sym_BSLASHTextcite] = ACTIONS(5269), + [anon_sym_BSLASHsmartcite] = ACTIONS(5269), + [anon_sym_BSLASHSmartcite] = ACTIONS(5269), + [anon_sym_BSLASHsupercite] = ACTIONS(5269), + [anon_sym_BSLASHautocite] = ACTIONS(5269), + [anon_sym_BSLASHAutocite] = ACTIONS(5269), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHvolcite] = ACTIONS(5269), + [anon_sym_BSLASHVolcite] = ACTIONS(5269), + [anon_sym_BSLASHpvolcite] = ACTIONS(5269), + [anon_sym_BSLASHPvolcite] = ACTIONS(5269), + [anon_sym_BSLASHfvolcite] = ACTIONS(5269), + [anon_sym_BSLASHftvolcite] = ACTIONS(5269), + [anon_sym_BSLASHsvolcite] = ACTIONS(5269), + [anon_sym_BSLASHSvolcite] = ACTIONS(5269), + [anon_sym_BSLASHtvolcite] = ACTIONS(5269), + [anon_sym_BSLASHTvolcite] = ACTIONS(5269), + [anon_sym_BSLASHavolcite] = ACTIONS(5269), + [anon_sym_BSLASHAvolcite] = ACTIONS(5269), + [anon_sym_BSLASHnotecite] = ACTIONS(5269), + [anon_sym_BSLASHNotecite] = ACTIONS(5269), + [anon_sym_BSLASHpnotecite] = ACTIONS(5269), + [anon_sym_BSLASHPnotecite] = ACTIONS(5269), + [anon_sym_BSLASHfnotecite] = ACTIONS(5269), + [anon_sym_BSLASHlabel] = ACTIONS(5269), + [anon_sym_BSLASHref] = ACTIONS(5269), + [anon_sym_BSLASHeqref] = ACTIONS(5269), + [anon_sym_BSLASHvref] = ACTIONS(5269), + [anon_sym_BSLASHVref] = ACTIONS(5269), + [anon_sym_BSLASHautoref] = ACTIONS(5269), + [anon_sym_BSLASHpageref] = ACTIONS(5269), + [anon_sym_BSLASHcref] = ACTIONS(5269), + [anon_sym_BSLASHCref] = ACTIONS(5269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnameCref] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHlabelcref] = ACTIONS(5269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCrefrange] = ACTIONS(5269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnewlabel] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), + [anon_sym_BSLASHdef] = ACTIONS(5269), + [anon_sym_BSLASHlet] = ACTIONS(5269), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), + [anon_sym_BSLASHgls] = ACTIONS(5269), + [anon_sym_BSLASHGls] = ACTIONS(5269), + [anon_sym_BSLASHGLS] = ACTIONS(5269), + [anon_sym_BSLASHglspl] = ACTIONS(5269), + [anon_sym_BSLASHGlspl] = ACTIONS(5269), + [anon_sym_BSLASHGLSpl] = ACTIONS(5269), + [anon_sym_BSLASHglsdisp] = ACTIONS(5269), + [anon_sym_BSLASHglslink] = ACTIONS(5269), + [anon_sym_BSLASHglstext] = ACTIONS(5269), + [anon_sym_BSLASHGlstext] = ACTIONS(5269), + [anon_sym_BSLASHGLStext] = ACTIONS(5269), + [anon_sym_BSLASHglsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), + [anon_sym_BSLASHglsplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSplural] = ACTIONS(5269), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHglsname] = ACTIONS(5269), + [anon_sym_BSLASHGlsname] = ACTIONS(5269), + [anon_sym_BSLASHGLSname] = ACTIONS(5269), + [anon_sym_BSLASHglssymbol] = ACTIONS(5269), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), + [anon_sym_BSLASHglsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), + [anon_sym_BSLASHglsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), + [anon_sym_BSLASHglsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), + [anon_sym_BSLASHglsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), + [anon_sym_BSLASHglsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), + [anon_sym_BSLASHnewacronym] = ACTIONS(5269), + [anon_sym_BSLASHacrshort] = ACTIONS(5269), + [anon_sym_BSLASHAcrshort] = ACTIONS(5269), + [anon_sym_BSLASHACRshort] = ACTIONS(5269), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), + [anon_sym_BSLASHacrlong] = ACTIONS(5269), + [anon_sym_BSLASHAcrlong] = ACTIONS(5269), + [anon_sym_BSLASHACRlong] = ACTIONS(5269), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), + [anon_sym_BSLASHacrfull] = ACTIONS(5269), + [anon_sym_BSLASHAcrfull] = ACTIONS(5269), + [anon_sym_BSLASHACRfull] = ACTIONS(5269), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), + [anon_sym_BSLASHacs] = ACTIONS(5269), + [anon_sym_BSLASHAcs] = ACTIONS(5269), + [anon_sym_BSLASHacsp] = ACTIONS(5269), + [anon_sym_BSLASHAcsp] = ACTIONS(5269), + [anon_sym_BSLASHacl] = ACTIONS(5269), + [anon_sym_BSLASHAcl] = ACTIONS(5269), + [anon_sym_BSLASHaclp] = ACTIONS(5269), + [anon_sym_BSLASHAclp] = ACTIONS(5269), + [anon_sym_BSLASHacf] = ACTIONS(5269), + [anon_sym_BSLASHAcf] = ACTIONS(5269), + [anon_sym_BSLASHacfp] = ACTIONS(5269), + [anon_sym_BSLASHAcfp] = ACTIONS(5269), + [anon_sym_BSLASHac] = ACTIONS(5269), + [anon_sym_BSLASHAc] = ACTIONS(5269), + [anon_sym_BSLASHacp] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), + [anon_sym_BSLASHcolor] = ACTIONS(5269), + [anon_sym_BSLASHcolorbox] = ACTIONS(5269), + [anon_sym_BSLASHtextcolor] = ACTIONS(5269), + [anon_sym_BSLASHpagecolor] = ACTIONS(5269), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), + [anon_sym_BSLASHtext] = ACTIONS(5269), + [anon_sym_BSLASHintertext] = ACTIONS(5269), + [anon_sym_shortintertext] = ACTIONS(5269), + }, + [801] = { + [ts_builtin_sym_end] = ACTIONS(5271), + [sym_command_name] = ACTIONS(5273), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5273), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(5271), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_COMMA] = ACTIONS(5271), + [anon_sym_EQ] = ACTIONS(5271), + [anon_sym_BSLASHpart] = ACTIONS(5273), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddpart] = ACTIONS(5273), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHchapter] = ACTIONS(5273), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddchap] = ACTIONS(5273), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsection] = ACTIONS(5273), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddsec] = ACTIONS(5273), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHparagraph] = ACTIONS(5273), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHitem] = ACTIONS(5273), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(5271), + [anon_sym_RBRACE] = ACTIONS(5271), + [sym_word] = ACTIONS(5273), + [sym_placeholder] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5273), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5273), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym__] = ACTIONS(5273), + [anon_sym_LT] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5273), + [anon_sym_BANG] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5273), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_SQUOTE] = ACTIONS(5273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), + [anon_sym_DOLLAR] = ACTIONS(5273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), + [anon_sym_BSLASHbegin] = ACTIONS(5273), + [anon_sym_BSLASHusepackage] = ACTIONS(5273), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), + [anon_sym_BSLASHinclude] = ACTIONS(5273), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), + [anon_sym_BSLASHinput] = ACTIONS(5273), + [anon_sym_BSLASHsubfile] = ACTIONS(5273), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), + [anon_sym_BSLASHbibliography] = ACTIONS(5273), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), + [anon_sym_BSLASHincludesvg] = ACTIONS(5273), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), + [anon_sym_BSLASHimport] = ACTIONS(5273), + [anon_sym_BSLASHsubimport] = ACTIONS(5273), + [anon_sym_BSLASHinputfrom] = ACTIONS(5273), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), + [anon_sym_BSLASHincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHcaption] = ACTIONS(5273), + [anon_sym_BSLASHcite] = ACTIONS(5273), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCite] = ACTIONS(5273), + [anon_sym_BSLASHnocite] = ACTIONS(5273), + [anon_sym_BSLASHcitet] = ACTIONS(5273), + [anon_sym_BSLASHcitep] = ACTIONS(5273), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteauthor] = ACTIONS(5273), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitetitle] = ACTIONS(5273), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteyear] = ACTIONS(5273), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitedate] = ACTIONS(5273), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteurl] = ACTIONS(5273), + [anon_sym_BSLASHfullcite] = ACTIONS(5273), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), + [anon_sym_BSLASHcitealt] = ACTIONS(5273), + [anon_sym_BSLASHcitealp] = ACTIONS(5273), + [anon_sym_BSLASHcitetext] = ACTIONS(5273), + [anon_sym_BSLASHparencite] = ACTIONS(5273), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHParencite] = ACTIONS(5273), + [anon_sym_BSLASHfootcite] = ACTIONS(5273), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), + [anon_sym_BSLASHtextcite] = ACTIONS(5273), + [anon_sym_BSLASHTextcite] = ACTIONS(5273), + [anon_sym_BSLASHsmartcite] = ACTIONS(5273), + [anon_sym_BSLASHSmartcite] = ACTIONS(5273), + [anon_sym_BSLASHsupercite] = ACTIONS(5273), + [anon_sym_BSLASHautocite] = ACTIONS(5273), + [anon_sym_BSLASHAutocite] = ACTIONS(5273), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHvolcite] = ACTIONS(5273), + [anon_sym_BSLASHVolcite] = ACTIONS(5273), + [anon_sym_BSLASHpvolcite] = ACTIONS(5273), + [anon_sym_BSLASHPvolcite] = ACTIONS(5273), + [anon_sym_BSLASHfvolcite] = ACTIONS(5273), + [anon_sym_BSLASHftvolcite] = ACTIONS(5273), + [anon_sym_BSLASHsvolcite] = ACTIONS(5273), + [anon_sym_BSLASHSvolcite] = ACTIONS(5273), + [anon_sym_BSLASHtvolcite] = ACTIONS(5273), + [anon_sym_BSLASHTvolcite] = ACTIONS(5273), + [anon_sym_BSLASHavolcite] = ACTIONS(5273), + [anon_sym_BSLASHAvolcite] = ACTIONS(5273), + [anon_sym_BSLASHnotecite] = ACTIONS(5273), + [anon_sym_BSLASHNotecite] = ACTIONS(5273), + [anon_sym_BSLASHpnotecite] = ACTIONS(5273), + [anon_sym_BSLASHPnotecite] = ACTIONS(5273), + [anon_sym_BSLASHfnotecite] = ACTIONS(5273), + [anon_sym_BSLASHlabel] = ACTIONS(5273), + [anon_sym_BSLASHref] = ACTIONS(5273), + [anon_sym_BSLASHeqref] = ACTIONS(5273), + [anon_sym_BSLASHvref] = ACTIONS(5273), + [anon_sym_BSLASHVref] = ACTIONS(5273), + [anon_sym_BSLASHautoref] = ACTIONS(5273), + [anon_sym_BSLASHpageref] = ACTIONS(5273), + [anon_sym_BSLASHcref] = ACTIONS(5273), + [anon_sym_BSLASHCref] = ACTIONS(5273), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnameCref] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHlabelcref] = ACTIONS(5273), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCrefrange] = ACTIONS(5273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdef] = ACTIONS(5273), + [anon_sym_BSLASHlet] = ACTIONS(5273), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), + [anon_sym_BSLASHgls] = ACTIONS(5273), + [anon_sym_BSLASHGls] = ACTIONS(5273), + [anon_sym_BSLASHGLS] = ACTIONS(5273), + [anon_sym_BSLASHglspl] = ACTIONS(5273), + [anon_sym_BSLASHGlspl] = ACTIONS(5273), + [anon_sym_BSLASHGLSpl] = ACTIONS(5273), + [anon_sym_BSLASHglsdisp] = ACTIONS(5273), + [anon_sym_BSLASHglslink] = ACTIONS(5273), + [anon_sym_BSLASHglstext] = ACTIONS(5273), + [anon_sym_BSLASHGlstext] = ACTIONS(5273), + [anon_sym_BSLASHGLStext] = ACTIONS(5273), + [anon_sym_BSLASHglsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), + [anon_sym_BSLASHglsplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSplural] = ACTIONS(5273), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHglsname] = ACTIONS(5273), + [anon_sym_BSLASHGlsname] = ACTIONS(5273), + [anon_sym_BSLASHGLSname] = ACTIONS(5273), + [anon_sym_BSLASHglssymbol] = ACTIONS(5273), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), + [anon_sym_BSLASHglsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), + [anon_sym_BSLASHglsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), + [anon_sym_BSLASHglsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), + [anon_sym_BSLASHglsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), + [anon_sym_BSLASHglsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), + [anon_sym_BSLASHnewacronym] = ACTIONS(5273), + [anon_sym_BSLASHacrshort] = ACTIONS(5273), + [anon_sym_BSLASHAcrshort] = ACTIONS(5273), + [anon_sym_BSLASHACRshort] = ACTIONS(5273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), + [anon_sym_BSLASHacrlong] = ACTIONS(5273), + [anon_sym_BSLASHAcrlong] = ACTIONS(5273), + [anon_sym_BSLASHACRlong] = ACTIONS(5273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), + [anon_sym_BSLASHacrfull] = ACTIONS(5273), + [anon_sym_BSLASHAcrfull] = ACTIONS(5273), + [anon_sym_BSLASHACRfull] = ACTIONS(5273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), + [anon_sym_BSLASHacs] = ACTIONS(5273), + [anon_sym_BSLASHAcs] = ACTIONS(5273), + [anon_sym_BSLASHacsp] = ACTIONS(5273), + [anon_sym_BSLASHAcsp] = ACTIONS(5273), + [anon_sym_BSLASHacl] = ACTIONS(5273), + [anon_sym_BSLASHAcl] = ACTIONS(5273), + [anon_sym_BSLASHaclp] = ACTIONS(5273), + [anon_sym_BSLASHAclp] = ACTIONS(5273), + [anon_sym_BSLASHacf] = ACTIONS(5273), + [anon_sym_BSLASHAcf] = ACTIONS(5273), + [anon_sym_BSLASHacfp] = ACTIONS(5273), + [anon_sym_BSLASHAcfp] = ACTIONS(5273), + [anon_sym_BSLASHac] = ACTIONS(5273), + [anon_sym_BSLASHAc] = ACTIONS(5273), + [anon_sym_BSLASHacp] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), + [anon_sym_BSLASHcolor] = ACTIONS(5273), + [anon_sym_BSLASHcolorbox] = ACTIONS(5273), + [anon_sym_BSLASHtextcolor] = ACTIONS(5273), + [anon_sym_BSLASHpagecolor] = ACTIONS(5273), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), + [anon_sym_BSLASHtext] = ACTIONS(5273), + [anon_sym_BSLASHintertext] = ACTIONS(5273), + [anon_sym_shortintertext] = ACTIONS(5273), + }, + [802] = { + [ts_builtin_sym_end] = ACTIONS(5275), + [sym_command_name] = ACTIONS(5277), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5277), + [anon_sym_LPAREN] = ACTIONS(5275), + [anon_sym_RPAREN] = ACTIONS(5275), + [anon_sym_LBRACK] = ACTIONS(5275), + [anon_sym_RBRACK] = ACTIONS(5275), + [anon_sym_COMMA] = ACTIONS(5275), + [anon_sym_EQ] = ACTIONS(5275), + [anon_sym_BSLASHpart] = ACTIONS(5277), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddpart] = ACTIONS(5277), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5275), + [anon_sym_BSLASHchapter] = ACTIONS(5277), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddchap] = ACTIONS(5277), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsection] = ACTIONS(5277), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddsec] = ACTIONS(5277), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubsection] = ACTIONS(5277), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5277), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHparagraph] = ACTIONS(5277), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5277), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5275), + [anon_sym_BSLASHitem] = ACTIONS(5277), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5275), + [anon_sym_LBRACE] = ACTIONS(5275), + [anon_sym_RBRACE] = ACTIONS(5275), + [sym_word] = ACTIONS(5277), + [sym_placeholder] = ACTIONS(5275), + [anon_sym_PLUS] = ACTIONS(5277), + [anon_sym_DASH] = ACTIONS(5277), + [anon_sym_STAR] = ACTIONS(5277), + [anon_sym_SLASH] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5277), + [anon_sym__] = ACTIONS(5277), + [anon_sym_LT] = ACTIONS(5277), + [anon_sym_GT] = ACTIONS(5277), + [anon_sym_BANG] = ACTIONS(5277), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_COLON] = ACTIONS(5277), + [anon_sym_SQUOTE] = ACTIONS(5277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), + [anon_sym_DOLLAR] = ACTIONS(5277), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), + [anon_sym_BSLASHbegin] = ACTIONS(5277), + [anon_sym_BSLASHusepackage] = ACTIONS(5277), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), + [anon_sym_BSLASHinclude] = ACTIONS(5277), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), + [anon_sym_BSLASHinput] = ACTIONS(5277), + [anon_sym_BSLASHsubfile] = ACTIONS(5277), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), + [anon_sym_BSLASHbibliography] = ACTIONS(5277), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), + [anon_sym_BSLASHincludesvg] = ACTIONS(5277), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), + [anon_sym_BSLASHimport] = ACTIONS(5277), + [anon_sym_BSLASHsubimport] = ACTIONS(5277), + [anon_sym_BSLASHinputfrom] = ACTIONS(5277), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), + [anon_sym_BSLASHincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHcaption] = ACTIONS(5277), + [anon_sym_BSLASHcite] = ACTIONS(5277), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCite] = ACTIONS(5277), + [anon_sym_BSLASHnocite] = ACTIONS(5277), + [anon_sym_BSLASHcitet] = ACTIONS(5277), + [anon_sym_BSLASHcitep] = ACTIONS(5277), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteauthor] = ACTIONS(5277), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitetitle] = ACTIONS(5277), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteyear] = ACTIONS(5277), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitedate] = ACTIONS(5277), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteurl] = ACTIONS(5277), + [anon_sym_BSLASHfullcite] = ACTIONS(5277), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), + [anon_sym_BSLASHcitealt] = ACTIONS(5277), + [anon_sym_BSLASHcitealp] = ACTIONS(5277), + [anon_sym_BSLASHcitetext] = ACTIONS(5277), + [anon_sym_BSLASHparencite] = ACTIONS(5277), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHParencite] = ACTIONS(5277), + [anon_sym_BSLASHfootcite] = ACTIONS(5277), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), + [anon_sym_BSLASHtextcite] = ACTIONS(5277), + [anon_sym_BSLASHTextcite] = ACTIONS(5277), + [anon_sym_BSLASHsmartcite] = ACTIONS(5277), + [anon_sym_BSLASHSmartcite] = ACTIONS(5277), + [anon_sym_BSLASHsupercite] = ACTIONS(5277), + [anon_sym_BSLASHautocite] = ACTIONS(5277), + [anon_sym_BSLASHAutocite] = ACTIONS(5277), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHvolcite] = ACTIONS(5277), + [anon_sym_BSLASHVolcite] = ACTIONS(5277), + [anon_sym_BSLASHpvolcite] = ACTIONS(5277), + [anon_sym_BSLASHPvolcite] = ACTIONS(5277), + [anon_sym_BSLASHfvolcite] = ACTIONS(5277), + [anon_sym_BSLASHftvolcite] = ACTIONS(5277), + [anon_sym_BSLASHsvolcite] = ACTIONS(5277), + [anon_sym_BSLASHSvolcite] = ACTIONS(5277), + [anon_sym_BSLASHtvolcite] = ACTIONS(5277), + [anon_sym_BSLASHTvolcite] = ACTIONS(5277), + [anon_sym_BSLASHavolcite] = ACTIONS(5277), + [anon_sym_BSLASHAvolcite] = ACTIONS(5277), + [anon_sym_BSLASHnotecite] = ACTIONS(5277), + [anon_sym_BSLASHNotecite] = ACTIONS(5277), + [anon_sym_BSLASHpnotecite] = ACTIONS(5277), + [anon_sym_BSLASHPnotecite] = ACTIONS(5277), + [anon_sym_BSLASHfnotecite] = ACTIONS(5277), + [anon_sym_BSLASHlabel] = ACTIONS(5277), + [anon_sym_BSLASHref] = ACTIONS(5277), + [anon_sym_BSLASHeqref] = ACTIONS(5277), + [anon_sym_BSLASHvref] = ACTIONS(5277), + [anon_sym_BSLASHVref] = ACTIONS(5277), + [anon_sym_BSLASHautoref] = ACTIONS(5277), + [anon_sym_BSLASHpageref] = ACTIONS(5277), + [anon_sym_BSLASHcref] = ACTIONS(5277), + [anon_sym_BSLASHCref] = ACTIONS(5277), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnameCref] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHlabelcref] = ACTIONS(5277), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCrefrange] = ACTIONS(5277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnewlabel] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), + [anon_sym_BSLASHdef] = ACTIONS(5277), + [anon_sym_BSLASHlet] = ACTIONS(5277), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), + [anon_sym_BSLASHgls] = ACTIONS(5277), + [anon_sym_BSLASHGls] = ACTIONS(5277), + [anon_sym_BSLASHGLS] = ACTIONS(5277), + [anon_sym_BSLASHglspl] = ACTIONS(5277), + [anon_sym_BSLASHGlspl] = ACTIONS(5277), + [anon_sym_BSLASHGLSpl] = ACTIONS(5277), + [anon_sym_BSLASHglsdisp] = ACTIONS(5277), + [anon_sym_BSLASHglslink] = ACTIONS(5277), + [anon_sym_BSLASHglstext] = ACTIONS(5277), + [anon_sym_BSLASHGlstext] = ACTIONS(5277), + [anon_sym_BSLASHGLStext] = ACTIONS(5277), + [anon_sym_BSLASHglsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), + [anon_sym_BSLASHglsplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSplural] = ACTIONS(5277), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHglsname] = ACTIONS(5277), + [anon_sym_BSLASHGlsname] = ACTIONS(5277), + [anon_sym_BSLASHGLSname] = ACTIONS(5277), + [anon_sym_BSLASHglssymbol] = ACTIONS(5277), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), + [anon_sym_BSLASHglsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), + [anon_sym_BSLASHglsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), + [anon_sym_BSLASHglsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), + [anon_sym_BSLASHglsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), + [anon_sym_BSLASHglsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), + [anon_sym_BSLASHnewacronym] = ACTIONS(5277), + [anon_sym_BSLASHacrshort] = ACTIONS(5277), + [anon_sym_BSLASHAcrshort] = ACTIONS(5277), + [anon_sym_BSLASHACRshort] = ACTIONS(5277), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), + [anon_sym_BSLASHacrlong] = ACTIONS(5277), + [anon_sym_BSLASHAcrlong] = ACTIONS(5277), + [anon_sym_BSLASHACRlong] = ACTIONS(5277), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), + [anon_sym_BSLASHacrfull] = ACTIONS(5277), + [anon_sym_BSLASHAcrfull] = ACTIONS(5277), + [anon_sym_BSLASHACRfull] = ACTIONS(5277), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), + [anon_sym_BSLASHacs] = ACTIONS(5277), + [anon_sym_BSLASHAcs] = ACTIONS(5277), + [anon_sym_BSLASHacsp] = ACTIONS(5277), + [anon_sym_BSLASHAcsp] = ACTIONS(5277), + [anon_sym_BSLASHacl] = ACTIONS(5277), + [anon_sym_BSLASHAcl] = ACTIONS(5277), + [anon_sym_BSLASHaclp] = ACTIONS(5277), + [anon_sym_BSLASHAclp] = ACTIONS(5277), + [anon_sym_BSLASHacf] = ACTIONS(5277), + [anon_sym_BSLASHAcf] = ACTIONS(5277), + [anon_sym_BSLASHacfp] = ACTIONS(5277), + [anon_sym_BSLASHAcfp] = ACTIONS(5277), + [anon_sym_BSLASHac] = ACTIONS(5277), + [anon_sym_BSLASHAc] = ACTIONS(5277), + [anon_sym_BSLASHacp] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), + [anon_sym_BSLASHcolor] = ACTIONS(5277), + [anon_sym_BSLASHcolorbox] = ACTIONS(5277), + [anon_sym_BSLASHtextcolor] = ACTIONS(5277), + [anon_sym_BSLASHpagecolor] = ACTIONS(5277), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), + [anon_sym_BSLASHtext] = ACTIONS(5277), + [anon_sym_BSLASHintertext] = ACTIONS(5277), + [anon_sym_shortintertext] = ACTIONS(5277), + }, + [803] = { + [ts_builtin_sym_end] = ACTIONS(5279), + [sym_command_name] = ACTIONS(5281), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5281), + [anon_sym_LPAREN] = ACTIONS(5279), + [anon_sym_RPAREN] = ACTIONS(5279), + [anon_sym_LBRACK] = ACTIONS(5279), + [anon_sym_RBRACK] = ACTIONS(5279), + [anon_sym_COMMA] = ACTIONS(5279), + [anon_sym_EQ] = ACTIONS(5279), + [anon_sym_BSLASHpart] = ACTIONS(5281), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddpart] = ACTIONS(5281), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5279), + [anon_sym_BSLASHchapter] = ACTIONS(5281), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddchap] = ACTIONS(5281), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsection] = ACTIONS(5281), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddsec] = ACTIONS(5281), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubsection] = ACTIONS(5281), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5281), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHparagraph] = ACTIONS(5281), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5281), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5279), + [anon_sym_BSLASHitem] = ACTIONS(5281), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5279), + [anon_sym_LBRACE] = ACTIONS(5279), + [anon_sym_RBRACE] = ACTIONS(5279), + [sym_word] = ACTIONS(5281), + [sym_placeholder] = ACTIONS(5279), + [anon_sym_PLUS] = ACTIONS(5281), + [anon_sym_DASH] = ACTIONS(5281), + [anon_sym_STAR] = ACTIONS(5281), + [anon_sym_SLASH] = ACTIONS(5281), + [anon_sym_CARET] = ACTIONS(5281), + [anon_sym__] = ACTIONS(5281), + [anon_sym_LT] = ACTIONS(5281), + [anon_sym_GT] = ACTIONS(5281), + [anon_sym_BANG] = ACTIONS(5281), + [anon_sym_PIPE] = ACTIONS(5281), + [anon_sym_COLON] = ACTIONS(5281), + [anon_sym_SQUOTE] = ACTIONS(5281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), + [anon_sym_DOLLAR] = ACTIONS(5281), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), + [anon_sym_BSLASHbegin] = ACTIONS(5281), + [anon_sym_BSLASHusepackage] = ACTIONS(5281), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), + [anon_sym_BSLASHinclude] = ACTIONS(5281), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), + [anon_sym_BSLASHinput] = ACTIONS(5281), + [anon_sym_BSLASHsubfile] = ACTIONS(5281), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), + [anon_sym_BSLASHbibliography] = ACTIONS(5281), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), + [anon_sym_BSLASHincludesvg] = ACTIONS(5281), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), + [anon_sym_BSLASHimport] = ACTIONS(5281), + [anon_sym_BSLASHsubimport] = ACTIONS(5281), + [anon_sym_BSLASHinputfrom] = ACTIONS(5281), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), + [anon_sym_BSLASHincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHcaption] = ACTIONS(5281), + [anon_sym_BSLASHcite] = ACTIONS(5281), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCite] = ACTIONS(5281), + [anon_sym_BSLASHnocite] = ACTIONS(5281), + [anon_sym_BSLASHcitet] = ACTIONS(5281), + [anon_sym_BSLASHcitep] = ACTIONS(5281), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteauthor] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitetitle] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteyear] = ACTIONS(5281), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitedate] = ACTIONS(5281), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteurl] = ACTIONS(5281), + [anon_sym_BSLASHfullcite] = ACTIONS(5281), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), + [anon_sym_BSLASHcitealt] = ACTIONS(5281), + [anon_sym_BSLASHcitealp] = ACTIONS(5281), + [anon_sym_BSLASHcitetext] = ACTIONS(5281), + [anon_sym_BSLASHparencite] = ACTIONS(5281), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHParencite] = ACTIONS(5281), + [anon_sym_BSLASHfootcite] = ACTIONS(5281), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), + [anon_sym_BSLASHtextcite] = ACTIONS(5281), + [anon_sym_BSLASHTextcite] = ACTIONS(5281), + [anon_sym_BSLASHsmartcite] = ACTIONS(5281), + [anon_sym_BSLASHSmartcite] = ACTIONS(5281), + [anon_sym_BSLASHsupercite] = ACTIONS(5281), + [anon_sym_BSLASHautocite] = ACTIONS(5281), + [anon_sym_BSLASHAutocite] = ACTIONS(5281), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHvolcite] = ACTIONS(5281), + [anon_sym_BSLASHVolcite] = ACTIONS(5281), + [anon_sym_BSLASHpvolcite] = ACTIONS(5281), + [anon_sym_BSLASHPvolcite] = ACTIONS(5281), + [anon_sym_BSLASHfvolcite] = ACTIONS(5281), + [anon_sym_BSLASHftvolcite] = ACTIONS(5281), + [anon_sym_BSLASHsvolcite] = ACTIONS(5281), + [anon_sym_BSLASHSvolcite] = ACTIONS(5281), + [anon_sym_BSLASHtvolcite] = ACTIONS(5281), + [anon_sym_BSLASHTvolcite] = ACTIONS(5281), + [anon_sym_BSLASHavolcite] = ACTIONS(5281), + [anon_sym_BSLASHAvolcite] = ACTIONS(5281), + [anon_sym_BSLASHnotecite] = ACTIONS(5281), + [anon_sym_BSLASHNotecite] = ACTIONS(5281), + [anon_sym_BSLASHpnotecite] = ACTIONS(5281), + [anon_sym_BSLASHPnotecite] = ACTIONS(5281), + [anon_sym_BSLASHfnotecite] = ACTIONS(5281), + [anon_sym_BSLASHlabel] = ACTIONS(5281), + [anon_sym_BSLASHref] = ACTIONS(5281), + [anon_sym_BSLASHeqref] = ACTIONS(5281), + [anon_sym_BSLASHvref] = ACTIONS(5281), + [anon_sym_BSLASHVref] = ACTIONS(5281), + [anon_sym_BSLASHautoref] = ACTIONS(5281), + [anon_sym_BSLASHpageref] = ACTIONS(5281), + [anon_sym_BSLASHcref] = ACTIONS(5281), + [anon_sym_BSLASHCref] = ACTIONS(5281), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnameCref] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHlabelcref] = ACTIONS(5281), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCrefrange] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnewlabel] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), + [anon_sym_BSLASHdef] = ACTIONS(5281), + [anon_sym_BSLASHlet] = ACTIONS(5281), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), + [anon_sym_BSLASHgls] = ACTIONS(5281), + [anon_sym_BSLASHGls] = ACTIONS(5281), + [anon_sym_BSLASHGLS] = ACTIONS(5281), + [anon_sym_BSLASHglspl] = ACTIONS(5281), + [anon_sym_BSLASHGlspl] = ACTIONS(5281), + [anon_sym_BSLASHGLSpl] = ACTIONS(5281), + [anon_sym_BSLASHglsdisp] = ACTIONS(5281), + [anon_sym_BSLASHglslink] = ACTIONS(5281), + [anon_sym_BSLASHglstext] = ACTIONS(5281), + [anon_sym_BSLASHGlstext] = ACTIONS(5281), + [anon_sym_BSLASHGLStext] = ACTIONS(5281), + [anon_sym_BSLASHglsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), + [anon_sym_BSLASHglsplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSplural] = ACTIONS(5281), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHglsname] = ACTIONS(5281), + [anon_sym_BSLASHGlsname] = ACTIONS(5281), + [anon_sym_BSLASHGLSname] = ACTIONS(5281), + [anon_sym_BSLASHglssymbol] = ACTIONS(5281), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), + [anon_sym_BSLASHglsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), + [anon_sym_BSLASHglsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), + [anon_sym_BSLASHglsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), + [anon_sym_BSLASHglsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), + [anon_sym_BSLASHglsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), + [anon_sym_BSLASHnewacronym] = ACTIONS(5281), + [anon_sym_BSLASHacrshort] = ACTIONS(5281), + [anon_sym_BSLASHAcrshort] = ACTIONS(5281), + [anon_sym_BSLASHACRshort] = ACTIONS(5281), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), + [anon_sym_BSLASHacrlong] = ACTIONS(5281), + [anon_sym_BSLASHAcrlong] = ACTIONS(5281), + [anon_sym_BSLASHACRlong] = ACTIONS(5281), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), + [anon_sym_BSLASHacrfull] = ACTIONS(5281), + [anon_sym_BSLASHAcrfull] = ACTIONS(5281), + [anon_sym_BSLASHACRfull] = ACTIONS(5281), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), + [anon_sym_BSLASHacs] = ACTIONS(5281), + [anon_sym_BSLASHAcs] = ACTIONS(5281), + [anon_sym_BSLASHacsp] = ACTIONS(5281), + [anon_sym_BSLASHAcsp] = ACTIONS(5281), + [anon_sym_BSLASHacl] = ACTIONS(5281), + [anon_sym_BSLASHAcl] = ACTIONS(5281), + [anon_sym_BSLASHaclp] = ACTIONS(5281), + [anon_sym_BSLASHAclp] = ACTIONS(5281), + [anon_sym_BSLASHacf] = ACTIONS(5281), + [anon_sym_BSLASHAcf] = ACTIONS(5281), + [anon_sym_BSLASHacfp] = ACTIONS(5281), + [anon_sym_BSLASHAcfp] = ACTIONS(5281), + [anon_sym_BSLASHac] = ACTIONS(5281), + [anon_sym_BSLASHAc] = ACTIONS(5281), + [anon_sym_BSLASHacp] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), + [anon_sym_BSLASHcolor] = ACTIONS(5281), + [anon_sym_BSLASHcolorbox] = ACTIONS(5281), + [anon_sym_BSLASHtextcolor] = ACTIONS(5281), + [anon_sym_BSLASHpagecolor] = ACTIONS(5281), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), + [anon_sym_BSLASHtext] = ACTIONS(5281), + [anon_sym_BSLASHintertext] = ACTIONS(5281), + [anon_sym_shortintertext] = ACTIONS(5281), + }, + [804] = { + [sym_curly_group] = STATE(959), + [sym_command_name] = ACTIONS(4849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4849), + [anon_sym_LPAREN] = ACTIONS(4847), + [anon_sym_RPAREN] = ACTIONS(4847), + [anon_sym_LBRACK] = ACTIONS(4847), + [anon_sym_RBRACK] = ACTIONS(4847), + [anon_sym_COMMA] = ACTIONS(4847), + [anon_sym_EQ] = ACTIONS(4847), + [anon_sym_BSLASHpart] = ACTIONS(4849), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddpart] = ACTIONS(4849), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4847), + [anon_sym_BSLASHchapter] = ACTIONS(4849), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddchap] = ACTIONS(4849), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsection] = ACTIONS(4849), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddsec] = ACTIONS(4849), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubsection] = ACTIONS(4849), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4849), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHparagraph] = ACTIONS(4849), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4849), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4847), + [anon_sym_BSLASHitem] = ACTIONS(4849), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4847), + [anon_sym_LBRACE] = ACTIONS(559), + [sym_word] = ACTIONS(4849), + [sym_placeholder] = ACTIONS(4847), + [anon_sym_PLUS] = ACTIONS(4849), + [anon_sym_DASH] = ACTIONS(4849), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_SLASH] = ACTIONS(4849), + [anon_sym_CARET] = ACTIONS(4849), + [anon_sym__] = ACTIONS(4849), + [anon_sym_LT] = ACTIONS(4849), + [anon_sym_GT] = ACTIONS(4849), + [anon_sym_BANG] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4849), + [anon_sym_COLON] = ACTIONS(4849), + [anon_sym_SQUOTE] = ACTIONS(4849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4847), + [anon_sym_DOLLAR] = ACTIONS(4849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4847), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4847), + [anon_sym_BSLASHbegin] = ACTIONS(4849), + [anon_sym_BSLASHusepackage] = ACTIONS(4849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4849), + [anon_sym_BSLASHinclude] = ACTIONS(4849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4849), + [anon_sym_BSLASHinput] = ACTIONS(4849), + [anon_sym_BSLASHsubfile] = ACTIONS(4849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4849), + [anon_sym_BSLASHbibliography] = ACTIONS(4849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4849), + [anon_sym_BSLASHincludesvg] = ACTIONS(4849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4849), + [anon_sym_BSLASHimport] = ACTIONS(4849), + [anon_sym_BSLASHsubimport] = ACTIONS(4849), + [anon_sym_BSLASHinputfrom] = ACTIONS(4849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4849), + [anon_sym_BSLASHincludefrom] = ACTIONS(4849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4849), + [anon_sym_BSLASHcaption] = ACTIONS(4849), + [anon_sym_BSLASHcite] = ACTIONS(4849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCite] = ACTIONS(4849), + [anon_sym_BSLASHnocite] = ACTIONS(4849), + [anon_sym_BSLASHcitet] = ACTIONS(4849), + [anon_sym_BSLASHcitep] = ACTIONS(4849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteauthor] = ACTIONS(4849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitetitle] = ACTIONS(4849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteyear] = ACTIONS(4849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitedate] = ACTIONS(4849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteurl] = ACTIONS(4849), + [anon_sym_BSLASHfullcite] = ACTIONS(4849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4849), + [anon_sym_BSLASHcitealt] = ACTIONS(4849), + [anon_sym_BSLASHcitealp] = ACTIONS(4849), + [anon_sym_BSLASHcitetext] = ACTIONS(4849), + [anon_sym_BSLASHparencite] = ACTIONS(4849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHParencite] = ACTIONS(4849), + [anon_sym_BSLASHfootcite] = ACTIONS(4849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4849), + [anon_sym_BSLASHtextcite] = ACTIONS(4849), + [anon_sym_BSLASHTextcite] = ACTIONS(4849), + [anon_sym_BSLASHsmartcite] = ACTIONS(4849), + [anon_sym_BSLASHSmartcite] = ACTIONS(4849), + [anon_sym_BSLASHsupercite] = ACTIONS(4849), + [anon_sym_BSLASHautocite] = ACTIONS(4849), + [anon_sym_BSLASHAutocite] = ACTIONS(4849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHvolcite] = ACTIONS(4849), + [anon_sym_BSLASHVolcite] = ACTIONS(4849), + [anon_sym_BSLASHpvolcite] = ACTIONS(4849), + [anon_sym_BSLASHPvolcite] = ACTIONS(4849), + [anon_sym_BSLASHfvolcite] = ACTIONS(4849), + [anon_sym_BSLASHftvolcite] = ACTIONS(4849), + [anon_sym_BSLASHsvolcite] = ACTIONS(4849), + [anon_sym_BSLASHSvolcite] = ACTIONS(4849), + [anon_sym_BSLASHtvolcite] = ACTIONS(4849), + [anon_sym_BSLASHTvolcite] = ACTIONS(4849), + [anon_sym_BSLASHavolcite] = ACTIONS(4849), + [anon_sym_BSLASHAvolcite] = ACTIONS(4849), + [anon_sym_BSLASHnotecite] = ACTIONS(4849), + [anon_sym_BSLASHNotecite] = ACTIONS(4849), + [anon_sym_BSLASHpnotecite] = ACTIONS(4849), + [anon_sym_BSLASHPnotecite] = ACTIONS(4849), + [anon_sym_BSLASHfnotecite] = ACTIONS(4849), + [anon_sym_BSLASHlabel] = ACTIONS(4849), + [anon_sym_BSLASHref] = ACTIONS(4849), + [anon_sym_BSLASHeqref] = ACTIONS(4849), + [anon_sym_BSLASHvref] = ACTIONS(4849), + [anon_sym_BSLASHVref] = ACTIONS(4849), + [anon_sym_BSLASHautoref] = ACTIONS(4849), + [anon_sym_BSLASHpageref] = ACTIONS(4849), + [anon_sym_BSLASHcref] = ACTIONS(4849), + [anon_sym_BSLASHCref] = ACTIONS(4849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4847), + [anon_sym_BSLASHnamecref] = ACTIONS(4849), + [anon_sym_BSLASHnameCref] = ACTIONS(4849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4849), + [anon_sym_BSLASHlabelcref] = ACTIONS(4849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4849), + [anon_sym_BSLASHcrefrange] = ACTIONS(4849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCrefrange] = ACTIONS(4849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4847), + [anon_sym_BSLASHnewlabel] = ACTIONS(4849), + [anon_sym_BSLASHnewcommand] = ACTIONS(4849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4847), + [anon_sym_BSLASHdef] = ACTIONS(4849), + [anon_sym_BSLASHlet] = ACTIONS(4849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4849), + [anon_sym_BSLASHgls] = ACTIONS(4849), + [anon_sym_BSLASHGls] = ACTIONS(4849), + [anon_sym_BSLASHGLS] = ACTIONS(4849), + [anon_sym_BSLASHglspl] = ACTIONS(4849), + [anon_sym_BSLASHGlspl] = ACTIONS(4849), + [anon_sym_BSLASHGLSpl] = ACTIONS(4849), + [anon_sym_BSLASHglsdisp] = ACTIONS(4849), + [anon_sym_BSLASHglslink] = ACTIONS(4849), + [anon_sym_BSLASHglstext] = ACTIONS(4849), + [anon_sym_BSLASHGlstext] = ACTIONS(4849), + [anon_sym_BSLASHGLStext] = ACTIONS(4849), + [anon_sym_BSLASHglsfirst] = ACTIONS(4849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4849), + [anon_sym_BSLASHglsplural] = ACTIONS(4849), + [anon_sym_BSLASHGlsplural] = ACTIONS(4849), + [anon_sym_BSLASHGLSplural] = ACTIONS(4849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHglsname] = ACTIONS(4849), + [anon_sym_BSLASHGlsname] = ACTIONS(4849), + [anon_sym_BSLASHGLSname] = ACTIONS(4849), + [anon_sym_BSLASHglssymbol] = ACTIONS(4849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4849), + [anon_sym_BSLASHglsdesc] = ACTIONS(4849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4849), + [anon_sym_BSLASHglsuseri] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4849), + [anon_sym_BSLASHglsuserii] = ACTIONS(4849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4849), + [anon_sym_BSLASHglsuserv] = ACTIONS(4849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4849), + [anon_sym_BSLASHglsuservi] = ACTIONS(4849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4849), + [anon_sym_BSLASHnewacronym] = ACTIONS(4849), + [anon_sym_BSLASHacrshort] = ACTIONS(4849), + [anon_sym_BSLASHAcrshort] = ACTIONS(4849), + [anon_sym_BSLASHACRshort] = ACTIONS(4849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4849), + [anon_sym_BSLASHacrlong] = ACTIONS(4849), + [anon_sym_BSLASHAcrlong] = ACTIONS(4849), + [anon_sym_BSLASHACRlong] = ACTIONS(4849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4849), + [anon_sym_BSLASHacrfull] = ACTIONS(4849), + [anon_sym_BSLASHAcrfull] = ACTIONS(4849), + [anon_sym_BSLASHACRfull] = ACTIONS(4849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4849), + [anon_sym_BSLASHacs] = ACTIONS(4849), + [anon_sym_BSLASHAcs] = ACTIONS(4849), + [anon_sym_BSLASHacsp] = ACTIONS(4849), + [anon_sym_BSLASHAcsp] = ACTIONS(4849), + [anon_sym_BSLASHacl] = ACTIONS(4849), + [anon_sym_BSLASHAcl] = ACTIONS(4849), + [anon_sym_BSLASHaclp] = ACTIONS(4849), + [anon_sym_BSLASHAclp] = ACTIONS(4849), + [anon_sym_BSLASHacf] = ACTIONS(4849), + [anon_sym_BSLASHAcf] = ACTIONS(4849), + [anon_sym_BSLASHacfp] = ACTIONS(4849), + [anon_sym_BSLASHAcfp] = ACTIONS(4849), + [anon_sym_BSLASHac] = ACTIONS(4849), + [anon_sym_BSLASHAc] = ACTIONS(4849), + [anon_sym_BSLASHacp] = ACTIONS(4849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4849), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4849), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4849), + [anon_sym_BSLASHcolor] = ACTIONS(4849), + [anon_sym_BSLASHcolorbox] = ACTIONS(4849), + [anon_sym_BSLASHtextcolor] = ACTIONS(4849), + [anon_sym_BSLASHpagecolor] = ACTIONS(4849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4849), + [anon_sym_BSLASHtext] = ACTIONS(4849), + [anon_sym_BSLASHintertext] = ACTIONS(4849), + [anon_sym_shortintertext] = ACTIONS(4849), + }, + [805] = { + [sym_brack_group_text] = STATE(958), + [sym_command_name] = ACTIONS(4853), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4851), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_RBRACK] = ACTIONS(4851), + [anon_sym_COMMA] = ACTIONS(4851), + [anon_sym_EQ] = ACTIONS(4851), + [anon_sym_BSLASHpart] = ACTIONS(4853), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddpart] = ACTIONS(4853), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4851), + [anon_sym_BSLASHchapter] = ACTIONS(4853), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddchap] = ACTIONS(4853), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsection] = ACTIONS(4853), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddsec] = ACTIONS(4853), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubsection] = ACTIONS(4853), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4853), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHparagraph] = ACTIONS(4853), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4853), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4851), + [anon_sym_BSLASHitem] = ACTIONS(4853), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4851), + [anon_sym_LBRACE] = ACTIONS(4851), + [sym_word] = ACTIONS(4853), + [sym_placeholder] = ACTIONS(4851), + [anon_sym_PLUS] = ACTIONS(4853), + [anon_sym_DASH] = ACTIONS(4853), + [anon_sym_STAR] = ACTIONS(4853), + [anon_sym_SLASH] = ACTIONS(4853), + [anon_sym_CARET] = ACTIONS(4853), + [anon_sym__] = ACTIONS(4853), + [anon_sym_LT] = ACTIONS(4853), + [anon_sym_GT] = ACTIONS(4853), + [anon_sym_BANG] = ACTIONS(4853), + [anon_sym_PIPE] = ACTIONS(4853), + [anon_sym_COLON] = ACTIONS(4853), + [anon_sym_SQUOTE] = ACTIONS(4853), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4851), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4853), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4851), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4851), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4851), + [anon_sym_BSLASHbegin] = ACTIONS(4853), + [anon_sym_BSLASHusepackage] = ACTIONS(4853), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), + [anon_sym_BSLASHinclude] = ACTIONS(4853), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), + [anon_sym_BSLASHinput] = ACTIONS(4853), + [anon_sym_BSLASHsubfile] = ACTIONS(4853), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), + [anon_sym_BSLASHbibliography] = ACTIONS(4853), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), + [anon_sym_BSLASHincludesvg] = ACTIONS(4853), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), + [anon_sym_BSLASHimport] = ACTIONS(4853), + [anon_sym_BSLASHsubimport] = ACTIONS(4853), + [anon_sym_BSLASHinputfrom] = ACTIONS(4853), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), + [anon_sym_BSLASHincludefrom] = ACTIONS(4853), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), + [anon_sym_BSLASHcaption] = ACTIONS(4853), + [anon_sym_BSLASHcite] = ACTIONS(4853), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCite] = ACTIONS(4853), + [anon_sym_BSLASHnocite] = ACTIONS(4853), + [anon_sym_BSLASHcitet] = ACTIONS(4853), + [anon_sym_BSLASHcitep] = ACTIONS(4853), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteauthor] = ACTIONS(4853), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitetitle] = ACTIONS(4853), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteyear] = ACTIONS(4853), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitedate] = ACTIONS(4853), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteurl] = ACTIONS(4853), + [anon_sym_BSLASHfullcite] = ACTIONS(4853), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), + [anon_sym_BSLASHcitealt] = ACTIONS(4853), + [anon_sym_BSLASHcitealp] = ACTIONS(4853), + [anon_sym_BSLASHcitetext] = ACTIONS(4853), + [anon_sym_BSLASHparencite] = ACTIONS(4853), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHParencite] = ACTIONS(4853), + [anon_sym_BSLASHfootcite] = ACTIONS(4853), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), + [anon_sym_BSLASHtextcite] = ACTIONS(4853), + [anon_sym_BSLASHTextcite] = ACTIONS(4853), + [anon_sym_BSLASHsmartcite] = ACTIONS(4853), + [anon_sym_BSLASHSmartcite] = ACTIONS(4853), + [anon_sym_BSLASHsupercite] = ACTIONS(4853), + [anon_sym_BSLASHautocite] = ACTIONS(4853), + [anon_sym_BSLASHAutocite] = ACTIONS(4853), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHvolcite] = ACTIONS(4853), + [anon_sym_BSLASHVolcite] = ACTIONS(4853), + [anon_sym_BSLASHpvolcite] = ACTIONS(4853), + [anon_sym_BSLASHPvolcite] = ACTIONS(4853), + [anon_sym_BSLASHfvolcite] = ACTIONS(4853), + [anon_sym_BSLASHftvolcite] = ACTIONS(4853), + [anon_sym_BSLASHsvolcite] = ACTIONS(4853), + [anon_sym_BSLASHSvolcite] = ACTIONS(4853), + [anon_sym_BSLASHtvolcite] = ACTIONS(4853), + [anon_sym_BSLASHTvolcite] = ACTIONS(4853), + [anon_sym_BSLASHavolcite] = ACTIONS(4853), + [anon_sym_BSLASHAvolcite] = ACTIONS(4853), + [anon_sym_BSLASHnotecite] = ACTIONS(4853), + [anon_sym_BSLASHNotecite] = ACTIONS(4853), + [anon_sym_BSLASHpnotecite] = ACTIONS(4853), + [anon_sym_BSLASHPnotecite] = ACTIONS(4853), + [anon_sym_BSLASHfnotecite] = ACTIONS(4853), + [anon_sym_BSLASHlabel] = ACTIONS(4853), + [anon_sym_BSLASHref] = ACTIONS(4853), + [anon_sym_BSLASHeqref] = ACTIONS(4853), + [anon_sym_BSLASHvref] = ACTIONS(4853), + [anon_sym_BSLASHVref] = ACTIONS(4853), + [anon_sym_BSLASHautoref] = ACTIONS(4853), + [anon_sym_BSLASHpageref] = ACTIONS(4853), + [anon_sym_BSLASHcref] = ACTIONS(4853), + [anon_sym_BSLASHCref] = ACTIONS(4853), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), + [anon_sym_BSLASHnamecref] = ACTIONS(4853), + [anon_sym_BSLASHnameCref] = ACTIONS(4853), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), + [anon_sym_BSLASHlabelcref] = ACTIONS(4853), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), + [anon_sym_BSLASHcrefrange] = ACTIONS(4853), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCrefrange] = ACTIONS(4853), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), + [anon_sym_BSLASHnewlabel] = ACTIONS(4853), + [anon_sym_BSLASHnewcommand] = ACTIONS(4853), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), + [anon_sym_BSLASHdef] = ACTIONS(4853), + [anon_sym_BSLASHlet] = ACTIONS(4853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), + [anon_sym_BSLASHgls] = ACTIONS(4853), + [anon_sym_BSLASHGls] = ACTIONS(4853), + [anon_sym_BSLASHGLS] = ACTIONS(4853), + [anon_sym_BSLASHglspl] = ACTIONS(4853), + [anon_sym_BSLASHGlspl] = ACTIONS(4853), + [anon_sym_BSLASHGLSpl] = ACTIONS(4853), + [anon_sym_BSLASHglsdisp] = ACTIONS(4853), + [anon_sym_BSLASHglslink] = ACTIONS(4853), + [anon_sym_BSLASHglstext] = ACTIONS(4853), + [anon_sym_BSLASHGlstext] = ACTIONS(4853), + [anon_sym_BSLASHGLStext] = ACTIONS(4853), + [anon_sym_BSLASHglsfirst] = ACTIONS(4853), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), + [anon_sym_BSLASHglsplural] = ACTIONS(4853), + [anon_sym_BSLASHGlsplural] = ACTIONS(4853), + [anon_sym_BSLASHGLSplural] = ACTIONS(4853), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHglsname] = ACTIONS(4853), + [anon_sym_BSLASHGlsname] = ACTIONS(4853), + [anon_sym_BSLASHGLSname] = ACTIONS(4853), + [anon_sym_BSLASHglssymbol] = ACTIONS(4853), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), + [anon_sym_BSLASHglsdesc] = ACTIONS(4853), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), + [anon_sym_BSLASHglsuseri] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), + [anon_sym_BSLASHglsuserii] = ACTIONS(4853), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), + [anon_sym_BSLASHglsuserv] = ACTIONS(4853), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), + [anon_sym_BSLASHglsuservi] = ACTIONS(4853), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), + [anon_sym_BSLASHnewacronym] = ACTIONS(4853), + [anon_sym_BSLASHacrshort] = ACTIONS(4853), + [anon_sym_BSLASHAcrshort] = ACTIONS(4853), + [anon_sym_BSLASHACRshort] = ACTIONS(4853), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), + [anon_sym_BSLASHacrlong] = ACTIONS(4853), + [anon_sym_BSLASHAcrlong] = ACTIONS(4853), + [anon_sym_BSLASHACRlong] = ACTIONS(4853), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), + [anon_sym_BSLASHacrfull] = ACTIONS(4853), + [anon_sym_BSLASHAcrfull] = ACTIONS(4853), + [anon_sym_BSLASHACRfull] = ACTIONS(4853), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), + [anon_sym_BSLASHacs] = ACTIONS(4853), + [anon_sym_BSLASHAcs] = ACTIONS(4853), + [anon_sym_BSLASHacsp] = ACTIONS(4853), + [anon_sym_BSLASHAcsp] = ACTIONS(4853), + [anon_sym_BSLASHacl] = ACTIONS(4853), + [anon_sym_BSLASHAcl] = ACTIONS(4853), + [anon_sym_BSLASHaclp] = ACTIONS(4853), + [anon_sym_BSLASHAclp] = ACTIONS(4853), + [anon_sym_BSLASHacf] = ACTIONS(4853), + [anon_sym_BSLASHAcf] = ACTIONS(4853), + [anon_sym_BSLASHacfp] = ACTIONS(4853), + [anon_sym_BSLASHAcfp] = ACTIONS(4853), + [anon_sym_BSLASHac] = ACTIONS(4853), + [anon_sym_BSLASHAc] = ACTIONS(4853), + [anon_sym_BSLASHacp] = ACTIONS(4853), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), + [anon_sym_BSLASHcolor] = ACTIONS(4853), + [anon_sym_BSLASHcolorbox] = ACTIONS(4853), + [anon_sym_BSLASHtextcolor] = ACTIONS(4853), + [anon_sym_BSLASHpagecolor] = ACTIONS(4853), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), + [anon_sym_BSLASHtext] = ACTIONS(4853), + [anon_sym_BSLASHintertext] = ACTIONS(4853), + [anon_sym_shortintertext] = ACTIONS(4853), + }, + [806] = { + [ts_builtin_sym_end] = ACTIONS(5283), + [sym_command_name] = ACTIONS(5285), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5285), + [anon_sym_LPAREN] = ACTIONS(5283), + [anon_sym_RPAREN] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(5283), + [anon_sym_RBRACK] = ACTIONS(5283), + [anon_sym_COMMA] = ACTIONS(5283), + [anon_sym_EQ] = ACTIONS(5283), + [anon_sym_BSLASHpart] = ACTIONS(5285), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddpart] = ACTIONS(5285), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5283), + [anon_sym_BSLASHchapter] = ACTIONS(5285), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddchap] = ACTIONS(5285), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsection] = ACTIONS(5285), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddsec] = ACTIONS(5285), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubsection] = ACTIONS(5285), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5285), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHparagraph] = ACTIONS(5285), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5285), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5283), + [anon_sym_BSLASHitem] = ACTIONS(5285), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5283), + [anon_sym_LBRACE] = ACTIONS(5283), + [anon_sym_RBRACE] = ACTIONS(5283), + [sym_word] = ACTIONS(5285), + [sym_placeholder] = ACTIONS(5283), + [anon_sym_PLUS] = ACTIONS(5285), + [anon_sym_DASH] = ACTIONS(5285), + [anon_sym_STAR] = ACTIONS(5285), + [anon_sym_SLASH] = ACTIONS(5285), + [anon_sym_CARET] = ACTIONS(5285), + [anon_sym__] = ACTIONS(5285), + [anon_sym_LT] = ACTIONS(5285), + [anon_sym_GT] = ACTIONS(5285), + [anon_sym_BANG] = ACTIONS(5285), + [anon_sym_PIPE] = ACTIONS(5285), + [anon_sym_COLON] = ACTIONS(5285), + [anon_sym_SQUOTE] = ACTIONS(5285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), + [anon_sym_DOLLAR] = ACTIONS(5285), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), + [anon_sym_BSLASHbegin] = ACTIONS(5285), + [anon_sym_BSLASHusepackage] = ACTIONS(5285), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), + [anon_sym_BSLASHinclude] = ACTIONS(5285), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), + [anon_sym_BSLASHinput] = ACTIONS(5285), + [anon_sym_BSLASHsubfile] = ACTIONS(5285), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), + [anon_sym_BSLASHbibliography] = ACTIONS(5285), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), + [anon_sym_BSLASHincludesvg] = ACTIONS(5285), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), + [anon_sym_BSLASHimport] = ACTIONS(5285), + [anon_sym_BSLASHsubimport] = ACTIONS(5285), + [anon_sym_BSLASHinputfrom] = ACTIONS(5285), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), + [anon_sym_BSLASHincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHcaption] = ACTIONS(5285), + [anon_sym_BSLASHcite] = ACTIONS(5285), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCite] = ACTIONS(5285), + [anon_sym_BSLASHnocite] = ACTIONS(5285), + [anon_sym_BSLASHcitet] = ACTIONS(5285), + [anon_sym_BSLASHcitep] = ACTIONS(5285), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteauthor] = ACTIONS(5285), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitetitle] = ACTIONS(5285), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteyear] = ACTIONS(5285), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitedate] = ACTIONS(5285), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteurl] = ACTIONS(5285), + [anon_sym_BSLASHfullcite] = ACTIONS(5285), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), + [anon_sym_BSLASHcitealt] = ACTIONS(5285), + [anon_sym_BSLASHcitealp] = ACTIONS(5285), + [anon_sym_BSLASHcitetext] = ACTIONS(5285), + [anon_sym_BSLASHparencite] = ACTIONS(5285), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHParencite] = ACTIONS(5285), + [anon_sym_BSLASHfootcite] = ACTIONS(5285), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), + [anon_sym_BSLASHtextcite] = ACTIONS(5285), + [anon_sym_BSLASHTextcite] = ACTIONS(5285), + [anon_sym_BSLASHsmartcite] = ACTIONS(5285), + [anon_sym_BSLASHSmartcite] = ACTIONS(5285), + [anon_sym_BSLASHsupercite] = ACTIONS(5285), + [anon_sym_BSLASHautocite] = ACTIONS(5285), + [anon_sym_BSLASHAutocite] = ACTIONS(5285), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHvolcite] = ACTIONS(5285), + [anon_sym_BSLASHVolcite] = ACTIONS(5285), + [anon_sym_BSLASHpvolcite] = ACTIONS(5285), + [anon_sym_BSLASHPvolcite] = ACTIONS(5285), + [anon_sym_BSLASHfvolcite] = ACTIONS(5285), + [anon_sym_BSLASHftvolcite] = ACTIONS(5285), + [anon_sym_BSLASHsvolcite] = ACTIONS(5285), + [anon_sym_BSLASHSvolcite] = ACTIONS(5285), + [anon_sym_BSLASHtvolcite] = ACTIONS(5285), + [anon_sym_BSLASHTvolcite] = ACTIONS(5285), + [anon_sym_BSLASHavolcite] = ACTIONS(5285), + [anon_sym_BSLASHAvolcite] = ACTIONS(5285), + [anon_sym_BSLASHnotecite] = ACTIONS(5285), + [anon_sym_BSLASHNotecite] = ACTIONS(5285), + [anon_sym_BSLASHpnotecite] = ACTIONS(5285), + [anon_sym_BSLASHPnotecite] = ACTIONS(5285), + [anon_sym_BSLASHfnotecite] = ACTIONS(5285), + [anon_sym_BSLASHlabel] = ACTIONS(5285), + [anon_sym_BSLASHref] = ACTIONS(5285), + [anon_sym_BSLASHeqref] = ACTIONS(5285), + [anon_sym_BSLASHvref] = ACTIONS(5285), + [anon_sym_BSLASHVref] = ACTIONS(5285), + [anon_sym_BSLASHautoref] = ACTIONS(5285), + [anon_sym_BSLASHpageref] = ACTIONS(5285), + [anon_sym_BSLASHcref] = ACTIONS(5285), + [anon_sym_BSLASHCref] = ACTIONS(5285), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnameCref] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHlabelcref] = ACTIONS(5285), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCrefrange] = ACTIONS(5285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnewlabel] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), + [anon_sym_BSLASHdef] = ACTIONS(5285), + [anon_sym_BSLASHlet] = ACTIONS(5285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), + [anon_sym_BSLASHgls] = ACTIONS(5285), + [anon_sym_BSLASHGls] = ACTIONS(5285), + [anon_sym_BSLASHGLS] = ACTIONS(5285), + [anon_sym_BSLASHglspl] = ACTIONS(5285), + [anon_sym_BSLASHGlspl] = ACTIONS(5285), + [anon_sym_BSLASHGLSpl] = ACTIONS(5285), + [anon_sym_BSLASHglsdisp] = ACTIONS(5285), + [anon_sym_BSLASHglslink] = ACTIONS(5285), + [anon_sym_BSLASHglstext] = ACTIONS(5285), + [anon_sym_BSLASHGlstext] = ACTIONS(5285), + [anon_sym_BSLASHGLStext] = ACTIONS(5285), + [anon_sym_BSLASHglsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), + [anon_sym_BSLASHglsplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSplural] = ACTIONS(5285), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHglsname] = ACTIONS(5285), + [anon_sym_BSLASHGlsname] = ACTIONS(5285), + [anon_sym_BSLASHGLSname] = ACTIONS(5285), + [anon_sym_BSLASHglssymbol] = ACTIONS(5285), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), + [anon_sym_BSLASHglsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), + [anon_sym_BSLASHglsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), + [anon_sym_BSLASHglsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), + [anon_sym_BSLASHglsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), + [anon_sym_BSLASHglsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), + [anon_sym_BSLASHnewacronym] = ACTIONS(5285), + [anon_sym_BSLASHacrshort] = ACTIONS(5285), + [anon_sym_BSLASHAcrshort] = ACTIONS(5285), + [anon_sym_BSLASHACRshort] = ACTIONS(5285), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), + [anon_sym_BSLASHacrlong] = ACTIONS(5285), + [anon_sym_BSLASHAcrlong] = ACTIONS(5285), + [anon_sym_BSLASHACRlong] = ACTIONS(5285), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), + [anon_sym_BSLASHacrfull] = ACTIONS(5285), + [anon_sym_BSLASHAcrfull] = ACTIONS(5285), + [anon_sym_BSLASHACRfull] = ACTIONS(5285), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), + [anon_sym_BSLASHacs] = ACTIONS(5285), + [anon_sym_BSLASHAcs] = ACTIONS(5285), + [anon_sym_BSLASHacsp] = ACTIONS(5285), + [anon_sym_BSLASHAcsp] = ACTIONS(5285), + [anon_sym_BSLASHacl] = ACTIONS(5285), + [anon_sym_BSLASHAcl] = ACTIONS(5285), + [anon_sym_BSLASHaclp] = ACTIONS(5285), + [anon_sym_BSLASHAclp] = ACTIONS(5285), + [anon_sym_BSLASHacf] = ACTIONS(5285), + [anon_sym_BSLASHAcf] = ACTIONS(5285), + [anon_sym_BSLASHacfp] = ACTIONS(5285), + [anon_sym_BSLASHAcfp] = ACTIONS(5285), + [anon_sym_BSLASHac] = ACTIONS(5285), + [anon_sym_BSLASHAc] = ACTIONS(5285), + [anon_sym_BSLASHacp] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), + [anon_sym_BSLASHcolor] = ACTIONS(5285), + [anon_sym_BSLASHcolorbox] = ACTIONS(5285), + [anon_sym_BSLASHtextcolor] = ACTIONS(5285), + [anon_sym_BSLASHpagecolor] = ACTIONS(5285), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), + [anon_sym_BSLASHtext] = ACTIONS(5285), + [anon_sym_BSLASHintertext] = ACTIONS(5285), + [anon_sym_shortintertext] = ACTIONS(5285), + }, + [807] = { + [ts_builtin_sym_end] = ACTIONS(5287), + [sym_command_name] = ACTIONS(5289), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5289), + [anon_sym_LPAREN] = ACTIONS(5287), + [anon_sym_RPAREN] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(5287), + [anon_sym_RBRACK] = ACTIONS(5287), + [anon_sym_COMMA] = ACTIONS(5287), + [anon_sym_EQ] = ACTIONS(5287), + [anon_sym_BSLASHpart] = ACTIONS(5289), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddpart] = ACTIONS(5289), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5287), + [anon_sym_BSLASHchapter] = ACTIONS(5289), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddchap] = ACTIONS(5289), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsection] = ACTIONS(5289), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddsec] = ACTIONS(5289), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubsection] = ACTIONS(5289), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5289), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHparagraph] = ACTIONS(5289), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5289), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5287), + [anon_sym_BSLASHitem] = ACTIONS(5289), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5287), + [anon_sym_LBRACE] = ACTIONS(5287), + [anon_sym_RBRACE] = ACTIONS(5287), + [sym_word] = ACTIONS(5289), + [sym_placeholder] = ACTIONS(5287), + [anon_sym_PLUS] = ACTIONS(5289), + [anon_sym_DASH] = ACTIONS(5289), + [anon_sym_STAR] = ACTIONS(5289), + [anon_sym_SLASH] = ACTIONS(5289), + [anon_sym_CARET] = ACTIONS(5289), + [anon_sym__] = ACTIONS(5289), + [anon_sym_LT] = ACTIONS(5289), + [anon_sym_GT] = ACTIONS(5289), + [anon_sym_BANG] = ACTIONS(5289), + [anon_sym_PIPE] = ACTIONS(5289), + [anon_sym_COLON] = ACTIONS(5289), + [anon_sym_SQUOTE] = ACTIONS(5289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), + [anon_sym_DOLLAR] = ACTIONS(5289), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), + [anon_sym_BSLASHbegin] = ACTIONS(5289), + [anon_sym_BSLASHusepackage] = ACTIONS(5289), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), + [anon_sym_BSLASHinclude] = ACTIONS(5289), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), + [anon_sym_BSLASHinput] = ACTIONS(5289), + [anon_sym_BSLASHsubfile] = ACTIONS(5289), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), + [anon_sym_BSLASHbibliography] = ACTIONS(5289), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), + [anon_sym_BSLASHincludesvg] = ACTIONS(5289), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), + [anon_sym_BSLASHimport] = ACTIONS(5289), + [anon_sym_BSLASHsubimport] = ACTIONS(5289), + [anon_sym_BSLASHinputfrom] = ACTIONS(5289), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), + [anon_sym_BSLASHincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHcaption] = ACTIONS(5289), + [anon_sym_BSLASHcite] = ACTIONS(5289), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCite] = ACTIONS(5289), + [anon_sym_BSLASHnocite] = ACTIONS(5289), + [anon_sym_BSLASHcitet] = ACTIONS(5289), + [anon_sym_BSLASHcitep] = ACTIONS(5289), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteauthor] = ACTIONS(5289), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitetitle] = ACTIONS(5289), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteyear] = ACTIONS(5289), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitedate] = ACTIONS(5289), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteurl] = ACTIONS(5289), + [anon_sym_BSLASHfullcite] = ACTIONS(5289), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), + [anon_sym_BSLASHcitealt] = ACTIONS(5289), + [anon_sym_BSLASHcitealp] = ACTIONS(5289), + [anon_sym_BSLASHcitetext] = ACTIONS(5289), + [anon_sym_BSLASHparencite] = ACTIONS(5289), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHParencite] = ACTIONS(5289), + [anon_sym_BSLASHfootcite] = ACTIONS(5289), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), + [anon_sym_BSLASHtextcite] = ACTIONS(5289), + [anon_sym_BSLASHTextcite] = ACTIONS(5289), + [anon_sym_BSLASHsmartcite] = ACTIONS(5289), + [anon_sym_BSLASHSmartcite] = ACTIONS(5289), + [anon_sym_BSLASHsupercite] = ACTIONS(5289), + [anon_sym_BSLASHautocite] = ACTIONS(5289), + [anon_sym_BSLASHAutocite] = ACTIONS(5289), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHvolcite] = ACTIONS(5289), + [anon_sym_BSLASHVolcite] = ACTIONS(5289), + [anon_sym_BSLASHpvolcite] = ACTIONS(5289), + [anon_sym_BSLASHPvolcite] = ACTIONS(5289), + [anon_sym_BSLASHfvolcite] = ACTIONS(5289), + [anon_sym_BSLASHftvolcite] = ACTIONS(5289), + [anon_sym_BSLASHsvolcite] = ACTIONS(5289), + [anon_sym_BSLASHSvolcite] = ACTIONS(5289), + [anon_sym_BSLASHtvolcite] = ACTIONS(5289), + [anon_sym_BSLASHTvolcite] = ACTIONS(5289), + [anon_sym_BSLASHavolcite] = ACTIONS(5289), + [anon_sym_BSLASHAvolcite] = ACTIONS(5289), + [anon_sym_BSLASHnotecite] = ACTIONS(5289), + [anon_sym_BSLASHNotecite] = ACTIONS(5289), + [anon_sym_BSLASHpnotecite] = ACTIONS(5289), + [anon_sym_BSLASHPnotecite] = ACTIONS(5289), + [anon_sym_BSLASHfnotecite] = ACTIONS(5289), + [anon_sym_BSLASHlabel] = ACTIONS(5289), + [anon_sym_BSLASHref] = ACTIONS(5289), + [anon_sym_BSLASHeqref] = ACTIONS(5289), + [anon_sym_BSLASHvref] = ACTIONS(5289), + [anon_sym_BSLASHVref] = ACTIONS(5289), + [anon_sym_BSLASHautoref] = ACTIONS(5289), + [anon_sym_BSLASHpageref] = ACTIONS(5289), + [anon_sym_BSLASHcref] = ACTIONS(5289), + [anon_sym_BSLASHCref] = ACTIONS(5289), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnameCref] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHlabelcref] = ACTIONS(5289), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCrefrange] = ACTIONS(5289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnewlabel] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), + [anon_sym_BSLASHdef] = ACTIONS(5289), + [anon_sym_BSLASHlet] = ACTIONS(5289), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), + [anon_sym_BSLASHgls] = ACTIONS(5289), + [anon_sym_BSLASHGls] = ACTIONS(5289), + [anon_sym_BSLASHGLS] = ACTIONS(5289), + [anon_sym_BSLASHglspl] = ACTIONS(5289), + [anon_sym_BSLASHGlspl] = ACTIONS(5289), + [anon_sym_BSLASHGLSpl] = ACTIONS(5289), + [anon_sym_BSLASHglsdisp] = ACTIONS(5289), + [anon_sym_BSLASHglslink] = ACTIONS(5289), + [anon_sym_BSLASHglstext] = ACTIONS(5289), + [anon_sym_BSLASHGlstext] = ACTIONS(5289), + [anon_sym_BSLASHGLStext] = ACTIONS(5289), + [anon_sym_BSLASHglsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), + [anon_sym_BSLASHglsplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSplural] = ACTIONS(5289), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHglsname] = ACTIONS(5289), + [anon_sym_BSLASHGlsname] = ACTIONS(5289), + [anon_sym_BSLASHGLSname] = ACTIONS(5289), + [anon_sym_BSLASHglssymbol] = ACTIONS(5289), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), + [anon_sym_BSLASHglsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), + [anon_sym_BSLASHglsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), + [anon_sym_BSLASHglsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), + [anon_sym_BSLASHglsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), + [anon_sym_BSLASHglsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), + [anon_sym_BSLASHnewacronym] = ACTIONS(5289), + [anon_sym_BSLASHacrshort] = ACTIONS(5289), + [anon_sym_BSLASHAcrshort] = ACTIONS(5289), + [anon_sym_BSLASHACRshort] = ACTIONS(5289), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), + [anon_sym_BSLASHacrlong] = ACTIONS(5289), + [anon_sym_BSLASHAcrlong] = ACTIONS(5289), + [anon_sym_BSLASHACRlong] = ACTIONS(5289), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), + [anon_sym_BSLASHacrfull] = ACTIONS(5289), + [anon_sym_BSLASHAcrfull] = ACTIONS(5289), + [anon_sym_BSLASHACRfull] = ACTIONS(5289), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), + [anon_sym_BSLASHacs] = ACTIONS(5289), + [anon_sym_BSLASHAcs] = ACTIONS(5289), + [anon_sym_BSLASHacsp] = ACTIONS(5289), + [anon_sym_BSLASHAcsp] = ACTIONS(5289), + [anon_sym_BSLASHacl] = ACTIONS(5289), + [anon_sym_BSLASHAcl] = ACTIONS(5289), + [anon_sym_BSLASHaclp] = ACTIONS(5289), + [anon_sym_BSLASHAclp] = ACTIONS(5289), + [anon_sym_BSLASHacf] = ACTIONS(5289), + [anon_sym_BSLASHAcf] = ACTIONS(5289), + [anon_sym_BSLASHacfp] = ACTIONS(5289), + [anon_sym_BSLASHAcfp] = ACTIONS(5289), + [anon_sym_BSLASHac] = ACTIONS(5289), + [anon_sym_BSLASHAc] = ACTIONS(5289), + [anon_sym_BSLASHacp] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), + [anon_sym_BSLASHcolor] = ACTIONS(5289), + [anon_sym_BSLASHcolorbox] = ACTIONS(5289), + [anon_sym_BSLASHtextcolor] = ACTIONS(5289), + [anon_sym_BSLASHpagecolor] = ACTIONS(5289), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), + [anon_sym_BSLASHtext] = ACTIONS(5289), + [anon_sym_BSLASHintertext] = ACTIONS(5289), + [anon_sym_shortintertext] = ACTIONS(5289), + }, + [808] = { + [ts_builtin_sym_end] = ACTIONS(5291), + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_LPAREN] = ACTIONS(5291), + [anon_sym_RPAREN] = ACTIONS(5291), + [anon_sym_LBRACK] = ACTIONS(5291), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_BSLASHpart] = ACTIONS(5293), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddpart] = ACTIONS(5293), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5291), + [anon_sym_BSLASHchapter] = ACTIONS(5293), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddchap] = ACTIONS(5293), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsection] = ACTIONS(5293), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddsec] = ACTIONS(5293), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHparagraph] = ACTIONS(5293), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5293), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHitem] = ACTIONS(5293), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5291), + [anon_sym_RBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5291), + [anon_sym_DOLLAR] = ACTIONS(5293), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5291), + [anon_sym_BSLASHbegin] = ACTIONS(5293), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + [anon_sym_BSLASHtext] = ACTIONS(5293), + [anon_sym_BSLASHintertext] = ACTIONS(5293), + [anon_sym_shortintertext] = ACTIONS(5293), + }, + [809] = { + [ts_builtin_sym_end] = ACTIONS(5295), + [sym_command_name] = ACTIONS(5297), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5297), + [anon_sym_LPAREN] = ACTIONS(5295), + [anon_sym_RPAREN] = ACTIONS(5295), + [anon_sym_LBRACK] = ACTIONS(5295), + [anon_sym_RBRACK] = ACTIONS(5295), + [anon_sym_COMMA] = ACTIONS(5295), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_BSLASHpart] = ACTIONS(5297), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddpart] = ACTIONS(5297), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5295), + [anon_sym_BSLASHchapter] = ACTIONS(5297), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddchap] = ACTIONS(5297), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsection] = ACTIONS(5297), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddsec] = ACTIONS(5297), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubsection] = ACTIONS(5297), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5297), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHparagraph] = ACTIONS(5297), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5297), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5295), + [anon_sym_BSLASHitem] = ACTIONS(5297), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5295), + [anon_sym_LBRACE] = ACTIONS(5295), + [anon_sym_RBRACE] = ACTIONS(5295), + [sym_word] = ACTIONS(5297), + [sym_placeholder] = ACTIONS(5295), + [anon_sym_PLUS] = ACTIONS(5297), + [anon_sym_DASH] = ACTIONS(5297), + [anon_sym_STAR] = ACTIONS(5297), + [anon_sym_SLASH] = ACTIONS(5297), + [anon_sym_CARET] = ACTIONS(5297), + [anon_sym__] = ACTIONS(5297), + [anon_sym_LT] = ACTIONS(5297), + [anon_sym_GT] = ACTIONS(5297), + [anon_sym_BANG] = ACTIONS(5297), + [anon_sym_PIPE] = ACTIONS(5297), + [anon_sym_COLON] = ACTIONS(5297), + [anon_sym_SQUOTE] = ACTIONS(5297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), + [anon_sym_DOLLAR] = ACTIONS(5297), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), + [anon_sym_BSLASHbegin] = ACTIONS(5297), + [anon_sym_BSLASHusepackage] = ACTIONS(5297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), + [anon_sym_BSLASHinclude] = ACTIONS(5297), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), + [anon_sym_BSLASHinput] = ACTIONS(5297), + [anon_sym_BSLASHsubfile] = ACTIONS(5297), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), + [anon_sym_BSLASHbibliography] = ACTIONS(5297), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), + [anon_sym_BSLASHincludesvg] = ACTIONS(5297), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), + [anon_sym_BSLASHimport] = ACTIONS(5297), + [anon_sym_BSLASHsubimport] = ACTIONS(5297), + [anon_sym_BSLASHinputfrom] = ACTIONS(5297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), + [anon_sym_BSLASHincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHcaption] = ACTIONS(5297), + [anon_sym_BSLASHcite] = ACTIONS(5297), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCite] = ACTIONS(5297), + [anon_sym_BSLASHnocite] = ACTIONS(5297), + [anon_sym_BSLASHcitet] = ACTIONS(5297), + [anon_sym_BSLASHcitep] = ACTIONS(5297), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteauthor] = ACTIONS(5297), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitetitle] = ACTIONS(5297), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteyear] = ACTIONS(5297), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitedate] = ACTIONS(5297), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteurl] = ACTIONS(5297), + [anon_sym_BSLASHfullcite] = ACTIONS(5297), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), + [anon_sym_BSLASHcitealt] = ACTIONS(5297), + [anon_sym_BSLASHcitealp] = ACTIONS(5297), + [anon_sym_BSLASHcitetext] = ACTIONS(5297), + [anon_sym_BSLASHparencite] = ACTIONS(5297), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHParencite] = ACTIONS(5297), + [anon_sym_BSLASHfootcite] = ACTIONS(5297), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), + [anon_sym_BSLASHtextcite] = ACTIONS(5297), + [anon_sym_BSLASHTextcite] = ACTIONS(5297), + [anon_sym_BSLASHsmartcite] = ACTIONS(5297), + [anon_sym_BSLASHSmartcite] = ACTIONS(5297), + [anon_sym_BSLASHsupercite] = ACTIONS(5297), + [anon_sym_BSLASHautocite] = ACTIONS(5297), + [anon_sym_BSLASHAutocite] = ACTIONS(5297), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHvolcite] = ACTIONS(5297), + [anon_sym_BSLASHVolcite] = ACTIONS(5297), + [anon_sym_BSLASHpvolcite] = ACTIONS(5297), + [anon_sym_BSLASHPvolcite] = ACTIONS(5297), + [anon_sym_BSLASHfvolcite] = ACTIONS(5297), + [anon_sym_BSLASHftvolcite] = ACTIONS(5297), + [anon_sym_BSLASHsvolcite] = ACTIONS(5297), + [anon_sym_BSLASHSvolcite] = ACTIONS(5297), + [anon_sym_BSLASHtvolcite] = ACTIONS(5297), + [anon_sym_BSLASHTvolcite] = ACTIONS(5297), + [anon_sym_BSLASHavolcite] = ACTIONS(5297), + [anon_sym_BSLASHAvolcite] = ACTIONS(5297), + [anon_sym_BSLASHnotecite] = ACTIONS(5297), + [anon_sym_BSLASHNotecite] = ACTIONS(5297), + [anon_sym_BSLASHpnotecite] = ACTIONS(5297), + [anon_sym_BSLASHPnotecite] = ACTIONS(5297), + [anon_sym_BSLASHfnotecite] = ACTIONS(5297), + [anon_sym_BSLASHlabel] = ACTIONS(5297), + [anon_sym_BSLASHref] = ACTIONS(5297), + [anon_sym_BSLASHeqref] = ACTIONS(5297), + [anon_sym_BSLASHvref] = ACTIONS(5297), + [anon_sym_BSLASHVref] = ACTIONS(5297), + [anon_sym_BSLASHautoref] = ACTIONS(5297), + [anon_sym_BSLASHpageref] = ACTIONS(5297), + [anon_sym_BSLASHcref] = ACTIONS(5297), + [anon_sym_BSLASHCref] = ACTIONS(5297), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnameCref] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHlabelcref] = ACTIONS(5297), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCrefrange] = ACTIONS(5297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnewlabel] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), + [anon_sym_BSLASHdef] = ACTIONS(5297), + [anon_sym_BSLASHlet] = ACTIONS(5297), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), + [anon_sym_BSLASHgls] = ACTIONS(5297), + [anon_sym_BSLASHGls] = ACTIONS(5297), + [anon_sym_BSLASHGLS] = ACTIONS(5297), + [anon_sym_BSLASHglspl] = ACTIONS(5297), + [anon_sym_BSLASHGlspl] = ACTIONS(5297), + [anon_sym_BSLASHGLSpl] = ACTIONS(5297), + [anon_sym_BSLASHglsdisp] = ACTIONS(5297), + [anon_sym_BSLASHglslink] = ACTIONS(5297), + [anon_sym_BSLASHglstext] = ACTIONS(5297), + [anon_sym_BSLASHGlstext] = ACTIONS(5297), + [anon_sym_BSLASHGLStext] = ACTIONS(5297), + [anon_sym_BSLASHglsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), + [anon_sym_BSLASHglsplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSplural] = ACTIONS(5297), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHglsname] = ACTIONS(5297), + [anon_sym_BSLASHGlsname] = ACTIONS(5297), + [anon_sym_BSLASHGLSname] = ACTIONS(5297), + [anon_sym_BSLASHglssymbol] = ACTIONS(5297), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), + [anon_sym_BSLASHglsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), + [anon_sym_BSLASHglsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), + [anon_sym_BSLASHglsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), + [anon_sym_BSLASHglsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), + [anon_sym_BSLASHglsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), + [anon_sym_BSLASHnewacronym] = ACTIONS(5297), + [anon_sym_BSLASHacrshort] = ACTIONS(5297), + [anon_sym_BSLASHAcrshort] = ACTIONS(5297), + [anon_sym_BSLASHACRshort] = ACTIONS(5297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), + [anon_sym_BSLASHacrlong] = ACTIONS(5297), + [anon_sym_BSLASHAcrlong] = ACTIONS(5297), + [anon_sym_BSLASHACRlong] = ACTIONS(5297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), + [anon_sym_BSLASHacrfull] = ACTIONS(5297), + [anon_sym_BSLASHAcrfull] = ACTIONS(5297), + [anon_sym_BSLASHACRfull] = ACTIONS(5297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), + [anon_sym_BSLASHacs] = ACTIONS(5297), + [anon_sym_BSLASHAcs] = ACTIONS(5297), + [anon_sym_BSLASHacsp] = ACTIONS(5297), + [anon_sym_BSLASHAcsp] = ACTIONS(5297), + [anon_sym_BSLASHacl] = ACTIONS(5297), + [anon_sym_BSLASHAcl] = ACTIONS(5297), + [anon_sym_BSLASHaclp] = ACTIONS(5297), + [anon_sym_BSLASHAclp] = ACTIONS(5297), + [anon_sym_BSLASHacf] = ACTIONS(5297), + [anon_sym_BSLASHAcf] = ACTIONS(5297), + [anon_sym_BSLASHacfp] = ACTIONS(5297), + [anon_sym_BSLASHAcfp] = ACTIONS(5297), + [anon_sym_BSLASHac] = ACTIONS(5297), + [anon_sym_BSLASHAc] = ACTIONS(5297), + [anon_sym_BSLASHacp] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), + [anon_sym_BSLASHcolor] = ACTIONS(5297), + [anon_sym_BSLASHcolorbox] = ACTIONS(5297), + [anon_sym_BSLASHtextcolor] = ACTIONS(5297), + [anon_sym_BSLASHpagecolor] = ACTIONS(5297), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), + [anon_sym_BSLASHtext] = ACTIONS(5297), + [anon_sym_BSLASHintertext] = ACTIONS(5297), + [anon_sym_shortintertext] = ACTIONS(5297), + }, + [810] = { + [ts_builtin_sym_end] = ACTIONS(5299), + [sym_command_name] = ACTIONS(5301), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5301), + [anon_sym_LPAREN] = ACTIONS(5299), + [anon_sym_RPAREN] = ACTIONS(5299), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym_RBRACK] = ACTIONS(5299), + [anon_sym_COMMA] = ACTIONS(5299), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_BSLASHpart] = ACTIONS(5301), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddpart] = ACTIONS(5301), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5299), + [anon_sym_BSLASHchapter] = ACTIONS(5301), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddchap] = ACTIONS(5301), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsection] = ACTIONS(5301), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddsec] = ACTIONS(5301), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubsection] = ACTIONS(5301), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5301), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHparagraph] = ACTIONS(5301), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5301), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5299), + [anon_sym_BSLASHitem] = ACTIONS(5301), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5299), + [anon_sym_LBRACE] = ACTIONS(5299), + [anon_sym_RBRACE] = ACTIONS(5299), + [sym_word] = ACTIONS(5301), + [sym_placeholder] = ACTIONS(5299), + [anon_sym_PLUS] = ACTIONS(5301), + [anon_sym_DASH] = ACTIONS(5301), + [anon_sym_STAR] = ACTIONS(5301), + [anon_sym_SLASH] = ACTIONS(5301), + [anon_sym_CARET] = ACTIONS(5301), + [anon_sym__] = ACTIONS(5301), + [anon_sym_LT] = ACTIONS(5301), + [anon_sym_GT] = ACTIONS(5301), + [anon_sym_BANG] = ACTIONS(5301), + [anon_sym_PIPE] = ACTIONS(5301), + [anon_sym_COLON] = ACTIONS(5301), + [anon_sym_SQUOTE] = ACTIONS(5301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), + [anon_sym_DOLLAR] = ACTIONS(5301), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), + [anon_sym_BSLASHbegin] = ACTIONS(5301), + [anon_sym_BSLASHusepackage] = ACTIONS(5301), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), + [anon_sym_BSLASHinclude] = ACTIONS(5301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), + [anon_sym_BSLASHinput] = ACTIONS(5301), + [anon_sym_BSLASHsubfile] = ACTIONS(5301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), + [anon_sym_BSLASHbibliography] = ACTIONS(5301), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), + [anon_sym_BSLASHincludesvg] = ACTIONS(5301), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), + [anon_sym_BSLASHimport] = ACTIONS(5301), + [anon_sym_BSLASHsubimport] = ACTIONS(5301), + [anon_sym_BSLASHinputfrom] = ACTIONS(5301), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), + [anon_sym_BSLASHincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHcaption] = ACTIONS(5301), + [anon_sym_BSLASHcite] = ACTIONS(5301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCite] = ACTIONS(5301), + [anon_sym_BSLASHnocite] = ACTIONS(5301), + [anon_sym_BSLASHcitet] = ACTIONS(5301), + [anon_sym_BSLASHcitep] = ACTIONS(5301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteauthor] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitetitle] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteyear] = ACTIONS(5301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitedate] = ACTIONS(5301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteurl] = ACTIONS(5301), + [anon_sym_BSLASHfullcite] = ACTIONS(5301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), + [anon_sym_BSLASHcitealt] = ACTIONS(5301), + [anon_sym_BSLASHcitealp] = ACTIONS(5301), + [anon_sym_BSLASHcitetext] = ACTIONS(5301), + [anon_sym_BSLASHparencite] = ACTIONS(5301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHParencite] = ACTIONS(5301), + [anon_sym_BSLASHfootcite] = ACTIONS(5301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), + [anon_sym_BSLASHtextcite] = ACTIONS(5301), + [anon_sym_BSLASHTextcite] = ACTIONS(5301), + [anon_sym_BSLASHsmartcite] = ACTIONS(5301), + [anon_sym_BSLASHSmartcite] = ACTIONS(5301), + [anon_sym_BSLASHsupercite] = ACTIONS(5301), + [anon_sym_BSLASHautocite] = ACTIONS(5301), + [anon_sym_BSLASHAutocite] = ACTIONS(5301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHvolcite] = ACTIONS(5301), + [anon_sym_BSLASHVolcite] = ACTIONS(5301), + [anon_sym_BSLASHpvolcite] = ACTIONS(5301), + [anon_sym_BSLASHPvolcite] = ACTIONS(5301), + [anon_sym_BSLASHfvolcite] = ACTIONS(5301), + [anon_sym_BSLASHftvolcite] = ACTIONS(5301), + [anon_sym_BSLASHsvolcite] = ACTIONS(5301), + [anon_sym_BSLASHSvolcite] = ACTIONS(5301), + [anon_sym_BSLASHtvolcite] = ACTIONS(5301), + [anon_sym_BSLASHTvolcite] = ACTIONS(5301), + [anon_sym_BSLASHavolcite] = ACTIONS(5301), + [anon_sym_BSLASHAvolcite] = ACTIONS(5301), + [anon_sym_BSLASHnotecite] = ACTIONS(5301), + [anon_sym_BSLASHNotecite] = ACTIONS(5301), + [anon_sym_BSLASHpnotecite] = ACTIONS(5301), + [anon_sym_BSLASHPnotecite] = ACTIONS(5301), + [anon_sym_BSLASHfnotecite] = ACTIONS(5301), + [anon_sym_BSLASHlabel] = ACTIONS(5301), + [anon_sym_BSLASHref] = ACTIONS(5301), + [anon_sym_BSLASHeqref] = ACTIONS(5301), + [anon_sym_BSLASHvref] = ACTIONS(5301), + [anon_sym_BSLASHVref] = ACTIONS(5301), + [anon_sym_BSLASHautoref] = ACTIONS(5301), + [anon_sym_BSLASHpageref] = ACTIONS(5301), + [anon_sym_BSLASHcref] = ACTIONS(5301), + [anon_sym_BSLASHCref] = ACTIONS(5301), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnameCref] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHlabelcref] = ACTIONS(5301), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCrefrange] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnewlabel] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), + [anon_sym_BSLASHdef] = ACTIONS(5301), + [anon_sym_BSLASHlet] = ACTIONS(5301), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), + [anon_sym_BSLASHgls] = ACTIONS(5301), + [anon_sym_BSLASHGls] = ACTIONS(5301), + [anon_sym_BSLASHGLS] = ACTIONS(5301), + [anon_sym_BSLASHglspl] = ACTIONS(5301), + [anon_sym_BSLASHGlspl] = ACTIONS(5301), + [anon_sym_BSLASHGLSpl] = ACTIONS(5301), + [anon_sym_BSLASHglsdisp] = ACTIONS(5301), + [anon_sym_BSLASHglslink] = ACTIONS(5301), + [anon_sym_BSLASHglstext] = ACTIONS(5301), + [anon_sym_BSLASHGlstext] = ACTIONS(5301), + [anon_sym_BSLASHGLStext] = ACTIONS(5301), + [anon_sym_BSLASHglsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), + [anon_sym_BSLASHglsplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSplural] = ACTIONS(5301), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHglsname] = ACTIONS(5301), + [anon_sym_BSLASHGlsname] = ACTIONS(5301), + [anon_sym_BSLASHGLSname] = ACTIONS(5301), + [anon_sym_BSLASHglssymbol] = ACTIONS(5301), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), + [anon_sym_BSLASHglsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), + [anon_sym_BSLASHglsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), + [anon_sym_BSLASHglsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), + [anon_sym_BSLASHglsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), + [anon_sym_BSLASHglsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), + [anon_sym_BSLASHnewacronym] = ACTIONS(5301), + [anon_sym_BSLASHacrshort] = ACTIONS(5301), + [anon_sym_BSLASHAcrshort] = ACTIONS(5301), + [anon_sym_BSLASHACRshort] = ACTIONS(5301), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), + [anon_sym_BSLASHacrlong] = ACTIONS(5301), + [anon_sym_BSLASHAcrlong] = ACTIONS(5301), + [anon_sym_BSLASHACRlong] = ACTIONS(5301), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), + [anon_sym_BSLASHacrfull] = ACTIONS(5301), + [anon_sym_BSLASHAcrfull] = ACTIONS(5301), + [anon_sym_BSLASHACRfull] = ACTIONS(5301), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), + [anon_sym_BSLASHacs] = ACTIONS(5301), + [anon_sym_BSLASHAcs] = ACTIONS(5301), + [anon_sym_BSLASHacsp] = ACTIONS(5301), + [anon_sym_BSLASHAcsp] = ACTIONS(5301), + [anon_sym_BSLASHacl] = ACTIONS(5301), + [anon_sym_BSLASHAcl] = ACTIONS(5301), + [anon_sym_BSLASHaclp] = ACTIONS(5301), + [anon_sym_BSLASHAclp] = ACTIONS(5301), + [anon_sym_BSLASHacf] = ACTIONS(5301), + [anon_sym_BSLASHAcf] = ACTIONS(5301), + [anon_sym_BSLASHacfp] = ACTIONS(5301), + [anon_sym_BSLASHAcfp] = ACTIONS(5301), + [anon_sym_BSLASHac] = ACTIONS(5301), + [anon_sym_BSLASHAc] = ACTIONS(5301), + [anon_sym_BSLASHacp] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), + [anon_sym_BSLASHcolor] = ACTIONS(5301), + [anon_sym_BSLASHcolorbox] = ACTIONS(5301), + [anon_sym_BSLASHtextcolor] = ACTIONS(5301), + [anon_sym_BSLASHpagecolor] = ACTIONS(5301), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), + [anon_sym_BSLASHtext] = ACTIONS(5301), + [anon_sym_BSLASHintertext] = ACTIONS(5301), + [anon_sym_shortintertext] = ACTIONS(5301), + }, + [811] = { + [ts_builtin_sym_end] = ACTIONS(5303), + [sym_command_name] = ACTIONS(5305), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_BSLASHpart] = ACTIONS(5089), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddpart] = ACTIONS(5089), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHchapter] = ACTIONS(5089), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddchap] = ACTIONS(5089), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsection] = ACTIONS(5089), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddsec] = ACTIONS(5089), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHparagraph] = ACTIONS(5089), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHitem] = ACTIONS(5089), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5087), - [anon_sym_BSLASHbegin] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHiffalse] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5303), + [anon_sym_RPAREN] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5303), + [anon_sym_RBRACK] = ACTIONS(5303), + [anon_sym_COMMA] = ACTIONS(5303), + [anon_sym_EQ] = ACTIONS(5303), + [anon_sym_BSLASHpart] = ACTIONS(5305), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddpart] = ACTIONS(5305), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), + [anon_sym_BSLASHchapter] = ACTIONS(5305), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddchap] = ACTIONS(5305), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsection] = ACTIONS(5305), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddsec] = ACTIONS(5305), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubsection] = ACTIONS(5305), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHparagraph] = ACTIONS(5305), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), + [anon_sym_BSLASHitem] = ACTIONS(5305), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), + [anon_sym_LBRACE] = ACTIONS(5303), + [anon_sym_RBRACE] = ACTIONS(5303), + [sym_word] = ACTIONS(5305), + [sym_placeholder] = ACTIONS(5303), + [anon_sym_PLUS] = ACTIONS(5305), + [anon_sym_DASH] = ACTIONS(5305), + [anon_sym_STAR] = ACTIONS(5305), + [anon_sym_SLASH] = ACTIONS(5305), + [anon_sym_CARET] = ACTIONS(5305), + [anon_sym__] = ACTIONS(5305), + [anon_sym_LT] = ACTIONS(5305), + [anon_sym_GT] = ACTIONS(5305), + [anon_sym_BANG] = ACTIONS(5305), + [anon_sym_PIPE] = ACTIONS(5305), + [anon_sym_COLON] = ACTIONS(5305), + [anon_sym_SQUOTE] = ACTIONS(5305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), + [anon_sym_DOLLAR] = ACTIONS(5305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), + [anon_sym_BSLASHbegin] = ACTIONS(5305), + [anon_sym_BSLASHusepackage] = ACTIONS(5305), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), + [anon_sym_BSLASHinclude] = ACTIONS(5305), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), + [anon_sym_BSLASHinput] = ACTIONS(5305), + [anon_sym_BSLASHsubfile] = ACTIONS(5305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), + [anon_sym_BSLASHbibliography] = ACTIONS(5305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), + [anon_sym_BSLASHincludesvg] = ACTIONS(5305), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), + [anon_sym_BSLASHimport] = ACTIONS(5305), + [anon_sym_BSLASHsubimport] = ACTIONS(5305), + [anon_sym_BSLASHinputfrom] = ACTIONS(5305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), + [anon_sym_BSLASHincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHcaption] = ACTIONS(5305), + [anon_sym_BSLASHcite] = ACTIONS(5305), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCite] = ACTIONS(5305), + [anon_sym_BSLASHnocite] = ACTIONS(5305), + [anon_sym_BSLASHcitet] = ACTIONS(5305), + [anon_sym_BSLASHcitep] = ACTIONS(5305), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor] = ACTIONS(5305), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle] = ACTIONS(5305), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteyear] = ACTIONS(5305), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitedate] = ACTIONS(5305), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteurl] = ACTIONS(5305), + [anon_sym_BSLASHfullcite] = ACTIONS(5305), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), + [anon_sym_BSLASHcitealt] = ACTIONS(5305), + [anon_sym_BSLASHcitealp] = ACTIONS(5305), + [anon_sym_BSLASHcitetext] = ACTIONS(5305), + [anon_sym_BSLASHparencite] = ACTIONS(5305), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHParencite] = ACTIONS(5305), + [anon_sym_BSLASHfootcite] = ACTIONS(5305), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), + [anon_sym_BSLASHtextcite] = ACTIONS(5305), + [anon_sym_BSLASHTextcite] = ACTIONS(5305), + [anon_sym_BSLASHsmartcite] = ACTIONS(5305), + [anon_sym_BSLASHSmartcite] = ACTIONS(5305), + [anon_sym_BSLASHsupercite] = ACTIONS(5305), + [anon_sym_BSLASHautocite] = ACTIONS(5305), + [anon_sym_BSLASHAutocite] = ACTIONS(5305), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHvolcite] = ACTIONS(5305), + [anon_sym_BSLASHVolcite] = ACTIONS(5305), + [anon_sym_BSLASHpvolcite] = ACTIONS(5305), + [anon_sym_BSLASHPvolcite] = ACTIONS(5305), + [anon_sym_BSLASHfvolcite] = ACTIONS(5305), + [anon_sym_BSLASHftvolcite] = ACTIONS(5305), + [anon_sym_BSLASHsvolcite] = ACTIONS(5305), + [anon_sym_BSLASHSvolcite] = ACTIONS(5305), + [anon_sym_BSLASHtvolcite] = ACTIONS(5305), + [anon_sym_BSLASHTvolcite] = ACTIONS(5305), + [anon_sym_BSLASHavolcite] = ACTIONS(5305), + [anon_sym_BSLASHAvolcite] = ACTIONS(5305), + [anon_sym_BSLASHnotecite] = ACTIONS(5305), + [anon_sym_BSLASHNotecite] = ACTIONS(5305), + [anon_sym_BSLASHpnotecite] = ACTIONS(5305), + [anon_sym_BSLASHPnotecite] = ACTIONS(5305), + [anon_sym_BSLASHfnotecite] = ACTIONS(5305), + [anon_sym_BSLASHlabel] = ACTIONS(5305), + [anon_sym_BSLASHref] = ACTIONS(5305), + [anon_sym_BSLASHeqref] = ACTIONS(5305), + [anon_sym_BSLASHvref] = ACTIONS(5305), + [anon_sym_BSLASHVref] = ACTIONS(5305), + [anon_sym_BSLASHautoref] = ACTIONS(5305), + [anon_sym_BSLASHpageref] = ACTIONS(5305), + [anon_sym_BSLASHcref] = ACTIONS(5305), + [anon_sym_BSLASHCref] = ACTIONS(5305), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnameCref] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHlabelcref] = ACTIONS(5305), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange] = ACTIONS(5305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnewlabel] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), + [anon_sym_BSLASHdef] = ACTIONS(5305), + [anon_sym_BSLASHlet] = ACTIONS(5305), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), + [anon_sym_BSLASHgls] = ACTIONS(5305), + [anon_sym_BSLASHGls] = ACTIONS(5305), + [anon_sym_BSLASHGLS] = ACTIONS(5305), + [anon_sym_BSLASHglspl] = ACTIONS(5305), + [anon_sym_BSLASHGlspl] = ACTIONS(5305), + [anon_sym_BSLASHGLSpl] = ACTIONS(5305), + [anon_sym_BSLASHglsdisp] = ACTIONS(5305), + [anon_sym_BSLASHglslink] = ACTIONS(5305), + [anon_sym_BSLASHglstext] = ACTIONS(5305), + [anon_sym_BSLASHGlstext] = ACTIONS(5305), + [anon_sym_BSLASHGLStext] = ACTIONS(5305), + [anon_sym_BSLASHglsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), + [anon_sym_BSLASHglsplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSplural] = ACTIONS(5305), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHglsname] = ACTIONS(5305), + [anon_sym_BSLASHGlsname] = ACTIONS(5305), + [anon_sym_BSLASHGLSname] = ACTIONS(5305), + [anon_sym_BSLASHglssymbol] = ACTIONS(5305), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), + [anon_sym_BSLASHglsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), + [anon_sym_BSLASHglsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), + [anon_sym_BSLASHglsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), + [anon_sym_BSLASHglsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), + [anon_sym_BSLASHglsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), + [anon_sym_BSLASHnewacronym] = ACTIONS(5305), + [anon_sym_BSLASHacrshort] = ACTIONS(5305), + [anon_sym_BSLASHAcrshort] = ACTIONS(5305), + [anon_sym_BSLASHACRshort] = ACTIONS(5305), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), + [anon_sym_BSLASHacrlong] = ACTIONS(5305), + [anon_sym_BSLASHAcrlong] = ACTIONS(5305), + [anon_sym_BSLASHACRlong] = ACTIONS(5305), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), + [anon_sym_BSLASHacrfull] = ACTIONS(5305), + [anon_sym_BSLASHAcrfull] = ACTIONS(5305), + [anon_sym_BSLASHACRfull] = ACTIONS(5305), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), + [anon_sym_BSLASHacs] = ACTIONS(5305), + [anon_sym_BSLASHAcs] = ACTIONS(5305), + [anon_sym_BSLASHacsp] = ACTIONS(5305), + [anon_sym_BSLASHAcsp] = ACTIONS(5305), + [anon_sym_BSLASHacl] = ACTIONS(5305), + [anon_sym_BSLASHAcl] = ACTIONS(5305), + [anon_sym_BSLASHaclp] = ACTIONS(5305), + [anon_sym_BSLASHAclp] = ACTIONS(5305), + [anon_sym_BSLASHacf] = ACTIONS(5305), + [anon_sym_BSLASHAcf] = ACTIONS(5305), + [anon_sym_BSLASHacfp] = ACTIONS(5305), + [anon_sym_BSLASHAcfp] = ACTIONS(5305), + [anon_sym_BSLASHac] = ACTIONS(5305), + [anon_sym_BSLASHAc] = ACTIONS(5305), + [anon_sym_BSLASHacp] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), + [anon_sym_BSLASHcolor] = ACTIONS(5305), + [anon_sym_BSLASHcolorbox] = ACTIONS(5305), + [anon_sym_BSLASHtextcolor] = ACTIONS(5305), + [anon_sym_BSLASHpagecolor] = ACTIONS(5305), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), + [anon_sym_BSLASHtext] = ACTIONS(5305), + [anon_sym_BSLASHintertext] = ACTIONS(5305), + [anon_sym_shortintertext] = ACTIONS(5305), }, - [981] = { - [sym_command_name] = ACTIONS(5093), + [812] = { + [ts_builtin_sym_end] = ACTIONS(5307), + [sym_command_name] = ACTIONS(5309), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5309), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_RPAREN] = ACTIONS(5307), + [anon_sym_LBRACK] = ACTIONS(5307), + [anon_sym_RBRACK] = ACTIONS(5307), + [anon_sym_COMMA] = ACTIONS(5307), + [anon_sym_EQ] = ACTIONS(5307), + [anon_sym_BSLASHpart] = ACTIONS(5309), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddpart] = ACTIONS(5309), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5307), + [anon_sym_BSLASHchapter] = ACTIONS(5309), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddchap] = ACTIONS(5309), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsection] = ACTIONS(5309), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddsec] = ACTIONS(5309), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubsection] = ACTIONS(5309), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5309), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHparagraph] = ACTIONS(5309), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5309), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5307), + [anon_sym_BSLASHitem] = ACTIONS(5309), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5307), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(5307), + [sym_word] = ACTIONS(5309), + [sym_placeholder] = ACTIONS(5307), + [anon_sym_PLUS] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5309), + [anon_sym_STAR] = ACTIONS(5309), + [anon_sym_SLASH] = ACTIONS(5309), + [anon_sym_CARET] = ACTIONS(5309), + [anon_sym__] = ACTIONS(5309), + [anon_sym_LT] = ACTIONS(5309), + [anon_sym_GT] = ACTIONS(5309), + [anon_sym_BANG] = ACTIONS(5309), + [anon_sym_PIPE] = ACTIONS(5309), + [anon_sym_COLON] = ACTIONS(5309), + [anon_sym_SQUOTE] = ACTIONS(5309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), + [anon_sym_BSLASHbegin] = ACTIONS(5309), + [anon_sym_BSLASHusepackage] = ACTIONS(5309), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), + [anon_sym_BSLASHinclude] = ACTIONS(5309), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), + [anon_sym_BSLASHinput] = ACTIONS(5309), + [anon_sym_BSLASHsubfile] = ACTIONS(5309), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), + [anon_sym_BSLASHbibliography] = ACTIONS(5309), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), + [anon_sym_BSLASHincludesvg] = ACTIONS(5309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), + [anon_sym_BSLASHimport] = ACTIONS(5309), + [anon_sym_BSLASHsubimport] = ACTIONS(5309), + [anon_sym_BSLASHinputfrom] = ACTIONS(5309), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), + [anon_sym_BSLASHincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHcaption] = ACTIONS(5309), + [anon_sym_BSLASHcite] = ACTIONS(5309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCite] = ACTIONS(5309), + [anon_sym_BSLASHnocite] = ACTIONS(5309), + [anon_sym_BSLASHcitet] = ACTIONS(5309), + [anon_sym_BSLASHcitep] = ACTIONS(5309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteauthor] = ACTIONS(5309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitetitle] = ACTIONS(5309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteyear] = ACTIONS(5309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitedate] = ACTIONS(5309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteurl] = ACTIONS(5309), + [anon_sym_BSLASHfullcite] = ACTIONS(5309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), + [anon_sym_BSLASHcitealt] = ACTIONS(5309), + [anon_sym_BSLASHcitealp] = ACTIONS(5309), + [anon_sym_BSLASHcitetext] = ACTIONS(5309), + [anon_sym_BSLASHparencite] = ACTIONS(5309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHParencite] = ACTIONS(5309), + [anon_sym_BSLASHfootcite] = ACTIONS(5309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), + [anon_sym_BSLASHtextcite] = ACTIONS(5309), + [anon_sym_BSLASHTextcite] = ACTIONS(5309), + [anon_sym_BSLASHsmartcite] = ACTIONS(5309), + [anon_sym_BSLASHSmartcite] = ACTIONS(5309), + [anon_sym_BSLASHsupercite] = ACTIONS(5309), + [anon_sym_BSLASHautocite] = ACTIONS(5309), + [anon_sym_BSLASHAutocite] = ACTIONS(5309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHvolcite] = ACTIONS(5309), + [anon_sym_BSLASHVolcite] = ACTIONS(5309), + [anon_sym_BSLASHpvolcite] = ACTIONS(5309), + [anon_sym_BSLASHPvolcite] = ACTIONS(5309), + [anon_sym_BSLASHfvolcite] = ACTIONS(5309), + [anon_sym_BSLASHftvolcite] = ACTIONS(5309), + [anon_sym_BSLASHsvolcite] = ACTIONS(5309), + [anon_sym_BSLASHSvolcite] = ACTIONS(5309), + [anon_sym_BSLASHtvolcite] = ACTIONS(5309), + [anon_sym_BSLASHTvolcite] = ACTIONS(5309), + [anon_sym_BSLASHavolcite] = ACTIONS(5309), + [anon_sym_BSLASHAvolcite] = ACTIONS(5309), + [anon_sym_BSLASHnotecite] = ACTIONS(5309), + [anon_sym_BSLASHNotecite] = ACTIONS(5309), + [anon_sym_BSLASHpnotecite] = ACTIONS(5309), + [anon_sym_BSLASHPnotecite] = ACTIONS(5309), + [anon_sym_BSLASHfnotecite] = ACTIONS(5309), + [anon_sym_BSLASHlabel] = ACTIONS(5309), + [anon_sym_BSLASHref] = ACTIONS(5309), + [anon_sym_BSLASHeqref] = ACTIONS(5309), + [anon_sym_BSLASHvref] = ACTIONS(5309), + [anon_sym_BSLASHVref] = ACTIONS(5309), + [anon_sym_BSLASHautoref] = ACTIONS(5309), + [anon_sym_BSLASHpageref] = ACTIONS(5309), + [anon_sym_BSLASHcref] = ACTIONS(5309), + [anon_sym_BSLASHCref] = ACTIONS(5309), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnameCref] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHlabelcref] = ACTIONS(5309), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCrefrange] = ACTIONS(5309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnewlabel] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), + [anon_sym_BSLASHdef] = ACTIONS(5309), + [anon_sym_BSLASHlet] = ACTIONS(5309), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), + [anon_sym_BSLASHgls] = ACTIONS(5309), + [anon_sym_BSLASHGls] = ACTIONS(5309), + [anon_sym_BSLASHGLS] = ACTIONS(5309), + [anon_sym_BSLASHglspl] = ACTIONS(5309), + [anon_sym_BSLASHGlspl] = ACTIONS(5309), + [anon_sym_BSLASHGLSpl] = ACTIONS(5309), + [anon_sym_BSLASHglsdisp] = ACTIONS(5309), + [anon_sym_BSLASHglslink] = ACTIONS(5309), + [anon_sym_BSLASHglstext] = ACTIONS(5309), + [anon_sym_BSLASHGlstext] = ACTIONS(5309), + [anon_sym_BSLASHGLStext] = ACTIONS(5309), + [anon_sym_BSLASHglsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), + [anon_sym_BSLASHglsplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSplural] = ACTIONS(5309), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHglsname] = ACTIONS(5309), + [anon_sym_BSLASHGlsname] = ACTIONS(5309), + [anon_sym_BSLASHGLSname] = ACTIONS(5309), + [anon_sym_BSLASHglssymbol] = ACTIONS(5309), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), + [anon_sym_BSLASHglsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), + [anon_sym_BSLASHglsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), + [anon_sym_BSLASHglsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), + [anon_sym_BSLASHglsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), + [anon_sym_BSLASHglsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), + [anon_sym_BSLASHnewacronym] = ACTIONS(5309), + [anon_sym_BSLASHacrshort] = ACTIONS(5309), + [anon_sym_BSLASHAcrshort] = ACTIONS(5309), + [anon_sym_BSLASHACRshort] = ACTIONS(5309), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), + [anon_sym_BSLASHacrlong] = ACTIONS(5309), + [anon_sym_BSLASHAcrlong] = ACTIONS(5309), + [anon_sym_BSLASHACRlong] = ACTIONS(5309), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), + [anon_sym_BSLASHacrfull] = ACTIONS(5309), + [anon_sym_BSLASHAcrfull] = ACTIONS(5309), + [anon_sym_BSLASHACRfull] = ACTIONS(5309), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), + [anon_sym_BSLASHacs] = ACTIONS(5309), + [anon_sym_BSLASHAcs] = ACTIONS(5309), + [anon_sym_BSLASHacsp] = ACTIONS(5309), + [anon_sym_BSLASHAcsp] = ACTIONS(5309), + [anon_sym_BSLASHacl] = ACTIONS(5309), + [anon_sym_BSLASHAcl] = ACTIONS(5309), + [anon_sym_BSLASHaclp] = ACTIONS(5309), + [anon_sym_BSLASHAclp] = ACTIONS(5309), + [anon_sym_BSLASHacf] = ACTIONS(5309), + [anon_sym_BSLASHAcf] = ACTIONS(5309), + [anon_sym_BSLASHacfp] = ACTIONS(5309), + [anon_sym_BSLASHAcfp] = ACTIONS(5309), + [anon_sym_BSLASHac] = ACTIONS(5309), + [anon_sym_BSLASHAc] = ACTIONS(5309), + [anon_sym_BSLASHacp] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), + [anon_sym_BSLASHcolor] = ACTIONS(5309), + [anon_sym_BSLASHcolorbox] = ACTIONS(5309), + [anon_sym_BSLASHtextcolor] = ACTIONS(5309), + [anon_sym_BSLASHpagecolor] = ACTIONS(5309), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), + [anon_sym_BSLASHtext] = ACTIONS(5309), + [anon_sym_BSLASHintertext] = ACTIONS(5309), + [anon_sym_shortintertext] = ACTIONS(5309), + }, + [813] = { + [sym_brack_group_text] = STATE(891), + [sym_command_name] = ACTIONS(4853), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4853), + [anon_sym_LPAREN] = ACTIONS(4851), + [anon_sym_RPAREN] = ACTIONS(4851), + [anon_sym_LBRACK] = ACTIONS(4893), + [anon_sym_RBRACK] = ACTIONS(4851), + [anon_sym_COMMA] = ACTIONS(4851), + [anon_sym_EQ] = ACTIONS(4851), + [anon_sym_BSLASHpart] = ACTIONS(4853), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddpart] = ACTIONS(4853), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4851), + [anon_sym_BSLASHchapter] = ACTIONS(4853), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddchap] = ACTIONS(4853), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsection] = ACTIONS(4853), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHaddsec] = ACTIONS(4853), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubsection] = ACTIONS(4853), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4853), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4851), + [anon_sym_BSLASHparagraph] = ACTIONS(4853), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4851), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4853), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4851), + [anon_sym_BSLASHitem] = ACTIONS(4853), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4851), + [anon_sym_LBRACE] = ACTIONS(4851), + [sym_word] = ACTIONS(4853), + [sym_placeholder] = ACTIONS(4851), + [anon_sym_PLUS] = ACTIONS(4853), + [anon_sym_DASH] = ACTIONS(4853), + [anon_sym_STAR] = ACTIONS(4853), + [anon_sym_SLASH] = ACTIONS(4853), + [anon_sym_CARET] = ACTIONS(4853), + [anon_sym__] = ACTIONS(4853), + [anon_sym_LT] = ACTIONS(4853), + [anon_sym_GT] = ACTIONS(4853), + [anon_sym_BANG] = ACTIONS(4853), + [anon_sym_PIPE] = ACTIONS(4853), + [anon_sym_COLON] = ACTIONS(4853), + [anon_sym_SQUOTE] = ACTIONS(4853), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4851), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4851), + [anon_sym_DOLLAR] = ACTIONS(4853), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4851), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4851), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4851), + [anon_sym_BSLASHbegin] = ACTIONS(4853), + [anon_sym_BSLASHusepackage] = ACTIONS(4853), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4853), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4853), + [anon_sym_BSLASHinclude] = ACTIONS(4853), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4853), + [anon_sym_BSLASHinput] = ACTIONS(4853), + [anon_sym_BSLASHsubfile] = ACTIONS(4853), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4853), + [anon_sym_BSLASHbibliography] = ACTIONS(4853), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4853), + [anon_sym_BSLASHincludesvg] = ACTIONS(4853), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4853), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4853), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4853), + [anon_sym_BSLASHimport] = ACTIONS(4853), + [anon_sym_BSLASHsubimport] = ACTIONS(4853), + [anon_sym_BSLASHinputfrom] = ACTIONS(4853), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4853), + [anon_sym_BSLASHincludefrom] = ACTIONS(4853), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4853), + [anon_sym_BSLASHcaption] = ACTIONS(4853), + [anon_sym_BSLASHcite] = ACTIONS(4853), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCite] = ACTIONS(4853), + [anon_sym_BSLASHnocite] = ACTIONS(4853), + [anon_sym_BSLASHcitet] = ACTIONS(4853), + [anon_sym_BSLASHcitep] = ACTIONS(4853), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteauthor] = ACTIONS(4853), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4853), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitetitle] = ACTIONS(4853), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteyear] = ACTIONS(4853), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4851), + [anon_sym_BSLASHcitedate] = ACTIONS(4853), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4851), + [anon_sym_BSLASHciteurl] = ACTIONS(4853), + [anon_sym_BSLASHfullcite] = ACTIONS(4853), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4853), + [anon_sym_BSLASHcitealt] = ACTIONS(4853), + [anon_sym_BSLASHcitealp] = ACTIONS(4853), + [anon_sym_BSLASHcitetext] = ACTIONS(4853), + [anon_sym_BSLASHparencite] = ACTIONS(4853), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHParencite] = ACTIONS(4853), + [anon_sym_BSLASHfootcite] = ACTIONS(4853), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4853), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4853), + [anon_sym_BSLASHtextcite] = ACTIONS(4853), + [anon_sym_BSLASHTextcite] = ACTIONS(4853), + [anon_sym_BSLASHsmartcite] = ACTIONS(4853), + [anon_sym_BSLASHSmartcite] = ACTIONS(4853), + [anon_sym_BSLASHsupercite] = ACTIONS(4853), + [anon_sym_BSLASHautocite] = ACTIONS(4853), + [anon_sym_BSLASHAutocite] = ACTIONS(4853), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4851), + [anon_sym_BSLASHvolcite] = ACTIONS(4853), + [anon_sym_BSLASHVolcite] = ACTIONS(4853), + [anon_sym_BSLASHpvolcite] = ACTIONS(4853), + [anon_sym_BSLASHPvolcite] = ACTIONS(4853), + [anon_sym_BSLASHfvolcite] = ACTIONS(4853), + [anon_sym_BSLASHftvolcite] = ACTIONS(4853), + [anon_sym_BSLASHsvolcite] = ACTIONS(4853), + [anon_sym_BSLASHSvolcite] = ACTIONS(4853), + [anon_sym_BSLASHtvolcite] = ACTIONS(4853), + [anon_sym_BSLASHTvolcite] = ACTIONS(4853), + [anon_sym_BSLASHavolcite] = ACTIONS(4853), + [anon_sym_BSLASHAvolcite] = ACTIONS(4853), + [anon_sym_BSLASHnotecite] = ACTIONS(4853), + [anon_sym_BSLASHNotecite] = ACTIONS(4853), + [anon_sym_BSLASHpnotecite] = ACTIONS(4853), + [anon_sym_BSLASHPnotecite] = ACTIONS(4853), + [anon_sym_BSLASHfnotecite] = ACTIONS(4853), + [anon_sym_BSLASHlabel] = ACTIONS(4853), + [anon_sym_BSLASHref] = ACTIONS(4853), + [anon_sym_BSLASHeqref] = ACTIONS(4853), + [anon_sym_BSLASHvref] = ACTIONS(4853), + [anon_sym_BSLASHVref] = ACTIONS(4853), + [anon_sym_BSLASHautoref] = ACTIONS(4853), + [anon_sym_BSLASHpageref] = ACTIONS(4853), + [anon_sym_BSLASHcref] = ACTIONS(4853), + [anon_sym_BSLASHCref] = ACTIONS(4853), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4851), + [anon_sym_BSLASHnamecref] = ACTIONS(4853), + [anon_sym_BSLASHnameCref] = ACTIONS(4853), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4853), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4853), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4853), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4853), + [anon_sym_BSLASHlabelcref] = ACTIONS(4853), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4853), + [anon_sym_BSLASHcrefrange] = ACTIONS(4853), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4851), + [anon_sym_BSLASHCrefrange] = ACTIONS(4853), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4851), + [anon_sym_BSLASHnewlabel] = ACTIONS(4853), + [anon_sym_BSLASHnewcommand] = ACTIONS(4853), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4853), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4853), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4851), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4853), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4851), + [anon_sym_BSLASHdef] = ACTIONS(4853), + [anon_sym_BSLASHlet] = ACTIONS(4853), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4853), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4853), + [anon_sym_BSLASHgls] = ACTIONS(4853), + [anon_sym_BSLASHGls] = ACTIONS(4853), + [anon_sym_BSLASHGLS] = ACTIONS(4853), + [anon_sym_BSLASHglspl] = ACTIONS(4853), + [anon_sym_BSLASHGlspl] = ACTIONS(4853), + [anon_sym_BSLASHGLSpl] = ACTIONS(4853), + [anon_sym_BSLASHglsdisp] = ACTIONS(4853), + [anon_sym_BSLASHglslink] = ACTIONS(4853), + [anon_sym_BSLASHglstext] = ACTIONS(4853), + [anon_sym_BSLASHGlstext] = ACTIONS(4853), + [anon_sym_BSLASHGLStext] = ACTIONS(4853), + [anon_sym_BSLASHglsfirst] = ACTIONS(4853), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4853), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4853), + [anon_sym_BSLASHglsplural] = ACTIONS(4853), + [anon_sym_BSLASHGlsplural] = ACTIONS(4853), + [anon_sym_BSLASHGLSplural] = ACTIONS(4853), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4853), + [anon_sym_BSLASHglsname] = ACTIONS(4853), + [anon_sym_BSLASHGlsname] = ACTIONS(4853), + [anon_sym_BSLASHGLSname] = ACTIONS(4853), + [anon_sym_BSLASHglssymbol] = ACTIONS(4853), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4853), + [anon_sym_BSLASHglsdesc] = ACTIONS(4853), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4853), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4853), + [anon_sym_BSLASHglsuseri] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4853), + [anon_sym_BSLASHglsuserii] = ACTIONS(4853), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4853), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4853), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4853), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4853), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4853), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4853), + [anon_sym_BSLASHglsuserv] = ACTIONS(4853), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4853), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4853), + [anon_sym_BSLASHglsuservi] = ACTIONS(4853), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4853), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4853), + [anon_sym_BSLASHnewacronym] = ACTIONS(4853), + [anon_sym_BSLASHacrshort] = ACTIONS(4853), + [anon_sym_BSLASHAcrshort] = ACTIONS(4853), + [anon_sym_BSLASHACRshort] = ACTIONS(4853), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4853), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4853), + [anon_sym_BSLASHacrlong] = ACTIONS(4853), + [anon_sym_BSLASHAcrlong] = ACTIONS(4853), + [anon_sym_BSLASHACRlong] = ACTIONS(4853), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4853), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4853), + [anon_sym_BSLASHacrfull] = ACTIONS(4853), + [anon_sym_BSLASHAcrfull] = ACTIONS(4853), + [anon_sym_BSLASHACRfull] = ACTIONS(4853), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4853), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4853), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4853), + [anon_sym_BSLASHacs] = ACTIONS(4853), + [anon_sym_BSLASHAcs] = ACTIONS(4853), + [anon_sym_BSLASHacsp] = ACTIONS(4853), + [anon_sym_BSLASHAcsp] = ACTIONS(4853), + [anon_sym_BSLASHacl] = ACTIONS(4853), + [anon_sym_BSLASHAcl] = ACTIONS(4853), + [anon_sym_BSLASHaclp] = ACTIONS(4853), + [anon_sym_BSLASHAclp] = ACTIONS(4853), + [anon_sym_BSLASHacf] = ACTIONS(4853), + [anon_sym_BSLASHAcf] = ACTIONS(4853), + [anon_sym_BSLASHacfp] = ACTIONS(4853), + [anon_sym_BSLASHAcfp] = ACTIONS(4853), + [anon_sym_BSLASHac] = ACTIONS(4853), + [anon_sym_BSLASHAc] = ACTIONS(4853), + [anon_sym_BSLASHacp] = ACTIONS(4853), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4853), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4853), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4853), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4853), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4853), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4853), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4853), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4853), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4853), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4853), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4853), + [anon_sym_BSLASHcolor] = ACTIONS(4853), + [anon_sym_BSLASHcolorbox] = ACTIONS(4853), + [anon_sym_BSLASHtextcolor] = ACTIONS(4853), + [anon_sym_BSLASHpagecolor] = ACTIONS(4853), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4853), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4853), + [anon_sym_BSLASHtext] = ACTIONS(4853), + [anon_sym_BSLASHintertext] = ACTIONS(4853), + [anon_sym_shortintertext] = ACTIONS(4853), + }, + [814] = { + [sym_curly_group] = STATE(890), + [sym_command_name] = ACTIONS(4849), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4849), + [anon_sym_LPAREN] = ACTIONS(4847), + [anon_sym_RPAREN] = ACTIONS(4847), + [anon_sym_LBRACK] = ACTIONS(4847), + [anon_sym_RBRACK] = ACTIONS(4847), + [anon_sym_COMMA] = ACTIONS(4847), + [anon_sym_EQ] = ACTIONS(4847), + [anon_sym_BSLASHpart] = ACTIONS(4849), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddpart] = ACTIONS(4849), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4847), + [anon_sym_BSLASHchapter] = ACTIONS(4849), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddchap] = ACTIONS(4849), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsection] = ACTIONS(4849), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHaddsec] = ACTIONS(4849), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubsection] = ACTIONS(4849), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4849), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4847), + [anon_sym_BSLASHparagraph] = ACTIONS(4849), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4847), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4849), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4847), + [anon_sym_BSLASHitem] = ACTIONS(4849), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4847), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(4849), + [sym_placeholder] = ACTIONS(4847), + [anon_sym_PLUS] = ACTIONS(4849), + [anon_sym_DASH] = ACTIONS(4849), + [anon_sym_STAR] = ACTIONS(4849), + [anon_sym_SLASH] = ACTIONS(4849), + [anon_sym_CARET] = ACTIONS(4849), + [anon_sym__] = ACTIONS(4849), + [anon_sym_LT] = ACTIONS(4849), + [anon_sym_GT] = ACTIONS(4849), + [anon_sym_BANG] = ACTIONS(4849), + [anon_sym_PIPE] = ACTIONS(4849), + [anon_sym_COLON] = ACTIONS(4849), + [anon_sym_SQUOTE] = ACTIONS(4849), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4847), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4847), + [anon_sym_DOLLAR] = ACTIONS(4849), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4847), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4847), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4847), + [anon_sym_BSLASHbegin] = ACTIONS(4849), + [anon_sym_BSLASHusepackage] = ACTIONS(4849), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4849), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4849), + [anon_sym_BSLASHinclude] = ACTIONS(4849), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4849), + [anon_sym_BSLASHinput] = ACTIONS(4849), + [anon_sym_BSLASHsubfile] = ACTIONS(4849), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4849), + [anon_sym_BSLASHbibliography] = ACTIONS(4849), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4849), + [anon_sym_BSLASHincludesvg] = ACTIONS(4849), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4849), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4849), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4849), + [anon_sym_BSLASHimport] = ACTIONS(4849), + [anon_sym_BSLASHsubimport] = ACTIONS(4849), + [anon_sym_BSLASHinputfrom] = ACTIONS(4849), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4849), + [anon_sym_BSLASHincludefrom] = ACTIONS(4849), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4849), + [anon_sym_BSLASHcaption] = ACTIONS(4849), + [anon_sym_BSLASHcite] = ACTIONS(4849), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCite] = ACTIONS(4849), + [anon_sym_BSLASHnocite] = ACTIONS(4849), + [anon_sym_BSLASHcitet] = ACTIONS(4849), + [anon_sym_BSLASHcitep] = ACTIONS(4849), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteauthor] = ACTIONS(4849), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4849), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitetitle] = ACTIONS(4849), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteyear] = ACTIONS(4849), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4847), + [anon_sym_BSLASHcitedate] = ACTIONS(4849), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4847), + [anon_sym_BSLASHciteurl] = ACTIONS(4849), + [anon_sym_BSLASHfullcite] = ACTIONS(4849), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4849), + [anon_sym_BSLASHcitealt] = ACTIONS(4849), + [anon_sym_BSLASHcitealp] = ACTIONS(4849), + [anon_sym_BSLASHcitetext] = ACTIONS(4849), + [anon_sym_BSLASHparencite] = ACTIONS(4849), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHParencite] = ACTIONS(4849), + [anon_sym_BSLASHfootcite] = ACTIONS(4849), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4849), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4849), + [anon_sym_BSLASHtextcite] = ACTIONS(4849), + [anon_sym_BSLASHTextcite] = ACTIONS(4849), + [anon_sym_BSLASHsmartcite] = ACTIONS(4849), + [anon_sym_BSLASHSmartcite] = ACTIONS(4849), + [anon_sym_BSLASHsupercite] = ACTIONS(4849), + [anon_sym_BSLASHautocite] = ACTIONS(4849), + [anon_sym_BSLASHAutocite] = ACTIONS(4849), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4847), + [anon_sym_BSLASHvolcite] = ACTIONS(4849), + [anon_sym_BSLASHVolcite] = ACTIONS(4849), + [anon_sym_BSLASHpvolcite] = ACTIONS(4849), + [anon_sym_BSLASHPvolcite] = ACTIONS(4849), + [anon_sym_BSLASHfvolcite] = ACTIONS(4849), + [anon_sym_BSLASHftvolcite] = ACTIONS(4849), + [anon_sym_BSLASHsvolcite] = ACTIONS(4849), + [anon_sym_BSLASHSvolcite] = ACTIONS(4849), + [anon_sym_BSLASHtvolcite] = ACTIONS(4849), + [anon_sym_BSLASHTvolcite] = ACTIONS(4849), + [anon_sym_BSLASHavolcite] = ACTIONS(4849), + [anon_sym_BSLASHAvolcite] = ACTIONS(4849), + [anon_sym_BSLASHnotecite] = ACTIONS(4849), + [anon_sym_BSLASHNotecite] = ACTIONS(4849), + [anon_sym_BSLASHpnotecite] = ACTIONS(4849), + [anon_sym_BSLASHPnotecite] = ACTIONS(4849), + [anon_sym_BSLASHfnotecite] = ACTIONS(4849), + [anon_sym_BSLASHlabel] = ACTIONS(4849), + [anon_sym_BSLASHref] = ACTIONS(4849), + [anon_sym_BSLASHeqref] = ACTIONS(4849), + [anon_sym_BSLASHvref] = ACTIONS(4849), + [anon_sym_BSLASHVref] = ACTIONS(4849), + [anon_sym_BSLASHautoref] = ACTIONS(4849), + [anon_sym_BSLASHpageref] = ACTIONS(4849), + [anon_sym_BSLASHcref] = ACTIONS(4849), + [anon_sym_BSLASHCref] = ACTIONS(4849), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4847), + [anon_sym_BSLASHnamecref] = ACTIONS(4849), + [anon_sym_BSLASHnameCref] = ACTIONS(4849), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4849), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4849), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4849), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4849), + [anon_sym_BSLASHlabelcref] = ACTIONS(4849), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4849), + [anon_sym_BSLASHcrefrange] = ACTIONS(4849), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4847), + [anon_sym_BSLASHCrefrange] = ACTIONS(4849), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4847), + [anon_sym_BSLASHnewlabel] = ACTIONS(4849), + [anon_sym_BSLASHnewcommand] = ACTIONS(4849), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4849), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4849), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4847), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4849), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4847), + [anon_sym_BSLASHdef] = ACTIONS(4849), + [anon_sym_BSLASHlet] = ACTIONS(4849), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4849), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4849), + [anon_sym_BSLASHgls] = ACTIONS(4849), + [anon_sym_BSLASHGls] = ACTIONS(4849), + [anon_sym_BSLASHGLS] = ACTIONS(4849), + [anon_sym_BSLASHglspl] = ACTIONS(4849), + [anon_sym_BSLASHGlspl] = ACTIONS(4849), + [anon_sym_BSLASHGLSpl] = ACTIONS(4849), + [anon_sym_BSLASHglsdisp] = ACTIONS(4849), + [anon_sym_BSLASHglslink] = ACTIONS(4849), + [anon_sym_BSLASHglstext] = ACTIONS(4849), + [anon_sym_BSLASHGlstext] = ACTIONS(4849), + [anon_sym_BSLASHGLStext] = ACTIONS(4849), + [anon_sym_BSLASHglsfirst] = ACTIONS(4849), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4849), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4849), + [anon_sym_BSLASHglsplural] = ACTIONS(4849), + [anon_sym_BSLASHGlsplural] = ACTIONS(4849), + [anon_sym_BSLASHGLSplural] = ACTIONS(4849), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4849), + [anon_sym_BSLASHglsname] = ACTIONS(4849), + [anon_sym_BSLASHGlsname] = ACTIONS(4849), + [anon_sym_BSLASHGLSname] = ACTIONS(4849), + [anon_sym_BSLASHglssymbol] = ACTIONS(4849), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4849), + [anon_sym_BSLASHglsdesc] = ACTIONS(4849), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4849), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4849), + [anon_sym_BSLASHglsuseri] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4849), + [anon_sym_BSLASHglsuserii] = ACTIONS(4849), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4849), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4849), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4849), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4849), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4849), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4849), + [anon_sym_BSLASHglsuserv] = ACTIONS(4849), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4849), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4849), + [anon_sym_BSLASHglsuservi] = ACTIONS(4849), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4849), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4849), + [anon_sym_BSLASHnewacronym] = ACTIONS(4849), + [anon_sym_BSLASHacrshort] = ACTIONS(4849), + [anon_sym_BSLASHAcrshort] = ACTIONS(4849), + [anon_sym_BSLASHACRshort] = ACTIONS(4849), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4849), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4849), + [anon_sym_BSLASHacrlong] = ACTIONS(4849), + [anon_sym_BSLASHAcrlong] = ACTIONS(4849), + [anon_sym_BSLASHACRlong] = ACTIONS(4849), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4849), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4849), + [anon_sym_BSLASHacrfull] = ACTIONS(4849), + [anon_sym_BSLASHAcrfull] = ACTIONS(4849), + [anon_sym_BSLASHACRfull] = ACTIONS(4849), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4849), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4849), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4849), + [anon_sym_BSLASHacs] = ACTIONS(4849), + [anon_sym_BSLASHAcs] = ACTIONS(4849), + [anon_sym_BSLASHacsp] = ACTIONS(4849), + [anon_sym_BSLASHAcsp] = ACTIONS(4849), + [anon_sym_BSLASHacl] = ACTIONS(4849), + [anon_sym_BSLASHAcl] = ACTIONS(4849), + [anon_sym_BSLASHaclp] = ACTIONS(4849), + [anon_sym_BSLASHAclp] = ACTIONS(4849), + [anon_sym_BSLASHacf] = ACTIONS(4849), + [anon_sym_BSLASHAcf] = ACTIONS(4849), + [anon_sym_BSLASHacfp] = ACTIONS(4849), + [anon_sym_BSLASHAcfp] = ACTIONS(4849), + [anon_sym_BSLASHac] = ACTIONS(4849), + [anon_sym_BSLASHAc] = ACTIONS(4849), + [anon_sym_BSLASHacp] = ACTIONS(4849), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4849), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4849), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4849), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4849), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4849), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4849), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4849), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4849), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4849), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4849), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4849), + [anon_sym_BSLASHcolor] = ACTIONS(4849), + [anon_sym_BSLASHcolorbox] = ACTIONS(4849), + [anon_sym_BSLASHtextcolor] = ACTIONS(4849), + [anon_sym_BSLASHpagecolor] = ACTIONS(4849), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4849), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4849), + [anon_sym_BSLASHtext] = ACTIONS(4849), + [anon_sym_BSLASHintertext] = ACTIONS(4849), + [anon_sym_shortintertext] = ACTIONS(4849), + }, + [815] = { + [ts_builtin_sym_end] = ACTIONS(5311), + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [anon_sym_RBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), + }, + [816] = { + [sym_curly_group] = STATE(884), + [sym_command_name] = ACTIONS(4825), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4825), + [anon_sym_LPAREN] = ACTIONS(4823), + [anon_sym_RPAREN] = ACTIONS(4823), + [anon_sym_LBRACK] = ACTIONS(4823), + [anon_sym_RBRACK] = ACTIONS(4823), + [anon_sym_COMMA] = ACTIONS(4823), + [anon_sym_EQ] = ACTIONS(4823), + [anon_sym_BSLASHpart] = ACTIONS(4825), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddpart] = ACTIONS(4825), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4823), + [anon_sym_BSLASHchapter] = ACTIONS(4825), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddchap] = ACTIONS(4825), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsection] = ACTIONS(4825), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHaddsec] = ACTIONS(4825), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubsection] = ACTIONS(4825), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4825), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4823), + [anon_sym_BSLASHparagraph] = ACTIONS(4825), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4823), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4825), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4823), + [anon_sym_BSLASHitem] = ACTIONS(4825), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4823), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(4825), + [sym_placeholder] = ACTIONS(4823), + [anon_sym_PLUS] = ACTIONS(4825), + [anon_sym_DASH] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(4825), + [anon_sym_SLASH] = ACTIONS(4825), + [anon_sym_CARET] = ACTIONS(4825), + [anon_sym__] = ACTIONS(4825), + [anon_sym_LT] = ACTIONS(4825), + [anon_sym_GT] = ACTIONS(4825), + [anon_sym_BANG] = ACTIONS(4825), + [anon_sym_PIPE] = ACTIONS(4825), + [anon_sym_COLON] = ACTIONS(4825), + [anon_sym_SQUOTE] = ACTIONS(4825), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4823), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4823), + [anon_sym_DOLLAR] = ACTIONS(4825), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4823), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4823), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4823), + [anon_sym_BSLASHbegin] = ACTIONS(4825), + [anon_sym_BSLASHusepackage] = ACTIONS(4825), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4825), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4825), + [anon_sym_BSLASHinclude] = ACTIONS(4825), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4825), + [anon_sym_BSLASHinput] = ACTIONS(4825), + [anon_sym_BSLASHsubfile] = ACTIONS(4825), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4825), + [anon_sym_BSLASHbibliography] = ACTIONS(4825), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4825), + [anon_sym_BSLASHincludesvg] = ACTIONS(4825), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4825), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4825), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4825), + [anon_sym_BSLASHimport] = ACTIONS(4825), + [anon_sym_BSLASHsubimport] = ACTIONS(4825), + [anon_sym_BSLASHinputfrom] = ACTIONS(4825), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4825), + [anon_sym_BSLASHincludefrom] = ACTIONS(4825), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4825), + [anon_sym_BSLASHcaption] = ACTIONS(4825), + [anon_sym_BSLASHcite] = ACTIONS(4825), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCite] = ACTIONS(4825), + [anon_sym_BSLASHnocite] = ACTIONS(4825), + [anon_sym_BSLASHcitet] = ACTIONS(4825), + [anon_sym_BSLASHcitep] = ACTIONS(4825), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteauthor] = ACTIONS(4825), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4825), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitetitle] = ACTIONS(4825), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteyear] = ACTIONS(4825), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4823), + [anon_sym_BSLASHcitedate] = ACTIONS(4825), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4823), + [anon_sym_BSLASHciteurl] = ACTIONS(4825), + [anon_sym_BSLASHfullcite] = ACTIONS(4825), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4825), + [anon_sym_BSLASHcitealt] = ACTIONS(4825), + [anon_sym_BSLASHcitealp] = ACTIONS(4825), + [anon_sym_BSLASHcitetext] = ACTIONS(4825), + [anon_sym_BSLASHparencite] = ACTIONS(4825), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHParencite] = ACTIONS(4825), + [anon_sym_BSLASHfootcite] = ACTIONS(4825), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4825), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4825), + [anon_sym_BSLASHtextcite] = ACTIONS(4825), + [anon_sym_BSLASHTextcite] = ACTIONS(4825), + [anon_sym_BSLASHsmartcite] = ACTIONS(4825), + [anon_sym_BSLASHSmartcite] = ACTIONS(4825), + [anon_sym_BSLASHsupercite] = ACTIONS(4825), + [anon_sym_BSLASHautocite] = ACTIONS(4825), + [anon_sym_BSLASHAutocite] = ACTIONS(4825), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4823), + [anon_sym_BSLASHvolcite] = ACTIONS(4825), + [anon_sym_BSLASHVolcite] = ACTIONS(4825), + [anon_sym_BSLASHpvolcite] = ACTIONS(4825), + [anon_sym_BSLASHPvolcite] = ACTIONS(4825), + [anon_sym_BSLASHfvolcite] = ACTIONS(4825), + [anon_sym_BSLASHftvolcite] = ACTIONS(4825), + [anon_sym_BSLASHsvolcite] = ACTIONS(4825), + [anon_sym_BSLASHSvolcite] = ACTIONS(4825), + [anon_sym_BSLASHtvolcite] = ACTIONS(4825), + [anon_sym_BSLASHTvolcite] = ACTIONS(4825), + [anon_sym_BSLASHavolcite] = ACTIONS(4825), + [anon_sym_BSLASHAvolcite] = ACTIONS(4825), + [anon_sym_BSLASHnotecite] = ACTIONS(4825), + [anon_sym_BSLASHNotecite] = ACTIONS(4825), + [anon_sym_BSLASHpnotecite] = ACTIONS(4825), + [anon_sym_BSLASHPnotecite] = ACTIONS(4825), + [anon_sym_BSLASHfnotecite] = ACTIONS(4825), + [anon_sym_BSLASHlabel] = ACTIONS(4825), + [anon_sym_BSLASHref] = ACTIONS(4825), + [anon_sym_BSLASHeqref] = ACTIONS(4825), + [anon_sym_BSLASHvref] = ACTIONS(4825), + [anon_sym_BSLASHVref] = ACTIONS(4825), + [anon_sym_BSLASHautoref] = ACTIONS(4825), + [anon_sym_BSLASHpageref] = ACTIONS(4825), + [anon_sym_BSLASHcref] = ACTIONS(4825), + [anon_sym_BSLASHCref] = ACTIONS(4825), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4823), + [anon_sym_BSLASHnamecref] = ACTIONS(4825), + [anon_sym_BSLASHnameCref] = ACTIONS(4825), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4825), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4825), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4825), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4825), + [anon_sym_BSLASHlabelcref] = ACTIONS(4825), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4825), + [anon_sym_BSLASHcrefrange] = ACTIONS(4825), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4823), + [anon_sym_BSLASHCrefrange] = ACTIONS(4825), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4823), + [anon_sym_BSLASHnewlabel] = ACTIONS(4825), + [anon_sym_BSLASHnewcommand] = ACTIONS(4825), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4825), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4825), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4823), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4825), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4823), + [anon_sym_BSLASHdef] = ACTIONS(4825), + [anon_sym_BSLASHlet] = ACTIONS(4825), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4825), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4825), + [anon_sym_BSLASHgls] = ACTIONS(4825), + [anon_sym_BSLASHGls] = ACTIONS(4825), + [anon_sym_BSLASHGLS] = ACTIONS(4825), + [anon_sym_BSLASHglspl] = ACTIONS(4825), + [anon_sym_BSLASHGlspl] = ACTIONS(4825), + [anon_sym_BSLASHGLSpl] = ACTIONS(4825), + [anon_sym_BSLASHglsdisp] = ACTIONS(4825), + [anon_sym_BSLASHglslink] = ACTIONS(4825), + [anon_sym_BSLASHglstext] = ACTIONS(4825), + [anon_sym_BSLASHGlstext] = ACTIONS(4825), + [anon_sym_BSLASHGLStext] = ACTIONS(4825), + [anon_sym_BSLASHglsfirst] = ACTIONS(4825), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4825), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4825), + [anon_sym_BSLASHglsplural] = ACTIONS(4825), + [anon_sym_BSLASHGlsplural] = ACTIONS(4825), + [anon_sym_BSLASHGLSplural] = ACTIONS(4825), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4825), + [anon_sym_BSLASHglsname] = ACTIONS(4825), + [anon_sym_BSLASHGlsname] = ACTIONS(4825), + [anon_sym_BSLASHGLSname] = ACTIONS(4825), + [anon_sym_BSLASHglssymbol] = ACTIONS(4825), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4825), + [anon_sym_BSLASHglsdesc] = ACTIONS(4825), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4825), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4825), + [anon_sym_BSLASHglsuseri] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4825), + [anon_sym_BSLASHglsuserii] = ACTIONS(4825), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4825), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4825), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4825), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4825), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4825), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4825), + [anon_sym_BSLASHglsuserv] = ACTIONS(4825), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4825), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4825), + [anon_sym_BSLASHglsuservi] = ACTIONS(4825), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4825), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4825), + [anon_sym_BSLASHnewacronym] = ACTIONS(4825), + [anon_sym_BSLASHacrshort] = ACTIONS(4825), + [anon_sym_BSLASHAcrshort] = ACTIONS(4825), + [anon_sym_BSLASHACRshort] = ACTIONS(4825), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4825), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4825), + [anon_sym_BSLASHacrlong] = ACTIONS(4825), + [anon_sym_BSLASHAcrlong] = ACTIONS(4825), + [anon_sym_BSLASHACRlong] = ACTIONS(4825), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4825), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4825), + [anon_sym_BSLASHacrfull] = ACTIONS(4825), + [anon_sym_BSLASHAcrfull] = ACTIONS(4825), + [anon_sym_BSLASHACRfull] = ACTIONS(4825), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4825), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4825), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4825), + [anon_sym_BSLASHacs] = ACTIONS(4825), + [anon_sym_BSLASHAcs] = ACTIONS(4825), + [anon_sym_BSLASHacsp] = ACTIONS(4825), + [anon_sym_BSLASHAcsp] = ACTIONS(4825), + [anon_sym_BSLASHacl] = ACTIONS(4825), + [anon_sym_BSLASHAcl] = ACTIONS(4825), + [anon_sym_BSLASHaclp] = ACTIONS(4825), + [anon_sym_BSLASHAclp] = ACTIONS(4825), + [anon_sym_BSLASHacf] = ACTIONS(4825), + [anon_sym_BSLASHAcf] = ACTIONS(4825), + [anon_sym_BSLASHacfp] = ACTIONS(4825), + [anon_sym_BSLASHAcfp] = ACTIONS(4825), + [anon_sym_BSLASHac] = ACTIONS(4825), + [anon_sym_BSLASHAc] = ACTIONS(4825), + [anon_sym_BSLASHacp] = ACTIONS(4825), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4825), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4825), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4825), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4825), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4825), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4825), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4825), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4825), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4825), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4825), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4825), + [anon_sym_BSLASHcolor] = ACTIONS(4825), + [anon_sym_BSLASHcolorbox] = ACTIONS(4825), + [anon_sym_BSLASHtextcolor] = ACTIONS(4825), + [anon_sym_BSLASHpagecolor] = ACTIONS(4825), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4825), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4825), + [anon_sym_BSLASHtext] = ACTIONS(4825), + [anon_sym_BSLASHintertext] = ACTIONS(4825), + [anon_sym_shortintertext] = ACTIONS(4825), + }, + [817] = { + [sym_brack_group_text] = STATE(854), + [sym_command_name] = ACTIONS(4857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4857), + [anon_sym_LPAREN] = ACTIONS(4855), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_LBRACK] = ACTIONS(5171), + [anon_sym_RBRACK] = ACTIONS(4855), + [anon_sym_COMMA] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4855), + [anon_sym_BSLASHpart] = ACTIONS(4857), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddpart] = ACTIONS(4857), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4855), + [anon_sym_BSLASHchapter] = ACTIONS(4857), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddchap] = ACTIONS(4857), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsection] = ACTIONS(4857), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHaddsec] = ACTIONS(4857), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubsection] = ACTIONS(4857), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4857), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4855), + [anon_sym_BSLASHparagraph] = ACTIONS(4857), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4855), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4857), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4855), + [anon_sym_BSLASHitem] = ACTIONS(4857), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4855), + [anon_sym_LBRACE] = ACTIONS(4855), + [sym_word] = ACTIONS(4857), + [sym_placeholder] = ACTIONS(4855), + [anon_sym_PLUS] = ACTIONS(4857), + [anon_sym_DASH] = ACTIONS(4857), + [anon_sym_STAR] = ACTIONS(4857), + [anon_sym_SLASH] = ACTIONS(4857), + [anon_sym_CARET] = ACTIONS(4857), + [anon_sym__] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_BANG] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_COLON] = ACTIONS(4857), + [anon_sym_SQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), + [anon_sym_BSLASHbegin] = ACTIONS(4857), + [anon_sym_BSLASHusepackage] = ACTIONS(4857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), + [anon_sym_BSLASHinclude] = ACTIONS(4857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), + [anon_sym_BSLASHinput] = ACTIONS(4857), + [anon_sym_BSLASHsubfile] = ACTIONS(4857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), + [anon_sym_BSLASHbibliography] = ACTIONS(4857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), + [anon_sym_BSLASHincludesvg] = ACTIONS(4857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), + [anon_sym_BSLASHimport] = ACTIONS(4857), + [anon_sym_BSLASHsubimport] = ACTIONS(4857), + [anon_sym_BSLASHinputfrom] = ACTIONS(4857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), + [anon_sym_BSLASHincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHcaption] = ACTIONS(4857), + [anon_sym_BSLASHcite] = ACTIONS(4857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCite] = ACTIONS(4857), + [anon_sym_BSLASHnocite] = ACTIONS(4857), + [anon_sym_BSLASHcitet] = ACTIONS(4857), + [anon_sym_BSLASHcitep] = ACTIONS(4857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteauthor] = ACTIONS(4857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitetitle] = ACTIONS(4857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteyear] = ACTIONS(4857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitedate] = ACTIONS(4857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteurl] = ACTIONS(4857), + [anon_sym_BSLASHfullcite] = ACTIONS(4857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), + [anon_sym_BSLASHcitealt] = ACTIONS(4857), + [anon_sym_BSLASHcitealp] = ACTIONS(4857), + [anon_sym_BSLASHcitetext] = ACTIONS(4857), + [anon_sym_BSLASHparencite] = ACTIONS(4857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHParencite] = ACTIONS(4857), + [anon_sym_BSLASHfootcite] = ACTIONS(4857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), + [anon_sym_BSLASHtextcite] = ACTIONS(4857), + [anon_sym_BSLASHTextcite] = ACTIONS(4857), + [anon_sym_BSLASHsmartcite] = ACTIONS(4857), + [anon_sym_BSLASHSmartcite] = ACTIONS(4857), + [anon_sym_BSLASHsupercite] = ACTIONS(4857), + [anon_sym_BSLASHautocite] = ACTIONS(4857), + [anon_sym_BSLASHAutocite] = ACTIONS(4857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHvolcite] = ACTIONS(4857), + [anon_sym_BSLASHVolcite] = ACTIONS(4857), + [anon_sym_BSLASHpvolcite] = ACTIONS(4857), + [anon_sym_BSLASHPvolcite] = ACTIONS(4857), + [anon_sym_BSLASHfvolcite] = ACTIONS(4857), + [anon_sym_BSLASHftvolcite] = ACTIONS(4857), + [anon_sym_BSLASHsvolcite] = ACTIONS(4857), + [anon_sym_BSLASHSvolcite] = ACTIONS(4857), + [anon_sym_BSLASHtvolcite] = ACTIONS(4857), + [anon_sym_BSLASHTvolcite] = ACTIONS(4857), + [anon_sym_BSLASHavolcite] = ACTIONS(4857), + [anon_sym_BSLASHAvolcite] = ACTIONS(4857), + [anon_sym_BSLASHnotecite] = ACTIONS(4857), + [anon_sym_BSLASHNotecite] = ACTIONS(4857), + [anon_sym_BSLASHpnotecite] = ACTIONS(4857), + [anon_sym_BSLASHPnotecite] = ACTIONS(4857), + [anon_sym_BSLASHfnotecite] = ACTIONS(4857), + [anon_sym_BSLASHlabel] = ACTIONS(4857), + [anon_sym_BSLASHref] = ACTIONS(4857), + [anon_sym_BSLASHeqref] = ACTIONS(4857), + [anon_sym_BSLASHvref] = ACTIONS(4857), + [anon_sym_BSLASHVref] = ACTIONS(4857), + [anon_sym_BSLASHautoref] = ACTIONS(4857), + [anon_sym_BSLASHpageref] = ACTIONS(4857), + [anon_sym_BSLASHcref] = ACTIONS(4857), + [anon_sym_BSLASHCref] = ACTIONS(4857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnameCref] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHlabelcref] = ACTIONS(4857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCrefrange] = ACTIONS(4857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnewlabel] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), + [anon_sym_BSLASHdef] = ACTIONS(4857), + [anon_sym_BSLASHlet] = ACTIONS(4857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), + [anon_sym_BSLASHgls] = ACTIONS(4857), + [anon_sym_BSLASHGls] = ACTIONS(4857), + [anon_sym_BSLASHGLS] = ACTIONS(4857), + [anon_sym_BSLASHglspl] = ACTIONS(4857), + [anon_sym_BSLASHGlspl] = ACTIONS(4857), + [anon_sym_BSLASHGLSpl] = ACTIONS(4857), + [anon_sym_BSLASHglsdisp] = ACTIONS(4857), + [anon_sym_BSLASHglslink] = ACTIONS(4857), + [anon_sym_BSLASHglstext] = ACTIONS(4857), + [anon_sym_BSLASHGlstext] = ACTIONS(4857), + [anon_sym_BSLASHGLStext] = ACTIONS(4857), + [anon_sym_BSLASHglsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), + [anon_sym_BSLASHglsplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSplural] = ACTIONS(4857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHglsname] = ACTIONS(4857), + [anon_sym_BSLASHGlsname] = ACTIONS(4857), + [anon_sym_BSLASHGLSname] = ACTIONS(4857), + [anon_sym_BSLASHglssymbol] = ACTIONS(4857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), + [anon_sym_BSLASHglsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), + [anon_sym_BSLASHglsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), + [anon_sym_BSLASHglsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), + [anon_sym_BSLASHglsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), + [anon_sym_BSLASHglsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), + [anon_sym_BSLASHnewacronym] = ACTIONS(4857), + [anon_sym_BSLASHacrshort] = ACTIONS(4857), + [anon_sym_BSLASHAcrshort] = ACTIONS(4857), + [anon_sym_BSLASHACRshort] = ACTIONS(4857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), + [anon_sym_BSLASHacrlong] = ACTIONS(4857), + [anon_sym_BSLASHAcrlong] = ACTIONS(4857), + [anon_sym_BSLASHACRlong] = ACTIONS(4857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), + [anon_sym_BSLASHacrfull] = ACTIONS(4857), + [anon_sym_BSLASHAcrfull] = ACTIONS(4857), + [anon_sym_BSLASHACRfull] = ACTIONS(4857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), + [anon_sym_BSLASHacs] = ACTIONS(4857), + [anon_sym_BSLASHAcs] = ACTIONS(4857), + [anon_sym_BSLASHacsp] = ACTIONS(4857), + [anon_sym_BSLASHAcsp] = ACTIONS(4857), + [anon_sym_BSLASHacl] = ACTIONS(4857), + [anon_sym_BSLASHAcl] = ACTIONS(4857), + [anon_sym_BSLASHaclp] = ACTIONS(4857), + [anon_sym_BSLASHAclp] = ACTIONS(4857), + [anon_sym_BSLASHacf] = ACTIONS(4857), + [anon_sym_BSLASHAcf] = ACTIONS(4857), + [anon_sym_BSLASHacfp] = ACTIONS(4857), + [anon_sym_BSLASHAcfp] = ACTIONS(4857), + [anon_sym_BSLASHac] = ACTIONS(4857), + [anon_sym_BSLASHAc] = ACTIONS(4857), + [anon_sym_BSLASHacp] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), + [anon_sym_BSLASHcolor] = ACTIONS(4857), + [anon_sym_BSLASHcolorbox] = ACTIONS(4857), + [anon_sym_BSLASHtextcolor] = ACTIONS(4857), + [anon_sym_BSLASHpagecolor] = ACTIONS(4857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), + [anon_sym_BSLASHtext] = ACTIONS(4857), + [anon_sym_BSLASHintertext] = ACTIONS(4857), + [anon_sym_shortintertext] = ACTIONS(4857), + }, + [818] = { + [sym_curly_group] = STATE(885), + [sym_command_name] = ACTIONS(4829), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4829), + [anon_sym_LPAREN] = ACTIONS(4827), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_RBRACK] = ACTIONS(4827), + [anon_sym_COMMA] = ACTIONS(4827), + [anon_sym_EQ] = ACTIONS(4827), + [anon_sym_BSLASHpart] = ACTIONS(4829), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddpart] = ACTIONS(4829), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4827), + [anon_sym_BSLASHchapter] = ACTIONS(4829), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddchap] = ACTIONS(4829), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsection] = ACTIONS(4829), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHaddsec] = ACTIONS(4829), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubsection] = ACTIONS(4829), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4829), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4827), + [anon_sym_BSLASHparagraph] = ACTIONS(4829), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4827), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4829), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4827), + [anon_sym_BSLASHitem] = ACTIONS(4829), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4827), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(4829), + [sym_placeholder] = ACTIONS(4827), + [anon_sym_PLUS] = ACTIONS(4829), + [anon_sym_DASH] = ACTIONS(4829), + [anon_sym_STAR] = ACTIONS(4829), + [anon_sym_SLASH] = ACTIONS(4829), + [anon_sym_CARET] = ACTIONS(4829), + [anon_sym__] = ACTIONS(4829), + [anon_sym_LT] = ACTIONS(4829), + [anon_sym_GT] = ACTIONS(4829), + [anon_sym_BANG] = ACTIONS(4829), + [anon_sym_PIPE] = ACTIONS(4829), + [anon_sym_COLON] = ACTIONS(4829), + [anon_sym_SQUOTE] = ACTIONS(4829), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4827), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(4829), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4827), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4827), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4827), + [anon_sym_BSLASHbegin] = ACTIONS(4829), + [anon_sym_BSLASHusepackage] = ACTIONS(4829), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4829), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4829), + [anon_sym_BSLASHinclude] = ACTIONS(4829), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4829), + [anon_sym_BSLASHinput] = ACTIONS(4829), + [anon_sym_BSLASHsubfile] = ACTIONS(4829), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4829), + [anon_sym_BSLASHbibliography] = ACTIONS(4829), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4829), + [anon_sym_BSLASHincludesvg] = ACTIONS(4829), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4829), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4829), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4829), + [anon_sym_BSLASHimport] = ACTIONS(4829), + [anon_sym_BSLASHsubimport] = ACTIONS(4829), + [anon_sym_BSLASHinputfrom] = ACTIONS(4829), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4829), + [anon_sym_BSLASHincludefrom] = ACTIONS(4829), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4829), + [anon_sym_BSLASHcaption] = ACTIONS(4829), + [anon_sym_BSLASHcite] = ACTIONS(4829), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCite] = ACTIONS(4829), + [anon_sym_BSLASHnocite] = ACTIONS(4829), + [anon_sym_BSLASHcitet] = ACTIONS(4829), + [anon_sym_BSLASHcitep] = ACTIONS(4829), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteauthor] = ACTIONS(4829), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4829), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitetitle] = ACTIONS(4829), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteyear] = ACTIONS(4829), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4827), + [anon_sym_BSLASHcitedate] = ACTIONS(4829), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4827), + [anon_sym_BSLASHciteurl] = ACTIONS(4829), + [anon_sym_BSLASHfullcite] = ACTIONS(4829), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4829), + [anon_sym_BSLASHcitealt] = ACTIONS(4829), + [anon_sym_BSLASHcitealp] = ACTIONS(4829), + [anon_sym_BSLASHcitetext] = ACTIONS(4829), + [anon_sym_BSLASHparencite] = ACTIONS(4829), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHParencite] = ACTIONS(4829), + [anon_sym_BSLASHfootcite] = ACTIONS(4829), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4829), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4829), + [anon_sym_BSLASHtextcite] = ACTIONS(4829), + [anon_sym_BSLASHTextcite] = ACTIONS(4829), + [anon_sym_BSLASHsmartcite] = ACTIONS(4829), + [anon_sym_BSLASHSmartcite] = ACTIONS(4829), + [anon_sym_BSLASHsupercite] = ACTIONS(4829), + [anon_sym_BSLASHautocite] = ACTIONS(4829), + [anon_sym_BSLASHAutocite] = ACTIONS(4829), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4827), + [anon_sym_BSLASHvolcite] = ACTIONS(4829), + [anon_sym_BSLASHVolcite] = ACTIONS(4829), + [anon_sym_BSLASHpvolcite] = ACTIONS(4829), + [anon_sym_BSLASHPvolcite] = ACTIONS(4829), + [anon_sym_BSLASHfvolcite] = ACTIONS(4829), + [anon_sym_BSLASHftvolcite] = ACTIONS(4829), + [anon_sym_BSLASHsvolcite] = ACTIONS(4829), + [anon_sym_BSLASHSvolcite] = ACTIONS(4829), + [anon_sym_BSLASHtvolcite] = ACTIONS(4829), + [anon_sym_BSLASHTvolcite] = ACTIONS(4829), + [anon_sym_BSLASHavolcite] = ACTIONS(4829), + [anon_sym_BSLASHAvolcite] = ACTIONS(4829), + [anon_sym_BSLASHnotecite] = ACTIONS(4829), + [anon_sym_BSLASHNotecite] = ACTIONS(4829), + [anon_sym_BSLASHpnotecite] = ACTIONS(4829), + [anon_sym_BSLASHPnotecite] = ACTIONS(4829), + [anon_sym_BSLASHfnotecite] = ACTIONS(4829), + [anon_sym_BSLASHlabel] = ACTIONS(4829), + [anon_sym_BSLASHref] = ACTIONS(4829), + [anon_sym_BSLASHeqref] = ACTIONS(4829), + [anon_sym_BSLASHvref] = ACTIONS(4829), + [anon_sym_BSLASHVref] = ACTIONS(4829), + [anon_sym_BSLASHautoref] = ACTIONS(4829), + [anon_sym_BSLASHpageref] = ACTIONS(4829), + [anon_sym_BSLASHcref] = ACTIONS(4829), + [anon_sym_BSLASHCref] = ACTIONS(4829), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4827), + [anon_sym_BSLASHnamecref] = ACTIONS(4829), + [anon_sym_BSLASHnameCref] = ACTIONS(4829), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4829), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4829), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4829), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4829), + [anon_sym_BSLASHlabelcref] = ACTIONS(4829), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4829), + [anon_sym_BSLASHcrefrange] = ACTIONS(4829), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4827), + [anon_sym_BSLASHCrefrange] = ACTIONS(4829), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4827), + [anon_sym_BSLASHnewlabel] = ACTIONS(4829), + [anon_sym_BSLASHnewcommand] = ACTIONS(4829), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4829), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4829), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4827), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4829), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4827), + [anon_sym_BSLASHdef] = ACTIONS(4829), + [anon_sym_BSLASHlet] = ACTIONS(4829), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4829), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4829), + [anon_sym_BSLASHgls] = ACTIONS(4829), + [anon_sym_BSLASHGls] = ACTIONS(4829), + [anon_sym_BSLASHGLS] = ACTIONS(4829), + [anon_sym_BSLASHglspl] = ACTIONS(4829), + [anon_sym_BSLASHGlspl] = ACTIONS(4829), + [anon_sym_BSLASHGLSpl] = ACTIONS(4829), + [anon_sym_BSLASHglsdisp] = ACTIONS(4829), + [anon_sym_BSLASHglslink] = ACTIONS(4829), + [anon_sym_BSLASHglstext] = ACTIONS(4829), + [anon_sym_BSLASHGlstext] = ACTIONS(4829), + [anon_sym_BSLASHGLStext] = ACTIONS(4829), + [anon_sym_BSLASHglsfirst] = ACTIONS(4829), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4829), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4829), + [anon_sym_BSLASHglsplural] = ACTIONS(4829), + [anon_sym_BSLASHGlsplural] = ACTIONS(4829), + [anon_sym_BSLASHGLSplural] = ACTIONS(4829), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4829), + [anon_sym_BSLASHglsname] = ACTIONS(4829), + [anon_sym_BSLASHGlsname] = ACTIONS(4829), + [anon_sym_BSLASHGLSname] = ACTIONS(4829), + [anon_sym_BSLASHglssymbol] = ACTIONS(4829), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4829), + [anon_sym_BSLASHglsdesc] = ACTIONS(4829), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4829), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4829), + [anon_sym_BSLASHglsuseri] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4829), + [anon_sym_BSLASHglsuserii] = ACTIONS(4829), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4829), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4829), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4829), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4829), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4829), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4829), + [anon_sym_BSLASHglsuserv] = ACTIONS(4829), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4829), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4829), + [anon_sym_BSLASHglsuservi] = ACTIONS(4829), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4829), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4829), + [anon_sym_BSLASHnewacronym] = ACTIONS(4829), + [anon_sym_BSLASHacrshort] = ACTIONS(4829), + [anon_sym_BSLASHAcrshort] = ACTIONS(4829), + [anon_sym_BSLASHACRshort] = ACTIONS(4829), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4829), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4829), + [anon_sym_BSLASHacrlong] = ACTIONS(4829), + [anon_sym_BSLASHAcrlong] = ACTIONS(4829), + [anon_sym_BSLASHACRlong] = ACTIONS(4829), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4829), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4829), + [anon_sym_BSLASHacrfull] = ACTIONS(4829), + [anon_sym_BSLASHAcrfull] = ACTIONS(4829), + [anon_sym_BSLASHACRfull] = ACTIONS(4829), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4829), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4829), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4829), + [anon_sym_BSLASHacs] = ACTIONS(4829), + [anon_sym_BSLASHAcs] = ACTIONS(4829), + [anon_sym_BSLASHacsp] = ACTIONS(4829), + [anon_sym_BSLASHAcsp] = ACTIONS(4829), + [anon_sym_BSLASHacl] = ACTIONS(4829), + [anon_sym_BSLASHAcl] = ACTIONS(4829), + [anon_sym_BSLASHaclp] = ACTIONS(4829), + [anon_sym_BSLASHAclp] = ACTIONS(4829), + [anon_sym_BSLASHacf] = ACTIONS(4829), + [anon_sym_BSLASHAcf] = ACTIONS(4829), + [anon_sym_BSLASHacfp] = ACTIONS(4829), + [anon_sym_BSLASHAcfp] = ACTIONS(4829), + [anon_sym_BSLASHac] = ACTIONS(4829), + [anon_sym_BSLASHAc] = ACTIONS(4829), + [anon_sym_BSLASHacp] = ACTIONS(4829), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4829), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4829), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4829), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4829), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4829), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4829), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4829), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4829), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4829), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4829), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4829), + [anon_sym_BSLASHcolor] = ACTIONS(4829), + [anon_sym_BSLASHcolorbox] = ACTIONS(4829), + [anon_sym_BSLASHtextcolor] = ACTIONS(4829), + [anon_sym_BSLASHpagecolor] = ACTIONS(4829), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4829), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4829), + [anon_sym_BSLASHtext] = ACTIONS(4829), + [anon_sym_BSLASHintertext] = ACTIONS(4829), + [anon_sym_shortintertext] = ACTIONS(4829), + }, + [819] = { + [sym_curly_group] = STATE(886), + [sym_command_name] = ACTIONS(4833), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4833), + [anon_sym_LPAREN] = ACTIONS(4831), + [anon_sym_RPAREN] = ACTIONS(4831), + [anon_sym_LBRACK] = ACTIONS(4831), + [anon_sym_RBRACK] = ACTIONS(4831), + [anon_sym_COMMA] = ACTIONS(4831), + [anon_sym_EQ] = ACTIONS(4831), + [anon_sym_BSLASHpart] = ACTIONS(4833), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddpart] = ACTIONS(4833), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4831), + [anon_sym_BSLASHchapter] = ACTIONS(4833), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddchap] = ACTIONS(4833), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsection] = ACTIONS(4833), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHaddsec] = ACTIONS(4833), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubsection] = ACTIONS(4833), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4833), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4831), + [anon_sym_BSLASHparagraph] = ACTIONS(4833), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4831), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4833), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4831), + [anon_sym_BSLASHitem] = ACTIONS(4833), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4831), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(4833), + [sym_placeholder] = ACTIONS(4831), + [anon_sym_PLUS] = ACTIONS(4833), + [anon_sym_DASH] = ACTIONS(4833), + [anon_sym_STAR] = ACTIONS(4833), + [anon_sym_SLASH] = ACTIONS(4833), + [anon_sym_CARET] = ACTIONS(4833), + [anon_sym__] = ACTIONS(4833), + [anon_sym_LT] = ACTIONS(4833), + [anon_sym_GT] = ACTIONS(4833), + [anon_sym_BANG] = ACTIONS(4833), + [anon_sym_PIPE] = ACTIONS(4833), + [anon_sym_COLON] = ACTIONS(4833), + [anon_sym_SQUOTE] = ACTIONS(4833), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4831), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4831), + [anon_sym_DOLLAR] = ACTIONS(4833), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4831), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4831), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4831), + [anon_sym_BSLASHbegin] = ACTIONS(4833), + [anon_sym_BSLASHusepackage] = ACTIONS(4833), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4833), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4833), + [anon_sym_BSLASHinclude] = ACTIONS(4833), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4833), + [anon_sym_BSLASHinput] = ACTIONS(4833), + [anon_sym_BSLASHsubfile] = ACTIONS(4833), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4833), + [anon_sym_BSLASHbibliography] = ACTIONS(4833), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4833), + [anon_sym_BSLASHincludesvg] = ACTIONS(4833), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4833), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4833), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4833), + [anon_sym_BSLASHimport] = ACTIONS(4833), + [anon_sym_BSLASHsubimport] = ACTIONS(4833), + [anon_sym_BSLASHinputfrom] = ACTIONS(4833), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4833), + [anon_sym_BSLASHincludefrom] = ACTIONS(4833), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4833), + [anon_sym_BSLASHcaption] = ACTIONS(4833), + [anon_sym_BSLASHcite] = ACTIONS(4833), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCite] = ACTIONS(4833), + [anon_sym_BSLASHnocite] = ACTIONS(4833), + [anon_sym_BSLASHcitet] = ACTIONS(4833), + [anon_sym_BSLASHcitep] = ACTIONS(4833), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteauthor] = ACTIONS(4833), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4833), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitetitle] = ACTIONS(4833), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteyear] = ACTIONS(4833), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4831), + [anon_sym_BSLASHcitedate] = ACTIONS(4833), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4831), + [anon_sym_BSLASHciteurl] = ACTIONS(4833), + [anon_sym_BSLASHfullcite] = ACTIONS(4833), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4833), + [anon_sym_BSLASHcitealt] = ACTIONS(4833), + [anon_sym_BSLASHcitealp] = ACTIONS(4833), + [anon_sym_BSLASHcitetext] = ACTIONS(4833), + [anon_sym_BSLASHparencite] = ACTIONS(4833), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHParencite] = ACTIONS(4833), + [anon_sym_BSLASHfootcite] = ACTIONS(4833), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4833), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4833), + [anon_sym_BSLASHtextcite] = ACTIONS(4833), + [anon_sym_BSLASHTextcite] = ACTIONS(4833), + [anon_sym_BSLASHsmartcite] = ACTIONS(4833), + [anon_sym_BSLASHSmartcite] = ACTIONS(4833), + [anon_sym_BSLASHsupercite] = ACTIONS(4833), + [anon_sym_BSLASHautocite] = ACTIONS(4833), + [anon_sym_BSLASHAutocite] = ACTIONS(4833), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4831), + [anon_sym_BSLASHvolcite] = ACTIONS(4833), + [anon_sym_BSLASHVolcite] = ACTIONS(4833), + [anon_sym_BSLASHpvolcite] = ACTIONS(4833), + [anon_sym_BSLASHPvolcite] = ACTIONS(4833), + [anon_sym_BSLASHfvolcite] = ACTIONS(4833), + [anon_sym_BSLASHftvolcite] = ACTIONS(4833), + [anon_sym_BSLASHsvolcite] = ACTIONS(4833), + [anon_sym_BSLASHSvolcite] = ACTIONS(4833), + [anon_sym_BSLASHtvolcite] = ACTIONS(4833), + [anon_sym_BSLASHTvolcite] = ACTIONS(4833), + [anon_sym_BSLASHavolcite] = ACTIONS(4833), + [anon_sym_BSLASHAvolcite] = ACTIONS(4833), + [anon_sym_BSLASHnotecite] = ACTIONS(4833), + [anon_sym_BSLASHNotecite] = ACTIONS(4833), + [anon_sym_BSLASHpnotecite] = ACTIONS(4833), + [anon_sym_BSLASHPnotecite] = ACTIONS(4833), + [anon_sym_BSLASHfnotecite] = ACTIONS(4833), + [anon_sym_BSLASHlabel] = ACTIONS(4833), + [anon_sym_BSLASHref] = ACTIONS(4833), + [anon_sym_BSLASHeqref] = ACTIONS(4833), + [anon_sym_BSLASHvref] = ACTIONS(4833), + [anon_sym_BSLASHVref] = ACTIONS(4833), + [anon_sym_BSLASHautoref] = ACTIONS(4833), + [anon_sym_BSLASHpageref] = ACTIONS(4833), + [anon_sym_BSLASHcref] = ACTIONS(4833), + [anon_sym_BSLASHCref] = ACTIONS(4833), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4831), + [anon_sym_BSLASHnamecref] = ACTIONS(4833), + [anon_sym_BSLASHnameCref] = ACTIONS(4833), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4833), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4833), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4833), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4833), + [anon_sym_BSLASHlabelcref] = ACTIONS(4833), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4833), + [anon_sym_BSLASHcrefrange] = ACTIONS(4833), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4831), + [anon_sym_BSLASHCrefrange] = ACTIONS(4833), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4831), + [anon_sym_BSLASHnewlabel] = ACTIONS(4833), + [anon_sym_BSLASHnewcommand] = ACTIONS(4833), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4833), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4833), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4831), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4833), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4831), + [anon_sym_BSLASHdef] = ACTIONS(4833), + [anon_sym_BSLASHlet] = ACTIONS(4833), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4833), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4833), + [anon_sym_BSLASHgls] = ACTIONS(4833), + [anon_sym_BSLASHGls] = ACTIONS(4833), + [anon_sym_BSLASHGLS] = ACTIONS(4833), + [anon_sym_BSLASHglspl] = ACTIONS(4833), + [anon_sym_BSLASHGlspl] = ACTIONS(4833), + [anon_sym_BSLASHGLSpl] = ACTIONS(4833), + [anon_sym_BSLASHglsdisp] = ACTIONS(4833), + [anon_sym_BSLASHglslink] = ACTIONS(4833), + [anon_sym_BSLASHglstext] = ACTIONS(4833), + [anon_sym_BSLASHGlstext] = ACTIONS(4833), + [anon_sym_BSLASHGLStext] = ACTIONS(4833), + [anon_sym_BSLASHglsfirst] = ACTIONS(4833), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4833), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4833), + [anon_sym_BSLASHglsplural] = ACTIONS(4833), + [anon_sym_BSLASHGlsplural] = ACTIONS(4833), + [anon_sym_BSLASHGLSplural] = ACTIONS(4833), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4833), + [anon_sym_BSLASHglsname] = ACTIONS(4833), + [anon_sym_BSLASHGlsname] = ACTIONS(4833), + [anon_sym_BSLASHGLSname] = ACTIONS(4833), + [anon_sym_BSLASHglssymbol] = ACTIONS(4833), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4833), + [anon_sym_BSLASHglsdesc] = ACTIONS(4833), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4833), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4833), + [anon_sym_BSLASHglsuseri] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4833), + [anon_sym_BSLASHglsuserii] = ACTIONS(4833), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4833), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4833), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4833), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4833), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4833), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4833), + [anon_sym_BSLASHglsuserv] = ACTIONS(4833), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4833), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4833), + [anon_sym_BSLASHglsuservi] = ACTIONS(4833), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4833), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4833), + [anon_sym_BSLASHnewacronym] = ACTIONS(4833), + [anon_sym_BSLASHacrshort] = ACTIONS(4833), + [anon_sym_BSLASHAcrshort] = ACTIONS(4833), + [anon_sym_BSLASHACRshort] = ACTIONS(4833), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4833), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4833), + [anon_sym_BSLASHacrlong] = ACTIONS(4833), + [anon_sym_BSLASHAcrlong] = ACTIONS(4833), + [anon_sym_BSLASHACRlong] = ACTIONS(4833), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4833), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4833), + [anon_sym_BSLASHacrfull] = ACTIONS(4833), + [anon_sym_BSLASHAcrfull] = ACTIONS(4833), + [anon_sym_BSLASHACRfull] = ACTIONS(4833), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4833), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4833), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4833), + [anon_sym_BSLASHacs] = ACTIONS(4833), + [anon_sym_BSLASHAcs] = ACTIONS(4833), + [anon_sym_BSLASHacsp] = ACTIONS(4833), + [anon_sym_BSLASHAcsp] = ACTIONS(4833), + [anon_sym_BSLASHacl] = ACTIONS(4833), + [anon_sym_BSLASHAcl] = ACTIONS(4833), + [anon_sym_BSLASHaclp] = ACTIONS(4833), + [anon_sym_BSLASHAclp] = ACTIONS(4833), + [anon_sym_BSLASHacf] = ACTIONS(4833), + [anon_sym_BSLASHAcf] = ACTIONS(4833), + [anon_sym_BSLASHacfp] = ACTIONS(4833), + [anon_sym_BSLASHAcfp] = ACTIONS(4833), + [anon_sym_BSLASHac] = ACTIONS(4833), + [anon_sym_BSLASHAc] = ACTIONS(4833), + [anon_sym_BSLASHacp] = ACTIONS(4833), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4833), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4833), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4833), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4833), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4833), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4833), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4833), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4833), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4833), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4833), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4833), + [anon_sym_BSLASHcolor] = ACTIONS(4833), + [anon_sym_BSLASHcolorbox] = ACTIONS(4833), + [anon_sym_BSLASHtextcolor] = ACTIONS(4833), + [anon_sym_BSLASHpagecolor] = ACTIONS(4833), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4833), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4833), + [anon_sym_BSLASHtext] = ACTIONS(4833), + [anon_sym_BSLASHintertext] = ACTIONS(4833), + [anon_sym_shortintertext] = ACTIONS(4833), + }, + [820] = { + [sym_curly_group] = STATE(887), + [sym_command_name] = ACTIONS(4837), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4837), + [anon_sym_LPAREN] = ACTIONS(4835), + [anon_sym_RPAREN] = ACTIONS(4835), + [anon_sym_LBRACK] = ACTIONS(4835), + [anon_sym_RBRACK] = ACTIONS(4835), + [anon_sym_COMMA] = ACTIONS(4835), + [anon_sym_EQ] = ACTIONS(4835), + [anon_sym_BSLASHpart] = ACTIONS(4837), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddpart] = ACTIONS(4837), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4835), + [anon_sym_BSLASHchapter] = ACTIONS(4837), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddchap] = ACTIONS(4837), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsection] = ACTIONS(4837), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHaddsec] = ACTIONS(4837), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubsection] = ACTIONS(4837), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4837), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4835), + [anon_sym_BSLASHparagraph] = ACTIONS(4837), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4835), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4837), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4835), + [anon_sym_BSLASHitem] = ACTIONS(4837), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4835), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(4837), + [sym_placeholder] = ACTIONS(4835), + [anon_sym_PLUS] = ACTIONS(4837), + [anon_sym_DASH] = ACTIONS(4837), + [anon_sym_STAR] = ACTIONS(4837), + [anon_sym_SLASH] = ACTIONS(4837), + [anon_sym_CARET] = ACTIONS(4837), + [anon_sym__] = ACTIONS(4837), + [anon_sym_LT] = ACTIONS(4837), + [anon_sym_GT] = ACTIONS(4837), + [anon_sym_BANG] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_COLON] = ACTIONS(4837), + [anon_sym_SQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4835), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4835), + [anon_sym_DOLLAR] = ACTIONS(4837), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4835), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4835), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4835), + [anon_sym_BSLASHbegin] = ACTIONS(4837), + [anon_sym_BSLASHusepackage] = ACTIONS(4837), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4837), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4837), + [anon_sym_BSLASHinclude] = ACTIONS(4837), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4837), + [anon_sym_BSLASHinput] = ACTIONS(4837), + [anon_sym_BSLASHsubfile] = ACTIONS(4837), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4837), + [anon_sym_BSLASHbibliography] = ACTIONS(4837), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4837), + [anon_sym_BSLASHincludesvg] = ACTIONS(4837), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4837), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4837), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4837), + [anon_sym_BSLASHimport] = ACTIONS(4837), + [anon_sym_BSLASHsubimport] = ACTIONS(4837), + [anon_sym_BSLASHinputfrom] = ACTIONS(4837), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4837), + [anon_sym_BSLASHincludefrom] = ACTIONS(4837), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4837), + [anon_sym_BSLASHcaption] = ACTIONS(4837), + [anon_sym_BSLASHcite] = ACTIONS(4837), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCite] = ACTIONS(4837), + [anon_sym_BSLASHnocite] = ACTIONS(4837), + [anon_sym_BSLASHcitet] = ACTIONS(4837), + [anon_sym_BSLASHcitep] = ACTIONS(4837), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteauthor] = ACTIONS(4837), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4837), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitetitle] = ACTIONS(4837), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteyear] = ACTIONS(4837), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4835), + [anon_sym_BSLASHcitedate] = ACTIONS(4837), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4835), + [anon_sym_BSLASHciteurl] = ACTIONS(4837), + [anon_sym_BSLASHfullcite] = ACTIONS(4837), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4837), + [anon_sym_BSLASHcitealt] = ACTIONS(4837), + [anon_sym_BSLASHcitealp] = ACTIONS(4837), + [anon_sym_BSLASHcitetext] = ACTIONS(4837), + [anon_sym_BSLASHparencite] = ACTIONS(4837), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHParencite] = ACTIONS(4837), + [anon_sym_BSLASHfootcite] = ACTIONS(4837), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4837), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4837), + [anon_sym_BSLASHtextcite] = ACTIONS(4837), + [anon_sym_BSLASHTextcite] = ACTIONS(4837), + [anon_sym_BSLASHsmartcite] = ACTIONS(4837), + [anon_sym_BSLASHSmartcite] = ACTIONS(4837), + [anon_sym_BSLASHsupercite] = ACTIONS(4837), + [anon_sym_BSLASHautocite] = ACTIONS(4837), + [anon_sym_BSLASHAutocite] = ACTIONS(4837), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4835), + [anon_sym_BSLASHvolcite] = ACTIONS(4837), + [anon_sym_BSLASHVolcite] = ACTIONS(4837), + [anon_sym_BSLASHpvolcite] = ACTIONS(4837), + [anon_sym_BSLASHPvolcite] = ACTIONS(4837), + [anon_sym_BSLASHfvolcite] = ACTIONS(4837), + [anon_sym_BSLASHftvolcite] = ACTIONS(4837), + [anon_sym_BSLASHsvolcite] = ACTIONS(4837), + [anon_sym_BSLASHSvolcite] = ACTIONS(4837), + [anon_sym_BSLASHtvolcite] = ACTIONS(4837), + [anon_sym_BSLASHTvolcite] = ACTIONS(4837), + [anon_sym_BSLASHavolcite] = ACTIONS(4837), + [anon_sym_BSLASHAvolcite] = ACTIONS(4837), + [anon_sym_BSLASHnotecite] = ACTIONS(4837), + [anon_sym_BSLASHNotecite] = ACTIONS(4837), + [anon_sym_BSLASHpnotecite] = ACTIONS(4837), + [anon_sym_BSLASHPnotecite] = ACTIONS(4837), + [anon_sym_BSLASHfnotecite] = ACTIONS(4837), + [anon_sym_BSLASHlabel] = ACTIONS(4837), + [anon_sym_BSLASHref] = ACTIONS(4837), + [anon_sym_BSLASHeqref] = ACTIONS(4837), + [anon_sym_BSLASHvref] = ACTIONS(4837), + [anon_sym_BSLASHVref] = ACTIONS(4837), + [anon_sym_BSLASHautoref] = ACTIONS(4837), + [anon_sym_BSLASHpageref] = ACTIONS(4837), + [anon_sym_BSLASHcref] = ACTIONS(4837), + [anon_sym_BSLASHCref] = ACTIONS(4837), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4835), + [anon_sym_BSLASHnamecref] = ACTIONS(4837), + [anon_sym_BSLASHnameCref] = ACTIONS(4837), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4837), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4837), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4837), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4837), + [anon_sym_BSLASHlabelcref] = ACTIONS(4837), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4837), + [anon_sym_BSLASHcrefrange] = ACTIONS(4837), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4835), + [anon_sym_BSLASHCrefrange] = ACTIONS(4837), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4835), + [anon_sym_BSLASHnewlabel] = ACTIONS(4837), + [anon_sym_BSLASHnewcommand] = ACTIONS(4837), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4837), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4837), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4835), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4837), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4835), + [anon_sym_BSLASHdef] = ACTIONS(4837), + [anon_sym_BSLASHlet] = ACTIONS(4837), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4837), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4837), + [anon_sym_BSLASHgls] = ACTIONS(4837), + [anon_sym_BSLASHGls] = ACTIONS(4837), + [anon_sym_BSLASHGLS] = ACTIONS(4837), + [anon_sym_BSLASHglspl] = ACTIONS(4837), + [anon_sym_BSLASHGlspl] = ACTIONS(4837), + [anon_sym_BSLASHGLSpl] = ACTIONS(4837), + [anon_sym_BSLASHglsdisp] = ACTIONS(4837), + [anon_sym_BSLASHglslink] = ACTIONS(4837), + [anon_sym_BSLASHglstext] = ACTIONS(4837), + [anon_sym_BSLASHGlstext] = ACTIONS(4837), + [anon_sym_BSLASHGLStext] = ACTIONS(4837), + [anon_sym_BSLASHglsfirst] = ACTIONS(4837), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4837), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4837), + [anon_sym_BSLASHglsplural] = ACTIONS(4837), + [anon_sym_BSLASHGlsplural] = ACTIONS(4837), + [anon_sym_BSLASHGLSplural] = ACTIONS(4837), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4837), + [anon_sym_BSLASHglsname] = ACTIONS(4837), + [anon_sym_BSLASHGlsname] = ACTIONS(4837), + [anon_sym_BSLASHGLSname] = ACTIONS(4837), + [anon_sym_BSLASHglssymbol] = ACTIONS(4837), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4837), + [anon_sym_BSLASHglsdesc] = ACTIONS(4837), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4837), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4837), + [anon_sym_BSLASHglsuseri] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4837), + [anon_sym_BSLASHglsuserii] = ACTIONS(4837), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4837), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4837), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4837), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4837), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4837), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4837), + [anon_sym_BSLASHglsuserv] = ACTIONS(4837), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4837), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4837), + [anon_sym_BSLASHglsuservi] = ACTIONS(4837), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4837), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4837), + [anon_sym_BSLASHnewacronym] = ACTIONS(4837), + [anon_sym_BSLASHacrshort] = ACTIONS(4837), + [anon_sym_BSLASHAcrshort] = ACTIONS(4837), + [anon_sym_BSLASHACRshort] = ACTIONS(4837), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4837), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4837), + [anon_sym_BSLASHacrlong] = ACTIONS(4837), + [anon_sym_BSLASHAcrlong] = ACTIONS(4837), + [anon_sym_BSLASHACRlong] = ACTIONS(4837), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4837), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4837), + [anon_sym_BSLASHacrfull] = ACTIONS(4837), + [anon_sym_BSLASHAcrfull] = ACTIONS(4837), + [anon_sym_BSLASHACRfull] = ACTIONS(4837), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4837), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4837), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4837), + [anon_sym_BSLASHacs] = ACTIONS(4837), + [anon_sym_BSLASHAcs] = ACTIONS(4837), + [anon_sym_BSLASHacsp] = ACTIONS(4837), + [anon_sym_BSLASHAcsp] = ACTIONS(4837), + [anon_sym_BSLASHacl] = ACTIONS(4837), + [anon_sym_BSLASHAcl] = ACTIONS(4837), + [anon_sym_BSLASHaclp] = ACTIONS(4837), + [anon_sym_BSLASHAclp] = ACTIONS(4837), + [anon_sym_BSLASHacf] = ACTIONS(4837), + [anon_sym_BSLASHAcf] = ACTIONS(4837), + [anon_sym_BSLASHacfp] = ACTIONS(4837), + [anon_sym_BSLASHAcfp] = ACTIONS(4837), + [anon_sym_BSLASHac] = ACTIONS(4837), + [anon_sym_BSLASHAc] = ACTIONS(4837), + [anon_sym_BSLASHacp] = ACTIONS(4837), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4837), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4837), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4837), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4837), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4837), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4837), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4837), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4837), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4837), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4837), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4837), + [anon_sym_BSLASHcolor] = ACTIONS(4837), + [anon_sym_BSLASHcolorbox] = ACTIONS(4837), + [anon_sym_BSLASHtextcolor] = ACTIONS(4837), + [anon_sym_BSLASHpagecolor] = ACTIONS(4837), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4837), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4837), + [anon_sym_BSLASHtext] = ACTIONS(4837), + [anon_sym_BSLASHintertext] = ACTIONS(4837), + [anon_sym_shortintertext] = ACTIONS(4837), + }, + [821] = { + [sym_curly_group] = STATE(888), + [sym_command_name] = ACTIONS(4841), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4841), + [anon_sym_LPAREN] = ACTIONS(4839), + [anon_sym_RPAREN] = ACTIONS(4839), + [anon_sym_LBRACK] = ACTIONS(4839), + [anon_sym_RBRACK] = ACTIONS(4839), + [anon_sym_COMMA] = ACTIONS(4839), + [anon_sym_EQ] = ACTIONS(4839), + [anon_sym_BSLASHpart] = ACTIONS(4841), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddpart] = ACTIONS(4841), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4839), + [anon_sym_BSLASHchapter] = ACTIONS(4841), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddchap] = ACTIONS(4841), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsection] = ACTIONS(4841), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHaddsec] = ACTIONS(4841), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubsection] = ACTIONS(4841), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4841), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4839), + [anon_sym_BSLASHparagraph] = ACTIONS(4841), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4839), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4841), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4839), + [anon_sym_BSLASHitem] = ACTIONS(4841), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4839), + [anon_sym_LBRACE] = ACTIONS(683), + [sym_word] = ACTIONS(4841), + [sym_placeholder] = ACTIONS(4839), + [anon_sym_PLUS] = ACTIONS(4841), + [anon_sym_DASH] = ACTIONS(4841), + [anon_sym_STAR] = ACTIONS(4841), + [anon_sym_SLASH] = ACTIONS(4841), + [anon_sym_CARET] = ACTIONS(4841), + [anon_sym__] = ACTIONS(4841), + [anon_sym_LT] = ACTIONS(4841), + [anon_sym_GT] = ACTIONS(4841), + [anon_sym_BANG] = ACTIONS(4841), + [anon_sym_PIPE] = ACTIONS(4841), + [anon_sym_COLON] = ACTIONS(4841), + [anon_sym_SQUOTE] = ACTIONS(4841), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4839), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4839), + [anon_sym_DOLLAR] = ACTIONS(4841), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4839), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4839), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4839), + [anon_sym_BSLASHbegin] = ACTIONS(4841), + [anon_sym_BSLASHusepackage] = ACTIONS(4841), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4841), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4841), + [anon_sym_BSLASHinclude] = ACTIONS(4841), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4841), + [anon_sym_BSLASHinput] = ACTIONS(4841), + [anon_sym_BSLASHsubfile] = ACTIONS(4841), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4841), + [anon_sym_BSLASHbibliography] = ACTIONS(4841), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4841), + [anon_sym_BSLASHincludesvg] = ACTIONS(4841), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4841), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4841), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4841), + [anon_sym_BSLASHimport] = ACTIONS(4841), + [anon_sym_BSLASHsubimport] = ACTIONS(4841), + [anon_sym_BSLASHinputfrom] = ACTIONS(4841), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4841), + [anon_sym_BSLASHincludefrom] = ACTIONS(4841), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4841), + [anon_sym_BSLASHcaption] = ACTIONS(4841), + [anon_sym_BSLASHcite] = ACTIONS(4841), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCite] = ACTIONS(4841), + [anon_sym_BSLASHnocite] = ACTIONS(4841), + [anon_sym_BSLASHcitet] = ACTIONS(4841), + [anon_sym_BSLASHcitep] = ACTIONS(4841), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteauthor] = ACTIONS(4841), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4841), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitetitle] = ACTIONS(4841), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteyear] = ACTIONS(4841), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4839), + [anon_sym_BSLASHcitedate] = ACTIONS(4841), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4839), + [anon_sym_BSLASHciteurl] = ACTIONS(4841), + [anon_sym_BSLASHfullcite] = ACTIONS(4841), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4841), + [anon_sym_BSLASHcitealt] = ACTIONS(4841), + [anon_sym_BSLASHcitealp] = ACTIONS(4841), + [anon_sym_BSLASHcitetext] = ACTIONS(4841), + [anon_sym_BSLASHparencite] = ACTIONS(4841), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHParencite] = ACTIONS(4841), + [anon_sym_BSLASHfootcite] = ACTIONS(4841), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4841), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4841), + [anon_sym_BSLASHtextcite] = ACTIONS(4841), + [anon_sym_BSLASHTextcite] = ACTIONS(4841), + [anon_sym_BSLASHsmartcite] = ACTIONS(4841), + [anon_sym_BSLASHSmartcite] = ACTIONS(4841), + [anon_sym_BSLASHsupercite] = ACTIONS(4841), + [anon_sym_BSLASHautocite] = ACTIONS(4841), + [anon_sym_BSLASHAutocite] = ACTIONS(4841), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4839), + [anon_sym_BSLASHvolcite] = ACTIONS(4841), + [anon_sym_BSLASHVolcite] = ACTIONS(4841), + [anon_sym_BSLASHpvolcite] = ACTIONS(4841), + [anon_sym_BSLASHPvolcite] = ACTIONS(4841), + [anon_sym_BSLASHfvolcite] = ACTIONS(4841), + [anon_sym_BSLASHftvolcite] = ACTIONS(4841), + [anon_sym_BSLASHsvolcite] = ACTIONS(4841), + [anon_sym_BSLASHSvolcite] = ACTIONS(4841), + [anon_sym_BSLASHtvolcite] = ACTIONS(4841), + [anon_sym_BSLASHTvolcite] = ACTIONS(4841), + [anon_sym_BSLASHavolcite] = ACTIONS(4841), + [anon_sym_BSLASHAvolcite] = ACTIONS(4841), + [anon_sym_BSLASHnotecite] = ACTIONS(4841), + [anon_sym_BSLASHNotecite] = ACTIONS(4841), + [anon_sym_BSLASHpnotecite] = ACTIONS(4841), + [anon_sym_BSLASHPnotecite] = ACTIONS(4841), + [anon_sym_BSLASHfnotecite] = ACTIONS(4841), + [anon_sym_BSLASHlabel] = ACTIONS(4841), + [anon_sym_BSLASHref] = ACTIONS(4841), + [anon_sym_BSLASHeqref] = ACTIONS(4841), + [anon_sym_BSLASHvref] = ACTIONS(4841), + [anon_sym_BSLASHVref] = ACTIONS(4841), + [anon_sym_BSLASHautoref] = ACTIONS(4841), + [anon_sym_BSLASHpageref] = ACTIONS(4841), + [anon_sym_BSLASHcref] = ACTIONS(4841), + [anon_sym_BSLASHCref] = ACTIONS(4841), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4839), + [anon_sym_BSLASHnamecref] = ACTIONS(4841), + [anon_sym_BSLASHnameCref] = ACTIONS(4841), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4841), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4841), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4841), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4841), + [anon_sym_BSLASHlabelcref] = ACTIONS(4841), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4841), + [anon_sym_BSLASHcrefrange] = ACTIONS(4841), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4839), + [anon_sym_BSLASHCrefrange] = ACTIONS(4841), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4839), + [anon_sym_BSLASHnewlabel] = ACTIONS(4841), + [anon_sym_BSLASHnewcommand] = ACTIONS(4841), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4841), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4841), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4839), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4841), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4839), + [anon_sym_BSLASHdef] = ACTIONS(4841), + [anon_sym_BSLASHlet] = ACTIONS(4841), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4841), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4841), + [anon_sym_BSLASHgls] = ACTIONS(4841), + [anon_sym_BSLASHGls] = ACTIONS(4841), + [anon_sym_BSLASHGLS] = ACTIONS(4841), + [anon_sym_BSLASHglspl] = ACTIONS(4841), + [anon_sym_BSLASHGlspl] = ACTIONS(4841), + [anon_sym_BSLASHGLSpl] = ACTIONS(4841), + [anon_sym_BSLASHglsdisp] = ACTIONS(4841), + [anon_sym_BSLASHglslink] = ACTIONS(4841), + [anon_sym_BSLASHglstext] = ACTIONS(4841), + [anon_sym_BSLASHGlstext] = ACTIONS(4841), + [anon_sym_BSLASHGLStext] = ACTIONS(4841), + [anon_sym_BSLASHglsfirst] = ACTIONS(4841), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4841), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4841), + [anon_sym_BSLASHglsplural] = ACTIONS(4841), + [anon_sym_BSLASHGlsplural] = ACTIONS(4841), + [anon_sym_BSLASHGLSplural] = ACTIONS(4841), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4841), + [anon_sym_BSLASHglsname] = ACTIONS(4841), + [anon_sym_BSLASHGlsname] = ACTIONS(4841), + [anon_sym_BSLASHGLSname] = ACTIONS(4841), + [anon_sym_BSLASHglssymbol] = ACTIONS(4841), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4841), + [anon_sym_BSLASHglsdesc] = ACTIONS(4841), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4841), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4841), + [anon_sym_BSLASHglsuseri] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4841), + [anon_sym_BSLASHglsuserii] = ACTIONS(4841), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4841), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4841), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4841), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4841), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4841), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4841), + [anon_sym_BSLASHglsuserv] = ACTIONS(4841), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4841), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4841), + [anon_sym_BSLASHglsuservi] = ACTIONS(4841), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4841), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4841), + [anon_sym_BSLASHnewacronym] = ACTIONS(4841), + [anon_sym_BSLASHacrshort] = ACTIONS(4841), + [anon_sym_BSLASHAcrshort] = ACTIONS(4841), + [anon_sym_BSLASHACRshort] = ACTIONS(4841), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4841), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4841), + [anon_sym_BSLASHacrlong] = ACTIONS(4841), + [anon_sym_BSLASHAcrlong] = ACTIONS(4841), + [anon_sym_BSLASHACRlong] = ACTIONS(4841), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4841), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4841), + [anon_sym_BSLASHacrfull] = ACTIONS(4841), + [anon_sym_BSLASHAcrfull] = ACTIONS(4841), + [anon_sym_BSLASHACRfull] = ACTIONS(4841), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4841), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4841), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4841), + [anon_sym_BSLASHacs] = ACTIONS(4841), + [anon_sym_BSLASHAcs] = ACTIONS(4841), + [anon_sym_BSLASHacsp] = ACTIONS(4841), + [anon_sym_BSLASHAcsp] = ACTIONS(4841), + [anon_sym_BSLASHacl] = ACTIONS(4841), + [anon_sym_BSLASHAcl] = ACTIONS(4841), + [anon_sym_BSLASHaclp] = ACTIONS(4841), + [anon_sym_BSLASHAclp] = ACTIONS(4841), + [anon_sym_BSLASHacf] = ACTIONS(4841), + [anon_sym_BSLASHAcf] = ACTIONS(4841), + [anon_sym_BSLASHacfp] = ACTIONS(4841), + [anon_sym_BSLASHAcfp] = ACTIONS(4841), + [anon_sym_BSLASHac] = ACTIONS(4841), + [anon_sym_BSLASHAc] = ACTIONS(4841), + [anon_sym_BSLASHacp] = ACTIONS(4841), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4841), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4841), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4841), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4841), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4841), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4841), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4841), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4841), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4841), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4841), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4841), + [anon_sym_BSLASHcolor] = ACTIONS(4841), + [anon_sym_BSLASHcolorbox] = ACTIONS(4841), + [anon_sym_BSLASHtextcolor] = ACTIONS(4841), + [anon_sym_BSLASHpagecolor] = ACTIONS(4841), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4841), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4841), + [anon_sym_BSLASHtext] = ACTIONS(4841), + [anon_sym_BSLASHintertext] = ACTIONS(4841), + [anon_sym_shortintertext] = ACTIONS(4841), + }, + [822] = { + [sym_command_name] = ACTIONS(5201), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_BSLASHpart] = ACTIONS(5093), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddpart] = ACTIONS(5093), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHchapter] = ACTIONS(5093), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddchap] = ACTIONS(5093), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsection] = ACTIONS(5093), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddsec] = ACTIONS(5093), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHparagraph] = ACTIONS(5093), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHitem] = ACTIONS(5093), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5091), - [anon_sym_BSLASHbegin] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHiffalse] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_BSLASHpart] = ACTIONS(5201), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddpart] = ACTIONS(5201), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), + [anon_sym_BSLASHchapter] = ACTIONS(5201), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddchap] = ACTIONS(5201), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsection] = ACTIONS(5201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddsec] = ACTIONS(5201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubsection] = ACTIONS(5201), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHparagraph] = ACTIONS(5201), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), + [anon_sym_BSLASHitem] = ACTIONS(5201), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5199), + [sym_word] = ACTIONS(5201), + [sym_placeholder] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5201), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_CARET] = ACTIONS(5201), + [anon_sym__] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_SQUOTE] = ACTIONS(5201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5199), + [anon_sym_DOLLAR] = ACTIONS(5201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), + [anon_sym_BSLASHbegin] = ACTIONS(5201), + [anon_sym_BSLASHusepackage] = ACTIONS(5201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), + [anon_sym_BSLASHinclude] = ACTIONS(5201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), + [anon_sym_BSLASHinput] = ACTIONS(5201), + [anon_sym_BSLASHsubfile] = ACTIONS(5201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), + [anon_sym_BSLASHbibliography] = ACTIONS(5201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), + [anon_sym_BSLASHincludesvg] = ACTIONS(5201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), + [anon_sym_BSLASHimport] = ACTIONS(5201), + [anon_sym_BSLASHsubimport] = ACTIONS(5201), + [anon_sym_BSLASHinputfrom] = ACTIONS(5201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), + [anon_sym_BSLASHincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHcaption] = ACTIONS(5201), + [anon_sym_BSLASHcite] = ACTIONS(5201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCite] = ACTIONS(5201), + [anon_sym_BSLASHnocite] = ACTIONS(5201), + [anon_sym_BSLASHcitet] = ACTIONS(5201), + [anon_sym_BSLASHcitep] = ACTIONS(5201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteauthor] = ACTIONS(5201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitetitle] = ACTIONS(5201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteyear] = ACTIONS(5201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitedate] = ACTIONS(5201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteurl] = ACTIONS(5201), + [anon_sym_BSLASHfullcite] = ACTIONS(5201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), + [anon_sym_BSLASHcitealt] = ACTIONS(5201), + [anon_sym_BSLASHcitealp] = ACTIONS(5201), + [anon_sym_BSLASHcitetext] = ACTIONS(5201), + [anon_sym_BSLASHparencite] = ACTIONS(5201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHParencite] = ACTIONS(5201), + [anon_sym_BSLASHfootcite] = ACTIONS(5201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), + [anon_sym_BSLASHtextcite] = ACTIONS(5201), + [anon_sym_BSLASHTextcite] = ACTIONS(5201), + [anon_sym_BSLASHsmartcite] = ACTIONS(5201), + [anon_sym_BSLASHSmartcite] = ACTIONS(5201), + [anon_sym_BSLASHsupercite] = ACTIONS(5201), + [anon_sym_BSLASHautocite] = ACTIONS(5201), + [anon_sym_BSLASHAutocite] = ACTIONS(5201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHvolcite] = ACTIONS(5201), + [anon_sym_BSLASHVolcite] = ACTIONS(5201), + [anon_sym_BSLASHpvolcite] = ACTIONS(5201), + [anon_sym_BSLASHPvolcite] = ACTIONS(5201), + [anon_sym_BSLASHfvolcite] = ACTIONS(5201), + [anon_sym_BSLASHftvolcite] = ACTIONS(5201), + [anon_sym_BSLASHsvolcite] = ACTIONS(5201), + [anon_sym_BSLASHSvolcite] = ACTIONS(5201), + [anon_sym_BSLASHtvolcite] = ACTIONS(5201), + [anon_sym_BSLASHTvolcite] = ACTIONS(5201), + [anon_sym_BSLASHavolcite] = ACTIONS(5201), + [anon_sym_BSLASHAvolcite] = ACTIONS(5201), + [anon_sym_BSLASHnotecite] = ACTIONS(5201), + [anon_sym_BSLASHNotecite] = ACTIONS(5201), + [anon_sym_BSLASHpnotecite] = ACTIONS(5201), + [anon_sym_BSLASHPnotecite] = ACTIONS(5201), + [anon_sym_BSLASHfnotecite] = ACTIONS(5201), + [anon_sym_BSLASHlabel] = ACTIONS(5201), + [anon_sym_BSLASHref] = ACTIONS(5201), + [anon_sym_BSLASHeqref] = ACTIONS(5201), + [anon_sym_BSLASHvref] = ACTIONS(5201), + [anon_sym_BSLASHVref] = ACTIONS(5201), + [anon_sym_BSLASHautoref] = ACTIONS(5201), + [anon_sym_BSLASHpageref] = ACTIONS(5201), + [anon_sym_BSLASHcref] = ACTIONS(5201), + [anon_sym_BSLASHCref] = ACTIONS(5201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnameCref] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHlabelcref] = ACTIONS(5201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCrefrange] = ACTIONS(5201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnewlabel] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), + [anon_sym_BSLASHdef] = ACTIONS(5201), + [anon_sym_BSLASHlet] = ACTIONS(5201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), + [anon_sym_BSLASHgls] = ACTIONS(5201), + [anon_sym_BSLASHGls] = ACTIONS(5201), + [anon_sym_BSLASHGLS] = ACTIONS(5201), + [anon_sym_BSLASHglspl] = ACTIONS(5201), + [anon_sym_BSLASHGlspl] = ACTIONS(5201), + [anon_sym_BSLASHGLSpl] = ACTIONS(5201), + [anon_sym_BSLASHglsdisp] = ACTIONS(5201), + [anon_sym_BSLASHglslink] = ACTIONS(5201), + [anon_sym_BSLASHglstext] = ACTIONS(5201), + [anon_sym_BSLASHGlstext] = ACTIONS(5201), + [anon_sym_BSLASHGLStext] = ACTIONS(5201), + [anon_sym_BSLASHglsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), + [anon_sym_BSLASHglsplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSplural] = ACTIONS(5201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHglsname] = ACTIONS(5201), + [anon_sym_BSLASHGlsname] = ACTIONS(5201), + [anon_sym_BSLASHGLSname] = ACTIONS(5201), + [anon_sym_BSLASHglssymbol] = ACTIONS(5201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), + [anon_sym_BSLASHglsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), + [anon_sym_BSLASHglsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), + [anon_sym_BSLASHglsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), + [anon_sym_BSLASHglsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), + [anon_sym_BSLASHglsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5201), + [anon_sym_BSLASHAcrshort] = ACTIONS(5201), + [anon_sym_BSLASHACRshort] = ACTIONS(5201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), + [anon_sym_BSLASHacrlong] = ACTIONS(5201), + [anon_sym_BSLASHAcrlong] = ACTIONS(5201), + [anon_sym_BSLASHACRlong] = ACTIONS(5201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), + [anon_sym_BSLASHacrfull] = ACTIONS(5201), + [anon_sym_BSLASHAcrfull] = ACTIONS(5201), + [anon_sym_BSLASHACRfull] = ACTIONS(5201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), + [anon_sym_BSLASHacs] = ACTIONS(5201), + [anon_sym_BSLASHAcs] = ACTIONS(5201), + [anon_sym_BSLASHacsp] = ACTIONS(5201), + [anon_sym_BSLASHAcsp] = ACTIONS(5201), + [anon_sym_BSLASHacl] = ACTIONS(5201), + [anon_sym_BSLASHAcl] = ACTIONS(5201), + [anon_sym_BSLASHaclp] = ACTIONS(5201), + [anon_sym_BSLASHAclp] = ACTIONS(5201), + [anon_sym_BSLASHacf] = ACTIONS(5201), + [anon_sym_BSLASHAcf] = ACTIONS(5201), + [anon_sym_BSLASHacfp] = ACTIONS(5201), + [anon_sym_BSLASHAcfp] = ACTIONS(5201), + [anon_sym_BSLASHac] = ACTIONS(5201), + [anon_sym_BSLASHAc] = ACTIONS(5201), + [anon_sym_BSLASHacp] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), + [anon_sym_BSLASHcolor] = ACTIONS(5201), + [anon_sym_BSLASHcolorbox] = ACTIONS(5201), + [anon_sym_BSLASHtextcolor] = ACTIONS(5201), + [anon_sym_BSLASHpagecolor] = ACTIONS(5201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), + [anon_sym_BSLASHtext] = ACTIONS(5201), + [anon_sym_BSLASHintertext] = ACTIONS(5201), + [anon_sym_shortintertext] = ACTIONS(5201), }, - [982] = { - [sym_command_name] = ACTIONS(5101), + [823] = { + [sym_command_name] = ACTIONS(5007), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_BSLASHpart] = ACTIONS(5101), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddpart] = ACTIONS(5101), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHchapter] = ACTIONS(5101), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddchap] = ACTIONS(5101), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsection] = ACTIONS(5101), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddsec] = ACTIONS(5101), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHparagraph] = ACTIONS(5101), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHitem] = ACTIONS(5101), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5099), - [anon_sym_BSLASHbegin] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), - }, - [983] = { - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_BSLASHpart] = ACTIONS(5121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddpart] = ACTIONS(5121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHchapter] = ACTIONS(5121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddchap] = ACTIONS(5121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsection] = ACTIONS(5121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddsec] = ACTIONS(5121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHparagraph] = ACTIONS(5121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHitem] = ACTIONS(5121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5119), - [anon_sym_BSLASHbegin] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), + [anon_sym_BSLASHiffalse] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_RBRACK] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_BSLASHpart] = ACTIONS(5007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddpart] = ACTIONS(5007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), + [anon_sym_BSLASHchapter] = ACTIONS(5007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddchap] = ACTIONS(5007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsection] = ACTIONS(5007), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddsec] = ACTIONS(5007), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubsection] = ACTIONS(5007), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHparagraph] = ACTIONS(5007), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), + [anon_sym_BSLASHitem] = ACTIONS(5007), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5005), + [sym_word] = ACTIONS(5007), + [sym_placeholder] = ACTIONS(5005), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym__] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_BANG] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5007), + [anon_sym_SQUOTE] = ACTIONS(5007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), + [anon_sym_DOLLAR] = ACTIONS(5007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), + [anon_sym_BSLASHbegin] = ACTIONS(5007), + [anon_sym_BSLASHend] = ACTIONS(5007), + [anon_sym_BSLASHusepackage] = ACTIONS(5007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), + [anon_sym_BSLASHinclude] = ACTIONS(5007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), + [anon_sym_BSLASHinput] = ACTIONS(5007), + [anon_sym_BSLASHsubfile] = ACTIONS(5007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), + [anon_sym_BSLASHbibliography] = ACTIONS(5007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), + [anon_sym_BSLASHincludesvg] = ACTIONS(5007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), + [anon_sym_BSLASHimport] = ACTIONS(5007), + [anon_sym_BSLASHsubimport] = ACTIONS(5007), + [anon_sym_BSLASHinputfrom] = ACTIONS(5007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), + [anon_sym_BSLASHincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHcaption] = ACTIONS(5007), + [anon_sym_BSLASHcite] = ACTIONS(5007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCite] = ACTIONS(5007), + [anon_sym_BSLASHnocite] = ACTIONS(5007), + [anon_sym_BSLASHcitet] = ACTIONS(5007), + [anon_sym_BSLASHcitep] = ACTIONS(5007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteauthor] = ACTIONS(5007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitetitle] = ACTIONS(5007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteyear] = ACTIONS(5007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitedate] = ACTIONS(5007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteurl] = ACTIONS(5007), + [anon_sym_BSLASHfullcite] = ACTIONS(5007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), + [anon_sym_BSLASHcitealt] = ACTIONS(5007), + [anon_sym_BSLASHcitealp] = ACTIONS(5007), + [anon_sym_BSLASHcitetext] = ACTIONS(5007), + [anon_sym_BSLASHparencite] = ACTIONS(5007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHParencite] = ACTIONS(5007), + [anon_sym_BSLASHfootcite] = ACTIONS(5007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), + [anon_sym_BSLASHtextcite] = ACTIONS(5007), + [anon_sym_BSLASHTextcite] = ACTIONS(5007), + [anon_sym_BSLASHsmartcite] = ACTIONS(5007), + [anon_sym_BSLASHSmartcite] = ACTIONS(5007), + [anon_sym_BSLASHsupercite] = ACTIONS(5007), + [anon_sym_BSLASHautocite] = ACTIONS(5007), + [anon_sym_BSLASHAutocite] = ACTIONS(5007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHvolcite] = ACTIONS(5007), + [anon_sym_BSLASHVolcite] = ACTIONS(5007), + [anon_sym_BSLASHpvolcite] = ACTIONS(5007), + [anon_sym_BSLASHPvolcite] = ACTIONS(5007), + [anon_sym_BSLASHfvolcite] = ACTIONS(5007), + [anon_sym_BSLASHftvolcite] = ACTIONS(5007), + [anon_sym_BSLASHsvolcite] = ACTIONS(5007), + [anon_sym_BSLASHSvolcite] = ACTIONS(5007), + [anon_sym_BSLASHtvolcite] = ACTIONS(5007), + [anon_sym_BSLASHTvolcite] = ACTIONS(5007), + [anon_sym_BSLASHavolcite] = ACTIONS(5007), + [anon_sym_BSLASHAvolcite] = ACTIONS(5007), + [anon_sym_BSLASHnotecite] = ACTIONS(5007), + [anon_sym_BSLASHNotecite] = ACTIONS(5007), + [anon_sym_BSLASHpnotecite] = ACTIONS(5007), + [anon_sym_BSLASHPnotecite] = ACTIONS(5007), + [anon_sym_BSLASHfnotecite] = ACTIONS(5007), + [anon_sym_BSLASHlabel] = ACTIONS(5007), + [anon_sym_BSLASHref] = ACTIONS(5007), + [anon_sym_BSLASHeqref] = ACTIONS(5007), + [anon_sym_BSLASHvref] = ACTIONS(5007), + [anon_sym_BSLASHVref] = ACTIONS(5007), + [anon_sym_BSLASHautoref] = ACTIONS(5007), + [anon_sym_BSLASHpageref] = ACTIONS(5007), + [anon_sym_BSLASHcref] = ACTIONS(5007), + [anon_sym_BSLASHCref] = ACTIONS(5007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnameCref] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHlabelcref] = ACTIONS(5007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCrefrange] = ACTIONS(5007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnewlabel] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), + [anon_sym_BSLASHdef] = ACTIONS(5007), + [anon_sym_BSLASHlet] = ACTIONS(5007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), + [anon_sym_BSLASHgls] = ACTIONS(5007), + [anon_sym_BSLASHGls] = ACTIONS(5007), + [anon_sym_BSLASHGLS] = ACTIONS(5007), + [anon_sym_BSLASHglspl] = ACTIONS(5007), + [anon_sym_BSLASHGlspl] = ACTIONS(5007), + [anon_sym_BSLASHGLSpl] = ACTIONS(5007), + [anon_sym_BSLASHglsdisp] = ACTIONS(5007), + [anon_sym_BSLASHglslink] = ACTIONS(5007), + [anon_sym_BSLASHglstext] = ACTIONS(5007), + [anon_sym_BSLASHGlstext] = ACTIONS(5007), + [anon_sym_BSLASHGLStext] = ACTIONS(5007), + [anon_sym_BSLASHglsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), + [anon_sym_BSLASHglsplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSplural] = ACTIONS(5007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHglsname] = ACTIONS(5007), + [anon_sym_BSLASHGlsname] = ACTIONS(5007), + [anon_sym_BSLASHGLSname] = ACTIONS(5007), + [anon_sym_BSLASHglssymbol] = ACTIONS(5007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), + [anon_sym_BSLASHglsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), + [anon_sym_BSLASHglsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), + [anon_sym_BSLASHglsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), + [anon_sym_BSLASHglsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), + [anon_sym_BSLASHglsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), + [anon_sym_BSLASHnewacronym] = ACTIONS(5007), + [anon_sym_BSLASHacrshort] = ACTIONS(5007), + [anon_sym_BSLASHAcrshort] = ACTIONS(5007), + [anon_sym_BSLASHACRshort] = ACTIONS(5007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), + [anon_sym_BSLASHacrlong] = ACTIONS(5007), + [anon_sym_BSLASHAcrlong] = ACTIONS(5007), + [anon_sym_BSLASHACRlong] = ACTIONS(5007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), + [anon_sym_BSLASHacrfull] = ACTIONS(5007), + [anon_sym_BSLASHAcrfull] = ACTIONS(5007), + [anon_sym_BSLASHACRfull] = ACTIONS(5007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), + [anon_sym_BSLASHacs] = ACTIONS(5007), + [anon_sym_BSLASHAcs] = ACTIONS(5007), + [anon_sym_BSLASHacsp] = ACTIONS(5007), + [anon_sym_BSLASHAcsp] = ACTIONS(5007), + [anon_sym_BSLASHacl] = ACTIONS(5007), + [anon_sym_BSLASHAcl] = ACTIONS(5007), + [anon_sym_BSLASHaclp] = ACTIONS(5007), + [anon_sym_BSLASHAclp] = ACTIONS(5007), + [anon_sym_BSLASHacf] = ACTIONS(5007), + [anon_sym_BSLASHAcf] = ACTIONS(5007), + [anon_sym_BSLASHacfp] = ACTIONS(5007), + [anon_sym_BSLASHAcfp] = ACTIONS(5007), + [anon_sym_BSLASHac] = ACTIONS(5007), + [anon_sym_BSLASHAc] = ACTIONS(5007), + [anon_sym_BSLASHacp] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), + [anon_sym_BSLASHcolor] = ACTIONS(5007), + [anon_sym_BSLASHcolorbox] = ACTIONS(5007), + [anon_sym_BSLASHtextcolor] = ACTIONS(5007), + [anon_sym_BSLASHpagecolor] = ACTIONS(5007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), + [anon_sym_BSLASHtext] = ACTIONS(5007), + [anon_sym_BSLASHintertext] = ACTIONS(5007), + [anon_sym_shortintertext] = ACTIONS(5007), }, - [984] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_BSLASHpart] = ACTIONS(5175), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddpart] = ACTIONS(5175), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHchapter] = ACTIONS(5175), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddchap] = ACTIONS(5175), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsection] = ACTIONS(5175), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddsec] = ACTIONS(5175), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHparagraph] = ACTIONS(5175), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHitem] = ACTIONS(5175), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5173), - [anon_sym_BSLASHbegin] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), + [824] = { + [sym_command_name] = ACTIONS(5131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_BSLASHpart] = ACTIONS(5131), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddpart] = ACTIONS(5131), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5129), + [anon_sym_BSLASHchapter] = ACTIONS(5131), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddchap] = ACTIONS(5131), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsection] = ACTIONS(5131), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddsec] = ACTIONS(5131), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubsection] = ACTIONS(5131), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5131), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHparagraph] = ACTIONS(5131), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5131), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5129), + [anon_sym_BSLASHitem] = ACTIONS(5131), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5129), + [sym_word] = ACTIONS(5131), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5129), + [anon_sym_DOLLAR] = ACTIONS(5131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5129), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5129), + [anon_sym_BSLASHbegin] = ACTIONS(5131), + [anon_sym_BSLASHusepackage] = ACTIONS(5131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5131), + [anon_sym_BSLASHinclude] = ACTIONS(5131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5131), + [anon_sym_BSLASHinput] = ACTIONS(5131), + [anon_sym_BSLASHsubfile] = ACTIONS(5131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5131), + [anon_sym_BSLASHbibliography] = ACTIONS(5131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5131), + [anon_sym_BSLASHincludesvg] = ACTIONS(5131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5131), + [anon_sym_BSLASHimport] = ACTIONS(5131), + [anon_sym_BSLASHsubimport] = ACTIONS(5131), + [anon_sym_BSLASHinputfrom] = ACTIONS(5131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5131), + [anon_sym_BSLASHincludefrom] = ACTIONS(5131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5131), + [anon_sym_BSLASHcaption] = ACTIONS(5131), + [anon_sym_BSLASHcite] = ACTIONS(5131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCite] = ACTIONS(5131), + [anon_sym_BSLASHnocite] = ACTIONS(5131), + [anon_sym_BSLASHcitet] = ACTIONS(5131), + [anon_sym_BSLASHcitep] = ACTIONS(5131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteauthor] = ACTIONS(5131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitetitle] = ACTIONS(5131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteyear] = ACTIONS(5131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitedate] = ACTIONS(5131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteurl] = ACTIONS(5131), + [anon_sym_BSLASHfullcite] = ACTIONS(5131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5131), + [anon_sym_BSLASHcitealt] = ACTIONS(5131), + [anon_sym_BSLASHcitealp] = ACTIONS(5131), + [anon_sym_BSLASHcitetext] = ACTIONS(5131), + [anon_sym_BSLASHparencite] = ACTIONS(5131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHParencite] = ACTIONS(5131), + [anon_sym_BSLASHfootcite] = ACTIONS(5131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5131), + [anon_sym_BSLASHtextcite] = ACTIONS(5131), + [anon_sym_BSLASHTextcite] = ACTIONS(5131), + [anon_sym_BSLASHsmartcite] = ACTIONS(5131), + [anon_sym_BSLASHSmartcite] = ACTIONS(5131), + [anon_sym_BSLASHsupercite] = ACTIONS(5131), + [anon_sym_BSLASHautocite] = ACTIONS(5131), + [anon_sym_BSLASHAutocite] = ACTIONS(5131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHvolcite] = ACTIONS(5131), + [anon_sym_BSLASHVolcite] = ACTIONS(5131), + [anon_sym_BSLASHpvolcite] = ACTIONS(5131), + [anon_sym_BSLASHPvolcite] = ACTIONS(5131), + [anon_sym_BSLASHfvolcite] = ACTIONS(5131), + [anon_sym_BSLASHftvolcite] = ACTIONS(5131), + [anon_sym_BSLASHsvolcite] = ACTIONS(5131), + [anon_sym_BSLASHSvolcite] = ACTIONS(5131), + [anon_sym_BSLASHtvolcite] = ACTIONS(5131), + [anon_sym_BSLASHTvolcite] = ACTIONS(5131), + [anon_sym_BSLASHavolcite] = ACTIONS(5131), + [anon_sym_BSLASHAvolcite] = ACTIONS(5131), + [anon_sym_BSLASHnotecite] = ACTIONS(5131), + [anon_sym_BSLASHNotecite] = ACTIONS(5131), + [anon_sym_BSLASHpnotecite] = ACTIONS(5131), + [anon_sym_BSLASHPnotecite] = ACTIONS(5131), + [anon_sym_BSLASHfnotecite] = ACTIONS(5131), + [anon_sym_BSLASHlabel] = ACTIONS(5131), + [anon_sym_BSLASHref] = ACTIONS(5131), + [anon_sym_BSLASHeqref] = ACTIONS(5131), + [anon_sym_BSLASHvref] = ACTIONS(5131), + [anon_sym_BSLASHVref] = ACTIONS(5131), + [anon_sym_BSLASHautoref] = ACTIONS(5131), + [anon_sym_BSLASHpageref] = ACTIONS(5131), + [anon_sym_BSLASHcref] = ACTIONS(5131), + [anon_sym_BSLASHCref] = ACTIONS(5131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5129), + [anon_sym_BSLASHnamecref] = ACTIONS(5131), + [anon_sym_BSLASHnameCref] = ACTIONS(5131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5131), + [anon_sym_BSLASHlabelcref] = ACTIONS(5131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5131), + [anon_sym_BSLASHcrefrange] = ACTIONS(5131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCrefrange] = ACTIONS(5131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5129), + [anon_sym_BSLASHnewlabel] = ACTIONS(5131), + [anon_sym_BSLASHnewcommand] = ACTIONS(5131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5129), + [anon_sym_BSLASHdef] = ACTIONS(5131), + [anon_sym_BSLASHlet] = ACTIONS(5131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5131), + [anon_sym_BSLASHgls] = ACTIONS(5131), + [anon_sym_BSLASHGls] = ACTIONS(5131), + [anon_sym_BSLASHGLS] = ACTIONS(5131), + [anon_sym_BSLASHglspl] = ACTIONS(5131), + [anon_sym_BSLASHGlspl] = ACTIONS(5131), + [anon_sym_BSLASHGLSpl] = ACTIONS(5131), + [anon_sym_BSLASHglsdisp] = ACTIONS(5131), + [anon_sym_BSLASHglslink] = ACTIONS(5131), + [anon_sym_BSLASHglstext] = ACTIONS(5131), + [anon_sym_BSLASHGlstext] = ACTIONS(5131), + [anon_sym_BSLASHGLStext] = ACTIONS(5131), + [anon_sym_BSLASHglsfirst] = ACTIONS(5131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5131), + [anon_sym_BSLASHglsplural] = ACTIONS(5131), + [anon_sym_BSLASHGlsplural] = ACTIONS(5131), + [anon_sym_BSLASHGLSplural] = ACTIONS(5131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHglsname] = ACTIONS(5131), + [anon_sym_BSLASHGlsname] = ACTIONS(5131), + [anon_sym_BSLASHGLSname] = ACTIONS(5131), + [anon_sym_BSLASHglssymbol] = ACTIONS(5131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5131), + [anon_sym_BSLASHglsdesc] = ACTIONS(5131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5131), + [anon_sym_BSLASHglsuseri] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5131), + [anon_sym_BSLASHglsuserii] = ACTIONS(5131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5131), + [anon_sym_BSLASHglsuserv] = ACTIONS(5131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5131), + [anon_sym_BSLASHglsuservi] = ACTIONS(5131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5131), + [anon_sym_BSLASHnewacronym] = ACTIONS(5131), + [anon_sym_BSLASHacrshort] = ACTIONS(5131), + [anon_sym_BSLASHAcrshort] = ACTIONS(5131), + [anon_sym_BSLASHACRshort] = ACTIONS(5131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5131), + [anon_sym_BSLASHacrlong] = ACTIONS(5131), + [anon_sym_BSLASHAcrlong] = ACTIONS(5131), + [anon_sym_BSLASHACRlong] = ACTIONS(5131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5131), + [anon_sym_BSLASHacrfull] = ACTIONS(5131), + [anon_sym_BSLASHAcrfull] = ACTIONS(5131), + [anon_sym_BSLASHACRfull] = ACTIONS(5131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5131), + [anon_sym_BSLASHacs] = ACTIONS(5131), + [anon_sym_BSLASHAcs] = ACTIONS(5131), + [anon_sym_BSLASHacsp] = ACTIONS(5131), + [anon_sym_BSLASHAcsp] = ACTIONS(5131), + [anon_sym_BSLASHacl] = ACTIONS(5131), + [anon_sym_BSLASHAcl] = ACTIONS(5131), + [anon_sym_BSLASHaclp] = ACTIONS(5131), + [anon_sym_BSLASHAclp] = ACTIONS(5131), + [anon_sym_BSLASHacf] = ACTIONS(5131), + [anon_sym_BSLASHAcf] = ACTIONS(5131), + [anon_sym_BSLASHacfp] = ACTIONS(5131), + [anon_sym_BSLASHAcfp] = ACTIONS(5131), + [anon_sym_BSLASHac] = ACTIONS(5131), + [anon_sym_BSLASHAc] = ACTIONS(5131), + [anon_sym_BSLASHacp] = ACTIONS(5131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5131), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5131), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5131), + [anon_sym_BSLASHcolor] = ACTIONS(5131), + [anon_sym_BSLASHcolorbox] = ACTIONS(5131), + [anon_sym_BSLASHtextcolor] = ACTIONS(5131), + [anon_sym_BSLASHpagecolor] = ACTIONS(5131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5131), + [anon_sym_BSLASHtext] = ACTIONS(5131), + [anon_sym_BSLASHintertext] = ACTIONS(5131), + [anon_sym_shortintertext] = ACTIONS(5131), }, - [985] = { - [sym_command_name] = ACTIONS(5125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_BSLASHpart] = ACTIONS(5125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddpart] = ACTIONS(5125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHchapter] = ACTIONS(5125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddchap] = ACTIONS(5125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsection] = ACTIONS(5125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddsec] = ACTIONS(5125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHparagraph] = ACTIONS(5125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHitem] = ACTIONS(5125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5123), - [anon_sym_BSLASHbegin] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), + [825] = { + [sym_command_name] = ACTIONS(4935), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4935), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_RPAREN] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_RBRACK] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_EQ] = ACTIONS(4933), + [anon_sym_BSLASHpart] = ACTIONS(4935), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddpart] = ACTIONS(4935), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4933), + [anon_sym_BSLASHchapter] = ACTIONS(4935), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddchap] = ACTIONS(4935), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsection] = ACTIONS(4935), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddsec] = ACTIONS(4935), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubsection] = ACTIONS(4935), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4935), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHparagraph] = ACTIONS(4935), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4935), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4933), + [anon_sym_BSLASHitem] = ACTIONS(4935), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4933), + [sym_word] = ACTIONS(4935), + [sym_placeholder] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4935), + [anon_sym_DASH] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4935), + [anon_sym_SLASH] = ACTIONS(4935), + [anon_sym_CARET] = ACTIONS(4935), + [anon_sym__] = ACTIONS(4935), + [anon_sym_LT] = ACTIONS(4935), + [anon_sym_GT] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4935), + [anon_sym_PIPE] = ACTIONS(4935), + [anon_sym_COLON] = ACTIONS(4935), + [anon_sym_SQUOTE] = ACTIONS(4935), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4933), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4933), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4933), + [anon_sym_DOLLAR] = ACTIONS(4935), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4933), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4933), + [anon_sym_BSLASHbegin] = ACTIONS(4935), + [anon_sym_BSLASHusepackage] = ACTIONS(4935), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4935), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4935), + [anon_sym_BSLASHinclude] = ACTIONS(4935), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4935), + [anon_sym_BSLASHinput] = ACTIONS(4935), + [anon_sym_BSLASHsubfile] = ACTIONS(4935), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4935), + [anon_sym_BSLASHbibliography] = ACTIONS(4935), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4935), + [anon_sym_BSLASHincludesvg] = ACTIONS(4935), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4935), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4935), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4935), + [anon_sym_BSLASHimport] = ACTIONS(4935), + [anon_sym_BSLASHsubimport] = ACTIONS(4935), + [anon_sym_BSLASHinputfrom] = ACTIONS(4935), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4935), + [anon_sym_BSLASHincludefrom] = ACTIONS(4935), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4935), + [anon_sym_BSLASHcaption] = ACTIONS(4935), + [anon_sym_BSLASHcite] = ACTIONS(4935), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCite] = ACTIONS(4935), + [anon_sym_BSLASHnocite] = ACTIONS(4935), + [anon_sym_BSLASHcitet] = ACTIONS(4935), + [anon_sym_BSLASHcitep] = ACTIONS(4935), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteauthor] = ACTIONS(4935), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4935), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitetitle] = ACTIONS(4935), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteyear] = ACTIONS(4935), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitedate] = ACTIONS(4935), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteurl] = ACTIONS(4935), + [anon_sym_BSLASHfullcite] = ACTIONS(4935), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4935), + [anon_sym_BSLASHcitealt] = ACTIONS(4935), + [anon_sym_BSLASHcitealp] = ACTIONS(4935), + [anon_sym_BSLASHcitetext] = ACTIONS(4935), + [anon_sym_BSLASHparencite] = ACTIONS(4935), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHParencite] = ACTIONS(4935), + [anon_sym_BSLASHfootcite] = ACTIONS(4935), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4935), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4935), + [anon_sym_BSLASHtextcite] = ACTIONS(4935), + [anon_sym_BSLASHTextcite] = ACTIONS(4935), + [anon_sym_BSLASHsmartcite] = ACTIONS(4935), + [anon_sym_BSLASHSmartcite] = ACTIONS(4935), + [anon_sym_BSLASHsupercite] = ACTIONS(4935), + [anon_sym_BSLASHautocite] = ACTIONS(4935), + [anon_sym_BSLASHAutocite] = ACTIONS(4935), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHvolcite] = ACTIONS(4935), + [anon_sym_BSLASHVolcite] = ACTIONS(4935), + [anon_sym_BSLASHpvolcite] = ACTIONS(4935), + [anon_sym_BSLASHPvolcite] = ACTIONS(4935), + [anon_sym_BSLASHfvolcite] = ACTIONS(4935), + [anon_sym_BSLASHftvolcite] = ACTIONS(4935), + [anon_sym_BSLASHsvolcite] = ACTIONS(4935), + [anon_sym_BSLASHSvolcite] = ACTIONS(4935), + [anon_sym_BSLASHtvolcite] = ACTIONS(4935), + [anon_sym_BSLASHTvolcite] = ACTIONS(4935), + [anon_sym_BSLASHavolcite] = ACTIONS(4935), + [anon_sym_BSLASHAvolcite] = ACTIONS(4935), + [anon_sym_BSLASHnotecite] = ACTIONS(4935), + [anon_sym_BSLASHNotecite] = ACTIONS(4935), + [anon_sym_BSLASHpnotecite] = ACTIONS(4935), + [anon_sym_BSLASHPnotecite] = ACTIONS(4935), + [anon_sym_BSLASHfnotecite] = ACTIONS(4935), + [anon_sym_BSLASHlabel] = ACTIONS(4935), + [anon_sym_BSLASHref] = ACTIONS(4935), + [anon_sym_BSLASHeqref] = ACTIONS(4935), + [anon_sym_BSLASHvref] = ACTIONS(4935), + [anon_sym_BSLASHVref] = ACTIONS(4935), + [anon_sym_BSLASHautoref] = ACTIONS(4935), + [anon_sym_BSLASHpageref] = ACTIONS(4935), + [anon_sym_BSLASHcref] = ACTIONS(4935), + [anon_sym_BSLASHCref] = ACTIONS(4935), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4933), + [anon_sym_BSLASHnamecref] = ACTIONS(4935), + [anon_sym_BSLASHnameCref] = ACTIONS(4935), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4935), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4935), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4935), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4935), + [anon_sym_BSLASHlabelcref] = ACTIONS(4935), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4935), + [anon_sym_BSLASHcrefrange] = ACTIONS(4935), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCrefrange] = ACTIONS(4935), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4933), + [anon_sym_BSLASHnewlabel] = ACTIONS(4935), + [anon_sym_BSLASHnewcommand] = ACTIONS(4935), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4935), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4935), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4935), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4933), + [anon_sym_BSLASHdef] = ACTIONS(4935), + [anon_sym_BSLASHlet] = ACTIONS(4935), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4935), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4935), + [anon_sym_BSLASHgls] = ACTIONS(4935), + [anon_sym_BSLASHGls] = ACTIONS(4935), + [anon_sym_BSLASHGLS] = ACTIONS(4935), + [anon_sym_BSLASHglspl] = ACTIONS(4935), + [anon_sym_BSLASHGlspl] = ACTIONS(4935), + [anon_sym_BSLASHGLSpl] = ACTIONS(4935), + [anon_sym_BSLASHglsdisp] = ACTIONS(4935), + [anon_sym_BSLASHglslink] = ACTIONS(4935), + [anon_sym_BSLASHglstext] = ACTIONS(4935), + [anon_sym_BSLASHGlstext] = ACTIONS(4935), + [anon_sym_BSLASHGLStext] = ACTIONS(4935), + [anon_sym_BSLASHglsfirst] = ACTIONS(4935), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4935), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4935), + [anon_sym_BSLASHglsplural] = ACTIONS(4935), + [anon_sym_BSLASHGlsplural] = ACTIONS(4935), + [anon_sym_BSLASHGLSplural] = ACTIONS(4935), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHglsname] = ACTIONS(4935), + [anon_sym_BSLASHGlsname] = ACTIONS(4935), + [anon_sym_BSLASHGLSname] = ACTIONS(4935), + [anon_sym_BSLASHglssymbol] = ACTIONS(4935), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4935), + [anon_sym_BSLASHglsdesc] = ACTIONS(4935), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4935), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4935), + [anon_sym_BSLASHglsuseri] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4935), + [anon_sym_BSLASHglsuserii] = ACTIONS(4935), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4935), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4935), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4935), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4935), + [anon_sym_BSLASHglsuserv] = ACTIONS(4935), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4935), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4935), + [anon_sym_BSLASHglsuservi] = ACTIONS(4935), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4935), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4935), + [anon_sym_BSLASHnewacronym] = ACTIONS(4935), + [anon_sym_BSLASHacrshort] = ACTIONS(4935), + [anon_sym_BSLASHAcrshort] = ACTIONS(4935), + [anon_sym_BSLASHACRshort] = ACTIONS(4935), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4935), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4935), + [anon_sym_BSLASHacrlong] = ACTIONS(4935), + [anon_sym_BSLASHAcrlong] = ACTIONS(4935), + [anon_sym_BSLASHACRlong] = ACTIONS(4935), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4935), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4935), + [anon_sym_BSLASHacrfull] = ACTIONS(4935), + [anon_sym_BSLASHAcrfull] = ACTIONS(4935), + [anon_sym_BSLASHACRfull] = ACTIONS(4935), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4935), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4935), + [anon_sym_BSLASHacs] = ACTIONS(4935), + [anon_sym_BSLASHAcs] = ACTIONS(4935), + [anon_sym_BSLASHacsp] = ACTIONS(4935), + [anon_sym_BSLASHAcsp] = ACTIONS(4935), + [anon_sym_BSLASHacl] = ACTIONS(4935), + [anon_sym_BSLASHAcl] = ACTIONS(4935), + [anon_sym_BSLASHaclp] = ACTIONS(4935), + [anon_sym_BSLASHAclp] = ACTIONS(4935), + [anon_sym_BSLASHacf] = ACTIONS(4935), + [anon_sym_BSLASHAcf] = ACTIONS(4935), + [anon_sym_BSLASHacfp] = ACTIONS(4935), + [anon_sym_BSLASHAcfp] = ACTIONS(4935), + [anon_sym_BSLASHac] = ACTIONS(4935), + [anon_sym_BSLASHAc] = ACTIONS(4935), + [anon_sym_BSLASHacp] = ACTIONS(4935), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4935), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4935), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4935), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4935), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4935), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4935), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4935), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4935), + [anon_sym_BSLASHcolor] = ACTIONS(4935), + [anon_sym_BSLASHcolorbox] = ACTIONS(4935), + [anon_sym_BSLASHtextcolor] = ACTIONS(4935), + [anon_sym_BSLASHpagecolor] = ACTIONS(4935), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4935), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), + [anon_sym_BSLASHtext] = ACTIONS(4935), + [anon_sym_BSLASHintertext] = ACTIONS(4935), + [anon_sym_shortintertext] = ACTIONS(4935), }, - [986] = { + [826] = { [sym_command_name] = ACTIONS(5135), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -303381,8 +260847,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), [anon_sym_DOLLAR] = ACTIONS(5135), [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5133), [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5133), [anon_sym_BSLASHbegin] = ACTIONS(5135), [anon_sym_BSLASHusepackage] = ACTIONS(5135), [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), @@ -303597,32557 +261063,35371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(5135), [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [anon_sym_BSLASHtext] = ACTIONS(5135), + [anon_sym_BSLASHintertext] = ACTIONS(5135), + [anon_sym_shortintertext] = ACTIONS(5135), }, - [987] = { - [sym_command_name] = ACTIONS(5139), + [827] = { + [sym_command_name] = ACTIONS(5157), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5157), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RBRACK] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_EQ] = ACTIONS(5155), + [anon_sym_BSLASHpart] = ACTIONS(5157), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddpart] = ACTIONS(5157), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5155), + [anon_sym_BSLASHchapter] = ACTIONS(5157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddchap] = ACTIONS(5157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsection] = ACTIONS(5157), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddsec] = ACTIONS(5157), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubsection] = ACTIONS(5157), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5157), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHparagraph] = ACTIONS(5157), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5157), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5155), + [anon_sym_BSLASHitem] = ACTIONS(5157), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5155), + [anon_sym_LBRACE] = ACTIONS(5155), + [sym_word] = ACTIONS(5157), + [sym_placeholder] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(5157), + [anon_sym_STAR] = ACTIONS(5157), + [anon_sym_SLASH] = ACTIONS(5157), + [anon_sym_CARET] = ACTIONS(5157), + [anon_sym__] = ACTIONS(5157), + [anon_sym_LT] = ACTIONS(5157), + [anon_sym_GT] = ACTIONS(5157), + [anon_sym_BANG] = ACTIONS(5157), + [anon_sym_PIPE] = ACTIONS(5157), + [anon_sym_COLON] = ACTIONS(5157), + [anon_sym_SQUOTE] = ACTIONS(5157), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), + [anon_sym_DOLLAR] = ACTIONS(5157), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), + [anon_sym_BSLASHbegin] = ACTIONS(5157), + [anon_sym_BSLASHusepackage] = ACTIONS(5157), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), + [anon_sym_BSLASHinclude] = ACTIONS(5157), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), + [anon_sym_BSLASHinput] = ACTIONS(5157), + [anon_sym_BSLASHsubfile] = ACTIONS(5157), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), + [anon_sym_BSLASHbibliography] = ACTIONS(5157), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5157), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), + [anon_sym_BSLASHimport] = ACTIONS(5157), + [anon_sym_BSLASHsubimport] = ACTIONS(5157), + [anon_sym_BSLASHinputfrom] = ACTIONS(5157), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), + [anon_sym_BSLASHincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHcaption] = ACTIONS(5157), + [anon_sym_BSLASHcite] = ACTIONS(5157), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCite] = ACTIONS(5157), + [anon_sym_BSLASHnocite] = ACTIONS(5157), + [anon_sym_BSLASHcitet] = ACTIONS(5157), + [anon_sym_BSLASHcitep] = ACTIONS(5157), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteauthor] = ACTIONS(5157), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitetitle] = ACTIONS(5157), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteyear] = ACTIONS(5157), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitedate] = ACTIONS(5157), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteurl] = ACTIONS(5157), + [anon_sym_BSLASHfullcite] = ACTIONS(5157), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), + [anon_sym_BSLASHcitealt] = ACTIONS(5157), + [anon_sym_BSLASHcitealp] = ACTIONS(5157), + [anon_sym_BSLASHcitetext] = ACTIONS(5157), + [anon_sym_BSLASHparencite] = ACTIONS(5157), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHParencite] = ACTIONS(5157), + [anon_sym_BSLASHfootcite] = ACTIONS(5157), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), + [anon_sym_BSLASHtextcite] = ACTIONS(5157), + [anon_sym_BSLASHTextcite] = ACTIONS(5157), + [anon_sym_BSLASHsmartcite] = ACTIONS(5157), + [anon_sym_BSLASHSmartcite] = ACTIONS(5157), + [anon_sym_BSLASHsupercite] = ACTIONS(5157), + [anon_sym_BSLASHautocite] = ACTIONS(5157), + [anon_sym_BSLASHAutocite] = ACTIONS(5157), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHvolcite] = ACTIONS(5157), + [anon_sym_BSLASHVolcite] = ACTIONS(5157), + [anon_sym_BSLASHpvolcite] = ACTIONS(5157), + [anon_sym_BSLASHPvolcite] = ACTIONS(5157), + [anon_sym_BSLASHfvolcite] = ACTIONS(5157), + [anon_sym_BSLASHftvolcite] = ACTIONS(5157), + [anon_sym_BSLASHsvolcite] = ACTIONS(5157), + [anon_sym_BSLASHSvolcite] = ACTIONS(5157), + [anon_sym_BSLASHtvolcite] = ACTIONS(5157), + [anon_sym_BSLASHTvolcite] = ACTIONS(5157), + [anon_sym_BSLASHavolcite] = ACTIONS(5157), + [anon_sym_BSLASHAvolcite] = ACTIONS(5157), + [anon_sym_BSLASHnotecite] = ACTIONS(5157), + [anon_sym_BSLASHNotecite] = ACTIONS(5157), + [anon_sym_BSLASHpnotecite] = ACTIONS(5157), + [anon_sym_BSLASHPnotecite] = ACTIONS(5157), + [anon_sym_BSLASHfnotecite] = ACTIONS(5157), + [anon_sym_BSLASHlabel] = ACTIONS(5157), + [anon_sym_BSLASHref] = ACTIONS(5157), + [anon_sym_BSLASHeqref] = ACTIONS(5157), + [anon_sym_BSLASHvref] = ACTIONS(5157), + [anon_sym_BSLASHVref] = ACTIONS(5157), + [anon_sym_BSLASHautoref] = ACTIONS(5157), + [anon_sym_BSLASHpageref] = ACTIONS(5157), + [anon_sym_BSLASHcref] = ACTIONS(5157), + [anon_sym_BSLASHCref] = ACTIONS(5157), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnameCref] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHlabelcref] = ACTIONS(5157), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCrefrange] = ACTIONS(5157), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnewlabel] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), + [anon_sym_BSLASHdef] = ACTIONS(5157), + [anon_sym_BSLASHlet] = ACTIONS(5157), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), + [anon_sym_BSLASHgls] = ACTIONS(5157), + [anon_sym_BSLASHGls] = ACTIONS(5157), + [anon_sym_BSLASHGLS] = ACTIONS(5157), + [anon_sym_BSLASHglspl] = ACTIONS(5157), + [anon_sym_BSLASHGlspl] = ACTIONS(5157), + [anon_sym_BSLASHGLSpl] = ACTIONS(5157), + [anon_sym_BSLASHglsdisp] = ACTIONS(5157), + [anon_sym_BSLASHglslink] = ACTIONS(5157), + [anon_sym_BSLASHglstext] = ACTIONS(5157), + [anon_sym_BSLASHGlstext] = ACTIONS(5157), + [anon_sym_BSLASHGLStext] = ACTIONS(5157), + [anon_sym_BSLASHglsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), + [anon_sym_BSLASHglsplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSplural] = ACTIONS(5157), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHglsname] = ACTIONS(5157), + [anon_sym_BSLASHGlsname] = ACTIONS(5157), + [anon_sym_BSLASHGLSname] = ACTIONS(5157), + [anon_sym_BSLASHglssymbol] = ACTIONS(5157), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), + [anon_sym_BSLASHglsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), + [anon_sym_BSLASHglsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), + [anon_sym_BSLASHglsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), + [anon_sym_BSLASHglsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), + [anon_sym_BSLASHglsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), + [anon_sym_BSLASHnewacronym] = ACTIONS(5157), + [anon_sym_BSLASHacrshort] = ACTIONS(5157), + [anon_sym_BSLASHAcrshort] = ACTIONS(5157), + [anon_sym_BSLASHACRshort] = ACTIONS(5157), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), + [anon_sym_BSLASHacrlong] = ACTIONS(5157), + [anon_sym_BSLASHAcrlong] = ACTIONS(5157), + [anon_sym_BSLASHACRlong] = ACTIONS(5157), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), + [anon_sym_BSLASHacrfull] = ACTIONS(5157), + [anon_sym_BSLASHAcrfull] = ACTIONS(5157), + [anon_sym_BSLASHACRfull] = ACTIONS(5157), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), + [anon_sym_BSLASHacs] = ACTIONS(5157), + [anon_sym_BSLASHAcs] = ACTIONS(5157), + [anon_sym_BSLASHacsp] = ACTIONS(5157), + [anon_sym_BSLASHAcsp] = ACTIONS(5157), + [anon_sym_BSLASHacl] = ACTIONS(5157), + [anon_sym_BSLASHAcl] = ACTIONS(5157), + [anon_sym_BSLASHaclp] = ACTIONS(5157), + [anon_sym_BSLASHAclp] = ACTIONS(5157), + [anon_sym_BSLASHacf] = ACTIONS(5157), + [anon_sym_BSLASHAcf] = ACTIONS(5157), + [anon_sym_BSLASHacfp] = ACTIONS(5157), + [anon_sym_BSLASHAcfp] = ACTIONS(5157), + [anon_sym_BSLASHac] = ACTIONS(5157), + [anon_sym_BSLASHAc] = ACTIONS(5157), + [anon_sym_BSLASHacp] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), + [anon_sym_BSLASHcolor] = ACTIONS(5157), + [anon_sym_BSLASHcolorbox] = ACTIONS(5157), + [anon_sym_BSLASHtextcolor] = ACTIONS(5157), + [anon_sym_BSLASHpagecolor] = ACTIONS(5157), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), + [anon_sym_BSLASHtext] = ACTIONS(5157), + [anon_sym_BSLASHintertext] = ACTIONS(5157), + [anon_sym_shortintertext] = ACTIONS(5157), + }, + [828] = { + [sym_command_name] = ACTIONS(5309), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5309), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_RPAREN] = ACTIONS(5307), + [anon_sym_LBRACK] = ACTIONS(5307), + [anon_sym_RBRACK] = ACTIONS(5307), + [anon_sym_COMMA] = ACTIONS(5307), + [anon_sym_EQ] = ACTIONS(5307), + [anon_sym_BSLASHpart] = ACTIONS(5309), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddpart] = ACTIONS(5309), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5307), + [anon_sym_BSLASHchapter] = ACTIONS(5309), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddchap] = ACTIONS(5309), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsection] = ACTIONS(5309), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddsec] = ACTIONS(5309), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubsection] = ACTIONS(5309), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5309), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHparagraph] = ACTIONS(5309), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5309), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5307), + [anon_sym_BSLASHitem] = ACTIONS(5309), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5307), + [anon_sym_LBRACE] = ACTIONS(5307), + [sym_word] = ACTIONS(5309), + [sym_placeholder] = ACTIONS(5307), + [anon_sym_PLUS] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5309), + [anon_sym_STAR] = ACTIONS(5309), + [anon_sym_SLASH] = ACTIONS(5309), + [anon_sym_CARET] = ACTIONS(5309), + [anon_sym__] = ACTIONS(5309), + [anon_sym_LT] = ACTIONS(5309), + [anon_sym_GT] = ACTIONS(5309), + [anon_sym_BANG] = ACTIONS(5309), + [anon_sym_PIPE] = ACTIONS(5309), + [anon_sym_COLON] = ACTIONS(5309), + [anon_sym_SQUOTE] = ACTIONS(5309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), + [anon_sym_BSLASHbegin] = ACTIONS(5309), + [anon_sym_BSLASHusepackage] = ACTIONS(5309), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), + [anon_sym_BSLASHinclude] = ACTIONS(5309), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), + [anon_sym_BSLASHinput] = ACTIONS(5309), + [anon_sym_BSLASHsubfile] = ACTIONS(5309), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), + [anon_sym_BSLASHbibliography] = ACTIONS(5309), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), + [anon_sym_BSLASHincludesvg] = ACTIONS(5309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), + [anon_sym_BSLASHimport] = ACTIONS(5309), + [anon_sym_BSLASHsubimport] = ACTIONS(5309), + [anon_sym_BSLASHinputfrom] = ACTIONS(5309), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), + [anon_sym_BSLASHincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHcaption] = ACTIONS(5309), + [anon_sym_BSLASHcite] = ACTIONS(5309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCite] = ACTIONS(5309), + [anon_sym_BSLASHnocite] = ACTIONS(5309), + [anon_sym_BSLASHcitet] = ACTIONS(5309), + [anon_sym_BSLASHcitep] = ACTIONS(5309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteauthor] = ACTIONS(5309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitetitle] = ACTIONS(5309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteyear] = ACTIONS(5309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitedate] = ACTIONS(5309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteurl] = ACTIONS(5309), + [anon_sym_BSLASHfullcite] = ACTIONS(5309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), + [anon_sym_BSLASHcitealt] = ACTIONS(5309), + [anon_sym_BSLASHcitealp] = ACTIONS(5309), + [anon_sym_BSLASHcitetext] = ACTIONS(5309), + [anon_sym_BSLASHparencite] = ACTIONS(5309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHParencite] = ACTIONS(5309), + [anon_sym_BSLASHfootcite] = ACTIONS(5309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), + [anon_sym_BSLASHtextcite] = ACTIONS(5309), + [anon_sym_BSLASHTextcite] = ACTIONS(5309), + [anon_sym_BSLASHsmartcite] = ACTIONS(5309), + [anon_sym_BSLASHSmartcite] = ACTIONS(5309), + [anon_sym_BSLASHsupercite] = ACTIONS(5309), + [anon_sym_BSLASHautocite] = ACTIONS(5309), + [anon_sym_BSLASHAutocite] = ACTIONS(5309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHvolcite] = ACTIONS(5309), + [anon_sym_BSLASHVolcite] = ACTIONS(5309), + [anon_sym_BSLASHpvolcite] = ACTIONS(5309), + [anon_sym_BSLASHPvolcite] = ACTIONS(5309), + [anon_sym_BSLASHfvolcite] = ACTIONS(5309), + [anon_sym_BSLASHftvolcite] = ACTIONS(5309), + [anon_sym_BSLASHsvolcite] = ACTIONS(5309), + [anon_sym_BSLASHSvolcite] = ACTIONS(5309), + [anon_sym_BSLASHtvolcite] = ACTIONS(5309), + [anon_sym_BSLASHTvolcite] = ACTIONS(5309), + [anon_sym_BSLASHavolcite] = ACTIONS(5309), + [anon_sym_BSLASHAvolcite] = ACTIONS(5309), + [anon_sym_BSLASHnotecite] = ACTIONS(5309), + [anon_sym_BSLASHNotecite] = ACTIONS(5309), + [anon_sym_BSLASHpnotecite] = ACTIONS(5309), + [anon_sym_BSLASHPnotecite] = ACTIONS(5309), + [anon_sym_BSLASHfnotecite] = ACTIONS(5309), + [anon_sym_BSLASHlabel] = ACTIONS(5309), + [anon_sym_BSLASHref] = ACTIONS(5309), + [anon_sym_BSLASHeqref] = ACTIONS(5309), + [anon_sym_BSLASHvref] = ACTIONS(5309), + [anon_sym_BSLASHVref] = ACTIONS(5309), + [anon_sym_BSLASHautoref] = ACTIONS(5309), + [anon_sym_BSLASHpageref] = ACTIONS(5309), + [anon_sym_BSLASHcref] = ACTIONS(5309), + [anon_sym_BSLASHCref] = ACTIONS(5309), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnameCref] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHlabelcref] = ACTIONS(5309), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCrefrange] = ACTIONS(5309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnewlabel] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), + [anon_sym_BSLASHdef] = ACTIONS(5309), + [anon_sym_BSLASHlet] = ACTIONS(5309), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), + [anon_sym_BSLASHgls] = ACTIONS(5309), + [anon_sym_BSLASHGls] = ACTIONS(5309), + [anon_sym_BSLASHGLS] = ACTIONS(5309), + [anon_sym_BSLASHglspl] = ACTIONS(5309), + [anon_sym_BSLASHGlspl] = ACTIONS(5309), + [anon_sym_BSLASHGLSpl] = ACTIONS(5309), + [anon_sym_BSLASHglsdisp] = ACTIONS(5309), + [anon_sym_BSLASHglslink] = ACTIONS(5309), + [anon_sym_BSLASHglstext] = ACTIONS(5309), + [anon_sym_BSLASHGlstext] = ACTIONS(5309), + [anon_sym_BSLASHGLStext] = ACTIONS(5309), + [anon_sym_BSLASHglsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), + [anon_sym_BSLASHglsplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSplural] = ACTIONS(5309), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHglsname] = ACTIONS(5309), + [anon_sym_BSLASHGlsname] = ACTIONS(5309), + [anon_sym_BSLASHGLSname] = ACTIONS(5309), + [anon_sym_BSLASHglssymbol] = ACTIONS(5309), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), + [anon_sym_BSLASHglsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), + [anon_sym_BSLASHglsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), + [anon_sym_BSLASHglsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), + [anon_sym_BSLASHglsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), + [anon_sym_BSLASHglsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), + [anon_sym_BSLASHnewacronym] = ACTIONS(5309), + [anon_sym_BSLASHacrshort] = ACTIONS(5309), + [anon_sym_BSLASHAcrshort] = ACTIONS(5309), + [anon_sym_BSLASHACRshort] = ACTIONS(5309), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), + [anon_sym_BSLASHacrlong] = ACTIONS(5309), + [anon_sym_BSLASHAcrlong] = ACTIONS(5309), + [anon_sym_BSLASHACRlong] = ACTIONS(5309), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), + [anon_sym_BSLASHacrfull] = ACTIONS(5309), + [anon_sym_BSLASHAcrfull] = ACTIONS(5309), + [anon_sym_BSLASHACRfull] = ACTIONS(5309), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), + [anon_sym_BSLASHacs] = ACTIONS(5309), + [anon_sym_BSLASHAcs] = ACTIONS(5309), + [anon_sym_BSLASHacsp] = ACTIONS(5309), + [anon_sym_BSLASHAcsp] = ACTIONS(5309), + [anon_sym_BSLASHacl] = ACTIONS(5309), + [anon_sym_BSLASHAcl] = ACTIONS(5309), + [anon_sym_BSLASHaclp] = ACTIONS(5309), + [anon_sym_BSLASHAclp] = ACTIONS(5309), + [anon_sym_BSLASHacf] = ACTIONS(5309), + [anon_sym_BSLASHAcf] = ACTIONS(5309), + [anon_sym_BSLASHacfp] = ACTIONS(5309), + [anon_sym_BSLASHAcfp] = ACTIONS(5309), + [anon_sym_BSLASHac] = ACTIONS(5309), + [anon_sym_BSLASHAc] = ACTIONS(5309), + [anon_sym_BSLASHacp] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), + [anon_sym_BSLASHcolor] = ACTIONS(5309), + [anon_sym_BSLASHcolorbox] = ACTIONS(5309), + [anon_sym_BSLASHtextcolor] = ACTIONS(5309), + [anon_sym_BSLASHpagecolor] = ACTIONS(5309), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), + [anon_sym_BSLASHtext] = ACTIONS(5309), + [anon_sym_BSLASHintertext] = ACTIONS(5309), + [anon_sym_shortintertext] = ACTIONS(5309), + }, + [829] = { + [sym_command_name] = ACTIONS(5281), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5281), + [anon_sym_LPAREN] = ACTIONS(5279), + [anon_sym_RPAREN] = ACTIONS(5279), + [anon_sym_LBRACK] = ACTIONS(5279), + [anon_sym_RBRACK] = ACTIONS(5279), + [anon_sym_COMMA] = ACTIONS(5279), + [anon_sym_EQ] = ACTIONS(5279), + [anon_sym_BSLASHpart] = ACTIONS(5281), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddpart] = ACTIONS(5281), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5279), + [anon_sym_BSLASHchapter] = ACTIONS(5281), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddchap] = ACTIONS(5281), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsection] = ACTIONS(5281), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddsec] = ACTIONS(5281), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubsection] = ACTIONS(5281), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5281), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHparagraph] = ACTIONS(5281), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5281), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5279), + [anon_sym_BSLASHitem] = ACTIONS(5281), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5279), + [anon_sym_LBRACE] = ACTIONS(5279), + [sym_word] = ACTIONS(5281), + [sym_placeholder] = ACTIONS(5279), + [anon_sym_PLUS] = ACTIONS(5281), + [anon_sym_DASH] = ACTIONS(5281), + [anon_sym_STAR] = ACTIONS(5281), + [anon_sym_SLASH] = ACTIONS(5281), + [anon_sym_CARET] = ACTIONS(5281), + [anon_sym__] = ACTIONS(5281), + [anon_sym_LT] = ACTIONS(5281), + [anon_sym_GT] = ACTIONS(5281), + [anon_sym_BANG] = ACTIONS(5281), + [anon_sym_PIPE] = ACTIONS(5281), + [anon_sym_COLON] = ACTIONS(5281), + [anon_sym_SQUOTE] = ACTIONS(5281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), + [anon_sym_DOLLAR] = ACTIONS(5281), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), + [anon_sym_BSLASHbegin] = ACTIONS(5281), + [anon_sym_BSLASHusepackage] = ACTIONS(5281), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), + [anon_sym_BSLASHinclude] = ACTIONS(5281), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), + [anon_sym_BSLASHinput] = ACTIONS(5281), + [anon_sym_BSLASHsubfile] = ACTIONS(5281), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), + [anon_sym_BSLASHbibliography] = ACTIONS(5281), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), + [anon_sym_BSLASHincludesvg] = ACTIONS(5281), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), + [anon_sym_BSLASHimport] = ACTIONS(5281), + [anon_sym_BSLASHsubimport] = ACTIONS(5281), + [anon_sym_BSLASHinputfrom] = ACTIONS(5281), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), + [anon_sym_BSLASHincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHcaption] = ACTIONS(5281), + [anon_sym_BSLASHcite] = ACTIONS(5281), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCite] = ACTIONS(5281), + [anon_sym_BSLASHnocite] = ACTIONS(5281), + [anon_sym_BSLASHcitet] = ACTIONS(5281), + [anon_sym_BSLASHcitep] = ACTIONS(5281), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteauthor] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitetitle] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteyear] = ACTIONS(5281), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitedate] = ACTIONS(5281), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteurl] = ACTIONS(5281), + [anon_sym_BSLASHfullcite] = ACTIONS(5281), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), + [anon_sym_BSLASHcitealt] = ACTIONS(5281), + [anon_sym_BSLASHcitealp] = ACTIONS(5281), + [anon_sym_BSLASHcitetext] = ACTIONS(5281), + [anon_sym_BSLASHparencite] = ACTIONS(5281), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHParencite] = ACTIONS(5281), + [anon_sym_BSLASHfootcite] = ACTIONS(5281), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), + [anon_sym_BSLASHtextcite] = ACTIONS(5281), + [anon_sym_BSLASHTextcite] = ACTIONS(5281), + [anon_sym_BSLASHsmartcite] = ACTIONS(5281), + [anon_sym_BSLASHSmartcite] = ACTIONS(5281), + [anon_sym_BSLASHsupercite] = ACTIONS(5281), + [anon_sym_BSLASHautocite] = ACTIONS(5281), + [anon_sym_BSLASHAutocite] = ACTIONS(5281), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHvolcite] = ACTIONS(5281), + [anon_sym_BSLASHVolcite] = ACTIONS(5281), + [anon_sym_BSLASHpvolcite] = ACTIONS(5281), + [anon_sym_BSLASHPvolcite] = ACTIONS(5281), + [anon_sym_BSLASHfvolcite] = ACTIONS(5281), + [anon_sym_BSLASHftvolcite] = ACTIONS(5281), + [anon_sym_BSLASHsvolcite] = ACTIONS(5281), + [anon_sym_BSLASHSvolcite] = ACTIONS(5281), + [anon_sym_BSLASHtvolcite] = ACTIONS(5281), + [anon_sym_BSLASHTvolcite] = ACTIONS(5281), + [anon_sym_BSLASHavolcite] = ACTIONS(5281), + [anon_sym_BSLASHAvolcite] = ACTIONS(5281), + [anon_sym_BSLASHnotecite] = ACTIONS(5281), + [anon_sym_BSLASHNotecite] = ACTIONS(5281), + [anon_sym_BSLASHpnotecite] = ACTIONS(5281), + [anon_sym_BSLASHPnotecite] = ACTIONS(5281), + [anon_sym_BSLASHfnotecite] = ACTIONS(5281), + [anon_sym_BSLASHlabel] = ACTIONS(5281), + [anon_sym_BSLASHref] = ACTIONS(5281), + [anon_sym_BSLASHeqref] = ACTIONS(5281), + [anon_sym_BSLASHvref] = ACTIONS(5281), + [anon_sym_BSLASHVref] = ACTIONS(5281), + [anon_sym_BSLASHautoref] = ACTIONS(5281), + [anon_sym_BSLASHpageref] = ACTIONS(5281), + [anon_sym_BSLASHcref] = ACTIONS(5281), + [anon_sym_BSLASHCref] = ACTIONS(5281), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnameCref] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHlabelcref] = ACTIONS(5281), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCrefrange] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnewlabel] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), + [anon_sym_BSLASHdef] = ACTIONS(5281), + [anon_sym_BSLASHlet] = ACTIONS(5281), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), + [anon_sym_BSLASHgls] = ACTIONS(5281), + [anon_sym_BSLASHGls] = ACTIONS(5281), + [anon_sym_BSLASHGLS] = ACTIONS(5281), + [anon_sym_BSLASHglspl] = ACTIONS(5281), + [anon_sym_BSLASHGlspl] = ACTIONS(5281), + [anon_sym_BSLASHGLSpl] = ACTIONS(5281), + [anon_sym_BSLASHglsdisp] = ACTIONS(5281), + [anon_sym_BSLASHglslink] = ACTIONS(5281), + [anon_sym_BSLASHglstext] = ACTIONS(5281), + [anon_sym_BSLASHGlstext] = ACTIONS(5281), + [anon_sym_BSLASHGLStext] = ACTIONS(5281), + [anon_sym_BSLASHglsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), + [anon_sym_BSLASHglsplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSplural] = ACTIONS(5281), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHglsname] = ACTIONS(5281), + [anon_sym_BSLASHGlsname] = ACTIONS(5281), + [anon_sym_BSLASHGLSname] = ACTIONS(5281), + [anon_sym_BSLASHglssymbol] = ACTIONS(5281), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), + [anon_sym_BSLASHglsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), + [anon_sym_BSLASHglsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), + [anon_sym_BSLASHglsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), + [anon_sym_BSLASHglsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), + [anon_sym_BSLASHglsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), + [anon_sym_BSLASHnewacronym] = ACTIONS(5281), + [anon_sym_BSLASHacrshort] = ACTIONS(5281), + [anon_sym_BSLASHAcrshort] = ACTIONS(5281), + [anon_sym_BSLASHACRshort] = ACTIONS(5281), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), + [anon_sym_BSLASHacrlong] = ACTIONS(5281), + [anon_sym_BSLASHAcrlong] = ACTIONS(5281), + [anon_sym_BSLASHACRlong] = ACTIONS(5281), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), + [anon_sym_BSLASHacrfull] = ACTIONS(5281), + [anon_sym_BSLASHAcrfull] = ACTIONS(5281), + [anon_sym_BSLASHACRfull] = ACTIONS(5281), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), + [anon_sym_BSLASHacs] = ACTIONS(5281), + [anon_sym_BSLASHAcs] = ACTIONS(5281), + [anon_sym_BSLASHacsp] = ACTIONS(5281), + [anon_sym_BSLASHAcsp] = ACTIONS(5281), + [anon_sym_BSLASHacl] = ACTIONS(5281), + [anon_sym_BSLASHAcl] = ACTIONS(5281), + [anon_sym_BSLASHaclp] = ACTIONS(5281), + [anon_sym_BSLASHAclp] = ACTIONS(5281), + [anon_sym_BSLASHacf] = ACTIONS(5281), + [anon_sym_BSLASHAcf] = ACTIONS(5281), + [anon_sym_BSLASHacfp] = ACTIONS(5281), + [anon_sym_BSLASHAcfp] = ACTIONS(5281), + [anon_sym_BSLASHac] = ACTIONS(5281), + [anon_sym_BSLASHAc] = ACTIONS(5281), + [anon_sym_BSLASHacp] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), + [anon_sym_BSLASHcolor] = ACTIONS(5281), + [anon_sym_BSLASHcolorbox] = ACTIONS(5281), + [anon_sym_BSLASHtextcolor] = ACTIONS(5281), + [anon_sym_BSLASHpagecolor] = ACTIONS(5281), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), + [anon_sym_BSLASHtext] = ACTIONS(5281), + [anon_sym_BSLASHintertext] = ACTIONS(5281), + [anon_sym_shortintertext] = ACTIONS(5281), + }, + [830] = { + [sym_command_name] = ACTIONS(5135), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_BSLASHpart] = ACTIONS(5139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddpart] = ACTIONS(5139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHchapter] = ACTIONS(5139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddchap] = ACTIONS(5139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsection] = ACTIONS(5139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddsec] = ACTIONS(5139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHparagraph] = ACTIONS(5139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHitem] = ACTIONS(5139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5137), - [anon_sym_BSLASHbegin] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHiffalse] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_RPAREN] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_RBRACK] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_BSLASHpart] = ACTIONS(5135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), + [anon_sym_BSLASHaddpart] = ACTIONS(5135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), + [anon_sym_BSLASHchapter] = ACTIONS(5135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), + [anon_sym_BSLASHaddchap] = ACTIONS(5135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsection] = ACTIONS(5135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), + [anon_sym_BSLASHaddsec] = ACTIONS(5135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsubsection] = ACTIONS(5135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), + [anon_sym_BSLASHparagraph] = ACTIONS(5135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), + [anon_sym_BSLASHitem] = ACTIONS(5135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5133), + [sym_word] = ACTIONS(5135), + [sym_placeholder] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_CARET] = ACTIONS(5135), + [anon_sym__] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_PIPE] = ACTIONS(5135), + [anon_sym_COLON] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), + [anon_sym_DOLLAR] = ACTIONS(5135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), + [anon_sym_BSLASHbegin] = ACTIONS(5135), + [anon_sym_BSLASHend] = ACTIONS(5135), + [anon_sym_BSLASHusepackage] = ACTIONS(5135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), + [anon_sym_BSLASHinclude] = ACTIONS(5135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), + [anon_sym_BSLASHinput] = ACTIONS(5135), + [anon_sym_BSLASHsubfile] = ACTIONS(5135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), + [anon_sym_BSLASHbibliography] = ACTIONS(5135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), + [anon_sym_BSLASHincludesvg] = ACTIONS(5135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), + [anon_sym_BSLASHimport] = ACTIONS(5135), + [anon_sym_BSLASHsubimport] = ACTIONS(5135), + [anon_sym_BSLASHinputfrom] = ACTIONS(5135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), + [anon_sym_BSLASHincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHcaption] = ACTIONS(5135), + [anon_sym_BSLASHcite] = ACTIONS(5135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCite] = ACTIONS(5135), + [anon_sym_BSLASHnocite] = ACTIONS(5135), + [anon_sym_BSLASHcitet] = ACTIONS(5135), + [anon_sym_BSLASHcitep] = ACTIONS(5135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteauthor] = ACTIONS(5135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitetitle] = ACTIONS(5135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteyear] = ACTIONS(5135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitedate] = ACTIONS(5135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteurl] = ACTIONS(5135), + [anon_sym_BSLASHfullcite] = ACTIONS(5135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), + [anon_sym_BSLASHcitealt] = ACTIONS(5135), + [anon_sym_BSLASHcitealp] = ACTIONS(5135), + [anon_sym_BSLASHcitetext] = ACTIONS(5135), + [anon_sym_BSLASHparencite] = ACTIONS(5135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHParencite] = ACTIONS(5135), + [anon_sym_BSLASHfootcite] = ACTIONS(5135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), + [anon_sym_BSLASHtextcite] = ACTIONS(5135), + [anon_sym_BSLASHTextcite] = ACTIONS(5135), + [anon_sym_BSLASHsmartcite] = ACTIONS(5135), + [anon_sym_BSLASHSmartcite] = ACTIONS(5135), + [anon_sym_BSLASHsupercite] = ACTIONS(5135), + [anon_sym_BSLASHautocite] = ACTIONS(5135), + [anon_sym_BSLASHAutocite] = ACTIONS(5135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHvolcite] = ACTIONS(5135), + [anon_sym_BSLASHVolcite] = ACTIONS(5135), + [anon_sym_BSLASHpvolcite] = ACTIONS(5135), + [anon_sym_BSLASHPvolcite] = ACTIONS(5135), + [anon_sym_BSLASHfvolcite] = ACTIONS(5135), + [anon_sym_BSLASHftvolcite] = ACTIONS(5135), + [anon_sym_BSLASHsvolcite] = ACTIONS(5135), + [anon_sym_BSLASHSvolcite] = ACTIONS(5135), + [anon_sym_BSLASHtvolcite] = ACTIONS(5135), + [anon_sym_BSLASHTvolcite] = ACTIONS(5135), + [anon_sym_BSLASHavolcite] = ACTIONS(5135), + [anon_sym_BSLASHAvolcite] = ACTIONS(5135), + [anon_sym_BSLASHnotecite] = ACTIONS(5135), + [anon_sym_BSLASHNotecite] = ACTIONS(5135), + [anon_sym_BSLASHpnotecite] = ACTIONS(5135), + [anon_sym_BSLASHPnotecite] = ACTIONS(5135), + [anon_sym_BSLASHfnotecite] = ACTIONS(5135), + [anon_sym_BSLASHlabel] = ACTIONS(5135), + [anon_sym_BSLASHref] = ACTIONS(5135), + [anon_sym_BSLASHeqref] = ACTIONS(5135), + [anon_sym_BSLASHvref] = ACTIONS(5135), + [anon_sym_BSLASHVref] = ACTIONS(5135), + [anon_sym_BSLASHautoref] = ACTIONS(5135), + [anon_sym_BSLASHpageref] = ACTIONS(5135), + [anon_sym_BSLASHcref] = ACTIONS(5135), + [anon_sym_BSLASHCref] = ACTIONS(5135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnameCref] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHlabelcref] = ACTIONS(5135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCrefrange] = ACTIONS(5135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnewlabel] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), + [anon_sym_BSLASHdef] = ACTIONS(5135), + [anon_sym_BSLASHlet] = ACTIONS(5135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), + [anon_sym_BSLASHgls] = ACTIONS(5135), + [anon_sym_BSLASHGls] = ACTIONS(5135), + [anon_sym_BSLASHGLS] = ACTIONS(5135), + [anon_sym_BSLASHglspl] = ACTIONS(5135), + [anon_sym_BSLASHGlspl] = ACTIONS(5135), + [anon_sym_BSLASHGLSpl] = ACTIONS(5135), + [anon_sym_BSLASHglsdisp] = ACTIONS(5135), + [anon_sym_BSLASHglslink] = ACTIONS(5135), + [anon_sym_BSLASHglstext] = ACTIONS(5135), + [anon_sym_BSLASHGlstext] = ACTIONS(5135), + [anon_sym_BSLASHGLStext] = ACTIONS(5135), + [anon_sym_BSLASHglsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), + [anon_sym_BSLASHglsplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSplural] = ACTIONS(5135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHglsname] = ACTIONS(5135), + [anon_sym_BSLASHGlsname] = ACTIONS(5135), + [anon_sym_BSLASHGLSname] = ACTIONS(5135), + [anon_sym_BSLASHglssymbol] = ACTIONS(5135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), + [anon_sym_BSLASHglsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), + [anon_sym_BSLASHglsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), + [anon_sym_BSLASHglsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), + [anon_sym_BSLASHglsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), + [anon_sym_BSLASHglsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), + [anon_sym_BSLASHnewacronym] = ACTIONS(5135), + [anon_sym_BSLASHacrshort] = ACTIONS(5135), + [anon_sym_BSLASHAcrshort] = ACTIONS(5135), + [anon_sym_BSLASHACRshort] = ACTIONS(5135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), + [anon_sym_BSLASHacrlong] = ACTIONS(5135), + [anon_sym_BSLASHAcrlong] = ACTIONS(5135), + [anon_sym_BSLASHACRlong] = ACTIONS(5135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), + [anon_sym_BSLASHacrfull] = ACTIONS(5135), + [anon_sym_BSLASHAcrfull] = ACTIONS(5135), + [anon_sym_BSLASHACRfull] = ACTIONS(5135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), + [anon_sym_BSLASHacs] = ACTIONS(5135), + [anon_sym_BSLASHAcs] = ACTIONS(5135), + [anon_sym_BSLASHacsp] = ACTIONS(5135), + [anon_sym_BSLASHAcsp] = ACTIONS(5135), + [anon_sym_BSLASHacl] = ACTIONS(5135), + [anon_sym_BSLASHAcl] = ACTIONS(5135), + [anon_sym_BSLASHaclp] = ACTIONS(5135), + [anon_sym_BSLASHAclp] = ACTIONS(5135), + [anon_sym_BSLASHacf] = ACTIONS(5135), + [anon_sym_BSLASHAcf] = ACTIONS(5135), + [anon_sym_BSLASHacfp] = ACTIONS(5135), + [anon_sym_BSLASHAcfp] = ACTIONS(5135), + [anon_sym_BSLASHac] = ACTIONS(5135), + [anon_sym_BSLASHAc] = ACTIONS(5135), + [anon_sym_BSLASHacp] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), + [anon_sym_BSLASHcolor] = ACTIONS(5135), + [anon_sym_BSLASHcolorbox] = ACTIONS(5135), + [anon_sym_BSLASHtextcolor] = ACTIONS(5135), + [anon_sym_BSLASHpagecolor] = ACTIONS(5135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [anon_sym_BSLASHtext] = ACTIONS(5135), + [anon_sym_BSLASHintertext] = ACTIONS(5135), + [anon_sym_shortintertext] = ACTIONS(5135), }, - [988] = { - [sym_command_name] = ACTIONS(4941), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4939), - [anon_sym_RBRACK] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_BSLASHpart] = ACTIONS(4941), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddpart] = ACTIONS(4941), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4939), - [anon_sym_BSLASHchapter] = ACTIONS(4941), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddchap] = ACTIONS(4941), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsection] = ACTIONS(4941), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddsec] = ACTIONS(4941), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubsection] = ACTIONS(4941), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4941), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHparagraph] = ACTIONS(4941), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4941), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4939), - [anon_sym_BSLASHitem] = ACTIONS(4941), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [sym_word] = ACTIONS(4941), - [sym_placeholder] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4941), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_STAR] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym__] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4941), - [anon_sym_BANG] = ACTIONS(4941), - [anon_sym_PIPE] = ACTIONS(4941), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4941), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4939), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4939), - [anon_sym_BSLASHbegin] = ACTIONS(4941), - [anon_sym_BSLASHusepackage] = ACTIONS(4941), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4941), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4941), - [anon_sym_BSLASHinclude] = ACTIONS(4941), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4941), - [anon_sym_BSLASHinput] = ACTIONS(4941), - [anon_sym_BSLASHsubfile] = ACTIONS(4941), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4941), - [anon_sym_BSLASHbibliography] = ACTIONS(4941), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4941), - [anon_sym_BSLASHincludesvg] = ACTIONS(4941), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4941), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4941), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4941), - [anon_sym_BSLASHimport] = ACTIONS(4941), - [anon_sym_BSLASHsubimport] = ACTIONS(4941), - [anon_sym_BSLASHinputfrom] = ACTIONS(4941), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4941), - [anon_sym_BSLASHincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHcaption] = ACTIONS(4941), - [anon_sym_BSLASHcite] = ACTIONS(4941), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCite] = ACTIONS(4941), - [anon_sym_BSLASHnocite] = ACTIONS(4941), - [anon_sym_BSLASHcitet] = ACTIONS(4941), - [anon_sym_BSLASHcitep] = ACTIONS(4941), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteyear] = ACTIONS(4941), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitedate] = ACTIONS(4941), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteurl] = ACTIONS(4941), - [anon_sym_BSLASHfullcite] = ACTIONS(4941), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4941), - [anon_sym_BSLASHcitealt] = ACTIONS(4941), - [anon_sym_BSLASHcitealp] = ACTIONS(4941), - [anon_sym_BSLASHcitetext] = ACTIONS(4941), - [anon_sym_BSLASHparencite] = ACTIONS(4941), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHParencite] = ACTIONS(4941), - [anon_sym_BSLASHfootcite] = ACTIONS(4941), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4941), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4941), - [anon_sym_BSLASHtextcite] = ACTIONS(4941), - [anon_sym_BSLASHTextcite] = ACTIONS(4941), - [anon_sym_BSLASHsmartcite] = ACTIONS(4941), - [anon_sym_BSLASHSmartcite] = ACTIONS(4941), - [anon_sym_BSLASHsupercite] = ACTIONS(4941), - [anon_sym_BSLASHautocite] = ACTIONS(4941), - [anon_sym_BSLASHAutocite] = ACTIONS(4941), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHvolcite] = ACTIONS(4941), - [anon_sym_BSLASHVolcite] = ACTIONS(4941), - [anon_sym_BSLASHpvolcite] = ACTIONS(4941), - [anon_sym_BSLASHPvolcite] = ACTIONS(4941), - [anon_sym_BSLASHfvolcite] = ACTIONS(4941), - [anon_sym_BSLASHftvolcite] = ACTIONS(4941), - [anon_sym_BSLASHsvolcite] = ACTIONS(4941), - [anon_sym_BSLASHSvolcite] = ACTIONS(4941), - [anon_sym_BSLASHtvolcite] = ACTIONS(4941), - [anon_sym_BSLASHTvolcite] = ACTIONS(4941), - [anon_sym_BSLASHavolcite] = ACTIONS(4941), - [anon_sym_BSLASHAvolcite] = ACTIONS(4941), - [anon_sym_BSLASHnotecite] = ACTIONS(4941), - [anon_sym_BSLASHNotecite] = ACTIONS(4941), - [anon_sym_BSLASHpnotecite] = ACTIONS(4941), - [anon_sym_BSLASHPnotecite] = ACTIONS(4941), - [anon_sym_BSLASHfnotecite] = ACTIONS(4941), - [anon_sym_BSLASHlabel] = ACTIONS(4941), - [anon_sym_BSLASHref] = ACTIONS(4941), - [anon_sym_BSLASHeqref] = ACTIONS(4941), - [anon_sym_BSLASHvref] = ACTIONS(4941), - [anon_sym_BSLASHVref] = ACTIONS(4941), - [anon_sym_BSLASHautoref] = ACTIONS(4941), - [anon_sym_BSLASHpageref] = ACTIONS(4941), - [anon_sym_BSLASHcref] = ACTIONS(4941), - [anon_sym_BSLASHCref] = ACTIONS(4941), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnameCref] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHlabelcref] = ACTIONS(4941), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnewlabel] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4939), - [anon_sym_BSLASHdef] = ACTIONS(4941), - [anon_sym_BSLASHlet] = ACTIONS(4941), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4941), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4941), - [anon_sym_BSLASHgls] = ACTIONS(4941), - [anon_sym_BSLASHGls] = ACTIONS(4941), - [anon_sym_BSLASHGLS] = ACTIONS(4941), - [anon_sym_BSLASHglspl] = ACTIONS(4941), - [anon_sym_BSLASHGlspl] = ACTIONS(4941), - [anon_sym_BSLASHGLSpl] = ACTIONS(4941), - [anon_sym_BSLASHglsdisp] = ACTIONS(4941), - [anon_sym_BSLASHglslink] = ACTIONS(4941), - [anon_sym_BSLASHglstext] = ACTIONS(4941), - [anon_sym_BSLASHGlstext] = ACTIONS(4941), - [anon_sym_BSLASHGLStext] = ACTIONS(4941), - [anon_sym_BSLASHglsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4941), - [anon_sym_BSLASHglsplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSplural] = ACTIONS(4941), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHglsname] = ACTIONS(4941), - [anon_sym_BSLASHGlsname] = ACTIONS(4941), - [anon_sym_BSLASHGLSname] = ACTIONS(4941), - [anon_sym_BSLASHglssymbol] = ACTIONS(4941), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4941), - [anon_sym_BSLASHglsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4941), - [anon_sym_BSLASHglsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4941), - [anon_sym_BSLASHglsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4941), - [anon_sym_BSLASHglsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4941), - [anon_sym_BSLASHglsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4941), - [anon_sym_BSLASHnewacronym] = ACTIONS(4941), - [anon_sym_BSLASHacrshort] = ACTIONS(4941), - [anon_sym_BSLASHAcrshort] = ACTIONS(4941), - [anon_sym_BSLASHACRshort] = ACTIONS(4941), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4941), - [anon_sym_BSLASHacrlong] = ACTIONS(4941), - [anon_sym_BSLASHAcrlong] = ACTIONS(4941), - [anon_sym_BSLASHACRlong] = ACTIONS(4941), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4941), - [anon_sym_BSLASHacrfull] = ACTIONS(4941), - [anon_sym_BSLASHAcrfull] = ACTIONS(4941), - [anon_sym_BSLASHACRfull] = ACTIONS(4941), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4941), - [anon_sym_BSLASHacs] = ACTIONS(4941), - [anon_sym_BSLASHAcs] = ACTIONS(4941), - [anon_sym_BSLASHacsp] = ACTIONS(4941), - [anon_sym_BSLASHAcsp] = ACTIONS(4941), - [anon_sym_BSLASHacl] = ACTIONS(4941), - [anon_sym_BSLASHAcl] = ACTIONS(4941), - [anon_sym_BSLASHaclp] = ACTIONS(4941), - [anon_sym_BSLASHAclp] = ACTIONS(4941), - [anon_sym_BSLASHacf] = ACTIONS(4941), - [anon_sym_BSLASHAcf] = ACTIONS(4941), - [anon_sym_BSLASHacfp] = ACTIONS(4941), - [anon_sym_BSLASHAcfp] = ACTIONS(4941), - [anon_sym_BSLASHac] = ACTIONS(4941), - [anon_sym_BSLASHAc] = ACTIONS(4941), - [anon_sym_BSLASHacp] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4941), - [anon_sym_BSLASHcolor] = ACTIONS(4941), - [anon_sym_BSLASHcolorbox] = ACTIONS(4941), - [anon_sym_BSLASHtextcolor] = ACTIONS(4941), - [anon_sym_BSLASHpagecolor] = ACTIONS(4941), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4941), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4941), + [831] = { + [sym_command_name] = ACTIONS(5277), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5277), + [anon_sym_LPAREN] = ACTIONS(5275), + [anon_sym_RPAREN] = ACTIONS(5275), + [anon_sym_LBRACK] = ACTIONS(5275), + [anon_sym_RBRACK] = ACTIONS(5275), + [anon_sym_COMMA] = ACTIONS(5275), + [anon_sym_EQ] = ACTIONS(5275), + [anon_sym_BSLASHpart] = ACTIONS(5277), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddpart] = ACTIONS(5277), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5275), + [anon_sym_BSLASHchapter] = ACTIONS(5277), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddchap] = ACTIONS(5277), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsection] = ACTIONS(5277), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddsec] = ACTIONS(5277), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubsection] = ACTIONS(5277), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5277), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHparagraph] = ACTIONS(5277), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5277), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5275), + [anon_sym_BSLASHitem] = ACTIONS(5277), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5275), + [anon_sym_LBRACE] = ACTIONS(5275), + [sym_word] = ACTIONS(5277), + [sym_placeholder] = ACTIONS(5275), + [anon_sym_PLUS] = ACTIONS(5277), + [anon_sym_DASH] = ACTIONS(5277), + [anon_sym_STAR] = ACTIONS(5277), + [anon_sym_SLASH] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5277), + [anon_sym__] = ACTIONS(5277), + [anon_sym_LT] = ACTIONS(5277), + [anon_sym_GT] = ACTIONS(5277), + [anon_sym_BANG] = ACTIONS(5277), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_COLON] = ACTIONS(5277), + [anon_sym_SQUOTE] = ACTIONS(5277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), + [anon_sym_DOLLAR] = ACTIONS(5277), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), + [anon_sym_BSLASHbegin] = ACTIONS(5277), + [anon_sym_BSLASHusepackage] = ACTIONS(5277), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), + [anon_sym_BSLASHinclude] = ACTIONS(5277), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), + [anon_sym_BSLASHinput] = ACTIONS(5277), + [anon_sym_BSLASHsubfile] = ACTIONS(5277), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), + [anon_sym_BSLASHbibliography] = ACTIONS(5277), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), + [anon_sym_BSLASHincludesvg] = ACTIONS(5277), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), + [anon_sym_BSLASHimport] = ACTIONS(5277), + [anon_sym_BSLASHsubimport] = ACTIONS(5277), + [anon_sym_BSLASHinputfrom] = ACTIONS(5277), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), + [anon_sym_BSLASHincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHcaption] = ACTIONS(5277), + [anon_sym_BSLASHcite] = ACTIONS(5277), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCite] = ACTIONS(5277), + [anon_sym_BSLASHnocite] = ACTIONS(5277), + [anon_sym_BSLASHcitet] = ACTIONS(5277), + [anon_sym_BSLASHcitep] = ACTIONS(5277), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteauthor] = ACTIONS(5277), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitetitle] = ACTIONS(5277), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteyear] = ACTIONS(5277), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitedate] = ACTIONS(5277), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteurl] = ACTIONS(5277), + [anon_sym_BSLASHfullcite] = ACTIONS(5277), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), + [anon_sym_BSLASHcitealt] = ACTIONS(5277), + [anon_sym_BSLASHcitealp] = ACTIONS(5277), + [anon_sym_BSLASHcitetext] = ACTIONS(5277), + [anon_sym_BSLASHparencite] = ACTIONS(5277), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHParencite] = ACTIONS(5277), + [anon_sym_BSLASHfootcite] = ACTIONS(5277), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), + [anon_sym_BSLASHtextcite] = ACTIONS(5277), + [anon_sym_BSLASHTextcite] = ACTIONS(5277), + [anon_sym_BSLASHsmartcite] = ACTIONS(5277), + [anon_sym_BSLASHSmartcite] = ACTIONS(5277), + [anon_sym_BSLASHsupercite] = ACTIONS(5277), + [anon_sym_BSLASHautocite] = ACTIONS(5277), + [anon_sym_BSLASHAutocite] = ACTIONS(5277), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHvolcite] = ACTIONS(5277), + [anon_sym_BSLASHVolcite] = ACTIONS(5277), + [anon_sym_BSLASHpvolcite] = ACTIONS(5277), + [anon_sym_BSLASHPvolcite] = ACTIONS(5277), + [anon_sym_BSLASHfvolcite] = ACTIONS(5277), + [anon_sym_BSLASHftvolcite] = ACTIONS(5277), + [anon_sym_BSLASHsvolcite] = ACTIONS(5277), + [anon_sym_BSLASHSvolcite] = ACTIONS(5277), + [anon_sym_BSLASHtvolcite] = ACTIONS(5277), + [anon_sym_BSLASHTvolcite] = ACTIONS(5277), + [anon_sym_BSLASHavolcite] = ACTIONS(5277), + [anon_sym_BSLASHAvolcite] = ACTIONS(5277), + [anon_sym_BSLASHnotecite] = ACTIONS(5277), + [anon_sym_BSLASHNotecite] = ACTIONS(5277), + [anon_sym_BSLASHpnotecite] = ACTIONS(5277), + [anon_sym_BSLASHPnotecite] = ACTIONS(5277), + [anon_sym_BSLASHfnotecite] = ACTIONS(5277), + [anon_sym_BSLASHlabel] = ACTIONS(5277), + [anon_sym_BSLASHref] = ACTIONS(5277), + [anon_sym_BSLASHeqref] = ACTIONS(5277), + [anon_sym_BSLASHvref] = ACTIONS(5277), + [anon_sym_BSLASHVref] = ACTIONS(5277), + [anon_sym_BSLASHautoref] = ACTIONS(5277), + [anon_sym_BSLASHpageref] = ACTIONS(5277), + [anon_sym_BSLASHcref] = ACTIONS(5277), + [anon_sym_BSLASHCref] = ACTIONS(5277), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnameCref] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHlabelcref] = ACTIONS(5277), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCrefrange] = ACTIONS(5277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnewlabel] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), + [anon_sym_BSLASHdef] = ACTIONS(5277), + [anon_sym_BSLASHlet] = ACTIONS(5277), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), + [anon_sym_BSLASHgls] = ACTIONS(5277), + [anon_sym_BSLASHGls] = ACTIONS(5277), + [anon_sym_BSLASHGLS] = ACTIONS(5277), + [anon_sym_BSLASHglspl] = ACTIONS(5277), + [anon_sym_BSLASHGlspl] = ACTIONS(5277), + [anon_sym_BSLASHGLSpl] = ACTIONS(5277), + [anon_sym_BSLASHglsdisp] = ACTIONS(5277), + [anon_sym_BSLASHglslink] = ACTIONS(5277), + [anon_sym_BSLASHglstext] = ACTIONS(5277), + [anon_sym_BSLASHGlstext] = ACTIONS(5277), + [anon_sym_BSLASHGLStext] = ACTIONS(5277), + [anon_sym_BSLASHglsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), + [anon_sym_BSLASHglsplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSplural] = ACTIONS(5277), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHglsname] = ACTIONS(5277), + [anon_sym_BSLASHGlsname] = ACTIONS(5277), + [anon_sym_BSLASHGLSname] = ACTIONS(5277), + [anon_sym_BSLASHglssymbol] = ACTIONS(5277), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), + [anon_sym_BSLASHglsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), + [anon_sym_BSLASHglsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), + [anon_sym_BSLASHglsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), + [anon_sym_BSLASHglsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), + [anon_sym_BSLASHglsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), + [anon_sym_BSLASHnewacronym] = ACTIONS(5277), + [anon_sym_BSLASHacrshort] = ACTIONS(5277), + [anon_sym_BSLASHAcrshort] = ACTIONS(5277), + [anon_sym_BSLASHACRshort] = ACTIONS(5277), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), + [anon_sym_BSLASHacrlong] = ACTIONS(5277), + [anon_sym_BSLASHAcrlong] = ACTIONS(5277), + [anon_sym_BSLASHACRlong] = ACTIONS(5277), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), + [anon_sym_BSLASHacrfull] = ACTIONS(5277), + [anon_sym_BSLASHAcrfull] = ACTIONS(5277), + [anon_sym_BSLASHACRfull] = ACTIONS(5277), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), + [anon_sym_BSLASHacs] = ACTIONS(5277), + [anon_sym_BSLASHAcs] = ACTIONS(5277), + [anon_sym_BSLASHacsp] = ACTIONS(5277), + [anon_sym_BSLASHAcsp] = ACTIONS(5277), + [anon_sym_BSLASHacl] = ACTIONS(5277), + [anon_sym_BSLASHAcl] = ACTIONS(5277), + [anon_sym_BSLASHaclp] = ACTIONS(5277), + [anon_sym_BSLASHAclp] = ACTIONS(5277), + [anon_sym_BSLASHacf] = ACTIONS(5277), + [anon_sym_BSLASHAcf] = ACTIONS(5277), + [anon_sym_BSLASHacfp] = ACTIONS(5277), + [anon_sym_BSLASHAcfp] = ACTIONS(5277), + [anon_sym_BSLASHac] = ACTIONS(5277), + [anon_sym_BSLASHAc] = ACTIONS(5277), + [anon_sym_BSLASHacp] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), + [anon_sym_BSLASHcolor] = ACTIONS(5277), + [anon_sym_BSLASHcolorbox] = ACTIONS(5277), + [anon_sym_BSLASHtextcolor] = ACTIONS(5277), + [anon_sym_BSLASHpagecolor] = ACTIONS(5277), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), + [anon_sym_BSLASHtext] = ACTIONS(5277), + [anon_sym_BSLASHintertext] = ACTIONS(5277), + [anon_sym_shortintertext] = ACTIONS(5277), }, - [989] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_BSLASHpart] = ACTIONS(5171), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddpart] = ACTIONS(5171), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHchapter] = ACTIONS(5171), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddchap] = ACTIONS(5171), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsection] = ACTIONS(5171), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddsec] = ACTIONS(5171), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHparagraph] = ACTIONS(5171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5171), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHitem] = ACTIONS(5171), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASHbegin] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), + [832] = { + [sym_command_name] = ACTIONS(5273), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5273), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(5271), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_COMMA] = ACTIONS(5271), + [anon_sym_EQ] = ACTIONS(5271), + [anon_sym_BSLASHpart] = ACTIONS(5273), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddpart] = ACTIONS(5273), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHchapter] = ACTIONS(5273), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddchap] = ACTIONS(5273), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsection] = ACTIONS(5273), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddsec] = ACTIONS(5273), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHparagraph] = ACTIONS(5273), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHitem] = ACTIONS(5273), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(5271), + [sym_word] = ACTIONS(5273), + [sym_placeholder] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5273), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5273), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym__] = ACTIONS(5273), + [anon_sym_LT] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5273), + [anon_sym_BANG] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5273), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_SQUOTE] = ACTIONS(5273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), + [anon_sym_DOLLAR] = ACTIONS(5273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), + [anon_sym_BSLASHbegin] = ACTIONS(5273), + [anon_sym_BSLASHusepackage] = ACTIONS(5273), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), + [anon_sym_BSLASHinclude] = ACTIONS(5273), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), + [anon_sym_BSLASHinput] = ACTIONS(5273), + [anon_sym_BSLASHsubfile] = ACTIONS(5273), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), + [anon_sym_BSLASHbibliography] = ACTIONS(5273), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), + [anon_sym_BSLASHincludesvg] = ACTIONS(5273), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), + [anon_sym_BSLASHimport] = ACTIONS(5273), + [anon_sym_BSLASHsubimport] = ACTIONS(5273), + [anon_sym_BSLASHinputfrom] = ACTIONS(5273), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), + [anon_sym_BSLASHincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHcaption] = ACTIONS(5273), + [anon_sym_BSLASHcite] = ACTIONS(5273), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCite] = ACTIONS(5273), + [anon_sym_BSLASHnocite] = ACTIONS(5273), + [anon_sym_BSLASHcitet] = ACTIONS(5273), + [anon_sym_BSLASHcitep] = ACTIONS(5273), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteauthor] = ACTIONS(5273), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitetitle] = ACTIONS(5273), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteyear] = ACTIONS(5273), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitedate] = ACTIONS(5273), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteurl] = ACTIONS(5273), + [anon_sym_BSLASHfullcite] = ACTIONS(5273), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), + [anon_sym_BSLASHcitealt] = ACTIONS(5273), + [anon_sym_BSLASHcitealp] = ACTIONS(5273), + [anon_sym_BSLASHcitetext] = ACTIONS(5273), + [anon_sym_BSLASHparencite] = ACTIONS(5273), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHParencite] = ACTIONS(5273), + [anon_sym_BSLASHfootcite] = ACTIONS(5273), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), + [anon_sym_BSLASHtextcite] = ACTIONS(5273), + [anon_sym_BSLASHTextcite] = ACTIONS(5273), + [anon_sym_BSLASHsmartcite] = ACTIONS(5273), + [anon_sym_BSLASHSmartcite] = ACTIONS(5273), + [anon_sym_BSLASHsupercite] = ACTIONS(5273), + [anon_sym_BSLASHautocite] = ACTIONS(5273), + [anon_sym_BSLASHAutocite] = ACTIONS(5273), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHvolcite] = ACTIONS(5273), + [anon_sym_BSLASHVolcite] = ACTIONS(5273), + [anon_sym_BSLASHpvolcite] = ACTIONS(5273), + [anon_sym_BSLASHPvolcite] = ACTIONS(5273), + [anon_sym_BSLASHfvolcite] = ACTIONS(5273), + [anon_sym_BSLASHftvolcite] = ACTIONS(5273), + [anon_sym_BSLASHsvolcite] = ACTIONS(5273), + [anon_sym_BSLASHSvolcite] = ACTIONS(5273), + [anon_sym_BSLASHtvolcite] = ACTIONS(5273), + [anon_sym_BSLASHTvolcite] = ACTIONS(5273), + [anon_sym_BSLASHavolcite] = ACTIONS(5273), + [anon_sym_BSLASHAvolcite] = ACTIONS(5273), + [anon_sym_BSLASHnotecite] = ACTIONS(5273), + [anon_sym_BSLASHNotecite] = ACTIONS(5273), + [anon_sym_BSLASHpnotecite] = ACTIONS(5273), + [anon_sym_BSLASHPnotecite] = ACTIONS(5273), + [anon_sym_BSLASHfnotecite] = ACTIONS(5273), + [anon_sym_BSLASHlabel] = ACTIONS(5273), + [anon_sym_BSLASHref] = ACTIONS(5273), + [anon_sym_BSLASHeqref] = ACTIONS(5273), + [anon_sym_BSLASHvref] = ACTIONS(5273), + [anon_sym_BSLASHVref] = ACTIONS(5273), + [anon_sym_BSLASHautoref] = ACTIONS(5273), + [anon_sym_BSLASHpageref] = ACTIONS(5273), + [anon_sym_BSLASHcref] = ACTIONS(5273), + [anon_sym_BSLASHCref] = ACTIONS(5273), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnameCref] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHlabelcref] = ACTIONS(5273), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCrefrange] = ACTIONS(5273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdef] = ACTIONS(5273), + [anon_sym_BSLASHlet] = ACTIONS(5273), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), + [anon_sym_BSLASHgls] = ACTIONS(5273), + [anon_sym_BSLASHGls] = ACTIONS(5273), + [anon_sym_BSLASHGLS] = ACTIONS(5273), + [anon_sym_BSLASHglspl] = ACTIONS(5273), + [anon_sym_BSLASHGlspl] = ACTIONS(5273), + [anon_sym_BSLASHGLSpl] = ACTIONS(5273), + [anon_sym_BSLASHglsdisp] = ACTIONS(5273), + [anon_sym_BSLASHglslink] = ACTIONS(5273), + [anon_sym_BSLASHglstext] = ACTIONS(5273), + [anon_sym_BSLASHGlstext] = ACTIONS(5273), + [anon_sym_BSLASHGLStext] = ACTIONS(5273), + [anon_sym_BSLASHglsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), + [anon_sym_BSLASHglsplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSplural] = ACTIONS(5273), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHglsname] = ACTIONS(5273), + [anon_sym_BSLASHGlsname] = ACTIONS(5273), + [anon_sym_BSLASHGLSname] = ACTIONS(5273), + [anon_sym_BSLASHglssymbol] = ACTIONS(5273), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), + [anon_sym_BSLASHglsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), + [anon_sym_BSLASHglsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), + [anon_sym_BSLASHglsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), + [anon_sym_BSLASHglsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), + [anon_sym_BSLASHglsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), + [anon_sym_BSLASHnewacronym] = ACTIONS(5273), + [anon_sym_BSLASHacrshort] = ACTIONS(5273), + [anon_sym_BSLASHAcrshort] = ACTIONS(5273), + [anon_sym_BSLASHACRshort] = ACTIONS(5273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), + [anon_sym_BSLASHacrlong] = ACTIONS(5273), + [anon_sym_BSLASHAcrlong] = ACTIONS(5273), + [anon_sym_BSLASHACRlong] = ACTIONS(5273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), + [anon_sym_BSLASHacrfull] = ACTIONS(5273), + [anon_sym_BSLASHAcrfull] = ACTIONS(5273), + [anon_sym_BSLASHACRfull] = ACTIONS(5273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), + [anon_sym_BSLASHacs] = ACTIONS(5273), + [anon_sym_BSLASHAcs] = ACTIONS(5273), + [anon_sym_BSLASHacsp] = ACTIONS(5273), + [anon_sym_BSLASHAcsp] = ACTIONS(5273), + [anon_sym_BSLASHacl] = ACTIONS(5273), + [anon_sym_BSLASHAcl] = ACTIONS(5273), + [anon_sym_BSLASHaclp] = ACTIONS(5273), + [anon_sym_BSLASHAclp] = ACTIONS(5273), + [anon_sym_BSLASHacf] = ACTIONS(5273), + [anon_sym_BSLASHAcf] = ACTIONS(5273), + [anon_sym_BSLASHacfp] = ACTIONS(5273), + [anon_sym_BSLASHAcfp] = ACTIONS(5273), + [anon_sym_BSLASHac] = ACTIONS(5273), + [anon_sym_BSLASHAc] = ACTIONS(5273), + [anon_sym_BSLASHacp] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), + [anon_sym_BSLASHcolor] = ACTIONS(5273), + [anon_sym_BSLASHcolorbox] = ACTIONS(5273), + [anon_sym_BSLASHtextcolor] = ACTIONS(5273), + [anon_sym_BSLASHpagecolor] = ACTIONS(5273), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), + [anon_sym_BSLASHtext] = ACTIONS(5273), + [anon_sym_BSLASHintertext] = ACTIONS(5273), + [anon_sym_shortintertext] = ACTIONS(5273), }, - [990] = { - [sym_command_name] = ACTIONS(5097), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_BSLASHpart] = ACTIONS(5097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddpart] = ACTIONS(5097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHchapter] = ACTIONS(5097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddchap] = ACTIONS(5097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsection] = ACTIONS(5097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddsec] = ACTIONS(5097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHparagraph] = ACTIONS(5097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHitem] = ACTIONS(5097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), - [anon_sym_BSLASHbegin] = ACTIONS(5097), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), + [833] = { + [sym_command_name] = ACTIONS(5269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5269), + [anon_sym_LPAREN] = ACTIONS(5267), + [anon_sym_RPAREN] = ACTIONS(5267), + [anon_sym_LBRACK] = ACTIONS(5267), + [anon_sym_RBRACK] = ACTIONS(5267), + [anon_sym_COMMA] = ACTIONS(5267), + [anon_sym_EQ] = ACTIONS(5267), + [anon_sym_BSLASHpart] = ACTIONS(5269), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddpart] = ACTIONS(5269), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5267), + [anon_sym_BSLASHchapter] = ACTIONS(5269), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddchap] = ACTIONS(5269), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsection] = ACTIONS(5269), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddsec] = ACTIONS(5269), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubsection] = ACTIONS(5269), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5269), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHparagraph] = ACTIONS(5269), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5269), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5267), + [anon_sym_BSLASHitem] = ACTIONS(5269), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5267), + [anon_sym_LBRACE] = ACTIONS(5267), + [sym_word] = ACTIONS(5269), + [sym_placeholder] = ACTIONS(5267), + [anon_sym_PLUS] = ACTIONS(5269), + [anon_sym_DASH] = ACTIONS(5269), + [anon_sym_STAR] = ACTIONS(5269), + [anon_sym_SLASH] = ACTIONS(5269), + [anon_sym_CARET] = ACTIONS(5269), + [anon_sym__] = ACTIONS(5269), + [anon_sym_LT] = ACTIONS(5269), + [anon_sym_GT] = ACTIONS(5269), + [anon_sym_BANG] = ACTIONS(5269), + [anon_sym_PIPE] = ACTIONS(5269), + [anon_sym_COLON] = ACTIONS(5269), + [anon_sym_SQUOTE] = ACTIONS(5269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), + [anon_sym_DOLLAR] = ACTIONS(5269), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), + [anon_sym_BSLASHbegin] = ACTIONS(5269), + [anon_sym_BSLASHusepackage] = ACTIONS(5269), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), + [anon_sym_BSLASHinclude] = ACTIONS(5269), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), + [anon_sym_BSLASHinput] = ACTIONS(5269), + [anon_sym_BSLASHsubfile] = ACTIONS(5269), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), + [anon_sym_BSLASHbibliography] = ACTIONS(5269), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), + [anon_sym_BSLASHincludesvg] = ACTIONS(5269), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), + [anon_sym_BSLASHimport] = ACTIONS(5269), + [anon_sym_BSLASHsubimport] = ACTIONS(5269), + [anon_sym_BSLASHinputfrom] = ACTIONS(5269), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), + [anon_sym_BSLASHincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHcaption] = ACTIONS(5269), + [anon_sym_BSLASHcite] = ACTIONS(5269), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCite] = ACTIONS(5269), + [anon_sym_BSLASHnocite] = ACTIONS(5269), + [anon_sym_BSLASHcitet] = ACTIONS(5269), + [anon_sym_BSLASHcitep] = ACTIONS(5269), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteauthor] = ACTIONS(5269), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitetitle] = ACTIONS(5269), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteyear] = ACTIONS(5269), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitedate] = ACTIONS(5269), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteurl] = ACTIONS(5269), + [anon_sym_BSLASHfullcite] = ACTIONS(5269), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), + [anon_sym_BSLASHcitealt] = ACTIONS(5269), + [anon_sym_BSLASHcitealp] = ACTIONS(5269), + [anon_sym_BSLASHcitetext] = ACTIONS(5269), + [anon_sym_BSLASHparencite] = ACTIONS(5269), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHParencite] = ACTIONS(5269), + [anon_sym_BSLASHfootcite] = ACTIONS(5269), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), + [anon_sym_BSLASHtextcite] = ACTIONS(5269), + [anon_sym_BSLASHTextcite] = ACTIONS(5269), + [anon_sym_BSLASHsmartcite] = ACTIONS(5269), + [anon_sym_BSLASHSmartcite] = ACTIONS(5269), + [anon_sym_BSLASHsupercite] = ACTIONS(5269), + [anon_sym_BSLASHautocite] = ACTIONS(5269), + [anon_sym_BSLASHAutocite] = ACTIONS(5269), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHvolcite] = ACTIONS(5269), + [anon_sym_BSLASHVolcite] = ACTIONS(5269), + [anon_sym_BSLASHpvolcite] = ACTIONS(5269), + [anon_sym_BSLASHPvolcite] = ACTIONS(5269), + [anon_sym_BSLASHfvolcite] = ACTIONS(5269), + [anon_sym_BSLASHftvolcite] = ACTIONS(5269), + [anon_sym_BSLASHsvolcite] = ACTIONS(5269), + [anon_sym_BSLASHSvolcite] = ACTIONS(5269), + [anon_sym_BSLASHtvolcite] = ACTIONS(5269), + [anon_sym_BSLASHTvolcite] = ACTIONS(5269), + [anon_sym_BSLASHavolcite] = ACTIONS(5269), + [anon_sym_BSLASHAvolcite] = ACTIONS(5269), + [anon_sym_BSLASHnotecite] = ACTIONS(5269), + [anon_sym_BSLASHNotecite] = ACTIONS(5269), + [anon_sym_BSLASHpnotecite] = ACTIONS(5269), + [anon_sym_BSLASHPnotecite] = ACTIONS(5269), + [anon_sym_BSLASHfnotecite] = ACTIONS(5269), + [anon_sym_BSLASHlabel] = ACTIONS(5269), + [anon_sym_BSLASHref] = ACTIONS(5269), + [anon_sym_BSLASHeqref] = ACTIONS(5269), + [anon_sym_BSLASHvref] = ACTIONS(5269), + [anon_sym_BSLASHVref] = ACTIONS(5269), + [anon_sym_BSLASHautoref] = ACTIONS(5269), + [anon_sym_BSLASHpageref] = ACTIONS(5269), + [anon_sym_BSLASHcref] = ACTIONS(5269), + [anon_sym_BSLASHCref] = ACTIONS(5269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnameCref] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHlabelcref] = ACTIONS(5269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCrefrange] = ACTIONS(5269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnewlabel] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), + [anon_sym_BSLASHdef] = ACTIONS(5269), + [anon_sym_BSLASHlet] = ACTIONS(5269), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), + [anon_sym_BSLASHgls] = ACTIONS(5269), + [anon_sym_BSLASHGls] = ACTIONS(5269), + [anon_sym_BSLASHGLS] = ACTIONS(5269), + [anon_sym_BSLASHglspl] = ACTIONS(5269), + [anon_sym_BSLASHGlspl] = ACTIONS(5269), + [anon_sym_BSLASHGLSpl] = ACTIONS(5269), + [anon_sym_BSLASHglsdisp] = ACTIONS(5269), + [anon_sym_BSLASHglslink] = ACTIONS(5269), + [anon_sym_BSLASHglstext] = ACTIONS(5269), + [anon_sym_BSLASHGlstext] = ACTIONS(5269), + [anon_sym_BSLASHGLStext] = ACTIONS(5269), + [anon_sym_BSLASHglsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), + [anon_sym_BSLASHglsplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSplural] = ACTIONS(5269), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHglsname] = ACTIONS(5269), + [anon_sym_BSLASHGlsname] = ACTIONS(5269), + [anon_sym_BSLASHGLSname] = ACTIONS(5269), + [anon_sym_BSLASHglssymbol] = ACTIONS(5269), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), + [anon_sym_BSLASHglsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), + [anon_sym_BSLASHglsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), + [anon_sym_BSLASHglsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), + [anon_sym_BSLASHglsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), + [anon_sym_BSLASHglsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), + [anon_sym_BSLASHnewacronym] = ACTIONS(5269), + [anon_sym_BSLASHacrshort] = ACTIONS(5269), + [anon_sym_BSLASHAcrshort] = ACTIONS(5269), + [anon_sym_BSLASHACRshort] = ACTIONS(5269), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), + [anon_sym_BSLASHacrlong] = ACTIONS(5269), + [anon_sym_BSLASHAcrlong] = ACTIONS(5269), + [anon_sym_BSLASHACRlong] = ACTIONS(5269), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), + [anon_sym_BSLASHacrfull] = ACTIONS(5269), + [anon_sym_BSLASHAcrfull] = ACTIONS(5269), + [anon_sym_BSLASHACRfull] = ACTIONS(5269), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), + [anon_sym_BSLASHacs] = ACTIONS(5269), + [anon_sym_BSLASHAcs] = ACTIONS(5269), + [anon_sym_BSLASHacsp] = ACTIONS(5269), + [anon_sym_BSLASHAcsp] = ACTIONS(5269), + [anon_sym_BSLASHacl] = ACTIONS(5269), + [anon_sym_BSLASHAcl] = ACTIONS(5269), + [anon_sym_BSLASHaclp] = ACTIONS(5269), + [anon_sym_BSLASHAclp] = ACTIONS(5269), + [anon_sym_BSLASHacf] = ACTIONS(5269), + [anon_sym_BSLASHAcf] = ACTIONS(5269), + [anon_sym_BSLASHacfp] = ACTIONS(5269), + [anon_sym_BSLASHAcfp] = ACTIONS(5269), + [anon_sym_BSLASHac] = ACTIONS(5269), + [anon_sym_BSLASHAc] = ACTIONS(5269), + [anon_sym_BSLASHacp] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), + [anon_sym_BSLASHcolor] = ACTIONS(5269), + [anon_sym_BSLASHcolorbox] = ACTIONS(5269), + [anon_sym_BSLASHtextcolor] = ACTIONS(5269), + [anon_sym_BSLASHpagecolor] = ACTIONS(5269), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), + [anon_sym_BSLASHtext] = ACTIONS(5269), + [anon_sym_BSLASHintertext] = ACTIONS(5269), + [anon_sym_shortintertext] = ACTIONS(5269), + }, + [834] = { + [sym_command_name] = ACTIONS(5265), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5265), + [anon_sym_LPAREN] = ACTIONS(5263), + [anon_sym_RPAREN] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(5263), + [anon_sym_RBRACK] = ACTIONS(5263), + [anon_sym_COMMA] = ACTIONS(5263), + [anon_sym_EQ] = ACTIONS(5263), + [anon_sym_BSLASHpart] = ACTIONS(5265), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddpart] = ACTIONS(5265), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5263), + [anon_sym_BSLASHchapter] = ACTIONS(5265), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddchap] = ACTIONS(5265), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsection] = ACTIONS(5265), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddsec] = ACTIONS(5265), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubsection] = ACTIONS(5265), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5265), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHparagraph] = ACTIONS(5265), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5265), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5263), + [anon_sym_BSLASHitem] = ACTIONS(5265), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5263), + [anon_sym_LBRACE] = ACTIONS(5263), + [sym_word] = ACTIONS(5265), + [sym_placeholder] = ACTIONS(5263), + [anon_sym_PLUS] = ACTIONS(5265), + [anon_sym_DASH] = ACTIONS(5265), + [anon_sym_STAR] = ACTIONS(5265), + [anon_sym_SLASH] = ACTIONS(5265), + [anon_sym_CARET] = ACTIONS(5265), + [anon_sym__] = ACTIONS(5265), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_GT] = ACTIONS(5265), + [anon_sym_BANG] = ACTIONS(5265), + [anon_sym_PIPE] = ACTIONS(5265), + [anon_sym_COLON] = ACTIONS(5265), + [anon_sym_SQUOTE] = ACTIONS(5265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5263), + [anon_sym_DOLLAR] = ACTIONS(5265), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5263), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5263), + [anon_sym_BSLASHbegin] = ACTIONS(5265), + [anon_sym_BSLASHusepackage] = ACTIONS(5265), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), + [anon_sym_BSLASHinclude] = ACTIONS(5265), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), + [anon_sym_BSLASHinput] = ACTIONS(5265), + [anon_sym_BSLASHsubfile] = ACTIONS(5265), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), + [anon_sym_BSLASHbibliography] = ACTIONS(5265), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), + [anon_sym_BSLASHincludesvg] = ACTIONS(5265), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), + [anon_sym_BSLASHimport] = ACTIONS(5265), + [anon_sym_BSLASHsubimport] = ACTIONS(5265), + [anon_sym_BSLASHinputfrom] = ACTIONS(5265), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), + [anon_sym_BSLASHincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHcaption] = ACTIONS(5265), + [anon_sym_BSLASHcite] = ACTIONS(5265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCite] = ACTIONS(5265), + [anon_sym_BSLASHnocite] = ACTIONS(5265), + [anon_sym_BSLASHcitet] = ACTIONS(5265), + [anon_sym_BSLASHcitep] = ACTIONS(5265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor] = ACTIONS(5265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle] = ACTIONS(5265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteyear] = ACTIONS(5265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitedate] = ACTIONS(5265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteurl] = ACTIONS(5265), + [anon_sym_BSLASHfullcite] = ACTIONS(5265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), + [anon_sym_BSLASHcitealt] = ACTIONS(5265), + [anon_sym_BSLASHcitealp] = ACTIONS(5265), + [anon_sym_BSLASHcitetext] = ACTIONS(5265), + [anon_sym_BSLASHparencite] = ACTIONS(5265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHParencite] = ACTIONS(5265), + [anon_sym_BSLASHfootcite] = ACTIONS(5265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), + [anon_sym_BSLASHtextcite] = ACTIONS(5265), + [anon_sym_BSLASHTextcite] = ACTIONS(5265), + [anon_sym_BSLASHsmartcite] = ACTIONS(5265), + [anon_sym_BSLASHSmartcite] = ACTIONS(5265), + [anon_sym_BSLASHsupercite] = ACTIONS(5265), + [anon_sym_BSLASHautocite] = ACTIONS(5265), + [anon_sym_BSLASHAutocite] = ACTIONS(5265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHvolcite] = ACTIONS(5265), + [anon_sym_BSLASHVolcite] = ACTIONS(5265), + [anon_sym_BSLASHpvolcite] = ACTIONS(5265), + [anon_sym_BSLASHPvolcite] = ACTIONS(5265), + [anon_sym_BSLASHfvolcite] = ACTIONS(5265), + [anon_sym_BSLASHftvolcite] = ACTIONS(5265), + [anon_sym_BSLASHsvolcite] = ACTIONS(5265), + [anon_sym_BSLASHSvolcite] = ACTIONS(5265), + [anon_sym_BSLASHtvolcite] = ACTIONS(5265), + [anon_sym_BSLASHTvolcite] = ACTIONS(5265), + [anon_sym_BSLASHavolcite] = ACTIONS(5265), + [anon_sym_BSLASHAvolcite] = ACTIONS(5265), + [anon_sym_BSLASHnotecite] = ACTIONS(5265), + [anon_sym_BSLASHNotecite] = ACTIONS(5265), + [anon_sym_BSLASHpnotecite] = ACTIONS(5265), + [anon_sym_BSLASHPnotecite] = ACTIONS(5265), + [anon_sym_BSLASHfnotecite] = ACTIONS(5265), + [anon_sym_BSLASHlabel] = ACTIONS(5265), + [anon_sym_BSLASHref] = ACTIONS(5265), + [anon_sym_BSLASHeqref] = ACTIONS(5265), + [anon_sym_BSLASHvref] = ACTIONS(5265), + [anon_sym_BSLASHVref] = ACTIONS(5265), + [anon_sym_BSLASHautoref] = ACTIONS(5265), + [anon_sym_BSLASHpageref] = ACTIONS(5265), + [anon_sym_BSLASHcref] = ACTIONS(5265), + [anon_sym_BSLASHCref] = ACTIONS(5265), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnameCref] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHlabelcref] = ACTIONS(5265), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange] = ACTIONS(5265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnewlabel] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), + [anon_sym_BSLASHdef] = ACTIONS(5265), + [anon_sym_BSLASHlet] = ACTIONS(5265), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), + [anon_sym_BSLASHgls] = ACTIONS(5265), + [anon_sym_BSLASHGls] = ACTIONS(5265), + [anon_sym_BSLASHGLS] = ACTIONS(5265), + [anon_sym_BSLASHglspl] = ACTIONS(5265), + [anon_sym_BSLASHGlspl] = ACTIONS(5265), + [anon_sym_BSLASHGLSpl] = ACTIONS(5265), + [anon_sym_BSLASHglsdisp] = ACTIONS(5265), + [anon_sym_BSLASHglslink] = ACTIONS(5265), + [anon_sym_BSLASHglstext] = ACTIONS(5265), + [anon_sym_BSLASHGlstext] = ACTIONS(5265), + [anon_sym_BSLASHGLStext] = ACTIONS(5265), + [anon_sym_BSLASHglsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), + [anon_sym_BSLASHglsplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSplural] = ACTIONS(5265), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHglsname] = ACTIONS(5265), + [anon_sym_BSLASHGlsname] = ACTIONS(5265), + [anon_sym_BSLASHGLSname] = ACTIONS(5265), + [anon_sym_BSLASHglssymbol] = ACTIONS(5265), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), + [anon_sym_BSLASHglsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), + [anon_sym_BSLASHglsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), + [anon_sym_BSLASHglsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), + [anon_sym_BSLASHglsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), + [anon_sym_BSLASHglsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), + [anon_sym_BSLASHnewacronym] = ACTIONS(5265), + [anon_sym_BSLASHacrshort] = ACTIONS(5265), + [anon_sym_BSLASHAcrshort] = ACTIONS(5265), + [anon_sym_BSLASHACRshort] = ACTIONS(5265), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), + [anon_sym_BSLASHacrlong] = ACTIONS(5265), + [anon_sym_BSLASHAcrlong] = ACTIONS(5265), + [anon_sym_BSLASHACRlong] = ACTIONS(5265), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), + [anon_sym_BSLASHacrfull] = ACTIONS(5265), + [anon_sym_BSLASHAcrfull] = ACTIONS(5265), + [anon_sym_BSLASHACRfull] = ACTIONS(5265), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), + [anon_sym_BSLASHacs] = ACTIONS(5265), + [anon_sym_BSLASHAcs] = ACTIONS(5265), + [anon_sym_BSLASHacsp] = ACTIONS(5265), + [anon_sym_BSLASHAcsp] = ACTIONS(5265), + [anon_sym_BSLASHacl] = ACTIONS(5265), + [anon_sym_BSLASHAcl] = ACTIONS(5265), + [anon_sym_BSLASHaclp] = ACTIONS(5265), + [anon_sym_BSLASHAclp] = ACTIONS(5265), + [anon_sym_BSLASHacf] = ACTIONS(5265), + [anon_sym_BSLASHAcf] = ACTIONS(5265), + [anon_sym_BSLASHacfp] = ACTIONS(5265), + [anon_sym_BSLASHAcfp] = ACTIONS(5265), + [anon_sym_BSLASHac] = ACTIONS(5265), + [anon_sym_BSLASHAc] = ACTIONS(5265), + [anon_sym_BSLASHacp] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), + [anon_sym_BSLASHcolor] = ACTIONS(5265), + [anon_sym_BSLASHcolorbox] = ACTIONS(5265), + [anon_sym_BSLASHtextcolor] = ACTIONS(5265), + [anon_sym_BSLASHpagecolor] = ACTIONS(5265), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), + [anon_sym_BSLASHtext] = ACTIONS(5265), + [anon_sym_BSLASHintertext] = ACTIONS(5265), + [anon_sym_shortintertext] = ACTIONS(5265), + }, + [835] = { + [sym_command_name] = ACTIONS(5261), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5261), + [anon_sym_LPAREN] = ACTIONS(5259), + [anon_sym_RPAREN] = ACTIONS(5259), + [anon_sym_LBRACK] = ACTIONS(5259), + [anon_sym_RBRACK] = ACTIONS(5259), + [anon_sym_COMMA] = ACTIONS(5259), + [anon_sym_EQ] = ACTIONS(5259), + [anon_sym_BSLASHpart] = ACTIONS(5261), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddpart] = ACTIONS(5261), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5259), + [anon_sym_BSLASHchapter] = ACTIONS(5261), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddchap] = ACTIONS(5261), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsection] = ACTIONS(5261), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddsec] = ACTIONS(5261), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubsection] = ACTIONS(5261), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5261), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHparagraph] = ACTIONS(5261), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5261), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5259), + [anon_sym_BSLASHitem] = ACTIONS(5261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5259), + [anon_sym_LBRACE] = ACTIONS(5259), + [sym_word] = ACTIONS(5261), + [sym_placeholder] = ACTIONS(5259), + [anon_sym_PLUS] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(5261), + [anon_sym_STAR] = ACTIONS(5261), + [anon_sym_SLASH] = ACTIONS(5261), + [anon_sym_CARET] = ACTIONS(5261), + [anon_sym__] = ACTIONS(5261), + [anon_sym_LT] = ACTIONS(5261), + [anon_sym_GT] = ACTIONS(5261), + [anon_sym_BANG] = ACTIONS(5261), + [anon_sym_PIPE] = ACTIONS(5261), + [anon_sym_COLON] = ACTIONS(5261), + [anon_sym_SQUOTE] = ACTIONS(5261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5259), + [anon_sym_DOLLAR] = ACTIONS(5261), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5259), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5259), + [anon_sym_BSLASHbegin] = ACTIONS(5261), + [anon_sym_BSLASHusepackage] = ACTIONS(5261), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), + [anon_sym_BSLASHinclude] = ACTIONS(5261), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), + [anon_sym_BSLASHinput] = ACTIONS(5261), + [anon_sym_BSLASHsubfile] = ACTIONS(5261), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), + [anon_sym_BSLASHbibliography] = ACTIONS(5261), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), + [anon_sym_BSLASHincludesvg] = ACTIONS(5261), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), + [anon_sym_BSLASHimport] = ACTIONS(5261), + [anon_sym_BSLASHsubimport] = ACTIONS(5261), + [anon_sym_BSLASHinputfrom] = ACTIONS(5261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), + [anon_sym_BSLASHincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHcaption] = ACTIONS(5261), + [anon_sym_BSLASHcite] = ACTIONS(5261), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCite] = ACTIONS(5261), + [anon_sym_BSLASHnocite] = ACTIONS(5261), + [anon_sym_BSLASHcitet] = ACTIONS(5261), + [anon_sym_BSLASHcitep] = ACTIONS(5261), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteauthor] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitetitle] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteyear] = ACTIONS(5261), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitedate] = ACTIONS(5261), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteurl] = ACTIONS(5261), + [anon_sym_BSLASHfullcite] = ACTIONS(5261), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), + [anon_sym_BSLASHcitealt] = ACTIONS(5261), + [anon_sym_BSLASHcitealp] = ACTIONS(5261), + [anon_sym_BSLASHcitetext] = ACTIONS(5261), + [anon_sym_BSLASHparencite] = ACTIONS(5261), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHParencite] = ACTIONS(5261), + [anon_sym_BSLASHfootcite] = ACTIONS(5261), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), + [anon_sym_BSLASHtextcite] = ACTIONS(5261), + [anon_sym_BSLASHTextcite] = ACTIONS(5261), + [anon_sym_BSLASHsmartcite] = ACTIONS(5261), + [anon_sym_BSLASHSmartcite] = ACTIONS(5261), + [anon_sym_BSLASHsupercite] = ACTIONS(5261), + [anon_sym_BSLASHautocite] = ACTIONS(5261), + [anon_sym_BSLASHAutocite] = ACTIONS(5261), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHvolcite] = ACTIONS(5261), + [anon_sym_BSLASHVolcite] = ACTIONS(5261), + [anon_sym_BSLASHpvolcite] = ACTIONS(5261), + [anon_sym_BSLASHPvolcite] = ACTIONS(5261), + [anon_sym_BSLASHfvolcite] = ACTIONS(5261), + [anon_sym_BSLASHftvolcite] = ACTIONS(5261), + [anon_sym_BSLASHsvolcite] = ACTIONS(5261), + [anon_sym_BSLASHSvolcite] = ACTIONS(5261), + [anon_sym_BSLASHtvolcite] = ACTIONS(5261), + [anon_sym_BSLASHTvolcite] = ACTIONS(5261), + [anon_sym_BSLASHavolcite] = ACTIONS(5261), + [anon_sym_BSLASHAvolcite] = ACTIONS(5261), + [anon_sym_BSLASHnotecite] = ACTIONS(5261), + [anon_sym_BSLASHNotecite] = ACTIONS(5261), + [anon_sym_BSLASHpnotecite] = ACTIONS(5261), + [anon_sym_BSLASHPnotecite] = ACTIONS(5261), + [anon_sym_BSLASHfnotecite] = ACTIONS(5261), + [anon_sym_BSLASHlabel] = ACTIONS(5261), + [anon_sym_BSLASHref] = ACTIONS(5261), + [anon_sym_BSLASHeqref] = ACTIONS(5261), + [anon_sym_BSLASHvref] = ACTIONS(5261), + [anon_sym_BSLASHVref] = ACTIONS(5261), + [anon_sym_BSLASHautoref] = ACTIONS(5261), + [anon_sym_BSLASHpageref] = ACTIONS(5261), + [anon_sym_BSLASHcref] = ACTIONS(5261), + [anon_sym_BSLASHCref] = ACTIONS(5261), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnameCref] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHlabelcref] = ACTIONS(5261), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCrefrange] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnewlabel] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), + [anon_sym_BSLASHdef] = ACTIONS(5261), + [anon_sym_BSLASHlet] = ACTIONS(5261), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), + [anon_sym_BSLASHgls] = ACTIONS(5261), + [anon_sym_BSLASHGls] = ACTIONS(5261), + [anon_sym_BSLASHGLS] = ACTIONS(5261), + [anon_sym_BSLASHglspl] = ACTIONS(5261), + [anon_sym_BSLASHGlspl] = ACTIONS(5261), + [anon_sym_BSLASHGLSpl] = ACTIONS(5261), + [anon_sym_BSLASHglsdisp] = ACTIONS(5261), + [anon_sym_BSLASHglslink] = ACTIONS(5261), + [anon_sym_BSLASHglstext] = ACTIONS(5261), + [anon_sym_BSLASHGlstext] = ACTIONS(5261), + [anon_sym_BSLASHGLStext] = ACTIONS(5261), + [anon_sym_BSLASHglsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), + [anon_sym_BSLASHglsplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSplural] = ACTIONS(5261), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHglsname] = ACTIONS(5261), + [anon_sym_BSLASHGlsname] = ACTIONS(5261), + [anon_sym_BSLASHGLSname] = ACTIONS(5261), + [anon_sym_BSLASHglssymbol] = ACTIONS(5261), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), + [anon_sym_BSLASHglsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), + [anon_sym_BSLASHglsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), + [anon_sym_BSLASHglsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), + [anon_sym_BSLASHglsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), + [anon_sym_BSLASHglsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), + [anon_sym_BSLASHnewacronym] = ACTIONS(5261), + [anon_sym_BSLASHacrshort] = ACTIONS(5261), + [anon_sym_BSLASHAcrshort] = ACTIONS(5261), + [anon_sym_BSLASHACRshort] = ACTIONS(5261), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), + [anon_sym_BSLASHacrlong] = ACTIONS(5261), + [anon_sym_BSLASHAcrlong] = ACTIONS(5261), + [anon_sym_BSLASHACRlong] = ACTIONS(5261), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), + [anon_sym_BSLASHacrfull] = ACTIONS(5261), + [anon_sym_BSLASHAcrfull] = ACTIONS(5261), + [anon_sym_BSLASHACRfull] = ACTIONS(5261), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), + [anon_sym_BSLASHacs] = ACTIONS(5261), + [anon_sym_BSLASHAcs] = ACTIONS(5261), + [anon_sym_BSLASHacsp] = ACTIONS(5261), + [anon_sym_BSLASHAcsp] = ACTIONS(5261), + [anon_sym_BSLASHacl] = ACTIONS(5261), + [anon_sym_BSLASHAcl] = ACTIONS(5261), + [anon_sym_BSLASHaclp] = ACTIONS(5261), + [anon_sym_BSLASHAclp] = ACTIONS(5261), + [anon_sym_BSLASHacf] = ACTIONS(5261), + [anon_sym_BSLASHAcf] = ACTIONS(5261), + [anon_sym_BSLASHacfp] = ACTIONS(5261), + [anon_sym_BSLASHAcfp] = ACTIONS(5261), + [anon_sym_BSLASHac] = ACTIONS(5261), + [anon_sym_BSLASHAc] = ACTIONS(5261), + [anon_sym_BSLASHacp] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), + [anon_sym_BSLASHcolor] = ACTIONS(5261), + [anon_sym_BSLASHcolorbox] = ACTIONS(5261), + [anon_sym_BSLASHtextcolor] = ACTIONS(5261), + [anon_sym_BSLASHpagecolor] = ACTIONS(5261), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), + [anon_sym_BSLASHtext] = ACTIONS(5261), + [anon_sym_BSLASHintertext] = ACTIONS(5261), + [anon_sym_shortintertext] = ACTIONS(5261), + }, + [836] = { + [sym_command_name] = ACTIONS(5257), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5257), + [anon_sym_LPAREN] = ACTIONS(5255), + [anon_sym_RPAREN] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_RBRACK] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_BSLASHpart] = ACTIONS(5257), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddpart] = ACTIONS(5257), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5255), + [anon_sym_BSLASHchapter] = ACTIONS(5257), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddchap] = ACTIONS(5257), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsection] = ACTIONS(5257), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddsec] = ACTIONS(5257), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubsection] = ACTIONS(5257), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5257), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHparagraph] = ACTIONS(5257), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5255), + [anon_sym_BSLASHitem] = ACTIONS(5257), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(5255), + [sym_word] = ACTIONS(5257), + [sym_placeholder] = ACTIONS(5255), + [anon_sym_PLUS] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(5257), + [anon_sym_STAR] = ACTIONS(5257), + [anon_sym_SLASH] = ACTIONS(5257), + [anon_sym_CARET] = ACTIONS(5257), + [anon_sym__] = ACTIONS(5257), + [anon_sym_LT] = ACTIONS(5257), + [anon_sym_GT] = ACTIONS(5257), + [anon_sym_BANG] = ACTIONS(5257), + [anon_sym_PIPE] = ACTIONS(5257), + [anon_sym_COLON] = ACTIONS(5257), + [anon_sym_SQUOTE] = ACTIONS(5257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), + [anon_sym_DOLLAR] = ACTIONS(5257), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), + [anon_sym_BSLASHbegin] = ACTIONS(5257), + [anon_sym_BSLASHusepackage] = ACTIONS(5257), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), + [anon_sym_BSLASHinclude] = ACTIONS(5257), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), + [anon_sym_BSLASHinput] = ACTIONS(5257), + [anon_sym_BSLASHsubfile] = ACTIONS(5257), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), + [anon_sym_BSLASHbibliography] = ACTIONS(5257), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), + [anon_sym_BSLASHincludesvg] = ACTIONS(5257), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), + [anon_sym_BSLASHimport] = ACTIONS(5257), + [anon_sym_BSLASHsubimport] = ACTIONS(5257), + [anon_sym_BSLASHinputfrom] = ACTIONS(5257), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), + [anon_sym_BSLASHincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHcaption] = ACTIONS(5257), + [anon_sym_BSLASHcite] = ACTIONS(5257), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCite] = ACTIONS(5257), + [anon_sym_BSLASHnocite] = ACTIONS(5257), + [anon_sym_BSLASHcitet] = ACTIONS(5257), + [anon_sym_BSLASHcitep] = ACTIONS(5257), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteauthor] = ACTIONS(5257), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitetitle] = ACTIONS(5257), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteyear] = ACTIONS(5257), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitedate] = ACTIONS(5257), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteurl] = ACTIONS(5257), + [anon_sym_BSLASHfullcite] = ACTIONS(5257), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), + [anon_sym_BSLASHcitealt] = ACTIONS(5257), + [anon_sym_BSLASHcitealp] = ACTIONS(5257), + [anon_sym_BSLASHcitetext] = ACTIONS(5257), + [anon_sym_BSLASHparencite] = ACTIONS(5257), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHParencite] = ACTIONS(5257), + [anon_sym_BSLASHfootcite] = ACTIONS(5257), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), + [anon_sym_BSLASHtextcite] = ACTIONS(5257), + [anon_sym_BSLASHTextcite] = ACTIONS(5257), + [anon_sym_BSLASHsmartcite] = ACTIONS(5257), + [anon_sym_BSLASHSmartcite] = ACTIONS(5257), + [anon_sym_BSLASHsupercite] = ACTIONS(5257), + [anon_sym_BSLASHautocite] = ACTIONS(5257), + [anon_sym_BSLASHAutocite] = ACTIONS(5257), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHvolcite] = ACTIONS(5257), + [anon_sym_BSLASHVolcite] = ACTIONS(5257), + [anon_sym_BSLASHpvolcite] = ACTIONS(5257), + [anon_sym_BSLASHPvolcite] = ACTIONS(5257), + [anon_sym_BSLASHfvolcite] = ACTIONS(5257), + [anon_sym_BSLASHftvolcite] = ACTIONS(5257), + [anon_sym_BSLASHsvolcite] = ACTIONS(5257), + [anon_sym_BSLASHSvolcite] = ACTIONS(5257), + [anon_sym_BSLASHtvolcite] = ACTIONS(5257), + [anon_sym_BSLASHTvolcite] = ACTIONS(5257), + [anon_sym_BSLASHavolcite] = ACTIONS(5257), + [anon_sym_BSLASHAvolcite] = ACTIONS(5257), + [anon_sym_BSLASHnotecite] = ACTIONS(5257), + [anon_sym_BSLASHNotecite] = ACTIONS(5257), + [anon_sym_BSLASHpnotecite] = ACTIONS(5257), + [anon_sym_BSLASHPnotecite] = ACTIONS(5257), + [anon_sym_BSLASHfnotecite] = ACTIONS(5257), + [anon_sym_BSLASHlabel] = ACTIONS(5257), + [anon_sym_BSLASHref] = ACTIONS(5257), + [anon_sym_BSLASHeqref] = ACTIONS(5257), + [anon_sym_BSLASHvref] = ACTIONS(5257), + [anon_sym_BSLASHVref] = ACTIONS(5257), + [anon_sym_BSLASHautoref] = ACTIONS(5257), + [anon_sym_BSLASHpageref] = ACTIONS(5257), + [anon_sym_BSLASHcref] = ACTIONS(5257), + [anon_sym_BSLASHCref] = ACTIONS(5257), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnameCref] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHlabelcref] = ACTIONS(5257), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCrefrange] = ACTIONS(5257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnewlabel] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), + [anon_sym_BSLASHdef] = ACTIONS(5257), + [anon_sym_BSLASHlet] = ACTIONS(5257), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), + [anon_sym_BSLASHgls] = ACTIONS(5257), + [anon_sym_BSLASHGls] = ACTIONS(5257), + [anon_sym_BSLASHGLS] = ACTIONS(5257), + [anon_sym_BSLASHglspl] = ACTIONS(5257), + [anon_sym_BSLASHGlspl] = ACTIONS(5257), + [anon_sym_BSLASHGLSpl] = ACTIONS(5257), + [anon_sym_BSLASHglsdisp] = ACTIONS(5257), + [anon_sym_BSLASHglslink] = ACTIONS(5257), + [anon_sym_BSLASHglstext] = ACTIONS(5257), + [anon_sym_BSLASHGlstext] = ACTIONS(5257), + [anon_sym_BSLASHGLStext] = ACTIONS(5257), + [anon_sym_BSLASHglsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), + [anon_sym_BSLASHglsplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSplural] = ACTIONS(5257), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHglsname] = ACTIONS(5257), + [anon_sym_BSLASHGlsname] = ACTIONS(5257), + [anon_sym_BSLASHGLSname] = ACTIONS(5257), + [anon_sym_BSLASHglssymbol] = ACTIONS(5257), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), + [anon_sym_BSLASHglsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), + [anon_sym_BSLASHglsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), + [anon_sym_BSLASHglsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), + [anon_sym_BSLASHglsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), + [anon_sym_BSLASHglsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), + [anon_sym_BSLASHnewacronym] = ACTIONS(5257), + [anon_sym_BSLASHacrshort] = ACTIONS(5257), + [anon_sym_BSLASHAcrshort] = ACTIONS(5257), + [anon_sym_BSLASHACRshort] = ACTIONS(5257), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), + [anon_sym_BSLASHacrlong] = ACTIONS(5257), + [anon_sym_BSLASHAcrlong] = ACTIONS(5257), + [anon_sym_BSLASHACRlong] = ACTIONS(5257), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), + [anon_sym_BSLASHacrfull] = ACTIONS(5257), + [anon_sym_BSLASHAcrfull] = ACTIONS(5257), + [anon_sym_BSLASHACRfull] = ACTIONS(5257), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), + [anon_sym_BSLASHacs] = ACTIONS(5257), + [anon_sym_BSLASHAcs] = ACTIONS(5257), + [anon_sym_BSLASHacsp] = ACTIONS(5257), + [anon_sym_BSLASHAcsp] = ACTIONS(5257), + [anon_sym_BSLASHacl] = ACTIONS(5257), + [anon_sym_BSLASHAcl] = ACTIONS(5257), + [anon_sym_BSLASHaclp] = ACTIONS(5257), + [anon_sym_BSLASHAclp] = ACTIONS(5257), + [anon_sym_BSLASHacf] = ACTIONS(5257), + [anon_sym_BSLASHAcf] = ACTIONS(5257), + [anon_sym_BSLASHacfp] = ACTIONS(5257), + [anon_sym_BSLASHAcfp] = ACTIONS(5257), + [anon_sym_BSLASHac] = ACTIONS(5257), + [anon_sym_BSLASHAc] = ACTIONS(5257), + [anon_sym_BSLASHacp] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), + [anon_sym_BSLASHcolor] = ACTIONS(5257), + [anon_sym_BSLASHcolorbox] = ACTIONS(5257), + [anon_sym_BSLASHtextcolor] = ACTIONS(5257), + [anon_sym_BSLASHpagecolor] = ACTIONS(5257), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), + [anon_sym_BSLASHtext] = ACTIONS(5257), + [anon_sym_BSLASHintertext] = ACTIONS(5257), + [anon_sym_shortintertext] = ACTIONS(5257), + }, + [837] = { + [sym_command_name] = ACTIONS(5253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5253), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(5251), + [anon_sym_LBRACK] = ACTIONS(5251), + [anon_sym_RBRACK] = ACTIONS(5251), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_BSLASHpart] = ACTIONS(5253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddpart] = ACTIONS(5253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHchapter] = ACTIONS(5253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddchap] = ACTIONS(5253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsection] = ACTIONS(5253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddsec] = ACTIONS(5253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHparagraph] = ACTIONS(5253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHitem] = ACTIONS(5253), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5251), + [sym_word] = ACTIONS(5253), + [sym_placeholder] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5253), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym__] = ACTIONS(5253), + [anon_sym_LT] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5253), + [anon_sym_BANG] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_SQUOTE] = ACTIONS(5253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), + [anon_sym_DOLLAR] = ACTIONS(5253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), + [anon_sym_BSLASHbegin] = ACTIONS(5253), + [anon_sym_BSLASHusepackage] = ACTIONS(5253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHinclude] = ACTIONS(5253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), + [anon_sym_BSLASHinput] = ACTIONS(5253), + [anon_sym_BSLASHsubfile] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), + [anon_sym_BSLASHbibliography] = ACTIONS(5253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), + [anon_sym_BSLASHincludesvg] = ACTIONS(5253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), + [anon_sym_BSLASHimport] = ACTIONS(5253), + [anon_sym_BSLASHsubimport] = ACTIONS(5253), + [anon_sym_BSLASHinputfrom] = ACTIONS(5253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), + [anon_sym_BSLASHincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHcaption] = ACTIONS(5253), + [anon_sym_BSLASHcite] = ACTIONS(5253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCite] = ACTIONS(5253), + [anon_sym_BSLASHnocite] = ACTIONS(5253), + [anon_sym_BSLASHcitet] = ACTIONS(5253), + [anon_sym_BSLASHcitep] = ACTIONS(5253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteauthor] = ACTIONS(5253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitetitle] = ACTIONS(5253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteyear] = ACTIONS(5253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitedate] = ACTIONS(5253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteurl] = ACTIONS(5253), + [anon_sym_BSLASHfullcite] = ACTIONS(5253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), + [anon_sym_BSLASHcitealt] = ACTIONS(5253), + [anon_sym_BSLASHcitealp] = ACTIONS(5253), + [anon_sym_BSLASHcitetext] = ACTIONS(5253), + [anon_sym_BSLASHparencite] = ACTIONS(5253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHParencite] = ACTIONS(5253), + [anon_sym_BSLASHfootcite] = ACTIONS(5253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), + [anon_sym_BSLASHtextcite] = ACTIONS(5253), + [anon_sym_BSLASHTextcite] = ACTIONS(5253), + [anon_sym_BSLASHsmartcite] = ACTIONS(5253), + [anon_sym_BSLASHSmartcite] = ACTIONS(5253), + [anon_sym_BSLASHsupercite] = ACTIONS(5253), + [anon_sym_BSLASHautocite] = ACTIONS(5253), + [anon_sym_BSLASHAutocite] = ACTIONS(5253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHvolcite] = ACTIONS(5253), + [anon_sym_BSLASHVolcite] = ACTIONS(5253), + [anon_sym_BSLASHpvolcite] = ACTIONS(5253), + [anon_sym_BSLASHPvolcite] = ACTIONS(5253), + [anon_sym_BSLASHfvolcite] = ACTIONS(5253), + [anon_sym_BSLASHftvolcite] = ACTIONS(5253), + [anon_sym_BSLASHsvolcite] = ACTIONS(5253), + [anon_sym_BSLASHSvolcite] = ACTIONS(5253), + [anon_sym_BSLASHtvolcite] = ACTIONS(5253), + [anon_sym_BSLASHTvolcite] = ACTIONS(5253), + [anon_sym_BSLASHavolcite] = ACTIONS(5253), + [anon_sym_BSLASHAvolcite] = ACTIONS(5253), + [anon_sym_BSLASHnotecite] = ACTIONS(5253), + [anon_sym_BSLASHNotecite] = ACTIONS(5253), + [anon_sym_BSLASHpnotecite] = ACTIONS(5253), + [anon_sym_BSLASHPnotecite] = ACTIONS(5253), + [anon_sym_BSLASHfnotecite] = ACTIONS(5253), + [anon_sym_BSLASHlabel] = ACTIONS(5253), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCrefrange] = ACTIONS(5253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnewlabel] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdef] = ACTIONS(5253), + [anon_sym_BSLASHlet] = ACTIONS(5253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), + [anon_sym_BSLASHgls] = ACTIONS(5253), + [anon_sym_BSLASHGls] = ACTIONS(5253), + [anon_sym_BSLASHGLS] = ACTIONS(5253), + [anon_sym_BSLASHglspl] = ACTIONS(5253), + [anon_sym_BSLASHGlspl] = ACTIONS(5253), + [anon_sym_BSLASHGLSpl] = ACTIONS(5253), + [anon_sym_BSLASHglsdisp] = ACTIONS(5253), + [anon_sym_BSLASHglslink] = ACTIONS(5253), + [anon_sym_BSLASHglstext] = ACTIONS(5253), + [anon_sym_BSLASHGlstext] = ACTIONS(5253), + [anon_sym_BSLASHGLStext] = ACTIONS(5253), + [anon_sym_BSLASHglsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), + [anon_sym_BSLASHglsplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSplural] = ACTIONS(5253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHglsname] = ACTIONS(5253), + [anon_sym_BSLASHGlsname] = ACTIONS(5253), + [anon_sym_BSLASHGLSname] = ACTIONS(5253), + [anon_sym_BSLASHglssymbol] = ACTIONS(5253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), + [anon_sym_BSLASHglsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), + [anon_sym_BSLASHglsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), + [anon_sym_BSLASHglsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), + [anon_sym_BSLASHglsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), + [anon_sym_BSLASHglsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), + [anon_sym_BSLASHnewacronym] = ACTIONS(5253), + [anon_sym_BSLASHacrshort] = ACTIONS(5253), + [anon_sym_BSLASHAcrshort] = ACTIONS(5253), + [anon_sym_BSLASHACRshort] = ACTIONS(5253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), + [anon_sym_BSLASHacrlong] = ACTIONS(5253), + [anon_sym_BSLASHAcrlong] = ACTIONS(5253), + [anon_sym_BSLASHACRlong] = ACTIONS(5253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), + [anon_sym_BSLASHacrfull] = ACTIONS(5253), + [anon_sym_BSLASHAcrfull] = ACTIONS(5253), + [anon_sym_BSLASHACRfull] = ACTIONS(5253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), + [anon_sym_BSLASHacs] = ACTIONS(5253), + [anon_sym_BSLASHAcs] = ACTIONS(5253), + [anon_sym_BSLASHacsp] = ACTIONS(5253), + [anon_sym_BSLASHAcsp] = ACTIONS(5253), + [anon_sym_BSLASHacl] = ACTIONS(5253), + [anon_sym_BSLASHAcl] = ACTIONS(5253), + [anon_sym_BSLASHaclp] = ACTIONS(5253), + [anon_sym_BSLASHAclp] = ACTIONS(5253), + [anon_sym_BSLASHacf] = ACTIONS(5253), + [anon_sym_BSLASHAcf] = ACTIONS(5253), + [anon_sym_BSLASHacfp] = ACTIONS(5253), + [anon_sym_BSLASHAcfp] = ACTIONS(5253), + [anon_sym_BSLASHac] = ACTIONS(5253), + [anon_sym_BSLASHAc] = ACTIONS(5253), + [anon_sym_BSLASHacp] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), + [anon_sym_BSLASHcolor] = ACTIONS(5253), + [anon_sym_BSLASHcolorbox] = ACTIONS(5253), + [anon_sym_BSLASHtextcolor] = ACTIONS(5253), + [anon_sym_BSLASHpagecolor] = ACTIONS(5253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), + [anon_sym_BSLASHtext] = ACTIONS(5253), + [anon_sym_BSLASHintertext] = ACTIONS(5253), + [anon_sym_shortintertext] = ACTIONS(5253), + }, + [838] = { + [sym_command_name] = ACTIONS(5249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5249), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5247), + [anon_sym_LBRACK] = ACTIONS(5247), + [anon_sym_RBRACK] = ACTIONS(5247), + [anon_sym_COMMA] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_BSLASHpart] = ACTIONS(5249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddpart] = ACTIONS(5249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHchapter] = ACTIONS(5249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddchap] = ACTIONS(5249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsection] = ACTIONS(5249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddsec] = ACTIONS(5249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHparagraph] = ACTIONS(5249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHitem] = ACTIONS(5249), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5247), + [anon_sym_LBRACE] = ACTIONS(5247), + [sym_word] = ACTIONS(5249), + [sym_placeholder] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5249), + [anon_sym_STAR] = ACTIONS(5249), + [anon_sym_SLASH] = ACTIONS(5249), + [anon_sym_CARET] = ACTIONS(5249), + [anon_sym__] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(5249), + [anon_sym_GT] = ACTIONS(5249), + [anon_sym_BANG] = ACTIONS(5249), + [anon_sym_PIPE] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_SQUOTE] = ACTIONS(5249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), + [anon_sym_DOLLAR] = ACTIONS(5249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), + [anon_sym_BSLASHbegin] = ACTIONS(5249), + [anon_sym_BSLASHusepackage] = ACTIONS(5249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), + [anon_sym_BSLASHinclude] = ACTIONS(5249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), + [anon_sym_BSLASHinput] = ACTIONS(5249), + [anon_sym_BSLASHsubfile] = ACTIONS(5249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), + [anon_sym_BSLASHbibliography] = ACTIONS(5249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), + [anon_sym_BSLASHincludesvg] = ACTIONS(5249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), + [anon_sym_BSLASHimport] = ACTIONS(5249), + [anon_sym_BSLASHsubimport] = ACTIONS(5249), + [anon_sym_BSLASHinputfrom] = ACTIONS(5249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), + [anon_sym_BSLASHincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHcaption] = ACTIONS(5249), + [anon_sym_BSLASHcite] = ACTIONS(5249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCite] = ACTIONS(5249), + [anon_sym_BSLASHnocite] = ACTIONS(5249), + [anon_sym_BSLASHcitet] = ACTIONS(5249), + [anon_sym_BSLASHcitep] = ACTIONS(5249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteauthor] = ACTIONS(5249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitetitle] = ACTIONS(5249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteyear] = ACTIONS(5249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitedate] = ACTIONS(5249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteurl] = ACTIONS(5249), + [anon_sym_BSLASHfullcite] = ACTIONS(5249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), + [anon_sym_BSLASHcitealt] = ACTIONS(5249), + [anon_sym_BSLASHcitealp] = ACTIONS(5249), + [anon_sym_BSLASHcitetext] = ACTIONS(5249), + [anon_sym_BSLASHparencite] = ACTIONS(5249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHParencite] = ACTIONS(5249), + [anon_sym_BSLASHfootcite] = ACTIONS(5249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), + [anon_sym_BSLASHtextcite] = ACTIONS(5249), + [anon_sym_BSLASHTextcite] = ACTIONS(5249), + [anon_sym_BSLASHsmartcite] = ACTIONS(5249), + [anon_sym_BSLASHSmartcite] = ACTIONS(5249), + [anon_sym_BSLASHsupercite] = ACTIONS(5249), + [anon_sym_BSLASHautocite] = ACTIONS(5249), + [anon_sym_BSLASHAutocite] = ACTIONS(5249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHvolcite] = ACTIONS(5249), + [anon_sym_BSLASHVolcite] = ACTIONS(5249), + [anon_sym_BSLASHpvolcite] = ACTIONS(5249), + [anon_sym_BSLASHPvolcite] = ACTIONS(5249), + [anon_sym_BSLASHfvolcite] = ACTIONS(5249), + [anon_sym_BSLASHftvolcite] = ACTIONS(5249), + [anon_sym_BSLASHsvolcite] = ACTIONS(5249), + [anon_sym_BSLASHSvolcite] = ACTIONS(5249), + [anon_sym_BSLASHtvolcite] = ACTIONS(5249), + [anon_sym_BSLASHTvolcite] = ACTIONS(5249), + [anon_sym_BSLASHavolcite] = ACTIONS(5249), + [anon_sym_BSLASHAvolcite] = ACTIONS(5249), + [anon_sym_BSLASHnotecite] = ACTIONS(5249), + [anon_sym_BSLASHNotecite] = ACTIONS(5249), + [anon_sym_BSLASHpnotecite] = ACTIONS(5249), + [anon_sym_BSLASHPnotecite] = ACTIONS(5249), + [anon_sym_BSLASHfnotecite] = ACTIONS(5249), + [anon_sym_BSLASHlabel] = ACTIONS(5249), + [anon_sym_BSLASHref] = ACTIONS(5249), + [anon_sym_BSLASHeqref] = ACTIONS(5249), + [anon_sym_BSLASHvref] = ACTIONS(5249), + [anon_sym_BSLASHVref] = ACTIONS(5249), + [anon_sym_BSLASHautoref] = ACTIONS(5249), + [anon_sym_BSLASHpageref] = ACTIONS(5249), + [anon_sym_BSLASHcref] = ACTIONS(5249), + [anon_sym_BSLASHCref] = ACTIONS(5249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnameCref] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHlabelcref] = ACTIONS(5249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + [anon_sym_BSLASHtext] = ACTIONS(5249), + [anon_sym_BSLASHintertext] = ACTIONS(5249), + [anon_sym_shortintertext] = ACTIONS(5249), + }, + [839] = { + [sym_command_name] = ACTIONS(5245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5243), + [anon_sym_RPAREN] = ACTIONS(5243), + [anon_sym_LBRACK] = ACTIONS(5243), + [anon_sym_RBRACK] = ACTIONS(5243), + [anon_sym_COMMA] = ACTIONS(5243), + [anon_sym_EQ] = ACTIONS(5243), + [anon_sym_BSLASHpart] = ACTIONS(5245), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddpart] = ACTIONS(5245), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5243), + [anon_sym_BSLASHchapter] = ACTIONS(5245), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddchap] = ACTIONS(5245), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsection] = ACTIONS(5245), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddsec] = ACTIONS(5245), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubsection] = ACTIONS(5245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5245), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHparagraph] = ACTIONS(5245), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5245), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5243), + [anon_sym_BSLASHitem] = ACTIONS(5245), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5243), + [anon_sym_LBRACE] = ACTIONS(5243), + [sym_word] = ACTIONS(5245), + [sym_placeholder] = ACTIONS(5243), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_STAR] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5245), + [anon_sym_CARET] = ACTIONS(5245), + [anon_sym__] = ACTIONS(5245), + [anon_sym_LT] = ACTIONS(5245), + [anon_sym_GT] = ACTIONS(5245), + [anon_sym_BANG] = ACTIONS(5245), + [anon_sym_PIPE] = ACTIONS(5245), + [anon_sym_COLON] = ACTIONS(5245), + [anon_sym_SQUOTE] = ACTIONS(5245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5243), + [anon_sym_DOLLAR] = ACTIONS(5245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5243), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5243), + [anon_sym_BSLASHbegin] = ACTIONS(5245), + [anon_sym_BSLASHusepackage] = ACTIONS(5245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), + [anon_sym_BSLASHinclude] = ACTIONS(5245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), + [anon_sym_BSLASHinput] = ACTIONS(5245), + [anon_sym_BSLASHsubfile] = ACTIONS(5245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), + [anon_sym_BSLASHbibliography] = ACTIONS(5245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), + [anon_sym_BSLASHincludesvg] = ACTIONS(5245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), + [anon_sym_BSLASHimport] = ACTIONS(5245), + [anon_sym_BSLASHsubimport] = ACTIONS(5245), + [anon_sym_BSLASHinputfrom] = ACTIONS(5245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), + [anon_sym_BSLASHincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHcaption] = ACTIONS(5245), + [anon_sym_BSLASHcite] = ACTIONS(5245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCite] = ACTIONS(5245), + [anon_sym_BSLASHnocite] = ACTIONS(5245), + [anon_sym_BSLASHcitet] = ACTIONS(5245), + [anon_sym_BSLASHcitep] = ACTIONS(5245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteauthor] = ACTIONS(5245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitetitle] = ACTIONS(5245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteyear] = ACTIONS(5245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitedate] = ACTIONS(5245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteurl] = ACTIONS(5245), + [anon_sym_BSLASHfullcite] = ACTIONS(5245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), + [anon_sym_BSLASHcitealt] = ACTIONS(5245), + [anon_sym_BSLASHcitealp] = ACTIONS(5245), + [anon_sym_BSLASHcitetext] = ACTIONS(5245), + [anon_sym_BSLASHparencite] = ACTIONS(5245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHParencite] = ACTIONS(5245), + [anon_sym_BSLASHfootcite] = ACTIONS(5245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), + [anon_sym_BSLASHtextcite] = ACTIONS(5245), + [anon_sym_BSLASHTextcite] = ACTIONS(5245), + [anon_sym_BSLASHsmartcite] = ACTIONS(5245), + [anon_sym_BSLASHSmartcite] = ACTIONS(5245), + [anon_sym_BSLASHsupercite] = ACTIONS(5245), + [anon_sym_BSLASHautocite] = ACTIONS(5245), + [anon_sym_BSLASHAutocite] = ACTIONS(5245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHvolcite] = ACTIONS(5245), + [anon_sym_BSLASHVolcite] = ACTIONS(5245), + [anon_sym_BSLASHpvolcite] = ACTIONS(5245), + [anon_sym_BSLASHPvolcite] = ACTIONS(5245), + [anon_sym_BSLASHfvolcite] = ACTIONS(5245), + [anon_sym_BSLASHftvolcite] = ACTIONS(5245), + [anon_sym_BSLASHsvolcite] = ACTIONS(5245), + [anon_sym_BSLASHSvolcite] = ACTIONS(5245), + [anon_sym_BSLASHtvolcite] = ACTIONS(5245), + [anon_sym_BSLASHTvolcite] = ACTIONS(5245), + [anon_sym_BSLASHavolcite] = ACTIONS(5245), + [anon_sym_BSLASHAvolcite] = ACTIONS(5245), + [anon_sym_BSLASHnotecite] = ACTIONS(5245), + [anon_sym_BSLASHNotecite] = ACTIONS(5245), + [anon_sym_BSLASHpnotecite] = ACTIONS(5245), + [anon_sym_BSLASHPnotecite] = ACTIONS(5245), + [anon_sym_BSLASHfnotecite] = ACTIONS(5245), + [anon_sym_BSLASHlabel] = ACTIONS(5245), + [anon_sym_BSLASHref] = ACTIONS(5245), + [anon_sym_BSLASHeqref] = ACTIONS(5245), + [anon_sym_BSLASHvref] = ACTIONS(5245), + [anon_sym_BSLASHVref] = ACTIONS(5245), + [anon_sym_BSLASHautoref] = ACTIONS(5245), + [anon_sym_BSLASHpageref] = ACTIONS(5245), + [anon_sym_BSLASHcref] = ACTIONS(5245), + [anon_sym_BSLASHCref] = ACTIONS(5245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnameCref] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHlabelcref] = ACTIONS(5245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCrefrange] = ACTIONS(5245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnewlabel] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), + [anon_sym_BSLASHdef] = ACTIONS(5245), + [anon_sym_BSLASHlet] = ACTIONS(5245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), + [anon_sym_BSLASHgls] = ACTIONS(5245), + [anon_sym_BSLASHGls] = ACTIONS(5245), + [anon_sym_BSLASHGLS] = ACTIONS(5245), + [anon_sym_BSLASHglspl] = ACTIONS(5245), + [anon_sym_BSLASHGlspl] = ACTIONS(5245), + [anon_sym_BSLASHGLSpl] = ACTIONS(5245), + [anon_sym_BSLASHglsdisp] = ACTIONS(5245), + [anon_sym_BSLASHglslink] = ACTIONS(5245), + [anon_sym_BSLASHglstext] = ACTIONS(5245), + [anon_sym_BSLASHGlstext] = ACTIONS(5245), + [anon_sym_BSLASHGLStext] = ACTIONS(5245), + [anon_sym_BSLASHglsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), + [anon_sym_BSLASHglsplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSplural] = ACTIONS(5245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHglsname] = ACTIONS(5245), + [anon_sym_BSLASHGlsname] = ACTIONS(5245), + [anon_sym_BSLASHGLSname] = ACTIONS(5245), + [anon_sym_BSLASHglssymbol] = ACTIONS(5245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), + [anon_sym_BSLASHglsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), + [anon_sym_BSLASHglsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), + [anon_sym_BSLASHglsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), + [anon_sym_BSLASHglsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), + [anon_sym_BSLASHglsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), + [anon_sym_BSLASHnewacronym] = ACTIONS(5245), + [anon_sym_BSLASHacrshort] = ACTIONS(5245), + [anon_sym_BSLASHAcrshort] = ACTIONS(5245), + [anon_sym_BSLASHACRshort] = ACTIONS(5245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), + [anon_sym_BSLASHacrlong] = ACTIONS(5245), + [anon_sym_BSLASHAcrlong] = ACTIONS(5245), + [anon_sym_BSLASHACRlong] = ACTIONS(5245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), + [anon_sym_BSLASHacrfull] = ACTIONS(5245), + [anon_sym_BSLASHAcrfull] = ACTIONS(5245), + [anon_sym_BSLASHACRfull] = ACTIONS(5245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), + [anon_sym_BSLASHacs] = ACTIONS(5245), + [anon_sym_BSLASHAcs] = ACTIONS(5245), + [anon_sym_BSLASHacsp] = ACTIONS(5245), + [anon_sym_BSLASHAcsp] = ACTIONS(5245), + [anon_sym_BSLASHacl] = ACTIONS(5245), + [anon_sym_BSLASHAcl] = ACTIONS(5245), + [anon_sym_BSLASHaclp] = ACTIONS(5245), + [anon_sym_BSLASHAclp] = ACTIONS(5245), + [anon_sym_BSLASHacf] = ACTIONS(5245), + [anon_sym_BSLASHAcf] = ACTIONS(5245), + [anon_sym_BSLASHacfp] = ACTIONS(5245), + [anon_sym_BSLASHAcfp] = ACTIONS(5245), + [anon_sym_BSLASHac] = ACTIONS(5245), + [anon_sym_BSLASHAc] = ACTIONS(5245), + [anon_sym_BSLASHacp] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), + [anon_sym_BSLASHcolor] = ACTIONS(5245), + [anon_sym_BSLASHcolorbox] = ACTIONS(5245), + [anon_sym_BSLASHtextcolor] = ACTIONS(5245), + [anon_sym_BSLASHpagecolor] = ACTIONS(5245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), + [anon_sym_BSLASHtext] = ACTIONS(5245), + [anon_sym_BSLASHintertext] = ACTIONS(5245), + [anon_sym_shortintertext] = ACTIONS(5245), + }, + [840] = { + [sym_command_name] = ACTIONS(5241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5241), + [anon_sym_LPAREN] = ACTIONS(5239), + [anon_sym_RPAREN] = ACTIONS(5239), + [anon_sym_LBRACK] = ACTIONS(5239), + [anon_sym_RBRACK] = ACTIONS(5239), + [anon_sym_COMMA] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_BSLASHpart] = ACTIONS(5241), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddpart] = ACTIONS(5241), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5239), + [anon_sym_BSLASHchapter] = ACTIONS(5241), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddchap] = ACTIONS(5241), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsection] = ACTIONS(5241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddsec] = ACTIONS(5241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubsection] = ACTIONS(5241), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5241), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHparagraph] = ACTIONS(5241), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5241), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5239), + [anon_sym_BSLASHitem] = ACTIONS(5241), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(5239), + [sym_word] = ACTIONS(5241), + [sym_placeholder] = ACTIONS(5239), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5241), + [anon_sym_CARET] = ACTIONS(5241), + [anon_sym__] = ACTIONS(5241), + [anon_sym_LT] = ACTIONS(5241), + [anon_sym_GT] = ACTIONS(5241), + [anon_sym_BANG] = ACTIONS(5241), + [anon_sym_PIPE] = ACTIONS(5241), + [anon_sym_COLON] = ACTIONS(5241), + [anon_sym_SQUOTE] = ACTIONS(5241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), + [anon_sym_DOLLAR] = ACTIONS(5241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), + [anon_sym_BSLASHbegin] = ACTIONS(5241), + [anon_sym_BSLASHusepackage] = ACTIONS(5241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), + [anon_sym_BSLASHinclude] = ACTIONS(5241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), + [anon_sym_BSLASHinput] = ACTIONS(5241), + [anon_sym_BSLASHsubfile] = ACTIONS(5241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), + [anon_sym_BSLASHbibliography] = ACTIONS(5241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), + [anon_sym_BSLASHincludesvg] = ACTIONS(5241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), + [anon_sym_BSLASHimport] = ACTIONS(5241), + [anon_sym_BSLASHsubimport] = ACTIONS(5241), + [anon_sym_BSLASHinputfrom] = ACTIONS(5241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), + [anon_sym_BSLASHincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHcaption] = ACTIONS(5241), + [anon_sym_BSLASHcite] = ACTIONS(5241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCite] = ACTIONS(5241), + [anon_sym_BSLASHnocite] = ACTIONS(5241), + [anon_sym_BSLASHcitet] = ACTIONS(5241), + [anon_sym_BSLASHcitep] = ACTIONS(5241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor] = ACTIONS(5241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle] = ACTIONS(5241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteyear] = ACTIONS(5241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitedate] = ACTIONS(5241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteurl] = ACTIONS(5241), + [anon_sym_BSLASHfullcite] = ACTIONS(5241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), + [anon_sym_BSLASHcitealt] = ACTIONS(5241), + [anon_sym_BSLASHcitealp] = ACTIONS(5241), + [anon_sym_BSLASHcitetext] = ACTIONS(5241), + [anon_sym_BSLASHparencite] = ACTIONS(5241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHParencite] = ACTIONS(5241), + [anon_sym_BSLASHfootcite] = ACTIONS(5241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), + [anon_sym_BSLASHtextcite] = ACTIONS(5241), + [anon_sym_BSLASHTextcite] = ACTIONS(5241), + [anon_sym_BSLASHsmartcite] = ACTIONS(5241), + [anon_sym_BSLASHSmartcite] = ACTIONS(5241), + [anon_sym_BSLASHsupercite] = ACTIONS(5241), + [anon_sym_BSLASHautocite] = ACTIONS(5241), + [anon_sym_BSLASHAutocite] = ACTIONS(5241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHvolcite] = ACTIONS(5241), + [anon_sym_BSLASHVolcite] = ACTIONS(5241), + [anon_sym_BSLASHpvolcite] = ACTIONS(5241), + [anon_sym_BSLASHPvolcite] = ACTIONS(5241), + [anon_sym_BSLASHfvolcite] = ACTIONS(5241), + [anon_sym_BSLASHftvolcite] = ACTIONS(5241), + [anon_sym_BSLASHsvolcite] = ACTIONS(5241), + [anon_sym_BSLASHSvolcite] = ACTIONS(5241), + [anon_sym_BSLASHtvolcite] = ACTIONS(5241), + [anon_sym_BSLASHTvolcite] = ACTIONS(5241), + [anon_sym_BSLASHavolcite] = ACTIONS(5241), + [anon_sym_BSLASHAvolcite] = ACTIONS(5241), + [anon_sym_BSLASHnotecite] = ACTIONS(5241), + [anon_sym_BSLASHNotecite] = ACTIONS(5241), + [anon_sym_BSLASHpnotecite] = ACTIONS(5241), + [anon_sym_BSLASHPnotecite] = ACTIONS(5241), + [anon_sym_BSLASHfnotecite] = ACTIONS(5241), + [anon_sym_BSLASHlabel] = ACTIONS(5241), + [anon_sym_BSLASHref] = ACTIONS(5241), + [anon_sym_BSLASHeqref] = ACTIONS(5241), + [anon_sym_BSLASHvref] = ACTIONS(5241), + [anon_sym_BSLASHVref] = ACTIONS(5241), + [anon_sym_BSLASHautoref] = ACTIONS(5241), + [anon_sym_BSLASHpageref] = ACTIONS(5241), + [anon_sym_BSLASHcref] = ACTIONS(5241), + [anon_sym_BSLASHCref] = ACTIONS(5241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnameCref] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHlabelcref] = ACTIONS(5241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange] = ACTIONS(5241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnewlabel] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), + [anon_sym_BSLASHdef] = ACTIONS(5241), + [anon_sym_BSLASHlet] = ACTIONS(5241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), + [anon_sym_BSLASHgls] = ACTIONS(5241), + [anon_sym_BSLASHGls] = ACTIONS(5241), + [anon_sym_BSLASHGLS] = ACTIONS(5241), + [anon_sym_BSLASHglspl] = ACTIONS(5241), + [anon_sym_BSLASHGlspl] = ACTIONS(5241), + [anon_sym_BSLASHGLSpl] = ACTIONS(5241), + [anon_sym_BSLASHglsdisp] = ACTIONS(5241), + [anon_sym_BSLASHglslink] = ACTIONS(5241), + [anon_sym_BSLASHglstext] = ACTIONS(5241), + [anon_sym_BSLASHGlstext] = ACTIONS(5241), + [anon_sym_BSLASHGLStext] = ACTIONS(5241), + [anon_sym_BSLASHglsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), + [anon_sym_BSLASHglsplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSplural] = ACTIONS(5241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHglsname] = ACTIONS(5241), + [anon_sym_BSLASHGlsname] = ACTIONS(5241), + [anon_sym_BSLASHGLSname] = ACTIONS(5241), + [anon_sym_BSLASHglssymbol] = ACTIONS(5241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), + [anon_sym_BSLASHglsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), + [anon_sym_BSLASHglsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), + [anon_sym_BSLASHglsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), + [anon_sym_BSLASHglsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), + [anon_sym_BSLASHglsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), + [anon_sym_BSLASHnewacronym] = ACTIONS(5241), + [anon_sym_BSLASHacrshort] = ACTIONS(5241), + [anon_sym_BSLASHAcrshort] = ACTIONS(5241), + [anon_sym_BSLASHACRshort] = ACTIONS(5241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), + [anon_sym_BSLASHacrlong] = ACTIONS(5241), + [anon_sym_BSLASHAcrlong] = ACTIONS(5241), + [anon_sym_BSLASHACRlong] = ACTIONS(5241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), + [anon_sym_BSLASHacrfull] = ACTIONS(5241), + [anon_sym_BSLASHAcrfull] = ACTIONS(5241), + [anon_sym_BSLASHACRfull] = ACTIONS(5241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), + [anon_sym_BSLASHacs] = ACTIONS(5241), + [anon_sym_BSLASHAcs] = ACTIONS(5241), + [anon_sym_BSLASHacsp] = ACTIONS(5241), + [anon_sym_BSLASHAcsp] = ACTIONS(5241), + [anon_sym_BSLASHacl] = ACTIONS(5241), + [anon_sym_BSLASHAcl] = ACTIONS(5241), + [anon_sym_BSLASHaclp] = ACTIONS(5241), + [anon_sym_BSLASHAclp] = ACTIONS(5241), + [anon_sym_BSLASHacf] = ACTIONS(5241), + [anon_sym_BSLASHAcf] = ACTIONS(5241), + [anon_sym_BSLASHacfp] = ACTIONS(5241), + [anon_sym_BSLASHAcfp] = ACTIONS(5241), + [anon_sym_BSLASHac] = ACTIONS(5241), + [anon_sym_BSLASHAc] = ACTIONS(5241), + [anon_sym_BSLASHacp] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), + [anon_sym_BSLASHcolor] = ACTIONS(5241), + [anon_sym_BSLASHcolorbox] = ACTIONS(5241), + [anon_sym_BSLASHtextcolor] = ACTIONS(5241), + [anon_sym_BSLASHpagecolor] = ACTIONS(5241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), + [anon_sym_BSLASHtext] = ACTIONS(5241), + [anon_sym_BSLASHintertext] = ACTIONS(5241), + [anon_sym_shortintertext] = ACTIONS(5241), + }, + [841] = { + [sym_command_name] = ACTIONS(5237), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5237), + [anon_sym_LPAREN] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(5235), + [anon_sym_LBRACK] = ACTIONS(5235), + [anon_sym_RBRACK] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_EQ] = ACTIONS(5235), + [anon_sym_BSLASHpart] = ACTIONS(5237), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddpart] = ACTIONS(5237), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5235), + [anon_sym_BSLASHchapter] = ACTIONS(5237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddchap] = ACTIONS(5237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsection] = ACTIONS(5237), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddsec] = ACTIONS(5237), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubsection] = ACTIONS(5237), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5237), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHparagraph] = ACTIONS(5237), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5237), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5235), + [anon_sym_BSLASHitem] = ACTIONS(5237), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5235), + [anon_sym_LBRACE] = ACTIONS(5235), + [sym_word] = ACTIONS(5237), + [sym_placeholder] = ACTIONS(5235), + [anon_sym_PLUS] = ACTIONS(5237), + [anon_sym_DASH] = ACTIONS(5237), + [anon_sym_STAR] = ACTIONS(5237), + [anon_sym_SLASH] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym__] = ACTIONS(5237), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_BANG] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_COLON] = ACTIONS(5237), + [anon_sym_SQUOTE] = ACTIONS(5237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), + [anon_sym_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), + [anon_sym_BSLASHbegin] = ACTIONS(5237), + [anon_sym_BSLASHusepackage] = ACTIONS(5237), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), + [anon_sym_BSLASHinclude] = ACTIONS(5237), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), + [anon_sym_BSLASHinput] = ACTIONS(5237), + [anon_sym_BSLASHsubfile] = ACTIONS(5237), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), + [anon_sym_BSLASHbibliography] = ACTIONS(5237), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), + [anon_sym_BSLASHincludesvg] = ACTIONS(5237), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), + [anon_sym_BSLASHimport] = ACTIONS(5237), + [anon_sym_BSLASHsubimport] = ACTIONS(5237), + [anon_sym_BSLASHinputfrom] = ACTIONS(5237), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), + [anon_sym_BSLASHincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHcaption] = ACTIONS(5237), + [anon_sym_BSLASHcite] = ACTIONS(5237), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCite] = ACTIONS(5237), + [anon_sym_BSLASHnocite] = ACTIONS(5237), + [anon_sym_BSLASHcitet] = ACTIONS(5237), + [anon_sym_BSLASHcitep] = ACTIONS(5237), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteyear] = ACTIONS(5237), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitedate] = ACTIONS(5237), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteurl] = ACTIONS(5237), + [anon_sym_BSLASHfullcite] = ACTIONS(5237), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), + [anon_sym_BSLASHcitealt] = ACTIONS(5237), + [anon_sym_BSLASHcitealp] = ACTIONS(5237), + [anon_sym_BSLASHcitetext] = ACTIONS(5237), + [anon_sym_BSLASHparencite] = ACTIONS(5237), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHParencite] = ACTIONS(5237), + [anon_sym_BSLASHfootcite] = ACTIONS(5237), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), + [anon_sym_BSLASHtextcite] = ACTIONS(5237), + [anon_sym_BSLASHTextcite] = ACTIONS(5237), + [anon_sym_BSLASHsmartcite] = ACTIONS(5237), + [anon_sym_BSLASHSmartcite] = ACTIONS(5237), + [anon_sym_BSLASHsupercite] = ACTIONS(5237), + [anon_sym_BSLASHautocite] = ACTIONS(5237), + [anon_sym_BSLASHAutocite] = ACTIONS(5237), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHvolcite] = ACTIONS(5237), + [anon_sym_BSLASHVolcite] = ACTIONS(5237), + [anon_sym_BSLASHpvolcite] = ACTIONS(5237), + [anon_sym_BSLASHPvolcite] = ACTIONS(5237), + [anon_sym_BSLASHfvolcite] = ACTIONS(5237), + [anon_sym_BSLASHftvolcite] = ACTIONS(5237), + [anon_sym_BSLASHsvolcite] = ACTIONS(5237), + [anon_sym_BSLASHSvolcite] = ACTIONS(5237), + [anon_sym_BSLASHtvolcite] = ACTIONS(5237), + [anon_sym_BSLASHTvolcite] = ACTIONS(5237), + [anon_sym_BSLASHavolcite] = ACTIONS(5237), + [anon_sym_BSLASHAvolcite] = ACTIONS(5237), + [anon_sym_BSLASHnotecite] = ACTIONS(5237), + [anon_sym_BSLASHNotecite] = ACTIONS(5237), + [anon_sym_BSLASHpnotecite] = ACTIONS(5237), + [anon_sym_BSLASHPnotecite] = ACTIONS(5237), + [anon_sym_BSLASHfnotecite] = ACTIONS(5237), + [anon_sym_BSLASHlabel] = ACTIONS(5237), + [anon_sym_BSLASHref] = ACTIONS(5237), + [anon_sym_BSLASHeqref] = ACTIONS(5237), + [anon_sym_BSLASHvref] = ACTIONS(5237), + [anon_sym_BSLASHVref] = ACTIONS(5237), + [anon_sym_BSLASHautoref] = ACTIONS(5237), + [anon_sym_BSLASHpageref] = ACTIONS(5237), + [anon_sym_BSLASHcref] = ACTIONS(5237), + [anon_sym_BSLASHCref] = ACTIONS(5237), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnameCref] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHlabelcref] = ACTIONS(5237), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnewlabel] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), + [anon_sym_BSLASHdef] = ACTIONS(5237), + [anon_sym_BSLASHlet] = ACTIONS(5237), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), + [anon_sym_BSLASHgls] = ACTIONS(5237), + [anon_sym_BSLASHGls] = ACTIONS(5237), + [anon_sym_BSLASHGLS] = ACTIONS(5237), + [anon_sym_BSLASHglspl] = ACTIONS(5237), + [anon_sym_BSLASHGlspl] = ACTIONS(5237), + [anon_sym_BSLASHGLSpl] = ACTIONS(5237), + [anon_sym_BSLASHglsdisp] = ACTIONS(5237), + [anon_sym_BSLASHglslink] = ACTIONS(5237), + [anon_sym_BSLASHglstext] = ACTIONS(5237), + [anon_sym_BSLASHGlstext] = ACTIONS(5237), + [anon_sym_BSLASHGLStext] = ACTIONS(5237), + [anon_sym_BSLASHglsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), + [anon_sym_BSLASHglsplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSplural] = ACTIONS(5237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHglsname] = ACTIONS(5237), + [anon_sym_BSLASHGlsname] = ACTIONS(5237), + [anon_sym_BSLASHGLSname] = ACTIONS(5237), + [anon_sym_BSLASHglssymbol] = ACTIONS(5237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), + [anon_sym_BSLASHglsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), + [anon_sym_BSLASHglsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), + [anon_sym_BSLASHglsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), + [anon_sym_BSLASHglsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), + [anon_sym_BSLASHglsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), + [anon_sym_BSLASHnewacronym] = ACTIONS(5237), + [anon_sym_BSLASHacrshort] = ACTIONS(5237), + [anon_sym_BSLASHAcrshort] = ACTIONS(5237), + [anon_sym_BSLASHACRshort] = ACTIONS(5237), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), + [anon_sym_BSLASHacrlong] = ACTIONS(5237), + [anon_sym_BSLASHAcrlong] = ACTIONS(5237), + [anon_sym_BSLASHACRlong] = ACTIONS(5237), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), + [anon_sym_BSLASHacrfull] = ACTIONS(5237), + [anon_sym_BSLASHAcrfull] = ACTIONS(5237), + [anon_sym_BSLASHACRfull] = ACTIONS(5237), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), + [anon_sym_BSLASHacs] = ACTIONS(5237), + [anon_sym_BSLASHAcs] = ACTIONS(5237), + [anon_sym_BSLASHacsp] = ACTIONS(5237), + [anon_sym_BSLASHAcsp] = ACTIONS(5237), + [anon_sym_BSLASHacl] = ACTIONS(5237), + [anon_sym_BSLASHAcl] = ACTIONS(5237), + [anon_sym_BSLASHaclp] = ACTIONS(5237), + [anon_sym_BSLASHAclp] = ACTIONS(5237), + [anon_sym_BSLASHacf] = ACTIONS(5237), + [anon_sym_BSLASHAcf] = ACTIONS(5237), + [anon_sym_BSLASHacfp] = ACTIONS(5237), + [anon_sym_BSLASHAcfp] = ACTIONS(5237), + [anon_sym_BSLASHac] = ACTIONS(5237), + [anon_sym_BSLASHAc] = ACTIONS(5237), + [anon_sym_BSLASHacp] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), + [anon_sym_BSLASHcolor] = ACTIONS(5237), + [anon_sym_BSLASHcolorbox] = ACTIONS(5237), + [anon_sym_BSLASHtextcolor] = ACTIONS(5237), + [anon_sym_BSLASHpagecolor] = ACTIONS(5237), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), + [anon_sym_BSLASHtext] = ACTIONS(5237), + [anon_sym_BSLASHintertext] = ACTIONS(5237), + [anon_sym_shortintertext] = ACTIONS(5237), + }, + [842] = { + [sym_command_name] = ACTIONS(5233), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5233), + [anon_sym_LPAREN] = ACTIONS(5231), + [anon_sym_RPAREN] = ACTIONS(5231), + [anon_sym_LBRACK] = ACTIONS(5231), + [anon_sym_RBRACK] = ACTIONS(5231), + [anon_sym_COMMA] = ACTIONS(5231), + [anon_sym_EQ] = ACTIONS(5231), + [anon_sym_BSLASHpart] = ACTIONS(5233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddpart] = ACTIONS(5233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5231), + [anon_sym_BSLASHchapter] = ACTIONS(5233), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddchap] = ACTIONS(5233), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsection] = ACTIONS(5233), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddsec] = ACTIONS(5233), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubsection] = ACTIONS(5233), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHparagraph] = ACTIONS(5233), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5231), + [anon_sym_BSLASHitem] = ACTIONS(5233), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5231), + [anon_sym_LBRACE] = ACTIONS(5231), + [sym_word] = ACTIONS(5233), + [sym_placeholder] = ACTIONS(5231), + [anon_sym_PLUS] = ACTIONS(5233), + [anon_sym_DASH] = ACTIONS(5233), + [anon_sym_STAR] = ACTIONS(5233), + [anon_sym_SLASH] = ACTIONS(5233), + [anon_sym_CARET] = ACTIONS(5233), + [anon_sym__] = ACTIONS(5233), + [anon_sym_LT] = ACTIONS(5233), + [anon_sym_GT] = ACTIONS(5233), + [anon_sym_BANG] = ACTIONS(5233), + [anon_sym_PIPE] = ACTIONS(5233), + [anon_sym_COLON] = ACTIONS(5233), + [anon_sym_SQUOTE] = ACTIONS(5233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), + [anon_sym_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5231), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), + [anon_sym_BSLASHbegin] = ACTIONS(5233), + [anon_sym_BSLASHusepackage] = ACTIONS(5233), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), + [anon_sym_BSLASHinclude] = ACTIONS(5233), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), + [anon_sym_BSLASHinput] = ACTIONS(5233), + [anon_sym_BSLASHsubfile] = ACTIONS(5233), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), + [anon_sym_BSLASHbibliography] = ACTIONS(5233), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), + [anon_sym_BSLASHincludesvg] = ACTIONS(5233), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), + [anon_sym_BSLASHimport] = ACTIONS(5233), + [anon_sym_BSLASHsubimport] = ACTIONS(5233), + [anon_sym_BSLASHinputfrom] = ACTIONS(5233), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), + [anon_sym_BSLASHincludefrom] = ACTIONS(5233), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), + [anon_sym_BSLASHcaption] = ACTIONS(5233), + [anon_sym_BSLASHcite] = ACTIONS(5233), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCite] = ACTIONS(5233), + [anon_sym_BSLASHnocite] = ACTIONS(5233), + [anon_sym_BSLASHcitet] = ACTIONS(5233), + [anon_sym_BSLASHcitep] = ACTIONS(5233), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteyear] = ACTIONS(5233), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitedate] = ACTIONS(5233), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteurl] = ACTIONS(5233), + [anon_sym_BSLASHfullcite] = ACTIONS(5233), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), + [anon_sym_BSLASHcitealt] = ACTIONS(5233), + [anon_sym_BSLASHcitealp] = ACTIONS(5233), + [anon_sym_BSLASHcitetext] = ACTIONS(5233), + [anon_sym_BSLASHparencite] = ACTIONS(5233), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHParencite] = ACTIONS(5233), + [anon_sym_BSLASHfootcite] = ACTIONS(5233), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), + [anon_sym_BSLASHtextcite] = ACTIONS(5233), + [anon_sym_BSLASHTextcite] = ACTIONS(5233), + [anon_sym_BSLASHsmartcite] = ACTIONS(5233), + [anon_sym_BSLASHSmartcite] = ACTIONS(5233), + [anon_sym_BSLASHsupercite] = ACTIONS(5233), + [anon_sym_BSLASHautocite] = ACTIONS(5233), + [anon_sym_BSLASHAutocite] = ACTIONS(5233), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHvolcite] = ACTIONS(5233), + [anon_sym_BSLASHVolcite] = ACTIONS(5233), + [anon_sym_BSLASHpvolcite] = ACTIONS(5233), + [anon_sym_BSLASHPvolcite] = ACTIONS(5233), + [anon_sym_BSLASHfvolcite] = ACTIONS(5233), + [anon_sym_BSLASHftvolcite] = ACTIONS(5233), + [anon_sym_BSLASHsvolcite] = ACTIONS(5233), + [anon_sym_BSLASHSvolcite] = ACTIONS(5233), + [anon_sym_BSLASHtvolcite] = ACTIONS(5233), + [anon_sym_BSLASHTvolcite] = ACTIONS(5233), + [anon_sym_BSLASHavolcite] = ACTIONS(5233), + [anon_sym_BSLASHAvolcite] = ACTIONS(5233), + [anon_sym_BSLASHnotecite] = ACTIONS(5233), + [anon_sym_BSLASHNotecite] = ACTIONS(5233), + [anon_sym_BSLASHpnotecite] = ACTIONS(5233), + [anon_sym_BSLASHPnotecite] = ACTIONS(5233), + [anon_sym_BSLASHfnotecite] = ACTIONS(5233), + [anon_sym_BSLASHlabel] = ACTIONS(5233), + [anon_sym_BSLASHref] = ACTIONS(5233), + [anon_sym_BSLASHeqref] = ACTIONS(5233), + [anon_sym_BSLASHvref] = ACTIONS(5233), + [anon_sym_BSLASHVref] = ACTIONS(5233), + [anon_sym_BSLASHautoref] = ACTIONS(5233), + [anon_sym_BSLASHpageref] = ACTIONS(5233), + [anon_sym_BSLASHcref] = ACTIONS(5233), + [anon_sym_BSLASHCref] = ACTIONS(5233), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), + [anon_sym_BSLASHnamecref] = ACTIONS(5233), + [anon_sym_BSLASHnameCref] = ACTIONS(5233), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), + [anon_sym_BSLASHlabelcref] = ACTIONS(5233), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), + [anon_sym_BSLASHcrefrange] = ACTIONS(5233), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), + [anon_sym_BSLASHnewlabel] = ACTIONS(5233), + [anon_sym_BSLASHnewcommand] = ACTIONS(5233), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), + [anon_sym_BSLASHdef] = ACTIONS(5233), + [anon_sym_BSLASHlet] = ACTIONS(5233), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), + [anon_sym_BSLASHgls] = ACTIONS(5233), + [anon_sym_BSLASHGls] = ACTIONS(5233), + [anon_sym_BSLASHGLS] = ACTIONS(5233), + [anon_sym_BSLASHglspl] = ACTIONS(5233), + [anon_sym_BSLASHGlspl] = ACTIONS(5233), + [anon_sym_BSLASHGLSpl] = ACTIONS(5233), + [anon_sym_BSLASHglsdisp] = ACTIONS(5233), + [anon_sym_BSLASHglslink] = ACTIONS(5233), + [anon_sym_BSLASHglstext] = ACTIONS(5233), + [anon_sym_BSLASHGlstext] = ACTIONS(5233), + [anon_sym_BSLASHGLStext] = ACTIONS(5233), + [anon_sym_BSLASHglsfirst] = ACTIONS(5233), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), + [anon_sym_BSLASHglsplural] = ACTIONS(5233), + [anon_sym_BSLASHGlsplural] = ACTIONS(5233), + [anon_sym_BSLASHGLSplural] = ACTIONS(5233), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHglsname] = ACTIONS(5233), + [anon_sym_BSLASHGlsname] = ACTIONS(5233), + [anon_sym_BSLASHGLSname] = ACTIONS(5233), + [anon_sym_BSLASHglssymbol] = ACTIONS(5233), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), + [anon_sym_BSLASHglsdesc] = ACTIONS(5233), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), + [anon_sym_BSLASHglsuseri] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), + [anon_sym_BSLASHglsuserii] = ACTIONS(5233), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), + [anon_sym_BSLASHglsuserv] = ACTIONS(5233), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), + [anon_sym_BSLASHglsuservi] = ACTIONS(5233), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), + [anon_sym_BSLASHnewacronym] = ACTIONS(5233), + [anon_sym_BSLASHacrshort] = ACTIONS(5233), + [anon_sym_BSLASHAcrshort] = ACTIONS(5233), + [anon_sym_BSLASHACRshort] = ACTIONS(5233), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), + [anon_sym_BSLASHacrlong] = ACTIONS(5233), + [anon_sym_BSLASHAcrlong] = ACTIONS(5233), + [anon_sym_BSLASHACRlong] = ACTIONS(5233), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), + [anon_sym_BSLASHacrfull] = ACTIONS(5233), + [anon_sym_BSLASHAcrfull] = ACTIONS(5233), + [anon_sym_BSLASHACRfull] = ACTIONS(5233), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), + [anon_sym_BSLASHacs] = ACTIONS(5233), + [anon_sym_BSLASHAcs] = ACTIONS(5233), + [anon_sym_BSLASHacsp] = ACTIONS(5233), + [anon_sym_BSLASHAcsp] = ACTIONS(5233), + [anon_sym_BSLASHacl] = ACTIONS(5233), + [anon_sym_BSLASHAcl] = ACTIONS(5233), + [anon_sym_BSLASHaclp] = ACTIONS(5233), + [anon_sym_BSLASHAclp] = ACTIONS(5233), + [anon_sym_BSLASHacf] = ACTIONS(5233), + [anon_sym_BSLASHAcf] = ACTIONS(5233), + [anon_sym_BSLASHacfp] = ACTIONS(5233), + [anon_sym_BSLASHAcfp] = ACTIONS(5233), + [anon_sym_BSLASHac] = ACTIONS(5233), + [anon_sym_BSLASHAc] = ACTIONS(5233), + [anon_sym_BSLASHacp] = ACTIONS(5233), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), + [anon_sym_BSLASHcolor] = ACTIONS(5233), + [anon_sym_BSLASHcolorbox] = ACTIONS(5233), + [anon_sym_BSLASHtextcolor] = ACTIONS(5233), + [anon_sym_BSLASHpagecolor] = ACTIONS(5233), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), + [anon_sym_BSLASHtext] = ACTIONS(5233), + [anon_sym_BSLASHintertext] = ACTIONS(5233), + [anon_sym_shortintertext] = ACTIONS(5233), + }, + [843] = { + [sym_command_name] = ACTIONS(5229), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5229), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5227), + [anon_sym_LBRACK] = ACTIONS(5227), + [anon_sym_RBRACK] = ACTIONS(5227), + [anon_sym_COMMA] = ACTIONS(5227), + [anon_sym_EQ] = ACTIONS(5227), + [anon_sym_BSLASHpart] = ACTIONS(5229), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddpart] = ACTIONS(5229), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5227), + [anon_sym_BSLASHchapter] = ACTIONS(5229), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddchap] = ACTIONS(5229), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsection] = ACTIONS(5229), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddsec] = ACTIONS(5229), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubsection] = ACTIONS(5229), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHparagraph] = ACTIONS(5229), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5227), + [anon_sym_BSLASHitem] = ACTIONS(5229), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5227), + [anon_sym_LBRACE] = ACTIONS(5227), + [sym_word] = ACTIONS(5229), + [sym_placeholder] = ACTIONS(5227), + [anon_sym_PLUS] = ACTIONS(5229), + [anon_sym_DASH] = ACTIONS(5229), + [anon_sym_STAR] = ACTIONS(5229), + [anon_sym_SLASH] = ACTIONS(5229), + [anon_sym_CARET] = ACTIONS(5229), + [anon_sym__] = ACTIONS(5229), + [anon_sym_LT] = ACTIONS(5229), + [anon_sym_GT] = ACTIONS(5229), + [anon_sym_BANG] = ACTIONS(5229), + [anon_sym_PIPE] = ACTIONS(5229), + [anon_sym_COLON] = ACTIONS(5229), + [anon_sym_SQUOTE] = ACTIONS(5229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), + [anon_sym_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5227), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), + [anon_sym_BSLASHbegin] = ACTIONS(5229), + [anon_sym_BSLASHusepackage] = ACTIONS(5229), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), + [anon_sym_BSLASHinclude] = ACTIONS(5229), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), + [anon_sym_BSLASHinput] = ACTIONS(5229), + [anon_sym_BSLASHsubfile] = ACTIONS(5229), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), + [anon_sym_BSLASHbibliography] = ACTIONS(5229), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), + [anon_sym_BSLASHincludesvg] = ACTIONS(5229), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), + [anon_sym_BSLASHimport] = ACTIONS(5229), + [anon_sym_BSLASHsubimport] = ACTIONS(5229), + [anon_sym_BSLASHinputfrom] = ACTIONS(5229), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), + [anon_sym_BSLASHincludefrom] = ACTIONS(5229), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), + [anon_sym_BSLASHcaption] = ACTIONS(5229), + [anon_sym_BSLASHcite] = ACTIONS(5229), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCite] = ACTIONS(5229), + [anon_sym_BSLASHnocite] = ACTIONS(5229), + [anon_sym_BSLASHcitet] = ACTIONS(5229), + [anon_sym_BSLASHcitep] = ACTIONS(5229), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteyear] = ACTIONS(5229), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitedate] = ACTIONS(5229), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteurl] = ACTIONS(5229), + [anon_sym_BSLASHfullcite] = ACTIONS(5229), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), + [anon_sym_BSLASHcitealt] = ACTIONS(5229), + [anon_sym_BSLASHcitealp] = ACTIONS(5229), + [anon_sym_BSLASHcitetext] = ACTIONS(5229), + [anon_sym_BSLASHparencite] = ACTIONS(5229), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHParencite] = ACTIONS(5229), + [anon_sym_BSLASHfootcite] = ACTIONS(5229), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), + [anon_sym_BSLASHtextcite] = ACTIONS(5229), + [anon_sym_BSLASHTextcite] = ACTIONS(5229), + [anon_sym_BSLASHsmartcite] = ACTIONS(5229), + [anon_sym_BSLASHSmartcite] = ACTIONS(5229), + [anon_sym_BSLASHsupercite] = ACTIONS(5229), + [anon_sym_BSLASHautocite] = ACTIONS(5229), + [anon_sym_BSLASHAutocite] = ACTIONS(5229), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHvolcite] = ACTIONS(5229), + [anon_sym_BSLASHVolcite] = ACTIONS(5229), + [anon_sym_BSLASHpvolcite] = ACTIONS(5229), + [anon_sym_BSLASHPvolcite] = ACTIONS(5229), + [anon_sym_BSLASHfvolcite] = ACTIONS(5229), + [anon_sym_BSLASHftvolcite] = ACTIONS(5229), + [anon_sym_BSLASHsvolcite] = ACTIONS(5229), + [anon_sym_BSLASHSvolcite] = ACTIONS(5229), + [anon_sym_BSLASHtvolcite] = ACTIONS(5229), + [anon_sym_BSLASHTvolcite] = ACTIONS(5229), + [anon_sym_BSLASHavolcite] = ACTIONS(5229), + [anon_sym_BSLASHAvolcite] = ACTIONS(5229), + [anon_sym_BSLASHnotecite] = ACTIONS(5229), + [anon_sym_BSLASHNotecite] = ACTIONS(5229), + [anon_sym_BSLASHpnotecite] = ACTIONS(5229), + [anon_sym_BSLASHPnotecite] = ACTIONS(5229), + [anon_sym_BSLASHfnotecite] = ACTIONS(5229), + [anon_sym_BSLASHlabel] = ACTIONS(5229), + [anon_sym_BSLASHref] = ACTIONS(5229), + [anon_sym_BSLASHeqref] = ACTIONS(5229), + [anon_sym_BSLASHvref] = ACTIONS(5229), + [anon_sym_BSLASHVref] = ACTIONS(5229), + [anon_sym_BSLASHautoref] = ACTIONS(5229), + [anon_sym_BSLASHpageref] = ACTIONS(5229), + [anon_sym_BSLASHcref] = ACTIONS(5229), + [anon_sym_BSLASHCref] = ACTIONS(5229), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), + [anon_sym_BSLASHnamecref] = ACTIONS(5229), + [anon_sym_BSLASHnameCref] = ACTIONS(5229), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), + [anon_sym_BSLASHlabelcref] = ACTIONS(5229), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), + [anon_sym_BSLASHcrefrange] = ACTIONS(5229), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), + [anon_sym_BSLASHnewlabel] = ACTIONS(5229), + [anon_sym_BSLASHnewcommand] = ACTIONS(5229), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), + [anon_sym_BSLASHdef] = ACTIONS(5229), + [anon_sym_BSLASHlet] = ACTIONS(5229), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), + [anon_sym_BSLASHgls] = ACTIONS(5229), + [anon_sym_BSLASHGls] = ACTIONS(5229), + [anon_sym_BSLASHGLS] = ACTIONS(5229), + [anon_sym_BSLASHglspl] = ACTIONS(5229), + [anon_sym_BSLASHGlspl] = ACTIONS(5229), + [anon_sym_BSLASHGLSpl] = ACTIONS(5229), + [anon_sym_BSLASHglsdisp] = ACTIONS(5229), + [anon_sym_BSLASHglslink] = ACTIONS(5229), + [anon_sym_BSLASHglstext] = ACTIONS(5229), + [anon_sym_BSLASHGlstext] = ACTIONS(5229), + [anon_sym_BSLASHGLStext] = ACTIONS(5229), + [anon_sym_BSLASHglsfirst] = ACTIONS(5229), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), + [anon_sym_BSLASHglsplural] = ACTIONS(5229), + [anon_sym_BSLASHGlsplural] = ACTIONS(5229), + [anon_sym_BSLASHGLSplural] = ACTIONS(5229), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHglsname] = ACTIONS(5229), + [anon_sym_BSLASHGlsname] = ACTIONS(5229), + [anon_sym_BSLASHGLSname] = ACTIONS(5229), + [anon_sym_BSLASHglssymbol] = ACTIONS(5229), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), + [anon_sym_BSLASHglsdesc] = ACTIONS(5229), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), + [anon_sym_BSLASHglsuseri] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), + [anon_sym_BSLASHglsuserii] = ACTIONS(5229), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), + [anon_sym_BSLASHglsuserv] = ACTIONS(5229), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), + [anon_sym_BSLASHglsuservi] = ACTIONS(5229), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), + [anon_sym_BSLASHnewacronym] = ACTIONS(5229), + [anon_sym_BSLASHacrshort] = ACTIONS(5229), + [anon_sym_BSLASHAcrshort] = ACTIONS(5229), + [anon_sym_BSLASHACRshort] = ACTIONS(5229), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), + [anon_sym_BSLASHacrlong] = ACTIONS(5229), + [anon_sym_BSLASHAcrlong] = ACTIONS(5229), + [anon_sym_BSLASHACRlong] = ACTIONS(5229), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), + [anon_sym_BSLASHacrfull] = ACTIONS(5229), + [anon_sym_BSLASHAcrfull] = ACTIONS(5229), + [anon_sym_BSLASHACRfull] = ACTIONS(5229), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), + [anon_sym_BSLASHacs] = ACTIONS(5229), + [anon_sym_BSLASHAcs] = ACTIONS(5229), + [anon_sym_BSLASHacsp] = ACTIONS(5229), + [anon_sym_BSLASHAcsp] = ACTIONS(5229), + [anon_sym_BSLASHacl] = ACTIONS(5229), + [anon_sym_BSLASHAcl] = ACTIONS(5229), + [anon_sym_BSLASHaclp] = ACTIONS(5229), + [anon_sym_BSLASHAclp] = ACTIONS(5229), + [anon_sym_BSLASHacf] = ACTIONS(5229), + [anon_sym_BSLASHAcf] = ACTIONS(5229), + [anon_sym_BSLASHacfp] = ACTIONS(5229), + [anon_sym_BSLASHAcfp] = ACTIONS(5229), + [anon_sym_BSLASHac] = ACTIONS(5229), + [anon_sym_BSLASHAc] = ACTIONS(5229), + [anon_sym_BSLASHacp] = ACTIONS(5229), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), + [anon_sym_BSLASHcolor] = ACTIONS(5229), + [anon_sym_BSLASHcolorbox] = ACTIONS(5229), + [anon_sym_BSLASHtextcolor] = ACTIONS(5229), + [anon_sym_BSLASHpagecolor] = ACTIONS(5229), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), + [anon_sym_BSLASHtext] = ACTIONS(5229), + [anon_sym_BSLASHintertext] = ACTIONS(5229), + [anon_sym_shortintertext] = ACTIONS(5229), }, - [991] = { - [sym_command_name] = ACTIONS(5105), + [844] = { + [sym_command_name] = ACTIONS(5225), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_BSLASHpart] = ACTIONS(5105), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddpart] = ACTIONS(5105), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHchapter] = ACTIONS(5105), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddchap] = ACTIONS(5105), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsection] = ACTIONS(5105), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddsec] = ACTIONS(5105), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHparagraph] = ACTIONS(5105), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHitem] = ACTIONS(5105), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [sym_word] = ACTIONS(5105), - [sym_placeholder] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym__] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_COLON] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5105), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5105), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), - [anon_sym_BSLASHbegin] = ACTIONS(5105), - [anon_sym_BSLASHusepackage] = ACTIONS(5105), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), - [anon_sym_BSLASHinclude] = ACTIONS(5105), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), - [anon_sym_BSLASHinput] = ACTIONS(5105), - [anon_sym_BSLASHsubfile] = ACTIONS(5105), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), - [anon_sym_BSLASHbibliography] = ACTIONS(5105), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), - [anon_sym_BSLASHincludesvg] = ACTIONS(5105), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), - [anon_sym_BSLASHimport] = ACTIONS(5105), - [anon_sym_BSLASHsubimport] = ACTIONS(5105), - [anon_sym_BSLASHinputfrom] = ACTIONS(5105), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), - [anon_sym_BSLASHincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHcaption] = ACTIONS(5105), - [anon_sym_BSLASHcite] = ACTIONS(5105), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCite] = ACTIONS(5105), - [anon_sym_BSLASHnocite] = ACTIONS(5105), - [anon_sym_BSLASHcitet] = ACTIONS(5105), - [anon_sym_BSLASHcitep] = ACTIONS(5105), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteauthor] = ACTIONS(5105), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitetitle] = ACTIONS(5105), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteyear] = ACTIONS(5105), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitedate] = ACTIONS(5105), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteurl] = ACTIONS(5105), - [anon_sym_BSLASHfullcite] = ACTIONS(5105), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), - [anon_sym_BSLASHcitealt] = ACTIONS(5105), - [anon_sym_BSLASHcitealp] = ACTIONS(5105), - [anon_sym_BSLASHcitetext] = ACTIONS(5105), - [anon_sym_BSLASHparencite] = ACTIONS(5105), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHParencite] = ACTIONS(5105), - [anon_sym_BSLASHfootcite] = ACTIONS(5105), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), - [anon_sym_BSLASHtextcite] = ACTIONS(5105), - [anon_sym_BSLASHTextcite] = ACTIONS(5105), - [anon_sym_BSLASHsmartcite] = ACTIONS(5105), - [anon_sym_BSLASHSmartcite] = ACTIONS(5105), - [anon_sym_BSLASHsupercite] = ACTIONS(5105), - [anon_sym_BSLASHautocite] = ACTIONS(5105), - [anon_sym_BSLASHAutocite] = ACTIONS(5105), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHvolcite] = ACTIONS(5105), - [anon_sym_BSLASHVolcite] = ACTIONS(5105), - [anon_sym_BSLASHpvolcite] = ACTIONS(5105), - [anon_sym_BSLASHPvolcite] = ACTIONS(5105), - [anon_sym_BSLASHfvolcite] = ACTIONS(5105), - [anon_sym_BSLASHftvolcite] = ACTIONS(5105), - [anon_sym_BSLASHsvolcite] = ACTIONS(5105), - [anon_sym_BSLASHSvolcite] = ACTIONS(5105), - [anon_sym_BSLASHtvolcite] = ACTIONS(5105), - [anon_sym_BSLASHTvolcite] = ACTIONS(5105), - [anon_sym_BSLASHavolcite] = ACTIONS(5105), - [anon_sym_BSLASHAvolcite] = ACTIONS(5105), - [anon_sym_BSLASHnotecite] = ACTIONS(5105), - [anon_sym_BSLASHNotecite] = ACTIONS(5105), - [anon_sym_BSLASHpnotecite] = ACTIONS(5105), - [anon_sym_BSLASHPnotecite] = ACTIONS(5105), - [anon_sym_BSLASHfnotecite] = ACTIONS(5105), - [anon_sym_BSLASHlabel] = ACTIONS(5105), - [anon_sym_BSLASHref] = ACTIONS(5105), - [anon_sym_BSLASHeqref] = ACTIONS(5105), - [anon_sym_BSLASHvref] = ACTIONS(5105), - [anon_sym_BSLASHVref] = ACTIONS(5105), - [anon_sym_BSLASHautoref] = ACTIONS(5105), - [anon_sym_BSLASHpageref] = ACTIONS(5105), - [anon_sym_BSLASHcref] = ACTIONS(5105), - [anon_sym_BSLASHCref] = ACTIONS(5105), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnameCref] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHlabelcref] = ACTIONS(5105), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCrefrange] = ACTIONS(5105), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnewlabel] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdef] = ACTIONS(5105), - [anon_sym_BSLASHlet] = ACTIONS(5105), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), - [anon_sym_BSLASHgls] = ACTIONS(5105), - [anon_sym_BSLASHGls] = ACTIONS(5105), - [anon_sym_BSLASHGLS] = ACTIONS(5105), - [anon_sym_BSLASHglspl] = ACTIONS(5105), - [anon_sym_BSLASHGlspl] = ACTIONS(5105), - [anon_sym_BSLASHGLSpl] = ACTIONS(5105), - [anon_sym_BSLASHglsdisp] = ACTIONS(5105), - [anon_sym_BSLASHglslink] = ACTIONS(5105), - [anon_sym_BSLASHglstext] = ACTIONS(5105), - [anon_sym_BSLASHGlstext] = ACTIONS(5105), - [anon_sym_BSLASHGLStext] = ACTIONS(5105), - [anon_sym_BSLASHglsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), - [anon_sym_BSLASHglsplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSplural] = ACTIONS(5105), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHglsname] = ACTIONS(5105), - [anon_sym_BSLASHGlsname] = ACTIONS(5105), - [anon_sym_BSLASHGLSname] = ACTIONS(5105), - [anon_sym_BSLASHglssymbol] = ACTIONS(5105), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), - [anon_sym_BSLASHglsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), - [anon_sym_BSLASHglsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), - [anon_sym_BSLASHglsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), - [anon_sym_BSLASHglsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), - [anon_sym_BSLASHglsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), - [anon_sym_BSLASHnewacronym] = ACTIONS(5105), - [anon_sym_BSLASHacrshort] = ACTIONS(5105), - [anon_sym_BSLASHAcrshort] = ACTIONS(5105), - [anon_sym_BSLASHACRshort] = ACTIONS(5105), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), - [anon_sym_BSLASHacrlong] = ACTIONS(5105), - [anon_sym_BSLASHAcrlong] = ACTIONS(5105), - [anon_sym_BSLASHACRlong] = ACTIONS(5105), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), - [anon_sym_BSLASHacrfull] = ACTIONS(5105), - [anon_sym_BSLASHAcrfull] = ACTIONS(5105), - [anon_sym_BSLASHACRfull] = ACTIONS(5105), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), - [anon_sym_BSLASHacs] = ACTIONS(5105), - [anon_sym_BSLASHAcs] = ACTIONS(5105), - [anon_sym_BSLASHacsp] = ACTIONS(5105), - [anon_sym_BSLASHAcsp] = ACTIONS(5105), - [anon_sym_BSLASHacl] = ACTIONS(5105), - [anon_sym_BSLASHAcl] = ACTIONS(5105), - [anon_sym_BSLASHaclp] = ACTIONS(5105), - [anon_sym_BSLASHAclp] = ACTIONS(5105), - [anon_sym_BSLASHacf] = ACTIONS(5105), - [anon_sym_BSLASHAcf] = ACTIONS(5105), - [anon_sym_BSLASHacfp] = ACTIONS(5105), - [anon_sym_BSLASHAcfp] = ACTIONS(5105), - [anon_sym_BSLASHac] = ACTIONS(5105), - [anon_sym_BSLASHAc] = ACTIONS(5105), - [anon_sym_BSLASHacp] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), - [anon_sym_BSLASHcolor] = ACTIONS(5105), - [anon_sym_BSLASHcolorbox] = ACTIONS(5105), - [anon_sym_BSLASHtextcolor] = ACTIONS(5105), - [anon_sym_BSLASHpagecolor] = ACTIONS(5105), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), + [anon_sym_BSLASHiffalse] = ACTIONS(5225), + [anon_sym_LPAREN] = ACTIONS(5223), + [anon_sym_RPAREN] = ACTIONS(5223), + [anon_sym_LBRACK] = ACTIONS(5223), + [anon_sym_RBRACK] = ACTIONS(5223), + [anon_sym_COMMA] = ACTIONS(5223), + [anon_sym_EQ] = ACTIONS(5223), + [anon_sym_BSLASHpart] = ACTIONS(5225), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddpart] = ACTIONS(5225), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), + [anon_sym_BSLASHchapter] = ACTIONS(5225), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddchap] = ACTIONS(5225), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsection] = ACTIONS(5225), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddsec] = ACTIONS(5225), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubsection] = ACTIONS(5225), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHparagraph] = ACTIONS(5225), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), + [anon_sym_BSLASHitem] = ACTIONS(5225), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), + [anon_sym_LBRACE] = ACTIONS(5223), + [sym_word] = ACTIONS(5225), + [sym_placeholder] = ACTIONS(5223), + [anon_sym_PLUS] = ACTIONS(5225), + [anon_sym_DASH] = ACTIONS(5225), + [anon_sym_STAR] = ACTIONS(5225), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_CARET] = ACTIONS(5225), + [anon_sym__] = ACTIONS(5225), + [anon_sym_LT] = ACTIONS(5225), + [anon_sym_GT] = ACTIONS(5225), + [anon_sym_BANG] = ACTIONS(5225), + [anon_sym_PIPE] = ACTIONS(5225), + [anon_sym_COLON] = ACTIONS(5225), + [anon_sym_SQUOTE] = ACTIONS(5225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), + [anon_sym_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5223), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), + [anon_sym_BSLASHbegin] = ACTIONS(5225), + [anon_sym_BSLASHusepackage] = ACTIONS(5225), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), + [anon_sym_BSLASHinclude] = ACTIONS(5225), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), + [anon_sym_BSLASHinput] = ACTIONS(5225), + [anon_sym_BSLASHsubfile] = ACTIONS(5225), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), + [anon_sym_BSLASHbibliography] = ACTIONS(5225), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), + [anon_sym_BSLASHincludesvg] = ACTIONS(5225), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), + [anon_sym_BSLASHimport] = ACTIONS(5225), + [anon_sym_BSLASHsubimport] = ACTIONS(5225), + [anon_sym_BSLASHinputfrom] = ACTIONS(5225), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), + [anon_sym_BSLASHincludefrom] = ACTIONS(5225), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), + [anon_sym_BSLASHcaption] = ACTIONS(5225), + [anon_sym_BSLASHcite] = ACTIONS(5225), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCite] = ACTIONS(5225), + [anon_sym_BSLASHnocite] = ACTIONS(5225), + [anon_sym_BSLASHcitet] = ACTIONS(5225), + [anon_sym_BSLASHcitep] = ACTIONS(5225), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteyear] = ACTIONS(5225), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitedate] = ACTIONS(5225), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteurl] = ACTIONS(5225), + [anon_sym_BSLASHfullcite] = ACTIONS(5225), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), + [anon_sym_BSLASHcitealt] = ACTIONS(5225), + [anon_sym_BSLASHcitealp] = ACTIONS(5225), + [anon_sym_BSLASHcitetext] = ACTIONS(5225), + [anon_sym_BSLASHparencite] = ACTIONS(5225), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHParencite] = ACTIONS(5225), + [anon_sym_BSLASHfootcite] = ACTIONS(5225), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), + [anon_sym_BSLASHtextcite] = ACTIONS(5225), + [anon_sym_BSLASHTextcite] = ACTIONS(5225), + [anon_sym_BSLASHsmartcite] = ACTIONS(5225), + [anon_sym_BSLASHSmartcite] = ACTIONS(5225), + [anon_sym_BSLASHsupercite] = ACTIONS(5225), + [anon_sym_BSLASHautocite] = ACTIONS(5225), + [anon_sym_BSLASHAutocite] = ACTIONS(5225), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHvolcite] = ACTIONS(5225), + [anon_sym_BSLASHVolcite] = ACTIONS(5225), + [anon_sym_BSLASHpvolcite] = ACTIONS(5225), + [anon_sym_BSLASHPvolcite] = ACTIONS(5225), + [anon_sym_BSLASHfvolcite] = ACTIONS(5225), + [anon_sym_BSLASHftvolcite] = ACTIONS(5225), + [anon_sym_BSLASHsvolcite] = ACTIONS(5225), + [anon_sym_BSLASHSvolcite] = ACTIONS(5225), + [anon_sym_BSLASHtvolcite] = ACTIONS(5225), + [anon_sym_BSLASHTvolcite] = ACTIONS(5225), + [anon_sym_BSLASHavolcite] = ACTIONS(5225), + [anon_sym_BSLASHAvolcite] = ACTIONS(5225), + [anon_sym_BSLASHnotecite] = ACTIONS(5225), + [anon_sym_BSLASHNotecite] = ACTIONS(5225), + [anon_sym_BSLASHpnotecite] = ACTIONS(5225), + [anon_sym_BSLASHPnotecite] = ACTIONS(5225), + [anon_sym_BSLASHfnotecite] = ACTIONS(5225), + [anon_sym_BSLASHlabel] = ACTIONS(5225), + [anon_sym_BSLASHref] = ACTIONS(5225), + [anon_sym_BSLASHeqref] = ACTIONS(5225), + [anon_sym_BSLASHvref] = ACTIONS(5225), + [anon_sym_BSLASHVref] = ACTIONS(5225), + [anon_sym_BSLASHautoref] = ACTIONS(5225), + [anon_sym_BSLASHpageref] = ACTIONS(5225), + [anon_sym_BSLASHcref] = ACTIONS(5225), + [anon_sym_BSLASHCref] = ACTIONS(5225), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), + [anon_sym_BSLASHnamecref] = ACTIONS(5225), + [anon_sym_BSLASHnameCref] = ACTIONS(5225), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), + [anon_sym_BSLASHlabelcref] = ACTIONS(5225), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), + [anon_sym_BSLASHcrefrange] = ACTIONS(5225), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), + [anon_sym_BSLASHnewlabel] = ACTIONS(5225), + [anon_sym_BSLASHnewcommand] = ACTIONS(5225), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), + [anon_sym_BSLASHdef] = ACTIONS(5225), + [anon_sym_BSLASHlet] = ACTIONS(5225), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), + [anon_sym_BSLASHgls] = ACTIONS(5225), + [anon_sym_BSLASHGls] = ACTIONS(5225), + [anon_sym_BSLASHGLS] = ACTIONS(5225), + [anon_sym_BSLASHglspl] = ACTIONS(5225), + [anon_sym_BSLASHGlspl] = ACTIONS(5225), + [anon_sym_BSLASHGLSpl] = ACTIONS(5225), + [anon_sym_BSLASHglsdisp] = ACTIONS(5225), + [anon_sym_BSLASHglslink] = ACTIONS(5225), + [anon_sym_BSLASHglstext] = ACTIONS(5225), + [anon_sym_BSLASHGlstext] = ACTIONS(5225), + [anon_sym_BSLASHGLStext] = ACTIONS(5225), + [anon_sym_BSLASHglsfirst] = ACTIONS(5225), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), + [anon_sym_BSLASHglsplural] = ACTIONS(5225), + [anon_sym_BSLASHGlsplural] = ACTIONS(5225), + [anon_sym_BSLASHGLSplural] = ACTIONS(5225), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHglsname] = ACTIONS(5225), + [anon_sym_BSLASHGlsname] = ACTIONS(5225), + [anon_sym_BSLASHGLSname] = ACTIONS(5225), + [anon_sym_BSLASHglssymbol] = ACTIONS(5225), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), + [anon_sym_BSLASHglsdesc] = ACTIONS(5225), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), + [anon_sym_BSLASHglsuseri] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), + [anon_sym_BSLASHglsuserii] = ACTIONS(5225), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), + [anon_sym_BSLASHglsuserv] = ACTIONS(5225), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), + [anon_sym_BSLASHglsuservi] = ACTIONS(5225), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), + [anon_sym_BSLASHnewacronym] = ACTIONS(5225), + [anon_sym_BSLASHacrshort] = ACTIONS(5225), + [anon_sym_BSLASHAcrshort] = ACTIONS(5225), + [anon_sym_BSLASHACRshort] = ACTIONS(5225), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), + [anon_sym_BSLASHacrlong] = ACTIONS(5225), + [anon_sym_BSLASHAcrlong] = ACTIONS(5225), + [anon_sym_BSLASHACRlong] = ACTIONS(5225), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), + [anon_sym_BSLASHacrfull] = ACTIONS(5225), + [anon_sym_BSLASHAcrfull] = ACTIONS(5225), + [anon_sym_BSLASHACRfull] = ACTIONS(5225), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), + [anon_sym_BSLASHacs] = ACTIONS(5225), + [anon_sym_BSLASHAcs] = ACTIONS(5225), + [anon_sym_BSLASHacsp] = ACTIONS(5225), + [anon_sym_BSLASHAcsp] = ACTIONS(5225), + [anon_sym_BSLASHacl] = ACTIONS(5225), + [anon_sym_BSLASHAcl] = ACTIONS(5225), + [anon_sym_BSLASHaclp] = ACTIONS(5225), + [anon_sym_BSLASHAclp] = ACTIONS(5225), + [anon_sym_BSLASHacf] = ACTIONS(5225), + [anon_sym_BSLASHAcf] = ACTIONS(5225), + [anon_sym_BSLASHacfp] = ACTIONS(5225), + [anon_sym_BSLASHAcfp] = ACTIONS(5225), + [anon_sym_BSLASHac] = ACTIONS(5225), + [anon_sym_BSLASHAc] = ACTIONS(5225), + [anon_sym_BSLASHacp] = ACTIONS(5225), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), + [anon_sym_BSLASHcolor] = ACTIONS(5225), + [anon_sym_BSLASHcolorbox] = ACTIONS(5225), + [anon_sym_BSLASHtextcolor] = ACTIONS(5225), + [anon_sym_BSLASHpagecolor] = ACTIONS(5225), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), + [anon_sym_BSLASHtext] = ACTIONS(5225), + [anon_sym_BSLASHintertext] = ACTIONS(5225), + [anon_sym_shortintertext] = ACTIONS(5225), }, - [992] = { - [sym_command_name] = ACTIONS(5109), + [845] = { + [sym_command_name] = ACTIONS(5217), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_BSLASHpart] = ACTIONS(5109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddpart] = ACTIONS(5109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHchapter] = ACTIONS(5109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddchap] = ACTIONS(5109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsection] = ACTIONS(5109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddsec] = ACTIONS(5109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHparagraph] = ACTIONS(5109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHitem] = ACTIONS(5109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), - [anon_sym_BSLASHbegin] = ACTIONS(5109), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), - }, - [993] = { - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_BSLASHpart] = ACTIONS(5113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddpart] = ACTIONS(5113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHchapter] = ACTIONS(5113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddchap] = ACTIONS(5113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsection] = ACTIONS(5113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddsec] = ACTIONS(5113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHparagraph] = ACTIONS(5113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHitem] = ACTIONS(5113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5111), - [anon_sym_BSLASHbegin] = ACTIONS(5113), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), - }, - [994] = { - [sym_command_name] = ACTIONS(5117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_BSLASHpart] = ACTIONS(5117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddpart] = ACTIONS(5117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHchapter] = ACTIONS(5117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddchap] = ACTIONS(5117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsection] = ACTIONS(5117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddsec] = ACTIONS(5117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHparagraph] = ACTIONS(5117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHitem] = ACTIONS(5117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [sym_word] = ACTIONS(5117), - [sym_placeholder] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym__] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5117), - [anon_sym_PIPE] = ACTIONS(5117), - [anon_sym_COLON] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5115), - [anon_sym_BSLASHbegin] = ACTIONS(5117), - [anon_sym_BSLASHusepackage] = ACTIONS(5117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5117), - [anon_sym_BSLASHinclude] = ACTIONS(5117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5117), - [anon_sym_BSLASHinput] = ACTIONS(5117), - [anon_sym_BSLASHsubfile] = ACTIONS(5117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5117), - [anon_sym_BSLASHbibliography] = ACTIONS(5117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5117), - [anon_sym_BSLASHincludesvg] = ACTIONS(5117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5117), - [anon_sym_BSLASHimport] = ACTIONS(5117), - [anon_sym_BSLASHsubimport] = ACTIONS(5117), - [anon_sym_BSLASHinputfrom] = ACTIONS(5117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5117), - [anon_sym_BSLASHincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHcaption] = ACTIONS(5117), - [anon_sym_BSLASHcite] = ACTIONS(5117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCite] = ACTIONS(5117), - [anon_sym_BSLASHnocite] = ACTIONS(5117), - [anon_sym_BSLASHcitet] = ACTIONS(5117), - [anon_sym_BSLASHcitep] = ACTIONS(5117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteyear] = ACTIONS(5117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitedate] = ACTIONS(5117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteurl] = ACTIONS(5117), - [anon_sym_BSLASHfullcite] = ACTIONS(5117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5117), - [anon_sym_BSLASHcitealt] = ACTIONS(5117), - [anon_sym_BSLASHcitealp] = ACTIONS(5117), - [anon_sym_BSLASHcitetext] = ACTIONS(5117), - [anon_sym_BSLASHparencite] = ACTIONS(5117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHParencite] = ACTIONS(5117), - [anon_sym_BSLASHfootcite] = ACTIONS(5117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5117), - [anon_sym_BSLASHtextcite] = ACTIONS(5117), - [anon_sym_BSLASHTextcite] = ACTIONS(5117), - [anon_sym_BSLASHsmartcite] = ACTIONS(5117), - [anon_sym_BSLASHSmartcite] = ACTIONS(5117), - [anon_sym_BSLASHsupercite] = ACTIONS(5117), - [anon_sym_BSLASHautocite] = ACTIONS(5117), - [anon_sym_BSLASHAutocite] = ACTIONS(5117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHvolcite] = ACTIONS(5117), - [anon_sym_BSLASHVolcite] = ACTIONS(5117), - [anon_sym_BSLASHpvolcite] = ACTIONS(5117), - [anon_sym_BSLASHPvolcite] = ACTIONS(5117), - [anon_sym_BSLASHfvolcite] = ACTIONS(5117), - [anon_sym_BSLASHftvolcite] = ACTIONS(5117), - [anon_sym_BSLASHsvolcite] = ACTIONS(5117), - [anon_sym_BSLASHSvolcite] = ACTIONS(5117), - [anon_sym_BSLASHtvolcite] = ACTIONS(5117), - [anon_sym_BSLASHTvolcite] = ACTIONS(5117), - [anon_sym_BSLASHavolcite] = ACTIONS(5117), - [anon_sym_BSLASHAvolcite] = ACTIONS(5117), - [anon_sym_BSLASHnotecite] = ACTIONS(5117), - [anon_sym_BSLASHNotecite] = ACTIONS(5117), - [anon_sym_BSLASHpnotecite] = ACTIONS(5117), - [anon_sym_BSLASHPnotecite] = ACTIONS(5117), - [anon_sym_BSLASHfnotecite] = ACTIONS(5117), - [anon_sym_BSLASHlabel] = ACTIONS(5117), - [anon_sym_BSLASHref] = ACTIONS(5117), - [anon_sym_BSLASHeqref] = ACTIONS(5117), - [anon_sym_BSLASHvref] = ACTIONS(5117), - [anon_sym_BSLASHVref] = ACTIONS(5117), - [anon_sym_BSLASHautoref] = ACTIONS(5117), - [anon_sym_BSLASHpageref] = ACTIONS(5117), - [anon_sym_BSLASHcref] = ACTIONS(5117), - [anon_sym_BSLASHCref] = ACTIONS(5117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnameCref] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHlabelcref] = ACTIONS(5117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnewlabel] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdef] = ACTIONS(5117), - [anon_sym_BSLASHlet] = ACTIONS(5117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5117), - [anon_sym_BSLASHgls] = ACTIONS(5117), - [anon_sym_BSLASHGls] = ACTIONS(5117), - [anon_sym_BSLASHGLS] = ACTIONS(5117), - [anon_sym_BSLASHglspl] = ACTIONS(5117), - [anon_sym_BSLASHGlspl] = ACTIONS(5117), - [anon_sym_BSLASHGLSpl] = ACTIONS(5117), - [anon_sym_BSLASHglsdisp] = ACTIONS(5117), - [anon_sym_BSLASHglslink] = ACTIONS(5117), - [anon_sym_BSLASHglstext] = ACTIONS(5117), - [anon_sym_BSLASHGlstext] = ACTIONS(5117), - [anon_sym_BSLASHGLStext] = ACTIONS(5117), - [anon_sym_BSLASHglsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5117), - [anon_sym_BSLASHglsplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSplural] = ACTIONS(5117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHglsname] = ACTIONS(5117), - [anon_sym_BSLASHGlsname] = ACTIONS(5117), - [anon_sym_BSLASHGLSname] = ACTIONS(5117), - [anon_sym_BSLASHglssymbol] = ACTIONS(5117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5117), - [anon_sym_BSLASHglsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5117), - [anon_sym_BSLASHglsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5117), - [anon_sym_BSLASHglsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5117), - [anon_sym_BSLASHglsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5117), - [anon_sym_BSLASHglsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5117), - [anon_sym_BSLASHnewacronym] = ACTIONS(5117), - [anon_sym_BSLASHacrshort] = ACTIONS(5117), - [anon_sym_BSLASHAcrshort] = ACTIONS(5117), - [anon_sym_BSLASHACRshort] = ACTIONS(5117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5117), - [anon_sym_BSLASHacrlong] = ACTIONS(5117), - [anon_sym_BSLASHAcrlong] = ACTIONS(5117), - [anon_sym_BSLASHACRlong] = ACTIONS(5117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5117), - [anon_sym_BSLASHacrfull] = ACTIONS(5117), - [anon_sym_BSLASHAcrfull] = ACTIONS(5117), - [anon_sym_BSLASHACRfull] = ACTIONS(5117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5117), - [anon_sym_BSLASHacs] = ACTIONS(5117), - [anon_sym_BSLASHAcs] = ACTIONS(5117), - [anon_sym_BSLASHacsp] = ACTIONS(5117), - [anon_sym_BSLASHAcsp] = ACTIONS(5117), - [anon_sym_BSLASHacl] = ACTIONS(5117), - [anon_sym_BSLASHAcl] = ACTIONS(5117), - [anon_sym_BSLASHaclp] = ACTIONS(5117), - [anon_sym_BSLASHAclp] = ACTIONS(5117), - [anon_sym_BSLASHacf] = ACTIONS(5117), - [anon_sym_BSLASHAcf] = ACTIONS(5117), - [anon_sym_BSLASHacfp] = ACTIONS(5117), - [anon_sym_BSLASHAcfp] = ACTIONS(5117), - [anon_sym_BSLASHac] = ACTIONS(5117), - [anon_sym_BSLASHAc] = ACTIONS(5117), - [anon_sym_BSLASHacp] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5117), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5117), - [anon_sym_BSLASHcolor] = ACTIONS(5117), - [anon_sym_BSLASHcolorbox] = ACTIONS(5117), - [anon_sym_BSLASHtextcolor] = ACTIONS(5117), - [anon_sym_BSLASHpagecolor] = ACTIONS(5117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5117), + [anon_sym_BSLASHiffalse] = ACTIONS(5217), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_RPAREN] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_RBRACK] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_BSLASHpart] = ACTIONS(5217), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddpart] = ACTIONS(5217), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), + [anon_sym_BSLASHchapter] = ACTIONS(5217), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddchap] = ACTIONS(5217), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsection] = ACTIONS(5217), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddsec] = ACTIONS(5217), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubsection] = ACTIONS(5217), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHparagraph] = ACTIONS(5217), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), + [anon_sym_BSLASHitem] = ACTIONS(5217), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(5215), + [sym_word] = ACTIONS(5217), + [sym_placeholder] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5217), + [anon_sym_DASH] = ACTIONS(5217), + [anon_sym_STAR] = ACTIONS(5217), + [anon_sym_SLASH] = ACTIONS(5217), + [anon_sym_CARET] = ACTIONS(5217), + [anon_sym__] = ACTIONS(5217), + [anon_sym_LT] = ACTIONS(5217), + [anon_sym_GT] = ACTIONS(5217), + [anon_sym_BANG] = ACTIONS(5217), + [anon_sym_PIPE] = ACTIONS(5217), + [anon_sym_COLON] = ACTIONS(5217), + [anon_sym_SQUOTE] = ACTIONS(5217), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), + [anon_sym_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5215), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), + [anon_sym_BSLASHbegin] = ACTIONS(5217), + [anon_sym_BSLASHusepackage] = ACTIONS(5217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), + [anon_sym_BSLASHinclude] = ACTIONS(5217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), + [anon_sym_BSLASHinput] = ACTIONS(5217), + [anon_sym_BSLASHsubfile] = ACTIONS(5217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), + [anon_sym_BSLASHbibliography] = ACTIONS(5217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), + [anon_sym_BSLASHincludesvg] = ACTIONS(5217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), + [anon_sym_BSLASHimport] = ACTIONS(5217), + [anon_sym_BSLASHsubimport] = ACTIONS(5217), + [anon_sym_BSLASHinputfrom] = ACTIONS(5217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), + [anon_sym_BSLASHincludefrom] = ACTIONS(5217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), + [anon_sym_BSLASHcaption] = ACTIONS(5217), + [anon_sym_BSLASHcite] = ACTIONS(5217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCite] = ACTIONS(5217), + [anon_sym_BSLASHnocite] = ACTIONS(5217), + [anon_sym_BSLASHcitet] = ACTIONS(5217), + [anon_sym_BSLASHcitep] = ACTIONS(5217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteauthor] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitetitle] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteyear] = ACTIONS(5217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitedate] = ACTIONS(5217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteurl] = ACTIONS(5217), + [anon_sym_BSLASHfullcite] = ACTIONS(5217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), + [anon_sym_BSLASHcitealt] = ACTIONS(5217), + [anon_sym_BSLASHcitealp] = ACTIONS(5217), + [anon_sym_BSLASHcitetext] = ACTIONS(5217), + [anon_sym_BSLASHparencite] = ACTIONS(5217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHParencite] = ACTIONS(5217), + [anon_sym_BSLASHfootcite] = ACTIONS(5217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), + [anon_sym_BSLASHtextcite] = ACTIONS(5217), + [anon_sym_BSLASHTextcite] = ACTIONS(5217), + [anon_sym_BSLASHsmartcite] = ACTIONS(5217), + [anon_sym_BSLASHSmartcite] = ACTIONS(5217), + [anon_sym_BSLASHsupercite] = ACTIONS(5217), + [anon_sym_BSLASHautocite] = ACTIONS(5217), + [anon_sym_BSLASHAutocite] = ACTIONS(5217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHvolcite] = ACTIONS(5217), + [anon_sym_BSLASHVolcite] = ACTIONS(5217), + [anon_sym_BSLASHpvolcite] = ACTIONS(5217), + [anon_sym_BSLASHPvolcite] = ACTIONS(5217), + [anon_sym_BSLASHfvolcite] = ACTIONS(5217), + [anon_sym_BSLASHftvolcite] = ACTIONS(5217), + [anon_sym_BSLASHsvolcite] = ACTIONS(5217), + [anon_sym_BSLASHSvolcite] = ACTIONS(5217), + [anon_sym_BSLASHtvolcite] = ACTIONS(5217), + [anon_sym_BSLASHTvolcite] = ACTIONS(5217), + [anon_sym_BSLASHavolcite] = ACTIONS(5217), + [anon_sym_BSLASHAvolcite] = ACTIONS(5217), + [anon_sym_BSLASHnotecite] = ACTIONS(5217), + [anon_sym_BSLASHNotecite] = ACTIONS(5217), + [anon_sym_BSLASHpnotecite] = ACTIONS(5217), + [anon_sym_BSLASHPnotecite] = ACTIONS(5217), + [anon_sym_BSLASHfnotecite] = ACTIONS(5217), + [anon_sym_BSLASHlabel] = ACTIONS(5217), + [anon_sym_BSLASHref] = ACTIONS(5217), + [anon_sym_BSLASHeqref] = ACTIONS(5217), + [anon_sym_BSLASHvref] = ACTIONS(5217), + [anon_sym_BSLASHVref] = ACTIONS(5217), + [anon_sym_BSLASHautoref] = ACTIONS(5217), + [anon_sym_BSLASHpageref] = ACTIONS(5217), + [anon_sym_BSLASHcref] = ACTIONS(5217), + [anon_sym_BSLASHCref] = ACTIONS(5217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), + [anon_sym_BSLASHnamecref] = ACTIONS(5217), + [anon_sym_BSLASHnameCref] = ACTIONS(5217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), + [anon_sym_BSLASHlabelcref] = ACTIONS(5217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), + [anon_sym_BSLASHcrefrange] = ACTIONS(5217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCrefrange] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), + [anon_sym_BSLASHnewlabel] = ACTIONS(5217), + [anon_sym_BSLASHnewcommand] = ACTIONS(5217), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), + [anon_sym_BSLASHdef] = ACTIONS(5217), + [anon_sym_BSLASHlet] = ACTIONS(5217), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), + [anon_sym_BSLASHgls] = ACTIONS(5217), + [anon_sym_BSLASHGls] = ACTIONS(5217), + [anon_sym_BSLASHGLS] = ACTIONS(5217), + [anon_sym_BSLASHglspl] = ACTIONS(5217), + [anon_sym_BSLASHGlspl] = ACTIONS(5217), + [anon_sym_BSLASHGLSpl] = ACTIONS(5217), + [anon_sym_BSLASHglsdisp] = ACTIONS(5217), + [anon_sym_BSLASHglslink] = ACTIONS(5217), + [anon_sym_BSLASHglstext] = ACTIONS(5217), + [anon_sym_BSLASHGlstext] = ACTIONS(5217), + [anon_sym_BSLASHGLStext] = ACTIONS(5217), + [anon_sym_BSLASHglsfirst] = ACTIONS(5217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), + [anon_sym_BSLASHglsplural] = ACTIONS(5217), + [anon_sym_BSLASHGlsplural] = ACTIONS(5217), + [anon_sym_BSLASHGLSplural] = ACTIONS(5217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHglsname] = ACTIONS(5217), + [anon_sym_BSLASHGlsname] = ACTIONS(5217), + [anon_sym_BSLASHGLSname] = ACTIONS(5217), + [anon_sym_BSLASHglssymbol] = ACTIONS(5217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), + [anon_sym_BSLASHglsdesc] = ACTIONS(5217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), + [anon_sym_BSLASHglsuseri] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), + [anon_sym_BSLASHglsuserii] = ACTIONS(5217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), + [anon_sym_BSLASHglsuserv] = ACTIONS(5217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), + [anon_sym_BSLASHglsuservi] = ACTIONS(5217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), + [anon_sym_BSLASHnewacronym] = ACTIONS(5217), + [anon_sym_BSLASHacrshort] = ACTIONS(5217), + [anon_sym_BSLASHAcrshort] = ACTIONS(5217), + [anon_sym_BSLASHACRshort] = ACTIONS(5217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), + [anon_sym_BSLASHacrlong] = ACTIONS(5217), + [anon_sym_BSLASHAcrlong] = ACTIONS(5217), + [anon_sym_BSLASHACRlong] = ACTIONS(5217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), + [anon_sym_BSLASHacrfull] = ACTIONS(5217), + [anon_sym_BSLASHAcrfull] = ACTIONS(5217), + [anon_sym_BSLASHACRfull] = ACTIONS(5217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), + [anon_sym_BSLASHacs] = ACTIONS(5217), + [anon_sym_BSLASHAcs] = ACTIONS(5217), + [anon_sym_BSLASHacsp] = ACTIONS(5217), + [anon_sym_BSLASHAcsp] = ACTIONS(5217), + [anon_sym_BSLASHacl] = ACTIONS(5217), + [anon_sym_BSLASHAcl] = ACTIONS(5217), + [anon_sym_BSLASHaclp] = ACTIONS(5217), + [anon_sym_BSLASHAclp] = ACTIONS(5217), + [anon_sym_BSLASHacf] = ACTIONS(5217), + [anon_sym_BSLASHAcf] = ACTIONS(5217), + [anon_sym_BSLASHacfp] = ACTIONS(5217), + [anon_sym_BSLASHAcfp] = ACTIONS(5217), + [anon_sym_BSLASHac] = ACTIONS(5217), + [anon_sym_BSLASHAc] = ACTIONS(5217), + [anon_sym_BSLASHacp] = ACTIONS(5217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), + [anon_sym_BSLASHcolor] = ACTIONS(5217), + [anon_sym_BSLASHcolorbox] = ACTIONS(5217), + [anon_sym_BSLASHtextcolor] = ACTIONS(5217), + [anon_sym_BSLASHpagecolor] = ACTIONS(5217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [anon_sym_BSLASHtext] = ACTIONS(5217), + [anon_sym_BSLASHintertext] = ACTIONS(5217), + [anon_sym_shortintertext] = ACTIONS(5217), }, - [995] = { - [sym_command_name] = ACTIONS(5147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5145), - [anon_sym_RPAREN] = ACTIONS(5145), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_RBRACK] = ACTIONS(5145), - [anon_sym_COMMA] = ACTIONS(5145), - [anon_sym_EQ] = ACTIONS(5145), - [anon_sym_BSLASHpart] = ACTIONS(5147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddpart] = ACTIONS(5147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5145), - [anon_sym_BSLASHchapter] = ACTIONS(5147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddchap] = ACTIONS(5147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsection] = ACTIONS(5147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddsec] = ACTIONS(5147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubsection] = ACTIONS(5147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHparagraph] = ACTIONS(5147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5145), - [anon_sym_BSLASHitem] = ACTIONS(5147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5145), - [anon_sym_LBRACE] = ACTIONS(5145), - [sym_word] = ACTIONS(5147), - [sym_placeholder] = ACTIONS(5145), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_CARET] = ACTIONS(5147), - [anon_sym__] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5147), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5145), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5145), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5145), - [anon_sym_BSLASHbegin] = ACTIONS(5147), - [anon_sym_BSLASHusepackage] = ACTIONS(5147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5147), - [anon_sym_BSLASHinclude] = ACTIONS(5147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5147), - [anon_sym_BSLASHinput] = ACTIONS(5147), - [anon_sym_BSLASHsubfile] = ACTIONS(5147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5147), - [anon_sym_BSLASHbibliography] = ACTIONS(5147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5147), - [anon_sym_BSLASHincludesvg] = ACTIONS(5147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5147), - [anon_sym_BSLASHimport] = ACTIONS(5147), - [anon_sym_BSLASHsubimport] = ACTIONS(5147), - [anon_sym_BSLASHinputfrom] = ACTIONS(5147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5147), - [anon_sym_BSLASHincludefrom] = ACTIONS(5147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5147), - [anon_sym_BSLASHcaption] = ACTIONS(5147), - [anon_sym_BSLASHcite] = ACTIONS(5147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCite] = ACTIONS(5147), - [anon_sym_BSLASHnocite] = ACTIONS(5147), - [anon_sym_BSLASHcitet] = ACTIONS(5147), - [anon_sym_BSLASHcitep] = ACTIONS(5147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteyear] = ACTIONS(5147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitedate] = ACTIONS(5147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteurl] = ACTIONS(5147), - [anon_sym_BSLASHfullcite] = ACTIONS(5147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5147), - [anon_sym_BSLASHcitealt] = ACTIONS(5147), - [anon_sym_BSLASHcitealp] = ACTIONS(5147), - [anon_sym_BSLASHcitetext] = ACTIONS(5147), - [anon_sym_BSLASHparencite] = ACTIONS(5147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHParencite] = ACTIONS(5147), - [anon_sym_BSLASHfootcite] = ACTIONS(5147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5147), - [anon_sym_BSLASHtextcite] = ACTIONS(5147), - [anon_sym_BSLASHTextcite] = ACTIONS(5147), - [anon_sym_BSLASHsmartcite] = ACTIONS(5147), - [anon_sym_BSLASHSmartcite] = ACTIONS(5147), - [anon_sym_BSLASHsupercite] = ACTIONS(5147), - [anon_sym_BSLASHautocite] = ACTIONS(5147), - [anon_sym_BSLASHAutocite] = ACTIONS(5147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHvolcite] = ACTIONS(5147), - [anon_sym_BSLASHVolcite] = ACTIONS(5147), - [anon_sym_BSLASHpvolcite] = ACTIONS(5147), - [anon_sym_BSLASHPvolcite] = ACTIONS(5147), - [anon_sym_BSLASHfvolcite] = ACTIONS(5147), - [anon_sym_BSLASHftvolcite] = ACTIONS(5147), - [anon_sym_BSLASHsvolcite] = ACTIONS(5147), - [anon_sym_BSLASHSvolcite] = ACTIONS(5147), - [anon_sym_BSLASHtvolcite] = ACTIONS(5147), - [anon_sym_BSLASHTvolcite] = ACTIONS(5147), - [anon_sym_BSLASHavolcite] = ACTIONS(5147), - [anon_sym_BSLASHAvolcite] = ACTIONS(5147), - [anon_sym_BSLASHnotecite] = ACTIONS(5147), - [anon_sym_BSLASHNotecite] = ACTIONS(5147), - [anon_sym_BSLASHpnotecite] = ACTIONS(5147), - [anon_sym_BSLASHPnotecite] = ACTIONS(5147), - [anon_sym_BSLASHfnotecite] = ACTIONS(5147), - [anon_sym_BSLASHlabel] = ACTIONS(5147), - [anon_sym_BSLASHref] = ACTIONS(5147), - [anon_sym_BSLASHeqref] = ACTIONS(5147), - [anon_sym_BSLASHvref] = ACTIONS(5147), - [anon_sym_BSLASHVref] = ACTIONS(5147), - [anon_sym_BSLASHautoref] = ACTIONS(5147), - [anon_sym_BSLASHpageref] = ACTIONS(5147), - [anon_sym_BSLASHcref] = ACTIONS(5147), - [anon_sym_BSLASHCref] = ACTIONS(5147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5145), - [anon_sym_BSLASHnamecref] = ACTIONS(5147), - [anon_sym_BSLASHnameCref] = ACTIONS(5147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5147), - [anon_sym_BSLASHlabelcref] = ACTIONS(5147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5147), - [anon_sym_BSLASHcrefrange] = ACTIONS(5147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5145), - [anon_sym_BSLASHnewlabel] = ACTIONS(5147), - [anon_sym_BSLASHnewcommand] = ACTIONS(5147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5145), - [anon_sym_BSLASHdef] = ACTIONS(5147), - [anon_sym_BSLASHlet] = ACTIONS(5147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5147), - [anon_sym_BSLASHgls] = ACTIONS(5147), - [anon_sym_BSLASHGls] = ACTIONS(5147), - [anon_sym_BSLASHGLS] = ACTIONS(5147), - [anon_sym_BSLASHglspl] = ACTIONS(5147), - [anon_sym_BSLASHGlspl] = ACTIONS(5147), - [anon_sym_BSLASHGLSpl] = ACTIONS(5147), - [anon_sym_BSLASHglsdisp] = ACTIONS(5147), - [anon_sym_BSLASHglslink] = ACTIONS(5147), - [anon_sym_BSLASHglstext] = ACTIONS(5147), - [anon_sym_BSLASHGlstext] = ACTIONS(5147), - [anon_sym_BSLASHGLStext] = ACTIONS(5147), - [anon_sym_BSLASHglsfirst] = ACTIONS(5147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5147), - [anon_sym_BSLASHglsplural] = ACTIONS(5147), - [anon_sym_BSLASHGlsplural] = ACTIONS(5147), - [anon_sym_BSLASHGLSplural] = ACTIONS(5147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHglsname] = ACTIONS(5147), - [anon_sym_BSLASHGlsname] = ACTIONS(5147), - [anon_sym_BSLASHGLSname] = ACTIONS(5147), - [anon_sym_BSLASHglssymbol] = ACTIONS(5147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5147), - [anon_sym_BSLASHglsdesc] = ACTIONS(5147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5147), - [anon_sym_BSLASHglsuseri] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5147), - [anon_sym_BSLASHglsuserii] = ACTIONS(5147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5147), - [anon_sym_BSLASHglsuserv] = ACTIONS(5147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5147), - [anon_sym_BSLASHglsuservi] = ACTIONS(5147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5147), - [anon_sym_BSLASHnewacronym] = ACTIONS(5147), - [anon_sym_BSLASHacrshort] = ACTIONS(5147), - [anon_sym_BSLASHAcrshort] = ACTIONS(5147), - [anon_sym_BSLASHACRshort] = ACTIONS(5147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5147), - [anon_sym_BSLASHacrlong] = ACTIONS(5147), - [anon_sym_BSLASHAcrlong] = ACTIONS(5147), - [anon_sym_BSLASHACRlong] = ACTIONS(5147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5147), - [anon_sym_BSLASHacrfull] = ACTIONS(5147), - [anon_sym_BSLASHAcrfull] = ACTIONS(5147), - [anon_sym_BSLASHACRfull] = ACTIONS(5147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5147), - [anon_sym_BSLASHacs] = ACTIONS(5147), - [anon_sym_BSLASHAcs] = ACTIONS(5147), - [anon_sym_BSLASHacsp] = ACTIONS(5147), - [anon_sym_BSLASHAcsp] = ACTIONS(5147), - [anon_sym_BSLASHacl] = ACTIONS(5147), - [anon_sym_BSLASHAcl] = ACTIONS(5147), - [anon_sym_BSLASHaclp] = ACTIONS(5147), - [anon_sym_BSLASHAclp] = ACTIONS(5147), - [anon_sym_BSLASHacf] = ACTIONS(5147), - [anon_sym_BSLASHAcf] = ACTIONS(5147), - [anon_sym_BSLASHacfp] = ACTIONS(5147), - [anon_sym_BSLASHAcfp] = ACTIONS(5147), - [anon_sym_BSLASHac] = ACTIONS(5147), - [anon_sym_BSLASHAc] = ACTIONS(5147), - [anon_sym_BSLASHacp] = ACTIONS(5147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5147), - [anon_sym_BSLASHcolor] = ACTIONS(5147), - [anon_sym_BSLASHcolorbox] = ACTIONS(5147), - [anon_sym_BSLASHtextcolor] = ACTIONS(5147), - [anon_sym_BSLASHpagecolor] = ACTIONS(5147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5147), + [846] = { + [sym_command_name] = ACTIONS(5213), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_RPAREN] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_RBRACK] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_EQ] = ACTIONS(5211), + [anon_sym_BSLASHpart] = ACTIONS(5213), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddpart] = ACTIONS(5213), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5211), + [anon_sym_BSLASHchapter] = ACTIONS(5213), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddchap] = ACTIONS(5213), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsection] = ACTIONS(5213), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddsec] = ACTIONS(5213), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubsection] = ACTIONS(5213), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5213), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHparagraph] = ACTIONS(5213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5213), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5211), + [anon_sym_BSLASHitem] = ACTIONS(5213), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(5211), + [sym_word] = ACTIONS(5213), + [sym_placeholder] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_CARET] = ACTIONS(5213), + [anon_sym__] = ACTIONS(5213), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_SQUOTE] = ACTIONS(5213), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), + [anon_sym_DOLLAR] = ACTIONS(5213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5211), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), + [anon_sym_BSLASHbegin] = ACTIONS(5213), + [anon_sym_BSLASHusepackage] = ACTIONS(5213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), + [anon_sym_BSLASHinclude] = ACTIONS(5213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), + [anon_sym_BSLASHinput] = ACTIONS(5213), + [anon_sym_BSLASHsubfile] = ACTIONS(5213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), + [anon_sym_BSLASHbibliography] = ACTIONS(5213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), + [anon_sym_BSLASHincludesvg] = ACTIONS(5213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), + [anon_sym_BSLASHimport] = ACTIONS(5213), + [anon_sym_BSLASHsubimport] = ACTIONS(5213), + [anon_sym_BSLASHinputfrom] = ACTIONS(5213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), + [anon_sym_BSLASHincludefrom] = ACTIONS(5213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), + [anon_sym_BSLASHcaption] = ACTIONS(5213), + [anon_sym_BSLASHcite] = ACTIONS(5213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCite] = ACTIONS(5213), + [anon_sym_BSLASHnocite] = ACTIONS(5213), + [anon_sym_BSLASHcitet] = ACTIONS(5213), + [anon_sym_BSLASHcitep] = ACTIONS(5213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteauthor] = ACTIONS(5213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitetitle] = ACTIONS(5213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteyear] = ACTIONS(5213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitedate] = ACTIONS(5213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteurl] = ACTIONS(5213), + [anon_sym_BSLASHfullcite] = ACTIONS(5213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), + [anon_sym_BSLASHcitealt] = ACTIONS(5213), + [anon_sym_BSLASHcitealp] = ACTIONS(5213), + [anon_sym_BSLASHcitetext] = ACTIONS(5213), + [anon_sym_BSLASHparencite] = ACTIONS(5213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHParencite] = ACTIONS(5213), + [anon_sym_BSLASHfootcite] = ACTIONS(5213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), + [anon_sym_BSLASHtextcite] = ACTIONS(5213), + [anon_sym_BSLASHTextcite] = ACTIONS(5213), + [anon_sym_BSLASHsmartcite] = ACTIONS(5213), + [anon_sym_BSLASHSmartcite] = ACTIONS(5213), + [anon_sym_BSLASHsupercite] = ACTIONS(5213), + [anon_sym_BSLASHautocite] = ACTIONS(5213), + [anon_sym_BSLASHAutocite] = ACTIONS(5213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHvolcite] = ACTIONS(5213), + [anon_sym_BSLASHVolcite] = ACTIONS(5213), + [anon_sym_BSLASHpvolcite] = ACTIONS(5213), + [anon_sym_BSLASHPvolcite] = ACTIONS(5213), + [anon_sym_BSLASHfvolcite] = ACTIONS(5213), + [anon_sym_BSLASHftvolcite] = ACTIONS(5213), + [anon_sym_BSLASHsvolcite] = ACTIONS(5213), + [anon_sym_BSLASHSvolcite] = ACTIONS(5213), + [anon_sym_BSLASHtvolcite] = ACTIONS(5213), + [anon_sym_BSLASHTvolcite] = ACTIONS(5213), + [anon_sym_BSLASHavolcite] = ACTIONS(5213), + [anon_sym_BSLASHAvolcite] = ACTIONS(5213), + [anon_sym_BSLASHnotecite] = ACTIONS(5213), + [anon_sym_BSLASHNotecite] = ACTIONS(5213), + [anon_sym_BSLASHpnotecite] = ACTIONS(5213), + [anon_sym_BSLASHPnotecite] = ACTIONS(5213), + [anon_sym_BSLASHfnotecite] = ACTIONS(5213), + [anon_sym_BSLASHlabel] = ACTIONS(5213), + [anon_sym_BSLASHref] = ACTIONS(5213), + [anon_sym_BSLASHeqref] = ACTIONS(5213), + [anon_sym_BSLASHvref] = ACTIONS(5213), + [anon_sym_BSLASHVref] = ACTIONS(5213), + [anon_sym_BSLASHautoref] = ACTIONS(5213), + [anon_sym_BSLASHpageref] = ACTIONS(5213), + [anon_sym_BSLASHcref] = ACTIONS(5213), + [anon_sym_BSLASHCref] = ACTIONS(5213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), + [anon_sym_BSLASHnamecref] = ACTIONS(5213), + [anon_sym_BSLASHnameCref] = ACTIONS(5213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), + [anon_sym_BSLASHlabelcref] = ACTIONS(5213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), + [anon_sym_BSLASHcrefrange] = ACTIONS(5213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCrefrange] = ACTIONS(5213), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), + [anon_sym_BSLASHnewlabel] = ACTIONS(5213), + [anon_sym_BSLASHnewcommand] = ACTIONS(5213), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), + [anon_sym_BSLASHdef] = ACTIONS(5213), + [anon_sym_BSLASHlet] = ACTIONS(5213), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), + [anon_sym_BSLASHgls] = ACTIONS(5213), + [anon_sym_BSLASHGls] = ACTIONS(5213), + [anon_sym_BSLASHGLS] = ACTIONS(5213), + [anon_sym_BSLASHglspl] = ACTIONS(5213), + [anon_sym_BSLASHGlspl] = ACTIONS(5213), + [anon_sym_BSLASHGLSpl] = ACTIONS(5213), + [anon_sym_BSLASHglsdisp] = ACTIONS(5213), + [anon_sym_BSLASHglslink] = ACTIONS(5213), + [anon_sym_BSLASHglstext] = ACTIONS(5213), + [anon_sym_BSLASHGlstext] = ACTIONS(5213), + [anon_sym_BSLASHGLStext] = ACTIONS(5213), + [anon_sym_BSLASHglsfirst] = ACTIONS(5213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), + [anon_sym_BSLASHglsplural] = ACTIONS(5213), + [anon_sym_BSLASHGlsplural] = ACTIONS(5213), + [anon_sym_BSLASHGLSplural] = ACTIONS(5213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHglsname] = ACTIONS(5213), + [anon_sym_BSLASHGlsname] = ACTIONS(5213), + [anon_sym_BSLASHGLSname] = ACTIONS(5213), + [anon_sym_BSLASHglssymbol] = ACTIONS(5213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), + [anon_sym_BSLASHglsdesc] = ACTIONS(5213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), + [anon_sym_BSLASHglsuseri] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), + [anon_sym_BSLASHglsuserii] = ACTIONS(5213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), + [anon_sym_BSLASHglsuserv] = ACTIONS(5213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), + [anon_sym_BSLASHglsuservi] = ACTIONS(5213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), + [anon_sym_BSLASHnewacronym] = ACTIONS(5213), + [anon_sym_BSLASHacrshort] = ACTIONS(5213), + [anon_sym_BSLASHAcrshort] = ACTIONS(5213), + [anon_sym_BSLASHACRshort] = ACTIONS(5213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), + [anon_sym_BSLASHacrlong] = ACTIONS(5213), + [anon_sym_BSLASHAcrlong] = ACTIONS(5213), + [anon_sym_BSLASHACRlong] = ACTIONS(5213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), + [anon_sym_BSLASHacrfull] = ACTIONS(5213), + [anon_sym_BSLASHAcrfull] = ACTIONS(5213), + [anon_sym_BSLASHACRfull] = ACTIONS(5213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), + [anon_sym_BSLASHacs] = ACTIONS(5213), + [anon_sym_BSLASHAcs] = ACTIONS(5213), + [anon_sym_BSLASHacsp] = ACTIONS(5213), + [anon_sym_BSLASHAcsp] = ACTIONS(5213), + [anon_sym_BSLASHacl] = ACTIONS(5213), + [anon_sym_BSLASHAcl] = ACTIONS(5213), + [anon_sym_BSLASHaclp] = ACTIONS(5213), + [anon_sym_BSLASHAclp] = ACTIONS(5213), + [anon_sym_BSLASHacf] = ACTIONS(5213), + [anon_sym_BSLASHAcf] = ACTIONS(5213), + [anon_sym_BSLASHacfp] = ACTIONS(5213), + [anon_sym_BSLASHAcfp] = ACTIONS(5213), + [anon_sym_BSLASHac] = ACTIONS(5213), + [anon_sym_BSLASHAc] = ACTIONS(5213), + [anon_sym_BSLASHacp] = ACTIONS(5213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), + [anon_sym_BSLASHtext] = ACTIONS(5213), + [anon_sym_BSLASHintertext] = ACTIONS(5213), + [anon_sym_shortintertext] = ACTIONS(5213), }, - [996] = { - [sym_command_name] = ACTIONS(5155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5153), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_BSLASHpart] = ACTIONS(5155), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddpart] = ACTIONS(5155), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHchapter] = ACTIONS(5155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddchap] = ACTIONS(5155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsection] = ACTIONS(5155), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddsec] = ACTIONS(5155), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHparagraph] = ACTIONS(5155), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHitem] = ACTIONS(5155), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5153), - [sym_word] = ACTIONS(5155), - [sym_placeholder] = ACTIONS(5153), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5155), - [anon_sym__] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5155), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5153), - [anon_sym_BSLASHbegin] = ACTIONS(5155), - [anon_sym_BSLASHusepackage] = ACTIONS(5155), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5155), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5155), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5155), - [anon_sym_BSLASHbibliography] = ACTIONS(5155), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5155), - [anon_sym_BSLASHincludesvg] = ACTIONS(5155), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5155), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5155), - [anon_sym_BSLASHimport] = ACTIONS(5155), - [anon_sym_BSLASHsubimport] = ACTIONS(5155), - [anon_sym_BSLASHinputfrom] = ACTIONS(5155), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5155), - [anon_sym_BSLASHincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHcaption] = ACTIONS(5155), - [anon_sym_BSLASHcite] = ACTIONS(5155), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCite] = ACTIONS(5155), - [anon_sym_BSLASHnocite] = ACTIONS(5155), - [anon_sym_BSLASHcitet] = ACTIONS(5155), - [anon_sym_BSLASHcitep] = ACTIONS(5155), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteyear] = ACTIONS(5155), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitedate] = ACTIONS(5155), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteurl] = ACTIONS(5155), - [anon_sym_BSLASHfullcite] = ACTIONS(5155), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5155), - [anon_sym_BSLASHcitealt] = ACTIONS(5155), - [anon_sym_BSLASHcitealp] = ACTIONS(5155), - [anon_sym_BSLASHcitetext] = ACTIONS(5155), - [anon_sym_BSLASHparencite] = ACTIONS(5155), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHParencite] = ACTIONS(5155), - [anon_sym_BSLASHfootcite] = ACTIONS(5155), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5155), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5155), - [anon_sym_BSLASHtextcite] = ACTIONS(5155), - [anon_sym_BSLASHTextcite] = ACTIONS(5155), - [anon_sym_BSLASHsmartcite] = ACTIONS(5155), - [anon_sym_BSLASHSmartcite] = ACTIONS(5155), - [anon_sym_BSLASHsupercite] = ACTIONS(5155), - [anon_sym_BSLASHautocite] = ACTIONS(5155), - [anon_sym_BSLASHAutocite] = ACTIONS(5155), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHvolcite] = ACTIONS(5155), - [anon_sym_BSLASHVolcite] = ACTIONS(5155), - [anon_sym_BSLASHpvolcite] = ACTIONS(5155), - [anon_sym_BSLASHPvolcite] = ACTIONS(5155), - [anon_sym_BSLASHfvolcite] = ACTIONS(5155), - [anon_sym_BSLASHftvolcite] = ACTIONS(5155), - [anon_sym_BSLASHsvolcite] = ACTIONS(5155), - [anon_sym_BSLASHSvolcite] = ACTIONS(5155), - [anon_sym_BSLASHtvolcite] = ACTIONS(5155), - [anon_sym_BSLASHTvolcite] = ACTIONS(5155), - [anon_sym_BSLASHavolcite] = ACTIONS(5155), - [anon_sym_BSLASHAvolcite] = ACTIONS(5155), - [anon_sym_BSLASHnotecite] = ACTIONS(5155), - [anon_sym_BSLASHNotecite] = ACTIONS(5155), - [anon_sym_BSLASHpnotecite] = ACTIONS(5155), - [anon_sym_BSLASHPnotecite] = ACTIONS(5155), - [anon_sym_BSLASHfnotecite] = ACTIONS(5155), - [anon_sym_BSLASHlabel] = ACTIONS(5155), - [anon_sym_BSLASHref] = ACTIONS(5155), - [anon_sym_BSLASHeqref] = ACTIONS(5155), - [anon_sym_BSLASHvref] = ACTIONS(5155), - [anon_sym_BSLASHVref] = ACTIONS(5155), - [anon_sym_BSLASHautoref] = ACTIONS(5155), - [anon_sym_BSLASHpageref] = ACTIONS(5155), - [anon_sym_BSLASHcref] = ACTIONS(5155), - [anon_sym_BSLASHCref] = ACTIONS(5155), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnameCref] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHlabelcref] = ACTIONS(5155), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnewlabel] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdef] = ACTIONS(5155), - [anon_sym_BSLASHlet] = ACTIONS(5155), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5155), - [anon_sym_BSLASHgls] = ACTIONS(5155), - [anon_sym_BSLASHGls] = ACTIONS(5155), - [anon_sym_BSLASHGLS] = ACTIONS(5155), - [anon_sym_BSLASHglspl] = ACTIONS(5155), - [anon_sym_BSLASHGlspl] = ACTIONS(5155), - [anon_sym_BSLASHGLSpl] = ACTIONS(5155), - [anon_sym_BSLASHglsdisp] = ACTIONS(5155), - [anon_sym_BSLASHglslink] = ACTIONS(5155), - [anon_sym_BSLASHglstext] = ACTIONS(5155), - [anon_sym_BSLASHGlstext] = ACTIONS(5155), - [anon_sym_BSLASHGLStext] = ACTIONS(5155), - [anon_sym_BSLASHglsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5155), - [anon_sym_BSLASHglsplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSplural] = ACTIONS(5155), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHglsname] = ACTIONS(5155), - [anon_sym_BSLASHGlsname] = ACTIONS(5155), - [anon_sym_BSLASHGLSname] = ACTIONS(5155), - [anon_sym_BSLASHglssymbol] = ACTIONS(5155), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5155), - [anon_sym_BSLASHglsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5155), - [anon_sym_BSLASHglsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5155), - [anon_sym_BSLASHglsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5155), - [anon_sym_BSLASHglsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5155), - [anon_sym_BSLASHglsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5155), - [anon_sym_BSLASHnewacronym] = ACTIONS(5155), - [anon_sym_BSLASHacrshort] = ACTIONS(5155), - [anon_sym_BSLASHAcrshort] = ACTIONS(5155), - [anon_sym_BSLASHACRshort] = ACTIONS(5155), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5155), - [anon_sym_BSLASHacrlong] = ACTIONS(5155), - [anon_sym_BSLASHAcrlong] = ACTIONS(5155), - [anon_sym_BSLASHACRlong] = ACTIONS(5155), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5155), - [anon_sym_BSLASHacrfull] = ACTIONS(5155), - [anon_sym_BSLASHAcrfull] = ACTIONS(5155), - [anon_sym_BSLASHACRfull] = ACTIONS(5155), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5155), - [anon_sym_BSLASHacs] = ACTIONS(5155), - [anon_sym_BSLASHAcs] = ACTIONS(5155), - [anon_sym_BSLASHacsp] = ACTIONS(5155), - [anon_sym_BSLASHAcsp] = ACTIONS(5155), - [anon_sym_BSLASHacl] = ACTIONS(5155), - [anon_sym_BSLASHAcl] = ACTIONS(5155), - [anon_sym_BSLASHaclp] = ACTIONS(5155), - [anon_sym_BSLASHAclp] = ACTIONS(5155), - [anon_sym_BSLASHacf] = ACTIONS(5155), - [anon_sym_BSLASHAcf] = ACTIONS(5155), - [anon_sym_BSLASHacfp] = ACTIONS(5155), - [anon_sym_BSLASHAcfp] = ACTIONS(5155), - [anon_sym_BSLASHac] = ACTIONS(5155), - [anon_sym_BSLASHAc] = ACTIONS(5155), - [anon_sym_BSLASHacp] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), - [anon_sym_BSLASHcolor] = ACTIONS(5155), - [anon_sym_BSLASHcolorbox] = ACTIONS(5155), - [anon_sym_BSLASHtextcolor] = ACTIONS(5155), - [anon_sym_BSLASHpagecolor] = ACTIONS(5155), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5155), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5155), + [847] = { + [sym_command_name] = ACTIONS(5209), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5209), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_RPAREN] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_RBRACK] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_BSLASHpart] = ACTIONS(5209), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddpart] = ACTIONS(5209), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), + [anon_sym_BSLASHchapter] = ACTIONS(5209), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddchap] = ACTIONS(5209), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsection] = ACTIONS(5209), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddsec] = ACTIONS(5209), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubsection] = ACTIONS(5209), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHparagraph] = ACTIONS(5209), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), + [anon_sym_BSLASHitem] = ACTIONS(5209), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), + [anon_sym_LBRACE] = ACTIONS(5207), + [sym_word] = ACTIONS(5209), + [sym_placeholder] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_CARET] = ACTIONS(5209), + [anon_sym__] = ACTIONS(5209), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_PIPE] = ACTIONS(5209), + [anon_sym_COLON] = ACTIONS(5209), + [anon_sym_SQUOTE] = ACTIONS(5209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), + [anon_sym_DOLLAR] = ACTIONS(5209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), + [anon_sym_BSLASHbegin] = ACTIONS(5209), + [anon_sym_BSLASHusepackage] = ACTIONS(5209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), + [anon_sym_BSLASHinclude] = ACTIONS(5209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), + [anon_sym_BSLASHinput] = ACTIONS(5209), + [anon_sym_BSLASHsubfile] = ACTIONS(5209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), + [anon_sym_BSLASHbibliography] = ACTIONS(5209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), + [anon_sym_BSLASHincludesvg] = ACTIONS(5209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), + [anon_sym_BSLASHimport] = ACTIONS(5209), + [anon_sym_BSLASHsubimport] = ACTIONS(5209), + [anon_sym_BSLASHinputfrom] = ACTIONS(5209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), + [anon_sym_BSLASHincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHcaption] = ACTIONS(5209), + [anon_sym_BSLASHcite] = ACTIONS(5209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCite] = ACTIONS(5209), + [anon_sym_BSLASHnocite] = ACTIONS(5209), + [anon_sym_BSLASHcitet] = ACTIONS(5209), + [anon_sym_BSLASHcitep] = ACTIONS(5209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteauthor] = ACTIONS(5209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitetitle] = ACTIONS(5209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteyear] = ACTIONS(5209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitedate] = ACTIONS(5209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteurl] = ACTIONS(5209), + [anon_sym_BSLASHfullcite] = ACTIONS(5209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), + [anon_sym_BSLASHcitealt] = ACTIONS(5209), + [anon_sym_BSLASHcitealp] = ACTIONS(5209), + [anon_sym_BSLASHcitetext] = ACTIONS(5209), + [anon_sym_BSLASHparencite] = ACTIONS(5209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHParencite] = ACTIONS(5209), + [anon_sym_BSLASHfootcite] = ACTIONS(5209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), + [anon_sym_BSLASHtextcite] = ACTIONS(5209), + [anon_sym_BSLASHTextcite] = ACTIONS(5209), + [anon_sym_BSLASHsmartcite] = ACTIONS(5209), + [anon_sym_BSLASHSmartcite] = ACTIONS(5209), + [anon_sym_BSLASHsupercite] = ACTIONS(5209), + [anon_sym_BSLASHautocite] = ACTIONS(5209), + [anon_sym_BSLASHAutocite] = ACTIONS(5209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHvolcite] = ACTIONS(5209), + [anon_sym_BSLASHVolcite] = ACTIONS(5209), + [anon_sym_BSLASHpvolcite] = ACTIONS(5209), + [anon_sym_BSLASHPvolcite] = ACTIONS(5209), + [anon_sym_BSLASHfvolcite] = ACTIONS(5209), + [anon_sym_BSLASHftvolcite] = ACTIONS(5209), + [anon_sym_BSLASHsvolcite] = ACTIONS(5209), + [anon_sym_BSLASHSvolcite] = ACTIONS(5209), + [anon_sym_BSLASHtvolcite] = ACTIONS(5209), + [anon_sym_BSLASHTvolcite] = ACTIONS(5209), + [anon_sym_BSLASHavolcite] = ACTIONS(5209), + [anon_sym_BSLASHAvolcite] = ACTIONS(5209), + [anon_sym_BSLASHnotecite] = ACTIONS(5209), + [anon_sym_BSLASHNotecite] = ACTIONS(5209), + [anon_sym_BSLASHpnotecite] = ACTIONS(5209), + [anon_sym_BSLASHPnotecite] = ACTIONS(5209), + [anon_sym_BSLASHfnotecite] = ACTIONS(5209), + [anon_sym_BSLASHlabel] = ACTIONS(5209), + [anon_sym_BSLASHref] = ACTIONS(5209), + [anon_sym_BSLASHeqref] = ACTIONS(5209), + [anon_sym_BSLASHvref] = ACTIONS(5209), + [anon_sym_BSLASHVref] = ACTIONS(5209), + [anon_sym_BSLASHautoref] = ACTIONS(5209), + [anon_sym_BSLASHpageref] = ACTIONS(5209), + [anon_sym_BSLASHcref] = ACTIONS(5209), + [anon_sym_BSLASHCref] = ACTIONS(5209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnameCref] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHlabelcref] = ACTIONS(5209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCrefrange] = ACTIONS(5209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnewlabel] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdef] = ACTIONS(5209), + [anon_sym_BSLASHlet] = ACTIONS(5209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), + [anon_sym_BSLASHgls] = ACTIONS(5209), + [anon_sym_BSLASHGls] = ACTIONS(5209), + [anon_sym_BSLASHGLS] = ACTIONS(5209), + [anon_sym_BSLASHglspl] = ACTIONS(5209), + [anon_sym_BSLASHGlspl] = ACTIONS(5209), + [anon_sym_BSLASHGLSpl] = ACTIONS(5209), + [anon_sym_BSLASHglsdisp] = ACTIONS(5209), + [anon_sym_BSLASHglslink] = ACTIONS(5209), + [anon_sym_BSLASHglstext] = ACTIONS(5209), + [anon_sym_BSLASHGlstext] = ACTIONS(5209), + [anon_sym_BSLASHGLStext] = ACTIONS(5209), + [anon_sym_BSLASHglsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), + [anon_sym_BSLASHglsplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSplural] = ACTIONS(5209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHglsname] = ACTIONS(5209), + [anon_sym_BSLASHGlsname] = ACTIONS(5209), + [anon_sym_BSLASHGLSname] = ACTIONS(5209), + [anon_sym_BSLASHglssymbol] = ACTIONS(5209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), + [anon_sym_BSLASHglsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), + [anon_sym_BSLASHglsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), + [anon_sym_BSLASHglsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), + [anon_sym_BSLASHglsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), + [anon_sym_BSLASHglsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), + [anon_sym_BSLASHnewacronym] = ACTIONS(5209), + [anon_sym_BSLASHacrshort] = ACTIONS(5209), + [anon_sym_BSLASHAcrshort] = ACTIONS(5209), + [anon_sym_BSLASHACRshort] = ACTIONS(5209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), + [anon_sym_BSLASHacrlong] = ACTIONS(5209), + [anon_sym_BSLASHAcrlong] = ACTIONS(5209), + [anon_sym_BSLASHACRlong] = ACTIONS(5209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), + [anon_sym_BSLASHacrfull] = ACTIONS(5209), + [anon_sym_BSLASHAcrfull] = ACTIONS(5209), + [anon_sym_BSLASHACRfull] = ACTIONS(5209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), + [anon_sym_BSLASHacs] = ACTIONS(5209), + [anon_sym_BSLASHAcs] = ACTIONS(5209), + [anon_sym_BSLASHacsp] = ACTIONS(5209), + [anon_sym_BSLASHAcsp] = ACTIONS(5209), + [anon_sym_BSLASHacl] = ACTIONS(5209), + [anon_sym_BSLASHAcl] = ACTIONS(5209), + [anon_sym_BSLASHaclp] = ACTIONS(5209), + [anon_sym_BSLASHAclp] = ACTIONS(5209), + [anon_sym_BSLASHacf] = ACTIONS(5209), + [anon_sym_BSLASHAcf] = ACTIONS(5209), + [anon_sym_BSLASHacfp] = ACTIONS(5209), + [anon_sym_BSLASHAcfp] = ACTIONS(5209), + [anon_sym_BSLASHac] = ACTIONS(5209), + [anon_sym_BSLASHAc] = ACTIONS(5209), + [anon_sym_BSLASHacp] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), + [anon_sym_BSLASHcolor] = ACTIONS(5209), + [anon_sym_BSLASHcolorbox] = ACTIONS(5209), + [anon_sym_BSLASHtextcolor] = ACTIONS(5209), + [anon_sym_BSLASHpagecolor] = ACTIONS(5209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHtext] = ACTIONS(5209), + [anon_sym_BSLASHintertext] = ACTIONS(5209), + [anon_sym_shortintertext] = ACTIONS(5209), }, - [997] = { - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_BSLASHpart] = ACTIONS(5163), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddpart] = ACTIONS(5163), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHchapter] = ACTIONS(5163), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddchap] = ACTIONS(5163), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsection] = ACTIONS(5163), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddsec] = ACTIONS(5163), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHparagraph] = ACTIONS(5163), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHitem] = ACTIONS(5163), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5161), - [anon_sym_BSLASHbegin] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), + [848] = { + [sym_command_name] = ACTIONS(5201), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_BSLASHpart] = ACTIONS(5201), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddpart] = ACTIONS(5201), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), + [anon_sym_BSLASHchapter] = ACTIONS(5201), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddchap] = ACTIONS(5201), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsection] = ACTIONS(5201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddsec] = ACTIONS(5201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubsection] = ACTIONS(5201), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHparagraph] = ACTIONS(5201), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), + [anon_sym_BSLASHitem] = ACTIONS(5201), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5199), + [sym_word] = ACTIONS(5201), + [sym_placeholder] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5201), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_CARET] = ACTIONS(5201), + [anon_sym__] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_SQUOTE] = ACTIONS(5201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), + [anon_sym_DOLLAR] = ACTIONS(5201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), + [anon_sym_BSLASHbegin] = ACTIONS(5201), + [anon_sym_BSLASHusepackage] = ACTIONS(5201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), + [anon_sym_BSLASHinclude] = ACTIONS(5201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), + [anon_sym_BSLASHinput] = ACTIONS(5201), + [anon_sym_BSLASHsubfile] = ACTIONS(5201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), + [anon_sym_BSLASHbibliography] = ACTIONS(5201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), + [anon_sym_BSLASHincludesvg] = ACTIONS(5201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), + [anon_sym_BSLASHimport] = ACTIONS(5201), + [anon_sym_BSLASHsubimport] = ACTIONS(5201), + [anon_sym_BSLASHinputfrom] = ACTIONS(5201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), + [anon_sym_BSLASHincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHcaption] = ACTIONS(5201), + [anon_sym_BSLASHcite] = ACTIONS(5201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCite] = ACTIONS(5201), + [anon_sym_BSLASHnocite] = ACTIONS(5201), + [anon_sym_BSLASHcitet] = ACTIONS(5201), + [anon_sym_BSLASHcitep] = ACTIONS(5201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteauthor] = ACTIONS(5201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitetitle] = ACTIONS(5201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteyear] = ACTIONS(5201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitedate] = ACTIONS(5201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteurl] = ACTIONS(5201), + [anon_sym_BSLASHfullcite] = ACTIONS(5201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), + [anon_sym_BSLASHcitealt] = ACTIONS(5201), + [anon_sym_BSLASHcitealp] = ACTIONS(5201), + [anon_sym_BSLASHcitetext] = ACTIONS(5201), + [anon_sym_BSLASHparencite] = ACTIONS(5201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHParencite] = ACTIONS(5201), + [anon_sym_BSLASHfootcite] = ACTIONS(5201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), + [anon_sym_BSLASHtextcite] = ACTIONS(5201), + [anon_sym_BSLASHTextcite] = ACTIONS(5201), + [anon_sym_BSLASHsmartcite] = ACTIONS(5201), + [anon_sym_BSLASHSmartcite] = ACTIONS(5201), + [anon_sym_BSLASHsupercite] = ACTIONS(5201), + [anon_sym_BSLASHautocite] = ACTIONS(5201), + [anon_sym_BSLASHAutocite] = ACTIONS(5201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHvolcite] = ACTIONS(5201), + [anon_sym_BSLASHVolcite] = ACTIONS(5201), + [anon_sym_BSLASHpvolcite] = ACTIONS(5201), + [anon_sym_BSLASHPvolcite] = ACTIONS(5201), + [anon_sym_BSLASHfvolcite] = ACTIONS(5201), + [anon_sym_BSLASHftvolcite] = ACTIONS(5201), + [anon_sym_BSLASHsvolcite] = ACTIONS(5201), + [anon_sym_BSLASHSvolcite] = ACTIONS(5201), + [anon_sym_BSLASHtvolcite] = ACTIONS(5201), + [anon_sym_BSLASHTvolcite] = ACTIONS(5201), + [anon_sym_BSLASHavolcite] = ACTIONS(5201), + [anon_sym_BSLASHAvolcite] = ACTIONS(5201), + [anon_sym_BSLASHnotecite] = ACTIONS(5201), + [anon_sym_BSLASHNotecite] = ACTIONS(5201), + [anon_sym_BSLASHpnotecite] = ACTIONS(5201), + [anon_sym_BSLASHPnotecite] = ACTIONS(5201), + [anon_sym_BSLASHfnotecite] = ACTIONS(5201), + [anon_sym_BSLASHlabel] = ACTIONS(5201), + [anon_sym_BSLASHref] = ACTIONS(5201), + [anon_sym_BSLASHeqref] = ACTIONS(5201), + [anon_sym_BSLASHvref] = ACTIONS(5201), + [anon_sym_BSLASHVref] = ACTIONS(5201), + [anon_sym_BSLASHautoref] = ACTIONS(5201), + [anon_sym_BSLASHpageref] = ACTIONS(5201), + [anon_sym_BSLASHcref] = ACTIONS(5201), + [anon_sym_BSLASHCref] = ACTIONS(5201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnameCref] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHlabelcref] = ACTIONS(5201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCrefrange] = ACTIONS(5201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnewlabel] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), + [anon_sym_BSLASHdef] = ACTIONS(5201), + [anon_sym_BSLASHlet] = ACTIONS(5201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), + [anon_sym_BSLASHgls] = ACTIONS(5201), + [anon_sym_BSLASHGls] = ACTIONS(5201), + [anon_sym_BSLASHGLS] = ACTIONS(5201), + [anon_sym_BSLASHglspl] = ACTIONS(5201), + [anon_sym_BSLASHGlspl] = ACTIONS(5201), + [anon_sym_BSLASHGLSpl] = ACTIONS(5201), + [anon_sym_BSLASHglsdisp] = ACTIONS(5201), + [anon_sym_BSLASHglslink] = ACTIONS(5201), + [anon_sym_BSLASHglstext] = ACTIONS(5201), + [anon_sym_BSLASHGlstext] = ACTIONS(5201), + [anon_sym_BSLASHGLStext] = ACTIONS(5201), + [anon_sym_BSLASHglsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), + [anon_sym_BSLASHglsplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSplural] = ACTIONS(5201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHglsname] = ACTIONS(5201), + [anon_sym_BSLASHGlsname] = ACTIONS(5201), + [anon_sym_BSLASHGLSname] = ACTIONS(5201), + [anon_sym_BSLASHglssymbol] = ACTIONS(5201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), + [anon_sym_BSLASHglsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), + [anon_sym_BSLASHglsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), + [anon_sym_BSLASHglsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), + [anon_sym_BSLASHglsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), + [anon_sym_BSLASHglsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5201), + [anon_sym_BSLASHAcrshort] = ACTIONS(5201), + [anon_sym_BSLASHACRshort] = ACTIONS(5201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), + [anon_sym_BSLASHacrlong] = ACTIONS(5201), + [anon_sym_BSLASHAcrlong] = ACTIONS(5201), + [anon_sym_BSLASHACRlong] = ACTIONS(5201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), + [anon_sym_BSLASHacrfull] = ACTIONS(5201), + [anon_sym_BSLASHAcrfull] = ACTIONS(5201), + [anon_sym_BSLASHACRfull] = ACTIONS(5201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), + [anon_sym_BSLASHacs] = ACTIONS(5201), + [anon_sym_BSLASHAcs] = ACTIONS(5201), + [anon_sym_BSLASHacsp] = ACTIONS(5201), + [anon_sym_BSLASHAcsp] = ACTIONS(5201), + [anon_sym_BSLASHacl] = ACTIONS(5201), + [anon_sym_BSLASHAcl] = ACTIONS(5201), + [anon_sym_BSLASHaclp] = ACTIONS(5201), + [anon_sym_BSLASHAclp] = ACTIONS(5201), + [anon_sym_BSLASHacf] = ACTIONS(5201), + [anon_sym_BSLASHAcf] = ACTIONS(5201), + [anon_sym_BSLASHacfp] = ACTIONS(5201), + [anon_sym_BSLASHAcfp] = ACTIONS(5201), + [anon_sym_BSLASHac] = ACTIONS(5201), + [anon_sym_BSLASHAc] = ACTIONS(5201), + [anon_sym_BSLASHacp] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), + [anon_sym_BSLASHcolor] = ACTIONS(5201), + [anon_sym_BSLASHcolorbox] = ACTIONS(5201), + [anon_sym_BSLASHtextcolor] = ACTIONS(5201), + [anon_sym_BSLASHpagecolor] = ACTIONS(5201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), + [anon_sym_BSLASHtext] = ACTIONS(5201), + [anon_sym_BSLASHintertext] = ACTIONS(5201), + [anon_sym_shortintertext] = ACTIONS(5201), }, - [998] = { - [sym_command_name] = ACTIONS(5101), + [849] = { + [sym_command_name] = ACTIONS(5197), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_BSLASHpart] = ACTIONS(5101), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddpart] = ACTIONS(5101), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHchapter] = ACTIONS(5101), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddchap] = ACTIONS(5101), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsection] = ACTIONS(5101), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddsec] = ACTIONS(5101), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHparagraph] = ACTIONS(5101), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHitem] = ACTIONS(5101), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASHbegin] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), - }, - [999] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_BSLASHpart] = ACTIONS(5311), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddpart] = ACTIONS(5311), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHchapter] = ACTIONS(5311), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddchap] = ACTIONS(5311), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsection] = ACTIONS(5311), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddsec] = ACTIONS(5311), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHparagraph] = ACTIONS(5311), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5311), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHitem] = ACTIONS(5311), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASHbegin] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), - }, - [1000] = { - [sym_command_name] = ACTIONS(5317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5317), - [anon_sym_LPAREN] = ACTIONS(5315), - [anon_sym_RPAREN] = ACTIONS(5315), - [anon_sym_LBRACK] = ACTIONS(5315), - [anon_sym_RBRACK] = ACTIONS(5315), - [anon_sym_COMMA] = ACTIONS(5315), - [anon_sym_EQ] = ACTIONS(5315), - [anon_sym_BSLASHpart] = ACTIONS(5317), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddpart] = ACTIONS(5317), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5315), - [anon_sym_BSLASHchapter] = ACTIONS(5317), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddchap] = ACTIONS(5317), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsection] = ACTIONS(5317), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddsec] = ACTIONS(5317), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubsection] = ACTIONS(5317), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5317), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHparagraph] = ACTIONS(5317), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5317), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5315), - [anon_sym_BSLASHitem] = ACTIONS(5317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5315), - [anon_sym_LBRACE] = ACTIONS(5315), - [sym_word] = ACTIONS(5317), - [sym_placeholder] = ACTIONS(5315), - [anon_sym_PLUS] = ACTIONS(5317), - [anon_sym_DASH] = ACTIONS(5317), - [anon_sym_STAR] = ACTIONS(5317), - [anon_sym_SLASH] = ACTIONS(5317), - [anon_sym_CARET] = ACTIONS(5317), - [anon_sym__] = ACTIONS(5317), - [anon_sym_LT] = ACTIONS(5317), - [anon_sym_GT] = ACTIONS(5317), - [anon_sym_BANG] = ACTIONS(5317), - [anon_sym_PIPE] = ACTIONS(5317), - [anon_sym_COLON] = ACTIONS(5317), - [anon_sym_SQUOTE] = ACTIONS(5317), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), - [anon_sym_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), - [anon_sym_BSLASHbegin] = ACTIONS(5317), - [anon_sym_BSLASHusepackage] = ACTIONS(5317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), - [anon_sym_BSLASHinclude] = ACTIONS(5317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), - [anon_sym_BSLASHinput] = ACTIONS(5317), - [anon_sym_BSLASHsubfile] = ACTIONS(5317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), - [anon_sym_BSLASHbibliography] = ACTIONS(5317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), - [anon_sym_BSLASHincludesvg] = ACTIONS(5317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), - [anon_sym_BSLASHimport] = ACTIONS(5317), - [anon_sym_BSLASHsubimport] = ACTIONS(5317), - [anon_sym_BSLASHinputfrom] = ACTIONS(5317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), - [anon_sym_BSLASHincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHcaption] = ACTIONS(5317), - [anon_sym_BSLASHcite] = ACTIONS(5317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCite] = ACTIONS(5317), - [anon_sym_BSLASHnocite] = ACTIONS(5317), - [anon_sym_BSLASHcitet] = ACTIONS(5317), - [anon_sym_BSLASHcitep] = ACTIONS(5317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteyear] = ACTIONS(5317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitedate] = ACTIONS(5317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteurl] = ACTIONS(5317), - [anon_sym_BSLASHfullcite] = ACTIONS(5317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), - [anon_sym_BSLASHcitealt] = ACTIONS(5317), - [anon_sym_BSLASHcitealp] = ACTIONS(5317), - [anon_sym_BSLASHcitetext] = ACTIONS(5317), - [anon_sym_BSLASHparencite] = ACTIONS(5317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHParencite] = ACTIONS(5317), - [anon_sym_BSLASHfootcite] = ACTIONS(5317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), - [anon_sym_BSLASHtextcite] = ACTIONS(5317), - [anon_sym_BSLASHTextcite] = ACTIONS(5317), - [anon_sym_BSLASHsmartcite] = ACTIONS(5317), - [anon_sym_BSLASHSmartcite] = ACTIONS(5317), - [anon_sym_BSLASHsupercite] = ACTIONS(5317), - [anon_sym_BSLASHautocite] = ACTIONS(5317), - [anon_sym_BSLASHAutocite] = ACTIONS(5317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHvolcite] = ACTIONS(5317), - [anon_sym_BSLASHVolcite] = ACTIONS(5317), - [anon_sym_BSLASHpvolcite] = ACTIONS(5317), - [anon_sym_BSLASHPvolcite] = ACTIONS(5317), - [anon_sym_BSLASHfvolcite] = ACTIONS(5317), - [anon_sym_BSLASHftvolcite] = ACTIONS(5317), - [anon_sym_BSLASHsvolcite] = ACTIONS(5317), - [anon_sym_BSLASHSvolcite] = ACTIONS(5317), - [anon_sym_BSLASHtvolcite] = ACTIONS(5317), - [anon_sym_BSLASHTvolcite] = ACTIONS(5317), - [anon_sym_BSLASHavolcite] = ACTIONS(5317), - [anon_sym_BSLASHAvolcite] = ACTIONS(5317), - [anon_sym_BSLASHnotecite] = ACTIONS(5317), - [anon_sym_BSLASHNotecite] = ACTIONS(5317), - [anon_sym_BSLASHpnotecite] = ACTIONS(5317), - [anon_sym_BSLASHPnotecite] = ACTIONS(5317), - [anon_sym_BSLASHfnotecite] = ACTIONS(5317), - [anon_sym_BSLASHlabel] = ACTIONS(5317), - [anon_sym_BSLASHref] = ACTIONS(5317), - [anon_sym_BSLASHeqref] = ACTIONS(5317), - [anon_sym_BSLASHvref] = ACTIONS(5317), - [anon_sym_BSLASHVref] = ACTIONS(5317), - [anon_sym_BSLASHautoref] = ACTIONS(5317), - [anon_sym_BSLASHpageref] = ACTIONS(5317), - [anon_sym_BSLASHcref] = ACTIONS(5317), - [anon_sym_BSLASHCref] = ACTIONS(5317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnameCref] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHlabelcref] = ACTIONS(5317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnewlabel] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), - [anon_sym_BSLASHdef] = ACTIONS(5317), - [anon_sym_BSLASHlet] = ACTIONS(5317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), - [anon_sym_BSLASHgls] = ACTIONS(5317), - [anon_sym_BSLASHGls] = ACTIONS(5317), - [anon_sym_BSLASHGLS] = ACTIONS(5317), - [anon_sym_BSLASHglspl] = ACTIONS(5317), - [anon_sym_BSLASHGlspl] = ACTIONS(5317), - [anon_sym_BSLASHGLSpl] = ACTIONS(5317), - [anon_sym_BSLASHglsdisp] = ACTIONS(5317), - [anon_sym_BSLASHglslink] = ACTIONS(5317), - [anon_sym_BSLASHglstext] = ACTIONS(5317), - [anon_sym_BSLASHGlstext] = ACTIONS(5317), - [anon_sym_BSLASHGLStext] = ACTIONS(5317), - [anon_sym_BSLASHglsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), - [anon_sym_BSLASHglsplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSplural] = ACTIONS(5317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHglsname] = ACTIONS(5317), - [anon_sym_BSLASHGlsname] = ACTIONS(5317), - [anon_sym_BSLASHGLSname] = ACTIONS(5317), - [anon_sym_BSLASHglssymbol] = ACTIONS(5317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), - [anon_sym_BSLASHglsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), - [anon_sym_BSLASHglsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), - [anon_sym_BSLASHglsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), - [anon_sym_BSLASHglsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), - [anon_sym_BSLASHglsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), - [anon_sym_BSLASHnewacronym] = ACTIONS(5317), - [anon_sym_BSLASHacrshort] = ACTIONS(5317), - [anon_sym_BSLASHAcrshort] = ACTIONS(5317), - [anon_sym_BSLASHACRshort] = ACTIONS(5317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), - [anon_sym_BSLASHacrlong] = ACTIONS(5317), - [anon_sym_BSLASHAcrlong] = ACTIONS(5317), - [anon_sym_BSLASHACRlong] = ACTIONS(5317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), - [anon_sym_BSLASHacrfull] = ACTIONS(5317), - [anon_sym_BSLASHAcrfull] = ACTIONS(5317), - [anon_sym_BSLASHACRfull] = ACTIONS(5317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), - [anon_sym_BSLASHacs] = ACTIONS(5317), - [anon_sym_BSLASHAcs] = ACTIONS(5317), - [anon_sym_BSLASHacsp] = ACTIONS(5317), - [anon_sym_BSLASHAcsp] = ACTIONS(5317), - [anon_sym_BSLASHacl] = ACTIONS(5317), - [anon_sym_BSLASHAcl] = ACTIONS(5317), - [anon_sym_BSLASHaclp] = ACTIONS(5317), - [anon_sym_BSLASHAclp] = ACTIONS(5317), - [anon_sym_BSLASHacf] = ACTIONS(5317), - [anon_sym_BSLASHAcf] = ACTIONS(5317), - [anon_sym_BSLASHacfp] = ACTIONS(5317), - [anon_sym_BSLASHAcfp] = ACTIONS(5317), - [anon_sym_BSLASHac] = ACTIONS(5317), - [anon_sym_BSLASHAc] = ACTIONS(5317), - [anon_sym_BSLASHacp] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), - [anon_sym_BSLASHcolor] = ACTIONS(5317), - [anon_sym_BSLASHcolorbox] = ACTIONS(5317), - [anon_sym_BSLASHtextcolor] = ACTIONS(5317), - [anon_sym_BSLASHpagecolor] = ACTIONS(5317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), + [anon_sym_BSLASHiffalse] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_BSLASHpart] = ACTIONS(5197), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddpart] = ACTIONS(5197), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), + [anon_sym_BSLASHchapter] = ACTIONS(5197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddchap] = ACTIONS(5197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsection] = ACTIONS(5197), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddsec] = ACTIONS(5197), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubsection] = ACTIONS(5197), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHparagraph] = ACTIONS(5197), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), + [anon_sym_BSLASHitem] = ACTIONS(5197), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5195), + [sym_word] = ACTIONS(5197), + [sym_placeholder] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_CARET] = ACTIONS(5197), + [anon_sym__] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_COLON] = ACTIONS(5197), + [anon_sym_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), + [anon_sym_DOLLAR] = ACTIONS(5197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), + [anon_sym_BSLASHbegin] = ACTIONS(5197), + [anon_sym_BSLASHusepackage] = ACTIONS(5197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), + [anon_sym_BSLASHinclude] = ACTIONS(5197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), + [anon_sym_BSLASHinput] = ACTIONS(5197), + [anon_sym_BSLASHsubfile] = ACTIONS(5197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), + [anon_sym_BSLASHbibliography] = ACTIONS(5197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), + [anon_sym_BSLASHincludesvg] = ACTIONS(5197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), + [anon_sym_BSLASHimport] = ACTIONS(5197), + [anon_sym_BSLASHsubimport] = ACTIONS(5197), + [anon_sym_BSLASHinputfrom] = ACTIONS(5197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), + [anon_sym_BSLASHincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHcaption] = ACTIONS(5197), + [anon_sym_BSLASHcite] = ACTIONS(5197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCite] = ACTIONS(5197), + [anon_sym_BSLASHnocite] = ACTIONS(5197), + [anon_sym_BSLASHcitet] = ACTIONS(5197), + [anon_sym_BSLASHcitep] = ACTIONS(5197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteauthor] = ACTIONS(5197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitetitle] = ACTIONS(5197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteyear] = ACTIONS(5197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitedate] = ACTIONS(5197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteurl] = ACTIONS(5197), + [anon_sym_BSLASHfullcite] = ACTIONS(5197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), + [anon_sym_BSLASHcitealt] = ACTIONS(5197), + [anon_sym_BSLASHcitealp] = ACTIONS(5197), + [anon_sym_BSLASHcitetext] = ACTIONS(5197), + [anon_sym_BSLASHparencite] = ACTIONS(5197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHParencite] = ACTIONS(5197), + [anon_sym_BSLASHfootcite] = ACTIONS(5197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), + [anon_sym_BSLASHtextcite] = ACTIONS(5197), + [anon_sym_BSLASHTextcite] = ACTIONS(5197), + [anon_sym_BSLASHsmartcite] = ACTIONS(5197), + [anon_sym_BSLASHSmartcite] = ACTIONS(5197), + [anon_sym_BSLASHsupercite] = ACTIONS(5197), + [anon_sym_BSLASHautocite] = ACTIONS(5197), + [anon_sym_BSLASHAutocite] = ACTIONS(5197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHvolcite] = ACTIONS(5197), + [anon_sym_BSLASHVolcite] = ACTIONS(5197), + [anon_sym_BSLASHpvolcite] = ACTIONS(5197), + [anon_sym_BSLASHPvolcite] = ACTIONS(5197), + [anon_sym_BSLASHfvolcite] = ACTIONS(5197), + [anon_sym_BSLASHftvolcite] = ACTIONS(5197), + [anon_sym_BSLASHsvolcite] = ACTIONS(5197), + [anon_sym_BSLASHSvolcite] = ACTIONS(5197), + [anon_sym_BSLASHtvolcite] = ACTIONS(5197), + [anon_sym_BSLASHTvolcite] = ACTIONS(5197), + [anon_sym_BSLASHavolcite] = ACTIONS(5197), + [anon_sym_BSLASHAvolcite] = ACTIONS(5197), + [anon_sym_BSLASHnotecite] = ACTIONS(5197), + [anon_sym_BSLASHNotecite] = ACTIONS(5197), + [anon_sym_BSLASHpnotecite] = ACTIONS(5197), + [anon_sym_BSLASHPnotecite] = ACTIONS(5197), + [anon_sym_BSLASHfnotecite] = ACTIONS(5197), + [anon_sym_BSLASHlabel] = ACTIONS(5197), + [anon_sym_BSLASHref] = ACTIONS(5197), + [anon_sym_BSLASHeqref] = ACTIONS(5197), + [anon_sym_BSLASHvref] = ACTIONS(5197), + [anon_sym_BSLASHVref] = ACTIONS(5197), + [anon_sym_BSLASHautoref] = ACTIONS(5197), + [anon_sym_BSLASHpageref] = ACTIONS(5197), + [anon_sym_BSLASHcref] = ACTIONS(5197), + [anon_sym_BSLASHCref] = ACTIONS(5197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnameCref] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHlabelcref] = ACTIONS(5197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCrefrange] = ACTIONS(5197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnewlabel] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), + [anon_sym_BSLASHdef] = ACTIONS(5197), + [anon_sym_BSLASHlet] = ACTIONS(5197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5197), + [anon_sym_BSLASHGls] = ACTIONS(5197), + [anon_sym_BSLASHGLS] = ACTIONS(5197), + [anon_sym_BSLASHglspl] = ACTIONS(5197), + [anon_sym_BSLASHGlspl] = ACTIONS(5197), + [anon_sym_BSLASHGLSpl] = ACTIONS(5197), + [anon_sym_BSLASHglsdisp] = ACTIONS(5197), + [anon_sym_BSLASHglslink] = ACTIONS(5197), + [anon_sym_BSLASHglstext] = ACTIONS(5197), + [anon_sym_BSLASHGlstext] = ACTIONS(5197), + [anon_sym_BSLASHGLStext] = ACTIONS(5197), + [anon_sym_BSLASHglsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), + [anon_sym_BSLASHglsplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSplural] = ACTIONS(5197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHglsname] = ACTIONS(5197), + [anon_sym_BSLASHGlsname] = ACTIONS(5197), + [anon_sym_BSLASHGLSname] = ACTIONS(5197), + [anon_sym_BSLASHglssymbol] = ACTIONS(5197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), + [anon_sym_BSLASHglsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), + [anon_sym_BSLASHglsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), + [anon_sym_BSLASHglsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), + [anon_sym_BSLASHglsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), + [anon_sym_BSLASHglsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), + [anon_sym_BSLASHnewacronym] = ACTIONS(5197), + [anon_sym_BSLASHacrshort] = ACTIONS(5197), + [anon_sym_BSLASHAcrshort] = ACTIONS(5197), + [anon_sym_BSLASHACRshort] = ACTIONS(5197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), + [anon_sym_BSLASHacrlong] = ACTIONS(5197), + [anon_sym_BSLASHAcrlong] = ACTIONS(5197), + [anon_sym_BSLASHACRlong] = ACTIONS(5197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), + [anon_sym_BSLASHacrfull] = ACTIONS(5197), + [anon_sym_BSLASHAcrfull] = ACTIONS(5197), + [anon_sym_BSLASHACRfull] = ACTIONS(5197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), + [anon_sym_BSLASHacs] = ACTIONS(5197), + [anon_sym_BSLASHAcs] = ACTIONS(5197), + [anon_sym_BSLASHacsp] = ACTIONS(5197), + [anon_sym_BSLASHAcsp] = ACTIONS(5197), + [anon_sym_BSLASHacl] = ACTIONS(5197), + [anon_sym_BSLASHAcl] = ACTIONS(5197), + [anon_sym_BSLASHaclp] = ACTIONS(5197), + [anon_sym_BSLASHAclp] = ACTIONS(5197), + [anon_sym_BSLASHacf] = ACTIONS(5197), + [anon_sym_BSLASHAcf] = ACTIONS(5197), + [anon_sym_BSLASHacfp] = ACTIONS(5197), + [anon_sym_BSLASHAcfp] = ACTIONS(5197), + [anon_sym_BSLASHac] = ACTIONS(5197), + [anon_sym_BSLASHAc] = ACTIONS(5197), + [anon_sym_BSLASHacp] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), + [anon_sym_BSLASHcolor] = ACTIONS(5197), + [anon_sym_BSLASHcolorbox] = ACTIONS(5197), + [anon_sym_BSLASHtextcolor] = ACTIONS(5197), + [anon_sym_BSLASHpagecolor] = ACTIONS(5197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + [anon_sym_BSLASHtext] = ACTIONS(5197), + [anon_sym_BSLASHintertext] = ACTIONS(5197), + [anon_sym_shortintertext] = ACTIONS(5197), }, - [1001] = { - [sym_command_name] = ACTIONS(5217), + [850] = { + [sym_command_name] = ACTIONS(5193), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_BSLASHpart] = ACTIONS(5217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddpart] = ACTIONS(5217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHchapter] = ACTIONS(5217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddchap] = ACTIONS(5217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsection] = ACTIONS(5217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddsec] = ACTIONS(5217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHparagraph] = ACTIONS(5217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHitem] = ACTIONS(5217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASHbegin] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [anon_sym_BSLASHiffalse] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5191), + [anon_sym_RPAREN] = ACTIONS(5191), + [anon_sym_LBRACK] = ACTIONS(5191), + [anon_sym_RBRACK] = ACTIONS(5191), + [anon_sym_COMMA] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_BSLASHpart] = ACTIONS(5193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddpart] = ACTIONS(5193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), + [anon_sym_BSLASHchapter] = ACTIONS(5193), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddchap] = ACTIONS(5193), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsection] = ACTIONS(5193), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddsec] = ACTIONS(5193), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubsection] = ACTIONS(5193), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHparagraph] = ACTIONS(5193), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), + [anon_sym_BSLASHitem] = ACTIONS(5193), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5191), + [sym_word] = ACTIONS(5193), + [sym_placeholder] = ACTIONS(5191), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5193), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_CARET] = ACTIONS(5193), + [anon_sym__] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_PIPE] = ACTIONS(5193), + [anon_sym_COLON] = ACTIONS(5193), + [anon_sym_SQUOTE] = ACTIONS(5193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), + [anon_sym_DOLLAR] = ACTIONS(5193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), + [anon_sym_BSLASHbegin] = ACTIONS(5193), + [anon_sym_BSLASHusepackage] = ACTIONS(5193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), + [anon_sym_BSLASHinclude] = ACTIONS(5193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), + [anon_sym_BSLASHinput] = ACTIONS(5193), + [anon_sym_BSLASHsubfile] = ACTIONS(5193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), + [anon_sym_BSLASHbibliography] = ACTIONS(5193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), + [anon_sym_BSLASHincludesvg] = ACTIONS(5193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), + [anon_sym_BSLASHimport] = ACTIONS(5193), + [anon_sym_BSLASHsubimport] = ACTIONS(5193), + [anon_sym_BSLASHinputfrom] = ACTIONS(5193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), + [anon_sym_BSLASHincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHcaption] = ACTIONS(5193), + [anon_sym_BSLASHcite] = ACTIONS(5193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCite] = ACTIONS(5193), + [anon_sym_BSLASHnocite] = ACTIONS(5193), + [anon_sym_BSLASHcitet] = ACTIONS(5193), + [anon_sym_BSLASHcitep] = ACTIONS(5193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteauthor] = ACTIONS(5193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitetitle] = ACTIONS(5193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteyear] = ACTIONS(5193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitedate] = ACTIONS(5193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteurl] = ACTIONS(5193), + [anon_sym_BSLASHfullcite] = ACTIONS(5193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), + [anon_sym_BSLASHcitealt] = ACTIONS(5193), + [anon_sym_BSLASHcitealp] = ACTIONS(5193), + [anon_sym_BSLASHcitetext] = ACTIONS(5193), + [anon_sym_BSLASHparencite] = ACTIONS(5193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHParencite] = ACTIONS(5193), + [anon_sym_BSLASHfootcite] = ACTIONS(5193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), + [anon_sym_BSLASHtextcite] = ACTIONS(5193), + [anon_sym_BSLASHTextcite] = ACTIONS(5193), + [anon_sym_BSLASHsmartcite] = ACTIONS(5193), + [anon_sym_BSLASHSmartcite] = ACTIONS(5193), + [anon_sym_BSLASHsupercite] = ACTIONS(5193), + [anon_sym_BSLASHautocite] = ACTIONS(5193), + [anon_sym_BSLASHAutocite] = ACTIONS(5193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHvolcite] = ACTIONS(5193), + [anon_sym_BSLASHVolcite] = ACTIONS(5193), + [anon_sym_BSLASHpvolcite] = ACTIONS(5193), + [anon_sym_BSLASHPvolcite] = ACTIONS(5193), + [anon_sym_BSLASHfvolcite] = ACTIONS(5193), + [anon_sym_BSLASHftvolcite] = ACTIONS(5193), + [anon_sym_BSLASHsvolcite] = ACTIONS(5193), + [anon_sym_BSLASHSvolcite] = ACTIONS(5193), + [anon_sym_BSLASHtvolcite] = ACTIONS(5193), + [anon_sym_BSLASHTvolcite] = ACTIONS(5193), + [anon_sym_BSLASHavolcite] = ACTIONS(5193), + [anon_sym_BSLASHAvolcite] = ACTIONS(5193), + [anon_sym_BSLASHnotecite] = ACTIONS(5193), + [anon_sym_BSLASHNotecite] = ACTIONS(5193), + [anon_sym_BSLASHpnotecite] = ACTIONS(5193), + [anon_sym_BSLASHPnotecite] = ACTIONS(5193), + [anon_sym_BSLASHfnotecite] = ACTIONS(5193), + [anon_sym_BSLASHlabel] = ACTIONS(5193), + [anon_sym_BSLASHref] = ACTIONS(5193), + [anon_sym_BSLASHeqref] = ACTIONS(5193), + [anon_sym_BSLASHvref] = ACTIONS(5193), + [anon_sym_BSLASHVref] = ACTIONS(5193), + [anon_sym_BSLASHautoref] = ACTIONS(5193), + [anon_sym_BSLASHpageref] = ACTIONS(5193), + [anon_sym_BSLASHcref] = ACTIONS(5193), + [anon_sym_BSLASHCref] = ACTIONS(5193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnameCref] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHlabelcref] = ACTIONS(5193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCrefrange] = ACTIONS(5193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnewlabel] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), + [anon_sym_BSLASHdef] = ACTIONS(5193), + [anon_sym_BSLASHlet] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), + [anon_sym_BSLASHgls] = ACTIONS(5193), + [anon_sym_BSLASHGls] = ACTIONS(5193), + [anon_sym_BSLASHGLS] = ACTIONS(5193), + [anon_sym_BSLASHglspl] = ACTIONS(5193), + [anon_sym_BSLASHGlspl] = ACTIONS(5193), + [anon_sym_BSLASHGLSpl] = ACTIONS(5193), + [anon_sym_BSLASHglsdisp] = ACTIONS(5193), + [anon_sym_BSLASHglslink] = ACTIONS(5193), + [anon_sym_BSLASHglstext] = ACTIONS(5193), + [anon_sym_BSLASHGlstext] = ACTIONS(5193), + [anon_sym_BSLASHGLStext] = ACTIONS(5193), + [anon_sym_BSLASHglsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), + [anon_sym_BSLASHglsplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSplural] = ACTIONS(5193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHglsname] = ACTIONS(5193), + [anon_sym_BSLASHGlsname] = ACTIONS(5193), + [anon_sym_BSLASHGLSname] = ACTIONS(5193), + [anon_sym_BSLASHglssymbol] = ACTIONS(5193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), + [anon_sym_BSLASHglsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), + [anon_sym_BSLASHglsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), + [anon_sym_BSLASHglsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), + [anon_sym_BSLASHglsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), + [anon_sym_BSLASHglsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), + [anon_sym_BSLASHnewacronym] = ACTIONS(5193), + [anon_sym_BSLASHacrshort] = ACTIONS(5193), + [anon_sym_BSLASHAcrshort] = ACTIONS(5193), + [anon_sym_BSLASHACRshort] = ACTIONS(5193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), + [anon_sym_BSLASHacrlong] = ACTIONS(5193), + [anon_sym_BSLASHAcrlong] = ACTIONS(5193), + [anon_sym_BSLASHACRlong] = ACTIONS(5193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), + [anon_sym_BSLASHacrfull] = ACTIONS(5193), + [anon_sym_BSLASHAcrfull] = ACTIONS(5193), + [anon_sym_BSLASHACRfull] = ACTIONS(5193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), + [anon_sym_BSLASHacs] = ACTIONS(5193), + [anon_sym_BSLASHAcs] = ACTIONS(5193), + [anon_sym_BSLASHacsp] = ACTIONS(5193), + [anon_sym_BSLASHAcsp] = ACTIONS(5193), + [anon_sym_BSLASHacl] = ACTIONS(5193), + [anon_sym_BSLASHAcl] = ACTIONS(5193), + [anon_sym_BSLASHaclp] = ACTIONS(5193), + [anon_sym_BSLASHAclp] = ACTIONS(5193), + [anon_sym_BSLASHacf] = ACTIONS(5193), + [anon_sym_BSLASHAcf] = ACTIONS(5193), + [anon_sym_BSLASHacfp] = ACTIONS(5193), + [anon_sym_BSLASHAcfp] = ACTIONS(5193), + [anon_sym_BSLASHac] = ACTIONS(5193), + [anon_sym_BSLASHAc] = ACTIONS(5193), + [anon_sym_BSLASHacp] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), + [anon_sym_BSLASHcolor] = ACTIONS(5193), + [anon_sym_BSLASHcolorbox] = ACTIONS(5193), + [anon_sym_BSLASHtextcolor] = ACTIONS(5193), + [anon_sym_BSLASHpagecolor] = ACTIONS(5193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [anon_sym_BSLASHtext] = ACTIONS(5193), + [anon_sym_BSLASHintertext] = ACTIONS(5193), + [anon_sym_shortintertext] = ACTIONS(5193), }, - [1002] = { - [sym_command_name] = ACTIONS(5221), + [851] = { + [sym_command_name] = ACTIONS(5189), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_BSLASHpart] = ACTIONS(5221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddpart] = ACTIONS(5221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHchapter] = ACTIONS(5221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddchap] = ACTIONS(5221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsection] = ACTIONS(5221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddsec] = ACTIONS(5221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHparagraph] = ACTIONS(5221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHitem] = ACTIONS(5221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASHbegin] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), - }, - [1003] = { - [sym_command_name] = ACTIONS(5231), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5231), - [anon_sym_LPAREN] = ACTIONS(5229), - [anon_sym_RPAREN] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_RBRACK] = ACTIONS(5229), - [anon_sym_COMMA] = ACTIONS(5229), - [anon_sym_EQ] = ACTIONS(5229), - [anon_sym_BSLASHpart] = ACTIONS(5231), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddpart] = ACTIONS(5231), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), - [anon_sym_BSLASHchapter] = ACTIONS(5231), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddchap] = ACTIONS(5231), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsection] = ACTIONS(5231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddsec] = ACTIONS(5231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubsection] = ACTIONS(5231), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHparagraph] = ACTIONS(5231), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), - [anon_sym_BSLASHitem] = ACTIONS(5231), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5229), - [sym_word] = ACTIONS(5231), - [sym_placeholder] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_SLASH] = ACTIONS(5231), - [anon_sym_CARET] = ACTIONS(5231), - [anon_sym__] = ACTIONS(5231), - [anon_sym_LT] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5231), - [anon_sym_BANG] = ACTIONS(5231), - [anon_sym_PIPE] = ACTIONS(5231), - [anon_sym_COLON] = ACTIONS(5231), - [anon_sym_SQUOTE] = ACTIONS(5231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5229), - [anon_sym_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), - [anon_sym_BSLASHbegin] = ACTIONS(5231), - [anon_sym_BSLASHusepackage] = ACTIONS(5231), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), - [anon_sym_BSLASHinclude] = ACTIONS(5231), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), - [anon_sym_BSLASHinput] = ACTIONS(5231), - [anon_sym_BSLASHsubfile] = ACTIONS(5231), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), - [anon_sym_BSLASHbibliography] = ACTIONS(5231), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), - [anon_sym_BSLASHincludesvg] = ACTIONS(5231), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), - [anon_sym_BSLASHimport] = ACTIONS(5231), - [anon_sym_BSLASHsubimport] = ACTIONS(5231), - [anon_sym_BSLASHinputfrom] = ACTIONS(5231), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), - [anon_sym_BSLASHincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHcaption] = ACTIONS(5231), - [anon_sym_BSLASHcite] = ACTIONS(5231), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCite] = ACTIONS(5231), - [anon_sym_BSLASHnocite] = ACTIONS(5231), - [anon_sym_BSLASHcitet] = ACTIONS(5231), - [anon_sym_BSLASHcitep] = ACTIONS(5231), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteyear] = ACTIONS(5231), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitedate] = ACTIONS(5231), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteurl] = ACTIONS(5231), - [anon_sym_BSLASHfullcite] = ACTIONS(5231), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), - [anon_sym_BSLASHcitealt] = ACTIONS(5231), - [anon_sym_BSLASHcitealp] = ACTIONS(5231), - [anon_sym_BSLASHcitetext] = ACTIONS(5231), - [anon_sym_BSLASHparencite] = ACTIONS(5231), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHParencite] = ACTIONS(5231), - [anon_sym_BSLASHfootcite] = ACTIONS(5231), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), - [anon_sym_BSLASHtextcite] = ACTIONS(5231), - [anon_sym_BSLASHTextcite] = ACTIONS(5231), - [anon_sym_BSLASHsmartcite] = ACTIONS(5231), - [anon_sym_BSLASHSmartcite] = ACTIONS(5231), - [anon_sym_BSLASHsupercite] = ACTIONS(5231), - [anon_sym_BSLASHautocite] = ACTIONS(5231), - [anon_sym_BSLASHAutocite] = ACTIONS(5231), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHvolcite] = ACTIONS(5231), - [anon_sym_BSLASHVolcite] = ACTIONS(5231), - [anon_sym_BSLASHpvolcite] = ACTIONS(5231), - [anon_sym_BSLASHPvolcite] = ACTIONS(5231), - [anon_sym_BSLASHfvolcite] = ACTIONS(5231), - [anon_sym_BSLASHftvolcite] = ACTIONS(5231), - [anon_sym_BSLASHsvolcite] = ACTIONS(5231), - [anon_sym_BSLASHSvolcite] = ACTIONS(5231), - [anon_sym_BSLASHtvolcite] = ACTIONS(5231), - [anon_sym_BSLASHTvolcite] = ACTIONS(5231), - [anon_sym_BSLASHavolcite] = ACTIONS(5231), - [anon_sym_BSLASHAvolcite] = ACTIONS(5231), - [anon_sym_BSLASHnotecite] = ACTIONS(5231), - [anon_sym_BSLASHNotecite] = ACTIONS(5231), - [anon_sym_BSLASHpnotecite] = ACTIONS(5231), - [anon_sym_BSLASHPnotecite] = ACTIONS(5231), - [anon_sym_BSLASHfnotecite] = ACTIONS(5231), - [anon_sym_BSLASHlabel] = ACTIONS(5231), - [anon_sym_BSLASHref] = ACTIONS(5231), - [anon_sym_BSLASHeqref] = ACTIONS(5231), - [anon_sym_BSLASHvref] = ACTIONS(5231), - [anon_sym_BSLASHVref] = ACTIONS(5231), - [anon_sym_BSLASHautoref] = ACTIONS(5231), - [anon_sym_BSLASHpageref] = ACTIONS(5231), - [anon_sym_BSLASHcref] = ACTIONS(5231), - [anon_sym_BSLASHCref] = ACTIONS(5231), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnameCref] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHlabelcref] = ACTIONS(5231), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnewlabel] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), - [anon_sym_BSLASHdef] = ACTIONS(5231), - [anon_sym_BSLASHlet] = ACTIONS(5231), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), - [anon_sym_BSLASHgls] = ACTIONS(5231), - [anon_sym_BSLASHGls] = ACTIONS(5231), - [anon_sym_BSLASHGLS] = ACTIONS(5231), - [anon_sym_BSLASHglspl] = ACTIONS(5231), - [anon_sym_BSLASHGlspl] = ACTIONS(5231), - [anon_sym_BSLASHGLSpl] = ACTIONS(5231), - [anon_sym_BSLASHglsdisp] = ACTIONS(5231), - [anon_sym_BSLASHglslink] = ACTIONS(5231), - [anon_sym_BSLASHglstext] = ACTIONS(5231), - [anon_sym_BSLASHGlstext] = ACTIONS(5231), - [anon_sym_BSLASHGLStext] = ACTIONS(5231), - [anon_sym_BSLASHglsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), - [anon_sym_BSLASHglsplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSplural] = ACTIONS(5231), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHglsname] = ACTIONS(5231), - [anon_sym_BSLASHGlsname] = ACTIONS(5231), - [anon_sym_BSLASHGLSname] = ACTIONS(5231), - [anon_sym_BSLASHglssymbol] = ACTIONS(5231), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), - [anon_sym_BSLASHglsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), - [anon_sym_BSLASHglsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), - [anon_sym_BSLASHglsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), - [anon_sym_BSLASHglsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), - [anon_sym_BSLASHglsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), - [anon_sym_BSLASHnewacronym] = ACTIONS(5231), - [anon_sym_BSLASHacrshort] = ACTIONS(5231), - [anon_sym_BSLASHAcrshort] = ACTIONS(5231), - [anon_sym_BSLASHACRshort] = ACTIONS(5231), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), - [anon_sym_BSLASHacrlong] = ACTIONS(5231), - [anon_sym_BSLASHAcrlong] = ACTIONS(5231), - [anon_sym_BSLASHACRlong] = ACTIONS(5231), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), - [anon_sym_BSLASHacrfull] = ACTIONS(5231), - [anon_sym_BSLASHAcrfull] = ACTIONS(5231), - [anon_sym_BSLASHACRfull] = ACTIONS(5231), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), - [anon_sym_BSLASHacs] = ACTIONS(5231), - [anon_sym_BSLASHAcs] = ACTIONS(5231), - [anon_sym_BSLASHacsp] = ACTIONS(5231), - [anon_sym_BSLASHAcsp] = ACTIONS(5231), - [anon_sym_BSLASHacl] = ACTIONS(5231), - [anon_sym_BSLASHAcl] = ACTIONS(5231), - [anon_sym_BSLASHaclp] = ACTIONS(5231), - [anon_sym_BSLASHAclp] = ACTIONS(5231), - [anon_sym_BSLASHacf] = ACTIONS(5231), - [anon_sym_BSLASHAcf] = ACTIONS(5231), - [anon_sym_BSLASHacfp] = ACTIONS(5231), - [anon_sym_BSLASHAcfp] = ACTIONS(5231), - [anon_sym_BSLASHac] = ACTIONS(5231), - [anon_sym_BSLASHAc] = ACTIONS(5231), - [anon_sym_BSLASHacp] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), - [anon_sym_BSLASHcolor] = ACTIONS(5231), - [anon_sym_BSLASHcolorbox] = ACTIONS(5231), - [anon_sym_BSLASHtextcolor] = ACTIONS(5231), - [anon_sym_BSLASHpagecolor] = ACTIONS(5231), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), - }, - [1004] = { - [sym_command_name] = ACTIONS(5235), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5235), - [anon_sym_LPAREN] = ACTIONS(5233), - [anon_sym_RPAREN] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_RBRACK] = ACTIONS(5233), - [anon_sym_COMMA] = ACTIONS(5233), - [anon_sym_EQ] = ACTIONS(5233), - [anon_sym_BSLASHpart] = ACTIONS(5235), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddpart] = ACTIONS(5235), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), - [anon_sym_BSLASHchapter] = ACTIONS(5235), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddchap] = ACTIONS(5235), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsection] = ACTIONS(5235), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddsec] = ACTIONS(5235), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubsection] = ACTIONS(5235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHparagraph] = ACTIONS(5235), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), - [anon_sym_BSLASHitem] = ACTIONS(5235), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5233), - [sym_word] = ACTIONS(5235), - [sym_placeholder] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_CARET] = ACTIONS(5235), - [anon_sym__] = ACTIONS(5235), - [anon_sym_LT] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5235), - [anon_sym_BANG] = ACTIONS(5235), - [anon_sym_PIPE] = ACTIONS(5235), - [anon_sym_COLON] = ACTIONS(5235), - [anon_sym_SQUOTE] = ACTIONS(5235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5233), - [anon_sym_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), - [anon_sym_BSLASHbegin] = ACTIONS(5235), - [anon_sym_BSLASHusepackage] = ACTIONS(5235), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), - [anon_sym_BSLASHinclude] = ACTIONS(5235), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), - [anon_sym_BSLASHinput] = ACTIONS(5235), - [anon_sym_BSLASHsubfile] = ACTIONS(5235), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), - [anon_sym_BSLASHbibliography] = ACTIONS(5235), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), - [anon_sym_BSLASHincludesvg] = ACTIONS(5235), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), - [anon_sym_BSLASHimport] = ACTIONS(5235), - [anon_sym_BSLASHsubimport] = ACTIONS(5235), - [anon_sym_BSLASHinputfrom] = ACTIONS(5235), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), - [anon_sym_BSLASHincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHcaption] = ACTIONS(5235), - [anon_sym_BSLASHcite] = ACTIONS(5235), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCite] = ACTIONS(5235), - [anon_sym_BSLASHnocite] = ACTIONS(5235), - [anon_sym_BSLASHcitet] = ACTIONS(5235), - [anon_sym_BSLASHcitep] = ACTIONS(5235), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteyear] = ACTIONS(5235), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitedate] = ACTIONS(5235), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteurl] = ACTIONS(5235), - [anon_sym_BSLASHfullcite] = ACTIONS(5235), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), - [anon_sym_BSLASHcitealt] = ACTIONS(5235), - [anon_sym_BSLASHcitealp] = ACTIONS(5235), - [anon_sym_BSLASHcitetext] = ACTIONS(5235), - [anon_sym_BSLASHparencite] = ACTIONS(5235), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHParencite] = ACTIONS(5235), - [anon_sym_BSLASHfootcite] = ACTIONS(5235), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), - [anon_sym_BSLASHtextcite] = ACTIONS(5235), - [anon_sym_BSLASHTextcite] = ACTIONS(5235), - [anon_sym_BSLASHsmartcite] = ACTIONS(5235), - [anon_sym_BSLASHSmartcite] = ACTIONS(5235), - [anon_sym_BSLASHsupercite] = ACTIONS(5235), - [anon_sym_BSLASHautocite] = ACTIONS(5235), - [anon_sym_BSLASHAutocite] = ACTIONS(5235), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHvolcite] = ACTIONS(5235), - [anon_sym_BSLASHVolcite] = ACTIONS(5235), - [anon_sym_BSLASHpvolcite] = ACTIONS(5235), - [anon_sym_BSLASHPvolcite] = ACTIONS(5235), - [anon_sym_BSLASHfvolcite] = ACTIONS(5235), - [anon_sym_BSLASHftvolcite] = ACTIONS(5235), - [anon_sym_BSLASHsvolcite] = ACTIONS(5235), - [anon_sym_BSLASHSvolcite] = ACTIONS(5235), - [anon_sym_BSLASHtvolcite] = ACTIONS(5235), - [anon_sym_BSLASHTvolcite] = ACTIONS(5235), - [anon_sym_BSLASHavolcite] = ACTIONS(5235), - [anon_sym_BSLASHAvolcite] = ACTIONS(5235), - [anon_sym_BSLASHnotecite] = ACTIONS(5235), - [anon_sym_BSLASHNotecite] = ACTIONS(5235), - [anon_sym_BSLASHpnotecite] = ACTIONS(5235), - [anon_sym_BSLASHPnotecite] = ACTIONS(5235), - [anon_sym_BSLASHfnotecite] = ACTIONS(5235), - [anon_sym_BSLASHlabel] = ACTIONS(5235), - [anon_sym_BSLASHref] = ACTIONS(5235), - [anon_sym_BSLASHeqref] = ACTIONS(5235), - [anon_sym_BSLASHvref] = ACTIONS(5235), - [anon_sym_BSLASHVref] = ACTIONS(5235), - [anon_sym_BSLASHautoref] = ACTIONS(5235), - [anon_sym_BSLASHpageref] = ACTIONS(5235), - [anon_sym_BSLASHcref] = ACTIONS(5235), - [anon_sym_BSLASHCref] = ACTIONS(5235), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnameCref] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHlabelcref] = ACTIONS(5235), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnewlabel] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), - [anon_sym_BSLASHdef] = ACTIONS(5235), - [anon_sym_BSLASHlet] = ACTIONS(5235), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), - [anon_sym_BSLASHgls] = ACTIONS(5235), - [anon_sym_BSLASHGls] = ACTIONS(5235), - [anon_sym_BSLASHGLS] = ACTIONS(5235), - [anon_sym_BSLASHglspl] = ACTIONS(5235), - [anon_sym_BSLASHGlspl] = ACTIONS(5235), - [anon_sym_BSLASHGLSpl] = ACTIONS(5235), - [anon_sym_BSLASHglsdisp] = ACTIONS(5235), - [anon_sym_BSLASHglslink] = ACTIONS(5235), - [anon_sym_BSLASHglstext] = ACTIONS(5235), - [anon_sym_BSLASHGlstext] = ACTIONS(5235), - [anon_sym_BSLASHGLStext] = ACTIONS(5235), - [anon_sym_BSLASHglsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), - [anon_sym_BSLASHglsplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSplural] = ACTIONS(5235), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHglsname] = ACTIONS(5235), - [anon_sym_BSLASHGlsname] = ACTIONS(5235), - [anon_sym_BSLASHGLSname] = ACTIONS(5235), - [anon_sym_BSLASHglssymbol] = ACTIONS(5235), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), - [anon_sym_BSLASHglsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), - [anon_sym_BSLASHglsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), - [anon_sym_BSLASHglsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), - [anon_sym_BSLASHglsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), - [anon_sym_BSLASHglsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), - [anon_sym_BSLASHnewacronym] = ACTIONS(5235), - [anon_sym_BSLASHacrshort] = ACTIONS(5235), - [anon_sym_BSLASHAcrshort] = ACTIONS(5235), - [anon_sym_BSLASHACRshort] = ACTIONS(5235), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), - [anon_sym_BSLASHacrlong] = ACTIONS(5235), - [anon_sym_BSLASHAcrlong] = ACTIONS(5235), - [anon_sym_BSLASHACRlong] = ACTIONS(5235), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), - [anon_sym_BSLASHacrfull] = ACTIONS(5235), - [anon_sym_BSLASHAcrfull] = ACTIONS(5235), - [anon_sym_BSLASHACRfull] = ACTIONS(5235), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), - [anon_sym_BSLASHacs] = ACTIONS(5235), - [anon_sym_BSLASHAcs] = ACTIONS(5235), - [anon_sym_BSLASHacsp] = ACTIONS(5235), - [anon_sym_BSLASHAcsp] = ACTIONS(5235), - [anon_sym_BSLASHacl] = ACTIONS(5235), - [anon_sym_BSLASHAcl] = ACTIONS(5235), - [anon_sym_BSLASHaclp] = ACTIONS(5235), - [anon_sym_BSLASHAclp] = ACTIONS(5235), - [anon_sym_BSLASHacf] = ACTIONS(5235), - [anon_sym_BSLASHAcf] = ACTIONS(5235), - [anon_sym_BSLASHacfp] = ACTIONS(5235), - [anon_sym_BSLASHAcfp] = ACTIONS(5235), - [anon_sym_BSLASHac] = ACTIONS(5235), - [anon_sym_BSLASHAc] = ACTIONS(5235), - [anon_sym_BSLASHacp] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), - [anon_sym_BSLASHcolor] = ACTIONS(5235), - [anon_sym_BSLASHcolorbox] = ACTIONS(5235), - [anon_sym_BSLASHtextcolor] = ACTIONS(5235), - [anon_sym_BSLASHpagecolor] = ACTIONS(5235), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), - }, - [1005] = { - [sym_command_name] = ACTIONS(5239), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5237), - [anon_sym_RPAREN] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_RBRACK] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_EQ] = ACTIONS(5237), - [anon_sym_BSLASHpart] = ACTIONS(5239), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddpart] = ACTIONS(5239), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5237), - [anon_sym_BSLASHchapter] = ACTIONS(5239), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddchap] = ACTIONS(5239), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsection] = ACTIONS(5239), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddsec] = ACTIONS(5239), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubsection] = ACTIONS(5239), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHparagraph] = ACTIONS(5239), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5239), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5237), - [anon_sym_BSLASHitem] = ACTIONS(5239), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5237), - [sym_word] = ACTIONS(5239), - [sym_placeholder] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym__] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_BANG] = ACTIONS(5239), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_COLON] = ACTIONS(5239), - [anon_sym_SQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5237), - [anon_sym_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), - [anon_sym_BSLASHbegin] = ACTIONS(5239), - [anon_sym_BSLASHusepackage] = ACTIONS(5239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), - [anon_sym_BSLASHinclude] = ACTIONS(5239), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), - [anon_sym_BSLASHinput] = ACTIONS(5239), - [anon_sym_BSLASHsubfile] = ACTIONS(5239), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), - [anon_sym_BSLASHbibliography] = ACTIONS(5239), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), - [anon_sym_BSLASHincludesvg] = ACTIONS(5239), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), - [anon_sym_BSLASHimport] = ACTIONS(5239), - [anon_sym_BSLASHsubimport] = ACTIONS(5239), - [anon_sym_BSLASHinputfrom] = ACTIONS(5239), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), - [anon_sym_BSLASHincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHcaption] = ACTIONS(5239), - [anon_sym_BSLASHcite] = ACTIONS(5239), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCite] = ACTIONS(5239), - [anon_sym_BSLASHnocite] = ACTIONS(5239), - [anon_sym_BSLASHcitet] = ACTIONS(5239), - [anon_sym_BSLASHcitep] = ACTIONS(5239), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteyear] = ACTIONS(5239), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitedate] = ACTIONS(5239), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteurl] = ACTIONS(5239), - [anon_sym_BSLASHfullcite] = ACTIONS(5239), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), - [anon_sym_BSLASHcitealt] = ACTIONS(5239), - [anon_sym_BSLASHcitealp] = ACTIONS(5239), - [anon_sym_BSLASHcitetext] = ACTIONS(5239), - [anon_sym_BSLASHparencite] = ACTIONS(5239), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHParencite] = ACTIONS(5239), - [anon_sym_BSLASHfootcite] = ACTIONS(5239), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), - [anon_sym_BSLASHtextcite] = ACTIONS(5239), - [anon_sym_BSLASHTextcite] = ACTIONS(5239), - [anon_sym_BSLASHsmartcite] = ACTIONS(5239), - [anon_sym_BSLASHSmartcite] = ACTIONS(5239), - [anon_sym_BSLASHsupercite] = ACTIONS(5239), - [anon_sym_BSLASHautocite] = ACTIONS(5239), - [anon_sym_BSLASHAutocite] = ACTIONS(5239), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHvolcite] = ACTIONS(5239), - [anon_sym_BSLASHVolcite] = ACTIONS(5239), - [anon_sym_BSLASHpvolcite] = ACTIONS(5239), - [anon_sym_BSLASHPvolcite] = ACTIONS(5239), - [anon_sym_BSLASHfvolcite] = ACTIONS(5239), - [anon_sym_BSLASHftvolcite] = ACTIONS(5239), - [anon_sym_BSLASHsvolcite] = ACTIONS(5239), - [anon_sym_BSLASHSvolcite] = ACTIONS(5239), - [anon_sym_BSLASHtvolcite] = ACTIONS(5239), - [anon_sym_BSLASHTvolcite] = ACTIONS(5239), - [anon_sym_BSLASHavolcite] = ACTIONS(5239), - [anon_sym_BSLASHAvolcite] = ACTIONS(5239), - [anon_sym_BSLASHnotecite] = ACTIONS(5239), - [anon_sym_BSLASHNotecite] = ACTIONS(5239), - [anon_sym_BSLASHpnotecite] = ACTIONS(5239), - [anon_sym_BSLASHPnotecite] = ACTIONS(5239), - [anon_sym_BSLASHfnotecite] = ACTIONS(5239), - [anon_sym_BSLASHlabel] = ACTIONS(5239), - [anon_sym_BSLASHref] = ACTIONS(5239), - [anon_sym_BSLASHeqref] = ACTIONS(5239), - [anon_sym_BSLASHvref] = ACTIONS(5239), - [anon_sym_BSLASHVref] = ACTIONS(5239), - [anon_sym_BSLASHautoref] = ACTIONS(5239), - [anon_sym_BSLASHpageref] = ACTIONS(5239), - [anon_sym_BSLASHcref] = ACTIONS(5239), - [anon_sym_BSLASHCref] = ACTIONS(5239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnameCref] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHlabelcref] = ACTIONS(5239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnewlabel] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), - [anon_sym_BSLASHdef] = ACTIONS(5239), - [anon_sym_BSLASHlet] = ACTIONS(5239), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), - [anon_sym_BSLASHgls] = ACTIONS(5239), - [anon_sym_BSLASHGls] = ACTIONS(5239), - [anon_sym_BSLASHGLS] = ACTIONS(5239), - [anon_sym_BSLASHglspl] = ACTIONS(5239), - [anon_sym_BSLASHGlspl] = ACTIONS(5239), - [anon_sym_BSLASHGLSpl] = ACTIONS(5239), - [anon_sym_BSLASHglsdisp] = ACTIONS(5239), - [anon_sym_BSLASHglslink] = ACTIONS(5239), - [anon_sym_BSLASHglstext] = ACTIONS(5239), - [anon_sym_BSLASHGlstext] = ACTIONS(5239), - [anon_sym_BSLASHGLStext] = ACTIONS(5239), - [anon_sym_BSLASHglsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), - [anon_sym_BSLASHglsplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSplural] = ACTIONS(5239), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHglsname] = ACTIONS(5239), - [anon_sym_BSLASHGlsname] = ACTIONS(5239), - [anon_sym_BSLASHGLSname] = ACTIONS(5239), - [anon_sym_BSLASHglssymbol] = ACTIONS(5239), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), - [anon_sym_BSLASHglsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), - [anon_sym_BSLASHglsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), - [anon_sym_BSLASHglsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), - [anon_sym_BSLASHglsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), - [anon_sym_BSLASHglsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), - [anon_sym_BSLASHnewacronym] = ACTIONS(5239), - [anon_sym_BSLASHacrshort] = ACTIONS(5239), - [anon_sym_BSLASHAcrshort] = ACTIONS(5239), - [anon_sym_BSLASHACRshort] = ACTIONS(5239), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), - [anon_sym_BSLASHacrlong] = ACTIONS(5239), - [anon_sym_BSLASHAcrlong] = ACTIONS(5239), - [anon_sym_BSLASHACRlong] = ACTIONS(5239), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), - [anon_sym_BSLASHacrfull] = ACTIONS(5239), - [anon_sym_BSLASHAcrfull] = ACTIONS(5239), - [anon_sym_BSLASHACRfull] = ACTIONS(5239), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), - [anon_sym_BSLASHacs] = ACTIONS(5239), - [anon_sym_BSLASHAcs] = ACTIONS(5239), - [anon_sym_BSLASHacsp] = ACTIONS(5239), - [anon_sym_BSLASHAcsp] = ACTIONS(5239), - [anon_sym_BSLASHacl] = ACTIONS(5239), - [anon_sym_BSLASHAcl] = ACTIONS(5239), - [anon_sym_BSLASHaclp] = ACTIONS(5239), - [anon_sym_BSLASHAclp] = ACTIONS(5239), - [anon_sym_BSLASHacf] = ACTIONS(5239), - [anon_sym_BSLASHAcf] = ACTIONS(5239), - [anon_sym_BSLASHacfp] = ACTIONS(5239), - [anon_sym_BSLASHAcfp] = ACTIONS(5239), - [anon_sym_BSLASHac] = ACTIONS(5239), - [anon_sym_BSLASHAc] = ACTIONS(5239), - [anon_sym_BSLASHacp] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), - [anon_sym_BSLASHcolor] = ACTIONS(5239), - [anon_sym_BSLASHcolorbox] = ACTIONS(5239), - [anon_sym_BSLASHtextcolor] = ACTIONS(5239), - [anon_sym_BSLASHpagecolor] = ACTIONS(5239), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), - }, - [1006] = { - [sym_command_name] = ACTIONS(5243), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5243), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_RPAREN] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_RBRACK] = ACTIONS(5241), - [anon_sym_COMMA] = ACTIONS(5241), - [anon_sym_EQ] = ACTIONS(5241), - [anon_sym_BSLASHpart] = ACTIONS(5243), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddpart] = ACTIONS(5243), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5241), - [anon_sym_BSLASHchapter] = ACTIONS(5243), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddchap] = ACTIONS(5243), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsection] = ACTIONS(5243), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddsec] = ACTIONS(5243), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubsection] = ACTIONS(5243), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5243), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHparagraph] = ACTIONS(5243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5243), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5241), - [anon_sym_BSLASHitem] = ACTIONS(5243), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5241), - [anon_sym_LBRACE] = ACTIONS(5241), - [sym_word] = ACTIONS(5243), - [sym_placeholder] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_STAR] = ACTIONS(5243), - [anon_sym_SLASH] = ACTIONS(5243), - [anon_sym_CARET] = ACTIONS(5243), - [anon_sym__] = ACTIONS(5243), - [anon_sym_LT] = ACTIONS(5243), - [anon_sym_GT] = ACTIONS(5243), - [anon_sym_BANG] = ACTIONS(5243), - [anon_sym_PIPE] = ACTIONS(5243), - [anon_sym_COLON] = ACTIONS(5243), - [anon_sym_SQUOTE] = ACTIONS(5243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5241), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5241), - [anon_sym_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5241), - [anon_sym_BSLASHbegin] = ACTIONS(5243), - [anon_sym_BSLASHusepackage] = ACTIONS(5243), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5243), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5243), - [anon_sym_BSLASHinclude] = ACTIONS(5243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5243), - [anon_sym_BSLASHinput] = ACTIONS(5243), - [anon_sym_BSLASHsubfile] = ACTIONS(5243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5243), - [anon_sym_BSLASHbibliography] = ACTIONS(5243), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5243), - [anon_sym_BSLASHincludesvg] = ACTIONS(5243), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5243), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5243), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5243), - [anon_sym_BSLASHimport] = ACTIONS(5243), - [anon_sym_BSLASHsubimport] = ACTIONS(5243), - [anon_sym_BSLASHinputfrom] = ACTIONS(5243), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5243), - [anon_sym_BSLASHincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHcaption] = ACTIONS(5243), - [anon_sym_BSLASHcite] = ACTIONS(5243), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCite] = ACTIONS(5243), - [anon_sym_BSLASHnocite] = ACTIONS(5243), - [anon_sym_BSLASHcitet] = ACTIONS(5243), - [anon_sym_BSLASHcitep] = ACTIONS(5243), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteyear] = ACTIONS(5243), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitedate] = ACTIONS(5243), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteurl] = ACTIONS(5243), - [anon_sym_BSLASHfullcite] = ACTIONS(5243), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5243), - [anon_sym_BSLASHcitealt] = ACTIONS(5243), - [anon_sym_BSLASHcitealp] = ACTIONS(5243), - [anon_sym_BSLASHcitetext] = ACTIONS(5243), - [anon_sym_BSLASHparencite] = ACTIONS(5243), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHParencite] = ACTIONS(5243), - [anon_sym_BSLASHfootcite] = ACTIONS(5243), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5243), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5243), - [anon_sym_BSLASHtextcite] = ACTIONS(5243), - [anon_sym_BSLASHTextcite] = ACTIONS(5243), - [anon_sym_BSLASHsmartcite] = ACTIONS(5243), - [anon_sym_BSLASHSmartcite] = ACTIONS(5243), - [anon_sym_BSLASHsupercite] = ACTIONS(5243), - [anon_sym_BSLASHautocite] = ACTIONS(5243), - [anon_sym_BSLASHAutocite] = ACTIONS(5243), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHvolcite] = ACTIONS(5243), - [anon_sym_BSLASHVolcite] = ACTIONS(5243), - [anon_sym_BSLASHpvolcite] = ACTIONS(5243), - [anon_sym_BSLASHPvolcite] = ACTIONS(5243), - [anon_sym_BSLASHfvolcite] = ACTIONS(5243), - [anon_sym_BSLASHftvolcite] = ACTIONS(5243), - [anon_sym_BSLASHsvolcite] = ACTIONS(5243), - [anon_sym_BSLASHSvolcite] = ACTIONS(5243), - [anon_sym_BSLASHtvolcite] = ACTIONS(5243), - [anon_sym_BSLASHTvolcite] = ACTIONS(5243), - [anon_sym_BSLASHavolcite] = ACTIONS(5243), - [anon_sym_BSLASHAvolcite] = ACTIONS(5243), - [anon_sym_BSLASHnotecite] = ACTIONS(5243), - [anon_sym_BSLASHNotecite] = ACTIONS(5243), - [anon_sym_BSLASHpnotecite] = ACTIONS(5243), - [anon_sym_BSLASHPnotecite] = ACTIONS(5243), - [anon_sym_BSLASHfnotecite] = ACTIONS(5243), - [anon_sym_BSLASHlabel] = ACTIONS(5243), - [anon_sym_BSLASHref] = ACTIONS(5243), - [anon_sym_BSLASHeqref] = ACTIONS(5243), - [anon_sym_BSLASHvref] = ACTIONS(5243), - [anon_sym_BSLASHVref] = ACTIONS(5243), - [anon_sym_BSLASHautoref] = ACTIONS(5243), - [anon_sym_BSLASHpageref] = ACTIONS(5243), - [anon_sym_BSLASHcref] = ACTIONS(5243), - [anon_sym_BSLASHCref] = ACTIONS(5243), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnameCref] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHlabelcref] = ACTIONS(5243), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnewlabel] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5241), - [anon_sym_BSLASHdef] = ACTIONS(5243), - [anon_sym_BSLASHlet] = ACTIONS(5243), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5243), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5243), - [anon_sym_BSLASHgls] = ACTIONS(5243), - [anon_sym_BSLASHGls] = ACTIONS(5243), - [anon_sym_BSLASHGLS] = ACTIONS(5243), - [anon_sym_BSLASHglspl] = ACTIONS(5243), - [anon_sym_BSLASHGlspl] = ACTIONS(5243), - [anon_sym_BSLASHGLSpl] = ACTIONS(5243), - [anon_sym_BSLASHglsdisp] = ACTIONS(5243), - [anon_sym_BSLASHglslink] = ACTIONS(5243), - [anon_sym_BSLASHglstext] = ACTIONS(5243), - [anon_sym_BSLASHGlstext] = ACTIONS(5243), - [anon_sym_BSLASHGLStext] = ACTIONS(5243), - [anon_sym_BSLASHglsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5243), - [anon_sym_BSLASHglsplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSplural] = ACTIONS(5243), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHglsname] = ACTIONS(5243), - [anon_sym_BSLASHGlsname] = ACTIONS(5243), - [anon_sym_BSLASHGLSname] = ACTIONS(5243), - [anon_sym_BSLASHglssymbol] = ACTIONS(5243), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5243), - [anon_sym_BSLASHglsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5243), - [anon_sym_BSLASHglsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5243), - [anon_sym_BSLASHglsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5243), - [anon_sym_BSLASHglsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5243), - [anon_sym_BSLASHglsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5243), - [anon_sym_BSLASHnewacronym] = ACTIONS(5243), - [anon_sym_BSLASHacrshort] = ACTIONS(5243), - [anon_sym_BSLASHAcrshort] = ACTIONS(5243), - [anon_sym_BSLASHACRshort] = ACTIONS(5243), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5243), - [anon_sym_BSLASHacrlong] = ACTIONS(5243), - [anon_sym_BSLASHAcrlong] = ACTIONS(5243), - [anon_sym_BSLASHACRlong] = ACTIONS(5243), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5243), - [anon_sym_BSLASHacrfull] = ACTIONS(5243), - [anon_sym_BSLASHAcrfull] = ACTIONS(5243), - [anon_sym_BSLASHACRfull] = ACTIONS(5243), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5243), - [anon_sym_BSLASHacs] = ACTIONS(5243), - [anon_sym_BSLASHAcs] = ACTIONS(5243), - [anon_sym_BSLASHacsp] = ACTIONS(5243), - [anon_sym_BSLASHAcsp] = ACTIONS(5243), - [anon_sym_BSLASHacl] = ACTIONS(5243), - [anon_sym_BSLASHAcl] = ACTIONS(5243), - [anon_sym_BSLASHaclp] = ACTIONS(5243), - [anon_sym_BSLASHAclp] = ACTIONS(5243), - [anon_sym_BSLASHacf] = ACTIONS(5243), - [anon_sym_BSLASHAcf] = ACTIONS(5243), - [anon_sym_BSLASHacfp] = ACTIONS(5243), - [anon_sym_BSLASHAcfp] = ACTIONS(5243), - [anon_sym_BSLASHac] = ACTIONS(5243), - [anon_sym_BSLASHAc] = ACTIONS(5243), - [anon_sym_BSLASHacp] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5243), - [anon_sym_BSLASHcolor] = ACTIONS(5243), - [anon_sym_BSLASHcolorbox] = ACTIONS(5243), - [anon_sym_BSLASHtextcolor] = ACTIONS(5243), - [anon_sym_BSLASHpagecolor] = ACTIONS(5243), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5243), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5243), - }, - [1007] = { - [sym_command_name] = ACTIONS(5247), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5247), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_RPAREN] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_RBRACK] = ACTIONS(5245), - [anon_sym_COMMA] = ACTIONS(5245), - [anon_sym_EQ] = ACTIONS(5245), - [anon_sym_BSLASHpart] = ACTIONS(5247), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddpart] = ACTIONS(5247), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5245), - [anon_sym_BSLASHchapter] = ACTIONS(5247), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddchap] = ACTIONS(5247), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsection] = ACTIONS(5247), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddsec] = ACTIONS(5247), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubsection] = ACTIONS(5247), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5247), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHparagraph] = ACTIONS(5247), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5245), - [anon_sym_BSLASHitem] = ACTIONS(5247), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5245), - [anon_sym_LBRACE] = ACTIONS(5245), - [sym_word] = ACTIONS(5247), - [sym_placeholder] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_SLASH] = ACTIONS(5247), - [anon_sym_CARET] = ACTIONS(5247), - [anon_sym__] = ACTIONS(5247), - [anon_sym_LT] = ACTIONS(5247), - [anon_sym_GT] = ACTIONS(5247), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_PIPE] = ACTIONS(5247), - [anon_sym_COLON] = ACTIONS(5247), - [anon_sym_SQUOTE] = ACTIONS(5247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5245), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5245), - [anon_sym_DOLLAR] = ACTIONS(5247), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5245), - [anon_sym_BSLASHbegin] = ACTIONS(5247), - [anon_sym_BSLASHusepackage] = ACTIONS(5247), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5247), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5247), - [anon_sym_BSLASHinclude] = ACTIONS(5247), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5247), - [anon_sym_BSLASHinput] = ACTIONS(5247), - [anon_sym_BSLASHsubfile] = ACTIONS(5247), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5247), - [anon_sym_BSLASHbibliography] = ACTIONS(5247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5247), - [anon_sym_BSLASHincludesvg] = ACTIONS(5247), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5247), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5247), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5247), - [anon_sym_BSLASHimport] = ACTIONS(5247), - [anon_sym_BSLASHsubimport] = ACTIONS(5247), - [anon_sym_BSLASHinputfrom] = ACTIONS(5247), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5247), - [anon_sym_BSLASHincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHcaption] = ACTIONS(5247), - [anon_sym_BSLASHcite] = ACTIONS(5247), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCite] = ACTIONS(5247), - [anon_sym_BSLASHnocite] = ACTIONS(5247), - [anon_sym_BSLASHcitet] = ACTIONS(5247), - [anon_sym_BSLASHcitep] = ACTIONS(5247), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteyear] = ACTIONS(5247), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitedate] = ACTIONS(5247), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteurl] = ACTIONS(5247), - [anon_sym_BSLASHfullcite] = ACTIONS(5247), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5247), - [anon_sym_BSLASHcitealt] = ACTIONS(5247), - [anon_sym_BSLASHcitealp] = ACTIONS(5247), - [anon_sym_BSLASHcitetext] = ACTIONS(5247), - [anon_sym_BSLASHparencite] = ACTIONS(5247), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHParencite] = ACTIONS(5247), - [anon_sym_BSLASHfootcite] = ACTIONS(5247), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5247), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5247), - [anon_sym_BSLASHtextcite] = ACTIONS(5247), - [anon_sym_BSLASHTextcite] = ACTIONS(5247), - [anon_sym_BSLASHsmartcite] = ACTIONS(5247), - [anon_sym_BSLASHSmartcite] = ACTIONS(5247), - [anon_sym_BSLASHsupercite] = ACTIONS(5247), - [anon_sym_BSLASHautocite] = ACTIONS(5247), - [anon_sym_BSLASHAutocite] = ACTIONS(5247), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHvolcite] = ACTIONS(5247), - [anon_sym_BSLASHVolcite] = ACTIONS(5247), - [anon_sym_BSLASHpvolcite] = ACTIONS(5247), - [anon_sym_BSLASHPvolcite] = ACTIONS(5247), - [anon_sym_BSLASHfvolcite] = ACTIONS(5247), - [anon_sym_BSLASHftvolcite] = ACTIONS(5247), - [anon_sym_BSLASHsvolcite] = ACTIONS(5247), - [anon_sym_BSLASHSvolcite] = ACTIONS(5247), - [anon_sym_BSLASHtvolcite] = ACTIONS(5247), - [anon_sym_BSLASHTvolcite] = ACTIONS(5247), - [anon_sym_BSLASHavolcite] = ACTIONS(5247), - [anon_sym_BSLASHAvolcite] = ACTIONS(5247), - [anon_sym_BSLASHnotecite] = ACTIONS(5247), - [anon_sym_BSLASHNotecite] = ACTIONS(5247), - [anon_sym_BSLASHpnotecite] = ACTIONS(5247), - [anon_sym_BSLASHPnotecite] = ACTIONS(5247), - [anon_sym_BSLASHfnotecite] = ACTIONS(5247), - [anon_sym_BSLASHlabel] = ACTIONS(5247), - [anon_sym_BSLASHref] = ACTIONS(5247), - [anon_sym_BSLASHeqref] = ACTIONS(5247), - [anon_sym_BSLASHvref] = ACTIONS(5247), - [anon_sym_BSLASHVref] = ACTIONS(5247), - [anon_sym_BSLASHautoref] = ACTIONS(5247), - [anon_sym_BSLASHpageref] = ACTIONS(5247), - [anon_sym_BSLASHcref] = ACTIONS(5247), - [anon_sym_BSLASHCref] = ACTIONS(5247), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnameCref] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHlabelcref] = ACTIONS(5247), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnewlabel] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5245), - [anon_sym_BSLASHdef] = ACTIONS(5247), - [anon_sym_BSLASHlet] = ACTIONS(5247), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5247), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5247), - [anon_sym_BSLASHgls] = ACTIONS(5247), - [anon_sym_BSLASHGls] = ACTIONS(5247), - [anon_sym_BSLASHGLS] = ACTIONS(5247), - [anon_sym_BSLASHglspl] = ACTIONS(5247), - [anon_sym_BSLASHGlspl] = ACTIONS(5247), - [anon_sym_BSLASHGLSpl] = ACTIONS(5247), - [anon_sym_BSLASHglsdisp] = ACTIONS(5247), - [anon_sym_BSLASHglslink] = ACTIONS(5247), - [anon_sym_BSLASHglstext] = ACTIONS(5247), - [anon_sym_BSLASHGlstext] = ACTIONS(5247), - [anon_sym_BSLASHGLStext] = ACTIONS(5247), - [anon_sym_BSLASHglsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5247), - [anon_sym_BSLASHglsplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSplural] = ACTIONS(5247), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHglsname] = ACTIONS(5247), - [anon_sym_BSLASHGlsname] = ACTIONS(5247), - [anon_sym_BSLASHGLSname] = ACTIONS(5247), - [anon_sym_BSLASHglssymbol] = ACTIONS(5247), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5247), - [anon_sym_BSLASHglsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5247), - [anon_sym_BSLASHglsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5247), - [anon_sym_BSLASHglsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5247), - [anon_sym_BSLASHglsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5247), - [anon_sym_BSLASHglsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5247), - [anon_sym_BSLASHnewacronym] = ACTIONS(5247), - [anon_sym_BSLASHacrshort] = ACTIONS(5247), - [anon_sym_BSLASHAcrshort] = ACTIONS(5247), - [anon_sym_BSLASHACRshort] = ACTIONS(5247), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5247), - [anon_sym_BSLASHacrlong] = ACTIONS(5247), - [anon_sym_BSLASHAcrlong] = ACTIONS(5247), - [anon_sym_BSLASHACRlong] = ACTIONS(5247), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5247), - [anon_sym_BSLASHacrfull] = ACTIONS(5247), - [anon_sym_BSLASHAcrfull] = ACTIONS(5247), - [anon_sym_BSLASHACRfull] = ACTIONS(5247), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5247), - [anon_sym_BSLASHacs] = ACTIONS(5247), - [anon_sym_BSLASHAcs] = ACTIONS(5247), - [anon_sym_BSLASHacsp] = ACTIONS(5247), - [anon_sym_BSLASHAcsp] = ACTIONS(5247), - [anon_sym_BSLASHacl] = ACTIONS(5247), - [anon_sym_BSLASHAcl] = ACTIONS(5247), - [anon_sym_BSLASHaclp] = ACTIONS(5247), - [anon_sym_BSLASHAclp] = ACTIONS(5247), - [anon_sym_BSLASHacf] = ACTIONS(5247), - [anon_sym_BSLASHAcf] = ACTIONS(5247), - [anon_sym_BSLASHacfp] = ACTIONS(5247), - [anon_sym_BSLASHAcfp] = ACTIONS(5247), - [anon_sym_BSLASHac] = ACTIONS(5247), - [anon_sym_BSLASHAc] = ACTIONS(5247), - [anon_sym_BSLASHacp] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5247), - [anon_sym_BSLASHcolor] = ACTIONS(5247), - [anon_sym_BSLASHcolorbox] = ACTIONS(5247), - [anon_sym_BSLASHtextcolor] = ACTIONS(5247), - [anon_sym_BSLASHpagecolor] = ACTIONS(5247), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5247), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5247), - }, - [1008] = { - [sym_command_name] = ACTIONS(5251), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5251), - [anon_sym_LPAREN] = ACTIONS(5249), - [anon_sym_RPAREN] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5249), - [anon_sym_RBRACK] = ACTIONS(5249), - [anon_sym_COMMA] = ACTIONS(5249), - [anon_sym_EQ] = ACTIONS(5249), - [anon_sym_BSLASHpart] = ACTIONS(5251), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddpart] = ACTIONS(5251), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5249), - [anon_sym_BSLASHchapter] = ACTIONS(5251), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddchap] = ACTIONS(5251), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsection] = ACTIONS(5251), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddsec] = ACTIONS(5251), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubsection] = ACTIONS(5251), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5251), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHparagraph] = ACTIONS(5251), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5251), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5249), - [anon_sym_BSLASHitem] = ACTIONS(5251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5249), - [anon_sym_LBRACE] = ACTIONS(5249), - [sym_word] = ACTIONS(5251), - [sym_placeholder] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym__] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_BANG] = ACTIONS(5251), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5251), - [anon_sym_SQUOTE] = ACTIONS(5251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5249), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5249), - [anon_sym_DOLLAR] = ACTIONS(5251), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5249), - [anon_sym_BSLASHbegin] = ACTIONS(5251), - [anon_sym_BSLASHusepackage] = ACTIONS(5251), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5251), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5251), - [anon_sym_BSLASHinclude] = ACTIONS(5251), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5251), - [anon_sym_BSLASHinput] = ACTIONS(5251), - [anon_sym_BSLASHsubfile] = ACTIONS(5251), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5251), - [anon_sym_BSLASHbibliography] = ACTIONS(5251), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5251), - [anon_sym_BSLASHincludesvg] = ACTIONS(5251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5251), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5251), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5251), - [anon_sym_BSLASHimport] = ACTIONS(5251), - [anon_sym_BSLASHsubimport] = ACTIONS(5251), - [anon_sym_BSLASHinputfrom] = ACTIONS(5251), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5251), - [anon_sym_BSLASHincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHcaption] = ACTIONS(5251), - [anon_sym_BSLASHcite] = ACTIONS(5251), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCite] = ACTIONS(5251), - [anon_sym_BSLASHnocite] = ACTIONS(5251), - [anon_sym_BSLASHcitet] = ACTIONS(5251), - [anon_sym_BSLASHcitep] = ACTIONS(5251), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor] = ACTIONS(5251), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5251), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle] = ACTIONS(5251), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteyear] = ACTIONS(5251), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitedate] = ACTIONS(5251), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteurl] = ACTIONS(5251), - [anon_sym_BSLASHfullcite] = ACTIONS(5251), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5251), - [anon_sym_BSLASHcitealt] = ACTIONS(5251), - [anon_sym_BSLASHcitealp] = ACTIONS(5251), - [anon_sym_BSLASHcitetext] = ACTIONS(5251), - [anon_sym_BSLASHparencite] = ACTIONS(5251), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHParencite] = ACTIONS(5251), - [anon_sym_BSLASHfootcite] = ACTIONS(5251), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5251), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5251), - [anon_sym_BSLASHtextcite] = ACTIONS(5251), - [anon_sym_BSLASHTextcite] = ACTIONS(5251), - [anon_sym_BSLASHsmartcite] = ACTIONS(5251), - [anon_sym_BSLASHSmartcite] = ACTIONS(5251), - [anon_sym_BSLASHsupercite] = ACTIONS(5251), - [anon_sym_BSLASHautocite] = ACTIONS(5251), - [anon_sym_BSLASHAutocite] = ACTIONS(5251), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHvolcite] = ACTIONS(5251), - [anon_sym_BSLASHVolcite] = ACTIONS(5251), - [anon_sym_BSLASHpvolcite] = ACTIONS(5251), - [anon_sym_BSLASHPvolcite] = ACTIONS(5251), - [anon_sym_BSLASHfvolcite] = ACTIONS(5251), - [anon_sym_BSLASHftvolcite] = ACTIONS(5251), - [anon_sym_BSLASHsvolcite] = ACTIONS(5251), - [anon_sym_BSLASHSvolcite] = ACTIONS(5251), - [anon_sym_BSLASHtvolcite] = ACTIONS(5251), - [anon_sym_BSLASHTvolcite] = ACTIONS(5251), - [anon_sym_BSLASHavolcite] = ACTIONS(5251), - [anon_sym_BSLASHAvolcite] = ACTIONS(5251), - [anon_sym_BSLASHnotecite] = ACTIONS(5251), - [anon_sym_BSLASHNotecite] = ACTIONS(5251), - [anon_sym_BSLASHpnotecite] = ACTIONS(5251), - [anon_sym_BSLASHPnotecite] = ACTIONS(5251), - [anon_sym_BSLASHfnotecite] = ACTIONS(5251), - [anon_sym_BSLASHlabel] = ACTIONS(5251), - [anon_sym_BSLASHref] = ACTIONS(5251), - [anon_sym_BSLASHeqref] = ACTIONS(5251), - [anon_sym_BSLASHvref] = ACTIONS(5251), - [anon_sym_BSLASHVref] = ACTIONS(5251), - [anon_sym_BSLASHautoref] = ACTIONS(5251), - [anon_sym_BSLASHpageref] = ACTIONS(5251), - [anon_sym_BSLASHcref] = ACTIONS(5251), - [anon_sym_BSLASHCref] = ACTIONS(5251), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnameCref] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHlabelcref] = ACTIONS(5251), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange] = ACTIONS(5251), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnewlabel] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5251), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5251), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5251), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5249), - [anon_sym_BSLASHdef] = ACTIONS(5251), - [anon_sym_BSLASHlet] = ACTIONS(5251), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5251), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5251), - [anon_sym_BSLASHgls] = ACTIONS(5251), - [anon_sym_BSLASHGls] = ACTIONS(5251), - [anon_sym_BSLASHGLS] = ACTIONS(5251), - [anon_sym_BSLASHglspl] = ACTIONS(5251), - [anon_sym_BSLASHGlspl] = ACTIONS(5251), - [anon_sym_BSLASHGLSpl] = ACTIONS(5251), - [anon_sym_BSLASHglsdisp] = ACTIONS(5251), - [anon_sym_BSLASHglslink] = ACTIONS(5251), - [anon_sym_BSLASHglstext] = ACTIONS(5251), - [anon_sym_BSLASHGlstext] = ACTIONS(5251), - [anon_sym_BSLASHGLStext] = ACTIONS(5251), - [anon_sym_BSLASHglsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5251), - [anon_sym_BSLASHglsplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSplural] = ACTIONS(5251), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHglsname] = ACTIONS(5251), - [anon_sym_BSLASHGlsname] = ACTIONS(5251), - [anon_sym_BSLASHGLSname] = ACTIONS(5251), - [anon_sym_BSLASHglssymbol] = ACTIONS(5251), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5251), - [anon_sym_BSLASHglsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5251), - [anon_sym_BSLASHglsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5251), - [anon_sym_BSLASHglsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5251), - [anon_sym_BSLASHglsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5251), - [anon_sym_BSLASHglsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5251), - [anon_sym_BSLASHnewacronym] = ACTIONS(5251), - [anon_sym_BSLASHacrshort] = ACTIONS(5251), - [anon_sym_BSLASHAcrshort] = ACTIONS(5251), - [anon_sym_BSLASHACRshort] = ACTIONS(5251), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5251), - [anon_sym_BSLASHacrlong] = ACTIONS(5251), - [anon_sym_BSLASHAcrlong] = ACTIONS(5251), - [anon_sym_BSLASHACRlong] = ACTIONS(5251), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5251), - [anon_sym_BSLASHacrfull] = ACTIONS(5251), - [anon_sym_BSLASHAcrfull] = ACTIONS(5251), - [anon_sym_BSLASHACRfull] = ACTIONS(5251), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5251), - [anon_sym_BSLASHacs] = ACTIONS(5251), - [anon_sym_BSLASHAcs] = ACTIONS(5251), - [anon_sym_BSLASHacsp] = ACTIONS(5251), - [anon_sym_BSLASHAcsp] = ACTIONS(5251), - [anon_sym_BSLASHacl] = ACTIONS(5251), - [anon_sym_BSLASHAcl] = ACTIONS(5251), - [anon_sym_BSLASHaclp] = ACTIONS(5251), - [anon_sym_BSLASHAclp] = ACTIONS(5251), - [anon_sym_BSLASHacf] = ACTIONS(5251), - [anon_sym_BSLASHAcf] = ACTIONS(5251), - [anon_sym_BSLASHacfp] = ACTIONS(5251), - [anon_sym_BSLASHAcfp] = ACTIONS(5251), - [anon_sym_BSLASHac] = ACTIONS(5251), - [anon_sym_BSLASHAc] = ACTIONS(5251), - [anon_sym_BSLASHacp] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5251), - [anon_sym_BSLASHcolor] = ACTIONS(5251), - [anon_sym_BSLASHcolorbox] = ACTIONS(5251), - [anon_sym_BSLASHtextcolor] = ACTIONS(5251), - [anon_sym_BSLASHpagecolor] = ACTIONS(5251), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5251), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5251), + [anon_sym_BSLASHiffalse] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_RPAREN] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_RBRACK] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_BSLASHpart] = ACTIONS(5189), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddpart] = ACTIONS(5189), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), + [anon_sym_BSLASHchapter] = ACTIONS(5189), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddchap] = ACTIONS(5189), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsection] = ACTIONS(5189), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddsec] = ACTIONS(5189), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubsection] = ACTIONS(5189), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHparagraph] = ACTIONS(5189), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), + [anon_sym_BSLASHitem] = ACTIONS(5189), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5187), + [sym_word] = ACTIONS(5189), + [sym_placeholder] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_STAR] = ACTIONS(5189), + [anon_sym_SLASH] = ACTIONS(5189), + [anon_sym_CARET] = ACTIONS(5189), + [anon_sym__] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5189), + [anon_sym_GT] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_PIPE] = ACTIONS(5189), + [anon_sym_COLON] = ACTIONS(5189), + [anon_sym_SQUOTE] = ACTIONS(5189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), + [anon_sym_DOLLAR] = ACTIONS(5189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), + [anon_sym_BSLASHbegin] = ACTIONS(5189), + [anon_sym_BSLASHusepackage] = ACTIONS(5189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), + [anon_sym_BSLASHinclude] = ACTIONS(5189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), + [anon_sym_BSLASHinput] = ACTIONS(5189), + [anon_sym_BSLASHsubfile] = ACTIONS(5189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), + [anon_sym_BSLASHbibliography] = ACTIONS(5189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), + [anon_sym_BSLASHincludesvg] = ACTIONS(5189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), + [anon_sym_BSLASHimport] = ACTIONS(5189), + [anon_sym_BSLASHsubimport] = ACTIONS(5189), + [anon_sym_BSLASHinputfrom] = ACTIONS(5189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), + [anon_sym_BSLASHincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHcaption] = ACTIONS(5189), + [anon_sym_BSLASHcite] = ACTIONS(5189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCite] = ACTIONS(5189), + [anon_sym_BSLASHnocite] = ACTIONS(5189), + [anon_sym_BSLASHcitet] = ACTIONS(5189), + [anon_sym_BSLASHcitep] = ACTIONS(5189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteauthor] = ACTIONS(5189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitetitle] = ACTIONS(5189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteyear] = ACTIONS(5189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitedate] = ACTIONS(5189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteurl] = ACTIONS(5189), + [anon_sym_BSLASHfullcite] = ACTIONS(5189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), + [anon_sym_BSLASHcitealt] = ACTIONS(5189), + [anon_sym_BSLASHcitealp] = ACTIONS(5189), + [anon_sym_BSLASHcitetext] = ACTIONS(5189), + [anon_sym_BSLASHparencite] = ACTIONS(5189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHParencite] = ACTIONS(5189), + [anon_sym_BSLASHfootcite] = ACTIONS(5189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), + [anon_sym_BSLASHtextcite] = ACTIONS(5189), + [anon_sym_BSLASHTextcite] = ACTIONS(5189), + [anon_sym_BSLASHsmartcite] = ACTIONS(5189), + [anon_sym_BSLASHSmartcite] = ACTIONS(5189), + [anon_sym_BSLASHsupercite] = ACTIONS(5189), + [anon_sym_BSLASHautocite] = ACTIONS(5189), + [anon_sym_BSLASHAutocite] = ACTIONS(5189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHvolcite] = ACTIONS(5189), + [anon_sym_BSLASHVolcite] = ACTIONS(5189), + [anon_sym_BSLASHpvolcite] = ACTIONS(5189), + [anon_sym_BSLASHPvolcite] = ACTIONS(5189), + [anon_sym_BSLASHfvolcite] = ACTIONS(5189), + [anon_sym_BSLASHftvolcite] = ACTIONS(5189), + [anon_sym_BSLASHsvolcite] = ACTIONS(5189), + [anon_sym_BSLASHSvolcite] = ACTIONS(5189), + [anon_sym_BSLASHtvolcite] = ACTIONS(5189), + [anon_sym_BSLASHTvolcite] = ACTIONS(5189), + [anon_sym_BSLASHavolcite] = ACTIONS(5189), + [anon_sym_BSLASHAvolcite] = ACTIONS(5189), + [anon_sym_BSLASHnotecite] = ACTIONS(5189), + [anon_sym_BSLASHNotecite] = ACTIONS(5189), + [anon_sym_BSLASHpnotecite] = ACTIONS(5189), + [anon_sym_BSLASHPnotecite] = ACTIONS(5189), + [anon_sym_BSLASHfnotecite] = ACTIONS(5189), + [anon_sym_BSLASHlabel] = ACTIONS(5189), + [anon_sym_BSLASHref] = ACTIONS(5189), + [anon_sym_BSLASHeqref] = ACTIONS(5189), + [anon_sym_BSLASHvref] = ACTIONS(5189), + [anon_sym_BSLASHVref] = ACTIONS(5189), + [anon_sym_BSLASHautoref] = ACTIONS(5189), + [anon_sym_BSLASHpageref] = ACTIONS(5189), + [anon_sym_BSLASHcref] = ACTIONS(5189), + [anon_sym_BSLASHCref] = ACTIONS(5189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnameCref] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHlabelcref] = ACTIONS(5189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCrefrange] = ACTIONS(5189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnewlabel] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), + [anon_sym_BSLASHgls] = ACTIONS(5189), + [anon_sym_BSLASHGls] = ACTIONS(5189), + [anon_sym_BSLASHGLS] = ACTIONS(5189), + [anon_sym_BSLASHglspl] = ACTIONS(5189), + [anon_sym_BSLASHGlspl] = ACTIONS(5189), + [anon_sym_BSLASHGLSpl] = ACTIONS(5189), + [anon_sym_BSLASHglsdisp] = ACTIONS(5189), + [anon_sym_BSLASHglslink] = ACTIONS(5189), + [anon_sym_BSLASHglstext] = ACTIONS(5189), + [anon_sym_BSLASHGlstext] = ACTIONS(5189), + [anon_sym_BSLASHGLStext] = ACTIONS(5189), + [anon_sym_BSLASHglsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), + [anon_sym_BSLASHglsplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSplural] = ACTIONS(5189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHglsname] = ACTIONS(5189), + [anon_sym_BSLASHGlsname] = ACTIONS(5189), + [anon_sym_BSLASHGLSname] = ACTIONS(5189), + [anon_sym_BSLASHglssymbol] = ACTIONS(5189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), + [anon_sym_BSLASHglsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), + [anon_sym_BSLASHglsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), + [anon_sym_BSLASHglsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), + [anon_sym_BSLASHglsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), + [anon_sym_BSLASHglsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), + [anon_sym_BSLASHnewacronym] = ACTIONS(5189), + [anon_sym_BSLASHacrshort] = ACTIONS(5189), + [anon_sym_BSLASHAcrshort] = ACTIONS(5189), + [anon_sym_BSLASHACRshort] = ACTIONS(5189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), + [anon_sym_BSLASHacrlong] = ACTIONS(5189), + [anon_sym_BSLASHAcrlong] = ACTIONS(5189), + [anon_sym_BSLASHACRlong] = ACTIONS(5189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), + [anon_sym_BSLASHacrfull] = ACTIONS(5189), + [anon_sym_BSLASHAcrfull] = ACTIONS(5189), + [anon_sym_BSLASHACRfull] = ACTIONS(5189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), + [anon_sym_BSLASHacs] = ACTIONS(5189), + [anon_sym_BSLASHAcs] = ACTIONS(5189), + [anon_sym_BSLASHacsp] = ACTIONS(5189), + [anon_sym_BSLASHAcsp] = ACTIONS(5189), + [anon_sym_BSLASHacl] = ACTIONS(5189), + [anon_sym_BSLASHAcl] = ACTIONS(5189), + [anon_sym_BSLASHaclp] = ACTIONS(5189), + [anon_sym_BSLASHAclp] = ACTIONS(5189), + [anon_sym_BSLASHacf] = ACTIONS(5189), + [anon_sym_BSLASHAcf] = ACTIONS(5189), + [anon_sym_BSLASHacfp] = ACTIONS(5189), + [anon_sym_BSLASHAcfp] = ACTIONS(5189), + [anon_sym_BSLASHac] = ACTIONS(5189), + [anon_sym_BSLASHAc] = ACTIONS(5189), + [anon_sym_BSLASHacp] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), + [anon_sym_BSLASHcolor] = ACTIONS(5189), + [anon_sym_BSLASHcolorbox] = ACTIONS(5189), + [anon_sym_BSLASHtextcolor] = ACTIONS(5189), + [anon_sym_BSLASHpagecolor] = ACTIONS(5189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), + [anon_sym_BSLASHtext] = ACTIONS(5189), + [anon_sym_BSLASHintertext] = ACTIONS(5189), + [anon_sym_shortintertext] = ACTIONS(5189), }, - [1009] = { - [sym_command_name] = ACTIONS(5255), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5255), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5253), - [anon_sym_BSLASHpart] = ACTIONS(5255), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddpart] = ACTIONS(5255), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5253), - [anon_sym_BSLASHchapter] = ACTIONS(5255), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddchap] = ACTIONS(5255), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsection] = ACTIONS(5255), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddsec] = ACTIONS(5255), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubsection] = ACTIONS(5255), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5255), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHparagraph] = ACTIONS(5255), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5255), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5253), - [anon_sym_BSLASHitem] = ACTIONS(5255), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5253), - [anon_sym_LBRACE] = ACTIONS(5253), - [sym_word] = ACTIONS(5255), - [sym_placeholder] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_CARET] = ACTIONS(5255), - [anon_sym__] = ACTIONS(5255), - [anon_sym_LT] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5255), - [anon_sym_BANG] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5255), - [anon_sym_COLON] = ACTIONS(5255), - [anon_sym_SQUOTE] = ACTIONS(5255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5253), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5253), - [anon_sym_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5253), - [anon_sym_BSLASHbegin] = ACTIONS(5255), - [anon_sym_BSLASHusepackage] = ACTIONS(5255), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5255), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5255), - [anon_sym_BSLASHinclude] = ACTIONS(5255), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5255), - [anon_sym_BSLASHinput] = ACTIONS(5255), - [anon_sym_BSLASHsubfile] = ACTIONS(5255), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5255), - [anon_sym_BSLASHbibliography] = ACTIONS(5255), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5255), - [anon_sym_BSLASHincludesvg] = ACTIONS(5255), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5255), - [anon_sym_BSLASHimport] = ACTIONS(5255), - [anon_sym_BSLASHsubimport] = ACTIONS(5255), - [anon_sym_BSLASHinputfrom] = ACTIONS(5255), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5255), - [anon_sym_BSLASHincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHcaption] = ACTIONS(5255), - [anon_sym_BSLASHcite] = ACTIONS(5255), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCite] = ACTIONS(5255), - [anon_sym_BSLASHnocite] = ACTIONS(5255), - [anon_sym_BSLASHcitet] = ACTIONS(5255), - [anon_sym_BSLASHcitep] = ACTIONS(5255), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteauthor] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitetitle] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteyear] = ACTIONS(5255), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitedate] = ACTIONS(5255), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteurl] = ACTIONS(5255), - [anon_sym_BSLASHfullcite] = ACTIONS(5255), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5255), - [anon_sym_BSLASHcitealt] = ACTIONS(5255), - [anon_sym_BSLASHcitealp] = ACTIONS(5255), - [anon_sym_BSLASHcitetext] = ACTIONS(5255), - [anon_sym_BSLASHparencite] = ACTIONS(5255), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHParencite] = ACTIONS(5255), - [anon_sym_BSLASHfootcite] = ACTIONS(5255), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5255), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5255), - [anon_sym_BSLASHtextcite] = ACTIONS(5255), - [anon_sym_BSLASHTextcite] = ACTIONS(5255), - [anon_sym_BSLASHsmartcite] = ACTIONS(5255), - [anon_sym_BSLASHSmartcite] = ACTIONS(5255), - [anon_sym_BSLASHsupercite] = ACTIONS(5255), - [anon_sym_BSLASHautocite] = ACTIONS(5255), - [anon_sym_BSLASHAutocite] = ACTIONS(5255), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHvolcite] = ACTIONS(5255), - [anon_sym_BSLASHVolcite] = ACTIONS(5255), - [anon_sym_BSLASHpvolcite] = ACTIONS(5255), - [anon_sym_BSLASHPvolcite] = ACTIONS(5255), - [anon_sym_BSLASHfvolcite] = ACTIONS(5255), - [anon_sym_BSLASHftvolcite] = ACTIONS(5255), - [anon_sym_BSLASHsvolcite] = ACTIONS(5255), - [anon_sym_BSLASHSvolcite] = ACTIONS(5255), - [anon_sym_BSLASHtvolcite] = ACTIONS(5255), - [anon_sym_BSLASHTvolcite] = ACTIONS(5255), - [anon_sym_BSLASHavolcite] = ACTIONS(5255), - [anon_sym_BSLASHAvolcite] = ACTIONS(5255), - [anon_sym_BSLASHnotecite] = ACTIONS(5255), - [anon_sym_BSLASHNotecite] = ACTIONS(5255), - [anon_sym_BSLASHpnotecite] = ACTIONS(5255), - [anon_sym_BSLASHPnotecite] = ACTIONS(5255), - [anon_sym_BSLASHfnotecite] = ACTIONS(5255), - [anon_sym_BSLASHlabel] = ACTIONS(5255), - [anon_sym_BSLASHref] = ACTIONS(5255), - [anon_sym_BSLASHeqref] = ACTIONS(5255), - [anon_sym_BSLASHvref] = ACTIONS(5255), - [anon_sym_BSLASHVref] = ACTIONS(5255), - [anon_sym_BSLASHautoref] = ACTIONS(5255), - [anon_sym_BSLASHpageref] = ACTIONS(5255), - [anon_sym_BSLASHcref] = ACTIONS(5255), - [anon_sym_BSLASHCref] = ACTIONS(5255), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnameCref] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHlabelcref] = ACTIONS(5255), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCrefrange] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnewlabel] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5253), - [anon_sym_BSLASHdef] = ACTIONS(5255), - [anon_sym_BSLASHlet] = ACTIONS(5255), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5255), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5255), - [anon_sym_BSLASHgls] = ACTIONS(5255), - [anon_sym_BSLASHGls] = ACTIONS(5255), - [anon_sym_BSLASHGLS] = ACTIONS(5255), - [anon_sym_BSLASHglspl] = ACTIONS(5255), - [anon_sym_BSLASHGlspl] = ACTIONS(5255), - [anon_sym_BSLASHGLSpl] = ACTIONS(5255), - [anon_sym_BSLASHglsdisp] = ACTIONS(5255), - [anon_sym_BSLASHglslink] = ACTIONS(5255), - [anon_sym_BSLASHglstext] = ACTIONS(5255), - [anon_sym_BSLASHGlstext] = ACTIONS(5255), - [anon_sym_BSLASHGLStext] = ACTIONS(5255), - [anon_sym_BSLASHglsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5255), - [anon_sym_BSLASHglsplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSplural] = ACTIONS(5255), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHglsname] = ACTIONS(5255), - [anon_sym_BSLASHGlsname] = ACTIONS(5255), - [anon_sym_BSLASHGLSname] = ACTIONS(5255), - [anon_sym_BSLASHglssymbol] = ACTIONS(5255), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5255), - [anon_sym_BSLASHglsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5255), - [anon_sym_BSLASHglsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5255), - [anon_sym_BSLASHglsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5255), - [anon_sym_BSLASHglsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5255), - [anon_sym_BSLASHglsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5255), - [anon_sym_BSLASHnewacronym] = ACTIONS(5255), - [anon_sym_BSLASHacrshort] = ACTIONS(5255), - [anon_sym_BSLASHAcrshort] = ACTIONS(5255), - [anon_sym_BSLASHACRshort] = ACTIONS(5255), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5255), - [anon_sym_BSLASHacrlong] = ACTIONS(5255), - [anon_sym_BSLASHAcrlong] = ACTIONS(5255), - [anon_sym_BSLASHACRlong] = ACTIONS(5255), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5255), - [anon_sym_BSLASHacrfull] = ACTIONS(5255), - [anon_sym_BSLASHAcrfull] = ACTIONS(5255), - [anon_sym_BSLASHACRfull] = ACTIONS(5255), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5255), - [anon_sym_BSLASHacs] = ACTIONS(5255), - [anon_sym_BSLASHAcs] = ACTIONS(5255), - [anon_sym_BSLASHacsp] = ACTIONS(5255), - [anon_sym_BSLASHAcsp] = ACTIONS(5255), - [anon_sym_BSLASHacl] = ACTIONS(5255), - [anon_sym_BSLASHAcl] = ACTIONS(5255), - [anon_sym_BSLASHaclp] = ACTIONS(5255), - [anon_sym_BSLASHAclp] = ACTIONS(5255), - [anon_sym_BSLASHacf] = ACTIONS(5255), - [anon_sym_BSLASHAcf] = ACTIONS(5255), - [anon_sym_BSLASHacfp] = ACTIONS(5255), - [anon_sym_BSLASHAcfp] = ACTIONS(5255), - [anon_sym_BSLASHac] = ACTIONS(5255), - [anon_sym_BSLASHAc] = ACTIONS(5255), - [anon_sym_BSLASHacp] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5255), - [anon_sym_BSLASHcolor] = ACTIONS(5255), - [anon_sym_BSLASHcolorbox] = ACTIONS(5255), - [anon_sym_BSLASHtextcolor] = ACTIONS(5255), - [anon_sym_BSLASHpagecolor] = ACTIONS(5255), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5255), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5255), + [852] = { + [sym_command_name] = ACTIONS(5185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5183), + [anon_sym_RPAREN] = ACTIONS(5183), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_RBRACK] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_BSLASHpart] = ACTIONS(5185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddpart] = ACTIONS(5185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), + [anon_sym_BSLASHchapter] = ACTIONS(5185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddchap] = ACTIONS(5185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsection] = ACTIONS(5185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddsec] = ACTIONS(5185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubsection] = ACTIONS(5185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHparagraph] = ACTIONS(5185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), + [anon_sym_BSLASHitem] = ACTIONS(5185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5183), + [sym_word] = ACTIONS(5185), + [sym_placeholder] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_CARET] = ACTIONS(5185), + [anon_sym__] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_COLON] = ACTIONS(5185), + [anon_sym_SQUOTE] = ACTIONS(5185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), + [anon_sym_DOLLAR] = ACTIONS(5185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), + [anon_sym_BSLASHbegin] = ACTIONS(5185), + [anon_sym_BSLASHusepackage] = ACTIONS(5185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), + [anon_sym_BSLASHinclude] = ACTIONS(5185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), + [anon_sym_BSLASHinput] = ACTIONS(5185), + [anon_sym_BSLASHsubfile] = ACTIONS(5185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), + [anon_sym_BSLASHbibliography] = ACTIONS(5185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), + [anon_sym_BSLASHincludesvg] = ACTIONS(5185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), + [anon_sym_BSLASHimport] = ACTIONS(5185), + [anon_sym_BSLASHsubimport] = ACTIONS(5185), + [anon_sym_BSLASHinputfrom] = ACTIONS(5185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), + [anon_sym_BSLASHincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHcaption] = ACTIONS(5185), + [anon_sym_BSLASHcite] = ACTIONS(5185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCite] = ACTIONS(5185), + [anon_sym_BSLASHnocite] = ACTIONS(5185), + [anon_sym_BSLASHcitet] = ACTIONS(5185), + [anon_sym_BSLASHcitep] = ACTIONS(5185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteauthor] = ACTIONS(5185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitetitle] = ACTIONS(5185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteyear] = ACTIONS(5185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitedate] = ACTIONS(5185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteurl] = ACTIONS(5185), + [anon_sym_BSLASHfullcite] = ACTIONS(5185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), + [anon_sym_BSLASHcitealt] = ACTIONS(5185), + [anon_sym_BSLASHcitealp] = ACTIONS(5185), + [anon_sym_BSLASHcitetext] = ACTIONS(5185), + [anon_sym_BSLASHparencite] = ACTIONS(5185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHParencite] = ACTIONS(5185), + [anon_sym_BSLASHfootcite] = ACTIONS(5185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), + [anon_sym_BSLASHtextcite] = ACTIONS(5185), + [anon_sym_BSLASHTextcite] = ACTIONS(5185), + [anon_sym_BSLASHsmartcite] = ACTIONS(5185), + [anon_sym_BSLASHSmartcite] = ACTIONS(5185), + [anon_sym_BSLASHsupercite] = ACTIONS(5185), + [anon_sym_BSLASHautocite] = ACTIONS(5185), + [anon_sym_BSLASHAutocite] = ACTIONS(5185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHvolcite] = ACTIONS(5185), + [anon_sym_BSLASHVolcite] = ACTIONS(5185), + [anon_sym_BSLASHpvolcite] = ACTIONS(5185), + [anon_sym_BSLASHPvolcite] = ACTIONS(5185), + [anon_sym_BSLASHfvolcite] = ACTIONS(5185), + [anon_sym_BSLASHftvolcite] = ACTIONS(5185), + [anon_sym_BSLASHsvolcite] = ACTIONS(5185), + [anon_sym_BSLASHSvolcite] = ACTIONS(5185), + [anon_sym_BSLASHtvolcite] = ACTIONS(5185), + [anon_sym_BSLASHTvolcite] = ACTIONS(5185), + [anon_sym_BSLASHavolcite] = ACTIONS(5185), + [anon_sym_BSLASHAvolcite] = ACTIONS(5185), + [anon_sym_BSLASHnotecite] = ACTIONS(5185), + [anon_sym_BSLASHNotecite] = ACTIONS(5185), + [anon_sym_BSLASHpnotecite] = ACTIONS(5185), + [anon_sym_BSLASHPnotecite] = ACTIONS(5185), + [anon_sym_BSLASHfnotecite] = ACTIONS(5185), + [anon_sym_BSLASHlabel] = ACTIONS(5185), + [anon_sym_BSLASHref] = ACTIONS(5185), + [anon_sym_BSLASHeqref] = ACTIONS(5185), + [anon_sym_BSLASHvref] = ACTIONS(5185), + [anon_sym_BSLASHVref] = ACTIONS(5185), + [anon_sym_BSLASHautoref] = ACTIONS(5185), + [anon_sym_BSLASHpageref] = ACTIONS(5185), + [anon_sym_BSLASHcref] = ACTIONS(5185), + [anon_sym_BSLASHCref] = ACTIONS(5185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnameCref] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHlabelcref] = ACTIONS(5185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCrefrange] = ACTIONS(5185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnewlabel] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), + [anon_sym_BSLASHdef] = ACTIONS(5185), + [anon_sym_BSLASHlet] = ACTIONS(5185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), + [anon_sym_BSLASHgls] = ACTIONS(5185), + [anon_sym_BSLASHGls] = ACTIONS(5185), + [anon_sym_BSLASHGLS] = ACTIONS(5185), + [anon_sym_BSLASHglspl] = ACTIONS(5185), + [anon_sym_BSLASHGlspl] = ACTIONS(5185), + [anon_sym_BSLASHGLSpl] = ACTIONS(5185), + [anon_sym_BSLASHglsdisp] = ACTIONS(5185), + [anon_sym_BSLASHglslink] = ACTIONS(5185), + [anon_sym_BSLASHglstext] = ACTIONS(5185), + [anon_sym_BSLASHGlstext] = ACTIONS(5185), + [anon_sym_BSLASHGLStext] = ACTIONS(5185), + [anon_sym_BSLASHglsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), + [anon_sym_BSLASHglsplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSplural] = ACTIONS(5185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHglsname] = ACTIONS(5185), + [anon_sym_BSLASHGlsname] = ACTIONS(5185), + [anon_sym_BSLASHGLSname] = ACTIONS(5185), + [anon_sym_BSLASHglssymbol] = ACTIONS(5185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), + [anon_sym_BSLASHglsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), + [anon_sym_BSLASHglsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), + [anon_sym_BSLASHglsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), + [anon_sym_BSLASHglsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), + [anon_sym_BSLASHglsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), + [anon_sym_BSLASHnewacronym] = ACTIONS(5185), + [anon_sym_BSLASHacrshort] = ACTIONS(5185), + [anon_sym_BSLASHAcrshort] = ACTIONS(5185), + [anon_sym_BSLASHACRshort] = ACTIONS(5185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), + [anon_sym_BSLASHacrlong] = ACTIONS(5185), + [anon_sym_BSLASHAcrlong] = ACTIONS(5185), + [anon_sym_BSLASHACRlong] = ACTIONS(5185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), + [anon_sym_BSLASHacrfull] = ACTIONS(5185), + [anon_sym_BSLASHAcrfull] = ACTIONS(5185), + [anon_sym_BSLASHACRfull] = ACTIONS(5185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), + [anon_sym_BSLASHacs] = ACTIONS(5185), + [anon_sym_BSLASHAcs] = ACTIONS(5185), + [anon_sym_BSLASHacsp] = ACTIONS(5185), + [anon_sym_BSLASHAcsp] = ACTIONS(5185), + [anon_sym_BSLASHacl] = ACTIONS(5185), + [anon_sym_BSLASHAcl] = ACTIONS(5185), + [anon_sym_BSLASHaclp] = ACTIONS(5185), + [anon_sym_BSLASHAclp] = ACTIONS(5185), + [anon_sym_BSLASHacf] = ACTIONS(5185), + [anon_sym_BSLASHAcf] = ACTIONS(5185), + [anon_sym_BSLASHacfp] = ACTIONS(5185), + [anon_sym_BSLASHAcfp] = ACTIONS(5185), + [anon_sym_BSLASHac] = ACTIONS(5185), + [anon_sym_BSLASHAc] = ACTIONS(5185), + [anon_sym_BSLASHacp] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), + [anon_sym_BSLASHcolor] = ACTIONS(5185), + [anon_sym_BSLASHcolorbox] = ACTIONS(5185), + [anon_sym_BSLASHtextcolor] = ACTIONS(5185), + [anon_sym_BSLASHpagecolor] = ACTIONS(5185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), + [anon_sym_BSLASHtext] = ACTIONS(5185), + [anon_sym_BSLASHintertext] = ACTIONS(5185), + [anon_sym_shortintertext] = ACTIONS(5185), }, - [1010] = { - [sym_command_name] = ACTIONS(5263), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5263), - [anon_sym_LPAREN] = ACTIONS(5261), - [anon_sym_RPAREN] = ACTIONS(5261), - [anon_sym_LBRACK] = ACTIONS(5261), - [anon_sym_RBRACK] = ACTIONS(5261), - [anon_sym_COMMA] = ACTIONS(5261), - [anon_sym_EQ] = ACTIONS(5261), - [anon_sym_BSLASHpart] = ACTIONS(5263), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddpart] = ACTIONS(5263), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5261), - [anon_sym_BSLASHchapter] = ACTIONS(5263), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddchap] = ACTIONS(5263), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsection] = ACTIONS(5263), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddsec] = ACTIONS(5263), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubsection] = ACTIONS(5263), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5263), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHparagraph] = ACTIONS(5263), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5263), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5261), - [anon_sym_BSLASHitem] = ACTIONS(5263), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(5261), - [sym_word] = ACTIONS(5263), - [sym_placeholder] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_STAR] = ACTIONS(5263), - [anon_sym_SLASH] = ACTIONS(5263), - [anon_sym_CARET] = ACTIONS(5263), - [anon_sym__] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(5263), - [anon_sym_GT] = ACTIONS(5263), - [anon_sym_BANG] = ACTIONS(5263), - [anon_sym_PIPE] = ACTIONS(5263), - [anon_sym_COLON] = ACTIONS(5263), - [anon_sym_SQUOTE] = ACTIONS(5263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5261), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5261), - [anon_sym_DOLLAR] = ACTIONS(5263), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5261), - [anon_sym_BSLASHbegin] = ACTIONS(5263), - [anon_sym_BSLASHusepackage] = ACTIONS(5263), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), - [anon_sym_BSLASHinclude] = ACTIONS(5263), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), - [anon_sym_BSLASHinput] = ACTIONS(5263), - [anon_sym_BSLASHsubfile] = ACTIONS(5263), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), - [anon_sym_BSLASHbibliography] = ACTIONS(5263), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), - [anon_sym_BSLASHincludesvg] = ACTIONS(5263), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), - [anon_sym_BSLASHimport] = ACTIONS(5263), - [anon_sym_BSLASHsubimport] = ACTIONS(5263), - [anon_sym_BSLASHinputfrom] = ACTIONS(5263), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), - [anon_sym_BSLASHincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHcaption] = ACTIONS(5263), - [anon_sym_BSLASHcite] = ACTIONS(5263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCite] = ACTIONS(5263), - [anon_sym_BSLASHnocite] = ACTIONS(5263), - [anon_sym_BSLASHcitet] = ACTIONS(5263), - [anon_sym_BSLASHcitep] = ACTIONS(5263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteyear] = ACTIONS(5263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitedate] = ACTIONS(5263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteurl] = ACTIONS(5263), - [anon_sym_BSLASHfullcite] = ACTIONS(5263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), - [anon_sym_BSLASHcitealt] = ACTIONS(5263), - [anon_sym_BSLASHcitealp] = ACTIONS(5263), - [anon_sym_BSLASHcitetext] = ACTIONS(5263), - [anon_sym_BSLASHparencite] = ACTIONS(5263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHParencite] = ACTIONS(5263), - [anon_sym_BSLASHfootcite] = ACTIONS(5263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), - [anon_sym_BSLASHtextcite] = ACTIONS(5263), - [anon_sym_BSLASHTextcite] = ACTIONS(5263), - [anon_sym_BSLASHsmartcite] = ACTIONS(5263), - [anon_sym_BSLASHSmartcite] = ACTIONS(5263), - [anon_sym_BSLASHsupercite] = ACTIONS(5263), - [anon_sym_BSLASHautocite] = ACTIONS(5263), - [anon_sym_BSLASHAutocite] = ACTIONS(5263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHvolcite] = ACTIONS(5263), - [anon_sym_BSLASHVolcite] = ACTIONS(5263), - [anon_sym_BSLASHpvolcite] = ACTIONS(5263), - [anon_sym_BSLASHPvolcite] = ACTIONS(5263), - [anon_sym_BSLASHfvolcite] = ACTIONS(5263), - [anon_sym_BSLASHftvolcite] = ACTIONS(5263), - [anon_sym_BSLASHsvolcite] = ACTIONS(5263), - [anon_sym_BSLASHSvolcite] = ACTIONS(5263), - [anon_sym_BSLASHtvolcite] = ACTIONS(5263), - [anon_sym_BSLASHTvolcite] = ACTIONS(5263), - [anon_sym_BSLASHavolcite] = ACTIONS(5263), - [anon_sym_BSLASHAvolcite] = ACTIONS(5263), - [anon_sym_BSLASHnotecite] = ACTIONS(5263), - [anon_sym_BSLASHNotecite] = ACTIONS(5263), - [anon_sym_BSLASHpnotecite] = ACTIONS(5263), - [anon_sym_BSLASHPnotecite] = ACTIONS(5263), - [anon_sym_BSLASHfnotecite] = ACTIONS(5263), - [anon_sym_BSLASHlabel] = ACTIONS(5263), - [anon_sym_BSLASHref] = ACTIONS(5263), - [anon_sym_BSLASHeqref] = ACTIONS(5263), - [anon_sym_BSLASHvref] = ACTIONS(5263), - [anon_sym_BSLASHVref] = ACTIONS(5263), - [anon_sym_BSLASHautoref] = ACTIONS(5263), - [anon_sym_BSLASHpageref] = ACTIONS(5263), - [anon_sym_BSLASHcref] = ACTIONS(5263), - [anon_sym_BSLASHCref] = ACTIONS(5263), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnameCref] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHlabelcref] = ACTIONS(5263), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnewlabel] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), - [anon_sym_BSLASHdef] = ACTIONS(5263), - [anon_sym_BSLASHlet] = ACTIONS(5263), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), - [anon_sym_BSLASHgls] = ACTIONS(5263), - [anon_sym_BSLASHGls] = ACTIONS(5263), - [anon_sym_BSLASHGLS] = ACTIONS(5263), - [anon_sym_BSLASHglspl] = ACTIONS(5263), - [anon_sym_BSLASHGlspl] = ACTIONS(5263), - [anon_sym_BSLASHGLSpl] = ACTIONS(5263), - [anon_sym_BSLASHglsdisp] = ACTIONS(5263), - [anon_sym_BSLASHglslink] = ACTIONS(5263), - [anon_sym_BSLASHglstext] = ACTIONS(5263), - [anon_sym_BSLASHGlstext] = ACTIONS(5263), - [anon_sym_BSLASHGLStext] = ACTIONS(5263), - [anon_sym_BSLASHglsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), - [anon_sym_BSLASHglsplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSplural] = ACTIONS(5263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHglsname] = ACTIONS(5263), - [anon_sym_BSLASHGlsname] = ACTIONS(5263), - [anon_sym_BSLASHGLSname] = ACTIONS(5263), - [anon_sym_BSLASHglssymbol] = ACTIONS(5263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), - [anon_sym_BSLASHglsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), - [anon_sym_BSLASHglsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), - [anon_sym_BSLASHglsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), - [anon_sym_BSLASHglsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), - [anon_sym_BSLASHglsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), - [anon_sym_BSLASHnewacronym] = ACTIONS(5263), - [anon_sym_BSLASHacrshort] = ACTIONS(5263), - [anon_sym_BSLASHAcrshort] = ACTIONS(5263), - [anon_sym_BSLASHACRshort] = ACTIONS(5263), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), - [anon_sym_BSLASHacrlong] = ACTIONS(5263), - [anon_sym_BSLASHAcrlong] = ACTIONS(5263), - [anon_sym_BSLASHACRlong] = ACTIONS(5263), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), - [anon_sym_BSLASHacrfull] = ACTIONS(5263), - [anon_sym_BSLASHAcrfull] = ACTIONS(5263), - [anon_sym_BSLASHACRfull] = ACTIONS(5263), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), - [anon_sym_BSLASHacs] = ACTIONS(5263), - [anon_sym_BSLASHAcs] = ACTIONS(5263), - [anon_sym_BSLASHacsp] = ACTIONS(5263), - [anon_sym_BSLASHAcsp] = ACTIONS(5263), - [anon_sym_BSLASHacl] = ACTIONS(5263), - [anon_sym_BSLASHAcl] = ACTIONS(5263), - [anon_sym_BSLASHaclp] = ACTIONS(5263), - [anon_sym_BSLASHAclp] = ACTIONS(5263), - [anon_sym_BSLASHacf] = ACTIONS(5263), - [anon_sym_BSLASHAcf] = ACTIONS(5263), - [anon_sym_BSLASHacfp] = ACTIONS(5263), - [anon_sym_BSLASHAcfp] = ACTIONS(5263), - [anon_sym_BSLASHac] = ACTIONS(5263), - [anon_sym_BSLASHAc] = ACTIONS(5263), - [anon_sym_BSLASHacp] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), - [anon_sym_BSLASHcolor] = ACTIONS(5263), - [anon_sym_BSLASHcolorbox] = ACTIONS(5263), - [anon_sym_BSLASHtextcolor] = ACTIONS(5263), - [anon_sym_BSLASHpagecolor] = ACTIONS(5263), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), + [853] = { + [sym_command_name] = ACTIONS(5181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5179), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_RBRACK] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_BSLASHpart] = ACTIONS(5181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddpart] = ACTIONS(5181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5179), + [anon_sym_BSLASHchapter] = ACTIONS(5181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddchap] = ACTIONS(5181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsection] = ACTIONS(5181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddsec] = ACTIONS(5181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubsection] = ACTIONS(5181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHparagraph] = ACTIONS(5181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5179), + [anon_sym_BSLASHitem] = ACTIONS(5181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5179), + [sym_word] = ACTIONS(5181), + [sym_placeholder] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5181), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_CARET] = ACTIONS(5181), + [anon_sym__] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_COLON] = ACTIONS(5181), + [anon_sym_SQUOTE] = ACTIONS(5181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), + [anon_sym_DOLLAR] = ACTIONS(5181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), + [anon_sym_BSLASHbegin] = ACTIONS(5181), + [anon_sym_BSLASHusepackage] = ACTIONS(5181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), + [anon_sym_BSLASHinclude] = ACTIONS(5181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), + [anon_sym_BSLASHinput] = ACTIONS(5181), + [anon_sym_BSLASHsubfile] = ACTIONS(5181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), + [anon_sym_BSLASHbibliography] = ACTIONS(5181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), + [anon_sym_BSLASHincludesvg] = ACTIONS(5181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), + [anon_sym_BSLASHimport] = ACTIONS(5181), + [anon_sym_BSLASHsubimport] = ACTIONS(5181), + [anon_sym_BSLASHinputfrom] = ACTIONS(5181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), + [anon_sym_BSLASHincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHcaption] = ACTIONS(5181), + [anon_sym_BSLASHcite] = ACTIONS(5181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCite] = ACTIONS(5181), + [anon_sym_BSLASHnocite] = ACTIONS(5181), + [anon_sym_BSLASHcitet] = ACTIONS(5181), + [anon_sym_BSLASHcitep] = ACTIONS(5181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteauthor] = ACTIONS(5181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitetitle] = ACTIONS(5181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteyear] = ACTIONS(5181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitedate] = ACTIONS(5181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteurl] = ACTIONS(5181), + [anon_sym_BSLASHfullcite] = ACTIONS(5181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), + [anon_sym_BSLASHcitealt] = ACTIONS(5181), + [anon_sym_BSLASHcitealp] = ACTIONS(5181), + [anon_sym_BSLASHcitetext] = ACTIONS(5181), + [anon_sym_BSLASHparencite] = ACTIONS(5181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHParencite] = ACTIONS(5181), + [anon_sym_BSLASHfootcite] = ACTIONS(5181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), + [anon_sym_BSLASHtextcite] = ACTIONS(5181), + [anon_sym_BSLASHTextcite] = ACTIONS(5181), + [anon_sym_BSLASHsmartcite] = ACTIONS(5181), + [anon_sym_BSLASHSmartcite] = ACTIONS(5181), + [anon_sym_BSLASHsupercite] = ACTIONS(5181), + [anon_sym_BSLASHautocite] = ACTIONS(5181), + [anon_sym_BSLASHAutocite] = ACTIONS(5181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHvolcite] = ACTIONS(5181), + [anon_sym_BSLASHVolcite] = ACTIONS(5181), + [anon_sym_BSLASHpvolcite] = ACTIONS(5181), + [anon_sym_BSLASHPvolcite] = ACTIONS(5181), + [anon_sym_BSLASHfvolcite] = ACTIONS(5181), + [anon_sym_BSLASHftvolcite] = ACTIONS(5181), + [anon_sym_BSLASHsvolcite] = ACTIONS(5181), + [anon_sym_BSLASHSvolcite] = ACTIONS(5181), + [anon_sym_BSLASHtvolcite] = ACTIONS(5181), + [anon_sym_BSLASHTvolcite] = ACTIONS(5181), + [anon_sym_BSLASHavolcite] = ACTIONS(5181), + [anon_sym_BSLASHAvolcite] = ACTIONS(5181), + [anon_sym_BSLASHnotecite] = ACTIONS(5181), + [anon_sym_BSLASHNotecite] = ACTIONS(5181), + [anon_sym_BSLASHpnotecite] = ACTIONS(5181), + [anon_sym_BSLASHPnotecite] = ACTIONS(5181), + [anon_sym_BSLASHfnotecite] = ACTIONS(5181), + [anon_sym_BSLASHlabel] = ACTIONS(5181), + [anon_sym_BSLASHref] = ACTIONS(5181), + [anon_sym_BSLASHeqref] = ACTIONS(5181), + [anon_sym_BSLASHvref] = ACTIONS(5181), + [anon_sym_BSLASHVref] = ACTIONS(5181), + [anon_sym_BSLASHautoref] = ACTIONS(5181), + [anon_sym_BSLASHpageref] = ACTIONS(5181), + [anon_sym_BSLASHcref] = ACTIONS(5181), + [anon_sym_BSLASHCref] = ACTIONS(5181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnameCref] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHlabelcref] = ACTIONS(5181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnewlabel] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), + [anon_sym_BSLASHdef] = ACTIONS(5181), + [anon_sym_BSLASHlet] = ACTIONS(5181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), + [anon_sym_BSLASHgls] = ACTIONS(5181), + [anon_sym_BSLASHGls] = ACTIONS(5181), + [anon_sym_BSLASHGLS] = ACTIONS(5181), + [anon_sym_BSLASHglspl] = ACTIONS(5181), + [anon_sym_BSLASHGlspl] = ACTIONS(5181), + [anon_sym_BSLASHGLSpl] = ACTIONS(5181), + [anon_sym_BSLASHglsdisp] = ACTIONS(5181), + [anon_sym_BSLASHglslink] = ACTIONS(5181), + [anon_sym_BSLASHglstext] = ACTIONS(5181), + [anon_sym_BSLASHGlstext] = ACTIONS(5181), + [anon_sym_BSLASHGLStext] = ACTIONS(5181), + [anon_sym_BSLASHglsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), + [anon_sym_BSLASHglsplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSplural] = ACTIONS(5181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHglsname] = ACTIONS(5181), + [anon_sym_BSLASHGlsname] = ACTIONS(5181), + [anon_sym_BSLASHGLSname] = ACTIONS(5181), + [anon_sym_BSLASHglssymbol] = ACTIONS(5181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), + [anon_sym_BSLASHglsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), + [anon_sym_BSLASHglsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), + [anon_sym_BSLASHglsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), + [anon_sym_BSLASHglsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), + [anon_sym_BSLASHglsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), + [anon_sym_BSLASHnewacronym] = ACTIONS(5181), + [anon_sym_BSLASHacrshort] = ACTIONS(5181), + [anon_sym_BSLASHAcrshort] = ACTIONS(5181), + [anon_sym_BSLASHACRshort] = ACTIONS(5181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), + [anon_sym_BSLASHacrlong] = ACTIONS(5181), + [anon_sym_BSLASHAcrlong] = ACTIONS(5181), + [anon_sym_BSLASHACRlong] = ACTIONS(5181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), + [anon_sym_BSLASHacrfull] = ACTIONS(5181), + [anon_sym_BSLASHAcrfull] = ACTIONS(5181), + [anon_sym_BSLASHACRfull] = ACTIONS(5181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), + [anon_sym_BSLASHacs] = ACTIONS(5181), + [anon_sym_BSLASHAcs] = ACTIONS(5181), + [anon_sym_BSLASHacsp] = ACTIONS(5181), + [anon_sym_BSLASHAcsp] = ACTIONS(5181), + [anon_sym_BSLASHacl] = ACTIONS(5181), + [anon_sym_BSLASHAcl] = ACTIONS(5181), + [anon_sym_BSLASHaclp] = ACTIONS(5181), + [anon_sym_BSLASHAclp] = ACTIONS(5181), + [anon_sym_BSLASHacf] = ACTIONS(5181), + [anon_sym_BSLASHAcf] = ACTIONS(5181), + [anon_sym_BSLASHacfp] = ACTIONS(5181), + [anon_sym_BSLASHAcfp] = ACTIONS(5181), + [anon_sym_BSLASHac] = ACTIONS(5181), + [anon_sym_BSLASHAc] = ACTIONS(5181), + [anon_sym_BSLASHacp] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), + [anon_sym_BSLASHcolor] = ACTIONS(5181), + [anon_sym_BSLASHcolorbox] = ACTIONS(5181), + [anon_sym_BSLASHtextcolor] = ACTIONS(5181), + [anon_sym_BSLASHpagecolor] = ACTIONS(5181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), + [anon_sym_BSLASHtext] = ACTIONS(5181), + [anon_sym_BSLASHintertext] = ACTIONS(5181), + [anon_sym_shortintertext] = ACTIONS(5181), }, - [1011] = { - [sym_command_name] = ACTIONS(5267), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5267), - [anon_sym_LPAREN] = ACTIONS(5265), - [anon_sym_RPAREN] = ACTIONS(5265), - [anon_sym_LBRACK] = ACTIONS(5265), - [anon_sym_RBRACK] = ACTIONS(5265), - [anon_sym_COMMA] = ACTIONS(5265), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_BSLASHpart] = ACTIONS(5267), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddpart] = ACTIONS(5267), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5265), - [anon_sym_BSLASHchapter] = ACTIONS(5267), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddchap] = ACTIONS(5267), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsection] = ACTIONS(5267), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddsec] = ACTIONS(5267), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubsection] = ACTIONS(5267), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5267), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHparagraph] = ACTIONS(5267), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5267), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5265), - [anon_sym_BSLASHitem] = ACTIONS(5267), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(5265), - [sym_word] = ACTIONS(5267), - [sym_placeholder] = ACTIONS(5265), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(5267), - [anon_sym_SLASH] = ACTIONS(5267), - [anon_sym_CARET] = ACTIONS(5267), - [anon_sym__] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(5267), - [anon_sym_GT] = ACTIONS(5267), - [anon_sym_BANG] = ACTIONS(5267), - [anon_sym_PIPE] = ACTIONS(5267), - [anon_sym_COLON] = ACTIONS(5267), - [anon_sym_SQUOTE] = ACTIONS(5267), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5265), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5265), - [anon_sym_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5265), - [anon_sym_BSLASHbegin] = ACTIONS(5267), - [anon_sym_BSLASHusepackage] = ACTIONS(5267), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5267), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5267), - [anon_sym_BSLASHinclude] = ACTIONS(5267), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5267), - [anon_sym_BSLASHinput] = ACTIONS(5267), - [anon_sym_BSLASHsubfile] = ACTIONS(5267), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5267), - [anon_sym_BSLASHbibliography] = ACTIONS(5267), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5267), - [anon_sym_BSLASHincludesvg] = ACTIONS(5267), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5267), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5267), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5267), - [anon_sym_BSLASHimport] = ACTIONS(5267), - [anon_sym_BSLASHsubimport] = ACTIONS(5267), - [anon_sym_BSLASHinputfrom] = ACTIONS(5267), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5267), - [anon_sym_BSLASHincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHcaption] = ACTIONS(5267), - [anon_sym_BSLASHcite] = ACTIONS(5267), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCite] = ACTIONS(5267), - [anon_sym_BSLASHnocite] = ACTIONS(5267), - [anon_sym_BSLASHcitet] = ACTIONS(5267), - [anon_sym_BSLASHcitep] = ACTIONS(5267), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteyear] = ACTIONS(5267), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitedate] = ACTIONS(5267), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteurl] = ACTIONS(5267), - [anon_sym_BSLASHfullcite] = ACTIONS(5267), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5267), - [anon_sym_BSLASHcitealt] = ACTIONS(5267), - [anon_sym_BSLASHcitealp] = ACTIONS(5267), - [anon_sym_BSLASHcitetext] = ACTIONS(5267), - [anon_sym_BSLASHparencite] = ACTIONS(5267), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHParencite] = ACTIONS(5267), - [anon_sym_BSLASHfootcite] = ACTIONS(5267), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5267), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5267), - [anon_sym_BSLASHtextcite] = ACTIONS(5267), - [anon_sym_BSLASHTextcite] = ACTIONS(5267), - [anon_sym_BSLASHsmartcite] = ACTIONS(5267), - [anon_sym_BSLASHSmartcite] = ACTIONS(5267), - [anon_sym_BSLASHsupercite] = ACTIONS(5267), - [anon_sym_BSLASHautocite] = ACTIONS(5267), - [anon_sym_BSLASHAutocite] = ACTIONS(5267), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHvolcite] = ACTIONS(5267), - [anon_sym_BSLASHVolcite] = ACTIONS(5267), - [anon_sym_BSLASHpvolcite] = ACTIONS(5267), - [anon_sym_BSLASHPvolcite] = ACTIONS(5267), - [anon_sym_BSLASHfvolcite] = ACTIONS(5267), - [anon_sym_BSLASHftvolcite] = ACTIONS(5267), - [anon_sym_BSLASHsvolcite] = ACTIONS(5267), - [anon_sym_BSLASHSvolcite] = ACTIONS(5267), - [anon_sym_BSLASHtvolcite] = ACTIONS(5267), - [anon_sym_BSLASHTvolcite] = ACTIONS(5267), - [anon_sym_BSLASHavolcite] = ACTIONS(5267), - [anon_sym_BSLASHAvolcite] = ACTIONS(5267), - [anon_sym_BSLASHnotecite] = ACTIONS(5267), - [anon_sym_BSLASHNotecite] = ACTIONS(5267), - [anon_sym_BSLASHpnotecite] = ACTIONS(5267), - [anon_sym_BSLASHPnotecite] = ACTIONS(5267), - [anon_sym_BSLASHfnotecite] = ACTIONS(5267), - [anon_sym_BSLASHlabel] = ACTIONS(5267), - [anon_sym_BSLASHref] = ACTIONS(5267), - [anon_sym_BSLASHeqref] = ACTIONS(5267), - [anon_sym_BSLASHvref] = ACTIONS(5267), - [anon_sym_BSLASHVref] = ACTIONS(5267), - [anon_sym_BSLASHautoref] = ACTIONS(5267), - [anon_sym_BSLASHpageref] = ACTIONS(5267), - [anon_sym_BSLASHcref] = ACTIONS(5267), - [anon_sym_BSLASHCref] = ACTIONS(5267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnameCref] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHlabelcref] = ACTIONS(5267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnewlabel] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5265), - [anon_sym_BSLASHdef] = ACTIONS(5267), - [anon_sym_BSLASHlet] = ACTIONS(5267), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5267), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5267), - [anon_sym_BSLASHgls] = ACTIONS(5267), - [anon_sym_BSLASHGls] = ACTIONS(5267), - [anon_sym_BSLASHGLS] = ACTIONS(5267), - [anon_sym_BSLASHglspl] = ACTIONS(5267), - [anon_sym_BSLASHGlspl] = ACTIONS(5267), - [anon_sym_BSLASHGLSpl] = ACTIONS(5267), - [anon_sym_BSLASHglsdisp] = ACTIONS(5267), - [anon_sym_BSLASHglslink] = ACTIONS(5267), - [anon_sym_BSLASHglstext] = ACTIONS(5267), - [anon_sym_BSLASHGlstext] = ACTIONS(5267), - [anon_sym_BSLASHGLStext] = ACTIONS(5267), - [anon_sym_BSLASHglsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5267), - [anon_sym_BSLASHglsplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSplural] = ACTIONS(5267), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHglsname] = ACTIONS(5267), - [anon_sym_BSLASHGlsname] = ACTIONS(5267), - [anon_sym_BSLASHGLSname] = ACTIONS(5267), - [anon_sym_BSLASHglssymbol] = ACTIONS(5267), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5267), - [anon_sym_BSLASHglsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5267), - [anon_sym_BSLASHglsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5267), - [anon_sym_BSLASHglsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5267), - [anon_sym_BSLASHglsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5267), - [anon_sym_BSLASHglsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5267), - [anon_sym_BSLASHnewacronym] = ACTIONS(5267), - [anon_sym_BSLASHacrshort] = ACTIONS(5267), - [anon_sym_BSLASHAcrshort] = ACTIONS(5267), - [anon_sym_BSLASHACRshort] = ACTIONS(5267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5267), - [anon_sym_BSLASHacrlong] = ACTIONS(5267), - [anon_sym_BSLASHAcrlong] = ACTIONS(5267), - [anon_sym_BSLASHACRlong] = ACTIONS(5267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5267), - [anon_sym_BSLASHacrfull] = ACTIONS(5267), - [anon_sym_BSLASHAcrfull] = ACTIONS(5267), - [anon_sym_BSLASHACRfull] = ACTIONS(5267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5267), - [anon_sym_BSLASHacs] = ACTIONS(5267), - [anon_sym_BSLASHAcs] = ACTIONS(5267), - [anon_sym_BSLASHacsp] = ACTIONS(5267), - [anon_sym_BSLASHAcsp] = ACTIONS(5267), - [anon_sym_BSLASHacl] = ACTIONS(5267), - [anon_sym_BSLASHAcl] = ACTIONS(5267), - [anon_sym_BSLASHaclp] = ACTIONS(5267), - [anon_sym_BSLASHAclp] = ACTIONS(5267), - [anon_sym_BSLASHacf] = ACTIONS(5267), - [anon_sym_BSLASHAcf] = ACTIONS(5267), - [anon_sym_BSLASHacfp] = ACTIONS(5267), - [anon_sym_BSLASHAcfp] = ACTIONS(5267), - [anon_sym_BSLASHac] = ACTIONS(5267), - [anon_sym_BSLASHAc] = ACTIONS(5267), - [anon_sym_BSLASHacp] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5267), - [anon_sym_BSLASHcolor] = ACTIONS(5267), - [anon_sym_BSLASHcolorbox] = ACTIONS(5267), - [anon_sym_BSLASHtextcolor] = ACTIONS(5267), - [anon_sym_BSLASHpagecolor] = ACTIONS(5267), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5267), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5267), + [854] = { + [sym_command_name] = ACTIONS(5177), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5175), + [anon_sym_RPAREN] = ACTIONS(5175), + [anon_sym_LBRACK] = ACTIONS(5175), + [anon_sym_RBRACK] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_BSLASHpart] = ACTIONS(5177), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddpart] = ACTIONS(5177), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5175), + [anon_sym_BSLASHchapter] = ACTIONS(5177), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddchap] = ACTIONS(5177), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsection] = ACTIONS(5177), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddsec] = ACTIONS(5177), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubsection] = ACTIONS(5177), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5177), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHparagraph] = ACTIONS(5177), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5175), + [anon_sym_BSLASHitem] = ACTIONS(5177), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5175), + [sym_word] = ACTIONS(5177), + [sym_placeholder] = ACTIONS(5175), + [anon_sym_PLUS] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5177), + [anon_sym_SLASH] = ACTIONS(5177), + [anon_sym_CARET] = ACTIONS(5177), + [anon_sym__] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5177), + [anon_sym_GT] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5177), + [anon_sym_PIPE] = ACTIONS(5177), + [anon_sym_COLON] = ACTIONS(5177), + [anon_sym_SQUOTE] = ACTIONS(5177), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), + [anon_sym_DOLLAR] = ACTIONS(5177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), + [anon_sym_BSLASHbegin] = ACTIONS(5177), + [anon_sym_BSLASHusepackage] = ACTIONS(5177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), + [anon_sym_BSLASHinclude] = ACTIONS(5177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), + [anon_sym_BSLASHinput] = ACTIONS(5177), + [anon_sym_BSLASHsubfile] = ACTIONS(5177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), + [anon_sym_BSLASHbibliography] = ACTIONS(5177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), + [anon_sym_BSLASHincludesvg] = ACTIONS(5177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), + [anon_sym_BSLASHimport] = ACTIONS(5177), + [anon_sym_BSLASHsubimport] = ACTIONS(5177), + [anon_sym_BSLASHinputfrom] = ACTIONS(5177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), + [anon_sym_BSLASHincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHcaption] = ACTIONS(5177), + [anon_sym_BSLASHcite] = ACTIONS(5177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCite] = ACTIONS(5177), + [anon_sym_BSLASHnocite] = ACTIONS(5177), + [anon_sym_BSLASHcitet] = ACTIONS(5177), + [anon_sym_BSLASHcitep] = ACTIONS(5177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteauthor] = ACTIONS(5177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitetitle] = ACTIONS(5177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteyear] = ACTIONS(5177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitedate] = ACTIONS(5177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteurl] = ACTIONS(5177), + [anon_sym_BSLASHfullcite] = ACTIONS(5177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), + [anon_sym_BSLASHcitealt] = ACTIONS(5177), + [anon_sym_BSLASHcitealp] = ACTIONS(5177), + [anon_sym_BSLASHcitetext] = ACTIONS(5177), + [anon_sym_BSLASHparencite] = ACTIONS(5177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHParencite] = ACTIONS(5177), + [anon_sym_BSLASHfootcite] = ACTIONS(5177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), + [anon_sym_BSLASHtextcite] = ACTIONS(5177), + [anon_sym_BSLASHTextcite] = ACTIONS(5177), + [anon_sym_BSLASHsmartcite] = ACTIONS(5177), + [anon_sym_BSLASHSmartcite] = ACTIONS(5177), + [anon_sym_BSLASHsupercite] = ACTIONS(5177), + [anon_sym_BSLASHautocite] = ACTIONS(5177), + [anon_sym_BSLASHAutocite] = ACTIONS(5177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHvolcite] = ACTIONS(5177), + [anon_sym_BSLASHVolcite] = ACTIONS(5177), + [anon_sym_BSLASHpvolcite] = ACTIONS(5177), + [anon_sym_BSLASHPvolcite] = ACTIONS(5177), + [anon_sym_BSLASHfvolcite] = ACTIONS(5177), + [anon_sym_BSLASHftvolcite] = ACTIONS(5177), + [anon_sym_BSLASHsvolcite] = ACTIONS(5177), + [anon_sym_BSLASHSvolcite] = ACTIONS(5177), + [anon_sym_BSLASHtvolcite] = ACTIONS(5177), + [anon_sym_BSLASHTvolcite] = ACTIONS(5177), + [anon_sym_BSLASHavolcite] = ACTIONS(5177), + [anon_sym_BSLASHAvolcite] = ACTIONS(5177), + [anon_sym_BSLASHnotecite] = ACTIONS(5177), + [anon_sym_BSLASHNotecite] = ACTIONS(5177), + [anon_sym_BSLASHpnotecite] = ACTIONS(5177), + [anon_sym_BSLASHPnotecite] = ACTIONS(5177), + [anon_sym_BSLASHfnotecite] = ACTIONS(5177), + [anon_sym_BSLASHlabel] = ACTIONS(5177), + [anon_sym_BSLASHref] = ACTIONS(5177), + [anon_sym_BSLASHeqref] = ACTIONS(5177), + [anon_sym_BSLASHvref] = ACTIONS(5177), + [anon_sym_BSLASHVref] = ACTIONS(5177), + [anon_sym_BSLASHautoref] = ACTIONS(5177), + [anon_sym_BSLASHpageref] = ACTIONS(5177), + [anon_sym_BSLASHcref] = ACTIONS(5177), + [anon_sym_BSLASHCref] = ACTIONS(5177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnameCref] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHlabelcref] = ACTIONS(5177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCrefrange] = ACTIONS(5177), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnewlabel] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), + [anon_sym_BSLASHdef] = ACTIONS(5177), + [anon_sym_BSLASHlet] = ACTIONS(5177), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), + [anon_sym_BSLASHgls] = ACTIONS(5177), + [anon_sym_BSLASHGls] = ACTIONS(5177), + [anon_sym_BSLASHGLS] = ACTIONS(5177), + [anon_sym_BSLASHglspl] = ACTIONS(5177), + [anon_sym_BSLASHGlspl] = ACTIONS(5177), + [anon_sym_BSLASHGLSpl] = ACTIONS(5177), + [anon_sym_BSLASHglsdisp] = ACTIONS(5177), + [anon_sym_BSLASHglslink] = ACTIONS(5177), + [anon_sym_BSLASHglstext] = ACTIONS(5177), + [anon_sym_BSLASHGlstext] = ACTIONS(5177), + [anon_sym_BSLASHGLStext] = ACTIONS(5177), + [anon_sym_BSLASHglsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), + [anon_sym_BSLASHglsplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSplural] = ACTIONS(5177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHglsname] = ACTIONS(5177), + [anon_sym_BSLASHGlsname] = ACTIONS(5177), + [anon_sym_BSLASHGLSname] = ACTIONS(5177), + [anon_sym_BSLASHglssymbol] = ACTIONS(5177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), + [anon_sym_BSLASHglsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), + [anon_sym_BSLASHglsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), + [anon_sym_BSLASHglsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), + [anon_sym_BSLASHglsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), + [anon_sym_BSLASHglsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), + [anon_sym_BSLASHnewacronym] = ACTIONS(5177), + [anon_sym_BSLASHacrshort] = ACTIONS(5177), + [anon_sym_BSLASHAcrshort] = ACTIONS(5177), + [anon_sym_BSLASHACRshort] = ACTIONS(5177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), + [anon_sym_BSLASHacrlong] = ACTIONS(5177), + [anon_sym_BSLASHAcrlong] = ACTIONS(5177), + [anon_sym_BSLASHACRlong] = ACTIONS(5177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), + [anon_sym_BSLASHacrfull] = ACTIONS(5177), + [anon_sym_BSLASHAcrfull] = ACTIONS(5177), + [anon_sym_BSLASHACRfull] = ACTIONS(5177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), + [anon_sym_BSLASHacs] = ACTIONS(5177), + [anon_sym_BSLASHAcs] = ACTIONS(5177), + [anon_sym_BSLASHacsp] = ACTIONS(5177), + [anon_sym_BSLASHAcsp] = ACTIONS(5177), + [anon_sym_BSLASHacl] = ACTIONS(5177), + [anon_sym_BSLASHAcl] = ACTIONS(5177), + [anon_sym_BSLASHaclp] = ACTIONS(5177), + [anon_sym_BSLASHAclp] = ACTIONS(5177), + [anon_sym_BSLASHacf] = ACTIONS(5177), + [anon_sym_BSLASHAcf] = ACTIONS(5177), + [anon_sym_BSLASHacfp] = ACTIONS(5177), + [anon_sym_BSLASHAcfp] = ACTIONS(5177), + [anon_sym_BSLASHac] = ACTIONS(5177), + [anon_sym_BSLASHAc] = ACTIONS(5177), + [anon_sym_BSLASHacp] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), + [anon_sym_BSLASHcolor] = ACTIONS(5177), + [anon_sym_BSLASHcolorbox] = ACTIONS(5177), + [anon_sym_BSLASHtextcolor] = ACTIONS(5177), + [anon_sym_BSLASHpagecolor] = ACTIONS(5177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), + [anon_sym_BSLASHtext] = ACTIONS(5177), + [anon_sym_BSLASHintertext] = ACTIONS(5177), + [anon_sym_shortintertext] = ACTIONS(5177), }, - [1012] = { - [sym_command_name] = ACTIONS(5275), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5275), - [anon_sym_LPAREN] = ACTIONS(5273), - [anon_sym_RPAREN] = ACTIONS(5273), - [anon_sym_LBRACK] = ACTIONS(5273), - [anon_sym_RBRACK] = ACTIONS(5273), - [anon_sym_COMMA] = ACTIONS(5273), - [anon_sym_EQ] = ACTIONS(5273), - [anon_sym_BSLASHpart] = ACTIONS(5275), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddpart] = ACTIONS(5275), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5273), - [anon_sym_BSLASHchapter] = ACTIONS(5275), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddchap] = ACTIONS(5275), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsection] = ACTIONS(5275), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddsec] = ACTIONS(5275), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubsection] = ACTIONS(5275), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5275), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHparagraph] = ACTIONS(5275), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5275), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5273), - [anon_sym_BSLASHitem] = ACTIONS(5275), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5273), - [anon_sym_LBRACE] = ACTIONS(5273), - [sym_word] = ACTIONS(5275), - [sym_placeholder] = ACTIONS(5273), - [anon_sym_PLUS] = ACTIONS(5275), - [anon_sym_DASH] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(5275), - [anon_sym_SLASH] = ACTIONS(5275), - [anon_sym_CARET] = ACTIONS(5275), - [anon_sym__] = ACTIONS(5275), - [anon_sym_LT] = ACTIONS(5275), - [anon_sym_GT] = ACTIONS(5275), - [anon_sym_BANG] = ACTIONS(5275), - [anon_sym_PIPE] = ACTIONS(5275), - [anon_sym_COLON] = ACTIONS(5275), - [anon_sym_SQUOTE] = ACTIONS(5275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5273), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5273), - [anon_sym_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5273), - [anon_sym_BSLASHbegin] = ACTIONS(5275), - [anon_sym_BSLASHusepackage] = ACTIONS(5275), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5275), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5275), - [anon_sym_BSLASHinclude] = ACTIONS(5275), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5275), - [anon_sym_BSLASHinput] = ACTIONS(5275), - [anon_sym_BSLASHsubfile] = ACTIONS(5275), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5275), - [anon_sym_BSLASHbibliography] = ACTIONS(5275), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5275), - [anon_sym_BSLASHincludesvg] = ACTIONS(5275), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5275), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5275), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5275), - [anon_sym_BSLASHimport] = ACTIONS(5275), - [anon_sym_BSLASHsubimport] = ACTIONS(5275), - [anon_sym_BSLASHinputfrom] = ACTIONS(5275), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5275), - [anon_sym_BSLASHincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHcaption] = ACTIONS(5275), - [anon_sym_BSLASHcite] = ACTIONS(5275), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCite] = ACTIONS(5275), - [anon_sym_BSLASHnocite] = ACTIONS(5275), - [anon_sym_BSLASHcitet] = ACTIONS(5275), - [anon_sym_BSLASHcitep] = ACTIONS(5275), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteauthor] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitetitle] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteyear] = ACTIONS(5275), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitedate] = ACTIONS(5275), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteurl] = ACTIONS(5275), - [anon_sym_BSLASHfullcite] = ACTIONS(5275), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5275), - [anon_sym_BSLASHcitealt] = ACTIONS(5275), - [anon_sym_BSLASHcitealp] = ACTIONS(5275), - [anon_sym_BSLASHcitetext] = ACTIONS(5275), - [anon_sym_BSLASHparencite] = ACTIONS(5275), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHParencite] = ACTIONS(5275), - [anon_sym_BSLASHfootcite] = ACTIONS(5275), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5275), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5275), - [anon_sym_BSLASHtextcite] = ACTIONS(5275), - [anon_sym_BSLASHTextcite] = ACTIONS(5275), - [anon_sym_BSLASHsmartcite] = ACTIONS(5275), - [anon_sym_BSLASHSmartcite] = ACTIONS(5275), - [anon_sym_BSLASHsupercite] = ACTIONS(5275), - [anon_sym_BSLASHautocite] = ACTIONS(5275), - [anon_sym_BSLASHAutocite] = ACTIONS(5275), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHvolcite] = ACTIONS(5275), - [anon_sym_BSLASHVolcite] = ACTIONS(5275), - [anon_sym_BSLASHpvolcite] = ACTIONS(5275), - [anon_sym_BSLASHPvolcite] = ACTIONS(5275), - [anon_sym_BSLASHfvolcite] = ACTIONS(5275), - [anon_sym_BSLASHftvolcite] = ACTIONS(5275), - [anon_sym_BSLASHsvolcite] = ACTIONS(5275), - [anon_sym_BSLASHSvolcite] = ACTIONS(5275), - [anon_sym_BSLASHtvolcite] = ACTIONS(5275), - [anon_sym_BSLASHTvolcite] = ACTIONS(5275), - [anon_sym_BSLASHavolcite] = ACTIONS(5275), - [anon_sym_BSLASHAvolcite] = ACTIONS(5275), - [anon_sym_BSLASHnotecite] = ACTIONS(5275), - [anon_sym_BSLASHNotecite] = ACTIONS(5275), - [anon_sym_BSLASHpnotecite] = ACTIONS(5275), - [anon_sym_BSLASHPnotecite] = ACTIONS(5275), - [anon_sym_BSLASHfnotecite] = ACTIONS(5275), - [anon_sym_BSLASHlabel] = ACTIONS(5275), - [anon_sym_BSLASHref] = ACTIONS(5275), - [anon_sym_BSLASHeqref] = ACTIONS(5275), - [anon_sym_BSLASHvref] = ACTIONS(5275), - [anon_sym_BSLASHVref] = ACTIONS(5275), - [anon_sym_BSLASHautoref] = ACTIONS(5275), - [anon_sym_BSLASHpageref] = ACTIONS(5275), - [anon_sym_BSLASHcref] = ACTIONS(5275), - [anon_sym_BSLASHCref] = ACTIONS(5275), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnameCref] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHlabelcref] = ACTIONS(5275), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCrefrange] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnewlabel] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5273), - [anon_sym_BSLASHdef] = ACTIONS(5275), - [anon_sym_BSLASHlet] = ACTIONS(5275), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5275), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5275), - [anon_sym_BSLASHgls] = ACTIONS(5275), - [anon_sym_BSLASHGls] = ACTIONS(5275), - [anon_sym_BSLASHGLS] = ACTIONS(5275), - [anon_sym_BSLASHglspl] = ACTIONS(5275), - [anon_sym_BSLASHGlspl] = ACTIONS(5275), - [anon_sym_BSLASHGLSpl] = ACTIONS(5275), - [anon_sym_BSLASHglsdisp] = ACTIONS(5275), - [anon_sym_BSLASHglslink] = ACTIONS(5275), - [anon_sym_BSLASHglstext] = ACTIONS(5275), - [anon_sym_BSLASHGlstext] = ACTIONS(5275), - [anon_sym_BSLASHGLStext] = ACTIONS(5275), - [anon_sym_BSLASHglsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5275), - [anon_sym_BSLASHglsplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSplural] = ACTIONS(5275), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHglsname] = ACTIONS(5275), - [anon_sym_BSLASHGlsname] = ACTIONS(5275), - [anon_sym_BSLASHGLSname] = ACTIONS(5275), - [anon_sym_BSLASHglssymbol] = ACTIONS(5275), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5275), - [anon_sym_BSLASHglsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5275), - [anon_sym_BSLASHglsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5275), - [anon_sym_BSLASHglsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5275), - [anon_sym_BSLASHglsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5275), - [anon_sym_BSLASHglsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5275), - [anon_sym_BSLASHnewacronym] = ACTIONS(5275), - [anon_sym_BSLASHacrshort] = ACTIONS(5275), - [anon_sym_BSLASHAcrshort] = ACTIONS(5275), - [anon_sym_BSLASHACRshort] = ACTIONS(5275), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5275), - [anon_sym_BSLASHacrlong] = ACTIONS(5275), - [anon_sym_BSLASHAcrlong] = ACTIONS(5275), - [anon_sym_BSLASHACRlong] = ACTIONS(5275), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5275), - [anon_sym_BSLASHacrfull] = ACTIONS(5275), - [anon_sym_BSLASHAcrfull] = ACTIONS(5275), - [anon_sym_BSLASHACRfull] = ACTIONS(5275), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5275), - [anon_sym_BSLASHacs] = ACTIONS(5275), - [anon_sym_BSLASHAcs] = ACTIONS(5275), - [anon_sym_BSLASHacsp] = ACTIONS(5275), - [anon_sym_BSLASHAcsp] = ACTIONS(5275), - [anon_sym_BSLASHacl] = ACTIONS(5275), - [anon_sym_BSLASHAcl] = ACTIONS(5275), - [anon_sym_BSLASHaclp] = ACTIONS(5275), - [anon_sym_BSLASHAclp] = ACTIONS(5275), - [anon_sym_BSLASHacf] = ACTIONS(5275), - [anon_sym_BSLASHAcf] = ACTIONS(5275), - [anon_sym_BSLASHacfp] = ACTIONS(5275), - [anon_sym_BSLASHAcfp] = ACTIONS(5275), - [anon_sym_BSLASHac] = ACTIONS(5275), - [anon_sym_BSLASHAc] = ACTIONS(5275), - [anon_sym_BSLASHacp] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5275), - [anon_sym_BSLASHcolor] = ACTIONS(5275), - [anon_sym_BSLASHcolorbox] = ACTIONS(5275), - [anon_sym_BSLASHtextcolor] = ACTIONS(5275), - [anon_sym_BSLASHpagecolor] = ACTIONS(5275), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5275), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5275), + [855] = { + [sym_command_name] = ACTIONS(5169), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_BSLASHpart] = ACTIONS(5169), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddpart] = ACTIONS(5169), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5167), + [anon_sym_BSLASHchapter] = ACTIONS(5169), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddchap] = ACTIONS(5169), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsection] = ACTIONS(5169), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddsec] = ACTIONS(5169), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubsection] = ACTIONS(5169), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHparagraph] = ACTIONS(5169), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5169), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5167), + [anon_sym_BSLASHitem] = ACTIONS(5169), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5167), + [sym_word] = ACTIONS(5169), + [sym_placeholder] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_CARET] = ACTIONS(5169), + [anon_sym__] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_PIPE] = ACTIONS(5169), + [anon_sym_COLON] = ACTIONS(5169), + [anon_sym_SQUOTE] = ACTIONS(5169), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), + [anon_sym_DOLLAR] = ACTIONS(5169), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), + [anon_sym_BSLASHbegin] = ACTIONS(5169), + [anon_sym_BSLASHusepackage] = ACTIONS(5169), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), + [anon_sym_BSLASHinclude] = ACTIONS(5169), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), + [anon_sym_BSLASHinput] = ACTIONS(5169), + [anon_sym_BSLASHsubfile] = ACTIONS(5169), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), + [anon_sym_BSLASHbibliography] = ACTIONS(5169), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), + [anon_sym_BSLASHincludesvg] = ACTIONS(5169), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), + [anon_sym_BSLASHimport] = ACTIONS(5169), + [anon_sym_BSLASHsubimport] = ACTIONS(5169), + [anon_sym_BSLASHinputfrom] = ACTIONS(5169), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), + [anon_sym_BSLASHincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHcaption] = ACTIONS(5169), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5169), + [anon_sym_BSLASHref] = ACTIONS(5169), + [anon_sym_BSLASHeqref] = ACTIONS(5169), + [anon_sym_BSLASHvref] = ACTIONS(5169), + [anon_sym_BSLASHVref] = ACTIONS(5169), + [anon_sym_BSLASHautoref] = ACTIONS(5169), + [anon_sym_BSLASHpageref] = ACTIONS(5169), + [anon_sym_BSLASHcref] = ACTIONS(5169), + [anon_sym_BSLASHCref] = ACTIONS(5169), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnameCref] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHlabelcref] = ACTIONS(5169), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCrefrange] = ACTIONS(5169), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnewlabel] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), + [anon_sym_BSLASHdef] = ACTIONS(5169), + [anon_sym_BSLASHlet] = ACTIONS(5169), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), + [anon_sym_BSLASHgls] = ACTIONS(5169), + [anon_sym_BSLASHGls] = ACTIONS(5169), + [anon_sym_BSLASHGLS] = ACTIONS(5169), + [anon_sym_BSLASHglspl] = ACTIONS(5169), + [anon_sym_BSLASHGlspl] = ACTIONS(5169), + [anon_sym_BSLASHGLSpl] = ACTIONS(5169), + [anon_sym_BSLASHglsdisp] = ACTIONS(5169), + [anon_sym_BSLASHglslink] = ACTIONS(5169), + [anon_sym_BSLASHglstext] = ACTIONS(5169), + [anon_sym_BSLASHGlstext] = ACTIONS(5169), + [anon_sym_BSLASHGLStext] = ACTIONS(5169), + [anon_sym_BSLASHglsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), + [anon_sym_BSLASHglsplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSplural] = ACTIONS(5169), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHglsname] = ACTIONS(5169), + [anon_sym_BSLASHGlsname] = ACTIONS(5169), + [anon_sym_BSLASHGLSname] = ACTIONS(5169), + [anon_sym_BSLASHglssymbol] = ACTIONS(5169), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), + [anon_sym_BSLASHglsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), + [anon_sym_BSLASHglsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), + [anon_sym_BSLASHglsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), + [anon_sym_BSLASHglsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), + [anon_sym_BSLASHglsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), + [anon_sym_BSLASHnewacronym] = ACTIONS(5169), + [anon_sym_BSLASHacrshort] = ACTIONS(5169), + [anon_sym_BSLASHAcrshort] = ACTIONS(5169), + [anon_sym_BSLASHACRshort] = ACTIONS(5169), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), + [anon_sym_BSLASHacrlong] = ACTIONS(5169), + [anon_sym_BSLASHAcrlong] = ACTIONS(5169), + [anon_sym_BSLASHACRlong] = ACTIONS(5169), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), + [anon_sym_BSLASHacrfull] = ACTIONS(5169), + [anon_sym_BSLASHAcrfull] = ACTIONS(5169), + [anon_sym_BSLASHACRfull] = ACTIONS(5169), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), + [anon_sym_BSLASHacs] = ACTIONS(5169), + [anon_sym_BSLASHAcs] = ACTIONS(5169), + [anon_sym_BSLASHacsp] = ACTIONS(5169), + [anon_sym_BSLASHAcsp] = ACTIONS(5169), + [anon_sym_BSLASHacl] = ACTIONS(5169), + [anon_sym_BSLASHAcl] = ACTIONS(5169), + [anon_sym_BSLASHaclp] = ACTIONS(5169), + [anon_sym_BSLASHAclp] = ACTIONS(5169), + [anon_sym_BSLASHacf] = ACTIONS(5169), + [anon_sym_BSLASHAcf] = ACTIONS(5169), + [anon_sym_BSLASHacfp] = ACTIONS(5169), + [anon_sym_BSLASHAcfp] = ACTIONS(5169), + [anon_sym_BSLASHac] = ACTIONS(5169), + [anon_sym_BSLASHAc] = ACTIONS(5169), + [anon_sym_BSLASHacp] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), + [anon_sym_BSLASHcolor] = ACTIONS(5169), + [anon_sym_BSLASHcolorbox] = ACTIONS(5169), + [anon_sym_BSLASHtextcolor] = ACTIONS(5169), + [anon_sym_BSLASHpagecolor] = ACTIONS(5169), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), + [anon_sym_BSLASHtext] = ACTIONS(5169), + [anon_sym_BSLASHintertext] = ACTIONS(5169), + [anon_sym_shortintertext] = ACTIONS(5169), }, - [1013] = { - [sym_command_name] = ACTIONS(5279), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5279), - [anon_sym_LPAREN] = ACTIONS(5277), - [anon_sym_RPAREN] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(5277), - [anon_sym_RBRACK] = ACTIONS(5277), - [anon_sym_COMMA] = ACTIONS(5277), - [anon_sym_EQ] = ACTIONS(5277), - [anon_sym_BSLASHpart] = ACTIONS(5279), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddpart] = ACTIONS(5279), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5277), - [anon_sym_BSLASHchapter] = ACTIONS(5279), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddchap] = ACTIONS(5279), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsection] = ACTIONS(5279), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddsec] = ACTIONS(5279), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubsection] = ACTIONS(5279), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5279), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHparagraph] = ACTIONS(5279), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5279), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5277), - [anon_sym_BSLASHitem] = ACTIONS(5279), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5277), - [anon_sym_LBRACE] = ACTIONS(5277), - [sym_word] = ACTIONS(5279), - [sym_placeholder] = ACTIONS(5277), - [anon_sym_PLUS] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(5279), - [anon_sym_STAR] = ACTIONS(5279), - [anon_sym_SLASH] = ACTIONS(5279), - [anon_sym_CARET] = ACTIONS(5279), - [anon_sym__] = ACTIONS(5279), - [anon_sym_LT] = ACTIONS(5279), - [anon_sym_GT] = ACTIONS(5279), - [anon_sym_BANG] = ACTIONS(5279), - [anon_sym_PIPE] = ACTIONS(5279), - [anon_sym_COLON] = ACTIONS(5279), - [anon_sym_SQUOTE] = ACTIONS(5279), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5277), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5277), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5277), - [anon_sym_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5277), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5277), - [anon_sym_BSLASHbegin] = ACTIONS(5279), - [anon_sym_BSLASHusepackage] = ACTIONS(5279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5279), - [anon_sym_BSLASHinclude] = ACTIONS(5279), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5279), - [anon_sym_BSLASHinput] = ACTIONS(5279), - [anon_sym_BSLASHsubfile] = ACTIONS(5279), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5279), - [anon_sym_BSLASHbibliography] = ACTIONS(5279), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5279), - [anon_sym_BSLASHincludesvg] = ACTIONS(5279), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5279), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5279), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5279), - [anon_sym_BSLASHimport] = ACTIONS(5279), - [anon_sym_BSLASHsubimport] = ACTIONS(5279), - [anon_sym_BSLASHinputfrom] = ACTIONS(5279), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5279), - [anon_sym_BSLASHincludefrom] = ACTIONS(5279), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5279), - [anon_sym_BSLASHcaption] = ACTIONS(5279), - [anon_sym_BSLASHcite] = ACTIONS(5279), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCite] = ACTIONS(5279), - [anon_sym_BSLASHnocite] = ACTIONS(5279), - [anon_sym_BSLASHcitet] = ACTIONS(5279), - [anon_sym_BSLASHcitep] = ACTIONS(5279), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteauthor] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitetitle] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteyear] = ACTIONS(5279), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitedate] = ACTIONS(5279), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteurl] = ACTIONS(5279), - [anon_sym_BSLASHfullcite] = ACTIONS(5279), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5279), - [anon_sym_BSLASHcitealt] = ACTIONS(5279), - [anon_sym_BSLASHcitealp] = ACTIONS(5279), - [anon_sym_BSLASHcitetext] = ACTIONS(5279), - [anon_sym_BSLASHparencite] = ACTIONS(5279), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHParencite] = ACTIONS(5279), - [anon_sym_BSLASHfootcite] = ACTIONS(5279), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5279), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5279), - [anon_sym_BSLASHtextcite] = ACTIONS(5279), - [anon_sym_BSLASHTextcite] = ACTIONS(5279), - [anon_sym_BSLASHsmartcite] = ACTIONS(5279), - [anon_sym_BSLASHSmartcite] = ACTIONS(5279), - [anon_sym_BSLASHsupercite] = ACTIONS(5279), - [anon_sym_BSLASHautocite] = ACTIONS(5279), - [anon_sym_BSLASHAutocite] = ACTIONS(5279), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHvolcite] = ACTIONS(5279), - [anon_sym_BSLASHVolcite] = ACTIONS(5279), - [anon_sym_BSLASHpvolcite] = ACTIONS(5279), - [anon_sym_BSLASHPvolcite] = ACTIONS(5279), - [anon_sym_BSLASHfvolcite] = ACTIONS(5279), - [anon_sym_BSLASHftvolcite] = ACTIONS(5279), - [anon_sym_BSLASHsvolcite] = ACTIONS(5279), - [anon_sym_BSLASHSvolcite] = ACTIONS(5279), - [anon_sym_BSLASHtvolcite] = ACTIONS(5279), - [anon_sym_BSLASHTvolcite] = ACTIONS(5279), - [anon_sym_BSLASHavolcite] = ACTIONS(5279), - [anon_sym_BSLASHAvolcite] = ACTIONS(5279), - [anon_sym_BSLASHnotecite] = ACTIONS(5279), - [anon_sym_BSLASHNotecite] = ACTIONS(5279), - [anon_sym_BSLASHpnotecite] = ACTIONS(5279), - [anon_sym_BSLASHPnotecite] = ACTIONS(5279), - [anon_sym_BSLASHfnotecite] = ACTIONS(5279), - [anon_sym_BSLASHlabel] = ACTIONS(5279), - [anon_sym_BSLASHref] = ACTIONS(5279), - [anon_sym_BSLASHeqref] = ACTIONS(5279), - [anon_sym_BSLASHvref] = ACTIONS(5279), - [anon_sym_BSLASHVref] = ACTIONS(5279), - [anon_sym_BSLASHautoref] = ACTIONS(5279), - [anon_sym_BSLASHpageref] = ACTIONS(5279), - [anon_sym_BSLASHcref] = ACTIONS(5279), - [anon_sym_BSLASHCref] = ACTIONS(5279), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5277), - [anon_sym_BSLASHnamecref] = ACTIONS(5279), - [anon_sym_BSLASHnameCref] = ACTIONS(5279), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5279), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5279), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5279), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5279), - [anon_sym_BSLASHlabelcref] = ACTIONS(5279), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5279), - [anon_sym_BSLASHcrefrange] = ACTIONS(5279), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCrefrange] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5277), - [anon_sym_BSLASHnewlabel] = ACTIONS(5279), - [anon_sym_BSLASHnewcommand] = ACTIONS(5279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5277), - [anon_sym_BSLASHdef] = ACTIONS(5279), - [anon_sym_BSLASHlet] = ACTIONS(5279), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5279), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5279), - [anon_sym_BSLASHgls] = ACTIONS(5279), - [anon_sym_BSLASHGls] = ACTIONS(5279), - [anon_sym_BSLASHGLS] = ACTIONS(5279), - [anon_sym_BSLASHglspl] = ACTIONS(5279), - [anon_sym_BSLASHGlspl] = ACTIONS(5279), - [anon_sym_BSLASHGLSpl] = ACTIONS(5279), - [anon_sym_BSLASHglsdisp] = ACTIONS(5279), - [anon_sym_BSLASHglslink] = ACTIONS(5279), - [anon_sym_BSLASHglstext] = ACTIONS(5279), - [anon_sym_BSLASHGlstext] = ACTIONS(5279), - [anon_sym_BSLASHGLStext] = ACTIONS(5279), - [anon_sym_BSLASHglsfirst] = ACTIONS(5279), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5279), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5279), - [anon_sym_BSLASHglsplural] = ACTIONS(5279), - [anon_sym_BSLASHGlsplural] = ACTIONS(5279), - [anon_sym_BSLASHGLSplural] = ACTIONS(5279), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHglsname] = ACTIONS(5279), - [anon_sym_BSLASHGlsname] = ACTIONS(5279), - [anon_sym_BSLASHGLSname] = ACTIONS(5279), - [anon_sym_BSLASHglssymbol] = ACTIONS(5279), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5279), - [anon_sym_BSLASHglsdesc] = ACTIONS(5279), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5279), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5279), - [anon_sym_BSLASHglsuseri] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5279), - [anon_sym_BSLASHglsuserii] = ACTIONS(5279), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5279), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5279), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5279), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5279), - [anon_sym_BSLASHglsuserv] = ACTIONS(5279), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5279), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5279), - [anon_sym_BSLASHglsuservi] = ACTIONS(5279), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5279), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5279), - [anon_sym_BSLASHnewacronym] = ACTIONS(5279), - [anon_sym_BSLASHacrshort] = ACTIONS(5279), - [anon_sym_BSLASHAcrshort] = ACTIONS(5279), - [anon_sym_BSLASHACRshort] = ACTIONS(5279), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5279), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5279), - [anon_sym_BSLASHacrlong] = ACTIONS(5279), - [anon_sym_BSLASHAcrlong] = ACTIONS(5279), - [anon_sym_BSLASHACRlong] = ACTIONS(5279), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5279), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5279), - [anon_sym_BSLASHacrfull] = ACTIONS(5279), - [anon_sym_BSLASHAcrfull] = ACTIONS(5279), - [anon_sym_BSLASHACRfull] = ACTIONS(5279), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5279), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5279), - [anon_sym_BSLASHacs] = ACTIONS(5279), - [anon_sym_BSLASHAcs] = ACTIONS(5279), - [anon_sym_BSLASHacsp] = ACTIONS(5279), - [anon_sym_BSLASHAcsp] = ACTIONS(5279), - [anon_sym_BSLASHacl] = ACTIONS(5279), - [anon_sym_BSLASHAcl] = ACTIONS(5279), - [anon_sym_BSLASHaclp] = ACTIONS(5279), - [anon_sym_BSLASHAclp] = ACTIONS(5279), - [anon_sym_BSLASHacf] = ACTIONS(5279), - [anon_sym_BSLASHAcf] = ACTIONS(5279), - [anon_sym_BSLASHacfp] = ACTIONS(5279), - [anon_sym_BSLASHAcfp] = ACTIONS(5279), - [anon_sym_BSLASHac] = ACTIONS(5279), - [anon_sym_BSLASHAc] = ACTIONS(5279), - [anon_sym_BSLASHacp] = ACTIONS(5279), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5279), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5279), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5279), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5279), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5279), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5279), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5279), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5279), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5279), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5279), - [anon_sym_BSLASHcolor] = ACTIONS(5279), - [anon_sym_BSLASHcolorbox] = ACTIONS(5279), - [anon_sym_BSLASHtextcolor] = ACTIONS(5279), - [anon_sym_BSLASHpagecolor] = ACTIONS(5279), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5279), + [856] = { + [sym_command_name] = ACTIONS(5165), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_BSLASHpart] = ACTIONS(5165), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddpart] = ACTIONS(5165), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5163), + [anon_sym_BSLASHchapter] = ACTIONS(5165), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddchap] = ACTIONS(5165), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsection] = ACTIONS(5165), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddsec] = ACTIONS(5165), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubsection] = ACTIONS(5165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5165), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHparagraph] = ACTIONS(5165), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5165), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5163), + [anon_sym_BSLASHitem] = ACTIONS(5165), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5163), + [sym_word] = ACTIONS(5165), + [sym_placeholder] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5165), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_CARET] = ACTIONS(5165), + [anon_sym__] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_COLON] = ACTIONS(5165), + [anon_sym_SQUOTE] = ACTIONS(5165), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), + [anon_sym_DOLLAR] = ACTIONS(5165), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), + [anon_sym_BSLASHbegin] = ACTIONS(5165), + [anon_sym_BSLASHusepackage] = ACTIONS(5165), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), + [anon_sym_BSLASHinclude] = ACTIONS(5165), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), + [anon_sym_BSLASHinput] = ACTIONS(5165), + [anon_sym_BSLASHsubfile] = ACTIONS(5165), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), + [anon_sym_BSLASHbibliography] = ACTIONS(5165), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), + [anon_sym_BSLASHincludesvg] = ACTIONS(5165), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5165), + [anon_sym_BSLASHcite] = ACTIONS(5165), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCite] = ACTIONS(5165), + [anon_sym_BSLASHnocite] = ACTIONS(5165), + [anon_sym_BSLASHcitet] = ACTIONS(5165), + [anon_sym_BSLASHcitep] = ACTIONS(5165), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteauthor] = ACTIONS(5165), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitetitle] = ACTIONS(5165), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteyear] = ACTIONS(5165), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitedate] = ACTIONS(5165), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteurl] = ACTIONS(5165), + [anon_sym_BSLASHfullcite] = ACTIONS(5165), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), + [anon_sym_BSLASHcitealt] = ACTIONS(5165), + [anon_sym_BSLASHcitealp] = ACTIONS(5165), + [anon_sym_BSLASHcitetext] = ACTIONS(5165), + [anon_sym_BSLASHparencite] = ACTIONS(5165), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHParencite] = ACTIONS(5165), + [anon_sym_BSLASHfootcite] = ACTIONS(5165), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), + [anon_sym_BSLASHtextcite] = ACTIONS(5165), + [anon_sym_BSLASHTextcite] = ACTIONS(5165), + [anon_sym_BSLASHsmartcite] = ACTIONS(5165), + [anon_sym_BSLASHSmartcite] = ACTIONS(5165), + [anon_sym_BSLASHsupercite] = ACTIONS(5165), + [anon_sym_BSLASHautocite] = ACTIONS(5165), + [anon_sym_BSLASHAutocite] = ACTIONS(5165), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHvolcite] = ACTIONS(5165), + [anon_sym_BSLASHVolcite] = ACTIONS(5165), + [anon_sym_BSLASHpvolcite] = ACTIONS(5165), + [anon_sym_BSLASHPvolcite] = ACTIONS(5165), + [anon_sym_BSLASHfvolcite] = ACTIONS(5165), + [anon_sym_BSLASHftvolcite] = ACTIONS(5165), + [anon_sym_BSLASHsvolcite] = ACTIONS(5165), + [anon_sym_BSLASHSvolcite] = ACTIONS(5165), + [anon_sym_BSLASHtvolcite] = ACTIONS(5165), + [anon_sym_BSLASHTvolcite] = ACTIONS(5165), + [anon_sym_BSLASHavolcite] = ACTIONS(5165), + [anon_sym_BSLASHAvolcite] = ACTIONS(5165), + [anon_sym_BSLASHnotecite] = ACTIONS(5165), + [anon_sym_BSLASHNotecite] = ACTIONS(5165), + [anon_sym_BSLASHpnotecite] = ACTIONS(5165), + [anon_sym_BSLASHPnotecite] = ACTIONS(5165), + [anon_sym_BSLASHfnotecite] = ACTIONS(5165), + [anon_sym_BSLASHlabel] = ACTIONS(5165), + [anon_sym_BSLASHref] = ACTIONS(5165), + [anon_sym_BSLASHeqref] = ACTIONS(5165), + [anon_sym_BSLASHvref] = ACTIONS(5165), + [anon_sym_BSLASHVref] = ACTIONS(5165), + [anon_sym_BSLASHautoref] = ACTIONS(5165), + [anon_sym_BSLASHpageref] = ACTIONS(5165), + [anon_sym_BSLASHcref] = ACTIONS(5165), + [anon_sym_BSLASHCref] = ACTIONS(5165), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnameCref] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHlabelcref] = ACTIONS(5165), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCrefrange] = ACTIONS(5165), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnewlabel] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), + [anon_sym_BSLASHdef] = ACTIONS(5165), + [anon_sym_BSLASHlet] = ACTIONS(5165), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), + [anon_sym_BSLASHgls] = ACTIONS(5165), + [anon_sym_BSLASHGls] = ACTIONS(5165), + [anon_sym_BSLASHGLS] = ACTIONS(5165), + [anon_sym_BSLASHglspl] = ACTIONS(5165), + [anon_sym_BSLASHGlspl] = ACTIONS(5165), + [anon_sym_BSLASHGLSpl] = ACTIONS(5165), + [anon_sym_BSLASHglsdisp] = ACTIONS(5165), + [anon_sym_BSLASHglslink] = ACTIONS(5165), + [anon_sym_BSLASHglstext] = ACTIONS(5165), + [anon_sym_BSLASHGlstext] = ACTIONS(5165), + [anon_sym_BSLASHGLStext] = ACTIONS(5165), + [anon_sym_BSLASHglsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), + [anon_sym_BSLASHglsplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSplural] = ACTIONS(5165), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHglsname] = ACTIONS(5165), + [anon_sym_BSLASHGlsname] = ACTIONS(5165), + [anon_sym_BSLASHGLSname] = ACTIONS(5165), + [anon_sym_BSLASHglssymbol] = ACTIONS(5165), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), + [anon_sym_BSLASHglsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), + [anon_sym_BSLASHglsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), + [anon_sym_BSLASHglsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), + [anon_sym_BSLASHglsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), + [anon_sym_BSLASHglsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), + [anon_sym_BSLASHnewacronym] = ACTIONS(5165), + [anon_sym_BSLASHacrshort] = ACTIONS(5165), + [anon_sym_BSLASHAcrshort] = ACTIONS(5165), + [anon_sym_BSLASHACRshort] = ACTIONS(5165), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), + [anon_sym_BSLASHacrlong] = ACTIONS(5165), + [anon_sym_BSLASHAcrlong] = ACTIONS(5165), + [anon_sym_BSLASHACRlong] = ACTIONS(5165), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), + [anon_sym_BSLASHacrfull] = ACTIONS(5165), + [anon_sym_BSLASHAcrfull] = ACTIONS(5165), + [anon_sym_BSLASHACRfull] = ACTIONS(5165), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), + [anon_sym_BSLASHacs] = ACTIONS(5165), + [anon_sym_BSLASHAcs] = ACTIONS(5165), + [anon_sym_BSLASHacsp] = ACTIONS(5165), + [anon_sym_BSLASHAcsp] = ACTIONS(5165), + [anon_sym_BSLASHacl] = ACTIONS(5165), + [anon_sym_BSLASHAcl] = ACTIONS(5165), + [anon_sym_BSLASHaclp] = ACTIONS(5165), + [anon_sym_BSLASHAclp] = ACTIONS(5165), + [anon_sym_BSLASHacf] = ACTIONS(5165), + [anon_sym_BSLASHAcf] = ACTIONS(5165), + [anon_sym_BSLASHacfp] = ACTIONS(5165), + [anon_sym_BSLASHAcfp] = ACTIONS(5165), + [anon_sym_BSLASHac] = ACTIONS(5165), + [anon_sym_BSLASHAc] = ACTIONS(5165), + [anon_sym_BSLASHacp] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), + [anon_sym_BSLASHcolor] = ACTIONS(5165), + [anon_sym_BSLASHcolorbox] = ACTIONS(5165), + [anon_sym_BSLASHtextcolor] = ACTIONS(5165), + [anon_sym_BSLASHpagecolor] = ACTIONS(5165), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), + [anon_sym_BSLASHtext] = ACTIONS(5165), + [anon_sym_BSLASHintertext] = ACTIONS(5165), + [anon_sym_shortintertext] = ACTIONS(5165), }, - [1014] = { - [sym_command_name] = ACTIONS(5283), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_RPAREN] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_BSLASHpart] = ACTIONS(5283), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddpart] = ACTIONS(5283), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHchapter] = ACTIONS(5283), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddchap] = ACTIONS(5283), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsection] = ACTIONS(5283), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddsec] = ACTIONS(5283), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHparagraph] = ACTIONS(5283), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHitem] = ACTIONS(5283), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), - [anon_sym_LBRACE] = ACTIONS(5281), - [sym_word] = ACTIONS(5283), - [sym_placeholder] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_CARET] = ACTIONS(5283), - [anon_sym__] = ACTIONS(5283), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_BANG] = ACTIONS(5283), - [anon_sym_PIPE] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_SQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), - [anon_sym_BSLASHbegin] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5283), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), - [anon_sym_BSLASHinclude] = ACTIONS(5283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), - [anon_sym_BSLASHinput] = ACTIONS(5283), - [anon_sym_BSLASHsubfile] = ACTIONS(5283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), - [anon_sym_BSLASHbibliography] = ACTIONS(5283), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), - [anon_sym_BSLASHincludesvg] = ACTIONS(5283), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), - [anon_sym_BSLASHimport] = ACTIONS(5283), - [anon_sym_BSLASHsubimport] = ACTIONS(5283), - [anon_sym_BSLASHinputfrom] = ACTIONS(5283), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), - [anon_sym_BSLASHincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHcaption] = ACTIONS(5283), - [anon_sym_BSLASHcite] = ACTIONS(5283), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCite] = ACTIONS(5283), - [anon_sym_BSLASHnocite] = ACTIONS(5283), - [anon_sym_BSLASHcitet] = ACTIONS(5283), - [anon_sym_BSLASHcitep] = ACTIONS(5283), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteyear] = ACTIONS(5283), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitedate] = ACTIONS(5283), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteurl] = ACTIONS(5283), - [anon_sym_BSLASHfullcite] = ACTIONS(5283), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), - [anon_sym_BSLASHcitealt] = ACTIONS(5283), - [anon_sym_BSLASHcitealp] = ACTIONS(5283), - [anon_sym_BSLASHcitetext] = ACTIONS(5283), - [anon_sym_BSLASHparencite] = ACTIONS(5283), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHParencite] = ACTIONS(5283), - [anon_sym_BSLASHfootcite] = ACTIONS(5283), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), - [anon_sym_BSLASHtextcite] = ACTIONS(5283), - [anon_sym_BSLASHTextcite] = ACTIONS(5283), - [anon_sym_BSLASHsmartcite] = ACTIONS(5283), - [anon_sym_BSLASHSmartcite] = ACTIONS(5283), - [anon_sym_BSLASHsupercite] = ACTIONS(5283), - [anon_sym_BSLASHautocite] = ACTIONS(5283), - [anon_sym_BSLASHAutocite] = ACTIONS(5283), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHvolcite] = ACTIONS(5283), - [anon_sym_BSLASHVolcite] = ACTIONS(5283), - [anon_sym_BSLASHpvolcite] = ACTIONS(5283), - [anon_sym_BSLASHPvolcite] = ACTIONS(5283), - [anon_sym_BSLASHfvolcite] = ACTIONS(5283), - [anon_sym_BSLASHftvolcite] = ACTIONS(5283), - [anon_sym_BSLASHsvolcite] = ACTIONS(5283), - [anon_sym_BSLASHSvolcite] = ACTIONS(5283), - [anon_sym_BSLASHtvolcite] = ACTIONS(5283), - [anon_sym_BSLASHTvolcite] = ACTIONS(5283), - [anon_sym_BSLASHavolcite] = ACTIONS(5283), - [anon_sym_BSLASHAvolcite] = ACTIONS(5283), - [anon_sym_BSLASHnotecite] = ACTIONS(5283), - [anon_sym_BSLASHNotecite] = ACTIONS(5283), - [anon_sym_BSLASHpnotecite] = ACTIONS(5283), - [anon_sym_BSLASHPnotecite] = ACTIONS(5283), - [anon_sym_BSLASHfnotecite] = ACTIONS(5283), - [anon_sym_BSLASHlabel] = ACTIONS(5283), - [anon_sym_BSLASHref] = ACTIONS(5283), - [anon_sym_BSLASHeqref] = ACTIONS(5283), - [anon_sym_BSLASHvref] = ACTIONS(5283), - [anon_sym_BSLASHVref] = ACTIONS(5283), - [anon_sym_BSLASHautoref] = ACTIONS(5283), - [anon_sym_BSLASHpageref] = ACTIONS(5283), - [anon_sym_BSLASHcref] = ACTIONS(5283), - [anon_sym_BSLASHCref] = ACTIONS(5283), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnameCref] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHlabelcref] = ACTIONS(5283), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnewlabel] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdef] = ACTIONS(5283), - [anon_sym_BSLASHlet] = ACTIONS(5283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), - [anon_sym_BSLASHgls] = ACTIONS(5283), - [anon_sym_BSLASHGls] = ACTIONS(5283), - [anon_sym_BSLASHGLS] = ACTIONS(5283), - [anon_sym_BSLASHglspl] = ACTIONS(5283), - [anon_sym_BSLASHGlspl] = ACTIONS(5283), - [anon_sym_BSLASHGLSpl] = ACTIONS(5283), - [anon_sym_BSLASHglsdisp] = ACTIONS(5283), - [anon_sym_BSLASHglslink] = ACTIONS(5283), - [anon_sym_BSLASHglstext] = ACTIONS(5283), - [anon_sym_BSLASHGlstext] = ACTIONS(5283), - [anon_sym_BSLASHGLStext] = ACTIONS(5283), - [anon_sym_BSLASHglsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), - [anon_sym_BSLASHglsplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSplural] = ACTIONS(5283), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHglsname] = ACTIONS(5283), - [anon_sym_BSLASHGlsname] = ACTIONS(5283), - [anon_sym_BSLASHGLSname] = ACTIONS(5283), - [anon_sym_BSLASHglssymbol] = ACTIONS(5283), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), - [anon_sym_BSLASHglsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), - [anon_sym_BSLASHglsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), - [anon_sym_BSLASHglsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), - [anon_sym_BSLASHglsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), - [anon_sym_BSLASHglsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), - [anon_sym_BSLASHnewacronym] = ACTIONS(5283), - [anon_sym_BSLASHacrshort] = ACTIONS(5283), - [anon_sym_BSLASHAcrshort] = ACTIONS(5283), - [anon_sym_BSLASHACRshort] = ACTIONS(5283), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), - [anon_sym_BSLASHacrlong] = ACTIONS(5283), - [anon_sym_BSLASHAcrlong] = ACTIONS(5283), - [anon_sym_BSLASHACRlong] = ACTIONS(5283), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), - [anon_sym_BSLASHacrfull] = ACTIONS(5283), - [anon_sym_BSLASHAcrfull] = ACTIONS(5283), - [anon_sym_BSLASHACRfull] = ACTIONS(5283), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), - [anon_sym_BSLASHacs] = ACTIONS(5283), - [anon_sym_BSLASHAcs] = ACTIONS(5283), - [anon_sym_BSLASHacsp] = ACTIONS(5283), - [anon_sym_BSLASHAcsp] = ACTIONS(5283), - [anon_sym_BSLASHacl] = ACTIONS(5283), - [anon_sym_BSLASHAcl] = ACTIONS(5283), - [anon_sym_BSLASHaclp] = ACTIONS(5283), - [anon_sym_BSLASHAclp] = ACTIONS(5283), - [anon_sym_BSLASHacf] = ACTIONS(5283), - [anon_sym_BSLASHAcf] = ACTIONS(5283), - [anon_sym_BSLASHacfp] = ACTIONS(5283), - [anon_sym_BSLASHAcfp] = ACTIONS(5283), - [anon_sym_BSLASHac] = ACTIONS(5283), - [anon_sym_BSLASHAc] = ACTIONS(5283), - [anon_sym_BSLASHacp] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), - [anon_sym_BSLASHcolor] = ACTIONS(5283), - [anon_sym_BSLASHcolorbox] = ACTIONS(5283), - [anon_sym_BSLASHtextcolor] = ACTIONS(5283), - [anon_sym_BSLASHpagecolor] = ACTIONS(5283), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), + [857] = { + [sym_command_name] = ACTIONS(5161), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_RBRACK] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_BSLASHpart] = ACTIONS(5161), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddpart] = ACTIONS(5161), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5159), + [anon_sym_BSLASHchapter] = ACTIONS(5161), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddchap] = ACTIONS(5161), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsection] = ACTIONS(5161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddsec] = ACTIONS(5161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubsection] = ACTIONS(5161), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5161), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHparagraph] = ACTIONS(5161), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5161), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5159), + [anon_sym_BSLASHitem] = ACTIONS(5161), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5159), + [sym_word] = ACTIONS(5161), + [sym_placeholder] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_CARET] = ACTIONS(5161), + [anon_sym__] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_COLON] = ACTIONS(5161), + [anon_sym_SQUOTE] = ACTIONS(5161), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), + [anon_sym_DOLLAR] = ACTIONS(5161), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), + [anon_sym_BSLASHbegin] = ACTIONS(5161), + [anon_sym_BSLASHusepackage] = ACTIONS(5161), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), + [anon_sym_BSLASHinclude] = ACTIONS(5161), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), + [anon_sym_BSLASHinput] = ACTIONS(5161), + [anon_sym_BSLASHsubfile] = ACTIONS(5161), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), + [anon_sym_BSLASHbibliography] = ACTIONS(5161), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), + [anon_sym_BSLASHincludesvg] = ACTIONS(5161), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), + [anon_sym_BSLASHimport] = ACTIONS(5161), + [anon_sym_BSLASHsubimport] = ACTIONS(5161), + [anon_sym_BSLASHinputfrom] = ACTIONS(5161), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), + [anon_sym_BSLASHincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHcaption] = ACTIONS(5161), + [anon_sym_BSLASHcite] = ACTIONS(5161), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCite] = ACTIONS(5161), + [anon_sym_BSLASHnocite] = ACTIONS(5161), + [anon_sym_BSLASHcitet] = ACTIONS(5161), + [anon_sym_BSLASHcitep] = ACTIONS(5161), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteauthor] = ACTIONS(5161), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitetitle] = ACTIONS(5161), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteyear] = ACTIONS(5161), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitedate] = ACTIONS(5161), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteurl] = ACTIONS(5161), + [anon_sym_BSLASHfullcite] = ACTIONS(5161), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), + [anon_sym_BSLASHcitealt] = ACTIONS(5161), + [anon_sym_BSLASHcitealp] = ACTIONS(5161), + [anon_sym_BSLASHcitetext] = ACTIONS(5161), + [anon_sym_BSLASHparencite] = ACTIONS(5161), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHParencite] = ACTIONS(5161), + [anon_sym_BSLASHfootcite] = ACTIONS(5161), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), + [anon_sym_BSLASHtextcite] = ACTIONS(5161), + [anon_sym_BSLASHTextcite] = ACTIONS(5161), + [anon_sym_BSLASHsmartcite] = ACTIONS(5161), + [anon_sym_BSLASHSmartcite] = ACTIONS(5161), + [anon_sym_BSLASHsupercite] = ACTIONS(5161), + [anon_sym_BSLASHautocite] = ACTIONS(5161), + [anon_sym_BSLASHAutocite] = ACTIONS(5161), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHvolcite] = ACTIONS(5161), + [anon_sym_BSLASHVolcite] = ACTIONS(5161), + [anon_sym_BSLASHpvolcite] = ACTIONS(5161), + [anon_sym_BSLASHPvolcite] = ACTIONS(5161), + [anon_sym_BSLASHfvolcite] = ACTIONS(5161), + [anon_sym_BSLASHftvolcite] = ACTIONS(5161), + [anon_sym_BSLASHsvolcite] = ACTIONS(5161), + [anon_sym_BSLASHSvolcite] = ACTIONS(5161), + [anon_sym_BSLASHtvolcite] = ACTIONS(5161), + [anon_sym_BSLASHTvolcite] = ACTIONS(5161), + [anon_sym_BSLASHavolcite] = ACTIONS(5161), + [anon_sym_BSLASHAvolcite] = ACTIONS(5161), + [anon_sym_BSLASHnotecite] = ACTIONS(5161), + [anon_sym_BSLASHNotecite] = ACTIONS(5161), + [anon_sym_BSLASHpnotecite] = ACTIONS(5161), + [anon_sym_BSLASHPnotecite] = ACTIONS(5161), + [anon_sym_BSLASHfnotecite] = ACTIONS(5161), + [anon_sym_BSLASHlabel] = ACTIONS(5161), + [anon_sym_BSLASHref] = ACTIONS(5161), + [anon_sym_BSLASHeqref] = ACTIONS(5161), + [anon_sym_BSLASHvref] = ACTIONS(5161), + [anon_sym_BSLASHVref] = ACTIONS(5161), + [anon_sym_BSLASHautoref] = ACTIONS(5161), + [anon_sym_BSLASHpageref] = ACTIONS(5161), + [anon_sym_BSLASHcref] = ACTIONS(5161), + [anon_sym_BSLASHCref] = ACTIONS(5161), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnameCref] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHlabelcref] = ACTIONS(5161), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCrefrange] = ACTIONS(5161), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnewlabel] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), + [anon_sym_BSLASHdef] = ACTIONS(5161), + [anon_sym_BSLASHlet] = ACTIONS(5161), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), + [anon_sym_BSLASHgls] = ACTIONS(5161), + [anon_sym_BSLASHGls] = ACTIONS(5161), + [anon_sym_BSLASHGLS] = ACTIONS(5161), + [anon_sym_BSLASHglspl] = ACTIONS(5161), + [anon_sym_BSLASHGlspl] = ACTIONS(5161), + [anon_sym_BSLASHGLSpl] = ACTIONS(5161), + [anon_sym_BSLASHglsdisp] = ACTIONS(5161), + [anon_sym_BSLASHglslink] = ACTIONS(5161), + [anon_sym_BSLASHglstext] = ACTIONS(5161), + [anon_sym_BSLASHGlstext] = ACTIONS(5161), + [anon_sym_BSLASHGLStext] = ACTIONS(5161), + [anon_sym_BSLASHglsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), + [anon_sym_BSLASHglsplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSplural] = ACTIONS(5161), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHglsname] = ACTIONS(5161), + [anon_sym_BSLASHGlsname] = ACTIONS(5161), + [anon_sym_BSLASHGLSname] = ACTIONS(5161), + [anon_sym_BSLASHglssymbol] = ACTIONS(5161), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), + [anon_sym_BSLASHglsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), + [anon_sym_BSLASHglsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), + [anon_sym_BSLASHglsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), + [anon_sym_BSLASHglsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), + [anon_sym_BSLASHglsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), + [anon_sym_BSLASHnewacronym] = ACTIONS(5161), + [anon_sym_BSLASHacrshort] = ACTIONS(5161), + [anon_sym_BSLASHAcrshort] = ACTIONS(5161), + [anon_sym_BSLASHACRshort] = ACTIONS(5161), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), + [anon_sym_BSLASHacrlong] = ACTIONS(5161), + [anon_sym_BSLASHAcrlong] = ACTIONS(5161), + [anon_sym_BSLASHACRlong] = ACTIONS(5161), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), + [anon_sym_BSLASHacrfull] = ACTIONS(5161), + [anon_sym_BSLASHAcrfull] = ACTIONS(5161), + [anon_sym_BSLASHACRfull] = ACTIONS(5161), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), + [anon_sym_BSLASHacs] = ACTIONS(5161), + [anon_sym_BSLASHAcs] = ACTIONS(5161), + [anon_sym_BSLASHacsp] = ACTIONS(5161), + [anon_sym_BSLASHAcsp] = ACTIONS(5161), + [anon_sym_BSLASHacl] = ACTIONS(5161), + [anon_sym_BSLASHAcl] = ACTIONS(5161), + [anon_sym_BSLASHaclp] = ACTIONS(5161), + [anon_sym_BSLASHAclp] = ACTIONS(5161), + [anon_sym_BSLASHacf] = ACTIONS(5161), + [anon_sym_BSLASHAcf] = ACTIONS(5161), + [anon_sym_BSLASHacfp] = ACTIONS(5161), + [anon_sym_BSLASHAcfp] = ACTIONS(5161), + [anon_sym_BSLASHac] = ACTIONS(5161), + [anon_sym_BSLASHAc] = ACTIONS(5161), + [anon_sym_BSLASHacp] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), + [anon_sym_BSLASHcolor] = ACTIONS(5161), + [anon_sym_BSLASHcolorbox] = ACTIONS(5161), + [anon_sym_BSLASHtextcolor] = ACTIONS(5161), + [anon_sym_BSLASHpagecolor] = ACTIONS(5161), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), + [anon_sym_BSLASHtext] = ACTIONS(5161), + [anon_sym_BSLASHintertext] = ACTIONS(5161), + [anon_sym_shortintertext] = ACTIONS(5161), }, - [1015] = { - [sym_command_name] = ACTIONS(5287), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_RPAREN] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_RBRACK] = ACTIONS(5285), - [anon_sym_COMMA] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_BSLASHpart] = ACTIONS(5287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddpart] = ACTIONS(5287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHchapter] = ACTIONS(5287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddchap] = ACTIONS(5287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsection] = ACTIONS(5287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddsec] = ACTIONS(5287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHparagraph] = ACTIONS(5287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHitem] = ACTIONS(5287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(5285), - [sym_word] = ACTIONS(5287), - [sym_placeholder] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_SLASH] = ACTIONS(5287), - [anon_sym_CARET] = ACTIONS(5287), - [anon_sym__] = ACTIONS(5287), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_GT] = ACTIONS(5287), - [anon_sym_BANG] = ACTIONS(5287), - [anon_sym_PIPE] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_SQUOTE] = ACTIONS(5287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5285), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5285), - [anon_sym_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5285), - [anon_sym_BSLASHbegin] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5287), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5287), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5287), - [anon_sym_BSLASHinclude] = ACTIONS(5287), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5287), - [anon_sym_BSLASHinput] = ACTIONS(5287), - [anon_sym_BSLASHsubfile] = ACTIONS(5287), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5287), - [anon_sym_BSLASHbibliography] = ACTIONS(5287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5287), - [anon_sym_BSLASHincludesvg] = ACTIONS(5287), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5287), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5287), - [anon_sym_BSLASHimport] = ACTIONS(5287), - [anon_sym_BSLASHsubimport] = ACTIONS(5287), - [anon_sym_BSLASHinputfrom] = ACTIONS(5287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5287), - [anon_sym_BSLASHincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHcaption] = ACTIONS(5287), - [anon_sym_BSLASHcite] = ACTIONS(5287), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCite] = ACTIONS(5287), - [anon_sym_BSLASHnocite] = ACTIONS(5287), - [anon_sym_BSLASHcitet] = ACTIONS(5287), - [anon_sym_BSLASHcitep] = ACTIONS(5287), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteyear] = ACTIONS(5287), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitedate] = ACTIONS(5287), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteurl] = ACTIONS(5287), - [anon_sym_BSLASHfullcite] = ACTIONS(5287), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5287), - [anon_sym_BSLASHcitealt] = ACTIONS(5287), - [anon_sym_BSLASHcitealp] = ACTIONS(5287), - [anon_sym_BSLASHcitetext] = ACTIONS(5287), - [anon_sym_BSLASHparencite] = ACTIONS(5287), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHParencite] = ACTIONS(5287), - [anon_sym_BSLASHfootcite] = ACTIONS(5287), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5287), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5287), - [anon_sym_BSLASHtextcite] = ACTIONS(5287), - [anon_sym_BSLASHTextcite] = ACTIONS(5287), - [anon_sym_BSLASHsmartcite] = ACTIONS(5287), - [anon_sym_BSLASHSmartcite] = ACTIONS(5287), - [anon_sym_BSLASHsupercite] = ACTIONS(5287), - [anon_sym_BSLASHautocite] = ACTIONS(5287), - [anon_sym_BSLASHAutocite] = ACTIONS(5287), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHvolcite] = ACTIONS(5287), - [anon_sym_BSLASHVolcite] = ACTIONS(5287), - [anon_sym_BSLASHpvolcite] = ACTIONS(5287), - [anon_sym_BSLASHPvolcite] = ACTIONS(5287), - [anon_sym_BSLASHfvolcite] = ACTIONS(5287), - [anon_sym_BSLASHftvolcite] = ACTIONS(5287), - [anon_sym_BSLASHsvolcite] = ACTIONS(5287), - [anon_sym_BSLASHSvolcite] = ACTIONS(5287), - [anon_sym_BSLASHtvolcite] = ACTIONS(5287), - [anon_sym_BSLASHTvolcite] = ACTIONS(5287), - [anon_sym_BSLASHavolcite] = ACTIONS(5287), - [anon_sym_BSLASHAvolcite] = ACTIONS(5287), - [anon_sym_BSLASHnotecite] = ACTIONS(5287), - [anon_sym_BSLASHNotecite] = ACTIONS(5287), - [anon_sym_BSLASHpnotecite] = ACTIONS(5287), - [anon_sym_BSLASHPnotecite] = ACTIONS(5287), - [anon_sym_BSLASHfnotecite] = ACTIONS(5287), - [anon_sym_BSLASHlabel] = ACTIONS(5287), - [anon_sym_BSLASHref] = ACTIONS(5287), - [anon_sym_BSLASHeqref] = ACTIONS(5287), - [anon_sym_BSLASHvref] = ACTIONS(5287), - [anon_sym_BSLASHVref] = ACTIONS(5287), - [anon_sym_BSLASHautoref] = ACTIONS(5287), - [anon_sym_BSLASHpageref] = ACTIONS(5287), - [anon_sym_BSLASHcref] = ACTIONS(5287), - [anon_sym_BSLASHCref] = ACTIONS(5287), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnameCref] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHlabelcref] = ACTIONS(5287), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnewlabel] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdef] = ACTIONS(5287), - [anon_sym_BSLASHlet] = ACTIONS(5287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5287), - [anon_sym_BSLASHgls] = ACTIONS(5287), - [anon_sym_BSLASHGls] = ACTIONS(5287), - [anon_sym_BSLASHGLS] = ACTIONS(5287), - [anon_sym_BSLASHglspl] = ACTIONS(5287), - [anon_sym_BSLASHGlspl] = ACTIONS(5287), - [anon_sym_BSLASHGLSpl] = ACTIONS(5287), - [anon_sym_BSLASHglsdisp] = ACTIONS(5287), - [anon_sym_BSLASHglslink] = ACTIONS(5287), - [anon_sym_BSLASHglstext] = ACTIONS(5287), - [anon_sym_BSLASHGlstext] = ACTIONS(5287), - [anon_sym_BSLASHGLStext] = ACTIONS(5287), - [anon_sym_BSLASHglsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5287), - [anon_sym_BSLASHglsplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSplural] = ACTIONS(5287), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHglsname] = ACTIONS(5287), - [anon_sym_BSLASHGlsname] = ACTIONS(5287), - [anon_sym_BSLASHGLSname] = ACTIONS(5287), - [anon_sym_BSLASHglssymbol] = ACTIONS(5287), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5287), - [anon_sym_BSLASHglsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5287), - [anon_sym_BSLASHglsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5287), - [anon_sym_BSLASHglsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5287), - [anon_sym_BSLASHglsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5287), - [anon_sym_BSLASHglsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5287), - [anon_sym_BSLASHnewacronym] = ACTIONS(5287), - [anon_sym_BSLASHacrshort] = ACTIONS(5287), - [anon_sym_BSLASHAcrshort] = ACTIONS(5287), - [anon_sym_BSLASHACRshort] = ACTIONS(5287), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5287), - [anon_sym_BSLASHacrlong] = ACTIONS(5287), - [anon_sym_BSLASHAcrlong] = ACTIONS(5287), - [anon_sym_BSLASHACRlong] = ACTIONS(5287), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5287), - [anon_sym_BSLASHacrfull] = ACTIONS(5287), - [anon_sym_BSLASHAcrfull] = ACTIONS(5287), - [anon_sym_BSLASHACRfull] = ACTIONS(5287), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5287), - [anon_sym_BSLASHacs] = ACTIONS(5287), - [anon_sym_BSLASHAcs] = ACTIONS(5287), - [anon_sym_BSLASHacsp] = ACTIONS(5287), - [anon_sym_BSLASHAcsp] = ACTIONS(5287), - [anon_sym_BSLASHacl] = ACTIONS(5287), - [anon_sym_BSLASHAcl] = ACTIONS(5287), - [anon_sym_BSLASHaclp] = ACTIONS(5287), - [anon_sym_BSLASHAclp] = ACTIONS(5287), - [anon_sym_BSLASHacf] = ACTIONS(5287), - [anon_sym_BSLASHAcf] = ACTIONS(5287), - [anon_sym_BSLASHacfp] = ACTIONS(5287), - [anon_sym_BSLASHAcfp] = ACTIONS(5287), - [anon_sym_BSLASHac] = ACTIONS(5287), - [anon_sym_BSLASHAc] = ACTIONS(5287), - [anon_sym_BSLASHacp] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5287), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5287), - [anon_sym_BSLASHcolor] = ACTIONS(5287), - [anon_sym_BSLASHcolorbox] = ACTIONS(5287), - [anon_sym_BSLASHtextcolor] = ACTIONS(5287), - [anon_sym_BSLASHpagecolor] = ACTIONS(5287), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5287), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5287), + [858] = { + [sym_command_name] = ACTIONS(5153), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_RPAREN] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_RBRACK] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(5151), + [anon_sym_BSLASHpart] = ACTIONS(5153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddpart] = ACTIONS(5153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5151), + [anon_sym_BSLASHchapter] = ACTIONS(5153), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddchap] = ACTIONS(5153), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsection] = ACTIONS(5153), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddsec] = ACTIONS(5153), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubsection] = ACTIONS(5153), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5153), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHparagraph] = ACTIONS(5153), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5153), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5151), + [anon_sym_BSLASHitem] = ACTIONS(5153), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5151), + [sym_word] = ACTIONS(5153), + [sym_placeholder] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym__] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5153), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), + [anon_sym_DOLLAR] = ACTIONS(5153), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), + [anon_sym_BSLASHbegin] = ACTIONS(5153), + [anon_sym_BSLASHusepackage] = ACTIONS(5153), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), + [anon_sym_BSLASHinclude] = ACTIONS(5153), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), + [anon_sym_BSLASHinput] = ACTIONS(5153), + [anon_sym_BSLASHsubfile] = ACTIONS(5153), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5153), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), + [anon_sym_BSLASHincludesvg] = ACTIONS(5153), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), + [anon_sym_BSLASHimport] = ACTIONS(5153), + [anon_sym_BSLASHsubimport] = ACTIONS(5153), + [anon_sym_BSLASHinputfrom] = ACTIONS(5153), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), + [anon_sym_BSLASHincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHcaption] = ACTIONS(5153), + [anon_sym_BSLASHcite] = ACTIONS(5153), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCite] = ACTIONS(5153), + [anon_sym_BSLASHnocite] = ACTIONS(5153), + [anon_sym_BSLASHcitet] = ACTIONS(5153), + [anon_sym_BSLASHcitep] = ACTIONS(5153), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteauthor] = ACTIONS(5153), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitetitle] = ACTIONS(5153), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteyear] = ACTIONS(5153), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitedate] = ACTIONS(5153), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteurl] = ACTIONS(5153), + [anon_sym_BSLASHfullcite] = ACTIONS(5153), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), + [anon_sym_BSLASHcitealt] = ACTIONS(5153), + [anon_sym_BSLASHcitealp] = ACTIONS(5153), + [anon_sym_BSLASHcitetext] = ACTIONS(5153), + [anon_sym_BSLASHparencite] = ACTIONS(5153), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHParencite] = ACTIONS(5153), + [anon_sym_BSLASHfootcite] = ACTIONS(5153), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), + [anon_sym_BSLASHtextcite] = ACTIONS(5153), + [anon_sym_BSLASHTextcite] = ACTIONS(5153), + [anon_sym_BSLASHsmartcite] = ACTIONS(5153), + [anon_sym_BSLASHSmartcite] = ACTIONS(5153), + [anon_sym_BSLASHsupercite] = ACTIONS(5153), + [anon_sym_BSLASHautocite] = ACTIONS(5153), + [anon_sym_BSLASHAutocite] = ACTIONS(5153), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHvolcite] = ACTIONS(5153), + [anon_sym_BSLASHVolcite] = ACTIONS(5153), + [anon_sym_BSLASHpvolcite] = ACTIONS(5153), + [anon_sym_BSLASHPvolcite] = ACTIONS(5153), + [anon_sym_BSLASHfvolcite] = ACTIONS(5153), + [anon_sym_BSLASHftvolcite] = ACTIONS(5153), + [anon_sym_BSLASHsvolcite] = ACTIONS(5153), + [anon_sym_BSLASHSvolcite] = ACTIONS(5153), + [anon_sym_BSLASHtvolcite] = ACTIONS(5153), + [anon_sym_BSLASHTvolcite] = ACTIONS(5153), + [anon_sym_BSLASHavolcite] = ACTIONS(5153), + [anon_sym_BSLASHAvolcite] = ACTIONS(5153), + [anon_sym_BSLASHnotecite] = ACTIONS(5153), + [anon_sym_BSLASHNotecite] = ACTIONS(5153), + [anon_sym_BSLASHpnotecite] = ACTIONS(5153), + [anon_sym_BSLASHPnotecite] = ACTIONS(5153), + [anon_sym_BSLASHfnotecite] = ACTIONS(5153), + [anon_sym_BSLASHlabel] = ACTIONS(5153), + [anon_sym_BSLASHref] = ACTIONS(5153), + [anon_sym_BSLASHeqref] = ACTIONS(5153), + [anon_sym_BSLASHvref] = ACTIONS(5153), + [anon_sym_BSLASHVref] = ACTIONS(5153), + [anon_sym_BSLASHautoref] = ACTIONS(5153), + [anon_sym_BSLASHpageref] = ACTIONS(5153), + [anon_sym_BSLASHcref] = ACTIONS(5153), + [anon_sym_BSLASHCref] = ACTIONS(5153), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnameCref] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHlabelcref] = ACTIONS(5153), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCrefrange] = ACTIONS(5153), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnewlabel] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), + [anon_sym_BSLASHdef] = ACTIONS(5153), + [anon_sym_BSLASHlet] = ACTIONS(5153), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), + [anon_sym_BSLASHgls] = ACTIONS(5153), + [anon_sym_BSLASHGls] = ACTIONS(5153), + [anon_sym_BSLASHGLS] = ACTIONS(5153), + [anon_sym_BSLASHglspl] = ACTIONS(5153), + [anon_sym_BSLASHGlspl] = ACTIONS(5153), + [anon_sym_BSLASHGLSpl] = ACTIONS(5153), + [anon_sym_BSLASHglsdisp] = ACTIONS(5153), + [anon_sym_BSLASHglslink] = ACTIONS(5153), + [anon_sym_BSLASHglstext] = ACTIONS(5153), + [anon_sym_BSLASHGlstext] = ACTIONS(5153), + [anon_sym_BSLASHGLStext] = ACTIONS(5153), + [anon_sym_BSLASHglsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), + [anon_sym_BSLASHglsplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSplural] = ACTIONS(5153), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHglsname] = ACTIONS(5153), + [anon_sym_BSLASHGlsname] = ACTIONS(5153), + [anon_sym_BSLASHGLSname] = ACTIONS(5153), + [anon_sym_BSLASHglssymbol] = ACTIONS(5153), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), + [anon_sym_BSLASHglsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), + [anon_sym_BSLASHglsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), + [anon_sym_BSLASHglsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), + [anon_sym_BSLASHglsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), + [anon_sym_BSLASHglsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), + [anon_sym_BSLASHnewacronym] = ACTIONS(5153), + [anon_sym_BSLASHacrshort] = ACTIONS(5153), + [anon_sym_BSLASHAcrshort] = ACTIONS(5153), + [anon_sym_BSLASHACRshort] = ACTIONS(5153), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), + [anon_sym_BSLASHacrlong] = ACTIONS(5153), + [anon_sym_BSLASHAcrlong] = ACTIONS(5153), + [anon_sym_BSLASHACRlong] = ACTIONS(5153), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), + [anon_sym_BSLASHacrfull] = ACTIONS(5153), + [anon_sym_BSLASHAcrfull] = ACTIONS(5153), + [anon_sym_BSLASHACRfull] = ACTIONS(5153), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), + [anon_sym_BSLASHacs] = ACTIONS(5153), + [anon_sym_BSLASHAcs] = ACTIONS(5153), + [anon_sym_BSLASHacsp] = ACTIONS(5153), + [anon_sym_BSLASHAcsp] = ACTIONS(5153), + [anon_sym_BSLASHacl] = ACTIONS(5153), + [anon_sym_BSLASHAcl] = ACTIONS(5153), + [anon_sym_BSLASHaclp] = ACTIONS(5153), + [anon_sym_BSLASHAclp] = ACTIONS(5153), + [anon_sym_BSLASHacf] = ACTIONS(5153), + [anon_sym_BSLASHAcf] = ACTIONS(5153), + [anon_sym_BSLASHacfp] = ACTIONS(5153), + [anon_sym_BSLASHAcfp] = ACTIONS(5153), + [anon_sym_BSLASHac] = ACTIONS(5153), + [anon_sym_BSLASHAc] = ACTIONS(5153), + [anon_sym_BSLASHacp] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), + [anon_sym_BSLASHcolor] = ACTIONS(5153), + [anon_sym_BSLASHcolorbox] = ACTIONS(5153), + [anon_sym_BSLASHtextcolor] = ACTIONS(5153), + [anon_sym_BSLASHpagecolor] = ACTIONS(5153), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), + [anon_sym_BSLASHtext] = ACTIONS(5153), + [anon_sym_BSLASHintertext] = ACTIONS(5153), + [anon_sym_shortintertext] = ACTIONS(5153), }, - [1016] = { - [sym_command_name] = ACTIONS(5291), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5291), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_RPAREN] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_BSLASHpart] = ACTIONS(5291), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddpart] = ACTIONS(5291), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHchapter] = ACTIONS(5291), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddchap] = ACTIONS(5291), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsection] = ACTIONS(5291), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddsec] = ACTIONS(5291), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHparagraph] = ACTIONS(5291), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5291), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHitem] = ACTIONS(5291), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5289), - [sym_word] = ACTIONS(5291), - [sym_placeholder] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym__] = ACTIONS(5291), - [anon_sym_LT] = ACTIONS(5291), - [anon_sym_GT] = ACTIONS(5291), - [anon_sym_BANG] = ACTIONS(5291), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5291), - [anon_sym_SQUOTE] = ACTIONS(5291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5289), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5289), - [anon_sym_BSLASHbegin] = ACTIONS(5291), - [anon_sym_BSLASHusepackage] = ACTIONS(5291), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5291), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5291), - [anon_sym_BSLASHinclude] = ACTIONS(5291), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5291), - [anon_sym_BSLASHinput] = ACTIONS(5291), - [anon_sym_BSLASHsubfile] = ACTIONS(5291), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5291), - [anon_sym_BSLASHbibliography] = ACTIONS(5291), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5291), - [anon_sym_BSLASHincludesvg] = ACTIONS(5291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5291), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5291), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5291), - [anon_sym_BSLASHimport] = ACTIONS(5291), - [anon_sym_BSLASHsubimport] = ACTIONS(5291), - [anon_sym_BSLASHinputfrom] = ACTIONS(5291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5291), - [anon_sym_BSLASHincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHcaption] = ACTIONS(5291), - [anon_sym_BSLASHcite] = ACTIONS(5291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCite] = ACTIONS(5291), - [anon_sym_BSLASHnocite] = ACTIONS(5291), - [anon_sym_BSLASHcitet] = ACTIONS(5291), - [anon_sym_BSLASHcitep] = ACTIONS(5291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor] = ACTIONS(5291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle] = ACTIONS(5291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteyear] = ACTIONS(5291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitedate] = ACTIONS(5291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteurl] = ACTIONS(5291), - [anon_sym_BSLASHfullcite] = ACTIONS(5291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5291), - [anon_sym_BSLASHcitealt] = ACTIONS(5291), - [anon_sym_BSLASHcitealp] = ACTIONS(5291), - [anon_sym_BSLASHcitetext] = ACTIONS(5291), - [anon_sym_BSLASHparencite] = ACTIONS(5291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHParencite] = ACTIONS(5291), - [anon_sym_BSLASHfootcite] = ACTIONS(5291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5291), - [anon_sym_BSLASHtextcite] = ACTIONS(5291), - [anon_sym_BSLASHTextcite] = ACTIONS(5291), - [anon_sym_BSLASHsmartcite] = ACTIONS(5291), - [anon_sym_BSLASHSmartcite] = ACTIONS(5291), - [anon_sym_BSLASHsupercite] = ACTIONS(5291), - [anon_sym_BSLASHautocite] = ACTIONS(5291), - [anon_sym_BSLASHAutocite] = ACTIONS(5291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHvolcite] = ACTIONS(5291), - [anon_sym_BSLASHVolcite] = ACTIONS(5291), - [anon_sym_BSLASHpvolcite] = ACTIONS(5291), - [anon_sym_BSLASHPvolcite] = ACTIONS(5291), - [anon_sym_BSLASHfvolcite] = ACTIONS(5291), - [anon_sym_BSLASHftvolcite] = ACTIONS(5291), - [anon_sym_BSLASHsvolcite] = ACTIONS(5291), - [anon_sym_BSLASHSvolcite] = ACTIONS(5291), - [anon_sym_BSLASHtvolcite] = ACTIONS(5291), - [anon_sym_BSLASHTvolcite] = ACTIONS(5291), - [anon_sym_BSLASHavolcite] = ACTIONS(5291), - [anon_sym_BSLASHAvolcite] = ACTIONS(5291), - [anon_sym_BSLASHnotecite] = ACTIONS(5291), - [anon_sym_BSLASHNotecite] = ACTIONS(5291), - [anon_sym_BSLASHpnotecite] = ACTIONS(5291), - [anon_sym_BSLASHPnotecite] = ACTIONS(5291), - [anon_sym_BSLASHfnotecite] = ACTIONS(5291), - [anon_sym_BSLASHlabel] = ACTIONS(5291), - [anon_sym_BSLASHref] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5291), - [anon_sym_BSLASHvref] = ACTIONS(5291), - [anon_sym_BSLASHVref] = ACTIONS(5291), - [anon_sym_BSLASHautoref] = ACTIONS(5291), - [anon_sym_BSLASHpageref] = ACTIONS(5291), - [anon_sym_BSLASHcref] = ACTIONS(5291), - [anon_sym_BSLASHCref] = ACTIONS(5291), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnameCref] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHlabelcref] = ACTIONS(5291), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange] = ACTIONS(5291), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnewlabel] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5291), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5291), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5291), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdef] = ACTIONS(5291), - [anon_sym_BSLASHlet] = ACTIONS(5291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5291), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5291), - [anon_sym_BSLASHgls] = ACTIONS(5291), - [anon_sym_BSLASHGls] = ACTIONS(5291), - [anon_sym_BSLASHGLS] = ACTIONS(5291), - [anon_sym_BSLASHglspl] = ACTIONS(5291), - [anon_sym_BSLASHGlspl] = ACTIONS(5291), - [anon_sym_BSLASHGLSpl] = ACTIONS(5291), - [anon_sym_BSLASHglsdisp] = ACTIONS(5291), - [anon_sym_BSLASHglslink] = ACTIONS(5291), - [anon_sym_BSLASHglstext] = ACTIONS(5291), - [anon_sym_BSLASHGlstext] = ACTIONS(5291), - [anon_sym_BSLASHGLStext] = ACTIONS(5291), - [anon_sym_BSLASHglsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5291), - [anon_sym_BSLASHglsplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSplural] = ACTIONS(5291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHglsname] = ACTIONS(5291), - [anon_sym_BSLASHGlsname] = ACTIONS(5291), - [anon_sym_BSLASHGLSname] = ACTIONS(5291), - [anon_sym_BSLASHglssymbol] = ACTIONS(5291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5291), - [anon_sym_BSLASHglsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5291), - [anon_sym_BSLASHglsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5291), - [anon_sym_BSLASHglsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5291), - [anon_sym_BSLASHglsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5291), - [anon_sym_BSLASHglsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5291), - [anon_sym_BSLASHnewacronym] = ACTIONS(5291), - [anon_sym_BSLASHacrshort] = ACTIONS(5291), - [anon_sym_BSLASHAcrshort] = ACTIONS(5291), - [anon_sym_BSLASHACRshort] = ACTIONS(5291), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5291), - [anon_sym_BSLASHacrlong] = ACTIONS(5291), - [anon_sym_BSLASHAcrlong] = ACTIONS(5291), - [anon_sym_BSLASHACRlong] = ACTIONS(5291), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5291), - [anon_sym_BSLASHacrfull] = ACTIONS(5291), - [anon_sym_BSLASHAcrfull] = ACTIONS(5291), - [anon_sym_BSLASHACRfull] = ACTIONS(5291), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5291), - [anon_sym_BSLASHacs] = ACTIONS(5291), - [anon_sym_BSLASHAcs] = ACTIONS(5291), - [anon_sym_BSLASHacsp] = ACTIONS(5291), - [anon_sym_BSLASHAcsp] = ACTIONS(5291), - [anon_sym_BSLASHacl] = ACTIONS(5291), - [anon_sym_BSLASHAcl] = ACTIONS(5291), - [anon_sym_BSLASHaclp] = ACTIONS(5291), - [anon_sym_BSLASHAclp] = ACTIONS(5291), - [anon_sym_BSLASHacf] = ACTIONS(5291), - [anon_sym_BSLASHAcf] = ACTIONS(5291), - [anon_sym_BSLASHacfp] = ACTIONS(5291), - [anon_sym_BSLASHAcfp] = ACTIONS(5291), - [anon_sym_BSLASHac] = ACTIONS(5291), - [anon_sym_BSLASHAc] = ACTIONS(5291), - [anon_sym_BSLASHacp] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5291), - [anon_sym_BSLASHcolor] = ACTIONS(5291), - [anon_sym_BSLASHcolorbox] = ACTIONS(5291), - [anon_sym_BSLASHtextcolor] = ACTIONS(5291), - [anon_sym_BSLASHpagecolor] = ACTIONS(5291), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5291), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5291), + [859] = { + [sym_command_name] = ACTIONS(5149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_RPAREN] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_RBRACK] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_BSLASHpart] = ACTIONS(5149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddpart] = ACTIONS(5149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5147), + [anon_sym_BSLASHchapter] = ACTIONS(5149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddchap] = ACTIONS(5149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsection] = ACTIONS(5149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddsec] = ACTIONS(5149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubsection] = ACTIONS(5149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHparagraph] = ACTIONS(5149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5147), + [anon_sym_BSLASHitem] = ACTIONS(5149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5147), + [anon_sym_LBRACE] = ACTIONS(5147), + [sym_word] = ACTIONS(5149), + [sym_placeholder] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym__] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_COLON] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), + [anon_sym_DOLLAR] = ACTIONS(5149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), + [anon_sym_BSLASHbegin] = ACTIONS(5149), + [anon_sym_BSLASHusepackage] = ACTIONS(5149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), + [anon_sym_BSLASHinput] = ACTIONS(5149), + [anon_sym_BSLASHsubfile] = ACTIONS(5149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), + [anon_sym_BSLASHbibliography] = ACTIONS(5149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), + [anon_sym_BSLASHincludesvg] = ACTIONS(5149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), + [anon_sym_BSLASHimport] = ACTIONS(5149), + [anon_sym_BSLASHsubimport] = ACTIONS(5149), + [anon_sym_BSLASHinputfrom] = ACTIONS(5149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), + [anon_sym_BSLASHincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHcaption] = ACTIONS(5149), + [anon_sym_BSLASHcite] = ACTIONS(5149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCite] = ACTIONS(5149), + [anon_sym_BSLASHnocite] = ACTIONS(5149), + [anon_sym_BSLASHcitet] = ACTIONS(5149), + [anon_sym_BSLASHcitep] = ACTIONS(5149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteauthor] = ACTIONS(5149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitetitle] = ACTIONS(5149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteyear] = ACTIONS(5149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitedate] = ACTIONS(5149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteurl] = ACTIONS(5149), + [anon_sym_BSLASHfullcite] = ACTIONS(5149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), + [anon_sym_BSLASHcitealt] = ACTIONS(5149), + [anon_sym_BSLASHcitealp] = ACTIONS(5149), + [anon_sym_BSLASHcitetext] = ACTIONS(5149), + [anon_sym_BSLASHparencite] = ACTIONS(5149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHParencite] = ACTIONS(5149), + [anon_sym_BSLASHfootcite] = ACTIONS(5149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), + [anon_sym_BSLASHtextcite] = ACTIONS(5149), + [anon_sym_BSLASHTextcite] = ACTIONS(5149), + [anon_sym_BSLASHsmartcite] = ACTIONS(5149), + [anon_sym_BSLASHSmartcite] = ACTIONS(5149), + [anon_sym_BSLASHsupercite] = ACTIONS(5149), + [anon_sym_BSLASHautocite] = ACTIONS(5149), + [anon_sym_BSLASHAutocite] = ACTIONS(5149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHvolcite] = ACTIONS(5149), + [anon_sym_BSLASHVolcite] = ACTIONS(5149), + [anon_sym_BSLASHpvolcite] = ACTIONS(5149), + [anon_sym_BSLASHPvolcite] = ACTIONS(5149), + [anon_sym_BSLASHfvolcite] = ACTIONS(5149), + [anon_sym_BSLASHftvolcite] = ACTIONS(5149), + [anon_sym_BSLASHsvolcite] = ACTIONS(5149), + [anon_sym_BSLASHSvolcite] = ACTIONS(5149), + [anon_sym_BSLASHtvolcite] = ACTIONS(5149), + [anon_sym_BSLASHTvolcite] = ACTIONS(5149), + [anon_sym_BSLASHavolcite] = ACTIONS(5149), + [anon_sym_BSLASHAvolcite] = ACTIONS(5149), + [anon_sym_BSLASHnotecite] = ACTIONS(5149), + [anon_sym_BSLASHNotecite] = ACTIONS(5149), + [anon_sym_BSLASHpnotecite] = ACTIONS(5149), + [anon_sym_BSLASHPnotecite] = ACTIONS(5149), + [anon_sym_BSLASHfnotecite] = ACTIONS(5149), + [anon_sym_BSLASHlabel] = ACTIONS(5149), + [anon_sym_BSLASHref] = ACTIONS(5149), + [anon_sym_BSLASHeqref] = ACTIONS(5149), + [anon_sym_BSLASHvref] = ACTIONS(5149), + [anon_sym_BSLASHVref] = ACTIONS(5149), + [anon_sym_BSLASHautoref] = ACTIONS(5149), + [anon_sym_BSLASHpageref] = ACTIONS(5149), + [anon_sym_BSLASHcref] = ACTIONS(5149), + [anon_sym_BSLASHCref] = ACTIONS(5149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnameCref] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHlabelcref] = ACTIONS(5149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCrefrange] = ACTIONS(5149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnewlabel] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), + [anon_sym_BSLASHdef] = ACTIONS(5149), + [anon_sym_BSLASHlet] = ACTIONS(5149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), + [anon_sym_BSLASHgls] = ACTIONS(5149), + [anon_sym_BSLASHGls] = ACTIONS(5149), + [anon_sym_BSLASHGLS] = ACTIONS(5149), + [anon_sym_BSLASHglspl] = ACTIONS(5149), + [anon_sym_BSLASHGlspl] = ACTIONS(5149), + [anon_sym_BSLASHGLSpl] = ACTIONS(5149), + [anon_sym_BSLASHglsdisp] = ACTIONS(5149), + [anon_sym_BSLASHglslink] = ACTIONS(5149), + [anon_sym_BSLASHglstext] = ACTIONS(5149), + [anon_sym_BSLASHGlstext] = ACTIONS(5149), + [anon_sym_BSLASHGLStext] = ACTIONS(5149), + [anon_sym_BSLASHglsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), + [anon_sym_BSLASHglsplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSplural] = ACTIONS(5149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHglsname] = ACTIONS(5149), + [anon_sym_BSLASHGlsname] = ACTIONS(5149), + [anon_sym_BSLASHGLSname] = ACTIONS(5149), + [anon_sym_BSLASHglssymbol] = ACTIONS(5149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), + [anon_sym_BSLASHglsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), + [anon_sym_BSLASHglsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), + [anon_sym_BSLASHglsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), + [anon_sym_BSLASHglsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), + [anon_sym_BSLASHglsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), + [anon_sym_BSLASHnewacronym] = ACTIONS(5149), + [anon_sym_BSLASHacrshort] = ACTIONS(5149), + [anon_sym_BSLASHAcrshort] = ACTIONS(5149), + [anon_sym_BSLASHACRshort] = ACTIONS(5149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), + [anon_sym_BSLASHacrlong] = ACTIONS(5149), + [anon_sym_BSLASHAcrlong] = ACTIONS(5149), + [anon_sym_BSLASHACRlong] = ACTIONS(5149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), + [anon_sym_BSLASHacrfull] = ACTIONS(5149), + [anon_sym_BSLASHAcrfull] = ACTIONS(5149), + [anon_sym_BSLASHACRfull] = ACTIONS(5149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), + [anon_sym_BSLASHacs] = ACTIONS(5149), + [anon_sym_BSLASHAcs] = ACTIONS(5149), + [anon_sym_BSLASHacsp] = ACTIONS(5149), + [anon_sym_BSLASHAcsp] = ACTIONS(5149), + [anon_sym_BSLASHacl] = ACTIONS(5149), + [anon_sym_BSLASHAcl] = ACTIONS(5149), + [anon_sym_BSLASHaclp] = ACTIONS(5149), + [anon_sym_BSLASHAclp] = ACTIONS(5149), + [anon_sym_BSLASHacf] = ACTIONS(5149), + [anon_sym_BSLASHAcf] = ACTIONS(5149), + [anon_sym_BSLASHacfp] = ACTIONS(5149), + [anon_sym_BSLASHAcfp] = ACTIONS(5149), + [anon_sym_BSLASHac] = ACTIONS(5149), + [anon_sym_BSLASHAc] = ACTIONS(5149), + [anon_sym_BSLASHacp] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), + [anon_sym_BSLASHcolor] = ACTIONS(5149), + [anon_sym_BSLASHcolorbox] = ACTIONS(5149), + [anon_sym_BSLASHtextcolor] = ACTIONS(5149), + [anon_sym_BSLASHpagecolor] = ACTIONS(5149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), + [anon_sym_BSLASHtext] = ACTIONS(5149), + [anon_sym_BSLASHintertext] = ACTIONS(5149), + [anon_sym_shortintertext] = ACTIONS(5149), }, - [1017] = { - [sym_command_name] = ACTIONS(5295), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5295), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_RPAREN] = ACTIONS(5293), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5293), - [anon_sym_COMMA] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_BSLASHpart] = ACTIONS(5295), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddpart] = ACTIONS(5295), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHchapter] = ACTIONS(5295), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddchap] = ACTIONS(5295), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsection] = ACTIONS(5295), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddsec] = ACTIONS(5295), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHparagraph] = ACTIONS(5295), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHitem] = ACTIONS(5295), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(5293), - [sym_word] = ACTIONS(5295), - [sym_placeholder] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(5295), - [anon_sym_STAR] = ACTIONS(5295), - [anon_sym_SLASH] = ACTIONS(5295), - [anon_sym_CARET] = ACTIONS(5295), - [anon_sym__] = ACTIONS(5295), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(5295), - [anon_sym_BANG] = ACTIONS(5295), - [anon_sym_PIPE] = ACTIONS(5295), - [anon_sym_COLON] = ACTIONS(5295), - [anon_sym_SQUOTE] = ACTIONS(5295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5293), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5293), - [anon_sym_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5293), - [anon_sym_BSLASHbegin] = ACTIONS(5295), - [anon_sym_BSLASHusepackage] = ACTIONS(5295), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5295), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5295), - [anon_sym_BSLASHinclude] = ACTIONS(5295), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5295), - [anon_sym_BSLASHinput] = ACTIONS(5295), - [anon_sym_BSLASHsubfile] = ACTIONS(5295), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5295), - [anon_sym_BSLASHbibliography] = ACTIONS(5295), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5295), - [anon_sym_BSLASHincludesvg] = ACTIONS(5295), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5295), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5295), - [anon_sym_BSLASHimport] = ACTIONS(5295), - [anon_sym_BSLASHsubimport] = ACTIONS(5295), - [anon_sym_BSLASHinputfrom] = ACTIONS(5295), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5295), - [anon_sym_BSLASHincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHcaption] = ACTIONS(5295), - [anon_sym_BSLASHcite] = ACTIONS(5295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCite] = ACTIONS(5295), - [anon_sym_BSLASHnocite] = ACTIONS(5295), - [anon_sym_BSLASHcitet] = ACTIONS(5295), - [anon_sym_BSLASHcitep] = ACTIONS(5295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteauthor] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitetitle] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteyear] = ACTIONS(5295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitedate] = ACTIONS(5295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteurl] = ACTIONS(5295), - [anon_sym_BSLASHfullcite] = ACTIONS(5295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5295), - [anon_sym_BSLASHcitealt] = ACTIONS(5295), - [anon_sym_BSLASHcitealp] = ACTIONS(5295), - [anon_sym_BSLASHcitetext] = ACTIONS(5295), - [anon_sym_BSLASHparencite] = ACTIONS(5295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHParencite] = ACTIONS(5295), - [anon_sym_BSLASHfootcite] = ACTIONS(5295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5295), - [anon_sym_BSLASHtextcite] = ACTIONS(5295), - [anon_sym_BSLASHTextcite] = ACTIONS(5295), - [anon_sym_BSLASHsmartcite] = ACTIONS(5295), - [anon_sym_BSLASHSmartcite] = ACTIONS(5295), - [anon_sym_BSLASHsupercite] = ACTIONS(5295), - [anon_sym_BSLASHautocite] = ACTIONS(5295), - [anon_sym_BSLASHAutocite] = ACTIONS(5295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHvolcite] = ACTIONS(5295), - [anon_sym_BSLASHVolcite] = ACTIONS(5295), - [anon_sym_BSLASHpvolcite] = ACTIONS(5295), - [anon_sym_BSLASHPvolcite] = ACTIONS(5295), - [anon_sym_BSLASHfvolcite] = ACTIONS(5295), - [anon_sym_BSLASHftvolcite] = ACTIONS(5295), - [anon_sym_BSLASHsvolcite] = ACTIONS(5295), - [anon_sym_BSLASHSvolcite] = ACTIONS(5295), - [anon_sym_BSLASHtvolcite] = ACTIONS(5295), - [anon_sym_BSLASHTvolcite] = ACTIONS(5295), - [anon_sym_BSLASHavolcite] = ACTIONS(5295), - [anon_sym_BSLASHAvolcite] = ACTIONS(5295), - [anon_sym_BSLASHnotecite] = ACTIONS(5295), - [anon_sym_BSLASHNotecite] = ACTIONS(5295), - [anon_sym_BSLASHpnotecite] = ACTIONS(5295), - [anon_sym_BSLASHPnotecite] = ACTIONS(5295), - [anon_sym_BSLASHfnotecite] = ACTIONS(5295), - [anon_sym_BSLASHlabel] = ACTIONS(5295), - [anon_sym_BSLASHref] = ACTIONS(5295), - [anon_sym_BSLASHeqref] = ACTIONS(5295), - [anon_sym_BSLASHvref] = ACTIONS(5295), - [anon_sym_BSLASHVref] = ACTIONS(5295), - [anon_sym_BSLASHautoref] = ACTIONS(5295), - [anon_sym_BSLASHpageref] = ACTIONS(5295), - [anon_sym_BSLASHcref] = ACTIONS(5295), - [anon_sym_BSLASHCref] = ACTIONS(5295), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnameCref] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHlabelcref] = ACTIONS(5295), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCrefrange] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnewlabel] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdef] = ACTIONS(5295), - [anon_sym_BSLASHlet] = ACTIONS(5295), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5295), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5295), - [anon_sym_BSLASHgls] = ACTIONS(5295), - [anon_sym_BSLASHGls] = ACTIONS(5295), - [anon_sym_BSLASHGLS] = ACTIONS(5295), - [anon_sym_BSLASHglspl] = ACTIONS(5295), - [anon_sym_BSLASHGlspl] = ACTIONS(5295), - [anon_sym_BSLASHGLSpl] = ACTIONS(5295), - [anon_sym_BSLASHglsdisp] = ACTIONS(5295), - [anon_sym_BSLASHglslink] = ACTIONS(5295), - [anon_sym_BSLASHglstext] = ACTIONS(5295), - [anon_sym_BSLASHGlstext] = ACTIONS(5295), - [anon_sym_BSLASHGLStext] = ACTIONS(5295), - [anon_sym_BSLASHglsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5295), - [anon_sym_BSLASHglsplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSplural] = ACTIONS(5295), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHglsname] = ACTIONS(5295), - [anon_sym_BSLASHGlsname] = ACTIONS(5295), - [anon_sym_BSLASHGLSname] = ACTIONS(5295), - [anon_sym_BSLASHglssymbol] = ACTIONS(5295), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5295), - [anon_sym_BSLASHglsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5295), - [anon_sym_BSLASHglsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5295), - [anon_sym_BSLASHglsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5295), - [anon_sym_BSLASHglsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5295), - [anon_sym_BSLASHglsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5295), - [anon_sym_BSLASHnewacronym] = ACTIONS(5295), - [anon_sym_BSLASHacrshort] = ACTIONS(5295), - [anon_sym_BSLASHAcrshort] = ACTIONS(5295), - [anon_sym_BSLASHACRshort] = ACTIONS(5295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5295), - [anon_sym_BSLASHacrlong] = ACTIONS(5295), - [anon_sym_BSLASHAcrlong] = ACTIONS(5295), - [anon_sym_BSLASHACRlong] = ACTIONS(5295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5295), - [anon_sym_BSLASHacrfull] = ACTIONS(5295), - [anon_sym_BSLASHAcrfull] = ACTIONS(5295), - [anon_sym_BSLASHACRfull] = ACTIONS(5295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5295), - [anon_sym_BSLASHacs] = ACTIONS(5295), - [anon_sym_BSLASHAcs] = ACTIONS(5295), - [anon_sym_BSLASHacsp] = ACTIONS(5295), - [anon_sym_BSLASHAcsp] = ACTIONS(5295), - [anon_sym_BSLASHacl] = ACTIONS(5295), - [anon_sym_BSLASHAcl] = ACTIONS(5295), - [anon_sym_BSLASHaclp] = ACTIONS(5295), - [anon_sym_BSLASHAclp] = ACTIONS(5295), - [anon_sym_BSLASHacf] = ACTIONS(5295), - [anon_sym_BSLASHAcf] = ACTIONS(5295), - [anon_sym_BSLASHacfp] = ACTIONS(5295), - [anon_sym_BSLASHAcfp] = ACTIONS(5295), - [anon_sym_BSLASHac] = ACTIONS(5295), - [anon_sym_BSLASHAc] = ACTIONS(5295), - [anon_sym_BSLASHacp] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5295), - [anon_sym_BSLASHcolor] = ACTIONS(5295), - [anon_sym_BSLASHcolorbox] = ACTIONS(5295), - [anon_sym_BSLASHtextcolor] = ACTIONS(5295), - [anon_sym_BSLASHpagecolor] = ACTIONS(5295), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5295), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5295), + [860] = { + [sym_command_name] = ACTIONS(5081), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5081), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_RPAREN] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_RBRACK] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_EQ] = ACTIONS(5079), + [anon_sym_BSLASHpart] = ACTIONS(5081), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddpart] = ACTIONS(5081), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), + [anon_sym_BSLASHchapter] = ACTIONS(5081), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddchap] = ACTIONS(5081), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsection] = ACTIONS(5081), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddsec] = ACTIONS(5081), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubsection] = ACTIONS(5081), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHparagraph] = ACTIONS(5081), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), + [anon_sym_BSLASHitem] = ACTIONS(5081), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), + [anon_sym_LBRACE] = ACTIONS(5079), + [sym_word] = ACTIONS(5081), + [sym_placeholder] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(5081), + [anon_sym_STAR] = ACTIONS(5081), + [anon_sym_SLASH] = ACTIONS(5081), + [anon_sym_CARET] = ACTIONS(5081), + [anon_sym__] = ACTIONS(5081), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_GT] = ACTIONS(5081), + [anon_sym_BANG] = ACTIONS(5081), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_COLON] = ACTIONS(5081), + [anon_sym_SQUOTE] = ACTIONS(5081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), + [anon_sym_BSLASHbegin] = ACTIONS(5081), + [anon_sym_BSLASHusepackage] = ACTIONS(5081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), + [anon_sym_BSLASHinclude] = ACTIONS(5081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), + [anon_sym_BSLASHinput] = ACTIONS(5081), + [anon_sym_BSLASHsubfile] = ACTIONS(5081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), + [anon_sym_BSLASHbibliography] = ACTIONS(5081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), + [anon_sym_BSLASHincludesvg] = ACTIONS(5081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), + [anon_sym_BSLASHimport] = ACTIONS(5081), + [anon_sym_BSLASHsubimport] = ACTIONS(5081), + [anon_sym_BSLASHinputfrom] = ACTIONS(5081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), + [anon_sym_BSLASHincludefrom] = ACTIONS(5081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), + [anon_sym_BSLASHcaption] = ACTIONS(5081), + [anon_sym_BSLASHcite] = ACTIONS(5081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCite] = ACTIONS(5081), + [anon_sym_BSLASHnocite] = ACTIONS(5081), + [anon_sym_BSLASHcitet] = ACTIONS(5081), + [anon_sym_BSLASHcitep] = ACTIONS(5081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteauthor] = ACTIONS(5081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitetitle] = ACTIONS(5081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteyear] = ACTIONS(5081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitedate] = ACTIONS(5081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteurl] = ACTIONS(5081), + [anon_sym_BSLASHfullcite] = ACTIONS(5081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), + [anon_sym_BSLASHcitealt] = ACTIONS(5081), + [anon_sym_BSLASHcitealp] = ACTIONS(5081), + [anon_sym_BSLASHcitetext] = ACTIONS(5081), + [anon_sym_BSLASHparencite] = ACTIONS(5081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHParencite] = ACTIONS(5081), + [anon_sym_BSLASHfootcite] = ACTIONS(5081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), + [anon_sym_BSLASHtextcite] = ACTIONS(5081), + [anon_sym_BSLASHTextcite] = ACTIONS(5081), + [anon_sym_BSLASHsmartcite] = ACTIONS(5081), + [anon_sym_BSLASHSmartcite] = ACTIONS(5081), + [anon_sym_BSLASHsupercite] = ACTIONS(5081), + [anon_sym_BSLASHautocite] = ACTIONS(5081), + [anon_sym_BSLASHAutocite] = ACTIONS(5081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHvolcite] = ACTIONS(5081), + [anon_sym_BSLASHVolcite] = ACTIONS(5081), + [anon_sym_BSLASHpvolcite] = ACTIONS(5081), + [anon_sym_BSLASHPvolcite] = ACTIONS(5081), + [anon_sym_BSLASHfvolcite] = ACTIONS(5081), + [anon_sym_BSLASHftvolcite] = ACTIONS(5081), + [anon_sym_BSLASHsvolcite] = ACTIONS(5081), + [anon_sym_BSLASHSvolcite] = ACTIONS(5081), + [anon_sym_BSLASHtvolcite] = ACTIONS(5081), + [anon_sym_BSLASHTvolcite] = ACTIONS(5081), + [anon_sym_BSLASHavolcite] = ACTIONS(5081), + [anon_sym_BSLASHAvolcite] = ACTIONS(5081), + [anon_sym_BSLASHnotecite] = ACTIONS(5081), + [anon_sym_BSLASHNotecite] = ACTIONS(5081), + [anon_sym_BSLASHpnotecite] = ACTIONS(5081), + [anon_sym_BSLASHPnotecite] = ACTIONS(5081), + [anon_sym_BSLASHfnotecite] = ACTIONS(5081), + [anon_sym_BSLASHlabel] = ACTIONS(5081), + [anon_sym_BSLASHref] = ACTIONS(5081), + [anon_sym_BSLASHeqref] = ACTIONS(5081), + [anon_sym_BSLASHvref] = ACTIONS(5081), + [anon_sym_BSLASHVref] = ACTIONS(5081), + [anon_sym_BSLASHautoref] = ACTIONS(5081), + [anon_sym_BSLASHpageref] = ACTIONS(5081), + [anon_sym_BSLASHcref] = ACTIONS(5081), + [anon_sym_BSLASHCref] = ACTIONS(5081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), + [anon_sym_BSLASHnamecref] = ACTIONS(5081), + [anon_sym_BSLASHnameCref] = ACTIONS(5081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), + [anon_sym_BSLASHlabelcref] = ACTIONS(5081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), + [anon_sym_BSLASHcrefrange] = ACTIONS(5081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCrefrange] = ACTIONS(5081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), + [anon_sym_BSLASHnewlabel] = ACTIONS(5081), + [anon_sym_BSLASHnewcommand] = ACTIONS(5081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), + [anon_sym_BSLASHdef] = ACTIONS(5081), + [anon_sym_BSLASHlet] = ACTIONS(5081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), + [anon_sym_BSLASHgls] = ACTIONS(5081), + [anon_sym_BSLASHGls] = ACTIONS(5081), + [anon_sym_BSLASHGLS] = ACTIONS(5081), + [anon_sym_BSLASHglspl] = ACTIONS(5081), + [anon_sym_BSLASHGlspl] = ACTIONS(5081), + [anon_sym_BSLASHGLSpl] = ACTIONS(5081), + [anon_sym_BSLASHglsdisp] = ACTIONS(5081), + [anon_sym_BSLASHglslink] = ACTIONS(5081), + [anon_sym_BSLASHglstext] = ACTIONS(5081), + [anon_sym_BSLASHGlstext] = ACTIONS(5081), + [anon_sym_BSLASHGLStext] = ACTIONS(5081), + [anon_sym_BSLASHglsfirst] = ACTIONS(5081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), + [anon_sym_BSLASHglsplural] = ACTIONS(5081), + [anon_sym_BSLASHGlsplural] = ACTIONS(5081), + [anon_sym_BSLASHGLSplural] = ACTIONS(5081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHglsname] = ACTIONS(5081), + [anon_sym_BSLASHGlsname] = ACTIONS(5081), + [anon_sym_BSLASHGLSname] = ACTIONS(5081), + [anon_sym_BSLASHglssymbol] = ACTIONS(5081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), + [anon_sym_BSLASHglsdesc] = ACTIONS(5081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), + [anon_sym_BSLASHglsuseri] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), + [anon_sym_BSLASHglsuserii] = ACTIONS(5081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), + [anon_sym_BSLASHglsuserv] = ACTIONS(5081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), + [anon_sym_BSLASHglsuservi] = ACTIONS(5081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), + [anon_sym_BSLASHnewacronym] = ACTIONS(5081), + [anon_sym_BSLASHacrshort] = ACTIONS(5081), + [anon_sym_BSLASHAcrshort] = ACTIONS(5081), + [anon_sym_BSLASHACRshort] = ACTIONS(5081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), + [anon_sym_BSLASHacrlong] = ACTIONS(5081), + [anon_sym_BSLASHAcrlong] = ACTIONS(5081), + [anon_sym_BSLASHACRlong] = ACTIONS(5081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), + [anon_sym_BSLASHacrfull] = ACTIONS(5081), + [anon_sym_BSLASHAcrfull] = ACTIONS(5081), + [anon_sym_BSLASHACRfull] = ACTIONS(5081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), + [anon_sym_BSLASHacs] = ACTIONS(5081), + [anon_sym_BSLASHAcs] = ACTIONS(5081), + [anon_sym_BSLASHacsp] = ACTIONS(5081), + [anon_sym_BSLASHAcsp] = ACTIONS(5081), + [anon_sym_BSLASHacl] = ACTIONS(5081), + [anon_sym_BSLASHAcl] = ACTIONS(5081), + [anon_sym_BSLASHaclp] = ACTIONS(5081), + [anon_sym_BSLASHAclp] = ACTIONS(5081), + [anon_sym_BSLASHacf] = ACTIONS(5081), + [anon_sym_BSLASHAcf] = ACTIONS(5081), + [anon_sym_BSLASHacfp] = ACTIONS(5081), + [anon_sym_BSLASHAcfp] = ACTIONS(5081), + [anon_sym_BSLASHac] = ACTIONS(5081), + [anon_sym_BSLASHAc] = ACTIONS(5081), + [anon_sym_BSLASHacp] = ACTIONS(5081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), + [anon_sym_BSLASHcolor] = ACTIONS(5081), + [anon_sym_BSLASHcolorbox] = ACTIONS(5081), + [anon_sym_BSLASHtextcolor] = ACTIONS(5081), + [anon_sym_BSLASHpagecolor] = ACTIONS(5081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), + [anon_sym_BSLASHtext] = ACTIONS(5081), + [anon_sym_BSLASHintertext] = ACTIONS(5081), + [anon_sym_shortintertext] = ACTIONS(5081), }, - [1018] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_BSLASHpart] = ACTIONS(5299), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddpart] = ACTIONS(5299), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHchapter] = ACTIONS(5299), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddchap] = ACTIONS(5299), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsection] = ACTIONS(5299), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddsec] = ACTIONS(5299), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHparagraph] = ACTIONS(5299), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHitem] = ACTIONS(5299), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASHbegin] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), + [861] = { + [sym_command_name] = ACTIONS(4947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4947), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_RPAREN] = ACTIONS(4945), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_RBRACK] = ACTIONS(4945), + [anon_sym_COMMA] = ACTIONS(4945), + [anon_sym_EQ] = ACTIONS(4945), + [anon_sym_BSLASHpart] = ACTIONS(4947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddpart] = ACTIONS(4947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4945), + [anon_sym_BSLASHchapter] = ACTIONS(4947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddchap] = ACTIONS(4947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsection] = ACTIONS(4947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddsec] = ACTIONS(4947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubsection] = ACTIONS(4947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHparagraph] = ACTIONS(4947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4947), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4945), + [anon_sym_BSLASHitem] = ACTIONS(4947), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4945), + [anon_sym_LBRACE] = ACTIONS(4945), + [sym_word] = ACTIONS(4947), + [sym_placeholder] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(4947), + [anon_sym_DASH] = ACTIONS(4947), + [anon_sym_STAR] = ACTIONS(4947), + [anon_sym_SLASH] = ACTIONS(4947), + [anon_sym_CARET] = ACTIONS(4947), + [anon_sym__] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_BANG] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_COLON] = ACTIONS(4947), + [anon_sym_SQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4945), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4945), + [anon_sym_DOLLAR] = ACTIONS(4947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4945), + [anon_sym_BSLASHbegin] = ACTIONS(4947), + [anon_sym_BSLASHusepackage] = ACTIONS(4947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4947), + [anon_sym_BSLASHinclude] = ACTIONS(4947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4947), + [anon_sym_BSLASHinput] = ACTIONS(4947), + [anon_sym_BSLASHsubfile] = ACTIONS(4947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4947), + [anon_sym_BSLASHbibliography] = ACTIONS(4947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4947), + [anon_sym_BSLASHincludesvg] = ACTIONS(4947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4947), + [anon_sym_BSLASHimport] = ACTIONS(4947), + [anon_sym_BSLASHsubimport] = ACTIONS(4947), + [anon_sym_BSLASHinputfrom] = ACTIONS(4947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4947), + [anon_sym_BSLASHincludefrom] = ACTIONS(4947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4947), + [anon_sym_BSLASHcaption] = ACTIONS(4947), + [anon_sym_BSLASHcite] = ACTIONS(4947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCite] = ACTIONS(4947), + [anon_sym_BSLASHnocite] = ACTIONS(4947), + [anon_sym_BSLASHcitet] = ACTIONS(4947), + [anon_sym_BSLASHcitep] = ACTIONS(4947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteauthor] = ACTIONS(4947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitetitle] = ACTIONS(4947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteyear] = ACTIONS(4947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitedate] = ACTIONS(4947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteurl] = ACTIONS(4947), + [anon_sym_BSLASHfullcite] = ACTIONS(4947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4947), + [anon_sym_BSLASHcitealt] = ACTIONS(4947), + [anon_sym_BSLASHcitealp] = ACTIONS(4947), + [anon_sym_BSLASHcitetext] = ACTIONS(4947), + [anon_sym_BSLASHparencite] = ACTIONS(4947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHParencite] = ACTIONS(4947), + [anon_sym_BSLASHfootcite] = ACTIONS(4947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4947), + [anon_sym_BSLASHtextcite] = ACTIONS(4947), + [anon_sym_BSLASHTextcite] = ACTIONS(4947), + [anon_sym_BSLASHsmartcite] = ACTIONS(4947), + [anon_sym_BSLASHSmartcite] = ACTIONS(4947), + [anon_sym_BSLASHsupercite] = ACTIONS(4947), + [anon_sym_BSLASHautocite] = ACTIONS(4947), + [anon_sym_BSLASHAutocite] = ACTIONS(4947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHvolcite] = ACTIONS(4947), + [anon_sym_BSLASHVolcite] = ACTIONS(4947), + [anon_sym_BSLASHpvolcite] = ACTIONS(4947), + [anon_sym_BSLASHPvolcite] = ACTIONS(4947), + [anon_sym_BSLASHfvolcite] = ACTIONS(4947), + [anon_sym_BSLASHftvolcite] = ACTIONS(4947), + [anon_sym_BSLASHsvolcite] = ACTIONS(4947), + [anon_sym_BSLASHSvolcite] = ACTIONS(4947), + [anon_sym_BSLASHtvolcite] = ACTIONS(4947), + [anon_sym_BSLASHTvolcite] = ACTIONS(4947), + [anon_sym_BSLASHavolcite] = ACTIONS(4947), + [anon_sym_BSLASHAvolcite] = ACTIONS(4947), + [anon_sym_BSLASHnotecite] = ACTIONS(4947), + [anon_sym_BSLASHNotecite] = ACTIONS(4947), + [anon_sym_BSLASHpnotecite] = ACTIONS(4947), + [anon_sym_BSLASHPnotecite] = ACTIONS(4947), + [anon_sym_BSLASHfnotecite] = ACTIONS(4947), + [anon_sym_BSLASHlabel] = ACTIONS(4947), + [anon_sym_BSLASHref] = ACTIONS(4947), + [anon_sym_BSLASHeqref] = ACTIONS(4947), + [anon_sym_BSLASHvref] = ACTIONS(4947), + [anon_sym_BSLASHVref] = ACTIONS(4947), + [anon_sym_BSLASHautoref] = ACTIONS(4947), + [anon_sym_BSLASHpageref] = ACTIONS(4947), + [anon_sym_BSLASHcref] = ACTIONS(4947), + [anon_sym_BSLASHCref] = ACTIONS(4947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4945), + [anon_sym_BSLASHnamecref] = ACTIONS(4947), + [anon_sym_BSLASHnameCref] = ACTIONS(4947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4947), + [anon_sym_BSLASHlabelcref] = ACTIONS(4947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4947), + [anon_sym_BSLASHcrefrange] = ACTIONS(4947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCrefrange] = ACTIONS(4947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4945), + [anon_sym_BSLASHnewlabel] = ACTIONS(4947), + [anon_sym_BSLASHnewcommand] = ACTIONS(4947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4945), + [anon_sym_BSLASHdef] = ACTIONS(4947), + [anon_sym_BSLASHlet] = ACTIONS(4947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), + [anon_sym_BSLASHgls] = ACTIONS(4947), + [anon_sym_BSLASHGls] = ACTIONS(4947), + [anon_sym_BSLASHGLS] = ACTIONS(4947), + [anon_sym_BSLASHglspl] = ACTIONS(4947), + [anon_sym_BSLASHGlspl] = ACTIONS(4947), + [anon_sym_BSLASHGLSpl] = ACTIONS(4947), + [anon_sym_BSLASHglsdisp] = ACTIONS(4947), + [anon_sym_BSLASHglslink] = ACTIONS(4947), + [anon_sym_BSLASHglstext] = ACTIONS(4947), + [anon_sym_BSLASHGlstext] = ACTIONS(4947), + [anon_sym_BSLASHGLStext] = ACTIONS(4947), + [anon_sym_BSLASHglsfirst] = ACTIONS(4947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4947), + [anon_sym_BSLASHglsplural] = ACTIONS(4947), + [anon_sym_BSLASHGlsplural] = ACTIONS(4947), + [anon_sym_BSLASHGLSplural] = ACTIONS(4947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHglsname] = ACTIONS(4947), + [anon_sym_BSLASHGlsname] = ACTIONS(4947), + [anon_sym_BSLASHGLSname] = ACTIONS(4947), + [anon_sym_BSLASHglssymbol] = ACTIONS(4947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4947), + [anon_sym_BSLASHglsdesc] = ACTIONS(4947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4947), + [anon_sym_BSLASHglsuseri] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4947), + [anon_sym_BSLASHglsuserii] = ACTIONS(4947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4947), + [anon_sym_BSLASHglsuserv] = ACTIONS(4947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4947), + [anon_sym_BSLASHglsuservi] = ACTIONS(4947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4947), + [anon_sym_BSLASHnewacronym] = ACTIONS(4947), + [anon_sym_BSLASHacrshort] = ACTIONS(4947), + [anon_sym_BSLASHAcrshort] = ACTIONS(4947), + [anon_sym_BSLASHACRshort] = ACTIONS(4947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4947), + [anon_sym_BSLASHacrlong] = ACTIONS(4947), + [anon_sym_BSLASHAcrlong] = ACTIONS(4947), + [anon_sym_BSLASHACRlong] = ACTIONS(4947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4947), + [anon_sym_BSLASHacrfull] = ACTIONS(4947), + [anon_sym_BSLASHAcrfull] = ACTIONS(4947), + [anon_sym_BSLASHACRfull] = ACTIONS(4947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4947), + [anon_sym_BSLASHacs] = ACTIONS(4947), + [anon_sym_BSLASHAcs] = ACTIONS(4947), + [anon_sym_BSLASHacsp] = ACTIONS(4947), + [anon_sym_BSLASHAcsp] = ACTIONS(4947), + [anon_sym_BSLASHacl] = ACTIONS(4947), + [anon_sym_BSLASHAcl] = ACTIONS(4947), + [anon_sym_BSLASHaclp] = ACTIONS(4947), + [anon_sym_BSLASHAclp] = ACTIONS(4947), + [anon_sym_BSLASHacf] = ACTIONS(4947), + [anon_sym_BSLASHAcf] = ACTIONS(4947), + [anon_sym_BSLASHacfp] = ACTIONS(4947), + [anon_sym_BSLASHAcfp] = ACTIONS(4947), + [anon_sym_BSLASHac] = ACTIONS(4947), + [anon_sym_BSLASHAc] = ACTIONS(4947), + [anon_sym_BSLASHacp] = ACTIONS(4947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4947), + [anon_sym_BSLASHcolor] = ACTIONS(4947), + [anon_sym_BSLASHcolorbox] = ACTIONS(4947), + [anon_sym_BSLASHtextcolor] = ACTIONS(4947), + [anon_sym_BSLASHpagecolor] = ACTIONS(4947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4947), + [anon_sym_BSLASHtext] = ACTIONS(4947), + [anon_sym_BSLASHintertext] = ACTIONS(4947), + [anon_sym_shortintertext] = ACTIONS(4947), }, - [1019] = { - [sym_command_name] = ACTIONS(5305), + [862] = { + [sym_command_name] = ACTIONS(5205), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_BSLASHpart] = ACTIONS(5305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddpart] = ACTIONS(5305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHchapter] = ACTIONS(5305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddchap] = ACTIONS(5305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsection] = ACTIONS(5305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddsec] = ACTIONS(5305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHparagraph] = ACTIONS(5305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHitem] = ACTIONS(5305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASHbegin] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), + [anon_sym_BSLASHiffalse] = ACTIONS(5205), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_RPAREN] = ACTIONS(5203), + [anon_sym_LBRACK] = ACTIONS(5203), + [anon_sym_RBRACK] = ACTIONS(5203), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_EQ] = ACTIONS(5203), + [anon_sym_BSLASHpart] = ACTIONS(5205), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddpart] = ACTIONS(5205), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), + [anon_sym_BSLASHchapter] = ACTIONS(5205), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddchap] = ACTIONS(5205), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsection] = ACTIONS(5205), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddsec] = ACTIONS(5205), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubsection] = ACTIONS(5205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHparagraph] = ACTIONS(5205), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), + [anon_sym_BSLASHitem] = ACTIONS(5205), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), + [anon_sym_LBRACE] = ACTIONS(5203), + [sym_word] = ACTIONS(5205), + [sym_placeholder] = ACTIONS(5203), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_CARET] = ACTIONS(5205), + [anon_sym__] = ACTIONS(5205), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_PIPE] = ACTIONS(5205), + [anon_sym_COLON] = ACTIONS(5205), + [anon_sym_SQUOTE] = ACTIONS(5205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5203), + [anon_sym_BSLASHbegin] = ACTIONS(5205), + [anon_sym_BSLASHusepackage] = ACTIONS(5205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), + [anon_sym_BSLASHinclude] = ACTIONS(5205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), + [anon_sym_BSLASHinput] = ACTIONS(5205), + [anon_sym_BSLASHsubfile] = ACTIONS(5205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), + [anon_sym_BSLASHbibliography] = ACTIONS(5205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), + [anon_sym_BSLASHincludesvg] = ACTIONS(5205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), + [anon_sym_BSLASHimport] = ACTIONS(5205), + [anon_sym_BSLASHsubimport] = ACTIONS(5205), + [anon_sym_BSLASHinputfrom] = ACTIONS(5205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), + [anon_sym_BSLASHincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHcaption] = ACTIONS(5205), + [anon_sym_BSLASHcite] = ACTIONS(5205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCite] = ACTIONS(5205), + [anon_sym_BSLASHnocite] = ACTIONS(5205), + [anon_sym_BSLASHcitet] = ACTIONS(5205), + [anon_sym_BSLASHcitep] = ACTIONS(5205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteauthor] = ACTIONS(5205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitetitle] = ACTIONS(5205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteyear] = ACTIONS(5205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitedate] = ACTIONS(5205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteurl] = ACTIONS(5205), + [anon_sym_BSLASHfullcite] = ACTIONS(5205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), + [anon_sym_BSLASHcitealt] = ACTIONS(5205), + [anon_sym_BSLASHcitealp] = ACTIONS(5205), + [anon_sym_BSLASHcitetext] = ACTIONS(5205), + [anon_sym_BSLASHparencite] = ACTIONS(5205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHParencite] = ACTIONS(5205), + [anon_sym_BSLASHfootcite] = ACTIONS(5205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), + [anon_sym_BSLASHtextcite] = ACTIONS(5205), + [anon_sym_BSLASHTextcite] = ACTIONS(5205), + [anon_sym_BSLASHsmartcite] = ACTIONS(5205), + [anon_sym_BSLASHSmartcite] = ACTIONS(5205), + [anon_sym_BSLASHsupercite] = ACTIONS(5205), + [anon_sym_BSLASHautocite] = ACTIONS(5205), + [anon_sym_BSLASHAutocite] = ACTIONS(5205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHvolcite] = ACTIONS(5205), + [anon_sym_BSLASHVolcite] = ACTIONS(5205), + [anon_sym_BSLASHpvolcite] = ACTIONS(5205), + [anon_sym_BSLASHPvolcite] = ACTIONS(5205), + [anon_sym_BSLASHfvolcite] = ACTIONS(5205), + [anon_sym_BSLASHftvolcite] = ACTIONS(5205), + [anon_sym_BSLASHsvolcite] = ACTIONS(5205), + [anon_sym_BSLASHSvolcite] = ACTIONS(5205), + [anon_sym_BSLASHtvolcite] = ACTIONS(5205), + [anon_sym_BSLASHTvolcite] = ACTIONS(5205), + [anon_sym_BSLASHavolcite] = ACTIONS(5205), + [anon_sym_BSLASHAvolcite] = ACTIONS(5205), + [anon_sym_BSLASHnotecite] = ACTIONS(5205), + [anon_sym_BSLASHNotecite] = ACTIONS(5205), + [anon_sym_BSLASHpnotecite] = ACTIONS(5205), + [anon_sym_BSLASHPnotecite] = ACTIONS(5205), + [anon_sym_BSLASHfnotecite] = ACTIONS(5205), + [anon_sym_BSLASHlabel] = ACTIONS(5205), + [anon_sym_BSLASHref] = ACTIONS(5205), + [anon_sym_BSLASHeqref] = ACTIONS(5205), + [anon_sym_BSLASHvref] = ACTIONS(5205), + [anon_sym_BSLASHVref] = ACTIONS(5205), + [anon_sym_BSLASHautoref] = ACTIONS(5205), + [anon_sym_BSLASHpageref] = ACTIONS(5205), + [anon_sym_BSLASHcref] = ACTIONS(5205), + [anon_sym_BSLASHCref] = ACTIONS(5205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnameCref] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHlabelcref] = ACTIONS(5205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCrefrange] = ACTIONS(5205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnewlabel] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), + [anon_sym_BSLASHdef] = ACTIONS(5205), + [anon_sym_BSLASHlet] = ACTIONS(5205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), + [anon_sym_BSLASHgls] = ACTIONS(5205), + [anon_sym_BSLASHGls] = ACTIONS(5205), + [anon_sym_BSLASHGLS] = ACTIONS(5205), + [anon_sym_BSLASHglspl] = ACTIONS(5205), + [anon_sym_BSLASHGlspl] = ACTIONS(5205), + [anon_sym_BSLASHGLSpl] = ACTIONS(5205), + [anon_sym_BSLASHglsdisp] = ACTIONS(5205), + [anon_sym_BSLASHglslink] = ACTIONS(5205), + [anon_sym_BSLASHglstext] = ACTIONS(5205), + [anon_sym_BSLASHGlstext] = ACTIONS(5205), + [anon_sym_BSLASHGLStext] = ACTIONS(5205), + [anon_sym_BSLASHglsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), + [anon_sym_BSLASHglsplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSplural] = ACTIONS(5205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHglsname] = ACTIONS(5205), + [anon_sym_BSLASHGlsname] = ACTIONS(5205), + [anon_sym_BSLASHGLSname] = ACTIONS(5205), + [anon_sym_BSLASHglssymbol] = ACTIONS(5205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), + [anon_sym_BSLASHglsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), + [anon_sym_BSLASHglsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), + [anon_sym_BSLASHglsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), + [anon_sym_BSLASHglsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), + [anon_sym_BSLASHglsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), + [anon_sym_BSLASHnewacronym] = ACTIONS(5205), + [anon_sym_BSLASHacrshort] = ACTIONS(5205), + [anon_sym_BSLASHAcrshort] = ACTIONS(5205), + [anon_sym_BSLASHACRshort] = ACTIONS(5205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), + [anon_sym_BSLASHacrlong] = ACTIONS(5205), + [anon_sym_BSLASHAcrlong] = ACTIONS(5205), + [anon_sym_BSLASHACRlong] = ACTIONS(5205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), + [anon_sym_BSLASHacrfull] = ACTIONS(5205), + [anon_sym_BSLASHAcrfull] = ACTIONS(5205), + [anon_sym_BSLASHACRfull] = ACTIONS(5205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), + [anon_sym_BSLASHacs] = ACTIONS(5205), + [anon_sym_BSLASHAcs] = ACTIONS(5205), + [anon_sym_BSLASHacsp] = ACTIONS(5205), + [anon_sym_BSLASHAcsp] = ACTIONS(5205), + [anon_sym_BSLASHacl] = ACTIONS(5205), + [anon_sym_BSLASHAcl] = ACTIONS(5205), + [anon_sym_BSLASHaclp] = ACTIONS(5205), + [anon_sym_BSLASHAclp] = ACTIONS(5205), + [anon_sym_BSLASHacf] = ACTIONS(5205), + [anon_sym_BSLASHAcf] = ACTIONS(5205), + [anon_sym_BSLASHacfp] = ACTIONS(5205), + [anon_sym_BSLASHAcfp] = ACTIONS(5205), + [anon_sym_BSLASHac] = ACTIONS(5205), + [anon_sym_BSLASHAc] = ACTIONS(5205), + [anon_sym_BSLASHacp] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), + [anon_sym_BSLASHcolor] = ACTIONS(5205), + [anon_sym_BSLASHcolorbox] = ACTIONS(5205), + [anon_sym_BSLASHtextcolor] = ACTIONS(5205), + [anon_sym_BSLASHpagecolor] = ACTIONS(5205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), + [anon_sym_BSLASHtext] = ACTIONS(5205), + [anon_sym_BSLASHintertext] = ACTIONS(5205), + [anon_sym_shortintertext] = ACTIONS(5205), }, - [1020] = { - [sym_command_name] = ACTIONS(5151), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5149), - [anon_sym_RPAREN] = ACTIONS(5149), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_RBRACK] = ACTIONS(5149), - [anon_sym_COMMA] = ACTIONS(5149), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_BSLASHpart] = ACTIONS(5151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddpart] = ACTIONS(5151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5149), - [anon_sym_BSLASHchapter] = ACTIONS(5151), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddchap] = ACTIONS(5151), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsection] = ACTIONS(5151), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddsec] = ACTIONS(5151), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubsection] = ACTIONS(5151), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5151), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHparagraph] = ACTIONS(5151), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5151), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5149), - [anon_sym_BSLASHitem] = ACTIONS(5151), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5149), - [anon_sym_LBRACE] = ACTIONS(5149), - [sym_word] = ACTIONS(5151), - [sym_placeholder] = ACTIONS(5149), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_CARET] = ACTIONS(5151), - [anon_sym__] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5151), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5149), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5149), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5149), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5149), - [anon_sym_BSLASHbegin] = ACTIONS(5151), - [anon_sym_BSLASHusepackage] = ACTIONS(5151), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5151), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5151), - [anon_sym_BSLASHinclude] = ACTIONS(5151), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), - [anon_sym_BSLASHinput] = ACTIONS(5151), - [anon_sym_BSLASHsubfile] = ACTIONS(5151), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5151), - [anon_sym_BSLASHbibliography] = ACTIONS(5151), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5151), - [anon_sym_BSLASHincludesvg] = ACTIONS(5151), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5151), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5151), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5151), - [anon_sym_BSLASHimport] = ACTIONS(5151), - [anon_sym_BSLASHsubimport] = ACTIONS(5151), - [anon_sym_BSLASHinputfrom] = ACTIONS(5151), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5151), - [anon_sym_BSLASHincludefrom] = ACTIONS(5151), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5151), - [anon_sym_BSLASHcaption] = ACTIONS(5151), - [anon_sym_BSLASHcite] = ACTIONS(5151), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCite] = ACTIONS(5151), - [anon_sym_BSLASHnocite] = ACTIONS(5151), - [anon_sym_BSLASHcitet] = ACTIONS(5151), - [anon_sym_BSLASHcitep] = ACTIONS(5151), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteyear] = ACTIONS(5151), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitedate] = ACTIONS(5151), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteurl] = ACTIONS(5151), - [anon_sym_BSLASHfullcite] = ACTIONS(5151), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5151), - [anon_sym_BSLASHcitealt] = ACTIONS(5151), - [anon_sym_BSLASHcitealp] = ACTIONS(5151), - [anon_sym_BSLASHcitetext] = ACTIONS(5151), - [anon_sym_BSLASHparencite] = ACTIONS(5151), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHParencite] = ACTIONS(5151), - [anon_sym_BSLASHfootcite] = ACTIONS(5151), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5151), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5151), - [anon_sym_BSLASHtextcite] = ACTIONS(5151), - [anon_sym_BSLASHTextcite] = ACTIONS(5151), - [anon_sym_BSLASHsmartcite] = ACTIONS(5151), - [anon_sym_BSLASHSmartcite] = ACTIONS(5151), - [anon_sym_BSLASHsupercite] = ACTIONS(5151), - [anon_sym_BSLASHautocite] = ACTIONS(5151), - [anon_sym_BSLASHAutocite] = ACTIONS(5151), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHvolcite] = ACTIONS(5151), - [anon_sym_BSLASHVolcite] = ACTIONS(5151), - [anon_sym_BSLASHpvolcite] = ACTIONS(5151), - [anon_sym_BSLASHPvolcite] = ACTIONS(5151), - [anon_sym_BSLASHfvolcite] = ACTIONS(5151), - [anon_sym_BSLASHftvolcite] = ACTIONS(5151), - [anon_sym_BSLASHsvolcite] = ACTIONS(5151), - [anon_sym_BSLASHSvolcite] = ACTIONS(5151), - [anon_sym_BSLASHtvolcite] = ACTIONS(5151), - [anon_sym_BSLASHTvolcite] = ACTIONS(5151), - [anon_sym_BSLASHavolcite] = ACTIONS(5151), - [anon_sym_BSLASHAvolcite] = ACTIONS(5151), - [anon_sym_BSLASHnotecite] = ACTIONS(5151), - [anon_sym_BSLASHNotecite] = ACTIONS(5151), - [anon_sym_BSLASHpnotecite] = ACTIONS(5151), - [anon_sym_BSLASHPnotecite] = ACTIONS(5151), - [anon_sym_BSLASHfnotecite] = ACTIONS(5151), - [anon_sym_BSLASHlabel] = ACTIONS(5151), - [anon_sym_BSLASHref] = ACTIONS(5151), - [anon_sym_BSLASHeqref] = ACTIONS(5151), - [anon_sym_BSLASHvref] = ACTIONS(5151), - [anon_sym_BSLASHVref] = ACTIONS(5151), - [anon_sym_BSLASHautoref] = ACTIONS(5151), - [anon_sym_BSLASHpageref] = ACTIONS(5151), - [anon_sym_BSLASHcref] = ACTIONS(5151), - [anon_sym_BSLASHCref] = ACTIONS(5151), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5149), - [anon_sym_BSLASHnamecref] = ACTIONS(5151), - [anon_sym_BSLASHnameCref] = ACTIONS(5151), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5151), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5151), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5151), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5151), - [anon_sym_BSLASHlabelcref] = ACTIONS(5151), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5151), - [anon_sym_BSLASHcrefrange] = ACTIONS(5151), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5149), - [anon_sym_BSLASHnewlabel] = ACTIONS(5151), - [anon_sym_BSLASHnewcommand] = ACTIONS(5151), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5149), - [anon_sym_BSLASHdef] = ACTIONS(5151), - [anon_sym_BSLASHlet] = ACTIONS(5151), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5151), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5151), - [anon_sym_BSLASHgls] = ACTIONS(5151), - [anon_sym_BSLASHGls] = ACTIONS(5151), - [anon_sym_BSLASHGLS] = ACTIONS(5151), - [anon_sym_BSLASHglspl] = ACTIONS(5151), - [anon_sym_BSLASHGlspl] = ACTIONS(5151), - [anon_sym_BSLASHGLSpl] = ACTIONS(5151), - [anon_sym_BSLASHglsdisp] = ACTIONS(5151), - [anon_sym_BSLASHglslink] = ACTIONS(5151), - [anon_sym_BSLASHglstext] = ACTIONS(5151), - [anon_sym_BSLASHGlstext] = ACTIONS(5151), - [anon_sym_BSLASHGLStext] = ACTIONS(5151), - [anon_sym_BSLASHglsfirst] = ACTIONS(5151), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5151), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5151), - [anon_sym_BSLASHglsplural] = ACTIONS(5151), - [anon_sym_BSLASHGlsplural] = ACTIONS(5151), - [anon_sym_BSLASHGLSplural] = ACTIONS(5151), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHglsname] = ACTIONS(5151), - [anon_sym_BSLASHGlsname] = ACTIONS(5151), - [anon_sym_BSLASHGLSname] = ACTIONS(5151), - [anon_sym_BSLASHglssymbol] = ACTIONS(5151), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5151), - [anon_sym_BSLASHglsdesc] = ACTIONS(5151), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5151), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5151), - [anon_sym_BSLASHglsuseri] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5151), - [anon_sym_BSLASHglsuserii] = ACTIONS(5151), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5151), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5151), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5151), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5151), - [anon_sym_BSLASHglsuserv] = ACTIONS(5151), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5151), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5151), - [anon_sym_BSLASHglsuservi] = ACTIONS(5151), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5151), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5151), - [anon_sym_BSLASHnewacronym] = ACTIONS(5151), - [anon_sym_BSLASHacrshort] = ACTIONS(5151), - [anon_sym_BSLASHAcrshort] = ACTIONS(5151), - [anon_sym_BSLASHACRshort] = ACTIONS(5151), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5151), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5151), - [anon_sym_BSLASHacrlong] = ACTIONS(5151), - [anon_sym_BSLASHAcrlong] = ACTIONS(5151), - [anon_sym_BSLASHACRlong] = ACTIONS(5151), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5151), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5151), - [anon_sym_BSLASHacrfull] = ACTIONS(5151), - [anon_sym_BSLASHAcrfull] = ACTIONS(5151), - [anon_sym_BSLASHACRfull] = ACTIONS(5151), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5151), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5151), - [anon_sym_BSLASHacs] = ACTIONS(5151), - [anon_sym_BSLASHAcs] = ACTIONS(5151), - [anon_sym_BSLASHacsp] = ACTIONS(5151), - [anon_sym_BSLASHAcsp] = ACTIONS(5151), - [anon_sym_BSLASHacl] = ACTIONS(5151), - [anon_sym_BSLASHAcl] = ACTIONS(5151), - [anon_sym_BSLASHaclp] = ACTIONS(5151), - [anon_sym_BSLASHAclp] = ACTIONS(5151), - [anon_sym_BSLASHacf] = ACTIONS(5151), - [anon_sym_BSLASHAcf] = ACTIONS(5151), - [anon_sym_BSLASHacfp] = ACTIONS(5151), - [anon_sym_BSLASHAcfp] = ACTIONS(5151), - [anon_sym_BSLASHac] = ACTIONS(5151), - [anon_sym_BSLASHAc] = ACTIONS(5151), - [anon_sym_BSLASHacp] = ACTIONS(5151), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5151), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5151), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5151), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5151), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5151), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5151), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5151), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5151), - [anon_sym_BSLASHcolor] = ACTIONS(5151), - [anon_sym_BSLASHcolorbox] = ACTIONS(5151), - [anon_sym_BSLASHtextcolor] = ACTIONS(5151), - [anon_sym_BSLASHpagecolor] = ACTIONS(5151), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5151), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5151), + [863] = { + [sym_command_name] = ACTIONS(5145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_RPAREN] = ACTIONS(5143), + [anon_sym_LBRACK] = ACTIONS(5143), + [anon_sym_RBRACK] = ACTIONS(5143), + [anon_sym_COMMA] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_BSLASHpart] = ACTIONS(5145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddpart] = ACTIONS(5145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5143), + [anon_sym_BSLASHchapter] = ACTIONS(5145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddchap] = ACTIONS(5145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsection] = ACTIONS(5145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddsec] = ACTIONS(5145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubsection] = ACTIONS(5145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHparagraph] = ACTIONS(5145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5143), + [anon_sym_BSLASHitem] = ACTIONS(5145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5143), + [sym_word] = ACTIONS(5145), + [sym_placeholder] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym__] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5145), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), + [anon_sym_DOLLAR] = ACTIONS(5145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5143), + [anon_sym_BSLASHbegin] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5145), + [anon_sym_BSLASHinclude] = ACTIONS(5145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5145), + [anon_sym_BSLASHinput] = ACTIONS(5145), + [anon_sym_BSLASHsubfile] = ACTIONS(5145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5145), + [anon_sym_BSLASHbibliography] = ACTIONS(5145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5145), + [anon_sym_BSLASHincludesvg] = ACTIONS(5145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5145), + [anon_sym_BSLASHimport] = ACTIONS(5145), + [anon_sym_BSLASHsubimport] = ACTIONS(5145), + [anon_sym_BSLASHinputfrom] = ACTIONS(5145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5145), + [anon_sym_BSLASHincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHcaption] = ACTIONS(5145), + [anon_sym_BSLASHcite] = ACTIONS(5145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCite] = ACTIONS(5145), + [anon_sym_BSLASHnocite] = ACTIONS(5145), + [anon_sym_BSLASHcitet] = ACTIONS(5145), + [anon_sym_BSLASHcitep] = ACTIONS(5145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteauthor] = ACTIONS(5145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitetitle] = ACTIONS(5145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteyear] = ACTIONS(5145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitedate] = ACTIONS(5145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteurl] = ACTIONS(5145), + [anon_sym_BSLASHfullcite] = ACTIONS(5145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5145), + [anon_sym_BSLASHcitealt] = ACTIONS(5145), + [anon_sym_BSLASHcitealp] = ACTIONS(5145), + [anon_sym_BSLASHcitetext] = ACTIONS(5145), + [anon_sym_BSLASHparencite] = ACTIONS(5145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHParencite] = ACTIONS(5145), + [anon_sym_BSLASHfootcite] = ACTIONS(5145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5145), + [anon_sym_BSLASHtextcite] = ACTIONS(5145), + [anon_sym_BSLASHTextcite] = ACTIONS(5145), + [anon_sym_BSLASHsmartcite] = ACTIONS(5145), + [anon_sym_BSLASHSmartcite] = ACTIONS(5145), + [anon_sym_BSLASHsupercite] = ACTIONS(5145), + [anon_sym_BSLASHautocite] = ACTIONS(5145), + [anon_sym_BSLASHAutocite] = ACTIONS(5145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHvolcite] = ACTIONS(5145), + [anon_sym_BSLASHVolcite] = ACTIONS(5145), + [anon_sym_BSLASHpvolcite] = ACTIONS(5145), + [anon_sym_BSLASHPvolcite] = ACTIONS(5145), + [anon_sym_BSLASHfvolcite] = ACTIONS(5145), + [anon_sym_BSLASHftvolcite] = ACTIONS(5145), + [anon_sym_BSLASHsvolcite] = ACTIONS(5145), + [anon_sym_BSLASHSvolcite] = ACTIONS(5145), + [anon_sym_BSLASHtvolcite] = ACTIONS(5145), + [anon_sym_BSLASHTvolcite] = ACTIONS(5145), + [anon_sym_BSLASHavolcite] = ACTIONS(5145), + [anon_sym_BSLASHAvolcite] = ACTIONS(5145), + [anon_sym_BSLASHnotecite] = ACTIONS(5145), + [anon_sym_BSLASHNotecite] = ACTIONS(5145), + [anon_sym_BSLASHpnotecite] = ACTIONS(5145), + [anon_sym_BSLASHPnotecite] = ACTIONS(5145), + [anon_sym_BSLASHfnotecite] = ACTIONS(5145), + [anon_sym_BSLASHlabel] = ACTIONS(5145), + [anon_sym_BSLASHref] = ACTIONS(5145), + [anon_sym_BSLASHeqref] = ACTIONS(5145), + [anon_sym_BSLASHvref] = ACTIONS(5145), + [anon_sym_BSLASHVref] = ACTIONS(5145), + [anon_sym_BSLASHautoref] = ACTIONS(5145), + [anon_sym_BSLASHpageref] = ACTIONS(5145), + [anon_sym_BSLASHcref] = ACTIONS(5145), + [anon_sym_BSLASHCref] = ACTIONS(5145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnameCref] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHlabelcref] = ACTIONS(5145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCrefrange] = ACTIONS(5145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnewlabel] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), + [anon_sym_BSLASHdef] = ACTIONS(5145), + [anon_sym_BSLASHlet] = ACTIONS(5145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5145), + [anon_sym_BSLASHgls] = ACTIONS(5145), + [anon_sym_BSLASHGls] = ACTIONS(5145), + [anon_sym_BSLASHGLS] = ACTIONS(5145), + [anon_sym_BSLASHglspl] = ACTIONS(5145), + [anon_sym_BSLASHGlspl] = ACTIONS(5145), + [anon_sym_BSLASHGLSpl] = ACTIONS(5145), + [anon_sym_BSLASHglsdisp] = ACTIONS(5145), + [anon_sym_BSLASHglslink] = ACTIONS(5145), + [anon_sym_BSLASHglstext] = ACTIONS(5145), + [anon_sym_BSLASHGlstext] = ACTIONS(5145), + [anon_sym_BSLASHGLStext] = ACTIONS(5145), + [anon_sym_BSLASHglsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5145), + [anon_sym_BSLASHglsplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSplural] = ACTIONS(5145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHglsname] = ACTIONS(5145), + [anon_sym_BSLASHGlsname] = ACTIONS(5145), + [anon_sym_BSLASHGLSname] = ACTIONS(5145), + [anon_sym_BSLASHglssymbol] = ACTIONS(5145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5145), + [anon_sym_BSLASHglsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5145), + [anon_sym_BSLASHglsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5145), + [anon_sym_BSLASHglsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5145), + [anon_sym_BSLASHglsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5145), + [anon_sym_BSLASHglsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5145), + [anon_sym_BSLASHnewacronym] = ACTIONS(5145), + [anon_sym_BSLASHacrshort] = ACTIONS(5145), + [anon_sym_BSLASHAcrshort] = ACTIONS(5145), + [anon_sym_BSLASHACRshort] = ACTIONS(5145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5145), + [anon_sym_BSLASHacrlong] = ACTIONS(5145), + [anon_sym_BSLASHAcrlong] = ACTIONS(5145), + [anon_sym_BSLASHACRlong] = ACTIONS(5145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5145), + [anon_sym_BSLASHacrfull] = ACTIONS(5145), + [anon_sym_BSLASHAcrfull] = ACTIONS(5145), + [anon_sym_BSLASHACRfull] = ACTIONS(5145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5145), + [anon_sym_BSLASHacs] = ACTIONS(5145), + [anon_sym_BSLASHAcs] = ACTIONS(5145), + [anon_sym_BSLASHacsp] = ACTIONS(5145), + [anon_sym_BSLASHAcsp] = ACTIONS(5145), + [anon_sym_BSLASHacl] = ACTIONS(5145), + [anon_sym_BSLASHAcl] = ACTIONS(5145), + [anon_sym_BSLASHaclp] = ACTIONS(5145), + [anon_sym_BSLASHAclp] = ACTIONS(5145), + [anon_sym_BSLASHacf] = ACTIONS(5145), + [anon_sym_BSLASHAcf] = ACTIONS(5145), + [anon_sym_BSLASHacfp] = ACTIONS(5145), + [anon_sym_BSLASHAcfp] = ACTIONS(5145), + [anon_sym_BSLASHac] = ACTIONS(5145), + [anon_sym_BSLASHAc] = ACTIONS(5145), + [anon_sym_BSLASHacp] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5145), + [anon_sym_BSLASHcolor] = ACTIONS(5145), + [anon_sym_BSLASHcolorbox] = ACTIONS(5145), + [anon_sym_BSLASHtextcolor] = ACTIONS(5145), + [anon_sym_BSLASHpagecolor] = ACTIONS(5145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5145), + [anon_sym_BSLASHtext] = ACTIONS(5145), + [anon_sym_BSLASHintertext] = ACTIONS(5145), + [anon_sym_shortintertext] = ACTIONS(5145), }, - [1021] = { - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_BSLASHpart] = ACTIONS(5159), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddpart] = ACTIONS(5159), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHchapter] = ACTIONS(5159), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddchap] = ACTIONS(5159), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsection] = ACTIONS(5159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddsec] = ACTIONS(5159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHparagraph] = ACTIONS(5159), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHitem] = ACTIONS(5159), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5157), - [anon_sym_BSLASHbegin] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), + [864] = { + [sym_command_name] = ACTIONS(4951), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [anon_sym_RBRACK] = ACTIONS(4949), + [anon_sym_COMMA] = ACTIONS(4949), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_BSLASHpart] = ACTIONS(4951), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddpart] = ACTIONS(4951), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4949), + [anon_sym_BSLASHchapter] = ACTIONS(4951), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddchap] = ACTIONS(4951), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsection] = ACTIONS(4951), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddsec] = ACTIONS(4951), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubsection] = ACTIONS(4951), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4951), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHparagraph] = ACTIONS(4951), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4951), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4949), + [anon_sym_BSLASHitem] = ACTIONS(4951), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4949), + [sym_word] = ACTIONS(4951), + [sym_placeholder] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_STAR] = ACTIONS(4951), + [anon_sym_SLASH] = ACTIONS(4951), + [anon_sym_CARET] = ACTIONS(4951), + [anon_sym__] = ACTIONS(4951), + [anon_sym_LT] = ACTIONS(4951), + [anon_sym_GT] = ACTIONS(4951), + [anon_sym_BANG] = ACTIONS(4951), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_COLON] = ACTIONS(4951), + [anon_sym_SQUOTE] = ACTIONS(4951), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4949), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4949), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4949), + [anon_sym_DOLLAR] = ACTIONS(4951), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4949), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4949), + [anon_sym_BSLASHbegin] = ACTIONS(4951), + [anon_sym_BSLASHusepackage] = ACTIONS(4951), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4951), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4951), + [anon_sym_BSLASHinclude] = ACTIONS(4951), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4951), + [anon_sym_BSLASHinput] = ACTIONS(4951), + [anon_sym_BSLASHsubfile] = ACTIONS(4951), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4951), + [anon_sym_BSLASHbibliography] = ACTIONS(4951), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4951), + [anon_sym_BSLASHincludesvg] = ACTIONS(4951), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4951), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4951), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4951), + [anon_sym_BSLASHimport] = ACTIONS(4951), + [anon_sym_BSLASHsubimport] = ACTIONS(4951), + [anon_sym_BSLASHinputfrom] = ACTIONS(4951), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4951), + [anon_sym_BSLASHincludefrom] = ACTIONS(4951), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4951), + [anon_sym_BSLASHcaption] = ACTIONS(4951), + [anon_sym_BSLASHcite] = ACTIONS(4951), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCite] = ACTIONS(4951), + [anon_sym_BSLASHnocite] = ACTIONS(4951), + [anon_sym_BSLASHcitet] = ACTIONS(4951), + [anon_sym_BSLASHcitep] = ACTIONS(4951), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteauthor] = ACTIONS(4951), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4951), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitetitle] = ACTIONS(4951), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteyear] = ACTIONS(4951), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitedate] = ACTIONS(4951), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteurl] = ACTIONS(4951), + [anon_sym_BSLASHfullcite] = ACTIONS(4951), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4951), + [anon_sym_BSLASHcitealt] = ACTIONS(4951), + [anon_sym_BSLASHcitealp] = ACTIONS(4951), + [anon_sym_BSLASHcitetext] = ACTIONS(4951), + [anon_sym_BSLASHparencite] = ACTIONS(4951), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHParencite] = ACTIONS(4951), + [anon_sym_BSLASHfootcite] = ACTIONS(4951), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4951), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4951), + [anon_sym_BSLASHtextcite] = ACTIONS(4951), + [anon_sym_BSLASHTextcite] = ACTIONS(4951), + [anon_sym_BSLASHsmartcite] = ACTIONS(4951), + [anon_sym_BSLASHSmartcite] = ACTIONS(4951), + [anon_sym_BSLASHsupercite] = ACTIONS(4951), + [anon_sym_BSLASHautocite] = ACTIONS(4951), + [anon_sym_BSLASHAutocite] = ACTIONS(4951), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHvolcite] = ACTIONS(4951), + [anon_sym_BSLASHVolcite] = ACTIONS(4951), + [anon_sym_BSLASHpvolcite] = ACTIONS(4951), + [anon_sym_BSLASHPvolcite] = ACTIONS(4951), + [anon_sym_BSLASHfvolcite] = ACTIONS(4951), + [anon_sym_BSLASHftvolcite] = ACTIONS(4951), + [anon_sym_BSLASHsvolcite] = ACTIONS(4951), + [anon_sym_BSLASHSvolcite] = ACTIONS(4951), + [anon_sym_BSLASHtvolcite] = ACTIONS(4951), + [anon_sym_BSLASHTvolcite] = ACTIONS(4951), + [anon_sym_BSLASHavolcite] = ACTIONS(4951), + [anon_sym_BSLASHAvolcite] = ACTIONS(4951), + [anon_sym_BSLASHnotecite] = ACTIONS(4951), + [anon_sym_BSLASHNotecite] = ACTIONS(4951), + [anon_sym_BSLASHpnotecite] = ACTIONS(4951), + [anon_sym_BSLASHPnotecite] = ACTIONS(4951), + [anon_sym_BSLASHfnotecite] = ACTIONS(4951), + [anon_sym_BSLASHlabel] = ACTIONS(4951), + [anon_sym_BSLASHref] = ACTIONS(4951), + [anon_sym_BSLASHeqref] = ACTIONS(4951), + [anon_sym_BSLASHvref] = ACTIONS(4951), + [anon_sym_BSLASHVref] = ACTIONS(4951), + [anon_sym_BSLASHautoref] = ACTIONS(4951), + [anon_sym_BSLASHpageref] = ACTIONS(4951), + [anon_sym_BSLASHcref] = ACTIONS(4951), + [anon_sym_BSLASHCref] = ACTIONS(4951), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4949), + [anon_sym_BSLASHnamecref] = ACTIONS(4951), + [anon_sym_BSLASHnameCref] = ACTIONS(4951), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4951), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4951), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4951), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4951), + [anon_sym_BSLASHlabelcref] = ACTIONS(4951), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4951), + [anon_sym_BSLASHcrefrange] = ACTIONS(4951), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCrefrange] = ACTIONS(4951), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4949), + [anon_sym_BSLASHnewlabel] = ACTIONS(4951), + [anon_sym_BSLASHnewcommand] = ACTIONS(4951), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4951), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4951), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4951), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4949), + [anon_sym_BSLASHdef] = ACTIONS(4951), + [anon_sym_BSLASHlet] = ACTIONS(4951), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4951), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4951), + [anon_sym_BSLASHgls] = ACTIONS(4951), + [anon_sym_BSLASHGls] = ACTIONS(4951), + [anon_sym_BSLASHGLS] = ACTIONS(4951), + [anon_sym_BSLASHglspl] = ACTIONS(4951), + [anon_sym_BSLASHGlspl] = ACTIONS(4951), + [anon_sym_BSLASHGLSpl] = ACTIONS(4951), + [anon_sym_BSLASHglsdisp] = ACTIONS(4951), + [anon_sym_BSLASHglslink] = ACTIONS(4951), + [anon_sym_BSLASHglstext] = ACTIONS(4951), + [anon_sym_BSLASHGlstext] = ACTIONS(4951), + [anon_sym_BSLASHGLStext] = ACTIONS(4951), + [anon_sym_BSLASHglsfirst] = ACTIONS(4951), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4951), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4951), + [anon_sym_BSLASHglsplural] = ACTIONS(4951), + [anon_sym_BSLASHGlsplural] = ACTIONS(4951), + [anon_sym_BSLASHGLSplural] = ACTIONS(4951), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHglsname] = ACTIONS(4951), + [anon_sym_BSLASHGlsname] = ACTIONS(4951), + [anon_sym_BSLASHGLSname] = ACTIONS(4951), + [anon_sym_BSLASHglssymbol] = ACTIONS(4951), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4951), + [anon_sym_BSLASHglsdesc] = ACTIONS(4951), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4951), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4951), + [anon_sym_BSLASHglsuseri] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4951), + [anon_sym_BSLASHglsuserii] = ACTIONS(4951), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4951), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4951), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4951), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4951), + [anon_sym_BSLASHglsuserv] = ACTIONS(4951), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4951), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4951), + [anon_sym_BSLASHglsuservi] = ACTIONS(4951), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4951), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4951), + [anon_sym_BSLASHnewacronym] = ACTIONS(4951), + [anon_sym_BSLASHacrshort] = ACTIONS(4951), + [anon_sym_BSLASHAcrshort] = ACTIONS(4951), + [anon_sym_BSLASHACRshort] = ACTIONS(4951), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4951), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4951), + [anon_sym_BSLASHacrlong] = ACTIONS(4951), + [anon_sym_BSLASHAcrlong] = ACTIONS(4951), + [anon_sym_BSLASHACRlong] = ACTIONS(4951), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4951), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4951), + [anon_sym_BSLASHacrfull] = ACTIONS(4951), + [anon_sym_BSLASHAcrfull] = ACTIONS(4951), + [anon_sym_BSLASHACRfull] = ACTIONS(4951), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4951), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4951), + [anon_sym_BSLASHacs] = ACTIONS(4951), + [anon_sym_BSLASHAcs] = ACTIONS(4951), + [anon_sym_BSLASHacsp] = ACTIONS(4951), + [anon_sym_BSLASHAcsp] = ACTIONS(4951), + [anon_sym_BSLASHacl] = ACTIONS(4951), + [anon_sym_BSLASHAcl] = ACTIONS(4951), + [anon_sym_BSLASHaclp] = ACTIONS(4951), + [anon_sym_BSLASHAclp] = ACTIONS(4951), + [anon_sym_BSLASHacf] = ACTIONS(4951), + [anon_sym_BSLASHAcf] = ACTIONS(4951), + [anon_sym_BSLASHacfp] = ACTIONS(4951), + [anon_sym_BSLASHAcfp] = ACTIONS(4951), + [anon_sym_BSLASHac] = ACTIONS(4951), + [anon_sym_BSLASHAc] = ACTIONS(4951), + [anon_sym_BSLASHacp] = ACTIONS(4951), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4951), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4951), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4951), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4951), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4951), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4951), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4951), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4951), + [anon_sym_BSLASHcolor] = ACTIONS(4951), + [anon_sym_BSLASHcolorbox] = ACTIONS(4951), + [anon_sym_BSLASHtextcolor] = ACTIONS(4951), + [anon_sym_BSLASHpagecolor] = ACTIONS(4951), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4951), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4951), + [anon_sym_BSLASHtext] = ACTIONS(4951), + [anon_sym_BSLASHintertext] = ACTIONS(4951), + [anon_sym_shortintertext] = ACTIONS(4951), }, - [1022] = { - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_BSLASHpart] = ACTIONS(5167), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddpart] = ACTIONS(5167), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHchapter] = ACTIONS(5167), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddchap] = ACTIONS(5167), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsection] = ACTIONS(5167), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddsec] = ACTIONS(5167), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHparagraph] = ACTIONS(5167), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHitem] = ACTIONS(5167), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5165), - [anon_sym_BSLASHbegin] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), + [865] = { + [sym_command_name] = ACTIONS(4955), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_EQ] = ACTIONS(4953), + [anon_sym_BSLASHpart] = ACTIONS(4955), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddpart] = ACTIONS(4955), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4953), + [anon_sym_BSLASHchapter] = ACTIONS(4955), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddchap] = ACTIONS(4955), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsection] = ACTIONS(4955), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddsec] = ACTIONS(4955), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubsection] = ACTIONS(4955), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4955), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHparagraph] = ACTIONS(4955), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4955), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4953), + [anon_sym_BSLASHitem] = ACTIONS(4955), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4953), + [sym_word] = ACTIONS(4955), + [sym_placeholder] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4955), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), + [anon_sym__] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(4955), + [anon_sym_SQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4953), + [anon_sym_DOLLAR] = ACTIONS(4955), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), + [anon_sym_BSLASHbegin] = ACTIONS(4955), + [anon_sym_BSLASHusepackage] = ACTIONS(4955), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), + [anon_sym_BSLASHinclude] = ACTIONS(4955), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), + [anon_sym_BSLASHinput] = ACTIONS(4955), + [anon_sym_BSLASHsubfile] = ACTIONS(4955), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), + [anon_sym_BSLASHbibliography] = ACTIONS(4955), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), + [anon_sym_BSLASHincludesvg] = ACTIONS(4955), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), + [anon_sym_BSLASHimport] = ACTIONS(4955), + [anon_sym_BSLASHsubimport] = ACTIONS(4955), + [anon_sym_BSLASHinputfrom] = ACTIONS(4955), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), + [anon_sym_BSLASHincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHcaption] = ACTIONS(4955), + [anon_sym_BSLASHcite] = ACTIONS(4955), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCite] = ACTIONS(4955), + [anon_sym_BSLASHnocite] = ACTIONS(4955), + [anon_sym_BSLASHcitet] = ACTIONS(4955), + [anon_sym_BSLASHcitep] = ACTIONS(4955), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteauthor] = ACTIONS(4955), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitetitle] = ACTIONS(4955), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteyear] = ACTIONS(4955), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitedate] = ACTIONS(4955), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteurl] = ACTIONS(4955), + [anon_sym_BSLASHfullcite] = ACTIONS(4955), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), + [anon_sym_BSLASHcitealt] = ACTIONS(4955), + [anon_sym_BSLASHcitealp] = ACTIONS(4955), + [anon_sym_BSLASHcitetext] = ACTIONS(4955), + [anon_sym_BSLASHparencite] = ACTIONS(4955), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHParencite] = ACTIONS(4955), + [anon_sym_BSLASHfootcite] = ACTIONS(4955), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), + [anon_sym_BSLASHtextcite] = ACTIONS(4955), + [anon_sym_BSLASHTextcite] = ACTIONS(4955), + [anon_sym_BSLASHsmartcite] = ACTIONS(4955), + [anon_sym_BSLASHSmartcite] = ACTIONS(4955), + [anon_sym_BSLASHsupercite] = ACTIONS(4955), + [anon_sym_BSLASHautocite] = ACTIONS(4955), + [anon_sym_BSLASHAutocite] = ACTIONS(4955), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHvolcite] = ACTIONS(4955), + [anon_sym_BSLASHVolcite] = ACTIONS(4955), + [anon_sym_BSLASHpvolcite] = ACTIONS(4955), + [anon_sym_BSLASHPvolcite] = ACTIONS(4955), + [anon_sym_BSLASHfvolcite] = ACTIONS(4955), + [anon_sym_BSLASHftvolcite] = ACTIONS(4955), + [anon_sym_BSLASHsvolcite] = ACTIONS(4955), + [anon_sym_BSLASHSvolcite] = ACTIONS(4955), + [anon_sym_BSLASHtvolcite] = ACTIONS(4955), + [anon_sym_BSLASHTvolcite] = ACTIONS(4955), + [anon_sym_BSLASHavolcite] = ACTIONS(4955), + [anon_sym_BSLASHAvolcite] = ACTIONS(4955), + [anon_sym_BSLASHnotecite] = ACTIONS(4955), + [anon_sym_BSLASHNotecite] = ACTIONS(4955), + [anon_sym_BSLASHpnotecite] = ACTIONS(4955), + [anon_sym_BSLASHPnotecite] = ACTIONS(4955), + [anon_sym_BSLASHfnotecite] = ACTIONS(4955), + [anon_sym_BSLASHlabel] = ACTIONS(4955), + [anon_sym_BSLASHref] = ACTIONS(4955), + [anon_sym_BSLASHeqref] = ACTIONS(4955), + [anon_sym_BSLASHvref] = ACTIONS(4955), + [anon_sym_BSLASHVref] = ACTIONS(4955), + [anon_sym_BSLASHautoref] = ACTIONS(4955), + [anon_sym_BSLASHpageref] = ACTIONS(4955), + [anon_sym_BSLASHcref] = ACTIONS(4955), + [anon_sym_BSLASHCref] = ACTIONS(4955), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnameCref] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHlabelcref] = ACTIONS(4955), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCrefrange] = ACTIONS(4955), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnewlabel] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), + [anon_sym_BSLASHdef] = ACTIONS(4955), + [anon_sym_BSLASHlet] = ACTIONS(4955), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), + [anon_sym_BSLASHgls] = ACTIONS(4955), + [anon_sym_BSLASHGls] = ACTIONS(4955), + [anon_sym_BSLASHGLS] = ACTIONS(4955), + [anon_sym_BSLASHglspl] = ACTIONS(4955), + [anon_sym_BSLASHGlspl] = ACTIONS(4955), + [anon_sym_BSLASHGLSpl] = ACTIONS(4955), + [anon_sym_BSLASHglsdisp] = ACTIONS(4955), + [anon_sym_BSLASHglslink] = ACTIONS(4955), + [anon_sym_BSLASHglstext] = ACTIONS(4955), + [anon_sym_BSLASHGlstext] = ACTIONS(4955), + [anon_sym_BSLASHGLStext] = ACTIONS(4955), + [anon_sym_BSLASHglsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), + [anon_sym_BSLASHglsplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSplural] = ACTIONS(4955), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHglsname] = ACTIONS(4955), + [anon_sym_BSLASHGlsname] = ACTIONS(4955), + [anon_sym_BSLASHGLSname] = ACTIONS(4955), + [anon_sym_BSLASHglssymbol] = ACTIONS(4955), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), + [anon_sym_BSLASHglsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), + [anon_sym_BSLASHglsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), + [anon_sym_BSLASHglsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), + [anon_sym_BSLASHglsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), + [anon_sym_BSLASHglsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), + [anon_sym_BSLASHnewacronym] = ACTIONS(4955), + [anon_sym_BSLASHacrshort] = ACTIONS(4955), + [anon_sym_BSLASHAcrshort] = ACTIONS(4955), + [anon_sym_BSLASHACRshort] = ACTIONS(4955), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), + [anon_sym_BSLASHacrlong] = ACTIONS(4955), + [anon_sym_BSLASHAcrlong] = ACTIONS(4955), + [anon_sym_BSLASHACRlong] = ACTIONS(4955), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), + [anon_sym_BSLASHacrfull] = ACTIONS(4955), + [anon_sym_BSLASHAcrfull] = ACTIONS(4955), + [anon_sym_BSLASHACRfull] = ACTIONS(4955), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), + [anon_sym_BSLASHacs] = ACTIONS(4955), + [anon_sym_BSLASHAcs] = ACTIONS(4955), + [anon_sym_BSLASHacsp] = ACTIONS(4955), + [anon_sym_BSLASHAcsp] = ACTIONS(4955), + [anon_sym_BSLASHacl] = ACTIONS(4955), + [anon_sym_BSLASHAcl] = ACTIONS(4955), + [anon_sym_BSLASHaclp] = ACTIONS(4955), + [anon_sym_BSLASHAclp] = ACTIONS(4955), + [anon_sym_BSLASHacf] = ACTIONS(4955), + [anon_sym_BSLASHAcf] = ACTIONS(4955), + [anon_sym_BSLASHacfp] = ACTIONS(4955), + [anon_sym_BSLASHAcfp] = ACTIONS(4955), + [anon_sym_BSLASHac] = ACTIONS(4955), + [anon_sym_BSLASHAc] = ACTIONS(4955), + [anon_sym_BSLASHacp] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), + [anon_sym_BSLASHcolor] = ACTIONS(4955), + [anon_sym_BSLASHcolorbox] = ACTIONS(4955), + [anon_sym_BSLASHtextcolor] = ACTIONS(4955), + [anon_sym_BSLASHpagecolor] = ACTIONS(4955), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), + [anon_sym_BSLASHtext] = ACTIONS(4955), + [anon_sym_BSLASHintertext] = ACTIONS(4955), + [anon_sym_shortintertext] = ACTIONS(4955), + }, + [866] = { + [sym_command_name] = ACTIONS(4887), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_LBRACK] = ACTIONS(4885), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_BSLASHpart] = ACTIONS(4887), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddpart] = ACTIONS(4887), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4885), + [anon_sym_BSLASHchapter] = ACTIONS(4887), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddchap] = ACTIONS(4887), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsection] = ACTIONS(4887), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddsec] = ACTIONS(4887), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubsection] = ACTIONS(4887), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4887), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHparagraph] = ACTIONS(4887), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4887), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4885), + [anon_sym_BSLASHitem] = ACTIONS(4887), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4885), + [sym_word] = ACTIONS(4887), + [sym_placeholder] = ACTIONS(4885), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym__] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_COLON] = ACTIONS(4887), + [anon_sym_SQUOTE] = ACTIONS(4887), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), + [anon_sym_BSLASHbegin] = ACTIONS(4887), + [anon_sym_BSLASHusepackage] = ACTIONS(4887), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), + [anon_sym_BSLASHinclude] = ACTIONS(4887), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), + [anon_sym_BSLASHinput] = ACTIONS(4887), + [anon_sym_BSLASHsubfile] = ACTIONS(4887), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), + [anon_sym_BSLASHbibliography] = ACTIONS(4887), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), + [anon_sym_BSLASHincludesvg] = ACTIONS(4887), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), + [anon_sym_BSLASHimport] = ACTIONS(4887), + [anon_sym_BSLASHsubimport] = ACTIONS(4887), + [anon_sym_BSLASHinputfrom] = ACTIONS(4887), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), + [anon_sym_BSLASHincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHcaption] = ACTIONS(4887), + [anon_sym_BSLASHcite] = ACTIONS(4887), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCite] = ACTIONS(4887), + [anon_sym_BSLASHnocite] = ACTIONS(4887), + [anon_sym_BSLASHcitet] = ACTIONS(4887), + [anon_sym_BSLASHcitep] = ACTIONS(4887), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteauthor] = ACTIONS(4887), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitetitle] = ACTIONS(4887), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteyear] = ACTIONS(4887), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitedate] = ACTIONS(4887), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteurl] = ACTIONS(4887), + [anon_sym_BSLASHfullcite] = ACTIONS(4887), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), + [anon_sym_BSLASHcitealt] = ACTIONS(4887), + [anon_sym_BSLASHcitealp] = ACTIONS(4887), + [anon_sym_BSLASHcitetext] = ACTIONS(4887), + [anon_sym_BSLASHparencite] = ACTIONS(4887), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHParencite] = ACTIONS(4887), + [anon_sym_BSLASHfootcite] = ACTIONS(4887), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), + [anon_sym_BSLASHtextcite] = ACTIONS(4887), + [anon_sym_BSLASHTextcite] = ACTIONS(4887), + [anon_sym_BSLASHsmartcite] = ACTIONS(4887), + [anon_sym_BSLASHSmartcite] = ACTIONS(4887), + [anon_sym_BSLASHsupercite] = ACTIONS(4887), + [anon_sym_BSLASHautocite] = ACTIONS(4887), + [anon_sym_BSLASHAutocite] = ACTIONS(4887), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHvolcite] = ACTIONS(4887), + [anon_sym_BSLASHVolcite] = ACTIONS(4887), + [anon_sym_BSLASHpvolcite] = ACTIONS(4887), + [anon_sym_BSLASHPvolcite] = ACTIONS(4887), + [anon_sym_BSLASHfvolcite] = ACTIONS(4887), + [anon_sym_BSLASHftvolcite] = ACTIONS(4887), + [anon_sym_BSLASHsvolcite] = ACTIONS(4887), + [anon_sym_BSLASHSvolcite] = ACTIONS(4887), + [anon_sym_BSLASHtvolcite] = ACTIONS(4887), + [anon_sym_BSLASHTvolcite] = ACTIONS(4887), + [anon_sym_BSLASHavolcite] = ACTIONS(4887), + [anon_sym_BSLASHAvolcite] = ACTIONS(4887), + [anon_sym_BSLASHnotecite] = ACTIONS(4887), + [anon_sym_BSLASHNotecite] = ACTIONS(4887), + [anon_sym_BSLASHpnotecite] = ACTIONS(4887), + [anon_sym_BSLASHPnotecite] = ACTIONS(4887), + [anon_sym_BSLASHfnotecite] = ACTIONS(4887), + [anon_sym_BSLASHlabel] = ACTIONS(4887), + [anon_sym_BSLASHref] = ACTIONS(4887), + [anon_sym_BSLASHeqref] = ACTIONS(4887), + [anon_sym_BSLASHvref] = ACTIONS(4887), + [anon_sym_BSLASHVref] = ACTIONS(4887), + [anon_sym_BSLASHautoref] = ACTIONS(4887), + [anon_sym_BSLASHpageref] = ACTIONS(4887), + [anon_sym_BSLASHcref] = ACTIONS(4887), + [anon_sym_BSLASHCref] = ACTIONS(4887), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnameCref] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHlabelcref] = ACTIONS(4887), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCrefrange] = ACTIONS(4887), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnewlabel] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), + [anon_sym_BSLASHdef] = ACTIONS(4887), + [anon_sym_BSLASHlet] = ACTIONS(4887), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), + [anon_sym_BSLASHgls] = ACTIONS(4887), + [anon_sym_BSLASHGls] = ACTIONS(4887), + [anon_sym_BSLASHGLS] = ACTIONS(4887), + [anon_sym_BSLASHglspl] = ACTIONS(4887), + [anon_sym_BSLASHGlspl] = ACTIONS(4887), + [anon_sym_BSLASHGLSpl] = ACTIONS(4887), + [anon_sym_BSLASHglsdisp] = ACTIONS(4887), + [anon_sym_BSLASHglslink] = ACTIONS(4887), + [anon_sym_BSLASHglstext] = ACTIONS(4887), + [anon_sym_BSLASHGlstext] = ACTIONS(4887), + [anon_sym_BSLASHGLStext] = ACTIONS(4887), + [anon_sym_BSLASHglsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), + [anon_sym_BSLASHglsplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSplural] = ACTIONS(4887), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHglsname] = ACTIONS(4887), + [anon_sym_BSLASHGlsname] = ACTIONS(4887), + [anon_sym_BSLASHGLSname] = ACTIONS(4887), + [anon_sym_BSLASHglssymbol] = ACTIONS(4887), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), + [anon_sym_BSLASHglsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), + [anon_sym_BSLASHglsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), + [anon_sym_BSLASHglsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), + [anon_sym_BSLASHglsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), + [anon_sym_BSLASHglsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), + [anon_sym_BSLASHnewacronym] = ACTIONS(4887), + [anon_sym_BSLASHacrshort] = ACTIONS(4887), + [anon_sym_BSLASHAcrshort] = ACTIONS(4887), + [anon_sym_BSLASHACRshort] = ACTIONS(4887), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), + [anon_sym_BSLASHacrlong] = ACTIONS(4887), + [anon_sym_BSLASHAcrlong] = ACTIONS(4887), + [anon_sym_BSLASHACRlong] = ACTIONS(4887), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), + [anon_sym_BSLASHacrfull] = ACTIONS(4887), + [anon_sym_BSLASHAcrfull] = ACTIONS(4887), + [anon_sym_BSLASHACRfull] = ACTIONS(4887), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), + [anon_sym_BSLASHacs] = ACTIONS(4887), + [anon_sym_BSLASHAcs] = ACTIONS(4887), + [anon_sym_BSLASHacsp] = ACTIONS(4887), + [anon_sym_BSLASHAcsp] = ACTIONS(4887), + [anon_sym_BSLASHacl] = ACTIONS(4887), + [anon_sym_BSLASHAcl] = ACTIONS(4887), + [anon_sym_BSLASHaclp] = ACTIONS(4887), + [anon_sym_BSLASHAclp] = ACTIONS(4887), + [anon_sym_BSLASHacf] = ACTIONS(4887), + [anon_sym_BSLASHAcf] = ACTIONS(4887), + [anon_sym_BSLASHacfp] = ACTIONS(4887), + [anon_sym_BSLASHAcfp] = ACTIONS(4887), + [anon_sym_BSLASHac] = ACTIONS(4887), + [anon_sym_BSLASHAc] = ACTIONS(4887), + [anon_sym_BSLASHacp] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), + [anon_sym_BSLASHcolor] = ACTIONS(4887), + [anon_sym_BSLASHcolorbox] = ACTIONS(4887), + [anon_sym_BSLASHtextcolor] = ACTIONS(4887), + [anon_sym_BSLASHpagecolor] = ACTIONS(4887), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), + [anon_sym_BSLASHtext] = ACTIONS(4887), + [anon_sym_BSLASHintertext] = ACTIONS(4887), + [anon_sym_shortintertext] = ACTIONS(4887), + }, + [867] = { + [sym_command_name] = ACTIONS(5105), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_RPAREN] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_RBRACK] = ACTIONS(5103), + [anon_sym_COMMA] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_BSLASHpart] = ACTIONS(5105), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), + [anon_sym_BSLASHaddpart] = ACTIONS(5105), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), + [anon_sym_BSLASHchapter] = ACTIONS(5105), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), + [anon_sym_BSLASHaddchap] = ACTIONS(5105), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsection] = ACTIONS(5105), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), + [anon_sym_BSLASHaddsec] = ACTIONS(5105), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsubsection] = ACTIONS(5105), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), + [anon_sym_BSLASHparagraph] = ACTIONS(5105), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), + [anon_sym_BSLASHitem] = ACTIONS(5105), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5103), + [sym_word] = ACTIONS(5105), + [sym_placeholder] = ACTIONS(5103), + [anon_sym_PLUS] = ACTIONS(5105), + [anon_sym_DASH] = ACTIONS(5105), + [anon_sym_STAR] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5105), + [anon_sym_CARET] = ACTIONS(5105), + [anon_sym__] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5105), + [anon_sym_GT] = ACTIONS(5105), + [anon_sym_BANG] = ACTIONS(5105), + [anon_sym_PIPE] = ACTIONS(5105), + [anon_sym_COLON] = ACTIONS(5105), + [anon_sym_SQUOTE] = ACTIONS(5105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), + [anon_sym_DOLLAR] = ACTIONS(5105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), + [anon_sym_BSLASHbegin] = ACTIONS(5105), + [anon_sym_BSLASHusepackage] = ACTIONS(5105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), + [anon_sym_BSLASHinclude] = ACTIONS(5105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), + [anon_sym_BSLASHinput] = ACTIONS(5105), + [anon_sym_BSLASHsubfile] = ACTIONS(5105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), + [anon_sym_BSLASHbibliography] = ACTIONS(5105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), + [anon_sym_BSLASHincludesvg] = ACTIONS(5105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), + [anon_sym_BSLASHimport] = ACTIONS(5105), + [anon_sym_BSLASHsubimport] = ACTIONS(5105), + [anon_sym_BSLASHinputfrom] = ACTIONS(5105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), + [anon_sym_BSLASHincludefrom] = ACTIONS(5105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), + [anon_sym_BSLASHcaption] = ACTIONS(5105), + [anon_sym_BSLASHcite] = ACTIONS(5105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCite] = ACTIONS(5105), + [anon_sym_BSLASHnocite] = ACTIONS(5105), + [anon_sym_BSLASHcitet] = ACTIONS(5105), + [anon_sym_BSLASHcitep] = ACTIONS(5105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteauthor] = ACTIONS(5105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitetitle] = ACTIONS(5105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteyear] = ACTIONS(5105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitedate] = ACTIONS(5105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteurl] = ACTIONS(5105), + [anon_sym_BSLASHfullcite] = ACTIONS(5105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), + [anon_sym_BSLASHcitealt] = ACTIONS(5105), + [anon_sym_BSLASHcitealp] = ACTIONS(5105), + [anon_sym_BSLASHcitetext] = ACTIONS(5105), + [anon_sym_BSLASHparencite] = ACTIONS(5105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHParencite] = ACTIONS(5105), + [anon_sym_BSLASHfootcite] = ACTIONS(5105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), + [anon_sym_BSLASHtextcite] = ACTIONS(5105), + [anon_sym_BSLASHTextcite] = ACTIONS(5105), + [anon_sym_BSLASHsmartcite] = ACTIONS(5105), + [anon_sym_BSLASHSmartcite] = ACTIONS(5105), + [anon_sym_BSLASHsupercite] = ACTIONS(5105), + [anon_sym_BSLASHautocite] = ACTIONS(5105), + [anon_sym_BSLASHAutocite] = ACTIONS(5105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHvolcite] = ACTIONS(5105), + [anon_sym_BSLASHVolcite] = ACTIONS(5105), + [anon_sym_BSLASHpvolcite] = ACTIONS(5105), + [anon_sym_BSLASHPvolcite] = ACTIONS(5105), + [anon_sym_BSLASHfvolcite] = ACTIONS(5105), + [anon_sym_BSLASHftvolcite] = ACTIONS(5105), + [anon_sym_BSLASHsvolcite] = ACTIONS(5105), + [anon_sym_BSLASHSvolcite] = ACTIONS(5105), + [anon_sym_BSLASHtvolcite] = ACTIONS(5105), + [anon_sym_BSLASHTvolcite] = ACTIONS(5105), + [anon_sym_BSLASHavolcite] = ACTIONS(5105), + [anon_sym_BSLASHAvolcite] = ACTIONS(5105), + [anon_sym_BSLASHnotecite] = ACTIONS(5105), + [anon_sym_BSLASHNotecite] = ACTIONS(5105), + [anon_sym_BSLASHpnotecite] = ACTIONS(5105), + [anon_sym_BSLASHPnotecite] = ACTIONS(5105), + [anon_sym_BSLASHfnotecite] = ACTIONS(5105), + [anon_sym_BSLASHlabel] = ACTIONS(5105), + [anon_sym_BSLASHref] = ACTIONS(5105), + [anon_sym_BSLASHeqref] = ACTIONS(5105), + [anon_sym_BSLASHvref] = ACTIONS(5105), + [anon_sym_BSLASHVref] = ACTIONS(5105), + [anon_sym_BSLASHautoref] = ACTIONS(5105), + [anon_sym_BSLASHpageref] = ACTIONS(5105), + [anon_sym_BSLASHcref] = ACTIONS(5105), + [anon_sym_BSLASHCref] = ACTIONS(5105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), + [anon_sym_BSLASHnamecref] = ACTIONS(5105), + [anon_sym_BSLASHnameCref] = ACTIONS(5105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), + [anon_sym_BSLASHlabelcref] = ACTIONS(5105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), + [anon_sym_BSLASHcrefrange] = ACTIONS(5105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCrefrange] = ACTIONS(5105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), + [anon_sym_BSLASHnewlabel] = ACTIONS(5105), + [anon_sym_BSLASHnewcommand] = ACTIONS(5105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), + [anon_sym_BSLASHdef] = ACTIONS(5105), + [anon_sym_BSLASHlet] = ACTIONS(5105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), + [anon_sym_BSLASHgls] = ACTIONS(5105), + [anon_sym_BSLASHGls] = ACTIONS(5105), + [anon_sym_BSLASHGLS] = ACTIONS(5105), + [anon_sym_BSLASHglspl] = ACTIONS(5105), + [anon_sym_BSLASHGlspl] = ACTIONS(5105), + [anon_sym_BSLASHGLSpl] = ACTIONS(5105), + [anon_sym_BSLASHglsdisp] = ACTIONS(5105), + [anon_sym_BSLASHglslink] = ACTIONS(5105), + [anon_sym_BSLASHglstext] = ACTIONS(5105), + [anon_sym_BSLASHGlstext] = ACTIONS(5105), + [anon_sym_BSLASHGLStext] = ACTIONS(5105), + [anon_sym_BSLASHglsfirst] = ACTIONS(5105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), + [anon_sym_BSLASHglsplural] = ACTIONS(5105), + [anon_sym_BSLASHGlsplural] = ACTIONS(5105), + [anon_sym_BSLASHGLSplural] = ACTIONS(5105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHglsname] = ACTIONS(5105), + [anon_sym_BSLASHGlsname] = ACTIONS(5105), + [anon_sym_BSLASHGLSname] = ACTIONS(5105), + [anon_sym_BSLASHglssymbol] = ACTIONS(5105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), + [anon_sym_BSLASHglsdesc] = ACTIONS(5105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), + [anon_sym_BSLASHglsuseri] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), + [anon_sym_BSLASHglsuserii] = ACTIONS(5105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), + [anon_sym_BSLASHglsuserv] = ACTIONS(5105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), + [anon_sym_BSLASHglsuservi] = ACTIONS(5105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), + [anon_sym_BSLASHnewacronym] = ACTIONS(5105), + [anon_sym_BSLASHacrshort] = ACTIONS(5105), + [anon_sym_BSLASHAcrshort] = ACTIONS(5105), + [anon_sym_BSLASHACRshort] = ACTIONS(5105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), + [anon_sym_BSLASHacrlong] = ACTIONS(5105), + [anon_sym_BSLASHAcrlong] = ACTIONS(5105), + [anon_sym_BSLASHACRlong] = ACTIONS(5105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), + [anon_sym_BSLASHacrfull] = ACTIONS(5105), + [anon_sym_BSLASHAcrfull] = ACTIONS(5105), + [anon_sym_BSLASHACRfull] = ACTIONS(5105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), + [anon_sym_BSLASHacs] = ACTIONS(5105), + [anon_sym_BSLASHAcs] = ACTIONS(5105), + [anon_sym_BSLASHacsp] = ACTIONS(5105), + [anon_sym_BSLASHAcsp] = ACTIONS(5105), + [anon_sym_BSLASHacl] = ACTIONS(5105), + [anon_sym_BSLASHAcl] = ACTIONS(5105), + [anon_sym_BSLASHaclp] = ACTIONS(5105), + [anon_sym_BSLASHAclp] = ACTIONS(5105), + [anon_sym_BSLASHacf] = ACTIONS(5105), + [anon_sym_BSLASHAcf] = ACTIONS(5105), + [anon_sym_BSLASHacfp] = ACTIONS(5105), + [anon_sym_BSLASHAcfp] = ACTIONS(5105), + [anon_sym_BSLASHac] = ACTIONS(5105), + [anon_sym_BSLASHAc] = ACTIONS(5105), + [anon_sym_BSLASHacp] = ACTIONS(5105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), + [anon_sym_BSLASHcolor] = ACTIONS(5105), + [anon_sym_BSLASHcolorbox] = ACTIONS(5105), + [anon_sym_BSLASHtextcolor] = ACTIONS(5105), + [anon_sym_BSLASHpagecolor] = ACTIONS(5105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), + [anon_sym_BSLASHtext] = ACTIONS(5105), + [anon_sym_BSLASHintertext] = ACTIONS(5105), + [anon_sym_shortintertext] = ACTIONS(5105), + }, + [868] = { + [sym_command_name] = ACTIONS(5101), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5099), + [anon_sym_RPAREN] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [anon_sym_RBRACK] = ACTIONS(5099), + [anon_sym_COMMA] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_BSLASHpart] = ACTIONS(5101), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddpart] = ACTIONS(5101), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), + [anon_sym_BSLASHchapter] = ACTIONS(5101), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddchap] = ACTIONS(5101), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsection] = ACTIONS(5101), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddsec] = ACTIONS(5101), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubsection] = ACTIONS(5101), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHparagraph] = ACTIONS(5101), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), + [anon_sym_BSLASHitem] = ACTIONS(5101), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5099), + [sym_word] = ACTIONS(5101), + [sym_placeholder] = ACTIONS(5099), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_CARET] = ACTIONS(5101), + [anon_sym__] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_BANG] = ACTIONS(5101), + [anon_sym_PIPE] = ACTIONS(5101), + [anon_sym_COLON] = ACTIONS(5101), + [anon_sym_SQUOTE] = ACTIONS(5101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), + [anon_sym_DOLLAR] = ACTIONS(5101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), + [anon_sym_BSLASHbegin] = ACTIONS(5101), + [anon_sym_BSLASHusepackage] = ACTIONS(5101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), + [anon_sym_BSLASHinclude] = ACTIONS(5101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), + [anon_sym_BSLASHinput] = ACTIONS(5101), + [anon_sym_BSLASHsubfile] = ACTIONS(5101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), + [anon_sym_BSLASHbibliography] = ACTIONS(5101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), + [anon_sym_BSLASHincludesvg] = ACTIONS(5101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), + [anon_sym_BSLASHimport] = ACTIONS(5101), + [anon_sym_BSLASHsubimport] = ACTIONS(5101), + [anon_sym_BSLASHinputfrom] = ACTIONS(5101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), + [anon_sym_BSLASHincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHcaption] = ACTIONS(5101), + [anon_sym_BSLASHcite] = ACTIONS(5101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCite] = ACTIONS(5101), + [anon_sym_BSLASHnocite] = ACTIONS(5101), + [anon_sym_BSLASHcitet] = ACTIONS(5101), + [anon_sym_BSLASHcitep] = ACTIONS(5101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteauthor] = ACTIONS(5101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitetitle] = ACTIONS(5101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteyear] = ACTIONS(5101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitedate] = ACTIONS(5101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteurl] = ACTIONS(5101), + [anon_sym_BSLASHfullcite] = ACTIONS(5101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), + [anon_sym_BSLASHcitealt] = ACTIONS(5101), + [anon_sym_BSLASHcitealp] = ACTIONS(5101), + [anon_sym_BSLASHcitetext] = ACTIONS(5101), + [anon_sym_BSLASHparencite] = ACTIONS(5101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHParencite] = ACTIONS(5101), + [anon_sym_BSLASHfootcite] = ACTIONS(5101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), + [anon_sym_BSLASHtextcite] = ACTIONS(5101), + [anon_sym_BSLASHTextcite] = ACTIONS(5101), + [anon_sym_BSLASHsmartcite] = ACTIONS(5101), + [anon_sym_BSLASHSmartcite] = ACTIONS(5101), + [anon_sym_BSLASHsupercite] = ACTIONS(5101), + [anon_sym_BSLASHautocite] = ACTIONS(5101), + [anon_sym_BSLASHAutocite] = ACTIONS(5101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHvolcite] = ACTIONS(5101), + [anon_sym_BSLASHVolcite] = ACTIONS(5101), + [anon_sym_BSLASHpvolcite] = ACTIONS(5101), + [anon_sym_BSLASHPvolcite] = ACTIONS(5101), + [anon_sym_BSLASHfvolcite] = ACTIONS(5101), + [anon_sym_BSLASHftvolcite] = ACTIONS(5101), + [anon_sym_BSLASHsvolcite] = ACTIONS(5101), + [anon_sym_BSLASHSvolcite] = ACTIONS(5101), + [anon_sym_BSLASHtvolcite] = ACTIONS(5101), + [anon_sym_BSLASHTvolcite] = ACTIONS(5101), + [anon_sym_BSLASHavolcite] = ACTIONS(5101), + [anon_sym_BSLASHAvolcite] = ACTIONS(5101), + [anon_sym_BSLASHnotecite] = ACTIONS(5101), + [anon_sym_BSLASHNotecite] = ACTIONS(5101), + [anon_sym_BSLASHpnotecite] = ACTIONS(5101), + [anon_sym_BSLASHPnotecite] = ACTIONS(5101), + [anon_sym_BSLASHfnotecite] = ACTIONS(5101), + [anon_sym_BSLASHlabel] = ACTIONS(5101), + [anon_sym_BSLASHref] = ACTIONS(5101), + [anon_sym_BSLASHeqref] = ACTIONS(5101), + [anon_sym_BSLASHvref] = ACTIONS(5101), + [anon_sym_BSLASHVref] = ACTIONS(5101), + [anon_sym_BSLASHautoref] = ACTIONS(5101), + [anon_sym_BSLASHpageref] = ACTIONS(5101), + [anon_sym_BSLASHcref] = ACTIONS(5101), + [anon_sym_BSLASHCref] = ACTIONS(5101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), + [anon_sym_BSLASHnamecref] = ACTIONS(5101), + [anon_sym_BSLASHnameCref] = ACTIONS(5101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), + [anon_sym_BSLASHlabelcref] = ACTIONS(5101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), + [anon_sym_BSLASHcrefrange] = ACTIONS(5101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCrefrange] = ACTIONS(5101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), + [anon_sym_BSLASHnewlabel] = ACTIONS(5101), + [anon_sym_BSLASHnewcommand] = ACTIONS(5101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), + [anon_sym_BSLASHdef] = ACTIONS(5101), + [anon_sym_BSLASHlet] = ACTIONS(5101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), + [anon_sym_BSLASHgls] = ACTIONS(5101), + [anon_sym_BSLASHGls] = ACTIONS(5101), + [anon_sym_BSLASHGLS] = ACTIONS(5101), + [anon_sym_BSLASHglspl] = ACTIONS(5101), + [anon_sym_BSLASHGlspl] = ACTIONS(5101), + [anon_sym_BSLASHGLSpl] = ACTIONS(5101), + [anon_sym_BSLASHglsdisp] = ACTIONS(5101), + [anon_sym_BSLASHglslink] = ACTIONS(5101), + [anon_sym_BSLASHglstext] = ACTIONS(5101), + [anon_sym_BSLASHGlstext] = ACTIONS(5101), + [anon_sym_BSLASHGLStext] = ACTIONS(5101), + [anon_sym_BSLASHglsfirst] = ACTIONS(5101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), + [anon_sym_BSLASHglsplural] = ACTIONS(5101), + [anon_sym_BSLASHGlsplural] = ACTIONS(5101), + [anon_sym_BSLASHGLSplural] = ACTIONS(5101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHglsname] = ACTIONS(5101), + [anon_sym_BSLASHGlsname] = ACTIONS(5101), + [anon_sym_BSLASHGLSname] = ACTIONS(5101), + [anon_sym_BSLASHglssymbol] = ACTIONS(5101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), + [anon_sym_BSLASHglsdesc] = ACTIONS(5101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), + [anon_sym_BSLASHglsuseri] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), + [anon_sym_BSLASHglsuserii] = ACTIONS(5101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), + [anon_sym_BSLASHglsuserv] = ACTIONS(5101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), + [anon_sym_BSLASHglsuservi] = ACTIONS(5101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), + [anon_sym_BSLASHnewacronym] = ACTIONS(5101), + [anon_sym_BSLASHacrshort] = ACTIONS(5101), + [anon_sym_BSLASHAcrshort] = ACTIONS(5101), + [anon_sym_BSLASHACRshort] = ACTIONS(5101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), + [anon_sym_BSLASHacrlong] = ACTIONS(5101), + [anon_sym_BSLASHAcrlong] = ACTIONS(5101), + [anon_sym_BSLASHACRlong] = ACTIONS(5101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), + [anon_sym_BSLASHacrfull] = ACTIONS(5101), + [anon_sym_BSLASHAcrfull] = ACTIONS(5101), + [anon_sym_BSLASHACRfull] = ACTIONS(5101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), + [anon_sym_BSLASHacs] = ACTIONS(5101), + [anon_sym_BSLASHAcs] = ACTIONS(5101), + [anon_sym_BSLASHacsp] = ACTIONS(5101), + [anon_sym_BSLASHAcsp] = ACTIONS(5101), + [anon_sym_BSLASHacl] = ACTIONS(5101), + [anon_sym_BSLASHAcl] = ACTIONS(5101), + [anon_sym_BSLASHaclp] = ACTIONS(5101), + [anon_sym_BSLASHAclp] = ACTIONS(5101), + [anon_sym_BSLASHacf] = ACTIONS(5101), + [anon_sym_BSLASHAcf] = ACTIONS(5101), + [anon_sym_BSLASHacfp] = ACTIONS(5101), + [anon_sym_BSLASHAcfp] = ACTIONS(5101), + [anon_sym_BSLASHac] = ACTIONS(5101), + [anon_sym_BSLASHAc] = ACTIONS(5101), + [anon_sym_BSLASHacp] = ACTIONS(5101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), + [anon_sym_BSLASHcolor] = ACTIONS(5101), + [anon_sym_BSLASHcolorbox] = ACTIONS(5101), + [anon_sym_BSLASHtextcolor] = ACTIONS(5101), + [anon_sym_BSLASHpagecolor] = ACTIONS(5101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), + [anon_sym_BSLASHtext] = ACTIONS(5101), + [anon_sym_BSLASHintertext] = ACTIONS(5101), + [anon_sym_shortintertext] = ACTIONS(5101), }, - [1023] = { - [sym_command_name] = ACTIONS(5259), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5259), - [anon_sym_LPAREN] = ACTIONS(5257), - [anon_sym_RPAREN] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(5257), - [anon_sym_RBRACK] = ACTIONS(5257), - [anon_sym_COMMA] = ACTIONS(5257), - [anon_sym_EQ] = ACTIONS(5257), - [anon_sym_BSLASHpart] = ACTIONS(5259), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddpart] = ACTIONS(5259), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5257), - [anon_sym_BSLASHchapter] = ACTIONS(5259), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddchap] = ACTIONS(5259), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsection] = ACTIONS(5259), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddsec] = ACTIONS(5259), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubsection] = ACTIONS(5259), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5259), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHparagraph] = ACTIONS(5259), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5259), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5257), - [anon_sym_BSLASHitem] = ACTIONS(5259), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5257), - [anon_sym_LBRACE] = ACTIONS(5257), - [sym_word] = ACTIONS(5259), - [sym_placeholder] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5259), - [anon_sym_STAR] = ACTIONS(5259), - [anon_sym_SLASH] = ACTIONS(5259), - [anon_sym_CARET] = ACTIONS(5259), - [anon_sym__] = ACTIONS(5259), - [anon_sym_LT] = ACTIONS(5259), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_BANG] = ACTIONS(5259), - [anon_sym_PIPE] = ACTIONS(5259), - [anon_sym_COLON] = ACTIONS(5259), - [anon_sym_SQUOTE] = ACTIONS(5259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5257), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5257), - [anon_sym_DOLLAR] = ACTIONS(5259), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5257), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5257), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5257), - [anon_sym_BSLASHbegin] = ACTIONS(5259), - [anon_sym_BSLASHusepackage] = ACTIONS(5259), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5259), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5259), - [anon_sym_BSLASHinclude] = ACTIONS(5259), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5259), - [anon_sym_BSLASHinput] = ACTIONS(5259), - [anon_sym_BSLASHsubfile] = ACTIONS(5259), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5259), - [anon_sym_BSLASHbibliography] = ACTIONS(5259), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5259), - [anon_sym_BSLASHincludesvg] = ACTIONS(5259), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5259), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5259), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5259), - [anon_sym_BSLASHimport] = ACTIONS(5259), - [anon_sym_BSLASHsubimport] = ACTIONS(5259), - [anon_sym_BSLASHinputfrom] = ACTIONS(5259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5259), - [anon_sym_BSLASHincludefrom] = ACTIONS(5259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5259), - [anon_sym_BSLASHcaption] = ACTIONS(5259), - [anon_sym_BSLASHcite] = ACTIONS(5259), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCite] = ACTIONS(5259), - [anon_sym_BSLASHnocite] = ACTIONS(5259), - [anon_sym_BSLASHcitet] = ACTIONS(5259), - [anon_sym_BSLASHcitep] = ACTIONS(5259), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteauthor] = ACTIONS(5259), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5259), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitetitle] = ACTIONS(5259), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteyear] = ACTIONS(5259), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitedate] = ACTIONS(5259), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteurl] = ACTIONS(5259), - [anon_sym_BSLASHfullcite] = ACTIONS(5259), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5259), - [anon_sym_BSLASHcitealt] = ACTIONS(5259), - [anon_sym_BSLASHcitealp] = ACTIONS(5259), - [anon_sym_BSLASHcitetext] = ACTIONS(5259), - [anon_sym_BSLASHparencite] = ACTIONS(5259), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHParencite] = ACTIONS(5259), - [anon_sym_BSLASHfootcite] = ACTIONS(5259), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5259), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5259), - [anon_sym_BSLASHtextcite] = ACTIONS(5259), - [anon_sym_BSLASHTextcite] = ACTIONS(5259), - [anon_sym_BSLASHsmartcite] = ACTIONS(5259), - [anon_sym_BSLASHSmartcite] = ACTIONS(5259), - [anon_sym_BSLASHsupercite] = ACTIONS(5259), - [anon_sym_BSLASHautocite] = ACTIONS(5259), - [anon_sym_BSLASHAutocite] = ACTIONS(5259), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHvolcite] = ACTIONS(5259), - [anon_sym_BSLASHVolcite] = ACTIONS(5259), - [anon_sym_BSLASHpvolcite] = ACTIONS(5259), - [anon_sym_BSLASHPvolcite] = ACTIONS(5259), - [anon_sym_BSLASHfvolcite] = ACTIONS(5259), - [anon_sym_BSLASHftvolcite] = ACTIONS(5259), - [anon_sym_BSLASHsvolcite] = ACTIONS(5259), - [anon_sym_BSLASHSvolcite] = ACTIONS(5259), - [anon_sym_BSLASHtvolcite] = ACTIONS(5259), - [anon_sym_BSLASHTvolcite] = ACTIONS(5259), - [anon_sym_BSLASHavolcite] = ACTIONS(5259), - [anon_sym_BSLASHAvolcite] = ACTIONS(5259), - [anon_sym_BSLASHnotecite] = ACTIONS(5259), - [anon_sym_BSLASHNotecite] = ACTIONS(5259), - [anon_sym_BSLASHpnotecite] = ACTIONS(5259), - [anon_sym_BSLASHPnotecite] = ACTIONS(5259), - [anon_sym_BSLASHfnotecite] = ACTIONS(5259), - [anon_sym_BSLASHlabel] = ACTIONS(5259), - [anon_sym_BSLASHref] = ACTIONS(5259), - [anon_sym_BSLASHeqref] = ACTIONS(5259), - [anon_sym_BSLASHvref] = ACTIONS(5259), - [anon_sym_BSLASHVref] = ACTIONS(5259), - [anon_sym_BSLASHautoref] = ACTIONS(5259), - [anon_sym_BSLASHpageref] = ACTIONS(5259), - [anon_sym_BSLASHcref] = ACTIONS(5259), - [anon_sym_BSLASHCref] = ACTIONS(5259), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5257), - [anon_sym_BSLASHnamecref] = ACTIONS(5259), - [anon_sym_BSLASHnameCref] = ACTIONS(5259), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5259), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5259), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5259), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5259), - [anon_sym_BSLASHlabelcref] = ACTIONS(5259), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5259), - [anon_sym_BSLASHcrefrange] = ACTIONS(5259), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCrefrange] = ACTIONS(5259), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5257), - [anon_sym_BSLASHnewlabel] = ACTIONS(5259), - [anon_sym_BSLASHnewcommand] = ACTIONS(5259), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5259), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5259), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5259), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5257), - [anon_sym_BSLASHdef] = ACTIONS(5259), - [anon_sym_BSLASHlet] = ACTIONS(5259), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5259), - [anon_sym_BSLASHgls] = ACTIONS(5259), - [anon_sym_BSLASHGls] = ACTIONS(5259), - [anon_sym_BSLASHGLS] = ACTIONS(5259), - [anon_sym_BSLASHglspl] = ACTIONS(5259), - [anon_sym_BSLASHGlspl] = ACTIONS(5259), - [anon_sym_BSLASHGLSpl] = ACTIONS(5259), - [anon_sym_BSLASHglsdisp] = ACTIONS(5259), - [anon_sym_BSLASHglslink] = ACTIONS(5259), - [anon_sym_BSLASHglstext] = ACTIONS(5259), - [anon_sym_BSLASHGlstext] = ACTIONS(5259), - [anon_sym_BSLASHGLStext] = ACTIONS(5259), - [anon_sym_BSLASHglsfirst] = ACTIONS(5259), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5259), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5259), - [anon_sym_BSLASHglsplural] = ACTIONS(5259), - [anon_sym_BSLASHGlsplural] = ACTIONS(5259), - [anon_sym_BSLASHGLSplural] = ACTIONS(5259), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHglsname] = ACTIONS(5259), - [anon_sym_BSLASHGlsname] = ACTIONS(5259), - [anon_sym_BSLASHGLSname] = ACTIONS(5259), - [anon_sym_BSLASHglssymbol] = ACTIONS(5259), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5259), - [anon_sym_BSLASHglsdesc] = ACTIONS(5259), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5259), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5259), - [anon_sym_BSLASHglsuseri] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5259), - [anon_sym_BSLASHglsuserii] = ACTIONS(5259), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5259), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5259), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5259), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5259), - [anon_sym_BSLASHglsuserv] = ACTIONS(5259), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5259), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5259), - [anon_sym_BSLASHglsuservi] = ACTIONS(5259), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5259), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5259), - [anon_sym_BSLASHnewacronym] = ACTIONS(5259), - [anon_sym_BSLASHacrshort] = ACTIONS(5259), - [anon_sym_BSLASHAcrshort] = ACTIONS(5259), - [anon_sym_BSLASHACRshort] = ACTIONS(5259), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5259), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5259), - [anon_sym_BSLASHacrlong] = ACTIONS(5259), - [anon_sym_BSLASHAcrlong] = ACTIONS(5259), - [anon_sym_BSLASHACRlong] = ACTIONS(5259), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5259), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5259), - [anon_sym_BSLASHacrfull] = ACTIONS(5259), - [anon_sym_BSLASHAcrfull] = ACTIONS(5259), - [anon_sym_BSLASHACRfull] = ACTIONS(5259), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5259), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5259), - [anon_sym_BSLASHacs] = ACTIONS(5259), - [anon_sym_BSLASHAcs] = ACTIONS(5259), - [anon_sym_BSLASHacsp] = ACTIONS(5259), - [anon_sym_BSLASHAcsp] = ACTIONS(5259), - [anon_sym_BSLASHacl] = ACTIONS(5259), - [anon_sym_BSLASHAcl] = ACTIONS(5259), - [anon_sym_BSLASHaclp] = ACTIONS(5259), - [anon_sym_BSLASHAclp] = ACTIONS(5259), - [anon_sym_BSLASHacf] = ACTIONS(5259), - [anon_sym_BSLASHAcf] = ACTIONS(5259), - [anon_sym_BSLASHacfp] = ACTIONS(5259), - [anon_sym_BSLASHAcfp] = ACTIONS(5259), - [anon_sym_BSLASHac] = ACTIONS(5259), - [anon_sym_BSLASHAc] = ACTIONS(5259), - [anon_sym_BSLASHacp] = ACTIONS(5259), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5259), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5259), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5259), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5259), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5259), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5259), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5259), - [anon_sym_BSLASHcolor] = ACTIONS(5259), - [anon_sym_BSLASHcolorbox] = ACTIONS(5259), - [anon_sym_BSLASHtextcolor] = ACTIONS(5259), - [anon_sym_BSLASHpagecolor] = ACTIONS(5259), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5259), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5259), + [869] = { + [sym_command_name] = ACTIONS(5097), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5095), + [anon_sym_RPAREN] = ACTIONS(5095), + [anon_sym_LBRACK] = ACTIONS(5095), + [anon_sym_RBRACK] = ACTIONS(5095), + [anon_sym_COMMA] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_BSLASHpart] = ACTIONS(5097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddpart] = ACTIONS(5097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), + [anon_sym_BSLASHchapter] = ACTIONS(5097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddchap] = ACTIONS(5097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsection] = ACTIONS(5097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddsec] = ACTIONS(5097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubsection] = ACTIONS(5097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHparagraph] = ACTIONS(5097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), + [anon_sym_BSLASHitem] = ACTIONS(5097), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5095), + [sym_word] = ACTIONS(5097), + [sym_placeholder] = ACTIONS(5095), + [anon_sym_PLUS] = ACTIONS(5097), + [anon_sym_DASH] = ACTIONS(5097), + [anon_sym_STAR] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5097), + [anon_sym_CARET] = ACTIONS(5097), + [anon_sym__] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5097), + [anon_sym_GT] = ACTIONS(5097), + [anon_sym_BANG] = ACTIONS(5097), + [anon_sym_PIPE] = ACTIONS(5097), + [anon_sym_COLON] = ACTIONS(5097), + [anon_sym_SQUOTE] = ACTIONS(5097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), + [anon_sym_DOLLAR] = ACTIONS(5097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), + [anon_sym_BSLASHbegin] = ACTIONS(5097), + [anon_sym_BSLASHusepackage] = ACTIONS(5097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), + [anon_sym_BSLASHinclude] = ACTIONS(5097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), + [anon_sym_BSLASHinput] = ACTIONS(5097), + [anon_sym_BSLASHsubfile] = ACTIONS(5097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), + [anon_sym_BSLASHbibliography] = ACTIONS(5097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), + [anon_sym_BSLASHincludesvg] = ACTIONS(5097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), + [anon_sym_BSLASHimport] = ACTIONS(5097), + [anon_sym_BSLASHsubimport] = ACTIONS(5097), + [anon_sym_BSLASHinputfrom] = ACTIONS(5097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), + [anon_sym_BSLASHincludefrom] = ACTIONS(5097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), + [anon_sym_BSLASHcaption] = ACTIONS(5097), + [anon_sym_BSLASHcite] = ACTIONS(5097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCite] = ACTIONS(5097), + [anon_sym_BSLASHnocite] = ACTIONS(5097), + [anon_sym_BSLASHcitet] = ACTIONS(5097), + [anon_sym_BSLASHcitep] = ACTIONS(5097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteauthor] = ACTIONS(5097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitetitle] = ACTIONS(5097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteyear] = ACTIONS(5097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitedate] = ACTIONS(5097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteurl] = ACTIONS(5097), + [anon_sym_BSLASHfullcite] = ACTIONS(5097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), + [anon_sym_BSLASHcitealt] = ACTIONS(5097), + [anon_sym_BSLASHcitealp] = ACTIONS(5097), + [anon_sym_BSLASHcitetext] = ACTIONS(5097), + [anon_sym_BSLASHparencite] = ACTIONS(5097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHParencite] = ACTIONS(5097), + [anon_sym_BSLASHfootcite] = ACTIONS(5097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), + [anon_sym_BSLASHtextcite] = ACTIONS(5097), + [anon_sym_BSLASHTextcite] = ACTIONS(5097), + [anon_sym_BSLASHsmartcite] = ACTIONS(5097), + [anon_sym_BSLASHSmartcite] = ACTIONS(5097), + [anon_sym_BSLASHsupercite] = ACTIONS(5097), + [anon_sym_BSLASHautocite] = ACTIONS(5097), + [anon_sym_BSLASHAutocite] = ACTIONS(5097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHvolcite] = ACTIONS(5097), + [anon_sym_BSLASHVolcite] = ACTIONS(5097), + [anon_sym_BSLASHpvolcite] = ACTIONS(5097), + [anon_sym_BSLASHPvolcite] = ACTIONS(5097), + [anon_sym_BSLASHfvolcite] = ACTIONS(5097), + [anon_sym_BSLASHftvolcite] = ACTIONS(5097), + [anon_sym_BSLASHsvolcite] = ACTIONS(5097), + [anon_sym_BSLASHSvolcite] = ACTIONS(5097), + [anon_sym_BSLASHtvolcite] = ACTIONS(5097), + [anon_sym_BSLASHTvolcite] = ACTIONS(5097), + [anon_sym_BSLASHavolcite] = ACTIONS(5097), + [anon_sym_BSLASHAvolcite] = ACTIONS(5097), + [anon_sym_BSLASHnotecite] = ACTIONS(5097), + [anon_sym_BSLASHNotecite] = ACTIONS(5097), + [anon_sym_BSLASHpnotecite] = ACTIONS(5097), + [anon_sym_BSLASHPnotecite] = ACTIONS(5097), + [anon_sym_BSLASHfnotecite] = ACTIONS(5097), + [anon_sym_BSLASHlabel] = ACTIONS(5097), + [anon_sym_BSLASHref] = ACTIONS(5097), + [anon_sym_BSLASHeqref] = ACTIONS(5097), + [anon_sym_BSLASHvref] = ACTIONS(5097), + [anon_sym_BSLASHVref] = ACTIONS(5097), + [anon_sym_BSLASHautoref] = ACTIONS(5097), + [anon_sym_BSLASHpageref] = ACTIONS(5097), + [anon_sym_BSLASHcref] = ACTIONS(5097), + [anon_sym_BSLASHCref] = ACTIONS(5097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), + [anon_sym_BSLASHnamecref] = ACTIONS(5097), + [anon_sym_BSLASHnameCref] = ACTIONS(5097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), + [anon_sym_BSLASHlabelcref] = ACTIONS(5097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), + [anon_sym_BSLASHcrefrange] = ACTIONS(5097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCrefrange] = ACTIONS(5097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), + [anon_sym_BSLASHnewlabel] = ACTIONS(5097), + [anon_sym_BSLASHnewcommand] = ACTIONS(5097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), + [anon_sym_BSLASHdef] = ACTIONS(5097), + [anon_sym_BSLASHlet] = ACTIONS(5097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), + [anon_sym_BSLASHgls] = ACTIONS(5097), + [anon_sym_BSLASHGls] = ACTIONS(5097), + [anon_sym_BSLASHGLS] = ACTIONS(5097), + [anon_sym_BSLASHglspl] = ACTIONS(5097), + [anon_sym_BSLASHGlspl] = ACTIONS(5097), + [anon_sym_BSLASHGLSpl] = ACTIONS(5097), + [anon_sym_BSLASHglsdisp] = ACTIONS(5097), + [anon_sym_BSLASHglslink] = ACTIONS(5097), + [anon_sym_BSLASHglstext] = ACTIONS(5097), + [anon_sym_BSLASHGlstext] = ACTIONS(5097), + [anon_sym_BSLASHGLStext] = ACTIONS(5097), + [anon_sym_BSLASHglsfirst] = ACTIONS(5097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), + [anon_sym_BSLASHglsplural] = ACTIONS(5097), + [anon_sym_BSLASHGlsplural] = ACTIONS(5097), + [anon_sym_BSLASHGLSplural] = ACTIONS(5097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHglsname] = ACTIONS(5097), + [anon_sym_BSLASHGlsname] = ACTIONS(5097), + [anon_sym_BSLASHGLSname] = ACTIONS(5097), + [anon_sym_BSLASHglssymbol] = ACTIONS(5097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), + [anon_sym_BSLASHglsdesc] = ACTIONS(5097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), + [anon_sym_BSLASHglsuseri] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), + [anon_sym_BSLASHglsuserii] = ACTIONS(5097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), + [anon_sym_BSLASHglsuserv] = ACTIONS(5097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), + [anon_sym_BSLASHglsuservi] = ACTIONS(5097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), + [anon_sym_BSLASHnewacronym] = ACTIONS(5097), + [anon_sym_BSLASHacrshort] = ACTIONS(5097), + [anon_sym_BSLASHAcrshort] = ACTIONS(5097), + [anon_sym_BSLASHACRshort] = ACTIONS(5097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), + [anon_sym_BSLASHacrlong] = ACTIONS(5097), + [anon_sym_BSLASHAcrlong] = ACTIONS(5097), + [anon_sym_BSLASHACRlong] = ACTIONS(5097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), + [anon_sym_BSLASHacrfull] = ACTIONS(5097), + [anon_sym_BSLASHAcrfull] = ACTIONS(5097), + [anon_sym_BSLASHACRfull] = ACTIONS(5097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), + [anon_sym_BSLASHacs] = ACTIONS(5097), + [anon_sym_BSLASHAcs] = ACTIONS(5097), + [anon_sym_BSLASHacsp] = ACTIONS(5097), + [anon_sym_BSLASHAcsp] = ACTIONS(5097), + [anon_sym_BSLASHacl] = ACTIONS(5097), + [anon_sym_BSLASHAcl] = ACTIONS(5097), + [anon_sym_BSLASHaclp] = ACTIONS(5097), + [anon_sym_BSLASHAclp] = ACTIONS(5097), + [anon_sym_BSLASHacf] = ACTIONS(5097), + [anon_sym_BSLASHAcf] = ACTIONS(5097), + [anon_sym_BSLASHacfp] = ACTIONS(5097), + [anon_sym_BSLASHAcfp] = ACTIONS(5097), + [anon_sym_BSLASHac] = ACTIONS(5097), + [anon_sym_BSLASHAc] = ACTIONS(5097), + [anon_sym_BSLASHacp] = ACTIONS(5097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), + [anon_sym_BSLASHcolor] = ACTIONS(5097), + [anon_sym_BSLASHcolorbox] = ACTIONS(5097), + [anon_sym_BSLASHtextcolor] = ACTIONS(5097), + [anon_sym_BSLASHpagecolor] = ACTIONS(5097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), + [anon_sym_BSLASHtext] = ACTIONS(5097), + [anon_sym_BSLASHintertext] = ACTIONS(5097), + [anon_sym_shortintertext] = ACTIONS(5097), }, - [1024] = { - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_BSLASHpart] = ACTIONS(5179), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddpart] = ACTIONS(5179), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHchapter] = ACTIONS(5179), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddchap] = ACTIONS(5179), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsection] = ACTIONS(5179), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddsec] = ACTIONS(5179), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHparagraph] = ACTIONS(5179), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHitem] = ACTIONS(5179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5177), - [anon_sym_BSLASHbegin] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), + [870] = { + [sym_command_name] = ACTIONS(5093), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_RBRACK] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5091), + [anon_sym_BSLASHpart] = ACTIONS(5093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddpart] = ACTIONS(5093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), + [anon_sym_BSLASHchapter] = ACTIONS(5093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddchap] = ACTIONS(5093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsection] = ACTIONS(5093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddsec] = ACTIONS(5093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubsection] = ACTIONS(5093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHparagraph] = ACTIONS(5093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), + [anon_sym_BSLASHitem] = ACTIONS(5093), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), + [anon_sym_LBRACE] = ACTIONS(5091), + [sym_word] = ACTIONS(5093), + [sym_placeholder] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(5093), + [anon_sym_STAR] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5093), + [anon_sym_CARET] = ACTIONS(5093), + [anon_sym__] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5093), + [anon_sym_GT] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(5093), + [anon_sym_PIPE] = ACTIONS(5093), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_SQUOTE] = ACTIONS(5093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), + [anon_sym_DOLLAR] = ACTIONS(5093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), + [anon_sym_BSLASHbegin] = ACTIONS(5093), + [anon_sym_BSLASHusepackage] = ACTIONS(5093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), + [anon_sym_BSLASHinclude] = ACTIONS(5093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), + [anon_sym_BSLASHinput] = ACTIONS(5093), + [anon_sym_BSLASHsubfile] = ACTIONS(5093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), + [anon_sym_BSLASHbibliography] = ACTIONS(5093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), + [anon_sym_BSLASHincludesvg] = ACTIONS(5093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), + [anon_sym_BSLASHimport] = ACTIONS(5093), + [anon_sym_BSLASHsubimport] = ACTIONS(5093), + [anon_sym_BSLASHinputfrom] = ACTIONS(5093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), + [anon_sym_BSLASHincludefrom] = ACTIONS(5093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), + [anon_sym_BSLASHcaption] = ACTIONS(5093), + [anon_sym_BSLASHcite] = ACTIONS(5093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCite] = ACTIONS(5093), + [anon_sym_BSLASHnocite] = ACTIONS(5093), + [anon_sym_BSLASHcitet] = ACTIONS(5093), + [anon_sym_BSLASHcitep] = ACTIONS(5093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteauthor] = ACTIONS(5093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitetitle] = ACTIONS(5093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteyear] = ACTIONS(5093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitedate] = ACTIONS(5093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteurl] = ACTIONS(5093), + [anon_sym_BSLASHfullcite] = ACTIONS(5093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), + [anon_sym_BSLASHcitealt] = ACTIONS(5093), + [anon_sym_BSLASHcitealp] = ACTIONS(5093), + [anon_sym_BSLASHcitetext] = ACTIONS(5093), + [anon_sym_BSLASHparencite] = ACTIONS(5093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHParencite] = ACTIONS(5093), + [anon_sym_BSLASHfootcite] = ACTIONS(5093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), + [anon_sym_BSLASHtextcite] = ACTIONS(5093), + [anon_sym_BSLASHTextcite] = ACTIONS(5093), + [anon_sym_BSLASHsmartcite] = ACTIONS(5093), + [anon_sym_BSLASHSmartcite] = ACTIONS(5093), + [anon_sym_BSLASHsupercite] = ACTIONS(5093), + [anon_sym_BSLASHautocite] = ACTIONS(5093), + [anon_sym_BSLASHAutocite] = ACTIONS(5093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHvolcite] = ACTIONS(5093), + [anon_sym_BSLASHVolcite] = ACTIONS(5093), + [anon_sym_BSLASHpvolcite] = ACTIONS(5093), + [anon_sym_BSLASHPvolcite] = ACTIONS(5093), + [anon_sym_BSLASHfvolcite] = ACTIONS(5093), + [anon_sym_BSLASHftvolcite] = ACTIONS(5093), + [anon_sym_BSLASHsvolcite] = ACTIONS(5093), + [anon_sym_BSLASHSvolcite] = ACTIONS(5093), + [anon_sym_BSLASHtvolcite] = ACTIONS(5093), + [anon_sym_BSLASHTvolcite] = ACTIONS(5093), + [anon_sym_BSLASHavolcite] = ACTIONS(5093), + [anon_sym_BSLASHAvolcite] = ACTIONS(5093), + [anon_sym_BSLASHnotecite] = ACTIONS(5093), + [anon_sym_BSLASHNotecite] = ACTIONS(5093), + [anon_sym_BSLASHpnotecite] = ACTIONS(5093), + [anon_sym_BSLASHPnotecite] = ACTIONS(5093), + [anon_sym_BSLASHfnotecite] = ACTIONS(5093), + [anon_sym_BSLASHlabel] = ACTIONS(5093), + [anon_sym_BSLASHref] = ACTIONS(5093), + [anon_sym_BSLASHeqref] = ACTIONS(5093), + [anon_sym_BSLASHvref] = ACTIONS(5093), + [anon_sym_BSLASHVref] = ACTIONS(5093), + [anon_sym_BSLASHautoref] = ACTIONS(5093), + [anon_sym_BSLASHpageref] = ACTIONS(5093), + [anon_sym_BSLASHcref] = ACTIONS(5093), + [anon_sym_BSLASHCref] = ACTIONS(5093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), + [anon_sym_BSLASHnamecref] = ACTIONS(5093), + [anon_sym_BSLASHnameCref] = ACTIONS(5093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), + [anon_sym_BSLASHlabelcref] = ACTIONS(5093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), + [anon_sym_BSLASHcrefrange] = ACTIONS(5093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCrefrange] = ACTIONS(5093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), + [anon_sym_BSLASHnewlabel] = ACTIONS(5093), + [anon_sym_BSLASHnewcommand] = ACTIONS(5093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), + [anon_sym_BSLASHdef] = ACTIONS(5093), + [anon_sym_BSLASHlet] = ACTIONS(5093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), + [anon_sym_BSLASHgls] = ACTIONS(5093), + [anon_sym_BSLASHGls] = ACTIONS(5093), + [anon_sym_BSLASHGLS] = ACTIONS(5093), + [anon_sym_BSLASHglspl] = ACTIONS(5093), + [anon_sym_BSLASHGlspl] = ACTIONS(5093), + [anon_sym_BSLASHGLSpl] = ACTIONS(5093), + [anon_sym_BSLASHglsdisp] = ACTIONS(5093), + [anon_sym_BSLASHglslink] = ACTIONS(5093), + [anon_sym_BSLASHglstext] = ACTIONS(5093), + [anon_sym_BSLASHGlstext] = ACTIONS(5093), + [anon_sym_BSLASHGLStext] = ACTIONS(5093), + [anon_sym_BSLASHglsfirst] = ACTIONS(5093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), + [anon_sym_BSLASHglsplural] = ACTIONS(5093), + [anon_sym_BSLASHGlsplural] = ACTIONS(5093), + [anon_sym_BSLASHGLSplural] = ACTIONS(5093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHglsname] = ACTIONS(5093), + [anon_sym_BSLASHGlsname] = ACTIONS(5093), + [anon_sym_BSLASHGLSname] = ACTIONS(5093), + [anon_sym_BSLASHglssymbol] = ACTIONS(5093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), + [anon_sym_BSLASHglsdesc] = ACTIONS(5093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), + [anon_sym_BSLASHglsuseri] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), + [anon_sym_BSLASHglsuserii] = ACTIONS(5093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), + [anon_sym_BSLASHglsuserv] = ACTIONS(5093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), + [anon_sym_BSLASHglsuservi] = ACTIONS(5093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), + [anon_sym_BSLASHnewacronym] = ACTIONS(5093), + [anon_sym_BSLASHacrshort] = ACTIONS(5093), + [anon_sym_BSLASHAcrshort] = ACTIONS(5093), + [anon_sym_BSLASHACRshort] = ACTIONS(5093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), + [anon_sym_BSLASHacrlong] = ACTIONS(5093), + [anon_sym_BSLASHAcrlong] = ACTIONS(5093), + [anon_sym_BSLASHACRlong] = ACTIONS(5093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), + [anon_sym_BSLASHacrfull] = ACTIONS(5093), + [anon_sym_BSLASHAcrfull] = ACTIONS(5093), + [anon_sym_BSLASHACRfull] = ACTIONS(5093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), + [anon_sym_BSLASHacs] = ACTIONS(5093), + [anon_sym_BSLASHAcs] = ACTIONS(5093), + [anon_sym_BSLASHacsp] = ACTIONS(5093), + [anon_sym_BSLASHAcsp] = ACTIONS(5093), + [anon_sym_BSLASHacl] = ACTIONS(5093), + [anon_sym_BSLASHAcl] = ACTIONS(5093), + [anon_sym_BSLASHaclp] = ACTIONS(5093), + [anon_sym_BSLASHAclp] = ACTIONS(5093), + [anon_sym_BSLASHacf] = ACTIONS(5093), + [anon_sym_BSLASHAcf] = ACTIONS(5093), + [anon_sym_BSLASHacfp] = ACTIONS(5093), + [anon_sym_BSLASHAcfp] = ACTIONS(5093), + [anon_sym_BSLASHac] = ACTIONS(5093), + [anon_sym_BSLASHAc] = ACTIONS(5093), + [anon_sym_BSLASHacp] = ACTIONS(5093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), + [anon_sym_BSLASHcolor] = ACTIONS(5093), + [anon_sym_BSLASHcolorbox] = ACTIONS(5093), + [anon_sym_BSLASHtextcolor] = ACTIONS(5093), + [anon_sym_BSLASHpagecolor] = ACTIONS(5093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHtext] = ACTIONS(5093), + [anon_sym_BSLASHintertext] = ACTIONS(5093), + [anon_sym_shortintertext] = ACTIONS(5093), }, - [1025] = { - [sym_command_name] = ACTIONS(4945), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4943), - [anon_sym_RBRACK] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_BSLASHpart] = ACTIONS(4945), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddpart] = ACTIONS(4945), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4943), - [anon_sym_BSLASHchapter] = ACTIONS(4945), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddchap] = ACTIONS(4945), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsection] = ACTIONS(4945), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddsec] = ACTIONS(4945), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubsection] = ACTIONS(4945), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4945), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHparagraph] = ACTIONS(4945), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4945), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4943), - [anon_sym_BSLASHitem] = ACTIONS(4945), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [sym_word] = ACTIONS(4945), - [sym_placeholder] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4945), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_STAR] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym__] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4945), - [anon_sym_BANG] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(4945), - [anon_sym_COLON] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4945), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4943), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4945), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4943), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4943), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4943), - [anon_sym_BSLASHbegin] = ACTIONS(4945), - [anon_sym_BSLASHusepackage] = ACTIONS(4945), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4945), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4945), - [anon_sym_BSLASHinclude] = ACTIONS(4945), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4945), - [anon_sym_BSLASHinput] = ACTIONS(4945), - [anon_sym_BSLASHsubfile] = ACTIONS(4945), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4945), - [anon_sym_BSLASHbibliography] = ACTIONS(4945), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4945), - [anon_sym_BSLASHincludesvg] = ACTIONS(4945), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4945), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4945), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4945), - [anon_sym_BSLASHimport] = ACTIONS(4945), - [anon_sym_BSLASHsubimport] = ACTIONS(4945), - [anon_sym_BSLASHinputfrom] = ACTIONS(4945), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4945), - [anon_sym_BSLASHincludefrom] = ACTIONS(4945), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4945), - [anon_sym_BSLASHcaption] = ACTIONS(4945), - [anon_sym_BSLASHcite] = ACTIONS(4945), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCite] = ACTIONS(4945), - [anon_sym_BSLASHnocite] = ACTIONS(4945), - [anon_sym_BSLASHcitet] = ACTIONS(4945), - [anon_sym_BSLASHcitep] = ACTIONS(4945), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteauthor] = ACTIONS(4945), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4945), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitetitle] = ACTIONS(4945), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteyear] = ACTIONS(4945), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitedate] = ACTIONS(4945), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteurl] = ACTIONS(4945), - [anon_sym_BSLASHfullcite] = ACTIONS(4945), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4945), - [anon_sym_BSLASHcitealt] = ACTIONS(4945), - [anon_sym_BSLASHcitealp] = ACTIONS(4945), - [anon_sym_BSLASHcitetext] = ACTIONS(4945), - [anon_sym_BSLASHparencite] = ACTIONS(4945), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHParencite] = ACTIONS(4945), - [anon_sym_BSLASHfootcite] = ACTIONS(4945), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4945), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4945), - [anon_sym_BSLASHtextcite] = ACTIONS(4945), - [anon_sym_BSLASHTextcite] = ACTIONS(4945), - [anon_sym_BSLASHsmartcite] = ACTIONS(4945), - [anon_sym_BSLASHSmartcite] = ACTIONS(4945), - [anon_sym_BSLASHsupercite] = ACTIONS(4945), - [anon_sym_BSLASHautocite] = ACTIONS(4945), - [anon_sym_BSLASHAutocite] = ACTIONS(4945), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHvolcite] = ACTIONS(4945), - [anon_sym_BSLASHVolcite] = ACTIONS(4945), - [anon_sym_BSLASHpvolcite] = ACTIONS(4945), - [anon_sym_BSLASHPvolcite] = ACTIONS(4945), - [anon_sym_BSLASHfvolcite] = ACTIONS(4945), - [anon_sym_BSLASHftvolcite] = ACTIONS(4945), - [anon_sym_BSLASHsvolcite] = ACTIONS(4945), - [anon_sym_BSLASHSvolcite] = ACTIONS(4945), - [anon_sym_BSLASHtvolcite] = ACTIONS(4945), - [anon_sym_BSLASHTvolcite] = ACTIONS(4945), - [anon_sym_BSLASHavolcite] = ACTIONS(4945), - [anon_sym_BSLASHAvolcite] = ACTIONS(4945), - [anon_sym_BSLASHnotecite] = ACTIONS(4945), - [anon_sym_BSLASHNotecite] = ACTIONS(4945), - [anon_sym_BSLASHpnotecite] = ACTIONS(4945), - [anon_sym_BSLASHPnotecite] = ACTIONS(4945), - [anon_sym_BSLASHfnotecite] = ACTIONS(4945), - [anon_sym_BSLASHlabel] = ACTIONS(4945), - [anon_sym_BSLASHref] = ACTIONS(4945), - [anon_sym_BSLASHeqref] = ACTIONS(4945), - [anon_sym_BSLASHvref] = ACTIONS(4945), - [anon_sym_BSLASHVref] = ACTIONS(4945), - [anon_sym_BSLASHautoref] = ACTIONS(4945), - [anon_sym_BSLASHpageref] = ACTIONS(4945), - [anon_sym_BSLASHcref] = ACTIONS(4945), - [anon_sym_BSLASHCref] = ACTIONS(4945), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4943), - [anon_sym_BSLASHnamecref] = ACTIONS(4945), - [anon_sym_BSLASHnameCref] = ACTIONS(4945), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4945), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4945), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4945), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4945), - [anon_sym_BSLASHlabelcref] = ACTIONS(4945), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4945), - [anon_sym_BSLASHcrefrange] = ACTIONS(4945), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCrefrange] = ACTIONS(4945), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4943), - [anon_sym_BSLASHnewlabel] = ACTIONS(4945), - [anon_sym_BSLASHnewcommand] = ACTIONS(4945), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4945), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4945), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4945), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4943), - [anon_sym_BSLASHdef] = ACTIONS(4945), - [anon_sym_BSLASHlet] = ACTIONS(4945), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4945), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4945), - [anon_sym_BSLASHgls] = ACTIONS(4945), - [anon_sym_BSLASHGls] = ACTIONS(4945), - [anon_sym_BSLASHGLS] = ACTIONS(4945), - [anon_sym_BSLASHglspl] = ACTIONS(4945), - [anon_sym_BSLASHGlspl] = ACTIONS(4945), - [anon_sym_BSLASHGLSpl] = ACTIONS(4945), - [anon_sym_BSLASHglsdisp] = ACTIONS(4945), - [anon_sym_BSLASHglslink] = ACTIONS(4945), - [anon_sym_BSLASHglstext] = ACTIONS(4945), - [anon_sym_BSLASHGlstext] = ACTIONS(4945), - [anon_sym_BSLASHGLStext] = ACTIONS(4945), - [anon_sym_BSLASHglsfirst] = ACTIONS(4945), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4945), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4945), - [anon_sym_BSLASHglsplural] = ACTIONS(4945), - [anon_sym_BSLASHGlsplural] = ACTIONS(4945), - [anon_sym_BSLASHGLSplural] = ACTIONS(4945), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHglsname] = ACTIONS(4945), - [anon_sym_BSLASHGlsname] = ACTIONS(4945), - [anon_sym_BSLASHGLSname] = ACTIONS(4945), - [anon_sym_BSLASHglssymbol] = ACTIONS(4945), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4945), - [anon_sym_BSLASHglsdesc] = ACTIONS(4945), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4945), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4945), - [anon_sym_BSLASHglsuseri] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4945), - [anon_sym_BSLASHglsuserii] = ACTIONS(4945), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4945), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4945), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4945), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4945), - [anon_sym_BSLASHglsuserv] = ACTIONS(4945), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4945), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4945), - [anon_sym_BSLASHglsuservi] = ACTIONS(4945), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4945), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4945), - [anon_sym_BSLASHnewacronym] = ACTIONS(4945), - [anon_sym_BSLASHacrshort] = ACTIONS(4945), - [anon_sym_BSLASHAcrshort] = ACTIONS(4945), - [anon_sym_BSLASHACRshort] = ACTIONS(4945), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4945), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4945), - [anon_sym_BSLASHacrlong] = ACTIONS(4945), - [anon_sym_BSLASHAcrlong] = ACTIONS(4945), - [anon_sym_BSLASHACRlong] = ACTIONS(4945), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4945), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4945), - [anon_sym_BSLASHacrfull] = ACTIONS(4945), - [anon_sym_BSLASHAcrfull] = ACTIONS(4945), - [anon_sym_BSLASHACRfull] = ACTIONS(4945), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4945), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4945), - [anon_sym_BSLASHacs] = ACTIONS(4945), - [anon_sym_BSLASHAcs] = ACTIONS(4945), - [anon_sym_BSLASHacsp] = ACTIONS(4945), - [anon_sym_BSLASHAcsp] = ACTIONS(4945), - [anon_sym_BSLASHacl] = ACTIONS(4945), - [anon_sym_BSLASHAcl] = ACTIONS(4945), - [anon_sym_BSLASHaclp] = ACTIONS(4945), - [anon_sym_BSLASHAclp] = ACTIONS(4945), - [anon_sym_BSLASHacf] = ACTIONS(4945), - [anon_sym_BSLASHAcf] = ACTIONS(4945), - [anon_sym_BSLASHacfp] = ACTIONS(4945), - [anon_sym_BSLASHAcfp] = ACTIONS(4945), - [anon_sym_BSLASHac] = ACTIONS(4945), - [anon_sym_BSLASHAc] = ACTIONS(4945), - [anon_sym_BSLASHacp] = ACTIONS(4945), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4945), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4945), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4945), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4945), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4945), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4945), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4945), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4945), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4945), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4945), - [anon_sym_BSLASHcolor] = ACTIONS(4945), - [anon_sym_BSLASHcolorbox] = ACTIONS(4945), - [anon_sym_BSLASHtextcolor] = ACTIONS(4945), - [anon_sym_BSLASHpagecolor] = ACTIONS(4945), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4945), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4945), + [871] = { + [sym_command_name] = ACTIONS(5089), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5089), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_RPAREN] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_RBRACK] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_EQ] = ACTIONS(5087), + [anon_sym_BSLASHpart] = ACTIONS(5089), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddpart] = ACTIONS(5089), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), + [anon_sym_BSLASHchapter] = ACTIONS(5089), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddchap] = ACTIONS(5089), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsection] = ACTIONS(5089), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddsec] = ACTIONS(5089), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubsection] = ACTIONS(5089), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHparagraph] = ACTIONS(5089), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), + [anon_sym_BSLASHitem] = ACTIONS(5089), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), + [anon_sym_LBRACE] = ACTIONS(5087), + [sym_word] = ACTIONS(5089), + [sym_placeholder] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5089), + [anon_sym__] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_BANG] = ACTIONS(5089), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_COLON] = ACTIONS(5089), + [anon_sym_SQUOTE] = ACTIONS(5089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), + [anon_sym_DOLLAR] = ACTIONS(5089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), + [anon_sym_BSLASHbegin] = ACTIONS(5089), + [anon_sym_BSLASHusepackage] = ACTIONS(5089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), + [anon_sym_BSLASHinclude] = ACTIONS(5089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), + [anon_sym_BSLASHinput] = ACTIONS(5089), + [anon_sym_BSLASHsubfile] = ACTIONS(5089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), + [anon_sym_BSLASHbibliography] = ACTIONS(5089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), + [anon_sym_BSLASHincludesvg] = ACTIONS(5089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), + [anon_sym_BSLASHimport] = ACTIONS(5089), + [anon_sym_BSLASHsubimport] = ACTIONS(5089), + [anon_sym_BSLASHinputfrom] = ACTIONS(5089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), + [anon_sym_BSLASHincludefrom] = ACTIONS(5089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), + [anon_sym_BSLASHcaption] = ACTIONS(5089), + [anon_sym_BSLASHcite] = ACTIONS(5089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCite] = ACTIONS(5089), + [anon_sym_BSLASHnocite] = ACTIONS(5089), + [anon_sym_BSLASHcitet] = ACTIONS(5089), + [anon_sym_BSLASHcitep] = ACTIONS(5089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteauthor] = ACTIONS(5089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitetitle] = ACTIONS(5089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteyear] = ACTIONS(5089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitedate] = ACTIONS(5089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteurl] = ACTIONS(5089), + [anon_sym_BSLASHfullcite] = ACTIONS(5089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), + [anon_sym_BSLASHcitealt] = ACTIONS(5089), + [anon_sym_BSLASHcitealp] = ACTIONS(5089), + [anon_sym_BSLASHcitetext] = ACTIONS(5089), + [anon_sym_BSLASHparencite] = ACTIONS(5089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHParencite] = ACTIONS(5089), + [anon_sym_BSLASHfootcite] = ACTIONS(5089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), + [anon_sym_BSLASHtextcite] = ACTIONS(5089), + [anon_sym_BSLASHTextcite] = ACTIONS(5089), + [anon_sym_BSLASHsmartcite] = ACTIONS(5089), + [anon_sym_BSLASHSmartcite] = ACTIONS(5089), + [anon_sym_BSLASHsupercite] = ACTIONS(5089), + [anon_sym_BSLASHautocite] = ACTIONS(5089), + [anon_sym_BSLASHAutocite] = ACTIONS(5089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHvolcite] = ACTIONS(5089), + [anon_sym_BSLASHVolcite] = ACTIONS(5089), + [anon_sym_BSLASHpvolcite] = ACTIONS(5089), + [anon_sym_BSLASHPvolcite] = ACTIONS(5089), + [anon_sym_BSLASHfvolcite] = ACTIONS(5089), + [anon_sym_BSLASHftvolcite] = ACTIONS(5089), + [anon_sym_BSLASHsvolcite] = ACTIONS(5089), + [anon_sym_BSLASHSvolcite] = ACTIONS(5089), + [anon_sym_BSLASHtvolcite] = ACTIONS(5089), + [anon_sym_BSLASHTvolcite] = ACTIONS(5089), + [anon_sym_BSLASHavolcite] = ACTIONS(5089), + [anon_sym_BSLASHAvolcite] = ACTIONS(5089), + [anon_sym_BSLASHnotecite] = ACTIONS(5089), + [anon_sym_BSLASHNotecite] = ACTIONS(5089), + [anon_sym_BSLASHpnotecite] = ACTIONS(5089), + [anon_sym_BSLASHPnotecite] = ACTIONS(5089), + [anon_sym_BSLASHfnotecite] = ACTIONS(5089), + [anon_sym_BSLASHlabel] = ACTIONS(5089), + [anon_sym_BSLASHref] = ACTIONS(5089), + [anon_sym_BSLASHeqref] = ACTIONS(5089), + [anon_sym_BSLASHvref] = ACTIONS(5089), + [anon_sym_BSLASHVref] = ACTIONS(5089), + [anon_sym_BSLASHautoref] = ACTIONS(5089), + [anon_sym_BSLASHpageref] = ACTIONS(5089), + [anon_sym_BSLASHcref] = ACTIONS(5089), + [anon_sym_BSLASHCref] = ACTIONS(5089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), + [anon_sym_BSLASHnamecref] = ACTIONS(5089), + [anon_sym_BSLASHnameCref] = ACTIONS(5089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), + [anon_sym_BSLASHlabelcref] = ACTIONS(5089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), + [anon_sym_BSLASHcrefrange] = ACTIONS(5089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCrefrange] = ACTIONS(5089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), + [anon_sym_BSLASHnewlabel] = ACTIONS(5089), + [anon_sym_BSLASHnewcommand] = ACTIONS(5089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), + [anon_sym_BSLASHdef] = ACTIONS(5089), + [anon_sym_BSLASHlet] = ACTIONS(5089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), + [anon_sym_BSLASHgls] = ACTIONS(5089), + [anon_sym_BSLASHGls] = ACTIONS(5089), + [anon_sym_BSLASHGLS] = ACTIONS(5089), + [anon_sym_BSLASHglspl] = ACTIONS(5089), + [anon_sym_BSLASHGlspl] = ACTIONS(5089), + [anon_sym_BSLASHGLSpl] = ACTIONS(5089), + [anon_sym_BSLASHglsdisp] = ACTIONS(5089), + [anon_sym_BSLASHglslink] = ACTIONS(5089), + [anon_sym_BSLASHglstext] = ACTIONS(5089), + [anon_sym_BSLASHGlstext] = ACTIONS(5089), + [anon_sym_BSLASHGLStext] = ACTIONS(5089), + [anon_sym_BSLASHglsfirst] = ACTIONS(5089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), + [anon_sym_BSLASHglsplural] = ACTIONS(5089), + [anon_sym_BSLASHGlsplural] = ACTIONS(5089), + [anon_sym_BSLASHGLSplural] = ACTIONS(5089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHglsname] = ACTIONS(5089), + [anon_sym_BSLASHGlsname] = ACTIONS(5089), + [anon_sym_BSLASHGLSname] = ACTIONS(5089), + [anon_sym_BSLASHglssymbol] = ACTIONS(5089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), + [anon_sym_BSLASHglsdesc] = ACTIONS(5089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), + [anon_sym_BSLASHglsuseri] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), + [anon_sym_BSLASHglsuserii] = ACTIONS(5089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), + [anon_sym_BSLASHglsuserv] = ACTIONS(5089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), + [anon_sym_BSLASHglsuservi] = ACTIONS(5089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), + [anon_sym_BSLASHnewacronym] = ACTIONS(5089), + [anon_sym_BSLASHacrshort] = ACTIONS(5089), + [anon_sym_BSLASHAcrshort] = ACTIONS(5089), + [anon_sym_BSLASHACRshort] = ACTIONS(5089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), + [anon_sym_BSLASHacrlong] = ACTIONS(5089), + [anon_sym_BSLASHAcrlong] = ACTIONS(5089), + [anon_sym_BSLASHACRlong] = ACTIONS(5089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), + [anon_sym_BSLASHacrfull] = ACTIONS(5089), + [anon_sym_BSLASHAcrfull] = ACTIONS(5089), + [anon_sym_BSLASHACRfull] = ACTIONS(5089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), + [anon_sym_BSLASHacs] = ACTIONS(5089), + [anon_sym_BSLASHAcs] = ACTIONS(5089), + [anon_sym_BSLASHacsp] = ACTIONS(5089), + [anon_sym_BSLASHAcsp] = ACTIONS(5089), + [anon_sym_BSLASHacl] = ACTIONS(5089), + [anon_sym_BSLASHAcl] = ACTIONS(5089), + [anon_sym_BSLASHaclp] = ACTIONS(5089), + [anon_sym_BSLASHAclp] = ACTIONS(5089), + [anon_sym_BSLASHacf] = ACTIONS(5089), + [anon_sym_BSLASHAcf] = ACTIONS(5089), + [anon_sym_BSLASHacfp] = ACTIONS(5089), + [anon_sym_BSLASHAcfp] = ACTIONS(5089), + [anon_sym_BSLASHac] = ACTIONS(5089), + [anon_sym_BSLASHAc] = ACTIONS(5089), + [anon_sym_BSLASHacp] = ACTIONS(5089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), + [anon_sym_BSLASHcolor] = ACTIONS(5089), + [anon_sym_BSLASHcolorbox] = ACTIONS(5089), + [anon_sym_BSLASHtextcolor] = ACTIONS(5089), + [anon_sym_BSLASHpagecolor] = ACTIONS(5089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHtext] = ACTIONS(5089), + [anon_sym_BSLASHintertext] = ACTIONS(5089), + [anon_sym_shortintertext] = ACTIONS(5089), }, - [1026] = { - [sym_command_name] = ACTIONS(5189), + [872] = { + [sym_command_name] = ACTIONS(5085), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_BSLASHpart] = ACTIONS(5189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddpart] = ACTIONS(5189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHchapter] = ACTIONS(5189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddchap] = ACTIONS(5189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsection] = ACTIONS(5189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddsec] = ACTIONS(5189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHparagraph] = ACTIONS(5189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHitem] = ACTIONS(5189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5187), - [anon_sym_BSLASHbegin] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), + [anon_sym_BSLASHiffalse] = ACTIONS(5085), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_RPAREN] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_RBRACK] = ACTIONS(5083), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5083), + [anon_sym_BSLASHpart] = ACTIONS(5085), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddpart] = ACTIONS(5085), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), + [anon_sym_BSLASHchapter] = ACTIONS(5085), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddchap] = ACTIONS(5085), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsection] = ACTIONS(5085), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddsec] = ACTIONS(5085), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubsection] = ACTIONS(5085), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHparagraph] = ACTIONS(5085), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), + [anon_sym_BSLASHitem] = ACTIONS(5085), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), + [anon_sym_LBRACE] = ACTIONS(5083), + [sym_word] = ACTIONS(5085), + [sym_placeholder] = ACTIONS(5083), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_CARET] = ACTIONS(5085), + [anon_sym__] = ACTIONS(5085), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_PIPE] = ACTIONS(5085), + [anon_sym_COLON] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), + [anon_sym_DOLLAR] = ACTIONS(5085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), + [anon_sym_BSLASHbegin] = ACTIONS(5085), + [anon_sym_BSLASHusepackage] = ACTIONS(5085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), + [anon_sym_BSLASHinclude] = ACTIONS(5085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), + [anon_sym_BSLASHinput] = ACTIONS(5085), + [anon_sym_BSLASHsubfile] = ACTIONS(5085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), + [anon_sym_BSLASHbibliography] = ACTIONS(5085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), + [anon_sym_BSLASHincludesvg] = ACTIONS(5085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), + [anon_sym_BSLASHimport] = ACTIONS(5085), + [anon_sym_BSLASHsubimport] = ACTIONS(5085), + [anon_sym_BSLASHinputfrom] = ACTIONS(5085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), + [anon_sym_BSLASHincludefrom] = ACTIONS(5085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), + [anon_sym_BSLASHcaption] = ACTIONS(5085), + [anon_sym_BSLASHcite] = ACTIONS(5085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCite] = ACTIONS(5085), + [anon_sym_BSLASHnocite] = ACTIONS(5085), + [anon_sym_BSLASHcitet] = ACTIONS(5085), + [anon_sym_BSLASHcitep] = ACTIONS(5085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteauthor] = ACTIONS(5085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitetitle] = ACTIONS(5085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteyear] = ACTIONS(5085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitedate] = ACTIONS(5085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteurl] = ACTIONS(5085), + [anon_sym_BSLASHfullcite] = ACTIONS(5085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), + [anon_sym_BSLASHcitealt] = ACTIONS(5085), + [anon_sym_BSLASHcitealp] = ACTIONS(5085), + [anon_sym_BSLASHcitetext] = ACTIONS(5085), + [anon_sym_BSLASHparencite] = ACTIONS(5085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHParencite] = ACTIONS(5085), + [anon_sym_BSLASHfootcite] = ACTIONS(5085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), + [anon_sym_BSLASHtextcite] = ACTIONS(5085), + [anon_sym_BSLASHTextcite] = ACTIONS(5085), + [anon_sym_BSLASHsmartcite] = ACTIONS(5085), + [anon_sym_BSLASHSmartcite] = ACTIONS(5085), + [anon_sym_BSLASHsupercite] = ACTIONS(5085), + [anon_sym_BSLASHautocite] = ACTIONS(5085), + [anon_sym_BSLASHAutocite] = ACTIONS(5085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHvolcite] = ACTIONS(5085), + [anon_sym_BSLASHVolcite] = ACTIONS(5085), + [anon_sym_BSLASHpvolcite] = ACTIONS(5085), + [anon_sym_BSLASHPvolcite] = ACTIONS(5085), + [anon_sym_BSLASHfvolcite] = ACTIONS(5085), + [anon_sym_BSLASHftvolcite] = ACTIONS(5085), + [anon_sym_BSLASHsvolcite] = ACTIONS(5085), + [anon_sym_BSLASHSvolcite] = ACTIONS(5085), + [anon_sym_BSLASHtvolcite] = ACTIONS(5085), + [anon_sym_BSLASHTvolcite] = ACTIONS(5085), + [anon_sym_BSLASHavolcite] = ACTIONS(5085), + [anon_sym_BSLASHAvolcite] = ACTIONS(5085), + [anon_sym_BSLASHnotecite] = ACTIONS(5085), + [anon_sym_BSLASHNotecite] = ACTIONS(5085), + [anon_sym_BSLASHpnotecite] = ACTIONS(5085), + [anon_sym_BSLASHPnotecite] = ACTIONS(5085), + [anon_sym_BSLASHfnotecite] = ACTIONS(5085), + [anon_sym_BSLASHlabel] = ACTIONS(5085), + [anon_sym_BSLASHref] = ACTIONS(5085), + [anon_sym_BSLASHeqref] = ACTIONS(5085), + [anon_sym_BSLASHvref] = ACTIONS(5085), + [anon_sym_BSLASHVref] = ACTIONS(5085), + [anon_sym_BSLASHautoref] = ACTIONS(5085), + [anon_sym_BSLASHpageref] = ACTIONS(5085), + [anon_sym_BSLASHcref] = ACTIONS(5085), + [anon_sym_BSLASHCref] = ACTIONS(5085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), + [anon_sym_BSLASHnamecref] = ACTIONS(5085), + [anon_sym_BSLASHnameCref] = ACTIONS(5085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), + [anon_sym_BSLASHlabelcref] = ACTIONS(5085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), + [anon_sym_BSLASHcrefrange] = ACTIONS(5085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCrefrange] = ACTIONS(5085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), + [anon_sym_BSLASHnewlabel] = ACTIONS(5085), + [anon_sym_BSLASHnewcommand] = ACTIONS(5085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), + [anon_sym_BSLASHdef] = ACTIONS(5085), + [anon_sym_BSLASHlet] = ACTIONS(5085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), + [anon_sym_BSLASHgls] = ACTIONS(5085), + [anon_sym_BSLASHGls] = ACTIONS(5085), + [anon_sym_BSLASHGLS] = ACTIONS(5085), + [anon_sym_BSLASHglspl] = ACTIONS(5085), + [anon_sym_BSLASHGlspl] = ACTIONS(5085), + [anon_sym_BSLASHGLSpl] = ACTIONS(5085), + [anon_sym_BSLASHglsdisp] = ACTIONS(5085), + [anon_sym_BSLASHglslink] = ACTIONS(5085), + [anon_sym_BSLASHglstext] = ACTIONS(5085), + [anon_sym_BSLASHGlstext] = ACTIONS(5085), + [anon_sym_BSLASHGLStext] = ACTIONS(5085), + [anon_sym_BSLASHglsfirst] = ACTIONS(5085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), + [anon_sym_BSLASHglsplural] = ACTIONS(5085), + [anon_sym_BSLASHGlsplural] = ACTIONS(5085), + [anon_sym_BSLASHGLSplural] = ACTIONS(5085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHglsname] = ACTIONS(5085), + [anon_sym_BSLASHGlsname] = ACTIONS(5085), + [anon_sym_BSLASHGLSname] = ACTIONS(5085), + [anon_sym_BSLASHglssymbol] = ACTIONS(5085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), + [anon_sym_BSLASHglsdesc] = ACTIONS(5085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), + [anon_sym_BSLASHglsuseri] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), + [anon_sym_BSLASHglsuserii] = ACTIONS(5085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), + [anon_sym_BSLASHglsuserv] = ACTIONS(5085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), + [anon_sym_BSLASHglsuservi] = ACTIONS(5085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), + [anon_sym_BSLASHnewacronym] = ACTIONS(5085), + [anon_sym_BSLASHacrshort] = ACTIONS(5085), + [anon_sym_BSLASHAcrshort] = ACTIONS(5085), + [anon_sym_BSLASHACRshort] = ACTIONS(5085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), + [anon_sym_BSLASHacrlong] = ACTIONS(5085), + [anon_sym_BSLASHAcrlong] = ACTIONS(5085), + [anon_sym_BSLASHACRlong] = ACTIONS(5085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), + [anon_sym_BSLASHacrfull] = ACTIONS(5085), + [anon_sym_BSLASHAcrfull] = ACTIONS(5085), + [anon_sym_BSLASHACRfull] = ACTIONS(5085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), + [anon_sym_BSLASHacs] = ACTIONS(5085), + [anon_sym_BSLASHAcs] = ACTIONS(5085), + [anon_sym_BSLASHacsp] = ACTIONS(5085), + [anon_sym_BSLASHAcsp] = ACTIONS(5085), + [anon_sym_BSLASHacl] = ACTIONS(5085), + [anon_sym_BSLASHAcl] = ACTIONS(5085), + [anon_sym_BSLASHaclp] = ACTIONS(5085), + [anon_sym_BSLASHAclp] = ACTIONS(5085), + [anon_sym_BSLASHacf] = ACTIONS(5085), + [anon_sym_BSLASHAcf] = ACTIONS(5085), + [anon_sym_BSLASHacfp] = ACTIONS(5085), + [anon_sym_BSLASHAcfp] = ACTIONS(5085), + [anon_sym_BSLASHac] = ACTIONS(5085), + [anon_sym_BSLASHAc] = ACTIONS(5085), + [anon_sym_BSLASHacp] = ACTIONS(5085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), + [anon_sym_BSLASHcolor] = ACTIONS(5085), + [anon_sym_BSLASHcolorbox] = ACTIONS(5085), + [anon_sym_BSLASHtextcolor] = ACTIONS(5085), + [anon_sym_BSLASHpagecolor] = ACTIONS(5085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), + [anon_sym_BSLASHtext] = ACTIONS(5085), + [anon_sym_BSLASHintertext] = ACTIONS(5085), + [anon_sym_shortintertext] = ACTIONS(5085), }, - [1027] = { - [sym_command_name] = ACTIONS(5193), + [873] = { + [sym_command_name] = ACTIONS(5139), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_BSLASHpart] = ACTIONS(5193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddpart] = ACTIONS(5193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHchapter] = ACTIONS(5193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddchap] = ACTIONS(5193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsection] = ACTIONS(5193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddsec] = ACTIONS(5193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHparagraph] = ACTIONS(5193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHitem] = ACTIONS(5193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5191), - [anon_sym_BSLASHbegin] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), - }, - [1028] = { - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_BSLASHpart] = ACTIONS(5015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddpart] = ACTIONS(5015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHchapter] = ACTIONS(5015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddchap] = ACTIONS(5015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsection] = ACTIONS(5015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddsec] = ACTIONS(5015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHparagraph] = ACTIONS(5015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHitem] = ACTIONS(5015), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASHbegin] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), - }, - [1029] = { - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_BSLASHpart] = ACTIONS(5011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddpart] = ACTIONS(5011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHchapter] = ACTIONS(5011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddchap] = ACTIONS(5011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsection] = ACTIONS(5011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddsec] = ACTIONS(5011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHparagraph] = ACTIONS(5011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHitem] = ACTIONS(5011), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5009), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASHbegin] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), + [anon_sym_BSLASHiffalse] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_RBRACK] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_BSLASHpart] = ACTIONS(5139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), + [anon_sym_BSLASHaddpart] = ACTIONS(5139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), + [anon_sym_BSLASHchapter] = ACTIONS(5139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), + [anon_sym_BSLASHaddchap] = ACTIONS(5139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsection] = ACTIONS(5139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), + [anon_sym_BSLASHaddsec] = ACTIONS(5139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsubsection] = ACTIONS(5139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), + [anon_sym_BSLASHparagraph] = ACTIONS(5139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), + [anon_sym_BSLASHitem] = ACTIONS(5139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5137), + [sym_word] = ACTIONS(5139), + [sym_placeholder] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_CARET] = ACTIONS(5139), + [anon_sym__] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_PIPE] = ACTIONS(5139), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), + [anon_sym_DOLLAR] = ACTIONS(5139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), + [anon_sym_BSLASHbegin] = ACTIONS(5139), + [anon_sym_BSLASHusepackage] = ACTIONS(5139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), + [anon_sym_BSLASHinclude] = ACTIONS(5139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), + [anon_sym_BSLASHinput] = ACTIONS(5139), + [anon_sym_BSLASHsubfile] = ACTIONS(5139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), + [anon_sym_BSLASHbibliography] = ACTIONS(5139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), + [anon_sym_BSLASHincludesvg] = ACTIONS(5139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), + [anon_sym_BSLASHimport] = ACTIONS(5139), + [anon_sym_BSLASHsubimport] = ACTIONS(5139), + [anon_sym_BSLASHinputfrom] = ACTIONS(5139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), + [anon_sym_BSLASHincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHcaption] = ACTIONS(5139), + [anon_sym_BSLASHcite] = ACTIONS(5139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCite] = ACTIONS(5139), + [anon_sym_BSLASHnocite] = ACTIONS(5139), + [anon_sym_BSLASHcitet] = ACTIONS(5139), + [anon_sym_BSLASHcitep] = ACTIONS(5139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteauthor] = ACTIONS(5139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitetitle] = ACTIONS(5139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteyear] = ACTIONS(5139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitedate] = ACTIONS(5139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteurl] = ACTIONS(5139), + [anon_sym_BSLASHfullcite] = ACTIONS(5139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), + [anon_sym_BSLASHcitealt] = ACTIONS(5139), + [anon_sym_BSLASHcitealp] = ACTIONS(5139), + [anon_sym_BSLASHcitetext] = ACTIONS(5139), + [anon_sym_BSLASHparencite] = ACTIONS(5139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHParencite] = ACTIONS(5139), + [anon_sym_BSLASHfootcite] = ACTIONS(5139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), + [anon_sym_BSLASHtextcite] = ACTIONS(5139), + [anon_sym_BSLASHTextcite] = ACTIONS(5139), + [anon_sym_BSLASHsmartcite] = ACTIONS(5139), + [anon_sym_BSLASHSmartcite] = ACTIONS(5139), + [anon_sym_BSLASHsupercite] = ACTIONS(5139), + [anon_sym_BSLASHautocite] = ACTIONS(5139), + [anon_sym_BSLASHAutocite] = ACTIONS(5139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHvolcite] = ACTIONS(5139), + [anon_sym_BSLASHVolcite] = ACTIONS(5139), + [anon_sym_BSLASHpvolcite] = ACTIONS(5139), + [anon_sym_BSLASHPvolcite] = ACTIONS(5139), + [anon_sym_BSLASHfvolcite] = ACTIONS(5139), + [anon_sym_BSLASHftvolcite] = ACTIONS(5139), + [anon_sym_BSLASHsvolcite] = ACTIONS(5139), + [anon_sym_BSLASHSvolcite] = ACTIONS(5139), + [anon_sym_BSLASHtvolcite] = ACTIONS(5139), + [anon_sym_BSLASHTvolcite] = ACTIONS(5139), + [anon_sym_BSLASHavolcite] = ACTIONS(5139), + [anon_sym_BSLASHAvolcite] = ACTIONS(5139), + [anon_sym_BSLASHnotecite] = ACTIONS(5139), + [anon_sym_BSLASHNotecite] = ACTIONS(5139), + [anon_sym_BSLASHpnotecite] = ACTIONS(5139), + [anon_sym_BSLASHPnotecite] = ACTIONS(5139), + [anon_sym_BSLASHfnotecite] = ACTIONS(5139), + [anon_sym_BSLASHlabel] = ACTIONS(5139), + [anon_sym_BSLASHref] = ACTIONS(5139), + [anon_sym_BSLASHeqref] = ACTIONS(5139), + [anon_sym_BSLASHvref] = ACTIONS(5139), + [anon_sym_BSLASHVref] = ACTIONS(5139), + [anon_sym_BSLASHautoref] = ACTIONS(5139), + [anon_sym_BSLASHpageref] = ACTIONS(5139), + [anon_sym_BSLASHcref] = ACTIONS(5139), + [anon_sym_BSLASHCref] = ACTIONS(5139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnameCref] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHlabelcref] = ACTIONS(5139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCrefrange] = ACTIONS(5139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnewlabel] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), + [anon_sym_BSLASHdef] = ACTIONS(5139), + [anon_sym_BSLASHlet] = ACTIONS(5139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), + [anon_sym_BSLASHgls] = ACTIONS(5139), + [anon_sym_BSLASHGls] = ACTIONS(5139), + [anon_sym_BSLASHGLS] = ACTIONS(5139), + [anon_sym_BSLASHglspl] = ACTIONS(5139), + [anon_sym_BSLASHGlspl] = ACTIONS(5139), + [anon_sym_BSLASHGLSpl] = ACTIONS(5139), + [anon_sym_BSLASHglsdisp] = ACTIONS(5139), + [anon_sym_BSLASHglslink] = ACTIONS(5139), + [anon_sym_BSLASHglstext] = ACTIONS(5139), + [anon_sym_BSLASHGlstext] = ACTIONS(5139), + [anon_sym_BSLASHGLStext] = ACTIONS(5139), + [anon_sym_BSLASHglsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), + [anon_sym_BSLASHglsplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSplural] = ACTIONS(5139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHglsname] = ACTIONS(5139), + [anon_sym_BSLASHGlsname] = ACTIONS(5139), + [anon_sym_BSLASHGLSname] = ACTIONS(5139), + [anon_sym_BSLASHglssymbol] = ACTIONS(5139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), + [anon_sym_BSLASHglsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), + [anon_sym_BSLASHglsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), + [anon_sym_BSLASHglsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), + [anon_sym_BSLASHglsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), + [anon_sym_BSLASHglsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), + [anon_sym_BSLASHnewacronym] = ACTIONS(5139), + [anon_sym_BSLASHacrshort] = ACTIONS(5139), + [anon_sym_BSLASHAcrshort] = ACTIONS(5139), + [anon_sym_BSLASHACRshort] = ACTIONS(5139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), + [anon_sym_BSLASHacrlong] = ACTIONS(5139), + [anon_sym_BSLASHAcrlong] = ACTIONS(5139), + [anon_sym_BSLASHACRlong] = ACTIONS(5139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), + [anon_sym_BSLASHacrfull] = ACTIONS(5139), + [anon_sym_BSLASHAcrfull] = ACTIONS(5139), + [anon_sym_BSLASHACRfull] = ACTIONS(5139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), + [anon_sym_BSLASHacs] = ACTIONS(5139), + [anon_sym_BSLASHAcs] = ACTIONS(5139), + [anon_sym_BSLASHacsp] = ACTIONS(5139), + [anon_sym_BSLASHAcsp] = ACTIONS(5139), + [anon_sym_BSLASHacl] = ACTIONS(5139), + [anon_sym_BSLASHAcl] = ACTIONS(5139), + [anon_sym_BSLASHaclp] = ACTIONS(5139), + [anon_sym_BSLASHAclp] = ACTIONS(5139), + [anon_sym_BSLASHacf] = ACTIONS(5139), + [anon_sym_BSLASHAcf] = ACTIONS(5139), + [anon_sym_BSLASHacfp] = ACTIONS(5139), + [anon_sym_BSLASHAcfp] = ACTIONS(5139), + [anon_sym_BSLASHac] = ACTIONS(5139), + [anon_sym_BSLASHAc] = ACTIONS(5139), + [anon_sym_BSLASHacp] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), + [anon_sym_BSLASHcolor] = ACTIONS(5139), + [anon_sym_BSLASHcolorbox] = ACTIONS(5139), + [anon_sym_BSLASHtextcolor] = ACTIONS(5139), + [anon_sym_BSLASHpagecolor] = ACTIONS(5139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHtext] = ACTIONS(5139), + [anon_sym_BSLASHintertext] = ACTIONS(5139), + [anon_sym_shortintertext] = ACTIONS(5139), }, - [1030] = { - [sym_command_name] = ACTIONS(5007), + [874] = { + [sym_command_name] = ACTIONS(5057), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_BSLASHpart] = ACTIONS(5007), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddpart] = ACTIONS(5007), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHchapter] = ACTIONS(5007), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddchap] = ACTIONS(5007), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsection] = ACTIONS(5007), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddsec] = ACTIONS(5007), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHparagraph] = ACTIONS(5007), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHitem] = ACTIONS(5007), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASHbegin] = ACTIONS(5007), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), + [anon_sym_BSLASHiffalse] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5055), + [anon_sym_RPAREN] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5055), + [anon_sym_RBRACK] = ACTIONS(5055), + [anon_sym_COMMA] = ACTIONS(5055), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_BSLASHpart] = ACTIONS(5057), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), + [anon_sym_BSLASHaddpart] = ACTIONS(5057), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), + [anon_sym_BSLASHchapter] = ACTIONS(5057), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), + [anon_sym_BSLASHaddchap] = ACTIONS(5057), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsection] = ACTIONS(5057), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), + [anon_sym_BSLASHaddsec] = ACTIONS(5057), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsubsection] = ACTIONS(5057), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), + [anon_sym_BSLASHparagraph] = ACTIONS(5057), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), + [anon_sym_BSLASHitem] = ACTIONS(5057), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5055), + [sym_word] = ACTIONS(5057), + [sym_placeholder] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_STAR] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5057), + [anon_sym_CARET] = ACTIONS(5057), + [anon_sym__] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5057), + [anon_sym_BANG] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5057), + [anon_sym_COLON] = ACTIONS(5057), + [anon_sym_SQUOTE] = ACTIONS(5057), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), + [anon_sym_DOLLAR] = ACTIONS(5057), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5055), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), + [anon_sym_BSLASHbegin] = ACTIONS(5057), + [anon_sym_BSLASHusepackage] = ACTIONS(5057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), + [anon_sym_BSLASHinclude] = ACTIONS(5057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), + [anon_sym_BSLASHinput] = ACTIONS(5057), + [anon_sym_BSLASHsubfile] = ACTIONS(5057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), + [anon_sym_BSLASHbibliography] = ACTIONS(5057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), + [anon_sym_BSLASHincludesvg] = ACTIONS(5057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), + [anon_sym_BSLASHimport] = ACTIONS(5057), + [anon_sym_BSLASHsubimport] = ACTIONS(5057), + [anon_sym_BSLASHinputfrom] = ACTIONS(5057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), + [anon_sym_BSLASHincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHcaption] = ACTIONS(5057), + [anon_sym_BSLASHcite] = ACTIONS(5057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCite] = ACTIONS(5057), + [anon_sym_BSLASHnocite] = ACTIONS(5057), + [anon_sym_BSLASHcitet] = ACTIONS(5057), + [anon_sym_BSLASHcitep] = ACTIONS(5057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteauthor] = ACTIONS(5057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitetitle] = ACTIONS(5057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteyear] = ACTIONS(5057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitedate] = ACTIONS(5057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteurl] = ACTIONS(5057), + [anon_sym_BSLASHfullcite] = ACTIONS(5057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), + [anon_sym_BSLASHcitealt] = ACTIONS(5057), + [anon_sym_BSLASHcitealp] = ACTIONS(5057), + [anon_sym_BSLASHcitetext] = ACTIONS(5057), + [anon_sym_BSLASHparencite] = ACTIONS(5057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHParencite] = ACTIONS(5057), + [anon_sym_BSLASHfootcite] = ACTIONS(5057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), + [anon_sym_BSLASHtextcite] = ACTIONS(5057), + [anon_sym_BSLASHTextcite] = ACTIONS(5057), + [anon_sym_BSLASHsmartcite] = ACTIONS(5057), + [anon_sym_BSLASHSmartcite] = ACTIONS(5057), + [anon_sym_BSLASHsupercite] = ACTIONS(5057), + [anon_sym_BSLASHautocite] = ACTIONS(5057), + [anon_sym_BSLASHAutocite] = ACTIONS(5057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHvolcite] = ACTIONS(5057), + [anon_sym_BSLASHVolcite] = ACTIONS(5057), + [anon_sym_BSLASHpvolcite] = ACTIONS(5057), + [anon_sym_BSLASHPvolcite] = ACTIONS(5057), + [anon_sym_BSLASHfvolcite] = ACTIONS(5057), + [anon_sym_BSLASHftvolcite] = ACTIONS(5057), + [anon_sym_BSLASHsvolcite] = ACTIONS(5057), + [anon_sym_BSLASHSvolcite] = ACTIONS(5057), + [anon_sym_BSLASHtvolcite] = ACTIONS(5057), + [anon_sym_BSLASHTvolcite] = ACTIONS(5057), + [anon_sym_BSLASHavolcite] = ACTIONS(5057), + [anon_sym_BSLASHAvolcite] = ACTIONS(5057), + [anon_sym_BSLASHnotecite] = ACTIONS(5057), + [anon_sym_BSLASHNotecite] = ACTIONS(5057), + [anon_sym_BSLASHpnotecite] = ACTIONS(5057), + [anon_sym_BSLASHPnotecite] = ACTIONS(5057), + [anon_sym_BSLASHfnotecite] = ACTIONS(5057), + [anon_sym_BSLASHlabel] = ACTIONS(5057), + [anon_sym_BSLASHref] = ACTIONS(5057), + [anon_sym_BSLASHeqref] = ACTIONS(5057), + [anon_sym_BSLASHvref] = ACTIONS(5057), + [anon_sym_BSLASHVref] = ACTIONS(5057), + [anon_sym_BSLASHautoref] = ACTIONS(5057), + [anon_sym_BSLASHpageref] = ACTIONS(5057), + [anon_sym_BSLASHcref] = ACTIONS(5057), + [anon_sym_BSLASHCref] = ACTIONS(5057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnameCref] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHlabelcref] = ACTIONS(5057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCrefrange] = ACTIONS(5057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnewlabel] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), + [anon_sym_BSLASHdef] = ACTIONS(5057), + [anon_sym_BSLASHlet] = ACTIONS(5057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), + [anon_sym_BSLASHgls] = ACTIONS(5057), + [anon_sym_BSLASHGls] = ACTIONS(5057), + [anon_sym_BSLASHGLS] = ACTIONS(5057), + [anon_sym_BSLASHglspl] = ACTIONS(5057), + [anon_sym_BSLASHGlspl] = ACTIONS(5057), + [anon_sym_BSLASHGLSpl] = ACTIONS(5057), + [anon_sym_BSLASHglsdisp] = ACTIONS(5057), + [anon_sym_BSLASHglslink] = ACTIONS(5057), + [anon_sym_BSLASHglstext] = ACTIONS(5057), + [anon_sym_BSLASHGlstext] = ACTIONS(5057), + [anon_sym_BSLASHGLStext] = ACTIONS(5057), + [anon_sym_BSLASHglsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), + [anon_sym_BSLASHglsplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSplural] = ACTIONS(5057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHglsname] = ACTIONS(5057), + [anon_sym_BSLASHGlsname] = ACTIONS(5057), + [anon_sym_BSLASHGLSname] = ACTIONS(5057), + [anon_sym_BSLASHglssymbol] = ACTIONS(5057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), + [anon_sym_BSLASHglsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), + [anon_sym_BSLASHglsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), + [anon_sym_BSLASHglsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), + [anon_sym_BSLASHglsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), + [anon_sym_BSLASHglsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), + [anon_sym_BSLASHnewacronym] = ACTIONS(5057), + [anon_sym_BSLASHacrshort] = ACTIONS(5057), + [anon_sym_BSLASHAcrshort] = ACTIONS(5057), + [anon_sym_BSLASHACRshort] = ACTIONS(5057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), + [anon_sym_BSLASHacrlong] = ACTIONS(5057), + [anon_sym_BSLASHAcrlong] = ACTIONS(5057), + [anon_sym_BSLASHACRlong] = ACTIONS(5057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), + [anon_sym_BSLASHacrfull] = ACTIONS(5057), + [anon_sym_BSLASHAcrfull] = ACTIONS(5057), + [anon_sym_BSLASHACRfull] = ACTIONS(5057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), + [anon_sym_BSLASHacs] = ACTIONS(5057), + [anon_sym_BSLASHAcs] = ACTIONS(5057), + [anon_sym_BSLASHacsp] = ACTIONS(5057), + [anon_sym_BSLASHAcsp] = ACTIONS(5057), + [anon_sym_BSLASHacl] = ACTIONS(5057), + [anon_sym_BSLASHAcl] = ACTIONS(5057), + [anon_sym_BSLASHaclp] = ACTIONS(5057), + [anon_sym_BSLASHAclp] = ACTIONS(5057), + [anon_sym_BSLASHacf] = ACTIONS(5057), + [anon_sym_BSLASHAcf] = ACTIONS(5057), + [anon_sym_BSLASHacfp] = ACTIONS(5057), + [anon_sym_BSLASHAcfp] = ACTIONS(5057), + [anon_sym_BSLASHac] = ACTIONS(5057), + [anon_sym_BSLASHAc] = ACTIONS(5057), + [anon_sym_BSLASHacp] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), + [anon_sym_BSLASHcolor] = ACTIONS(5057), + [anon_sym_BSLASHcolorbox] = ACTIONS(5057), + [anon_sym_BSLASHtextcolor] = ACTIONS(5057), + [anon_sym_BSLASHpagecolor] = ACTIONS(5057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [anon_sym_BSLASHtext] = ACTIONS(5057), + [anon_sym_BSLASHintertext] = ACTIONS(5057), + [anon_sym_shortintertext] = ACTIONS(5057), }, - [1031] = { - [sym_command_name] = ACTIONS(5003), + [875] = { + [sym_command_name] = ACTIONS(5053), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(5001), - [anon_sym_BSLASHpart] = ACTIONS(5003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddpart] = ACTIONS(5003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHchapter] = ACTIONS(5003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddchap] = ACTIONS(5003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsection] = ACTIONS(5003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddsec] = ACTIONS(5003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHparagraph] = ACTIONS(5003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHitem] = ACTIONS(5003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), - [anon_sym_LBRACE] = ACTIONS(5001), - [sym_word] = ACTIONS(5003), - [sym_placeholder] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym__] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), - [anon_sym_BSLASHbegin] = ACTIONS(5003), - [anon_sym_BSLASHusepackage] = ACTIONS(5003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), - [anon_sym_BSLASHinclude] = ACTIONS(5003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), - [anon_sym_BSLASHinput] = ACTIONS(5003), - [anon_sym_BSLASHsubfile] = ACTIONS(5003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), - [anon_sym_BSLASHbibliography] = ACTIONS(5003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), - [anon_sym_BSLASHincludesvg] = ACTIONS(5003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), - [anon_sym_BSLASHimport] = ACTIONS(5003), - [anon_sym_BSLASHsubimport] = ACTIONS(5003), - [anon_sym_BSLASHinputfrom] = ACTIONS(5003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), - [anon_sym_BSLASHincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHcaption] = ACTIONS(5003), - [anon_sym_BSLASHcite] = ACTIONS(5003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCite] = ACTIONS(5003), - [anon_sym_BSLASHnocite] = ACTIONS(5003), - [anon_sym_BSLASHcitet] = ACTIONS(5003), - [anon_sym_BSLASHcitep] = ACTIONS(5003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteyear] = ACTIONS(5003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitedate] = ACTIONS(5003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteurl] = ACTIONS(5003), - [anon_sym_BSLASHfullcite] = ACTIONS(5003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), - [anon_sym_BSLASHcitealt] = ACTIONS(5003), - [anon_sym_BSLASHcitealp] = ACTIONS(5003), - [anon_sym_BSLASHcitetext] = ACTIONS(5003), - [anon_sym_BSLASHparencite] = ACTIONS(5003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHParencite] = ACTIONS(5003), - [anon_sym_BSLASHfootcite] = ACTIONS(5003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), - [anon_sym_BSLASHtextcite] = ACTIONS(5003), - [anon_sym_BSLASHTextcite] = ACTIONS(5003), - [anon_sym_BSLASHsmartcite] = ACTIONS(5003), - [anon_sym_BSLASHSmartcite] = ACTIONS(5003), - [anon_sym_BSLASHsupercite] = ACTIONS(5003), - [anon_sym_BSLASHautocite] = ACTIONS(5003), - [anon_sym_BSLASHAutocite] = ACTIONS(5003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHvolcite] = ACTIONS(5003), - [anon_sym_BSLASHVolcite] = ACTIONS(5003), - [anon_sym_BSLASHpvolcite] = ACTIONS(5003), - [anon_sym_BSLASHPvolcite] = ACTIONS(5003), - [anon_sym_BSLASHfvolcite] = ACTIONS(5003), - [anon_sym_BSLASHftvolcite] = ACTIONS(5003), - [anon_sym_BSLASHsvolcite] = ACTIONS(5003), - [anon_sym_BSLASHSvolcite] = ACTIONS(5003), - [anon_sym_BSLASHtvolcite] = ACTIONS(5003), - [anon_sym_BSLASHTvolcite] = ACTIONS(5003), - [anon_sym_BSLASHavolcite] = ACTIONS(5003), - [anon_sym_BSLASHAvolcite] = ACTIONS(5003), - [anon_sym_BSLASHnotecite] = ACTIONS(5003), - [anon_sym_BSLASHNotecite] = ACTIONS(5003), - [anon_sym_BSLASHpnotecite] = ACTIONS(5003), - [anon_sym_BSLASHPnotecite] = ACTIONS(5003), - [anon_sym_BSLASHfnotecite] = ACTIONS(5003), - [anon_sym_BSLASHlabel] = ACTIONS(5003), - [anon_sym_BSLASHref] = ACTIONS(5003), - [anon_sym_BSLASHeqref] = ACTIONS(5003), - [anon_sym_BSLASHvref] = ACTIONS(5003), - [anon_sym_BSLASHVref] = ACTIONS(5003), - [anon_sym_BSLASHautoref] = ACTIONS(5003), - [anon_sym_BSLASHpageref] = ACTIONS(5003), - [anon_sym_BSLASHcref] = ACTIONS(5003), - [anon_sym_BSLASHCref] = ACTIONS(5003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnameCref] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHlabelcref] = ACTIONS(5003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdef] = ACTIONS(5003), - [anon_sym_BSLASHlet] = ACTIONS(5003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), - [anon_sym_BSLASHgls] = ACTIONS(5003), - [anon_sym_BSLASHGls] = ACTIONS(5003), - [anon_sym_BSLASHGLS] = ACTIONS(5003), - [anon_sym_BSLASHglspl] = ACTIONS(5003), - [anon_sym_BSLASHGlspl] = ACTIONS(5003), - [anon_sym_BSLASHGLSpl] = ACTIONS(5003), - [anon_sym_BSLASHglsdisp] = ACTIONS(5003), - [anon_sym_BSLASHglslink] = ACTIONS(5003), - [anon_sym_BSLASHglstext] = ACTIONS(5003), - [anon_sym_BSLASHGlstext] = ACTIONS(5003), - [anon_sym_BSLASHGLStext] = ACTIONS(5003), - [anon_sym_BSLASHglsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), - [anon_sym_BSLASHglsplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSplural] = ACTIONS(5003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHglsname] = ACTIONS(5003), - [anon_sym_BSLASHGlsname] = ACTIONS(5003), - [anon_sym_BSLASHGLSname] = ACTIONS(5003), - [anon_sym_BSLASHglssymbol] = ACTIONS(5003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), - [anon_sym_BSLASHglsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), - [anon_sym_BSLASHglsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), - [anon_sym_BSLASHglsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), - [anon_sym_BSLASHglsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), - [anon_sym_BSLASHglsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), - [anon_sym_BSLASHnewacronym] = ACTIONS(5003), - [anon_sym_BSLASHacrshort] = ACTIONS(5003), - [anon_sym_BSLASHAcrshort] = ACTIONS(5003), - [anon_sym_BSLASHACRshort] = ACTIONS(5003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), - [anon_sym_BSLASHacrlong] = ACTIONS(5003), - [anon_sym_BSLASHAcrlong] = ACTIONS(5003), - [anon_sym_BSLASHACRlong] = ACTIONS(5003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), - [anon_sym_BSLASHacrfull] = ACTIONS(5003), - [anon_sym_BSLASHAcrfull] = ACTIONS(5003), - [anon_sym_BSLASHACRfull] = ACTIONS(5003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), - [anon_sym_BSLASHacs] = ACTIONS(5003), - [anon_sym_BSLASHAcs] = ACTIONS(5003), - [anon_sym_BSLASHacsp] = ACTIONS(5003), - [anon_sym_BSLASHAcsp] = ACTIONS(5003), - [anon_sym_BSLASHacl] = ACTIONS(5003), - [anon_sym_BSLASHAcl] = ACTIONS(5003), - [anon_sym_BSLASHaclp] = ACTIONS(5003), - [anon_sym_BSLASHAclp] = ACTIONS(5003), - [anon_sym_BSLASHacf] = ACTIONS(5003), - [anon_sym_BSLASHAcf] = ACTIONS(5003), - [anon_sym_BSLASHacfp] = ACTIONS(5003), - [anon_sym_BSLASHAcfp] = ACTIONS(5003), - [anon_sym_BSLASHac] = ACTIONS(5003), - [anon_sym_BSLASHAc] = ACTIONS(5003), - [anon_sym_BSLASHacp] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), - [anon_sym_BSLASHcolor] = ACTIONS(5003), - [anon_sym_BSLASHcolorbox] = ACTIONS(5003), - [anon_sym_BSLASHtextcolor] = ACTIONS(5003), - [anon_sym_BSLASHpagecolor] = ACTIONS(5003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), + [anon_sym_BSLASHiffalse] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_BSLASHpart] = ACTIONS(5053), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddpart] = ACTIONS(5053), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), + [anon_sym_BSLASHchapter] = ACTIONS(5053), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddchap] = ACTIONS(5053), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsection] = ACTIONS(5053), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddsec] = ACTIONS(5053), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubsection] = ACTIONS(5053), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHparagraph] = ACTIONS(5053), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), + [anon_sym_BSLASHitem] = ACTIONS(5053), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5051), + [sym_word] = ACTIONS(5053), + [sym_placeholder] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5053), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5053), + [anon_sym__] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_COLON] = ACTIONS(5053), + [anon_sym_SQUOTE] = ACTIONS(5053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), + [anon_sym_DOLLAR] = ACTIONS(5053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), + [anon_sym_BSLASHbegin] = ACTIONS(5053), + [anon_sym_BSLASHusepackage] = ACTIONS(5053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), + [anon_sym_BSLASHinclude] = ACTIONS(5053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), + [anon_sym_BSLASHinput] = ACTIONS(5053), + [anon_sym_BSLASHsubfile] = ACTIONS(5053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), + [anon_sym_BSLASHbibliography] = ACTIONS(5053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), + [anon_sym_BSLASHincludesvg] = ACTIONS(5053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), + [anon_sym_BSLASHimport] = ACTIONS(5053), + [anon_sym_BSLASHsubimport] = ACTIONS(5053), + [anon_sym_BSLASHinputfrom] = ACTIONS(5053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), + [anon_sym_BSLASHincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHcaption] = ACTIONS(5053), + [anon_sym_BSLASHcite] = ACTIONS(5053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCite] = ACTIONS(5053), + [anon_sym_BSLASHnocite] = ACTIONS(5053), + [anon_sym_BSLASHcitet] = ACTIONS(5053), + [anon_sym_BSLASHcitep] = ACTIONS(5053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteauthor] = ACTIONS(5053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitetitle] = ACTIONS(5053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteyear] = ACTIONS(5053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitedate] = ACTIONS(5053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteurl] = ACTIONS(5053), + [anon_sym_BSLASHfullcite] = ACTIONS(5053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), + [anon_sym_BSLASHcitealt] = ACTIONS(5053), + [anon_sym_BSLASHcitealp] = ACTIONS(5053), + [anon_sym_BSLASHcitetext] = ACTIONS(5053), + [anon_sym_BSLASHparencite] = ACTIONS(5053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHParencite] = ACTIONS(5053), + [anon_sym_BSLASHfootcite] = ACTIONS(5053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), + [anon_sym_BSLASHtextcite] = ACTIONS(5053), + [anon_sym_BSLASHTextcite] = ACTIONS(5053), + [anon_sym_BSLASHsmartcite] = ACTIONS(5053), + [anon_sym_BSLASHSmartcite] = ACTIONS(5053), + [anon_sym_BSLASHsupercite] = ACTIONS(5053), + [anon_sym_BSLASHautocite] = ACTIONS(5053), + [anon_sym_BSLASHAutocite] = ACTIONS(5053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHvolcite] = ACTIONS(5053), + [anon_sym_BSLASHVolcite] = ACTIONS(5053), + [anon_sym_BSLASHpvolcite] = ACTIONS(5053), + [anon_sym_BSLASHPvolcite] = ACTIONS(5053), + [anon_sym_BSLASHfvolcite] = ACTIONS(5053), + [anon_sym_BSLASHftvolcite] = ACTIONS(5053), + [anon_sym_BSLASHsvolcite] = ACTIONS(5053), + [anon_sym_BSLASHSvolcite] = ACTIONS(5053), + [anon_sym_BSLASHtvolcite] = ACTIONS(5053), + [anon_sym_BSLASHTvolcite] = ACTIONS(5053), + [anon_sym_BSLASHavolcite] = ACTIONS(5053), + [anon_sym_BSLASHAvolcite] = ACTIONS(5053), + [anon_sym_BSLASHnotecite] = ACTIONS(5053), + [anon_sym_BSLASHNotecite] = ACTIONS(5053), + [anon_sym_BSLASHpnotecite] = ACTIONS(5053), + [anon_sym_BSLASHPnotecite] = ACTIONS(5053), + [anon_sym_BSLASHfnotecite] = ACTIONS(5053), + [anon_sym_BSLASHlabel] = ACTIONS(5053), + [anon_sym_BSLASHref] = ACTIONS(5053), + [anon_sym_BSLASHeqref] = ACTIONS(5053), + [anon_sym_BSLASHvref] = ACTIONS(5053), + [anon_sym_BSLASHVref] = ACTIONS(5053), + [anon_sym_BSLASHautoref] = ACTIONS(5053), + [anon_sym_BSLASHpageref] = ACTIONS(5053), + [anon_sym_BSLASHcref] = ACTIONS(5053), + [anon_sym_BSLASHCref] = ACTIONS(5053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnameCref] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHlabelcref] = ACTIONS(5053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCrefrange] = ACTIONS(5053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnewlabel] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), + [anon_sym_BSLASHdef] = ACTIONS(5053), + [anon_sym_BSLASHlet] = ACTIONS(5053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), + [anon_sym_BSLASHgls] = ACTIONS(5053), + [anon_sym_BSLASHGls] = ACTIONS(5053), + [anon_sym_BSLASHGLS] = ACTIONS(5053), + [anon_sym_BSLASHglspl] = ACTIONS(5053), + [anon_sym_BSLASHGlspl] = ACTIONS(5053), + [anon_sym_BSLASHGLSpl] = ACTIONS(5053), + [anon_sym_BSLASHglsdisp] = ACTIONS(5053), + [anon_sym_BSLASHglslink] = ACTIONS(5053), + [anon_sym_BSLASHglstext] = ACTIONS(5053), + [anon_sym_BSLASHGlstext] = ACTIONS(5053), + [anon_sym_BSLASHGLStext] = ACTIONS(5053), + [anon_sym_BSLASHglsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), + [anon_sym_BSLASHglsplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSplural] = ACTIONS(5053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHglsname] = ACTIONS(5053), + [anon_sym_BSLASHGlsname] = ACTIONS(5053), + [anon_sym_BSLASHGLSname] = ACTIONS(5053), + [anon_sym_BSLASHglssymbol] = ACTIONS(5053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), + [anon_sym_BSLASHglsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), + [anon_sym_BSLASHglsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), + [anon_sym_BSLASHglsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), + [anon_sym_BSLASHglsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), + [anon_sym_BSLASHglsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), + [anon_sym_BSLASHnewacronym] = ACTIONS(5053), + [anon_sym_BSLASHacrshort] = ACTIONS(5053), + [anon_sym_BSLASHAcrshort] = ACTIONS(5053), + [anon_sym_BSLASHACRshort] = ACTIONS(5053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), + [anon_sym_BSLASHacrlong] = ACTIONS(5053), + [anon_sym_BSLASHAcrlong] = ACTIONS(5053), + [anon_sym_BSLASHACRlong] = ACTIONS(5053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), + [anon_sym_BSLASHacrfull] = ACTIONS(5053), + [anon_sym_BSLASHAcrfull] = ACTIONS(5053), + [anon_sym_BSLASHACRfull] = ACTIONS(5053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), + [anon_sym_BSLASHacs] = ACTIONS(5053), + [anon_sym_BSLASHAcs] = ACTIONS(5053), + [anon_sym_BSLASHacsp] = ACTIONS(5053), + [anon_sym_BSLASHAcsp] = ACTIONS(5053), + [anon_sym_BSLASHacl] = ACTIONS(5053), + [anon_sym_BSLASHAcl] = ACTIONS(5053), + [anon_sym_BSLASHaclp] = ACTIONS(5053), + [anon_sym_BSLASHAclp] = ACTIONS(5053), + [anon_sym_BSLASHacf] = ACTIONS(5053), + [anon_sym_BSLASHAcf] = ACTIONS(5053), + [anon_sym_BSLASHacfp] = ACTIONS(5053), + [anon_sym_BSLASHAcfp] = ACTIONS(5053), + [anon_sym_BSLASHac] = ACTIONS(5053), + [anon_sym_BSLASHAc] = ACTIONS(5053), + [anon_sym_BSLASHacp] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), + [anon_sym_BSLASHcolor] = ACTIONS(5053), + [anon_sym_BSLASHcolorbox] = ACTIONS(5053), + [anon_sym_BSLASHtextcolor] = ACTIONS(5053), + [anon_sym_BSLASHpagecolor] = ACTIONS(5053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [anon_sym_BSLASHtext] = ACTIONS(5053), + [anon_sym_BSLASHintertext] = ACTIONS(5053), + [anon_sym_shortintertext] = ACTIONS(5053), }, - [1032] = { - [sym_command_name] = ACTIONS(5197), + [876] = { + [sym_command_name] = ACTIONS(5045), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_RBRACK] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_BSLASHpart] = ACTIONS(5045), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddpart] = ACTIONS(5045), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5043), + [anon_sym_BSLASHchapter] = ACTIONS(5045), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddchap] = ACTIONS(5045), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsection] = ACTIONS(5045), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddsec] = ACTIONS(5045), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubsection] = ACTIONS(5045), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5045), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHparagraph] = ACTIONS(5045), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5045), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5043), + [anon_sym_BSLASHitem] = ACTIONS(5045), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5043), + [sym_word] = ACTIONS(5045), + [sym_placeholder] = ACTIONS(5043), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_CARET] = ACTIONS(5045), + [anon_sym__] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_COLON] = ACTIONS(5045), + [anon_sym_SQUOTE] = ACTIONS(5045), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), + [anon_sym_DOLLAR] = ACTIONS(5045), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), + [anon_sym_BSLASHbegin] = ACTIONS(5045), + [anon_sym_BSLASHusepackage] = ACTIONS(5045), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), + [anon_sym_BSLASHinclude] = ACTIONS(5045), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), + [anon_sym_BSLASHinput] = ACTIONS(5045), + [anon_sym_BSLASHsubfile] = ACTIONS(5045), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), + [anon_sym_BSLASHbibliography] = ACTIONS(5045), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), + [anon_sym_BSLASHincludesvg] = ACTIONS(5045), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), + [anon_sym_BSLASHimport] = ACTIONS(5045), + [anon_sym_BSLASHsubimport] = ACTIONS(5045), + [anon_sym_BSLASHinputfrom] = ACTIONS(5045), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), + [anon_sym_BSLASHincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHcaption] = ACTIONS(5045), + [anon_sym_BSLASHcite] = ACTIONS(5045), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCite] = ACTIONS(5045), + [anon_sym_BSLASHnocite] = ACTIONS(5045), + [anon_sym_BSLASHcitet] = ACTIONS(5045), + [anon_sym_BSLASHcitep] = ACTIONS(5045), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteauthor] = ACTIONS(5045), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitetitle] = ACTIONS(5045), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteyear] = ACTIONS(5045), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitedate] = ACTIONS(5045), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteurl] = ACTIONS(5045), + [anon_sym_BSLASHfullcite] = ACTIONS(5045), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), + [anon_sym_BSLASHcitealt] = ACTIONS(5045), + [anon_sym_BSLASHcitealp] = ACTIONS(5045), + [anon_sym_BSLASHcitetext] = ACTIONS(5045), + [anon_sym_BSLASHparencite] = ACTIONS(5045), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHParencite] = ACTIONS(5045), + [anon_sym_BSLASHfootcite] = ACTIONS(5045), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), + [anon_sym_BSLASHtextcite] = ACTIONS(5045), + [anon_sym_BSLASHTextcite] = ACTIONS(5045), + [anon_sym_BSLASHsmartcite] = ACTIONS(5045), + [anon_sym_BSLASHSmartcite] = ACTIONS(5045), + [anon_sym_BSLASHsupercite] = ACTIONS(5045), + [anon_sym_BSLASHautocite] = ACTIONS(5045), + [anon_sym_BSLASHAutocite] = ACTIONS(5045), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHvolcite] = ACTIONS(5045), + [anon_sym_BSLASHVolcite] = ACTIONS(5045), + [anon_sym_BSLASHpvolcite] = ACTIONS(5045), + [anon_sym_BSLASHPvolcite] = ACTIONS(5045), + [anon_sym_BSLASHfvolcite] = ACTIONS(5045), + [anon_sym_BSLASHftvolcite] = ACTIONS(5045), + [anon_sym_BSLASHsvolcite] = ACTIONS(5045), + [anon_sym_BSLASHSvolcite] = ACTIONS(5045), + [anon_sym_BSLASHtvolcite] = ACTIONS(5045), + [anon_sym_BSLASHTvolcite] = ACTIONS(5045), + [anon_sym_BSLASHavolcite] = ACTIONS(5045), + [anon_sym_BSLASHAvolcite] = ACTIONS(5045), + [anon_sym_BSLASHnotecite] = ACTIONS(5045), + [anon_sym_BSLASHNotecite] = ACTIONS(5045), + [anon_sym_BSLASHpnotecite] = ACTIONS(5045), + [anon_sym_BSLASHPnotecite] = ACTIONS(5045), + [anon_sym_BSLASHfnotecite] = ACTIONS(5045), + [anon_sym_BSLASHlabel] = ACTIONS(5045), + [anon_sym_BSLASHref] = ACTIONS(5045), + [anon_sym_BSLASHeqref] = ACTIONS(5045), + [anon_sym_BSLASHvref] = ACTIONS(5045), + [anon_sym_BSLASHVref] = ACTIONS(5045), + [anon_sym_BSLASHautoref] = ACTIONS(5045), + [anon_sym_BSLASHpageref] = ACTIONS(5045), + [anon_sym_BSLASHcref] = ACTIONS(5045), + [anon_sym_BSLASHCref] = ACTIONS(5045), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnameCref] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHlabelcref] = ACTIONS(5045), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCrefrange] = ACTIONS(5045), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnewlabel] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), + [anon_sym_BSLASHdef] = ACTIONS(5045), + [anon_sym_BSLASHlet] = ACTIONS(5045), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), + [anon_sym_BSLASHgls] = ACTIONS(5045), + [anon_sym_BSLASHGls] = ACTIONS(5045), + [anon_sym_BSLASHGLS] = ACTIONS(5045), + [anon_sym_BSLASHglspl] = ACTIONS(5045), + [anon_sym_BSLASHGlspl] = ACTIONS(5045), + [anon_sym_BSLASHGLSpl] = ACTIONS(5045), + [anon_sym_BSLASHglsdisp] = ACTIONS(5045), + [anon_sym_BSLASHglslink] = ACTIONS(5045), + [anon_sym_BSLASHglstext] = ACTIONS(5045), + [anon_sym_BSLASHGlstext] = ACTIONS(5045), + [anon_sym_BSLASHGLStext] = ACTIONS(5045), + [anon_sym_BSLASHglsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), + [anon_sym_BSLASHglsplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSplural] = ACTIONS(5045), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHglsname] = ACTIONS(5045), + [anon_sym_BSLASHGlsname] = ACTIONS(5045), + [anon_sym_BSLASHGLSname] = ACTIONS(5045), + [anon_sym_BSLASHglssymbol] = ACTIONS(5045), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), + [anon_sym_BSLASHglsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), + [anon_sym_BSLASHglsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), + [anon_sym_BSLASHglsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), + [anon_sym_BSLASHglsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), + [anon_sym_BSLASHglsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), + [anon_sym_BSLASHnewacronym] = ACTIONS(5045), + [anon_sym_BSLASHacrshort] = ACTIONS(5045), + [anon_sym_BSLASHAcrshort] = ACTIONS(5045), + [anon_sym_BSLASHACRshort] = ACTIONS(5045), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), + [anon_sym_BSLASHacrlong] = ACTIONS(5045), + [anon_sym_BSLASHAcrlong] = ACTIONS(5045), + [anon_sym_BSLASHACRlong] = ACTIONS(5045), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), + [anon_sym_BSLASHacrfull] = ACTIONS(5045), + [anon_sym_BSLASHAcrfull] = ACTIONS(5045), + [anon_sym_BSLASHACRfull] = ACTIONS(5045), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), + [anon_sym_BSLASHacs] = ACTIONS(5045), + [anon_sym_BSLASHAcs] = ACTIONS(5045), + [anon_sym_BSLASHacsp] = ACTIONS(5045), + [anon_sym_BSLASHAcsp] = ACTIONS(5045), + [anon_sym_BSLASHacl] = ACTIONS(5045), + [anon_sym_BSLASHAcl] = ACTIONS(5045), + [anon_sym_BSLASHaclp] = ACTIONS(5045), + [anon_sym_BSLASHAclp] = ACTIONS(5045), + [anon_sym_BSLASHacf] = ACTIONS(5045), + [anon_sym_BSLASHAcf] = ACTIONS(5045), + [anon_sym_BSLASHacfp] = ACTIONS(5045), + [anon_sym_BSLASHAcfp] = ACTIONS(5045), + [anon_sym_BSLASHac] = ACTIONS(5045), + [anon_sym_BSLASHAc] = ACTIONS(5045), + [anon_sym_BSLASHacp] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), + [anon_sym_BSLASHcolor] = ACTIONS(5045), + [anon_sym_BSLASHcolorbox] = ACTIONS(5045), + [anon_sym_BSLASHtextcolor] = ACTIONS(5045), + [anon_sym_BSLASHpagecolor] = ACTIONS(5045), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), + [anon_sym_BSLASHtext] = ACTIONS(5045), + [anon_sym_BSLASHintertext] = ACTIONS(5045), + [anon_sym_shortintertext] = ACTIONS(5045), + }, + [877] = { + [sym_command_name] = ACTIONS(5041), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_BSLASHpart] = ACTIONS(5197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddpart] = ACTIONS(5197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHchapter] = ACTIONS(5197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddchap] = ACTIONS(5197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsection] = ACTIONS(5197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddsec] = ACTIONS(5197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHparagraph] = ACTIONS(5197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHitem] = ACTIONS(5197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5195), - [anon_sym_BSLASHbegin] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + [anon_sym_BSLASHiffalse] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_RBRACK] = ACTIONS(5039), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_BSLASHpart] = ACTIONS(5041), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddpart] = ACTIONS(5041), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), + [anon_sym_BSLASHchapter] = ACTIONS(5041), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddchap] = ACTIONS(5041), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsection] = ACTIONS(5041), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddsec] = ACTIONS(5041), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubsection] = ACTIONS(5041), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHparagraph] = ACTIONS(5041), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), + [anon_sym_BSLASHitem] = ACTIONS(5041), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5039), + [sym_word] = ACTIONS(5041), + [sym_placeholder] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_SLASH] = ACTIONS(5041), + [anon_sym_CARET] = ACTIONS(5041), + [anon_sym__] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5041), + [anon_sym_PIPE] = ACTIONS(5041), + [anon_sym_COLON] = ACTIONS(5041), + [anon_sym_SQUOTE] = ACTIONS(5041), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), + [anon_sym_BSLASHbegin] = ACTIONS(5041), + [anon_sym_BSLASHusepackage] = ACTIONS(5041), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), + [anon_sym_BSLASHinclude] = ACTIONS(5041), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), + [anon_sym_BSLASHinput] = ACTIONS(5041), + [anon_sym_BSLASHsubfile] = ACTIONS(5041), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), + [anon_sym_BSLASHbibliography] = ACTIONS(5041), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), + [anon_sym_BSLASHincludesvg] = ACTIONS(5041), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), + [anon_sym_BSLASHimport] = ACTIONS(5041), + [anon_sym_BSLASHsubimport] = ACTIONS(5041), + [anon_sym_BSLASHinputfrom] = ACTIONS(5041), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), + [anon_sym_BSLASHincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHcaption] = ACTIONS(5041), + [anon_sym_BSLASHcite] = ACTIONS(5041), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCite] = ACTIONS(5041), + [anon_sym_BSLASHnocite] = ACTIONS(5041), + [anon_sym_BSLASHcitet] = ACTIONS(5041), + [anon_sym_BSLASHcitep] = ACTIONS(5041), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteauthor] = ACTIONS(5041), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitetitle] = ACTIONS(5041), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteyear] = ACTIONS(5041), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitedate] = ACTIONS(5041), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteurl] = ACTIONS(5041), + [anon_sym_BSLASHfullcite] = ACTIONS(5041), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), + [anon_sym_BSLASHcitealt] = ACTIONS(5041), + [anon_sym_BSLASHcitealp] = ACTIONS(5041), + [anon_sym_BSLASHcitetext] = ACTIONS(5041), + [anon_sym_BSLASHparencite] = ACTIONS(5041), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHParencite] = ACTIONS(5041), + [anon_sym_BSLASHfootcite] = ACTIONS(5041), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), + [anon_sym_BSLASHtextcite] = ACTIONS(5041), + [anon_sym_BSLASHTextcite] = ACTIONS(5041), + [anon_sym_BSLASHsmartcite] = ACTIONS(5041), + [anon_sym_BSLASHSmartcite] = ACTIONS(5041), + [anon_sym_BSLASHsupercite] = ACTIONS(5041), + [anon_sym_BSLASHautocite] = ACTIONS(5041), + [anon_sym_BSLASHAutocite] = ACTIONS(5041), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHvolcite] = ACTIONS(5041), + [anon_sym_BSLASHVolcite] = ACTIONS(5041), + [anon_sym_BSLASHpvolcite] = ACTIONS(5041), + [anon_sym_BSLASHPvolcite] = ACTIONS(5041), + [anon_sym_BSLASHfvolcite] = ACTIONS(5041), + [anon_sym_BSLASHftvolcite] = ACTIONS(5041), + [anon_sym_BSLASHsvolcite] = ACTIONS(5041), + [anon_sym_BSLASHSvolcite] = ACTIONS(5041), + [anon_sym_BSLASHtvolcite] = ACTIONS(5041), + [anon_sym_BSLASHTvolcite] = ACTIONS(5041), + [anon_sym_BSLASHavolcite] = ACTIONS(5041), + [anon_sym_BSLASHAvolcite] = ACTIONS(5041), + [anon_sym_BSLASHnotecite] = ACTIONS(5041), + [anon_sym_BSLASHNotecite] = ACTIONS(5041), + [anon_sym_BSLASHpnotecite] = ACTIONS(5041), + [anon_sym_BSLASHPnotecite] = ACTIONS(5041), + [anon_sym_BSLASHfnotecite] = ACTIONS(5041), + [anon_sym_BSLASHlabel] = ACTIONS(5041), + [anon_sym_BSLASHref] = ACTIONS(5041), + [anon_sym_BSLASHeqref] = ACTIONS(5041), + [anon_sym_BSLASHvref] = ACTIONS(5041), + [anon_sym_BSLASHVref] = ACTIONS(5041), + [anon_sym_BSLASHautoref] = ACTIONS(5041), + [anon_sym_BSLASHpageref] = ACTIONS(5041), + [anon_sym_BSLASHcref] = ACTIONS(5041), + [anon_sym_BSLASHCref] = ACTIONS(5041), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnameCref] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHlabelcref] = ACTIONS(5041), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCrefrange] = ACTIONS(5041), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnewlabel] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), + [anon_sym_BSLASHdef] = ACTIONS(5041), + [anon_sym_BSLASHlet] = ACTIONS(5041), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), + [anon_sym_BSLASHgls] = ACTIONS(5041), + [anon_sym_BSLASHGls] = ACTIONS(5041), + [anon_sym_BSLASHGLS] = ACTIONS(5041), + [anon_sym_BSLASHglspl] = ACTIONS(5041), + [anon_sym_BSLASHGlspl] = ACTIONS(5041), + [anon_sym_BSLASHGLSpl] = ACTIONS(5041), + [anon_sym_BSLASHglsdisp] = ACTIONS(5041), + [anon_sym_BSLASHglslink] = ACTIONS(5041), + [anon_sym_BSLASHglstext] = ACTIONS(5041), + [anon_sym_BSLASHGlstext] = ACTIONS(5041), + [anon_sym_BSLASHGLStext] = ACTIONS(5041), + [anon_sym_BSLASHglsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), + [anon_sym_BSLASHglsplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSplural] = ACTIONS(5041), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHglsname] = ACTIONS(5041), + [anon_sym_BSLASHGlsname] = ACTIONS(5041), + [anon_sym_BSLASHGLSname] = ACTIONS(5041), + [anon_sym_BSLASHglssymbol] = ACTIONS(5041), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), + [anon_sym_BSLASHglsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), + [anon_sym_BSLASHglsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), + [anon_sym_BSLASHglsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), + [anon_sym_BSLASHglsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), + [anon_sym_BSLASHglsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), + [anon_sym_BSLASHnewacronym] = ACTIONS(5041), + [anon_sym_BSLASHacrshort] = ACTIONS(5041), + [anon_sym_BSLASHAcrshort] = ACTIONS(5041), + [anon_sym_BSLASHACRshort] = ACTIONS(5041), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), + [anon_sym_BSLASHacrlong] = ACTIONS(5041), + [anon_sym_BSLASHAcrlong] = ACTIONS(5041), + [anon_sym_BSLASHACRlong] = ACTIONS(5041), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), + [anon_sym_BSLASHacrfull] = ACTIONS(5041), + [anon_sym_BSLASHAcrfull] = ACTIONS(5041), + [anon_sym_BSLASHACRfull] = ACTIONS(5041), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), + [anon_sym_BSLASHacs] = ACTIONS(5041), + [anon_sym_BSLASHAcs] = ACTIONS(5041), + [anon_sym_BSLASHacsp] = ACTIONS(5041), + [anon_sym_BSLASHAcsp] = ACTIONS(5041), + [anon_sym_BSLASHacl] = ACTIONS(5041), + [anon_sym_BSLASHAcl] = ACTIONS(5041), + [anon_sym_BSLASHaclp] = ACTIONS(5041), + [anon_sym_BSLASHAclp] = ACTIONS(5041), + [anon_sym_BSLASHacf] = ACTIONS(5041), + [anon_sym_BSLASHAcf] = ACTIONS(5041), + [anon_sym_BSLASHacfp] = ACTIONS(5041), + [anon_sym_BSLASHAcfp] = ACTIONS(5041), + [anon_sym_BSLASHac] = ACTIONS(5041), + [anon_sym_BSLASHAc] = ACTIONS(5041), + [anon_sym_BSLASHacp] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), + [anon_sym_BSLASHcolor] = ACTIONS(5041), + [anon_sym_BSLASHcolorbox] = ACTIONS(5041), + [anon_sym_BSLASHtextcolor] = ACTIONS(5041), + [anon_sym_BSLASHpagecolor] = ACTIONS(5041), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + [anon_sym_BSLASHtext] = ACTIONS(5041), + [anon_sym_BSLASHintertext] = ACTIONS(5041), + [anon_sym_shortintertext] = ACTIONS(5041), }, - [1033] = { - [sym_command_name] = ACTIONS(4995), + [878] = { + [sym_command_name] = ACTIONS(5037), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_RPAREN] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_RBRACK] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_EQ] = ACTIONS(4993), - [anon_sym_BSLASHpart] = ACTIONS(4995), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddpart] = ACTIONS(4995), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHchapter] = ACTIONS(4995), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddchap] = ACTIONS(4995), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsection] = ACTIONS(4995), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddsec] = ACTIONS(4995), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHparagraph] = ACTIONS(4995), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHitem] = ACTIONS(4995), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), - [anon_sym_LBRACE] = ACTIONS(4993), - [sym_word] = ACTIONS(4995), - [sym_placeholder] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym__] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), - [anon_sym_BSLASH_RPAREN] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), - [anon_sym_BSLASHbegin] = ACTIONS(4995), - [anon_sym_BSLASHusepackage] = ACTIONS(4995), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), - [anon_sym_BSLASHinclude] = ACTIONS(4995), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), - [anon_sym_BSLASHinput] = ACTIONS(4995), - [anon_sym_BSLASHsubfile] = ACTIONS(4995), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), - [anon_sym_BSLASHbibliography] = ACTIONS(4995), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), - [anon_sym_BSLASHincludesvg] = ACTIONS(4995), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), - [anon_sym_BSLASHimport] = ACTIONS(4995), - [anon_sym_BSLASHsubimport] = ACTIONS(4995), - [anon_sym_BSLASHinputfrom] = ACTIONS(4995), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), - [anon_sym_BSLASHincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHcaption] = ACTIONS(4995), - [anon_sym_BSLASHcite] = ACTIONS(4995), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCite] = ACTIONS(4995), - [anon_sym_BSLASHnocite] = ACTIONS(4995), - [anon_sym_BSLASHcitet] = ACTIONS(4995), - [anon_sym_BSLASHcitep] = ACTIONS(4995), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteauthor] = ACTIONS(4995), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitetitle] = ACTIONS(4995), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteyear] = ACTIONS(4995), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitedate] = ACTIONS(4995), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteurl] = ACTIONS(4995), - [anon_sym_BSLASHfullcite] = ACTIONS(4995), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), - [anon_sym_BSLASHcitealt] = ACTIONS(4995), - [anon_sym_BSLASHcitealp] = ACTIONS(4995), - [anon_sym_BSLASHcitetext] = ACTIONS(4995), - [anon_sym_BSLASHparencite] = ACTIONS(4995), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHParencite] = ACTIONS(4995), - [anon_sym_BSLASHfootcite] = ACTIONS(4995), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), - [anon_sym_BSLASHtextcite] = ACTIONS(4995), - [anon_sym_BSLASHTextcite] = ACTIONS(4995), - [anon_sym_BSLASHsmartcite] = ACTIONS(4995), - [anon_sym_BSLASHSmartcite] = ACTIONS(4995), - [anon_sym_BSLASHsupercite] = ACTIONS(4995), - [anon_sym_BSLASHautocite] = ACTIONS(4995), - [anon_sym_BSLASHAutocite] = ACTIONS(4995), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHvolcite] = ACTIONS(4995), - [anon_sym_BSLASHVolcite] = ACTIONS(4995), - [anon_sym_BSLASHpvolcite] = ACTIONS(4995), - [anon_sym_BSLASHPvolcite] = ACTIONS(4995), - [anon_sym_BSLASHfvolcite] = ACTIONS(4995), - [anon_sym_BSLASHftvolcite] = ACTIONS(4995), - [anon_sym_BSLASHsvolcite] = ACTIONS(4995), - [anon_sym_BSLASHSvolcite] = ACTIONS(4995), - [anon_sym_BSLASHtvolcite] = ACTIONS(4995), - [anon_sym_BSLASHTvolcite] = ACTIONS(4995), - [anon_sym_BSLASHavolcite] = ACTIONS(4995), - [anon_sym_BSLASHAvolcite] = ACTIONS(4995), - [anon_sym_BSLASHnotecite] = ACTIONS(4995), - [anon_sym_BSLASHNotecite] = ACTIONS(4995), - [anon_sym_BSLASHpnotecite] = ACTIONS(4995), - [anon_sym_BSLASHPnotecite] = ACTIONS(4995), - [anon_sym_BSLASHfnotecite] = ACTIONS(4995), - [anon_sym_BSLASHlabel] = ACTIONS(4995), - [anon_sym_BSLASHref] = ACTIONS(4995), - [anon_sym_BSLASHeqref] = ACTIONS(4995), - [anon_sym_BSLASHvref] = ACTIONS(4995), - [anon_sym_BSLASHVref] = ACTIONS(4995), - [anon_sym_BSLASHautoref] = ACTIONS(4995), - [anon_sym_BSLASHpageref] = ACTIONS(4995), - [anon_sym_BSLASHcref] = ACTIONS(4995), - [anon_sym_BSLASHCref] = ACTIONS(4995), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnameCref] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHlabelcref] = ACTIONS(4995), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCrefrange] = ACTIONS(4995), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnewlabel] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdef] = ACTIONS(4995), - [anon_sym_BSLASHlet] = ACTIONS(4995), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), - [anon_sym_BSLASHgls] = ACTIONS(4995), - [anon_sym_BSLASHGls] = ACTIONS(4995), - [anon_sym_BSLASHGLS] = ACTIONS(4995), - [anon_sym_BSLASHglspl] = ACTIONS(4995), - [anon_sym_BSLASHGlspl] = ACTIONS(4995), - [anon_sym_BSLASHGLSpl] = ACTIONS(4995), - [anon_sym_BSLASHglsdisp] = ACTIONS(4995), - [anon_sym_BSLASHglslink] = ACTIONS(4995), - [anon_sym_BSLASHglstext] = ACTIONS(4995), - [anon_sym_BSLASHGlstext] = ACTIONS(4995), - [anon_sym_BSLASHGLStext] = ACTIONS(4995), - [anon_sym_BSLASHglsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), - [anon_sym_BSLASHglsplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSplural] = ACTIONS(4995), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHglsname] = ACTIONS(4995), - [anon_sym_BSLASHGlsname] = ACTIONS(4995), - [anon_sym_BSLASHGLSname] = ACTIONS(4995), - [anon_sym_BSLASHglssymbol] = ACTIONS(4995), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), - [anon_sym_BSLASHglsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), - [anon_sym_BSLASHglsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), - [anon_sym_BSLASHglsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), - [anon_sym_BSLASHglsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), - [anon_sym_BSLASHglsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), - [anon_sym_BSLASHnewacronym] = ACTIONS(4995), - [anon_sym_BSLASHacrshort] = ACTIONS(4995), - [anon_sym_BSLASHAcrshort] = ACTIONS(4995), - [anon_sym_BSLASHACRshort] = ACTIONS(4995), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), - [anon_sym_BSLASHacrlong] = ACTIONS(4995), - [anon_sym_BSLASHAcrlong] = ACTIONS(4995), - [anon_sym_BSLASHACRlong] = ACTIONS(4995), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), - [anon_sym_BSLASHacrfull] = ACTIONS(4995), - [anon_sym_BSLASHAcrfull] = ACTIONS(4995), - [anon_sym_BSLASHACRfull] = ACTIONS(4995), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), - [anon_sym_BSLASHacs] = ACTIONS(4995), - [anon_sym_BSLASHAcs] = ACTIONS(4995), - [anon_sym_BSLASHacsp] = ACTIONS(4995), - [anon_sym_BSLASHAcsp] = ACTIONS(4995), - [anon_sym_BSLASHacl] = ACTIONS(4995), - [anon_sym_BSLASHAcl] = ACTIONS(4995), - [anon_sym_BSLASHaclp] = ACTIONS(4995), - [anon_sym_BSLASHAclp] = ACTIONS(4995), - [anon_sym_BSLASHacf] = ACTIONS(4995), - [anon_sym_BSLASHAcf] = ACTIONS(4995), - [anon_sym_BSLASHacfp] = ACTIONS(4995), - [anon_sym_BSLASHAcfp] = ACTIONS(4995), - [anon_sym_BSLASHac] = ACTIONS(4995), - [anon_sym_BSLASHAc] = ACTIONS(4995), - [anon_sym_BSLASHacp] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), - [anon_sym_BSLASHcolor] = ACTIONS(4995), - [anon_sym_BSLASHcolorbox] = ACTIONS(4995), - [anon_sym_BSLASHtextcolor] = ACTIONS(4995), - [anon_sym_BSLASHpagecolor] = ACTIONS(4995), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), + [anon_sym_BSLASHiffalse] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5035), + [anon_sym_RPAREN] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_RBRACK] = ACTIONS(5035), + [anon_sym_COMMA] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_BSLASHpart] = ACTIONS(5037), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), + [anon_sym_BSLASHaddpart] = ACTIONS(5037), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), + [anon_sym_BSLASHchapter] = ACTIONS(5037), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), + [anon_sym_BSLASHaddchap] = ACTIONS(5037), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsection] = ACTIONS(5037), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), + [anon_sym_BSLASHaddsec] = ACTIONS(5037), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsubsection] = ACTIONS(5037), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), + [anon_sym_BSLASHparagraph] = ACTIONS(5037), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), + [anon_sym_BSLASHitem] = ACTIONS(5037), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5035), + [sym_word] = ACTIONS(5037), + [sym_placeholder] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5037), + [anon_sym_STAR] = ACTIONS(5037), + [anon_sym_SLASH] = ACTIONS(5037), + [anon_sym_CARET] = ACTIONS(5037), + [anon_sym__] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_COLON] = ACTIONS(5037), + [anon_sym_SQUOTE] = ACTIONS(5037), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), + [anon_sym_DOLLAR] = ACTIONS(5037), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5035), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), + [anon_sym_BSLASHbegin] = ACTIONS(5037), + [anon_sym_BSLASHusepackage] = ACTIONS(5037), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), + [anon_sym_BSLASHinclude] = ACTIONS(5037), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), + [anon_sym_BSLASHinput] = ACTIONS(5037), + [anon_sym_BSLASHsubfile] = ACTIONS(5037), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), + [anon_sym_BSLASHbibliography] = ACTIONS(5037), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), + [anon_sym_BSLASHincludesvg] = ACTIONS(5037), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), + [anon_sym_BSLASHimport] = ACTIONS(5037), + [anon_sym_BSLASHsubimport] = ACTIONS(5037), + [anon_sym_BSLASHinputfrom] = ACTIONS(5037), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), + [anon_sym_BSLASHincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHcaption] = ACTIONS(5037), + [anon_sym_BSLASHcite] = ACTIONS(5037), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCite] = ACTIONS(5037), + [anon_sym_BSLASHnocite] = ACTIONS(5037), + [anon_sym_BSLASHcitet] = ACTIONS(5037), + [anon_sym_BSLASHcitep] = ACTIONS(5037), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteauthor] = ACTIONS(5037), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitetitle] = ACTIONS(5037), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteyear] = ACTIONS(5037), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitedate] = ACTIONS(5037), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteurl] = ACTIONS(5037), + [anon_sym_BSLASHfullcite] = ACTIONS(5037), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), + [anon_sym_BSLASHcitealt] = ACTIONS(5037), + [anon_sym_BSLASHcitealp] = ACTIONS(5037), + [anon_sym_BSLASHcitetext] = ACTIONS(5037), + [anon_sym_BSLASHparencite] = ACTIONS(5037), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHParencite] = ACTIONS(5037), + [anon_sym_BSLASHfootcite] = ACTIONS(5037), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), + [anon_sym_BSLASHtextcite] = ACTIONS(5037), + [anon_sym_BSLASHTextcite] = ACTIONS(5037), + [anon_sym_BSLASHsmartcite] = ACTIONS(5037), + [anon_sym_BSLASHSmartcite] = ACTIONS(5037), + [anon_sym_BSLASHsupercite] = ACTIONS(5037), + [anon_sym_BSLASHautocite] = ACTIONS(5037), + [anon_sym_BSLASHAutocite] = ACTIONS(5037), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHvolcite] = ACTIONS(5037), + [anon_sym_BSLASHVolcite] = ACTIONS(5037), + [anon_sym_BSLASHpvolcite] = ACTIONS(5037), + [anon_sym_BSLASHPvolcite] = ACTIONS(5037), + [anon_sym_BSLASHfvolcite] = ACTIONS(5037), + [anon_sym_BSLASHftvolcite] = ACTIONS(5037), + [anon_sym_BSLASHsvolcite] = ACTIONS(5037), + [anon_sym_BSLASHSvolcite] = ACTIONS(5037), + [anon_sym_BSLASHtvolcite] = ACTIONS(5037), + [anon_sym_BSLASHTvolcite] = ACTIONS(5037), + [anon_sym_BSLASHavolcite] = ACTIONS(5037), + [anon_sym_BSLASHAvolcite] = ACTIONS(5037), + [anon_sym_BSLASHnotecite] = ACTIONS(5037), + [anon_sym_BSLASHNotecite] = ACTIONS(5037), + [anon_sym_BSLASHpnotecite] = ACTIONS(5037), + [anon_sym_BSLASHPnotecite] = ACTIONS(5037), + [anon_sym_BSLASHfnotecite] = ACTIONS(5037), + [anon_sym_BSLASHlabel] = ACTIONS(5037), + [anon_sym_BSLASHref] = ACTIONS(5037), + [anon_sym_BSLASHeqref] = ACTIONS(5037), + [anon_sym_BSLASHvref] = ACTIONS(5037), + [anon_sym_BSLASHVref] = ACTIONS(5037), + [anon_sym_BSLASHautoref] = ACTIONS(5037), + [anon_sym_BSLASHpageref] = ACTIONS(5037), + [anon_sym_BSLASHcref] = ACTIONS(5037), + [anon_sym_BSLASHCref] = ACTIONS(5037), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnameCref] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHlabelcref] = ACTIONS(5037), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCrefrange] = ACTIONS(5037), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnewlabel] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), + [anon_sym_BSLASHdef] = ACTIONS(5037), + [anon_sym_BSLASHlet] = ACTIONS(5037), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), + [anon_sym_BSLASHgls] = ACTIONS(5037), + [anon_sym_BSLASHGls] = ACTIONS(5037), + [anon_sym_BSLASHGLS] = ACTIONS(5037), + [anon_sym_BSLASHglspl] = ACTIONS(5037), + [anon_sym_BSLASHGlspl] = ACTIONS(5037), + [anon_sym_BSLASHGLSpl] = ACTIONS(5037), + [anon_sym_BSLASHglsdisp] = ACTIONS(5037), + [anon_sym_BSLASHglslink] = ACTIONS(5037), + [anon_sym_BSLASHglstext] = ACTIONS(5037), + [anon_sym_BSLASHGlstext] = ACTIONS(5037), + [anon_sym_BSLASHGLStext] = ACTIONS(5037), + [anon_sym_BSLASHglsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), + [anon_sym_BSLASHglsplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSplural] = ACTIONS(5037), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHglsname] = ACTIONS(5037), + [anon_sym_BSLASHGlsname] = ACTIONS(5037), + [anon_sym_BSLASHGLSname] = ACTIONS(5037), + [anon_sym_BSLASHglssymbol] = ACTIONS(5037), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), + [anon_sym_BSLASHglsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), + [anon_sym_BSLASHglsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), + [anon_sym_BSLASHglsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), + [anon_sym_BSLASHglsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), + [anon_sym_BSLASHglsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), + [anon_sym_BSLASHnewacronym] = ACTIONS(5037), + [anon_sym_BSLASHacrshort] = ACTIONS(5037), + [anon_sym_BSLASHAcrshort] = ACTIONS(5037), + [anon_sym_BSLASHACRshort] = ACTIONS(5037), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), + [anon_sym_BSLASHacrlong] = ACTIONS(5037), + [anon_sym_BSLASHAcrlong] = ACTIONS(5037), + [anon_sym_BSLASHACRlong] = ACTIONS(5037), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), + [anon_sym_BSLASHacrfull] = ACTIONS(5037), + [anon_sym_BSLASHAcrfull] = ACTIONS(5037), + [anon_sym_BSLASHACRfull] = ACTIONS(5037), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), + [anon_sym_BSLASHacs] = ACTIONS(5037), + [anon_sym_BSLASHAcs] = ACTIONS(5037), + [anon_sym_BSLASHacsp] = ACTIONS(5037), + [anon_sym_BSLASHAcsp] = ACTIONS(5037), + [anon_sym_BSLASHacl] = ACTIONS(5037), + [anon_sym_BSLASHAcl] = ACTIONS(5037), + [anon_sym_BSLASHaclp] = ACTIONS(5037), + [anon_sym_BSLASHAclp] = ACTIONS(5037), + [anon_sym_BSLASHacf] = ACTIONS(5037), + [anon_sym_BSLASHAcf] = ACTIONS(5037), + [anon_sym_BSLASHacfp] = ACTIONS(5037), + [anon_sym_BSLASHAcfp] = ACTIONS(5037), + [anon_sym_BSLASHac] = ACTIONS(5037), + [anon_sym_BSLASHAc] = ACTIONS(5037), + [anon_sym_BSLASHacp] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), + [anon_sym_BSLASHcolor] = ACTIONS(5037), + [anon_sym_BSLASHcolorbox] = ACTIONS(5037), + [anon_sym_BSLASHtextcolor] = ACTIONS(5037), + [anon_sym_BSLASHpagecolor] = ACTIONS(5037), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [anon_sym_BSLASHtext] = ACTIONS(5037), + [anon_sym_BSLASHintertext] = ACTIONS(5037), + [anon_sym_shortintertext] = ACTIONS(5037), }, - [1034] = { - [sym_command_name] = ACTIONS(5201), + [879] = { + [sym_command_name] = ACTIONS(5033), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_BSLASHpart] = ACTIONS(5201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddpart] = ACTIONS(5201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHchapter] = ACTIONS(5201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddchap] = ACTIONS(5201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsection] = ACTIONS(5201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddsec] = ACTIONS(5201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHparagraph] = ACTIONS(5201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHitem] = ACTIONS(5201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5199), - [anon_sym_BSLASHbegin] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), + [anon_sym_BSLASHiffalse] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_BSLASHpart] = ACTIONS(5033), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddpart] = ACTIONS(5033), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), + [anon_sym_BSLASHchapter] = ACTIONS(5033), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddchap] = ACTIONS(5033), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsection] = ACTIONS(5033), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddsec] = ACTIONS(5033), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubsection] = ACTIONS(5033), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHparagraph] = ACTIONS(5033), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), + [anon_sym_BSLASHitem] = ACTIONS(5033), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5031), + [sym_word] = ACTIONS(5033), + [sym_placeholder] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5033), + [anon_sym_DASH] = ACTIONS(5033), + [anon_sym_STAR] = ACTIONS(5033), + [anon_sym_SLASH] = ACTIONS(5033), + [anon_sym_CARET] = ACTIONS(5033), + [anon_sym__] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5033), + [anon_sym_PIPE] = ACTIONS(5033), + [anon_sym_COLON] = ACTIONS(5033), + [anon_sym_SQUOTE] = ACTIONS(5033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), + [anon_sym_DOLLAR] = ACTIONS(5033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), + [anon_sym_BSLASHbegin] = ACTIONS(5033), + [anon_sym_BSLASHusepackage] = ACTIONS(5033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), + [anon_sym_BSLASHinclude] = ACTIONS(5033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), + [anon_sym_BSLASHinput] = ACTIONS(5033), + [anon_sym_BSLASHsubfile] = ACTIONS(5033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), + [anon_sym_BSLASHbibliography] = ACTIONS(5033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), + [anon_sym_BSLASHincludesvg] = ACTIONS(5033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), + [anon_sym_BSLASHimport] = ACTIONS(5033), + [anon_sym_BSLASHsubimport] = ACTIONS(5033), + [anon_sym_BSLASHinputfrom] = ACTIONS(5033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), + [anon_sym_BSLASHincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHcaption] = ACTIONS(5033), + [anon_sym_BSLASHcite] = ACTIONS(5033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCite] = ACTIONS(5033), + [anon_sym_BSLASHnocite] = ACTIONS(5033), + [anon_sym_BSLASHcitet] = ACTIONS(5033), + [anon_sym_BSLASHcitep] = ACTIONS(5033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteauthor] = ACTIONS(5033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitetitle] = ACTIONS(5033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteyear] = ACTIONS(5033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitedate] = ACTIONS(5033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteurl] = ACTIONS(5033), + [anon_sym_BSLASHfullcite] = ACTIONS(5033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), + [anon_sym_BSLASHcitealt] = ACTIONS(5033), + [anon_sym_BSLASHcitealp] = ACTIONS(5033), + [anon_sym_BSLASHcitetext] = ACTIONS(5033), + [anon_sym_BSLASHparencite] = ACTIONS(5033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHParencite] = ACTIONS(5033), + [anon_sym_BSLASHfootcite] = ACTIONS(5033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), + [anon_sym_BSLASHtextcite] = ACTIONS(5033), + [anon_sym_BSLASHTextcite] = ACTIONS(5033), + [anon_sym_BSLASHsmartcite] = ACTIONS(5033), + [anon_sym_BSLASHSmartcite] = ACTIONS(5033), + [anon_sym_BSLASHsupercite] = ACTIONS(5033), + [anon_sym_BSLASHautocite] = ACTIONS(5033), + [anon_sym_BSLASHAutocite] = ACTIONS(5033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHvolcite] = ACTIONS(5033), + [anon_sym_BSLASHVolcite] = ACTIONS(5033), + [anon_sym_BSLASHpvolcite] = ACTIONS(5033), + [anon_sym_BSLASHPvolcite] = ACTIONS(5033), + [anon_sym_BSLASHfvolcite] = ACTIONS(5033), + [anon_sym_BSLASHftvolcite] = ACTIONS(5033), + [anon_sym_BSLASHsvolcite] = ACTIONS(5033), + [anon_sym_BSLASHSvolcite] = ACTIONS(5033), + [anon_sym_BSLASHtvolcite] = ACTIONS(5033), + [anon_sym_BSLASHTvolcite] = ACTIONS(5033), + [anon_sym_BSLASHavolcite] = ACTIONS(5033), + [anon_sym_BSLASHAvolcite] = ACTIONS(5033), + [anon_sym_BSLASHnotecite] = ACTIONS(5033), + [anon_sym_BSLASHNotecite] = ACTIONS(5033), + [anon_sym_BSLASHpnotecite] = ACTIONS(5033), + [anon_sym_BSLASHPnotecite] = ACTIONS(5033), + [anon_sym_BSLASHfnotecite] = ACTIONS(5033), + [anon_sym_BSLASHlabel] = ACTIONS(5033), + [anon_sym_BSLASHref] = ACTIONS(5033), + [anon_sym_BSLASHeqref] = ACTIONS(5033), + [anon_sym_BSLASHvref] = ACTIONS(5033), + [anon_sym_BSLASHVref] = ACTIONS(5033), + [anon_sym_BSLASHautoref] = ACTIONS(5033), + [anon_sym_BSLASHpageref] = ACTIONS(5033), + [anon_sym_BSLASHcref] = ACTIONS(5033), + [anon_sym_BSLASHCref] = ACTIONS(5033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnameCref] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHlabelcref] = ACTIONS(5033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCrefrange] = ACTIONS(5033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnewlabel] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), + [anon_sym_BSLASHdef] = ACTIONS(5033), + [anon_sym_BSLASHlet] = ACTIONS(5033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), + [anon_sym_BSLASHgls] = ACTIONS(5033), + [anon_sym_BSLASHGls] = ACTIONS(5033), + [anon_sym_BSLASHGLS] = ACTIONS(5033), + [anon_sym_BSLASHglspl] = ACTIONS(5033), + [anon_sym_BSLASHGlspl] = ACTIONS(5033), + [anon_sym_BSLASHGLSpl] = ACTIONS(5033), + [anon_sym_BSLASHglsdisp] = ACTIONS(5033), + [anon_sym_BSLASHglslink] = ACTIONS(5033), + [anon_sym_BSLASHglstext] = ACTIONS(5033), + [anon_sym_BSLASHGlstext] = ACTIONS(5033), + [anon_sym_BSLASHGLStext] = ACTIONS(5033), + [anon_sym_BSLASHglsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), + [anon_sym_BSLASHglsplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSplural] = ACTIONS(5033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHglsname] = ACTIONS(5033), + [anon_sym_BSLASHGlsname] = ACTIONS(5033), + [anon_sym_BSLASHGLSname] = ACTIONS(5033), + [anon_sym_BSLASHglssymbol] = ACTIONS(5033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), + [anon_sym_BSLASHglsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), + [anon_sym_BSLASHglsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), + [anon_sym_BSLASHglsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), + [anon_sym_BSLASHglsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), + [anon_sym_BSLASHglsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), + [anon_sym_BSLASHnewacronym] = ACTIONS(5033), + [anon_sym_BSLASHacrshort] = ACTIONS(5033), + [anon_sym_BSLASHAcrshort] = ACTIONS(5033), + [anon_sym_BSLASHACRshort] = ACTIONS(5033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), + [anon_sym_BSLASHacrlong] = ACTIONS(5033), + [anon_sym_BSLASHAcrlong] = ACTIONS(5033), + [anon_sym_BSLASHACRlong] = ACTIONS(5033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), + [anon_sym_BSLASHacrfull] = ACTIONS(5033), + [anon_sym_BSLASHAcrfull] = ACTIONS(5033), + [anon_sym_BSLASHACRfull] = ACTIONS(5033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), + [anon_sym_BSLASHacs] = ACTIONS(5033), + [anon_sym_BSLASHAcs] = ACTIONS(5033), + [anon_sym_BSLASHacsp] = ACTIONS(5033), + [anon_sym_BSLASHAcsp] = ACTIONS(5033), + [anon_sym_BSLASHacl] = ACTIONS(5033), + [anon_sym_BSLASHAcl] = ACTIONS(5033), + [anon_sym_BSLASHaclp] = ACTIONS(5033), + [anon_sym_BSLASHAclp] = ACTIONS(5033), + [anon_sym_BSLASHacf] = ACTIONS(5033), + [anon_sym_BSLASHAcf] = ACTIONS(5033), + [anon_sym_BSLASHacfp] = ACTIONS(5033), + [anon_sym_BSLASHAcfp] = ACTIONS(5033), + [anon_sym_BSLASHac] = ACTIONS(5033), + [anon_sym_BSLASHAc] = ACTIONS(5033), + [anon_sym_BSLASHacp] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), + [anon_sym_BSLASHcolor] = ACTIONS(5033), + [anon_sym_BSLASHcolorbox] = ACTIONS(5033), + [anon_sym_BSLASHtextcolor] = ACTIONS(5033), + [anon_sym_BSLASHpagecolor] = ACTIONS(5033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [anon_sym_BSLASHtext] = ACTIONS(5033), + [anon_sym_BSLASHintertext] = ACTIONS(5033), + [anon_sym_shortintertext] = ACTIONS(5033), }, - [1035] = { - [sym_command_name] = ACTIONS(5205), + [880] = { + [sym_command_name] = ACTIONS(5119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_BSLASHpart] = ACTIONS(5119), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddpart] = ACTIONS(5119), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5117), + [anon_sym_BSLASHchapter] = ACTIONS(5119), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddchap] = ACTIONS(5119), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsection] = ACTIONS(5119), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddsec] = ACTIONS(5119), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubsection] = ACTIONS(5119), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5119), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHparagraph] = ACTIONS(5119), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5119), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5117), + [anon_sym_BSLASHitem] = ACTIONS(5119), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5117), + [sym_word] = ACTIONS(5119), + [sym_placeholder] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5119), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_CARET] = ACTIONS(5119), + [anon_sym__] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_COLON] = ACTIONS(5119), + [anon_sym_SQUOTE] = ACTIONS(5119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), + [anon_sym_DOLLAR] = ACTIONS(5119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), + [anon_sym_BSLASHbegin] = ACTIONS(5119), + [anon_sym_BSLASHusepackage] = ACTIONS(5119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), + [anon_sym_BSLASHinclude] = ACTIONS(5119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), + [anon_sym_BSLASHinput] = ACTIONS(5119), + [anon_sym_BSLASHsubfile] = ACTIONS(5119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), + [anon_sym_BSLASHbibliography] = ACTIONS(5119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), + [anon_sym_BSLASHincludesvg] = ACTIONS(5119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), + [anon_sym_BSLASHimport] = ACTIONS(5119), + [anon_sym_BSLASHsubimport] = ACTIONS(5119), + [anon_sym_BSLASHinputfrom] = ACTIONS(5119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), + [anon_sym_BSLASHincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHcaption] = ACTIONS(5119), + [anon_sym_BSLASHcite] = ACTIONS(5119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCite] = ACTIONS(5119), + [anon_sym_BSLASHnocite] = ACTIONS(5119), + [anon_sym_BSLASHcitet] = ACTIONS(5119), + [anon_sym_BSLASHcitep] = ACTIONS(5119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteauthor] = ACTIONS(5119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitetitle] = ACTIONS(5119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteyear] = ACTIONS(5119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitedate] = ACTIONS(5119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteurl] = ACTIONS(5119), + [anon_sym_BSLASHfullcite] = ACTIONS(5119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), + [anon_sym_BSLASHcitealt] = ACTIONS(5119), + [anon_sym_BSLASHcitealp] = ACTIONS(5119), + [anon_sym_BSLASHcitetext] = ACTIONS(5119), + [anon_sym_BSLASHparencite] = ACTIONS(5119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHParencite] = ACTIONS(5119), + [anon_sym_BSLASHfootcite] = ACTIONS(5119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), + [anon_sym_BSLASHtextcite] = ACTIONS(5119), + [anon_sym_BSLASHTextcite] = ACTIONS(5119), + [anon_sym_BSLASHsmartcite] = ACTIONS(5119), + [anon_sym_BSLASHSmartcite] = ACTIONS(5119), + [anon_sym_BSLASHsupercite] = ACTIONS(5119), + [anon_sym_BSLASHautocite] = ACTIONS(5119), + [anon_sym_BSLASHAutocite] = ACTIONS(5119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHvolcite] = ACTIONS(5119), + [anon_sym_BSLASHVolcite] = ACTIONS(5119), + [anon_sym_BSLASHpvolcite] = ACTIONS(5119), + [anon_sym_BSLASHPvolcite] = ACTIONS(5119), + [anon_sym_BSLASHfvolcite] = ACTIONS(5119), + [anon_sym_BSLASHftvolcite] = ACTIONS(5119), + [anon_sym_BSLASHsvolcite] = ACTIONS(5119), + [anon_sym_BSLASHSvolcite] = ACTIONS(5119), + [anon_sym_BSLASHtvolcite] = ACTIONS(5119), + [anon_sym_BSLASHTvolcite] = ACTIONS(5119), + [anon_sym_BSLASHavolcite] = ACTIONS(5119), + [anon_sym_BSLASHAvolcite] = ACTIONS(5119), + [anon_sym_BSLASHnotecite] = ACTIONS(5119), + [anon_sym_BSLASHNotecite] = ACTIONS(5119), + [anon_sym_BSLASHpnotecite] = ACTIONS(5119), + [anon_sym_BSLASHPnotecite] = ACTIONS(5119), + [anon_sym_BSLASHfnotecite] = ACTIONS(5119), + [anon_sym_BSLASHlabel] = ACTIONS(5119), + [anon_sym_BSLASHref] = ACTIONS(5119), + [anon_sym_BSLASHeqref] = ACTIONS(5119), + [anon_sym_BSLASHvref] = ACTIONS(5119), + [anon_sym_BSLASHVref] = ACTIONS(5119), + [anon_sym_BSLASHautoref] = ACTIONS(5119), + [anon_sym_BSLASHpageref] = ACTIONS(5119), + [anon_sym_BSLASHcref] = ACTIONS(5119), + [anon_sym_BSLASHCref] = ACTIONS(5119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnameCref] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHlabelcref] = ACTIONS(5119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCrefrange] = ACTIONS(5119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnewlabel] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), + [anon_sym_BSLASHdef] = ACTIONS(5119), + [anon_sym_BSLASHlet] = ACTIONS(5119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), + [anon_sym_BSLASHgls] = ACTIONS(5119), + [anon_sym_BSLASHGls] = ACTIONS(5119), + [anon_sym_BSLASHGLS] = ACTIONS(5119), + [anon_sym_BSLASHglspl] = ACTIONS(5119), + [anon_sym_BSLASHGlspl] = ACTIONS(5119), + [anon_sym_BSLASHGLSpl] = ACTIONS(5119), + [anon_sym_BSLASHglsdisp] = ACTIONS(5119), + [anon_sym_BSLASHglslink] = ACTIONS(5119), + [anon_sym_BSLASHglstext] = ACTIONS(5119), + [anon_sym_BSLASHGlstext] = ACTIONS(5119), + [anon_sym_BSLASHGLStext] = ACTIONS(5119), + [anon_sym_BSLASHglsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), + [anon_sym_BSLASHglsplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSplural] = ACTIONS(5119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHglsname] = ACTIONS(5119), + [anon_sym_BSLASHGlsname] = ACTIONS(5119), + [anon_sym_BSLASHGLSname] = ACTIONS(5119), + [anon_sym_BSLASHglssymbol] = ACTIONS(5119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), + [anon_sym_BSLASHglsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), + [anon_sym_BSLASHglsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), + [anon_sym_BSLASHglsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), + [anon_sym_BSLASHglsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), + [anon_sym_BSLASHglsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), + [anon_sym_BSLASHnewacronym] = ACTIONS(5119), + [anon_sym_BSLASHacrshort] = ACTIONS(5119), + [anon_sym_BSLASHAcrshort] = ACTIONS(5119), + [anon_sym_BSLASHACRshort] = ACTIONS(5119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), + [anon_sym_BSLASHacrlong] = ACTIONS(5119), + [anon_sym_BSLASHAcrlong] = ACTIONS(5119), + [anon_sym_BSLASHACRlong] = ACTIONS(5119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), + [anon_sym_BSLASHacrfull] = ACTIONS(5119), + [anon_sym_BSLASHAcrfull] = ACTIONS(5119), + [anon_sym_BSLASHACRfull] = ACTIONS(5119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), + [anon_sym_BSLASHacs] = ACTIONS(5119), + [anon_sym_BSLASHAcs] = ACTIONS(5119), + [anon_sym_BSLASHacsp] = ACTIONS(5119), + [anon_sym_BSLASHAcsp] = ACTIONS(5119), + [anon_sym_BSLASHacl] = ACTIONS(5119), + [anon_sym_BSLASHAcl] = ACTIONS(5119), + [anon_sym_BSLASHaclp] = ACTIONS(5119), + [anon_sym_BSLASHAclp] = ACTIONS(5119), + [anon_sym_BSLASHacf] = ACTIONS(5119), + [anon_sym_BSLASHAcf] = ACTIONS(5119), + [anon_sym_BSLASHacfp] = ACTIONS(5119), + [anon_sym_BSLASHAcfp] = ACTIONS(5119), + [anon_sym_BSLASHac] = ACTIONS(5119), + [anon_sym_BSLASHAc] = ACTIONS(5119), + [anon_sym_BSLASHacp] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), + [anon_sym_BSLASHcolor] = ACTIONS(5119), + [anon_sym_BSLASHcolorbox] = ACTIONS(5119), + [anon_sym_BSLASHtextcolor] = ACTIONS(5119), + [anon_sym_BSLASHpagecolor] = ACTIONS(5119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), + [anon_sym_BSLASHtext] = ACTIONS(5119), + [anon_sym_BSLASHintertext] = ACTIONS(5119), + [anon_sym_shortintertext] = ACTIONS(5119), + }, + [881] = { + [sym_command_name] = ACTIONS(5029), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_BSLASHpart] = ACTIONS(5205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddpart] = ACTIONS(5205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHchapter] = ACTIONS(5205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddchap] = ACTIONS(5205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsection] = ACTIONS(5205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddsec] = ACTIONS(5205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHparagraph] = ACTIONS(5205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHitem] = ACTIONS(5205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5203), - [anon_sym_BSLASHbegin] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), + [anon_sym_BSLASHiffalse] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_RBRACK] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_BSLASHpart] = ACTIONS(5029), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddpart] = ACTIONS(5029), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), + [anon_sym_BSLASHchapter] = ACTIONS(5029), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddchap] = ACTIONS(5029), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsection] = ACTIONS(5029), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddsec] = ACTIONS(5029), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubsection] = ACTIONS(5029), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHparagraph] = ACTIONS(5029), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), + [anon_sym_BSLASHitem] = ACTIONS(5029), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5027), + [sym_word] = ACTIONS(5029), + [sym_placeholder] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_CARET] = ACTIONS(5029), + [anon_sym__] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_COLON] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), + [anon_sym_DOLLAR] = ACTIONS(5029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), + [anon_sym_BSLASHbegin] = ACTIONS(5029), + [anon_sym_BSLASHusepackage] = ACTIONS(5029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), + [anon_sym_BSLASHinclude] = ACTIONS(5029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), + [anon_sym_BSLASHinput] = ACTIONS(5029), + [anon_sym_BSLASHsubfile] = ACTIONS(5029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), + [anon_sym_BSLASHbibliography] = ACTIONS(5029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), + [anon_sym_BSLASHincludesvg] = ACTIONS(5029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), + [anon_sym_BSLASHimport] = ACTIONS(5029), + [anon_sym_BSLASHsubimport] = ACTIONS(5029), + [anon_sym_BSLASHinputfrom] = ACTIONS(5029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), + [anon_sym_BSLASHincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHcaption] = ACTIONS(5029), + [anon_sym_BSLASHcite] = ACTIONS(5029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCite] = ACTIONS(5029), + [anon_sym_BSLASHnocite] = ACTIONS(5029), + [anon_sym_BSLASHcitet] = ACTIONS(5029), + [anon_sym_BSLASHcitep] = ACTIONS(5029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteauthor] = ACTIONS(5029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitetitle] = ACTIONS(5029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteyear] = ACTIONS(5029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitedate] = ACTIONS(5029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteurl] = ACTIONS(5029), + [anon_sym_BSLASHfullcite] = ACTIONS(5029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), + [anon_sym_BSLASHcitealt] = ACTIONS(5029), + [anon_sym_BSLASHcitealp] = ACTIONS(5029), + [anon_sym_BSLASHcitetext] = ACTIONS(5029), + [anon_sym_BSLASHparencite] = ACTIONS(5029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHParencite] = ACTIONS(5029), + [anon_sym_BSLASHfootcite] = ACTIONS(5029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), + [anon_sym_BSLASHtextcite] = ACTIONS(5029), + [anon_sym_BSLASHTextcite] = ACTIONS(5029), + [anon_sym_BSLASHsmartcite] = ACTIONS(5029), + [anon_sym_BSLASHSmartcite] = ACTIONS(5029), + [anon_sym_BSLASHsupercite] = ACTIONS(5029), + [anon_sym_BSLASHautocite] = ACTIONS(5029), + [anon_sym_BSLASHAutocite] = ACTIONS(5029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHvolcite] = ACTIONS(5029), + [anon_sym_BSLASHVolcite] = ACTIONS(5029), + [anon_sym_BSLASHpvolcite] = ACTIONS(5029), + [anon_sym_BSLASHPvolcite] = ACTIONS(5029), + [anon_sym_BSLASHfvolcite] = ACTIONS(5029), + [anon_sym_BSLASHftvolcite] = ACTIONS(5029), + [anon_sym_BSLASHsvolcite] = ACTIONS(5029), + [anon_sym_BSLASHSvolcite] = ACTIONS(5029), + [anon_sym_BSLASHtvolcite] = ACTIONS(5029), + [anon_sym_BSLASHTvolcite] = ACTIONS(5029), + [anon_sym_BSLASHavolcite] = ACTIONS(5029), + [anon_sym_BSLASHAvolcite] = ACTIONS(5029), + [anon_sym_BSLASHnotecite] = ACTIONS(5029), + [anon_sym_BSLASHNotecite] = ACTIONS(5029), + [anon_sym_BSLASHpnotecite] = ACTIONS(5029), + [anon_sym_BSLASHPnotecite] = ACTIONS(5029), + [anon_sym_BSLASHfnotecite] = ACTIONS(5029), + [anon_sym_BSLASHlabel] = ACTIONS(5029), + [anon_sym_BSLASHref] = ACTIONS(5029), + [anon_sym_BSLASHeqref] = ACTIONS(5029), + [anon_sym_BSLASHvref] = ACTIONS(5029), + [anon_sym_BSLASHVref] = ACTIONS(5029), + [anon_sym_BSLASHautoref] = ACTIONS(5029), + [anon_sym_BSLASHpageref] = ACTIONS(5029), + [anon_sym_BSLASHcref] = ACTIONS(5029), + [anon_sym_BSLASHCref] = ACTIONS(5029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnameCref] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHlabelcref] = ACTIONS(5029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCrefrange] = ACTIONS(5029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnewlabel] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), + [anon_sym_BSLASHdef] = ACTIONS(5029), + [anon_sym_BSLASHlet] = ACTIONS(5029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), + [anon_sym_BSLASHgls] = ACTIONS(5029), + [anon_sym_BSLASHGls] = ACTIONS(5029), + [anon_sym_BSLASHGLS] = ACTIONS(5029), + [anon_sym_BSLASHglspl] = ACTIONS(5029), + [anon_sym_BSLASHGlspl] = ACTIONS(5029), + [anon_sym_BSLASHGLSpl] = ACTIONS(5029), + [anon_sym_BSLASHglsdisp] = ACTIONS(5029), + [anon_sym_BSLASHglslink] = ACTIONS(5029), + [anon_sym_BSLASHglstext] = ACTIONS(5029), + [anon_sym_BSLASHGlstext] = ACTIONS(5029), + [anon_sym_BSLASHGLStext] = ACTIONS(5029), + [anon_sym_BSLASHglsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), + [anon_sym_BSLASHglsplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSplural] = ACTIONS(5029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHglsname] = ACTIONS(5029), + [anon_sym_BSLASHGlsname] = ACTIONS(5029), + [anon_sym_BSLASHGLSname] = ACTIONS(5029), + [anon_sym_BSLASHglssymbol] = ACTIONS(5029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), + [anon_sym_BSLASHglsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), + [anon_sym_BSLASHglsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), + [anon_sym_BSLASHglsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), + [anon_sym_BSLASHglsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), + [anon_sym_BSLASHglsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), + [anon_sym_BSLASHnewacronym] = ACTIONS(5029), + [anon_sym_BSLASHacrshort] = ACTIONS(5029), + [anon_sym_BSLASHAcrshort] = ACTIONS(5029), + [anon_sym_BSLASHACRshort] = ACTIONS(5029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), + [anon_sym_BSLASHacrlong] = ACTIONS(5029), + [anon_sym_BSLASHAcrlong] = ACTIONS(5029), + [anon_sym_BSLASHACRlong] = ACTIONS(5029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), + [anon_sym_BSLASHacrfull] = ACTIONS(5029), + [anon_sym_BSLASHAcrfull] = ACTIONS(5029), + [anon_sym_BSLASHACRfull] = ACTIONS(5029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), + [anon_sym_BSLASHacs] = ACTIONS(5029), + [anon_sym_BSLASHAcs] = ACTIONS(5029), + [anon_sym_BSLASHacsp] = ACTIONS(5029), + [anon_sym_BSLASHAcsp] = ACTIONS(5029), + [anon_sym_BSLASHacl] = ACTIONS(5029), + [anon_sym_BSLASHAcl] = ACTIONS(5029), + [anon_sym_BSLASHaclp] = ACTIONS(5029), + [anon_sym_BSLASHAclp] = ACTIONS(5029), + [anon_sym_BSLASHacf] = ACTIONS(5029), + [anon_sym_BSLASHAcf] = ACTIONS(5029), + [anon_sym_BSLASHacfp] = ACTIONS(5029), + [anon_sym_BSLASHAcfp] = ACTIONS(5029), + [anon_sym_BSLASHac] = ACTIONS(5029), + [anon_sym_BSLASHAc] = ACTIONS(5029), + [anon_sym_BSLASHacp] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), + [anon_sym_BSLASHcolor] = ACTIONS(5029), + [anon_sym_BSLASHcolorbox] = ACTIONS(5029), + [anon_sym_BSLASHtextcolor] = ACTIONS(5029), + [anon_sym_BSLASHpagecolor] = ACTIONS(5029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), + [anon_sym_BSLASHtext] = ACTIONS(5029), + [anon_sym_BSLASHintertext] = ACTIONS(5029), + [anon_sym_shortintertext] = ACTIONS(5029), }, - [1036] = { - [sym_command_name] = ACTIONS(5209), + [882] = { + [sym_command_name] = ACTIONS(5025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_BSLASHpart] = ACTIONS(5209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddpart] = ACTIONS(5209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHchapter] = ACTIONS(5209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddchap] = ACTIONS(5209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsection] = ACTIONS(5209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddsec] = ACTIONS(5209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHparagraph] = ACTIONS(5209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHitem] = ACTIONS(5209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5207), - [anon_sym_BSLASHbegin] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHiffalse] = ACTIONS(5025), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_RBRACK] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5023), + [anon_sym_BSLASHpart] = ACTIONS(5025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddpart] = ACTIONS(5025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), + [anon_sym_BSLASHchapter] = ACTIONS(5025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddchap] = ACTIONS(5025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsection] = ACTIONS(5025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddsec] = ACTIONS(5025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubsection] = ACTIONS(5025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHparagraph] = ACTIONS(5025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), + [anon_sym_BSLASHitem] = ACTIONS(5025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5023), + [sym_word] = ACTIONS(5025), + [sym_placeholder] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5025), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_SLASH] = ACTIONS(5025), + [anon_sym_CARET] = ACTIONS(5025), + [anon_sym__] = ACTIONS(5025), + [anon_sym_LT] = ACTIONS(5025), + [anon_sym_GT] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5025), + [anon_sym_PIPE] = ACTIONS(5025), + [anon_sym_COLON] = ACTIONS(5025), + [anon_sym_SQUOTE] = ACTIONS(5025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(5025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), + [anon_sym_BSLASHbegin] = ACTIONS(5025), + [anon_sym_BSLASHusepackage] = ACTIONS(5025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), + [anon_sym_BSLASHinclude] = ACTIONS(5025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), + [anon_sym_BSLASHinput] = ACTIONS(5025), + [anon_sym_BSLASHsubfile] = ACTIONS(5025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), + [anon_sym_BSLASHbibliography] = ACTIONS(5025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), + [anon_sym_BSLASHincludesvg] = ACTIONS(5025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), + [anon_sym_BSLASHimport] = ACTIONS(5025), + [anon_sym_BSLASHsubimport] = ACTIONS(5025), + [anon_sym_BSLASHinputfrom] = ACTIONS(5025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), + [anon_sym_BSLASHincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHcaption] = ACTIONS(5025), + [anon_sym_BSLASHcite] = ACTIONS(5025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCite] = ACTIONS(5025), + [anon_sym_BSLASHnocite] = ACTIONS(5025), + [anon_sym_BSLASHcitet] = ACTIONS(5025), + [anon_sym_BSLASHcitep] = ACTIONS(5025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteauthor] = ACTIONS(5025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitetitle] = ACTIONS(5025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteyear] = ACTIONS(5025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitedate] = ACTIONS(5025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteurl] = ACTIONS(5025), + [anon_sym_BSLASHfullcite] = ACTIONS(5025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), + [anon_sym_BSLASHcitealt] = ACTIONS(5025), + [anon_sym_BSLASHcitealp] = ACTIONS(5025), + [anon_sym_BSLASHcitetext] = ACTIONS(5025), + [anon_sym_BSLASHparencite] = ACTIONS(5025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHParencite] = ACTIONS(5025), + [anon_sym_BSLASHfootcite] = ACTIONS(5025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), + [anon_sym_BSLASHtextcite] = ACTIONS(5025), + [anon_sym_BSLASHTextcite] = ACTIONS(5025), + [anon_sym_BSLASHsmartcite] = ACTIONS(5025), + [anon_sym_BSLASHSmartcite] = ACTIONS(5025), + [anon_sym_BSLASHsupercite] = ACTIONS(5025), + [anon_sym_BSLASHautocite] = ACTIONS(5025), + [anon_sym_BSLASHAutocite] = ACTIONS(5025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHvolcite] = ACTIONS(5025), + [anon_sym_BSLASHVolcite] = ACTIONS(5025), + [anon_sym_BSLASHpvolcite] = ACTIONS(5025), + [anon_sym_BSLASHPvolcite] = ACTIONS(5025), + [anon_sym_BSLASHfvolcite] = ACTIONS(5025), + [anon_sym_BSLASHftvolcite] = ACTIONS(5025), + [anon_sym_BSLASHsvolcite] = ACTIONS(5025), + [anon_sym_BSLASHSvolcite] = ACTIONS(5025), + [anon_sym_BSLASHtvolcite] = ACTIONS(5025), + [anon_sym_BSLASHTvolcite] = ACTIONS(5025), + [anon_sym_BSLASHavolcite] = ACTIONS(5025), + [anon_sym_BSLASHAvolcite] = ACTIONS(5025), + [anon_sym_BSLASHnotecite] = ACTIONS(5025), + [anon_sym_BSLASHNotecite] = ACTIONS(5025), + [anon_sym_BSLASHpnotecite] = ACTIONS(5025), + [anon_sym_BSLASHPnotecite] = ACTIONS(5025), + [anon_sym_BSLASHfnotecite] = ACTIONS(5025), + [anon_sym_BSLASHlabel] = ACTIONS(5025), + [anon_sym_BSLASHref] = ACTIONS(5025), + [anon_sym_BSLASHeqref] = ACTIONS(5025), + [anon_sym_BSLASHvref] = ACTIONS(5025), + [anon_sym_BSLASHVref] = ACTIONS(5025), + [anon_sym_BSLASHautoref] = ACTIONS(5025), + [anon_sym_BSLASHpageref] = ACTIONS(5025), + [anon_sym_BSLASHcref] = ACTIONS(5025), + [anon_sym_BSLASHCref] = ACTIONS(5025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnameCref] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHlabelcref] = ACTIONS(5025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCrefrange] = ACTIONS(5025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnewlabel] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), + [anon_sym_BSLASHdef] = ACTIONS(5025), + [anon_sym_BSLASHlet] = ACTIONS(5025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), + [anon_sym_BSLASHgls] = ACTIONS(5025), + [anon_sym_BSLASHGls] = ACTIONS(5025), + [anon_sym_BSLASHGLS] = ACTIONS(5025), + [anon_sym_BSLASHglspl] = ACTIONS(5025), + [anon_sym_BSLASHGlspl] = ACTIONS(5025), + [anon_sym_BSLASHGLSpl] = ACTIONS(5025), + [anon_sym_BSLASHglsdisp] = ACTIONS(5025), + [anon_sym_BSLASHglslink] = ACTIONS(5025), + [anon_sym_BSLASHglstext] = ACTIONS(5025), + [anon_sym_BSLASHGlstext] = ACTIONS(5025), + [anon_sym_BSLASHGLStext] = ACTIONS(5025), + [anon_sym_BSLASHglsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), + [anon_sym_BSLASHglsplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSplural] = ACTIONS(5025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHglsname] = ACTIONS(5025), + [anon_sym_BSLASHGlsname] = ACTIONS(5025), + [anon_sym_BSLASHGLSname] = ACTIONS(5025), + [anon_sym_BSLASHglssymbol] = ACTIONS(5025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), + [anon_sym_BSLASHglsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), + [anon_sym_BSLASHglsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), + [anon_sym_BSLASHglsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), + [anon_sym_BSLASHglsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), + [anon_sym_BSLASHglsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), + [anon_sym_BSLASHnewacronym] = ACTIONS(5025), + [anon_sym_BSLASHacrshort] = ACTIONS(5025), + [anon_sym_BSLASHAcrshort] = ACTIONS(5025), + [anon_sym_BSLASHACRshort] = ACTIONS(5025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), + [anon_sym_BSLASHacrlong] = ACTIONS(5025), + [anon_sym_BSLASHAcrlong] = ACTIONS(5025), + [anon_sym_BSLASHACRlong] = ACTIONS(5025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), + [anon_sym_BSLASHacrfull] = ACTIONS(5025), + [anon_sym_BSLASHAcrfull] = ACTIONS(5025), + [anon_sym_BSLASHACRfull] = ACTIONS(5025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), + [anon_sym_BSLASHacs] = ACTIONS(5025), + [anon_sym_BSLASHAcs] = ACTIONS(5025), + [anon_sym_BSLASHacsp] = ACTIONS(5025), + [anon_sym_BSLASHAcsp] = ACTIONS(5025), + [anon_sym_BSLASHacl] = ACTIONS(5025), + [anon_sym_BSLASHAcl] = ACTIONS(5025), + [anon_sym_BSLASHaclp] = ACTIONS(5025), + [anon_sym_BSLASHAclp] = ACTIONS(5025), + [anon_sym_BSLASHacf] = ACTIONS(5025), + [anon_sym_BSLASHAcf] = ACTIONS(5025), + [anon_sym_BSLASHacfp] = ACTIONS(5025), + [anon_sym_BSLASHAcfp] = ACTIONS(5025), + [anon_sym_BSLASHac] = ACTIONS(5025), + [anon_sym_BSLASHAc] = ACTIONS(5025), + [anon_sym_BSLASHacp] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), + [anon_sym_BSLASHcolor] = ACTIONS(5025), + [anon_sym_BSLASHcolorbox] = ACTIONS(5025), + [anon_sym_BSLASHtextcolor] = ACTIONS(5025), + [anon_sym_BSLASHpagecolor] = ACTIONS(5025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [anon_sym_BSLASHtext] = ACTIONS(5025), + [anon_sym_BSLASHintertext] = ACTIONS(5025), + [anon_sym_shortintertext] = ACTIONS(5025), }, - [1037] = { - [sym_command_name] = ACTIONS(5225), + [883] = { + [sym_command_name] = ACTIONS(5139), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_BSLASHpart] = ACTIONS(5225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddpart] = ACTIONS(5225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHchapter] = ACTIONS(5225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddchap] = ACTIONS(5225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsection] = ACTIONS(5225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddsec] = ACTIONS(5225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHparagraph] = ACTIONS(5225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHitem] = ACTIONS(5225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5223), - [anon_sym_BSLASHbegin] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), - }, - [1038] = { - [sym_command_name] = ACTIONS(5385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5385), - [anon_sym_LPAREN] = ACTIONS(5383), - [anon_sym_RPAREN] = ACTIONS(5383), - [anon_sym_LBRACK] = ACTIONS(5383), - [anon_sym_RBRACK] = ACTIONS(5383), - [anon_sym_COMMA] = ACTIONS(5383), - [anon_sym_EQ] = ACTIONS(5383), - [anon_sym_BSLASHpart] = ACTIONS(5385), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddpart] = ACTIONS(5385), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5383), - [anon_sym_BSLASHchapter] = ACTIONS(5385), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddchap] = ACTIONS(5385), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsection] = ACTIONS(5385), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddsec] = ACTIONS(5385), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubsection] = ACTIONS(5385), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5385), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHparagraph] = ACTIONS(5385), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5385), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5383), - [anon_sym_BSLASHitem] = ACTIONS(5385), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5383), - [anon_sym_LBRACE] = ACTIONS(5383), - [sym_word] = ACTIONS(5385), - [sym_placeholder] = ACTIONS(5383), - [anon_sym_PLUS] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5385), - [anon_sym_SLASH] = ACTIONS(5385), - [anon_sym_CARET] = ACTIONS(5385), - [anon_sym__] = ACTIONS(5385), - [anon_sym_LT] = ACTIONS(5385), - [anon_sym_GT] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_PIPE] = ACTIONS(5385), - [anon_sym_COLON] = ACTIONS(5385), - [anon_sym_SQUOTE] = ACTIONS(5385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5383), - [anon_sym_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5383), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5383), - [anon_sym_BSLASHbegin] = ACTIONS(5385), - [anon_sym_BSLASHusepackage] = ACTIONS(5385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5385), - [anon_sym_BSLASHinclude] = ACTIONS(5385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5385), - [anon_sym_BSLASHinput] = ACTIONS(5385), - [anon_sym_BSLASHsubfile] = ACTIONS(5385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5385), - [anon_sym_BSLASHbibliography] = ACTIONS(5385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5385), - [anon_sym_BSLASHincludesvg] = ACTIONS(5385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5385), - [anon_sym_BSLASHimport] = ACTIONS(5385), - [anon_sym_BSLASHsubimport] = ACTIONS(5385), - [anon_sym_BSLASHinputfrom] = ACTIONS(5385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5385), - [anon_sym_BSLASHincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHcaption] = ACTIONS(5385), - [anon_sym_BSLASHcite] = ACTIONS(5385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCite] = ACTIONS(5385), - [anon_sym_BSLASHnocite] = ACTIONS(5385), - [anon_sym_BSLASHcitet] = ACTIONS(5385), - [anon_sym_BSLASHcitep] = ACTIONS(5385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteyear] = ACTIONS(5385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitedate] = ACTIONS(5385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteurl] = ACTIONS(5385), - [anon_sym_BSLASHfullcite] = ACTIONS(5385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5385), - [anon_sym_BSLASHcitealt] = ACTIONS(5385), - [anon_sym_BSLASHcitealp] = ACTIONS(5385), - [anon_sym_BSLASHcitetext] = ACTIONS(5385), - [anon_sym_BSLASHparencite] = ACTIONS(5385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHParencite] = ACTIONS(5385), - [anon_sym_BSLASHfootcite] = ACTIONS(5385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5385), - [anon_sym_BSLASHtextcite] = ACTIONS(5385), - [anon_sym_BSLASHTextcite] = ACTIONS(5385), - [anon_sym_BSLASHsmartcite] = ACTIONS(5385), - [anon_sym_BSLASHSmartcite] = ACTIONS(5385), - [anon_sym_BSLASHsupercite] = ACTIONS(5385), - [anon_sym_BSLASHautocite] = ACTIONS(5385), - [anon_sym_BSLASHAutocite] = ACTIONS(5385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHvolcite] = ACTIONS(5385), - [anon_sym_BSLASHVolcite] = ACTIONS(5385), - [anon_sym_BSLASHpvolcite] = ACTIONS(5385), - [anon_sym_BSLASHPvolcite] = ACTIONS(5385), - [anon_sym_BSLASHfvolcite] = ACTIONS(5385), - [anon_sym_BSLASHftvolcite] = ACTIONS(5385), - [anon_sym_BSLASHsvolcite] = ACTIONS(5385), - [anon_sym_BSLASHSvolcite] = ACTIONS(5385), - [anon_sym_BSLASHtvolcite] = ACTIONS(5385), - [anon_sym_BSLASHTvolcite] = ACTIONS(5385), - [anon_sym_BSLASHavolcite] = ACTIONS(5385), - [anon_sym_BSLASHAvolcite] = ACTIONS(5385), - [anon_sym_BSLASHnotecite] = ACTIONS(5385), - [anon_sym_BSLASHNotecite] = ACTIONS(5385), - [anon_sym_BSLASHpnotecite] = ACTIONS(5385), - [anon_sym_BSLASHPnotecite] = ACTIONS(5385), - [anon_sym_BSLASHfnotecite] = ACTIONS(5385), - [anon_sym_BSLASHlabel] = ACTIONS(5385), - [anon_sym_BSLASHref] = ACTIONS(5385), - [anon_sym_BSLASHeqref] = ACTIONS(5385), - [anon_sym_BSLASHvref] = ACTIONS(5385), - [anon_sym_BSLASHVref] = ACTIONS(5385), - [anon_sym_BSLASHautoref] = ACTIONS(5385), - [anon_sym_BSLASHpageref] = ACTIONS(5385), - [anon_sym_BSLASHcref] = ACTIONS(5385), - [anon_sym_BSLASHCref] = ACTIONS(5385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnameCref] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHlabelcref] = ACTIONS(5385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnewlabel] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5383), - [anon_sym_BSLASHdef] = ACTIONS(5385), - [anon_sym_BSLASHlet] = ACTIONS(5385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5385), - [anon_sym_BSLASHgls] = ACTIONS(5385), - [anon_sym_BSLASHGls] = ACTIONS(5385), - [anon_sym_BSLASHGLS] = ACTIONS(5385), - [anon_sym_BSLASHglspl] = ACTIONS(5385), - [anon_sym_BSLASHGlspl] = ACTIONS(5385), - [anon_sym_BSLASHGLSpl] = ACTIONS(5385), - [anon_sym_BSLASHglsdisp] = ACTIONS(5385), - [anon_sym_BSLASHglslink] = ACTIONS(5385), - [anon_sym_BSLASHglstext] = ACTIONS(5385), - [anon_sym_BSLASHGlstext] = ACTIONS(5385), - [anon_sym_BSLASHGLStext] = ACTIONS(5385), - [anon_sym_BSLASHglsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5385), - [anon_sym_BSLASHglsplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSplural] = ACTIONS(5385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHglsname] = ACTIONS(5385), - [anon_sym_BSLASHGlsname] = ACTIONS(5385), - [anon_sym_BSLASHGLSname] = ACTIONS(5385), - [anon_sym_BSLASHglssymbol] = ACTIONS(5385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5385), - [anon_sym_BSLASHglsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5385), - [anon_sym_BSLASHglsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5385), - [anon_sym_BSLASHglsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5385), - [anon_sym_BSLASHglsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5385), - [anon_sym_BSLASHglsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5385), - [anon_sym_BSLASHnewacronym] = ACTIONS(5385), - [anon_sym_BSLASHacrshort] = ACTIONS(5385), - [anon_sym_BSLASHAcrshort] = ACTIONS(5385), - [anon_sym_BSLASHACRshort] = ACTIONS(5385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5385), - [anon_sym_BSLASHacrlong] = ACTIONS(5385), - [anon_sym_BSLASHAcrlong] = ACTIONS(5385), - [anon_sym_BSLASHACRlong] = ACTIONS(5385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5385), - [anon_sym_BSLASHacrfull] = ACTIONS(5385), - [anon_sym_BSLASHAcrfull] = ACTIONS(5385), - [anon_sym_BSLASHACRfull] = ACTIONS(5385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5385), - [anon_sym_BSLASHacs] = ACTIONS(5385), - [anon_sym_BSLASHAcs] = ACTIONS(5385), - [anon_sym_BSLASHacsp] = ACTIONS(5385), - [anon_sym_BSLASHAcsp] = ACTIONS(5385), - [anon_sym_BSLASHacl] = ACTIONS(5385), - [anon_sym_BSLASHAcl] = ACTIONS(5385), - [anon_sym_BSLASHaclp] = ACTIONS(5385), - [anon_sym_BSLASHAclp] = ACTIONS(5385), - [anon_sym_BSLASHacf] = ACTIONS(5385), - [anon_sym_BSLASHAcf] = ACTIONS(5385), - [anon_sym_BSLASHacfp] = ACTIONS(5385), - [anon_sym_BSLASHAcfp] = ACTIONS(5385), - [anon_sym_BSLASHac] = ACTIONS(5385), - [anon_sym_BSLASHAc] = ACTIONS(5385), - [anon_sym_BSLASHacp] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5385), - [anon_sym_BSLASHcolor] = ACTIONS(5385), - [anon_sym_BSLASHcolorbox] = ACTIONS(5385), - [anon_sym_BSLASHtextcolor] = ACTIONS(5385), - [anon_sym_BSLASHpagecolor] = ACTIONS(5385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5385), - }, - [1039] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_BSLASHpart] = ACTIONS(5349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddpart] = ACTIONS(5349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHchapter] = ACTIONS(5349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddchap] = ACTIONS(5349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsection] = ACTIONS(5349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddsec] = ACTIONS(5349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHparagraph] = ACTIONS(5349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHitem] = ACTIONS(5349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5347), - [anon_sym_BSLASHbegin] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), + [anon_sym_BSLASHiffalse] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_RBRACK] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_BSLASHpart] = ACTIONS(5139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), + [anon_sym_BSLASHaddpart] = ACTIONS(5139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), + [anon_sym_BSLASHchapter] = ACTIONS(5139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), + [anon_sym_BSLASHaddchap] = ACTIONS(5139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsection] = ACTIONS(5139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), + [anon_sym_BSLASHaddsec] = ACTIONS(5139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsubsection] = ACTIONS(5139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), + [anon_sym_BSLASHparagraph] = ACTIONS(5139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), + [anon_sym_BSLASHitem] = ACTIONS(5139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5137), + [sym_word] = ACTIONS(5139), + [sym_placeholder] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_CARET] = ACTIONS(5139), + [anon_sym__] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_PIPE] = ACTIONS(5139), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), + [anon_sym_DOLLAR] = ACTIONS(5139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5137), + [anon_sym_BSLASHbegin] = ACTIONS(5139), + [anon_sym_BSLASHusepackage] = ACTIONS(5139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), + [anon_sym_BSLASHinclude] = ACTIONS(5139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), + [anon_sym_BSLASHinput] = ACTIONS(5139), + [anon_sym_BSLASHsubfile] = ACTIONS(5139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), + [anon_sym_BSLASHbibliography] = ACTIONS(5139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), + [anon_sym_BSLASHincludesvg] = ACTIONS(5139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), + [anon_sym_BSLASHimport] = ACTIONS(5139), + [anon_sym_BSLASHsubimport] = ACTIONS(5139), + [anon_sym_BSLASHinputfrom] = ACTIONS(5139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), + [anon_sym_BSLASHincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHcaption] = ACTIONS(5139), + [anon_sym_BSLASHcite] = ACTIONS(5139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCite] = ACTIONS(5139), + [anon_sym_BSLASHnocite] = ACTIONS(5139), + [anon_sym_BSLASHcitet] = ACTIONS(5139), + [anon_sym_BSLASHcitep] = ACTIONS(5139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteauthor] = ACTIONS(5139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitetitle] = ACTIONS(5139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteyear] = ACTIONS(5139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitedate] = ACTIONS(5139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteurl] = ACTIONS(5139), + [anon_sym_BSLASHfullcite] = ACTIONS(5139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), + [anon_sym_BSLASHcitealt] = ACTIONS(5139), + [anon_sym_BSLASHcitealp] = ACTIONS(5139), + [anon_sym_BSLASHcitetext] = ACTIONS(5139), + [anon_sym_BSLASHparencite] = ACTIONS(5139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHParencite] = ACTIONS(5139), + [anon_sym_BSLASHfootcite] = ACTIONS(5139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), + [anon_sym_BSLASHtextcite] = ACTIONS(5139), + [anon_sym_BSLASHTextcite] = ACTIONS(5139), + [anon_sym_BSLASHsmartcite] = ACTIONS(5139), + [anon_sym_BSLASHSmartcite] = ACTIONS(5139), + [anon_sym_BSLASHsupercite] = ACTIONS(5139), + [anon_sym_BSLASHautocite] = ACTIONS(5139), + [anon_sym_BSLASHAutocite] = ACTIONS(5139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHvolcite] = ACTIONS(5139), + [anon_sym_BSLASHVolcite] = ACTIONS(5139), + [anon_sym_BSLASHpvolcite] = ACTIONS(5139), + [anon_sym_BSLASHPvolcite] = ACTIONS(5139), + [anon_sym_BSLASHfvolcite] = ACTIONS(5139), + [anon_sym_BSLASHftvolcite] = ACTIONS(5139), + [anon_sym_BSLASHsvolcite] = ACTIONS(5139), + [anon_sym_BSLASHSvolcite] = ACTIONS(5139), + [anon_sym_BSLASHtvolcite] = ACTIONS(5139), + [anon_sym_BSLASHTvolcite] = ACTIONS(5139), + [anon_sym_BSLASHavolcite] = ACTIONS(5139), + [anon_sym_BSLASHAvolcite] = ACTIONS(5139), + [anon_sym_BSLASHnotecite] = ACTIONS(5139), + [anon_sym_BSLASHNotecite] = ACTIONS(5139), + [anon_sym_BSLASHpnotecite] = ACTIONS(5139), + [anon_sym_BSLASHPnotecite] = ACTIONS(5139), + [anon_sym_BSLASHfnotecite] = ACTIONS(5139), + [anon_sym_BSLASHlabel] = ACTIONS(5139), + [anon_sym_BSLASHref] = ACTIONS(5139), + [anon_sym_BSLASHeqref] = ACTIONS(5139), + [anon_sym_BSLASHvref] = ACTIONS(5139), + [anon_sym_BSLASHVref] = ACTIONS(5139), + [anon_sym_BSLASHautoref] = ACTIONS(5139), + [anon_sym_BSLASHpageref] = ACTIONS(5139), + [anon_sym_BSLASHcref] = ACTIONS(5139), + [anon_sym_BSLASHCref] = ACTIONS(5139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnameCref] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHlabelcref] = ACTIONS(5139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCrefrange] = ACTIONS(5139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnewlabel] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), + [anon_sym_BSLASHdef] = ACTIONS(5139), + [anon_sym_BSLASHlet] = ACTIONS(5139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), + [anon_sym_BSLASHgls] = ACTIONS(5139), + [anon_sym_BSLASHGls] = ACTIONS(5139), + [anon_sym_BSLASHGLS] = ACTIONS(5139), + [anon_sym_BSLASHglspl] = ACTIONS(5139), + [anon_sym_BSLASHGlspl] = ACTIONS(5139), + [anon_sym_BSLASHGLSpl] = ACTIONS(5139), + [anon_sym_BSLASHglsdisp] = ACTIONS(5139), + [anon_sym_BSLASHglslink] = ACTIONS(5139), + [anon_sym_BSLASHglstext] = ACTIONS(5139), + [anon_sym_BSLASHGlstext] = ACTIONS(5139), + [anon_sym_BSLASHGLStext] = ACTIONS(5139), + [anon_sym_BSLASHglsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), + [anon_sym_BSLASHglsplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSplural] = ACTIONS(5139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHglsname] = ACTIONS(5139), + [anon_sym_BSLASHGlsname] = ACTIONS(5139), + [anon_sym_BSLASHGLSname] = ACTIONS(5139), + [anon_sym_BSLASHglssymbol] = ACTIONS(5139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), + [anon_sym_BSLASHglsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), + [anon_sym_BSLASHglsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), + [anon_sym_BSLASHglsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), + [anon_sym_BSLASHglsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), + [anon_sym_BSLASHglsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), + [anon_sym_BSLASHnewacronym] = ACTIONS(5139), + [anon_sym_BSLASHacrshort] = ACTIONS(5139), + [anon_sym_BSLASHAcrshort] = ACTIONS(5139), + [anon_sym_BSLASHACRshort] = ACTIONS(5139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), + [anon_sym_BSLASHacrlong] = ACTIONS(5139), + [anon_sym_BSLASHAcrlong] = ACTIONS(5139), + [anon_sym_BSLASHACRlong] = ACTIONS(5139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), + [anon_sym_BSLASHacrfull] = ACTIONS(5139), + [anon_sym_BSLASHAcrfull] = ACTIONS(5139), + [anon_sym_BSLASHACRfull] = ACTIONS(5139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), + [anon_sym_BSLASHacs] = ACTIONS(5139), + [anon_sym_BSLASHAcs] = ACTIONS(5139), + [anon_sym_BSLASHacsp] = ACTIONS(5139), + [anon_sym_BSLASHAcsp] = ACTIONS(5139), + [anon_sym_BSLASHacl] = ACTIONS(5139), + [anon_sym_BSLASHAcl] = ACTIONS(5139), + [anon_sym_BSLASHaclp] = ACTIONS(5139), + [anon_sym_BSLASHAclp] = ACTIONS(5139), + [anon_sym_BSLASHacf] = ACTIONS(5139), + [anon_sym_BSLASHAcf] = ACTIONS(5139), + [anon_sym_BSLASHacfp] = ACTIONS(5139), + [anon_sym_BSLASHAcfp] = ACTIONS(5139), + [anon_sym_BSLASHac] = ACTIONS(5139), + [anon_sym_BSLASHAc] = ACTIONS(5139), + [anon_sym_BSLASHacp] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), + [anon_sym_BSLASHcolor] = ACTIONS(5139), + [anon_sym_BSLASHcolorbox] = ACTIONS(5139), + [anon_sym_BSLASHtextcolor] = ACTIONS(5139), + [anon_sym_BSLASHpagecolor] = ACTIONS(5139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHtext] = ACTIONS(5139), + [anon_sym_BSLASHintertext] = ACTIONS(5139), + [anon_sym_shortintertext] = ACTIONS(5139), }, - [1040] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_BSLASHpart] = ACTIONS(5345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddpart] = ACTIONS(5345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHchapter] = ACTIONS(5345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddchap] = ACTIONS(5345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsection] = ACTIONS(5345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddsec] = ACTIONS(5345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHparagraph] = ACTIONS(5345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHitem] = ACTIONS(5345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5343), - [anon_sym_BSLASHbegin] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), + [884] = { + [sym_command_name] = ACTIONS(5127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_RPAREN] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_BSLASHpart] = ACTIONS(5127), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddpart] = ACTIONS(5127), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5125), + [anon_sym_BSLASHchapter] = ACTIONS(5127), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddchap] = ACTIONS(5127), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsection] = ACTIONS(5127), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddsec] = ACTIONS(5127), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubsection] = ACTIONS(5127), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5127), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHparagraph] = ACTIONS(5127), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5127), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5125), + [anon_sym_BSLASHitem] = ACTIONS(5127), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5127), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_CARET] = ACTIONS(5127), + [anon_sym__] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5127), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_COLON] = ACTIONS(5127), + [anon_sym_SQUOTE] = ACTIONS(5127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5125), + [anon_sym_DOLLAR] = ACTIONS(5127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5125), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5125), + [anon_sym_BSLASHbegin] = ACTIONS(5127), + [anon_sym_BSLASHusepackage] = ACTIONS(5127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5127), + [anon_sym_BSLASHinclude] = ACTIONS(5127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5127), + [anon_sym_BSLASHinput] = ACTIONS(5127), + [anon_sym_BSLASHsubfile] = ACTIONS(5127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5127), + [anon_sym_BSLASHbibliography] = ACTIONS(5127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5127), + [anon_sym_BSLASHincludesvg] = ACTIONS(5127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5127), + [anon_sym_BSLASHimport] = ACTIONS(5127), + [anon_sym_BSLASHsubimport] = ACTIONS(5127), + [anon_sym_BSLASHinputfrom] = ACTIONS(5127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5127), + [anon_sym_BSLASHincludefrom] = ACTIONS(5127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5127), + [anon_sym_BSLASHcaption] = ACTIONS(5127), + [anon_sym_BSLASHcite] = ACTIONS(5127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCite] = ACTIONS(5127), + [anon_sym_BSLASHnocite] = ACTIONS(5127), + [anon_sym_BSLASHcitet] = ACTIONS(5127), + [anon_sym_BSLASHcitep] = ACTIONS(5127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteauthor] = ACTIONS(5127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitetitle] = ACTIONS(5127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteyear] = ACTIONS(5127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitedate] = ACTIONS(5127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteurl] = ACTIONS(5127), + [anon_sym_BSLASHfullcite] = ACTIONS(5127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5127), + [anon_sym_BSLASHcitealt] = ACTIONS(5127), + [anon_sym_BSLASHcitealp] = ACTIONS(5127), + [anon_sym_BSLASHcitetext] = ACTIONS(5127), + [anon_sym_BSLASHparencite] = ACTIONS(5127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHParencite] = ACTIONS(5127), + [anon_sym_BSLASHfootcite] = ACTIONS(5127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5127), + [anon_sym_BSLASHtextcite] = ACTIONS(5127), + [anon_sym_BSLASHTextcite] = ACTIONS(5127), + [anon_sym_BSLASHsmartcite] = ACTIONS(5127), + [anon_sym_BSLASHSmartcite] = ACTIONS(5127), + [anon_sym_BSLASHsupercite] = ACTIONS(5127), + [anon_sym_BSLASHautocite] = ACTIONS(5127), + [anon_sym_BSLASHAutocite] = ACTIONS(5127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHvolcite] = ACTIONS(5127), + [anon_sym_BSLASHVolcite] = ACTIONS(5127), + [anon_sym_BSLASHpvolcite] = ACTIONS(5127), + [anon_sym_BSLASHPvolcite] = ACTIONS(5127), + [anon_sym_BSLASHfvolcite] = ACTIONS(5127), + [anon_sym_BSLASHftvolcite] = ACTIONS(5127), + [anon_sym_BSLASHsvolcite] = ACTIONS(5127), + [anon_sym_BSLASHSvolcite] = ACTIONS(5127), + [anon_sym_BSLASHtvolcite] = ACTIONS(5127), + [anon_sym_BSLASHTvolcite] = ACTIONS(5127), + [anon_sym_BSLASHavolcite] = ACTIONS(5127), + [anon_sym_BSLASHAvolcite] = ACTIONS(5127), + [anon_sym_BSLASHnotecite] = ACTIONS(5127), + [anon_sym_BSLASHNotecite] = ACTIONS(5127), + [anon_sym_BSLASHpnotecite] = ACTIONS(5127), + [anon_sym_BSLASHPnotecite] = ACTIONS(5127), + [anon_sym_BSLASHfnotecite] = ACTIONS(5127), + [anon_sym_BSLASHlabel] = ACTIONS(5127), + [anon_sym_BSLASHref] = ACTIONS(5127), + [anon_sym_BSLASHeqref] = ACTIONS(5127), + [anon_sym_BSLASHvref] = ACTIONS(5127), + [anon_sym_BSLASHVref] = ACTIONS(5127), + [anon_sym_BSLASHautoref] = ACTIONS(5127), + [anon_sym_BSLASHpageref] = ACTIONS(5127), + [anon_sym_BSLASHcref] = ACTIONS(5127), + [anon_sym_BSLASHCref] = ACTIONS(5127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5125), + [anon_sym_BSLASHnamecref] = ACTIONS(5127), + [anon_sym_BSLASHnameCref] = ACTIONS(5127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5127), + [anon_sym_BSLASHlabelcref] = ACTIONS(5127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5127), + [anon_sym_BSLASHcrefrange] = ACTIONS(5127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCrefrange] = ACTIONS(5127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5125), + [anon_sym_BSLASHnewlabel] = ACTIONS(5127), + [anon_sym_BSLASHnewcommand] = ACTIONS(5127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5125), + [anon_sym_BSLASHdef] = ACTIONS(5127), + [anon_sym_BSLASHlet] = ACTIONS(5127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5127), + [anon_sym_BSLASHgls] = ACTIONS(5127), + [anon_sym_BSLASHGls] = ACTIONS(5127), + [anon_sym_BSLASHGLS] = ACTIONS(5127), + [anon_sym_BSLASHglspl] = ACTIONS(5127), + [anon_sym_BSLASHGlspl] = ACTIONS(5127), + [anon_sym_BSLASHGLSpl] = ACTIONS(5127), + [anon_sym_BSLASHglsdisp] = ACTIONS(5127), + [anon_sym_BSLASHglslink] = ACTIONS(5127), + [anon_sym_BSLASHglstext] = ACTIONS(5127), + [anon_sym_BSLASHGlstext] = ACTIONS(5127), + [anon_sym_BSLASHGLStext] = ACTIONS(5127), + [anon_sym_BSLASHglsfirst] = ACTIONS(5127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5127), + [anon_sym_BSLASHglsplural] = ACTIONS(5127), + [anon_sym_BSLASHGlsplural] = ACTIONS(5127), + [anon_sym_BSLASHGLSplural] = ACTIONS(5127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHglsname] = ACTIONS(5127), + [anon_sym_BSLASHGlsname] = ACTIONS(5127), + [anon_sym_BSLASHGLSname] = ACTIONS(5127), + [anon_sym_BSLASHglssymbol] = ACTIONS(5127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5127), + [anon_sym_BSLASHglsdesc] = ACTIONS(5127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5127), + [anon_sym_BSLASHglsuseri] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5127), + [anon_sym_BSLASHglsuserii] = ACTIONS(5127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5127), + [anon_sym_BSLASHglsuserv] = ACTIONS(5127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5127), + [anon_sym_BSLASHglsuservi] = ACTIONS(5127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5127), + [anon_sym_BSLASHnewacronym] = ACTIONS(5127), + [anon_sym_BSLASHacrshort] = ACTIONS(5127), + [anon_sym_BSLASHAcrshort] = ACTIONS(5127), + [anon_sym_BSLASHACRshort] = ACTIONS(5127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5127), + [anon_sym_BSLASHacrlong] = ACTIONS(5127), + [anon_sym_BSLASHAcrlong] = ACTIONS(5127), + [anon_sym_BSLASHACRlong] = ACTIONS(5127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5127), + [anon_sym_BSLASHacrfull] = ACTIONS(5127), + [anon_sym_BSLASHAcrfull] = ACTIONS(5127), + [anon_sym_BSLASHACRfull] = ACTIONS(5127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5127), + [anon_sym_BSLASHacs] = ACTIONS(5127), + [anon_sym_BSLASHAcs] = ACTIONS(5127), + [anon_sym_BSLASHacsp] = ACTIONS(5127), + [anon_sym_BSLASHAcsp] = ACTIONS(5127), + [anon_sym_BSLASHacl] = ACTIONS(5127), + [anon_sym_BSLASHAcl] = ACTIONS(5127), + [anon_sym_BSLASHaclp] = ACTIONS(5127), + [anon_sym_BSLASHAclp] = ACTIONS(5127), + [anon_sym_BSLASHacf] = ACTIONS(5127), + [anon_sym_BSLASHAcf] = ACTIONS(5127), + [anon_sym_BSLASHacfp] = ACTIONS(5127), + [anon_sym_BSLASHAcfp] = ACTIONS(5127), + [anon_sym_BSLASHac] = ACTIONS(5127), + [anon_sym_BSLASHAc] = ACTIONS(5127), + [anon_sym_BSLASHacp] = ACTIONS(5127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5127), + [anon_sym_BSLASHcolor] = ACTIONS(5127), + [anon_sym_BSLASHcolorbox] = ACTIONS(5127), + [anon_sym_BSLASHtextcolor] = ACTIONS(5127), + [anon_sym_BSLASHpagecolor] = ACTIONS(5127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5127), + [anon_sym_BSLASHtext] = ACTIONS(5127), + [anon_sym_BSLASHintertext] = ACTIONS(5127), + [anon_sym_shortintertext] = ACTIONS(5127), }, - [1041] = { - [sym_command_name] = ACTIONS(5341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_BSLASHpart] = ACTIONS(5341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddpart] = ACTIONS(5341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHchapter] = ACTIONS(5341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddchap] = ACTIONS(5341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsection] = ACTIONS(5341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddsec] = ACTIONS(5341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHparagraph] = ACTIONS(5341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHitem] = ACTIONS(5341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5339), - [anon_sym_BSLASHbegin] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), + [885] = { + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_RBRACK] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_BSLASHpart] = ACTIONS(5123), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddpart] = ACTIONS(5123), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5121), + [anon_sym_BSLASHchapter] = ACTIONS(5123), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddchap] = ACTIONS(5123), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsection] = ACTIONS(5123), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddsec] = ACTIONS(5123), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubsection] = ACTIONS(5123), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5123), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHparagraph] = ACTIONS(5123), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5123), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5121), + [anon_sym_BSLASHitem] = ACTIONS(5123), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5121), + [sym_word] = ACTIONS(5123), + [sym_placeholder] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5123), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_CARET] = ACTIONS(5123), + [anon_sym__] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5123), + [anon_sym_COLON] = ACTIONS(5123), + [anon_sym_SQUOTE] = ACTIONS(5123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5121), + [anon_sym_DOLLAR] = ACTIONS(5123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5121), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5121), + [anon_sym_BSLASHbegin] = ACTIONS(5123), + [anon_sym_BSLASHusepackage] = ACTIONS(5123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5123), + [anon_sym_BSLASHinclude] = ACTIONS(5123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5123), + [anon_sym_BSLASHinput] = ACTIONS(5123), + [anon_sym_BSLASHsubfile] = ACTIONS(5123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5123), + [anon_sym_BSLASHbibliography] = ACTIONS(5123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5123), + [anon_sym_BSLASHincludesvg] = ACTIONS(5123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5123), + [anon_sym_BSLASHimport] = ACTIONS(5123), + [anon_sym_BSLASHsubimport] = ACTIONS(5123), + [anon_sym_BSLASHinputfrom] = ACTIONS(5123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5123), + [anon_sym_BSLASHincludefrom] = ACTIONS(5123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5123), + [anon_sym_BSLASHcaption] = ACTIONS(5123), + [anon_sym_BSLASHcite] = ACTIONS(5123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCite] = ACTIONS(5123), + [anon_sym_BSLASHnocite] = ACTIONS(5123), + [anon_sym_BSLASHcitet] = ACTIONS(5123), + [anon_sym_BSLASHcitep] = ACTIONS(5123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteauthor] = ACTIONS(5123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitetitle] = ACTIONS(5123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteyear] = ACTIONS(5123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitedate] = ACTIONS(5123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteurl] = ACTIONS(5123), + [anon_sym_BSLASHfullcite] = ACTIONS(5123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5123), + [anon_sym_BSLASHcitealt] = ACTIONS(5123), + [anon_sym_BSLASHcitealp] = ACTIONS(5123), + [anon_sym_BSLASHcitetext] = ACTIONS(5123), + [anon_sym_BSLASHparencite] = ACTIONS(5123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHParencite] = ACTIONS(5123), + [anon_sym_BSLASHfootcite] = ACTIONS(5123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5123), + [anon_sym_BSLASHtextcite] = ACTIONS(5123), + [anon_sym_BSLASHTextcite] = ACTIONS(5123), + [anon_sym_BSLASHsmartcite] = ACTIONS(5123), + [anon_sym_BSLASHSmartcite] = ACTIONS(5123), + [anon_sym_BSLASHsupercite] = ACTIONS(5123), + [anon_sym_BSLASHautocite] = ACTIONS(5123), + [anon_sym_BSLASHAutocite] = ACTIONS(5123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHvolcite] = ACTIONS(5123), + [anon_sym_BSLASHVolcite] = ACTIONS(5123), + [anon_sym_BSLASHpvolcite] = ACTIONS(5123), + [anon_sym_BSLASHPvolcite] = ACTIONS(5123), + [anon_sym_BSLASHfvolcite] = ACTIONS(5123), + [anon_sym_BSLASHftvolcite] = ACTIONS(5123), + [anon_sym_BSLASHsvolcite] = ACTIONS(5123), + [anon_sym_BSLASHSvolcite] = ACTIONS(5123), + [anon_sym_BSLASHtvolcite] = ACTIONS(5123), + [anon_sym_BSLASHTvolcite] = ACTIONS(5123), + [anon_sym_BSLASHavolcite] = ACTIONS(5123), + [anon_sym_BSLASHAvolcite] = ACTIONS(5123), + [anon_sym_BSLASHnotecite] = ACTIONS(5123), + [anon_sym_BSLASHNotecite] = ACTIONS(5123), + [anon_sym_BSLASHpnotecite] = ACTIONS(5123), + [anon_sym_BSLASHPnotecite] = ACTIONS(5123), + [anon_sym_BSLASHfnotecite] = ACTIONS(5123), + [anon_sym_BSLASHlabel] = ACTIONS(5123), + [anon_sym_BSLASHref] = ACTIONS(5123), + [anon_sym_BSLASHeqref] = ACTIONS(5123), + [anon_sym_BSLASHvref] = ACTIONS(5123), + [anon_sym_BSLASHVref] = ACTIONS(5123), + [anon_sym_BSLASHautoref] = ACTIONS(5123), + [anon_sym_BSLASHpageref] = ACTIONS(5123), + [anon_sym_BSLASHcref] = ACTIONS(5123), + [anon_sym_BSLASHCref] = ACTIONS(5123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5121), + [anon_sym_BSLASHnamecref] = ACTIONS(5123), + [anon_sym_BSLASHnameCref] = ACTIONS(5123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5123), + [anon_sym_BSLASHlabelcref] = ACTIONS(5123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5123), + [anon_sym_BSLASHcrefrange] = ACTIONS(5123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCrefrange] = ACTIONS(5123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5121), + [anon_sym_BSLASHnewlabel] = ACTIONS(5123), + [anon_sym_BSLASHnewcommand] = ACTIONS(5123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5121), + [anon_sym_BSLASHdef] = ACTIONS(5123), + [anon_sym_BSLASHlet] = ACTIONS(5123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5123), + [anon_sym_BSLASHgls] = ACTIONS(5123), + [anon_sym_BSLASHGls] = ACTIONS(5123), + [anon_sym_BSLASHGLS] = ACTIONS(5123), + [anon_sym_BSLASHglspl] = ACTIONS(5123), + [anon_sym_BSLASHGlspl] = ACTIONS(5123), + [anon_sym_BSLASHGLSpl] = ACTIONS(5123), + [anon_sym_BSLASHglsdisp] = ACTIONS(5123), + [anon_sym_BSLASHglslink] = ACTIONS(5123), + [anon_sym_BSLASHglstext] = ACTIONS(5123), + [anon_sym_BSLASHGlstext] = ACTIONS(5123), + [anon_sym_BSLASHGLStext] = ACTIONS(5123), + [anon_sym_BSLASHglsfirst] = ACTIONS(5123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5123), + [anon_sym_BSLASHglsplural] = ACTIONS(5123), + [anon_sym_BSLASHGlsplural] = ACTIONS(5123), + [anon_sym_BSLASHGLSplural] = ACTIONS(5123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHglsname] = ACTIONS(5123), + [anon_sym_BSLASHGlsname] = ACTIONS(5123), + [anon_sym_BSLASHGLSname] = ACTIONS(5123), + [anon_sym_BSLASHglssymbol] = ACTIONS(5123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5123), + [anon_sym_BSLASHglsdesc] = ACTIONS(5123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5123), + [anon_sym_BSLASHglsuseri] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5123), + [anon_sym_BSLASHglsuserii] = ACTIONS(5123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5123), + [anon_sym_BSLASHglsuserv] = ACTIONS(5123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5123), + [anon_sym_BSLASHglsuservi] = ACTIONS(5123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5123), + [anon_sym_BSLASHnewacronym] = ACTIONS(5123), + [anon_sym_BSLASHacrshort] = ACTIONS(5123), + [anon_sym_BSLASHAcrshort] = ACTIONS(5123), + [anon_sym_BSLASHACRshort] = ACTIONS(5123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5123), + [anon_sym_BSLASHacrlong] = ACTIONS(5123), + [anon_sym_BSLASHAcrlong] = ACTIONS(5123), + [anon_sym_BSLASHACRlong] = ACTIONS(5123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5123), + [anon_sym_BSLASHacrfull] = ACTIONS(5123), + [anon_sym_BSLASHAcrfull] = ACTIONS(5123), + [anon_sym_BSLASHACRfull] = ACTIONS(5123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5123), + [anon_sym_BSLASHacs] = ACTIONS(5123), + [anon_sym_BSLASHAcs] = ACTIONS(5123), + [anon_sym_BSLASHacsp] = ACTIONS(5123), + [anon_sym_BSLASHAcsp] = ACTIONS(5123), + [anon_sym_BSLASHacl] = ACTIONS(5123), + [anon_sym_BSLASHAcl] = ACTIONS(5123), + [anon_sym_BSLASHaclp] = ACTIONS(5123), + [anon_sym_BSLASHAclp] = ACTIONS(5123), + [anon_sym_BSLASHacf] = ACTIONS(5123), + [anon_sym_BSLASHAcf] = ACTIONS(5123), + [anon_sym_BSLASHacfp] = ACTIONS(5123), + [anon_sym_BSLASHAcfp] = ACTIONS(5123), + [anon_sym_BSLASHac] = ACTIONS(5123), + [anon_sym_BSLASHAc] = ACTIONS(5123), + [anon_sym_BSLASHacp] = ACTIONS(5123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5123), + [anon_sym_BSLASHcolor] = ACTIONS(5123), + [anon_sym_BSLASHcolorbox] = ACTIONS(5123), + [anon_sym_BSLASHtextcolor] = ACTIONS(5123), + [anon_sym_BSLASHpagecolor] = ACTIONS(5123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5123), + [anon_sym_BSLASHtext] = ACTIONS(5123), + [anon_sym_BSLASHintertext] = ACTIONS(5123), + [anon_sym_shortintertext] = ACTIONS(5123), }, - [1042] = { - [sym_command_name] = ACTIONS(5337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_BSLASHpart] = ACTIONS(5337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddpart] = ACTIONS(5337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHchapter] = ACTIONS(5337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddchap] = ACTIONS(5337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsection] = ACTIONS(5337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddsec] = ACTIONS(5337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHparagraph] = ACTIONS(5337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHitem] = ACTIONS(5337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5335), - [anon_sym_BSLASHbegin] = ACTIONS(5337), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), + [886] = { + [sym_command_name] = ACTIONS(5115), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5115), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_RPAREN] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_RBRACK] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_EQ] = ACTIONS(5113), + [anon_sym_BSLASHpart] = ACTIONS(5115), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddpart] = ACTIONS(5115), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5113), + [anon_sym_BSLASHchapter] = ACTIONS(5115), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddchap] = ACTIONS(5115), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsection] = ACTIONS(5115), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddsec] = ACTIONS(5115), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubsection] = ACTIONS(5115), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5115), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHparagraph] = ACTIONS(5115), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5115), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5113), + [anon_sym_BSLASHitem] = ACTIONS(5115), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(5113), + [sym_word] = ACTIONS(5115), + [sym_placeholder] = ACTIONS(5113), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_CARET] = ACTIONS(5115), + [anon_sym__] = ACTIONS(5115), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_BANG] = ACTIONS(5115), + [anon_sym_PIPE] = ACTIONS(5115), + [anon_sym_COLON] = ACTIONS(5115), + [anon_sym_SQUOTE] = ACTIONS(5115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5113), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5113), + [anon_sym_DOLLAR] = ACTIONS(5115), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5113), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5113), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5113), + [anon_sym_BSLASHbegin] = ACTIONS(5115), + [anon_sym_BSLASHusepackage] = ACTIONS(5115), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5115), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5115), + [anon_sym_BSLASHinclude] = ACTIONS(5115), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5115), + [anon_sym_BSLASHinput] = ACTIONS(5115), + [anon_sym_BSLASHsubfile] = ACTIONS(5115), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5115), + [anon_sym_BSLASHbibliography] = ACTIONS(5115), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5115), + [anon_sym_BSLASHincludesvg] = ACTIONS(5115), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5115), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5115), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5115), + [anon_sym_BSLASHimport] = ACTIONS(5115), + [anon_sym_BSLASHsubimport] = ACTIONS(5115), + [anon_sym_BSLASHinputfrom] = ACTIONS(5115), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5115), + [anon_sym_BSLASHincludefrom] = ACTIONS(5115), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5115), + [anon_sym_BSLASHcaption] = ACTIONS(5115), + [anon_sym_BSLASHcite] = ACTIONS(5115), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCite] = ACTIONS(5115), + [anon_sym_BSLASHnocite] = ACTIONS(5115), + [anon_sym_BSLASHcitet] = ACTIONS(5115), + [anon_sym_BSLASHcitep] = ACTIONS(5115), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteauthor] = ACTIONS(5115), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5115), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitetitle] = ACTIONS(5115), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteyear] = ACTIONS(5115), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitedate] = ACTIONS(5115), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteurl] = ACTIONS(5115), + [anon_sym_BSLASHfullcite] = ACTIONS(5115), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5115), + [anon_sym_BSLASHcitealt] = ACTIONS(5115), + [anon_sym_BSLASHcitealp] = ACTIONS(5115), + [anon_sym_BSLASHcitetext] = ACTIONS(5115), + [anon_sym_BSLASHparencite] = ACTIONS(5115), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHParencite] = ACTIONS(5115), + [anon_sym_BSLASHfootcite] = ACTIONS(5115), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5115), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5115), + [anon_sym_BSLASHtextcite] = ACTIONS(5115), + [anon_sym_BSLASHTextcite] = ACTIONS(5115), + [anon_sym_BSLASHsmartcite] = ACTIONS(5115), + [anon_sym_BSLASHSmartcite] = ACTIONS(5115), + [anon_sym_BSLASHsupercite] = ACTIONS(5115), + [anon_sym_BSLASHautocite] = ACTIONS(5115), + [anon_sym_BSLASHAutocite] = ACTIONS(5115), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHvolcite] = ACTIONS(5115), + [anon_sym_BSLASHVolcite] = ACTIONS(5115), + [anon_sym_BSLASHpvolcite] = ACTIONS(5115), + [anon_sym_BSLASHPvolcite] = ACTIONS(5115), + [anon_sym_BSLASHfvolcite] = ACTIONS(5115), + [anon_sym_BSLASHftvolcite] = ACTIONS(5115), + [anon_sym_BSLASHsvolcite] = ACTIONS(5115), + [anon_sym_BSLASHSvolcite] = ACTIONS(5115), + [anon_sym_BSLASHtvolcite] = ACTIONS(5115), + [anon_sym_BSLASHTvolcite] = ACTIONS(5115), + [anon_sym_BSLASHavolcite] = ACTIONS(5115), + [anon_sym_BSLASHAvolcite] = ACTIONS(5115), + [anon_sym_BSLASHnotecite] = ACTIONS(5115), + [anon_sym_BSLASHNotecite] = ACTIONS(5115), + [anon_sym_BSLASHpnotecite] = ACTIONS(5115), + [anon_sym_BSLASHPnotecite] = ACTIONS(5115), + [anon_sym_BSLASHfnotecite] = ACTIONS(5115), + [anon_sym_BSLASHlabel] = ACTIONS(5115), + [anon_sym_BSLASHref] = ACTIONS(5115), + [anon_sym_BSLASHeqref] = ACTIONS(5115), + [anon_sym_BSLASHvref] = ACTIONS(5115), + [anon_sym_BSLASHVref] = ACTIONS(5115), + [anon_sym_BSLASHautoref] = ACTIONS(5115), + [anon_sym_BSLASHpageref] = ACTIONS(5115), + [anon_sym_BSLASHcref] = ACTIONS(5115), + [anon_sym_BSLASHCref] = ACTIONS(5115), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5113), + [anon_sym_BSLASHnamecref] = ACTIONS(5115), + [anon_sym_BSLASHnameCref] = ACTIONS(5115), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5115), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5115), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5115), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5115), + [anon_sym_BSLASHlabelcref] = ACTIONS(5115), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5115), + [anon_sym_BSLASHcrefrange] = ACTIONS(5115), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCrefrange] = ACTIONS(5115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5113), + [anon_sym_BSLASHnewlabel] = ACTIONS(5115), + [anon_sym_BSLASHnewcommand] = ACTIONS(5115), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5115), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5115), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5115), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5113), + [anon_sym_BSLASHdef] = ACTIONS(5115), + [anon_sym_BSLASHlet] = ACTIONS(5115), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5115), + [anon_sym_BSLASHgls] = ACTIONS(5115), + [anon_sym_BSLASHGls] = ACTIONS(5115), + [anon_sym_BSLASHGLS] = ACTIONS(5115), + [anon_sym_BSLASHglspl] = ACTIONS(5115), + [anon_sym_BSLASHGlspl] = ACTIONS(5115), + [anon_sym_BSLASHGLSpl] = ACTIONS(5115), + [anon_sym_BSLASHglsdisp] = ACTIONS(5115), + [anon_sym_BSLASHglslink] = ACTIONS(5115), + [anon_sym_BSLASHglstext] = ACTIONS(5115), + [anon_sym_BSLASHGlstext] = ACTIONS(5115), + [anon_sym_BSLASHGLStext] = ACTIONS(5115), + [anon_sym_BSLASHglsfirst] = ACTIONS(5115), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5115), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5115), + [anon_sym_BSLASHglsplural] = ACTIONS(5115), + [anon_sym_BSLASHGlsplural] = ACTIONS(5115), + [anon_sym_BSLASHGLSplural] = ACTIONS(5115), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHglsname] = ACTIONS(5115), + [anon_sym_BSLASHGlsname] = ACTIONS(5115), + [anon_sym_BSLASHGLSname] = ACTIONS(5115), + [anon_sym_BSLASHglssymbol] = ACTIONS(5115), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5115), + [anon_sym_BSLASHglsdesc] = ACTIONS(5115), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5115), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5115), + [anon_sym_BSLASHglsuseri] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5115), + [anon_sym_BSLASHglsuserii] = ACTIONS(5115), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5115), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5115), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5115), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5115), + [anon_sym_BSLASHglsuserv] = ACTIONS(5115), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5115), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5115), + [anon_sym_BSLASHglsuservi] = ACTIONS(5115), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5115), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5115), + [anon_sym_BSLASHnewacronym] = ACTIONS(5115), + [anon_sym_BSLASHacrshort] = ACTIONS(5115), + [anon_sym_BSLASHAcrshort] = ACTIONS(5115), + [anon_sym_BSLASHACRshort] = ACTIONS(5115), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5115), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5115), + [anon_sym_BSLASHacrlong] = ACTIONS(5115), + [anon_sym_BSLASHAcrlong] = ACTIONS(5115), + [anon_sym_BSLASHACRlong] = ACTIONS(5115), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5115), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5115), + [anon_sym_BSLASHacrfull] = ACTIONS(5115), + [anon_sym_BSLASHAcrfull] = ACTIONS(5115), + [anon_sym_BSLASHACRfull] = ACTIONS(5115), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5115), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5115), + [anon_sym_BSLASHacs] = ACTIONS(5115), + [anon_sym_BSLASHAcs] = ACTIONS(5115), + [anon_sym_BSLASHacsp] = ACTIONS(5115), + [anon_sym_BSLASHAcsp] = ACTIONS(5115), + [anon_sym_BSLASHacl] = ACTIONS(5115), + [anon_sym_BSLASHAcl] = ACTIONS(5115), + [anon_sym_BSLASHaclp] = ACTIONS(5115), + [anon_sym_BSLASHAclp] = ACTIONS(5115), + [anon_sym_BSLASHacf] = ACTIONS(5115), + [anon_sym_BSLASHAcf] = ACTIONS(5115), + [anon_sym_BSLASHacfp] = ACTIONS(5115), + [anon_sym_BSLASHAcfp] = ACTIONS(5115), + [anon_sym_BSLASHac] = ACTIONS(5115), + [anon_sym_BSLASHAc] = ACTIONS(5115), + [anon_sym_BSLASHacp] = ACTIONS(5115), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5115), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5115), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5115), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5115), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5115), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5115), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5115), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5115), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5115), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5115), + [anon_sym_BSLASHcolor] = ACTIONS(5115), + [anon_sym_BSLASHcolorbox] = ACTIONS(5115), + [anon_sym_BSLASHtextcolor] = ACTIONS(5115), + [anon_sym_BSLASHpagecolor] = ACTIONS(5115), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5115), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5115), + [anon_sym_BSLASHtext] = ACTIONS(5115), + [anon_sym_BSLASHintertext] = ACTIONS(5115), + [anon_sym_shortintertext] = ACTIONS(5115), }, - [1043] = { - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_BSLASHpart] = ACTIONS(5333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddpart] = ACTIONS(5333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHchapter] = ACTIONS(5333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddchap] = ACTIONS(5333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsection] = ACTIONS(5333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddsec] = ACTIONS(5333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHparagraph] = ACTIONS(5333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHitem] = ACTIONS(5333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5331), - [anon_sym_BSLASHbegin] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), + [887] = { + [sym_command_name] = ACTIONS(5109), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [anon_sym_RBRACK] = ACTIONS(5107), + [anon_sym_COMMA] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_BSLASHpart] = ACTIONS(5109), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddpart] = ACTIONS(5109), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), + [anon_sym_BSLASHchapter] = ACTIONS(5109), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddchap] = ACTIONS(5109), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsection] = ACTIONS(5109), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddsec] = ACTIONS(5109), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubsection] = ACTIONS(5109), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHparagraph] = ACTIONS(5109), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), + [anon_sym_BSLASHitem] = ACTIONS(5109), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), + [anon_sym_LBRACE] = ACTIONS(5107), + [sym_word] = ACTIONS(5109), + [sym_placeholder] = ACTIONS(5107), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_CARET] = ACTIONS(5109), + [anon_sym__] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_BANG] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5109), + [anon_sym_COLON] = ACTIONS(5109), + [anon_sym_SQUOTE] = ACTIONS(5109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), + [anon_sym_DOLLAR] = ACTIONS(5109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5107), + [anon_sym_BSLASHbegin] = ACTIONS(5109), + [anon_sym_BSLASHusepackage] = ACTIONS(5109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), + [anon_sym_BSLASHinclude] = ACTIONS(5109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), + [anon_sym_BSLASHinput] = ACTIONS(5109), + [anon_sym_BSLASHsubfile] = ACTIONS(5109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), + [anon_sym_BSLASHbibliography] = ACTIONS(5109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), + [anon_sym_BSLASHincludesvg] = ACTIONS(5109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), + [anon_sym_BSLASHimport] = ACTIONS(5109), + [anon_sym_BSLASHsubimport] = ACTIONS(5109), + [anon_sym_BSLASHinputfrom] = ACTIONS(5109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), + [anon_sym_BSLASHincludefrom] = ACTIONS(5109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), + [anon_sym_BSLASHcaption] = ACTIONS(5109), + [anon_sym_BSLASHcite] = ACTIONS(5109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCite] = ACTIONS(5109), + [anon_sym_BSLASHnocite] = ACTIONS(5109), + [anon_sym_BSLASHcitet] = ACTIONS(5109), + [anon_sym_BSLASHcitep] = ACTIONS(5109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteauthor] = ACTIONS(5109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitetitle] = ACTIONS(5109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteyear] = ACTIONS(5109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitedate] = ACTIONS(5109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteurl] = ACTIONS(5109), + [anon_sym_BSLASHfullcite] = ACTIONS(5109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), + [anon_sym_BSLASHcitealt] = ACTIONS(5109), + [anon_sym_BSLASHcitealp] = ACTIONS(5109), + [anon_sym_BSLASHcitetext] = ACTIONS(5109), + [anon_sym_BSLASHparencite] = ACTIONS(5109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHParencite] = ACTIONS(5109), + [anon_sym_BSLASHfootcite] = ACTIONS(5109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), + [anon_sym_BSLASHtextcite] = ACTIONS(5109), + [anon_sym_BSLASHTextcite] = ACTIONS(5109), + [anon_sym_BSLASHsmartcite] = ACTIONS(5109), + [anon_sym_BSLASHSmartcite] = ACTIONS(5109), + [anon_sym_BSLASHsupercite] = ACTIONS(5109), + [anon_sym_BSLASHautocite] = ACTIONS(5109), + [anon_sym_BSLASHAutocite] = ACTIONS(5109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHvolcite] = ACTIONS(5109), + [anon_sym_BSLASHVolcite] = ACTIONS(5109), + [anon_sym_BSLASHpvolcite] = ACTIONS(5109), + [anon_sym_BSLASHPvolcite] = ACTIONS(5109), + [anon_sym_BSLASHfvolcite] = ACTIONS(5109), + [anon_sym_BSLASHftvolcite] = ACTIONS(5109), + [anon_sym_BSLASHsvolcite] = ACTIONS(5109), + [anon_sym_BSLASHSvolcite] = ACTIONS(5109), + [anon_sym_BSLASHtvolcite] = ACTIONS(5109), + [anon_sym_BSLASHTvolcite] = ACTIONS(5109), + [anon_sym_BSLASHavolcite] = ACTIONS(5109), + [anon_sym_BSLASHAvolcite] = ACTIONS(5109), + [anon_sym_BSLASHnotecite] = ACTIONS(5109), + [anon_sym_BSLASHNotecite] = ACTIONS(5109), + [anon_sym_BSLASHpnotecite] = ACTIONS(5109), + [anon_sym_BSLASHPnotecite] = ACTIONS(5109), + [anon_sym_BSLASHfnotecite] = ACTIONS(5109), + [anon_sym_BSLASHlabel] = ACTIONS(5109), + [anon_sym_BSLASHref] = ACTIONS(5109), + [anon_sym_BSLASHeqref] = ACTIONS(5109), + [anon_sym_BSLASHvref] = ACTIONS(5109), + [anon_sym_BSLASHVref] = ACTIONS(5109), + [anon_sym_BSLASHautoref] = ACTIONS(5109), + [anon_sym_BSLASHpageref] = ACTIONS(5109), + [anon_sym_BSLASHcref] = ACTIONS(5109), + [anon_sym_BSLASHCref] = ACTIONS(5109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), + [anon_sym_BSLASHnamecref] = ACTIONS(5109), + [anon_sym_BSLASHnameCref] = ACTIONS(5109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), + [anon_sym_BSLASHlabelcref] = ACTIONS(5109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), + [anon_sym_BSLASHcrefrange] = ACTIONS(5109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCrefrange] = ACTIONS(5109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), + [anon_sym_BSLASHnewlabel] = ACTIONS(5109), + [anon_sym_BSLASHnewcommand] = ACTIONS(5109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), + [anon_sym_BSLASHdef] = ACTIONS(5109), + [anon_sym_BSLASHlet] = ACTIONS(5109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), + [anon_sym_BSLASHgls] = ACTIONS(5109), + [anon_sym_BSLASHGls] = ACTIONS(5109), + [anon_sym_BSLASHGLS] = ACTIONS(5109), + [anon_sym_BSLASHglspl] = ACTIONS(5109), + [anon_sym_BSLASHGlspl] = ACTIONS(5109), + [anon_sym_BSLASHGLSpl] = ACTIONS(5109), + [anon_sym_BSLASHglsdisp] = ACTIONS(5109), + [anon_sym_BSLASHglslink] = ACTIONS(5109), + [anon_sym_BSLASHglstext] = ACTIONS(5109), + [anon_sym_BSLASHGlstext] = ACTIONS(5109), + [anon_sym_BSLASHGLStext] = ACTIONS(5109), + [anon_sym_BSLASHglsfirst] = ACTIONS(5109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), + [anon_sym_BSLASHglsplural] = ACTIONS(5109), + [anon_sym_BSLASHGlsplural] = ACTIONS(5109), + [anon_sym_BSLASHGLSplural] = ACTIONS(5109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHglsname] = ACTIONS(5109), + [anon_sym_BSLASHGlsname] = ACTIONS(5109), + [anon_sym_BSLASHGLSname] = ACTIONS(5109), + [anon_sym_BSLASHglssymbol] = ACTIONS(5109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), + [anon_sym_BSLASHglsdesc] = ACTIONS(5109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), + [anon_sym_BSLASHglsuseri] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), + [anon_sym_BSLASHglsuserii] = ACTIONS(5109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), + [anon_sym_BSLASHglsuserv] = ACTIONS(5109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), + [anon_sym_BSLASHglsuservi] = ACTIONS(5109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), + [anon_sym_BSLASHnewacronym] = ACTIONS(5109), + [anon_sym_BSLASHacrshort] = ACTIONS(5109), + [anon_sym_BSLASHAcrshort] = ACTIONS(5109), + [anon_sym_BSLASHACRshort] = ACTIONS(5109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), + [anon_sym_BSLASHacrlong] = ACTIONS(5109), + [anon_sym_BSLASHAcrlong] = ACTIONS(5109), + [anon_sym_BSLASHACRlong] = ACTIONS(5109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), + [anon_sym_BSLASHacrfull] = ACTIONS(5109), + [anon_sym_BSLASHAcrfull] = ACTIONS(5109), + [anon_sym_BSLASHACRfull] = ACTIONS(5109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), + [anon_sym_BSLASHacs] = ACTIONS(5109), + [anon_sym_BSLASHAcs] = ACTIONS(5109), + [anon_sym_BSLASHacsp] = ACTIONS(5109), + [anon_sym_BSLASHAcsp] = ACTIONS(5109), + [anon_sym_BSLASHacl] = ACTIONS(5109), + [anon_sym_BSLASHAcl] = ACTIONS(5109), + [anon_sym_BSLASHaclp] = ACTIONS(5109), + [anon_sym_BSLASHAclp] = ACTIONS(5109), + [anon_sym_BSLASHacf] = ACTIONS(5109), + [anon_sym_BSLASHAcf] = ACTIONS(5109), + [anon_sym_BSLASHacfp] = ACTIONS(5109), + [anon_sym_BSLASHAcfp] = ACTIONS(5109), + [anon_sym_BSLASHac] = ACTIONS(5109), + [anon_sym_BSLASHAc] = ACTIONS(5109), + [anon_sym_BSLASHacp] = ACTIONS(5109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), + [anon_sym_BSLASHcolor] = ACTIONS(5109), + [anon_sym_BSLASHcolorbox] = ACTIONS(5109), + [anon_sym_BSLASHtextcolor] = ACTIONS(5109), + [anon_sym_BSLASHpagecolor] = ACTIONS(5109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), + [anon_sym_BSLASHtext] = ACTIONS(5109), + [anon_sym_BSLASHintertext] = ACTIONS(5109), + [anon_sym_shortintertext] = ACTIONS(5109), }, - [1044] = { - [sym_command_name] = ACTIONS(5329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5329), - [anon_sym_LPAREN] = ACTIONS(5327), - [anon_sym_RPAREN] = ACTIONS(5327), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_RBRACK] = ACTIONS(5327), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5327), - [anon_sym_BSLASHpart] = ACTIONS(5329), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddpart] = ACTIONS(5329), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5327), - [anon_sym_BSLASHchapter] = ACTIONS(5329), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddchap] = ACTIONS(5329), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsection] = ACTIONS(5329), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddsec] = ACTIONS(5329), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubsection] = ACTIONS(5329), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5329), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHparagraph] = ACTIONS(5329), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5329), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5327), - [anon_sym_BSLASHitem] = ACTIONS(5329), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5327), - [anon_sym_LBRACE] = ACTIONS(5327), - [sym_word] = ACTIONS(5329), - [sym_placeholder] = ACTIONS(5327), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_STAR] = ACTIONS(5329), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_CARET] = ACTIONS(5329), - [anon_sym__] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_BANG] = ACTIONS(5329), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_COLON] = ACTIONS(5329), - [anon_sym_SQUOTE] = ACTIONS(5329), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5327), - [anon_sym_DOLLAR] = ACTIONS(5329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5327), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5327), - [anon_sym_BSLASHbegin] = ACTIONS(5329), - [anon_sym_BSLASHusepackage] = ACTIONS(5329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5329), - [anon_sym_BSLASHinclude] = ACTIONS(5329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5329), - [anon_sym_BSLASHinput] = ACTIONS(5329), - [anon_sym_BSLASHsubfile] = ACTIONS(5329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5329), - [anon_sym_BSLASHbibliography] = ACTIONS(5329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5329), - [anon_sym_BSLASHincludesvg] = ACTIONS(5329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5329), - [anon_sym_BSLASHimport] = ACTIONS(5329), - [anon_sym_BSLASHsubimport] = ACTIONS(5329), - [anon_sym_BSLASHinputfrom] = ACTIONS(5329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5329), - [anon_sym_BSLASHincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHcaption] = ACTIONS(5329), - [anon_sym_BSLASHcite] = ACTIONS(5329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCite] = ACTIONS(5329), - [anon_sym_BSLASHnocite] = ACTIONS(5329), - [anon_sym_BSLASHcitet] = ACTIONS(5329), - [anon_sym_BSLASHcitep] = ACTIONS(5329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor] = ACTIONS(5329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle] = ACTIONS(5329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteyear] = ACTIONS(5329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitedate] = ACTIONS(5329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteurl] = ACTIONS(5329), - [anon_sym_BSLASHfullcite] = ACTIONS(5329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5329), - [anon_sym_BSLASHcitealt] = ACTIONS(5329), - [anon_sym_BSLASHcitealp] = ACTIONS(5329), - [anon_sym_BSLASHcitetext] = ACTIONS(5329), - [anon_sym_BSLASHparencite] = ACTIONS(5329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHParencite] = ACTIONS(5329), - [anon_sym_BSLASHfootcite] = ACTIONS(5329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5329), - [anon_sym_BSLASHtextcite] = ACTIONS(5329), - [anon_sym_BSLASHTextcite] = ACTIONS(5329), - [anon_sym_BSLASHsmartcite] = ACTIONS(5329), - [anon_sym_BSLASHSmartcite] = ACTIONS(5329), - [anon_sym_BSLASHsupercite] = ACTIONS(5329), - [anon_sym_BSLASHautocite] = ACTIONS(5329), - [anon_sym_BSLASHAutocite] = ACTIONS(5329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHvolcite] = ACTIONS(5329), - [anon_sym_BSLASHVolcite] = ACTIONS(5329), - [anon_sym_BSLASHpvolcite] = ACTIONS(5329), - [anon_sym_BSLASHPvolcite] = ACTIONS(5329), - [anon_sym_BSLASHfvolcite] = ACTIONS(5329), - [anon_sym_BSLASHftvolcite] = ACTIONS(5329), - [anon_sym_BSLASHsvolcite] = ACTIONS(5329), - [anon_sym_BSLASHSvolcite] = ACTIONS(5329), - [anon_sym_BSLASHtvolcite] = ACTIONS(5329), - [anon_sym_BSLASHTvolcite] = ACTIONS(5329), - [anon_sym_BSLASHavolcite] = ACTIONS(5329), - [anon_sym_BSLASHAvolcite] = ACTIONS(5329), - [anon_sym_BSLASHnotecite] = ACTIONS(5329), - [anon_sym_BSLASHNotecite] = ACTIONS(5329), - [anon_sym_BSLASHpnotecite] = ACTIONS(5329), - [anon_sym_BSLASHPnotecite] = ACTIONS(5329), - [anon_sym_BSLASHfnotecite] = ACTIONS(5329), - [anon_sym_BSLASHlabel] = ACTIONS(5329), - [anon_sym_BSLASHref] = ACTIONS(5329), - [anon_sym_BSLASHeqref] = ACTIONS(5329), - [anon_sym_BSLASHvref] = ACTIONS(5329), - [anon_sym_BSLASHVref] = ACTIONS(5329), - [anon_sym_BSLASHautoref] = ACTIONS(5329), - [anon_sym_BSLASHpageref] = ACTIONS(5329), - [anon_sym_BSLASHcref] = ACTIONS(5329), - [anon_sym_BSLASHCref] = ACTIONS(5329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnameCref] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHlabelcref] = ACTIONS(5329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange] = ACTIONS(5329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnewlabel] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5327), - [anon_sym_BSLASHdef] = ACTIONS(5329), - [anon_sym_BSLASHlet] = ACTIONS(5329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5329), - [anon_sym_BSLASHgls] = ACTIONS(5329), - [anon_sym_BSLASHGls] = ACTIONS(5329), - [anon_sym_BSLASHGLS] = ACTIONS(5329), - [anon_sym_BSLASHglspl] = ACTIONS(5329), - [anon_sym_BSLASHGlspl] = ACTIONS(5329), - [anon_sym_BSLASHGLSpl] = ACTIONS(5329), - [anon_sym_BSLASHglsdisp] = ACTIONS(5329), - [anon_sym_BSLASHglslink] = ACTIONS(5329), - [anon_sym_BSLASHglstext] = ACTIONS(5329), - [anon_sym_BSLASHGlstext] = ACTIONS(5329), - [anon_sym_BSLASHGLStext] = ACTIONS(5329), - [anon_sym_BSLASHglsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5329), - [anon_sym_BSLASHglsplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSplural] = ACTIONS(5329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHglsname] = ACTIONS(5329), - [anon_sym_BSLASHGlsname] = ACTIONS(5329), - [anon_sym_BSLASHGLSname] = ACTIONS(5329), - [anon_sym_BSLASHglssymbol] = ACTIONS(5329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5329), - [anon_sym_BSLASHglsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5329), - [anon_sym_BSLASHglsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5329), - [anon_sym_BSLASHglsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5329), - [anon_sym_BSLASHglsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5329), - [anon_sym_BSLASHglsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5329), - [anon_sym_BSLASHnewacronym] = ACTIONS(5329), - [anon_sym_BSLASHacrshort] = ACTIONS(5329), - [anon_sym_BSLASHAcrshort] = ACTIONS(5329), - [anon_sym_BSLASHACRshort] = ACTIONS(5329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5329), - [anon_sym_BSLASHacrlong] = ACTIONS(5329), - [anon_sym_BSLASHAcrlong] = ACTIONS(5329), - [anon_sym_BSLASHACRlong] = ACTIONS(5329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5329), - [anon_sym_BSLASHacrfull] = ACTIONS(5329), - [anon_sym_BSLASHAcrfull] = ACTIONS(5329), - [anon_sym_BSLASHACRfull] = ACTIONS(5329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5329), - [anon_sym_BSLASHacs] = ACTIONS(5329), - [anon_sym_BSLASHAcs] = ACTIONS(5329), - [anon_sym_BSLASHacsp] = ACTIONS(5329), - [anon_sym_BSLASHAcsp] = ACTIONS(5329), - [anon_sym_BSLASHacl] = ACTIONS(5329), - [anon_sym_BSLASHAcl] = ACTIONS(5329), - [anon_sym_BSLASHaclp] = ACTIONS(5329), - [anon_sym_BSLASHAclp] = ACTIONS(5329), - [anon_sym_BSLASHacf] = ACTIONS(5329), - [anon_sym_BSLASHAcf] = ACTIONS(5329), - [anon_sym_BSLASHacfp] = ACTIONS(5329), - [anon_sym_BSLASHAcfp] = ACTIONS(5329), - [anon_sym_BSLASHac] = ACTIONS(5329), - [anon_sym_BSLASHAc] = ACTIONS(5329), - [anon_sym_BSLASHacp] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5329), - [anon_sym_BSLASHcolor] = ACTIONS(5329), - [anon_sym_BSLASHcolorbox] = ACTIONS(5329), - [anon_sym_BSLASHtextcolor] = ACTIONS(5329), - [anon_sym_BSLASHpagecolor] = ACTIONS(5329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5329), + [888] = { + [sym_command_name] = ACTIONS(5077), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_RPAREN] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_RBRACK] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_EQ] = ACTIONS(5075), + [anon_sym_BSLASHpart] = ACTIONS(5077), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddpart] = ACTIONS(5077), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), + [anon_sym_BSLASHchapter] = ACTIONS(5077), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddchap] = ACTIONS(5077), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsection] = ACTIONS(5077), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddsec] = ACTIONS(5077), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubsection] = ACTIONS(5077), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHparagraph] = ACTIONS(5077), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), + [anon_sym_BSLASHitem] = ACTIONS(5077), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5075), + [sym_word] = ACTIONS(5077), + [sym_placeholder] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_CARET] = ACTIONS(5077), + [anon_sym__] = ACTIONS(5077), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_PIPE] = ACTIONS(5077), + [anon_sym_COLON] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), + [anon_sym_DOLLAR] = ACTIONS(5077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5075), + [anon_sym_BSLASHbegin] = ACTIONS(5077), + [anon_sym_BSLASHusepackage] = ACTIONS(5077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), + [anon_sym_BSLASHinclude] = ACTIONS(5077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), + [anon_sym_BSLASHinput] = ACTIONS(5077), + [anon_sym_BSLASHsubfile] = ACTIONS(5077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), + [anon_sym_BSLASHbibliography] = ACTIONS(5077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), + [anon_sym_BSLASHincludesvg] = ACTIONS(5077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), + [anon_sym_BSLASHimport] = ACTIONS(5077), + [anon_sym_BSLASHsubimport] = ACTIONS(5077), + [anon_sym_BSLASHinputfrom] = ACTIONS(5077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), + [anon_sym_BSLASHincludefrom] = ACTIONS(5077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), + [anon_sym_BSLASHcaption] = ACTIONS(5077), + [anon_sym_BSLASHcite] = ACTIONS(5077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCite] = ACTIONS(5077), + [anon_sym_BSLASHnocite] = ACTIONS(5077), + [anon_sym_BSLASHcitet] = ACTIONS(5077), + [anon_sym_BSLASHcitep] = ACTIONS(5077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteauthor] = ACTIONS(5077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitetitle] = ACTIONS(5077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteyear] = ACTIONS(5077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitedate] = ACTIONS(5077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteurl] = ACTIONS(5077), + [anon_sym_BSLASHfullcite] = ACTIONS(5077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), + [anon_sym_BSLASHcitealt] = ACTIONS(5077), + [anon_sym_BSLASHcitealp] = ACTIONS(5077), + [anon_sym_BSLASHcitetext] = ACTIONS(5077), + [anon_sym_BSLASHparencite] = ACTIONS(5077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHParencite] = ACTIONS(5077), + [anon_sym_BSLASHfootcite] = ACTIONS(5077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), + [anon_sym_BSLASHtextcite] = ACTIONS(5077), + [anon_sym_BSLASHTextcite] = ACTIONS(5077), + [anon_sym_BSLASHsmartcite] = ACTIONS(5077), + [anon_sym_BSLASHSmartcite] = ACTIONS(5077), + [anon_sym_BSLASHsupercite] = ACTIONS(5077), + [anon_sym_BSLASHautocite] = ACTIONS(5077), + [anon_sym_BSLASHAutocite] = ACTIONS(5077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHvolcite] = ACTIONS(5077), + [anon_sym_BSLASHVolcite] = ACTIONS(5077), + [anon_sym_BSLASHpvolcite] = ACTIONS(5077), + [anon_sym_BSLASHPvolcite] = ACTIONS(5077), + [anon_sym_BSLASHfvolcite] = ACTIONS(5077), + [anon_sym_BSLASHftvolcite] = ACTIONS(5077), + [anon_sym_BSLASHsvolcite] = ACTIONS(5077), + [anon_sym_BSLASHSvolcite] = ACTIONS(5077), + [anon_sym_BSLASHtvolcite] = ACTIONS(5077), + [anon_sym_BSLASHTvolcite] = ACTIONS(5077), + [anon_sym_BSLASHavolcite] = ACTIONS(5077), + [anon_sym_BSLASHAvolcite] = ACTIONS(5077), + [anon_sym_BSLASHnotecite] = ACTIONS(5077), + [anon_sym_BSLASHNotecite] = ACTIONS(5077), + [anon_sym_BSLASHpnotecite] = ACTIONS(5077), + [anon_sym_BSLASHPnotecite] = ACTIONS(5077), + [anon_sym_BSLASHfnotecite] = ACTIONS(5077), + [anon_sym_BSLASHlabel] = ACTIONS(5077), + [anon_sym_BSLASHref] = ACTIONS(5077), + [anon_sym_BSLASHeqref] = ACTIONS(5077), + [anon_sym_BSLASHvref] = ACTIONS(5077), + [anon_sym_BSLASHVref] = ACTIONS(5077), + [anon_sym_BSLASHautoref] = ACTIONS(5077), + [anon_sym_BSLASHpageref] = ACTIONS(5077), + [anon_sym_BSLASHcref] = ACTIONS(5077), + [anon_sym_BSLASHCref] = ACTIONS(5077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), + [anon_sym_BSLASHnamecref] = ACTIONS(5077), + [anon_sym_BSLASHnameCref] = ACTIONS(5077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), + [anon_sym_BSLASHlabelcref] = ACTIONS(5077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), + [anon_sym_BSLASHcrefrange] = ACTIONS(5077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCrefrange] = ACTIONS(5077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), + [anon_sym_BSLASHnewlabel] = ACTIONS(5077), + [anon_sym_BSLASHnewcommand] = ACTIONS(5077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), + [anon_sym_BSLASHdef] = ACTIONS(5077), + [anon_sym_BSLASHlet] = ACTIONS(5077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), + [anon_sym_BSLASHgls] = ACTIONS(5077), + [anon_sym_BSLASHGls] = ACTIONS(5077), + [anon_sym_BSLASHGLS] = ACTIONS(5077), + [anon_sym_BSLASHglspl] = ACTIONS(5077), + [anon_sym_BSLASHGlspl] = ACTIONS(5077), + [anon_sym_BSLASHGLSpl] = ACTIONS(5077), + [anon_sym_BSLASHglsdisp] = ACTIONS(5077), + [anon_sym_BSLASHglslink] = ACTIONS(5077), + [anon_sym_BSLASHglstext] = ACTIONS(5077), + [anon_sym_BSLASHGlstext] = ACTIONS(5077), + [anon_sym_BSLASHGLStext] = ACTIONS(5077), + [anon_sym_BSLASHglsfirst] = ACTIONS(5077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), + [anon_sym_BSLASHglsplural] = ACTIONS(5077), + [anon_sym_BSLASHGlsplural] = ACTIONS(5077), + [anon_sym_BSLASHGLSplural] = ACTIONS(5077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHglsname] = ACTIONS(5077), + [anon_sym_BSLASHGlsname] = ACTIONS(5077), + [anon_sym_BSLASHGLSname] = ACTIONS(5077), + [anon_sym_BSLASHglssymbol] = ACTIONS(5077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), + [anon_sym_BSLASHglsdesc] = ACTIONS(5077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), + [anon_sym_BSLASHglsuseri] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), + [anon_sym_BSLASHglsuserii] = ACTIONS(5077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), + [anon_sym_BSLASHglsuserv] = ACTIONS(5077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), + [anon_sym_BSLASHglsuservi] = ACTIONS(5077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), + [anon_sym_BSLASHnewacronym] = ACTIONS(5077), + [anon_sym_BSLASHacrshort] = ACTIONS(5077), + [anon_sym_BSLASHAcrshort] = ACTIONS(5077), + [anon_sym_BSLASHACRshort] = ACTIONS(5077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), + [anon_sym_BSLASHacrlong] = ACTIONS(5077), + [anon_sym_BSLASHAcrlong] = ACTIONS(5077), + [anon_sym_BSLASHACRlong] = ACTIONS(5077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), + [anon_sym_BSLASHacrfull] = ACTIONS(5077), + [anon_sym_BSLASHAcrfull] = ACTIONS(5077), + [anon_sym_BSLASHACRfull] = ACTIONS(5077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), + [anon_sym_BSLASHacs] = ACTIONS(5077), + [anon_sym_BSLASHAcs] = ACTIONS(5077), + [anon_sym_BSLASHacsp] = ACTIONS(5077), + [anon_sym_BSLASHAcsp] = ACTIONS(5077), + [anon_sym_BSLASHacl] = ACTIONS(5077), + [anon_sym_BSLASHAcl] = ACTIONS(5077), + [anon_sym_BSLASHaclp] = ACTIONS(5077), + [anon_sym_BSLASHAclp] = ACTIONS(5077), + [anon_sym_BSLASHacf] = ACTIONS(5077), + [anon_sym_BSLASHAcf] = ACTIONS(5077), + [anon_sym_BSLASHacfp] = ACTIONS(5077), + [anon_sym_BSLASHAcfp] = ACTIONS(5077), + [anon_sym_BSLASHac] = ACTIONS(5077), + [anon_sym_BSLASHAc] = ACTIONS(5077), + [anon_sym_BSLASHacp] = ACTIONS(5077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), + [anon_sym_BSLASHcolor] = ACTIONS(5077), + [anon_sym_BSLASHcolorbox] = ACTIONS(5077), + [anon_sym_BSLASHtextcolor] = ACTIONS(5077), + [anon_sym_BSLASHpagecolor] = ACTIONS(5077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), + [anon_sym_BSLASHtext] = ACTIONS(5077), + [anon_sym_BSLASHintertext] = ACTIONS(5077), + [anon_sym_shortintertext] = ACTIONS(5077), }, - [1045] = { - [sym_command_name] = ACTIONS(5325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5325), - [anon_sym_LPAREN] = ACTIONS(5323), - [anon_sym_RPAREN] = ACTIONS(5323), - [anon_sym_LBRACK] = ACTIONS(5323), - [anon_sym_RBRACK] = ACTIONS(5323), - [anon_sym_COMMA] = ACTIONS(5323), - [anon_sym_EQ] = ACTIONS(5323), - [anon_sym_BSLASHpart] = ACTIONS(5325), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddpart] = ACTIONS(5325), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5323), - [anon_sym_BSLASHchapter] = ACTIONS(5325), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddchap] = ACTIONS(5325), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsection] = ACTIONS(5325), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddsec] = ACTIONS(5325), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubsection] = ACTIONS(5325), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5325), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHparagraph] = ACTIONS(5325), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5325), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5323), - [anon_sym_BSLASHitem] = ACTIONS(5325), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5323), - [anon_sym_LBRACE] = ACTIONS(5323), - [sym_word] = ACTIONS(5325), - [sym_placeholder] = ACTIONS(5323), - [anon_sym_PLUS] = ACTIONS(5325), - [anon_sym_DASH] = ACTIONS(5325), - [anon_sym_STAR] = ACTIONS(5325), - [anon_sym_SLASH] = ACTIONS(5325), - [anon_sym_CARET] = ACTIONS(5325), - [anon_sym__] = ACTIONS(5325), - [anon_sym_LT] = ACTIONS(5325), - [anon_sym_GT] = ACTIONS(5325), - [anon_sym_BANG] = ACTIONS(5325), - [anon_sym_PIPE] = ACTIONS(5325), - [anon_sym_COLON] = ACTIONS(5325), - [anon_sym_SQUOTE] = ACTIONS(5325), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5323), - [anon_sym_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5323), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5323), - [anon_sym_BSLASHbegin] = ACTIONS(5325), - [anon_sym_BSLASHusepackage] = ACTIONS(5325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), - [anon_sym_BSLASHinclude] = ACTIONS(5325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5325), - [anon_sym_BSLASHinput] = ACTIONS(5325), - [anon_sym_BSLASHsubfile] = ACTIONS(5325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5325), - [anon_sym_BSLASHbibliography] = ACTIONS(5325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5325), - [anon_sym_BSLASHincludesvg] = ACTIONS(5325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5325), - [anon_sym_BSLASHimport] = ACTIONS(5325), - [anon_sym_BSLASHsubimport] = ACTIONS(5325), - [anon_sym_BSLASHinputfrom] = ACTIONS(5325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5325), - [anon_sym_BSLASHincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHcaption] = ACTIONS(5325), - [anon_sym_BSLASHcite] = ACTIONS(5325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCite] = ACTIONS(5325), - [anon_sym_BSLASHnocite] = ACTIONS(5325), - [anon_sym_BSLASHcitet] = ACTIONS(5325), - [anon_sym_BSLASHcitep] = ACTIONS(5325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteyear] = ACTIONS(5325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitedate] = ACTIONS(5325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteurl] = ACTIONS(5325), - [anon_sym_BSLASHfullcite] = ACTIONS(5325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5325), - [anon_sym_BSLASHcitealt] = ACTIONS(5325), - [anon_sym_BSLASHcitealp] = ACTIONS(5325), - [anon_sym_BSLASHcitetext] = ACTIONS(5325), - [anon_sym_BSLASHparencite] = ACTIONS(5325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHParencite] = ACTIONS(5325), - [anon_sym_BSLASHfootcite] = ACTIONS(5325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5325), - [anon_sym_BSLASHtextcite] = ACTIONS(5325), - [anon_sym_BSLASHTextcite] = ACTIONS(5325), - [anon_sym_BSLASHsmartcite] = ACTIONS(5325), - [anon_sym_BSLASHSmartcite] = ACTIONS(5325), - [anon_sym_BSLASHsupercite] = ACTIONS(5325), - [anon_sym_BSLASHautocite] = ACTIONS(5325), - [anon_sym_BSLASHAutocite] = ACTIONS(5325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHvolcite] = ACTIONS(5325), - [anon_sym_BSLASHVolcite] = ACTIONS(5325), - [anon_sym_BSLASHpvolcite] = ACTIONS(5325), - [anon_sym_BSLASHPvolcite] = ACTIONS(5325), - [anon_sym_BSLASHfvolcite] = ACTIONS(5325), - [anon_sym_BSLASHftvolcite] = ACTIONS(5325), - [anon_sym_BSLASHsvolcite] = ACTIONS(5325), - [anon_sym_BSLASHSvolcite] = ACTIONS(5325), - [anon_sym_BSLASHtvolcite] = ACTIONS(5325), - [anon_sym_BSLASHTvolcite] = ACTIONS(5325), - [anon_sym_BSLASHavolcite] = ACTIONS(5325), - [anon_sym_BSLASHAvolcite] = ACTIONS(5325), - [anon_sym_BSLASHnotecite] = ACTIONS(5325), - [anon_sym_BSLASHNotecite] = ACTIONS(5325), - [anon_sym_BSLASHpnotecite] = ACTIONS(5325), - [anon_sym_BSLASHPnotecite] = ACTIONS(5325), - [anon_sym_BSLASHfnotecite] = ACTIONS(5325), - [anon_sym_BSLASHlabel] = ACTIONS(5325), - [anon_sym_BSLASHref] = ACTIONS(5325), - [anon_sym_BSLASHeqref] = ACTIONS(5325), - [anon_sym_BSLASHvref] = ACTIONS(5325), - [anon_sym_BSLASHVref] = ACTIONS(5325), - [anon_sym_BSLASHautoref] = ACTIONS(5325), - [anon_sym_BSLASHpageref] = ACTIONS(5325), - [anon_sym_BSLASHcref] = ACTIONS(5325), - [anon_sym_BSLASHCref] = ACTIONS(5325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnameCref] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHlabelcref] = ACTIONS(5325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnewlabel] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5323), - [anon_sym_BSLASHdef] = ACTIONS(5325), - [anon_sym_BSLASHlet] = ACTIONS(5325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5325), - [anon_sym_BSLASHgls] = ACTIONS(5325), - [anon_sym_BSLASHGls] = ACTIONS(5325), - [anon_sym_BSLASHGLS] = ACTIONS(5325), - [anon_sym_BSLASHglspl] = ACTIONS(5325), - [anon_sym_BSLASHGlspl] = ACTIONS(5325), - [anon_sym_BSLASHGLSpl] = ACTIONS(5325), - [anon_sym_BSLASHglsdisp] = ACTIONS(5325), - [anon_sym_BSLASHglslink] = ACTIONS(5325), - [anon_sym_BSLASHglstext] = ACTIONS(5325), - [anon_sym_BSLASHGlstext] = ACTIONS(5325), - [anon_sym_BSLASHGLStext] = ACTIONS(5325), - [anon_sym_BSLASHglsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5325), - [anon_sym_BSLASHglsplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSplural] = ACTIONS(5325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHglsname] = ACTIONS(5325), - [anon_sym_BSLASHGlsname] = ACTIONS(5325), - [anon_sym_BSLASHGLSname] = ACTIONS(5325), - [anon_sym_BSLASHglssymbol] = ACTIONS(5325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5325), - [anon_sym_BSLASHglsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5325), - [anon_sym_BSLASHglsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5325), - [anon_sym_BSLASHglsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5325), - [anon_sym_BSLASHglsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5325), - [anon_sym_BSLASHglsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5325), - [anon_sym_BSLASHnewacronym] = ACTIONS(5325), - [anon_sym_BSLASHacrshort] = ACTIONS(5325), - [anon_sym_BSLASHAcrshort] = ACTIONS(5325), - [anon_sym_BSLASHACRshort] = ACTIONS(5325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5325), - [anon_sym_BSLASHacrlong] = ACTIONS(5325), - [anon_sym_BSLASHAcrlong] = ACTIONS(5325), - [anon_sym_BSLASHACRlong] = ACTIONS(5325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5325), - [anon_sym_BSLASHacrfull] = ACTIONS(5325), - [anon_sym_BSLASHAcrfull] = ACTIONS(5325), - [anon_sym_BSLASHACRfull] = ACTIONS(5325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5325), - [anon_sym_BSLASHacs] = ACTIONS(5325), - [anon_sym_BSLASHAcs] = ACTIONS(5325), - [anon_sym_BSLASHacsp] = ACTIONS(5325), - [anon_sym_BSLASHAcsp] = ACTIONS(5325), - [anon_sym_BSLASHacl] = ACTIONS(5325), - [anon_sym_BSLASHAcl] = ACTIONS(5325), - [anon_sym_BSLASHaclp] = ACTIONS(5325), - [anon_sym_BSLASHAclp] = ACTIONS(5325), - [anon_sym_BSLASHacf] = ACTIONS(5325), - [anon_sym_BSLASHAcf] = ACTIONS(5325), - [anon_sym_BSLASHacfp] = ACTIONS(5325), - [anon_sym_BSLASHAcfp] = ACTIONS(5325), - [anon_sym_BSLASHac] = ACTIONS(5325), - [anon_sym_BSLASHAc] = ACTIONS(5325), - [anon_sym_BSLASHacp] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5325), - [anon_sym_BSLASHcolor] = ACTIONS(5325), - [anon_sym_BSLASHcolorbox] = ACTIONS(5325), - [anon_sym_BSLASHtextcolor] = ACTIONS(5325), - [anon_sym_BSLASHpagecolor] = ACTIONS(5325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5325), + [889] = { + [sym_command_name] = ACTIONS(5069), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_RPAREN] = ACTIONS(5067), + [anon_sym_LBRACK] = ACTIONS(5067), + [anon_sym_RBRACK] = ACTIONS(5067), + [anon_sym_COMMA] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_BSLASHpart] = ACTIONS(5069), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddpart] = ACTIONS(5069), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), + [anon_sym_BSLASHchapter] = ACTIONS(5069), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddchap] = ACTIONS(5069), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsection] = ACTIONS(5069), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddsec] = ACTIONS(5069), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubsection] = ACTIONS(5069), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHparagraph] = ACTIONS(5069), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), + [anon_sym_BSLASHitem] = ACTIONS(5069), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5067), + [sym_word] = ACTIONS(5069), + [sym_placeholder] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_STAR] = ACTIONS(5069), + [anon_sym_SLASH] = ACTIONS(5069), + [anon_sym_CARET] = ACTIONS(5069), + [anon_sym__] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5069), + [anon_sym_GT] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5069), + [anon_sym_PIPE] = ACTIONS(5069), + [anon_sym_COLON] = ACTIONS(5069), + [anon_sym_SQUOTE] = ACTIONS(5069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5067), + [anon_sym_BSLASHbegin] = ACTIONS(5069), + [anon_sym_BSLASHusepackage] = ACTIONS(5069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), + [anon_sym_BSLASHinclude] = ACTIONS(5069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), + [anon_sym_BSLASHinput] = ACTIONS(5069), + [anon_sym_BSLASHsubfile] = ACTIONS(5069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), + [anon_sym_BSLASHbibliography] = ACTIONS(5069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), + [anon_sym_BSLASHincludesvg] = ACTIONS(5069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), + [anon_sym_BSLASHimport] = ACTIONS(5069), + [anon_sym_BSLASHsubimport] = ACTIONS(5069), + [anon_sym_BSLASHinputfrom] = ACTIONS(5069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), + [anon_sym_BSLASHincludefrom] = ACTIONS(5069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), + [anon_sym_BSLASHcaption] = ACTIONS(5069), + [anon_sym_BSLASHcite] = ACTIONS(5069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCite] = ACTIONS(5069), + [anon_sym_BSLASHnocite] = ACTIONS(5069), + [anon_sym_BSLASHcitet] = ACTIONS(5069), + [anon_sym_BSLASHcitep] = ACTIONS(5069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteauthor] = ACTIONS(5069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitetitle] = ACTIONS(5069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteyear] = ACTIONS(5069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitedate] = ACTIONS(5069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteurl] = ACTIONS(5069), + [anon_sym_BSLASHfullcite] = ACTIONS(5069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), + [anon_sym_BSLASHcitealt] = ACTIONS(5069), + [anon_sym_BSLASHcitealp] = ACTIONS(5069), + [anon_sym_BSLASHcitetext] = ACTIONS(5069), + [anon_sym_BSLASHparencite] = ACTIONS(5069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHParencite] = ACTIONS(5069), + [anon_sym_BSLASHfootcite] = ACTIONS(5069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), + [anon_sym_BSLASHtextcite] = ACTIONS(5069), + [anon_sym_BSLASHTextcite] = ACTIONS(5069), + [anon_sym_BSLASHsmartcite] = ACTIONS(5069), + [anon_sym_BSLASHSmartcite] = ACTIONS(5069), + [anon_sym_BSLASHsupercite] = ACTIONS(5069), + [anon_sym_BSLASHautocite] = ACTIONS(5069), + [anon_sym_BSLASHAutocite] = ACTIONS(5069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHvolcite] = ACTIONS(5069), + [anon_sym_BSLASHVolcite] = ACTIONS(5069), + [anon_sym_BSLASHpvolcite] = ACTIONS(5069), + [anon_sym_BSLASHPvolcite] = ACTIONS(5069), + [anon_sym_BSLASHfvolcite] = ACTIONS(5069), + [anon_sym_BSLASHftvolcite] = ACTIONS(5069), + [anon_sym_BSLASHsvolcite] = ACTIONS(5069), + [anon_sym_BSLASHSvolcite] = ACTIONS(5069), + [anon_sym_BSLASHtvolcite] = ACTIONS(5069), + [anon_sym_BSLASHTvolcite] = ACTIONS(5069), + [anon_sym_BSLASHavolcite] = ACTIONS(5069), + [anon_sym_BSLASHAvolcite] = ACTIONS(5069), + [anon_sym_BSLASHnotecite] = ACTIONS(5069), + [anon_sym_BSLASHNotecite] = ACTIONS(5069), + [anon_sym_BSLASHpnotecite] = ACTIONS(5069), + [anon_sym_BSLASHPnotecite] = ACTIONS(5069), + [anon_sym_BSLASHfnotecite] = ACTIONS(5069), + [anon_sym_BSLASHlabel] = ACTIONS(5069), + [anon_sym_BSLASHref] = ACTIONS(5069), + [anon_sym_BSLASHeqref] = ACTIONS(5069), + [anon_sym_BSLASHvref] = ACTIONS(5069), + [anon_sym_BSLASHVref] = ACTIONS(5069), + [anon_sym_BSLASHautoref] = ACTIONS(5069), + [anon_sym_BSLASHpageref] = ACTIONS(5069), + [anon_sym_BSLASHcref] = ACTIONS(5069), + [anon_sym_BSLASHCref] = ACTIONS(5069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), + [anon_sym_BSLASHnamecref] = ACTIONS(5069), + [anon_sym_BSLASHnameCref] = ACTIONS(5069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), + [anon_sym_BSLASHlabelcref] = ACTIONS(5069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), + [anon_sym_BSLASHcrefrange] = ACTIONS(5069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCrefrange] = ACTIONS(5069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), + [anon_sym_BSLASHnewlabel] = ACTIONS(5069), + [anon_sym_BSLASHnewcommand] = ACTIONS(5069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), + [anon_sym_BSLASHdef] = ACTIONS(5069), + [anon_sym_BSLASHlet] = ACTIONS(5069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), + [anon_sym_BSLASHgls] = ACTIONS(5069), + [anon_sym_BSLASHGls] = ACTIONS(5069), + [anon_sym_BSLASHGLS] = ACTIONS(5069), + [anon_sym_BSLASHglspl] = ACTIONS(5069), + [anon_sym_BSLASHGlspl] = ACTIONS(5069), + [anon_sym_BSLASHGLSpl] = ACTIONS(5069), + [anon_sym_BSLASHglsdisp] = ACTIONS(5069), + [anon_sym_BSLASHglslink] = ACTIONS(5069), + [anon_sym_BSLASHglstext] = ACTIONS(5069), + [anon_sym_BSLASHGlstext] = ACTIONS(5069), + [anon_sym_BSLASHGLStext] = ACTIONS(5069), + [anon_sym_BSLASHglsfirst] = ACTIONS(5069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), + [anon_sym_BSLASHglsplural] = ACTIONS(5069), + [anon_sym_BSLASHGlsplural] = ACTIONS(5069), + [anon_sym_BSLASHGLSplural] = ACTIONS(5069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHglsname] = ACTIONS(5069), + [anon_sym_BSLASHGlsname] = ACTIONS(5069), + [anon_sym_BSLASHGLSname] = ACTIONS(5069), + [anon_sym_BSLASHglssymbol] = ACTIONS(5069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), + [anon_sym_BSLASHglsdesc] = ACTIONS(5069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), + [anon_sym_BSLASHglsuseri] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), + [anon_sym_BSLASHglsuserii] = ACTIONS(5069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), + [anon_sym_BSLASHglsuserv] = ACTIONS(5069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), + [anon_sym_BSLASHglsuservi] = ACTIONS(5069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), + [anon_sym_BSLASHnewacronym] = ACTIONS(5069), + [anon_sym_BSLASHacrshort] = ACTIONS(5069), + [anon_sym_BSLASHAcrshort] = ACTIONS(5069), + [anon_sym_BSLASHACRshort] = ACTIONS(5069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), + [anon_sym_BSLASHacrlong] = ACTIONS(5069), + [anon_sym_BSLASHAcrlong] = ACTIONS(5069), + [anon_sym_BSLASHACRlong] = ACTIONS(5069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), + [anon_sym_BSLASHacrfull] = ACTIONS(5069), + [anon_sym_BSLASHAcrfull] = ACTIONS(5069), + [anon_sym_BSLASHACRfull] = ACTIONS(5069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), + [anon_sym_BSLASHacs] = ACTIONS(5069), + [anon_sym_BSLASHAcs] = ACTIONS(5069), + [anon_sym_BSLASHacsp] = ACTIONS(5069), + [anon_sym_BSLASHAcsp] = ACTIONS(5069), + [anon_sym_BSLASHacl] = ACTIONS(5069), + [anon_sym_BSLASHAcl] = ACTIONS(5069), + [anon_sym_BSLASHaclp] = ACTIONS(5069), + [anon_sym_BSLASHAclp] = ACTIONS(5069), + [anon_sym_BSLASHacf] = ACTIONS(5069), + [anon_sym_BSLASHAcf] = ACTIONS(5069), + [anon_sym_BSLASHacfp] = ACTIONS(5069), + [anon_sym_BSLASHAcfp] = ACTIONS(5069), + [anon_sym_BSLASHac] = ACTIONS(5069), + [anon_sym_BSLASHAc] = ACTIONS(5069), + [anon_sym_BSLASHacp] = ACTIONS(5069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), + [anon_sym_BSLASHcolor] = ACTIONS(5069), + [anon_sym_BSLASHcolorbox] = ACTIONS(5069), + [anon_sym_BSLASHtextcolor] = ACTIONS(5069), + [anon_sym_BSLASHpagecolor] = ACTIONS(5069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), + [anon_sym_BSLASHtext] = ACTIONS(5069), + [anon_sym_BSLASHintertext] = ACTIONS(5069), + [anon_sym_shortintertext] = ACTIONS(5069), }, - [1046] = { - [sym_command_name] = ACTIONS(5321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5321), - [anon_sym_LPAREN] = ACTIONS(5319), - [anon_sym_RPAREN] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(5319), - [anon_sym_RBRACK] = ACTIONS(5319), - [anon_sym_COMMA] = ACTIONS(5319), - [anon_sym_EQ] = ACTIONS(5319), - [anon_sym_BSLASHpart] = ACTIONS(5321), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddpart] = ACTIONS(5321), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5319), - [anon_sym_BSLASHchapter] = ACTIONS(5321), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddchap] = ACTIONS(5321), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsection] = ACTIONS(5321), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddsec] = ACTIONS(5321), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubsection] = ACTIONS(5321), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5321), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHparagraph] = ACTIONS(5321), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5321), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5319), - [anon_sym_BSLASHitem] = ACTIONS(5321), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5319), - [anon_sym_LBRACE] = ACTIONS(5319), - [sym_word] = ACTIONS(5321), - [sym_placeholder] = ACTIONS(5319), - [anon_sym_PLUS] = ACTIONS(5321), - [anon_sym_DASH] = ACTIONS(5321), - [anon_sym_STAR] = ACTIONS(5321), - [anon_sym_SLASH] = ACTIONS(5321), - [anon_sym_CARET] = ACTIONS(5321), - [anon_sym__] = ACTIONS(5321), - [anon_sym_LT] = ACTIONS(5321), - [anon_sym_GT] = ACTIONS(5321), - [anon_sym_BANG] = ACTIONS(5321), - [anon_sym_PIPE] = ACTIONS(5321), - [anon_sym_COLON] = ACTIONS(5321), - [anon_sym_SQUOTE] = ACTIONS(5321), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5319), - [anon_sym_DOLLAR] = ACTIONS(5321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5319), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5319), - [anon_sym_BSLASHbegin] = ACTIONS(5321), - [anon_sym_BSLASHusepackage] = ACTIONS(5321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5321), - [anon_sym_BSLASHinclude] = ACTIONS(5321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5321), - [anon_sym_BSLASHinput] = ACTIONS(5321), - [anon_sym_BSLASHsubfile] = ACTIONS(5321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5321), - [anon_sym_BSLASHbibliography] = ACTIONS(5321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5321), - [anon_sym_BSLASHincludesvg] = ACTIONS(5321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5321), - [anon_sym_BSLASHimport] = ACTIONS(5321), - [anon_sym_BSLASHsubimport] = ACTIONS(5321), - [anon_sym_BSLASHinputfrom] = ACTIONS(5321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5321), - [anon_sym_BSLASHincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHcaption] = ACTIONS(5321), - [anon_sym_BSLASHcite] = ACTIONS(5321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCite] = ACTIONS(5321), - [anon_sym_BSLASHnocite] = ACTIONS(5321), - [anon_sym_BSLASHcitet] = ACTIONS(5321), - [anon_sym_BSLASHcitep] = ACTIONS(5321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteyear] = ACTIONS(5321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitedate] = ACTIONS(5321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteurl] = ACTIONS(5321), - [anon_sym_BSLASHfullcite] = ACTIONS(5321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5321), - [anon_sym_BSLASHcitealt] = ACTIONS(5321), - [anon_sym_BSLASHcitealp] = ACTIONS(5321), - [anon_sym_BSLASHcitetext] = ACTIONS(5321), - [anon_sym_BSLASHparencite] = ACTIONS(5321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHParencite] = ACTIONS(5321), - [anon_sym_BSLASHfootcite] = ACTIONS(5321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5321), - [anon_sym_BSLASHtextcite] = ACTIONS(5321), - [anon_sym_BSLASHTextcite] = ACTIONS(5321), - [anon_sym_BSLASHsmartcite] = ACTIONS(5321), - [anon_sym_BSLASHSmartcite] = ACTIONS(5321), - [anon_sym_BSLASHsupercite] = ACTIONS(5321), - [anon_sym_BSLASHautocite] = ACTIONS(5321), - [anon_sym_BSLASHAutocite] = ACTIONS(5321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHvolcite] = ACTIONS(5321), - [anon_sym_BSLASHVolcite] = ACTIONS(5321), - [anon_sym_BSLASHpvolcite] = ACTIONS(5321), - [anon_sym_BSLASHPvolcite] = ACTIONS(5321), - [anon_sym_BSLASHfvolcite] = ACTIONS(5321), - [anon_sym_BSLASHftvolcite] = ACTIONS(5321), - [anon_sym_BSLASHsvolcite] = ACTIONS(5321), - [anon_sym_BSLASHSvolcite] = ACTIONS(5321), - [anon_sym_BSLASHtvolcite] = ACTIONS(5321), - [anon_sym_BSLASHTvolcite] = ACTIONS(5321), - [anon_sym_BSLASHavolcite] = ACTIONS(5321), - [anon_sym_BSLASHAvolcite] = ACTIONS(5321), - [anon_sym_BSLASHnotecite] = ACTIONS(5321), - [anon_sym_BSLASHNotecite] = ACTIONS(5321), - [anon_sym_BSLASHpnotecite] = ACTIONS(5321), - [anon_sym_BSLASHPnotecite] = ACTIONS(5321), - [anon_sym_BSLASHfnotecite] = ACTIONS(5321), - [anon_sym_BSLASHlabel] = ACTIONS(5321), - [anon_sym_BSLASHref] = ACTIONS(5321), - [anon_sym_BSLASHeqref] = ACTIONS(5321), - [anon_sym_BSLASHvref] = ACTIONS(5321), - [anon_sym_BSLASHVref] = ACTIONS(5321), - [anon_sym_BSLASHautoref] = ACTIONS(5321), - [anon_sym_BSLASHpageref] = ACTIONS(5321), - [anon_sym_BSLASHcref] = ACTIONS(5321), - [anon_sym_BSLASHCref] = ACTIONS(5321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnameCref] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHlabelcref] = ACTIONS(5321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnewlabel] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5319), - [anon_sym_BSLASHdef] = ACTIONS(5321), - [anon_sym_BSLASHlet] = ACTIONS(5321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5321), - [anon_sym_BSLASHgls] = ACTIONS(5321), - [anon_sym_BSLASHGls] = ACTIONS(5321), - [anon_sym_BSLASHGLS] = ACTIONS(5321), - [anon_sym_BSLASHglspl] = ACTIONS(5321), - [anon_sym_BSLASHGlspl] = ACTIONS(5321), - [anon_sym_BSLASHGLSpl] = ACTIONS(5321), - [anon_sym_BSLASHglsdisp] = ACTIONS(5321), - [anon_sym_BSLASHglslink] = ACTIONS(5321), - [anon_sym_BSLASHglstext] = ACTIONS(5321), - [anon_sym_BSLASHGlstext] = ACTIONS(5321), - [anon_sym_BSLASHGLStext] = ACTIONS(5321), - [anon_sym_BSLASHglsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5321), - [anon_sym_BSLASHglsplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSplural] = ACTIONS(5321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHglsname] = ACTIONS(5321), - [anon_sym_BSLASHGlsname] = ACTIONS(5321), - [anon_sym_BSLASHGLSname] = ACTIONS(5321), - [anon_sym_BSLASHglssymbol] = ACTIONS(5321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5321), - [anon_sym_BSLASHglsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5321), - [anon_sym_BSLASHglsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5321), - [anon_sym_BSLASHglsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5321), - [anon_sym_BSLASHglsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5321), - [anon_sym_BSLASHglsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5321), - [anon_sym_BSLASHnewacronym] = ACTIONS(5321), - [anon_sym_BSLASHacrshort] = ACTIONS(5321), - [anon_sym_BSLASHAcrshort] = ACTIONS(5321), - [anon_sym_BSLASHACRshort] = ACTIONS(5321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5321), - [anon_sym_BSLASHacrlong] = ACTIONS(5321), - [anon_sym_BSLASHAcrlong] = ACTIONS(5321), - [anon_sym_BSLASHACRlong] = ACTIONS(5321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5321), - [anon_sym_BSLASHacrfull] = ACTIONS(5321), - [anon_sym_BSLASHAcrfull] = ACTIONS(5321), - [anon_sym_BSLASHACRfull] = ACTIONS(5321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5321), - [anon_sym_BSLASHacs] = ACTIONS(5321), - [anon_sym_BSLASHAcs] = ACTIONS(5321), - [anon_sym_BSLASHacsp] = ACTIONS(5321), - [anon_sym_BSLASHAcsp] = ACTIONS(5321), - [anon_sym_BSLASHacl] = ACTIONS(5321), - [anon_sym_BSLASHAcl] = ACTIONS(5321), - [anon_sym_BSLASHaclp] = ACTIONS(5321), - [anon_sym_BSLASHAclp] = ACTIONS(5321), - [anon_sym_BSLASHacf] = ACTIONS(5321), - [anon_sym_BSLASHAcf] = ACTIONS(5321), - [anon_sym_BSLASHacfp] = ACTIONS(5321), - [anon_sym_BSLASHAcfp] = ACTIONS(5321), - [anon_sym_BSLASHac] = ACTIONS(5321), - [anon_sym_BSLASHAc] = ACTIONS(5321), - [anon_sym_BSLASHacp] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5321), - [anon_sym_BSLASHcolor] = ACTIONS(5321), - [anon_sym_BSLASHcolorbox] = ACTIONS(5321), - [anon_sym_BSLASHtextcolor] = ACTIONS(5321), - [anon_sym_BSLASHpagecolor] = ACTIONS(5321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5321), + [890] = { + [sym_command_name] = ACTIONS(4883), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4883), + [anon_sym_LPAREN] = ACTIONS(4881), + [anon_sym_RPAREN] = ACTIONS(4881), + [anon_sym_LBRACK] = ACTIONS(4881), + [anon_sym_RBRACK] = ACTIONS(4881), + [anon_sym_COMMA] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(4881), + [anon_sym_BSLASHpart] = ACTIONS(4883), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddpart] = ACTIONS(4883), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4881), + [anon_sym_BSLASHchapter] = ACTIONS(4883), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddchap] = ACTIONS(4883), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsection] = ACTIONS(4883), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddsec] = ACTIONS(4883), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubsection] = ACTIONS(4883), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4883), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHparagraph] = ACTIONS(4883), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4883), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4881), + [anon_sym_BSLASHitem] = ACTIONS(4883), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4881), + [anon_sym_LBRACE] = ACTIONS(4881), + [sym_word] = ACTIONS(4883), + [sym_placeholder] = ACTIONS(4881), + [anon_sym_PLUS] = ACTIONS(4883), + [anon_sym_DASH] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_CARET] = ACTIONS(4883), + [anon_sym__] = ACTIONS(4883), + [anon_sym_LT] = ACTIONS(4883), + [anon_sym_GT] = ACTIONS(4883), + [anon_sym_BANG] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4883), + [anon_sym_COLON] = ACTIONS(4883), + [anon_sym_SQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4881), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4881), + [anon_sym_DOLLAR] = ACTIONS(4883), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4881), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4881), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4881), + [anon_sym_BSLASHbegin] = ACTIONS(4883), + [anon_sym_BSLASHusepackage] = ACTIONS(4883), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4883), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4883), + [anon_sym_BSLASHinclude] = ACTIONS(4883), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4883), + [anon_sym_BSLASHinput] = ACTIONS(4883), + [anon_sym_BSLASHsubfile] = ACTIONS(4883), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4883), + [anon_sym_BSLASHbibliography] = ACTIONS(4883), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4883), + [anon_sym_BSLASHincludesvg] = ACTIONS(4883), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4883), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4883), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4883), + [anon_sym_BSLASHimport] = ACTIONS(4883), + [anon_sym_BSLASHsubimport] = ACTIONS(4883), + [anon_sym_BSLASHinputfrom] = ACTIONS(4883), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4883), + [anon_sym_BSLASHincludefrom] = ACTIONS(4883), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4883), + [anon_sym_BSLASHcaption] = ACTIONS(4883), + [anon_sym_BSLASHcite] = ACTIONS(4883), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCite] = ACTIONS(4883), + [anon_sym_BSLASHnocite] = ACTIONS(4883), + [anon_sym_BSLASHcitet] = ACTIONS(4883), + [anon_sym_BSLASHcitep] = ACTIONS(4883), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteauthor] = ACTIONS(4883), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4883), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitetitle] = ACTIONS(4883), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteyear] = ACTIONS(4883), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitedate] = ACTIONS(4883), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteurl] = ACTIONS(4883), + [anon_sym_BSLASHfullcite] = ACTIONS(4883), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4883), + [anon_sym_BSLASHcitealt] = ACTIONS(4883), + [anon_sym_BSLASHcitealp] = ACTIONS(4883), + [anon_sym_BSLASHcitetext] = ACTIONS(4883), + [anon_sym_BSLASHparencite] = ACTIONS(4883), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHParencite] = ACTIONS(4883), + [anon_sym_BSLASHfootcite] = ACTIONS(4883), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4883), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4883), + [anon_sym_BSLASHtextcite] = ACTIONS(4883), + [anon_sym_BSLASHTextcite] = ACTIONS(4883), + [anon_sym_BSLASHsmartcite] = ACTIONS(4883), + [anon_sym_BSLASHSmartcite] = ACTIONS(4883), + [anon_sym_BSLASHsupercite] = ACTIONS(4883), + [anon_sym_BSLASHautocite] = ACTIONS(4883), + [anon_sym_BSLASHAutocite] = ACTIONS(4883), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHvolcite] = ACTIONS(4883), + [anon_sym_BSLASHVolcite] = ACTIONS(4883), + [anon_sym_BSLASHpvolcite] = ACTIONS(4883), + [anon_sym_BSLASHPvolcite] = ACTIONS(4883), + [anon_sym_BSLASHfvolcite] = ACTIONS(4883), + [anon_sym_BSLASHftvolcite] = ACTIONS(4883), + [anon_sym_BSLASHsvolcite] = ACTIONS(4883), + [anon_sym_BSLASHSvolcite] = ACTIONS(4883), + [anon_sym_BSLASHtvolcite] = ACTIONS(4883), + [anon_sym_BSLASHTvolcite] = ACTIONS(4883), + [anon_sym_BSLASHavolcite] = ACTIONS(4883), + [anon_sym_BSLASHAvolcite] = ACTIONS(4883), + [anon_sym_BSLASHnotecite] = ACTIONS(4883), + [anon_sym_BSLASHNotecite] = ACTIONS(4883), + [anon_sym_BSLASHpnotecite] = ACTIONS(4883), + [anon_sym_BSLASHPnotecite] = ACTIONS(4883), + [anon_sym_BSLASHfnotecite] = ACTIONS(4883), + [anon_sym_BSLASHlabel] = ACTIONS(4883), + [anon_sym_BSLASHref] = ACTIONS(4883), + [anon_sym_BSLASHeqref] = ACTIONS(4883), + [anon_sym_BSLASHvref] = ACTIONS(4883), + [anon_sym_BSLASHVref] = ACTIONS(4883), + [anon_sym_BSLASHautoref] = ACTIONS(4883), + [anon_sym_BSLASHpageref] = ACTIONS(4883), + [anon_sym_BSLASHcref] = ACTIONS(4883), + [anon_sym_BSLASHCref] = ACTIONS(4883), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4881), + [anon_sym_BSLASHnamecref] = ACTIONS(4883), + [anon_sym_BSLASHnameCref] = ACTIONS(4883), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4883), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4883), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4883), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4883), + [anon_sym_BSLASHlabelcref] = ACTIONS(4883), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4883), + [anon_sym_BSLASHcrefrange] = ACTIONS(4883), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCrefrange] = ACTIONS(4883), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4881), + [anon_sym_BSLASHnewlabel] = ACTIONS(4883), + [anon_sym_BSLASHnewcommand] = ACTIONS(4883), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4883), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4883), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4883), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4881), + [anon_sym_BSLASHdef] = ACTIONS(4883), + [anon_sym_BSLASHlet] = ACTIONS(4883), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4883), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4883), + [anon_sym_BSLASHgls] = ACTIONS(4883), + [anon_sym_BSLASHGls] = ACTIONS(4883), + [anon_sym_BSLASHGLS] = ACTIONS(4883), + [anon_sym_BSLASHglspl] = ACTIONS(4883), + [anon_sym_BSLASHGlspl] = ACTIONS(4883), + [anon_sym_BSLASHGLSpl] = ACTIONS(4883), + [anon_sym_BSLASHglsdisp] = ACTIONS(4883), + [anon_sym_BSLASHglslink] = ACTIONS(4883), + [anon_sym_BSLASHglstext] = ACTIONS(4883), + [anon_sym_BSLASHGlstext] = ACTIONS(4883), + [anon_sym_BSLASHGLStext] = ACTIONS(4883), + [anon_sym_BSLASHglsfirst] = ACTIONS(4883), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4883), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4883), + [anon_sym_BSLASHglsplural] = ACTIONS(4883), + [anon_sym_BSLASHGlsplural] = ACTIONS(4883), + [anon_sym_BSLASHGLSplural] = ACTIONS(4883), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHglsname] = ACTIONS(4883), + [anon_sym_BSLASHGlsname] = ACTIONS(4883), + [anon_sym_BSLASHGLSname] = ACTIONS(4883), + [anon_sym_BSLASHglssymbol] = ACTIONS(4883), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4883), + [anon_sym_BSLASHglsdesc] = ACTIONS(4883), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4883), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4883), + [anon_sym_BSLASHglsuseri] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4883), + [anon_sym_BSLASHglsuserii] = ACTIONS(4883), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4883), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4883), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4883), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4883), + [anon_sym_BSLASHglsuserv] = ACTIONS(4883), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4883), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4883), + [anon_sym_BSLASHglsuservi] = ACTIONS(4883), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4883), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4883), + [anon_sym_BSLASHnewacronym] = ACTIONS(4883), + [anon_sym_BSLASHacrshort] = ACTIONS(4883), + [anon_sym_BSLASHAcrshort] = ACTIONS(4883), + [anon_sym_BSLASHACRshort] = ACTIONS(4883), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4883), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4883), + [anon_sym_BSLASHacrlong] = ACTIONS(4883), + [anon_sym_BSLASHAcrlong] = ACTIONS(4883), + [anon_sym_BSLASHACRlong] = ACTIONS(4883), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4883), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4883), + [anon_sym_BSLASHacrfull] = ACTIONS(4883), + [anon_sym_BSLASHAcrfull] = ACTIONS(4883), + [anon_sym_BSLASHACRfull] = ACTIONS(4883), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4883), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4883), + [anon_sym_BSLASHacs] = ACTIONS(4883), + [anon_sym_BSLASHAcs] = ACTIONS(4883), + [anon_sym_BSLASHacsp] = ACTIONS(4883), + [anon_sym_BSLASHAcsp] = ACTIONS(4883), + [anon_sym_BSLASHacl] = ACTIONS(4883), + [anon_sym_BSLASHAcl] = ACTIONS(4883), + [anon_sym_BSLASHaclp] = ACTIONS(4883), + [anon_sym_BSLASHAclp] = ACTIONS(4883), + [anon_sym_BSLASHacf] = ACTIONS(4883), + [anon_sym_BSLASHAcf] = ACTIONS(4883), + [anon_sym_BSLASHacfp] = ACTIONS(4883), + [anon_sym_BSLASHAcfp] = ACTIONS(4883), + [anon_sym_BSLASHac] = ACTIONS(4883), + [anon_sym_BSLASHAc] = ACTIONS(4883), + [anon_sym_BSLASHacp] = ACTIONS(4883), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4883), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4883), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4883), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4883), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4883), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4883), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4883), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4883), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4883), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4883), + [anon_sym_BSLASHcolor] = ACTIONS(4883), + [anon_sym_BSLASHcolorbox] = ACTIONS(4883), + [anon_sym_BSLASHtextcolor] = ACTIONS(4883), + [anon_sym_BSLASHpagecolor] = ACTIONS(4883), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4883), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4883), + [anon_sym_BSLASHtext] = ACTIONS(4883), + [anon_sym_BSLASHintertext] = ACTIONS(4883), + [anon_sym_shortintertext] = ACTIONS(4883), }, - [1047] = { - [sym_command_name] = ACTIONS(5305), + [891] = { + [sym_command_name] = ACTIONS(5061), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_BSLASHpart] = ACTIONS(5305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddpart] = ACTIONS(5305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHchapter] = ACTIONS(5305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddchap] = ACTIONS(5305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsection] = ACTIONS(5305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddsec] = ACTIONS(5305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHparagraph] = ACTIONS(5305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHitem] = ACTIONS(5305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5303), - [anon_sym_BSLASHbegin] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), - }, - [1048] = { - [sym_command_name] = ACTIONS(5321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5321), - [anon_sym_LPAREN] = ACTIONS(5319), - [anon_sym_RPAREN] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(5319), - [anon_sym_RBRACK] = ACTIONS(5319), - [anon_sym_COMMA] = ACTIONS(5319), - [anon_sym_EQ] = ACTIONS(5319), - [anon_sym_BSLASHpart] = ACTIONS(5321), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddpart] = ACTIONS(5321), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5319), - [anon_sym_BSLASHchapter] = ACTIONS(5321), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddchap] = ACTIONS(5321), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsection] = ACTIONS(5321), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddsec] = ACTIONS(5321), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubsection] = ACTIONS(5321), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5321), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHparagraph] = ACTIONS(5321), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5321), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5319), - [anon_sym_BSLASHitem] = ACTIONS(5321), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5319), - [anon_sym_LBRACE] = ACTIONS(5319), - [sym_word] = ACTIONS(5321), - [sym_placeholder] = ACTIONS(5319), - [anon_sym_PLUS] = ACTIONS(5321), - [anon_sym_DASH] = ACTIONS(5321), - [anon_sym_STAR] = ACTIONS(5321), - [anon_sym_SLASH] = ACTIONS(5321), - [anon_sym_CARET] = ACTIONS(5321), - [anon_sym__] = ACTIONS(5321), - [anon_sym_LT] = ACTIONS(5321), - [anon_sym_GT] = ACTIONS(5321), - [anon_sym_BANG] = ACTIONS(5321), - [anon_sym_PIPE] = ACTIONS(5321), - [anon_sym_COLON] = ACTIONS(5321), - [anon_sym_SQUOTE] = ACTIONS(5321), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5319), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5319), - [anon_sym_DOLLAR] = ACTIONS(5321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5319), - [anon_sym_BSLASHbegin] = ACTIONS(5321), - [anon_sym_BSLASHusepackage] = ACTIONS(5321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5321), - [anon_sym_BSLASHinclude] = ACTIONS(5321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5321), - [anon_sym_BSLASHinput] = ACTIONS(5321), - [anon_sym_BSLASHsubfile] = ACTIONS(5321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5321), - [anon_sym_BSLASHbibliography] = ACTIONS(5321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5321), - [anon_sym_BSLASHincludesvg] = ACTIONS(5321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5321), - [anon_sym_BSLASHimport] = ACTIONS(5321), - [anon_sym_BSLASHsubimport] = ACTIONS(5321), - [anon_sym_BSLASHinputfrom] = ACTIONS(5321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5321), - [anon_sym_BSLASHincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHcaption] = ACTIONS(5321), - [anon_sym_BSLASHcite] = ACTIONS(5321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCite] = ACTIONS(5321), - [anon_sym_BSLASHnocite] = ACTIONS(5321), - [anon_sym_BSLASHcitet] = ACTIONS(5321), - [anon_sym_BSLASHcitep] = ACTIONS(5321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteyear] = ACTIONS(5321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitedate] = ACTIONS(5321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteurl] = ACTIONS(5321), - [anon_sym_BSLASHfullcite] = ACTIONS(5321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5321), - [anon_sym_BSLASHcitealt] = ACTIONS(5321), - [anon_sym_BSLASHcitealp] = ACTIONS(5321), - [anon_sym_BSLASHcitetext] = ACTIONS(5321), - [anon_sym_BSLASHparencite] = ACTIONS(5321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHParencite] = ACTIONS(5321), - [anon_sym_BSLASHfootcite] = ACTIONS(5321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5321), - [anon_sym_BSLASHtextcite] = ACTIONS(5321), - [anon_sym_BSLASHTextcite] = ACTIONS(5321), - [anon_sym_BSLASHsmartcite] = ACTIONS(5321), - [anon_sym_BSLASHSmartcite] = ACTIONS(5321), - [anon_sym_BSLASHsupercite] = ACTIONS(5321), - [anon_sym_BSLASHautocite] = ACTIONS(5321), - [anon_sym_BSLASHAutocite] = ACTIONS(5321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHvolcite] = ACTIONS(5321), - [anon_sym_BSLASHVolcite] = ACTIONS(5321), - [anon_sym_BSLASHpvolcite] = ACTIONS(5321), - [anon_sym_BSLASHPvolcite] = ACTIONS(5321), - [anon_sym_BSLASHfvolcite] = ACTIONS(5321), - [anon_sym_BSLASHftvolcite] = ACTIONS(5321), - [anon_sym_BSLASHsvolcite] = ACTIONS(5321), - [anon_sym_BSLASHSvolcite] = ACTIONS(5321), - [anon_sym_BSLASHtvolcite] = ACTIONS(5321), - [anon_sym_BSLASHTvolcite] = ACTIONS(5321), - [anon_sym_BSLASHavolcite] = ACTIONS(5321), - [anon_sym_BSLASHAvolcite] = ACTIONS(5321), - [anon_sym_BSLASHnotecite] = ACTIONS(5321), - [anon_sym_BSLASHNotecite] = ACTIONS(5321), - [anon_sym_BSLASHpnotecite] = ACTIONS(5321), - [anon_sym_BSLASHPnotecite] = ACTIONS(5321), - [anon_sym_BSLASHfnotecite] = ACTIONS(5321), - [anon_sym_BSLASHlabel] = ACTIONS(5321), - [anon_sym_BSLASHref] = ACTIONS(5321), - [anon_sym_BSLASHeqref] = ACTIONS(5321), - [anon_sym_BSLASHvref] = ACTIONS(5321), - [anon_sym_BSLASHVref] = ACTIONS(5321), - [anon_sym_BSLASHautoref] = ACTIONS(5321), - [anon_sym_BSLASHpageref] = ACTIONS(5321), - [anon_sym_BSLASHcref] = ACTIONS(5321), - [anon_sym_BSLASHCref] = ACTIONS(5321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnameCref] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHlabelcref] = ACTIONS(5321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnewlabel] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5319), - [anon_sym_BSLASHdef] = ACTIONS(5321), - [anon_sym_BSLASHlet] = ACTIONS(5321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5321), - [anon_sym_BSLASHgls] = ACTIONS(5321), - [anon_sym_BSLASHGls] = ACTIONS(5321), - [anon_sym_BSLASHGLS] = ACTIONS(5321), - [anon_sym_BSLASHglspl] = ACTIONS(5321), - [anon_sym_BSLASHGlspl] = ACTIONS(5321), - [anon_sym_BSLASHGLSpl] = ACTIONS(5321), - [anon_sym_BSLASHglsdisp] = ACTIONS(5321), - [anon_sym_BSLASHglslink] = ACTIONS(5321), - [anon_sym_BSLASHglstext] = ACTIONS(5321), - [anon_sym_BSLASHGlstext] = ACTIONS(5321), - [anon_sym_BSLASHGLStext] = ACTIONS(5321), - [anon_sym_BSLASHglsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5321), - [anon_sym_BSLASHglsplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSplural] = ACTIONS(5321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHglsname] = ACTIONS(5321), - [anon_sym_BSLASHGlsname] = ACTIONS(5321), - [anon_sym_BSLASHGLSname] = ACTIONS(5321), - [anon_sym_BSLASHglssymbol] = ACTIONS(5321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5321), - [anon_sym_BSLASHglsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5321), - [anon_sym_BSLASHglsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5321), - [anon_sym_BSLASHglsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5321), - [anon_sym_BSLASHglsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5321), - [anon_sym_BSLASHglsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5321), - [anon_sym_BSLASHnewacronym] = ACTIONS(5321), - [anon_sym_BSLASHacrshort] = ACTIONS(5321), - [anon_sym_BSLASHAcrshort] = ACTIONS(5321), - [anon_sym_BSLASHACRshort] = ACTIONS(5321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5321), - [anon_sym_BSLASHacrlong] = ACTIONS(5321), - [anon_sym_BSLASHAcrlong] = ACTIONS(5321), - [anon_sym_BSLASHACRlong] = ACTIONS(5321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5321), - [anon_sym_BSLASHacrfull] = ACTIONS(5321), - [anon_sym_BSLASHAcrfull] = ACTIONS(5321), - [anon_sym_BSLASHACRfull] = ACTIONS(5321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5321), - [anon_sym_BSLASHacs] = ACTIONS(5321), - [anon_sym_BSLASHAcs] = ACTIONS(5321), - [anon_sym_BSLASHacsp] = ACTIONS(5321), - [anon_sym_BSLASHAcsp] = ACTIONS(5321), - [anon_sym_BSLASHacl] = ACTIONS(5321), - [anon_sym_BSLASHAcl] = ACTIONS(5321), - [anon_sym_BSLASHaclp] = ACTIONS(5321), - [anon_sym_BSLASHAclp] = ACTIONS(5321), - [anon_sym_BSLASHacf] = ACTIONS(5321), - [anon_sym_BSLASHAcf] = ACTIONS(5321), - [anon_sym_BSLASHacfp] = ACTIONS(5321), - [anon_sym_BSLASHAcfp] = ACTIONS(5321), - [anon_sym_BSLASHac] = ACTIONS(5321), - [anon_sym_BSLASHAc] = ACTIONS(5321), - [anon_sym_BSLASHacp] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5321), - [anon_sym_BSLASHcolor] = ACTIONS(5321), - [anon_sym_BSLASHcolorbox] = ACTIONS(5321), - [anon_sym_BSLASHtextcolor] = ACTIONS(5321), - [anon_sym_BSLASHpagecolor] = ACTIONS(5321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5321), - }, - [1049] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_BSLASHpart] = ACTIONS(5299), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddpart] = ACTIONS(5299), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHchapter] = ACTIONS(5299), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddchap] = ACTIONS(5299), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsection] = ACTIONS(5299), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddsec] = ACTIONS(5299), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHparagraph] = ACTIONS(5299), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHitem] = ACTIONS(5299), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5297), - [anon_sym_BSLASHbegin] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), - }, - [1050] = { - [sym_command_name] = ACTIONS(5295), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5295), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_RPAREN] = ACTIONS(5293), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5293), - [anon_sym_COMMA] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_BSLASHpart] = ACTIONS(5295), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddpart] = ACTIONS(5295), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHchapter] = ACTIONS(5295), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddchap] = ACTIONS(5295), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsection] = ACTIONS(5295), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddsec] = ACTIONS(5295), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHparagraph] = ACTIONS(5295), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHitem] = ACTIONS(5295), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(5293), - [sym_word] = ACTIONS(5295), - [sym_placeholder] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(5295), - [anon_sym_STAR] = ACTIONS(5295), - [anon_sym_SLASH] = ACTIONS(5295), - [anon_sym_CARET] = ACTIONS(5295), - [anon_sym__] = ACTIONS(5295), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(5295), - [anon_sym_BANG] = ACTIONS(5295), - [anon_sym_PIPE] = ACTIONS(5295), - [anon_sym_COLON] = ACTIONS(5295), - [anon_sym_SQUOTE] = ACTIONS(5295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5293), - [anon_sym_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5293), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5293), - [anon_sym_BSLASHbegin] = ACTIONS(5295), - [anon_sym_BSLASHusepackage] = ACTIONS(5295), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5295), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5295), - [anon_sym_BSLASHinclude] = ACTIONS(5295), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5295), - [anon_sym_BSLASHinput] = ACTIONS(5295), - [anon_sym_BSLASHsubfile] = ACTIONS(5295), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5295), - [anon_sym_BSLASHbibliography] = ACTIONS(5295), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5295), - [anon_sym_BSLASHincludesvg] = ACTIONS(5295), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5295), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5295), - [anon_sym_BSLASHimport] = ACTIONS(5295), - [anon_sym_BSLASHsubimport] = ACTIONS(5295), - [anon_sym_BSLASHinputfrom] = ACTIONS(5295), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5295), - [anon_sym_BSLASHincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHcaption] = ACTIONS(5295), - [anon_sym_BSLASHcite] = ACTIONS(5295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCite] = ACTIONS(5295), - [anon_sym_BSLASHnocite] = ACTIONS(5295), - [anon_sym_BSLASHcitet] = ACTIONS(5295), - [anon_sym_BSLASHcitep] = ACTIONS(5295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteauthor] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitetitle] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteyear] = ACTIONS(5295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitedate] = ACTIONS(5295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteurl] = ACTIONS(5295), - [anon_sym_BSLASHfullcite] = ACTIONS(5295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5295), - [anon_sym_BSLASHcitealt] = ACTIONS(5295), - [anon_sym_BSLASHcitealp] = ACTIONS(5295), - [anon_sym_BSLASHcitetext] = ACTIONS(5295), - [anon_sym_BSLASHparencite] = ACTIONS(5295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHParencite] = ACTIONS(5295), - [anon_sym_BSLASHfootcite] = ACTIONS(5295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5295), - [anon_sym_BSLASHtextcite] = ACTIONS(5295), - [anon_sym_BSLASHTextcite] = ACTIONS(5295), - [anon_sym_BSLASHsmartcite] = ACTIONS(5295), - [anon_sym_BSLASHSmartcite] = ACTIONS(5295), - [anon_sym_BSLASHsupercite] = ACTIONS(5295), - [anon_sym_BSLASHautocite] = ACTIONS(5295), - [anon_sym_BSLASHAutocite] = ACTIONS(5295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHvolcite] = ACTIONS(5295), - [anon_sym_BSLASHVolcite] = ACTIONS(5295), - [anon_sym_BSLASHpvolcite] = ACTIONS(5295), - [anon_sym_BSLASHPvolcite] = ACTIONS(5295), - [anon_sym_BSLASHfvolcite] = ACTIONS(5295), - [anon_sym_BSLASHftvolcite] = ACTIONS(5295), - [anon_sym_BSLASHsvolcite] = ACTIONS(5295), - [anon_sym_BSLASHSvolcite] = ACTIONS(5295), - [anon_sym_BSLASHtvolcite] = ACTIONS(5295), - [anon_sym_BSLASHTvolcite] = ACTIONS(5295), - [anon_sym_BSLASHavolcite] = ACTIONS(5295), - [anon_sym_BSLASHAvolcite] = ACTIONS(5295), - [anon_sym_BSLASHnotecite] = ACTIONS(5295), - [anon_sym_BSLASHNotecite] = ACTIONS(5295), - [anon_sym_BSLASHpnotecite] = ACTIONS(5295), - [anon_sym_BSLASHPnotecite] = ACTIONS(5295), - [anon_sym_BSLASHfnotecite] = ACTIONS(5295), - [anon_sym_BSLASHlabel] = ACTIONS(5295), - [anon_sym_BSLASHref] = ACTIONS(5295), - [anon_sym_BSLASHeqref] = ACTIONS(5295), - [anon_sym_BSLASHvref] = ACTIONS(5295), - [anon_sym_BSLASHVref] = ACTIONS(5295), - [anon_sym_BSLASHautoref] = ACTIONS(5295), - [anon_sym_BSLASHpageref] = ACTIONS(5295), - [anon_sym_BSLASHcref] = ACTIONS(5295), - [anon_sym_BSLASHCref] = ACTIONS(5295), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnameCref] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHlabelcref] = ACTIONS(5295), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCrefrange] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnewlabel] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdef] = ACTIONS(5295), - [anon_sym_BSLASHlet] = ACTIONS(5295), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5295), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5295), - [anon_sym_BSLASHgls] = ACTIONS(5295), - [anon_sym_BSLASHGls] = ACTIONS(5295), - [anon_sym_BSLASHGLS] = ACTIONS(5295), - [anon_sym_BSLASHglspl] = ACTIONS(5295), - [anon_sym_BSLASHGlspl] = ACTIONS(5295), - [anon_sym_BSLASHGLSpl] = ACTIONS(5295), - [anon_sym_BSLASHglsdisp] = ACTIONS(5295), - [anon_sym_BSLASHglslink] = ACTIONS(5295), - [anon_sym_BSLASHglstext] = ACTIONS(5295), - [anon_sym_BSLASHGlstext] = ACTIONS(5295), - [anon_sym_BSLASHGLStext] = ACTIONS(5295), - [anon_sym_BSLASHglsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5295), - [anon_sym_BSLASHglsplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSplural] = ACTIONS(5295), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHglsname] = ACTIONS(5295), - [anon_sym_BSLASHGlsname] = ACTIONS(5295), - [anon_sym_BSLASHGLSname] = ACTIONS(5295), - [anon_sym_BSLASHglssymbol] = ACTIONS(5295), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5295), - [anon_sym_BSLASHglsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5295), - [anon_sym_BSLASHglsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5295), - [anon_sym_BSLASHglsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5295), - [anon_sym_BSLASHglsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5295), - [anon_sym_BSLASHglsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5295), - [anon_sym_BSLASHnewacronym] = ACTIONS(5295), - [anon_sym_BSLASHacrshort] = ACTIONS(5295), - [anon_sym_BSLASHAcrshort] = ACTIONS(5295), - [anon_sym_BSLASHACRshort] = ACTIONS(5295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5295), - [anon_sym_BSLASHacrlong] = ACTIONS(5295), - [anon_sym_BSLASHAcrlong] = ACTIONS(5295), - [anon_sym_BSLASHACRlong] = ACTIONS(5295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5295), - [anon_sym_BSLASHacrfull] = ACTIONS(5295), - [anon_sym_BSLASHAcrfull] = ACTIONS(5295), - [anon_sym_BSLASHACRfull] = ACTIONS(5295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5295), - [anon_sym_BSLASHacs] = ACTIONS(5295), - [anon_sym_BSLASHAcs] = ACTIONS(5295), - [anon_sym_BSLASHacsp] = ACTIONS(5295), - [anon_sym_BSLASHAcsp] = ACTIONS(5295), - [anon_sym_BSLASHacl] = ACTIONS(5295), - [anon_sym_BSLASHAcl] = ACTIONS(5295), - [anon_sym_BSLASHaclp] = ACTIONS(5295), - [anon_sym_BSLASHAclp] = ACTIONS(5295), - [anon_sym_BSLASHacf] = ACTIONS(5295), - [anon_sym_BSLASHAcf] = ACTIONS(5295), - [anon_sym_BSLASHacfp] = ACTIONS(5295), - [anon_sym_BSLASHAcfp] = ACTIONS(5295), - [anon_sym_BSLASHac] = ACTIONS(5295), - [anon_sym_BSLASHAc] = ACTIONS(5295), - [anon_sym_BSLASHacp] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5295), - [anon_sym_BSLASHcolor] = ACTIONS(5295), - [anon_sym_BSLASHcolorbox] = ACTIONS(5295), - [anon_sym_BSLASHtextcolor] = ACTIONS(5295), - [anon_sym_BSLASHpagecolor] = ACTIONS(5295), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5295), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5295), - }, - [1051] = { - [sym_command_name] = ACTIONS(5291), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5291), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_RPAREN] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_BSLASHpart] = ACTIONS(5291), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddpart] = ACTIONS(5291), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHchapter] = ACTIONS(5291), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddchap] = ACTIONS(5291), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsection] = ACTIONS(5291), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddsec] = ACTIONS(5291), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHparagraph] = ACTIONS(5291), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5291), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHitem] = ACTIONS(5291), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5289), - [sym_word] = ACTIONS(5291), - [sym_placeholder] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym__] = ACTIONS(5291), - [anon_sym_LT] = ACTIONS(5291), - [anon_sym_GT] = ACTIONS(5291), - [anon_sym_BANG] = ACTIONS(5291), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5291), - [anon_sym_SQUOTE] = ACTIONS(5291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5289), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5289), - [anon_sym_BSLASHbegin] = ACTIONS(5291), - [anon_sym_BSLASHusepackage] = ACTIONS(5291), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5291), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5291), - [anon_sym_BSLASHinclude] = ACTIONS(5291), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5291), - [anon_sym_BSLASHinput] = ACTIONS(5291), - [anon_sym_BSLASHsubfile] = ACTIONS(5291), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5291), - [anon_sym_BSLASHbibliography] = ACTIONS(5291), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5291), - [anon_sym_BSLASHincludesvg] = ACTIONS(5291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5291), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5291), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5291), - [anon_sym_BSLASHimport] = ACTIONS(5291), - [anon_sym_BSLASHsubimport] = ACTIONS(5291), - [anon_sym_BSLASHinputfrom] = ACTIONS(5291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5291), - [anon_sym_BSLASHincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHcaption] = ACTIONS(5291), - [anon_sym_BSLASHcite] = ACTIONS(5291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCite] = ACTIONS(5291), - [anon_sym_BSLASHnocite] = ACTIONS(5291), - [anon_sym_BSLASHcitet] = ACTIONS(5291), - [anon_sym_BSLASHcitep] = ACTIONS(5291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor] = ACTIONS(5291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle] = ACTIONS(5291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteyear] = ACTIONS(5291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitedate] = ACTIONS(5291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteurl] = ACTIONS(5291), - [anon_sym_BSLASHfullcite] = ACTIONS(5291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5291), - [anon_sym_BSLASHcitealt] = ACTIONS(5291), - [anon_sym_BSLASHcitealp] = ACTIONS(5291), - [anon_sym_BSLASHcitetext] = ACTIONS(5291), - [anon_sym_BSLASHparencite] = ACTIONS(5291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHParencite] = ACTIONS(5291), - [anon_sym_BSLASHfootcite] = ACTIONS(5291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5291), - [anon_sym_BSLASHtextcite] = ACTIONS(5291), - [anon_sym_BSLASHTextcite] = ACTIONS(5291), - [anon_sym_BSLASHsmartcite] = ACTIONS(5291), - [anon_sym_BSLASHSmartcite] = ACTIONS(5291), - [anon_sym_BSLASHsupercite] = ACTIONS(5291), - [anon_sym_BSLASHautocite] = ACTIONS(5291), - [anon_sym_BSLASHAutocite] = ACTIONS(5291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHvolcite] = ACTIONS(5291), - [anon_sym_BSLASHVolcite] = ACTIONS(5291), - [anon_sym_BSLASHpvolcite] = ACTIONS(5291), - [anon_sym_BSLASHPvolcite] = ACTIONS(5291), - [anon_sym_BSLASHfvolcite] = ACTIONS(5291), - [anon_sym_BSLASHftvolcite] = ACTIONS(5291), - [anon_sym_BSLASHsvolcite] = ACTIONS(5291), - [anon_sym_BSLASHSvolcite] = ACTIONS(5291), - [anon_sym_BSLASHtvolcite] = ACTIONS(5291), - [anon_sym_BSLASHTvolcite] = ACTIONS(5291), - [anon_sym_BSLASHavolcite] = ACTIONS(5291), - [anon_sym_BSLASHAvolcite] = ACTIONS(5291), - [anon_sym_BSLASHnotecite] = ACTIONS(5291), - [anon_sym_BSLASHNotecite] = ACTIONS(5291), - [anon_sym_BSLASHpnotecite] = ACTIONS(5291), - [anon_sym_BSLASHPnotecite] = ACTIONS(5291), - [anon_sym_BSLASHfnotecite] = ACTIONS(5291), - [anon_sym_BSLASHlabel] = ACTIONS(5291), - [anon_sym_BSLASHref] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5291), - [anon_sym_BSLASHvref] = ACTIONS(5291), - [anon_sym_BSLASHVref] = ACTIONS(5291), - [anon_sym_BSLASHautoref] = ACTIONS(5291), - [anon_sym_BSLASHpageref] = ACTIONS(5291), - [anon_sym_BSLASHcref] = ACTIONS(5291), - [anon_sym_BSLASHCref] = ACTIONS(5291), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnameCref] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHlabelcref] = ACTIONS(5291), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange] = ACTIONS(5291), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnewlabel] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5291), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5291), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5291), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdef] = ACTIONS(5291), - [anon_sym_BSLASHlet] = ACTIONS(5291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5291), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5291), - [anon_sym_BSLASHgls] = ACTIONS(5291), - [anon_sym_BSLASHGls] = ACTIONS(5291), - [anon_sym_BSLASHGLS] = ACTIONS(5291), - [anon_sym_BSLASHglspl] = ACTIONS(5291), - [anon_sym_BSLASHGlspl] = ACTIONS(5291), - [anon_sym_BSLASHGLSpl] = ACTIONS(5291), - [anon_sym_BSLASHglsdisp] = ACTIONS(5291), - [anon_sym_BSLASHglslink] = ACTIONS(5291), - [anon_sym_BSLASHglstext] = ACTIONS(5291), - [anon_sym_BSLASHGlstext] = ACTIONS(5291), - [anon_sym_BSLASHGLStext] = ACTIONS(5291), - [anon_sym_BSLASHglsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5291), - [anon_sym_BSLASHglsplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSplural] = ACTIONS(5291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHglsname] = ACTIONS(5291), - [anon_sym_BSLASHGlsname] = ACTIONS(5291), - [anon_sym_BSLASHGLSname] = ACTIONS(5291), - [anon_sym_BSLASHglssymbol] = ACTIONS(5291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5291), - [anon_sym_BSLASHglsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5291), - [anon_sym_BSLASHglsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5291), - [anon_sym_BSLASHglsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5291), - [anon_sym_BSLASHglsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5291), - [anon_sym_BSLASHglsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5291), - [anon_sym_BSLASHnewacronym] = ACTIONS(5291), - [anon_sym_BSLASHacrshort] = ACTIONS(5291), - [anon_sym_BSLASHAcrshort] = ACTIONS(5291), - [anon_sym_BSLASHACRshort] = ACTIONS(5291), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5291), - [anon_sym_BSLASHacrlong] = ACTIONS(5291), - [anon_sym_BSLASHAcrlong] = ACTIONS(5291), - [anon_sym_BSLASHACRlong] = ACTIONS(5291), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5291), - [anon_sym_BSLASHacrfull] = ACTIONS(5291), - [anon_sym_BSLASHAcrfull] = ACTIONS(5291), - [anon_sym_BSLASHACRfull] = ACTIONS(5291), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5291), - [anon_sym_BSLASHacs] = ACTIONS(5291), - [anon_sym_BSLASHAcs] = ACTIONS(5291), - [anon_sym_BSLASHacsp] = ACTIONS(5291), - [anon_sym_BSLASHAcsp] = ACTIONS(5291), - [anon_sym_BSLASHacl] = ACTIONS(5291), - [anon_sym_BSLASHAcl] = ACTIONS(5291), - [anon_sym_BSLASHaclp] = ACTIONS(5291), - [anon_sym_BSLASHAclp] = ACTIONS(5291), - [anon_sym_BSLASHacf] = ACTIONS(5291), - [anon_sym_BSLASHAcf] = ACTIONS(5291), - [anon_sym_BSLASHacfp] = ACTIONS(5291), - [anon_sym_BSLASHAcfp] = ACTIONS(5291), - [anon_sym_BSLASHac] = ACTIONS(5291), - [anon_sym_BSLASHAc] = ACTIONS(5291), - [anon_sym_BSLASHacp] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5291), - [anon_sym_BSLASHcolor] = ACTIONS(5291), - [anon_sym_BSLASHcolorbox] = ACTIONS(5291), - [anon_sym_BSLASHtextcolor] = ACTIONS(5291), - [anon_sym_BSLASHpagecolor] = ACTIONS(5291), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5291), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5291), - }, - [1052] = { - [sym_command_name] = ACTIONS(5287), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_RPAREN] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_RBRACK] = ACTIONS(5285), - [anon_sym_COMMA] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_BSLASHpart] = ACTIONS(5287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddpart] = ACTIONS(5287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHchapter] = ACTIONS(5287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddchap] = ACTIONS(5287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsection] = ACTIONS(5287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddsec] = ACTIONS(5287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHparagraph] = ACTIONS(5287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHitem] = ACTIONS(5287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(5285), - [sym_word] = ACTIONS(5287), - [sym_placeholder] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_SLASH] = ACTIONS(5287), - [anon_sym_CARET] = ACTIONS(5287), - [anon_sym__] = ACTIONS(5287), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_GT] = ACTIONS(5287), - [anon_sym_BANG] = ACTIONS(5287), - [anon_sym_PIPE] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_SQUOTE] = ACTIONS(5287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5285), - [anon_sym_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5285), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5285), - [anon_sym_BSLASHbegin] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5287), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5287), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5287), - [anon_sym_BSLASHinclude] = ACTIONS(5287), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5287), - [anon_sym_BSLASHinput] = ACTIONS(5287), - [anon_sym_BSLASHsubfile] = ACTIONS(5287), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5287), - [anon_sym_BSLASHbibliography] = ACTIONS(5287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5287), - [anon_sym_BSLASHincludesvg] = ACTIONS(5287), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5287), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5287), - [anon_sym_BSLASHimport] = ACTIONS(5287), - [anon_sym_BSLASHsubimport] = ACTIONS(5287), - [anon_sym_BSLASHinputfrom] = ACTIONS(5287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5287), - [anon_sym_BSLASHincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHcaption] = ACTIONS(5287), - [anon_sym_BSLASHcite] = ACTIONS(5287), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCite] = ACTIONS(5287), - [anon_sym_BSLASHnocite] = ACTIONS(5287), - [anon_sym_BSLASHcitet] = ACTIONS(5287), - [anon_sym_BSLASHcitep] = ACTIONS(5287), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteyear] = ACTIONS(5287), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitedate] = ACTIONS(5287), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteurl] = ACTIONS(5287), - [anon_sym_BSLASHfullcite] = ACTIONS(5287), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5287), - [anon_sym_BSLASHcitealt] = ACTIONS(5287), - [anon_sym_BSLASHcitealp] = ACTIONS(5287), - [anon_sym_BSLASHcitetext] = ACTIONS(5287), - [anon_sym_BSLASHparencite] = ACTIONS(5287), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHParencite] = ACTIONS(5287), - [anon_sym_BSLASHfootcite] = ACTIONS(5287), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5287), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5287), - [anon_sym_BSLASHtextcite] = ACTIONS(5287), - [anon_sym_BSLASHTextcite] = ACTIONS(5287), - [anon_sym_BSLASHsmartcite] = ACTIONS(5287), - [anon_sym_BSLASHSmartcite] = ACTIONS(5287), - [anon_sym_BSLASHsupercite] = ACTIONS(5287), - [anon_sym_BSLASHautocite] = ACTIONS(5287), - [anon_sym_BSLASHAutocite] = ACTIONS(5287), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHvolcite] = ACTIONS(5287), - [anon_sym_BSLASHVolcite] = ACTIONS(5287), - [anon_sym_BSLASHpvolcite] = ACTIONS(5287), - [anon_sym_BSLASHPvolcite] = ACTIONS(5287), - [anon_sym_BSLASHfvolcite] = ACTIONS(5287), - [anon_sym_BSLASHftvolcite] = ACTIONS(5287), - [anon_sym_BSLASHsvolcite] = ACTIONS(5287), - [anon_sym_BSLASHSvolcite] = ACTIONS(5287), - [anon_sym_BSLASHtvolcite] = ACTIONS(5287), - [anon_sym_BSLASHTvolcite] = ACTIONS(5287), - [anon_sym_BSLASHavolcite] = ACTIONS(5287), - [anon_sym_BSLASHAvolcite] = ACTIONS(5287), - [anon_sym_BSLASHnotecite] = ACTIONS(5287), - [anon_sym_BSLASHNotecite] = ACTIONS(5287), - [anon_sym_BSLASHpnotecite] = ACTIONS(5287), - [anon_sym_BSLASHPnotecite] = ACTIONS(5287), - [anon_sym_BSLASHfnotecite] = ACTIONS(5287), - [anon_sym_BSLASHlabel] = ACTIONS(5287), - [anon_sym_BSLASHref] = ACTIONS(5287), - [anon_sym_BSLASHeqref] = ACTIONS(5287), - [anon_sym_BSLASHvref] = ACTIONS(5287), - [anon_sym_BSLASHVref] = ACTIONS(5287), - [anon_sym_BSLASHautoref] = ACTIONS(5287), - [anon_sym_BSLASHpageref] = ACTIONS(5287), - [anon_sym_BSLASHcref] = ACTIONS(5287), - [anon_sym_BSLASHCref] = ACTIONS(5287), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnameCref] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHlabelcref] = ACTIONS(5287), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnewlabel] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdef] = ACTIONS(5287), - [anon_sym_BSLASHlet] = ACTIONS(5287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5287), - [anon_sym_BSLASHgls] = ACTIONS(5287), - [anon_sym_BSLASHGls] = ACTIONS(5287), - [anon_sym_BSLASHGLS] = ACTIONS(5287), - [anon_sym_BSLASHglspl] = ACTIONS(5287), - [anon_sym_BSLASHGlspl] = ACTIONS(5287), - [anon_sym_BSLASHGLSpl] = ACTIONS(5287), - [anon_sym_BSLASHglsdisp] = ACTIONS(5287), - [anon_sym_BSLASHglslink] = ACTIONS(5287), - [anon_sym_BSLASHglstext] = ACTIONS(5287), - [anon_sym_BSLASHGlstext] = ACTIONS(5287), - [anon_sym_BSLASHGLStext] = ACTIONS(5287), - [anon_sym_BSLASHglsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5287), - [anon_sym_BSLASHglsplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSplural] = ACTIONS(5287), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHglsname] = ACTIONS(5287), - [anon_sym_BSLASHGlsname] = ACTIONS(5287), - [anon_sym_BSLASHGLSname] = ACTIONS(5287), - [anon_sym_BSLASHglssymbol] = ACTIONS(5287), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5287), - [anon_sym_BSLASHglsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5287), - [anon_sym_BSLASHglsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5287), - [anon_sym_BSLASHglsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5287), - [anon_sym_BSLASHglsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5287), - [anon_sym_BSLASHglsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5287), - [anon_sym_BSLASHnewacronym] = ACTIONS(5287), - [anon_sym_BSLASHacrshort] = ACTIONS(5287), - [anon_sym_BSLASHAcrshort] = ACTIONS(5287), - [anon_sym_BSLASHACRshort] = ACTIONS(5287), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5287), - [anon_sym_BSLASHacrlong] = ACTIONS(5287), - [anon_sym_BSLASHAcrlong] = ACTIONS(5287), - [anon_sym_BSLASHACRlong] = ACTIONS(5287), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5287), - [anon_sym_BSLASHacrfull] = ACTIONS(5287), - [anon_sym_BSLASHAcrfull] = ACTIONS(5287), - [anon_sym_BSLASHACRfull] = ACTIONS(5287), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5287), - [anon_sym_BSLASHacs] = ACTIONS(5287), - [anon_sym_BSLASHAcs] = ACTIONS(5287), - [anon_sym_BSLASHacsp] = ACTIONS(5287), - [anon_sym_BSLASHAcsp] = ACTIONS(5287), - [anon_sym_BSLASHacl] = ACTIONS(5287), - [anon_sym_BSLASHAcl] = ACTIONS(5287), - [anon_sym_BSLASHaclp] = ACTIONS(5287), - [anon_sym_BSLASHAclp] = ACTIONS(5287), - [anon_sym_BSLASHacf] = ACTIONS(5287), - [anon_sym_BSLASHAcf] = ACTIONS(5287), - [anon_sym_BSLASHacfp] = ACTIONS(5287), - [anon_sym_BSLASHAcfp] = ACTIONS(5287), - [anon_sym_BSLASHac] = ACTIONS(5287), - [anon_sym_BSLASHAc] = ACTIONS(5287), - [anon_sym_BSLASHacp] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5287), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5287), - [anon_sym_BSLASHcolor] = ACTIONS(5287), - [anon_sym_BSLASHcolorbox] = ACTIONS(5287), - [anon_sym_BSLASHtextcolor] = ACTIONS(5287), - [anon_sym_BSLASHpagecolor] = ACTIONS(5287), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5287), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5287), - }, - [1053] = { - [sym_command_name] = ACTIONS(5283), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_RPAREN] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_BSLASHpart] = ACTIONS(5283), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddpart] = ACTIONS(5283), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHchapter] = ACTIONS(5283), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddchap] = ACTIONS(5283), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsection] = ACTIONS(5283), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddsec] = ACTIONS(5283), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHparagraph] = ACTIONS(5283), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHitem] = ACTIONS(5283), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), - [anon_sym_LBRACE] = ACTIONS(5281), - [sym_word] = ACTIONS(5283), - [sym_placeholder] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_CARET] = ACTIONS(5283), - [anon_sym__] = ACTIONS(5283), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_BANG] = ACTIONS(5283), - [anon_sym_PIPE] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_SQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5281), - [anon_sym_BSLASHbegin] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5283), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), - [anon_sym_BSLASHinclude] = ACTIONS(5283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), - [anon_sym_BSLASHinput] = ACTIONS(5283), - [anon_sym_BSLASHsubfile] = ACTIONS(5283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), - [anon_sym_BSLASHbibliography] = ACTIONS(5283), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), - [anon_sym_BSLASHincludesvg] = ACTIONS(5283), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), - [anon_sym_BSLASHimport] = ACTIONS(5283), - [anon_sym_BSLASHsubimport] = ACTIONS(5283), - [anon_sym_BSLASHinputfrom] = ACTIONS(5283), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), - [anon_sym_BSLASHincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHcaption] = ACTIONS(5283), - [anon_sym_BSLASHcite] = ACTIONS(5283), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCite] = ACTIONS(5283), - [anon_sym_BSLASHnocite] = ACTIONS(5283), - [anon_sym_BSLASHcitet] = ACTIONS(5283), - [anon_sym_BSLASHcitep] = ACTIONS(5283), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteyear] = ACTIONS(5283), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitedate] = ACTIONS(5283), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteurl] = ACTIONS(5283), - [anon_sym_BSLASHfullcite] = ACTIONS(5283), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), - [anon_sym_BSLASHcitealt] = ACTIONS(5283), - [anon_sym_BSLASHcitealp] = ACTIONS(5283), - [anon_sym_BSLASHcitetext] = ACTIONS(5283), - [anon_sym_BSLASHparencite] = ACTIONS(5283), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHParencite] = ACTIONS(5283), - [anon_sym_BSLASHfootcite] = ACTIONS(5283), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), - [anon_sym_BSLASHtextcite] = ACTIONS(5283), - [anon_sym_BSLASHTextcite] = ACTIONS(5283), - [anon_sym_BSLASHsmartcite] = ACTIONS(5283), - [anon_sym_BSLASHSmartcite] = ACTIONS(5283), - [anon_sym_BSLASHsupercite] = ACTIONS(5283), - [anon_sym_BSLASHautocite] = ACTIONS(5283), - [anon_sym_BSLASHAutocite] = ACTIONS(5283), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHvolcite] = ACTIONS(5283), - [anon_sym_BSLASHVolcite] = ACTIONS(5283), - [anon_sym_BSLASHpvolcite] = ACTIONS(5283), - [anon_sym_BSLASHPvolcite] = ACTIONS(5283), - [anon_sym_BSLASHfvolcite] = ACTIONS(5283), - [anon_sym_BSLASHftvolcite] = ACTIONS(5283), - [anon_sym_BSLASHsvolcite] = ACTIONS(5283), - [anon_sym_BSLASHSvolcite] = ACTIONS(5283), - [anon_sym_BSLASHtvolcite] = ACTIONS(5283), - [anon_sym_BSLASHTvolcite] = ACTIONS(5283), - [anon_sym_BSLASHavolcite] = ACTIONS(5283), - [anon_sym_BSLASHAvolcite] = ACTIONS(5283), - [anon_sym_BSLASHnotecite] = ACTIONS(5283), - [anon_sym_BSLASHNotecite] = ACTIONS(5283), - [anon_sym_BSLASHpnotecite] = ACTIONS(5283), - [anon_sym_BSLASHPnotecite] = ACTIONS(5283), - [anon_sym_BSLASHfnotecite] = ACTIONS(5283), - [anon_sym_BSLASHlabel] = ACTIONS(5283), - [anon_sym_BSLASHref] = ACTIONS(5283), - [anon_sym_BSLASHeqref] = ACTIONS(5283), - [anon_sym_BSLASHvref] = ACTIONS(5283), - [anon_sym_BSLASHVref] = ACTIONS(5283), - [anon_sym_BSLASHautoref] = ACTIONS(5283), - [anon_sym_BSLASHpageref] = ACTIONS(5283), - [anon_sym_BSLASHcref] = ACTIONS(5283), - [anon_sym_BSLASHCref] = ACTIONS(5283), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnameCref] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHlabelcref] = ACTIONS(5283), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnewlabel] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdef] = ACTIONS(5283), - [anon_sym_BSLASHlet] = ACTIONS(5283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), - [anon_sym_BSLASHgls] = ACTIONS(5283), - [anon_sym_BSLASHGls] = ACTIONS(5283), - [anon_sym_BSLASHGLS] = ACTIONS(5283), - [anon_sym_BSLASHglspl] = ACTIONS(5283), - [anon_sym_BSLASHGlspl] = ACTIONS(5283), - [anon_sym_BSLASHGLSpl] = ACTIONS(5283), - [anon_sym_BSLASHglsdisp] = ACTIONS(5283), - [anon_sym_BSLASHglslink] = ACTIONS(5283), - [anon_sym_BSLASHglstext] = ACTIONS(5283), - [anon_sym_BSLASHGlstext] = ACTIONS(5283), - [anon_sym_BSLASHGLStext] = ACTIONS(5283), - [anon_sym_BSLASHglsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), - [anon_sym_BSLASHglsplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSplural] = ACTIONS(5283), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHglsname] = ACTIONS(5283), - [anon_sym_BSLASHGlsname] = ACTIONS(5283), - [anon_sym_BSLASHGLSname] = ACTIONS(5283), - [anon_sym_BSLASHglssymbol] = ACTIONS(5283), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), - [anon_sym_BSLASHglsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), - [anon_sym_BSLASHglsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), - [anon_sym_BSLASHglsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), - [anon_sym_BSLASHglsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), - [anon_sym_BSLASHglsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), - [anon_sym_BSLASHnewacronym] = ACTIONS(5283), - [anon_sym_BSLASHacrshort] = ACTIONS(5283), - [anon_sym_BSLASHAcrshort] = ACTIONS(5283), - [anon_sym_BSLASHACRshort] = ACTIONS(5283), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), - [anon_sym_BSLASHacrlong] = ACTIONS(5283), - [anon_sym_BSLASHAcrlong] = ACTIONS(5283), - [anon_sym_BSLASHACRlong] = ACTIONS(5283), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), - [anon_sym_BSLASHacrfull] = ACTIONS(5283), - [anon_sym_BSLASHAcrfull] = ACTIONS(5283), - [anon_sym_BSLASHACRfull] = ACTIONS(5283), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), - [anon_sym_BSLASHacs] = ACTIONS(5283), - [anon_sym_BSLASHAcs] = ACTIONS(5283), - [anon_sym_BSLASHacsp] = ACTIONS(5283), - [anon_sym_BSLASHAcsp] = ACTIONS(5283), - [anon_sym_BSLASHacl] = ACTIONS(5283), - [anon_sym_BSLASHAcl] = ACTIONS(5283), - [anon_sym_BSLASHaclp] = ACTIONS(5283), - [anon_sym_BSLASHAclp] = ACTIONS(5283), - [anon_sym_BSLASHacf] = ACTIONS(5283), - [anon_sym_BSLASHAcf] = ACTIONS(5283), - [anon_sym_BSLASHacfp] = ACTIONS(5283), - [anon_sym_BSLASHAcfp] = ACTIONS(5283), - [anon_sym_BSLASHac] = ACTIONS(5283), - [anon_sym_BSLASHAc] = ACTIONS(5283), - [anon_sym_BSLASHacp] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), - [anon_sym_BSLASHcolor] = ACTIONS(5283), - [anon_sym_BSLASHcolorbox] = ACTIONS(5283), - [anon_sym_BSLASHtextcolor] = ACTIONS(5283), - [anon_sym_BSLASHpagecolor] = ACTIONS(5283), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), - }, - [1054] = { - [sym_command_name] = ACTIONS(5279), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5279), - [anon_sym_LPAREN] = ACTIONS(5277), - [anon_sym_RPAREN] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(5277), - [anon_sym_RBRACK] = ACTIONS(5277), - [anon_sym_COMMA] = ACTIONS(5277), - [anon_sym_EQ] = ACTIONS(5277), - [anon_sym_BSLASHpart] = ACTIONS(5279), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddpart] = ACTIONS(5279), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5277), - [anon_sym_BSLASHchapter] = ACTIONS(5279), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddchap] = ACTIONS(5279), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsection] = ACTIONS(5279), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddsec] = ACTIONS(5279), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubsection] = ACTIONS(5279), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5279), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHparagraph] = ACTIONS(5279), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5279), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5277), - [anon_sym_BSLASHitem] = ACTIONS(5279), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5277), - [anon_sym_LBRACE] = ACTIONS(5277), - [sym_word] = ACTIONS(5279), - [sym_placeholder] = ACTIONS(5277), - [anon_sym_PLUS] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(5279), - [anon_sym_STAR] = ACTIONS(5279), - [anon_sym_SLASH] = ACTIONS(5279), - [anon_sym_CARET] = ACTIONS(5279), - [anon_sym__] = ACTIONS(5279), - [anon_sym_LT] = ACTIONS(5279), - [anon_sym_GT] = ACTIONS(5279), - [anon_sym_BANG] = ACTIONS(5279), - [anon_sym_PIPE] = ACTIONS(5279), - [anon_sym_COLON] = ACTIONS(5279), - [anon_sym_SQUOTE] = ACTIONS(5279), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5277), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5277), - [anon_sym_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5277), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5277), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5277), - [anon_sym_BSLASHbegin] = ACTIONS(5279), - [anon_sym_BSLASHusepackage] = ACTIONS(5279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5279), - [anon_sym_BSLASHinclude] = ACTIONS(5279), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5279), - [anon_sym_BSLASHinput] = ACTIONS(5279), - [anon_sym_BSLASHsubfile] = ACTIONS(5279), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5279), - [anon_sym_BSLASHbibliography] = ACTIONS(5279), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5279), - [anon_sym_BSLASHincludesvg] = ACTIONS(5279), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5279), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5279), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5279), - [anon_sym_BSLASHimport] = ACTIONS(5279), - [anon_sym_BSLASHsubimport] = ACTIONS(5279), - [anon_sym_BSLASHinputfrom] = ACTIONS(5279), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5279), - [anon_sym_BSLASHincludefrom] = ACTIONS(5279), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5279), - [anon_sym_BSLASHcaption] = ACTIONS(5279), - [anon_sym_BSLASHcite] = ACTIONS(5279), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCite] = ACTIONS(5279), - [anon_sym_BSLASHnocite] = ACTIONS(5279), - [anon_sym_BSLASHcitet] = ACTIONS(5279), - [anon_sym_BSLASHcitep] = ACTIONS(5279), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteauthor] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitetitle] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteyear] = ACTIONS(5279), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitedate] = ACTIONS(5279), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteurl] = ACTIONS(5279), - [anon_sym_BSLASHfullcite] = ACTIONS(5279), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5279), - [anon_sym_BSLASHcitealt] = ACTIONS(5279), - [anon_sym_BSLASHcitealp] = ACTIONS(5279), - [anon_sym_BSLASHcitetext] = ACTIONS(5279), - [anon_sym_BSLASHparencite] = ACTIONS(5279), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHParencite] = ACTIONS(5279), - [anon_sym_BSLASHfootcite] = ACTIONS(5279), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5279), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5279), - [anon_sym_BSLASHtextcite] = ACTIONS(5279), - [anon_sym_BSLASHTextcite] = ACTIONS(5279), - [anon_sym_BSLASHsmartcite] = ACTIONS(5279), - [anon_sym_BSLASHSmartcite] = ACTIONS(5279), - [anon_sym_BSLASHsupercite] = ACTIONS(5279), - [anon_sym_BSLASHautocite] = ACTIONS(5279), - [anon_sym_BSLASHAutocite] = ACTIONS(5279), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHvolcite] = ACTIONS(5279), - [anon_sym_BSLASHVolcite] = ACTIONS(5279), - [anon_sym_BSLASHpvolcite] = ACTIONS(5279), - [anon_sym_BSLASHPvolcite] = ACTIONS(5279), - [anon_sym_BSLASHfvolcite] = ACTIONS(5279), - [anon_sym_BSLASHftvolcite] = ACTIONS(5279), - [anon_sym_BSLASHsvolcite] = ACTIONS(5279), - [anon_sym_BSLASHSvolcite] = ACTIONS(5279), - [anon_sym_BSLASHtvolcite] = ACTIONS(5279), - [anon_sym_BSLASHTvolcite] = ACTIONS(5279), - [anon_sym_BSLASHavolcite] = ACTIONS(5279), - [anon_sym_BSLASHAvolcite] = ACTIONS(5279), - [anon_sym_BSLASHnotecite] = ACTIONS(5279), - [anon_sym_BSLASHNotecite] = ACTIONS(5279), - [anon_sym_BSLASHpnotecite] = ACTIONS(5279), - [anon_sym_BSLASHPnotecite] = ACTIONS(5279), - [anon_sym_BSLASHfnotecite] = ACTIONS(5279), - [anon_sym_BSLASHlabel] = ACTIONS(5279), - [anon_sym_BSLASHref] = ACTIONS(5279), - [anon_sym_BSLASHeqref] = ACTIONS(5279), - [anon_sym_BSLASHvref] = ACTIONS(5279), - [anon_sym_BSLASHVref] = ACTIONS(5279), - [anon_sym_BSLASHautoref] = ACTIONS(5279), - [anon_sym_BSLASHpageref] = ACTIONS(5279), - [anon_sym_BSLASHcref] = ACTIONS(5279), - [anon_sym_BSLASHCref] = ACTIONS(5279), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5277), - [anon_sym_BSLASHnamecref] = ACTIONS(5279), - [anon_sym_BSLASHnameCref] = ACTIONS(5279), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5279), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5279), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5279), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5279), - [anon_sym_BSLASHlabelcref] = ACTIONS(5279), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5279), - [anon_sym_BSLASHcrefrange] = ACTIONS(5279), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCrefrange] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5277), - [anon_sym_BSLASHnewlabel] = ACTIONS(5279), - [anon_sym_BSLASHnewcommand] = ACTIONS(5279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5277), - [anon_sym_BSLASHdef] = ACTIONS(5279), - [anon_sym_BSLASHlet] = ACTIONS(5279), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5279), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5279), - [anon_sym_BSLASHgls] = ACTIONS(5279), - [anon_sym_BSLASHGls] = ACTIONS(5279), - [anon_sym_BSLASHGLS] = ACTIONS(5279), - [anon_sym_BSLASHglspl] = ACTIONS(5279), - [anon_sym_BSLASHGlspl] = ACTIONS(5279), - [anon_sym_BSLASHGLSpl] = ACTIONS(5279), - [anon_sym_BSLASHglsdisp] = ACTIONS(5279), - [anon_sym_BSLASHglslink] = ACTIONS(5279), - [anon_sym_BSLASHglstext] = ACTIONS(5279), - [anon_sym_BSLASHGlstext] = ACTIONS(5279), - [anon_sym_BSLASHGLStext] = ACTIONS(5279), - [anon_sym_BSLASHglsfirst] = ACTIONS(5279), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5279), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5279), - [anon_sym_BSLASHglsplural] = ACTIONS(5279), - [anon_sym_BSLASHGlsplural] = ACTIONS(5279), - [anon_sym_BSLASHGLSplural] = ACTIONS(5279), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHglsname] = ACTIONS(5279), - [anon_sym_BSLASHGlsname] = ACTIONS(5279), - [anon_sym_BSLASHGLSname] = ACTIONS(5279), - [anon_sym_BSLASHglssymbol] = ACTIONS(5279), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5279), - [anon_sym_BSLASHglsdesc] = ACTIONS(5279), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5279), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5279), - [anon_sym_BSLASHglsuseri] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5279), - [anon_sym_BSLASHglsuserii] = ACTIONS(5279), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5279), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5279), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5279), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5279), - [anon_sym_BSLASHglsuserv] = ACTIONS(5279), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5279), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5279), - [anon_sym_BSLASHglsuservi] = ACTIONS(5279), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5279), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5279), - [anon_sym_BSLASHnewacronym] = ACTIONS(5279), - [anon_sym_BSLASHacrshort] = ACTIONS(5279), - [anon_sym_BSLASHAcrshort] = ACTIONS(5279), - [anon_sym_BSLASHACRshort] = ACTIONS(5279), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5279), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5279), - [anon_sym_BSLASHacrlong] = ACTIONS(5279), - [anon_sym_BSLASHAcrlong] = ACTIONS(5279), - [anon_sym_BSLASHACRlong] = ACTIONS(5279), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5279), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5279), - [anon_sym_BSLASHacrfull] = ACTIONS(5279), - [anon_sym_BSLASHAcrfull] = ACTIONS(5279), - [anon_sym_BSLASHACRfull] = ACTIONS(5279), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5279), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5279), - [anon_sym_BSLASHacs] = ACTIONS(5279), - [anon_sym_BSLASHAcs] = ACTIONS(5279), - [anon_sym_BSLASHacsp] = ACTIONS(5279), - [anon_sym_BSLASHAcsp] = ACTIONS(5279), - [anon_sym_BSLASHacl] = ACTIONS(5279), - [anon_sym_BSLASHAcl] = ACTIONS(5279), - [anon_sym_BSLASHaclp] = ACTIONS(5279), - [anon_sym_BSLASHAclp] = ACTIONS(5279), - [anon_sym_BSLASHacf] = ACTIONS(5279), - [anon_sym_BSLASHAcf] = ACTIONS(5279), - [anon_sym_BSLASHacfp] = ACTIONS(5279), - [anon_sym_BSLASHAcfp] = ACTIONS(5279), - [anon_sym_BSLASHac] = ACTIONS(5279), - [anon_sym_BSLASHAc] = ACTIONS(5279), - [anon_sym_BSLASHacp] = ACTIONS(5279), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5279), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5279), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5279), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5279), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5279), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5279), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5279), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5279), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5279), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5279), - [anon_sym_BSLASHcolor] = ACTIONS(5279), - [anon_sym_BSLASHcolorbox] = ACTIONS(5279), - [anon_sym_BSLASHtextcolor] = ACTIONS(5279), - [anon_sym_BSLASHpagecolor] = ACTIONS(5279), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5279), - }, - [1055] = { - [sym_command_name] = ACTIONS(5275), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5275), - [anon_sym_LPAREN] = ACTIONS(5273), - [anon_sym_RPAREN] = ACTIONS(5273), - [anon_sym_LBRACK] = ACTIONS(5273), - [anon_sym_RBRACK] = ACTIONS(5273), - [anon_sym_COMMA] = ACTIONS(5273), - [anon_sym_EQ] = ACTIONS(5273), - [anon_sym_BSLASHpart] = ACTIONS(5275), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddpart] = ACTIONS(5275), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5273), - [anon_sym_BSLASHchapter] = ACTIONS(5275), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddchap] = ACTIONS(5275), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsection] = ACTIONS(5275), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddsec] = ACTIONS(5275), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubsection] = ACTIONS(5275), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5275), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHparagraph] = ACTIONS(5275), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5275), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5273), - [anon_sym_BSLASHitem] = ACTIONS(5275), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5273), - [anon_sym_LBRACE] = ACTIONS(5273), - [sym_word] = ACTIONS(5275), - [sym_placeholder] = ACTIONS(5273), - [anon_sym_PLUS] = ACTIONS(5275), - [anon_sym_DASH] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(5275), - [anon_sym_SLASH] = ACTIONS(5275), - [anon_sym_CARET] = ACTIONS(5275), - [anon_sym__] = ACTIONS(5275), - [anon_sym_LT] = ACTIONS(5275), - [anon_sym_GT] = ACTIONS(5275), - [anon_sym_BANG] = ACTIONS(5275), - [anon_sym_PIPE] = ACTIONS(5275), - [anon_sym_COLON] = ACTIONS(5275), - [anon_sym_SQUOTE] = ACTIONS(5275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5273), - [anon_sym_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5273), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5273), - [anon_sym_BSLASHbegin] = ACTIONS(5275), - [anon_sym_BSLASHusepackage] = ACTIONS(5275), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5275), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5275), - [anon_sym_BSLASHinclude] = ACTIONS(5275), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5275), - [anon_sym_BSLASHinput] = ACTIONS(5275), - [anon_sym_BSLASHsubfile] = ACTIONS(5275), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5275), - [anon_sym_BSLASHbibliography] = ACTIONS(5275), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5275), - [anon_sym_BSLASHincludesvg] = ACTIONS(5275), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5275), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5275), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5275), - [anon_sym_BSLASHimport] = ACTIONS(5275), - [anon_sym_BSLASHsubimport] = ACTIONS(5275), - [anon_sym_BSLASHinputfrom] = ACTIONS(5275), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5275), - [anon_sym_BSLASHincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHcaption] = ACTIONS(5275), - [anon_sym_BSLASHcite] = ACTIONS(5275), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCite] = ACTIONS(5275), - [anon_sym_BSLASHnocite] = ACTIONS(5275), - [anon_sym_BSLASHcitet] = ACTIONS(5275), - [anon_sym_BSLASHcitep] = ACTIONS(5275), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteauthor] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitetitle] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteyear] = ACTIONS(5275), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitedate] = ACTIONS(5275), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteurl] = ACTIONS(5275), - [anon_sym_BSLASHfullcite] = ACTIONS(5275), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5275), - [anon_sym_BSLASHcitealt] = ACTIONS(5275), - [anon_sym_BSLASHcitealp] = ACTIONS(5275), - [anon_sym_BSLASHcitetext] = ACTIONS(5275), - [anon_sym_BSLASHparencite] = ACTIONS(5275), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHParencite] = ACTIONS(5275), - [anon_sym_BSLASHfootcite] = ACTIONS(5275), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5275), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5275), - [anon_sym_BSLASHtextcite] = ACTIONS(5275), - [anon_sym_BSLASHTextcite] = ACTIONS(5275), - [anon_sym_BSLASHsmartcite] = ACTIONS(5275), - [anon_sym_BSLASHSmartcite] = ACTIONS(5275), - [anon_sym_BSLASHsupercite] = ACTIONS(5275), - [anon_sym_BSLASHautocite] = ACTIONS(5275), - [anon_sym_BSLASHAutocite] = ACTIONS(5275), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHvolcite] = ACTIONS(5275), - [anon_sym_BSLASHVolcite] = ACTIONS(5275), - [anon_sym_BSLASHpvolcite] = ACTIONS(5275), - [anon_sym_BSLASHPvolcite] = ACTIONS(5275), - [anon_sym_BSLASHfvolcite] = ACTIONS(5275), - [anon_sym_BSLASHftvolcite] = ACTIONS(5275), - [anon_sym_BSLASHsvolcite] = ACTIONS(5275), - [anon_sym_BSLASHSvolcite] = ACTIONS(5275), - [anon_sym_BSLASHtvolcite] = ACTIONS(5275), - [anon_sym_BSLASHTvolcite] = ACTIONS(5275), - [anon_sym_BSLASHavolcite] = ACTIONS(5275), - [anon_sym_BSLASHAvolcite] = ACTIONS(5275), - [anon_sym_BSLASHnotecite] = ACTIONS(5275), - [anon_sym_BSLASHNotecite] = ACTIONS(5275), - [anon_sym_BSLASHpnotecite] = ACTIONS(5275), - [anon_sym_BSLASHPnotecite] = ACTIONS(5275), - [anon_sym_BSLASHfnotecite] = ACTIONS(5275), - [anon_sym_BSLASHlabel] = ACTIONS(5275), - [anon_sym_BSLASHref] = ACTIONS(5275), - [anon_sym_BSLASHeqref] = ACTIONS(5275), - [anon_sym_BSLASHvref] = ACTIONS(5275), - [anon_sym_BSLASHVref] = ACTIONS(5275), - [anon_sym_BSLASHautoref] = ACTIONS(5275), - [anon_sym_BSLASHpageref] = ACTIONS(5275), - [anon_sym_BSLASHcref] = ACTIONS(5275), - [anon_sym_BSLASHCref] = ACTIONS(5275), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnameCref] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHlabelcref] = ACTIONS(5275), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCrefrange] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnewlabel] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5273), - [anon_sym_BSLASHdef] = ACTIONS(5275), - [anon_sym_BSLASHlet] = ACTIONS(5275), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5275), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5275), - [anon_sym_BSLASHgls] = ACTIONS(5275), - [anon_sym_BSLASHGls] = ACTIONS(5275), - [anon_sym_BSLASHGLS] = ACTIONS(5275), - [anon_sym_BSLASHglspl] = ACTIONS(5275), - [anon_sym_BSLASHGlspl] = ACTIONS(5275), - [anon_sym_BSLASHGLSpl] = ACTIONS(5275), - [anon_sym_BSLASHglsdisp] = ACTIONS(5275), - [anon_sym_BSLASHglslink] = ACTIONS(5275), - [anon_sym_BSLASHglstext] = ACTIONS(5275), - [anon_sym_BSLASHGlstext] = ACTIONS(5275), - [anon_sym_BSLASHGLStext] = ACTIONS(5275), - [anon_sym_BSLASHglsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5275), - [anon_sym_BSLASHglsplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSplural] = ACTIONS(5275), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHglsname] = ACTIONS(5275), - [anon_sym_BSLASHGlsname] = ACTIONS(5275), - [anon_sym_BSLASHGLSname] = ACTIONS(5275), - [anon_sym_BSLASHglssymbol] = ACTIONS(5275), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5275), - [anon_sym_BSLASHglsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5275), - [anon_sym_BSLASHglsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5275), - [anon_sym_BSLASHglsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5275), - [anon_sym_BSLASHglsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5275), - [anon_sym_BSLASHglsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5275), - [anon_sym_BSLASHnewacronym] = ACTIONS(5275), - [anon_sym_BSLASHacrshort] = ACTIONS(5275), - [anon_sym_BSLASHAcrshort] = ACTIONS(5275), - [anon_sym_BSLASHACRshort] = ACTIONS(5275), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5275), - [anon_sym_BSLASHacrlong] = ACTIONS(5275), - [anon_sym_BSLASHAcrlong] = ACTIONS(5275), - [anon_sym_BSLASHACRlong] = ACTIONS(5275), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5275), - [anon_sym_BSLASHacrfull] = ACTIONS(5275), - [anon_sym_BSLASHAcrfull] = ACTIONS(5275), - [anon_sym_BSLASHACRfull] = ACTIONS(5275), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5275), - [anon_sym_BSLASHacs] = ACTIONS(5275), - [anon_sym_BSLASHAcs] = ACTIONS(5275), - [anon_sym_BSLASHacsp] = ACTIONS(5275), - [anon_sym_BSLASHAcsp] = ACTIONS(5275), - [anon_sym_BSLASHacl] = ACTIONS(5275), - [anon_sym_BSLASHAcl] = ACTIONS(5275), - [anon_sym_BSLASHaclp] = ACTIONS(5275), - [anon_sym_BSLASHAclp] = ACTIONS(5275), - [anon_sym_BSLASHacf] = ACTIONS(5275), - [anon_sym_BSLASHAcf] = ACTIONS(5275), - [anon_sym_BSLASHacfp] = ACTIONS(5275), - [anon_sym_BSLASHAcfp] = ACTIONS(5275), - [anon_sym_BSLASHac] = ACTIONS(5275), - [anon_sym_BSLASHAc] = ACTIONS(5275), - [anon_sym_BSLASHacp] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5275), - [anon_sym_BSLASHcolor] = ACTIONS(5275), - [anon_sym_BSLASHcolorbox] = ACTIONS(5275), - [anon_sym_BSLASHtextcolor] = ACTIONS(5275), - [anon_sym_BSLASHpagecolor] = ACTIONS(5275), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5275), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5275), - }, - [1056] = { - [sym_command_name] = ACTIONS(5271), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5271), - [anon_sym_LPAREN] = ACTIONS(5269), - [anon_sym_RPAREN] = ACTIONS(5269), - [anon_sym_LBRACK] = ACTIONS(5269), - [anon_sym_RBRACK] = ACTIONS(5269), - [anon_sym_COMMA] = ACTIONS(5269), - [anon_sym_EQ] = ACTIONS(5269), - [anon_sym_BSLASHpart] = ACTIONS(5271), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddpart] = ACTIONS(5271), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5269), - [anon_sym_BSLASHchapter] = ACTIONS(5271), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddchap] = ACTIONS(5271), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsection] = ACTIONS(5271), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddsec] = ACTIONS(5271), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubsection] = ACTIONS(5271), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5271), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHparagraph] = ACTIONS(5271), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5271), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5269), - [anon_sym_BSLASHitem] = ACTIONS(5271), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5269), - [anon_sym_LBRACE] = ACTIONS(5269), - [sym_word] = ACTIONS(5271), - [sym_placeholder] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5271), - [anon_sym_DASH] = ACTIONS(5271), - [anon_sym_STAR] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5271), - [anon_sym_CARET] = ACTIONS(5271), - [anon_sym__] = ACTIONS(5271), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_GT] = ACTIONS(5271), - [anon_sym_BANG] = ACTIONS(5271), - [anon_sym_PIPE] = ACTIONS(5271), - [anon_sym_COLON] = ACTIONS(5271), - [anon_sym_SQUOTE] = ACTIONS(5271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5269), - [anon_sym_DOLLAR] = ACTIONS(5271), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5269), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5269), - [anon_sym_BSLASHbegin] = ACTIONS(5271), - [anon_sym_BSLASHusepackage] = ACTIONS(5271), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5271), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5271), - [anon_sym_BSLASHinclude] = ACTIONS(5271), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5271), - [anon_sym_BSLASHinput] = ACTIONS(5271), - [anon_sym_BSLASHsubfile] = ACTIONS(5271), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5271), - [anon_sym_BSLASHbibliography] = ACTIONS(5271), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5271), - [anon_sym_BSLASHincludesvg] = ACTIONS(5271), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5271), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5271), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5271), - [anon_sym_BSLASHimport] = ACTIONS(5271), - [anon_sym_BSLASHsubimport] = ACTIONS(5271), - [anon_sym_BSLASHinputfrom] = ACTIONS(5271), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5271), - [anon_sym_BSLASHincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHcaption] = ACTIONS(5271), - [anon_sym_BSLASHcite] = ACTIONS(5271), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCite] = ACTIONS(5271), - [anon_sym_BSLASHnocite] = ACTIONS(5271), - [anon_sym_BSLASHcitet] = ACTIONS(5271), - [anon_sym_BSLASHcitep] = ACTIONS(5271), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor] = ACTIONS(5271), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5271), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle] = ACTIONS(5271), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteyear] = ACTIONS(5271), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitedate] = ACTIONS(5271), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteurl] = ACTIONS(5271), - [anon_sym_BSLASHfullcite] = ACTIONS(5271), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5271), - [anon_sym_BSLASHcitealt] = ACTIONS(5271), - [anon_sym_BSLASHcitealp] = ACTIONS(5271), - [anon_sym_BSLASHcitetext] = ACTIONS(5271), - [anon_sym_BSLASHparencite] = ACTIONS(5271), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHParencite] = ACTIONS(5271), - [anon_sym_BSLASHfootcite] = ACTIONS(5271), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5271), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5271), - [anon_sym_BSLASHtextcite] = ACTIONS(5271), - [anon_sym_BSLASHTextcite] = ACTIONS(5271), - [anon_sym_BSLASHsmartcite] = ACTIONS(5271), - [anon_sym_BSLASHSmartcite] = ACTIONS(5271), - [anon_sym_BSLASHsupercite] = ACTIONS(5271), - [anon_sym_BSLASHautocite] = ACTIONS(5271), - [anon_sym_BSLASHAutocite] = ACTIONS(5271), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHvolcite] = ACTIONS(5271), - [anon_sym_BSLASHVolcite] = ACTIONS(5271), - [anon_sym_BSLASHpvolcite] = ACTIONS(5271), - [anon_sym_BSLASHPvolcite] = ACTIONS(5271), - [anon_sym_BSLASHfvolcite] = ACTIONS(5271), - [anon_sym_BSLASHftvolcite] = ACTIONS(5271), - [anon_sym_BSLASHsvolcite] = ACTIONS(5271), - [anon_sym_BSLASHSvolcite] = ACTIONS(5271), - [anon_sym_BSLASHtvolcite] = ACTIONS(5271), - [anon_sym_BSLASHTvolcite] = ACTIONS(5271), - [anon_sym_BSLASHavolcite] = ACTIONS(5271), - [anon_sym_BSLASHAvolcite] = ACTIONS(5271), - [anon_sym_BSLASHnotecite] = ACTIONS(5271), - [anon_sym_BSLASHNotecite] = ACTIONS(5271), - [anon_sym_BSLASHpnotecite] = ACTIONS(5271), - [anon_sym_BSLASHPnotecite] = ACTIONS(5271), - [anon_sym_BSLASHfnotecite] = ACTIONS(5271), - [anon_sym_BSLASHlabel] = ACTIONS(5271), - [anon_sym_BSLASHref] = ACTIONS(5271), - [anon_sym_BSLASHeqref] = ACTIONS(5271), - [anon_sym_BSLASHvref] = ACTIONS(5271), - [anon_sym_BSLASHVref] = ACTIONS(5271), - [anon_sym_BSLASHautoref] = ACTIONS(5271), - [anon_sym_BSLASHpageref] = ACTIONS(5271), - [anon_sym_BSLASHcref] = ACTIONS(5271), - [anon_sym_BSLASHCref] = ACTIONS(5271), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnameCref] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHlabelcref] = ACTIONS(5271), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange] = ACTIONS(5271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnewlabel] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5271), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5271), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5271), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5269), - [anon_sym_BSLASHdef] = ACTIONS(5271), - [anon_sym_BSLASHlet] = ACTIONS(5271), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5271), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5271), - [anon_sym_BSLASHgls] = ACTIONS(5271), - [anon_sym_BSLASHGls] = ACTIONS(5271), - [anon_sym_BSLASHGLS] = ACTIONS(5271), - [anon_sym_BSLASHglspl] = ACTIONS(5271), - [anon_sym_BSLASHGlspl] = ACTIONS(5271), - [anon_sym_BSLASHGLSpl] = ACTIONS(5271), - [anon_sym_BSLASHglsdisp] = ACTIONS(5271), - [anon_sym_BSLASHglslink] = ACTIONS(5271), - [anon_sym_BSLASHglstext] = ACTIONS(5271), - [anon_sym_BSLASHGlstext] = ACTIONS(5271), - [anon_sym_BSLASHGLStext] = ACTIONS(5271), - [anon_sym_BSLASHglsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5271), - [anon_sym_BSLASHglsplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSplural] = ACTIONS(5271), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHglsname] = ACTIONS(5271), - [anon_sym_BSLASHGlsname] = ACTIONS(5271), - [anon_sym_BSLASHGLSname] = ACTIONS(5271), - [anon_sym_BSLASHglssymbol] = ACTIONS(5271), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5271), - [anon_sym_BSLASHglsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5271), - [anon_sym_BSLASHglsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5271), - [anon_sym_BSLASHglsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5271), - [anon_sym_BSLASHglsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5271), - [anon_sym_BSLASHglsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5271), - [anon_sym_BSLASHnewacronym] = ACTIONS(5271), - [anon_sym_BSLASHacrshort] = ACTIONS(5271), - [anon_sym_BSLASHAcrshort] = ACTIONS(5271), - [anon_sym_BSLASHACRshort] = ACTIONS(5271), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5271), - [anon_sym_BSLASHacrlong] = ACTIONS(5271), - [anon_sym_BSLASHAcrlong] = ACTIONS(5271), - [anon_sym_BSLASHACRlong] = ACTIONS(5271), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5271), - [anon_sym_BSLASHacrfull] = ACTIONS(5271), - [anon_sym_BSLASHAcrfull] = ACTIONS(5271), - [anon_sym_BSLASHACRfull] = ACTIONS(5271), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5271), - [anon_sym_BSLASHacs] = ACTIONS(5271), - [anon_sym_BSLASHAcs] = ACTIONS(5271), - [anon_sym_BSLASHacsp] = ACTIONS(5271), - [anon_sym_BSLASHAcsp] = ACTIONS(5271), - [anon_sym_BSLASHacl] = ACTIONS(5271), - [anon_sym_BSLASHAcl] = ACTIONS(5271), - [anon_sym_BSLASHaclp] = ACTIONS(5271), - [anon_sym_BSLASHAclp] = ACTIONS(5271), - [anon_sym_BSLASHacf] = ACTIONS(5271), - [anon_sym_BSLASHAcf] = ACTIONS(5271), - [anon_sym_BSLASHacfp] = ACTIONS(5271), - [anon_sym_BSLASHAcfp] = ACTIONS(5271), - [anon_sym_BSLASHac] = ACTIONS(5271), - [anon_sym_BSLASHAc] = ACTIONS(5271), - [anon_sym_BSLASHacp] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5271), - [anon_sym_BSLASHcolor] = ACTIONS(5271), - [anon_sym_BSLASHcolorbox] = ACTIONS(5271), - [anon_sym_BSLASHtextcolor] = ACTIONS(5271), - [anon_sym_BSLASHpagecolor] = ACTIONS(5271), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5271), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5271), - }, - [1057] = { - [sym_command_name] = ACTIONS(5267), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5267), - [anon_sym_LPAREN] = ACTIONS(5265), - [anon_sym_RPAREN] = ACTIONS(5265), - [anon_sym_LBRACK] = ACTIONS(5265), - [anon_sym_RBRACK] = ACTIONS(5265), - [anon_sym_COMMA] = ACTIONS(5265), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_BSLASHpart] = ACTIONS(5267), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddpart] = ACTIONS(5267), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5265), - [anon_sym_BSLASHchapter] = ACTIONS(5267), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddchap] = ACTIONS(5267), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsection] = ACTIONS(5267), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddsec] = ACTIONS(5267), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubsection] = ACTIONS(5267), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5267), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHparagraph] = ACTIONS(5267), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5267), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5265), - [anon_sym_BSLASHitem] = ACTIONS(5267), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(5265), - [sym_word] = ACTIONS(5267), - [sym_placeholder] = ACTIONS(5265), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(5267), - [anon_sym_SLASH] = ACTIONS(5267), - [anon_sym_CARET] = ACTIONS(5267), - [anon_sym__] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(5267), - [anon_sym_GT] = ACTIONS(5267), - [anon_sym_BANG] = ACTIONS(5267), - [anon_sym_PIPE] = ACTIONS(5267), - [anon_sym_COLON] = ACTIONS(5267), - [anon_sym_SQUOTE] = ACTIONS(5267), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5265), - [anon_sym_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5265), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5265), - [anon_sym_BSLASHbegin] = ACTIONS(5267), - [anon_sym_BSLASHusepackage] = ACTIONS(5267), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5267), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5267), - [anon_sym_BSLASHinclude] = ACTIONS(5267), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5267), - [anon_sym_BSLASHinput] = ACTIONS(5267), - [anon_sym_BSLASHsubfile] = ACTIONS(5267), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5267), - [anon_sym_BSLASHbibliography] = ACTIONS(5267), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5267), - [anon_sym_BSLASHincludesvg] = ACTIONS(5267), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5267), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5267), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5267), - [anon_sym_BSLASHimport] = ACTIONS(5267), - [anon_sym_BSLASHsubimport] = ACTIONS(5267), - [anon_sym_BSLASHinputfrom] = ACTIONS(5267), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5267), - [anon_sym_BSLASHincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHcaption] = ACTIONS(5267), - [anon_sym_BSLASHcite] = ACTIONS(5267), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCite] = ACTIONS(5267), - [anon_sym_BSLASHnocite] = ACTIONS(5267), - [anon_sym_BSLASHcitet] = ACTIONS(5267), - [anon_sym_BSLASHcitep] = ACTIONS(5267), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteyear] = ACTIONS(5267), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitedate] = ACTIONS(5267), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteurl] = ACTIONS(5267), - [anon_sym_BSLASHfullcite] = ACTIONS(5267), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5267), - [anon_sym_BSLASHcitealt] = ACTIONS(5267), - [anon_sym_BSLASHcitealp] = ACTIONS(5267), - [anon_sym_BSLASHcitetext] = ACTIONS(5267), - [anon_sym_BSLASHparencite] = ACTIONS(5267), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHParencite] = ACTIONS(5267), - [anon_sym_BSLASHfootcite] = ACTIONS(5267), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5267), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5267), - [anon_sym_BSLASHtextcite] = ACTIONS(5267), - [anon_sym_BSLASHTextcite] = ACTIONS(5267), - [anon_sym_BSLASHsmartcite] = ACTIONS(5267), - [anon_sym_BSLASHSmartcite] = ACTIONS(5267), - [anon_sym_BSLASHsupercite] = ACTIONS(5267), - [anon_sym_BSLASHautocite] = ACTIONS(5267), - [anon_sym_BSLASHAutocite] = ACTIONS(5267), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHvolcite] = ACTIONS(5267), - [anon_sym_BSLASHVolcite] = ACTIONS(5267), - [anon_sym_BSLASHpvolcite] = ACTIONS(5267), - [anon_sym_BSLASHPvolcite] = ACTIONS(5267), - [anon_sym_BSLASHfvolcite] = ACTIONS(5267), - [anon_sym_BSLASHftvolcite] = ACTIONS(5267), - [anon_sym_BSLASHsvolcite] = ACTIONS(5267), - [anon_sym_BSLASHSvolcite] = ACTIONS(5267), - [anon_sym_BSLASHtvolcite] = ACTIONS(5267), - [anon_sym_BSLASHTvolcite] = ACTIONS(5267), - [anon_sym_BSLASHavolcite] = ACTIONS(5267), - [anon_sym_BSLASHAvolcite] = ACTIONS(5267), - [anon_sym_BSLASHnotecite] = ACTIONS(5267), - [anon_sym_BSLASHNotecite] = ACTIONS(5267), - [anon_sym_BSLASHpnotecite] = ACTIONS(5267), - [anon_sym_BSLASHPnotecite] = ACTIONS(5267), - [anon_sym_BSLASHfnotecite] = ACTIONS(5267), - [anon_sym_BSLASHlabel] = ACTIONS(5267), - [anon_sym_BSLASHref] = ACTIONS(5267), - [anon_sym_BSLASHeqref] = ACTIONS(5267), - [anon_sym_BSLASHvref] = ACTIONS(5267), - [anon_sym_BSLASHVref] = ACTIONS(5267), - [anon_sym_BSLASHautoref] = ACTIONS(5267), - [anon_sym_BSLASHpageref] = ACTIONS(5267), - [anon_sym_BSLASHcref] = ACTIONS(5267), - [anon_sym_BSLASHCref] = ACTIONS(5267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnameCref] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHlabelcref] = ACTIONS(5267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnewlabel] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5265), - [anon_sym_BSLASHdef] = ACTIONS(5267), - [anon_sym_BSLASHlet] = ACTIONS(5267), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5267), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5267), - [anon_sym_BSLASHgls] = ACTIONS(5267), - [anon_sym_BSLASHGls] = ACTIONS(5267), - [anon_sym_BSLASHGLS] = ACTIONS(5267), - [anon_sym_BSLASHglspl] = ACTIONS(5267), - [anon_sym_BSLASHGlspl] = ACTIONS(5267), - [anon_sym_BSLASHGLSpl] = ACTIONS(5267), - [anon_sym_BSLASHglsdisp] = ACTIONS(5267), - [anon_sym_BSLASHglslink] = ACTIONS(5267), - [anon_sym_BSLASHglstext] = ACTIONS(5267), - [anon_sym_BSLASHGlstext] = ACTIONS(5267), - [anon_sym_BSLASHGLStext] = ACTIONS(5267), - [anon_sym_BSLASHglsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5267), - [anon_sym_BSLASHglsplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSplural] = ACTIONS(5267), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHglsname] = ACTIONS(5267), - [anon_sym_BSLASHGlsname] = ACTIONS(5267), - [anon_sym_BSLASHGLSname] = ACTIONS(5267), - [anon_sym_BSLASHglssymbol] = ACTIONS(5267), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5267), - [anon_sym_BSLASHglsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5267), - [anon_sym_BSLASHglsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5267), - [anon_sym_BSLASHglsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5267), - [anon_sym_BSLASHglsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5267), - [anon_sym_BSLASHglsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5267), - [anon_sym_BSLASHnewacronym] = ACTIONS(5267), - [anon_sym_BSLASHacrshort] = ACTIONS(5267), - [anon_sym_BSLASHAcrshort] = ACTIONS(5267), - [anon_sym_BSLASHACRshort] = ACTIONS(5267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5267), - [anon_sym_BSLASHacrlong] = ACTIONS(5267), - [anon_sym_BSLASHAcrlong] = ACTIONS(5267), - [anon_sym_BSLASHACRlong] = ACTIONS(5267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5267), - [anon_sym_BSLASHacrfull] = ACTIONS(5267), - [anon_sym_BSLASHAcrfull] = ACTIONS(5267), - [anon_sym_BSLASHACRfull] = ACTIONS(5267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5267), - [anon_sym_BSLASHacs] = ACTIONS(5267), - [anon_sym_BSLASHAcs] = ACTIONS(5267), - [anon_sym_BSLASHacsp] = ACTIONS(5267), - [anon_sym_BSLASHAcsp] = ACTIONS(5267), - [anon_sym_BSLASHacl] = ACTIONS(5267), - [anon_sym_BSLASHAcl] = ACTIONS(5267), - [anon_sym_BSLASHaclp] = ACTIONS(5267), - [anon_sym_BSLASHAclp] = ACTIONS(5267), - [anon_sym_BSLASHacf] = ACTIONS(5267), - [anon_sym_BSLASHAcf] = ACTIONS(5267), - [anon_sym_BSLASHacfp] = ACTIONS(5267), - [anon_sym_BSLASHAcfp] = ACTIONS(5267), - [anon_sym_BSLASHac] = ACTIONS(5267), - [anon_sym_BSLASHAc] = ACTIONS(5267), - [anon_sym_BSLASHacp] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5267), - [anon_sym_BSLASHcolor] = ACTIONS(5267), - [anon_sym_BSLASHcolorbox] = ACTIONS(5267), - [anon_sym_BSLASHtextcolor] = ACTIONS(5267), - [anon_sym_BSLASHpagecolor] = ACTIONS(5267), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5267), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5267), - }, - [1058] = { - [sym_command_name] = ACTIONS(5263), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5263), - [anon_sym_LPAREN] = ACTIONS(5261), - [anon_sym_RPAREN] = ACTIONS(5261), - [anon_sym_LBRACK] = ACTIONS(5261), - [anon_sym_RBRACK] = ACTIONS(5261), - [anon_sym_COMMA] = ACTIONS(5261), - [anon_sym_EQ] = ACTIONS(5261), - [anon_sym_BSLASHpart] = ACTIONS(5263), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddpart] = ACTIONS(5263), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5261), - [anon_sym_BSLASHchapter] = ACTIONS(5263), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddchap] = ACTIONS(5263), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsection] = ACTIONS(5263), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddsec] = ACTIONS(5263), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubsection] = ACTIONS(5263), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5263), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHparagraph] = ACTIONS(5263), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5263), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5261), - [anon_sym_BSLASHitem] = ACTIONS(5263), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(5261), - [sym_word] = ACTIONS(5263), - [sym_placeholder] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_STAR] = ACTIONS(5263), - [anon_sym_SLASH] = ACTIONS(5263), - [anon_sym_CARET] = ACTIONS(5263), - [anon_sym__] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(5263), - [anon_sym_GT] = ACTIONS(5263), - [anon_sym_BANG] = ACTIONS(5263), - [anon_sym_PIPE] = ACTIONS(5263), - [anon_sym_COLON] = ACTIONS(5263), - [anon_sym_SQUOTE] = ACTIONS(5263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5261), - [anon_sym_DOLLAR] = ACTIONS(5263), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5261), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5261), - [anon_sym_BSLASHbegin] = ACTIONS(5263), - [anon_sym_BSLASHusepackage] = ACTIONS(5263), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), - [anon_sym_BSLASHinclude] = ACTIONS(5263), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), - [anon_sym_BSLASHinput] = ACTIONS(5263), - [anon_sym_BSLASHsubfile] = ACTIONS(5263), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), - [anon_sym_BSLASHbibliography] = ACTIONS(5263), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), - [anon_sym_BSLASHincludesvg] = ACTIONS(5263), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), - [anon_sym_BSLASHimport] = ACTIONS(5263), - [anon_sym_BSLASHsubimport] = ACTIONS(5263), - [anon_sym_BSLASHinputfrom] = ACTIONS(5263), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), - [anon_sym_BSLASHincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHcaption] = ACTIONS(5263), - [anon_sym_BSLASHcite] = ACTIONS(5263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCite] = ACTIONS(5263), - [anon_sym_BSLASHnocite] = ACTIONS(5263), - [anon_sym_BSLASHcitet] = ACTIONS(5263), - [anon_sym_BSLASHcitep] = ACTIONS(5263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteyear] = ACTIONS(5263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitedate] = ACTIONS(5263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteurl] = ACTIONS(5263), - [anon_sym_BSLASHfullcite] = ACTIONS(5263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), - [anon_sym_BSLASHcitealt] = ACTIONS(5263), - [anon_sym_BSLASHcitealp] = ACTIONS(5263), - [anon_sym_BSLASHcitetext] = ACTIONS(5263), - [anon_sym_BSLASHparencite] = ACTIONS(5263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHParencite] = ACTIONS(5263), - [anon_sym_BSLASHfootcite] = ACTIONS(5263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), - [anon_sym_BSLASHtextcite] = ACTIONS(5263), - [anon_sym_BSLASHTextcite] = ACTIONS(5263), - [anon_sym_BSLASHsmartcite] = ACTIONS(5263), - [anon_sym_BSLASHSmartcite] = ACTIONS(5263), - [anon_sym_BSLASHsupercite] = ACTIONS(5263), - [anon_sym_BSLASHautocite] = ACTIONS(5263), - [anon_sym_BSLASHAutocite] = ACTIONS(5263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHvolcite] = ACTIONS(5263), - [anon_sym_BSLASHVolcite] = ACTIONS(5263), - [anon_sym_BSLASHpvolcite] = ACTIONS(5263), - [anon_sym_BSLASHPvolcite] = ACTIONS(5263), - [anon_sym_BSLASHfvolcite] = ACTIONS(5263), - [anon_sym_BSLASHftvolcite] = ACTIONS(5263), - [anon_sym_BSLASHsvolcite] = ACTIONS(5263), - [anon_sym_BSLASHSvolcite] = ACTIONS(5263), - [anon_sym_BSLASHtvolcite] = ACTIONS(5263), - [anon_sym_BSLASHTvolcite] = ACTIONS(5263), - [anon_sym_BSLASHavolcite] = ACTIONS(5263), - [anon_sym_BSLASHAvolcite] = ACTIONS(5263), - [anon_sym_BSLASHnotecite] = ACTIONS(5263), - [anon_sym_BSLASHNotecite] = ACTIONS(5263), - [anon_sym_BSLASHpnotecite] = ACTIONS(5263), - [anon_sym_BSLASHPnotecite] = ACTIONS(5263), - [anon_sym_BSLASHfnotecite] = ACTIONS(5263), - [anon_sym_BSLASHlabel] = ACTIONS(5263), - [anon_sym_BSLASHref] = ACTIONS(5263), - [anon_sym_BSLASHeqref] = ACTIONS(5263), - [anon_sym_BSLASHvref] = ACTIONS(5263), - [anon_sym_BSLASHVref] = ACTIONS(5263), - [anon_sym_BSLASHautoref] = ACTIONS(5263), - [anon_sym_BSLASHpageref] = ACTIONS(5263), - [anon_sym_BSLASHcref] = ACTIONS(5263), - [anon_sym_BSLASHCref] = ACTIONS(5263), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnameCref] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHlabelcref] = ACTIONS(5263), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnewlabel] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), - [anon_sym_BSLASHdef] = ACTIONS(5263), - [anon_sym_BSLASHlet] = ACTIONS(5263), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), - [anon_sym_BSLASHgls] = ACTIONS(5263), - [anon_sym_BSLASHGls] = ACTIONS(5263), - [anon_sym_BSLASHGLS] = ACTIONS(5263), - [anon_sym_BSLASHglspl] = ACTIONS(5263), - [anon_sym_BSLASHGlspl] = ACTIONS(5263), - [anon_sym_BSLASHGLSpl] = ACTIONS(5263), - [anon_sym_BSLASHglsdisp] = ACTIONS(5263), - [anon_sym_BSLASHglslink] = ACTIONS(5263), - [anon_sym_BSLASHglstext] = ACTIONS(5263), - [anon_sym_BSLASHGlstext] = ACTIONS(5263), - [anon_sym_BSLASHGLStext] = ACTIONS(5263), - [anon_sym_BSLASHglsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), - [anon_sym_BSLASHglsplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSplural] = ACTIONS(5263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHglsname] = ACTIONS(5263), - [anon_sym_BSLASHGlsname] = ACTIONS(5263), - [anon_sym_BSLASHGLSname] = ACTIONS(5263), - [anon_sym_BSLASHglssymbol] = ACTIONS(5263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), - [anon_sym_BSLASHglsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), - [anon_sym_BSLASHglsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), - [anon_sym_BSLASHglsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), - [anon_sym_BSLASHglsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), - [anon_sym_BSLASHglsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), - [anon_sym_BSLASHnewacronym] = ACTIONS(5263), - [anon_sym_BSLASHacrshort] = ACTIONS(5263), - [anon_sym_BSLASHAcrshort] = ACTIONS(5263), - [anon_sym_BSLASHACRshort] = ACTIONS(5263), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), - [anon_sym_BSLASHacrlong] = ACTIONS(5263), - [anon_sym_BSLASHAcrlong] = ACTIONS(5263), - [anon_sym_BSLASHACRlong] = ACTIONS(5263), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), - [anon_sym_BSLASHacrfull] = ACTIONS(5263), - [anon_sym_BSLASHAcrfull] = ACTIONS(5263), - [anon_sym_BSLASHACRfull] = ACTIONS(5263), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), - [anon_sym_BSLASHacs] = ACTIONS(5263), - [anon_sym_BSLASHAcs] = ACTIONS(5263), - [anon_sym_BSLASHacsp] = ACTIONS(5263), - [anon_sym_BSLASHAcsp] = ACTIONS(5263), - [anon_sym_BSLASHacl] = ACTIONS(5263), - [anon_sym_BSLASHAcl] = ACTIONS(5263), - [anon_sym_BSLASHaclp] = ACTIONS(5263), - [anon_sym_BSLASHAclp] = ACTIONS(5263), - [anon_sym_BSLASHacf] = ACTIONS(5263), - [anon_sym_BSLASHAcf] = ACTIONS(5263), - [anon_sym_BSLASHacfp] = ACTIONS(5263), - [anon_sym_BSLASHAcfp] = ACTIONS(5263), - [anon_sym_BSLASHac] = ACTIONS(5263), - [anon_sym_BSLASHAc] = ACTIONS(5263), - [anon_sym_BSLASHacp] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), - [anon_sym_BSLASHcolor] = ACTIONS(5263), - [anon_sym_BSLASHcolorbox] = ACTIONS(5263), - [anon_sym_BSLASHtextcolor] = ACTIONS(5263), - [anon_sym_BSLASHpagecolor] = ACTIONS(5263), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), - }, - [1059] = { - [sym_command_name] = ACTIONS(5255), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5255), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5253), - [anon_sym_BSLASHpart] = ACTIONS(5255), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddpart] = ACTIONS(5255), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5253), - [anon_sym_BSLASHchapter] = ACTIONS(5255), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddchap] = ACTIONS(5255), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsection] = ACTIONS(5255), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddsec] = ACTIONS(5255), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubsection] = ACTIONS(5255), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5255), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHparagraph] = ACTIONS(5255), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5255), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5253), - [anon_sym_BSLASHitem] = ACTIONS(5255), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5253), - [anon_sym_LBRACE] = ACTIONS(5253), - [sym_word] = ACTIONS(5255), - [sym_placeholder] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_CARET] = ACTIONS(5255), - [anon_sym__] = ACTIONS(5255), - [anon_sym_LT] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5255), - [anon_sym_BANG] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5255), - [anon_sym_COLON] = ACTIONS(5255), - [anon_sym_SQUOTE] = ACTIONS(5255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5253), - [anon_sym_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5253), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5253), - [anon_sym_BSLASHbegin] = ACTIONS(5255), - [anon_sym_BSLASHusepackage] = ACTIONS(5255), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5255), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5255), - [anon_sym_BSLASHinclude] = ACTIONS(5255), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5255), - [anon_sym_BSLASHinput] = ACTIONS(5255), - [anon_sym_BSLASHsubfile] = ACTIONS(5255), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5255), - [anon_sym_BSLASHbibliography] = ACTIONS(5255), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5255), - [anon_sym_BSLASHincludesvg] = ACTIONS(5255), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5255), - [anon_sym_BSLASHimport] = ACTIONS(5255), - [anon_sym_BSLASHsubimport] = ACTIONS(5255), - [anon_sym_BSLASHinputfrom] = ACTIONS(5255), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5255), - [anon_sym_BSLASHincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHcaption] = ACTIONS(5255), - [anon_sym_BSLASHcite] = ACTIONS(5255), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCite] = ACTIONS(5255), - [anon_sym_BSLASHnocite] = ACTIONS(5255), - [anon_sym_BSLASHcitet] = ACTIONS(5255), - [anon_sym_BSLASHcitep] = ACTIONS(5255), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteauthor] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitetitle] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteyear] = ACTIONS(5255), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitedate] = ACTIONS(5255), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteurl] = ACTIONS(5255), - [anon_sym_BSLASHfullcite] = ACTIONS(5255), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5255), - [anon_sym_BSLASHcitealt] = ACTIONS(5255), - [anon_sym_BSLASHcitealp] = ACTIONS(5255), - [anon_sym_BSLASHcitetext] = ACTIONS(5255), - [anon_sym_BSLASHparencite] = ACTIONS(5255), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHParencite] = ACTIONS(5255), - [anon_sym_BSLASHfootcite] = ACTIONS(5255), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5255), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5255), - [anon_sym_BSLASHtextcite] = ACTIONS(5255), - [anon_sym_BSLASHTextcite] = ACTIONS(5255), - [anon_sym_BSLASHsmartcite] = ACTIONS(5255), - [anon_sym_BSLASHSmartcite] = ACTIONS(5255), - [anon_sym_BSLASHsupercite] = ACTIONS(5255), - [anon_sym_BSLASHautocite] = ACTIONS(5255), - [anon_sym_BSLASHAutocite] = ACTIONS(5255), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHvolcite] = ACTIONS(5255), - [anon_sym_BSLASHVolcite] = ACTIONS(5255), - [anon_sym_BSLASHpvolcite] = ACTIONS(5255), - [anon_sym_BSLASHPvolcite] = ACTIONS(5255), - [anon_sym_BSLASHfvolcite] = ACTIONS(5255), - [anon_sym_BSLASHftvolcite] = ACTIONS(5255), - [anon_sym_BSLASHsvolcite] = ACTIONS(5255), - [anon_sym_BSLASHSvolcite] = ACTIONS(5255), - [anon_sym_BSLASHtvolcite] = ACTIONS(5255), - [anon_sym_BSLASHTvolcite] = ACTIONS(5255), - [anon_sym_BSLASHavolcite] = ACTIONS(5255), - [anon_sym_BSLASHAvolcite] = ACTIONS(5255), - [anon_sym_BSLASHnotecite] = ACTIONS(5255), - [anon_sym_BSLASHNotecite] = ACTIONS(5255), - [anon_sym_BSLASHpnotecite] = ACTIONS(5255), - [anon_sym_BSLASHPnotecite] = ACTIONS(5255), - [anon_sym_BSLASHfnotecite] = ACTIONS(5255), - [anon_sym_BSLASHlabel] = ACTIONS(5255), - [anon_sym_BSLASHref] = ACTIONS(5255), - [anon_sym_BSLASHeqref] = ACTIONS(5255), - [anon_sym_BSLASHvref] = ACTIONS(5255), - [anon_sym_BSLASHVref] = ACTIONS(5255), - [anon_sym_BSLASHautoref] = ACTIONS(5255), - [anon_sym_BSLASHpageref] = ACTIONS(5255), - [anon_sym_BSLASHcref] = ACTIONS(5255), - [anon_sym_BSLASHCref] = ACTIONS(5255), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnameCref] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHlabelcref] = ACTIONS(5255), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCrefrange] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnewlabel] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5253), - [anon_sym_BSLASHdef] = ACTIONS(5255), - [anon_sym_BSLASHlet] = ACTIONS(5255), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5255), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5255), - [anon_sym_BSLASHgls] = ACTIONS(5255), - [anon_sym_BSLASHGls] = ACTIONS(5255), - [anon_sym_BSLASHGLS] = ACTIONS(5255), - [anon_sym_BSLASHglspl] = ACTIONS(5255), - [anon_sym_BSLASHGlspl] = ACTIONS(5255), - [anon_sym_BSLASHGLSpl] = ACTIONS(5255), - [anon_sym_BSLASHglsdisp] = ACTIONS(5255), - [anon_sym_BSLASHglslink] = ACTIONS(5255), - [anon_sym_BSLASHglstext] = ACTIONS(5255), - [anon_sym_BSLASHGlstext] = ACTIONS(5255), - [anon_sym_BSLASHGLStext] = ACTIONS(5255), - [anon_sym_BSLASHglsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5255), - [anon_sym_BSLASHglsplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSplural] = ACTIONS(5255), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHglsname] = ACTIONS(5255), - [anon_sym_BSLASHGlsname] = ACTIONS(5255), - [anon_sym_BSLASHGLSname] = ACTIONS(5255), - [anon_sym_BSLASHglssymbol] = ACTIONS(5255), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5255), - [anon_sym_BSLASHglsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5255), - [anon_sym_BSLASHglsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5255), - [anon_sym_BSLASHglsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5255), - [anon_sym_BSLASHglsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5255), - [anon_sym_BSLASHglsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5255), - [anon_sym_BSLASHnewacronym] = ACTIONS(5255), - [anon_sym_BSLASHacrshort] = ACTIONS(5255), - [anon_sym_BSLASHAcrshort] = ACTIONS(5255), - [anon_sym_BSLASHACRshort] = ACTIONS(5255), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5255), - [anon_sym_BSLASHacrlong] = ACTIONS(5255), - [anon_sym_BSLASHAcrlong] = ACTIONS(5255), - [anon_sym_BSLASHACRlong] = ACTIONS(5255), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5255), - [anon_sym_BSLASHacrfull] = ACTIONS(5255), - [anon_sym_BSLASHAcrfull] = ACTIONS(5255), - [anon_sym_BSLASHACRfull] = ACTIONS(5255), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5255), - [anon_sym_BSLASHacs] = ACTIONS(5255), - [anon_sym_BSLASHAcs] = ACTIONS(5255), - [anon_sym_BSLASHacsp] = ACTIONS(5255), - [anon_sym_BSLASHAcsp] = ACTIONS(5255), - [anon_sym_BSLASHacl] = ACTIONS(5255), - [anon_sym_BSLASHAcl] = ACTIONS(5255), - [anon_sym_BSLASHaclp] = ACTIONS(5255), - [anon_sym_BSLASHAclp] = ACTIONS(5255), - [anon_sym_BSLASHacf] = ACTIONS(5255), - [anon_sym_BSLASHAcf] = ACTIONS(5255), - [anon_sym_BSLASHacfp] = ACTIONS(5255), - [anon_sym_BSLASHAcfp] = ACTIONS(5255), - [anon_sym_BSLASHac] = ACTIONS(5255), - [anon_sym_BSLASHAc] = ACTIONS(5255), - [anon_sym_BSLASHacp] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5255), - [anon_sym_BSLASHcolor] = ACTIONS(5255), - [anon_sym_BSLASHcolorbox] = ACTIONS(5255), - [anon_sym_BSLASHtextcolor] = ACTIONS(5255), - [anon_sym_BSLASHpagecolor] = ACTIONS(5255), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5255), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5255), - }, - [1060] = { - [sym_command_name] = ACTIONS(5251), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5251), - [anon_sym_LPAREN] = ACTIONS(5249), - [anon_sym_RPAREN] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5249), - [anon_sym_RBRACK] = ACTIONS(5249), - [anon_sym_COMMA] = ACTIONS(5249), - [anon_sym_EQ] = ACTIONS(5249), - [anon_sym_BSLASHpart] = ACTIONS(5251), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddpart] = ACTIONS(5251), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5249), - [anon_sym_BSLASHchapter] = ACTIONS(5251), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddchap] = ACTIONS(5251), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsection] = ACTIONS(5251), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddsec] = ACTIONS(5251), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubsection] = ACTIONS(5251), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5251), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHparagraph] = ACTIONS(5251), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5251), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5249), - [anon_sym_BSLASHitem] = ACTIONS(5251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5249), - [anon_sym_LBRACE] = ACTIONS(5249), - [sym_word] = ACTIONS(5251), - [sym_placeholder] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym__] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_BANG] = ACTIONS(5251), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5251), - [anon_sym_SQUOTE] = ACTIONS(5251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5249), - [anon_sym_DOLLAR] = ACTIONS(5251), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5249), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5249), - [anon_sym_BSLASHbegin] = ACTIONS(5251), - [anon_sym_BSLASHusepackage] = ACTIONS(5251), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5251), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5251), - [anon_sym_BSLASHinclude] = ACTIONS(5251), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5251), - [anon_sym_BSLASHinput] = ACTIONS(5251), - [anon_sym_BSLASHsubfile] = ACTIONS(5251), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5251), - [anon_sym_BSLASHbibliography] = ACTIONS(5251), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5251), - [anon_sym_BSLASHincludesvg] = ACTIONS(5251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5251), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5251), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5251), - [anon_sym_BSLASHimport] = ACTIONS(5251), - [anon_sym_BSLASHsubimport] = ACTIONS(5251), - [anon_sym_BSLASHinputfrom] = ACTIONS(5251), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5251), - [anon_sym_BSLASHincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHcaption] = ACTIONS(5251), - [anon_sym_BSLASHcite] = ACTIONS(5251), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCite] = ACTIONS(5251), - [anon_sym_BSLASHnocite] = ACTIONS(5251), - [anon_sym_BSLASHcitet] = ACTIONS(5251), - [anon_sym_BSLASHcitep] = ACTIONS(5251), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor] = ACTIONS(5251), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5251), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle] = ACTIONS(5251), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteyear] = ACTIONS(5251), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitedate] = ACTIONS(5251), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteurl] = ACTIONS(5251), - [anon_sym_BSLASHfullcite] = ACTIONS(5251), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5251), - [anon_sym_BSLASHcitealt] = ACTIONS(5251), - [anon_sym_BSLASHcitealp] = ACTIONS(5251), - [anon_sym_BSLASHcitetext] = ACTIONS(5251), - [anon_sym_BSLASHparencite] = ACTIONS(5251), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHParencite] = ACTIONS(5251), - [anon_sym_BSLASHfootcite] = ACTIONS(5251), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5251), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5251), - [anon_sym_BSLASHtextcite] = ACTIONS(5251), - [anon_sym_BSLASHTextcite] = ACTIONS(5251), - [anon_sym_BSLASHsmartcite] = ACTIONS(5251), - [anon_sym_BSLASHSmartcite] = ACTIONS(5251), - [anon_sym_BSLASHsupercite] = ACTIONS(5251), - [anon_sym_BSLASHautocite] = ACTIONS(5251), - [anon_sym_BSLASHAutocite] = ACTIONS(5251), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHvolcite] = ACTIONS(5251), - [anon_sym_BSLASHVolcite] = ACTIONS(5251), - [anon_sym_BSLASHpvolcite] = ACTIONS(5251), - [anon_sym_BSLASHPvolcite] = ACTIONS(5251), - [anon_sym_BSLASHfvolcite] = ACTIONS(5251), - [anon_sym_BSLASHftvolcite] = ACTIONS(5251), - [anon_sym_BSLASHsvolcite] = ACTIONS(5251), - [anon_sym_BSLASHSvolcite] = ACTIONS(5251), - [anon_sym_BSLASHtvolcite] = ACTIONS(5251), - [anon_sym_BSLASHTvolcite] = ACTIONS(5251), - [anon_sym_BSLASHavolcite] = ACTIONS(5251), - [anon_sym_BSLASHAvolcite] = ACTIONS(5251), - [anon_sym_BSLASHnotecite] = ACTIONS(5251), - [anon_sym_BSLASHNotecite] = ACTIONS(5251), - [anon_sym_BSLASHpnotecite] = ACTIONS(5251), - [anon_sym_BSLASHPnotecite] = ACTIONS(5251), - [anon_sym_BSLASHfnotecite] = ACTIONS(5251), - [anon_sym_BSLASHlabel] = ACTIONS(5251), - [anon_sym_BSLASHref] = ACTIONS(5251), - [anon_sym_BSLASHeqref] = ACTIONS(5251), - [anon_sym_BSLASHvref] = ACTIONS(5251), - [anon_sym_BSLASHVref] = ACTIONS(5251), - [anon_sym_BSLASHautoref] = ACTIONS(5251), - [anon_sym_BSLASHpageref] = ACTIONS(5251), - [anon_sym_BSLASHcref] = ACTIONS(5251), - [anon_sym_BSLASHCref] = ACTIONS(5251), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnameCref] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHlabelcref] = ACTIONS(5251), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange] = ACTIONS(5251), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnewlabel] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5251), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5251), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5251), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5249), - [anon_sym_BSLASHdef] = ACTIONS(5251), - [anon_sym_BSLASHlet] = ACTIONS(5251), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5251), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5251), - [anon_sym_BSLASHgls] = ACTIONS(5251), - [anon_sym_BSLASHGls] = ACTIONS(5251), - [anon_sym_BSLASHGLS] = ACTIONS(5251), - [anon_sym_BSLASHglspl] = ACTIONS(5251), - [anon_sym_BSLASHGlspl] = ACTIONS(5251), - [anon_sym_BSLASHGLSpl] = ACTIONS(5251), - [anon_sym_BSLASHglsdisp] = ACTIONS(5251), - [anon_sym_BSLASHglslink] = ACTIONS(5251), - [anon_sym_BSLASHglstext] = ACTIONS(5251), - [anon_sym_BSLASHGlstext] = ACTIONS(5251), - [anon_sym_BSLASHGLStext] = ACTIONS(5251), - [anon_sym_BSLASHglsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5251), - [anon_sym_BSLASHglsplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSplural] = ACTIONS(5251), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHglsname] = ACTIONS(5251), - [anon_sym_BSLASHGlsname] = ACTIONS(5251), - [anon_sym_BSLASHGLSname] = ACTIONS(5251), - [anon_sym_BSLASHglssymbol] = ACTIONS(5251), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5251), - [anon_sym_BSLASHglsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5251), - [anon_sym_BSLASHglsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5251), - [anon_sym_BSLASHglsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5251), - [anon_sym_BSLASHglsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5251), - [anon_sym_BSLASHglsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5251), - [anon_sym_BSLASHnewacronym] = ACTIONS(5251), - [anon_sym_BSLASHacrshort] = ACTIONS(5251), - [anon_sym_BSLASHAcrshort] = ACTIONS(5251), - [anon_sym_BSLASHACRshort] = ACTIONS(5251), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5251), - [anon_sym_BSLASHacrlong] = ACTIONS(5251), - [anon_sym_BSLASHAcrlong] = ACTIONS(5251), - [anon_sym_BSLASHACRlong] = ACTIONS(5251), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5251), - [anon_sym_BSLASHacrfull] = ACTIONS(5251), - [anon_sym_BSLASHAcrfull] = ACTIONS(5251), - [anon_sym_BSLASHACRfull] = ACTIONS(5251), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5251), - [anon_sym_BSLASHacs] = ACTIONS(5251), - [anon_sym_BSLASHAcs] = ACTIONS(5251), - [anon_sym_BSLASHacsp] = ACTIONS(5251), - [anon_sym_BSLASHAcsp] = ACTIONS(5251), - [anon_sym_BSLASHacl] = ACTIONS(5251), - [anon_sym_BSLASHAcl] = ACTIONS(5251), - [anon_sym_BSLASHaclp] = ACTIONS(5251), - [anon_sym_BSLASHAclp] = ACTIONS(5251), - [anon_sym_BSLASHacf] = ACTIONS(5251), - [anon_sym_BSLASHAcf] = ACTIONS(5251), - [anon_sym_BSLASHacfp] = ACTIONS(5251), - [anon_sym_BSLASHAcfp] = ACTIONS(5251), - [anon_sym_BSLASHac] = ACTIONS(5251), - [anon_sym_BSLASHAc] = ACTIONS(5251), - [anon_sym_BSLASHacp] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5251), - [anon_sym_BSLASHcolor] = ACTIONS(5251), - [anon_sym_BSLASHcolorbox] = ACTIONS(5251), - [anon_sym_BSLASHtextcolor] = ACTIONS(5251), - [anon_sym_BSLASHpagecolor] = ACTIONS(5251), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5251), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5251), - }, - [1061] = { - [sym_command_name] = ACTIONS(5247), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5247), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_RPAREN] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_RBRACK] = ACTIONS(5245), - [anon_sym_COMMA] = ACTIONS(5245), - [anon_sym_EQ] = ACTIONS(5245), - [anon_sym_BSLASHpart] = ACTIONS(5247), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddpart] = ACTIONS(5247), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5245), - [anon_sym_BSLASHchapter] = ACTIONS(5247), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddchap] = ACTIONS(5247), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsection] = ACTIONS(5247), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddsec] = ACTIONS(5247), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubsection] = ACTIONS(5247), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5247), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHparagraph] = ACTIONS(5247), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5245), - [anon_sym_BSLASHitem] = ACTIONS(5247), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5245), - [anon_sym_LBRACE] = ACTIONS(5245), - [sym_word] = ACTIONS(5247), - [sym_placeholder] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_SLASH] = ACTIONS(5247), - [anon_sym_CARET] = ACTIONS(5247), - [anon_sym__] = ACTIONS(5247), - [anon_sym_LT] = ACTIONS(5247), - [anon_sym_GT] = ACTIONS(5247), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_PIPE] = ACTIONS(5247), - [anon_sym_COLON] = ACTIONS(5247), - [anon_sym_SQUOTE] = ACTIONS(5247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5245), - [anon_sym_DOLLAR] = ACTIONS(5247), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5245), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5245), - [anon_sym_BSLASHbegin] = ACTIONS(5247), - [anon_sym_BSLASHusepackage] = ACTIONS(5247), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5247), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5247), - [anon_sym_BSLASHinclude] = ACTIONS(5247), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5247), - [anon_sym_BSLASHinput] = ACTIONS(5247), - [anon_sym_BSLASHsubfile] = ACTIONS(5247), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5247), - [anon_sym_BSLASHbibliography] = ACTIONS(5247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5247), - [anon_sym_BSLASHincludesvg] = ACTIONS(5247), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5247), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5247), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5247), - [anon_sym_BSLASHimport] = ACTIONS(5247), - [anon_sym_BSLASHsubimport] = ACTIONS(5247), - [anon_sym_BSLASHinputfrom] = ACTIONS(5247), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5247), - [anon_sym_BSLASHincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHcaption] = ACTIONS(5247), - [anon_sym_BSLASHcite] = ACTIONS(5247), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCite] = ACTIONS(5247), - [anon_sym_BSLASHnocite] = ACTIONS(5247), - [anon_sym_BSLASHcitet] = ACTIONS(5247), - [anon_sym_BSLASHcitep] = ACTIONS(5247), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteyear] = ACTIONS(5247), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitedate] = ACTIONS(5247), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteurl] = ACTIONS(5247), - [anon_sym_BSLASHfullcite] = ACTIONS(5247), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5247), - [anon_sym_BSLASHcitealt] = ACTIONS(5247), - [anon_sym_BSLASHcitealp] = ACTIONS(5247), - [anon_sym_BSLASHcitetext] = ACTIONS(5247), - [anon_sym_BSLASHparencite] = ACTIONS(5247), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHParencite] = ACTIONS(5247), - [anon_sym_BSLASHfootcite] = ACTIONS(5247), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5247), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5247), - [anon_sym_BSLASHtextcite] = ACTIONS(5247), - [anon_sym_BSLASHTextcite] = ACTIONS(5247), - [anon_sym_BSLASHsmartcite] = ACTIONS(5247), - [anon_sym_BSLASHSmartcite] = ACTIONS(5247), - [anon_sym_BSLASHsupercite] = ACTIONS(5247), - [anon_sym_BSLASHautocite] = ACTIONS(5247), - [anon_sym_BSLASHAutocite] = ACTIONS(5247), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHvolcite] = ACTIONS(5247), - [anon_sym_BSLASHVolcite] = ACTIONS(5247), - [anon_sym_BSLASHpvolcite] = ACTIONS(5247), - [anon_sym_BSLASHPvolcite] = ACTIONS(5247), - [anon_sym_BSLASHfvolcite] = ACTIONS(5247), - [anon_sym_BSLASHftvolcite] = ACTIONS(5247), - [anon_sym_BSLASHsvolcite] = ACTIONS(5247), - [anon_sym_BSLASHSvolcite] = ACTIONS(5247), - [anon_sym_BSLASHtvolcite] = ACTIONS(5247), - [anon_sym_BSLASHTvolcite] = ACTIONS(5247), - [anon_sym_BSLASHavolcite] = ACTIONS(5247), - [anon_sym_BSLASHAvolcite] = ACTIONS(5247), - [anon_sym_BSLASHnotecite] = ACTIONS(5247), - [anon_sym_BSLASHNotecite] = ACTIONS(5247), - [anon_sym_BSLASHpnotecite] = ACTIONS(5247), - [anon_sym_BSLASHPnotecite] = ACTIONS(5247), - [anon_sym_BSLASHfnotecite] = ACTIONS(5247), - [anon_sym_BSLASHlabel] = ACTIONS(5247), - [anon_sym_BSLASHref] = ACTIONS(5247), - [anon_sym_BSLASHeqref] = ACTIONS(5247), - [anon_sym_BSLASHvref] = ACTIONS(5247), - [anon_sym_BSLASHVref] = ACTIONS(5247), - [anon_sym_BSLASHautoref] = ACTIONS(5247), - [anon_sym_BSLASHpageref] = ACTIONS(5247), - [anon_sym_BSLASHcref] = ACTIONS(5247), - [anon_sym_BSLASHCref] = ACTIONS(5247), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnameCref] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHlabelcref] = ACTIONS(5247), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnewlabel] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5245), - [anon_sym_BSLASHdef] = ACTIONS(5247), - [anon_sym_BSLASHlet] = ACTIONS(5247), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5247), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5247), - [anon_sym_BSLASHgls] = ACTIONS(5247), - [anon_sym_BSLASHGls] = ACTIONS(5247), - [anon_sym_BSLASHGLS] = ACTIONS(5247), - [anon_sym_BSLASHglspl] = ACTIONS(5247), - [anon_sym_BSLASHGlspl] = ACTIONS(5247), - [anon_sym_BSLASHGLSpl] = ACTIONS(5247), - [anon_sym_BSLASHglsdisp] = ACTIONS(5247), - [anon_sym_BSLASHglslink] = ACTIONS(5247), - [anon_sym_BSLASHglstext] = ACTIONS(5247), - [anon_sym_BSLASHGlstext] = ACTIONS(5247), - [anon_sym_BSLASHGLStext] = ACTIONS(5247), - [anon_sym_BSLASHglsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5247), - [anon_sym_BSLASHglsplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSplural] = ACTIONS(5247), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHglsname] = ACTIONS(5247), - [anon_sym_BSLASHGlsname] = ACTIONS(5247), - [anon_sym_BSLASHGLSname] = ACTIONS(5247), - [anon_sym_BSLASHglssymbol] = ACTIONS(5247), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5247), - [anon_sym_BSLASHglsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5247), - [anon_sym_BSLASHglsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5247), - [anon_sym_BSLASHglsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5247), - [anon_sym_BSLASHglsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5247), - [anon_sym_BSLASHglsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5247), - [anon_sym_BSLASHnewacronym] = ACTIONS(5247), - [anon_sym_BSLASHacrshort] = ACTIONS(5247), - [anon_sym_BSLASHAcrshort] = ACTIONS(5247), - [anon_sym_BSLASHACRshort] = ACTIONS(5247), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5247), - [anon_sym_BSLASHacrlong] = ACTIONS(5247), - [anon_sym_BSLASHAcrlong] = ACTIONS(5247), - [anon_sym_BSLASHACRlong] = ACTIONS(5247), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5247), - [anon_sym_BSLASHacrfull] = ACTIONS(5247), - [anon_sym_BSLASHAcrfull] = ACTIONS(5247), - [anon_sym_BSLASHACRfull] = ACTIONS(5247), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5247), - [anon_sym_BSLASHacs] = ACTIONS(5247), - [anon_sym_BSLASHAcs] = ACTIONS(5247), - [anon_sym_BSLASHacsp] = ACTIONS(5247), - [anon_sym_BSLASHAcsp] = ACTIONS(5247), - [anon_sym_BSLASHacl] = ACTIONS(5247), - [anon_sym_BSLASHAcl] = ACTIONS(5247), - [anon_sym_BSLASHaclp] = ACTIONS(5247), - [anon_sym_BSLASHAclp] = ACTIONS(5247), - [anon_sym_BSLASHacf] = ACTIONS(5247), - [anon_sym_BSLASHAcf] = ACTIONS(5247), - [anon_sym_BSLASHacfp] = ACTIONS(5247), - [anon_sym_BSLASHAcfp] = ACTIONS(5247), - [anon_sym_BSLASHac] = ACTIONS(5247), - [anon_sym_BSLASHAc] = ACTIONS(5247), - [anon_sym_BSLASHacp] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5247), - [anon_sym_BSLASHcolor] = ACTIONS(5247), - [anon_sym_BSLASHcolorbox] = ACTIONS(5247), - [anon_sym_BSLASHtextcolor] = ACTIONS(5247), - [anon_sym_BSLASHpagecolor] = ACTIONS(5247), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5247), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5247), - }, - [1062] = { - [sym_command_name] = ACTIONS(5243), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5243), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_RPAREN] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_RBRACK] = ACTIONS(5241), - [anon_sym_COMMA] = ACTIONS(5241), - [anon_sym_EQ] = ACTIONS(5241), - [anon_sym_BSLASHpart] = ACTIONS(5243), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddpart] = ACTIONS(5243), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5241), - [anon_sym_BSLASHchapter] = ACTIONS(5243), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddchap] = ACTIONS(5243), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsection] = ACTIONS(5243), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddsec] = ACTIONS(5243), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubsection] = ACTIONS(5243), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5243), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHparagraph] = ACTIONS(5243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5243), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5241), - [anon_sym_BSLASHitem] = ACTIONS(5243), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5241), - [anon_sym_LBRACE] = ACTIONS(5241), - [sym_word] = ACTIONS(5243), - [sym_placeholder] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_STAR] = ACTIONS(5243), - [anon_sym_SLASH] = ACTIONS(5243), - [anon_sym_CARET] = ACTIONS(5243), - [anon_sym__] = ACTIONS(5243), - [anon_sym_LT] = ACTIONS(5243), - [anon_sym_GT] = ACTIONS(5243), - [anon_sym_BANG] = ACTIONS(5243), - [anon_sym_PIPE] = ACTIONS(5243), - [anon_sym_COLON] = ACTIONS(5243), - [anon_sym_SQUOTE] = ACTIONS(5243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5241), - [anon_sym_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5241), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5241), - [anon_sym_BSLASHbegin] = ACTIONS(5243), - [anon_sym_BSLASHusepackage] = ACTIONS(5243), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5243), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5243), - [anon_sym_BSLASHinclude] = ACTIONS(5243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5243), - [anon_sym_BSLASHinput] = ACTIONS(5243), - [anon_sym_BSLASHsubfile] = ACTIONS(5243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5243), - [anon_sym_BSLASHbibliography] = ACTIONS(5243), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5243), - [anon_sym_BSLASHincludesvg] = ACTIONS(5243), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5243), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5243), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5243), - [anon_sym_BSLASHimport] = ACTIONS(5243), - [anon_sym_BSLASHsubimport] = ACTIONS(5243), - [anon_sym_BSLASHinputfrom] = ACTIONS(5243), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5243), - [anon_sym_BSLASHincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHcaption] = ACTIONS(5243), - [anon_sym_BSLASHcite] = ACTIONS(5243), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCite] = ACTIONS(5243), - [anon_sym_BSLASHnocite] = ACTIONS(5243), - [anon_sym_BSLASHcitet] = ACTIONS(5243), - [anon_sym_BSLASHcitep] = ACTIONS(5243), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteyear] = ACTIONS(5243), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitedate] = ACTIONS(5243), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteurl] = ACTIONS(5243), - [anon_sym_BSLASHfullcite] = ACTIONS(5243), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5243), - [anon_sym_BSLASHcitealt] = ACTIONS(5243), - [anon_sym_BSLASHcitealp] = ACTIONS(5243), - [anon_sym_BSLASHcitetext] = ACTIONS(5243), - [anon_sym_BSLASHparencite] = ACTIONS(5243), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHParencite] = ACTIONS(5243), - [anon_sym_BSLASHfootcite] = ACTIONS(5243), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5243), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5243), - [anon_sym_BSLASHtextcite] = ACTIONS(5243), - [anon_sym_BSLASHTextcite] = ACTIONS(5243), - [anon_sym_BSLASHsmartcite] = ACTIONS(5243), - [anon_sym_BSLASHSmartcite] = ACTIONS(5243), - [anon_sym_BSLASHsupercite] = ACTIONS(5243), - [anon_sym_BSLASHautocite] = ACTIONS(5243), - [anon_sym_BSLASHAutocite] = ACTIONS(5243), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHvolcite] = ACTIONS(5243), - [anon_sym_BSLASHVolcite] = ACTIONS(5243), - [anon_sym_BSLASHpvolcite] = ACTIONS(5243), - [anon_sym_BSLASHPvolcite] = ACTIONS(5243), - [anon_sym_BSLASHfvolcite] = ACTIONS(5243), - [anon_sym_BSLASHftvolcite] = ACTIONS(5243), - [anon_sym_BSLASHsvolcite] = ACTIONS(5243), - [anon_sym_BSLASHSvolcite] = ACTIONS(5243), - [anon_sym_BSLASHtvolcite] = ACTIONS(5243), - [anon_sym_BSLASHTvolcite] = ACTIONS(5243), - [anon_sym_BSLASHavolcite] = ACTIONS(5243), - [anon_sym_BSLASHAvolcite] = ACTIONS(5243), - [anon_sym_BSLASHnotecite] = ACTIONS(5243), - [anon_sym_BSLASHNotecite] = ACTIONS(5243), - [anon_sym_BSLASHpnotecite] = ACTIONS(5243), - [anon_sym_BSLASHPnotecite] = ACTIONS(5243), - [anon_sym_BSLASHfnotecite] = ACTIONS(5243), - [anon_sym_BSLASHlabel] = ACTIONS(5243), - [anon_sym_BSLASHref] = ACTIONS(5243), - [anon_sym_BSLASHeqref] = ACTIONS(5243), - [anon_sym_BSLASHvref] = ACTIONS(5243), - [anon_sym_BSLASHVref] = ACTIONS(5243), - [anon_sym_BSLASHautoref] = ACTIONS(5243), - [anon_sym_BSLASHpageref] = ACTIONS(5243), - [anon_sym_BSLASHcref] = ACTIONS(5243), - [anon_sym_BSLASHCref] = ACTIONS(5243), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnameCref] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHlabelcref] = ACTIONS(5243), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnewlabel] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5241), - [anon_sym_BSLASHdef] = ACTIONS(5243), - [anon_sym_BSLASHlet] = ACTIONS(5243), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5243), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5243), - [anon_sym_BSLASHgls] = ACTIONS(5243), - [anon_sym_BSLASHGls] = ACTIONS(5243), - [anon_sym_BSLASHGLS] = ACTIONS(5243), - [anon_sym_BSLASHglspl] = ACTIONS(5243), - [anon_sym_BSLASHGlspl] = ACTIONS(5243), - [anon_sym_BSLASHGLSpl] = ACTIONS(5243), - [anon_sym_BSLASHglsdisp] = ACTIONS(5243), - [anon_sym_BSLASHglslink] = ACTIONS(5243), - [anon_sym_BSLASHglstext] = ACTIONS(5243), - [anon_sym_BSLASHGlstext] = ACTIONS(5243), - [anon_sym_BSLASHGLStext] = ACTIONS(5243), - [anon_sym_BSLASHglsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5243), - [anon_sym_BSLASHglsplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSplural] = ACTIONS(5243), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHglsname] = ACTIONS(5243), - [anon_sym_BSLASHGlsname] = ACTIONS(5243), - [anon_sym_BSLASHGLSname] = ACTIONS(5243), - [anon_sym_BSLASHglssymbol] = ACTIONS(5243), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5243), - [anon_sym_BSLASHglsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5243), - [anon_sym_BSLASHglsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5243), - [anon_sym_BSLASHglsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5243), - [anon_sym_BSLASHglsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5243), - [anon_sym_BSLASHglsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5243), - [anon_sym_BSLASHnewacronym] = ACTIONS(5243), - [anon_sym_BSLASHacrshort] = ACTIONS(5243), - [anon_sym_BSLASHAcrshort] = ACTIONS(5243), - [anon_sym_BSLASHACRshort] = ACTIONS(5243), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5243), - [anon_sym_BSLASHacrlong] = ACTIONS(5243), - [anon_sym_BSLASHAcrlong] = ACTIONS(5243), - [anon_sym_BSLASHACRlong] = ACTIONS(5243), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5243), - [anon_sym_BSLASHacrfull] = ACTIONS(5243), - [anon_sym_BSLASHAcrfull] = ACTIONS(5243), - [anon_sym_BSLASHACRfull] = ACTIONS(5243), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5243), - [anon_sym_BSLASHacs] = ACTIONS(5243), - [anon_sym_BSLASHAcs] = ACTIONS(5243), - [anon_sym_BSLASHacsp] = ACTIONS(5243), - [anon_sym_BSLASHAcsp] = ACTIONS(5243), - [anon_sym_BSLASHacl] = ACTIONS(5243), - [anon_sym_BSLASHAcl] = ACTIONS(5243), - [anon_sym_BSLASHaclp] = ACTIONS(5243), - [anon_sym_BSLASHAclp] = ACTIONS(5243), - [anon_sym_BSLASHacf] = ACTIONS(5243), - [anon_sym_BSLASHAcf] = ACTIONS(5243), - [anon_sym_BSLASHacfp] = ACTIONS(5243), - [anon_sym_BSLASHAcfp] = ACTIONS(5243), - [anon_sym_BSLASHac] = ACTIONS(5243), - [anon_sym_BSLASHAc] = ACTIONS(5243), - [anon_sym_BSLASHacp] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5243), - [anon_sym_BSLASHcolor] = ACTIONS(5243), - [anon_sym_BSLASHcolorbox] = ACTIONS(5243), - [anon_sym_BSLASHtextcolor] = ACTIONS(5243), - [anon_sym_BSLASHpagecolor] = ACTIONS(5243), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5243), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5243), - }, - [1063] = { - [sym_command_name] = ACTIONS(5239), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5237), - [anon_sym_RPAREN] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_RBRACK] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_EQ] = ACTIONS(5237), - [anon_sym_BSLASHpart] = ACTIONS(5239), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddpart] = ACTIONS(5239), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5237), - [anon_sym_BSLASHchapter] = ACTIONS(5239), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddchap] = ACTIONS(5239), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsection] = ACTIONS(5239), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddsec] = ACTIONS(5239), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubsection] = ACTIONS(5239), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHparagraph] = ACTIONS(5239), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5239), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5237), - [anon_sym_BSLASHitem] = ACTIONS(5239), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5237), - [sym_word] = ACTIONS(5239), - [sym_placeholder] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym__] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_BANG] = ACTIONS(5239), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_COLON] = ACTIONS(5239), - [anon_sym_SQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), - [anon_sym_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5237), - [anon_sym_BSLASHbegin] = ACTIONS(5239), - [anon_sym_BSLASHusepackage] = ACTIONS(5239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), - [anon_sym_BSLASHinclude] = ACTIONS(5239), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), - [anon_sym_BSLASHinput] = ACTIONS(5239), - [anon_sym_BSLASHsubfile] = ACTIONS(5239), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), - [anon_sym_BSLASHbibliography] = ACTIONS(5239), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), - [anon_sym_BSLASHincludesvg] = ACTIONS(5239), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), - [anon_sym_BSLASHimport] = ACTIONS(5239), - [anon_sym_BSLASHsubimport] = ACTIONS(5239), - [anon_sym_BSLASHinputfrom] = ACTIONS(5239), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), - [anon_sym_BSLASHincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHcaption] = ACTIONS(5239), - [anon_sym_BSLASHcite] = ACTIONS(5239), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCite] = ACTIONS(5239), - [anon_sym_BSLASHnocite] = ACTIONS(5239), - [anon_sym_BSLASHcitet] = ACTIONS(5239), - [anon_sym_BSLASHcitep] = ACTIONS(5239), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteyear] = ACTIONS(5239), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitedate] = ACTIONS(5239), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteurl] = ACTIONS(5239), - [anon_sym_BSLASHfullcite] = ACTIONS(5239), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), - [anon_sym_BSLASHcitealt] = ACTIONS(5239), - [anon_sym_BSLASHcitealp] = ACTIONS(5239), - [anon_sym_BSLASHcitetext] = ACTIONS(5239), - [anon_sym_BSLASHparencite] = ACTIONS(5239), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHParencite] = ACTIONS(5239), - [anon_sym_BSLASHfootcite] = ACTIONS(5239), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), - [anon_sym_BSLASHtextcite] = ACTIONS(5239), - [anon_sym_BSLASHTextcite] = ACTIONS(5239), - [anon_sym_BSLASHsmartcite] = ACTIONS(5239), - [anon_sym_BSLASHSmartcite] = ACTIONS(5239), - [anon_sym_BSLASHsupercite] = ACTIONS(5239), - [anon_sym_BSLASHautocite] = ACTIONS(5239), - [anon_sym_BSLASHAutocite] = ACTIONS(5239), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHvolcite] = ACTIONS(5239), - [anon_sym_BSLASHVolcite] = ACTIONS(5239), - [anon_sym_BSLASHpvolcite] = ACTIONS(5239), - [anon_sym_BSLASHPvolcite] = ACTIONS(5239), - [anon_sym_BSLASHfvolcite] = ACTIONS(5239), - [anon_sym_BSLASHftvolcite] = ACTIONS(5239), - [anon_sym_BSLASHsvolcite] = ACTIONS(5239), - [anon_sym_BSLASHSvolcite] = ACTIONS(5239), - [anon_sym_BSLASHtvolcite] = ACTIONS(5239), - [anon_sym_BSLASHTvolcite] = ACTIONS(5239), - [anon_sym_BSLASHavolcite] = ACTIONS(5239), - [anon_sym_BSLASHAvolcite] = ACTIONS(5239), - [anon_sym_BSLASHnotecite] = ACTIONS(5239), - [anon_sym_BSLASHNotecite] = ACTIONS(5239), - [anon_sym_BSLASHpnotecite] = ACTIONS(5239), - [anon_sym_BSLASHPnotecite] = ACTIONS(5239), - [anon_sym_BSLASHfnotecite] = ACTIONS(5239), - [anon_sym_BSLASHlabel] = ACTIONS(5239), - [anon_sym_BSLASHref] = ACTIONS(5239), - [anon_sym_BSLASHeqref] = ACTIONS(5239), - [anon_sym_BSLASHvref] = ACTIONS(5239), - [anon_sym_BSLASHVref] = ACTIONS(5239), - [anon_sym_BSLASHautoref] = ACTIONS(5239), - [anon_sym_BSLASHpageref] = ACTIONS(5239), - [anon_sym_BSLASHcref] = ACTIONS(5239), - [anon_sym_BSLASHCref] = ACTIONS(5239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnameCref] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHlabelcref] = ACTIONS(5239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnewlabel] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), - [anon_sym_BSLASHdef] = ACTIONS(5239), - [anon_sym_BSLASHlet] = ACTIONS(5239), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), - [anon_sym_BSLASHgls] = ACTIONS(5239), - [anon_sym_BSLASHGls] = ACTIONS(5239), - [anon_sym_BSLASHGLS] = ACTIONS(5239), - [anon_sym_BSLASHglspl] = ACTIONS(5239), - [anon_sym_BSLASHGlspl] = ACTIONS(5239), - [anon_sym_BSLASHGLSpl] = ACTIONS(5239), - [anon_sym_BSLASHglsdisp] = ACTIONS(5239), - [anon_sym_BSLASHglslink] = ACTIONS(5239), - [anon_sym_BSLASHglstext] = ACTIONS(5239), - [anon_sym_BSLASHGlstext] = ACTIONS(5239), - [anon_sym_BSLASHGLStext] = ACTIONS(5239), - [anon_sym_BSLASHglsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), - [anon_sym_BSLASHglsplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSplural] = ACTIONS(5239), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHglsname] = ACTIONS(5239), - [anon_sym_BSLASHGlsname] = ACTIONS(5239), - [anon_sym_BSLASHGLSname] = ACTIONS(5239), - [anon_sym_BSLASHglssymbol] = ACTIONS(5239), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), - [anon_sym_BSLASHglsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), - [anon_sym_BSLASHglsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), - [anon_sym_BSLASHglsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), - [anon_sym_BSLASHglsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), - [anon_sym_BSLASHglsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), - [anon_sym_BSLASHnewacronym] = ACTIONS(5239), - [anon_sym_BSLASHacrshort] = ACTIONS(5239), - [anon_sym_BSLASHAcrshort] = ACTIONS(5239), - [anon_sym_BSLASHACRshort] = ACTIONS(5239), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), - [anon_sym_BSLASHacrlong] = ACTIONS(5239), - [anon_sym_BSLASHAcrlong] = ACTIONS(5239), - [anon_sym_BSLASHACRlong] = ACTIONS(5239), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), - [anon_sym_BSLASHacrfull] = ACTIONS(5239), - [anon_sym_BSLASHAcrfull] = ACTIONS(5239), - [anon_sym_BSLASHACRfull] = ACTIONS(5239), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), - [anon_sym_BSLASHacs] = ACTIONS(5239), - [anon_sym_BSLASHAcs] = ACTIONS(5239), - [anon_sym_BSLASHacsp] = ACTIONS(5239), - [anon_sym_BSLASHAcsp] = ACTIONS(5239), - [anon_sym_BSLASHacl] = ACTIONS(5239), - [anon_sym_BSLASHAcl] = ACTIONS(5239), - [anon_sym_BSLASHaclp] = ACTIONS(5239), - [anon_sym_BSLASHAclp] = ACTIONS(5239), - [anon_sym_BSLASHacf] = ACTIONS(5239), - [anon_sym_BSLASHAcf] = ACTIONS(5239), - [anon_sym_BSLASHacfp] = ACTIONS(5239), - [anon_sym_BSLASHAcfp] = ACTIONS(5239), - [anon_sym_BSLASHac] = ACTIONS(5239), - [anon_sym_BSLASHAc] = ACTIONS(5239), - [anon_sym_BSLASHacp] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), - [anon_sym_BSLASHcolor] = ACTIONS(5239), - [anon_sym_BSLASHcolorbox] = ACTIONS(5239), - [anon_sym_BSLASHtextcolor] = ACTIONS(5239), - [anon_sym_BSLASHpagecolor] = ACTIONS(5239), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), - }, - [1064] = { - [sym_command_name] = ACTIONS(5235), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5235), - [anon_sym_LPAREN] = ACTIONS(5233), - [anon_sym_RPAREN] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_RBRACK] = ACTIONS(5233), - [anon_sym_COMMA] = ACTIONS(5233), - [anon_sym_EQ] = ACTIONS(5233), - [anon_sym_BSLASHpart] = ACTIONS(5235), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddpart] = ACTIONS(5235), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), - [anon_sym_BSLASHchapter] = ACTIONS(5235), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddchap] = ACTIONS(5235), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsection] = ACTIONS(5235), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddsec] = ACTIONS(5235), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubsection] = ACTIONS(5235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHparagraph] = ACTIONS(5235), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), - [anon_sym_BSLASHitem] = ACTIONS(5235), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5233), - [sym_word] = ACTIONS(5235), - [sym_placeholder] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_CARET] = ACTIONS(5235), - [anon_sym__] = ACTIONS(5235), - [anon_sym_LT] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5235), - [anon_sym_BANG] = ACTIONS(5235), - [anon_sym_PIPE] = ACTIONS(5235), - [anon_sym_COLON] = ACTIONS(5235), - [anon_sym_SQUOTE] = ACTIONS(5235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), - [anon_sym_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5233), - [anon_sym_BSLASHbegin] = ACTIONS(5235), - [anon_sym_BSLASHusepackage] = ACTIONS(5235), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), - [anon_sym_BSLASHinclude] = ACTIONS(5235), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), - [anon_sym_BSLASHinput] = ACTIONS(5235), - [anon_sym_BSLASHsubfile] = ACTIONS(5235), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), - [anon_sym_BSLASHbibliography] = ACTIONS(5235), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), - [anon_sym_BSLASHincludesvg] = ACTIONS(5235), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), - [anon_sym_BSLASHimport] = ACTIONS(5235), - [anon_sym_BSLASHsubimport] = ACTIONS(5235), - [anon_sym_BSLASHinputfrom] = ACTIONS(5235), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), - [anon_sym_BSLASHincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHcaption] = ACTIONS(5235), - [anon_sym_BSLASHcite] = ACTIONS(5235), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCite] = ACTIONS(5235), - [anon_sym_BSLASHnocite] = ACTIONS(5235), - [anon_sym_BSLASHcitet] = ACTIONS(5235), - [anon_sym_BSLASHcitep] = ACTIONS(5235), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteyear] = ACTIONS(5235), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitedate] = ACTIONS(5235), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteurl] = ACTIONS(5235), - [anon_sym_BSLASHfullcite] = ACTIONS(5235), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), - [anon_sym_BSLASHcitealt] = ACTIONS(5235), - [anon_sym_BSLASHcitealp] = ACTIONS(5235), - [anon_sym_BSLASHcitetext] = ACTIONS(5235), - [anon_sym_BSLASHparencite] = ACTIONS(5235), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHParencite] = ACTIONS(5235), - [anon_sym_BSLASHfootcite] = ACTIONS(5235), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), - [anon_sym_BSLASHtextcite] = ACTIONS(5235), - [anon_sym_BSLASHTextcite] = ACTIONS(5235), - [anon_sym_BSLASHsmartcite] = ACTIONS(5235), - [anon_sym_BSLASHSmartcite] = ACTIONS(5235), - [anon_sym_BSLASHsupercite] = ACTIONS(5235), - [anon_sym_BSLASHautocite] = ACTIONS(5235), - [anon_sym_BSLASHAutocite] = ACTIONS(5235), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHvolcite] = ACTIONS(5235), - [anon_sym_BSLASHVolcite] = ACTIONS(5235), - [anon_sym_BSLASHpvolcite] = ACTIONS(5235), - [anon_sym_BSLASHPvolcite] = ACTIONS(5235), - [anon_sym_BSLASHfvolcite] = ACTIONS(5235), - [anon_sym_BSLASHftvolcite] = ACTIONS(5235), - [anon_sym_BSLASHsvolcite] = ACTIONS(5235), - [anon_sym_BSLASHSvolcite] = ACTIONS(5235), - [anon_sym_BSLASHtvolcite] = ACTIONS(5235), - [anon_sym_BSLASHTvolcite] = ACTIONS(5235), - [anon_sym_BSLASHavolcite] = ACTIONS(5235), - [anon_sym_BSLASHAvolcite] = ACTIONS(5235), - [anon_sym_BSLASHnotecite] = ACTIONS(5235), - [anon_sym_BSLASHNotecite] = ACTIONS(5235), - [anon_sym_BSLASHpnotecite] = ACTIONS(5235), - [anon_sym_BSLASHPnotecite] = ACTIONS(5235), - [anon_sym_BSLASHfnotecite] = ACTIONS(5235), - [anon_sym_BSLASHlabel] = ACTIONS(5235), - [anon_sym_BSLASHref] = ACTIONS(5235), - [anon_sym_BSLASHeqref] = ACTIONS(5235), - [anon_sym_BSLASHvref] = ACTIONS(5235), - [anon_sym_BSLASHVref] = ACTIONS(5235), - [anon_sym_BSLASHautoref] = ACTIONS(5235), - [anon_sym_BSLASHpageref] = ACTIONS(5235), - [anon_sym_BSLASHcref] = ACTIONS(5235), - [anon_sym_BSLASHCref] = ACTIONS(5235), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnameCref] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHlabelcref] = ACTIONS(5235), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnewlabel] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), - [anon_sym_BSLASHdef] = ACTIONS(5235), - [anon_sym_BSLASHlet] = ACTIONS(5235), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), - [anon_sym_BSLASHgls] = ACTIONS(5235), - [anon_sym_BSLASHGls] = ACTIONS(5235), - [anon_sym_BSLASHGLS] = ACTIONS(5235), - [anon_sym_BSLASHglspl] = ACTIONS(5235), - [anon_sym_BSLASHGlspl] = ACTIONS(5235), - [anon_sym_BSLASHGLSpl] = ACTIONS(5235), - [anon_sym_BSLASHglsdisp] = ACTIONS(5235), - [anon_sym_BSLASHglslink] = ACTIONS(5235), - [anon_sym_BSLASHglstext] = ACTIONS(5235), - [anon_sym_BSLASHGlstext] = ACTIONS(5235), - [anon_sym_BSLASHGLStext] = ACTIONS(5235), - [anon_sym_BSLASHglsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), - [anon_sym_BSLASHglsplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSplural] = ACTIONS(5235), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHglsname] = ACTIONS(5235), - [anon_sym_BSLASHGlsname] = ACTIONS(5235), - [anon_sym_BSLASHGLSname] = ACTIONS(5235), - [anon_sym_BSLASHglssymbol] = ACTIONS(5235), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), - [anon_sym_BSLASHglsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), - [anon_sym_BSLASHglsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), - [anon_sym_BSLASHglsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), - [anon_sym_BSLASHglsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), - [anon_sym_BSLASHglsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), - [anon_sym_BSLASHnewacronym] = ACTIONS(5235), - [anon_sym_BSLASHacrshort] = ACTIONS(5235), - [anon_sym_BSLASHAcrshort] = ACTIONS(5235), - [anon_sym_BSLASHACRshort] = ACTIONS(5235), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), - [anon_sym_BSLASHacrlong] = ACTIONS(5235), - [anon_sym_BSLASHAcrlong] = ACTIONS(5235), - [anon_sym_BSLASHACRlong] = ACTIONS(5235), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), - [anon_sym_BSLASHacrfull] = ACTIONS(5235), - [anon_sym_BSLASHAcrfull] = ACTIONS(5235), - [anon_sym_BSLASHACRfull] = ACTIONS(5235), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), - [anon_sym_BSLASHacs] = ACTIONS(5235), - [anon_sym_BSLASHAcs] = ACTIONS(5235), - [anon_sym_BSLASHacsp] = ACTIONS(5235), - [anon_sym_BSLASHAcsp] = ACTIONS(5235), - [anon_sym_BSLASHacl] = ACTIONS(5235), - [anon_sym_BSLASHAcl] = ACTIONS(5235), - [anon_sym_BSLASHaclp] = ACTIONS(5235), - [anon_sym_BSLASHAclp] = ACTIONS(5235), - [anon_sym_BSLASHacf] = ACTIONS(5235), - [anon_sym_BSLASHAcf] = ACTIONS(5235), - [anon_sym_BSLASHacfp] = ACTIONS(5235), - [anon_sym_BSLASHAcfp] = ACTIONS(5235), - [anon_sym_BSLASHac] = ACTIONS(5235), - [anon_sym_BSLASHAc] = ACTIONS(5235), - [anon_sym_BSLASHacp] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), - [anon_sym_BSLASHcolor] = ACTIONS(5235), - [anon_sym_BSLASHcolorbox] = ACTIONS(5235), - [anon_sym_BSLASHtextcolor] = ACTIONS(5235), - [anon_sym_BSLASHpagecolor] = ACTIONS(5235), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), - }, - [1065] = { - [sym_command_name] = ACTIONS(5231), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5231), - [anon_sym_LPAREN] = ACTIONS(5229), - [anon_sym_RPAREN] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_RBRACK] = ACTIONS(5229), - [anon_sym_COMMA] = ACTIONS(5229), - [anon_sym_EQ] = ACTIONS(5229), - [anon_sym_BSLASHpart] = ACTIONS(5231), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddpart] = ACTIONS(5231), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), - [anon_sym_BSLASHchapter] = ACTIONS(5231), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddchap] = ACTIONS(5231), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsection] = ACTIONS(5231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddsec] = ACTIONS(5231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubsection] = ACTIONS(5231), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHparagraph] = ACTIONS(5231), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), - [anon_sym_BSLASHitem] = ACTIONS(5231), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5229), - [sym_word] = ACTIONS(5231), - [sym_placeholder] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_SLASH] = ACTIONS(5231), - [anon_sym_CARET] = ACTIONS(5231), - [anon_sym__] = ACTIONS(5231), - [anon_sym_LT] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5231), - [anon_sym_BANG] = ACTIONS(5231), - [anon_sym_PIPE] = ACTIONS(5231), - [anon_sym_COLON] = ACTIONS(5231), - [anon_sym_SQUOTE] = ACTIONS(5231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), - [anon_sym_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5229), - [anon_sym_BSLASHbegin] = ACTIONS(5231), - [anon_sym_BSLASHusepackage] = ACTIONS(5231), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), - [anon_sym_BSLASHinclude] = ACTIONS(5231), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), - [anon_sym_BSLASHinput] = ACTIONS(5231), - [anon_sym_BSLASHsubfile] = ACTIONS(5231), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), - [anon_sym_BSLASHbibliography] = ACTIONS(5231), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), - [anon_sym_BSLASHincludesvg] = ACTIONS(5231), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), - [anon_sym_BSLASHimport] = ACTIONS(5231), - [anon_sym_BSLASHsubimport] = ACTIONS(5231), - [anon_sym_BSLASHinputfrom] = ACTIONS(5231), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), - [anon_sym_BSLASHincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHcaption] = ACTIONS(5231), - [anon_sym_BSLASHcite] = ACTIONS(5231), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCite] = ACTIONS(5231), - [anon_sym_BSLASHnocite] = ACTIONS(5231), - [anon_sym_BSLASHcitet] = ACTIONS(5231), - [anon_sym_BSLASHcitep] = ACTIONS(5231), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteyear] = ACTIONS(5231), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitedate] = ACTIONS(5231), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteurl] = ACTIONS(5231), - [anon_sym_BSLASHfullcite] = ACTIONS(5231), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), - [anon_sym_BSLASHcitealt] = ACTIONS(5231), - [anon_sym_BSLASHcitealp] = ACTIONS(5231), - [anon_sym_BSLASHcitetext] = ACTIONS(5231), - [anon_sym_BSLASHparencite] = ACTIONS(5231), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHParencite] = ACTIONS(5231), - [anon_sym_BSLASHfootcite] = ACTIONS(5231), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), - [anon_sym_BSLASHtextcite] = ACTIONS(5231), - [anon_sym_BSLASHTextcite] = ACTIONS(5231), - [anon_sym_BSLASHsmartcite] = ACTIONS(5231), - [anon_sym_BSLASHSmartcite] = ACTIONS(5231), - [anon_sym_BSLASHsupercite] = ACTIONS(5231), - [anon_sym_BSLASHautocite] = ACTIONS(5231), - [anon_sym_BSLASHAutocite] = ACTIONS(5231), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHvolcite] = ACTIONS(5231), - [anon_sym_BSLASHVolcite] = ACTIONS(5231), - [anon_sym_BSLASHpvolcite] = ACTIONS(5231), - [anon_sym_BSLASHPvolcite] = ACTIONS(5231), - [anon_sym_BSLASHfvolcite] = ACTIONS(5231), - [anon_sym_BSLASHftvolcite] = ACTIONS(5231), - [anon_sym_BSLASHsvolcite] = ACTIONS(5231), - [anon_sym_BSLASHSvolcite] = ACTIONS(5231), - [anon_sym_BSLASHtvolcite] = ACTIONS(5231), - [anon_sym_BSLASHTvolcite] = ACTIONS(5231), - [anon_sym_BSLASHavolcite] = ACTIONS(5231), - [anon_sym_BSLASHAvolcite] = ACTIONS(5231), - [anon_sym_BSLASHnotecite] = ACTIONS(5231), - [anon_sym_BSLASHNotecite] = ACTIONS(5231), - [anon_sym_BSLASHpnotecite] = ACTIONS(5231), - [anon_sym_BSLASHPnotecite] = ACTIONS(5231), - [anon_sym_BSLASHfnotecite] = ACTIONS(5231), - [anon_sym_BSLASHlabel] = ACTIONS(5231), - [anon_sym_BSLASHref] = ACTIONS(5231), - [anon_sym_BSLASHeqref] = ACTIONS(5231), - [anon_sym_BSLASHvref] = ACTIONS(5231), - [anon_sym_BSLASHVref] = ACTIONS(5231), - [anon_sym_BSLASHautoref] = ACTIONS(5231), - [anon_sym_BSLASHpageref] = ACTIONS(5231), - [anon_sym_BSLASHcref] = ACTIONS(5231), - [anon_sym_BSLASHCref] = ACTIONS(5231), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnameCref] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHlabelcref] = ACTIONS(5231), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnewlabel] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), - [anon_sym_BSLASHdef] = ACTIONS(5231), - [anon_sym_BSLASHlet] = ACTIONS(5231), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), - [anon_sym_BSLASHgls] = ACTIONS(5231), - [anon_sym_BSLASHGls] = ACTIONS(5231), - [anon_sym_BSLASHGLS] = ACTIONS(5231), - [anon_sym_BSLASHglspl] = ACTIONS(5231), - [anon_sym_BSLASHGlspl] = ACTIONS(5231), - [anon_sym_BSLASHGLSpl] = ACTIONS(5231), - [anon_sym_BSLASHglsdisp] = ACTIONS(5231), - [anon_sym_BSLASHglslink] = ACTIONS(5231), - [anon_sym_BSLASHglstext] = ACTIONS(5231), - [anon_sym_BSLASHGlstext] = ACTIONS(5231), - [anon_sym_BSLASHGLStext] = ACTIONS(5231), - [anon_sym_BSLASHglsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), - [anon_sym_BSLASHglsplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSplural] = ACTIONS(5231), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHglsname] = ACTIONS(5231), - [anon_sym_BSLASHGlsname] = ACTIONS(5231), - [anon_sym_BSLASHGLSname] = ACTIONS(5231), - [anon_sym_BSLASHglssymbol] = ACTIONS(5231), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), - [anon_sym_BSLASHglsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), - [anon_sym_BSLASHglsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), - [anon_sym_BSLASHglsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), - [anon_sym_BSLASHglsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), - [anon_sym_BSLASHglsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), - [anon_sym_BSLASHnewacronym] = ACTIONS(5231), - [anon_sym_BSLASHacrshort] = ACTIONS(5231), - [anon_sym_BSLASHAcrshort] = ACTIONS(5231), - [anon_sym_BSLASHACRshort] = ACTIONS(5231), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), - [anon_sym_BSLASHacrlong] = ACTIONS(5231), - [anon_sym_BSLASHAcrlong] = ACTIONS(5231), - [anon_sym_BSLASHACRlong] = ACTIONS(5231), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), - [anon_sym_BSLASHacrfull] = ACTIONS(5231), - [anon_sym_BSLASHAcrfull] = ACTIONS(5231), - [anon_sym_BSLASHACRfull] = ACTIONS(5231), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), - [anon_sym_BSLASHacs] = ACTIONS(5231), - [anon_sym_BSLASHAcs] = ACTIONS(5231), - [anon_sym_BSLASHacsp] = ACTIONS(5231), - [anon_sym_BSLASHAcsp] = ACTIONS(5231), - [anon_sym_BSLASHacl] = ACTIONS(5231), - [anon_sym_BSLASHAcl] = ACTIONS(5231), - [anon_sym_BSLASHaclp] = ACTIONS(5231), - [anon_sym_BSLASHAclp] = ACTIONS(5231), - [anon_sym_BSLASHacf] = ACTIONS(5231), - [anon_sym_BSLASHAcf] = ACTIONS(5231), - [anon_sym_BSLASHacfp] = ACTIONS(5231), - [anon_sym_BSLASHAcfp] = ACTIONS(5231), - [anon_sym_BSLASHac] = ACTIONS(5231), - [anon_sym_BSLASHAc] = ACTIONS(5231), - [anon_sym_BSLASHacp] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), - [anon_sym_BSLASHcolor] = ACTIONS(5231), - [anon_sym_BSLASHcolorbox] = ACTIONS(5231), - [anon_sym_BSLASHtextcolor] = ACTIONS(5231), - [anon_sym_BSLASHpagecolor] = ACTIONS(5231), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [anon_sym_BSLASHiffalse] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5059), + [anon_sym_RPAREN] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5059), + [anon_sym_RBRACK] = ACTIONS(5059), + [anon_sym_COMMA] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_BSLASHpart] = ACTIONS(5061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddpart] = ACTIONS(5061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), + [anon_sym_BSLASHchapter] = ACTIONS(5061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddchap] = ACTIONS(5061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsection] = ACTIONS(5061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddsec] = ACTIONS(5061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubsection] = ACTIONS(5061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHparagraph] = ACTIONS(5061), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), + [anon_sym_BSLASHitem] = ACTIONS(5061), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5059), + [sym_word] = ACTIONS(5061), + [sym_placeholder] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_STAR] = ACTIONS(5061), + [anon_sym_SLASH] = ACTIONS(5061), + [anon_sym_CARET] = ACTIONS(5061), + [anon_sym__] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5061), + [anon_sym_GT] = ACTIONS(5061), + [anon_sym_BANG] = ACTIONS(5061), + [anon_sym_PIPE] = ACTIONS(5061), + [anon_sym_COLON] = ACTIONS(5061), + [anon_sym_SQUOTE] = ACTIONS(5061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), + [anon_sym_DOLLAR] = ACTIONS(5061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5059), + [anon_sym_BSLASHbegin] = ACTIONS(5061), + [anon_sym_BSLASHusepackage] = ACTIONS(5061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), + [anon_sym_BSLASHinclude] = ACTIONS(5061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), + [anon_sym_BSLASHinput] = ACTIONS(5061), + [anon_sym_BSLASHsubfile] = ACTIONS(5061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), + [anon_sym_BSLASHbibliography] = ACTIONS(5061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), + [anon_sym_BSLASHincludesvg] = ACTIONS(5061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), + [anon_sym_BSLASHimport] = ACTIONS(5061), + [anon_sym_BSLASHsubimport] = ACTIONS(5061), + [anon_sym_BSLASHinputfrom] = ACTIONS(5061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), + [anon_sym_BSLASHincludefrom] = ACTIONS(5061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), + [anon_sym_BSLASHcaption] = ACTIONS(5061), + [anon_sym_BSLASHcite] = ACTIONS(5061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCite] = ACTIONS(5061), + [anon_sym_BSLASHnocite] = ACTIONS(5061), + [anon_sym_BSLASHcitet] = ACTIONS(5061), + [anon_sym_BSLASHcitep] = ACTIONS(5061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteauthor] = ACTIONS(5061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitetitle] = ACTIONS(5061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteyear] = ACTIONS(5061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitedate] = ACTIONS(5061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteurl] = ACTIONS(5061), + [anon_sym_BSLASHfullcite] = ACTIONS(5061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), + [anon_sym_BSLASHcitealt] = ACTIONS(5061), + [anon_sym_BSLASHcitealp] = ACTIONS(5061), + [anon_sym_BSLASHcitetext] = ACTIONS(5061), + [anon_sym_BSLASHparencite] = ACTIONS(5061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHParencite] = ACTIONS(5061), + [anon_sym_BSLASHfootcite] = ACTIONS(5061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), + [anon_sym_BSLASHtextcite] = ACTIONS(5061), + [anon_sym_BSLASHTextcite] = ACTIONS(5061), + [anon_sym_BSLASHsmartcite] = ACTIONS(5061), + [anon_sym_BSLASHSmartcite] = ACTIONS(5061), + [anon_sym_BSLASHsupercite] = ACTIONS(5061), + [anon_sym_BSLASHautocite] = ACTIONS(5061), + [anon_sym_BSLASHAutocite] = ACTIONS(5061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHvolcite] = ACTIONS(5061), + [anon_sym_BSLASHVolcite] = ACTIONS(5061), + [anon_sym_BSLASHpvolcite] = ACTIONS(5061), + [anon_sym_BSLASHPvolcite] = ACTIONS(5061), + [anon_sym_BSLASHfvolcite] = ACTIONS(5061), + [anon_sym_BSLASHftvolcite] = ACTIONS(5061), + [anon_sym_BSLASHsvolcite] = ACTIONS(5061), + [anon_sym_BSLASHSvolcite] = ACTIONS(5061), + [anon_sym_BSLASHtvolcite] = ACTIONS(5061), + [anon_sym_BSLASHTvolcite] = ACTIONS(5061), + [anon_sym_BSLASHavolcite] = ACTIONS(5061), + [anon_sym_BSLASHAvolcite] = ACTIONS(5061), + [anon_sym_BSLASHnotecite] = ACTIONS(5061), + [anon_sym_BSLASHNotecite] = ACTIONS(5061), + [anon_sym_BSLASHpnotecite] = ACTIONS(5061), + [anon_sym_BSLASHPnotecite] = ACTIONS(5061), + [anon_sym_BSLASHfnotecite] = ACTIONS(5061), + [anon_sym_BSLASHlabel] = ACTIONS(5061), + [anon_sym_BSLASHref] = ACTIONS(5061), + [anon_sym_BSLASHeqref] = ACTIONS(5061), + [anon_sym_BSLASHvref] = ACTIONS(5061), + [anon_sym_BSLASHVref] = ACTIONS(5061), + [anon_sym_BSLASHautoref] = ACTIONS(5061), + [anon_sym_BSLASHpageref] = ACTIONS(5061), + [anon_sym_BSLASHcref] = ACTIONS(5061), + [anon_sym_BSLASHCref] = ACTIONS(5061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), + [anon_sym_BSLASHnamecref] = ACTIONS(5061), + [anon_sym_BSLASHnameCref] = ACTIONS(5061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), + [anon_sym_BSLASHlabelcref] = ACTIONS(5061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), + [anon_sym_BSLASHcrefrange] = ACTIONS(5061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCrefrange] = ACTIONS(5061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), + [anon_sym_BSLASHnewlabel] = ACTIONS(5061), + [anon_sym_BSLASHnewcommand] = ACTIONS(5061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), + [anon_sym_BSLASHdef] = ACTIONS(5061), + [anon_sym_BSLASHlet] = ACTIONS(5061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), + [anon_sym_BSLASHgls] = ACTIONS(5061), + [anon_sym_BSLASHGls] = ACTIONS(5061), + [anon_sym_BSLASHGLS] = ACTIONS(5061), + [anon_sym_BSLASHglspl] = ACTIONS(5061), + [anon_sym_BSLASHGlspl] = ACTIONS(5061), + [anon_sym_BSLASHGLSpl] = ACTIONS(5061), + [anon_sym_BSLASHglsdisp] = ACTIONS(5061), + [anon_sym_BSLASHglslink] = ACTIONS(5061), + [anon_sym_BSLASHglstext] = ACTIONS(5061), + [anon_sym_BSLASHGlstext] = ACTIONS(5061), + [anon_sym_BSLASHGLStext] = ACTIONS(5061), + [anon_sym_BSLASHglsfirst] = ACTIONS(5061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), + [anon_sym_BSLASHglsplural] = ACTIONS(5061), + [anon_sym_BSLASHGlsplural] = ACTIONS(5061), + [anon_sym_BSLASHGLSplural] = ACTIONS(5061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHglsname] = ACTIONS(5061), + [anon_sym_BSLASHGlsname] = ACTIONS(5061), + [anon_sym_BSLASHGLSname] = ACTIONS(5061), + [anon_sym_BSLASHglssymbol] = ACTIONS(5061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), + [anon_sym_BSLASHglsdesc] = ACTIONS(5061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), + [anon_sym_BSLASHglsuseri] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), + [anon_sym_BSLASHglsuserii] = ACTIONS(5061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), + [anon_sym_BSLASHglsuserv] = ACTIONS(5061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), + [anon_sym_BSLASHglsuservi] = ACTIONS(5061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), + [anon_sym_BSLASHnewacronym] = ACTIONS(5061), + [anon_sym_BSLASHacrshort] = ACTIONS(5061), + [anon_sym_BSLASHAcrshort] = ACTIONS(5061), + [anon_sym_BSLASHACRshort] = ACTIONS(5061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), + [anon_sym_BSLASHacrlong] = ACTIONS(5061), + [anon_sym_BSLASHAcrlong] = ACTIONS(5061), + [anon_sym_BSLASHACRlong] = ACTIONS(5061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), + [anon_sym_BSLASHacrfull] = ACTIONS(5061), + [anon_sym_BSLASHAcrfull] = ACTIONS(5061), + [anon_sym_BSLASHACRfull] = ACTIONS(5061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), + [anon_sym_BSLASHacs] = ACTIONS(5061), + [anon_sym_BSLASHAcs] = ACTIONS(5061), + [anon_sym_BSLASHacsp] = ACTIONS(5061), + [anon_sym_BSLASHAcsp] = ACTIONS(5061), + [anon_sym_BSLASHacl] = ACTIONS(5061), + [anon_sym_BSLASHAcl] = ACTIONS(5061), + [anon_sym_BSLASHaclp] = ACTIONS(5061), + [anon_sym_BSLASHAclp] = ACTIONS(5061), + [anon_sym_BSLASHacf] = ACTIONS(5061), + [anon_sym_BSLASHAcf] = ACTIONS(5061), + [anon_sym_BSLASHacfp] = ACTIONS(5061), + [anon_sym_BSLASHAcfp] = ACTIONS(5061), + [anon_sym_BSLASHac] = ACTIONS(5061), + [anon_sym_BSLASHAc] = ACTIONS(5061), + [anon_sym_BSLASHacp] = ACTIONS(5061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), + [anon_sym_BSLASHcolor] = ACTIONS(5061), + [anon_sym_BSLASHcolorbox] = ACTIONS(5061), + [anon_sym_BSLASHtextcolor] = ACTIONS(5061), + [anon_sym_BSLASHpagecolor] = ACTIONS(5061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [anon_sym_BSLASHtext] = ACTIONS(5061), + [anon_sym_BSLASHintertext] = ACTIONS(5061), + [anon_sym_shortintertext] = ACTIONS(5061), }, - [1066] = { - [sym_command_name] = ACTIONS(5221), + [892] = { + [sym_command_name] = ACTIONS(5049), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_BSLASHpart] = ACTIONS(5221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddpart] = ACTIONS(5221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHchapter] = ACTIONS(5221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddchap] = ACTIONS(5221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsection] = ACTIONS(5221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddsec] = ACTIONS(5221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHparagraph] = ACTIONS(5221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHitem] = ACTIONS(5221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5219), - [anon_sym_BSLASHbegin] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), + [anon_sym_BSLASHiffalse] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5047), + [anon_sym_RPAREN] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_RBRACK] = ACTIONS(5047), + [anon_sym_COMMA] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_BSLASHpart] = ACTIONS(5049), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), + [anon_sym_BSLASHaddpart] = ACTIONS(5049), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), + [anon_sym_BSLASHchapter] = ACTIONS(5049), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), + [anon_sym_BSLASHaddchap] = ACTIONS(5049), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsection] = ACTIONS(5049), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), + [anon_sym_BSLASHaddsec] = ACTIONS(5049), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsubsection] = ACTIONS(5049), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), + [anon_sym_BSLASHparagraph] = ACTIONS(5049), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), + [anon_sym_BSLASHitem] = ACTIONS(5049), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5047), + [sym_word] = ACTIONS(5049), + [sym_placeholder] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5049), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_CARET] = ACTIONS(5049), + [anon_sym__] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5049), + [anon_sym_PIPE] = ACTIONS(5049), + [anon_sym_COLON] = ACTIONS(5049), + [anon_sym_SQUOTE] = ACTIONS(5049), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), + [anon_sym_DOLLAR] = ACTIONS(5049), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5047), + [anon_sym_BSLASHbegin] = ACTIONS(5049), + [anon_sym_BSLASHusepackage] = ACTIONS(5049), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), + [anon_sym_BSLASHinclude] = ACTIONS(5049), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), + [anon_sym_BSLASHinput] = ACTIONS(5049), + [anon_sym_BSLASHsubfile] = ACTIONS(5049), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), + [anon_sym_BSLASHbibliography] = ACTIONS(5049), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), + [anon_sym_BSLASHincludesvg] = ACTIONS(5049), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), + [anon_sym_BSLASHimport] = ACTIONS(5049), + [anon_sym_BSLASHsubimport] = ACTIONS(5049), + [anon_sym_BSLASHinputfrom] = ACTIONS(5049), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), + [anon_sym_BSLASHincludefrom] = ACTIONS(5049), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), + [anon_sym_BSLASHcaption] = ACTIONS(5049), + [anon_sym_BSLASHcite] = ACTIONS(5049), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCite] = ACTIONS(5049), + [anon_sym_BSLASHnocite] = ACTIONS(5049), + [anon_sym_BSLASHcitet] = ACTIONS(5049), + [anon_sym_BSLASHcitep] = ACTIONS(5049), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteauthor] = ACTIONS(5049), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitetitle] = ACTIONS(5049), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteyear] = ACTIONS(5049), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitedate] = ACTIONS(5049), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteurl] = ACTIONS(5049), + [anon_sym_BSLASHfullcite] = ACTIONS(5049), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), + [anon_sym_BSLASHcitealt] = ACTIONS(5049), + [anon_sym_BSLASHcitealp] = ACTIONS(5049), + [anon_sym_BSLASHcitetext] = ACTIONS(5049), + [anon_sym_BSLASHparencite] = ACTIONS(5049), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHParencite] = ACTIONS(5049), + [anon_sym_BSLASHfootcite] = ACTIONS(5049), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), + [anon_sym_BSLASHtextcite] = ACTIONS(5049), + [anon_sym_BSLASHTextcite] = ACTIONS(5049), + [anon_sym_BSLASHsmartcite] = ACTIONS(5049), + [anon_sym_BSLASHSmartcite] = ACTIONS(5049), + [anon_sym_BSLASHsupercite] = ACTIONS(5049), + [anon_sym_BSLASHautocite] = ACTIONS(5049), + [anon_sym_BSLASHAutocite] = ACTIONS(5049), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHvolcite] = ACTIONS(5049), + [anon_sym_BSLASHVolcite] = ACTIONS(5049), + [anon_sym_BSLASHpvolcite] = ACTIONS(5049), + [anon_sym_BSLASHPvolcite] = ACTIONS(5049), + [anon_sym_BSLASHfvolcite] = ACTIONS(5049), + [anon_sym_BSLASHftvolcite] = ACTIONS(5049), + [anon_sym_BSLASHsvolcite] = ACTIONS(5049), + [anon_sym_BSLASHSvolcite] = ACTIONS(5049), + [anon_sym_BSLASHtvolcite] = ACTIONS(5049), + [anon_sym_BSLASHTvolcite] = ACTIONS(5049), + [anon_sym_BSLASHavolcite] = ACTIONS(5049), + [anon_sym_BSLASHAvolcite] = ACTIONS(5049), + [anon_sym_BSLASHnotecite] = ACTIONS(5049), + [anon_sym_BSLASHNotecite] = ACTIONS(5049), + [anon_sym_BSLASHpnotecite] = ACTIONS(5049), + [anon_sym_BSLASHPnotecite] = ACTIONS(5049), + [anon_sym_BSLASHfnotecite] = ACTIONS(5049), + [anon_sym_BSLASHlabel] = ACTIONS(5049), + [anon_sym_BSLASHref] = ACTIONS(5049), + [anon_sym_BSLASHeqref] = ACTIONS(5049), + [anon_sym_BSLASHvref] = ACTIONS(5049), + [anon_sym_BSLASHVref] = ACTIONS(5049), + [anon_sym_BSLASHautoref] = ACTIONS(5049), + [anon_sym_BSLASHpageref] = ACTIONS(5049), + [anon_sym_BSLASHcref] = ACTIONS(5049), + [anon_sym_BSLASHCref] = ACTIONS(5049), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), + [anon_sym_BSLASHnamecref] = ACTIONS(5049), + [anon_sym_BSLASHnameCref] = ACTIONS(5049), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), + [anon_sym_BSLASHlabelcref] = ACTIONS(5049), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), + [anon_sym_BSLASHcrefrange] = ACTIONS(5049), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCrefrange] = ACTIONS(5049), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), + [anon_sym_BSLASHnewlabel] = ACTIONS(5049), + [anon_sym_BSLASHnewcommand] = ACTIONS(5049), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), + [anon_sym_BSLASHdef] = ACTIONS(5049), + [anon_sym_BSLASHlet] = ACTIONS(5049), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), + [anon_sym_BSLASHgls] = ACTIONS(5049), + [anon_sym_BSLASHGls] = ACTIONS(5049), + [anon_sym_BSLASHGLS] = ACTIONS(5049), + [anon_sym_BSLASHglspl] = ACTIONS(5049), + [anon_sym_BSLASHGlspl] = ACTIONS(5049), + [anon_sym_BSLASHGLSpl] = ACTIONS(5049), + [anon_sym_BSLASHglsdisp] = ACTIONS(5049), + [anon_sym_BSLASHglslink] = ACTIONS(5049), + [anon_sym_BSLASHglstext] = ACTIONS(5049), + [anon_sym_BSLASHGlstext] = ACTIONS(5049), + [anon_sym_BSLASHGLStext] = ACTIONS(5049), + [anon_sym_BSLASHglsfirst] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), + [anon_sym_BSLASHglsplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSplural] = ACTIONS(5049), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHglsname] = ACTIONS(5049), + [anon_sym_BSLASHGlsname] = ACTIONS(5049), + [anon_sym_BSLASHGLSname] = ACTIONS(5049), + [anon_sym_BSLASHglssymbol] = ACTIONS(5049), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), + [anon_sym_BSLASHglsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), + [anon_sym_BSLASHglsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), + [anon_sym_BSLASHglsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), + [anon_sym_BSLASHglsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), + [anon_sym_BSLASHglsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), + [anon_sym_BSLASHnewacronym] = ACTIONS(5049), + [anon_sym_BSLASHacrshort] = ACTIONS(5049), + [anon_sym_BSLASHAcrshort] = ACTIONS(5049), + [anon_sym_BSLASHACRshort] = ACTIONS(5049), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), + [anon_sym_BSLASHacrlong] = ACTIONS(5049), + [anon_sym_BSLASHAcrlong] = ACTIONS(5049), + [anon_sym_BSLASHACRlong] = ACTIONS(5049), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), + [anon_sym_BSLASHacrfull] = ACTIONS(5049), + [anon_sym_BSLASHAcrfull] = ACTIONS(5049), + [anon_sym_BSLASHACRfull] = ACTIONS(5049), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), + [anon_sym_BSLASHacs] = ACTIONS(5049), + [anon_sym_BSLASHAcs] = ACTIONS(5049), + [anon_sym_BSLASHacsp] = ACTIONS(5049), + [anon_sym_BSLASHAcsp] = ACTIONS(5049), + [anon_sym_BSLASHacl] = ACTIONS(5049), + [anon_sym_BSLASHAcl] = ACTIONS(5049), + [anon_sym_BSLASHaclp] = ACTIONS(5049), + [anon_sym_BSLASHAclp] = ACTIONS(5049), + [anon_sym_BSLASHacf] = ACTIONS(5049), + [anon_sym_BSLASHAcf] = ACTIONS(5049), + [anon_sym_BSLASHacfp] = ACTIONS(5049), + [anon_sym_BSLASHAcfp] = ACTIONS(5049), + [anon_sym_BSLASHac] = ACTIONS(5049), + [anon_sym_BSLASHAc] = ACTIONS(5049), + [anon_sym_BSLASHacp] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), + [anon_sym_BSLASHcolor] = ACTIONS(5049), + [anon_sym_BSLASHcolorbox] = ACTIONS(5049), + [anon_sym_BSLASHtextcolor] = ACTIONS(5049), + [anon_sym_BSLASHpagecolor] = ACTIONS(5049), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [anon_sym_BSLASHtext] = ACTIONS(5049), + [anon_sym_BSLASHintertext] = ACTIONS(5049), + [anon_sym_shortintertext] = ACTIONS(5049), }, - [1067] = { - [sym_command_name] = ACTIONS(5217), + [893] = { + [sym_command_name] = ACTIONS(5021), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_BSLASHpart] = ACTIONS(5217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddpart] = ACTIONS(5217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHchapter] = ACTIONS(5217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddchap] = ACTIONS(5217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsection] = ACTIONS(5217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddsec] = ACTIONS(5217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHparagraph] = ACTIONS(5217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHitem] = ACTIONS(5217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5215), - [anon_sym_BSLASHbegin] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [anon_sym_BSLASHiffalse] = ACTIONS(5021), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_BSLASHpart] = ACTIONS(5021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddpart] = ACTIONS(5021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), + [anon_sym_BSLASHchapter] = ACTIONS(5021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddchap] = ACTIONS(5021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsection] = ACTIONS(5021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddsec] = ACTIONS(5021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubsection] = ACTIONS(5021), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHparagraph] = ACTIONS(5021), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), + [anon_sym_BSLASHitem] = ACTIONS(5021), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [sym_word] = ACTIONS(5021), + [sym_placeholder] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5021), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_CARET] = ACTIONS(5021), + [anon_sym__] = ACTIONS(5021), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_COLON] = ACTIONS(5021), + [anon_sym_SQUOTE] = ACTIONS(5021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), + [anon_sym_DOLLAR] = ACTIONS(5021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), + [anon_sym_BSLASHbegin] = ACTIONS(5021), + [anon_sym_BSLASHusepackage] = ACTIONS(5021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), + [anon_sym_BSLASHinclude] = ACTIONS(5021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), + [anon_sym_BSLASHinput] = ACTIONS(5021), + [anon_sym_BSLASHsubfile] = ACTIONS(5021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), + [anon_sym_BSLASHbibliography] = ACTIONS(5021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), + [anon_sym_BSLASHincludesvg] = ACTIONS(5021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), + [anon_sym_BSLASHimport] = ACTIONS(5021), + [anon_sym_BSLASHsubimport] = ACTIONS(5021), + [anon_sym_BSLASHinputfrom] = ACTIONS(5021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), + [anon_sym_BSLASHincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHcaption] = ACTIONS(5021), + [anon_sym_BSLASHcite] = ACTIONS(5021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCite] = ACTIONS(5021), + [anon_sym_BSLASHnocite] = ACTIONS(5021), + [anon_sym_BSLASHcitet] = ACTIONS(5021), + [anon_sym_BSLASHcitep] = ACTIONS(5021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteauthor] = ACTIONS(5021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitetitle] = ACTIONS(5021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteyear] = ACTIONS(5021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitedate] = ACTIONS(5021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteurl] = ACTIONS(5021), + [anon_sym_BSLASHfullcite] = ACTIONS(5021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), + [anon_sym_BSLASHcitealt] = ACTIONS(5021), + [anon_sym_BSLASHcitealp] = ACTIONS(5021), + [anon_sym_BSLASHcitetext] = ACTIONS(5021), + [anon_sym_BSLASHparencite] = ACTIONS(5021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHParencite] = ACTIONS(5021), + [anon_sym_BSLASHfootcite] = ACTIONS(5021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), + [anon_sym_BSLASHtextcite] = ACTIONS(5021), + [anon_sym_BSLASHTextcite] = ACTIONS(5021), + [anon_sym_BSLASHsmartcite] = ACTIONS(5021), + [anon_sym_BSLASHSmartcite] = ACTIONS(5021), + [anon_sym_BSLASHsupercite] = ACTIONS(5021), + [anon_sym_BSLASHautocite] = ACTIONS(5021), + [anon_sym_BSLASHAutocite] = ACTIONS(5021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHvolcite] = ACTIONS(5021), + [anon_sym_BSLASHVolcite] = ACTIONS(5021), + [anon_sym_BSLASHpvolcite] = ACTIONS(5021), + [anon_sym_BSLASHPvolcite] = ACTIONS(5021), + [anon_sym_BSLASHfvolcite] = ACTIONS(5021), + [anon_sym_BSLASHftvolcite] = ACTIONS(5021), + [anon_sym_BSLASHsvolcite] = ACTIONS(5021), + [anon_sym_BSLASHSvolcite] = ACTIONS(5021), + [anon_sym_BSLASHtvolcite] = ACTIONS(5021), + [anon_sym_BSLASHTvolcite] = ACTIONS(5021), + [anon_sym_BSLASHavolcite] = ACTIONS(5021), + [anon_sym_BSLASHAvolcite] = ACTIONS(5021), + [anon_sym_BSLASHnotecite] = ACTIONS(5021), + [anon_sym_BSLASHNotecite] = ACTIONS(5021), + [anon_sym_BSLASHpnotecite] = ACTIONS(5021), + [anon_sym_BSLASHPnotecite] = ACTIONS(5021), + [anon_sym_BSLASHfnotecite] = ACTIONS(5021), + [anon_sym_BSLASHlabel] = ACTIONS(5021), + [anon_sym_BSLASHref] = ACTIONS(5021), + [anon_sym_BSLASHeqref] = ACTIONS(5021), + [anon_sym_BSLASHvref] = ACTIONS(5021), + [anon_sym_BSLASHVref] = ACTIONS(5021), + [anon_sym_BSLASHautoref] = ACTIONS(5021), + [anon_sym_BSLASHpageref] = ACTIONS(5021), + [anon_sym_BSLASHcref] = ACTIONS(5021), + [anon_sym_BSLASHCref] = ACTIONS(5021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnameCref] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHlabelcref] = ACTIONS(5021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCrefrange] = ACTIONS(5021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnewlabel] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), + [anon_sym_BSLASHdef] = ACTIONS(5021), + [anon_sym_BSLASHlet] = ACTIONS(5021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), + [anon_sym_BSLASHgls] = ACTIONS(5021), + [anon_sym_BSLASHGls] = ACTIONS(5021), + [anon_sym_BSLASHGLS] = ACTIONS(5021), + [anon_sym_BSLASHglspl] = ACTIONS(5021), + [anon_sym_BSLASHGlspl] = ACTIONS(5021), + [anon_sym_BSLASHGLSpl] = ACTIONS(5021), + [anon_sym_BSLASHglsdisp] = ACTIONS(5021), + [anon_sym_BSLASHglslink] = ACTIONS(5021), + [anon_sym_BSLASHglstext] = ACTIONS(5021), + [anon_sym_BSLASHGlstext] = ACTIONS(5021), + [anon_sym_BSLASHGLStext] = ACTIONS(5021), + [anon_sym_BSLASHglsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), + [anon_sym_BSLASHglsplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSplural] = ACTIONS(5021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHglsname] = ACTIONS(5021), + [anon_sym_BSLASHGlsname] = ACTIONS(5021), + [anon_sym_BSLASHGLSname] = ACTIONS(5021), + [anon_sym_BSLASHglssymbol] = ACTIONS(5021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), + [anon_sym_BSLASHglsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), + [anon_sym_BSLASHglsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), + [anon_sym_BSLASHglsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), + [anon_sym_BSLASHglsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), + [anon_sym_BSLASHglsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), + [anon_sym_BSLASHnewacronym] = ACTIONS(5021), + [anon_sym_BSLASHacrshort] = ACTIONS(5021), + [anon_sym_BSLASHAcrshort] = ACTIONS(5021), + [anon_sym_BSLASHACRshort] = ACTIONS(5021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), + [anon_sym_BSLASHacrlong] = ACTIONS(5021), + [anon_sym_BSLASHAcrlong] = ACTIONS(5021), + [anon_sym_BSLASHACRlong] = ACTIONS(5021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), + [anon_sym_BSLASHacrfull] = ACTIONS(5021), + [anon_sym_BSLASHAcrfull] = ACTIONS(5021), + [anon_sym_BSLASHACRfull] = ACTIONS(5021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), + [anon_sym_BSLASHacs] = ACTIONS(5021), + [anon_sym_BSLASHAcs] = ACTIONS(5021), + [anon_sym_BSLASHacsp] = ACTIONS(5021), + [anon_sym_BSLASHAcsp] = ACTIONS(5021), + [anon_sym_BSLASHacl] = ACTIONS(5021), + [anon_sym_BSLASHAcl] = ACTIONS(5021), + [anon_sym_BSLASHaclp] = ACTIONS(5021), + [anon_sym_BSLASHAclp] = ACTIONS(5021), + [anon_sym_BSLASHacf] = ACTIONS(5021), + [anon_sym_BSLASHAcf] = ACTIONS(5021), + [anon_sym_BSLASHacfp] = ACTIONS(5021), + [anon_sym_BSLASHAcfp] = ACTIONS(5021), + [anon_sym_BSLASHac] = ACTIONS(5021), + [anon_sym_BSLASHAc] = ACTIONS(5021), + [anon_sym_BSLASHacp] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), + [anon_sym_BSLASHcolor] = ACTIONS(5021), + [anon_sym_BSLASHcolorbox] = ACTIONS(5021), + [anon_sym_BSLASHtextcolor] = ACTIONS(5021), + [anon_sym_BSLASHpagecolor] = ACTIONS(5021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHtext] = ACTIONS(5021), + [anon_sym_BSLASHintertext] = ACTIONS(5021), + [anon_sym_shortintertext] = ACTIONS(5021), }, - [1068] = { - [sym_command_name] = ACTIONS(5325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5325), - [anon_sym_LPAREN] = ACTIONS(5323), - [anon_sym_RPAREN] = ACTIONS(5323), - [anon_sym_LBRACK] = ACTIONS(5323), - [anon_sym_RBRACK] = ACTIONS(5323), - [anon_sym_COMMA] = ACTIONS(5323), - [anon_sym_EQ] = ACTIONS(5323), - [anon_sym_BSLASHpart] = ACTIONS(5325), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddpart] = ACTIONS(5325), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5323), - [anon_sym_BSLASHchapter] = ACTIONS(5325), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddchap] = ACTIONS(5325), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsection] = ACTIONS(5325), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddsec] = ACTIONS(5325), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubsection] = ACTIONS(5325), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5325), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHparagraph] = ACTIONS(5325), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5325), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5323), - [anon_sym_BSLASHitem] = ACTIONS(5325), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5323), - [anon_sym_LBRACE] = ACTIONS(5323), - [sym_word] = ACTIONS(5325), - [sym_placeholder] = ACTIONS(5323), - [anon_sym_PLUS] = ACTIONS(5325), - [anon_sym_DASH] = ACTIONS(5325), - [anon_sym_STAR] = ACTIONS(5325), - [anon_sym_SLASH] = ACTIONS(5325), - [anon_sym_CARET] = ACTIONS(5325), - [anon_sym__] = ACTIONS(5325), - [anon_sym_LT] = ACTIONS(5325), - [anon_sym_GT] = ACTIONS(5325), - [anon_sym_BANG] = ACTIONS(5325), - [anon_sym_PIPE] = ACTIONS(5325), - [anon_sym_COLON] = ACTIONS(5325), - [anon_sym_SQUOTE] = ACTIONS(5325), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5323), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5323), - [anon_sym_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5323), - [anon_sym_BSLASHbegin] = ACTIONS(5325), - [anon_sym_BSLASHusepackage] = ACTIONS(5325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), - [anon_sym_BSLASHinclude] = ACTIONS(5325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5325), - [anon_sym_BSLASHinput] = ACTIONS(5325), - [anon_sym_BSLASHsubfile] = ACTIONS(5325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5325), - [anon_sym_BSLASHbibliography] = ACTIONS(5325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5325), - [anon_sym_BSLASHincludesvg] = ACTIONS(5325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5325), - [anon_sym_BSLASHimport] = ACTIONS(5325), - [anon_sym_BSLASHsubimport] = ACTIONS(5325), - [anon_sym_BSLASHinputfrom] = ACTIONS(5325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5325), - [anon_sym_BSLASHincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHcaption] = ACTIONS(5325), - [anon_sym_BSLASHcite] = ACTIONS(5325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCite] = ACTIONS(5325), - [anon_sym_BSLASHnocite] = ACTIONS(5325), - [anon_sym_BSLASHcitet] = ACTIONS(5325), - [anon_sym_BSLASHcitep] = ACTIONS(5325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteyear] = ACTIONS(5325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitedate] = ACTIONS(5325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteurl] = ACTIONS(5325), - [anon_sym_BSLASHfullcite] = ACTIONS(5325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5325), - [anon_sym_BSLASHcitealt] = ACTIONS(5325), - [anon_sym_BSLASHcitealp] = ACTIONS(5325), - [anon_sym_BSLASHcitetext] = ACTIONS(5325), - [anon_sym_BSLASHparencite] = ACTIONS(5325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHParencite] = ACTIONS(5325), - [anon_sym_BSLASHfootcite] = ACTIONS(5325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5325), - [anon_sym_BSLASHtextcite] = ACTIONS(5325), - [anon_sym_BSLASHTextcite] = ACTIONS(5325), - [anon_sym_BSLASHsmartcite] = ACTIONS(5325), - [anon_sym_BSLASHSmartcite] = ACTIONS(5325), - [anon_sym_BSLASHsupercite] = ACTIONS(5325), - [anon_sym_BSLASHautocite] = ACTIONS(5325), - [anon_sym_BSLASHAutocite] = ACTIONS(5325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHvolcite] = ACTIONS(5325), - [anon_sym_BSLASHVolcite] = ACTIONS(5325), - [anon_sym_BSLASHpvolcite] = ACTIONS(5325), - [anon_sym_BSLASHPvolcite] = ACTIONS(5325), - [anon_sym_BSLASHfvolcite] = ACTIONS(5325), - [anon_sym_BSLASHftvolcite] = ACTIONS(5325), - [anon_sym_BSLASHsvolcite] = ACTIONS(5325), - [anon_sym_BSLASHSvolcite] = ACTIONS(5325), - [anon_sym_BSLASHtvolcite] = ACTIONS(5325), - [anon_sym_BSLASHTvolcite] = ACTIONS(5325), - [anon_sym_BSLASHavolcite] = ACTIONS(5325), - [anon_sym_BSLASHAvolcite] = ACTIONS(5325), - [anon_sym_BSLASHnotecite] = ACTIONS(5325), - [anon_sym_BSLASHNotecite] = ACTIONS(5325), - [anon_sym_BSLASHpnotecite] = ACTIONS(5325), - [anon_sym_BSLASHPnotecite] = ACTIONS(5325), - [anon_sym_BSLASHfnotecite] = ACTIONS(5325), - [anon_sym_BSLASHlabel] = ACTIONS(5325), - [anon_sym_BSLASHref] = ACTIONS(5325), - [anon_sym_BSLASHeqref] = ACTIONS(5325), - [anon_sym_BSLASHvref] = ACTIONS(5325), - [anon_sym_BSLASHVref] = ACTIONS(5325), - [anon_sym_BSLASHautoref] = ACTIONS(5325), - [anon_sym_BSLASHpageref] = ACTIONS(5325), - [anon_sym_BSLASHcref] = ACTIONS(5325), - [anon_sym_BSLASHCref] = ACTIONS(5325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnameCref] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHlabelcref] = ACTIONS(5325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnewlabel] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5323), - [anon_sym_BSLASHdef] = ACTIONS(5325), - [anon_sym_BSLASHlet] = ACTIONS(5325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5325), - [anon_sym_BSLASHgls] = ACTIONS(5325), - [anon_sym_BSLASHGls] = ACTIONS(5325), - [anon_sym_BSLASHGLS] = ACTIONS(5325), - [anon_sym_BSLASHglspl] = ACTIONS(5325), - [anon_sym_BSLASHGlspl] = ACTIONS(5325), - [anon_sym_BSLASHGLSpl] = ACTIONS(5325), - [anon_sym_BSLASHglsdisp] = ACTIONS(5325), - [anon_sym_BSLASHglslink] = ACTIONS(5325), - [anon_sym_BSLASHglstext] = ACTIONS(5325), - [anon_sym_BSLASHGlstext] = ACTIONS(5325), - [anon_sym_BSLASHGLStext] = ACTIONS(5325), - [anon_sym_BSLASHglsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5325), - [anon_sym_BSLASHglsplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSplural] = ACTIONS(5325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHglsname] = ACTIONS(5325), - [anon_sym_BSLASHGlsname] = ACTIONS(5325), - [anon_sym_BSLASHGLSname] = ACTIONS(5325), - [anon_sym_BSLASHglssymbol] = ACTIONS(5325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5325), - [anon_sym_BSLASHglsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5325), - [anon_sym_BSLASHglsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5325), - [anon_sym_BSLASHglsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5325), - [anon_sym_BSLASHglsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5325), - [anon_sym_BSLASHglsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5325), - [anon_sym_BSLASHnewacronym] = ACTIONS(5325), - [anon_sym_BSLASHacrshort] = ACTIONS(5325), - [anon_sym_BSLASHAcrshort] = ACTIONS(5325), - [anon_sym_BSLASHACRshort] = ACTIONS(5325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5325), - [anon_sym_BSLASHacrlong] = ACTIONS(5325), - [anon_sym_BSLASHAcrlong] = ACTIONS(5325), - [anon_sym_BSLASHACRlong] = ACTIONS(5325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5325), - [anon_sym_BSLASHacrfull] = ACTIONS(5325), - [anon_sym_BSLASHAcrfull] = ACTIONS(5325), - [anon_sym_BSLASHACRfull] = ACTIONS(5325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5325), - [anon_sym_BSLASHacs] = ACTIONS(5325), - [anon_sym_BSLASHAcs] = ACTIONS(5325), - [anon_sym_BSLASHacsp] = ACTIONS(5325), - [anon_sym_BSLASHAcsp] = ACTIONS(5325), - [anon_sym_BSLASHacl] = ACTIONS(5325), - [anon_sym_BSLASHAcl] = ACTIONS(5325), - [anon_sym_BSLASHaclp] = ACTIONS(5325), - [anon_sym_BSLASHAclp] = ACTIONS(5325), - [anon_sym_BSLASHacf] = ACTIONS(5325), - [anon_sym_BSLASHAcf] = ACTIONS(5325), - [anon_sym_BSLASHacfp] = ACTIONS(5325), - [anon_sym_BSLASHAcfp] = ACTIONS(5325), - [anon_sym_BSLASHac] = ACTIONS(5325), - [anon_sym_BSLASHAc] = ACTIONS(5325), - [anon_sym_BSLASHacp] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5325), - [anon_sym_BSLASHcolor] = ACTIONS(5325), - [anon_sym_BSLASHcolorbox] = ACTIONS(5325), - [anon_sym_BSLASHtextcolor] = ACTIONS(5325), - [anon_sym_BSLASHpagecolor] = ACTIONS(5325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5325), + [894] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(137), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASH_RBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, - [1069] = { - [sym_command_name] = ACTIONS(5329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5329), - [anon_sym_LPAREN] = ACTIONS(5327), - [anon_sym_RPAREN] = ACTIONS(5327), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_RBRACK] = ACTIONS(5327), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5327), - [anon_sym_BSLASHpart] = ACTIONS(5329), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddpart] = ACTIONS(5329), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5327), - [anon_sym_BSLASHchapter] = ACTIONS(5329), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddchap] = ACTIONS(5329), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsection] = ACTIONS(5329), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddsec] = ACTIONS(5329), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubsection] = ACTIONS(5329), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5329), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHparagraph] = ACTIONS(5329), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5329), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5327), - [anon_sym_BSLASHitem] = ACTIONS(5329), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5327), - [anon_sym_LBRACE] = ACTIONS(5327), - [sym_word] = ACTIONS(5329), - [sym_placeholder] = ACTIONS(5327), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_STAR] = ACTIONS(5329), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_CARET] = ACTIONS(5329), - [anon_sym__] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_BANG] = ACTIONS(5329), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_COLON] = ACTIONS(5329), - [anon_sym_SQUOTE] = ACTIONS(5329), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5327), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5327), - [anon_sym_DOLLAR] = ACTIONS(5329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5327), - [anon_sym_BSLASHbegin] = ACTIONS(5329), - [anon_sym_BSLASHusepackage] = ACTIONS(5329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5329), - [anon_sym_BSLASHinclude] = ACTIONS(5329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5329), - [anon_sym_BSLASHinput] = ACTIONS(5329), - [anon_sym_BSLASHsubfile] = ACTIONS(5329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5329), - [anon_sym_BSLASHbibliography] = ACTIONS(5329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5329), - [anon_sym_BSLASHincludesvg] = ACTIONS(5329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5329), - [anon_sym_BSLASHimport] = ACTIONS(5329), - [anon_sym_BSLASHsubimport] = ACTIONS(5329), - [anon_sym_BSLASHinputfrom] = ACTIONS(5329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5329), - [anon_sym_BSLASHincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHcaption] = ACTIONS(5329), - [anon_sym_BSLASHcite] = ACTIONS(5329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCite] = ACTIONS(5329), - [anon_sym_BSLASHnocite] = ACTIONS(5329), - [anon_sym_BSLASHcitet] = ACTIONS(5329), - [anon_sym_BSLASHcitep] = ACTIONS(5329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor] = ACTIONS(5329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle] = ACTIONS(5329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteyear] = ACTIONS(5329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitedate] = ACTIONS(5329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteurl] = ACTIONS(5329), - [anon_sym_BSLASHfullcite] = ACTIONS(5329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5329), - [anon_sym_BSLASHcitealt] = ACTIONS(5329), - [anon_sym_BSLASHcitealp] = ACTIONS(5329), - [anon_sym_BSLASHcitetext] = ACTIONS(5329), - [anon_sym_BSLASHparencite] = ACTIONS(5329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHParencite] = ACTIONS(5329), - [anon_sym_BSLASHfootcite] = ACTIONS(5329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5329), - [anon_sym_BSLASHtextcite] = ACTIONS(5329), - [anon_sym_BSLASHTextcite] = ACTIONS(5329), - [anon_sym_BSLASHsmartcite] = ACTIONS(5329), - [anon_sym_BSLASHSmartcite] = ACTIONS(5329), - [anon_sym_BSLASHsupercite] = ACTIONS(5329), - [anon_sym_BSLASHautocite] = ACTIONS(5329), - [anon_sym_BSLASHAutocite] = ACTIONS(5329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHvolcite] = ACTIONS(5329), - [anon_sym_BSLASHVolcite] = ACTIONS(5329), - [anon_sym_BSLASHpvolcite] = ACTIONS(5329), - [anon_sym_BSLASHPvolcite] = ACTIONS(5329), - [anon_sym_BSLASHfvolcite] = ACTIONS(5329), - [anon_sym_BSLASHftvolcite] = ACTIONS(5329), - [anon_sym_BSLASHsvolcite] = ACTIONS(5329), - [anon_sym_BSLASHSvolcite] = ACTIONS(5329), - [anon_sym_BSLASHtvolcite] = ACTIONS(5329), - [anon_sym_BSLASHTvolcite] = ACTIONS(5329), - [anon_sym_BSLASHavolcite] = ACTIONS(5329), - [anon_sym_BSLASHAvolcite] = ACTIONS(5329), - [anon_sym_BSLASHnotecite] = ACTIONS(5329), - [anon_sym_BSLASHNotecite] = ACTIONS(5329), - [anon_sym_BSLASHpnotecite] = ACTIONS(5329), - [anon_sym_BSLASHPnotecite] = ACTIONS(5329), - [anon_sym_BSLASHfnotecite] = ACTIONS(5329), - [anon_sym_BSLASHlabel] = ACTIONS(5329), - [anon_sym_BSLASHref] = ACTIONS(5329), - [anon_sym_BSLASHeqref] = ACTIONS(5329), - [anon_sym_BSLASHvref] = ACTIONS(5329), - [anon_sym_BSLASHVref] = ACTIONS(5329), - [anon_sym_BSLASHautoref] = ACTIONS(5329), - [anon_sym_BSLASHpageref] = ACTIONS(5329), - [anon_sym_BSLASHcref] = ACTIONS(5329), - [anon_sym_BSLASHCref] = ACTIONS(5329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnameCref] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHlabelcref] = ACTIONS(5329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange] = ACTIONS(5329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnewlabel] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5327), - [anon_sym_BSLASHdef] = ACTIONS(5329), - [anon_sym_BSLASHlet] = ACTIONS(5329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5329), - [anon_sym_BSLASHgls] = ACTIONS(5329), - [anon_sym_BSLASHGls] = ACTIONS(5329), - [anon_sym_BSLASHGLS] = ACTIONS(5329), - [anon_sym_BSLASHglspl] = ACTIONS(5329), - [anon_sym_BSLASHGlspl] = ACTIONS(5329), - [anon_sym_BSLASHGLSpl] = ACTIONS(5329), - [anon_sym_BSLASHglsdisp] = ACTIONS(5329), - [anon_sym_BSLASHglslink] = ACTIONS(5329), - [anon_sym_BSLASHglstext] = ACTIONS(5329), - [anon_sym_BSLASHGlstext] = ACTIONS(5329), - [anon_sym_BSLASHGLStext] = ACTIONS(5329), - [anon_sym_BSLASHglsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5329), - [anon_sym_BSLASHglsplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSplural] = ACTIONS(5329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHglsname] = ACTIONS(5329), - [anon_sym_BSLASHGlsname] = ACTIONS(5329), - [anon_sym_BSLASHGLSname] = ACTIONS(5329), - [anon_sym_BSLASHglssymbol] = ACTIONS(5329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5329), - [anon_sym_BSLASHglsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5329), - [anon_sym_BSLASHglsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5329), - [anon_sym_BSLASHglsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5329), - [anon_sym_BSLASHglsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5329), - [anon_sym_BSLASHglsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5329), - [anon_sym_BSLASHnewacronym] = ACTIONS(5329), - [anon_sym_BSLASHacrshort] = ACTIONS(5329), - [anon_sym_BSLASHAcrshort] = ACTIONS(5329), - [anon_sym_BSLASHACRshort] = ACTIONS(5329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5329), - [anon_sym_BSLASHacrlong] = ACTIONS(5329), - [anon_sym_BSLASHAcrlong] = ACTIONS(5329), - [anon_sym_BSLASHACRlong] = ACTIONS(5329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5329), - [anon_sym_BSLASHacrfull] = ACTIONS(5329), - [anon_sym_BSLASHAcrfull] = ACTIONS(5329), - [anon_sym_BSLASHACRfull] = ACTIONS(5329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5329), - [anon_sym_BSLASHacs] = ACTIONS(5329), - [anon_sym_BSLASHAcs] = ACTIONS(5329), - [anon_sym_BSLASHacsp] = ACTIONS(5329), - [anon_sym_BSLASHAcsp] = ACTIONS(5329), - [anon_sym_BSLASHacl] = ACTIONS(5329), - [anon_sym_BSLASHAcl] = ACTIONS(5329), - [anon_sym_BSLASHaclp] = ACTIONS(5329), - [anon_sym_BSLASHAclp] = ACTIONS(5329), - [anon_sym_BSLASHacf] = ACTIONS(5329), - [anon_sym_BSLASHAcf] = ACTIONS(5329), - [anon_sym_BSLASHacfp] = ACTIONS(5329), - [anon_sym_BSLASHAcfp] = ACTIONS(5329), - [anon_sym_BSLASHac] = ACTIONS(5329), - [anon_sym_BSLASHAc] = ACTIONS(5329), - [anon_sym_BSLASHacp] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5329), - [anon_sym_BSLASHcolor] = ACTIONS(5329), - [anon_sym_BSLASHcolorbox] = ACTIONS(5329), - [anon_sym_BSLASHtextcolor] = ACTIONS(5329), - [anon_sym_BSLASHpagecolor] = ACTIONS(5329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5329), + [895] = { + [sym_command_name] = ACTIONS(4935), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4935), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_RPAREN] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_RBRACK] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_EQ] = ACTIONS(4933), + [anon_sym_BSLASHpart] = ACTIONS(4935), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddpart] = ACTIONS(4935), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4933), + [anon_sym_BSLASHchapter] = ACTIONS(4935), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddchap] = ACTIONS(4935), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsection] = ACTIONS(4935), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddsec] = ACTIONS(4935), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubsection] = ACTIONS(4935), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4935), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHparagraph] = ACTIONS(4935), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4935), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4933), + [anon_sym_BSLASHitem] = ACTIONS(4935), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4933), + [sym_word] = ACTIONS(4935), + [sym_placeholder] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4935), + [anon_sym_DASH] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4935), + [anon_sym_SLASH] = ACTIONS(4935), + [anon_sym_CARET] = ACTIONS(4935), + [anon_sym__] = ACTIONS(4935), + [anon_sym_LT] = ACTIONS(4935), + [anon_sym_GT] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4935), + [anon_sym_PIPE] = ACTIONS(4935), + [anon_sym_COLON] = ACTIONS(4935), + [anon_sym_SQUOTE] = ACTIONS(4935), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4933), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4933), + [anon_sym_DOLLAR] = ACTIONS(4935), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4933), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4933), + [anon_sym_BSLASHbegin] = ACTIONS(4935), + [anon_sym_BSLASHend] = ACTIONS(4935), + [anon_sym_BSLASHusepackage] = ACTIONS(4935), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4935), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4935), + [anon_sym_BSLASHinclude] = ACTIONS(4935), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4935), + [anon_sym_BSLASHinput] = ACTIONS(4935), + [anon_sym_BSLASHsubfile] = ACTIONS(4935), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4935), + [anon_sym_BSLASHbibliography] = ACTIONS(4935), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4935), + [anon_sym_BSLASHincludesvg] = ACTIONS(4935), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4935), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4935), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4935), + [anon_sym_BSLASHimport] = ACTIONS(4935), + [anon_sym_BSLASHsubimport] = ACTIONS(4935), + [anon_sym_BSLASHinputfrom] = ACTIONS(4935), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4935), + [anon_sym_BSLASHincludefrom] = ACTIONS(4935), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4935), + [anon_sym_BSLASHcaption] = ACTIONS(4935), + [anon_sym_BSLASHcite] = ACTIONS(4935), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCite] = ACTIONS(4935), + [anon_sym_BSLASHnocite] = ACTIONS(4935), + [anon_sym_BSLASHcitet] = ACTIONS(4935), + [anon_sym_BSLASHcitep] = ACTIONS(4935), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteauthor] = ACTIONS(4935), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4935), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitetitle] = ACTIONS(4935), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteyear] = ACTIONS(4935), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitedate] = ACTIONS(4935), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteurl] = ACTIONS(4935), + [anon_sym_BSLASHfullcite] = ACTIONS(4935), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4935), + [anon_sym_BSLASHcitealt] = ACTIONS(4935), + [anon_sym_BSLASHcitealp] = ACTIONS(4935), + [anon_sym_BSLASHcitetext] = ACTIONS(4935), + [anon_sym_BSLASHparencite] = ACTIONS(4935), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHParencite] = ACTIONS(4935), + [anon_sym_BSLASHfootcite] = ACTIONS(4935), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4935), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4935), + [anon_sym_BSLASHtextcite] = ACTIONS(4935), + [anon_sym_BSLASHTextcite] = ACTIONS(4935), + [anon_sym_BSLASHsmartcite] = ACTIONS(4935), + [anon_sym_BSLASHSmartcite] = ACTIONS(4935), + [anon_sym_BSLASHsupercite] = ACTIONS(4935), + [anon_sym_BSLASHautocite] = ACTIONS(4935), + [anon_sym_BSLASHAutocite] = ACTIONS(4935), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHvolcite] = ACTIONS(4935), + [anon_sym_BSLASHVolcite] = ACTIONS(4935), + [anon_sym_BSLASHpvolcite] = ACTIONS(4935), + [anon_sym_BSLASHPvolcite] = ACTIONS(4935), + [anon_sym_BSLASHfvolcite] = ACTIONS(4935), + [anon_sym_BSLASHftvolcite] = ACTIONS(4935), + [anon_sym_BSLASHsvolcite] = ACTIONS(4935), + [anon_sym_BSLASHSvolcite] = ACTIONS(4935), + [anon_sym_BSLASHtvolcite] = ACTIONS(4935), + [anon_sym_BSLASHTvolcite] = ACTIONS(4935), + [anon_sym_BSLASHavolcite] = ACTIONS(4935), + [anon_sym_BSLASHAvolcite] = ACTIONS(4935), + [anon_sym_BSLASHnotecite] = ACTIONS(4935), + [anon_sym_BSLASHNotecite] = ACTIONS(4935), + [anon_sym_BSLASHpnotecite] = ACTIONS(4935), + [anon_sym_BSLASHPnotecite] = ACTIONS(4935), + [anon_sym_BSLASHfnotecite] = ACTIONS(4935), + [anon_sym_BSLASHlabel] = ACTIONS(4935), + [anon_sym_BSLASHref] = ACTIONS(4935), + [anon_sym_BSLASHeqref] = ACTIONS(4935), + [anon_sym_BSLASHvref] = ACTIONS(4935), + [anon_sym_BSLASHVref] = ACTIONS(4935), + [anon_sym_BSLASHautoref] = ACTIONS(4935), + [anon_sym_BSLASHpageref] = ACTIONS(4935), + [anon_sym_BSLASHcref] = ACTIONS(4935), + [anon_sym_BSLASHCref] = ACTIONS(4935), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4933), + [anon_sym_BSLASHnamecref] = ACTIONS(4935), + [anon_sym_BSLASHnameCref] = ACTIONS(4935), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4935), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4935), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4935), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4935), + [anon_sym_BSLASHlabelcref] = ACTIONS(4935), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4935), + [anon_sym_BSLASHcrefrange] = ACTIONS(4935), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCrefrange] = ACTIONS(4935), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4933), + [anon_sym_BSLASHnewlabel] = ACTIONS(4935), + [anon_sym_BSLASHnewcommand] = ACTIONS(4935), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4935), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4935), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4935), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4933), + [anon_sym_BSLASHdef] = ACTIONS(4935), + [anon_sym_BSLASHlet] = ACTIONS(4935), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4935), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4935), + [anon_sym_BSLASHgls] = ACTIONS(4935), + [anon_sym_BSLASHGls] = ACTIONS(4935), + [anon_sym_BSLASHGLS] = ACTIONS(4935), + [anon_sym_BSLASHglspl] = ACTIONS(4935), + [anon_sym_BSLASHGlspl] = ACTIONS(4935), + [anon_sym_BSLASHGLSpl] = ACTIONS(4935), + [anon_sym_BSLASHglsdisp] = ACTIONS(4935), + [anon_sym_BSLASHglslink] = ACTIONS(4935), + [anon_sym_BSLASHglstext] = ACTIONS(4935), + [anon_sym_BSLASHGlstext] = ACTIONS(4935), + [anon_sym_BSLASHGLStext] = ACTIONS(4935), + [anon_sym_BSLASHglsfirst] = ACTIONS(4935), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4935), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4935), + [anon_sym_BSLASHglsplural] = ACTIONS(4935), + [anon_sym_BSLASHGlsplural] = ACTIONS(4935), + [anon_sym_BSLASHGLSplural] = ACTIONS(4935), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHglsname] = ACTIONS(4935), + [anon_sym_BSLASHGlsname] = ACTIONS(4935), + [anon_sym_BSLASHGLSname] = ACTIONS(4935), + [anon_sym_BSLASHglssymbol] = ACTIONS(4935), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4935), + [anon_sym_BSLASHglsdesc] = ACTIONS(4935), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4935), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4935), + [anon_sym_BSLASHglsuseri] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4935), + [anon_sym_BSLASHglsuserii] = ACTIONS(4935), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4935), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4935), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4935), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4935), + [anon_sym_BSLASHglsuserv] = ACTIONS(4935), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4935), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4935), + [anon_sym_BSLASHglsuservi] = ACTIONS(4935), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4935), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4935), + [anon_sym_BSLASHnewacronym] = ACTIONS(4935), + [anon_sym_BSLASHacrshort] = ACTIONS(4935), + [anon_sym_BSLASHAcrshort] = ACTIONS(4935), + [anon_sym_BSLASHACRshort] = ACTIONS(4935), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4935), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4935), + [anon_sym_BSLASHacrlong] = ACTIONS(4935), + [anon_sym_BSLASHAcrlong] = ACTIONS(4935), + [anon_sym_BSLASHACRlong] = ACTIONS(4935), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4935), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4935), + [anon_sym_BSLASHacrfull] = ACTIONS(4935), + [anon_sym_BSLASHAcrfull] = ACTIONS(4935), + [anon_sym_BSLASHACRfull] = ACTIONS(4935), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4935), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4935), + [anon_sym_BSLASHacs] = ACTIONS(4935), + [anon_sym_BSLASHAcs] = ACTIONS(4935), + [anon_sym_BSLASHacsp] = ACTIONS(4935), + [anon_sym_BSLASHAcsp] = ACTIONS(4935), + [anon_sym_BSLASHacl] = ACTIONS(4935), + [anon_sym_BSLASHAcl] = ACTIONS(4935), + [anon_sym_BSLASHaclp] = ACTIONS(4935), + [anon_sym_BSLASHAclp] = ACTIONS(4935), + [anon_sym_BSLASHacf] = ACTIONS(4935), + [anon_sym_BSLASHAcf] = ACTIONS(4935), + [anon_sym_BSLASHacfp] = ACTIONS(4935), + [anon_sym_BSLASHAcfp] = ACTIONS(4935), + [anon_sym_BSLASHac] = ACTIONS(4935), + [anon_sym_BSLASHAc] = ACTIONS(4935), + [anon_sym_BSLASHacp] = ACTIONS(4935), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4935), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4935), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4935), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4935), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4935), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4935), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4935), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4935), + [anon_sym_BSLASHcolor] = ACTIONS(4935), + [anon_sym_BSLASHcolorbox] = ACTIONS(4935), + [anon_sym_BSLASHtextcolor] = ACTIONS(4935), + [anon_sym_BSLASHpagecolor] = ACTIONS(4935), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4935), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), + [anon_sym_BSLASHtext] = ACTIONS(4935), + [anon_sym_BSLASHintertext] = ACTIONS(4935), + [anon_sym_shortintertext] = ACTIONS(4935), }, - [1070] = { - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_BSLASHpart] = ACTIONS(5333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddpart] = ACTIONS(5333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHchapter] = ACTIONS(5333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddchap] = ACTIONS(5333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsection] = ACTIONS(5333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddsec] = ACTIONS(5333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHparagraph] = ACTIONS(5333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHitem] = ACTIONS(5333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASHbegin] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), + [896] = { + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHchapter] = ACTIONS(143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddchap] = ACTIONS(143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), + [anon_sym_BSLASHsection] = ACTIONS(143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddsec] = ACTIONS(143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHparagraph] = ACTIONS(143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHitem] = ACTIONS(143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASH_RBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), }, - [1071] = { - [sym_command_name] = ACTIONS(5337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_BSLASHpart] = ACTIONS(5337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddpart] = ACTIONS(5337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHchapter] = ACTIONS(5337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddchap] = ACTIONS(5337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsection] = ACTIONS(5337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddsec] = ACTIONS(5337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHparagraph] = ACTIONS(5337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHitem] = ACTIONS(5337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASHbegin] = ACTIONS(5337), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), + [897] = { + [sym_command_name] = ACTIONS(5007), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_RBRACK] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_BSLASHpart] = ACTIONS(5007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddpart] = ACTIONS(5007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), + [anon_sym_BSLASHchapter] = ACTIONS(5007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddchap] = ACTIONS(5007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsection] = ACTIONS(5007), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddsec] = ACTIONS(5007), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubsection] = ACTIONS(5007), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHparagraph] = ACTIONS(5007), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), + [anon_sym_BSLASHitem] = ACTIONS(5007), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5005), + [sym_word] = ACTIONS(5007), + [sym_placeholder] = ACTIONS(5005), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym__] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_BANG] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5007), + [anon_sym_SQUOTE] = ACTIONS(5007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), + [anon_sym_DOLLAR] = ACTIONS(5007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5005), + [anon_sym_BSLASHbegin] = ACTIONS(5007), + [anon_sym_BSLASHusepackage] = ACTIONS(5007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), + [anon_sym_BSLASHinclude] = ACTIONS(5007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), + [anon_sym_BSLASHinput] = ACTIONS(5007), + [anon_sym_BSLASHsubfile] = ACTIONS(5007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), + [anon_sym_BSLASHbibliography] = ACTIONS(5007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), + [anon_sym_BSLASHincludesvg] = ACTIONS(5007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), + [anon_sym_BSLASHimport] = ACTIONS(5007), + [anon_sym_BSLASHsubimport] = ACTIONS(5007), + [anon_sym_BSLASHinputfrom] = ACTIONS(5007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), + [anon_sym_BSLASHincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHcaption] = ACTIONS(5007), + [anon_sym_BSLASHcite] = ACTIONS(5007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCite] = ACTIONS(5007), + [anon_sym_BSLASHnocite] = ACTIONS(5007), + [anon_sym_BSLASHcitet] = ACTIONS(5007), + [anon_sym_BSLASHcitep] = ACTIONS(5007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteauthor] = ACTIONS(5007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitetitle] = ACTIONS(5007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteyear] = ACTIONS(5007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitedate] = ACTIONS(5007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteurl] = ACTIONS(5007), + [anon_sym_BSLASHfullcite] = ACTIONS(5007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), + [anon_sym_BSLASHcitealt] = ACTIONS(5007), + [anon_sym_BSLASHcitealp] = ACTIONS(5007), + [anon_sym_BSLASHcitetext] = ACTIONS(5007), + [anon_sym_BSLASHparencite] = ACTIONS(5007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHParencite] = ACTIONS(5007), + [anon_sym_BSLASHfootcite] = ACTIONS(5007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), + [anon_sym_BSLASHtextcite] = ACTIONS(5007), + [anon_sym_BSLASHTextcite] = ACTIONS(5007), + [anon_sym_BSLASHsmartcite] = ACTIONS(5007), + [anon_sym_BSLASHSmartcite] = ACTIONS(5007), + [anon_sym_BSLASHsupercite] = ACTIONS(5007), + [anon_sym_BSLASHautocite] = ACTIONS(5007), + [anon_sym_BSLASHAutocite] = ACTIONS(5007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHvolcite] = ACTIONS(5007), + [anon_sym_BSLASHVolcite] = ACTIONS(5007), + [anon_sym_BSLASHpvolcite] = ACTIONS(5007), + [anon_sym_BSLASHPvolcite] = ACTIONS(5007), + [anon_sym_BSLASHfvolcite] = ACTIONS(5007), + [anon_sym_BSLASHftvolcite] = ACTIONS(5007), + [anon_sym_BSLASHsvolcite] = ACTIONS(5007), + [anon_sym_BSLASHSvolcite] = ACTIONS(5007), + [anon_sym_BSLASHtvolcite] = ACTIONS(5007), + [anon_sym_BSLASHTvolcite] = ACTIONS(5007), + [anon_sym_BSLASHavolcite] = ACTIONS(5007), + [anon_sym_BSLASHAvolcite] = ACTIONS(5007), + [anon_sym_BSLASHnotecite] = ACTIONS(5007), + [anon_sym_BSLASHNotecite] = ACTIONS(5007), + [anon_sym_BSLASHpnotecite] = ACTIONS(5007), + [anon_sym_BSLASHPnotecite] = ACTIONS(5007), + [anon_sym_BSLASHfnotecite] = ACTIONS(5007), + [anon_sym_BSLASHlabel] = ACTIONS(5007), + [anon_sym_BSLASHref] = ACTIONS(5007), + [anon_sym_BSLASHeqref] = ACTIONS(5007), + [anon_sym_BSLASHvref] = ACTIONS(5007), + [anon_sym_BSLASHVref] = ACTIONS(5007), + [anon_sym_BSLASHautoref] = ACTIONS(5007), + [anon_sym_BSLASHpageref] = ACTIONS(5007), + [anon_sym_BSLASHcref] = ACTIONS(5007), + [anon_sym_BSLASHCref] = ACTIONS(5007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnameCref] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHlabelcref] = ACTIONS(5007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCrefrange] = ACTIONS(5007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnewlabel] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), + [anon_sym_BSLASHdef] = ACTIONS(5007), + [anon_sym_BSLASHlet] = ACTIONS(5007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), + [anon_sym_BSLASHgls] = ACTIONS(5007), + [anon_sym_BSLASHGls] = ACTIONS(5007), + [anon_sym_BSLASHGLS] = ACTIONS(5007), + [anon_sym_BSLASHglspl] = ACTIONS(5007), + [anon_sym_BSLASHGlspl] = ACTIONS(5007), + [anon_sym_BSLASHGLSpl] = ACTIONS(5007), + [anon_sym_BSLASHglsdisp] = ACTIONS(5007), + [anon_sym_BSLASHglslink] = ACTIONS(5007), + [anon_sym_BSLASHglstext] = ACTIONS(5007), + [anon_sym_BSLASHGlstext] = ACTIONS(5007), + [anon_sym_BSLASHGLStext] = ACTIONS(5007), + [anon_sym_BSLASHglsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), + [anon_sym_BSLASHglsplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSplural] = ACTIONS(5007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHglsname] = ACTIONS(5007), + [anon_sym_BSLASHGlsname] = ACTIONS(5007), + [anon_sym_BSLASHGLSname] = ACTIONS(5007), + [anon_sym_BSLASHglssymbol] = ACTIONS(5007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), + [anon_sym_BSLASHglsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), + [anon_sym_BSLASHglsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), + [anon_sym_BSLASHglsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), + [anon_sym_BSLASHglsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), + [anon_sym_BSLASHglsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), + [anon_sym_BSLASHnewacronym] = ACTIONS(5007), + [anon_sym_BSLASHacrshort] = ACTIONS(5007), + [anon_sym_BSLASHAcrshort] = ACTIONS(5007), + [anon_sym_BSLASHACRshort] = ACTIONS(5007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), + [anon_sym_BSLASHacrlong] = ACTIONS(5007), + [anon_sym_BSLASHAcrlong] = ACTIONS(5007), + [anon_sym_BSLASHACRlong] = ACTIONS(5007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), + [anon_sym_BSLASHacrfull] = ACTIONS(5007), + [anon_sym_BSLASHAcrfull] = ACTIONS(5007), + [anon_sym_BSLASHACRfull] = ACTIONS(5007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), + [anon_sym_BSLASHacs] = ACTIONS(5007), + [anon_sym_BSLASHAcs] = ACTIONS(5007), + [anon_sym_BSLASHacsp] = ACTIONS(5007), + [anon_sym_BSLASHAcsp] = ACTIONS(5007), + [anon_sym_BSLASHacl] = ACTIONS(5007), + [anon_sym_BSLASHAcl] = ACTIONS(5007), + [anon_sym_BSLASHaclp] = ACTIONS(5007), + [anon_sym_BSLASHAclp] = ACTIONS(5007), + [anon_sym_BSLASHacf] = ACTIONS(5007), + [anon_sym_BSLASHAcf] = ACTIONS(5007), + [anon_sym_BSLASHacfp] = ACTIONS(5007), + [anon_sym_BSLASHAcfp] = ACTIONS(5007), + [anon_sym_BSLASHac] = ACTIONS(5007), + [anon_sym_BSLASHAc] = ACTIONS(5007), + [anon_sym_BSLASHacp] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), + [anon_sym_BSLASHcolor] = ACTIONS(5007), + [anon_sym_BSLASHcolorbox] = ACTIONS(5007), + [anon_sym_BSLASHtextcolor] = ACTIONS(5007), + [anon_sym_BSLASHpagecolor] = ACTIONS(5007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), + [anon_sym_BSLASHtext] = ACTIONS(5007), + [anon_sym_BSLASHintertext] = ACTIONS(5007), + [anon_sym_shortintertext] = ACTIONS(5007), }, - [1072] = { - [sym_command_name] = ACTIONS(5341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_BSLASHpart] = ACTIONS(5341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddpart] = ACTIONS(5341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHchapter] = ACTIONS(5341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddchap] = ACTIONS(5341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsection] = ACTIONS(5341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddsec] = ACTIONS(5341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHparagraph] = ACTIONS(5341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHitem] = ACTIONS(5341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASHbegin] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), + [898] = { + [sym_command_name] = ACTIONS(4959), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_BSLASHpart] = ACTIONS(4959), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddpart] = ACTIONS(4959), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), + [anon_sym_BSLASHchapter] = ACTIONS(4959), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddchap] = ACTIONS(4959), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsection] = ACTIONS(4959), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddsec] = ACTIONS(4959), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubsection] = ACTIONS(4959), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHparagraph] = ACTIONS(4959), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), + [anon_sym_BSLASHitem] = ACTIONS(4959), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4957), + [sym_word] = ACTIONS(4959), + [sym_placeholder] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_CARET] = ACTIONS(4959), + [anon_sym__] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_COLON] = ACTIONS(4959), + [anon_sym_SQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), + [anon_sym_DOLLAR] = ACTIONS(4959), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4957), + [anon_sym_BSLASHbegin] = ACTIONS(4959), + [anon_sym_BSLASHusepackage] = ACTIONS(4959), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), + [anon_sym_BSLASHinclude] = ACTIONS(4959), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), + [anon_sym_BSLASHinput] = ACTIONS(4959), + [anon_sym_BSLASHsubfile] = ACTIONS(4959), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), + [anon_sym_BSLASHbibliography] = ACTIONS(4959), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), + [anon_sym_BSLASHincludesvg] = ACTIONS(4959), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), + [anon_sym_BSLASHimport] = ACTIONS(4959), + [anon_sym_BSLASHsubimport] = ACTIONS(4959), + [anon_sym_BSLASHinputfrom] = ACTIONS(4959), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), + [anon_sym_BSLASHincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHcaption] = ACTIONS(4959), + [anon_sym_BSLASHcite] = ACTIONS(4959), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCite] = ACTIONS(4959), + [anon_sym_BSLASHnocite] = ACTIONS(4959), + [anon_sym_BSLASHcitet] = ACTIONS(4959), + [anon_sym_BSLASHcitep] = ACTIONS(4959), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteauthor] = ACTIONS(4959), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitetitle] = ACTIONS(4959), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteyear] = ACTIONS(4959), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitedate] = ACTIONS(4959), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteurl] = ACTIONS(4959), + [anon_sym_BSLASHfullcite] = ACTIONS(4959), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), + [anon_sym_BSLASHcitealt] = ACTIONS(4959), + [anon_sym_BSLASHcitealp] = ACTIONS(4959), + [anon_sym_BSLASHcitetext] = ACTIONS(4959), + [anon_sym_BSLASHparencite] = ACTIONS(4959), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHParencite] = ACTIONS(4959), + [anon_sym_BSLASHfootcite] = ACTIONS(4959), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), + [anon_sym_BSLASHtextcite] = ACTIONS(4959), + [anon_sym_BSLASHTextcite] = ACTIONS(4959), + [anon_sym_BSLASHsmartcite] = ACTIONS(4959), + [anon_sym_BSLASHSmartcite] = ACTIONS(4959), + [anon_sym_BSLASHsupercite] = ACTIONS(4959), + [anon_sym_BSLASHautocite] = ACTIONS(4959), + [anon_sym_BSLASHAutocite] = ACTIONS(4959), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHvolcite] = ACTIONS(4959), + [anon_sym_BSLASHVolcite] = ACTIONS(4959), + [anon_sym_BSLASHpvolcite] = ACTIONS(4959), + [anon_sym_BSLASHPvolcite] = ACTIONS(4959), + [anon_sym_BSLASHfvolcite] = ACTIONS(4959), + [anon_sym_BSLASHftvolcite] = ACTIONS(4959), + [anon_sym_BSLASHsvolcite] = ACTIONS(4959), + [anon_sym_BSLASHSvolcite] = ACTIONS(4959), + [anon_sym_BSLASHtvolcite] = ACTIONS(4959), + [anon_sym_BSLASHTvolcite] = ACTIONS(4959), + [anon_sym_BSLASHavolcite] = ACTIONS(4959), + [anon_sym_BSLASHAvolcite] = ACTIONS(4959), + [anon_sym_BSLASHnotecite] = ACTIONS(4959), + [anon_sym_BSLASHNotecite] = ACTIONS(4959), + [anon_sym_BSLASHpnotecite] = ACTIONS(4959), + [anon_sym_BSLASHPnotecite] = ACTIONS(4959), + [anon_sym_BSLASHfnotecite] = ACTIONS(4959), + [anon_sym_BSLASHlabel] = ACTIONS(4959), + [anon_sym_BSLASHref] = ACTIONS(4959), + [anon_sym_BSLASHeqref] = ACTIONS(4959), + [anon_sym_BSLASHvref] = ACTIONS(4959), + [anon_sym_BSLASHVref] = ACTIONS(4959), + [anon_sym_BSLASHautoref] = ACTIONS(4959), + [anon_sym_BSLASHpageref] = ACTIONS(4959), + [anon_sym_BSLASHcref] = ACTIONS(4959), + [anon_sym_BSLASHCref] = ACTIONS(4959), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnameCref] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHlabelcref] = ACTIONS(4959), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCrefrange] = ACTIONS(4959), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnewlabel] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), + [anon_sym_BSLASHdef] = ACTIONS(4959), + [anon_sym_BSLASHlet] = ACTIONS(4959), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), + [anon_sym_BSLASHgls] = ACTIONS(4959), + [anon_sym_BSLASHGls] = ACTIONS(4959), + [anon_sym_BSLASHGLS] = ACTIONS(4959), + [anon_sym_BSLASHglspl] = ACTIONS(4959), + [anon_sym_BSLASHGlspl] = ACTIONS(4959), + [anon_sym_BSLASHGLSpl] = ACTIONS(4959), + [anon_sym_BSLASHglsdisp] = ACTIONS(4959), + [anon_sym_BSLASHglslink] = ACTIONS(4959), + [anon_sym_BSLASHglstext] = ACTIONS(4959), + [anon_sym_BSLASHGlstext] = ACTIONS(4959), + [anon_sym_BSLASHGLStext] = ACTIONS(4959), + [anon_sym_BSLASHglsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), + [anon_sym_BSLASHglsplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSplural] = ACTIONS(4959), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHglsname] = ACTIONS(4959), + [anon_sym_BSLASHGlsname] = ACTIONS(4959), + [anon_sym_BSLASHGLSname] = ACTIONS(4959), + [anon_sym_BSLASHglssymbol] = ACTIONS(4959), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), + [anon_sym_BSLASHglsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), + [anon_sym_BSLASHglsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), + [anon_sym_BSLASHglsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), + [anon_sym_BSLASHglsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), + [anon_sym_BSLASHglsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), + [anon_sym_BSLASHnewacronym] = ACTIONS(4959), + [anon_sym_BSLASHacrshort] = ACTIONS(4959), + [anon_sym_BSLASHAcrshort] = ACTIONS(4959), + [anon_sym_BSLASHACRshort] = ACTIONS(4959), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), + [anon_sym_BSLASHacrlong] = ACTIONS(4959), + [anon_sym_BSLASHAcrlong] = ACTIONS(4959), + [anon_sym_BSLASHACRlong] = ACTIONS(4959), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), + [anon_sym_BSLASHacrfull] = ACTIONS(4959), + [anon_sym_BSLASHAcrfull] = ACTIONS(4959), + [anon_sym_BSLASHACRfull] = ACTIONS(4959), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), + [anon_sym_BSLASHacs] = ACTIONS(4959), + [anon_sym_BSLASHAcs] = ACTIONS(4959), + [anon_sym_BSLASHacsp] = ACTIONS(4959), + [anon_sym_BSLASHAcsp] = ACTIONS(4959), + [anon_sym_BSLASHacl] = ACTIONS(4959), + [anon_sym_BSLASHAcl] = ACTIONS(4959), + [anon_sym_BSLASHaclp] = ACTIONS(4959), + [anon_sym_BSLASHAclp] = ACTIONS(4959), + [anon_sym_BSLASHacf] = ACTIONS(4959), + [anon_sym_BSLASHAcf] = ACTIONS(4959), + [anon_sym_BSLASHacfp] = ACTIONS(4959), + [anon_sym_BSLASHAcfp] = ACTIONS(4959), + [anon_sym_BSLASHac] = ACTIONS(4959), + [anon_sym_BSLASHAc] = ACTIONS(4959), + [anon_sym_BSLASHacp] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), + [anon_sym_BSLASHcolor] = ACTIONS(4959), + [anon_sym_BSLASHcolorbox] = ACTIONS(4959), + [anon_sym_BSLASHtextcolor] = ACTIONS(4959), + [anon_sym_BSLASHpagecolor] = ACTIONS(4959), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHtext] = ACTIONS(4959), + [anon_sym_BSLASHintertext] = ACTIONS(4959), + [anon_sym_shortintertext] = ACTIONS(4959), }, - [1073] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_BSLASHpart] = ACTIONS(5345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddpart] = ACTIONS(5345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHchapter] = ACTIONS(5345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddchap] = ACTIONS(5345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsection] = ACTIONS(5345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddsec] = ACTIONS(5345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHparagraph] = ACTIONS(5345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHitem] = ACTIONS(5345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASHbegin] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), + [899] = { + [sym_command_name] = ACTIONS(5017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5017), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_RPAREN] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_RBRACK] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_EQ] = ACTIONS(5015), + [anon_sym_BSLASHpart] = ACTIONS(5017), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddpart] = ACTIONS(5017), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5015), + [anon_sym_BSLASHchapter] = ACTIONS(5017), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddchap] = ACTIONS(5017), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsection] = ACTIONS(5017), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddsec] = ACTIONS(5017), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubsection] = ACTIONS(5017), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5017), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHparagraph] = ACTIONS(5017), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5017), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5015), + [anon_sym_BSLASHitem] = ACTIONS(5017), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5015), + [anon_sym_LBRACE] = ACTIONS(5015), + [sym_word] = ACTIONS(5017), + [sym_placeholder] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5017), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_CARET] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5017), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_COLON] = ACTIONS(5017), + [anon_sym_SQUOTE] = ACTIONS(5017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), + [anon_sym_DOLLAR] = ACTIONS(5017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), + [anon_sym_BSLASHbegin] = ACTIONS(5017), + [anon_sym_BSLASHusepackage] = ACTIONS(5017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), + [anon_sym_BSLASHinclude] = ACTIONS(5017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), + [anon_sym_BSLASHinput] = ACTIONS(5017), + [anon_sym_BSLASHsubfile] = ACTIONS(5017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), + [anon_sym_BSLASHbibliography] = ACTIONS(5017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), + [anon_sym_BSLASHincludesvg] = ACTIONS(5017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), + [anon_sym_BSLASHimport] = ACTIONS(5017), + [anon_sym_BSLASHsubimport] = ACTIONS(5017), + [anon_sym_BSLASHinputfrom] = ACTIONS(5017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), + [anon_sym_BSLASHincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHcaption] = ACTIONS(5017), + [anon_sym_BSLASHcite] = ACTIONS(5017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCite] = ACTIONS(5017), + [anon_sym_BSLASHnocite] = ACTIONS(5017), + [anon_sym_BSLASHcitet] = ACTIONS(5017), + [anon_sym_BSLASHcitep] = ACTIONS(5017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteauthor] = ACTIONS(5017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitetitle] = ACTIONS(5017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteyear] = ACTIONS(5017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitedate] = ACTIONS(5017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteurl] = ACTIONS(5017), + [anon_sym_BSLASHfullcite] = ACTIONS(5017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), + [anon_sym_BSLASHcitealt] = ACTIONS(5017), + [anon_sym_BSLASHcitealp] = ACTIONS(5017), + [anon_sym_BSLASHcitetext] = ACTIONS(5017), + [anon_sym_BSLASHparencite] = ACTIONS(5017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHParencite] = ACTIONS(5017), + [anon_sym_BSLASHfootcite] = ACTIONS(5017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), + [anon_sym_BSLASHtextcite] = ACTIONS(5017), + [anon_sym_BSLASHTextcite] = ACTIONS(5017), + [anon_sym_BSLASHsmartcite] = ACTIONS(5017), + [anon_sym_BSLASHSmartcite] = ACTIONS(5017), + [anon_sym_BSLASHsupercite] = ACTIONS(5017), + [anon_sym_BSLASHautocite] = ACTIONS(5017), + [anon_sym_BSLASHAutocite] = ACTIONS(5017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHvolcite] = ACTIONS(5017), + [anon_sym_BSLASHVolcite] = ACTIONS(5017), + [anon_sym_BSLASHpvolcite] = ACTIONS(5017), + [anon_sym_BSLASHPvolcite] = ACTIONS(5017), + [anon_sym_BSLASHfvolcite] = ACTIONS(5017), + [anon_sym_BSLASHftvolcite] = ACTIONS(5017), + [anon_sym_BSLASHsvolcite] = ACTIONS(5017), + [anon_sym_BSLASHSvolcite] = ACTIONS(5017), + [anon_sym_BSLASHtvolcite] = ACTIONS(5017), + [anon_sym_BSLASHTvolcite] = ACTIONS(5017), + [anon_sym_BSLASHavolcite] = ACTIONS(5017), + [anon_sym_BSLASHAvolcite] = ACTIONS(5017), + [anon_sym_BSLASHnotecite] = ACTIONS(5017), + [anon_sym_BSLASHNotecite] = ACTIONS(5017), + [anon_sym_BSLASHpnotecite] = ACTIONS(5017), + [anon_sym_BSLASHPnotecite] = ACTIONS(5017), + [anon_sym_BSLASHfnotecite] = ACTIONS(5017), + [anon_sym_BSLASHlabel] = ACTIONS(5017), + [anon_sym_BSLASHref] = ACTIONS(5017), + [anon_sym_BSLASHeqref] = ACTIONS(5017), + [anon_sym_BSLASHvref] = ACTIONS(5017), + [anon_sym_BSLASHVref] = ACTIONS(5017), + [anon_sym_BSLASHautoref] = ACTIONS(5017), + [anon_sym_BSLASHpageref] = ACTIONS(5017), + [anon_sym_BSLASHcref] = ACTIONS(5017), + [anon_sym_BSLASHCref] = ACTIONS(5017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnameCref] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHlabelcref] = ACTIONS(5017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCrefrange] = ACTIONS(5017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnewlabel] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), + [anon_sym_BSLASHdef] = ACTIONS(5017), + [anon_sym_BSLASHlet] = ACTIONS(5017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), + [anon_sym_BSLASHgls] = ACTIONS(5017), + [anon_sym_BSLASHGls] = ACTIONS(5017), + [anon_sym_BSLASHGLS] = ACTIONS(5017), + [anon_sym_BSLASHglspl] = ACTIONS(5017), + [anon_sym_BSLASHGlspl] = ACTIONS(5017), + [anon_sym_BSLASHGLSpl] = ACTIONS(5017), + [anon_sym_BSLASHglsdisp] = ACTIONS(5017), + [anon_sym_BSLASHglslink] = ACTIONS(5017), + [anon_sym_BSLASHglstext] = ACTIONS(5017), + [anon_sym_BSLASHGlstext] = ACTIONS(5017), + [anon_sym_BSLASHGLStext] = ACTIONS(5017), + [anon_sym_BSLASHglsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), + [anon_sym_BSLASHglsplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSplural] = ACTIONS(5017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHglsname] = ACTIONS(5017), + [anon_sym_BSLASHGlsname] = ACTIONS(5017), + [anon_sym_BSLASHGLSname] = ACTIONS(5017), + [anon_sym_BSLASHglssymbol] = ACTIONS(5017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), + [anon_sym_BSLASHglsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), + [anon_sym_BSLASHglsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), + [anon_sym_BSLASHglsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), + [anon_sym_BSLASHglsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), + [anon_sym_BSLASHglsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), + [anon_sym_BSLASHnewacronym] = ACTIONS(5017), + [anon_sym_BSLASHacrshort] = ACTIONS(5017), + [anon_sym_BSLASHAcrshort] = ACTIONS(5017), + [anon_sym_BSLASHACRshort] = ACTIONS(5017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), + [anon_sym_BSLASHacrlong] = ACTIONS(5017), + [anon_sym_BSLASHAcrlong] = ACTIONS(5017), + [anon_sym_BSLASHACRlong] = ACTIONS(5017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), + [anon_sym_BSLASHacrfull] = ACTIONS(5017), + [anon_sym_BSLASHAcrfull] = ACTIONS(5017), + [anon_sym_BSLASHACRfull] = ACTIONS(5017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), + [anon_sym_BSLASHacs] = ACTIONS(5017), + [anon_sym_BSLASHAcs] = ACTIONS(5017), + [anon_sym_BSLASHacsp] = ACTIONS(5017), + [anon_sym_BSLASHAcsp] = ACTIONS(5017), + [anon_sym_BSLASHacl] = ACTIONS(5017), + [anon_sym_BSLASHAcl] = ACTIONS(5017), + [anon_sym_BSLASHaclp] = ACTIONS(5017), + [anon_sym_BSLASHAclp] = ACTIONS(5017), + [anon_sym_BSLASHacf] = ACTIONS(5017), + [anon_sym_BSLASHAcf] = ACTIONS(5017), + [anon_sym_BSLASHacfp] = ACTIONS(5017), + [anon_sym_BSLASHAcfp] = ACTIONS(5017), + [anon_sym_BSLASHac] = ACTIONS(5017), + [anon_sym_BSLASHAc] = ACTIONS(5017), + [anon_sym_BSLASHacp] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), + [anon_sym_BSLASHcolor] = ACTIONS(5017), + [anon_sym_BSLASHcolorbox] = ACTIONS(5017), + [anon_sym_BSLASHtextcolor] = ACTIONS(5017), + [anon_sym_BSLASHpagecolor] = ACTIONS(5017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), + [anon_sym_BSLASHtext] = ACTIONS(5017), + [anon_sym_BSLASHintertext] = ACTIONS(5017), + [anon_sym_shortintertext] = ACTIONS(5017), }, - [1074] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_BSLASHpart] = ACTIONS(5349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddpart] = ACTIONS(5349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHchapter] = ACTIONS(5349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddchap] = ACTIONS(5349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsection] = ACTIONS(5349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddsec] = ACTIONS(5349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHparagraph] = ACTIONS(5349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHitem] = ACTIONS(5349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASHbegin] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), + [900] = { + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1075] = { - [sym_command_name] = ACTIONS(5385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5385), - [anon_sym_LPAREN] = ACTIONS(5383), - [anon_sym_RPAREN] = ACTIONS(5383), - [anon_sym_LBRACK] = ACTIONS(5383), - [anon_sym_RBRACK] = ACTIONS(5383), - [anon_sym_COMMA] = ACTIONS(5383), - [anon_sym_EQ] = ACTIONS(5383), - [anon_sym_BSLASHpart] = ACTIONS(5385), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddpart] = ACTIONS(5385), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5383), - [anon_sym_BSLASHchapter] = ACTIONS(5385), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddchap] = ACTIONS(5385), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsection] = ACTIONS(5385), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddsec] = ACTIONS(5385), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubsection] = ACTIONS(5385), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5385), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHparagraph] = ACTIONS(5385), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5385), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5383), - [anon_sym_BSLASHitem] = ACTIONS(5385), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5383), - [anon_sym_LBRACE] = ACTIONS(5383), - [sym_word] = ACTIONS(5385), - [sym_placeholder] = ACTIONS(5383), - [anon_sym_PLUS] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5385), - [anon_sym_SLASH] = ACTIONS(5385), - [anon_sym_CARET] = ACTIONS(5385), - [anon_sym__] = ACTIONS(5385), - [anon_sym_LT] = ACTIONS(5385), - [anon_sym_GT] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_PIPE] = ACTIONS(5385), - [anon_sym_COLON] = ACTIONS(5385), - [anon_sym_SQUOTE] = ACTIONS(5385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5383), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5383), - [anon_sym_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5383), - [anon_sym_BSLASHbegin] = ACTIONS(5385), - [anon_sym_BSLASHusepackage] = ACTIONS(5385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5385), - [anon_sym_BSLASHinclude] = ACTIONS(5385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5385), - [anon_sym_BSLASHinput] = ACTIONS(5385), - [anon_sym_BSLASHsubfile] = ACTIONS(5385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5385), - [anon_sym_BSLASHbibliography] = ACTIONS(5385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5385), - [anon_sym_BSLASHincludesvg] = ACTIONS(5385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5385), - [anon_sym_BSLASHimport] = ACTIONS(5385), - [anon_sym_BSLASHsubimport] = ACTIONS(5385), - [anon_sym_BSLASHinputfrom] = ACTIONS(5385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5385), - [anon_sym_BSLASHincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHcaption] = ACTIONS(5385), - [anon_sym_BSLASHcite] = ACTIONS(5385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCite] = ACTIONS(5385), - [anon_sym_BSLASHnocite] = ACTIONS(5385), - [anon_sym_BSLASHcitet] = ACTIONS(5385), - [anon_sym_BSLASHcitep] = ACTIONS(5385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteyear] = ACTIONS(5385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitedate] = ACTIONS(5385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteurl] = ACTIONS(5385), - [anon_sym_BSLASHfullcite] = ACTIONS(5385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5385), - [anon_sym_BSLASHcitealt] = ACTIONS(5385), - [anon_sym_BSLASHcitealp] = ACTIONS(5385), - [anon_sym_BSLASHcitetext] = ACTIONS(5385), - [anon_sym_BSLASHparencite] = ACTIONS(5385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHParencite] = ACTIONS(5385), - [anon_sym_BSLASHfootcite] = ACTIONS(5385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5385), - [anon_sym_BSLASHtextcite] = ACTIONS(5385), - [anon_sym_BSLASHTextcite] = ACTIONS(5385), - [anon_sym_BSLASHsmartcite] = ACTIONS(5385), - [anon_sym_BSLASHSmartcite] = ACTIONS(5385), - [anon_sym_BSLASHsupercite] = ACTIONS(5385), - [anon_sym_BSLASHautocite] = ACTIONS(5385), - [anon_sym_BSLASHAutocite] = ACTIONS(5385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHvolcite] = ACTIONS(5385), - [anon_sym_BSLASHVolcite] = ACTIONS(5385), - [anon_sym_BSLASHpvolcite] = ACTIONS(5385), - [anon_sym_BSLASHPvolcite] = ACTIONS(5385), - [anon_sym_BSLASHfvolcite] = ACTIONS(5385), - [anon_sym_BSLASHftvolcite] = ACTIONS(5385), - [anon_sym_BSLASHsvolcite] = ACTIONS(5385), - [anon_sym_BSLASHSvolcite] = ACTIONS(5385), - [anon_sym_BSLASHtvolcite] = ACTIONS(5385), - [anon_sym_BSLASHTvolcite] = ACTIONS(5385), - [anon_sym_BSLASHavolcite] = ACTIONS(5385), - [anon_sym_BSLASHAvolcite] = ACTIONS(5385), - [anon_sym_BSLASHnotecite] = ACTIONS(5385), - [anon_sym_BSLASHNotecite] = ACTIONS(5385), - [anon_sym_BSLASHpnotecite] = ACTIONS(5385), - [anon_sym_BSLASHPnotecite] = ACTIONS(5385), - [anon_sym_BSLASHfnotecite] = ACTIONS(5385), - [anon_sym_BSLASHlabel] = ACTIONS(5385), - [anon_sym_BSLASHref] = ACTIONS(5385), - [anon_sym_BSLASHeqref] = ACTIONS(5385), - [anon_sym_BSLASHvref] = ACTIONS(5385), - [anon_sym_BSLASHVref] = ACTIONS(5385), - [anon_sym_BSLASHautoref] = ACTIONS(5385), - [anon_sym_BSLASHpageref] = ACTIONS(5385), - [anon_sym_BSLASHcref] = ACTIONS(5385), - [anon_sym_BSLASHCref] = ACTIONS(5385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnameCref] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHlabelcref] = ACTIONS(5385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnewlabel] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5383), - [anon_sym_BSLASHdef] = ACTIONS(5385), - [anon_sym_BSLASHlet] = ACTIONS(5385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5385), - [anon_sym_BSLASHgls] = ACTIONS(5385), - [anon_sym_BSLASHGls] = ACTIONS(5385), - [anon_sym_BSLASHGLS] = ACTIONS(5385), - [anon_sym_BSLASHglspl] = ACTIONS(5385), - [anon_sym_BSLASHGlspl] = ACTIONS(5385), - [anon_sym_BSLASHGLSpl] = ACTIONS(5385), - [anon_sym_BSLASHglsdisp] = ACTIONS(5385), - [anon_sym_BSLASHglslink] = ACTIONS(5385), - [anon_sym_BSLASHglstext] = ACTIONS(5385), - [anon_sym_BSLASHGlstext] = ACTIONS(5385), - [anon_sym_BSLASHGLStext] = ACTIONS(5385), - [anon_sym_BSLASHglsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5385), - [anon_sym_BSLASHglsplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSplural] = ACTIONS(5385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHglsname] = ACTIONS(5385), - [anon_sym_BSLASHGlsname] = ACTIONS(5385), - [anon_sym_BSLASHGLSname] = ACTIONS(5385), - [anon_sym_BSLASHglssymbol] = ACTIONS(5385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5385), - [anon_sym_BSLASHglsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5385), - [anon_sym_BSLASHglsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5385), - [anon_sym_BSLASHglsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5385), - [anon_sym_BSLASHglsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5385), - [anon_sym_BSLASHglsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5385), - [anon_sym_BSLASHnewacronym] = ACTIONS(5385), - [anon_sym_BSLASHacrshort] = ACTIONS(5385), - [anon_sym_BSLASHAcrshort] = ACTIONS(5385), - [anon_sym_BSLASHACRshort] = ACTIONS(5385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5385), - [anon_sym_BSLASHacrlong] = ACTIONS(5385), - [anon_sym_BSLASHAcrlong] = ACTIONS(5385), - [anon_sym_BSLASHACRlong] = ACTIONS(5385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5385), - [anon_sym_BSLASHacrfull] = ACTIONS(5385), - [anon_sym_BSLASHAcrfull] = ACTIONS(5385), - [anon_sym_BSLASHACRfull] = ACTIONS(5385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5385), - [anon_sym_BSLASHacs] = ACTIONS(5385), - [anon_sym_BSLASHAcs] = ACTIONS(5385), - [anon_sym_BSLASHacsp] = ACTIONS(5385), - [anon_sym_BSLASHAcsp] = ACTIONS(5385), - [anon_sym_BSLASHacl] = ACTIONS(5385), - [anon_sym_BSLASHAcl] = ACTIONS(5385), - [anon_sym_BSLASHaclp] = ACTIONS(5385), - [anon_sym_BSLASHAclp] = ACTIONS(5385), - [anon_sym_BSLASHacf] = ACTIONS(5385), - [anon_sym_BSLASHAcf] = ACTIONS(5385), - [anon_sym_BSLASHacfp] = ACTIONS(5385), - [anon_sym_BSLASHAcfp] = ACTIONS(5385), - [anon_sym_BSLASHac] = ACTIONS(5385), - [anon_sym_BSLASHAc] = ACTIONS(5385), - [anon_sym_BSLASHacp] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5385), - [anon_sym_BSLASHcolor] = ACTIONS(5385), - [anon_sym_BSLASHcolorbox] = ACTIONS(5385), - [anon_sym_BSLASHtextcolor] = ACTIONS(5385), - [anon_sym_BSLASHpagecolor] = ACTIONS(5385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5385), + [901] = { + [sym_command_name] = ACTIONS(4939), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4937), + [anon_sym_RPAREN] = ACTIONS(4937), + [anon_sym_LBRACK] = ACTIONS(4937), + [anon_sym_RBRACK] = ACTIONS(4937), + [anon_sym_COMMA] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_BSLASHpart] = ACTIONS(4939), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddpart] = ACTIONS(4939), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4937), + [anon_sym_BSLASHchapter] = ACTIONS(4939), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddchap] = ACTIONS(4939), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsection] = ACTIONS(4939), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddsec] = ACTIONS(4939), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubsection] = ACTIONS(4939), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4939), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHparagraph] = ACTIONS(4939), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4939), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4937), + [anon_sym_BSLASHitem] = ACTIONS(4939), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4937), + [sym_word] = ACTIONS(4939), + [sym_placeholder] = ACTIONS(4937), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_SLASH] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(4939), + [anon_sym__] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4939), + [anon_sym_GT] = ACTIONS(4939), + [anon_sym_BANG] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4939), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_SQUOTE] = ACTIONS(4939), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), + [anon_sym_DOLLAR] = ACTIONS(4939), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4937), + [anon_sym_BSLASHbegin] = ACTIONS(4939), + [anon_sym_BSLASHusepackage] = ACTIONS(4939), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), + [anon_sym_BSLASHinclude] = ACTIONS(4939), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), + [anon_sym_BSLASHinput] = ACTIONS(4939), + [anon_sym_BSLASHsubfile] = ACTIONS(4939), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), + [anon_sym_BSLASHbibliography] = ACTIONS(4939), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), + [anon_sym_BSLASHincludesvg] = ACTIONS(4939), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), + [anon_sym_BSLASHimport] = ACTIONS(4939), + [anon_sym_BSLASHsubimport] = ACTIONS(4939), + [anon_sym_BSLASHinputfrom] = ACTIONS(4939), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), + [anon_sym_BSLASHincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHcaption] = ACTIONS(4939), + [anon_sym_BSLASHcite] = ACTIONS(4939), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCite] = ACTIONS(4939), + [anon_sym_BSLASHnocite] = ACTIONS(4939), + [anon_sym_BSLASHcitet] = ACTIONS(4939), + [anon_sym_BSLASHcitep] = ACTIONS(4939), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteauthor] = ACTIONS(4939), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitetitle] = ACTIONS(4939), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteyear] = ACTIONS(4939), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitedate] = ACTIONS(4939), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteurl] = ACTIONS(4939), + [anon_sym_BSLASHfullcite] = ACTIONS(4939), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), + [anon_sym_BSLASHcitealt] = ACTIONS(4939), + [anon_sym_BSLASHcitealp] = ACTIONS(4939), + [anon_sym_BSLASHcitetext] = ACTIONS(4939), + [anon_sym_BSLASHparencite] = ACTIONS(4939), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHParencite] = ACTIONS(4939), + [anon_sym_BSLASHfootcite] = ACTIONS(4939), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), + [anon_sym_BSLASHtextcite] = ACTIONS(4939), + [anon_sym_BSLASHTextcite] = ACTIONS(4939), + [anon_sym_BSLASHsmartcite] = ACTIONS(4939), + [anon_sym_BSLASHSmartcite] = ACTIONS(4939), + [anon_sym_BSLASHsupercite] = ACTIONS(4939), + [anon_sym_BSLASHautocite] = ACTIONS(4939), + [anon_sym_BSLASHAutocite] = ACTIONS(4939), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHvolcite] = ACTIONS(4939), + [anon_sym_BSLASHVolcite] = ACTIONS(4939), + [anon_sym_BSLASHpvolcite] = ACTIONS(4939), + [anon_sym_BSLASHPvolcite] = ACTIONS(4939), + [anon_sym_BSLASHfvolcite] = ACTIONS(4939), + [anon_sym_BSLASHftvolcite] = ACTIONS(4939), + [anon_sym_BSLASHsvolcite] = ACTIONS(4939), + [anon_sym_BSLASHSvolcite] = ACTIONS(4939), + [anon_sym_BSLASHtvolcite] = ACTIONS(4939), + [anon_sym_BSLASHTvolcite] = ACTIONS(4939), + [anon_sym_BSLASHavolcite] = ACTIONS(4939), + [anon_sym_BSLASHAvolcite] = ACTIONS(4939), + [anon_sym_BSLASHnotecite] = ACTIONS(4939), + [anon_sym_BSLASHNotecite] = ACTIONS(4939), + [anon_sym_BSLASHpnotecite] = ACTIONS(4939), + [anon_sym_BSLASHPnotecite] = ACTIONS(4939), + [anon_sym_BSLASHfnotecite] = ACTIONS(4939), + [anon_sym_BSLASHlabel] = ACTIONS(4939), + [anon_sym_BSLASHref] = ACTIONS(4939), + [anon_sym_BSLASHeqref] = ACTIONS(4939), + [anon_sym_BSLASHvref] = ACTIONS(4939), + [anon_sym_BSLASHVref] = ACTIONS(4939), + [anon_sym_BSLASHautoref] = ACTIONS(4939), + [anon_sym_BSLASHpageref] = ACTIONS(4939), + [anon_sym_BSLASHcref] = ACTIONS(4939), + [anon_sym_BSLASHCref] = ACTIONS(4939), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnameCref] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHlabelcref] = ACTIONS(4939), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCrefrange] = ACTIONS(4939), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnewlabel] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), + [anon_sym_BSLASHdef] = ACTIONS(4939), + [anon_sym_BSLASHlet] = ACTIONS(4939), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), + [anon_sym_BSLASHgls] = ACTIONS(4939), + [anon_sym_BSLASHGls] = ACTIONS(4939), + [anon_sym_BSLASHGLS] = ACTIONS(4939), + [anon_sym_BSLASHglspl] = ACTIONS(4939), + [anon_sym_BSLASHGlspl] = ACTIONS(4939), + [anon_sym_BSLASHGLSpl] = ACTIONS(4939), + [anon_sym_BSLASHglsdisp] = ACTIONS(4939), + [anon_sym_BSLASHglslink] = ACTIONS(4939), + [anon_sym_BSLASHglstext] = ACTIONS(4939), + [anon_sym_BSLASHGlstext] = ACTIONS(4939), + [anon_sym_BSLASHGLStext] = ACTIONS(4939), + [anon_sym_BSLASHglsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), + [anon_sym_BSLASHglsplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSplural] = ACTIONS(4939), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHglsname] = ACTIONS(4939), + [anon_sym_BSLASHGlsname] = ACTIONS(4939), + [anon_sym_BSLASHGLSname] = ACTIONS(4939), + [anon_sym_BSLASHglssymbol] = ACTIONS(4939), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), + [anon_sym_BSLASHglsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), + [anon_sym_BSLASHglsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), + [anon_sym_BSLASHglsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), + [anon_sym_BSLASHglsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), + [anon_sym_BSLASHglsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), + [anon_sym_BSLASHnewacronym] = ACTIONS(4939), + [anon_sym_BSLASHacrshort] = ACTIONS(4939), + [anon_sym_BSLASHAcrshort] = ACTIONS(4939), + [anon_sym_BSLASHACRshort] = ACTIONS(4939), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), + [anon_sym_BSLASHacrlong] = ACTIONS(4939), + [anon_sym_BSLASHAcrlong] = ACTIONS(4939), + [anon_sym_BSLASHACRlong] = ACTIONS(4939), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), + [anon_sym_BSLASHacrfull] = ACTIONS(4939), + [anon_sym_BSLASHAcrfull] = ACTIONS(4939), + [anon_sym_BSLASHACRfull] = ACTIONS(4939), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), + [anon_sym_BSLASHacs] = ACTIONS(4939), + [anon_sym_BSLASHAcs] = ACTIONS(4939), + [anon_sym_BSLASHacsp] = ACTIONS(4939), + [anon_sym_BSLASHAcsp] = ACTIONS(4939), + [anon_sym_BSLASHacl] = ACTIONS(4939), + [anon_sym_BSLASHAcl] = ACTIONS(4939), + [anon_sym_BSLASHaclp] = ACTIONS(4939), + [anon_sym_BSLASHAclp] = ACTIONS(4939), + [anon_sym_BSLASHacf] = ACTIONS(4939), + [anon_sym_BSLASHAcf] = ACTIONS(4939), + [anon_sym_BSLASHacfp] = ACTIONS(4939), + [anon_sym_BSLASHAcfp] = ACTIONS(4939), + [anon_sym_BSLASHac] = ACTIONS(4939), + [anon_sym_BSLASHAc] = ACTIONS(4939), + [anon_sym_BSLASHacp] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), + [anon_sym_BSLASHcolor] = ACTIONS(4939), + [anon_sym_BSLASHcolorbox] = ACTIONS(4939), + [anon_sym_BSLASHtextcolor] = ACTIONS(4939), + [anon_sym_BSLASHpagecolor] = ACTIONS(4939), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), + [anon_sym_BSLASHtext] = ACTIONS(4939), + [anon_sym_BSLASHintertext] = ACTIONS(4939), + [anon_sym_shortintertext] = ACTIONS(4939), }, - [1076] = { - [sym_command_name] = ACTIONS(5201), + [902] = { + [sym_command_name] = ACTIONS(4929), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_BSLASHpart] = ACTIONS(5201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddpart] = ACTIONS(5201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHchapter] = ACTIONS(5201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddchap] = ACTIONS(5201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsection] = ACTIONS(5201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddsec] = ACTIONS(5201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHparagraph] = ACTIONS(5201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHitem] = ACTIONS(5201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASHbegin] = ACTIONS(5201), - [anon_sym_BSLASHend] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), + [anon_sym_BSLASHiffalse] = ACTIONS(4929), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_RBRACK] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_EQ] = ACTIONS(4927), + [anon_sym_BSLASHpart] = ACTIONS(4929), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddpart] = ACTIONS(4929), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), + [anon_sym_BSLASHchapter] = ACTIONS(4929), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddchap] = ACTIONS(4929), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsection] = ACTIONS(4929), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddsec] = ACTIONS(4929), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubsection] = ACTIONS(4929), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHparagraph] = ACTIONS(4929), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), + [anon_sym_BSLASHitem] = ACTIONS(4929), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), + [anon_sym_LBRACE] = ACTIONS(4927), + [sym_word] = ACTIONS(4929), + [sym_placeholder] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_CARET] = ACTIONS(4929), + [anon_sym__] = ACTIONS(4929), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_BANG] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4929), + [anon_sym_COLON] = ACTIONS(4929), + [anon_sym_SQUOTE] = ACTIONS(4929), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), + [anon_sym_DOLLAR] = ACTIONS(4929), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4927), + [anon_sym_BSLASHbegin] = ACTIONS(4929), + [anon_sym_BSLASHusepackage] = ACTIONS(4929), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), + [anon_sym_BSLASHinclude] = ACTIONS(4929), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), + [anon_sym_BSLASHinput] = ACTIONS(4929), + [anon_sym_BSLASHsubfile] = ACTIONS(4929), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), + [anon_sym_BSLASHbibliography] = ACTIONS(4929), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), + [anon_sym_BSLASHincludesvg] = ACTIONS(4929), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), + [anon_sym_BSLASHimport] = ACTIONS(4929), + [anon_sym_BSLASHsubimport] = ACTIONS(4929), + [anon_sym_BSLASHinputfrom] = ACTIONS(4929), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), + [anon_sym_BSLASHincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHcaption] = ACTIONS(4929), + [anon_sym_BSLASHcite] = ACTIONS(4929), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCite] = ACTIONS(4929), + [anon_sym_BSLASHnocite] = ACTIONS(4929), + [anon_sym_BSLASHcitet] = ACTIONS(4929), + [anon_sym_BSLASHcitep] = ACTIONS(4929), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteauthor] = ACTIONS(4929), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitetitle] = ACTIONS(4929), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteyear] = ACTIONS(4929), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitedate] = ACTIONS(4929), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteurl] = ACTIONS(4929), + [anon_sym_BSLASHfullcite] = ACTIONS(4929), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), + [anon_sym_BSLASHcitealt] = ACTIONS(4929), + [anon_sym_BSLASHcitealp] = ACTIONS(4929), + [anon_sym_BSLASHcitetext] = ACTIONS(4929), + [anon_sym_BSLASHparencite] = ACTIONS(4929), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHParencite] = ACTIONS(4929), + [anon_sym_BSLASHfootcite] = ACTIONS(4929), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), + [anon_sym_BSLASHtextcite] = ACTIONS(4929), + [anon_sym_BSLASHTextcite] = ACTIONS(4929), + [anon_sym_BSLASHsmartcite] = ACTIONS(4929), + [anon_sym_BSLASHSmartcite] = ACTIONS(4929), + [anon_sym_BSLASHsupercite] = ACTIONS(4929), + [anon_sym_BSLASHautocite] = ACTIONS(4929), + [anon_sym_BSLASHAutocite] = ACTIONS(4929), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHvolcite] = ACTIONS(4929), + [anon_sym_BSLASHVolcite] = ACTIONS(4929), + [anon_sym_BSLASHpvolcite] = ACTIONS(4929), + [anon_sym_BSLASHPvolcite] = ACTIONS(4929), + [anon_sym_BSLASHfvolcite] = ACTIONS(4929), + [anon_sym_BSLASHftvolcite] = ACTIONS(4929), + [anon_sym_BSLASHsvolcite] = ACTIONS(4929), + [anon_sym_BSLASHSvolcite] = ACTIONS(4929), + [anon_sym_BSLASHtvolcite] = ACTIONS(4929), + [anon_sym_BSLASHTvolcite] = ACTIONS(4929), + [anon_sym_BSLASHavolcite] = ACTIONS(4929), + [anon_sym_BSLASHAvolcite] = ACTIONS(4929), + [anon_sym_BSLASHnotecite] = ACTIONS(4929), + [anon_sym_BSLASHNotecite] = ACTIONS(4929), + [anon_sym_BSLASHpnotecite] = ACTIONS(4929), + [anon_sym_BSLASHPnotecite] = ACTIONS(4929), + [anon_sym_BSLASHfnotecite] = ACTIONS(4929), + [anon_sym_BSLASHlabel] = ACTIONS(4929), + [anon_sym_BSLASHref] = ACTIONS(4929), + [anon_sym_BSLASHeqref] = ACTIONS(4929), + [anon_sym_BSLASHvref] = ACTIONS(4929), + [anon_sym_BSLASHVref] = ACTIONS(4929), + [anon_sym_BSLASHautoref] = ACTIONS(4929), + [anon_sym_BSLASHpageref] = ACTIONS(4929), + [anon_sym_BSLASHcref] = ACTIONS(4929), + [anon_sym_BSLASHCref] = ACTIONS(4929), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnameCref] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHlabelcref] = ACTIONS(4929), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCrefrange] = ACTIONS(4929), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnewlabel] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), + [anon_sym_BSLASHdef] = ACTIONS(4929), + [anon_sym_BSLASHlet] = ACTIONS(4929), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), + [anon_sym_BSLASHgls] = ACTIONS(4929), + [anon_sym_BSLASHGls] = ACTIONS(4929), + [anon_sym_BSLASHGLS] = ACTIONS(4929), + [anon_sym_BSLASHglspl] = ACTIONS(4929), + [anon_sym_BSLASHGlspl] = ACTIONS(4929), + [anon_sym_BSLASHGLSpl] = ACTIONS(4929), + [anon_sym_BSLASHglsdisp] = ACTIONS(4929), + [anon_sym_BSLASHglslink] = ACTIONS(4929), + [anon_sym_BSLASHglstext] = ACTIONS(4929), + [anon_sym_BSLASHGlstext] = ACTIONS(4929), + [anon_sym_BSLASHGLStext] = ACTIONS(4929), + [anon_sym_BSLASHglsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), + [anon_sym_BSLASHglsplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSplural] = ACTIONS(4929), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHglsname] = ACTIONS(4929), + [anon_sym_BSLASHGlsname] = ACTIONS(4929), + [anon_sym_BSLASHGLSname] = ACTIONS(4929), + [anon_sym_BSLASHglssymbol] = ACTIONS(4929), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), + [anon_sym_BSLASHglsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), + [anon_sym_BSLASHglsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), + [anon_sym_BSLASHglsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), + [anon_sym_BSLASHglsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), + [anon_sym_BSLASHglsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), + [anon_sym_BSLASHnewacronym] = ACTIONS(4929), + [anon_sym_BSLASHacrshort] = ACTIONS(4929), + [anon_sym_BSLASHAcrshort] = ACTIONS(4929), + [anon_sym_BSLASHACRshort] = ACTIONS(4929), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), + [anon_sym_BSLASHacrlong] = ACTIONS(4929), + [anon_sym_BSLASHAcrlong] = ACTIONS(4929), + [anon_sym_BSLASHACRlong] = ACTIONS(4929), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), + [anon_sym_BSLASHacrfull] = ACTIONS(4929), + [anon_sym_BSLASHAcrfull] = ACTIONS(4929), + [anon_sym_BSLASHACRfull] = ACTIONS(4929), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), + [anon_sym_BSLASHacs] = ACTIONS(4929), + [anon_sym_BSLASHAcs] = ACTIONS(4929), + [anon_sym_BSLASHacsp] = ACTIONS(4929), + [anon_sym_BSLASHAcsp] = ACTIONS(4929), + [anon_sym_BSLASHacl] = ACTIONS(4929), + [anon_sym_BSLASHAcl] = ACTIONS(4929), + [anon_sym_BSLASHaclp] = ACTIONS(4929), + [anon_sym_BSLASHAclp] = ACTIONS(4929), + [anon_sym_BSLASHacf] = ACTIONS(4929), + [anon_sym_BSLASHAcf] = ACTIONS(4929), + [anon_sym_BSLASHacfp] = ACTIONS(4929), + [anon_sym_BSLASHAcfp] = ACTIONS(4929), + [anon_sym_BSLASHac] = ACTIONS(4929), + [anon_sym_BSLASHAc] = ACTIONS(4929), + [anon_sym_BSLASHacp] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), + [anon_sym_BSLASHcolor] = ACTIONS(4929), + [anon_sym_BSLASHcolorbox] = ACTIONS(4929), + [anon_sym_BSLASHtextcolor] = ACTIONS(4929), + [anon_sym_BSLASHpagecolor] = ACTIONS(4929), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), + [anon_sym_BSLASHtext] = ACTIONS(4929), + [anon_sym_BSLASHintertext] = ACTIONS(4929), + [anon_sym_shortintertext] = ACTIONS(4929), }, - [1077] = { - [sym_command_name] = ACTIONS(5317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5317), - [anon_sym_LPAREN] = ACTIONS(5315), - [anon_sym_RPAREN] = ACTIONS(5315), - [anon_sym_LBRACK] = ACTIONS(5315), - [anon_sym_RBRACK] = ACTIONS(5315), - [anon_sym_COMMA] = ACTIONS(5315), - [anon_sym_EQ] = ACTIONS(5315), - [anon_sym_BSLASHpart] = ACTIONS(5317), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddpart] = ACTIONS(5317), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5315), - [anon_sym_BSLASHchapter] = ACTIONS(5317), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddchap] = ACTIONS(5317), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsection] = ACTIONS(5317), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddsec] = ACTIONS(5317), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubsection] = ACTIONS(5317), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5317), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHparagraph] = ACTIONS(5317), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5317), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5315), - [anon_sym_BSLASHitem] = ACTIONS(5317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5315), - [anon_sym_LBRACE] = ACTIONS(5315), - [sym_word] = ACTIONS(5317), - [sym_placeholder] = ACTIONS(5315), - [anon_sym_PLUS] = ACTIONS(5317), - [anon_sym_DASH] = ACTIONS(5317), - [anon_sym_STAR] = ACTIONS(5317), - [anon_sym_SLASH] = ACTIONS(5317), - [anon_sym_CARET] = ACTIONS(5317), - [anon_sym__] = ACTIONS(5317), - [anon_sym_LT] = ACTIONS(5317), - [anon_sym_GT] = ACTIONS(5317), - [anon_sym_BANG] = ACTIONS(5317), - [anon_sym_PIPE] = ACTIONS(5317), - [anon_sym_COLON] = ACTIONS(5317), - [anon_sym_SQUOTE] = ACTIONS(5317), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), - [anon_sym_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), - [anon_sym_BSLASHbegin] = ACTIONS(5317), - [anon_sym_BSLASHend] = ACTIONS(5317), - [anon_sym_BSLASHusepackage] = ACTIONS(5317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), - [anon_sym_BSLASHinclude] = ACTIONS(5317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), - [anon_sym_BSLASHinput] = ACTIONS(5317), - [anon_sym_BSLASHsubfile] = ACTIONS(5317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), - [anon_sym_BSLASHbibliography] = ACTIONS(5317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), - [anon_sym_BSLASHincludesvg] = ACTIONS(5317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), - [anon_sym_BSLASHimport] = ACTIONS(5317), - [anon_sym_BSLASHsubimport] = ACTIONS(5317), - [anon_sym_BSLASHinputfrom] = ACTIONS(5317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), - [anon_sym_BSLASHincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHcaption] = ACTIONS(5317), - [anon_sym_BSLASHcite] = ACTIONS(5317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCite] = ACTIONS(5317), - [anon_sym_BSLASHnocite] = ACTIONS(5317), - [anon_sym_BSLASHcitet] = ACTIONS(5317), - [anon_sym_BSLASHcitep] = ACTIONS(5317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteyear] = ACTIONS(5317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitedate] = ACTIONS(5317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteurl] = ACTIONS(5317), - [anon_sym_BSLASHfullcite] = ACTIONS(5317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), - [anon_sym_BSLASHcitealt] = ACTIONS(5317), - [anon_sym_BSLASHcitealp] = ACTIONS(5317), - [anon_sym_BSLASHcitetext] = ACTIONS(5317), - [anon_sym_BSLASHparencite] = ACTIONS(5317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHParencite] = ACTIONS(5317), - [anon_sym_BSLASHfootcite] = ACTIONS(5317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), - [anon_sym_BSLASHtextcite] = ACTIONS(5317), - [anon_sym_BSLASHTextcite] = ACTIONS(5317), - [anon_sym_BSLASHsmartcite] = ACTIONS(5317), - [anon_sym_BSLASHSmartcite] = ACTIONS(5317), - [anon_sym_BSLASHsupercite] = ACTIONS(5317), - [anon_sym_BSLASHautocite] = ACTIONS(5317), - [anon_sym_BSLASHAutocite] = ACTIONS(5317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHvolcite] = ACTIONS(5317), - [anon_sym_BSLASHVolcite] = ACTIONS(5317), - [anon_sym_BSLASHpvolcite] = ACTIONS(5317), - [anon_sym_BSLASHPvolcite] = ACTIONS(5317), - [anon_sym_BSLASHfvolcite] = ACTIONS(5317), - [anon_sym_BSLASHftvolcite] = ACTIONS(5317), - [anon_sym_BSLASHsvolcite] = ACTIONS(5317), - [anon_sym_BSLASHSvolcite] = ACTIONS(5317), - [anon_sym_BSLASHtvolcite] = ACTIONS(5317), - [anon_sym_BSLASHTvolcite] = ACTIONS(5317), - [anon_sym_BSLASHavolcite] = ACTIONS(5317), - [anon_sym_BSLASHAvolcite] = ACTIONS(5317), - [anon_sym_BSLASHnotecite] = ACTIONS(5317), - [anon_sym_BSLASHNotecite] = ACTIONS(5317), - [anon_sym_BSLASHpnotecite] = ACTIONS(5317), - [anon_sym_BSLASHPnotecite] = ACTIONS(5317), - [anon_sym_BSLASHfnotecite] = ACTIONS(5317), - [anon_sym_BSLASHlabel] = ACTIONS(5317), - [anon_sym_BSLASHref] = ACTIONS(5317), - [anon_sym_BSLASHeqref] = ACTIONS(5317), - [anon_sym_BSLASHvref] = ACTIONS(5317), - [anon_sym_BSLASHVref] = ACTIONS(5317), - [anon_sym_BSLASHautoref] = ACTIONS(5317), - [anon_sym_BSLASHpageref] = ACTIONS(5317), - [anon_sym_BSLASHcref] = ACTIONS(5317), - [anon_sym_BSLASHCref] = ACTIONS(5317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnameCref] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHlabelcref] = ACTIONS(5317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnewlabel] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), - [anon_sym_BSLASHdef] = ACTIONS(5317), - [anon_sym_BSLASHlet] = ACTIONS(5317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), - [anon_sym_BSLASHgls] = ACTIONS(5317), - [anon_sym_BSLASHGls] = ACTIONS(5317), - [anon_sym_BSLASHGLS] = ACTIONS(5317), - [anon_sym_BSLASHglspl] = ACTIONS(5317), - [anon_sym_BSLASHGlspl] = ACTIONS(5317), - [anon_sym_BSLASHGLSpl] = ACTIONS(5317), - [anon_sym_BSLASHglsdisp] = ACTIONS(5317), - [anon_sym_BSLASHglslink] = ACTIONS(5317), - [anon_sym_BSLASHglstext] = ACTIONS(5317), - [anon_sym_BSLASHGlstext] = ACTIONS(5317), - [anon_sym_BSLASHGLStext] = ACTIONS(5317), - [anon_sym_BSLASHglsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), - [anon_sym_BSLASHglsplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSplural] = ACTIONS(5317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHglsname] = ACTIONS(5317), - [anon_sym_BSLASHGlsname] = ACTIONS(5317), - [anon_sym_BSLASHGLSname] = ACTIONS(5317), - [anon_sym_BSLASHglssymbol] = ACTIONS(5317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), - [anon_sym_BSLASHglsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), - [anon_sym_BSLASHglsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), - [anon_sym_BSLASHglsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), - [anon_sym_BSLASHglsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), - [anon_sym_BSLASHglsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), - [anon_sym_BSLASHnewacronym] = ACTIONS(5317), - [anon_sym_BSLASHacrshort] = ACTIONS(5317), - [anon_sym_BSLASHAcrshort] = ACTIONS(5317), - [anon_sym_BSLASHACRshort] = ACTIONS(5317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), - [anon_sym_BSLASHacrlong] = ACTIONS(5317), - [anon_sym_BSLASHAcrlong] = ACTIONS(5317), - [anon_sym_BSLASHACRlong] = ACTIONS(5317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), - [anon_sym_BSLASHacrfull] = ACTIONS(5317), - [anon_sym_BSLASHAcrfull] = ACTIONS(5317), - [anon_sym_BSLASHACRfull] = ACTIONS(5317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), - [anon_sym_BSLASHacs] = ACTIONS(5317), - [anon_sym_BSLASHAcs] = ACTIONS(5317), - [anon_sym_BSLASHacsp] = ACTIONS(5317), - [anon_sym_BSLASHAcsp] = ACTIONS(5317), - [anon_sym_BSLASHacl] = ACTIONS(5317), - [anon_sym_BSLASHAcl] = ACTIONS(5317), - [anon_sym_BSLASHaclp] = ACTIONS(5317), - [anon_sym_BSLASHAclp] = ACTIONS(5317), - [anon_sym_BSLASHacf] = ACTIONS(5317), - [anon_sym_BSLASHAcf] = ACTIONS(5317), - [anon_sym_BSLASHacfp] = ACTIONS(5317), - [anon_sym_BSLASHAcfp] = ACTIONS(5317), - [anon_sym_BSLASHac] = ACTIONS(5317), - [anon_sym_BSLASHAc] = ACTIONS(5317), - [anon_sym_BSLASHacp] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), - [anon_sym_BSLASHcolor] = ACTIONS(5317), - [anon_sym_BSLASHcolorbox] = ACTIONS(5317), - [anon_sym_BSLASHtextcolor] = ACTIONS(5317), - [anon_sym_BSLASHpagecolor] = ACTIONS(5317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), + [903] = { + [sym_command_name] = ACTIONS(4917), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_RPAREN] = ACTIONS(4915), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4915), + [anon_sym_BSLASHpart] = ACTIONS(4917), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddpart] = ACTIONS(4917), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4915), + [anon_sym_BSLASHchapter] = ACTIONS(4917), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddchap] = ACTIONS(4917), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsection] = ACTIONS(4917), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddsec] = ACTIONS(4917), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubsection] = ACTIONS(4917), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4917), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHparagraph] = ACTIONS(4917), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4917), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4915), + [anon_sym_BSLASHitem] = ACTIONS(4917), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4915), + [sym_word] = ACTIONS(4917), + [sym_placeholder] = ACTIONS(4915), + [anon_sym_PLUS] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4917), + [anon_sym_CARET] = ACTIONS(4917), + [anon_sym__] = ACTIONS(4917), + [anon_sym_LT] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4917), + [anon_sym_BANG] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_SQUOTE] = ACTIONS(4917), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), + [anon_sym_DOLLAR] = ACTIONS(4917), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4915), + [anon_sym_BSLASHbegin] = ACTIONS(4917), + [anon_sym_BSLASHusepackage] = ACTIONS(4917), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), + [anon_sym_BSLASHinclude] = ACTIONS(4917), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), + [anon_sym_BSLASHinput] = ACTIONS(4917), + [anon_sym_BSLASHsubfile] = ACTIONS(4917), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), + [anon_sym_BSLASHbibliography] = ACTIONS(4917), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), + [anon_sym_BSLASHincludesvg] = ACTIONS(4917), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), + [anon_sym_BSLASHimport] = ACTIONS(4917), + [anon_sym_BSLASHsubimport] = ACTIONS(4917), + [anon_sym_BSLASHinputfrom] = ACTIONS(4917), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), + [anon_sym_BSLASHincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHcaption] = ACTIONS(4917), + [anon_sym_BSLASHcite] = ACTIONS(4917), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCite] = ACTIONS(4917), + [anon_sym_BSLASHnocite] = ACTIONS(4917), + [anon_sym_BSLASHcitet] = ACTIONS(4917), + [anon_sym_BSLASHcitep] = ACTIONS(4917), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteauthor] = ACTIONS(4917), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitetitle] = ACTIONS(4917), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteyear] = ACTIONS(4917), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitedate] = ACTIONS(4917), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteurl] = ACTIONS(4917), + [anon_sym_BSLASHfullcite] = ACTIONS(4917), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), + [anon_sym_BSLASHcitealt] = ACTIONS(4917), + [anon_sym_BSLASHcitealp] = ACTIONS(4917), + [anon_sym_BSLASHcitetext] = ACTIONS(4917), + [anon_sym_BSLASHparencite] = ACTIONS(4917), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHParencite] = ACTIONS(4917), + [anon_sym_BSLASHfootcite] = ACTIONS(4917), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), + [anon_sym_BSLASHtextcite] = ACTIONS(4917), + [anon_sym_BSLASHTextcite] = ACTIONS(4917), + [anon_sym_BSLASHsmartcite] = ACTIONS(4917), + [anon_sym_BSLASHSmartcite] = ACTIONS(4917), + [anon_sym_BSLASHsupercite] = ACTIONS(4917), + [anon_sym_BSLASHautocite] = ACTIONS(4917), + [anon_sym_BSLASHAutocite] = ACTIONS(4917), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHvolcite] = ACTIONS(4917), + [anon_sym_BSLASHVolcite] = ACTIONS(4917), + [anon_sym_BSLASHpvolcite] = ACTIONS(4917), + [anon_sym_BSLASHPvolcite] = ACTIONS(4917), + [anon_sym_BSLASHfvolcite] = ACTIONS(4917), + [anon_sym_BSLASHftvolcite] = ACTIONS(4917), + [anon_sym_BSLASHsvolcite] = ACTIONS(4917), + [anon_sym_BSLASHSvolcite] = ACTIONS(4917), + [anon_sym_BSLASHtvolcite] = ACTIONS(4917), + [anon_sym_BSLASHTvolcite] = ACTIONS(4917), + [anon_sym_BSLASHavolcite] = ACTIONS(4917), + [anon_sym_BSLASHAvolcite] = ACTIONS(4917), + [anon_sym_BSLASHnotecite] = ACTIONS(4917), + [anon_sym_BSLASHNotecite] = ACTIONS(4917), + [anon_sym_BSLASHpnotecite] = ACTIONS(4917), + [anon_sym_BSLASHPnotecite] = ACTIONS(4917), + [anon_sym_BSLASHfnotecite] = ACTIONS(4917), + [anon_sym_BSLASHlabel] = ACTIONS(4917), + [anon_sym_BSLASHref] = ACTIONS(4917), + [anon_sym_BSLASHeqref] = ACTIONS(4917), + [anon_sym_BSLASHvref] = ACTIONS(4917), + [anon_sym_BSLASHVref] = ACTIONS(4917), + [anon_sym_BSLASHautoref] = ACTIONS(4917), + [anon_sym_BSLASHpageref] = ACTIONS(4917), + [anon_sym_BSLASHcref] = ACTIONS(4917), + [anon_sym_BSLASHCref] = ACTIONS(4917), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnameCref] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHlabelcref] = ACTIONS(4917), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCrefrange] = ACTIONS(4917), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnewlabel] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), + [anon_sym_BSLASHdef] = ACTIONS(4917), + [anon_sym_BSLASHlet] = ACTIONS(4917), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), + [anon_sym_BSLASHgls] = ACTIONS(4917), + [anon_sym_BSLASHGls] = ACTIONS(4917), + [anon_sym_BSLASHGLS] = ACTIONS(4917), + [anon_sym_BSLASHglspl] = ACTIONS(4917), + [anon_sym_BSLASHGlspl] = ACTIONS(4917), + [anon_sym_BSLASHGLSpl] = ACTIONS(4917), + [anon_sym_BSLASHglsdisp] = ACTIONS(4917), + [anon_sym_BSLASHglslink] = ACTIONS(4917), + [anon_sym_BSLASHglstext] = ACTIONS(4917), + [anon_sym_BSLASHGlstext] = ACTIONS(4917), + [anon_sym_BSLASHGLStext] = ACTIONS(4917), + [anon_sym_BSLASHglsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), + [anon_sym_BSLASHglsplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSplural] = ACTIONS(4917), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHglsname] = ACTIONS(4917), + [anon_sym_BSLASHGlsname] = ACTIONS(4917), + [anon_sym_BSLASHGLSname] = ACTIONS(4917), + [anon_sym_BSLASHglssymbol] = ACTIONS(4917), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), + [anon_sym_BSLASHglsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), + [anon_sym_BSLASHglsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), + [anon_sym_BSLASHglsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), + [anon_sym_BSLASHglsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), + [anon_sym_BSLASHglsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), + [anon_sym_BSLASHnewacronym] = ACTIONS(4917), + [anon_sym_BSLASHacrshort] = ACTIONS(4917), + [anon_sym_BSLASHAcrshort] = ACTIONS(4917), + [anon_sym_BSLASHACRshort] = ACTIONS(4917), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), + [anon_sym_BSLASHacrlong] = ACTIONS(4917), + [anon_sym_BSLASHAcrlong] = ACTIONS(4917), + [anon_sym_BSLASHACRlong] = ACTIONS(4917), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), + [anon_sym_BSLASHacrfull] = ACTIONS(4917), + [anon_sym_BSLASHAcrfull] = ACTIONS(4917), + [anon_sym_BSLASHACRfull] = ACTIONS(4917), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), + [anon_sym_BSLASHacs] = ACTIONS(4917), + [anon_sym_BSLASHAcs] = ACTIONS(4917), + [anon_sym_BSLASHacsp] = ACTIONS(4917), + [anon_sym_BSLASHAcsp] = ACTIONS(4917), + [anon_sym_BSLASHacl] = ACTIONS(4917), + [anon_sym_BSLASHAcl] = ACTIONS(4917), + [anon_sym_BSLASHaclp] = ACTIONS(4917), + [anon_sym_BSLASHAclp] = ACTIONS(4917), + [anon_sym_BSLASHacf] = ACTIONS(4917), + [anon_sym_BSLASHAcf] = ACTIONS(4917), + [anon_sym_BSLASHacfp] = ACTIONS(4917), + [anon_sym_BSLASHAcfp] = ACTIONS(4917), + [anon_sym_BSLASHac] = ACTIONS(4917), + [anon_sym_BSLASHAc] = ACTIONS(4917), + [anon_sym_BSLASHacp] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), + [anon_sym_BSLASHcolor] = ACTIONS(4917), + [anon_sym_BSLASHcolorbox] = ACTIONS(4917), + [anon_sym_BSLASHtextcolor] = ACTIONS(4917), + [anon_sym_BSLASHpagecolor] = ACTIONS(4917), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), + [anon_sym_BSLASHtext] = ACTIONS(4917), + [anon_sym_BSLASHintertext] = ACTIONS(4917), + [anon_sym_shortintertext] = ACTIONS(4917), }, - [1078] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_BSLASHpart] = ACTIONS(5311), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddpart] = ACTIONS(5311), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHchapter] = ACTIONS(5311), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddchap] = ACTIONS(5311), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsection] = ACTIONS(5311), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddsec] = ACTIONS(5311), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHparagraph] = ACTIONS(5311), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5311), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHitem] = ACTIONS(5311), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASHbegin] = ACTIONS(5311), - [anon_sym_BSLASHend] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), + [904] = { + [sym_command_name] = ACTIONS(4913), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4913), + [anon_sym_LPAREN] = ACTIONS(4911), + [anon_sym_RPAREN] = ACTIONS(4911), + [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_RBRACK] = ACTIONS(4911), + [anon_sym_COMMA] = ACTIONS(4911), + [anon_sym_EQ] = ACTIONS(4911), + [anon_sym_BSLASHpart] = ACTIONS(4913), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddpart] = ACTIONS(4913), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4911), + [anon_sym_BSLASHchapter] = ACTIONS(4913), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddchap] = ACTIONS(4913), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsection] = ACTIONS(4913), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddsec] = ACTIONS(4913), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubsection] = ACTIONS(4913), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4913), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHparagraph] = ACTIONS(4913), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4913), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4911), + [anon_sym_BSLASHitem] = ACTIONS(4913), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4911), + [sym_word] = ACTIONS(4913), + [sym_placeholder] = ACTIONS(4911), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4913), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_CARET] = ACTIONS(4913), + [anon_sym__] = ACTIONS(4913), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_BANG] = ACTIONS(4913), + [anon_sym_PIPE] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4913), + [anon_sym_SQUOTE] = ACTIONS(4913), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), + [anon_sym_DOLLAR] = ACTIONS(4913), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4911), + [anon_sym_BSLASHbegin] = ACTIONS(4913), + [anon_sym_BSLASHusepackage] = ACTIONS(4913), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), + [anon_sym_BSLASHinclude] = ACTIONS(4913), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), + [anon_sym_BSLASHinput] = ACTIONS(4913), + [anon_sym_BSLASHsubfile] = ACTIONS(4913), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), + [anon_sym_BSLASHbibliography] = ACTIONS(4913), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), + [anon_sym_BSLASHincludesvg] = ACTIONS(4913), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), + [anon_sym_BSLASHimport] = ACTIONS(4913), + [anon_sym_BSLASHsubimport] = ACTIONS(4913), + [anon_sym_BSLASHinputfrom] = ACTIONS(4913), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), + [anon_sym_BSLASHincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHcaption] = ACTIONS(4913), + [anon_sym_BSLASHcite] = ACTIONS(4913), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCite] = ACTIONS(4913), + [anon_sym_BSLASHnocite] = ACTIONS(4913), + [anon_sym_BSLASHcitet] = ACTIONS(4913), + [anon_sym_BSLASHcitep] = ACTIONS(4913), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteauthor] = ACTIONS(4913), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitetitle] = ACTIONS(4913), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteyear] = ACTIONS(4913), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitedate] = ACTIONS(4913), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteurl] = ACTIONS(4913), + [anon_sym_BSLASHfullcite] = ACTIONS(4913), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), + [anon_sym_BSLASHcitealt] = ACTIONS(4913), + [anon_sym_BSLASHcitealp] = ACTIONS(4913), + [anon_sym_BSLASHcitetext] = ACTIONS(4913), + [anon_sym_BSLASHparencite] = ACTIONS(4913), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHParencite] = ACTIONS(4913), + [anon_sym_BSLASHfootcite] = ACTIONS(4913), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), + [anon_sym_BSLASHtextcite] = ACTIONS(4913), + [anon_sym_BSLASHTextcite] = ACTIONS(4913), + [anon_sym_BSLASHsmartcite] = ACTIONS(4913), + [anon_sym_BSLASHSmartcite] = ACTIONS(4913), + [anon_sym_BSLASHsupercite] = ACTIONS(4913), + [anon_sym_BSLASHautocite] = ACTIONS(4913), + [anon_sym_BSLASHAutocite] = ACTIONS(4913), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHvolcite] = ACTIONS(4913), + [anon_sym_BSLASHVolcite] = ACTIONS(4913), + [anon_sym_BSLASHpvolcite] = ACTIONS(4913), + [anon_sym_BSLASHPvolcite] = ACTIONS(4913), + [anon_sym_BSLASHfvolcite] = ACTIONS(4913), + [anon_sym_BSLASHftvolcite] = ACTIONS(4913), + [anon_sym_BSLASHsvolcite] = ACTIONS(4913), + [anon_sym_BSLASHSvolcite] = ACTIONS(4913), + [anon_sym_BSLASHtvolcite] = ACTIONS(4913), + [anon_sym_BSLASHTvolcite] = ACTIONS(4913), + [anon_sym_BSLASHavolcite] = ACTIONS(4913), + [anon_sym_BSLASHAvolcite] = ACTIONS(4913), + [anon_sym_BSLASHnotecite] = ACTIONS(4913), + [anon_sym_BSLASHNotecite] = ACTIONS(4913), + [anon_sym_BSLASHpnotecite] = ACTIONS(4913), + [anon_sym_BSLASHPnotecite] = ACTIONS(4913), + [anon_sym_BSLASHfnotecite] = ACTIONS(4913), + [anon_sym_BSLASHlabel] = ACTIONS(4913), + [anon_sym_BSLASHref] = ACTIONS(4913), + [anon_sym_BSLASHeqref] = ACTIONS(4913), + [anon_sym_BSLASHvref] = ACTIONS(4913), + [anon_sym_BSLASHVref] = ACTIONS(4913), + [anon_sym_BSLASHautoref] = ACTIONS(4913), + [anon_sym_BSLASHpageref] = ACTIONS(4913), + [anon_sym_BSLASHcref] = ACTIONS(4913), + [anon_sym_BSLASHCref] = ACTIONS(4913), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnameCref] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHlabelcref] = ACTIONS(4913), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCrefrange] = ACTIONS(4913), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnewlabel] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), + [anon_sym_BSLASHdef] = ACTIONS(4913), + [anon_sym_BSLASHlet] = ACTIONS(4913), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), + [anon_sym_BSLASHgls] = ACTIONS(4913), + [anon_sym_BSLASHGls] = ACTIONS(4913), + [anon_sym_BSLASHGLS] = ACTIONS(4913), + [anon_sym_BSLASHglspl] = ACTIONS(4913), + [anon_sym_BSLASHGlspl] = ACTIONS(4913), + [anon_sym_BSLASHGLSpl] = ACTIONS(4913), + [anon_sym_BSLASHglsdisp] = ACTIONS(4913), + [anon_sym_BSLASHglslink] = ACTIONS(4913), + [anon_sym_BSLASHglstext] = ACTIONS(4913), + [anon_sym_BSLASHGlstext] = ACTIONS(4913), + [anon_sym_BSLASHGLStext] = ACTIONS(4913), + [anon_sym_BSLASHglsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), + [anon_sym_BSLASHglsplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSplural] = ACTIONS(4913), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHglsname] = ACTIONS(4913), + [anon_sym_BSLASHGlsname] = ACTIONS(4913), + [anon_sym_BSLASHGLSname] = ACTIONS(4913), + [anon_sym_BSLASHglssymbol] = ACTIONS(4913), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), + [anon_sym_BSLASHglsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), + [anon_sym_BSLASHglsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), + [anon_sym_BSLASHglsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), + [anon_sym_BSLASHglsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), + [anon_sym_BSLASHglsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), + [anon_sym_BSLASHnewacronym] = ACTIONS(4913), + [anon_sym_BSLASHacrshort] = ACTIONS(4913), + [anon_sym_BSLASHAcrshort] = ACTIONS(4913), + [anon_sym_BSLASHACRshort] = ACTIONS(4913), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), + [anon_sym_BSLASHacrlong] = ACTIONS(4913), + [anon_sym_BSLASHAcrlong] = ACTIONS(4913), + [anon_sym_BSLASHACRlong] = ACTIONS(4913), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), + [anon_sym_BSLASHacrfull] = ACTIONS(4913), + [anon_sym_BSLASHAcrfull] = ACTIONS(4913), + [anon_sym_BSLASHACRfull] = ACTIONS(4913), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), + [anon_sym_BSLASHacs] = ACTIONS(4913), + [anon_sym_BSLASHAcs] = ACTIONS(4913), + [anon_sym_BSLASHacsp] = ACTIONS(4913), + [anon_sym_BSLASHAcsp] = ACTIONS(4913), + [anon_sym_BSLASHacl] = ACTIONS(4913), + [anon_sym_BSLASHAcl] = ACTIONS(4913), + [anon_sym_BSLASHaclp] = ACTIONS(4913), + [anon_sym_BSLASHAclp] = ACTIONS(4913), + [anon_sym_BSLASHacf] = ACTIONS(4913), + [anon_sym_BSLASHAcf] = ACTIONS(4913), + [anon_sym_BSLASHacfp] = ACTIONS(4913), + [anon_sym_BSLASHAcfp] = ACTIONS(4913), + [anon_sym_BSLASHac] = ACTIONS(4913), + [anon_sym_BSLASHAc] = ACTIONS(4913), + [anon_sym_BSLASHacp] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), + [anon_sym_BSLASHcolor] = ACTIONS(4913), + [anon_sym_BSLASHcolorbox] = ACTIONS(4913), + [anon_sym_BSLASHtextcolor] = ACTIONS(4913), + [anon_sym_BSLASHpagecolor] = ACTIONS(4913), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), + [anon_sym_BSLASHtext] = ACTIONS(4913), + [anon_sym_BSLASHintertext] = ACTIONS(4913), + [anon_sym_shortintertext] = ACTIONS(4913), + }, + [905] = { + [sym_command_name] = ACTIONS(4909), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4909), + [anon_sym_LPAREN] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4907), + [anon_sym_LBRACK] = ACTIONS(4907), + [anon_sym_RBRACK] = ACTIONS(4907), + [anon_sym_COMMA] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_BSLASHpart] = ACTIONS(4909), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddpart] = ACTIONS(4909), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4907), + [anon_sym_BSLASHchapter] = ACTIONS(4909), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddchap] = ACTIONS(4909), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsection] = ACTIONS(4909), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddsec] = ACTIONS(4909), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubsection] = ACTIONS(4909), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4909), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHparagraph] = ACTIONS(4909), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4909), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4907), + [anon_sym_BSLASHitem] = ACTIONS(4909), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4907), + [anon_sym_LBRACE] = ACTIONS(4907), + [sym_word] = ACTIONS(4909), + [sym_placeholder] = ACTIONS(4907), + [anon_sym_PLUS] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_STAR] = ACTIONS(4909), + [anon_sym_SLASH] = ACTIONS(4909), + [anon_sym_CARET] = ACTIONS(4909), + [anon_sym__] = ACTIONS(4909), + [anon_sym_LT] = ACTIONS(4909), + [anon_sym_GT] = ACTIONS(4909), + [anon_sym_BANG] = ACTIONS(4909), + [anon_sym_PIPE] = ACTIONS(4909), + [anon_sym_COLON] = ACTIONS(4909), + [anon_sym_SQUOTE] = ACTIONS(4909), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), + [anon_sym_DOLLAR] = ACTIONS(4909), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4907), + [anon_sym_BSLASHbegin] = ACTIONS(4909), + [anon_sym_BSLASHusepackage] = ACTIONS(4909), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), + [anon_sym_BSLASHinclude] = ACTIONS(4909), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), + [anon_sym_BSLASHinput] = ACTIONS(4909), + [anon_sym_BSLASHsubfile] = ACTIONS(4909), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), + [anon_sym_BSLASHbibliography] = ACTIONS(4909), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), + [anon_sym_BSLASHincludesvg] = ACTIONS(4909), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), + [anon_sym_BSLASHimport] = ACTIONS(4909), + [anon_sym_BSLASHsubimport] = ACTIONS(4909), + [anon_sym_BSLASHinputfrom] = ACTIONS(4909), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), + [anon_sym_BSLASHincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHcaption] = ACTIONS(4909), + [anon_sym_BSLASHcite] = ACTIONS(4909), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCite] = ACTIONS(4909), + [anon_sym_BSLASHnocite] = ACTIONS(4909), + [anon_sym_BSLASHcitet] = ACTIONS(4909), + [anon_sym_BSLASHcitep] = ACTIONS(4909), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteauthor] = ACTIONS(4909), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitetitle] = ACTIONS(4909), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteyear] = ACTIONS(4909), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitedate] = ACTIONS(4909), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteurl] = ACTIONS(4909), + [anon_sym_BSLASHfullcite] = ACTIONS(4909), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), + [anon_sym_BSLASHcitealt] = ACTIONS(4909), + [anon_sym_BSLASHcitealp] = ACTIONS(4909), + [anon_sym_BSLASHcitetext] = ACTIONS(4909), + [anon_sym_BSLASHparencite] = ACTIONS(4909), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHParencite] = ACTIONS(4909), + [anon_sym_BSLASHfootcite] = ACTIONS(4909), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), + [anon_sym_BSLASHtextcite] = ACTIONS(4909), + [anon_sym_BSLASHTextcite] = ACTIONS(4909), + [anon_sym_BSLASHsmartcite] = ACTIONS(4909), + [anon_sym_BSLASHSmartcite] = ACTIONS(4909), + [anon_sym_BSLASHsupercite] = ACTIONS(4909), + [anon_sym_BSLASHautocite] = ACTIONS(4909), + [anon_sym_BSLASHAutocite] = ACTIONS(4909), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHvolcite] = ACTIONS(4909), + [anon_sym_BSLASHVolcite] = ACTIONS(4909), + [anon_sym_BSLASHpvolcite] = ACTIONS(4909), + [anon_sym_BSLASHPvolcite] = ACTIONS(4909), + [anon_sym_BSLASHfvolcite] = ACTIONS(4909), + [anon_sym_BSLASHftvolcite] = ACTIONS(4909), + [anon_sym_BSLASHsvolcite] = ACTIONS(4909), + [anon_sym_BSLASHSvolcite] = ACTIONS(4909), + [anon_sym_BSLASHtvolcite] = ACTIONS(4909), + [anon_sym_BSLASHTvolcite] = ACTIONS(4909), + [anon_sym_BSLASHavolcite] = ACTIONS(4909), + [anon_sym_BSLASHAvolcite] = ACTIONS(4909), + [anon_sym_BSLASHnotecite] = ACTIONS(4909), + [anon_sym_BSLASHNotecite] = ACTIONS(4909), + [anon_sym_BSLASHpnotecite] = ACTIONS(4909), + [anon_sym_BSLASHPnotecite] = ACTIONS(4909), + [anon_sym_BSLASHfnotecite] = ACTIONS(4909), + [anon_sym_BSLASHlabel] = ACTIONS(4909), + [anon_sym_BSLASHref] = ACTIONS(4909), + [anon_sym_BSLASHeqref] = ACTIONS(4909), + [anon_sym_BSLASHvref] = ACTIONS(4909), + [anon_sym_BSLASHVref] = ACTIONS(4909), + [anon_sym_BSLASHautoref] = ACTIONS(4909), + [anon_sym_BSLASHpageref] = ACTIONS(4909), + [anon_sym_BSLASHcref] = ACTIONS(4909), + [anon_sym_BSLASHCref] = ACTIONS(4909), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnameCref] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHlabelcref] = ACTIONS(4909), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCrefrange] = ACTIONS(4909), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnewlabel] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), + [anon_sym_BSLASHdef] = ACTIONS(4909), + [anon_sym_BSLASHlet] = ACTIONS(4909), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), + [anon_sym_BSLASHgls] = ACTIONS(4909), + [anon_sym_BSLASHGls] = ACTIONS(4909), + [anon_sym_BSLASHGLS] = ACTIONS(4909), + [anon_sym_BSLASHglspl] = ACTIONS(4909), + [anon_sym_BSLASHGlspl] = ACTIONS(4909), + [anon_sym_BSLASHGLSpl] = ACTIONS(4909), + [anon_sym_BSLASHglsdisp] = ACTIONS(4909), + [anon_sym_BSLASHglslink] = ACTIONS(4909), + [anon_sym_BSLASHglstext] = ACTIONS(4909), + [anon_sym_BSLASHGlstext] = ACTIONS(4909), + [anon_sym_BSLASHGLStext] = ACTIONS(4909), + [anon_sym_BSLASHglsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), + [anon_sym_BSLASHglsplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSplural] = ACTIONS(4909), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHglsname] = ACTIONS(4909), + [anon_sym_BSLASHGlsname] = ACTIONS(4909), + [anon_sym_BSLASHGLSname] = ACTIONS(4909), + [anon_sym_BSLASHglssymbol] = ACTIONS(4909), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), + [anon_sym_BSLASHglsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), + [anon_sym_BSLASHglsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), + [anon_sym_BSLASHglsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), + [anon_sym_BSLASHglsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), + [anon_sym_BSLASHglsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), + [anon_sym_BSLASHnewacronym] = ACTIONS(4909), + [anon_sym_BSLASHacrshort] = ACTIONS(4909), + [anon_sym_BSLASHAcrshort] = ACTIONS(4909), + [anon_sym_BSLASHACRshort] = ACTIONS(4909), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), + [anon_sym_BSLASHacrlong] = ACTIONS(4909), + [anon_sym_BSLASHAcrlong] = ACTIONS(4909), + [anon_sym_BSLASHACRlong] = ACTIONS(4909), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), + [anon_sym_BSLASHacrfull] = ACTIONS(4909), + [anon_sym_BSLASHAcrfull] = ACTIONS(4909), + [anon_sym_BSLASHACRfull] = ACTIONS(4909), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), + [anon_sym_BSLASHacs] = ACTIONS(4909), + [anon_sym_BSLASHAcs] = ACTIONS(4909), + [anon_sym_BSLASHacsp] = ACTIONS(4909), + [anon_sym_BSLASHAcsp] = ACTIONS(4909), + [anon_sym_BSLASHacl] = ACTIONS(4909), + [anon_sym_BSLASHAcl] = ACTIONS(4909), + [anon_sym_BSLASHaclp] = ACTIONS(4909), + [anon_sym_BSLASHAclp] = ACTIONS(4909), + [anon_sym_BSLASHacf] = ACTIONS(4909), + [anon_sym_BSLASHAcf] = ACTIONS(4909), + [anon_sym_BSLASHacfp] = ACTIONS(4909), + [anon_sym_BSLASHAcfp] = ACTIONS(4909), + [anon_sym_BSLASHac] = ACTIONS(4909), + [anon_sym_BSLASHAc] = ACTIONS(4909), + [anon_sym_BSLASHacp] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), + [anon_sym_BSLASHcolor] = ACTIONS(4909), + [anon_sym_BSLASHcolorbox] = ACTIONS(4909), + [anon_sym_BSLASHtextcolor] = ACTIONS(4909), + [anon_sym_BSLASHpagecolor] = ACTIONS(4909), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), + [anon_sym_BSLASHtext] = ACTIONS(4909), + [anon_sym_BSLASHintertext] = ACTIONS(4909), + [anon_sym_shortintertext] = ACTIONS(4909), + }, + [906] = { + [sym_command_name] = ACTIONS(4905), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4905), + [anon_sym_LPAREN] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_LBRACK] = ACTIONS(4903), + [anon_sym_RBRACK] = ACTIONS(4903), + [anon_sym_COMMA] = ACTIONS(4903), + [anon_sym_EQ] = ACTIONS(4903), + [anon_sym_BSLASHpart] = ACTIONS(4905), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddpart] = ACTIONS(4905), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4903), + [anon_sym_BSLASHchapter] = ACTIONS(4905), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddchap] = ACTIONS(4905), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsection] = ACTIONS(4905), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddsec] = ACTIONS(4905), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubsection] = ACTIONS(4905), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4905), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHparagraph] = ACTIONS(4905), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4905), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4903), + [anon_sym_BSLASHitem] = ACTIONS(4905), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4903), + [anon_sym_LBRACE] = ACTIONS(4903), + [sym_word] = ACTIONS(4905), + [sym_placeholder] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4905), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_CARET] = ACTIONS(4905), + [anon_sym__] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4905), + [anon_sym_COLON] = ACTIONS(4905), + [anon_sym_SQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4905), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4903), + [anon_sym_BSLASHbegin] = ACTIONS(4905), + [anon_sym_BSLASHusepackage] = ACTIONS(4905), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), + [anon_sym_BSLASHinclude] = ACTIONS(4905), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), + [anon_sym_BSLASHinput] = ACTIONS(4905), + [anon_sym_BSLASHsubfile] = ACTIONS(4905), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), + [anon_sym_BSLASHbibliography] = ACTIONS(4905), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), + [anon_sym_BSLASHincludesvg] = ACTIONS(4905), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), + [anon_sym_BSLASHimport] = ACTIONS(4905), + [anon_sym_BSLASHsubimport] = ACTIONS(4905), + [anon_sym_BSLASHinputfrom] = ACTIONS(4905), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), + [anon_sym_BSLASHincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHcaption] = ACTIONS(4905), + [anon_sym_BSLASHcite] = ACTIONS(4905), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCite] = ACTIONS(4905), + [anon_sym_BSLASHnocite] = ACTIONS(4905), + [anon_sym_BSLASHcitet] = ACTIONS(4905), + [anon_sym_BSLASHcitep] = ACTIONS(4905), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteauthor] = ACTIONS(4905), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitetitle] = ACTIONS(4905), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteyear] = ACTIONS(4905), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitedate] = ACTIONS(4905), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteurl] = ACTIONS(4905), + [anon_sym_BSLASHfullcite] = ACTIONS(4905), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), + [anon_sym_BSLASHcitealt] = ACTIONS(4905), + [anon_sym_BSLASHcitealp] = ACTIONS(4905), + [anon_sym_BSLASHcitetext] = ACTIONS(4905), + [anon_sym_BSLASHparencite] = ACTIONS(4905), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHParencite] = ACTIONS(4905), + [anon_sym_BSLASHfootcite] = ACTIONS(4905), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), + [anon_sym_BSLASHtextcite] = ACTIONS(4905), + [anon_sym_BSLASHTextcite] = ACTIONS(4905), + [anon_sym_BSLASHsmartcite] = ACTIONS(4905), + [anon_sym_BSLASHSmartcite] = ACTIONS(4905), + [anon_sym_BSLASHsupercite] = ACTIONS(4905), + [anon_sym_BSLASHautocite] = ACTIONS(4905), + [anon_sym_BSLASHAutocite] = ACTIONS(4905), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHvolcite] = ACTIONS(4905), + [anon_sym_BSLASHVolcite] = ACTIONS(4905), + [anon_sym_BSLASHpvolcite] = ACTIONS(4905), + [anon_sym_BSLASHPvolcite] = ACTIONS(4905), + [anon_sym_BSLASHfvolcite] = ACTIONS(4905), + [anon_sym_BSLASHftvolcite] = ACTIONS(4905), + [anon_sym_BSLASHsvolcite] = ACTIONS(4905), + [anon_sym_BSLASHSvolcite] = ACTIONS(4905), + [anon_sym_BSLASHtvolcite] = ACTIONS(4905), + [anon_sym_BSLASHTvolcite] = ACTIONS(4905), + [anon_sym_BSLASHavolcite] = ACTIONS(4905), + [anon_sym_BSLASHAvolcite] = ACTIONS(4905), + [anon_sym_BSLASHnotecite] = ACTIONS(4905), + [anon_sym_BSLASHNotecite] = ACTIONS(4905), + [anon_sym_BSLASHpnotecite] = ACTIONS(4905), + [anon_sym_BSLASHPnotecite] = ACTIONS(4905), + [anon_sym_BSLASHfnotecite] = ACTIONS(4905), + [anon_sym_BSLASHlabel] = ACTIONS(4905), + [anon_sym_BSLASHref] = ACTIONS(4905), + [anon_sym_BSLASHeqref] = ACTIONS(4905), + [anon_sym_BSLASHvref] = ACTIONS(4905), + [anon_sym_BSLASHVref] = ACTIONS(4905), + [anon_sym_BSLASHautoref] = ACTIONS(4905), + [anon_sym_BSLASHpageref] = ACTIONS(4905), + [anon_sym_BSLASHcref] = ACTIONS(4905), + [anon_sym_BSLASHCref] = ACTIONS(4905), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnameCref] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHlabelcref] = ACTIONS(4905), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCrefrange] = ACTIONS(4905), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnewlabel] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), + [anon_sym_BSLASHdef] = ACTIONS(4905), + [anon_sym_BSLASHlet] = ACTIONS(4905), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), + [anon_sym_BSLASHgls] = ACTIONS(4905), + [anon_sym_BSLASHGls] = ACTIONS(4905), + [anon_sym_BSLASHGLS] = ACTIONS(4905), + [anon_sym_BSLASHglspl] = ACTIONS(4905), + [anon_sym_BSLASHGlspl] = ACTIONS(4905), + [anon_sym_BSLASHGLSpl] = ACTIONS(4905), + [anon_sym_BSLASHglsdisp] = ACTIONS(4905), + [anon_sym_BSLASHglslink] = ACTIONS(4905), + [anon_sym_BSLASHglstext] = ACTIONS(4905), + [anon_sym_BSLASHGlstext] = ACTIONS(4905), + [anon_sym_BSLASHGLStext] = ACTIONS(4905), + [anon_sym_BSLASHglsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), + [anon_sym_BSLASHglsplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSplural] = ACTIONS(4905), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHglsname] = ACTIONS(4905), + [anon_sym_BSLASHGlsname] = ACTIONS(4905), + [anon_sym_BSLASHGLSname] = ACTIONS(4905), + [anon_sym_BSLASHglssymbol] = ACTIONS(4905), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), + [anon_sym_BSLASHglsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), + [anon_sym_BSLASHglsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), + [anon_sym_BSLASHglsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), + [anon_sym_BSLASHglsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), + [anon_sym_BSLASHglsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), + [anon_sym_BSLASHnewacronym] = ACTIONS(4905), + [anon_sym_BSLASHacrshort] = ACTIONS(4905), + [anon_sym_BSLASHAcrshort] = ACTIONS(4905), + [anon_sym_BSLASHACRshort] = ACTIONS(4905), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), + [anon_sym_BSLASHacrlong] = ACTIONS(4905), + [anon_sym_BSLASHAcrlong] = ACTIONS(4905), + [anon_sym_BSLASHACRlong] = ACTIONS(4905), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), + [anon_sym_BSLASHacrfull] = ACTIONS(4905), + [anon_sym_BSLASHAcrfull] = ACTIONS(4905), + [anon_sym_BSLASHACRfull] = ACTIONS(4905), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), + [anon_sym_BSLASHacs] = ACTIONS(4905), + [anon_sym_BSLASHAcs] = ACTIONS(4905), + [anon_sym_BSLASHacsp] = ACTIONS(4905), + [anon_sym_BSLASHAcsp] = ACTIONS(4905), + [anon_sym_BSLASHacl] = ACTIONS(4905), + [anon_sym_BSLASHAcl] = ACTIONS(4905), + [anon_sym_BSLASHaclp] = ACTIONS(4905), + [anon_sym_BSLASHAclp] = ACTIONS(4905), + [anon_sym_BSLASHacf] = ACTIONS(4905), + [anon_sym_BSLASHAcf] = ACTIONS(4905), + [anon_sym_BSLASHacfp] = ACTIONS(4905), + [anon_sym_BSLASHAcfp] = ACTIONS(4905), + [anon_sym_BSLASHac] = ACTIONS(4905), + [anon_sym_BSLASHAc] = ACTIONS(4905), + [anon_sym_BSLASHacp] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), + [anon_sym_BSLASHcolor] = ACTIONS(4905), + [anon_sym_BSLASHcolorbox] = ACTIONS(4905), + [anon_sym_BSLASHtextcolor] = ACTIONS(4905), + [anon_sym_BSLASHpagecolor] = ACTIONS(4905), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), + [anon_sym_BSLASHtext] = ACTIONS(4905), + [anon_sym_BSLASHintertext] = ACTIONS(4905), + [anon_sym_shortintertext] = ACTIONS(4905), + }, + [907] = { + [sym_command_name] = ACTIONS(4901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4901), + [anon_sym_LPAREN] = ACTIONS(4899), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_RBRACK] = ACTIONS(4899), + [anon_sym_COMMA] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4899), + [anon_sym_BSLASHpart] = ACTIONS(4901), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddpart] = ACTIONS(4901), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4899), + [anon_sym_BSLASHchapter] = ACTIONS(4901), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddchap] = ACTIONS(4901), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsection] = ACTIONS(4901), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddsec] = ACTIONS(4901), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubsection] = ACTIONS(4901), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4901), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHparagraph] = ACTIONS(4901), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4901), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4899), + [anon_sym_BSLASHitem] = ACTIONS(4901), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4899), + [anon_sym_LBRACE] = ACTIONS(4899), + [sym_word] = ACTIONS(4901), + [sym_placeholder] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(4901), + [anon_sym_DASH] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4901), + [anon_sym_SLASH] = ACTIONS(4901), + [anon_sym_CARET] = ACTIONS(4901), + [anon_sym__] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_BANG] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_COLON] = ACTIONS(4901), + [anon_sym_SQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4899), + [anon_sym_BSLASHbegin] = ACTIONS(4901), + [anon_sym_BSLASHusepackage] = ACTIONS(4901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), + [anon_sym_BSLASHinclude] = ACTIONS(4901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), + [anon_sym_BSLASHinput] = ACTIONS(4901), + [anon_sym_BSLASHsubfile] = ACTIONS(4901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), + [anon_sym_BSLASHbibliography] = ACTIONS(4901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), + [anon_sym_BSLASHincludesvg] = ACTIONS(4901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), + [anon_sym_BSLASHimport] = ACTIONS(4901), + [anon_sym_BSLASHsubimport] = ACTIONS(4901), + [anon_sym_BSLASHinputfrom] = ACTIONS(4901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), + [anon_sym_BSLASHincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHcaption] = ACTIONS(4901), + [anon_sym_BSLASHcite] = ACTIONS(4901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCite] = ACTIONS(4901), + [anon_sym_BSLASHnocite] = ACTIONS(4901), + [anon_sym_BSLASHcitet] = ACTIONS(4901), + [anon_sym_BSLASHcitep] = ACTIONS(4901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteauthor] = ACTIONS(4901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitetitle] = ACTIONS(4901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteyear] = ACTIONS(4901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitedate] = ACTIONS(4901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteurl] = ACTIONS(4901), + [anon_sym_BSLASHfullcite] = ACTIONS(4901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), + [anon_sym_BSLASHcitealt] = ACTIONS(4901), + [anon_sym_BSLASHcitealp] = ACTIONS(4901), + [anon_sym_BSLASHcitetext] = ACTIONS(4901), + [anon_sym_BSLASHparencite] = ACTIONS(4901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHParencite] = ACTIONS(4901), + [anon_sym_BSLASHfootcite] = ACTIONS(4901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), + [anon_sym_BSLASHtextcite] = ACTIONS(4901), + [anon_sym_BSLASHTextcite] = ACTIONS(4901), + [anon_sym_BSLASHsmartcite] = ACTIONS(4901), + [anon_sym_BSLASHSmartcite] = ACTIONS(4901), + [anon_sym_BSLASHsupercite] = ACTIONS(4901), + [anon_sym_BSLASHautocite] = ACTIONS(4901), + [anon_sym_BSLASHAutocite] = ACTIONS(4901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHvolcite] = ACTIONS(4901), + [anon_sym_BSLASHVolcite] = ACTIONS(4901), + [anon_sym_BSLASHpvolcite] = ACTIONS(4901), + [anon_sym_BSLASHPvolcite] = ACTIONS(4901), + [anon_sym_BSLASHfvolcite] = ACTIONS(4901), + [anon_sym_BSLASHftvolcite] = ACTIONS(4901), + [anon_sym_BSLASHsvolcite] = ACTIONS(4901), + [anon_sym_BSLASHSvolcite] = ACTIONS(4901), + [anon_sym_BSLASHtvolcite] = ACTIONS(4901), + [anon_sym_BSLASHTvolcite] = ACTIONS(4901), + [anon_sym_BSLASHavolcite] = ACTIONS(4901), + [anon_sym_BSLASHAvolcite] = ACTIONS(4901), + [anon_sym_BSLASHnotecite] = ACTIONS(4901), + [anon_sym_BSLASHNotecite] = ACTIONS(4901), + [anon_sym_BSLASHpnotecite] = ACTIONS(4901), + [anon_sym_BSLASHPnotecite] = ACTIONS(4901), + [anon_sym_BSLASHfnotecite] = ACTIONS(4901), + [anon_sym_BSLASHlabel] = ACTIONS(4901), + [anon_sym_BSLASHref] = ACTIONS(4901), + [anon_sym_BSLASHeqref] = ACTIONS(4901), + [anon_sym_BSLASHvref] = ACTIONS(4901), + [anon_sym_BSLASHVref] = ACTIONS(4901), + [anon_sym_BSLASHautoref] = ACTIONS(4901), + [anon_sym_BSLASHpageref] = ACTIONS(4901), + [anon_sym_BSLASHcref] = ACTIONS(4901), + [anon_sym_BSLASHCref] = ACTIONS(4901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnameCref] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHlabelcref] = ACTIONS(4901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCrefrange] = ACTIONS(4901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnewlabel] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), + [anon_sym_BSLASHdef] = ACTIONS(4901), + [anon_sym_BSLASHlet] = ACTIONS(4901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), + [anon_sym_BSLASHgls] = ACTIONS(4901), + [anon_sym_BSLASHGls] = ACTIONS(4901), + [anon_sym_BSLASHGLS] = ACTIONS(4901), + [anon_sym_BSLASHglspl] = ACTIONS(4901), + [anon_sym_BSLASHGlspl] = ACTIONS(4901), + [anon_sym_BSLASHGLSpl] = ACTIONS(4901), + [anon_sym_BSLASHglsdisp] = ACTIONS(4901), + [anon_sym_BSLASHglslink] = ACTIONS(4901), + [anon_sym_BSLASHglstext] = ACTIONS(4901), + [anon_sym_BSLASHGlstext] = ACTIONS(4901), + [anon_sym_BSLASHGLStext] = ACTIONS(4901), + [anon_sym_BSLASHglsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), + [anon_sym_BSLASHglsplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSplural] = ACTIONS(4901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHglsname] = ACTIONS(4901), + [anon_sym_BSLASHGlsname] = ACTIONS(4901), + [anon_sym_BSLASHGLSname] = ACTIONS(4901), + [anon_sym_BSLASHglssymbol] = ACTIONS(4901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), + [anon_sym_BSLASHglsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), + [anon_sym_BSLASHglsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), + [anon_sym_BSLASHglsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), + [anon_sym_BSLASHglsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), + [anon_sym_BSLASHglsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), + [anon_sym_BSLASHnewacronym] = ACTIONS(4901), + [anon_sym_BSLASHacrshort] = ACTIONS(4901), + [anon_sym_BSLASHAcrshort] = ACTIONS(4901), + [anon_sym_BSLASHACRshort] = ACTIONS(4901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), + [anon_sym_BSLASHacrlong] = ACTIONS(4901), + [anon_sym_BSLASHAcrlong] = ACTIONS(4901), + [anon_sym_BSLASHACRlong] = ACTIONS(4901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), + [anon_sym_BSLASHacrfull] = ACTIONS(4901), + [anon_sym_BSLASHAcrfull] = ACTIONS(4901), + [anon_sym_BSLASHACRfull] = ACTIONS(4901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), + [anon_sym_BSLASHacs] = ACTIONS(4901), + [anon_sym_BSLASHAcs] = ACTIONS(4901), + [anon_sym_BSLASHacsp] = ACTIONS(4901), + [anon_sym_BSLASHAcsp] = ACTIONS(4901), + [anon_sym_BSLASHacl] = ACTIONS(4901), + [anon_sym_BSLASHAcl] = ACTIONS(4901), + [anon_sym_BSLASHaclp] = ACTIONS(4901), + [anon_sym_BSLASHAclp] = ACTIONS(4901), + [anon_sym_BSLASHacf] = ACTIONS(4901), + [anon_sym_BSLASHAcf] = ACTIONS(4901), + [anon_sym_BSLASHacfp] = ACTIONS(4901), + [anon_sym_BSLASHAcfp] = ACTIONS(4901), + [anon_sym_BSLASHac] = ACTIONS(4901), + [anon_sym_BSLASHAc] = ACTIONS(4901), + [anon_sym_BSLASHacp] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), + [anon_sym_BSLASHcolor] = ACTIONS(4901), + [anon_sym_BSLASHcolorbox] = ACTIONS(4901), + [anon_sym_BSLASHtextcolor] = ACTIONS(4901), + [anon_sym_BSLASHpagecolor] = ACTIONS(4901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), + [anon_sym_BSLASHtext] = ACTIONS(4901), + [anon_sym_BSLASHintertext] = ACTIONS(4901), + [anon_sym_shortintertext] = ACTIONS(4901), + }, + [908] = { + [sym_command_name] = ACTIONS(4897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4897), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_RBRACK] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_BSLASHpart] = ACTIONS(4897), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddpart] = ACTIONS(4897), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4895), + [anon_sym_BSLASHchapter] = ACTIONS(4897), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddchap] = ACTIONS(4897), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsection] = ACTIONS(4897), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddsec] = ACTIONS(4897), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubsection] = ACTIONS(4897), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4897), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHparagraph] = ACTIONS(4897), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4897), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4895), + [anon_sym_BSLASHitem] = ACTIONS(4897), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4895), + [anon_sym_LBRACE] = ACTIONS(4895), + [sym_word] = ACTIONS(4897), + [sym_placeholder] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_STAR] = ACTIONS(4897), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_CARET] = ACTIONS(4897), + [anon_sym__] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_BANG] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_COLON] = ACTIONS(4897), + [anon_sym_SQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(4897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4895), + [anon_sym_BSLASHbegin] = ACTIONS(4897), + [anon_sym_BSLASHusepackage] = ACTIONS(4897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), + [anon_sym_BSLASHinclude] = ACTIONS(4897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), + [anon_sym_BSLASHinput] = ACTIONS(4897), + [anon_sym_BSLASHsubfile] = ACTIONS(4897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), + [anon_sym_BSLASHbibliography] = ACTIONS(4897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), + [anon_sym_BSLASHincludesvg] = ACTIONS(4897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), + [anon_sym_BSLASHimport] = ACTIONS(4897), + [anon_sym_BSLASHsubimport] = ACTIONS(4897), + [anon_sym_BSLASHinputfrom] = ACTIONS(4897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), + [anon_sym_BSLASHincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHcaption] = ACTIONS(4897), + [anon_sym_BSLASHcite] = ACTIONS(4897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCite] = ACTIONS(4897), + [anon_sym_BSLASHnocite] = ACTIONS(4897), + [anon_sym_BSLASHcitet] = ACTIONS(4897), + [anon_sym_BSLASHcitep] = ACTIONS(4897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteauthor] = ACTIONS(4897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitetitle] = ACTIONS(4897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteyear] = ACTIONS(4897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitedate] = ACTIONS(4897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteurl] = ACTIONS(4897), + [anon_sym_BSLASHfullcite] = ACTIONS(4897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), + [anon_sym_BSLASHcitealt] = ACTIONS(4897), + [anon_sym_BSLASHcitealp] = ACTIONS(4897), + [anon_sym_BSLASHcitetext] = ACTIONS(4897), + [anon_sym_BSLASHparencite] = ACTIONS(4897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHParencite] = ACTIONS(4897), + [anon_sym_BSLASHfootcite] = ACTIONS(4897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), + [anon_sym_BSLASHtextcite] = ACTIONS(4897), + [anon_sym_BSLASHTextcite] = ACTIONS(4897), + [anon_sym_BSLASHsmartcite] = ACTIONS(4897), + [anon_sym_BSLASHSmartcite] = ACTIONS(4897), + [anon_sym_BSLASHsupercite] = ACTIONS(4897), + [anon_sym_BSLASHautocite] = ACTIONS(4897), + [anon_sym_BSLASHAutocite] = ACTIONS(4897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHvolcite] = ACTIONS(4897), + [anon_sym_BSLASHVolcite] = ACTIONS(4897), + [anon_sym_BSLASHpvolcite] = ACTIONS(4897), + [anon_sym_BSLASHPvolcite] = ACTIONS(4897), + [anon_sym_BSLASHfvolcite] = ACTIONS(4897), + [anon_sym_BSLASHftvolcite] = ACTIONS(4897), + [anon_sym_BSLASHsvolcite] = ACTIONS(4897), + [anon_sym_BSLASHSvolcite] = ACTIONS(4897), + [anon_sym_BSLASHtvolcite] = ACTIONS(4897), + [anon_sym_BSLASHTvolcite] = ACTIONS(4897), + [anon_sym_BSLASHavolcite] = ACTIONS(4897), + [anon_sym_BSLASHAvolcite] = ACTIONS(4897), + [anon_sym_BSLASHnotecite] = ACTIONS(4897), + [anon_sym_BSLASHNotecite] = ACTIONS(4897), + [anon_sym_BSLASHpnotecite] = ACTIONS(4897), + [anon_sym_BSLASHPnotecite] = ACTIONS(4897), + [anon_sym_BSLASHfnotecite] = ACTIONS(4897), + [anon_sym_BSLASHlabel] = ACTIONS(4897), + [anon_sym_BSLASHref] = ACTIONS(4897), + [anon_sym_BSLASHeqref] = ACTIONS(4897), + [anon_sym_BSLASHvref] = ACTIONS(4897), + [anon_sym_BSLASHVref] = ACTIONS(4897), + [anon_sym_BSLASHautoref] = ACTIONS(4897), + [anon_sym_BSLASHpageref] = ACTIONS(4897), + [anon_sym_BSLASHcref] = ACTIONS(4897), + [anon_sym_BSLASHCref] = ACTIONS(4897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnameCref] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHlabelcref] = ACTIONS(4897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCrefrange] = ACTIONS(4897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnewlabel] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), + [anon_sym_BSLASHdef] = ACTIONS(4897), + [anon_sym_BSLASHlet] = ACTIONS(4897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), + [anon_sym_BSLASHgls] = ACTIONS(4897), + [anon_sym_BSLASHGls] = ACTIONS(4897), + [anon_sym_BSLASHGLS] = ACTIONS(4897), + [anon_sym_BSLASHglspl] = ACTIONS(4897), + [anon_sym_BSLASHGlspl] = ACTIONS(4897), + [anon_sym_BSLASHGLSpl] = ACTIONS(4897), + [anon_sym_BSLASHglsdisp] = ACTIONS(4897), + [anon_sym_BSLASHglslink] = ACTIONS(4897), + [anon_sym_BSLASHglstext] = ACTIONS(4897), + [anon_sym_BSLASHGlstext] = ACTIONS(4897), + [anon_sym_BSLASHGLStext] = ACTIONS(4897), + [anon_sym_BSLASHglsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), + [anon_sym_BSLASHglsplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSplural] = ACTIONS(4897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHglsname] = ACTIONS(4897), + [anon_sym_BSLASHGlsname] = ACTIONS(4897), + [anon_sym_BSLASHGLSname] = ACTIONS(4897), + [anon_sym_BSLASHglssymbol] = ACTIONS(4897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), + [anon_sym_BSLASHglsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), + [anon_sym_BSLASHglsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), + [anon_sym_BSLASHglsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), + [anon_sym_BSLASHglsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), + [anon_sym_BSLASHglsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), + [anon_sym_BSLASHnewacronym] = ACTIONS(4897), + [anon_sym_BSLASHacrshort] = ACTIONS(4897), + [anon_sym_BSLASHAcrshort] = ACTIONS(4897), + [anon_sym_BSLASHACRshort] = ACTIONS(4897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), + [anon_sym_BSLASHacrlong] = ACTIONS(4897), + [anon_sym_BSLASHAcrlong] = ACTIONS(4897), + [anon_sym_BSLASHACRlong] = ACTIONS(4897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), + [anon_sym_BSLASHacrfull] = ACTIONS(4897), + [anon_sym_BSLASHAcrfull] = ACTIONS(4897), + [anon_sym_BSLASHACRfull] = ACTIONS(4897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), + [anon_sym_BSLASHacs] = ACTIONS(4897), + [anon_sym_BSLASHAcs] = ACTIONS(4897), + [anon_sym_BSLASHacsp] = ACTIONS(4897), + [anon_sym_BSLASHAcsp] = ACTIONS(4897), + [anon_sym_BSLASHacl] = ACTIONS(4897), + [anon_sym_BSLASHAcl] = ACTIONS(4897), + [anon_sym_BSLASHaclp] = ACTIONS(4897), + [anon_sym_BSLASHAclp] = ACTIONS(4897), + [anon_sym_BSLASHacf] = ACTIONS(4897), + [anon_sym_BSLASHAcf] = ACTIONS(4897), + [anon_sym_BSLASHacfp] = ACTIONS(4897), + [anon_sym_BSLASHAcfp] = ACTIONS(4897), + [anon_sym_BSLASHac] = ACTIONS(4897), + [anon_sym_BSLASHAc] = ACTIONS(4897), + [anon_sym_BSLASHacp] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), + [anon_sym_BSLASHcolor] = ACTIONS(4897), + [anon_sym_BSLASHcolorbox] = ACTIONS(4897), + [anon_sym_BSLASHtextcolor] = ACTIONS(4897), + [anon_sym_BSLASHpagecolor] = ACTIONS(4897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), + [anon_sym_BSLASHtext] = ACTIONS(4897), + [anon_sym_BSLASHintertext] = ACTIONS(4897), + [anon_sym_shortintertext] = ACTIONS(4897), + }, + [909] = { + [sym_command_name] = ACTIONS(5221), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5219), + [anon_sym_RPAREN] = ACTIONS(5219), + [anon_sym_LBRACK] = ACTIONS(5219), + [anon_sym_RBRACK] = ACTIONS(5219), + [anon_sym_COMMA] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_BSLASHpart] = ACTIONS(5221), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddpart] = ACTIONS(5221), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), + [anon_sym_BSLASHchapter] = ACTIONS(5221), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddchap] = ACTIONS(5221), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsection] = ACTIONS(5221), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddsec] = ACTIONS(5221), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubsection] = ACTIONS(5221), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHparagraph] = ACTIONS(5221), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), + [anon_sym_BSLASHitem] = ACTIONS(5221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5219), + [sym_word] = ACTIONS(5221), + [sym_placeholder] = ACTIONS(5219), + [anon_sym_PLUS] = ACTIONS(5221), + [anon_sym_DASH] = ACTIONS(5221), + [anon_sym_STAR] = ACTIONS(5221), + [anon_sym_SLASH] = ACTIONS(5221), + [anon_sym_CARET] = ACTIONS(5221), + [anon_sym__] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5221), + [anon_sym_GT] = ACTIONS(5221), + [anon_sym_BANG] = ACTIONS(5221), + [anon_sym_PIPE] = ACTIONS(5221), + [anon_sym_COLON] = ACTIONS(5221), + [anon_sym_SQUOTE] = ACTIONS(5221), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), + [anon_sym_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5219), + [anon_sym_BSLASHbegin] = ACTIONS(5221), + [anon_sym_BSLASHusepackage] = ACTIONS(5221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), + [anon_sym_BSLASHinclude] = ACTIONS(5221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), + [anon_sym_BSLASHinput] = ACTIONS(5221), + [anon_sym_BSLASHsubfile] = ACTIONS(5221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), + [anon_sym_BSLASHbibliography] = ACTIONS(5221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), + [anon_sym_BSLASHincludesvg] = ACTIONS(5221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), + [anon_sym_BSLASHimport] = ACTIONS(5221), + [anon_sym_BSLASHsubimport] = ACTIONS(5221), + [anon_sym_BSLASHinputfrom] = ACTIONS(5221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), + [anon_sym_BSLASHincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHcaption] = ACTIONS(5221), + [anon_sym_BSLASHcite] = ACTIONS(5221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCite] = ACTIONS(5221), + [anon_sym_BSLASHnocite] = ACTIONS(5221), + [anon_sym_BSLASHcitet] = ACTIONS(5221), + [anon_sym_BSLASHcitep] = ACTIONS(5221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteyear] = ACTIONS(5221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitedate] = ACTIONS(5221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteurl] = ACTIONS(5221), + [anon_sym_BSLASHfullcite] = ACTIONS(5221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), + [anon_sym_BSLASHcitealt] = ACTIONS(5221), + [anon_sym_BSLASHcitealp] = ACTIONS(5221), + [anon_sym_BSLASHcitetext] = ACTIONS(5221), + [anon_sym_BSLASHparencite] = ACTIONS(5221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHParencite] = ACTIONS(5221), + [anon_sym_BSLASHfootcite] = ACTIONS(5221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), + [anon_sym_BSLASHtextcite] = ACTIONS(5221), + [anon_sym_BSLASHTextcite] = ACTIONS(5221), + [anon_sym_BSLASHsmartcite] = ACTIONS(5221), + [anon_sym_BSLASHSmartcite] = ACTIONS(5221), + [anon_sym_BSLASHsupercite] = ACTIONS(5221), + [anon_sym_BSLASHautocite] = ACTIONS(5221), + [anon_sym_BSLASHAutocite] = ACTIONS(5221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHvolcite] = ACTIONS(5221), + [anon_sym_BSLASHVolcite] = ACTIONS(5221), + [anon_sym_BSLASHpvolcite] = ACTIONS(5221), + [anon_sym_BSLASHPvolcite] = ACTIONS(5221), + [anon_sym_BSLASHfvolcite] = ACTIONS(5221), + [anon_sym_BSLASHftvolcite] = ACTIONS(5221), + [anon_sym_BSLASHsvolcite] = ACTIONS(5221), + [anon_sym_BSLASHSvolcite] = ACTIONS(5221), + [anon_sym_BSLASHtvolcite] = ACTIONS(5221), + [anon_sym_BSLASHTvolcite] = ACTIONS(5221), + [anon_sym_BSLASHavolcite] = ACTIONS(5221), + [anon_sym_BSLASHAvolcite] = ACTIONS(5221), + [anon_sym_BSLASHnotecite] = ACTIONS(5221), + [anon_sym_BSLASHNotecite] = ACTIONS(5221), + [anon_sym_BSLASHpnotecite] = ACTIONS(5221), + [anon_sym_BSLASHPnotecite] = ACTIONS(5221), + [anon_sym_BSLASHfnotecite] = ACTIONS(5221), + [anon_sym_BSLASHlabel] = ACTIONS(5221), + [anon_sym_BSLASHref] = ACTIONS(5221), + [anon_sym_BSLASHeqref] = ACTIONS(5221), + [anon_sym_BSLASHvref] = ACTIONS(5221), + [anon_sym_BSLASHVref] = ACTIONS(5221), + [anon_sym_BSLASHautoref] = ACTIONS(5221), + [anon_sym_BSLASHpageref] = ACTIONS(5221), + [anon_sym_BSLASHcref] = ACTIONS(5221), + [anon_sym_BSLASHCref] = ACTIONS(5221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnameCref] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHlabelcref] = ACTIONS(5221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnewlabel] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), + [anon_sym_BSLASHdef] = ACTIONS(5221), + [anon_sym_BSLASHlet] = ACTIONS(5221), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), + [anon_sym_BSLASHgls] = ACTIONS(5221), + [anon_sym_BSLASHGls] = ACTIONS(5221), + [anon_sym_BSLASHGLS] = ACTIONS(5221), + [anon_sym_BSLASHglspl] = ACTIONS(5221), + [anon_sym_BSLASHGlspl] = ACTIONS(5221), + [anon_sym_BSLASHGLSpl] = ACTIONS(5221), + [anon_sym_BSLASHglsdisp] = ACTIONS(5221), + [anon_sym_BSLASHglslink] = ACTIONS(5221), + [anon_sym_BSLASHglstext] = ACTIONS(5221), + [anon_sym_BSLASHGlstext] = ACTIONS(5221), + [anon_sym_BSLASHGLStext] = ACTIONS(5221), + [anon_sym_BSLASHglsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), + [anon_sym_BSLASHglsplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSplural] = ACTIONS(5221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHglsname] = ACTIONS(5221), + [anon_sym_BSLASHGlsname] = ACTIONS(5221), + [anon_sym_BSLASHGLSname] = ACTIONS(5221), + [anon_sym_BSLASHglssymbol] = ACTIONS(5221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), + [anon_sym_BSLASHglsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), + [anon_sym_BSLASHglsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), + [anon_sym_BSLASHglsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), + [anon_sym_BSLASHglsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), + [anon_sym_BSLASHglsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), + [anon_sym_BSLASHnewacronym] = ACTIONS(5221), + [anon_sym_BSLASHacrshort] = ACTIONS(5221), + [anon_sym_BSLASHAcrshort] = ACTIONS(5221), + [anon_sym_BSLASHACRshort] = ACTIONS(5221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), + [anon_sym_BSLASHacrlong] = ACTIONS(5221), + [anon_sym_BSLASHAcrlong] = ACTIONS(5221), + [anon_sym_BSLASHACRlong] = ACTIONS(5221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), + [anon_sym_BSLASHacrfull] = ACTIONS(5221), + [anon_sym_BSLASHAcrfull] = ACTIONS(5221), + [anon_sym_BSLASHACRfull] = ACTIONS(5221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), + [anon_sym_BSLASHacs] = ACTIONS(5221), + [anon_sym_BSLASHAcs] = ACTIONS(5221), + [anon_sym_BSLASHacsp] = ACTIONS(5221), + [anon_sym_BSLASHAcsp] = ACTIONS(5221), + [anon_sym_BSLASHacl] = ACTIONS(5221), + [anon_sym_BSLASHAcl] = ACTIONS(5221), + [anon_sym_BSLASHaclp] = ACTIONS(5221), + [anon_sym_BSLASHAclp] = ACTIONS(5221), + [anon_sym_BSLASHacf] = ACTIONS(5221), + [anon_sym_BSLASHAcf] = ACTIONS(5221), + [anon_sym_BSLASHacfp] = ACTIONS(5221), + [anon_sym_BSLASHAcfp] = ACTIONS(5221), + [anon_sym_BSLASHac] = ACTIONS(5221), + [anon_sym_BSLASHAc] = ACTIONS(5221), + [anon_sym_BSLASHacp] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), + [anon_sym_BSLASHcolor] = ACTIONS(5221), + [anon_sym_BSLASHcolorbox] = ACTIONS(5221), + [anon_sym_BSLASHtextcolor] = ACTIONS(5221), + [anon_sym_BSLASHpagecolor] = ACTIONS(5221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), + [anon_sym_BSLASHtext] = ACTIONS(5221), + [anon_sym_BSLASHintertext] = ACTIONS(5221), + [anon_sym_shortintertext] = ACTIONS(5221), }, - [1079] = { - [sym_command_name] = ACTIONS(5225), + [910] = { + [sym_command_name] = ACTIONS(5305), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_BSLASHpart] = ACTIONS(5225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddpart] = ACTIONS(5225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHchapter] = ACTIONS(5225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddchap] = ACTIONS(5225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsection] = ACTIONS(5225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddsec] = ACTIONS(5225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHparagraph] = ACTIONS(5225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHitem] = ACTIONS(5225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASHbegin] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), + [anon_sym_BSLASHiffalse] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5303), + [anon_sym_RPAREN] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5303), + [anon_sym_RBRACK] = ACTIONS(5303), + [anon_sym_COMMA] = ACTIONS(5303), + [anon_sym_EQ] = ACTIONS(5303), + [anon_sym_BSLASHpart] = ACTIONS(5305), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddpart] = ACTIONS(5305), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), + [anon_sym_BSLASHchapter] = ACTIONS(5305), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddchap] = ACTIONS(5305), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsection] = ACTIONS(5305), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddsec] = ACTIONS(5305), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubsection] = ACTIONS(5305), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHparagraph] = ACTIONS(5305), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), + [anon_sym_BSLASHitem] = ACTIONS(5305), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), + [anon_sym_LBRACE] = ACTIONS(5303), + [sym_word] = ACTIONS(5305), + [sym_placeholder] = ACTIONS(5303), + [anon_sym_PLUS] = ACTIONS(5305), + [anon_sym_DASH] = ACTIONS(5305), + [anon_sym_STAR] = ACTIONS(5305), + [anon_sym_SLASH] = ACTIONS(5305), + [anon_sym_CARET] = ACTIONS(5305), + [anon_sym__] = ACTIONS(5305), + [anon_sym_LT] = ACTIONS(5305), + [anon_sym_GT] = ACTIONS(5305), + [anon_sym_BANG] = ACTIONS(5305), + [anon_sym_PIPE] = ACTIONS(5305), + [anon_sym_COLON] = ACTIONS(5305), + [anon_sym_SQUOTE] = ACTIONS(5305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), + [anon_sym_DOLLAR] = ACTIONS(5305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5303), + [anon_sym_BSLASHbegin] = ACTIONS(5305), + [anon_sym_BSLASHusepackage] = ACTIONS(5305), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), + [anon_sym_BSLASHinclude] = ACTIONS(5305), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), + [anon_sym_BSLASHinput] = ACTIONS(5305), + [anon_sym_BSLASHsubfile] = ACTIONS(5305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), + [anon_sym_BSLASHbibliography] = ACTIONS(5305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), + [anon_sym_BSLASHincludesvg] = ACTIONS(5305), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), + [anon_sym_BSLASHimport] = ACTIONS(5305), + [anon_sym_BSLASHsubimport] = ACTIONS(5305), + [anon_sym_BSLASHinputfrom] = ACTIONS(5305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), + [anon_sym_BSLASHincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHcaption] = ACTIONS(5305), + [anon_sym_BSLASHcite] = ACTIONS(5305), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCite] = ACTIONS(5305), + [anon_sym_BSLASHnocite] = ACTIONS(5305), + [anon_sym_BSLASHcitet] = ACTIONS(5305), + [anon_sym_BSLASHcitep] = ACTIONS(5305), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor] = ACTIONS(5305), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle] = ACTIONS(5305), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteyear] = ACTIONS(5305), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitedate] = ACTIONS(5305), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteurl] = ACTIONS(5305), + [anon_sym_BSLASHfullcite] = ACTIONS(5305), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), + [anon_sym_BSLASHcitealt] = ACTIONS(5305), + [anon_sym_BSLASHcitealp] = ACTIONS(5305), + [anon_sym_BSLASHcitetext] = ACTIONS(5305), + [anon_sym_BSLASHparencite] = ACTIONS(5305), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHParencite] = ACTIONS(5305), + [anon_sym_BSLASHfootcite] = ACTIONS(5305), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), + [anon_sym_BSLASHtextcite] = ACTIONS(5305), + [anon_sym_BSLASHTextcite] = ACTIONS(5305), + [anon_sym_BSLASHsmartcite] = ACTIONS(5305), + [anon_sym_BSLASHSmartcite] = ACTIONS(5305), + [anon_sym_BSLASHsupercite] = ACTIONS(5305), + [anon_sym_BSLASHautocite] = ACTIONS(5305), + [anon_sym_BSLASHAutocite] = ACTIONS(5305), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHvolcite] = ACTIONS(5305), + [anon_sym_BSLASHVolcite] = ACTIONS(5305), + [anon_sym_BSLASHpvolcite] = ACTIONS(5305), + [anon_sym_BSLASHPvolcite] = ACTIONS(5305), + [anon_sym_BSLASHfvolcite] = ACTIONS(5305), + [anon_sym_BSLASHftvolcite] = ACTIONS(5305), + [anon_sym_BSLASHsvolcite] = ACTIONS(5305), + [anon_sym_BSLASHSvolcite] = ACTIONS(5305), + [anon_sym_BSLASHtvolcite] = ACTIONS(5305), + [anon_sym_BSLASHTvolcite] = ACTIONS(5305), + [anon_sym_BSLASHavolcite] = ACTIONS(5305), + [anon_sym_BSLASHAvolcite] = ACTIONS(5305), + [anon_sym_BSLASHnotecite] = ACTIONS(5305), + [anon_sym_BSLASHNotecite] = ACTIONS(5305), + [anon_sym_BSLASHpnotecite] = ACTIONS(5305), + [anon_sym_BSLASHPnotecite] = ACTIONS(5305), + [anon_sym_BSLASHfnotecite] = ACTIONS(5305), + [anon_sym_BSLASHlabel] = ACTIONS(5305), + [anon_sym_BSLASHref] = ACTIONS(5305), + [anon_sym_BSLASHeqref] = ACTIONS(5305), + [anon_sym_BSLASHvref] = ACTIONS(5305), + [anon_sym_BSLASHVref] = ACTIONS(5305), + [anon_sym_BSLASHautoref] = ACTIONS(5305), + [anon_sym_BSLASHpageref] = ACTIONS(5305), + [anon_sym_BSLASHcref] = ACTIONS(5305), + [anon_sym_BSLASHCref] = ACTIONS(5305), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnameCref] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHlabelcref] = ACTIONS(5305), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange] = ACTIONS(5305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnewlabel] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), + [anon_sym_BSLASHdef] = ACTIONS(5305), + [anon_sym_BSLASHlet] = ACTIONS(5305), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), + [anon_sym_BSLASHgls] = ACTIONS(5305), + [anon_sym_BSLASHGls] = ACTIONS(5305), + [anon_sym_BSLASHGLS] = ACTIONS(5305), + [anon_sym_BSLASHglspl] = ACTIONS(5305), + [anon_sym_BSLASHGlspl] = ACTIONS(5305), + [anon_sym_BSLASHGLSpl] = ACTIONS(5305), + [anon_sym_BSLASHglsdisp] = ACTIONS(5305), + [anon_sym_BSLASHglslink] = ACTIONS(5305), + [anon_sym_BSLASHglstext] = ACTIONS(5305), + [anon_sym_BSLASHGlstext] = ACTIONS(5305), + [anon_sym_BSLASHGLStext] = ACTIONS(5305), + [anon_sym_BSLASHglsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), + [anon_sym_BSLASHglsplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSplural] = ACTIONS(5305), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHglsname] = ACTIONS(5305), + [anon_sym_BSLASHGlsname] = ACTIONS(5305), + [anon_sym_BSLASHGLSname] = ACTIONS(5305), + [anon_sym_BSLASHglssymbol] = ACTIONS(5305), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), + [anon_sym_BSLASHglsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), + [anon_sym_BSLASHglsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), + [anon_sym_BSLASHglsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), + [anon_sym_BSLASHglsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), + [anon_sym_BSLASHglsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), + [anon_sym_BSLASHnewacronym] = ACTIONS(5305), + [anon_sym_BSLASHacrshort] = ACTIONS(5305), + [anon_sym_BSLASHAcrshort] = ACTIONS(5305), + [anon_sym_BSLASHACRshort] = ACTIONS(5305), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), + [anon_sym_BSLASHacrlong] = ACTIONS(5305), + [anon_sym_BSLASHAcrlong] = ACTIONS(5305), + [anon_sym_BSLASHACRlong] = ACTIONS(5305), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), + [anon_sym_BSLASHacrfull] = ACTIONS(5305), + [anon_sym_BSLASHAcrfull] = ACTIONS(5305), + [anon_sym_BSLASHACRfull] = ACTIONS(5305), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), + [anon_sym_BSLASHacs] = ACTIONS(5305), + [anon_sym_BSLASHAcs] = ACTIONS(5305), + [anon_sym_BSLASHacsp] = ACTIONS(5305), + [anon_sym_BSLASHAcsp] = ACTIONS(5305), + [anon_sym_BSLASHacl] = ACTIONS(5305), + [anon_sym_BSLASHAcl] = ACTIONS(5305), + [anon_sym_BSLASHaclp] = ACTIONS(5305), + [anon_sym_BSLASHAclp] = ACTIONS(5305), + [anon_sym_BSLASHacf] = ACTIONS(5305), + [anon_sym_BSLASHAcf] = ACTIONS(5305), + [anon_sym_BSLASHacfp] = ACTIONS(5305), + [anon_sym_BSLASHAcfp] = ACTIONS(5305), + [anon_sym_BSLASHac] = ACTIONS(5305), + [anon_sym_BSLASHAc] = ACTIONS(5305), + [anon_sym_BSLASHacp] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), + [anon_sym_BSLASHcolor] = ACTIONS(5305), + [anon_sym_BSLASHcolorbox] = ACTIONS(5305), + [anon_sym_BSLASHtextcolor] = ACTIONS(5305), + [anon_sym_BSLASHpagecolor] = ACTIONS(5305), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), + [anon_sym_BSLASHtext] = ACTIONS(5305), + [anon_sym_BSLASHintertext] = ACTIONS(5305), + [anon_sym_shortintertext] = ACTIONS(5305), }, - [1080] = { - [sym_command_name] = ACTIONS(5209), + [911] = { + [sym_command_name] = ACTIONS(4963), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_BSLASHpart] = ACTIONS(5209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddpart] = ACTIONS(5209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHchapter] = ACTIONS(5209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddchap] = ACTIONS(5209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsection] = ACTIONS(5209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddsec] = ACTIONS(5209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHparagraph] = ACTIONS(5209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHitem] = ACTIONS(5209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASHbegin] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHiffalse] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_RBRACK] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_EQ] = ACTIONS(4961), + [anon_sym_BSLASHpart] = ACTIONS(4963), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddpart] = ACTIONS(4963), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4961), + [anon_sym_BSLASHchapter] = ACTIONS(4963), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddchap] = ACTIONS(4963), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsection] = ACTIONS(4963), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddsec] = ACTIONS(4963), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubsection] = ACTIONS(4963), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4963), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHparagraph] = ACTIONS(4963), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4963), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4961), + [anon_sym_BSLASHitem] = ACTIONS(4963), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4961), + [anon_sym_LBRACE] = ACTIONS(4961), + [sym_word] = ACTIONS(4963), + [sym_placeholder] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), + [anon_sym__] = ACTIONS(4963), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_COLON] = ACTIONS(4963), + [anon_sym_SQUOTE] = ACTIONS(4963), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), + [anon_sym_DOLLAR] = ACTIONS(4963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4961), + [anon_sym_BSLASHbegin] = ACTIONS(4963), + [anon_sym_BSLASHusepackage] = ACTIONS(4963), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), + [anon_sym_BSLASHinclude] = ACTIONS(4963), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), + [anon_sym_BSLASHinput] = ACTIONS(4963), + [anon_sym_BSLASHsubfile] = ACTIONS(4963), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), + [anon_sym_BSLASHbibliography] = ACTIONS(4963), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), + [anon_sym_BSLASHincludesvg] = ACTIONS(4963), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), + [anon_sym_BSLASHimport] = ACTIONS(4963), + [anon_sym_BSLASHsubimport] = ACTIONS(4963), + [anon_sym_BSLASHinputfrom] = ACTIONS(4963), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), + [anon_sym_BSLASHincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHcaption] = ACTIONS(4963), + [anon_sym_BSLASHcite] = ACTIONS(4963), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCite] = ACTIONS(4963), + [anon_sym_BSLASHnocite] = ACTIONS(4963), + [anon_sym_BSLASHcitet] = ACTIONS(4963), + [anon_sym_BSLASHcitep] = ACTIONS(4963), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteauthor] = ACTIONS(4963), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitetitle] = ACTIONS(4963), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteyear] = ACTIONS(4963), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitedate] = ACTIONS(4963), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteurl] = ACTIONS(4963), + [anon_sym_BSLASHfullcite] = ACTIONS(4963), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), + [anon_sym_BSLASHcitealt] = ACTIONS(4963), + [anon_sym_BSLASHcitealp] = ACTIONS(4963), + [anon_sym_BSLASHcitetext] = ACTIONS(4963), + [anon_sym_BSLASHparencite] = ACTIONS(4963), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHParencite] = ACTIONS(4963), + [anon_sym_BSLASHfootcite] = ACTIONS(4963), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), + [anon_sym_BSLASHtextcite] = ACTIONS(4963), + [anon_sym_BSLASHTextcite] = ACTIONS(4963), + [anon_sym_BSLASHsmartcite] = ACTIONS(4963), + [anon_sym_BSLASHSmartcite] = ACTIONS(4963), + [anon_sym_BSLASHsupercite] = ACTIONS(4963), + [anon_sym_BSLASHautocite] = ACTIONS(4963), + [anon_sym_BSLASHAutocite] = ACTIONS(4963), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHvolcite] = ACTIONS(4963), + [anon_sym_BSLASHVolcite] = ACTIONS(4963), + [anon_sym_BSLASHpvolcite] = ACTIONS(4963), + [anon_sym_BSLASHPvolcite] = ACTIONS(4963), + [anon_sym_BSLASHfvolcite] = ACTIONS(4963), + [anon_sym_BSLASHftvolcite] = ACTIONS(4963), + [anon_sym_BSLASHsvolcite] = ACTIONS(4963), + [anon_sym_BSLASHSvolcite] = ACTIONS(4963), + [anon_sym_BSLASHtvolcite] = ACTIONS(4963), + [anon_sym_BSLASHTvolcite] = ACTIONS(4963), + [anon_sym_BSLASHavolcite] = ACTIONS(4963), + [anon_sym_BSLASHAvolcite] = ACTIONS(4963), + [anon_sym_BSLASHnotecite] = ACTIONS(4963), + [anon_sym_BSLASHNotecite] = ACTIONS(4963), + [anon_sym_BSLASHpnotecite] = ACTIONS(4963), + [anon_sym_BSLASHPnotecite] = ACTIONS(4963), + [anon_sym_BSLASHfnotecite] = ACTIONS(4963), + [anon_sym_BSLASHlabel] = ACTIONS(4963), + [anon_sym_BSLASHref] = ACTIONS(4963), + [anon_sym_BSLASHeqref] = ACTIONS(4963), + [anon_sym_BSLASHvref] = ACTIONS(4963), + [anon_sym_BSLASHVref] = ACTIONS(4963), + [anon_sym_BSLASHautoref] = ACTIONS(4963), + [anon_sym_BSLASHpageref] = ACTIONS(4963), + [anon_sym_BSLASHcref] = ACTIONS(4963), + [anon_sym_BSLASHCref] = ACTIONS(4963), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnameCref] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHlabelcref] = ACTIONS(4963), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCrefrange] = ACTIONS(4963), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnewlabel] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), + [anon_sym_BSLASHdef] = ACTIONS(4963), + [anon_sym_BSLASHlet] = ACTIONS(4963), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), + [anon_sym_BSLASHgls] = ACTIONS(4963), + [anon_sym_BSLASHGls] = ACTIONS(4963), + [anon_sym_BSLASHGLS] = ACTIONS(4963), + [anon_sym_BSLASHglspl] = ACTIONS(4963), + [anon_sym_BSLASHGlspl] = ACTIONS(4963), + [anon_sym_BSLASHGLSpl] = ACTIONS(4963), + [anon_sym_BSLASHglsdisp] = ACTIONS(4963), + [anon_sym_BSLASHglslink] = ACTIONS(4963), + [anon_sym_BSLASHglstext] = ACTIONS(4963), + [anon_sym_BSLASHGlstext] = ACTIONS(4963), + [anon_sym_BSLASHGLStext] = ACTIONS(4963), + [anon_sym_BSLASHglsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), + [anon_sym_BSLASHglsplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSplural] = ACTIONS(4963), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHglsname] = ACTIONS(4963), + [anon_sym_BSLASHGlsname] = ACTIONS(4963), + [anon_sym_BSLASHGLSname] = ACTIONS(4963), + [anon_sym_BSLASHglssymbol] = ACTIONS(4963), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), + [anon_sym_BSLASHglsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), + [anon_sym_BSLASHglsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), + [anon_sym_BSLASHglsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), + [anon_sym_BSLASHglsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), + [anon_sym_BSLASHglsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), + [anon_sym_BSLASHnewacronym] = ACTIONS(4963), + [anon_sym_BSLASHacrshort] = ACTIONS(4963), + [anon_sym_BSLASHAcrshort] = ACTIONS(4963), + [anon_sym_BSLASHACRshort] = ACTIONS(4963), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), + [anon_sym_BSLASHacrlong] = ACTIONS(4963), + [anon_sym_BSLASHAcrlong] = ACTIONS(4963), + [anon_sym_BSLASHACRlong] = ACTIONS(4963), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), + [anon_sym_BSLASHacrfull] = ACTIONS(4963), + [anon_sym_BSLASHAcrfull] = ACTIONS(4963), + [anon_sym_BSLASHACRfull] = ACTIONS(4963), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), + [anon_sym_BSLASHacs] = ACTIONS(4963), + [anon_sym_BSLASHAcs] = ACTIONS(4963), + [anon_sym_BSLASHacsp] = ACTIONS(4963), + [anon_sym_BSLASHAcsp] = ACTIONS(4963), + [anon_sym_BSLASHacl] = ACTIONS(4963), + [anon_sym_BSLASHAcl] = ACTIONS(4963), + [anon_sym_BSLASHaclp] = ACTIONS(4963), + [anon_sym_BSLASHAclp] = ACTIONS(4963), + [anon_sym_BSLASHacf] = ACTIONS(4963), + [anon_sym_BSLASHAcf] = ACTIONS(4963), + [anon_sym_BSLASHacfp] = ACTIONS(4963), + [anon_sym_BSLASHAcfp] = ACTIONS(4963), + [anon_sym_BSLASHac] = ACTIONS(4963), + [anon_sym_BSLASHAc] = ACTIONS(4963), + [anon_sym_BSLASHacp] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), + [anon_sym_BSLASHcolor] = ACTIONS(4963), + [anon_sym_BSLASHcolorbox] = ACTIONS(4963), + [anon_sym_BSLASHtextcolor] = ACTIONS(4963), + [anon_sym_BSLASHpagecolor] = ACTIONS(4963), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), + [anon_sym_BSLASHtext] = ACTIONS(4963), + [anon_sym_BSLASHintertext] = ACTIONS(4963), + [anon_sym_shortintertext] = ACTIONS(4963), + }, + [912] = { + [sym_command_name] = ACTIONS(5073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5071), + [anon_sym_RPAREN] = ACTIONS(5071), + [anon_sym_LBRACK] = ACTIONS(5071), + [anon_sym_RBRACK] = ACTIONS(5071), + [anon_sym_COMMA] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_BSLASHpart] = ACTIONS(5073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddpart] = ACTIONS(5073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), + [anon_sym_BSLASHchapter] = ACTIONS(5073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddchap] = ACTIONS(5073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsection] = ACTIONS(5073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddsec] = ACTIONS(5073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubsection] = ACTIONS(5073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHparagraph] = ACTIONS(5073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), + [anon_sym_BSLASHitem] = ACTIONS(5073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5071), + [sym_word] = ACTIONS(5073), + [sym_placeholder] = ACTIONS(5071), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_CARET] = ACTIONS(5073), + [anon_sym__] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_PIPE] = ACTIONS(5073), + [anon_sym_COLON] = ACTIONS(5073), + [anon_sym_SQUOTE] = ACTIONS(5073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), + [anon_sym_DOLLAR] = ACTIONS(5073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5071), + [anon_sym_BSLASHbegin] = ACTIONS(5073), + [anon_sym_BSLASHusepackage] = ACTIONS(5073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), + [anon_sym_BSLASHinclude] = ACTIONS(5073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), + [anon_sym_BSLASHinput] = ACTIONS(5073), + [anon_sym_BSLASHsubfile] = ACTIONS(5073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), + [anon_sym_BSLASHbibliography] = ACTIONS(5073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), + [anon_sym_BSLASHincludesvg] = ACTIONS(5073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), + [anon_sym_BSLASHimport] = ACTIONS(5073), + [anon_sym_BSLASHsubimport] = ACTIONS(5073), + [anon_sym_BSLASHinputfrom] = ACTIONS(5073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), + [anon_sym_BSLASHincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHcaption] = ACTIONS(5073), + [anon_sym_BSLASHcite] = ACTIONS(5073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCite] = ACTIONS(5073), + [anon_sym_BSLASHnocite] = ACTIONS(5073), + [anon_sym_BSLASHcitet] = ACTIONS(5073), + [anon_sym_BSLASHcitep] = ACTIONS(5073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteauthor] = ACTIONS(5073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitetitle] = ACTIONS(5073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteyear] = ACTIONS(5073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitedate] = ACTIONS(5073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteurl] = ACTIONS(5073), + [anon_sym_BSLASHfullcite] = ACTIONS(5073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), + [anon_sym_BSLASHcitealt] = ACTIONS(5073), + [anon_sym_BSLASHcitealp] = ACTIONS(5073), + [anon_sym_BSLASHcitetext] = ACTIONS(5073), + [anon_sym_BSLASHparencite] = ACTIONS(5073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHParencite] = ACTIONS(5073), + [anon_sym_BSLASHfootcite] = ACTIONS(5073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), + [anon_sym_BSLASHtextcite] = ACTIONS(5073), + [anon_sym_BSLASHTextcite] = ACTIONS(5073), + [anon_sym_BSLASHsmartcite] = ACTIONS(5073), + [anon_sym_BSLASHSmartcite] = ACTIONS(5073), + [anon_sym_BSLASHsupercite] = ACTIONS(5073), + [anon_sym_BSLASHautocite] = ACTIONS(5073), + [anon_sym_BSLASHAutocite] = ACTIONS(5073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHvolcite] = ACTIONS(5073), + [anon_sym_BSLASHVolcite] = ACTIONS(5073), + [anon_sym_BSLASHpvolcite] = ACTIONS(5073), + [anon_sym_BSLASHPvolcite] = ACTIONS(5073), + [anon_sym_BSLASHfvolcite] = ACTIONS(5073), + [anon_sym_BSLASHftvolcite] = ACTIONS(5073), + [anon_sym_BSLASHsvolcite] = ACTIONS(5073), + [anon_sym_BSLASHSvolcite] = ACTIONS(5073), + [anon_sym_BSLASHtvolcite] = ACTIONS(5073), + [anon_sym_BSLASHTvolcite] = ACTIONS(5073), + [anon_sym_BSLASHavolcite] = ACTIONS(5073), + [anon_sym_BSLASHAvolcite] = ACTIONS(5073), + [anon_sym_BSLASHnotecite] = ACTIONS(5073), + [anon_sym_BSLASHNotecite] = ACTIONS(5073), + [anon_sym_BSLASHpnotecite] = ACTIONS(5073), + [anon_sym_BSLASHPnotecite] = ACTIONS(5073), + [anon_sym_BSLASHfnotecite] = ACTIONS(5073), + [anon_sym_BSLASHlabel] = ACTIONS(5073), + [anon_sym_BSLASHref] = ACTIONS(5073), + [anon_sym_BSLASHeqref] = ACTIONS(5073), + [anon_sym_BSLASHvref] = ACTIONS(5073), + [anon_sym_BSLASHVref] = ACTIONS(5073), + [anon_sym_BSLASHautoref] = ACTIONS(5073), + [anon_sym_BSLASHpageref] = ACTIONS(5073), + [anon_sym_BSLASHcref] = ACTIONS(5073), + [anon_sym_BSLASHCref] = ACTIONS(5073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnameCref] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHlabelcref] = ACTIONS(5073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCrefrange] = ACTIONS(5073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnewlabel] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), + [anon_sym_BSLASHdef] = ACTIONS(5073), + [anon_sym_BSLASHlet] = ACTIONS(5073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), + [anon_sym_BSLASHgls] = ACTIONS(5073), + [anon_sym_BSLASHGls] = ACTIONS(5073), + [anon_sym_BSLASHGLS] = ACTIONS(5073), + [anon_sym_BSLASHglspl] = ACTIONS(5073), + [anon_sym_BSLASHGlspl] = ACTIONS(5073), + [anon_sym_BSLASHGLSpl] = ACTIONS(5073), + [anon_sym_BSLASHglsdisp] = ACTIONS(5073), + [anon_sym_BSLASHglslink] = ACTIONS(5073), + [anon_sym_BSLASHglstext] = ACTIONS(5073), + [anon_sym_BSLASHGlstext] = ACTIONS(5073), + [anon_sym_BSLASHGLStext] = ACTIONS(5073), + [anon_sym_BSLASHglsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), + [anon_sym_BSLASHglsplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSplural] = ACTIONS(5073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHglsname] = ACTIONS(5073), + [anon_sym_BSLASHGlsname] = ACTIONS(5073), + [anon_sym_BSLASHGLSname] = ACTIONS(5073), + [anon_sym_BSLASHglssymbol] = ACTIONS(5073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), + [anon_sym_BSLASHglsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), + [anon_sym_BSLASHglsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), + [anon_sym_BSLASHglsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), + [anon_sym_BSLASHglsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), + [anon_sym_BSLASHglsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), + [anon_sym_BSLASHnewacronym] = ACTIONS(5073), + [anon_sym_BSLASHacrshort] = ACTIONS(5073), + [anon_sym_BSLASHAcrshort] = ACTIONS(5073), + [anon_sym_BSLASHACRshort] = ACTIONS(5073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), + [anon_sym_BSLASHacrlong] = ACTIONS(5073), + [anon_sym_BSLASHAcrlong] = ACTIONS(5073), + [anon_sym_BSLASHACRlong] = ACTIONS(5073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), + [anon_sym_BSLASHacrfull] = ACTIONS(5073), + [anon_sym_BSLASHAcrfull] = ACTIONS(5073), + [anon_sym_BSLASHACRfull] = ACTIONS(5073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), + [anon_sym_BSLASHacs] = ACTIONS(5073), + [anon_sym_BSLASHAcs] = ACTIONS(5073), + [anon_sym_BSLASHacsp] = ACTIONS(5073), + [anon_sym_BSLASHAcsp] = ACTIONS(5073), + [anon_sym_BSLASHacl] = ACTIONS(5073), + [anon_sym_BSLASHAcl] = ACTIONS(5073), + [anon_sym_BSLASHaclp] = ACTIONS(5073), + [anon_sym_BSLASHAclp] = ACTIONS(5073), + [anon_sym_BSLASHacf] = ACTIONS(5073), + [anon_sym_BSLASHAcf] = ACTIONS(5073), + [anon_sym_BSLASHacfp] = ACTIONS(5073), + [anon_sym_BSLASHAcfp] = ACTIONS(5073), + [anon_sym_BSLASHac] = ACTIONS(5073), + [anon_sym_BSLASHAc] = ACTIONS(5073), + [anon_sym_BSLASHacp] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), + [anon_sym_BSLASHcolor] = ACTIONS(5073), + [anon_sym_BSLASHcolorbox] = ACTIONS(5073), + [anon_sym_BSLASHtextcolor] = ACTIONS(5073), + [anon_sym_BSLASHpagecolor] = ACTIONS(5073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHtext] = ACTIONS(5073), + [anon_sym_BSLASHintertext] = ACTIONS(5073), + [anon_sym_shortintertext] = ACTIONS(5073), }, - [1081] = { - [sym_command_name] = ACTIONS(5205), + [913] = { + [sym_command_name] = ACTIONS(5065), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_BSLASHpart] = ACTIONS(5205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddpart] = ACTIONS(5205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHchapter] = ACTIONS(5205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddchap] = ACTIONS(5205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsection] = ACTIONS(5205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddsec] = ACTIONS(5205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHparagraph] = ACTIONS(5205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHitem] = ACTIONS(5205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASHbegin] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), + [anon_sym_BSLASHiffalse] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_RBRACK] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_BSLASHpart] = ACTIONS(5065), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddpart] = ACTIONS(5065), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), + [anon_sym_BSLASHchapter] = ACTIONS(5065), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddchap] = ACTIONS(5065), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsection] = ACTIONS(5065), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddsec] = ACTIONS(5065), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubsection] = ACTIONS(5065), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHparagraph] = ACTIONS(5065), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), + [anon_sym_BSLASHitem] = ACTIONS(5065), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5063), + [sym_word] = ACTIONS(5065), + [sym_placeholder] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_CARET] = ACTIONS(5065), + [anon_sym__] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_COLON] = ACTIONS(5065), + [anon_sym_SQUOTE] = ACTIONS(5065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), + [anon_sym_DOLLAR] = ACTIONS(5065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5063), + [anon_sym_BSLASHbegin] = ACTIONS(5065), + [anon_sym_BSLASHusepackage] = ACTIONS(5065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), + [anon_sym_BSLASHinclude] = ACTIONS(5065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), + [anon_sym_BSLASHinput] = ACTIONS(5065), + [anon_sym_BSLASHsubfile] = ACTIONS(5065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), + [anon_sym_BSLASHbibliography] = ACTIONS(5065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), + [anon_sym_BSLASHincludesvg] = ACTIONS(5065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), + [anon_sym_BSLASHimport] = ACTIONS(5065), + [anon_sym_BSLASHsubimport] = ACTIONS(5065), + [anon_sym_BSLASHinputfrom] = ACTIONS(5065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), + [anon_sym_BSLASHincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHcaption] = ACTIONS(5065), + [anon_sym_BSLASHcite] = ACTIONS(5065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCite] = ACTIONS(5065), + [anon_sym_BSLASHnocite] = ACTIONS(5065), + [anon_sym_BSLASHcitet] = ACTIONS(5065), + [anon_sym_BSLASHcitep] = ACTIONS(5065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteauthor] = ACTIONS(5065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitetitle] = ACTIONS(5065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteyear] = ACTIONS(5065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitedate] = ACTIONS(5065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteurl] = ACTIONS(5065), + [anon_sym_BSLASHfullcite] = ACTIONS(5065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), + [anon_sym_BSLASHcitealt] = ACTIONS(5065), + [anon_sym_BSLASHcitealp] = ACTIONS(5065), + [anon_sym_BSLASHcitetext] = ACTIONS(5065), + [anon_sym_BSLASHparencite] = ACTIONS(5065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHParencite] = ACTIONS(5065), + [anon_sym_BSLASHfootcite] = ACTIONS(5065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), + [anon_sym_BSLASHtextcite] = ACTIONS(5065), + [anon_sym_BSLASHTextcite] = ACTIONS(5065), + [anon_sym_BSLASHsmartcite] = ACTIONS(5065), + [anon_sym_BSLASHSmartcite] = ACTIONS(5065), + [anon_sym_BSLASHsupercite] = ACTIONS(5065), + [anon_sym_BSLASHautocite] = ACTIONS(5065), + [anon_sym_BSLASHAutocite] = ACTIONS(5065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHvolcite] = ACTIONS(5065), + [anon_sym_BSLASHVolcite] = ACTIONS(5065), + [anon_sym_BSLASHpvolcite] = ACTIONS(5065), + [anon_sym_BSLASHPvolcite] = ACTIONS(5065), + [anon_sym_BSLASHfvolcite] = ACTIONS(5065), + [anon_sym_BSLASHftvolcite] = ACTIONS(5065), + [anon_sym_BSLASHsvolcite] = ACTIONS(5065), + [anon_sym_BSLASHSvolcite] = ACTIONS(5065), + [anon_sym_BSLASHtvolcite] = ACTIONS(5065), + [anon_sym_BSLASHTvolcite] = ACTIONS(5065), + [anon_sym_BSLASHavolcite] = ACTIONS(5065), + [anon_sym_BSLASHAvolcite] = ACTIONS(5065), + [anon_sym_BSLASHnotecite] = ACTIONS(5065), + [anon_sym_BSLASHNotecite] = ACTIONS(5065), + [anon_sym_BSLASHpnotecite] = ACTIONS(5065), + [anon_sym_BSLASHPnotecite] = ACTIONS(5065), + [anon_sym_BSLASHfnotecite] = ACTIONS(5065), + [anon_sym_BSLASHlabel] = ACTIONS(5065), + [anon_sym_BSLASHref] = ACTIONS(5065), + [anon_sym_BSLASHeqref] = ACTIONS(5065), + [anon_sym_BSLASHvref] = ACTIONS(5065), + [anon_sym_BSLASHVref] = ACTIONS(5065), + [anon_sym_BSLASHautoref] = ACTIONS(5065), + [anon_sym_BSLASHpageref] = ACTIONS(5065), + [anon_sym_BSLASHcref] = ACTIONS(5065), + [anon_sym_BSLASHCref] = ACTIONS(5065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnameCref] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHlabelcref] = ACTIONS(5065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCrefrange] = ACTIONS(5065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnewlabel] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), + [anon_sym_BSLASHdef] = ACTIONS(5065), + [anon_sym_BSLASHlet] = ACTIONS(5065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), + [anon_sym_BSLASHgls] = ACTIONS(5065), + [anon_sym_BSLASHGls] = ACTIONS(5065), + [anon_sym_BSLASHGLS] = ACTIONS(5065), + [anon_sym_BSLASHglspl] = ACTIONS(5065), + [anon_sym_BSLASHGlspl] = ACTIONS(5065), + [anon_sym_BSLASHGLSpl] = ACTIONS(5065), + [anon_sym_BSLASHglsdisp] = ACTIONS(5065), + [anon_sym_BSLASHglslink] = ACTIONS(5065), + [anon_sym_BSLASHglstext] = ACTIONS(5065), + [anon_sym_BSLASHGlstext] = ACTIONS(5065), + [anon_sym_BSLASHGLStext] = ACTIONS(5065), + [anon_sym_BSLASHglsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), + [anon_sym_BSLASHglsplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSplural] = ACTIONS(5065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHglsname] = ACTIONS(5065), + [anon_sym_BSLASHGlsname] = ACTIONS(5065), + [anon_sym_BSLASHGLSname] = ACTIONS(5065), + [anon_sym_BSLASHglssymbol] = ACTIONS(5065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), + [anon_sym_BSLASHglsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), + [anon_sym_BSLASHglsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), + [anon_sym_BSLASHglsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), + [anon_sym_BSLASHglsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), + [anon_sym_BSLASHglsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), + [anon_sym_BSLASHnewacronym] = ACTIONS(5065), + [anon_sym_BSLASHacrshort] = ACTIONS(5065), + [anon_sym_BSLASHAcrshort] = ACTIONS(5065), + [anon_sym_BSLASHACRshort] = ACTIONS(5065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), + [anon_sym_BSLASHacrlong] = ACTIONS(5065), + [anon_sym_BSLASHAcrlong] = ACTIONS(5065), + [anon_sym_BSLASHACRlong] = ACTIONS(5065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), + [anon_sym_BSLASHacrfull] = ACTIONS(5065), + [anon_sym_BSLASHAcrfull] = ACTIONS(5065), + [anon_sym_BSLASHACRfull] = ACTIONS(5065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), + [anon_sym_BSLASHacs] = ACTIONS(5065), + [anon_sym_BSLASHAcs] = ACTIONS(5065), + [anon_sym_BSLASHacsp] = ACTIONS(5065), + [anon_sym_BSLASHAcsp] = ACTIONS(5065), + [anon_sym_BSLASHacl] = ACTIONS(5065), + [anon_sym_BSLASHAcl] = ACTIONS(5065), + [anon_sym_BSLASHaclp] = ACTIONS(5065), + [anon_sym_BSLASHAclp] = ACTIONS(5065), + [anon_sym_BSLASHacf] = ACTIONS(5065), + [anon_sym_BSLASHAcf] = ACTIONS(5065), + [anon_sym_BSLASHacfp] = ACTIONS(5065), + [anon_sym_BSLASHAcfp] = ACTIONS(5065), + [anon_sym_BSLASHac] = ACTIONS(5065), + [anon_sym_BSLASHAc] = ACTIONS(5065), + [anon_sym_BSLASHacp] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), + [anon_sym_BSLASHcolor] = ACTIONS(5065), + [anon_sym_BSLASHcolorbox] = ACTIONS(5065), + [anon_sym_BSLASHtextcolor] = ACTIONS(5065), + [anon_sym_BSLASHpagecolor] = ACTIONS(5065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHtext] = ACTIONS(5065), + [anon_sym_BSLASHintertext] = ACTIONS(5065), + [anon_sym_shortintertext] = ACTIONS(5065), }, - [1082] = { - [sym_command_name] = ACTIONS(5201), + [914] = { + [sym_command_name] = ACTIONS(5301), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5301), + [anon_sym_LPAREN] = ACTIONS(5299), + [anon_sym_RPAREN] = ACTIONS(5299), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym_RBRACK] = ACTIONS(5299), + [anon_sym_COMMA] = ACTIONS(5299), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_BSLASHpart] = ACTIONS(5301), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddpart] = ACTIONS(5301), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5299), + [anon_sym_BSLASHchapter] = ACTIONS(5301), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddchap] = ACTIONS(5301), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsection] = ACTIONS(5301), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddsec] = ACTIONS(5301), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubsection] = ACTIONS(5301), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5301), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHparagraph] = ACTIONS(5301), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5301), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5299), + [anon_sym_BSLASHitem] = ACTIONS(5301), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5299), + [anon_sym_LBRACE] = ACTIONS(5299), + [sym_word] = ACTIONS(5301), + [sym_placeholder] = ACTIONS(5299), + [anon_sym_PLUS] = ACTIONS(5301), + [anon_sym_DASH] = ACTIONS(5301), + [anon_sym_STAR] = ACTIONS(5301), + [anon_sym_SLASH] = ACTIONS(5301), + [anon_sym_CARET] = ACTIONS(5301), + [anon_sym__] = ACTIONS(5301), + [anon_sym_LT] = ACTIONS(5301), + [anon_sym_GT] = ACTIONS(5301), + [anon_sym_BANG] = ACTIONS(5301), + [anon_sym_PIPE] = ACTIONS(5301), + [anon_sym_COLON] = ACTIONS(5301), + [anon_sym_SQUOTE] = ACTIONS(5301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), + [anon_sym_DOLLAR] = ACTIONS(5301), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5299), + [anon_sym_BSLASHbegin] = ACTIONS(5301), + [anon_sym_BSLASHusepackage] = ACTIONS(5301), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), + [anon_sym_BSLASHinclude] = ACTIONS(5301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), + [anon_sym_BSLASHinput] = ACTIONS(5301), + [anon_sym_BSLASHsubfile] = ACTIONS(5301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), + [anon_sym_BSLASHbibliography] = ACTIONS(5301), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), + [anon_sym_BSLASHincludesvg] = ACTIONS(5301), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), + [anon_sym_BSLASHimport] = ACTIONS(5301), + [anon_sym_BSLASHsubimport] = ACTIONS(5301), + [anon_sym_BSLASHinputfrom] = ACTIONS(5301), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), + [anon_sym_BSLASHincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHcaption] = ACTIONS(5301), + [anon_sym_BSLASHcite] = ACTIONS(5301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCite] = ACTIONS(5301), + [anon_sym_BSLASHnocite] = ACTIONS(5301), + [anon_sym_BSLASHcitet] = ACTIONS(5301), + [anon_sym_BSLASHcitep] = ACTIONS(5301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteauthor] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitetitle] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteyear] = ACTIONS(5301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitedate] = ACTIONS(5301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteurl] = ACTIONS(5301), + [anon_sym_BSLASHfullcite] = ACTIONS(5301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), + [anon_sym_BSLASHcitealt] = ACTIONS(5301), + [anon_sym_BSLASHcitealp] = ACTIONS(5301), + [anon_sym_BSLASHcitetext] = ACTIONS(5301), + [anon_sym_BSLASHparencite] = ACTIONS(5301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHParencite] = ACTIONS(5301), + [anon_sym_BSLASHfootcite] = ACTIONS(5301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), + [anon_sym_BSLASHtextcite] = ACTIONS(5301), + [anon_sym_BSLASHTextcite] = ACTIONS(5301), + [anon_sym_BSLASHsmartcite] = ACTIONS(5301), + [anon_sym_BSLASHSmartcite] = ACTIONS(5301), + [anon_sym_BSLASHsupercite] = ACTIONS(5301), + [anon_sym_BSLASHautocite] = ACTIONS(5301), + [anon_sym_BSLASHAutocite] = ACTIONS(5301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHvolcite] = ACTIONS(5301), + [anon_sym_BSLASHVolcite] = ACTIONS(5301), + [anon_sym_BSLASHpvolcite] = ACTIONS(5301), + [anon_sym_BSLASHPvolcite] = ACTIONS(5301), + [anon_sym_BSLASHfvolcite] = ACTIONS(5301), + [anon_sym_BSLASHftvolcite] = ACTIONS(5301), + [anon_sym_BSLASHsvolcite] = ACTIONS(5301), + [anon_sym_BSLASHSvolcite] = ACTIONS(5301), + [anon_sym_BSLASHtvolcite] = ACTIONS(5301), + [anon_sym_BSLASHTvolcite] = ACTIONS(5301), + [anon_sym_BSLASHavolcite] = ACTIONS(5301), + [anon_sym_BSLASHAvolcite] = ACTIONS(5301), + [anon_sym_BSLASHnotecite] = ACTIONS(5301), + [anon_sym_BSLASHNotecite] = ACTIONS(5301), + [anon_sym_BSLASHpnotecite] = ACTIONS(5301), + [anon_sym_BSLASHPnotecite] = ACTIONS(5301), + [anon_sym_BSLASHfnotecite] = ACTIONS(5301), + [anon_sym_BSLASHlabel] = ACTIONS(5301), + [anon_sym_BSLASHref] = ACTIONS(5301), + [anon_sym_BSLASHeqref] = ACTIONS(5301), + [anon_sym_BSLASHvref] = ACTIONS(5301), + [anon_sym_BSLASHVref] = ACTIONS(5301), + [anon_sym_BSLASHautoref] = ACTIONS(5301), + [anon_sym_BSLASHpageref] = ACTIONS(5301), + [anon_sym_BSLASHcref] = ACTIONS(5301), + [anon_sym_BSLASHCref] = ACTIONS(5301), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnameCref] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHlabelcref] = ACTIONS(5301), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCrefrange] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnewlabel] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), + [anon_sym_BSLASHdef] = ACTIONS(5301), + [anon_sym_BSLASHlet] = ACTIONS(5301), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), + [anon_sym_BSLASHgls] = ACTIONS(5301), + [anon_sym_BSLASHGls] = ACTIONS(5301), + [anon_sym_BSLASHGLS] = ACTIONS(5301), + [anon_sym_BSLASHglspl] = ACTIONS(5301), + [anon_sym_BSLASHGlspl] = ACTIONS(5301), + [anon_sym_BSLASHGLSpl] = ACTIONS(5301), + [anon_sym_BSLASHglsdisp] = ACTIONS(5301), + [anon_sym_BSLASHglslink] = ACTIONS(5301), + [anon_sym_BSLASHglstext] = ACTIONS(5301), + [anon_sym_BSLASHGlstext] = ACTIONS(5301), + [anon_sym_BSLASHGLStext] = ACTIONS(5301), + [anon_sym_BSLASHglsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), + [anon_sym_BSLASHglsplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSplural] = ACTIONS(5301), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHglsname] = ACTIONS(5301), + [anon_sym_BSLASHGlsname] = ACTIONS(5301), + [anon_sym_BSLASHGLSname] = ACTIONS(5301), + [anon_sym_BSLASHglssymbol] = ACTIONS(5301), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), + [anon_sym_BSLASHglsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), + [anon_sym_BSLASHglsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), + [anon_sym_BSLASHglsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), + [anon_sym_BSLASHglsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), + [anon_sym_BSLASHglsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), + [anon_sym_BSLASHnewacronym] = ACTIONS(5301), + [anon_sym_BSLASHacrshort] = ACTIONS(5301), + [anon_sym_BSLASHAcrshort] = ACTIONS(5301), + [anon_sym_BSLASHACRshort] = ACTIONS(5301), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), + [anon_sym_BSLASHacrlong] = ACTIONS(5301), + [anon_sym_BSLASHAcrlong] = ACTIONS(5301), + [anon_sym_BSLASHACRlong] = ACTIONS(5301), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), + [anon_sym_BSLASHacrfull] = ACTIONS(5301), + [anon_sym_BSLASHAcrfull] = ACTIONS(5301), + [anon_sym_BSLASHACRfull] = ACTIONS(5301), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), + [anon_sym_BSLASHacs] = ACTIONS(5301), + [anon_sym_BSLASHAcs] = ACTIONS(5301), + [anon_sym_BSLASHacsp] = ACTIONS(5301), + [anon_sym_BSLASHAcsp] = ACTIONS(5301), + [anon_sym_BSLASHacl] = ACTIONS(5301), + [anon_sym_BSLASHAcl] = ACTIONS(5301), + [anon_sym_BSLASHaclp] = ACTIONS(5301), + [anon_sym_BSLASHAclp] = ACTIONS(5301), + [anon_sym_BSLASHacf] = ACTIONS(5301), + [anon_sym_BSLASHAcf] = ACTIONS(5301), + [anon_sym_BSLASHacfp] = ACTIONS(5301), + [anon_sym_BSLASHAcfp] = ACTIONS(5301), + [anon_sym_BSLASHac] = ACTIONS(5301), + [anon_sym_BSLASHAc] = ACTIONS(5301), + [anon_sym_BSLASHacp] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), + [anon_sym_BSLASHcolor] = ACTIONS(5301), + [anon_sym_BSLASHcolorbox] = ACTIONS(5301), + [anon_sym_BSLASHtextcolor] = ACTIONS(5301), + [anon_sym_BSLASHpagecolor] = ACTIONS(5301), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), + [anon_sym_BSLASHtext] = ACTIONS(5301), + [anon_sym_BSLASHintertext] = ACTIONS(5301), + [anon_sym_shortintertext] = ACTIONS(5301), + }, + [915] = { + [sym_command_name] = ACTIONS(5297), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5297), + [anon_sym_LPAREN] = ACTIONS(5295), + [anon_sym_RPAREN] = ACTIONS(5295), + [anon_sym_LBRACK] = ACTIONS(5295), + [anon_sym_RBRACK] = ACTIONS(5295), + [anon_sym_COMMA] = ACTIONS(5295), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_BSLASHpart] = ACTIONS(5297), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddpart] = ACTIONS(5297), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5295), + [anon_sym_BSLASHchapter] = ACTIONS(5297), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddchap] = ACTIONS(5297), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsection] = ACTIONS(5297), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddsec] = ACTIONS(5297), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubsection] = ACTIONS(5297), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5297), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHparagraph] = ACTIONS(5297), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5297), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5295), + [anon_sym_BSLASHitem] = ACTIONS(5297), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5295), + [anon_sym_LBRACE] = ACTIONS(5295), + [sym_word] = ACTIONS(5297), + [sym_placeholder] = ACTIONS(5295), + [anon_sym_PLUS] = ACTIONS(5297), + [anon_sym_DASH] = ACTIONS(5297), + [anon_sym_STAR] = ACTIONS(5297), + [anon_sym_SLASH] = ACTIONS(5297), + [anon_sym_CARET] = ACTIONS(5297), + [anon_sym__] = ACTIONS(5297), + [anon_sym_LT] = ACTIONS(5297), + [anon_sym_GT] = ACTIONS(5297), + [anon_sym_BANG] = ACTIONS(5297), + [anon_sym_PIPE] = ACTIONS(5297), + [anon_sym_COLON] = ACTIONS(5297), + [anon_sym_SQUOTE] = ACTIONS(5297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), + [anon_sym_DOLLAR] = ACTIONS(5297), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5295), + [anon_sym_BSLASHbegin] = ACTIONS(5297), + [anon_sym_BSLASHusepackage] = ACTIONS(5297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), + [anon_sym_BSLASHinclude] = ACTIONS(5297), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), + [anon_sym_BSLASHinput] = ACTIONS(5297), + [anon_sym_BSLASHsubfile] = ACTIONS(5297), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), + [anon_sym_BSLASHbibliography] = ACTIONS(5297), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), + [anon_sym_BSLASHincludesvg] = ACTIONS(5297), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), + [anon_sym_BSLASHimport] = ACTIONS(5297), + [anon_sym_BSLASHsubimport] = ACTIONS(5297), + [anon_sym_BSLASHinputfrom] = ACTIONS(5297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), + [anon_sym_BSLASHincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHcaption] = ACTIONS(5297), + [anon_sym_BSLASHcite] = ACTIONS(5297), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCite] = ACTIONS(5297), + [anon_sym_BSLASHnocite] = ACTIONS(5297), + [anon_sym_BSLASHcitet] = ACTIONS(5297), + [anon_sym_BSLASHcitep] = ACTIONS(5297), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteauthor] = ACTIONS(5297), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitetitle] = ACTIONS(5297), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteyear] = ACTIONS(5297), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitedate] = ACTIONS(5297), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteurl] = ACTIONS(5297), + [anon_sym_BSLASHfullcite] = ACTIONS(5297), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), + [anon_sym_BSLASHcitealt] = ACTIONS(5297), + [anon_sym_BSLASHcitealp] = ACTIONS(5297), + [anon_sym_BSLASHcitetext] = ACTIONS(5297), + [anon_sym_BSLASHparencite] = ACTIONS(5297), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHParencite] = ACTIONS(5297), + [anon_sym_BSLASHfootcite] = ACTIONS(5297), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), + [anon_sym_BSLASHtextcite] = ACTIONS(5297), + [anon_sym_BSLASHTextcite] = ACTIONS(5297), + [anon_sym_BSLASHsmartcite] = ACTIONS(5297), + [anon_sym_BSLASHSmartcite] = ACTIONS(5297), + [anon_sym_BSLASHsupercite] = ACTIONS(5297), + [anon_sym_BSLASHautocite] = ACTIONS(5297), + [anon_sym_BSLASHAutocite] = ACTIONS(5297), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHvolcite] = ACTIONS(5297), + [anon_sym_BSLASHVolcite] = ACTIONS(5297), + [anon_sym_BSLASHpvolcite] = ACTIONS(5297), + [anon_sym_BSLASHPvolcite] = ACTIONS(5297), + [anon_sym_BSLASHfvolcite] = ACTIONS(5297), + [anon_sym_BSLASHftvolcite] = ACTIONS(5297), + [anon_sym_BSLASHsvolcite] = ACTIONS(5297), + [anon_sym_BSLASHSvolcite] = ACTIONS(5297), + [anon_sym_BSLASHtvolcite] = ACTIONS(5297), + [anon_sym_BSLASHTvolcite] = ACTIONS(5297), + [anon_sym_BSLASHavolcite] = ACTIONS(5297), + [anon_sym_BSLASHAvolcite] = ACTIONS(5297), + [anon_sym_BSLASHnotecite] = ACTIONS(5297), + [anon_sym_BSLASHNotecite] = ACTIONS(5297), + [anon_sym_BSLASHpnotecite] = ACTIONS(5297), + [anon_sym_BSLASHPnotecite] = ACTIONS(5297), + [anon_sym_BSLASHfnotecite] = ACTIONS(5297), + [anon_sym_BSLASHlabel] = ACTIONS(5297), + [anon_sym_BSLASHref] = ACTIONS(5297), + [anon_sym_BSLASHeqref] = ACTIONS(5297), + [anon_sym_BSLASHvref] = ACTIONS(5297), + [anon_sym_BSLASHVref] = ACTIONS(5297), + [anon_sym_BSLASHautoref] = ACTIONS(5297), + [anon_sym_BSLASHpageref] = ACTIONS(5297), + [anon_sym_BSLASHcref] = ACTIONS(5297), + [anon_sym_BSLASHCref] = ACTIONS(5297), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnameCref] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHlabelcref] = ACTIONS(5297), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCrefrange] = ACTIONS(5297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnewlabel] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), + [anon_sym_BSLASHdef] = ACTIONS(5297), + [anon_sym_BSLASHlet] = ACTIONS(5297), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), + [anon_sym_BSLASHgls] = ACTIONS(5297), + [anon_sym_BSLASHGls] = ACTIONS(5297), + [anon_sym_BSLASHGLS] = ACTIONS(5297), + [anon_sym_BSLASHglspl] = ACTIONS(5297), + [anon_sym_BSLASHGlspl] = ACTIONS(5297), + [anon_sym_BSLASHGLSpl] = ACTIONS(5297), + [anon_sym_BSLASHglsdisp] = ACTIONS(5297), + [anon_sym_BSLASHglslink] = ACTIONS(5297), + [anon_sym_BSLASHglstext] = ACTIONS(5297), + [anon_sym_BSLASHGlstext] = ACTIONS(5297), + [anon_sym_BSLASHGLStext] = ACTIONS(5297), + [anon_sym_BSLASHglsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), + [anon_sym_BSLASHglsplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSplural] = ACTIONS(5297), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHglsname] = ACTIONS(5297), + [anon_sym_BSLASHGlsname] = ACTIONS(5297), + [anon_sym_BSLASHGLSname] = ACTIONS(5297), + [anon_sym_BSLASHglssymbol] = ACTIONS(5297), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), + [anon_sym_BSLASHglsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), + [anon_sym_BSLASHglsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), + [anon_sym_BSLASHglsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), + [anon_sym_BSLASHglsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), + [anon_sym_BSLASHglsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), + [anon_sym_BSLASHnewacronym] = ACTIONS(5297), + [anon_sym_BSLASHacrshort] = ACTIONS(5297), + [anon_sym_BSLASHAcrshort] = ACTIONS(5297), + [anon_sym_BSLASHACRshort] = ACTIONS(5297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), + [anon_sym_BSLASHacrlong] = ACTIONS(5297), + [anon_sym_BSLASHAcrlong] = ACTIONS(5297), + [anon_sym_BSLASHACRlong] = ACTIONS(5297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), + [anon_sym_BSLASHacrfull] = ACTIONS(5297), + [anon_sym_BSLASHAcrfull] = ACTIONS(5297), + [anon_sym_BSLASHACRfull] = ACTIONS(5297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), + [anon_sym_BSLASHacs] = ACTIONS(5297), + [anon_sym_BSLASHAcs] = ACTIONS(5297), + [anon_sym_BSLASHacsp] = ACTIONS(5297), + [anon_sym_BSLASHAcsp] = ACTIONS(5297), + [anon_sym_BSLASHacl] = ACTIONS(5297), + [anon_sym_BSLASHAcl] = ACTIONS(5297), + [anon_sym_BSLASHaclp] = ACTIONS(5297), + [anon_sym_BSLASHAclp] = ACTIONS(5297), + [anon_sym_BSLASHacf] = ACTIONS(5297), + [anon_sym_BSLASHAcf] = ACTIONS(5297), + [anon_sym_BSLASHacfp] = ACTIONS(5297), + [anon_sym_BSLASHAcfp] = ACTIONS(5297), + [anon_sym_BSLASHac] = ACTIONS(5297), + [anon_sym_BSLASHAc] = ACTIONS(5297), + [anon_sym_BSLASHacp] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), + [anon_sym_BSLASHcolor] = ACTIONS(5297), + [anon_sym_BSLASHcolorbox] = ACTIONS(5297), + [anon_sym_BSLASHtextcolor] = ACTIONS(5297), + [anon_sym_BSLASHpagecolor] = ACTIONS(5297), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), + [anon_sym_BSLASHtext] = ACTIONS(5297), + [anon_sym_BSLASHintertext] = ACTIONS(5297), + [anon_sym_shortintertext] = ACTIONS(5297), + }, + [916] = { + [sym_command_name] = ACTIONS(5013), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5013), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_RBRACK] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_BSLASHpart] = ACTIONS(5013), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddpart] = ACTIONS(5013), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5011), + [anon_sym_BSLASHchapter] = ACTIONS(5013), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddchap] = ACTIONS(5013), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsection] = ACTIONS(5013), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddsec] = ACTIONS(5013), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubsection] = ACTIONS(5013), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5013), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHparagraph] = ACTIONS(5013), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5013), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5011), + [anon_sym_BSLASHitem] = ACTIONS(5013), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5011), + [anon_sym_LBRACE] = ACTIONS(5011), + [sym_word] = ACTIONS(5013), + [sym_placeholder] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5013), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_CARET] = ACTIONS(5013), + [anon_sym__] = ACTIONS(5013), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_PIPE] = ACTIONS(5013), + [anon_sym_COLON] = ACTIONS(5013), + [anon_sym_SQUOTE] = ACTIONS(5013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), + [anon_sym_DOLLAR] = ACTIONS(5013), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), + [anon_sym_BSLASHbegin] = ACTIONS(5013), + [anon_sym_BSLASHusepackage] = ACTIONS(5013), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), + [anon_sym_BSLASHinclude] = ACTIONS(5013), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), + [anon_sym_BSLASHinput] = ACTIONS(5013), + [anon_sym_BSLASHsubfile] = ACTIONS(5013), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), + [anon_sym_BSLASHbibliography] = ACTIONS(5013), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), + [anon_sym_BSLASHincludesvg] = ACTIONS(5013), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), + [anon_sym_BSLASHimport] = ACTIONS(5013), + [anon_sym_BSLASHsubimport] = ACTIONS(5013), + [anon_sym_BSLASHinputfrom] = ACTIONS(5013), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), + [anon_sym_BSLASHincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHcaption] = ACTIONS(5013), + [anon_sym_BSLASHcite] = ACTIONS(5013), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCite] = ACTIONS(5013), + [anon_sym_BSLASHnocite] = ACTIONS(5013), + [anon_sym_BSLASHcitet] = ACTIONS(5013), + [anon_sym_BSLASHcitep] = ACTIONS(5013), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteauthor] = ACTIONS(5013), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitetitle] = ACTIONS(5013), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteyear] = ACTIONS(5013), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitedate] = ACTIONS(5013), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteurl] = ACTIONS(5013), + [anon_sym_BSLASHfullcite] = ACTIONS(5013), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), + [anon_sym_BSLASHcitealt] = ACTIONS(5013), + [anon_sym_BSLASHcitealp] = ACTIONS(5013), + [anon_sym_BSLASHcitetext] = ACTIONS(5013), + [anon_sym_BSLASHparencite] = ACTIONS(5013), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHParencite] = ACTIONS(5013), + [anon_sym_BSLASHfootcite] = ACTIONS(5013), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), + [anon_sym_BSLASHtextcite] = ACTIONS(5013), + [anon_sym_BSLASHTextcite] = ACTIONS(5013), + [anon_sym_BSLASHsmartcite] = ACTIONS(5013), + [anon_sym_BSLASHSmartcite] = ACTIONS(5013), + [anon_sym_BSLASHsupercite] = ACTIONS(5013), + [anon_sym_BSLASHautocite] = ACTIONS(5013), + [anon_sym_BSLASHAutocite] = ACTIONS(5013), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHvolcite] = ACTIONS(5013), + [anon_sym_BSLASHVolcite] = ACTIONS(5013), + [anon_sym_BSLASHpvolcite] = ACTIONS(5013), + [anon_sym_BSLASHPvolcite] = ACTIONS(5013), + [anon_sym_BSLASHfvolcite] = ACTIONS(5013), + [anon_sym_BSLASHftvolcite] = ACTIONS(5013), + [anon_sym_BSLASHsvolcite] = ACTIONS(5013), + [anon_sym_BSLASHSvolcite] = ACTIONS(5013), + [anon_sym_BSLASHtvolcite] = ACTIONS(5013), + [anon_sym_BSLASHTvolcite] = ACTIONS(5013), + [anon_sym_BSLASHavolcite] = ACTIONS(5013), + [anon_sym_BSLASHAvolcite] = ACTIONS(5013), + [anon_sym_BSLASHnotecite] = ACTIONS(5013), + [anon_sym_BSLASHNotecite] = ACTIONS(5013), + [anon_sym_BSLASHpnotecite] = ACTIONS(5013), + [anon_sym_BSLASHPnotecite] = ACTIONS(5013), + [anon_sym_BSLASHfnotecite] = ACTIONS(5013), + [anon_sym_BSLASHlabel] = ACTIONS(5013), + [anon_sym_BSLASHref] = ACTIONS(5013), + [anon_sym_BSLASHeqref] = ACTIONS(5013), + [anon_sym_BSLASHvref] = ACTIONS(5013), + [anon_sym_BSLASHVref] = ACTIONS(5013), + [anon_sym_BSLASHautoref] = ACTIONS(5013), + [anon_sym_BSLASHpageref] = ACTIONS(5013), + [anon_sym_BSLASHcref] = ACTIONS(5013), + [anon_sym_BSLASHCref] = ACTIONS(5013), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnameCref] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHlabelcref] = ACTIONS(5013), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCrefrange] = ACTIONS(5013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnewlabel] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), + [anon_sym_BSLASHdef] = ACTIONS(5013), + [anon_sym_BSLASHlet] = ACTIONS(5013), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), + [anon_sym_BSLASHgls] = ACTIONS(5013), + [anon_sym_BSLASHGls] = ACTIONS(5013), + [anon_sym_BSLASHGLS] = ACTIONS(5013), + [anon_sym_BSLASHglspl] = ACTIONS(5013), + [anon_sym_BSLASHGlspl] = ACTIONS(5013), + [anon_sym_BSLASHGLSpl] = ACTIONS(5013), + [anon_sym_BSLASHglsdisp] = ACTIONS(5013), + [anon_sym_BSLASHglslink] = ACTIONS(5013), + [anon_sym_BSLASHglstext] = ACTIONS(5013), + [anon_sym_BSLASHGlstext] = ACTIONS(5013), + [anon_sym_BSLASHGLStext] = ACTIONS(5013), + [anon_sym_BSLASHglsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), + [anon_sym_BSLASHglsplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSplural] = ACTIONS(5013), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHglsname] = ACTIONS(5013), + [anon_sym_BSLASHGlsname] = ACTIONS(5013), + [anon_sym_BSLASHGLSname] = ACTIONS(5013), + [anon_sym_BSLASHglssymbol] = ACTIONS(5013), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), + [anon_sym_BSLASHglsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), + [anon_sym_BSLASHglsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), + [anon_sym_BSLASHglsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), + [anon_sym_BSLASHglsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), + [anon_sym_BSLASHglsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), + [anon_sym_BSLASHnewacronym] = ACTIONS(5013), + [anon_sym_BSLASHacrshort] = ACTIONS(5013), + [anon_sym_BSLASHAcrshort] = ACTIONS(5013), + [anon_sym_BSLASHACRshort] = ACTIONS(5013), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), + [anon_sym_BSLASHacrlong] = ACTIONS(5013), + [anon_sym_BSLASHAcrlong] = ACTIONS(5013), + [anon_sym_BSLASHACRlong] = ACTIONS(5013), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), + [anon_sym_BSLASHacrfull] = ACTIONS(5013), + [anon_sym_BSLASHAcrfull] = ACTIONS(5013), + [anon_sym_BSLASHACRfull] = ACTIONS(5013), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), + [anon_sym_BSLASHacs] = ACTIONS(5013), + [anon_sym_BSLASHAcs] = ACTIONS(5013), + [anon_sym_BSLASHacsp] = ACTIONS(5013), + [anon_sym_BSLASHAcsp] = ACTIONS(5013), + [anon_sym_BSLASHacl] = ACTIONS(5013), + [anon_sym_BSLASHAcl] = ACTIONS(5013), + [anon_sym_BSLASHaclp] = ACTIONS(5013), + [anon_sym_BSLASHAclp] = ACTIONS(5013), + [anon_sym_BSLASHacf] = ACTIONS(5013), + [anon_sym_BSLASHAcf] = ACTIONS(5013), + [anon_sym_BSLASHacfp] = ACTIONS(5013), + [anon_sym_BSLASHAcfp] = ACTIONS(5013), + [anon_sym_BSLASHac] = ACTIONS(5013), + [anon_sym_BSLASHAc] = ACTIONS(5013), + [anon_sym_BSLASHacp] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), + [anon_sym_BSLASHcolor] = ACTIONS(5013), + [anon_sym_BSLASHcolorbox] = ACTIONS(5013), + [anon_sym_BSLASHtextcolor] = ACTIONS(5013), + [anon_sym_BSLASHpagecolor] = ACTIONS(5013), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), + [anon_sym_BSLASHtext] = ACTIONS(5013), + [anon_sym_BSLASHintertext] = ACTIONS(5013), + [anon_sym_shortintertext] = ACTIONS(5013), + }, + [917] = { + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_LPAREN] = ACTIONS(5291), + [anon_sym_RPAREN] = ACTIONS(5291), + [anon_sym_LBRACK] = ACTIONS(5291), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_BSLASHpart] = ACTIONS(5293), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddpart] = ACTIONS(5293), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5291), + [anon_sym_BSLASHchapter] = ACTIONS(5293), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddchap] = ACTIONS(5293), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsection] = ACTIONS(5293), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddsec] = ACTIONS(5293), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHparagraph] = ACTIONS(5293), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5293), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHitem] = ACTIONS(5293), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5291), + [anon_sym_DOLLAR] = ACTIONS(5293), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5291), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5291), + [anon_sym_BSLASHbegin] = ACTIONS(5293), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + [anon_sym_BSLASHtext] = ACTIONS(5293), + [anon_sym_BSLASHintertext] = ACTIONS(5293), + [anon_sym_shortintertext] = ACTIONS(5293), + }, + [918] = { + [sym_command_name] = ACTIONS(5289), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5289), + [anon_sym_LPAREN] = ACTIONS(5287), + [anon_sym_RPAREN] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(5287), + [anon_sym_RBRACK] = ACTIONS(5287), + [anon_sym_COMMA] = ACTIONS(5287), + [anon_sym_EQ] = ACTIONS(5287), + [anon_sym_BSLASHpart] = ACTIONS(5289), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddpart] = ACTIONS(5289), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5287), + [anon_sym_BSLASHchapter] = ACTIONS(5289), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddchap] = ACTIONS(5289), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsection] = ACTIONS(5289), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddsec] = ACTIONS(5289), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubsection] = ACTIONS(5289), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5289), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHparagraph] = ACTIONS(5289), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5289), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5287), + [anon_sym_BSLASHitem] = ACTIONS(5289), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5287), + [anon_sym_LBRACE] = ACTIONS(5287), + [sym_word] = ACTIONS(5289), + [sym_placeholder] = ACTIONS(5287), + [anon_sym_PLUS] = ACTIONS(5289), + [anon_sym_DASH] = ACTIONS(5289), + [anon_sym_STAR] = ACTIONS(5289), + [anon_sym_SLASH] = ACTIONS(5289), + [anon_sym_CARET] = ACTIONS(5289), + [anon_sym__] = ACTIONS(5289), + [anon_sym_LT] = ACTIONS(5289), + [anon_sym_GT] = ACTIONS(5289), + [anon_sym_BANG] = ACTIONS(5289), + [anon_sym_PIPE] = ACTIONS(5289), + [anon_sym_COLON] = ACTIONS(5289), + [anon_sym_SQUOTE] = ACTIONS(5289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), + [anon_sym_DOLLAR] = ACTIONS(5289), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5287), + [anon_sym_BSLASHbegin] = ACTIONS(5289), + [anon_sym_BSLASHusepackage] = ACTIONS(5289), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), + [anon_sym_BSLASHinclude] = ACTIONS(5289), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), + [anon_sym_BSLASHinput] = ACTIONS(5289), + [anon_sym_BSLASHsubfile] = ACTIONS(5289), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), + [anon_sym_BSLASHbibliography] = ACTIONS(5289), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), + [anon_sym_BSLASHincludesvg] = ACTIONS(5289), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), + [anon_sym_BSLASHimport] = ACTIONS(5289), + [anon_sym_BSLASHsubimport] = ACTIONS(5289), + [anon_sym_BSLASHinputfrom] = ACTIONS(5289), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), + [anon_sym_BSLASHincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHcaption] = ACTIONS(5289), + [anon_sym_BSLASHcite] = ACTIONS(5289), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCite] = ACTIONS(5289), + [anon_sym_BSLASHnocite] = ACTIONS(5289), + [anon_sym_BSLASHcitet] = ACTIONS(5289), + [anon_sym_BSLASHcitep] = ACTIONS(5289), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteauthor] = ACTIONS(5289), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitetitle] = ACTIONS(5289), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteyear] = ACTIONS(5289), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitedate] = ACTIONS(5289), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteurl] = ACTIONS(5289), + [anon_sym_BSLASHfullcite] = ACTIONS(5289), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), + [anon_sym_BSLASHcitealt] = ACTIONS(5289), + [anon_sym_BSLASHcitealp] = ACTIONS(5289), + [anon_sym_BSLASHcitetext] = ACTIONS(5289), + [anon_sym_BSLASHparencite] = ACTIONS(5289), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHParencite] = ACTIONS(5289), + [anon_sym_BSLASHfootcite] = ACTIONS(5289), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), + [anon_sym_BSLASHtextcite] = ACTIONS(5289), + [anon_sym_BSLASHTextcite] = ACTIONS(5289), + [anon_sym_BSLASHsmartcite] = ACTIONS(5289), + [anon_sym_BSLASHSmartcite] = ACTIONS(5289), + [anon_sym_BSLASHsupercite] = ACTIONS(5289), + [anon_sym_BSLASHautocite] = ACTIONS(5289), + [anon_sym_BSLASHAutocite] = ACTIONS(5289), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHvolcite] = ACTIONS(5289), + [anon_sym_BSLASHVolcite] = ACTIONS(5289), + [anon_sym_BSLASHpvolcite] = ACTIONS(5289), + [anon_sym_BSLASHPvolcite] = ACTIONS(5289), + [anon_sym_BSLASHfvolcite] = ACTIONS(5289), + [anon_sym_BSLASHftvolcite] = ACTIONS(5289), + [anon_sym_BSLASHsvolcite] = ACTIONS(5289), + [anon_sym_BSLASHSvolcite] = ACTIONS(5289), + [anon_sym_BSLASHtvolcite] = ACTIONS(5289), + [anon_sym_BSLASHTvolcite] = ACTIONS(5289), + [anon_sym_BSLASHavolcite] = ACTIONS(5289), + [anon_sym_BSLASHAvolcite] = ACTIONS(5289), + [anon_sym_BSLASHnotecite] = ACTIONS(5289), + [anon_sym_BSLASHNotecite] = ACTIONS(5289), + [anon_sym_BSLASHpnotecite] = ACTIONS(5289), + [anon_sym_BSLASHPnotecite] = ACTIONS(5289), + [anon_sym_BSLASHfnotecite] = ACTIONS(5289), + [anon_sym_BSLASHlabel] = ACTIONS(5289), + [anon_sym_BSLASHref] = ACTIONS(5289), + [anon_sym_BSLASHeqref] = ACTIONS(5289), + [anon_sym_BSLASHvref] = ACTIONS(5289), + [anon_sym_BSLASHVref] = ACTIONS(5289), + [anon_sym_BSLASHautoref] = ACTIONS(5289), + [anon_sym_BSLASHpageref] = ACTIONS(5289), + [anon_sym_BSLASHcref] = ACTIONS(5289), + [anon_sym_BSLASHCref] = ACTIONS(5289), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnameCref] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHlabelcref] = ACTIONS(5289), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCrefrange] = ACTIONS(5289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnewlabel] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), + [anon_sym_BSLASHdef] = ACTIONS(5289), + [anon_sym_BSLASHlet] = ACTIONS(5289), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), + [anon_sym_BSLASHgls] = ACTIONS(5289), + [anon_sym_BSLASHGls] = ACTIONS(5289), + [anon_sym_BSLASHGLS] = ACTIONS(5289), + [anon_sym_BSLASHglspl] = ACTIONS(5289), + [anon_sym_BSLASHGlspl] = ACTIONS(5289), + [anon_sym_BSLASHGLSpl] = ACTIONS(5289), + [anon_sym_BSLASHglsdisp] = ACTIONS(5289), + [anon_sym_BSLASHglslink] = ACTIONS(5289), + [anon_sym_BSLASHglstext] = ACTIONS(5289), + [anon_sym_BSLASHGlstext] = ACTIONS(5289), + [anon_sym_BSLASHGLStext] = ACTIONS(5289), + [anon_sym_BSLASHglsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), + [anon_sym_BSLASHglsplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSplural] = ACTIONS(5289), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHglsname] = ACTIONS(5289), + [anon_sym_BSLASHGlsname] = ACTIONS(5289), + [anon_sym_BSLASHGLSname] = ACTIONS(5289), + [anon_sym_BSLASHglssymbol] = ACTIONS(5289), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), + [anon_sym_BSLASHglsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), + [anon_sym_BSLASHglsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), + [anon_sym_BSLASHglsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), + [anon_sym_BSLASHglsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), + [anon_sym_BSLASHglsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), + [anon_sym_BSLASHnewacronym] = ACTIONS(5289), + [anon_sym_BSLASHacrshort] = ACTIONS(5289), + [anon_sym_BSLASHAcrshort] = ACTIONS(5289), + [anon_sym_BSLASHACRshort] = ACTIONS(5289), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), + [anon_sym_BSLASHacrlong] = ACTIONS(5289), + [anon_sym_BSLASHAcrlong] = ACTIONS(5289), + [anon_sym_BSLASHACRlong] = ACTIONS(5289), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), + [anon_sym_BSLASHacrfull] = ACTIONS(5289), + [anon_sym_BSLASHAcrfull] = ACTIONS(5289), + [anon_sym_BSLASHACRfull] = ACTIONS(5289), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), + [anon_sym_BSLASHacs] = ACTIONS(5289), + [anon_sym_BSLASHAcs] = ACTIONS(5289), + [anon_sym_BSLASHacsp] = ACTIONS(5289), + [anon_sym_BSLASHAcsp] = ACTIONS(5289), + [anon_sym_BSLASHacl] = ACTIONS(5289), + [anon_sym_BSLASHAcl] = ACTIONS(5289), + [anon_sym_BSLASHaclp] = ACTIONS(5289), + [anon_sym_BSLASHAclp] = ACTIONS(5289), + [anon_sym_BSLASHacf] = ACTIONS(5289), + [anon_sym_BSLASHAcf] = ACTIONS(5289), + [anon_sym_BSLASHacfp] = ACTIONS(5289), + [anon_sym_BSLASHAcfp] = ACTIONS(5289), + [anon_sym_BSLASHac] = ACTIONS(5289), + [anon_sym_BSLASHAc] = ACTIONS(5289), + [anon_sym_BSLASHacp] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), + [anon_sym_BSLASHcolor] = ACTIONS(5289), + [anon_sym_BSLASHcolorbox] = ACTIONS(5289), + [anon_sym_BSLASHtextcolor] = ACTIONS(5289), + [anon_sym_BSLASHpagecolor] = ACTIONS(5289), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), + [anon_sym_BSLASHtext] = ACTIONS(5289), + [anon_sym_BSLASHintertext] = ACTIONS(5289), + [anon_sym_shortintertext] = ACTIONS(5289), + }, + [919] = { + [sym_command_name] = ACTIONS(5285), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5285), + [anon_sym_LPAREN] = ACTIONS(5283), + [anon_sym_RPAREN] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(5283), + [anon_sym_RBRACK] = ACTIONS(5283), + [anon_sym_COMMA] = ACTIONS(5283), + [anon_sym_EQ] = ACTIONS(5283), + [anon_sym_BSLASHpart] = ACTIONS(5285), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddpart] = ACTIONS(5285), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5283), + [anon_sym_BSLASHchapter] = ACTIONS(5285), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddchap] = ACTIONS(5285), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsection] = ACTIONS(5285), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddsec] = ACTIONS(5285), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubsection] = ACTIONS(5285), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5285), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHparagraph] = ACTIONS(5285), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5285), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5283), + [anon_sym_BSLASHitem] = ACTIONS(5285), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5283), + [anon_sym_LBRACE] = ACTIONS(5283), + [sym_word] = ACTIONS(5285), + [sym_placeholder] = ACTIONS(5283), + [anon_sym_PLUS] = ACTIONS(5285), + [anon_sym_DASH] = ACTIONS(5285), + [anon_sym_STAR] = ACTIONS(5285), + [anon_sym_SLASH] = ACTIONS(5285), + [anon_sym_CARET] = ACTIONS(5285), + [anon_sym__] = ACTIONS(5285), + [anon_sym_LT] = ACTIONS(5285), + [anon_sym_GT] = ACTIONS(5285), + [anon_sym_BANG] = ACTIONS(5285), + [anon_sym_PIPE] = ACTIONS(5285), + [anon_sym_COLON] = ACTIONS(5285), + [anon_sym_SQUOTE] = ACTIONS(5285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), + [anon_sym_DOLLAR] = ACTIONS(5285), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5283), + [anon_sym_BSLASHbegin] = ACTIONS(5285), + [anon_sym_BSLASHusepackage] = ACTIONS(5285), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), + [anon_sym_BSLASHinclude] = ACTIONS(5285), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), + [anon_sym_BSLASHinput] = ACTIONS(5285), + [anon_sym_BSLASHsubfile] = ACTIONS(5285), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), + [anon_sym_BSLASHbibliography] = ACTIONS(5285), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), + [anon_sym_BSLASHincludesvg] = ACTIONS(5285), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), + [anon_sym_BSLASHimport] = ACTIONS(5285), + [anon_sym_BSLASHsubimport] = ACTIONS(5285), + [anon_sym_BSLASHinputfrom] = ACTIONS(5285), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), + [anon_sym_BSLASHincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHcaption] = ACTIONS(5285), + [anon_sym_BSLASHcite] = ACTIONS(5285), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCite] = ACTIONS(5285), + [anon_sym_BSLASHnocite] = ACTIONS(5285), + [anon_sym_BSLASHcitet] = ACTIONS(5285), + [anon_sym_BSLASHcitep] = ACTIONS(5285), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteauthor] = ACTIONS(5285), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitetitle] = ACTIONS(5285), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteyear] = ACTIONS(5285), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitedate] = ACTIONS(5285), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteurl] = ACTIONS(5285), + [anon_sym_BSLASHfullcite] = ACTIONS(5285), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), + [anon_sym_BSLASHcitealt] = ACTIONS(5285), + [anon_sym_BSLASHcitealp] = ACTIONS(5285), + [anon_sym_BSLASHcitetext] = ACTIONS(5285), + [anon_sym_BSLASHparencite] = ACTIONS(5285), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHParencite] = ACTIONS(5285), + [anon_sym_BSLASHfootcite] = ACTIONS(5285), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), + [anon_sym_BSLASHtextcite] = ACTIONS(5285), + [anon_sym_BSLASHTextcite] = ACTIONS(5285), + [anon_sym_BSLASHsmartcite] = ACTIONS(5285), + [anon_sym_BSLASHSmartcite] = ACTIONS(5285), + [anon_sym_BSLASHsupercite] = ACTIONS(5285), + [anon_sym_BSLASHautocite] = ACTIONS(5285), + [anon_sym_BSLASHAutocite] = ACTIONS(5285), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHvolcite] = ACTIONS(5285), + [anon_sym_BSLASHVolcite] = ACTIONS(5285), + [anon_sym_BSLASHpvolcite] = ACTIONS(5285), + [anon_sym_BSLASHPvolcite] = ACTIONS(5285), + [anon_sym_BSLASHfvolcite] = ACTIONS(5285), + [anon_sym_BSLASHftvolcite] = ACTIONS(5285), + [anon_sym_BSLASHsvolcite] = ACTIONS(5285), + [anon_sym_BSLASHSvolcite] = ACTIONS(5285), + [anon_sym_BSLASHtvolcite] = ACTIONS(5285), + [anon_sym_BSLASHTvolcite] = ACTIONS(5285), + [anon_sym_BSLASHavolcite] = ACTIONS(5285), + [anon_sym_BSLASHAvolcite] = ACTIONS(5285), + [anon_sym_BSLASHnotecite] = ACTIONS(5285), + [anon_sym_BSLASHNotecite] = ACTIONS(5285), + [anon_sym_BSLASHpnotecite] = ACTIONS(5285), + [anon_sym_BSLASHPnotecite] = ACTIONS(5285), + [anon_sym_BSLASHfnotecite] = ACTIONS(5285), + [anon_sym_BSLASHlabel] = ACTIONS(5285), + [anon_sym_BSLASHref] = ACTIONS(5285), + [anon_sym_BSLASHeqref] = ACTIONS(5285), + [anon_sym_BSLASHvref] = ACTIONS(5285), + [anon_sym_BSLASHVref] = ACTIONS(5285), + [anon_sym_BSLASHautoref] = ACTIONS(5285), + [anon_sym_BSLASHpageref] = ACTIONS(5285), + [anon_sym_BSLASHcref] = ACTIONS(5285), + [anon_sym_BSLASHCref] = ACTIONS(5285), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnameCref] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHlabelcref] = ACTIONS(5285), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCrefrange] = ACTIONS(5285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnewlabel] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), + [anon_sym_BSLASHdef] = ACTIONS(5285), + [anon_sym_BSLASHlet] = ACTIONS(5285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), + [anon_sym_BSLASHgls] = ACTIONS(5285), + [anon_sym_BSLASHGls] = ACTIONS(5285), + [anon_sym_BSLASHGLS] = ACTIONS(5285), + [anon_sym_BSLASHglspl] = ACTIONS(5285), + [anon_sym_BSLASHGlspl] = ACTIONS(5285), + [anon_sym_BSLASHGLSpl] = ACTIONS(5285), + [anon_sym_BSLASHglsdisp] = ACTIONS(5285), + [anon_sym_BSLASHglslink] = ACTIONS(5285), + [anon_sym_BSLASHglstext] = ACTIONS(5285), + [anon_sym_BSLASHGlstext] = ACTIONS(5285), + [anon_sym_BSLASHGLStext] = ACTIONS(5285), + [anon_sym_BSLASHglsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), + [anon_sym_BSLASHglsplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSplural] = ACTIONS(5285), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHglsname] = ACTIONS(5285), + [anon_sym_BSLASHGlsname] = ACTIONS(5285), + [anon_sym_BSLASHGLSname] = ACTIONS(5285), + [anon_sym_BSLASHglssymbol] = ACTIONS(5285), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), + [anon_sym_BSLASHglsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), + [anon_sym_BSLASHglsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), + [anon_sym_BSLASHglsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), + [anon_sym_BSLASHglsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), + [anon_sym_BSLASHglsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), + [anon_sym_BSLASHnewacronym] = ACTIONS(5285), + [anon_sym_BSLASHacrshort] = ACTIONS(5285), + [anon_sym_BSLASHAcrshort] = ACTIONS(5285), + [anon_sym_BSLASHACRshort] = ACTIONS(5285), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), + [anon_sym_BSLASHacrlong] = ACTIONS(5285), + [anon_sym_BSLASHAcrlong] = ACTIONS(5285), + [anon_sym_BSLASHACRlong] = ACTIONS(5285), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), + [anon_sym_BSLASHacrfull] = ACTIONS(5285), + [anon_sym_BSLASHAcrfull] = ACTIONS(5285), + [anon_sym_BSLASHACRfull] = ACTIONS(5285), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), + [anon_sym_BSLASHacs] = ACTIONS(5285), + [anon_sym_BSLASHAcs] = ACTIONS(5285), + [anon_sym_BSLASHacsp] = ACTIONS(5285), + [anon_sym_BSLASHAcsp] = ACTIONS(5285), + [anon_sym_BSLASHacl] = ACTIONS(5285), + [anon_sym_BSLASHAcl] = ACTIONS(5285), + [anon_sym_BSLASHaclp] = ACTIONS(5285), + [anon_sym_BSLASHAclp] = ACTIONS(5285), + [anon_sym_BSLASHacf] = ACTIONS(5285), + [anon_sym_BSLASHAcf] = ACTIONS(5285), + [anon_sym_BSLASHacfp] = ACTIONS(5285), + [anon_sym_BSLASHAcfp] = ACTIONS(5285), + [anon_sym_BSLASHac] = ACTIONS(5285), + [anon_sym_BSLASHAc] = ACTIONS(5285), + [anon_sym_BSLASHacp] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), + [anon_sym_BSLASHcolor] = ACTIONS(5285), + [anon_sym_BSLASHcolorbox] = ACTIONS(5285), + [anon_sym_BSLASHtextcolor] = ACTIONS(5285), + [anon_sym_BSLASHpagecolor] = ACTIONS(5285), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), + [anon_sym_BSLASHtext] = ACTIONS(5285), + [anon_sym_BSLASHintertext] = ACTIONS(5285), + [anon_sym_shortintertext] = ACTIONS(5285), + }, + [920] = { + [sym_command_name] = ACTIONS(5003), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_BSLASHpart] = ACTIONS(5201), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddpart] = ACTIONS(5201), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), - [anon_sym_BSLASHchapter] = ACTIONS(5201), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddchap] = ACTIONS(5201), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsection] = ACTIONS(5201), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHaddsec] = ACTIONS(5201), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), - [anon_sym_BSLASHparagraph] = ACTIONS(5201), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), - [anon_sym_BSLASHitem] = ACTIONS(5201), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASHbegin] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), + [anon_sym_BSLASHiffalse] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_RBRACK] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(5001), + [anon_sym_BSLASHpart] = ACTIONS(5003), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddpart] = ACTIONS(5003), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), + [anon_sym_BSLASHchapter] = ACTIONS(5003), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddchap] = ACTIONS(5003), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsection] = ACTIONS(5003), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddsec] = ACTIONS(5003), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubsection] = ACTIONS(5003), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHparagraph] = ACTIONS(5003), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), + [anon_sym_BSLASHitem] = ACTIONS(5003), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5001), + [sym_word] = ACTIONS(5003), + [sym_placeholder] = ACTIONS(5001), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym__] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_BANG] = ACTIONS(5003), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_SQUOTE] = ACTIONS(5003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), + [anon_sym_DOLLAR] = ACTIONS(5003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), + [anon_sym_BSLASHbegin] = ACTIONS(5003), + [anon_sym_BSLASHusepackage] = ACTIONS(5003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), + [anon_sym_BSLASHinclude] = ACTIONS(5003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), + [anon_sym_BSLASHinput] = ACTIONS(5003), + [anon_sym_BSLASHsubfile] = ACTIONS(5003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), + [anon_sym_BSLASHbibliography] = ACTIONS(5003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), + [anon_sym_BSLASHincludesvg] = ACTIONS(5003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), + [anon_sym_BSLASHimport] = ACTIONS(5003), + [anon_sym_BSLASHsubimport] = ACTIONS(5003), + [anon_sym_BSLASHinputfrom] = ACTIONS(5003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), + [anon_sym_BSLASHincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHcaption] = ACTIONS(5003), + [anon_sym_BSLASHcite] = ACTIONS(5003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCite] = ACTIONS(5003), + [anon_sym_BSLASHnocite] = ACTIONS(5003), + [anon_sym_BSLASHcitet] = ACTIONS(5003), + [anon_sym_BSLASHcitep] = ACTIONS(5003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteauthor] = ACTIONS(5003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitetitle] = ACTIONS(5003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteyear] = ACTIONS(5003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitedate] = ACTIONS(5003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteurl] = ACTIONS(5003), + [anon_sym_BSLASHfullcite] = ACTIONS(5003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), + [anon_sym_BSLASHcitealt] = ACTIONS(5003), + [anon_sym_BSLASHcitealp] = ACTIONS(5003), + [anon_sym_BSLASHcitetext] = ACTIONS(5003), + [anon_sym_BSLASHparencite] = ACTIONS(5003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHParencite] = ACTIONS(5003), + [anon_sym_BSLASHfootcite] = ACTIONS(5003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), + [anon_sym_BSLASHtextcite] = ACTIONS(5003), + [anon_sym_BSLASHTextcite] = ACTIONS(5003), + [anon_sym_BSLASHsmartcite] = ACTIONS(5003), + [anon_sym_BSLASHSmartcite] = ACTIONS(5003), + [anon_sym_BSLASHsupercite] = ACTIONS(5003), + [anon_sym_BSLASHautocite] = ACTIONS(5003), + [anon_sym_BSLASHAutocite] = ACTIONS(5003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHvolcite] = ACTIONS(5003), + [anon_sym_BSLASHVolcite] = ACTIONS(5003), + [anon_sym_BSLASHpvolcite] = ACTIONS(5003), + [anon_sym_BSLASHPvolcite] = ACTIONS(5003), + [anon_sym_BSLASHfvolcite] = ACTIONS(5003), + [anon_sym_BSLASHftvolcite] = ACTIONS(5003), + [anon_sym_BSLASHsvolcite] = ACTIONS(5003), + [anon_sym_BSLASHSvolcite] = ACTIONS(5003), + [anon_sym_BSLASHtvolcite] = ACTIONS(5003), + [anon_sym_BSLASHTvolcite] = ACTIONS(5003), + [anon_sym_BSLASHavolcite] = ACTIONS(5003), + [anon_sym_BSLASHAvolcite] = ACTIONS(5003), + [anon_sym_BSLASHnotecite] = ACTIONS(5003), + [anon_sym_BSLASHNotecite] = ACTIONS(5003), + [anon_sym_BSLASHpnotecite] = ACTIONS(5003), + [anon_sym_BSLASHPnotecite] = ACTIONS(5003), + [anon_sym_BSLASHfnotecite] = ACTIONS(5003), + [anon_sym_BSLASHlabel] = ACTIONS(5003), + [anon_sym_BSLASHref] = ACTIONS(5003), + [anon_sym_BSLASHeqref] = ACTIONS(5003), + [anon_sym_BSLASHvref] = ACTIONS(5003), + [anon_sym_BSLASHVref] = ACTIONS(5003), + [anon_sym_BSLASHautoref] = ACTIONS(5003), + [anon_sym_BSLASHpageref] = ACTIONS(5003), + [anon_sym_BSLASHcref] = ACTIONS(5003), + [anon_sym_BSLASHCref] = ACTIONS(5003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnameCref] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHlabelcref] = ACTIONS(5003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCrefrange] = ACTIONS(5003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnewlabel] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), + [anon_sym_BSLASHdef] = ACTIONS(5003), + [anon_sym_BSLASHlet] = ACTIONS(5003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), + [anon_sym_BSLASHgls] = ACTIONS(5003), + [anon_sym_BSLASHGls] = ACTIONS(5003), + [anon_sym_BSLASHGLS] = ACTIONS(5003), + [anon_sym_BSLASHglspl] = ACTIONS(5003), + [anon_sym_BSLASHGlspl] = ACTIONS(5003), + [anon_sym_BSLASHGLSpl] = ACTIONS(5003), + [anon_sym_BSLASHglsdisp] = ACTIONS(5003), + [anon_sym_BSLASHglslink] = ACTIONS(5003), + [anon_sym_BSLASHglstext] = ACTIONS(5003), + [anon_sym_BSLASHGlstext] = ACTIONS(5003), + [anon_sym_BSLASHGLStext] = ACTIONS(5003), + [anon_sym_BSLASHglsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), + [anon_sym_BSLASHglsplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSplural] = ACTIONS(5003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHglsname] = ACTIONS(5003), + [anon_sym_BSLASHGlsname] = ACTIONS(5003), + [anon_sym_BSLASHGLSname] = ACTIONS(5003), + [anon_sym_BSLASHglssymbol] = ACTIONS(5003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), + [anon_sym_BSLASHglsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), + [anon_sym_BSLASHglsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), + [anon_sym_BSLASHglsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), + [anon_sym_BSLASHglsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), + [anon_sym_BSLASHglsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), + [anon_sym_BSLASHnewacronym] = ACTIONS(5003), + [anon_sym_BSLASHacrshort] = ACTIONS(5003), + [anon_sym_BSLASHAcrshort] = ACTIONS(5003), + [anon_sym_BSLASHACRshort] = ACTIONS(5003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), + [anon_sym_BSLASHacrlong] = ACTIONS(5003), + [anon_sym_BSLASHAcrlong] = ACTIONS(5003), + [anon_sym_BSLASHACRlong] = ACTIONS(5003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), + [anon_sym_BSLASHacrfull] = ACTIONS(5003), + [anon_sym_BSLASHAcrfull] = ACTIONS(5003), + [anon_sym_BSLASHACRfull] = ACTIONS(5003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), + [anon_sym_BSLASHacs] = ACTIONS(5003), + [anon_sym_BSLASHAcs] = ACTIONS(5003), + [anon_sym_BSLASHacsp] = ACTIONS(5003), + [anon_sym_BSLASHAcsp] = ACTIONS(5003), + [anon_sym_BSLASHacl] = ACTIONS(5003), + [anon_sym_BSLASHAcl] = ACTIONS(5003), + [anon_sym_BSLASHaclp] = ACTIONS(5003), + [anon_sym_BSLASHAclp] = ACTIONS(5003), + [anon_sym_BSLASHacf] = ACTIONS(5003), + [anon_sym_BSLASHAcf] = ACTIONS(5003), + [anon_sym_BSLASHacfp] = ACTIONS(5003), + [anon_sym_BSLASHAcfp] = ACTIONS(5003), + [anon_sym_BSLASHac] = ACTIONS(5003), + [anon_sym_BSLASHAc] = ACTIONS(5003), + [anon_sym_BSLASHacp] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), + [anon_sym_BSLASHcolor] = ACTIONS(5003), + [anon_sym_BSLASHcolorbox] = ACTIONS(5003), + [anon_sym_BSLASHtextcolor] = ACTIONS(5003), + [anon_sym_BSLASHpagecolor] = ACTIONS(5003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), + [anon_sym_BSLASHtext] = ACTIONS(5003), + [anon_sym_BSLASHintertext] = ACTIONS(5003), + [anon_sym_shortintertext] = ACTIONS(5003), }, - [1083] = { - [sym_command_name] = ACTIONS(5197), + [921] = { + [sym_command_name] = ACTIONS(4999), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_BSLASHpart] = ACTIONS(5197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddpart] = ACTIONS(5197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHchapter] = ACTIONS(5197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddchap] = ACTIONS(5197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsection] = ACTIONS(5197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddsec] = ACTIONS(5197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHparagraph] = ACTIONS(5197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHitem] = ACTIONS(5197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASHbegin] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + [anon_sym_BSLASHiffalse] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_RBRACK] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4997), + [anon_sym_BSLASHpart] = ACTIONS(4999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddpart] = ACTIONS(4999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), + [anon_sym_BSLASHchapter] = ACTIONS(4999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddchap] = ACTIONS(4999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsection] = ACTIONS(4999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddsec] = ACTIONS(4999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubsection] = ACTIONS(4999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHparagraph] = ACTIONS(4999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), + [anon_sym_BSLASHitem] = ACTIONS(4999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4997), + [sym_word] = ACTIONS(4999), + [sym_placeholder] = ACTIONS(4997), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym__] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_BANG] = ACTIONS(4999), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_SQUOTE] = ACTIONS(4999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), + [anon_sym_DOLLAR] = ACTIONS(4999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), + [anon_sym_BSLASHbegin] = ACTIONS(4999), + [anon_sym_BSLASHusepackage] = ACTIONS(4999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), + [anon_sym_BSLASHinclude] = ACTIONS(4999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), + [anon_sym_BSLASHinput] = ACTIONS(4999), + [anon_sym_BSLASHsubfile] = ACTIONS(4999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), + [anon_sym_BSLASHbibliography] = ACTIONS(4999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), + [anon_sym_BSLASHincludesvg] = ACTIONS(4999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), + [anon_sym_BSLASHimport] = ACTIONS(4999), + [anon_sym_BSLASHsubimport] = ACTIONS(4999), + [anon_sym_BSLASHinputfrom] = ACTIONS(4999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), + [anon_sym_BSLASHincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHcaption] = ACTIONS(4999), + [anon_sym_BSLASHcite] = ACTIONS(4999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCite] = ACTIONS(4999), + [anon_sym_BSLASHnocite] = ACTIONS(4999), + [anon_sym_BSLASHcitet] = ACTIONS(4999), + [anon_sym_BSLASHcitep] = ACTIONS(4999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteauthor] = ACTIONS(4999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitetitle] = ACTIONS(4999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteyear] = ACTIONS(4999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitedate] = ACTIONS(4999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteurl] = ACTIONS(4999), + [anon_sym_BSLASHfullcite] = ACTIONS(4999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), + [anon_sym_BSLASHcitealt] = ACTIONS(4999), + [anon_sym_BSLASHcitealp] = ACTIONS(4999), + [anon_sym_BSLASHcitetext] = ACTIONS(4999), + [anon_sym_BSLASHparencite] = ACTIONS(4999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHParencite] = ACTIONS(4999), + [anon_sym_BSLASHfootcite] = ACTIONS(4999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), + [anon_sym_BSLASHtextcite] = ACTIONS(4999), + [anon_sym_BSLASHTextcite] = ACTIONS(4999), + [anon_sym_BSLASHsmartcite] = ACTIONS(4999), + [anon_sym_BSLASHSmartcite] = ACTIONS(4999), + [anon_sym_BSLASHsupercite] = ACTIONS(4999), + [anon_sym_BSLASHautocite] = ACTIONS(4999), + [anon_sym_BSLASHAutocite] = ACTIONS(4999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHvolcite] = ACTIONS(4999), + [anon_sym_BSLASHVolcite] = ACTIONS(4999), + [anon_sym_BSLASHpvolcite] = ACTIONS(4999), + [anon_sym_BSLASHPvolcite] = ACTIONS(4999), + [anon_sym_BSLASHfvolcite] = ACTIONS(4999), + [anon_sym_BSLASHftvolcite] = ACTIONS(4999), + [anon_sym_BSLASHsvolcite] = ACTIONS(4999), + [anon_sym_BSLASHSvolcite] = ACTIONS(4999), + [anon_sym_BSLASHtvolcite] = ACTIONS(4999), + [anon_sym_BSLASHTvolcite] = ACTIONS(4999), + [anon_sym_BSLASHavolcite] = ACTIONS(4999), + [anon_sym_BSLASHAvolcite] = ACTIONS(4999), + [anon_sym_BSLASHnotecite] = ACTIONS(4999), + [anon_sym_BSLASHNotecite] = ACTIONS(4999), + [anon_sym_BSLASHpnotecite] = ACTIONS(4999), + [anon_sym_BSLASHPnotecite] = ACTIONS(4999), + [anon_sym_BSLASHfnotecite] = ACTIONS(4999), + [anon_sym_BSLASHlabel] = ACTIONS(4999), + [anon_sym_BSLASHref] = ACTIONS(4999), + [anon_sym_BSLASHeqref] = ACTIONS(4999), + [anon_sym_BSLASHvref] = ACTIONS(4999), + [anon_sym_BSLASHVref] = ACTIONS(4999), + [anon_sym_BSLASHautoref] = ACTIONS(4999), + [anon_sym_BSLASHpageref] = ACTIONS(4999), + [anon_sym_BSLASHcref] = ACTIONS(4999), + [anon_sym_BSLASHCref] = ACTIONS(4999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnameCref] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHlabelcref] = ACTIONS(4999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCrefrange] = ACTIONS(4999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnewlabel] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), + [anon_sym_BSLASHdef] = ACTIONS(4999), + [anon_sym_BSLASHlet] = ACTIONS(4999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), + [anon_sym_BSLASHgls] = ACTIONS(4999), + [anon_sym_BSLASHGls] = ACTIONS(4999), + [anon_sym_BSLASHGLS] = ACTIONS(4999), + [anon_sym_BSLASHglspl] = ACTIONS(4999), + [anon_sym_BSLASHGlspl] = ACTIONS(4999), + [anon_sym_BSLASHGLSpl] = ACTIONS(4999), + [anon_sym_BSLASHglsdisp] = ACTIONS(4999), + [anon_sym_BSLASHglslink] = ACTIONS(4999), + [anon_sym_BSLASHglstext] = ACTIONS(4999), + [anon_sym_BSLASHGlstext] = ACTIONS(4999), + [anon_sym_BSLASHGLStext] = ACTIONS(4999), + [anon_sym_BSLASHglsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), + [anon_sym_BSLASHglsplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSplural] = ACTIONS(4999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHglsname] = ACTIONS(4999), + [anon_sym_BSLASHGlsname] = ACTIONS(4999), + [anon_sym_BSLASHGLSname] = ACTIONS(4999), + [anon_sym_BSLASHglssymbol] = ACTIONS(4999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), + [anon_sym_BSLASHglsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), + [anon_sym_BSLASHglsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), + [anon_sym_BSLASHglsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), + [anon_sym_BSLASHglsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), + [anon_sym_BSLASHglsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), + [anon_sym_BSLASHnewacronym] = ACTIONS(4999), + [anon_sym_BSLASHacrshort] = ACTIONS(4999), + [anon_sym_BSLASHAcrshort] = ACTIONS(4999), + [anon_sym_BSLASHACRshort] = ACTIONS(4999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), + [anon_sym_BSLASHacrlong] = ACTIONS(4999), + [anon_sym_BSLASHAcrlong] = ACTIONS(4999), + [anon_sym_BSLASHACRlong] = ACTIONS(4999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), + [anon_sym_BSLASHacrfull] = ACTIONS(4999), + [anon_sym_BSLASHAcrfull] = ACTIONS(4999), + [anon_sym_BSLASHACRfull] = ACTIONS(4999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), + [anon_sym_BSLASHacs] = ACTIONS(4999), + [anon_sym_BSLASHAcs] = ACTIONS(4999), + [anon_sym_BSLASHacsp] = ACTIONS(4999), + [anon_sym_BSLASHAcsp] = ACTIONS(4999), + [anon_sym_BSLASHacl] = ACTIONS(4999), + [anon_sym_BSLASHAcl] = ACTIONS(4999), + [anon_sym_BSLASHaclp] = ACTIONS(4999), + [anon_sym_BSLASHAclp] = ACTIONS(4999), + [anon_sym_BSLASHacf] = ACTIONS(4999), + [anon_sym_BSLASHAcf] = ACTIONS(4999), + [anon_sym_BSLASHacfp] = ACTIONS(4999), + [anon_sym_BSLASHAcfp] = ACTIONS(4999), + [anon_sym_BSLASHac] = ACTIONS(4999), + [anon_sym_BSLASHAc] = ACTIONS(4999), + [anon_sym_BSLASHacp] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), + [anon_sym_BSLASHcolor] = ACTIONS(4999), + [anon_sym_BSLASHcolorbox] = ACTIONS(4999), + [anon_sym_BSLASHtextcolor] = ACTIONS(4999), + [anon_sym_BSLASHpagecolor] = ACTIONS(4999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), + [anon_sym_BSLASHtext] = ACTIONS(4999), + [anon_sym_BSLASHintertext] = ACTIONS(4999), + [anon_sym_shortintertext] = ACTIONS(4999), }, - [1084] = { - [sym_command_name] = ACTIONS(5193), + [922] = { + [sym_command_name] = ACTIONS(4995), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_BSLASHpart] = ACTIONS(5193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddpart] = ACTIONS(5193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHchapter] = ACTIONS(5193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddchap] = ACTIONS(5193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsection] = ACTIONS(5193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddsec] = ACTIONS(5193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHparagraph] = ACTIONS(5193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHitem] = ACTIONS(5193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASHbegin] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [anon_sym_BSLASHiffalse] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4993), + [anon_sym_RBRACK] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_BSLASHpart] = ACTIONS(4995), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), + [anon_sym_BSLASHaddpart] = ACTIONS(4995), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), + [anon_sym_BSLASHchapter] = ACTIONS(4995), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), + [anon_sym_BSLASHaddchap] = ACTIONS(4995), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsection] = ACTIONS(4995), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), + [anon_sym_BSLASHaddsec] = ACTIONS(4995), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsubsection] = ACTIONS(4995), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), + [anon_sym_BSLASHparagraph] = ACTIONS(4995), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), + [anon_sym_BSLASHitem] = ACTIONS(4995), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4993), + [sym_word] = ACTIONS(4995), + [sym_placeholder] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym__] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_BANG] = ACTIONS(4995), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_SQUOTE] = ACTIONS(4995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), + [anon_sym_DOLLAR] = ACTIONS(4995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), + [anon_sym_BSLASHbegin] = ACTIONS(4995), + [anon_sym_BSLASHusepackage] = ACTIONS(4995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), + [anon_sym_BSLASHinclude] = ACTIONS(4995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), + [anon_sym_BSLASHinput] = ACTIONS(4995), + [anon_sym_BSLASHsubfile] = ACTIONS(4995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), + [anon_sym_BSLASHbibliography] = ACTIONS(4995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), + [anon_sym_BSLASHincludesvg] = ACTIONS(4995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), + [anon_sym_BSLASHimport] = ACTIONS(4995), + [anon_sym_BSLASHsubimport] = ACTIONS(4995), + [anon_sym_BSLASHinputfrom] = ACTIONS(4995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), + [anon_sym_BSLASHincludefrom] = ACTIONS(4995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), + [anon_sym_BSLASHcaption] = ACTIONS(4995), + [anon_sym_BSLASHcite] = ACTIONS(4995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCite] = ACTIONS(4995), + [anon_sym_BSLASHnocite] = ACTIONS(4995), + [anon_sym_BSLASHcitet] = ACTIONS(4995), + [anon_sym_BSLASHcitep] = ACTIONS(4995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteauthor] = ACTIONS(4995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitetitle] = ACTIONS(4995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteyear] = ACTIONS(4995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitedate] = ACTIONS(4995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteurl] = ACTIONS(4995), + [anon_sym_BSLASHfullcite] = ACTIONS(4995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), + [anon_sym_BSLASHcitealt] = ACTIONS(4995), + [anon_sym_BSLASHcitealp] = ACTIONS(4995), + [anon_sym_BSLASHcitetext] = ACTIONS(4995), + [anon_sym_BSLASHparencite] = ACTIONS(4995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHParencite] = ACTIONS(4995), + [anon_sym_BSLASHfootcite] = ACTIONS(4995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), + [anon_sym_BSLASHtextcite] = ACTIONS(4995), + [anon_sym_BSLASHTextcite] = ACTIONS(4995), + [anon_sym_BSLASHsmartcite] = ACTIONS(4995), + [anon_sym_BSLASHSmartcite] = ACTIONS(4995), + [anon_sym_BSLASHsupercite] = ACTIONS(4995), + [anon_sym_BSLASHautocite] = ACTIONS(4995), + [anon_sym_BSLASHAutocite] = ACTIONS(4995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHvolcite] = ACTIONS(4995), + [anon_sym_BSLASHVolcite] = ACTIONS(4995), + [anon_sym_BSLASHpvolcite] = ACTIONS(4995), + [anon_sym_BSLASHPvolcite] = ACTIONS(4995), + [anon_sym_BSLASHfvolcite] = ACTIONS(4995), + [anon_sym_BSLASHftvolcite] = ACTIONS(4995), + [anon_sym_BSLASHsvolcite] = ACTIONS(4995), + [anon_sym_BSLASHSvolcite] = ACTIONS(4995), + [anon_sym_BSLASHtvolcite] = ACTIONS(4995), + [anon_sym_BSLASHTvolcite] = ACTIONS(4995), + [anon_sym_BSLASHavolcite] = ACTIONS(4995), + [anon_sym_BSLASHAvolcite] = ACTIONS(4995), + [anon_sym_BSLASHnotecite] = ACTIONS(4995), + [anon_sym_BSLASHNotecite] = ACTIONS(4995), + [anon_sym_BSLASHpnotecite] = ACTIONS(4995), + [anon_sym_BSLASHPnotecite] = ACTIONS(4995), + [anon_sym_BSLASHfnotecite] = ACTIONS(4995), + [anon_sym_BSLASHlabel] = ACTIONS(4995), + [anon_sym_BSLASHref] = ACTIONS(4995), + [anon_sym_BSLASHeqref] = ACTIONS(4995), + [anon_sym_BSLASHvref] = ACTIONS(4995), + [anon_sym_BSLASHVref] = ACTIONS(4995), + [anon_sym_BSLASHautoref] = ACTIONS(4995), + [anon_sym_BSLASHpageref] = ACTIONS(4995), + [anon_sym_BSLASHcref] = ACTIONS(4995), + [anon_sym_BSLASHCref] = ACTIONS(4995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), + [anon_sym_BSLASHnamecref] = ACTIONS(4995), + [anon_sym_BSLASHnameCref] = ACTIONS(4995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), + [anon_sym_BSLASHlabelcref] = ACTIONS(4995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), + [anon_sym_BSLASHcrefrange] = ACTIONS(4995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCrefrange] = ACTIONS(4995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), + [anon_sym_BSLASHnewlabel] = ACTIONS(4995), + [anon_sym_BSLASHnewcommand] = ACTIONS(4995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), + [anon_sym_BSLASHdef] = ACTIONS(4995), + [anon_sym_BSLASHlet] = ACTIONS(4995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), + [anon_sym_BSLASHgls] = ACTIONS(4995), + [anon_sym_BSLASHGls] = ACTIONS(4995), + [anon_sym_BSLASHGLS] = ACTIONS(4995), + [anon_sym_BSLASHglspl] = ACTIONS(4995), + [anon_sym_BSLASHGlspl] = ACTIONS(4995), + [anon_sym_BSLASHGLSpl] = ACTIONS(4995), + [anon_sym_BSLASHglsdisp] = ACTIONS(4995), + [anon_sym_BSLASHglslink] = ACTIONS(4995), + [anon_sym_BSLASHglstext] = ACTIONS(4995), + [anon_sym_BSLASHGlstext] = ACTIONS(4995), + [anon_sym_BSLASHGLStext] = ACTIONS(4995), + [anon_sym_BSLASHglsfirst] = ACTIONS(4995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), + [anon_sym_BSLASHglsplural] = ACTIONS(4995), + [anon_sym_BSLASHGlsplural] = ACTIONS(4995), + [anon_sym_BSLASHGLSplural] = ACTIONS(4995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHglsname] = ACTIONS(4995), + [anon_sym_BSLASHGlsname] = ACTIONS(4995), + [anon_sym_BSLASHGLSname] = ACTIONS(4995), + [anon_sym_BSLASHglssymbol] = ACTIONS(4995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), + [anon_sym_BSLASHglsdesc] = ACTIONS(4995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), + [anon_sym_BSLASHglsuseri] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), + [anon_sym_BSLASHglsuserii] = ACTIONS(4995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), + [anon_sym_BSLASHglsuserv] = ACTIONS(4995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), + [anon_sym_BSLASHglsuservi] = ACTIONS(4995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), + [anon_sym_BSLASHnewacronym] = ACTIONS(4995), + [anon_sym_BSLASHacrshort] = ACTIONS(4995), + [anon_sym_BSLASHAcrshort] = ACTIONS(4995), + [anon_sym_BSLASHACRshort] = ACTIONS(4995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), + [anon_sym_BSLASHacrlong] = ACTIONS(4995), + [anon_sym_BSLASHAcrlong] = ACTIONS(4995), + [anon_sym_BSLASHACRlong] = ACTIONS(4995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), + [anon_sym_BSLASHacrfull] = ACTIONS(4995), + [anon_sym_BSLASHAcrfull] = ACTIONS(4995), + [anon_sym_BSLASHACRfull] = ACTIONS(4995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), + [anon_sym_BSLASHacs] = ACTIONS(4995), + [anon_sym_BSLASHAcs] = ACTIONS(4995), + [anon_sym_BSLASHacsp] = ACTIONS(4995), + [anon_sym_BSLASHAcsp] = ACTIONS(4995), + [anon_sym_BSLASHacl] = ACTIONS(4995), + [anon_sym_BSLASHAcl] = ACTIONS(4995), + [anon_sym_BSLASHaclp] = ACTIONS(4995), + [anon_sym_BSLASHAclp] = ACTIONS(4995), + [anon_sym_BSLASHacf] = ACTIONS(4995), + [anon_sym_BSLASHAcf] = ACTIONS(4995), + [anon_sym_BSLASHacfp] = ACTIONS(4995), + [anon_sym_BSLASHAcfp] = ACTIONS(4995), + [anon_sym_BSLASHac] = ACTIONS(4995), + [anon_sym_BSLASHAc] = ACTIONS(4995), + [anon_sym_BSLASHacp] = ACTIONS(4995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), + [anon_sym_BSLASHcolor] = ACTIONS(4995), + [anon_sym_BSLASHcolorbox] = ACTIONS(4995), + [anon_sym_BSLASHtextcolor] = ACTIONS(4995), + [anon_sym_BSLASHpagecolor] = ACTIONS(4995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), + [anon_sym_BSLASHtext] = ACTIONS(4995), + [anon_sym_BSLASHintertext] = ACTIONS(4995), + [anon_sym_shortintertext] = ACTIONS(4995), }, - [1085] = { - [sym_command_name] = ACTIONS(5189), + [923] = { + [sym_command_name] = ACTIONS(4991), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_BSLASHpart] = ACTIONS(5189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddpart] = ACTIONS(5189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHchapter] = ACTIONS(5189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddchap] = ACTIONS(5189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsection] = ACTIONS(5189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddsec] = ACTIONS(5189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHparagraph] = ACTIONS(5189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHitem] = ACTIONS(5189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASHbegin] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), - }, - [1086] = { - [sym_command_name] = ACTIONS(4945), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4943), - [anon_sym_RBRACK] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_BSLASHpart] = ACTIONS(4945), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddpart] = ACTIONS(4945), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4943), - [anon_sym_BSLASHchapter] = ACTIONS(4945), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddchap] = ACTIONS(4945), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsection] = ACTIONS(4945), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddsec] = ACTIONS(4945), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubsection] = ACTIONS(4945), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4945), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHparagraph] = ACTIONS(4945), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4945), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4943), - [anon_sym_BSLASHitem] = ACTIONS(4945), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [sym_word] = ACTIONS(4945), - [sym_placeholder] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4945), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_STAR] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym__] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4945), - [anon_sym_BANG] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(4945), - [anon_sym_COLON] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4945), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4943), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4943), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4945), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4943), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4943), - [anon_sym_BSLASHbegin] = ACTIONS(4945), - [anon_sym_BSLASHusepackage] = ACTIONS(4945), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4945), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4945), - [anon_sym_BSLASHinclude] = ACTIONS(4945), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4945), - [anon_sym_BSLASHinput] = ACTIONS(4945), - [anon_sym_BSLASHsubfile] = ACTIONS(4945), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4945), - [anon_sym_BSLASHbibliography] = ACTIONS(4945), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4945), - [anon_sym_BSLASHincludesvg] = ACTIONS(4945), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4945), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4945), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4945), - [anon_sym_BSLASHimport] = ACTIONS(4945), - [anon_sym_BSLASHsubimport] = ACTIONS(4945), - [anon_sym_BSLASHinputfrom] = ACTIONS(4945), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4945), - [anon_sym_BSLASHincludefrom] = ACTIONS(4945), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4945), - [anon_sym_BSLASHcaption] = ACTIONS(4945), - [anon_sym_BSLASHcite] = ACTIONS(4945), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCite] = ACTIONS(4945), - [anon_sym_BSLASHnocite] = ACTIONS(4945), - [anon_sym_BSLASHcitet] = ACTIONS(4945), - [anon_sym_BSLASHcitep] = ACTIONS(4945), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteauthor] = ACTIONS(4945), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4945), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitetitle] = ACTIONS(4945), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteyear] = ACTIONS(4945), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitedate] = ACTIONS(4945), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteurl] = ACTIONS(4945), - [anon_sym_BSLASHfullcite] = ACTIONS(4945), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4945), - [anon_sym_BSLASHcitealt] = ACTIONS(4945), - [anon_sym_BSLASHcitealp] = ACTIONS(4945), - [anon_sym_BSLASHcitetext] = ACTIONS(4945), - [anon_sym_BSLASHparencite] = ACTIONS(4945), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHParencite] = ACTIONS(4945), - [anon_sym_BSLASHfootcite] = ACTIONS(4945), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4945), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4945), - [anon_sym_BSLASHtextcite] = ACTIONS(4945), - [anon_sym_BSLASHTextcite] = ACTIONS(4945), - [anon_sym_BSLASHsmartcite] = ACTIONS(4945), - [anon_sym_BSLASHSmartcite] = ACTIONS(4945), - [anon_sym_BSLASHsupercite] = ACTIONS(4945), - [anon_sym_BSLASHautocite] = ACTIONS(4945), - [anon_sym_BSLASHAutocite] = ACTIONS(4945), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHvolcite] = ACTIONS(4945), - [anon_sym_BSLASHVolcite] = ACTIONS(4945), - [anon_sym_BSLASHpvolcite] = ACTIONS(4945), - [anon_sym_BSLASHPvolcite] = ACTIONS(4945), - [anon_sym_BSLASHfvolcite] = ACTIONS(4945), - [anon_sym_BSLASHftvolcite] = ACTIONS(4945), - [anon_sym_BSLASHsvolcite] = ACTIONS(4945), - [anon_sym_BSLASHSvolcite] = ACTIONS(4945), - [anon_sym_BSLASHtvolcite] = ACTIONS(4945), - [anon_sym_BSLASHTvolcite] = ACTIONS(4945), - [anon_sym_BSLASHavolcite] = ACTIONS(4945), - [anon_sym_BSLASHAvolcite] = ACTIONS(4945), - [anon_sym_BSLASHnotecite] = ACTIONS(4945), - [anon_sym_BSLASHNotecite] = ACTIONS(4945), - [anon_sym_BSLASHpnotecite] = ACTIONS(4945), - [anon_sym_BSLASHPnotecite] = ACTIONS(4945), - [anon_sym_BSLASHfnotecite] = ACTIONS(4945), - [anon_sym_BSLASHlabel] = ACTIONS(4945), - [anon_sym_BSLASHref] = ACTIONS(4945), - [anon_sym_BSLASHeqref] = ACTIONS(4945), - [anon_sym_BSLASHvref] = ACTIONS(4945), - [anon_sym_BSLASHVref] = ACTIONS(4945), - [anon_sym_BSLASHautoref] = ACTIONS(4945), - [anon_sym_BSLASHpageref] = ACTIONS(4945), - [anon_sym_BSLASHcref] = ACTIONS(4945), - [anon_sym_BSLASHCref] = ACTIONS(4945), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4943), - [anon_sym_BSLASHnamecref] = ACTIONS(4945), - [anon_sym_BSLASHnameCref] = ACTIONS(4945), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4945), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4945), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4945), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4945), - [anon_sym_BSLASHlabelcref] = ACTIONS(4945), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4945), - [anon_sym_BSLASHcrefrange] = ACTIONS(4945), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCrefrange] = ACTIONS(4945), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4943), - [anon_sym_BSLASHnewlabel] = ACTIONS(4945), - [anon_sym_BSLASHnewcommand] = ACTIONS(4945), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4945), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4945), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4945), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4943), - [anon_sym_BSLASHdef] = ACTIONS(4945), - [anon_sym_BSLASHlet] = ACTIONS(4945), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4945), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4945), - [anon_sym_BSLASHgls] = ACTIONS(4945), - [anon_sym_BSLASHGls] = ACTIONS(4945), - [anon_sym_BSLASHGLS] = ACTIONS(4945), - [anon_sym_BSLASHglspl] = ACTIONS(4945), - [anon_sym_BSLASHGlspl] = ACTIONS(4945), - [anon_sym_BSLASHGLSpl] = ACTIONS(4945), - [anon_sym_BSLASHglsdisp] = ACTIONS(4945), - [anon_sym_BSLASHglslink] = ACTIONS(4945), - [anon_sym_BSLASHglstext] = ACTIONS(4945), - [anon_sym_BSLASHGlstext] = ACTIONS(4945), - [anon_sym_BSLASHGLStext] = ACTIONS(4945), - [anon_sym_BSLASHglsfirst] = ACTIONS(4945), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4945), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4945), - [anon_sym_BSLASHglsplural] = ACTIONS(4945), - [anon_sym_BSLASHGlsplural] = ACTIONS(4945), - [anon_sym_BSLASHGLSplural] = ACTIONS(4945), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHglsname] = ACTIONS(4945), - [anon_sym_BSLASHGlsname] = ACTIONS(4945), - [anon_sym_BSLASHGLSname] = ACTIONS(4945), - [anon_sym_BSLASHglssymbol] = ACTIONS(4945), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4945), - [anon_sym_BSLASHglsdesc] = ACTIONS(4945), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4945), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4945), - [anon_sym_BSLASHglsuseri] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4945), - [anon_sym_BSLASHglsuserii] = ACTIONS(4945), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4945), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4945), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4945), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4945), - [anon_sym_BSLASHglsuserv] = ACTIONS(4945), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4945), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4945), - [anon_sym_BSLASHglsuservi] = ACTIONS(4945), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4945), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4945), - [anon_sym_BSLASHnewacronym] = ACTIONS(4945), - [anon_sym_BSLASHacrshort] = ACTIONS(4945), - [anon_sym_BSLASHAcrshort] = ACTIONS(4945), - [anon_sym_BSLASHACRshort] = ACTIONS(4945), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4945), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4945), - [anon_sym_BSLASHacrlong] = ACTIONS(4945), - [anon_sym_BSLASHAcrlong] = ACTIONS(4945), - [anon_sym_BSLASHACRlong] = ACTIONS(4945), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4945), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4945), - [anon_sym_BSLASHacrfull] = ACTIONS(4945), - [anon_sym_BSLASHAcrfull] = ACTIONS(4945), - [anon_sym_BSLASHACRfull] = ACTIONS(4945), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4945), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4945), - [anon_sym_BSLASHacs] = ACTIONS(4945), - [anon_sym_BSLASHAcs] = ACTIONS(4945), - [anon_sym_BSLASHacsp] = ACTIONS(4945), - [anon_sym_BSLASHAcsp] = ACTIONS(4945), - [anon_sym_BSLASHacl] = ACTIONS(4945), - [anon_sym_BSLASHAcl] = ACTIONS(4945), - [anon_sym_BSLASHaclp] = ACTIONS(4945), - [anon_sym_BSLASHAclp] = ACTIONS(4945), - [anon_sym_BSLASHacf] = ACTIONS(4945), - [anon_sym_BSLASHAcf] = ACTIONS(4945), - [anon_sym_BSLASHacfp] = ACTIONS(4945), - [anon_sym_BSLASHAcfp] = ACTIONS(4945), - [anon_sym_BSLASHac] = ACTIONS(4945), - [anon_sym_BSLASHAc] = ACTIONS(4945), - [anon_sym_BSLASHacp] = ACTIONS(4945), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4945), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4945), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4945), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4945), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4945), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4945), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4945), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4945), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4945), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4945), - [anon_sym_BSLASHcolor] = ACTIONS(4945), - [anon_sym_BSLASHcolorbox] = ACTIONS(4945), - [anon_sym_BSLASHtextcolor] = ACTIONS(4945), - [anon_sym_BSLASHpagecolor] = ACTIONS(4945), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4945), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4945), - }, - [1087] = { - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_BSLASHpart] = ACTIONS(5179), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddpart] = ACTIONS(5179), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHchapter] = ACTIONS(5179), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddchap] = ACTIONS(5179), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsection] = ACTIONS(5179), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddsec] = ACTIONS(5179), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHparagraph] = ACTIONS(5179), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHitem] = ACTIONS(5179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASHbegin] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), - }, - [1088] = { - [sym_command_name] = ACTIONS(5259), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5259), - [anon_sym_LPAREN] = ACTIONS(5257), - [anon_sym_RPAREN] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(5257), - [anon_sym_RBRACK] = ACTIONS(5257), - [anon_sym_COMMA] = ACTIONS(5257), - [anon_sym_EQ] = ACTIONS(5257), - [anon_sym_BSLASHpart] = ACTIONS(5259), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddpart] = ACTIONS(5259), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5257), - [anon_sym_BSLASHchapter] = ACTIONS(5259), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddchap] = ACTIONS(5259), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsection] = ACTIONS(5259), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddsec] = ACTIONS(5259), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubsection] = ACTIONS(5259), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5259), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHparagraph] = ACTIONS(5259), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5259), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5257), - [anon_sym_BSLASHitem] = ACTIONS(5259), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5257), - [anon_sym_LBRACE] = ACTIONS(5257), - [sym_word] = ACTIONS(5259), - [sym_placeholder] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5259), - [anon_sym_STAR] = ACTIONS(5259), - [anon_sym_SLASH] = ACTIONS(5259), - [anon_sym_CARET] = ACTIONS(5259), - [anon_sym__] = ACTIONS(5259), - [anon_sym_LT] = ACTIONS(5259), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_BANG] = ACTIONS(5259), - [anon_sym_PIPE] = ACTIONS(5259), - [anon_sym_COLON] = ACTIONS(5259), - [anon_sym_SQUOTE] = ACTIONS(5259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5257), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5257), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5257), - [anon_sym_DOLLAR] = ACTIONS(5259), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5257), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5257), - [anon_sym_BSLASHbegin] = ACTIONS(5259), - [anon_sym_BSLASHusepackage] = ACTIONS(5259), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5259), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5259), - [anon_sym_BSLASHinclude] = ACTIONS(5259), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5259), - [anon_sym_BSLASHinput] = ACTIONS(5259), - [anon_sym_BSLASHsubfile] = ACTIONS(5259), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5259), - [anon_sym_BSLASHbibliography] = ACTIONS(5259), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5259), - [anon_sym_BSLASHincludesvg] = ACTIONS(5259), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5259), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5259), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5259), - [anon_sym_BSLASHimport] = ACTIONS(5259), - [anon_sym_BSLASHsubimport] = ACTIONS(5259), - [anon_sym_BSLASHinputfrom] = ACTIONS(5259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5259), - [anon_sym_BSLASHincludefrom] = ACTIONS(5259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5259), - [anon_sym_BSLASHcaption] = ACTIONS(5259), - [anon_sym_BSLASHcite] = ACTIONS(5259), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCite] = ACTIONS(5259), - [anon_sym_BSLASHnocite] = ACTIONS(5259), - [anon_sym_BSLASHcitet] = ACTIONS(5259), - [anon_sym_BSLASHcitep] = ACTIONS(5259), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteauthor] = ACTIONS(5259), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5259), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitetitle] = ACTIONS(5259), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteyear] = ACTIONS(5259), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitedate] = ACTIONS(5259), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteurl] = ACTIONS(5259), - [anon_sym_BSLASHfullcite] = ACTIONS(5259), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5259), - [anon_sym_BSLASHcitealt] = ACTIONS(5259), - [anon_sym_BSLASHcitealp] = ACTIONS(5259), - [anon_sym_BSLASHcitetext] = ACTIONS(5259), - [anon_sym_BSLASHparencite] = ACTIONS(5259), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHParencite] = ACTIONS(5259), - [anon_sym_BSLASHfootcite] = ACTIONS(5259), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5259), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5259), - [anon_sym_BSLASHtextcite] = ACTIONS(5259), - [anon_sym_BSLASHTextcite] = ACTIONS(5259), - [anon_sym_BSLASHsmartcite] = ACTIONS(5259), - [anon_sym_BSLASHSmartcite] = ACTIONS(5259), - [anon_sym_BSLASHsupercite] = ACTIONS(5259), - [anon_sym_BSLASHautocite] = ACTIONS(5259), - [anon_sym_BSLASHAutocite] = ACTIONS(5259), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHvolcite] = ACTIONS(5259), - [anon_sym_BSLASHVolcite] = ACTIONS(5259), - [anon_sym_BSLASHpvolcite] = ACTIONS(5259), - [anon_sym_BSLASHPvolcite] = ACTIONS(5259), - [anon_sym_BSLASHfvolcite] = ACTIONS(5259), - [anon_sym_BSLASHftvolcite] = ACTIONS(5259), - [anon_sym_BSLASHsvolcite] = ACTIONS(5259), - [anon_sym_BSLASHSvolcite] = ACTIONS(5259), - [anon_sym_BSLASHtvolcite] = ACTIONS(5259), - [anon_sym_BSLASHTvolcite] = ACTIONS(5259), - [anon_sym_BSLASHavolcite] = ACTIONS(5259), - [anon_sym_BSLASHAvolcite] = ACTIONS(5259), - [anon_sym_BSLASHnotecite] = ACTIONS(5259), - [anon_sym_BSLASHNotecite] = ACTIONS(5259), - [anon_sym_BSLASHpnotecite] = ACTIONS(5259), - [anon_sym_BSLASHPnotecite] = ACTIONS(5259), - [anon_sym_BSLASHfnotecite] = ACTIONS(5259), - [anon_sym_BSLASHlabel] = ACTIONS(5259), - [anon_sym_BSLASHref] = ACTIONS(5259), - [anon_sym_BSLASHeqref] = ACTIONS(5259), - [anon_sym_BSLASHvref] = ACTIONS(5259), - [anon_sym_BSLASHVref] = ACTIONS(5259), - [anon_sym_BSLASHautoref] = ACTIONS(5259), - [anon_sym_BSLASHpageref] = ACTIONS(5259), - [anon_sym_BSLASHcref] = ACTIONS(5259), - [anon_sym_BSLASHCref] = ACTIONS(5259), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5257), - [anon_sym_BSLASHnamecref] = ACTIONS(5259), - [anon_sym_BSLASHnameCref] = ACTIONS(5259), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5259), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5259), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5259), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5259), - [anon_sym_BSLASHlabelcref] = ACTIONS(5259), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5259), - [anon_sym_BSLASHcrefrange] = ACTIONS(5259), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCrefrange] = ACTIONS(5259), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5257), - [anon_sym_BSLASHnewlabel] = ACTIONS(5259), - [anon_sym_BSLASHnewcommand] = ACTIONS(5259), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5259), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5259), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5259), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5257), - [anon_sym_BSLASHdef] = ACTIONS(5259), - [anon_sym_BSLASHlet] = ACTIONS(5259), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5259), - [anon_sym_BSLASHgls] = ACTIONS(5259), - [anon_sym_BSLASHGls] = ACTIONS(5259), - [anon_sym_BSLASHGLS] = ACTIONS(5259), - [anon_sym_BSLASHglspl] = ACTIONS(5259), - [anon_sym_BSLASHGlspl] = ACTIONS(5259), - [anon_sym_BSLASHGLSpl] = ACTIONS(5259), - [anon_sym_BSLASHglsdisp] = ACTIONS(5259), - [anon_sym_BSLASHglslink] = ACTIONS(5259), - [anon_sym_BSLASHglstext] = ACTIONS(5259), - [anon_sym_BSLASHGlstext] = ACTIONS(5259), - [anon_sym_BSLASHGLStext] = ACTIONS(5259), - [anon_sym_BSLASHglsfirst] = ACTIONS(5259), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5259), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5259), - [anon_sym_BSLASHglsplural] = ACTIONS(5259), - [anon_sym_BSLASHGlsplural] = ACTIONS(5259), - [anon_sym_BSLASHGLSplural] = ACTIONS(5259), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHglsname] = ACTIONS(5259), - [anon_sym_BSLASHGlsname] = ACTIONS(5259), - [anon_sym_BSLASHGLSname] = ACTIONS(5259), - [anon_sym_BSLASHglssymbol] = ACTIONS(5259), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5259), - [anon_sym_BSLASHglsdesc] = ACTIONS(5259), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5259), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5259), - [anon_sym_BSLASHglsuseri] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5259), - [anon_sym_BSLASHglsuserii] = ACTIONS(5259), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5259), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5259), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5259), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5259), - [anon_sym_BSLASHglsuserv] = ACTIONS(5259), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5259), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5259), - [anon_sym_BSLASHglsuservi] = ACTIONS(5259), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5259), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5259), - [anon_sym_BSLASHnewacronym] = ACTIONS(5259), - [anon_sym_BSLASHacrshort] = ACTIONS(5259), - [anon_sym_BSLASHAcrshort] = ACTIONS(5259), - [anon_sym_BSLASHACRshort] = ACTIONS(5259), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5259), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5259), - [anon_sym_BSLASHacrlong] = ACTIONS(5259), - [anon_sym_BSLASHAcrlong] = ACTIONS(5259), - [anon_sym_BSLASHACRlong] = ACTIONS(5259), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5259), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5259), - [anon_sym_BSLASHacrfull] = ACTIONS(5259), - [anon_sym_BSLASHAcrfull] = ACTIONS(5259), - [anon_sym_BSLASHACRfull] = ACTIONS(5259), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5259), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5259), - [anon_sym_BSLASHacs] = ACTIONS(5259), - [anon_sym_BSLASHAcs] = ACTIONS(5259), - [anon_sym_BSLASHacsp] = ACTIONS(5259), - [anon_sym_BSLASHAcsp] = ACTIONS(5259), - [anon_sym_BSLASHacl] = ACTIONS(5259), - [anon_sym_BSLASHAcl] = ACTIONS(5259), - [anon_sym_BSLASHaclp] = ACTIONS(5259), - [anon_sym_BSLASHAclp] = ACTIONS(5259), - [anon_sym_BSLASHacf] = ACTIONS(5259), - [anon_sym_BSLASHAcf] = ACTIONS(5259), - [anon_sym_BSLASHacfp] = ACTIONS(5259), - [anon_sym_BSLASHAcfp] = ACTIONS(5259), - [anon_sym_BSLASHac] = ACTIONS(5259), - [anon_sym_BSLASHAc] = ACTIONS(5259), - [anon_sym_BSLASHacp] = ACTIONS(5259), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5259), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5259), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5259), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5259), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5259), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5259), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5259), - [anon_sym_BSLASHcolor] = ACTIONS(5259), - [anon_sym_BSLASHcolorbox] = ACTIONS(5259), - [anon_sym_BSLASHtextcolor] = ACTIONS(5259), - [anon_sym_BSLASHpagecolor] = ACTIONS(5259), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5259), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5259), - }, - [1089] = { - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_BSLASHpart] = ACTIONS(5167), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddpart] = ACTIONS(5167), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHchapter] = ACTIONS(5167), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddchap] = ACTIONS(5167), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsection] = ACTIONS(5167), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddsec] = ACTIONS(5167), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHparagraph] = ACTIONS(5167), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHitem] = ACTIONS(5167), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASHbegin] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), - }, - [1090] = { - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_BSLASHpart] = ACTIONS(5159), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddpart] = ACTIONS(5159), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHchapter] = ACTIONS(5159), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddchap] = ACTIONS(5159), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsection] = ACTIONS(5159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddsec] = ACTIONS(5159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHparagraph] = ACTIONS(5159), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHitem] = ACTIONS(5159), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASHbegin] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), - }, - [1091] = { - [sym_command_name] = ACTIONS(5151), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5149), - [anon_sym_RPAREN] = ACTIONS(5149), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_RBRACK] = ACTIONS(5149), - [anon_sym_COMMA] = ACTIONS(5149), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_BSLASHpart] = ACTIONS(5151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddpart] = ACTIONS(5151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5149), - [anon_sym_BSLASHchapter] = ACTIONS(5151), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddchap] = ACTIONS(5151), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsection] = ACTIONS(5151), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddsec] = ACTIONS(5151), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubsection] = ACTIONS(5151), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5151), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHparagraph] = ACTIONS(5151), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5151), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5149), - [anon_sym_BSLASHitem] = ACTIONS(5151), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5149), - [anon_sym_LBRACE] = ACTIONS(5149), - [sym_word] = ACTIONS(5151), - [sym_placeholder] = ACTIONS(5149), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_CARET] = ACTIONS(5151), - [anon_sym__] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5151), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5149), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5149), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5149), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5149), - [anon_sym_BSLASHbegin] = ACTIONS(5151), - [anon_sym_BSLASHusepackage] = ACTIONS(5151), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5151), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5151), - [anon_sym_BSLASHinclude] = ACTIONS(5151), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), - [anon_sym_BSLASHinput] = ACTIONS(5151), - [anon_sym_BSLASHsubfile] = ACTIONS(5151), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5151), - [anon_sym_BSLASHbibliography] = ACTIONS(5151), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5151), - [anon_sym_BSLASHincludesvg] = ACTIONS(5151), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5151), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5151), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5151), - [anon_sym_BSLASHimport] = ACTIONS(5151), - [anon_sym_BSLASHsubimport] = ACTIONS(5151), - [anon_sym_BSLASHinputfrom] = ACTIONS(5151), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5151), - [anon_sym_BSLASHincludefrom] = ACTIONS(5151), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5151), - [anon_sym_BSLASHcaption] = ACTIONS(5151), - [anon_sym_BSLASHcite] = ACTIONS(5151), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCite] = ACTIONS(5151), - [anon_sym_BSLASHnocite] = ACTIONS(5151), - [anon_sym_BSLASHcitet] = ACTIONS(5151), - [anon_sym_BSLASHcitep] = ACTIONS(5151), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteyear] = ACTIONS(5151), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitedate] = ACTIONS(5151), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteurl] = ACTIONS(5151), - [anon_sym_BSLASHfullcite] = ACTIONS(5151), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5151), - [anon_sym_BSLASHcitealt] = ACTIONS(5151), - [anon_sym_BSLASHcitealp] = ACTIONS(5151), - [anon_sym_BSLASHcitetext] = ACTIONS(5151), - [anon_sym_BSLASHparencite] = ACTIONS(5151), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHParencite] = ACTIONS(5151), - [anon_sym_BSLASHfootcite] = ACTIONS(5151), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5151), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5151), - [anon_sym_BSLASHtextcite] = ACTIONS(5151), - [anon_sym_BSLASHTextcite] = ACTIONS(5151), - [anon_sym_BSLASHsmartcite] = ACTIONS(5151), - [anon_sym_BSLASHSmartcite] = ACTIONS(5151), - [anon_sym_BSLASHsupercite] = ACTIONS(5151), - [anon_sym_BSLASHautocite] = ACTIONS(5151), - [anon_sym_BSLASHAutocite] = ACTIONS(5151), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHvolcite] = ACTIONS(5151), - [anon_sym_BSLASHVolcite] = ACTIONS(5151), - [anon_sym_BSLASHpvolcite] = ACTIONS(5151), - [anon_sym_BSLASHPvolcite] = ACTIONS(5151), - [anon_sym_BSLASHfvolcite] = ACTIONS(5151), - [anon_sym_BSLASHftvolcite] = ACTIONS(5151), - [anon_sym_BSLASHsvolcite] = ACTIONS(5151), - [anon_sym_BSLASHSvolcite] = ACTIONS(5151), - [anon_sym_BSLASHtvolcite] = ACTIONS(5151), - [anon_sym_BSLASHTvolcite] = ACTIONS(5151), - [anon_sym_BSLASHavolcite] = ACTIONS(5151), - [anon_sym_BSLASHAvolcite] = ACTIONS(5151), - [anon_sym_BSLASHnotecite] = ACTIONS(5151), - [anon_sym_BSLASHNotecite] = ACTIONS(5151), - [anon_sym_BSLASHpnotecite] = ACTIONS(5151), - [anon_sym_BSLASHPnotecite] = ACTIONS(5151), - [anon_sym_BSLASHfnotecite] = ACTIONS(5151), - [anon_sym_BSLASHlabel] = ACTIONS(5151), - [anon_sym_BSLASHref] = ACTIONS(5151), - [anon_sym_BSLASHeqref] = ACTIONS(5151), - [anon_sym_BSLASHvref] = ACTIONS(5151), - [anon_sym_BSLASHVref] = ACTIONS(5151), - [anon_sym_BSLASHautoref] = ACTIONS(5151), - [anon_sym_BSLASHpageref] = ACTIONS(5151), - [anon_sym_BSLASHcref] = ACTIONS(5151), - [anon_sym_BSLASHCref] = ACTIONS(5151), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5149), - [anon_sym_BSLASHnamecref] = ACTIONS(5151), - [anon_sym_BSLASHnameCref] = ACTIONS(5151), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5151), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5151), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5151), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5151), - [anon_sym_BSLASHlabelcref] = ACTIONS(5151), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5151), - [anon_sym_BSLASHcrefrange] = ACTIONS(5151), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5149), - [anon_sym_BSLASHnewlabel] = ACTIONS(5151), - [anon_sym_BSLASHnewcommand] = ACTIONS(5151), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5149), - [anon_sym_BSLASHdef] = ACTIONS(5151), - [anon_sym_BSLASHlet] = ACTIONS(5151), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5151), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5151), - [anon_sym_BSLASHgls] = ACTIONS(5151), - [anon_sym_BSLASHGls] = ACTIONS(5151), - [anon_sym_BSLASHGLS] = ACTIONS(5151), - [anon_sym_BSLASHglspl] = ACTIONS(5151), - [anon_sym_BSLASHGlspl] = ACTIONS(5151), - [anon_sym_BSLASHGLSpl] = ACTIONS(5151), - [anon_sym_BSLASHglsdisp] = ACTIONS(5151), - [anon_sym_BSLASHglslink] = ACTIONS(5151), - [anon_sym_BSLASHglstext] = ACTIONS(5151), - [anon_sym_BSLASHGlstext] = ACTIONS(5151), - [anon_sym_BSLASHGLStext] = ACTIONS(5151), - [anon_sym_BSLASHglsfirst] = ACTIONS(5151), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5151), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5151), - [anon_sym_BSLASHglsplural] = ACTIONS(5151), - [anon_sym_BSLASHGlsplural] = ACTIONS(5151), - [anon_sym_BSLASHGLSplural] = ACTIONS(5151), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHglsname] = ACTIONS(5151), - [anon_sym_BSLASHGlsname] = ACTIONS(5151), - [anon_sym_BSLASHGLSname] = ACTIONS(5151), - [anon_sym_BSLASHglssymbol] = ACTIONS(5151), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5151), - [anon_sym_BSLASHglsdesc] = ACTIONS(5151), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5151), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5151), - [anon_sym_BSLASHglsuseri] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5151), - [anon_sym_BSLASHglsuserii] = ACTIONS(5151), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5151), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5151), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5151), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5151), - [anon_sym_BSLASHglsuserv] = ACTIONS(5151), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5151), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5151), - [anon_sym_BSLASHglsuservi] = ACTIONS(5151), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5151), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5151), - [anon_sym_BSLASHnewacronym] = ACTIONS(5151), - [anon_sym_BSLASHacrshort] = ACTIONS(5151), - [anon_sym_BSLASHAcrshort] = ACTIONS(5151), - [anon_sym_BSLASHACRshort] = ACTIONS(5151), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5151), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5151), - [anon_sym_BSLASHacrlong] = ACTIONS(5151), - [anon_sym_BSLASHAcrlong] = ACTIONS(5151), - [anon_sym_BSLASHACRlong] = ACTIONS(5151), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5151), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5151), - [anon_sym_BSLASHacrfull] = ACTIONS(5151), - [anon_sym_BSLASHAcrfull] = ACTIONS(5151), - [anon_sym_BSLASHACRfull] = ACTIONS(5151), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5151), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5151), - [anon_sym_BSLASHacs] = ACTIONS(5151), - [anon_sym_BSLASHAcs] = ACTIONS(5151), - [anon_sym_BSLASHacsp] = ACTIONS(5151), - [anon_sym_BSLASHAcsp] = ACTIONS(5151), - [anon_sym_BSLASHacl] = ACTIONS(5151), - [anon_sym_BSLASHAcl] = ACTIONS(5151), - [anon_sym_BSLASHaclp] = ACTIONS(5151), - [anon_sym_BSLASHAclp] = ACTIONS(5151), - [anon_sym_BSLASHacf] = ACTIONS(5151), - [anon_sym_BSLASHAcf] = ACTIONS(5151), - [anon_sym_BSLASHacfp] = ACTIONS(5151), - [anon_sym_BSLASHAcfp] = ACTIONS(5151), - [anon_sym_BSLASHac] = ACTIONS(5151), - [anon_sym_BSLASHAc] = ACTIONS(5151), - [anon_sym_BSLASHacp] = ACTIONS(5151), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5151), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5151), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5151), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5151), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5151), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5151), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5151), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5151), - [anon_sym_BSLASHcolor] = ACTIONS(5151), - [anon_sym_BSLASHcolorbox] = ACTIONS(5151), - [anon_sym_BSLASHtextcolor] = ACTIONS(5151), - [anon_sym_BSLASHpagecolor] = ACTIONS(5151), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5151), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5151), - }, - [1092] = { - [sym_command_name] = ACTIONS(4941), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4939), - [anon_sym_RBRACK] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_BSLASHpart] = ACTIONS(4941), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddpart] = ACTIONS(4941), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4939), - [anon_sym_BSLASHchapter] = ACTIONS(4941), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddchap] = ACTIONS(4941), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsection] = ACTIONS(4941), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddsec] = ACTIONS(4941), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubsection] = ACTIONS(4941), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4941), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHparagraph] = ACTIONS(4941), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4941), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4939), - [anon_sym_BSLASHitem] = ACTIONS(4941), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [sym_word] = ACTIONS(4941), - [sym_placeholder] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4941), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_STAR] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym__] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4941), - [anon_sym_BANG] = ACTIONS(4941), - [anon_sym_PIPE] = ACTIONS(4941), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4941), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4939), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4939), - [anon_sym_BSLASHbegin] = ACTIONS(4941), - [anon_sym_BSLASHusepackage] = ACTIONS(4941), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4941), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4941), - [anon_sym_BSLASHinclude] = ACTIONS(4941), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4941), - [anon_sym_BSLASHinput] = ACTIONS(4941), - [anon_sym_BSLASHsubfile] = ACTIONS(4941), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4941), - [anon_sym_BSLASHbibliography] = ACTIONS(4941), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4941), - [anon_sym_BSLASHincludesvg] = ACTIONS(4941), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4941), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4941), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4941), - [anon_sym_BSLASHimport] = ACTIONS(4941), - [anon_sym_BSLASHsubimport] = ACTIONS(4941), - [anon_sym_BSLASHinputfrom] = ACTIONS(4941), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4941), - [anon_sym_BSLASHincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHcaption] = ACTIONS(4941), - [anon_sym_BSLASHcite] = ACTIONS(4941), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCite] = ACTIONS(4941), - [anon_sym_BSLASHnocite] = ACTIONS(4941), - [anon_sym_BSLASHcitet] = ACTIONS(4941), - [anon_sym_BSLASHcitep] = ACTIONS(4941), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteyear] = ACTIONS(4941), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitedate] = ACTIONS(4941), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteurl] = ACTIONS(4941), - [anon_sym_BSLASHfullcite] = ACTIONS(4941), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4941), - [anon_sym_BSLASHcitealt] = ACTIONS(4941), - [anon_sym_BSLASHcitealp] = ACTIONS(4941), - [anon_sym_BSLASHcitetext] = ACTIONS(4941), - [anon_sym_BSLASHparencite] = ACTIONS(4941), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHParencite] = ACTIONS(4941), - [anon_sym_BSLASHfootcite] = ACTIONS(4941), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4941), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4941), - [anon_sym_BSLASHtextcite] = ACTIONS(4941), - [anon_sym_BSLASHTextcite] = ACTIONS(4941), - [anon_sym_BSLASHsmartcite] = ACTIONS(4941), - [anon_sym_BSLASHSmartcite] = ACTIONS(4941), - [anon_sym_BSLASHsupercite] = ACTIONS(4941), - [anon_sym_BSLASHautocite] = ACTIONS(4941), - [anon_sym_BSLASHAutocite] = ACTIONS(4941), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHvolcite] = ACTIONS(4941), - [anon_sym_BSLASHVolcite] = ACTIONS(4941), - [anon_sym_BSLASHpvolcite] = ACTIONS(4941), - [anon_sym_BSLASHPvolcite] = ACTIONS(4941), - [anon_sym_BSLASHfvolcite] = ACTIONS(4941), - [anon_sym_BSLASHftvolcite] = ACTIONS(4941), - [anon_sym_BSLASHsvolcite] = ACTIONS(4941), - [anon_sym_BSLASHSvolcite] = ACTIONS(4941), - [anon_sym_BSLASHtvolcite] = ACTIONS(4941), - [anon_sym_BSLASHTvolcite] = ACTIONS(4941), - [anon_sym_BSLASHavolcite] = ACTIONS(4941), - [anon_sym_BSLASHAvolcite] = ACTIONS(4941), - [anon_sym_BSLASHnotecite] = ACTIONS(4941), - [anon_sym_BSLASHNotecite] = ACTIONS(4941), - [anon_sym_BSLASHpnotecite] = ACTIONS(4941), - [anon_sym_BSLASHPnotecite] = ACTIONS(4941), - [anon_sym_BSLASHfnotecite] = ACTIONS(4941), - [anon_sym_BSLASHlabel] = ACTIONS(4941), - [anon_sym_BSLASHref] = ACTIONS(4941), - [anon_sym_BSLASHeqref] = ACTIONS(4941), - [anon_sym_BSLASHvref] = ACTIONS(4941), - [anon_sym_BSLASHVref] = ACTIONS(4941), - [anon_sym_BSLASHautoref] = ACTIONS(4941), - [anon_sym_BSLASHpageref] = ACTIONS(4941), - [anon_sym_BSLASHcref] = ACTIONS(4941), - [anon_sym_BSLASHCref] = ACTIONS(4941), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnameCref] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHlabelcref] = ACTIONS(4941), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnewlabel] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4939), - [anon_sym_BSLASHdef] = ACTIONS(4941), - [anon_sym_BSLASHlet] = ACTIONS(4941), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4941), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4941), - [anon_sym_BSLASHgls] = ACTIONS(4941), - [anon_sym_BSLASHGls] = ACTIONS(4941), - [anon_sym_BSLASHGLS] = ACTIONS(4941), - [anon_sym_BSLASHglspl] = ACTIONS(4941), - [anon_sym_BSLASHGlspl] = ACTIONS(4941), - [anon_sym_BSLASHGLSpl] = ACTIONS(4941), - [anon_sym_BSLASHglsdisp] = ACTIONS(4941), - [anon_sym_BSLASHglslink] = ACTIONS(4941), - [anon_sym_BSLASHglstext] = ACTIONS(4941), - [anon_sym_BSLASHGlstext] = ACTIONS(4941), - [anon_sym_BSLASHGLStext] = ACTIONS(4941), - [anon_sym_BSLASHglsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4941), - [anon_sym_BSLASHglsplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSplural] = ACTIONS(4941), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHglsname] = ACTIONS(4941), - [anon_sym_BSLASHGlsname] = ACTIONS(4941), - [anon_sym_BSLASHGLSname] = ACTIONS(4941), - [anon_sym_BSLASHglssymbol] = ACTIONS(4941), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4941), - [anon_sym_BSLASHglsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4941), - [anon_sym_BSLASHglsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4941), - [anon_sym_BSLASHglsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4941), - [anon_sym_BSLASHglsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4941), - [anon_sym_BSLASHglsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4941), - [anon_sym_BSLASHnewacronym] = ACTIONS(4941), - [anon_sym_BSLASHacrshort] = ACTIONS(4941), - [anon_sym_BSLASHAcrshort] = ACTIONS(4941), - [anon_sym_BSLASHACRshort] = ACTIONS(4941), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4941), - [anon_sym_BSLASHacrlong] = ACTIONS(4941), - [anon_sym_BSLASHAcrlong] = ACTIONS(4941), - [anon_sym_BSLASHACRlong] = ACTIONS(4941), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4941), - [anon_sym_BSLASHacrfull] = ACTIONS(4941), - [anon_sym_BSLASHAcrfull] = ACTIONS(4941), - [anon_sym_BSLASHACRfull] = ACTIONS(4941), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4941), - [anon_sym_BSLASHacs] = ACTIONS(4941), - [anon_sym_BSLASHAcs] = ACTIONS(4941), - [anon_sym_BSLASHacsp] = ACTIONS(4941), - [anon_sym_BSLASHAcsp] = ACTIONS(4941), - [anon_sym_BSLASHacl] = ACTIONS(4941), - [anon_sym_BSLASHAcl] = ACTIONS(4941), - [anon_sym_BSLASHaclp] = ACTIONS(4941), - [anon_sym_BSLASHAclp] = ACTIONS(4941), - [anon_sym_BSLASHacf] = ACTIONS(4941), - [anon_sym_BSLASHAcf] = ACTIONS(4941), - [anon_sym_BSLASHacfp] = ACTIONS(4941), - [anon_sym_BSLASHAcfp] = ACTIONS(4941), - [anon_sym_BSLASHac] = ACTIONS(4941), - [anon_sym_BSLASHAc] = ACTIONS(4941), - [anon_sym_BSLASHacp] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4941), - [anon_sym_BSLASHcolor] = ACTIONS(4941), - [anon_sym_BSLASHcolorbox] = ACTIONS(4941), - [anon_sym_BSLASHtextcolor] = ACTIONS(4941), - [anon_sym_BSLASHpagecolor] = ACTIONS(4941), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4941), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4941), + [anon_sym_BSLASHiffalse] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4989), + [anon_sym_RPAREN] = ACTIONS(4989), + [anon_sym_LBRACK] = ACTIONS(4989), + [anon_sym_RBRACK] = ACTIONS(4989), + [anon_sym_COMMA] = ACTIONS(4989), + [anon_sym_EQ] = ACTIONS(4989), + [anon_sym_BSLASHpart] = ACTIONS(4991), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddpart] = ACTIONS(4991), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), + [anon_sym_BSLASHchapter] = ACTIONS(4991), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddchap] = ACTIONS(4991), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsection] = ACTIONS(4991), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddsec] = ACTIONS(4991), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubsection] = ACTIONS(4991), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHparagraph] = ACTIONS(4991), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), + [anon_sym_BSLASHitem] = ACTIONS(4991), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(4989), + [sym_word] = ACTIONS(4991), + [sym_placeholder] = ACTIONS(4989), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym__] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_BANG] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_SQUOTE] = ACTIONS(4991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), + [anon_sym_DOLLAR] = ACTIONS(4991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), + [anon_sym_BSLASHbegin] = ACTIONS(4991), + [anon_sym_BSLASHusepackage] = ACTIONS(4991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), + [anon_sym_BSLASHinclude] = ACTIONS(4991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), + [anon_sym_BSLASHinput] = ACTIONS(4991), + [anon_sym_BSLASHsubfile] = ACTIONS(4991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), + [anon_sym_BSLASHbibliography] = ACTIONS(4991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), + [anon_sym_BSLASHincludesvg] = ACTIONS(4991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), + [anon_sym_BSLASHimport] = ACTIONS(4991), + [anon_sym_BSLASHsubimport] = ACTIONS(4991), + [anon_sym_BSLASHinputfrom] = ACTIONS(4991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), + [anon_sym_BSLASHincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHcaption] = ACTIONS(4991), + [anon_sym_BSLASHcite] = ACTIONS(4991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCite] = ACTIONS(4991), + [anon_sym_BSLASHnocite] = ACTIONS(4991), + [anon_sym_BSLASHcitet] = ACTIONS(4991), + [anon_sym_BSLASHcitep] = ACTIONS(4991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteauthor] = ACTIONS(4991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitetitle] = ACTIONS(4991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteyear] = ACTIONS(4991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitedate] = ACTIONS(4991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteurl] = ACTIONS(4991), + [anon_sym_BSLASHfullcite] = ACTIONS(4991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), + [anon_sym_BSLASHcitealt] = ACTIONS(4991), + [anon_sym_BSLASHcitealp] = ACTIONS(4991), + [anon_sym_BSLASHcitetext] = ACTIONS(4991), + [anon_sym_BSLASHparencite] = ACTIONS(4991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHParencite] = ACTIONS(4991), + [anon_sym_BSLASHfootcite] = ACTIONS(4991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), + [anon_sym_BSLASHtextcite] = ACTIONS(4991), + [anon_sym_BSLASHTextcite] = ACTIONS(4991), + [anon_sym_BSLASHsmartcite] = ACTIONS(4991), + [anon_sym_BSLASHSmartcite] = ACTIONS(4991), + [anon_sym_BSLASHsupercite] = ACTIONS(4991), + [anon_sym_BSLASHautocite] = ACTIONS(4991), + [anon_sym_BSLASHAutocite] = ACTIONS(4991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHvolcite] = ACTIONS(4991), + [anon_sym_BSLASHVolcite] = ACTIONS(4991), + [anon_sym_BSLASHpvolcite] = ACTIONS(4991), + [anon_sym_BSLASHPvolcite] = ACTIONS(4991), + [anon_sym_BSLASHfvolcite] = ACTIONS(4991), + [anon_sym_BSLASHftvolcite] = ACTIONS(4991), + [anon_sym_BSLASHsvolcite] = ACTIONS(4991), + [anon_sym_BSLASHSvolcite] = ACTIONS(4991), + [anon_sym_BSLASHtvolcite] = ACTIONS(4991), + [anon_sym_BSLASHTvolcite] = ACTIONS(4991), + [anon_sym_BSLASHavolcite] = ACTIONS(4991), + [anon_sym_BSLASHAvolcite] = ACTIONS(4991), + [anon_sym_BSLASHnotecite] = ACTIONS(4991), + [anon_sym_BSLASHNotecite] = ACTIONS(4991), + [anon_sym_BSLASHpnotecite] = ACTIONS(4991), + [anon_sym_BSLASHPnotecite] = ACTIONS(4991), + [anon_sym_BSLASHfnotecite] = ACTIONS(4991), + [anon_sym_BSLASHlabel] = ACTIONS(4991), + [anon_sym_BSLASHref] = ACTIONS(4991), + [anon_sym_BSLASHeqref] = ACTIONS(4991), + [anon_sym_BSLASHvref] = ACTIONS(4991), + [anon_sym_BSLASHVref] = ACTIONS(4991), + [anon_sym_BSLASHautoref] = ACTIONS(4991), + [anon_sym_BSLASHpageref] = ACTIONS(4991), + [anon_sym_BSLASHcref] = ACTIONS(4991), + [anon_sym_BSLASHCref] = ACTIONS(4991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnameCref] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHlabelcref] = ACTIONS(4991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCrefrange] = ACTIONS(4991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnewlabel] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), + [anon_sym_BSLASHdef] = ACTIONS(4991), + [anon_sym_BSLASHlet] = ACTIONS(4991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), + [anon_sym_BSLASHgls] = ACTIONS(4991), + [anon_sym_BSLASHGls] = ACTIONS(4991), + [anon_sym_BSLASHGLS] = ACTIONS(4991), + [anon_sym_BSLASHglspl] = ACTIONS(4991), + [anon_sym_BSLASHGlspl] = ACTIONS(4991), + [anon_sym_BSLASHGLSpl] = ACTIONS(4991), + [anon_sym_BSLASHglsdisp] = ACTIONS(4991), + [anon_sym_BSLASHglslink] = ACTIONS(4991), + [anon_sym_BSLASHglstext] = ACTIONS(4991), + [anon_sym_BSLASHGlstext] = ACTIONS(4991), + [anon_sym_BSLASHGLStext] = ACTIONS(4991), + [anon_sym_BSLASHglsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), + [anon_sym_BSLASHglsplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSplural] = ACTIONS(4991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHglsname] = ACTIONS(4991), + [anon_sym_BSLASHGlsname] = ACTIONS(4991), + [anon_sym_BSLASHGLSname] = ACTIONS(4991), + [anon_sym_BSLASHglssymbol] = ACTIONS(4991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), + [anon_sym_BSLASHglsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), + [anon_sym_BSLASHglsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), + [anon_sym_BSLASHglsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), + [anon_sym_BSLASHglsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), + [anon_sym_BSLASHglsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), + [anon_sym_BSLASHnewacronym] = ACTIONS(4991), + [anon_sym_BSLASHacrshort] = ACTIONS(4991), + [anon_sym_BSLASHAcrshort] = ACTIONS(4991), + [anon_sym_BSLASHACRshort] = ACTIONS(4991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), + [anon_sym_BSLASHacrlong] = ACTIONS(4991), + [anon_sym_BSLASHAcrlong] = ACTIONS(4991), + [anon_sym_BSLASHACRlong] = ACTIONS(4991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), + [anon_sym_BSLASHacrfull] = ACTIONS(4991), + [anon_sym_BSLASHAcrfull] = ACTIONS(4991), + [anon_sym_BSLASHACRfull] = ACTIONS(4991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), + [anon_sym_BSLASHacs] = ACTIONS(4991), + [anon_sym_BSLASHAcs] = ACTIONS(4991), + [anon_sym_BSLASHacsp] = ACTIONS(4991), + [anon_sym_BSLASHAcsp] = ACTIONS(4991), + [anon_sym_BSLASHacl] = ACTIONS(4991), + [anon_sym_BSLASHAcl] = ACTIONS(4991), + [anon_sym_BSLASHaclp] = ACTIONS(4991), + [anon_sym_BSLASHAclp] = ACTIONS(4991), + [anon_sym_BSLASHacf] = ACTIONS(4991), + [anon_sym_BSLASHAcf] = ACTIONS(4991), + [anon_sym_BSLASHacfp] = ACTIONS(4991), + [anon_sym_BSLASHAcfp] = ACTIONS(4991), + [anon_sym_BSLASHac] = ACTIONS(4991), + [anon_sym_BSLASHAc] = ACTIONS(4991), + [anon_sym_BSLASHacp] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), + [anon_sym_BSLASHcolor] = ACTIONS(4991), + [anon_sym_BSLASHcolorbox] = ACTIONS(4991), + [anon_sym_BSLASHtextcolor] = ACTIONS(4991), + [anon_sym_BSLASHpagecolor] = ACTIONS(4991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHtext] = ACTIONS(4991), + [anon_sym_BSLASHintertext] = ACTIONS(4991), + [anon_sym_shortintertext] = ACTIONS(4991), }, - [1093] = { - [sym_command_name] = ACTIONS(5139), + [924] = { + [sym_command_name] = ACTIONS(4987), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_BSLASHpart] = ACTIONS(5139), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddpart] = ACTIONS(5139), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), - [anon_sym_BSLASHchapter] = ACTIONS(5139), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddchap] = ACTIONS(5139), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsection] = ACTIONS(5139), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHaddsec] = ACTIONS(5139), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), - [anon_sym_BSLASHparagraph] = ACTIONS(5139), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), - [anon_sym_BSLASHitem] = ACTIONS(5139), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASHbegin] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHiffalse] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4985), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(4985), + [anon_sym_RBRACK] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_BSLASHpart] = ACTIONS(4987), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddpart] = ACTIONS(4987), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), + [anon_sym_BSLASHchapter] = ACTIONS(4987), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddchap] = ACTIONS(4987), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsection] = ACTIONS(4987), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddsec] = ACTIONS(4987), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubsection] = ACTIONS(4987), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHparagraph] = ACTIONS(4987), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), + [anon_sym_BSLASHitem] = ACTIONS(4987), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4985), + [sym_word] = ACTIONS(4987), + [sym_placeholder] = ACTIONS(4985), + [anon_sym_PLUS] = ACTIONS(4987), + [anon_sym_DASH] = ACTIONS(4987), + [anon_sym_STAR] = ACTIONS(4987), + [anon_sym_SLASH] = ACTIONS(4987), + [anon_sym_CARET] = ACTIONS(4987), + [anon_sym__] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym_GT] = ACTIONS(4987), + [anon_sym_BANG] = ACTIONS(4987), + [anon_sym_PIPE] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_SQUOTE] = ACTIONS(4987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(4987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), + [anon_sym_BSLASHbegin] = ACTIONS(4987), + [anon_sym_BSLASHusepackage] = ACTIONS(4987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), + [anon_sym_BSLASHinclude] = ACTIONS(4987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), + [anon_sym_BSLASHinput] = ACTIONS(4987), + [anon_sym_BSLASHsubfile] = ACTIONS(4987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), + [anon_sym_BSLASHbibliography] = ACTIONS(4987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), + [anon_sym_BSLASHincludesvg] = ACTIONS(4987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), + [anon_sym_BSLASHimport] = ACTIONS(4987), + [anon_sym_BSLASHsubimport] = ACTIONS(4987), + [anon_sym_BSLASHinputfrom] = ACTIONS(4987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), + [anon_sym_BSLASHincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHcaption] = ACTIONS(4987), + [anon_sym_BSLASHcite] = ACTIONS(4987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCite] = ACTIONS(4987), + [anon_sym_BSLASHnocite] = ACTIONS(4987), + [anon_sym_BSLASHcitet] = ACTIONS(4987), + [anon_sym_BSLASHcitep] = ACTIONS(4987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteauthor] = ACTIONS(4987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitetitle] = ACTIONS(4987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteyear] = ACTIONS(4987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitedate] = ACTIONS(4987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteurl] = ACTIONS(4987), + [anon_sym_BSLASHfullcite] = ACTIONS(4987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), + [anon_sym_BSLASHcitealt] = ACTIONS(4987), + [anon_sym_BSLASHcitealp] = ACTIONS(4987), + [anon_sym_BSLASHcitetext] = ACTIONS(4987), + [anon_sym_BSLASHparencite] = ACTIONS(4987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHParencite] = ACTIONS(4987), + [anon_sym_BSLASHfootcite] = ACTIONS(4987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), + [anon_sym_BSLASHtextcite] = ACTIONS(4987), + [anon_sym_BSLASHTextcite] = ACTIONS(4987), + [anon_sym_BSLASHsmartcite] = ACTIONS(4987), + [anon_sym_BSLASHSmartcite] = ACTIONS(4987), + [anon_sym_BSLASHsupercite] = ACTIONS(4987), + [anon_sym_BSLASHautocite] = ACTIONS(4987), + [anon_sym_BSLASHAutocite] = ACTIONS(4987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHvolcite] = ACTIONS(4987), + [anon_sym_BSLASHVolcite] = ACTIONS(4987), + [anon_sym_BSLASHpvolcite] = ACTIONS(4987), + [anon_sym_BSLASHPvolcite] = ACTIONS(4987), + [anon_sym_BSLASHfvolcite] = ACTIONS(4987), + [anon_sym_BSLASHftvolcite] = ACTIONS(4987), + [anon_sym_BSLASHsvolcite] = ACTIONS(4987), + [anon_sym_BSLASHSvolcite] = ACTIONS(4987), + [anon_sym_BSLASHtvolcite] = ACTIONS(4987), + [anon_sym_BSLASHTvolcite] = ACTIONS(4987), + [anon_sym_BSLASHavolcite] = ACTIONS(4987), + [anon_sym_BSLASHAvolcite] = ACTIONS(4987), + [anon_sym_BSLASHnotecite] = ACTIONS(4987), + [anon_sym_BSLASHNotecite] = ACTIONS(4987), + [anon_sym_BSLASHpnotecite] = ACTIONS(4987), + [anon_sym_BSLASHPnotecite] = ACTIONS(4987), + [anon_sym_BSLASHfnotecite] = ACTIONS(4987), + [anon_sym_BSLASHlabel] = ACTIONS(4987), + [anon_sym_BSLASHref] = ACTIONS(4987), + [anon_sym_BSLASHeqref] = ACTIONS(4987), + [anon_sym_BSLASHvref] = ACTIONS(4987), + [anon_sym_BSLASHVref] = ACTIONS(4987), + [anon_sym_BSLASHautoref] = ACTIONS(4987), + [anon_sym_BSLASHpageref] = ACTIONS(4987), + [anon_sym_BSLASHcref] = ACTIONS(4987), + [anon_sym_BSLASHCref] = ACTIONS(4987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnameCref] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHlabelcref] = ACTIONS(4987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCrefrange] = ACTIONS(4987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnewlabel] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), + [anon_sym_BSLASHdef] = ACTIONS(4987), + [anon_sym_BSLASHlet] = ACTIONS(4987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), + [anon_sym_BSLASHgls] = ACTIONS(4987), + [anon_sym_BSLASHGls] = ACTIONS(4987), + [anon_sym_BSLASHGLS] = ACTIONS(4987), + [anon_sym_BSLASHglspl] = ACTIONS(4987), + [anon_sym_BSLASHGlspl] = ACTIONS(4987), + [anon_sym_BSLASHGLSpl] = ACTIONS(4987), + [anon_sym_BSLASHglsdisp] = ACTIONS(4987), + [anon_sym_BSLASHglslink] = ACTIONS(4987), + [anon_sym_BSLASHglstext] = ACTIONS(4987), + [anon_sym_BSLASHGlstext] = ACTIONS(4987), + [anon_sym_BSLASHGLStext] = ACTIONS(4987), + [anon_sym_BSLASHglsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), + [anon_sym_BSLASHglsplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSplural] = ACTIONS(4987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHglsname] = ACTIONS(4987), + [anon_sym_BSLASHGlsname] = ACTIONS(4987), + [anon_sym_BSLASHGLSname] = ACTIONS(4987), + [anon_sym_BSLASHglssymbol] = ACTIONS(4987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), + [anon_sym_BSLASHglsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), + [anon_sym_BSLASHglsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), + [anon_sym_BSLASHglsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), + [anon_sym_BSLASHglsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), + [anon_sym_BSLASHglsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), + [anon_sym_BSLASHnewacronym] = ACTIONS(4987), + [anon_sym_BSLASHacrshort] = ACTIONS(4987), + [anon_sym_BSLASHAcrshort] = ACTIONS(4987), + [anon_sym_BSLASHACRshort] = ACTIONS(4987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), + [anon_sym_BSLASHacrlong] = ACTIONS(4987), + [anon_sym_BSLASHAcrlong] = ACTIONS(4987), + [anon_sym_BSLASHACRlong] = ACTIONS(4987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), + [anon_sym_BSLASHacrfull] = ACTIONS(4987), + [anon_sym_BSLASHAcrfull] = ACTIONS(4987), + [anon_sym_BSLASHACRfull] = ACTIONS(4987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), + [anon_sym_BSLASHacs] = ACTIONS(4987), + [anon_sym_BSLASHAcs] = ACTIONS(4987), + [anon_sym_BSLASHacsp] = ACTIONS(4987), + [anon_sym_BSLASHAcsp] = ACTIONS(4987), + [anon_sym_BSLASHacl] = ACTIONS(4987), + [anon_sym_BSLASHAcl] = ACTIONS(4987), + [anon_sym_BSLASHaclp] = ACTIONS(4987), + [anon_sym_BSLASHAclp] = ACTIONS(4987), + [anon_sym_BSLASHacf] = ACTIONS(4987), + [anon_sym_BSLASHAcf] = ACTIONS(4987), + [anon_sym_BSLASHacfp] = ACTIONS(4987), + [anon_sym_BSLASHAcfp] = ACTIONS(4987), + [anon_sym_BSLASHac] = ACTIONS(4987), + [anon_sym_BSLASHAc] = ACTIONS(4987), + [anon_sym_BSLASHacp] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), + [anon_sym_BSLASHcolor] = ACTIONS(4987), + [anon_sym_BSLASHcolorbox] = ACTIONS(4987), + [anon_sym_BSLASHtextcolor] = ACTIONS(4987), + [anon_sym_BSLASHpagecolor] = ACTIONS(4987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), + [anon_sym_BSLASHtext] = ACTIONS(4987), + [anon_sym_BSLASHintertext] = ACTIONS(4987), + [anon_sym_shortintertext] = ACTIONS(4987), }, - [1094] = { - [sym_command_name] = ACTIONS(5135), + [925] = { + [sym_command_name] = ACTIONS(4983), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_BSLASHpart] = ACTIONS(5135), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddpart] = ACTIONS(5135), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHchapter] = ACTIONS(5135), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddchap] = ACTIONS(5135), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsection] = ACTIONS(5135), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddsec] = ACTIONS(5135), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHparagraph] = ACTIONS(5135), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHitem] = ACTIONS(5135), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASHbegin] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [anon_sym_BSLASHiffalse] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_RBRACK] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4981), + [anon_sym_BSLASHpart] = ACTIONS(4983), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddpart] = ACTIONS(4983), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), + [anon_sym_BSLASHchapter] = ACTIONS(4983), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddchap] = ACTIONS(4983), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsection] = ACTIONS(4983), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddsec] = ACTIONS(4983), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubsection] = ACTIONS(4983), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHparagraph] = ACTIONS(4983), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), + [anon_sym_BSLASHitem] = ACTIONS(4983), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4981), + [sym_word] = ACTIONS(4983), + [sym_placeholder] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym__] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_SQUOTE] = ACTIONS(4983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), + [anon_sym_DOLLAR] = ACTIONS(4983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), + [anon_sym_BSLASHbegin] = ACTIONS(4983), + [anon_sym_BSLASHusepackage] = ACTIONS(4983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), + [anon_sym_BSLASHinclude] = ACTIONS(4983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), + [anon_sym_BSLASHinput] = ACTIONS(4983), + [anon_sym_BSLASHsubfile] = ACTIONS(4983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), + [anon_sym_BSLASHbibliography] = ACTIONS(4983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), + [anon_sym_BSLASHincludesvg] = ACTIONS(4983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), + [anon_sym_BSLASHimport] = ACTIONS(4983), + [anon_sym_BSLASHsubimport] = ACTIONS(4983), + [anon_sym_BSLASHinputfrom] = ACTIONS(4983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), + [anon_sym_BSLASHincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHcaption] = ACTIONS(4983), + [anon_sym_BSLASHcite] = ACTIONS(4983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCite] = ACTIONS(4983), + [anon_sym_BSLASHnocite] = ACTIONS(4983), + [anon_sym_BSLASHcitet] = ACTIONS(4983), + [anon_sym_BSLASHcitep] = ACTIONS(4983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteauthor] = ACTIONS(4983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitetitle] = ACTIONS(4983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteyear] = ACTIONS(4983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitedate] = ACTIONS(4983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteurl] = ACTIONS(4983), + [anon_sym_BSLASHfullcite] = ACTIONS(4983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), + [anon_sym_BSLASHcitealt] = ACTIONS(4983), + [anon_sym_BSLASHcitealp] = ACTIONS(4983), + [anon_sym_BSLASHcitetext] = ACTIONS(4983), + [anon_sym_BSLASHparencite] = ACTIONS(4983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHParencite] = ACTIONS(4983), + [anon_sym_BSLASHfootcite] = ACTIONS(4983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), + [anon_sym_BSLASHtextcite] = ACTIONS(4983), + [anon_sym_BSLASHTextcite] = ACTIONS(4983), + [anon_sym_BSLASHsmartcite] = ACTIONS(4983), + [anon_sym_BSLASHSmartcite] = ACTIONS(4983), + [anon_sym_BSLASHsupercite] = ACTIONS(4983), + [anon_sym_BSLASHautocite] = ACTIONS(4983), + [anon_sym_BSLASHAutocite] = ACTIONS(4983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHvolcite] = ACTIONS(4983), + [anon_sym_BSLASHVolcite] = ACTIONS(4983), + [anon_sym_BSLASHpvolcite] = ACTIONS(4983), + [anon_sym_BSLASHPvolcite] = ACTIONS(4983), + [anon_sym_BSLASHfvolcite] = ACTIONS(4983), + [anon_sym_BSLASHftvolcite] = ACTIONS(4983), + [anon_sym_BSLASHsvolcite] = ACTIONS(4983), + [anon_sym_BSLASHSvolcite] = ACTIONS(4983), + [anon_sym_BSLASHtvolcite] = ACTIONS(4983), + [anon_sym_BSLASHTvolcite] = ACTIONS(4983), + [anon_sym_BSLASHavolcite] = ACTIONS(4983), + [anon_sym_BSLASHAvolcite] = ACTIONS(4983), + [anon_sym_BSLASHnotecite] = ACTIONS(4983), + [anon_sym_BSLASHNotecite] = ACTIONS(4983), + [anon_sym_BSLASHpnotecite] = ACTIONS(4983), + [anon_sym_BSLASHPnotecite] = ACTIONS(4983), + [anon_sym_BSLASHfnotecite] = ACTIONS(4983), + [anon_sym_BSLASHlabel] = ACTIONS(4983), + [anon_sym_BSLASHref] = ACTIONS(4983), + [anon_sym_BSLASHeqref] = ACTIONS(4983), + [anon_sym_BSLASHvref] = ACTIONS(4983), + [anon_sym_BSLASHVref] = ACTIONS(4983), + [anon_sym_BSLASHautoref] = ACTIONS(4983), + [anon_sym_BSLASHpageref] = ACTIONS(4983), + [anon_sym_BSLASHcref] = ACTIONS(4983), + [anon_sym_BSLASHCref] = ACTIONS(4983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnameCref] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHlabelcref] = ACTIONS(4983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCrefrange] = ACTIONS(4983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnewlabel] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), + [anon_sym_BSLASHdef] = ACTIONS(4983), + [anon_sym_BSLASHlet] = ACTIONS(4983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), + [anon_sym_BSLASHgls] = ACTIONS(4983), + [anon_sym_BSLASHGls] = ACTIONS(4983), + [anon_sym_BSLASHGLS] = ACTIONS(4983), + [anon_sym_BSLASHglspl] = ACTIONS(4983), + [anon_sym_BSLASHGlspl] = ACTIONS(4983), + [anon_sym_BSLASHGLSpl] = ACTIONS(4983), + [anon_sym_BSLASHglsdisp] = ACTIONS(4983), + [anon_sym_BSLASHglslink] = ACTIONS(4983), + [anon_sym_BSLASHglstext] = ACTIONS(4983), + [anon_sym_BSLASHGlstext] = ACTIONS(4983), + [anon_sym_BSLASHGLStext] = ACTIONS(4983), + [anon_sym_BSLASHglsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), + [anon_sym_BSLASHglsplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSplural] = ACTIONS(4983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHglsname] = ACTIONS(4983), + [anon_sym_BSLASHGlsname] = ACTIONS(4983), + [anon_sym_BSLASHGLSname] = ACTIONS(4983), + [anon_sym_BSLASHglssymbol] = ACTIONS(4983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), + [anon_sym_BSLASHglsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), + [anon_sym_BSLASHglsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), + [anon_sym_BSLASHglsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), + [anon_sym_BSLASHglsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), + [anon_sym_BSLASHglsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), + [anon_sym_BSLASHnewacronym] = ACTIONS(4983), + [anon_sym_BSLASHacrshort] = ACTIONS(4983), + [anon_sym_BSLASHAcrshort] = ACTIONS(4983), + [anon_sym_BSLASHACRshort] = ACTIONS(4983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), + [anon_sym_BSLASHacrlong] = ACTIONS(4983), + [anon_sym_BSLASHAcrlong] = ACTIONS(4983), + [anon_sym_BSLASHACRlong] = ACTIONS(4983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), + [anon_sym_BSLASHacrfull] = ACTIONS(4983), + [anon_sym_BSLASHAcrfull] = ACTIONS(4983), + [anon_sym_BSLASHACRfull] = ACTIONS(4983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), + [anon_sym_BSLASHacs] = ACTIONS(4983), + [anon_sym_BSLASHAcs] = ACTIONS(4983), + [anon_sym_BSLASHacsp] = ACTIONS(4983), + [anon_sym_BSLASHAcsp] = ACTIONS(4983), + [anon_sym_BSLASHacl] = ACTIONS(4983), + [anon_sym_BSLASHAcl] = ACTIONS(4983), + [anon_sym_BSLASHaclp] = ACTIONS(4983), + [anon_sym_BSLASHAclp] = ACTIONS(4983), + [anon_sym_BSLASHacf] = ACTIONS(4983), + [anon_sym_BSLASHAcf] = ACTIONS(4983), + [anon_sym_BSLASHacfp] = ACTIONS(4983), + [anon_sym_BSLASHAcfp] = ACTIONS(4983), + [anon_sym_BSLASHac] = ACTIONS(4983), + [anon_sym_BSLASHAc] = ACTIONS(4983), + [anon_sym_BSLASHacp] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), + [anon_sym_BSLASHcolor] = ACTIONS(4983), + [anon_sym_BSLASHcolorbox] = ACTIONS(4983), + [anon_sym_BSLASHtextcolor] = ACTIONS(4983), + [anon_sym_BSLASHpagecolor] = ACTIONS(4983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHtext] = ACTIONS(4983), + [anon_sym_BSLASHintertext] = ACTIONS(4983), + [anon_sym_shortintertext] = ACTIONS(4983), }, - [1095] = { - [sym_command_name] = ACTIONS(5125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_BSLASHpart] = ACTIONS(5125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddpart] = ACTIONS(5125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHchapter] = ACTIONS(5125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddchap] = ACTIONS(5125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsection] = ACTIONS(5125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddsec] = ACTIONS(5125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHparagraph] = ACTIONS(5125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHitem] = ACTIONS(5125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASHbegin] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), + [926] = { + [sym_command_name] = ACTIONS(4973), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4971), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), + [anon_sym_RBRACK] = ACTIONS(4971), + [anon_sym_COMMA] = ACTIONS(4971), + [anon_sym_EQ] = ACTIONS(4971), + [anon_sym_BSLASHpart] = ACTIONS(4973), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddpart] = ACTIONS(4973), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4971), + [anon_sym_BSLASHchapter] = ACTIONS(4973), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddchap] = ACTIONS(4973), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsection] = ACTIONS(4973), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddsec] = ACTIONS(4973), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubsection] = ACTIONS(4973), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4973), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHparagraph] = ACTIONS(4973), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4973), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4971), + [anon_sym_BSLASHitem] = ACTIONS(4973), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4971), + [anon_sym_LBRACE] = ACTIONS(4971), + [sym_word] = ACTIONS(4973), + [sym_placeholder] = ACTIONS(4971), + [anon_sym_PLUS] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym__] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4973), + [anon_sym_GT] = ACTIONS(4973), + [anon_sym_BANG] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_SQUOTE] = ACTIONS(4973), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), + [anon_sym_DOLLAR] = ACTIONS(4973), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), + [anon_sym_BSLASHbegin] = ACTIONS(4973), + [anon_sym_BSLASHusepackage] = ACTIONS(4973), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), + [anon_sym_BSLASHinclude] = ACTIONS(4973), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), + [anon_sym_BSLASHinput] = ACTIONS(4973), + [anon_sym_BSLASHsubfile] = ACTIONS(4973), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), + [anon_sym_BSLASHbibliography] = ACTIONS(4973), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), + [anon_sym_BSLASHincludesvg] = ACTIONS(4973), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), + [anon_sym_BSLASHimport] = ACTIONS(4973), + [anon_sym_BSLASHsubimport] = ACTIONS(4973), + [anon_sym_BSLASHinputfrom] = ACTIONS(4973), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), + [anon_sym_BSLASHincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHcaption] = ACTIONS(4973), + [anon_sym_BSLASHcite] = ACTIONS(4973), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCite] = ACTIONS(4973), + [anon_sym_BSLASHnocite] = ACTIONS(4973), + [anon_sym_BSLASHcitet] = ACTIONS(4973), + [anon_sym_BSLASHcitep] = ACTIONS(4973), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteauthor] = ACTIONS(4973), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitetitle] = ACTIONS(4973), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteyear] = ACTIONS(4973), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitedate] = ACTIONS(4973), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteurl] = ACTIONS(4973), + [anon_sym_BSLASHfullcite] = ACTIONS(4973), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), + [anon_sym_BSLASHcitealt] = ACTIONS(4973), + [anon_sym_BSLASHcitealp] = ACTIONS(4973), + [anon_sym_BSLASHcitetext] = ACTIONS(4973), + [anon_sym_BSLASHparencite] = ACTIONS(4973), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHParencite] = ACTIONS(4973), + [anon_sym_BSLASHfootcite] = ACTIONS(4973), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), + [anon_sym_BSLASHtextcite] = ACTIONS(4973), + [anon_sym_BSLASHTextcite] = ACTIONS(4973), + [anon_sym_BSLASHsmartcite] = ACTIONS(4973), + [anon_sym_BSLASHSmartcite] = ACTIONS(4973), + [anon_sym_BSLASHsupercite] = ACTIONS(4973), + [anon_sym_BSLASHautocite] = ACTIONS(4973), + [anon_sym_BSLASHAutocite] = ACTIONS(4973), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHvolcite] = ACTIONS(4973), + [anon_sym_BSLASHVolcite] = ACTIONS(4973), + [anon_sym_BSLASHpvolcite] = ACTIONS(4973), + [anon_sym_BSLASHPvolcite] = ACTIONS(4973), + [anon_sym_BSLASHfvolcite] = ACTIONS(4973), + [anon_sym_BSLASHftvolcite] = ACTIONS(4973), + [anon_sym_BSLASHsvolcite] = ACTIONS(4973), + [anon_sym_BSLASHSvolcite] = ACTIONS(4973), + [anon_sym_BSLASHtvolcite] = ACTIONS(4973), + [anon_sym_BSLASHTvolcite] = ACTIONS(4973), + [anon_sym_BSLASHavolcite] = ACTIONS(4973), + [anon_sym_BSLASHAvolcite] = ACTIONS(4973), + [anon_sym_BSLASHnotecite] = ACTIONS(4973), + [anon_sym_BSLASHNotecite] = ACTIONS(4973), + [anon_sym_BSLASHpnotecite] = ACTIONS(4973), + [anon_sym_BSLASHPnotecite] = ACTIONS(4973), + [anon_sym_BSLASHfnotecite] = ACTIONS(4973), + [anon_sym_BSLASHlabel] = ACTIONS(4973), + [anon_sym_BSLASHref] = ACTIONS(4973), + [anon_sym_BSLASHeqref] = ACTIONS(4973), + [anon_sym_BSLASHvref] = ACTIONS(4973), + [anon_sym_BSLASHVref] = ACTIONS(4973), + [anon_sym_BSLASHautoref] = ACTIONS(4973), + [anon_sym_BSLASHpageref] = ACTIONS(4973), + [anon_sym_BSLASHcref] = ACTIONS(4973), + [anon_sym_BSLASHCref] = ACTIONS(4973), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnameCref] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHlabelcref] = ACTIONS(4973), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCrefrange] = ACTIONS(4973), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnewlabel] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), + [anon_sym_BSLASHdef] = ACTIONS(4973), + [anon_sym_BSLASHlet] = ACTIONS(4973), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), + [anon_sym_BSLASHgls] = ACTIONS(4973), + [anon_sym_BSLASHGls] = ACTIONS(4973), + [anon_sym_BSLASHGLS] = ACTIONS(4973), + [anon_sym_BSLASHglspl] = ACTIONS(4973), + [anon_sym_BSLASHGlspl] = ACTIONS(4973), + [anon_sym_BSLASHGLSpl] = ACTIONS(4973), + [anon_sym_BSLASHglsdisp] = ACTIONS(4973), + [anon_sym_BSLASHglslink] = ACTIONS(4973), + [anon_sym_BSLASHglstext] = ACTIONS(4973), + [anon_sym_BSLASHGlstext] = ACTIONS(4973), + [anon_sym_BSLASHGLStext] = ACTIONS(4973), + [anon_sym_BSLASHglsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), + [anon_sym_BSLASHglsplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSplural] = ACTIONS(4973), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHglsname] = ACTIONS(4973), + [anon_sym_BSLASHGlsname] = ACTIONS(4973), + [anon_sym_BSLASHGLSname] = ACTIONS(4973), + [anon_sym_BSLASHglssymbol] = ACTIONS(4973), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), + [anon_sym_BSLASHglsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), + [anon_sym_BSLASHglsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), + [anon_sym_BSLASHglsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), + [anon_sym_BSLASHglsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), + [anon_sym_BSLASHglsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), + [anon_sym_BSLASHnewacronym] = ACTIONS(4973), + [anon_sym_BSLASHacrshort] = ACTIONS(4973), + [anon_sym_BSLASHAcrshort] = ACTIONS(4973), + [anon_sym_BSLASHACRshort] = ACTIONS(4973), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), + [anon_sym_BSLASHacrlong] = ACTIONS(4973), + [anon_sym_BSLASHAcrlong] = ACTIONS(4973), + [anon_sym_BSLASHACRlong] = ACTIONS(4973), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), + [anon_sym_BSLASHacrfull] = ACTIONS(4973), + [anon_sym_BSLASHAcrfull] = ACTIONS(4973), + [anon_sym_BSLASHACRfull] = ACTIONS(4973), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), + [anon_sym_BSLASHacs] = ACTIONS(4973), + [anon_sym_BSLASHAcs] = ACTIONS(4973), + [anon_sym_BSLASHacsp] = ACTIONS(4973), + [anon_sym_BSLASHAcsp] = ACTIONS(4973), + [anon_sym_BSLASHacl] = ACTIONS(4973), + [anon_sym_BSLASHAcl] = ACTIONS(4973), + [anon_sym_BSLASHaclp] = ACTIONS(4973), + [anon_sym_BSLASHAclp] = ACTIONS(4973), + [anon_sym_BSLASHacf] = ACTIONS(4973), + [anon_sym_BSLASHAcf] = ACTIONS(4973), + [anon_sym_BSLASHacfp] = ACTIONS(4973), + [anon_sym_BSLASHAcfp] = ACTIONS(4973), + [anon_sym_BSLASHac] = ACTIONS(4973), + [anon_sym_BSLASHAc] = ACTIONS(4973), + [anon_sym_BSLASHacp] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), + [anon_sym_BSLASHcolor] = ACTIONS(4973), + [anon_sym_BSLASHcolorbox] = ACTIONS(4973), + [anon_sym_BSLASHtextcolor] = ACTIONS(4973), + [anon_sym_BSLASHpagecolor] = ACTIONS(4973), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), + [anon_sym_BSLASHtext] = ACTIONS(4973), + [anon_sym_BSLASHintertext] = ACTIONS(4973), + [anon_sym_shortintertext] = ACTIONS(4973), }, - [1096] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_BSLASHpart] = ACTIONS(5175), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddpart] = ACTIONS(5175), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHchapter] = ACTIONS(5175), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddchap] = ACTIONS(5175), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsection] = ACTIONS(5175), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddsec] = ACTIONS(5175), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHparagraph] = ACTIONS(5175), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHitem] = ACTIONS(5175), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASHbegin] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), + [927] = { + [sym_command_name] = ACTIONS(4969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_EQ] = ACTIONS(4967), + [anon_sym_BSLASHpart] = ACTIONS(4969), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddpart] = ACTIONS(4969), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4967), + [anon_sym_BSLASHchapter] = ACTIONS(4969), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddchap] = ACTIONS(4969), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsection] = ACTIONS(4969), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddsec] = ACTIONS(4969), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubsection] = ACTIONS(4969), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4969), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHparagraph] = ACTIONS(4969), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4969), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4967), + [anon_sym_BSLASHitem] = ACTIONS(4969), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4967), + [sym_word] = ACTIONS(4969), + [sym_placeholder] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_CARET] = ACTIONS(4969), + [anon_sym__] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_COLON] = ACTIONS(4969), + [anon_sym_SQUOTE] = ACTIONS(4969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), + [anon_sym_BSLASHbegin] = ACTIONS(4969), + [anon_sym_BSLASHusepackage] = ACTIONS(4969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), + [anon_sym_BSLASHinclude] = ACTIONS(4969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), + [anon_sym_BSLASHinput] = ACTIONS(4969), + [anon_sym_BSLASHsubfile] = ACTIONS(4969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), + [anon_sym_BSLASHbibliography] = ACTIONS(4969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), + [anon_sym_BSLASHincludesvg] = ACTIONS(4969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), + [anon_sym_BSLASHimport] = ACTIONS(4969), + [anon_sym_BSLASHsubimport] = ACTIONS(4969), + [anon_sym_BSLASHinputfrom] = ACTIONS(4969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), + [anon_sym_BSLASHincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHcaption] = ACTIONS(4969), + [anon_sym_BSLASHcite] = ACTIONS(4969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCite] = ACTIONS(4969), + [anon_sym_BSLASHnocite] = ACTIONS(4969), + [anon_sym_BSLASHcitet] = ACTIONS(4969), + [anon_sym_BSLASHcitep] = ACTIONS(4969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteauthor] = ACTIONS(4969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitetitle] = ACTIONS(4969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteyear] = ACTIONS(4969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitedate] = ACTIONS(4969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteurl] = ACTIONS(4969), + [anon_sym_BSLASHfullcite] = ACTIONS(4969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), + [anon_sym_BSLASHcitealt] = ACTIONS(4969), + [anon_sym_BSLASHcitealp] = ACTIONS(4969), + [anon_sym_BSLASHcitetext] = ACTIONS(4969), + [anon_sym_BSLASHparencite] = ACTIONS(4969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHParencite] = ACTIONS(4969), + [anon_sym_BSLASHfootcite] = ACTIONS(4969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), + [anon_sym_BSLASHtextcite] = ACTIONS(4969), + [anon_sym_BSLASHTextcite] = ACTIONS(4969), + [anon_sym_BSLASHsmartcite] = ACTIONS(4969), + [anon_sym_BSLASHSmartcite] = ACTIONS(4969), + [anon_sym_BSLASHsupercite] = ACTIONS(4969), + [anon_sym_BSLASHautocite] = ACTIONS(4969), + [anon_sym_BSLASHAutocite] = ACTIONS(4969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHvolcite] = ACTIONS(4969), + [anon_sym_BSLASHVolcite] = ACTIONS(4969), + [anon_sym_BSLASHpvolcite] = ACTIONS(4969), + [anon_sym_BSLASHPvolcite] = ACTIONS(4969), + [anon_sym_BSLASHfvolcite] = ACTIONS(4969), + [anon_sym_BSLASHftvolcite] = ACTIONS(4969), + [anon_sym_BSLASHsvolcite] = ACTIONS(4969), + [anon_sym_BSLASHSvolcite] = ACTIONS(4969), + [anon_sym_BSLASHtvolcite] = ACTIONS(4969), + [anon_sym_BSLASHTvolcite] = ACTIONS(4969), + [anon_sym_BSLASHavolcite] = ACTIONS(4969), + [anon_sym_BSLASHAvolcite] = ACTIONS(4969), + [anon_sym_BSLASHnotecite] = ACTIONS(4969), + [anon_sym_BSLASHNotecite] = ACTIONS(4969), + [anon_sym_BSLASHpnotecite] = ACTIONS(4969), + [anon_sym_BSLASHPnotecite] = ACTIONS(4969), + [anon_sym_BSLASHfnotecite] = ACTIONS(4969), + [anon_sym_BSLASHlabel] = ACTIONS(4969), + [anon_sym_BSLASHref] = ACTIONS(4969), + [anon_sym_BSLASHeqref] = ACTIONS(4969), + [anon_sym_BSLASHvref] = ACTIONS(4969), + [anon_sym_BSLASHVref] = ACTIONS(4969), + [anon_sym_BSLASHautoref] = ACTIONS(4969), + [anon_sym_BSLASHpageref] = ACTIONS(4969), + [anon_sym_BSLASHcref] = ACTIONS(4969), + [anon_sym_BSLASHCref] = ACTIONS(4969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnameCref] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHlabelcref] = ACTIONS(4969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCrefrange] = ACTIONS(4969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnewlabel] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), + [anon_sym_BSLASHdef] = ACTIONS(4969), + [anon_sym_BSLASHlet] = ACTIONS(4969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), + [anon_sym_BSLASHgls] = ACTIONS(4969), + [anon_sym_BSLASHGls] = ACTIONS(4969), + [anon_sym_BSLASHGLS] = ACTIONS(4969), + [anon_sym_BSLASHglspl] = ACTIONS(4969), + [anon_sym_BSLASHGlspl] = ACTIONS(4969), + [anon_sym_BSLASHGLSpl] = ACTIONS(4969), + [anon_sym_BSLASHglsdisp] = ACTIONS(4969), + [anon_sym_BSLASHglslink] = ACTIONS(4969), + [anon_sym_BSLASHglstext] = ACTIONS(4969), + [anon_sym_BSLASHGlstext] = ACTIONS(4969), + [anon_sym_BSLASHGLStext] = ACTIONS(4969), + [anon_sym_BSLASHglsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), + [anon_sym_BSLASHglsplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSplural] = ACTIONS(4969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHglsname] = ACTIONS(4969), + [anon_sym_BSLASHGlsname] = ACTIONS(4969), + [anon_sym_BSLASHGLSname] = ACTIONS(4969), + [anon_sym_BSLASHglssymbol] = ACTIONS(4969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), + [anon_sym_BSLASHglsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), + [anon_sym_BSLASHglsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), + [anon_sym_BSLASHglsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), + [anon_sym_BSLASHglsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), + [anon_sym_BSLASHglsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), + [anon_sym_BSLASHnewacronym] = ACTIONS(4969), + [anon_sym_BSLASHacrshort] = ACTIONS(4969), + [anon_sym_BSLASHAcrshort] = ACTIONS(4969), + [anon_sym_BSLASHACRshort] = ACTIONS(4969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), + [anon_sym_BSLASHacrlong] = ACTIONS(4969), + [anon_sym_BSLASHAcrlong] = ACTIONS(4969), + [anon_sym_BSLASHACRlong] = ACTIONS(4969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), + [anon_sym_BSLASHacrfull] = ACTIONS(4969), + [anon_sym_BSLASHAcrfull] = ACTIONS(4969), + [anon_sym_BSLASHACRfull] = ACTIONS(4969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), + [anon_sym_BSLASHacs] = ACTIONS(4969), + [anon_sym_BSLASHAcs] = ACTIONS(4969), + [anon_sym_BSLASHacsp] = ACTIONS(4969), + [anon_sym_BSLASHAcsp] = ACTIONS(4969), + [anon_sym_BSLASHacl] = ACTIONS(4969), + [anon_sym_BSLASHAcl] = ACTIONS(4969), + [anon_sym_BSLASHaclp] = ACTIONS(4969), + [anon_sym_BSLASHAclp] = ACTIONS(4969), + [anon_sym_BSLASHacf] = ACTIONS(4969), + [anon_sym_BSLASHAcf] = ACTIONS(4969), + [anon_sym_BSLASHacfp] = ACTIONS(4969), + [anon_sym_BSLASHAcfp] = ACTIONS(4969), + [anon_sym_BSLASHac] = ACTIONS(4969), + [anon_sym_BSLASHAc] = ACTIONS(4969), + [anon_sym_BSLASHacp] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), + [anon_sym_BSLASHcolor] = ACTIONS(4969), + [anon_sym_BSLASHcolorbox] = ACTIONS(4969), + [anon_sym_BSLASHtextcolor] = ACTIONS(4969), + [anon_sym_BSLASHpagecolor] = ACTIONS(4969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), + [anon_sym_BSLASHtext] = ACTIONS(4969), + [anon_sym_BSLASHintertext] = ACTIONS(4969), + [anon_sym_shortintertext] = ACTIONS(4969), }, - [1097] = { - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_BSLASHpart] = ACTIONS(5121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddpart] = ACTIONS(5121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHchapter] = ACTIONS(5121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddchap] = ACTIONS(5121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsection] = ACTIONS(5121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddsec] = ACTIONS(5121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHparagraph] = ACTIONS(5121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHitem] = ACTIONS(5121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASHbegin] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), + [928] = { + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_BSLASHpart] = ACTIONS(149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddpart] = ACTIONS(149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHchapter] = ACTIONS(149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddchap] = ACTIONS(149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), + [anon_sym_BSLASHsection] = ACTIONS(149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddsec] = ACTIONS(149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHparagraph] = ACTIONS(149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHitem] = ACTIONS(149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_RPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), }, - [1098] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_BSLASHpart] = ACTIONS(5171), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddpart] = ACTIONS(5171), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHchapter] = ACTIONS(5171), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddchap] = ACTIONS(5171), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsection] = ACTIONS(5171), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddsec] = ACTIONS(5171), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHparagraph] = ACTIONS(5171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5171), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHitem] = ACTIONS(5171), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASHbegin] = ACTIONS(5171), - [anon_sym_BSLASHend] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), + [929] = { + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_BSLASHpart] = ACTIONS(133), + [anon_sym_BSLASHpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddpart] = ACTIONS(133), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHchapter] = ACTIONS(133), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddchap] = ACTIONS(133), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), + [anon_sym_BSLASHsection] = ACTIONS(133), + [anon_sym_BSLASHsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddsec] = ACTIONS(133), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHparagraph] = ACTIONS(133), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubparagraph] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHitem] = ACTIONS(133), + [anon_sym_BSLASHitem_STAR] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_RPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), }, - [1099] = { - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_BSLASHpart] = ACTIONS(5163), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddpart] = ACTIONS(5163), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHchapter] = ACTIONS(5163), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddchap] = ACTIONS(5163), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsection] = ACTIONS(5163), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddsec] = ACTIONS(5163), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHparagraph] = ACTIONS(5163), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHitem] = ACTIONS(5163), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5161), - [anon_sym_BSLASHbegin] = ACTIONS(5163), - [anon_sym_BSLASHend] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), + [930] = { + [sym_command_name] = ACTIONS(4925), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_RBRACK] = ACTIONS(4923), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_EQ] = ACTIONS(4923), + [anon_sym_BSLASHpart] = ACTIONS(4925), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddpart] = ACTIONS(4925), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4923), + [anon_sym_BSLASHchapter] = ACTIONS(4925), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddchap] = ACTIONS(4925), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsection] = ACTIONS(4925), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddsec] = ACTIONS(4925), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubsection] = ACTIONS(4925), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4925), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHparagraph] = ACTIONS(4925), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4925), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4923), + [anon_sym_BSLASHitem] = ACTIONS(4925), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4923), + [sym_word] = ACTIONS(4925), + [sym_placeholder] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym__] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_BANG] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_SQUOTE] = ACTIONS(4925), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), + [anon_sym_DOLLAR] = ACTIONS(4925), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), + [anon_sym_BSLASHbegin] = ACTIONS(4925), + [anon_sym_BSLASHusepackage] = ACTIONS(4925), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), + [anon_sym_BSLASHinclude] = ACTIONS(4925), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), + [anon_sym_BSLASHinput] = ACTIONS(4925), + [anon_sym_BSLASHsubfile] = ACTIONS(4925), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), + [anon_sym_BSLASHbibliography] = ACTIONS(4925), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), + [anon_sym_BSLASHincludesvg] = ACTIONS(4925), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), + [anon_sym_BSLASHimport] = ACTIONS(4925), + [anon_sym_BSLASHsubimport] = ACTIONS(4925), + [anon_sym_BSLASHinputfrom] = ACTIONS(4925), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), + [anon_sym_BSLASHincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHcaption] = ACTIONS(4925), + [anon_sym_BSLASHcite] = ACTIONS(4925), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCite] = ACTIONS(4925), + [anon_sym_BSLASHnocite] = ACTIONS(4925), + [anon_sym_BSLASHcitet] = ACTIONS(4925), + [anon_sym_BSLASHcitep] = ACTIONS(4925), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteauthor] = ACTIONS(4925), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitetitle] = ACTIONS(4925), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteyear] = ACTIONS(4925), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitedate] = ACTIONS(4925), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteurl] = ACTIONS(4925), + [anon_sym_BSLASHfullcite] = ACTIONS(4925), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4925), + [anon_sym_BSLASHcitealt] = ACTIONS(4925), + [anon_sym_BSLASHcitealp] = ACTIONS(4925), + [anon_sym_BSLASHcitetext] = ACTIONS(4925), + [anon_sym_BSLASHparencite] = ACTIONS(4925), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHParencite] = ACTIONS(4925), + [anon_sym_BSLASHfootcite] = ACTIONS(4925), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4925), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4925), + [anon_sym_BSLASHtextcite] = ACTIONS(4925), + [anon_sym_BSLASHTextcite] = ACTIONS(4925), + [anon_sym_BSLASHsmartcite] = ACTIONS(4925), + [anon_sym_BSLASHSmartcite] = ACTIONS(4925), + [anon_sym_BSLASHsupercite] = ACTIONS(4925), + [anon_sym_BSLASHautocite] = ACTIONS(4925), + [anon_sym_BSLASHAutocite] = ACTIONS(4925), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHvolcite] = ACTIONS(4925), + [anon_sym_BSLASHVolcite] = ACTIONS(4925), + [anon_sym_BSLASHpvolcite] = ACTIONS(4925), + [anon_sym_BSLASHPvolcite] = ACTIONS(4925), + [anon_sym_BSLASHfvolcite] = ACTIONS(4925), + [anon_sym_BSLASHftvolcite] = ACTIONS(4925), + [anon_sym_BSLASHsvolcite] = ACTIONS(4925), + [anon_sym_BSLASHSvolcite] = ACTIONS(4925), + [anon_sym_BSLASHtvolcite] = ACTIONS(4925), + [anon_sym_BSLASHTvolcite] = ACTIONS(4925), + [anon_sym_BSLASHavolcite] = ACTIONS(4925), + [anon_sym_BSLASHAvolcite] = ACTIONS(4925), + [anon_sym_BSLASHnotecite] = ACTIONS(4925), + [anon_sym_BSLASHNotecite] = ACTIONS(4925), + [anon_sym_BSLASHpnotecite] = ACTIONS(4925), + [anon_sym_BSLASHPnotecite] = ACTIONS(4925), + [anon_sym_BSLASHfnotecite] = ACTIONS(4925), + [anon_sym_BSLASHlabel] = ACTIONS(4925), + [anon_sym_BSLASHref] = ACTIONS(4925), + [anon_sym_BSLASHeqref] = ACTIONS(4925), + [anon_sym_BSLASHvref] = ACTIONS(4925), + [anon_sym_BSLASHVref] = ACTIONS(4925), + [anon_sym_BSLASHautoref] = ACTIONS(4925), + [anon_sym_BSLASHpageref] = ACTIONS(4925), + [anon_sym_BSLASHcref] = ACTIONS(4925), + [anon_sym_BSLASHCref] = ACTIONS(4925), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnameCref] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHlabelcref] = ACTIONS(4925), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCrefrange] = ACTIONS(4925), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnewlabel] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), + [anon_sym_BSLASHdef] = ACTIONS(4925), + [anon_sym_BSLASHlet] = ACTIONS(4925), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), + [anon_sym_BSLASHgls] = ACTIONS(4925), + [anon_sym_BSLASHGls] = ACTIONS(4925), + [anon_sym_BSLASHGLS] = ACTIONS(4925), + [anon_sym_BSLASHglspl] = ACTIONS(4925), + [anon_sym_BSLASHGlspl] = ACTIONS(4925), + [anon_sym_BSLASHGLSpl] = ACTIONS(4925), + [anon_sym_BSLASHglsdisp] = ACTIONS(4925), + [anon_sym_BSLASHglslink] = ACTIONS(4925), + [anon_sym_BSLASHglstext] = ACTIONS(4925), + [anon_sym_BSLASHGlstext] = ACTIONS(4925), + [anon_sym_BSLASHGLStext] = ACTIONS(4925), + [anon_sym_BSLASHglsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), + [anon_sym_BSLASHglsplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSplural] = ACTIONS(4925), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHglsname] = ACTIONS(4925), + [anon_sym_BSLASHGlsname] = ACTIONS(4925), + [anon_sym_BSLASHGLSname] = ACTIONS(4925), + [anon_sym_BSLASHglssymbol] = ACTIONS(4925), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), + [anon_sym_BSLASHglsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), + [anon_sym_BSLASHglsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), + [anon_sym_BSLASHglsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), + [anon_sym_BSLASHglsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), + [anon_sym_BSLASHglsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), + [anon_sym_BSLASHnewacronym] = ACTIONS(4925), + [anon_sym_BSLASHacrshort] = ACTIONS(4925), + [anon_sym_BSLASHAcrshort] = ACTIONS(4925), + [anon_sym_BSLASHACRshort] = ACTIONS(4925), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), + [anon_sym_BSLASHacrlong] = ACTIONS(4925), + [anon_sym_BSLASHAcrlong] = ACTIONS(4925), + [anon_sym_BSLASHACRlong] = ACTIONS(4925), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), + [anon_sym_BSLASHacrfull] = ACTIONS(4925), + [anon_sym_BSLASHAcrfull] = ACTIONS(4925), + [anon_sym_BSLASHACRfull] = ACTIONS(4925), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), + [anon_sym_BSLASHacs] = ACTIONS(4925), + [anon_sym_BSLASHAcs] = ACTIONS(4925), + [anon_sym_BSLASHacsp] = ACTIONS(4925), + [anon_sym_BSLASHAcsp] = ACTIONS(4925), + [anon_sym_BSLASHacl] = ACTIONS(4925), + [anon_sym_BSLASHAcl] = ACTIONS(4925), + [anon_sym_BSLASHaclp] = ACTIONS(4925), + [anon_sym_BSLASHAclp] = ACTIONS(4925), + [anon_sym_BSLASHacf] = ACTIONS(4925), + [anon_sym_BSLASHAcf] = ACTIONS(4925), + [anon_sym_BSLASHacfp] = ACTIONS(4925), + [anon_sym_BSLASHAcfp] = ACTIONS(4925), + [anon_sym_BSLASHac] = ACTIONS(4925), + [anon_sym_BSLASHAc] = ACTIONS(4925), + [anon_sym_BSLASHacp] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), + [anon_sym_BSLASHcolor] = ACTIONS(4925), + [anon_sym_BSLASHcolorbox] = ACTIONS(4925), + [anon_sym_BSLASHtextcolor] = ACTIONS(4925), + [anon_sym_BSLASHpagecolor] = ACTIONS(4925), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), + [anon_sym_BSLASHtext] = ACTIONS(4925), + [anon_sym_BSLASHintertext] = ACTIONS(4925), + [anon_sym_shortintertext] = ACTIONS(4925), }, - [1100] = { - [sym_command_name] = ACTIONS(5155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5153), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_BSLASHpart] = ACTIONS(5155), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddpart] = ACTIONS(5155), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHchapter] = ACTIONS(5155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddchap] = ACTIONS(5155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsection] = ACTIONS(5155), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddsec] = ACTIONS(5155), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHparagraph] = ACTIONS(5155), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHitem] = ACTIONS(5155), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5153), - [sym_word] = ACTIONS(5155), - [sym_placeholder] = ACTIONS(5153), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5155), - [anon_sym__] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5155), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5153), - [anon_sym_BSLASHbegin] = ACTIONS(5155), - [anon_sym_BSLASHend] = ACTIONS(5155), - [anon_sym_BSLASHusepackage] = ACTIONS(5155), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5155), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5155), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5155), - [anon_sym_BSLASHbibliography] = ACTIONS(5155), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5155), - [anon_sym_BSLASHincludesvg] = ACTIONS(5155), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5155), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5155), - [anon_sym_BSLASHimport] = ACTIONS(5155), - [anon_sym_BSLASHsubimport] = ACTIONS(5155), - [anon_sym_BSLASHinputfrom] = ACTIONS(5155), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5155), - [anon_sym_BSLASHincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHcaption] = ACTIONS(5155), - [anon_sym_BSLASHcite] = ACTIONS(5155), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCite] = ACTIONS(5155), - [anon_sym_BSLASHnocite] = ACTIONS(5155), - [anon_sym_BSLASHcitet] = ACTIONS(5155), - [anon_sym_BSLASHcitep] = ACTIONS(5155), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteyear] = ACTIONS(5155), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitedate] = ACTIONS(5155), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteurl] = ACTIONS(5155), - [anon_sym_BSLASHfullcite] = ACTIONS(5155), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5155), - [anon_sym_BSLASHcitealt] = ACTIONS(5155), - [anon_sym_BSLASHcitealp] = ACTIONS(5155), - [anon_sym_BSLASHcitetext] = ACTIONS(5155), - [anon_sym_BSLASHparencite] = ACTIONS(5155), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHParencite] = ACTIONS(5155), - [anon_sym_BSLASHfootcite] = ACTIONS(5155), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5155), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5155), - [anon_sym_BSLASHtextcite] = ACTIONS(5155), - [anon_sym_BSLASHTextcite] = ACTIONS(5155), - [anon_sym_BSLASHsmartcite] = ACTIONS(5155), - [anon_sym_BSLASHSmartcite] = ACTIONS(5155), - [anon_sym_BSLASHsupercite] = ACTIONS(5155), - [anon_sym_BSLASHautocite] = ACTIONS(5155), - [anon_sym_BSLASHAutocite] = ACTIONS(5155), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHvolcite] = ACTIONS(5155), - [anon_sym_BSLASHVolcite] = ACTIONS(5155), - [anon_sym_BSLASHpvolcite] = ACTIONS(5155), - [anon_sym_BSLASHPvolcite] = ACTIONS(5155), - [anon_sym_BSLASHfvolcite] = ACTIONS(5155), - [anon_sym_BSLASHftvolcite] = ACTIONS(5155), - [anon_sym_BSLASHsvolcite] = ACTIONS(5155), - [anon_sym_BSLASHSvolcite] = ACTIONS(5155), - [anon_sym_BSLASHtvolcite] = ACTIONS(5155), - [anon_sym_BSLASHTvolcite] = ACTIONS(5155), - [anon_sym_BSLASHavolcite] = ACTIONS(5155), - [anon_sym_BSLASHAvolcite] = ACTIONS(5155), - [anon_sym_BSLASHnotecite] = ACTIONS(5155), - [anon_sym_BSLASHNotecite] = ACTIONS(5155), - [anon_sym_BSLASHpnotecite] = ACTIONS(5155), - [anon_sym_BSLASHPnotecite] = ACTIONS(5155), - [anon_sym_BSLASHfnotecite] = ACTIONS(5155), - [anon_sym_BSLASHlabel] = ACTIONS(5155), - [anon_sym_BSLASHref] = ACTIONS(5155), - [anon_sym_BSLASHeqref] = ACTIONS(5155), - [anon_sym_BSLASHvref] = ACTIONS(5155), - [anon_sym_BSLASHVref] = ACTIONS(5155), - [anon_sym_BSLASHautoref] = ACTIONS(5155), - [anon_sym_BSLASHpageref] = ACTIONS(5155), - [anon_sym_BSLASHcref] = ACTIONS(5155), - [anon_sym_BSLASHCref] = ACTIONS(5155), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnameCref] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHlabelcref] = ACTIONS(5155), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnewlabel] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdef] = ACTIONS(5155), - [anon_sym_BSLASHlet] = ACTIONS(5155), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5155), - [anon_sym_BSLASHgls] = ACTIONS(5155), - [anon_sym_BSLASHGls] = ACTIONS(5155), - [anon_sym_BSLASHGLS] = ACTIONS(5155), - [anon_sym_BSLASHglspl] = ACTIONS(5155), - [anon_sym_BSLASHGlspl] = ACTIONS(5155), - [anon_sym_BSLASHGLSpl] = ACTIONS(5155), - [anon_sym_BSLASHglsdisp] = ACTIONS(5155), - [anon_sym_BSLASHglslink] = ACTIONS(5155), - [anon_sym_BSLASHglstext] = ACTIONS(5155), - [anon_sym_BSLASHGlstext] = ACTIONS(5155), - [anon_sym_BSLASHGLStext] = ACTIONS(5155), - [anon_sym_BSLASHglsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5155), - [anon_sym_BSLASHglsplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSplural] = ACTIONS(5155), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHglsname] = ACTIONS(5155), - [anon_sym_BSLASHGlsname] = ACTIONS(5155), - [anon_sym_BSLASHGLSname] = ACTIONS(5155), - [anon_sym_BSLASHglssymbol] = ACTIONS(5155), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5155), - [anon_sym_BSLASHglsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5155), - [anon_sym_BSLASHglsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5155), - [anon_sym_BSLASHglsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5155), - [anon_sym_BSLASHglsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5155), - [anon_sym_BSLASHglsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5155), - [anon_sym_BSLASHnewacronym] = ACTIONS(5155), - [anon_sym_BSLASHacrshort] = ACTIONS(5155), - [anon_sym_BSLASHAcrshort] = ACTIONS(5155), - [anon_sym_BSLASHACRshort] = ACTIONS(5155), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5155), - [anon_sym_BSLASHacrlong] = ACTIONS(5155), - [anon_sym_BSLASHAcrlong] = ACTIONS(5155), - [anon_sym_BSLASHACRlong] = ACTIONS(5155), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5155), - [anon_sym_BSLASHacrfull] = ACTIONS(5155), - [anon_sym_BSLASHAcrfull] = ACTIONS(5155), - [anon_sym_BSLASHACRfull] = ACTIONS(5155), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5155), - [anon_sym_BSLASHacs] = ACTIONS(5155), - [anon_sym_BSLASHAcs] = ACTIONS(5155), - [anon_sym_BSLASHacsp] = ACTIONS(5155), - [anon_sym_BSLASHAcsp] = ACTIONS(5155), - [anon_sym_BSLASHacl] = ACTIONS(5155), - [anon_sym_BSLASHAcl] = ACTIONS(5155), - [anon_sym_BSLASHaclp] = ACTIONS(5155), - [anon_sym_BSLASHAclp] = ACTIONS(5155), - [anon_sym_BSLASHacf] = ACTIONS(5155), - [anon_sym_BSLASHAcf] = ACTIONS(5155), - [anon_sym_BSLASHacfp] = ACTIONS(5155), - [anon_sym_BSLASHAcfp] = ACTIONS(5155), - [anon_sym_BSLASHac] = ACTIONS(5155), - [anon_sym_BSLASHAc] = ACTIONS(5155), - [anon_sym_BSLASHacp] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), - [anon_sym_BSLASHcolor] = ACTIONS(5155), - [anon_sym_BSLASHcolorbox] = ACTIONS(5155), - [anon_sym_BSLASHtextcolor] = ACTIONS(5155), - [anon_sym_BSLASHpagecolor] = ACTIONS(5155), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5155), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5155), + [931] = { + [sym_command_name] = ACTIONS(4921), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4921), + [anon_sym_LPAREN] = ACTIONS(4919), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_RBRACK] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4919), + [anon_sym_BSLASHpart] = ACTIONS(4921), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddpart] = ACTIONS(4921), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4919), + [anon_sym_BSLASHchapter] = ACTIONS(4921), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddchap] = ACTIONS(4921), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsection] = ACTIONS(4921), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddsec] = ACTIONS(4921), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubsection] = ACTIONS(4921), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4921), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHparagraph] = ACTIONS(4921), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4921), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4919), + [anon_sym_BSLASHitem] = ACTIONS(4921), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4919), + [anon_sym_LBRACE] = ACTIONS(4919), + [sym_word] = ACTIONS(4921), + [sym_placeholder] = ACTIONS(4919), + [anon_sym_PLUS] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4921), + [anon_sym_CARET] = ACTIONS(4921), + [anon_sym__] = ACTIONS(4921), + [anon_sym_LT] = ACTIONS(4921), + [anon_sym_GT] = ACTIONS(4921), + [anon_sym_BANG] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_COLON] = ACTIONS(4921), + [anon_sym_SQUOTE] = ACTIONS(4921), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), + [anon_sym_DOLLAR] = ACTIONS(4921), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), + [anon_sym_BSLASHbegin] = ACTIONS(4921), + [anon_sym_BSLASHusepackage] = ACTIONS(4921), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), + [anon_sym_BSLASHinclude] = ACTIONS(4921), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), + [anon_sym_BSLASHinput] = ACTIONS(4921), + [anon_sym_BSLASHsubfile] = ACTIONS(4921), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), + [anon_sym_BSLASHbibliography] = ACTIONS(4921), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), + [anon_sym_BSLASHincludesvg] = ACTIONS(4921), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), + [anon_sym_BSLASHimport] = ACTIONS(4921), + [anon_sym_BSLASHsubimport] = ACTIONS(4921), + [anon_sym_BSLASHinputfrom] = ACTIONS(4921), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), + [anon_sym_BSLASHincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHcaption] = ACTIONS(4921), + [anon_sym_BSLASHcite] = ACTIONS(4921), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCite] = ACTIONS(4921), + [anon_sym_BSLASHnocite] = ACTIONS(4921), + [anon_sym_BSLASHcitet] = ACTIONS(4921), + [anon_sym_BSLASHcitep] = ACTIONS(4921), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteauthor] = ACTIONS(4921), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitetitle] = ACTIONS(4921), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteyear] = ACTIONS(4921), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitedate] = ACTIONS(4921), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteurl] = ACTIONS(4921), + [anon_sym_BSLASHfullcite] = ACTIONS(4921), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), + [anon_sym_BSLASHcitealt] = ACTIONS(4921), + [anon_sym_BSLASHcitealp] = ACTIONS(4921), + [anon_sym_BSLASHcitetext] = ACTIONS(4921), + [anon_sym_BSLASHparencite] = ACTIONS(4921), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHParencite] = ACTIONS(4921), + [anon_sym_BSLASHfootcite] = ACTIONS(4921), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), + [anon_sym_BSLASHtextcite] = ACTIONS(4921), + [anon_sym_BSLASHTextcite] = ACTIONS(4921), + [anon_sym_BSLASHsmartcite] = ACTIONS(4921), + [anon_sym_BSLASHSmartcite] = ACTIONS(4921), + [anon_sym_BSLASHsupercite] = ACTIONS(4921), + [anon_sym_BSLASHautocite] = ACTIONS(4921), + [anon_sym_BSLASHAutocite] = ACTIONS(4921), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHvolcite] = ACTIONS(4921), + [anon_sym_BSLASHVolcite] = ACTIONS(4921), + [anon_sym_BSLASHpvolcite] = ACTIONS(4921), + [anon_sym_BSLASHPvolcite] = ACTIONS(4921), + [anon_sym_BSLASHfvolcite] = ACTIONS(4921), + [anon_sym_BSLASHftvolcite] = ACTIONS(4921), + [anon_sym_BSLASHsvolcite] = ACTIONS(4921), + [anon_sym_BSLASHSvolcite] = ACTIONS(4921), + [anon_sym_BSLASHtvolcite] = ACTIONS(4921), + [anon_sym_BSLASHTvolcite] = ACTIONS(4921), + [anon_sym_BSLASHavolcite] = ACTIONS(4921), + [anon_sym_BSLASHAvolcite] = ACTIONS(4921), + [anon_sym_BSLASHnotecite] = ACTIONS(4921), + [anon_sym_BSLASHNotecite] = ACTIONS(4921), + [anon_sym_BSLASHpnotecite] = ACTIONS(4921), + [anon_sym_BSLASHPnotecite] = ACTIONS(4921), + [anon_sym_BSLASHfnotecite] = ACTIONS(4921), + [anon_sym_BSLASHlabel] = ACTIONS(4921), + [anon_sym_BSLASHref] = ACTIONS(4921), + [anon_sym_BSLASHeqref] = ACTIONS(4921), + [anon_sym_BSLASHvref] = ACTIONS(4921), + [anon_sym_BSLASHVref] = ACTIONS(4921), + [anon_sym_BSLASHautoref] = ACTIONS(4921), + [anon_sym_BSLASHpageref] = ACTIONS(4921), + [anon_sym_BSLASHcref] = ACTIONS(4921), + [anon_sym_BSLASHCref] = ACTIONS(4921), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnameCref] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHlabelcref] = ACTIONS(4921), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCrefrange] = ACTIONS(4921), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnewlabel] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), + [anon_sym_BSLASHdef] = ACTIONS(4921), + [anon_sym_BSLASHlet] = ACTIONS(4921), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), + [anon_sym_BSLASHgls] = ACTIONS(4921), + [anon_sym_BSLASHGls] = ACTIONS(4921), + [anon_sym_BSLASHGLS] = ACTIONS(4921), + [anon_sym_BSLASHglspl] = ACTIONS(4921), + [anon_sym_BSLASHGlspl] = ACTIONS(4921), + [anon_sym_BSLASHGLSpl] = ACTIONS(4921), + [anon_sym_BSLASHglsdisp] = ACTIONS(4921), + [anon_sym_BSLASHglslink] = ACTIONS(4921), + [anon_sym_BSLASHglstext] = ACTIONS(4921), + [anon_sym_BSLASHGlstext] = ACTIONS(4921), + [anon_sym_BSLASHGLStext] = ACTIONS(4921), + [anon_sym_BSLASHglsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), + [anon_sym_BSLASHglsplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSplural] = ACTIONS(4921), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHglsname] = ACTIONS(4921), + [anon_sym_BSLASHGlsname] = ACTIONS(4921), + [anon_sym_BSLASHGLSname] = ACTIONS(4921), + [anon_sym_BSLASHglssymbol] = ACTIONS(4921), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), + [anon_sym_BSLASHglsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), + [anon_sym_BSLASHglsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), + [anon_sym_BSLASHglsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), + [anon_sym_BSLASHglsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), + [anon_sym_BSLASHglsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), + [anon_sym_BSLASHnewacronym] = ACTIONS(4921), + [anon_sym_BSLASHacrshort] = ACTIONS(4921), + [anon_sym_BSLASHAcrshort] = ACTIONS(4921), + [anon_sym_BSLASHACRshort] = ACTIONS(4921), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), + [anon_sym_BSLASHacrlong] = ACTIONS(4921), + [anon_sym_BSLASHAcrlong] = ACTIONS(4921), + [anon_sym_BSLASHACRlong] = ACTIONS(4921), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), + [anon_sym_BSLASHacrfull] = ACTIONS(4921), + [anon_sym_BSLASHAcrfull] = ACTIONS(4921), + [anon_sym_BSLASHACRfull] = ACTIONS(4921), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), + [anon_sym_BSLASHacs] = ACTIONS(4921), + [anon_sym_BSLASHAcs] = ACTIONS(4921), + [anon_sym_BSLASHacsp] = ACTIONS(4921), + [anon_sym_BSLASHAcsp] = ACTIONS(4921), + [anon_sym_BSLASHacl] = ACTIONS(4921), + [anon_sym_BSLASHAcl] = ACTIONS(4921), + [anon_sym_BSLASHaclp] = ACTIONS(4921), + [anon_sym_BSLASHAclp] = ACTIONS(4921), + [anon_sym_BSLASHacf] = ACTIONS(4921), + [anon_sym_BSLASHAcf] = ACTIONS(4921), + [anon_sym_BSLASHacfp] = ACTIONS(4921), + [anon_sym_BSLASHAcfp] = ACTIONS(4921), + [anon_sym_BSLASHac] = ACTIONS(4921), + [anon_sym_BSLASHAc] = ACTIONS(4921), + [anon_sym_BSLASHacp] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), + [anon_sym_BSLASHcolor] = ACTIONS(4921), + [anon_sym_BSLASHcolorbox] = ACTIONS(4921), + [anon_sym_BSLASHtextcolor] = ACTIONS(4921), + [anon_sym_BSLASHpagecolor] = ACTIONS(4921), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), + [anon_sym_BSLASHtext] = ACTIONS(4921), + [anon_sym_BSLASHintertext] = ACTIONS(4921), + [anon_sym_shortintertext] = ACTIONS(4921), }, - [1101] = { - [sym_command_name] = ACTIONS(5147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5145), - [anon_sym_RPAREN] = ACTIONS(5145), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_RBRACK] = ACTIONS(5145), - [anon_sym_COMMA] = ACTIONS(5145), - [anon_sym_EQ] = ACTIONS(5145), - [anon_sym_BSLASHpart] = ACTIONS(5147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddpart] = ACTIONS(5147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5145), - [anon_sym_BSLASHchapter] = ACTIONS(5147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddchap] = ACTIONS(5147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsection] = ACTIONS(5147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddsec] = ACTIONS(5147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubsection] = ACTIONS(5147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHparagraph] = ACTIONS(5147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5145), - [anon_sym_BSLASHitem] = ACTIONS(5147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5145), - [anon_sym_LBRACE] = ACTIONS(5145), - [sym_word] = ACTIONS(5147), - [sym_placeholder] = ACTIONS(5145), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_CARET] = ACTIONS(5147), - [anon_sym__] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5147), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5145), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5145), - [anon_sym_BSLASHbegin] = ACTIONS(5147), - [anon_sym_BSLASHend] = ACTIONS(5147), - [anon_sym_BSLASHusepackage] = ACTIONS(5147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5147), - [anon_sym_BSLASHinclude] = ACTIONS(5147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5147), - [anon_sym_BSLASHinput] = ACTIONS(5147), - [anon_sym_BSLASHsubfile] = ACTIONS(5147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5147), - [anon_sym_BSLASHbibliography] = ACTIONS(5147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5147), - [anon_sym_BSLASHincludesvg] = ACTIONS(5147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5147), - [anon_sym_BSLASHimport] = ACTIONS(5147), - [anon_sym_BSLASHsubimport] = ACTIONS(5147), - [anon_sym_BSLASHinputfrom] = ACTIONS(5147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5147), - [anon_sym_BSLASHincludefrom] = ACTIONS(5147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5147), - [anon_sym_BSLASHcaption] = ACTIONS(5147), - [anon_sym_BSLASHcite] = ACTIONS(5147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCite] = ACTIONS(5147), - [anon_sym_BSLASHnocite] = ACTIONS(5147), - [anon_sym_BSLASHcitet] = ACTIONS(5147), - [anon_sym_BSLASHcitep] = ACTIONS(5147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteyear] = ACTIONS(5147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitedate] = ACTIONS(5147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteurl] = ACTIONS(5147), - [anon_sym_BSLASHfullcite] = ACTIONS(5147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5147), - [anon_sym_BSLASHcitealt] = ACTIONS(5147), - [anon_sym_BSLASHcitealp] = ACTIONS(5147), - [anon_sym_BSLASHcitetext] = ACTIONS(5147), - [anon_sym_BSLASHparencite] = ACTIONS(5147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHParencite] = ACTIONS(5147), - [anon_sym_BSLASHfootcite] = ACTIONS(5147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5147), - [anon_sym_BSLASHtextcite] = ACTIONS(5147), - [anon_sym_BSLASHTextcite] = ACTIONS(5147), - [anon_sym_BSLASHsmartcite] = ACTIONS(5147), - [anon_sym_BSLASHSmartcite] = ACTIONS(5147), - [anon_sym_BSLASHsupercite] = ACTIONS(5147), - [anon_sym_BSLASHautocite] = ACTIONS(5147), - [anon_sym_BSLASHAutocite] = ACTIONS(5147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHvolcite] = ACTIONS(5147), - [anon_sym_BSLASHVolcite] = ACTIONS(5147), - [anon_sym_BSLASHpvolcite] = ACTIONS(5147), - [anon_sym_BSLASHPvolcite] = ACTIONS(5147), - [anon_sym_BSLASHfvolcite] = ACTIONS(5147), - [anon_sym_BSLASHftvolcite] = ACTIONS(5147), - [anon_sym_BSLASHsvolcite] = ACTIONS(5147), - [anon_sym_BSLASHSvolcite] = ACTIONS(5147), - [anon_sym_BSLASHtvolcite] = ACTIONS(5147), - [anon_sym_BSLASHTvolcite] = ACTIONS(5147), - [anon_sym_BSLASHavolcite] = ACTIONS(5147), - [anon_sym_BSLASHAvolcite] = ACTIONS(5147), - [anon_sym_BSLASHnotecite] = ACTIONS(5147), - [anon_sym_BSLASHNotecite] = ACTIONS(5147), - [anon_sym_BSLASHpnotecite] = ACTIONS(5147), - [anon_sym_BSLASHPnotecite] = ACTIONS(5147), - [anon_sym_BSLASHfnotecite] = ACTIONS(5147), - [anon_sym_BSLASHlabel] = ACTIONS(5147), - [anon_sym_BSLASHref] = ACTIONS(5147), - [anon_sym_BSLASHeqref] = ACTIONS(5147), - [anon_sym_BSLASHvref] = ACTIONS(5147), - [anon_sym_BSLASHVref] = ACTIONS(5147), - [anon_sym_BSLASHautoref] = ACTIONS(5147), - [anon_sym_BSLASHpageref] = ACTIONS(5147), - [anon_sym_BSLASHcref] = ACTIONS(5147), - [anon_sym_BSLASHCref] = ACTIONS(5147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5145), - [anon_sym_BSLASHnamecref] = ACTIONS(5147), - [anon_sym_BSLASHnameCref] = ACTIONS(5147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5147), - [anon_sym_BSLASHlabelcref] = ACTIONS(5147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5147), - [anon_sym_BSLASHcrefrange] = ACTIONS(5147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5145), - [anon_sym_BSLASHnewlabel] = ACTIONS(5147), - [anon_sym_BSLASHnewcommand] = ACTIONS(5147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5145), - [anon_sym_BSLASHdef] = ACTIONS(5147), - [anon_sym_BSLASHlet] = ACTIONS(5147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5147), - [anon_sym_BSLASHgls] = ACTIONS(5147), - [anon_sym_BSLASHGls] = ACTIONS(5147), - [anon_sym_BSLASHGLS] = ACTIONS(5147), - [anon_sym_BSLASHglspl] = ACTIONS(5147), - [anon_sym_BSLASHGlspl] = ACTIONS(5147), - [anon_sym_BSLASHGLSpl] = ACTIONS(5147), - [anon_sym_BSLASHglsdisp] = ACTIONS(5147), - [anon_sym_BSLASHglslink] = ACTIONS(5147), - [anon_sym_BSLASHglstext] = ACTIONS(5147), - [anon_sym_BSLASHGlstext] = ACTIONS(5147), - [anon_sym_BSLASHGLStext] = ACTIONS(5147), - [anon_sym_BSLASHglsfirst] = ACTIONS(5147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5147), - [anon_sym_BSLASHglsplural] = ACTIONS(5147), - [anon_sym_BSLASHGlsplural] = ACTIONS(5147), - [anon_sym_BSLASHGLSplural] = ACTIONS(5147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHglsname] = ACTIONS(5147), - [anon_sym_BSLASHGlsname] = ACTIONS(5147), - [anon_sym_BSLASHGLSname] = ACTIONS(5147), - [anon_sym_BSLASHglssymbol] = ACTIONS(5147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5147), - [anon_sym_BSLASHglsdesc] = ACTIONS(5147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5147), - [anon_sym_BSLASHglsuseri] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5147), - [anon_sym_BSLASHglsuserii] = ACTIONS(5147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5147), - [anon_sym_BSLASHglsuserv] = ACTIONS(5147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5147), - [anon_sym_BSLASHglsuservi] = ACTIONS(5147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5147), - [anon_sym_BSLASHnewacronym] = ACTIONS(5147), - [anon_sym_BSLASHacrshort] = ACTIONS(5147), - [anon_sym_BSLASHAcrshort] = ACTIONS(5147), - [anon_sym_BSLASHACRshort] = ACTIONS(5147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5147), - [anon_sym_BSLASHacrlong] = ACTIONS(5147), - [anon_sym_BSLASHAcrlong] = ACTIONS(5147), - [anon_sym_BSLASHACRlong] = ACTIONS(5147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5147), - [anon_sym_BSLASHacrfull] = ACTIONS(5147), - [anon_sym_BSLASHAcrfull] = ACTIONS(5147), - [anon_sym_BSLASHACRfull] = ACTIONS(5147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5147), - [anon_sym_BSLASHacs] = ACTIONS(5147), - [anon_sym_BSLASHAcs] = ACTIONS(5147), - [anon_sym_BSLASHacsp] = ACTIONS(5147), - [anon_sym_BSLASHAcsp] = ACTIONS(5147), - [anon_sym_BSLASHacl] = ACTIONS(5147), - [anon_sym_BSLASHAcl] = ACTIONS(5147), - [anon_sym_BSLASHaclp] = ACTIONS(5147), - [anon_sym_BSLASHAclp] = ACTIONS(5147), - [anon_sym_BSLASHacf] = ACTIONS(5147), - [anon_sym_BSLASHAcf] = ACTIONS(5147), - [anon_sym_BSLASHacfp] = ACTIONS(5147), - [anon_sym_BSLASHAcfp] = ACTIONS(5147), - [anon_sym_BSLASHac] = ACTIONS(5147), - [anon_sym_BSLASHAc] = ACTIONS(5147), - [anon_sym_BSLASHacp] = ACTIONS(5147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5147), - [anon_sym_BSLASHcolor] = ACTIONS(5147), - [anon_sym_BSLASHcolorbox] = ACTIONS(5147), - [anon_sym_BSLASHtextcolor] = ACTIONS(5147), - [anon_sym_BSLASHpagecolor] = ACTIONS(5147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5147), + [932] = { + [sym_command_name] = ACTIONS(4891), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_LBRACK] = ACTIONS(4889), + [anon_sym_RBRACK] = ACTIONS(4889), + [anon_sym_COMMA] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4889), + [anon_sym_BSLASHpart] = ACTIONS(4891), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddpart] = ACTIONS(4891), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4889), + [anon_sym_BSLASHchapter] = ACTIONS(4891), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddchap] = ACTIONS(4891), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsection] = ACTIONS(4891), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddsec] = ACTIONS(4891), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubsection] = ACTIONS(4891), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4891), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHparagraph] = ACTIONS(4891), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4891), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4889), + [anon_sym_BSLASHitem] = ACTIONS(4891), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(4889), + [sym_word] = ACTIONS(4891), + [sym_placeholder] = ACTIONS(4889), + [anon_sym_PLUS] = ACTIONS(4891), + [anon_sym_DASH] = ACTIONS(4891), + [anon_sym_STAR] = ACTIONS(4891), + [anon_sym_SLASH] = ACTIONS(4891), + [anon_sym_CARET] = ACTIONS(4891), + [anon_sym__] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_BANG] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_SQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4889), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4889), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4889), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4889), + [anon_sym_BSLASHbegin] = ACTIONS(4891), + [anon_sym_BSLASHusepackage] = ACTIONS(4891), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4891), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4891), + [anon_sym_BSLASHinclude] = ACTIONS(4891), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4891), + [anon_sym_BSLASHinput] = ACTIONS(4891), + [anon_sym_BSLASHsubfile] = ACTIONS(4891), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4891), + [anon_sym_BSLASHbibliography] = ACTIONS(4891), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4891), + [anon_sym_BSLASHincludesvg] = ACTIONS(4891), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4891), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4891), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4891), + [anon_sym_BSLASHimport] = ACTIONS(4891), + [anon_sym_BSLASHsubimport] = ACTIONS(4891), + [anon_sym_BSLASHinputfrom] = ACTIONS(4891), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4891), + [anon_sym_BSLASHincludefrom] = ACTIONS(4891), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4891), + [anon_sym_BSLASHcaption] = ACTIONS(4891), + [anon_sym_BSLASHcite] = ACTIONS(4891), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCite] = ACTIONS(4891), + [anon_sym_BSLASHnocite] = ACTIONS(4891), + [anon_sym_BSLASHcitet] = ACTIONS(4891), + [anon_sym_BSLASHcitep] = ACTIONS(4891), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteauthor] = ACTIONS(4891), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4891), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitetitle] = ACTIONS(4891), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteyear] = ACTIONS(4891), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitedate] = ACTIONS(4891), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteurl] = ACTIONS(4891), + [anon_sym_BSLASHfullcite] = ACTIONS(4891), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4891), + [anon_sym_BSLASHcitealt] = ACTIONS(4891), + [anon_sym_BSLASHcitealp] = ACTIONS(4891), + [anon_sym_BSLASHcitetext] = ACTIONS(4891), + [anon_sym_BSLASHparencite] = ACTIONS(4891), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHParencite] = ACTIONS(4891), + [anon_sym_BSLASHfootcite] = ACTIONS(4891), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4891), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4891), + [anon_sym_BSLASHtextcite] = ACTIONS(4891), + [anon_sym_BSLASHTextcite] = ACTIONS(4891), + [anon_sym_BSLASHsmartcite] = ACTIONS(4891), + [anon_sym_BSLASHSmartcite] = ACTIONS(4891), + [anon_sym_BSLASHsupercite] = ACTIONS(4891), + [anon_sym_BSLASHautocite] = ACTIONS(4891), + [anon_sym_BSLASHAutocite] = ACTIONS(4891), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHvolcite] = ACTIONS(4891), + [anon_sym_BSLASHVolcite] = ACTIONS(4891), + [anon_sym_BSLASHpvolcite] = ACTIONS(4891), + [anon_sym_BSLASHPvolcite] = ACTIONS(4891), + [anon_sym_BSLASHfvolcite] = ACTIONS(4891), + [anon_sym_BSLASHftvolcite] = ACTIONS(4891), + [anon_sym_BSLASHsvolcite] = ACTIONS(4891), + [anon_sym_BSLASHSvolcite] = ACTIONS(4891), + [anon_sym_BSLASHtvolcite] = ACTIONS(4891), + [anon_sym_BSLASHTvolcite] = ACTIONS(4891), + [anon_sym_BSLASHavolcite] = ACTIONS(4891), + [anon_sym_BSLASHAvolcite] = ACTIONS(4891), + [anon_sym_BSLASHnotecite] = ACTIONS(4891), + [anon_sym_BSLASHNotecite] = ACTIONS(4891), + [anon_sym_BSLASHpnotecite] = ACTIONS(4891), + [anon_sym_BSLASHPnotecite] = ACTIONS(4891), + [anon_sym_BSLASHfnotecite] = ACTIONS(4891), + [anon_sym_BSLASHlabel] = ACTIONS(4891), + [anon_sym_BSLASHref] = ACTIONS(4891), + [anon_sym_BSLASHeqref] = ACTIONS(4891), + [anon_sym_BSLASHvref] = ACTIONS(4891), + [anon_sym_BSLASHVref] = ACTIONS(4891), + [anon_sym_BSLASHautoref] = ACTIONS(4891), + [anon_sym_BSLASHpageref] = ACTIONS(4891), + [anon_sym_BSLASHcref] = ACTIONS(4891), + [anon_sym_BSLASHCref] = ACTIONS(4891), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4889), + [anon_sym_BSLASHnamecref] = ACTIONS(4891), + [anon_sym_BSLASHnameCref] = ACTIONS(4891), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4891), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4891), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4891), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4891), + [anon_sym_BSLASHlabelcref] = ACTIONS(4891), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4891), + [anon_sym_BSLASHcrefrange] = ACTIONS(4891), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCrefrange] = ACTIONS(4891), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4889), + [anon_sym_BSLASHnewlabel] = ACTIONS(4891), + [anon_sym_BSLASHnewcommand] = ACTIONS(4891), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4889), + [anon_sym_BSLASHdef] = ACTIONS(4891), + [anon_sym_BSLASHlet] = ACTIONS(4891), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4891), + [anon_sym_BSLASHgls] = ACTIONS(4891), + [anon_sym_BSLASHGls] = ACTIONS(4891), + [anon_sym_BSLASHGLS] = ACTIONS(4891), + [anon_sym_BSLASHglspl] = ACTIONS(4891), + [anon_sym_BSLASHGlspl] = ACTIONS(4891), + [anon_sym_BSLASHGLSpl] = ACTIONS(4891), + [anon_sym_BSLASHglsdisp] = ACTIONS(4891), + [anon_sym_BSLASHglslink] = ACTIONS(4891), + [anon_sym_BSLASHglstext] = ACTIONS(4891), + [anon_sym_BSLASHGlstext] = ACTIONS(4891), + [anon_sym_BSLASHGLStext] = ACTIONS(4891), + [anon_sym_BSLASHglsfirst] = ACTIONS(4891), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4891), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4891), + [anon_sym_BSLASHglsplural] = ACTIONS(4891), + [anon_sym_BSLASHGlsplural] = ACTIONS(4891), + [anon_sym_BSLASHGLSplural] = ACTIONS(4891), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHglsname] = ACTIONS(4891), + [anon_sym_BSLASHGlsname] = ACTIONS(4891), + [anon_sym_BSLASHGLSname] = ACTIONS(4891), + [anon_sym_BSLASHglssymbol] = ACTIONS(4891), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4891), + [anon_sym_BSLASHglsdesc] = ACTIONS(4891), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4891), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4891), + [anon_sym_BSLASHglsuseri] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4891), + [anon_sym_BSLASHglsuserii] = ACTIONS(4891), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4891), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4891), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4891), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4891), + [anon_sym_BSLASHglsuserv] = ACTIONS(4891), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4891), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4891), + [anon_sym_BSLASHglsuservi] = ACTIONS(4891), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4891), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4891), + [anon_sym_BSLASHnewacronym] = ACTIONS(4891), + [anon_sym_BSLASHacrshort] = ACTIONS(4891), + [anon_sym_BSLASHAcrshort] = ACTIONS(4891), + [anon_sym_BSLASHACRshort] = ACTIONS(4891), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4891), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4891), + [anon_sym_BSLASHacrlong] = ACTIONS(4891), + [anon_sym_BSLASHAcrlong] = ACTIONS(4891), + [anon_sym_BSLASHACRlong] = ACTIONS(4891), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4891), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4891), + [anon_sym_BSLASHacrfull] = ACTIONS(4891), + [anon_sym_BSLASHAcrfull] = ACTIONS(4891), + [anon_sym_BSLASHACRfull] = ACTIONS(4891), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4891), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4891), + [anon_sym_BSLASHacs] = ACTIONS(4891), + [anon_sym_BSLASHAcs] = ACTIONS(4891), + [anon_sym_BSLASHacsp] = ACTIONS(4891), + [anon_sym_BSLASHAcsp] = ACTIONS(4891), + [anon_sym_BSLASHacl] = ACTIONS(4891), + [anon_sym_BSLASHAcl] = ACTIONS(4891), + [anon_sym_BSLASHaclp] = ACTIONS(4891), + [anon_sym_BSLASHAclp] = ACTIONS(4891), + [anon_sym_BSLASHacf] = ACTIONS(4891), + [anon_sym_BSLASHAcf] = ACTIONS(4891), + [anon_sym_BSLASHacfp] = ACTIONS(4891), + [anon_sym_BSLASHAcfp] = ACTIONS(4891), + [anon_sym_BSLASHac] = ACTIONS(4891), + [anon_sym_BSLASHAc] = ACTIONS(4891), + [anon_sym_BSLASHacp] = ACTIONS(4891), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4891), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4891), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4891), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4891), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4891), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4891), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4891), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4891), + [anon_sym_BSLASHcolor] = ACTIONS(4891), + [anon_sym_BSLASHcolorbox] = ACTIONS(4891), + [anon_sym_BSLASHtextcolor] = ACTIONS(4891), + [anon_sym_BSLASHpagecolor] = ACTIONS(4891), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4891), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4891), + [anon_sym_BSLASHtext] = ACTIONS(4891), + [anon_sym_BSLASHintertext] = ACTIONS(4891), + [anon_sym_shortintertext] = ACTIONS(4891), + }, + [933] = { + [sym_command_name] = ACTIONS(5285), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5285), + [anon_sym_LPAREN] = ACTIONS(5283), + [anon_sym_RPAREN] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(5283), + [anon_sym_RBRACK] = ACTIONS(5283), + [anon_sym_COMMA] = ACTIONS(5283), + [anon_sym_EQ] = ACTIONS(5283), + [anon_sym_BSLASHpart] = ACTIONS(5285), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddpart] = ACTIONS(5285), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5283), + [anon_sym_BSLASHchapter] = ACTIONS(5285), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddchap] = ACTIONS(5285), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsection] = ACTIONS(5285), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddsec] = ACTIONS(5285), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubsection] = ACTIONS(5285), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5285), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHparagraph] = ACTIONS(5285), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5285), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5283), + [anon_sym_BSLASHitem] = ACTIONS(5285), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5283), + [anon_sym_LBRACE] = ACTIONS(5283), + [sym_word] = ACTIONS(5285), + [sym_placeholder] = ACTIONS(5283), + [anon_sym_PLUS] = ACTIONS(5285), + [anon_sym_DASH] = ACTIONS(5285), + [anon_sym_STAR] = ACTIONS(5285), + [anon_sym_SLASH] = ACTIONS(5285), + [anon_sym_CARET] = ACTIONS(5285), + [anon_sym__] = ACTIONS(5285), + [anon_sym_LT] = ACTIONS(5285), + [anon_sym_GT] = ACTIONS(5285), + [anon_sym_BANG] = ACTIONS(5285), + [anon_sym_PIPE] = ACTIONS(5285), + [anon_sym_COLON] = ACTIONS(5285), + [anon_sym_SQUOTE] = ACTIONS(5285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), + [anon_sym_DOLLAR] = ACTIONS(5285), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), + [anon_sym_BSLASHbegin] = ACTIONS(5285), + [anon_sym_BSLASHusepackage] = ACTIONS(5285), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), + [anon_sym_BSLASHinclude] = ACTIONS(5285), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), + [anon_sym_BSLASHinput] = ACTIONS(5285), + [anon_sym_BSLASHsubfile] = ACTIONS(5285), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), + [anon_sym_BSLASHbibliography] = ACTIONS(5285), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), + [anon_sym_BSLASHincludesvg] = ACTIONS(5285), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), + [anon_sym_BSLASHimport] = ACTIONS(5285), + [anon_sym_BSLASHsubimport] = ACTIONS(5285), + [anon_sym_BSLASHinputfrom] = ACTIONS(5285), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), + [anon_sym_BSLASHincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHcaption] = ACTIONS(5285), + [anon_sym_BSLASHcite] = ACTIONS(5285), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCite] = ACTIONS(5285), + [anon_sym_BSLASHnocite] = ACTIONS(5285), + [anon_sym_BSLASHcitet] = ACTIONS(5285), + [anon_sym_BSLASHcitep] = ACTIONS(5285), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteauthor] = ACTIONS(5285), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitetitle] = ACTIONS(5285), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteyear] = ACTIONS(5285), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitedate] = ACTIONS(5285), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteurl] = ACTIONS(5285), + [anon_sym_BSLASHfullcite] = ACTIONS(5285), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), + [anon_sym_BSLASHcitealt] = ACTIONS(5285), + [anon_sym_BSLASHcitealp] = ACTIONS(5285), + [anon_sym_BSLASHcitetext] = ACTIONS(5285), + [anon_sym_BSLASHparencite] = ACTIONS(5285), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHParencite] = ACTIONS(5285), + [anon_sym_BSLASHfootcite] = ACTIONS(5285), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), + [anon_sym_BSLASHtextcite] = ACTIONS(5285), + [anon_sym_BSLASHTextcite] = ACTIONS(5285), + [anon_sym_BSLASHsmartcite] = ACTIONS(5285), + [anon_sym_BSLASHSmartcite] = ACTIONS(5285), + [anon_sym_BSLASHsupercite] = ACTIONS(5285), + [anon_sym_BSLASHautocite] = ACTIONS(5285), + [anon_sym_BSLASHAutocite] = ACTIONS(5285), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHvolcite] = ACTIONS(5285), + [anon_sym_BSLASHVolcite] = ACTIONS(5285), + [anon_sym_BSLASHpvolcite] = ACTIONS(5285), + [anon_sym_BSLASHPvolcite] = ACTIONS(5285), + [anon_sym_BSLASHfvolcite] = ACTIONS(5285), + [anon_sym_BSLASHftvolcite] = ACTIONS(5285), + [anon_sym_BSLASHsvolcite] = ACTIONS(5285), + [anon_sym_BSLASHSvolcite] = ACTIONS(5285), + [anon_sym_BSLASHtvolcite] = ACTIONS(5285), + [anon_sym_BSLASHTvolcite] = ACTIONS(5285), + [anon_sym_BSLASHavolcite] = ACTIONS(5285), + [anon_sym_BSLASHAvolcite] = ACTIONS(5285), + [anon_sym_BSLASHnotecite] = ACTIONS(5285), + [anon_sym_BSLASHNotecite] = ACTIONS(5285), + [anon_sym_BSLASHpnotecite] = ACTIONS(5285), + [anon_sym_BSLASHPnotecite] = ACTIONS(5285), + [anon_sym_BSLASHfnotecite] = ACTIONS(5285), + [anon_sym_BSLASHlabel] = ACTIONS(5285), + [anon_sym_BSLASHref] = ACTIONS(5285), + [anon_sym_BSLASHeqref] = ACTIONS(5285), + [anon_sym_BSLASHvref] = ACTIONS(5285), + [anon_sym_BSLASHVref] = ACTIONS(5285), + [anon_sym_BSLASHautoref] = ACTIONS(5285), + [anon_sym_BSLASHpageref] = ACTIONS(5285), + [anon_sym_BSLASHcref] = ACTIONS(5285), + [anon_sym_BSLASHCref] = ACTIONS(5285), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnameCref] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHlabelcref] = ACTIONS(5285), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCrefrange] = ACTIONS(5285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnewlabel] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), + [anon_sym_BSLASHdef] = ACTIONS(5285), + [anon_sym_BSLASHlet] = ACTIONS(5285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), + [anon_sym_BSLASHgls] = ACTIONS(5285), + [anon_sym_BSLASHGls] = ACTIONS(5285), + [anon_sym_BSLASHGLS] = ACTIONS(5285), + [anon_sym_BSLASHglspl] = ACTIONS(5285), + [anon_sym_BSLASHGlspl] = ACTIONS(5285), + [anon_sym_BSLASHGLSpl] = ACTIONS(5285), + [anon_sym_BSLASHglsdisp] = ACTIONS(5285), + [anon_sym_BSLASHglslink] = ACTIONS(5285), + [anon_sym_BSLASHglstext] = ACTIONS(5285), + [anon_sym_BSLASHGlstext] = ACTIONS(5285), + [anon_sym_BSLASHGLStext] = ACTIONS(5285), + [anon_sym_BSLASHglsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), + [anon_sym_BSLASHglsplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSplural] = ACTIONS(5285), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHglsname] = ACTIONS(5285), + [anon_sym_BSLASHGlsname] = ACTIONS(5285), + [anon_sym_BSLASHGLSname] = ACTIONS(5285), + [anon_sym_BSLASHglssymbol] = ACTIONS(5285), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), + [anon_sym_BSLASHglsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), + [anon_sym_BSLASHglsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), + [anon_sym_BSLASHglsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), + [anon_sym_BSLASHglsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), + [anon_sym_BSLASHglsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), + [anon_sym_BSLASHnewacronym] = ACTIONS(5285), + [anon_sym_BSLASHacrshort] = ACTIONS(5285), + [anon_sym_BSLASHAcrshort] = ACTIONS(5285), + [anon_sym_BSLASHACRshort] = ACTIONS(5285), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), + [anon_sym_BSLASHacrlong] = ACTIONS(5285), + [anon_sym_BSLASHAcrlong] = ACTIONS(5285), + [anon_sym_BSLASHACRlong] = ACTIONS(5285), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), + [anon_sym_BSLASHacrfull] = ACTIONS(5285), + [anon_sym_BSLASHAcrfull] = ACTIONS(5285), + [anon_sym_BSLASHACRfull] = ACTIONS(5285), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), + [anon_sym_BSLASHacs] = ACTIONS(5285), + [anon_sym_BSLASHAcs] = ACTIONS(5285), + [anon_sym_BSLASHacsp] = ACTIONS(5285), + [anon_sym_BSLASHAcsp] = ACTIONS(5285), + [anon_sym_BSLASHacl] = ACTIONS(5285), + [anon_sym_BSLASHAcl] = ACTIONS(5285), + [anon_sym_BSLASHaclp] = ACTIONS(5285), + [anon_sym_BSLASHAclp] = ACTIONS(5285), + [anon_sym_BSLASHacf] = ACTIONS(5285), + [anon_sym_BSLASHAcf] = ACTIONS(5285), + [anon_sym_BSLASHacfp] = ACTIONS(5285), + [anon_sym_BSLASHAcfp] = ACTIONS(5285), + [anon_sym_BSLASHac] = ACTIONS(5285), + [anon_sym_BSLASHAc] = ACTIONS(5285), + [anon_sym_BSLASHacp] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), + [anon_sym_BSLASHcolor] = ACTIONS(5285), + [anon_sym_BSLASHcolorbox] = ACTIONS(5285), + [anon_sym_BSLASHtextcolor] = ACTIONS(5285), + [anon_sym_BSLASHpagecolor] = ACTIONS(5285), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), + [anon_sym_BSLASHtext] = ACTIONS(5285), + [anon_sym_BSLASHintertext] = ACTIONS(5285), + [anon_sym_shortintertext] = ACTIONS(5285), + }, + [934] = { + [sym_command_name] = ACTIONS(5289), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5289), + [anon_sym_LPAREN] = ACTIONS(5287), + [anon_sym_RPAREN] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(5287), + [anon_sym_RBRACK] = ACTIONS(5287), + [anon_sym_COMMA] = ACTIONS(5287), + [anon_sym_EQ] = ACTIONS(5287), + [anon_sym_BSLASHpart] = ACTIONS(5289), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddpart] = ACTIONS(5289), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5287), + [anon_sym_BSLASHchapter] = ACTIONS(5289), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddchap] = ACTIONS(5289), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsection] = ACTIONS(5289), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddsec] = ACTIONS(5289), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubsection] = ACTIONS(5289), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5289), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHparagraph] = ACTIONS(5289), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5289), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5287), + [anon_sym_BSLASHitem] = ACTIONS(5289), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5287), + [anon_sym_LBRACE] = ACTIONS(5287), + [sym_word] = ACTIONS(5289), + [sym_placeholder] = ACTIONS(5287), + [anon_sym_PLUS] = ACTIONS(5289), + [anon_sym_DASH] = ACTIONS(5289), + [anon_sym_STAR] = ACTIONS(5289), + [anon_sym_SLASH] = ACTIONS(5289), + [anon_sym_CARET] = ACTIONS(5289), + [anon_sym__] = ACTIONS(5289), + [anon_sym_LT] = ACTIONS(5289), + [anon_sym_GT] = ACTIONS(5289), + [anon_sym_BANG] = ACTIONS(5289), + [anon_sym_PIPE] = ACTIONS(5289), + [anon_sym_COLON] = ACTIONS(5289), + [anon_sym_SQUOTE] = ACTIONS(5289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), + [anon_sym_DOLLAR] = ACTIONS(5289), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), + [anon_sym_BSLASHbegin] = ACTIONS(5289), + [anon_sym_BSLASHusepackage] = ACTIONS(5289), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), + [anon_sym_BSLASHinclude] = ACTIONS(5289), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), + [anon_sym_BSLASHinput] = ACTIONS(5289), + [anon_sym_BSLASHsubfile] = ACTIONS(5289), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), + [anon_sym_BSLASHbibliography] = ACTIONS(5289), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), + [anon_sym_BSLASHincludesvg] = ACTIONS(5289), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), + [anon_sym_BSLASHimport] = ACTIONS(5289), + [anon_sym_BSLASHsubimport] = ACTIONS(5289), + [anon_sym_BSLASHinputfrom] = ACTIONS(5289), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), + [anon_sym_BSLASHincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHcaption] = ACTIONS(5289), + [anon_sym_BSLASHcite] = ACTIONS(5289), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCite] = ACTIONS(5289), + [anon_sym_BSLASHnocite] = ACTIONS(5289), + [anon_sym_BSLASHcitet] = ACTIONS(5289), + [anon_sym_BSLASHcitep] = ACTIONS(5289), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteauthor] = ACTIONS(5289), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitetitle] = ACTIONS(5289), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteyear] = ACTIONS(5289), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitedate] = ACTIONS(5289), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteurl] = ACTIONS(5289), + [anon_sym_BSLASHfullcite] = ACTIONS(5289), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), + [anon_sym_BSLASHcitealt] = ACTIONS(5289), + [anon_sym_BSLASHcitealp] = ACTIONS(5289), + [anon_sym_BSLASHcitetext] = ACTIONS(5289), + [anon_sym_BSLASHparencite] = ACTIONS(5289), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHParencite] = ACTIONS(5289), + [anon_sym_BSLASHfootcite] = ACTIONS(5289), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), + [anon_sym_BSLASHtextcite] = ACTIONS(5289), + [anon_sym_BSLASHTextcite] = ACTIONS(5289), + [anon_sym_BSLASHsmartcite] = ACTIONS(5289), + [anon_sym_BSLASHSmartcite] = ACTIONS(5289), + [anon_sym_BSLASHsupercite] = ACTIONS(5289), + [anon_sym_BSLASHautocite] = ACTIONS(5289), + [anon_sym_BSLASHAutocite] = ACTIONS(5289), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHvolcite] = ACTIONS(5289), + [anon_sym_BSLASHVolcite] = ACTIONS(5289), + [anon_sym_BSLASHpvolcite] = ACTIONS(5289), + [anon_sym_BSLASHPvolcite] = ACTIONS(5289), + [anon_sym_BSLASHfvolcite] = ACTIONS(5289), + [anon_sym_BSLASHftvolcite] = ACTIONS(5289), + [anon_sym_BSLASHsvolcite] = ACTIONS(5289), + [anon_sym_BSLASHSvolcite] = ACTIONS(5289), + [anon_sym_BSLASHtvolcite] = ACTIONS(5289), + [anon_sym_BSLASHTvolcite] = ACTIONS(5289), + [anon_sym_BSLASHavolcite] = ACTIONS(5289), + [anon_sym_BSLASHAvolcite] = ACTIONS(5289), + [anon_sym_BSLASHnotecite] = ACTIONS(5289), + [anon_sym_BSLASHNotecite] = ACTIONS(5289), + [anon_sym_BSLASHpnotecite] = ACTIONS(5289), + [anon_sym_BSLASHPnotecite] = ACTIONS(5289), + [anon_sym_BSLASHfnotecite] = ACTIONS(5289), + [anon_sym_BSLASHlabel] = ACTIONS(5289), + [anon_sym_BSLASHref] = ACTIONS(5289), + [anon_sym_BSLASHeqref] = ACTIONS(5289), + [anon_sym_BSLASHvref] = ACTIONS(5289), + [anon_sym_BSLASHVref] = ACTIONS(5289), + [anon_sym_BSLASHautoref] = ACTIONS(5289), + [anon_sym_BSLASHpageref] = ACTIONS(5289), + [anon_sym_BSLASHcref] = ACTIONS(5289), + [anon_sym_BSLASHCref] = ACTIONS(5289), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnameCref] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHlabelcref] = ACTIONS(5289), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCrefrange] = ACTIONS(5289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnewlabel] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), + [anon_sym_BSLASHdef] = ACTIONS(5289), + [anon_sym_BSLASHlet] = ACTIONS(5289), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), + [anon_sym_BSLASHgls] = ACTIONS(5289), + [anon_sym_BSLASHGls] = ACTIONS(5289), + [anon_sym_BSLASHGLS] = ACTIONS(5289), + [anon_sym_BSLASHglspl] = ACTIONS(5289), + [anon_sym_BSLASHGlspl] = ACTIONS(5289), + [anon_sym_BSLASHGLSpl] = ACTIONS(5289), + [anon_sym_BSLASHglsdisp] = ACTIONS(5289), + [anon_sym_BSLASHglslink] = ACTIONS(5289), + [anon_sym_BSLASHglstext] = ACTIONS(5289), + [anon_sym_BSLASHGlstext] = ACTIONS(5289), + [anon_sym_BSLASHGLStext] = ACTIONS(5289), + [anon_sym_BSLASHglsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), + [anon_sym_BSLASHglsplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSplural] = ACTIONS(5289), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHglsname] = ACTIONS(5289), + [anon_sym_BSLASHGlsname] = ACTIONS(5289), + [anon_sym_BSLASHGLSname] = ACTIONS(5289), + [anon_sym_BSLASHglssymbol] = ACTIONS(5289), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), + [anon_sym_BSLASHglsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), + [anon_sym_BSLASHglsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), + [anon_sym_BSLASHglsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), + [anon_sym_BSLASHglsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), + [anon_sym_BSLASHglsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), + [anon_sym_BSLASHnewacronym] = ACTIONS(5289), + [anon_sym_BSLASHacrshort] = ACTIONS(5289), + [anon_sym_BSLASHAcrshort] = ACTIONS(5289), + [anon_sym_BSLASHACRshort] = ACTIONS(5289), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), + [anon_sym_BSLASHacrlong] = ACTIONS(5289), + [anon_sym_BSLASHAcrlong] = ACTIONS(5289), + [anon_sym_BSLASHACRlong] = ACTIONS(5289), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), + [anon_sym_BSLASHacrfull] = ACTIONS(5289), + [anon_sym_BSLASHAcrfull] = ACTIONS(5289), + [anon_sym_BSLASHACRfull] = ACTIONS(5289), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), + [anon_sym_BSLASHacs] = ACTIONS(5289), + [anon_sym_BSLASHAcs] = ACTIONS(5289), + [anon_sym_BSLASHacsp] = ACTIONS(5289), + [anon_sym_BSLASHAcsp] = ACTIONS(5289), + [anon_sym_BSLASHacl] = ACTIONS(5289), + [anon_sym_BSLASHAcl] = ACTIONS(5289), + [anon_sym_BSLASHaclp] = ACTIONS(5289), + [anon_sym_BSLASHAclp] = ACTIONS(5289), + [anon_sym_BSLASHacf] = ACTIONS(5289), + [anon_sym_BSLASHAcf] = ACTIONS(5289), + [anon_sym_BSLASHacfp] = ACTIONS(5289), + [anon_sym_BSLASHAcfp] = ACTIONS(5289), + [anon_sym_BSLASHac] = ACTIONS(5289), + [anon_sym_BSLASHAc] = ACTIONS(5289), + [anon_sym_BSLASHacp] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), + [anon_sym_BSLASHcolor] = ACTIONS(5289), + [anon_sym_BSLASHcolorbox] = ACTIONS(5289), + [anon_sym_BSLASHtextcolor] = ACTIONS(5289), + [anon_sym_BSLASHpagecolor] = ACTIONS(5289), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), + [anon_sym_BSLASHtext] = ACTIONS(5289), + [anon_sym_BSLASHintertext] = ACTIONS(5289), + [anon_sym_shortintertext] = ACTIONS(5289), + }, + [935] = { + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_LPAREN] = ACTIONS(5291), + [anon_sym_RPAREN] = ACTIONS(5291), + [anon_sym_LBRACK] = ACTIONS(5291), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_BSLASHpart] = ACTIONS(5293), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddpart] = ACTIONS(5293), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5291), + [anon_sym_BSLASHchapter] = ACTIONS(5293), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddchap] = ACTIONS(5293), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsection] = ACTIONS(5293), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddsec] = ACTIONS(5293), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHparagraph] = ACTIONS(5293), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5293), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHitem] = ACTIONS(5293), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5291), + [anon_sym_DOLLAR] = ACTIONS(5293), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5291), + [anon_sym_BSLASHbegin] = ACTIONS(5293), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + [anon_sym_BSLASHtext] = ACTIONS(5293), + [anon_sym_BSLASHintertext] = ACTIONS(5293), + [anon_sym_shortintertext] = ACTIONS(5293), + }, + [936] = { + [sym_command_name] = ACTIONS(5297), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5297), + [anon_sym_LPAREN] = ACTIONS(5295), + [anon_sym_RPAREN] = ACTIONS(5295), + [anon_sym_LBRACK] = ACTIONS(5295), + [anon_sym_RBRACK] = ACTIONS(5295), + [anon_sym_COMMA] = ACTIONS(5295), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_BSLASHpart] = ACTIONS(5297), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddpart] = ACTIONS(5297), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5295), + [anon_sym_BSLASHchapter] = ACTIONS(5297), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddchap] = ACTIONS(5297), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsection] = ACTIONS(5297), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddsec] = ACTIONS(5297), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubsection] = ACTIONS(5297), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5297), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHparagraph] = ACTIONS(5297), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5297), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5295), + [anon_sym_BSLASHitem] = ACTIONS(5297), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5295), + [anon_sym_LBRACE] = ACTIONS(5295), + [sym_word] = ACTIONS(5297), + [sym_placeholder] = ACTIONS(5295), + [anon_sym_PLUS] = ACTIONS(5297), + [anon_sym_DASH] = ACTIONS(5297), + [anon_sym_STAR] = ACTIONS(5297), + [anon_sym_SLASH] = ACTIONS(5297), + [anon_sym_CARET] = ACTIONS(5297), + [anon_sym__] = ACTIONS(5297), + [anon_sym_LT] = ACTIONS(5297), + [anon_sym_GT] = ACTIONS(5297), + [anon_sym_BANG] = ACTIONS(5297), + [anon_sym_PIPE] = ACTIONS(5297), + [anon_sym_COLON] = ACTIONS(5297), + [anon_sym_SQUOTE] = ACTIONS(5297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), + [anon_sym_DOLLAR] = ACTIONS(5297), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), + [anon_sym_BSLASHbegin] = ACTIONS(5297), + [anon_sym_BSLASHusepackage] = ACTIONS(5297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), + [anon_sym_BSLASHinclude] = ACTIONS(5297), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), + [anon_sym_BSLASHinput] = ACTIONS(5297), + [anon_sym_BSLASHsubfile] = ACTIONS(5297), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), + [anon_sym_BSLASHbibliography] = ACTIONS(5297), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), + [anon_sym_BSLASHincludesvg] = ACTIONS(5297), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), + [anon_sym_BSLASHimport] = ACTIONS(5297), + [anon_sym_BSLASHsubimport] = ACTIONS(5297), + [anon_sym_BSLASHinputfrom] = ACTIONS(5297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), + [anon_sym_BSLASHincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHcaption] = ACTIONS(5297), + [anon_sym_BSLASHcite] = ACTIONS(5297), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCite] = ACTIONS(5297), + [anon_sym_BSLASHnocite] = ACTIONS(5297), + [anon_sym_BSLASHcitet] = ACTIONS(5297), + [anon_sym_BSLASHcitep] = ACTIONS(5297), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteauthor] = ACTIONS(5297), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitetitle] = ACTIONS(5297), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteyear] = ACTIONS(5297), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitedate] = ACTIONS(5297), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteurl] = ACTIONS(5297), + [anon_sym_BSLASHfullcite] = ACTIONS(5297), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), + [anon_sym_BSLASHcitealt] = ACTIONS(5297), + [anon_sym_BSLASHcitealp] = ACTIONS(5297), + [anon_sym_BSLASHcitetext] = ACTIONS(5297), + [anon_sym_BSLASHparencite] = ACTIONS(5297), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHParencite] = ACTIONS(5297), + [anon_sym_BSLASHfootcite] = ACTIONS(5297), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), + [anon_sym_BSLASHtextcite] = ACTIONS(5297), + [anon_sym_BSLASHTextcite] = ACTIONS(5297), + [anon_sym_BSLASHsmartcite] = ACTIONS(5297), + [anon_sym_BSLASHSmartcite] = ACTIONS(5297), + [anon_sym_BSLASHsupercite] = ACTIONS(5297), + [anon_sym_BSLASHautocite] = ACTIONS(5297), + [anon_sym_BSLASHAutocite] = ACTIONS(5297), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHvolcite] = ACTIONS(5297), + [anon_sym_BSLASHVolcite] = ACTIONS(5297), + [anon_sym_BSLASHpvolcite] = ACTIONS(5297), + [anon_sym_BSLASHPvolcite] = ACTIONS(5297), + [anon_sym_BSLASHfvolcite] = ACTIONS(5297), + [anon_sym_BSLASHftvolcite] = ACTIONS(5297), + [anon_sym_BSLASHsvolcite] = ACTIONS(5297), + [anon_sym_BSLASHSvolcite] = ACTIONS(5297), + [anon_sym_BSLASHtvolcite] = ACTIONS(5297), + [anon_sym_BSLASHTvolcite] = ACTIONS(5297), + [anon_sym_BSLASHavolcite] = ACTIONS(5297), + [anon_sym_BSLASHAvolcite] = ACTIONS(5297), + [anon_sym_BSLASHnotecite] = ACTIONS(5297), + [anon_sym_BSLASHNotecite] = ACTIONS(5297), + [anon_sym_BSLASHpnotecite] = ACTIONS(5297), + [anon_sym_BSLASHPnotecite] = ACTIONS(5297), + [anon_sym_BSLASHfnotecite] = ACTIONS(5297), + [anon_sym_BSLASHlabel] = ACTIONS(5297), + [anon_sym_BSLASHref] = ACTIONS(5297), + [anon_sym_BSLASHeqref] = ACTIONS(5297), + [anon_sym_BSLASHvref] = ACTIONS(5297), + [anon_sym_BSLASHVref] = ACTIONS(5297), + [anon_sym_BSLASHautoref] = ACTIONS(5297), + [anon_sym_BSLASHpageref] = ACTIONS(5297), + [anon_sym_BSLASHcref] = ACTIONS(5297), + [anon_sym_BSLASHCref] = ACTIONS(5297), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnameCref] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHlabelcref] = ACTIONS(5297), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCrefrange] = ACTIONS(5297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnewlabel] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), + [anon_sym_BSLASHdef] = ACTIONS(5297), + [anon_sym_BSLASHlet] = ACTIONS(5297), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), + [anon_sym_BSLASHgls] = ACTIONS(5297), + [anon_sym_BSLASHGls] = ACTIONS(5297), + [anon_sym_BSLASHGLS] = ACTIONS(5297), + [anon_sym_BSLASHglspl] = ACTIONS(5297), + [anon_sym_BSLASHGlspl] = ACTIONS(5297), + [anon_sym_BSLASHGLSpl] = ACTIONS(5297), + [anon_sym_BSLASHglsdisp] = ACTIONS(5297), + [anon_sym_BSLASHglslink] = ACTIONS(5297), + [anon_sym_BSLASHglstext] = ACTIONS(5297), + [anon_sym_BSLASHGlstext] = ACTIONS(5297), + [anon_sym_BSLASHGLStext] = ACTIONS(5297), + [anon_sym_BSLASHglsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), + [anon_sym_BSLASHglsplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSplural] = ACTIONS(5297), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHglsname] = ACTIONS(5297), + [anon_sym_BSLASHGlsname] = ACTIONS(5297), + [anon_sym_BSLASHGLSname] = ACTIONS(5297), + [anon_sym_BSLASHglssymbol] = ACTIONS(5297), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), + [anon_sym_BSLASHglsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), + [anon_sym_BSLASHglsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), + [anon_sym_BSLASHglsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), + [anon_sym_BSLASHglsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), + [anon_sym_BSLASHglsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), + [anon_sym_BSLASHnewacronym] = ACTIONS(5297), + [anon_sym_BSLASHacrshort] = ACTIONS(5297), + [anon_sym_BSLASHAcrshort] = ACTIONS(5297), + [anon_sym_BSLASHACRshort] = ACTIONS(5297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), + [anon_sym_BSLASHacrlong] = ACTIONS(5297), + [anon_sym_BSLASHAcrlong] = ACTIONS(5297), + [anon_sym_BSLASHACRlong] = ACTIONS(5297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), + [anon_sym_BSLASHacrfull] = ACTIONS(5297), + [anon_sym_BSLASHAcrfull] = ACTIONS(5297), + [anon_sym_BSLASHACRfull] = ACTIONS(5297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), + [anon_sym_BSLASHacs] = ACTIONS(5297), + [anon_sym_BSLASHAcs] = ACTIONS(5297), + [anon_sym_BSLASHacsp] = ACTIONS(5297), + [anon_sym_BSLASHAcsp] = ACTIONS(5297), + [anon_sym_BSLASHacl] = ACTIONS(5297), + [anon_sym_BSLASHAcl] = ACTIONS(5297), + [anon_sym_BSLASHaclp] = ACTIONS(5297), + [anon_sym_BSLASHAclp] = ACTIONS(5297), + [anon_sym_BSLASHacf] = ACTIONS(5297), + [anon_sym_BSLASHAcf] = ACTIONS(5297), + [anon_sym_BSLASHacfp] = ACTIONS(5297), + [anon_sym_BSLASHAcfp] = ACTIONS(5297), + [anon_sym_BSLASHac] = ACTIONS(5297), + [anon_sym_BSLASHAc] = ACTIONS(5297), + [anon_sym_BSLASHacp] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), + [anon_sym_BSLASHcolor] = ACTIONS(5297), + [anon_sym_BSLASHcolorbox] = ACTIONS(5297), + [anon_sym_BSLASHtextcolor] = ACTIONS(5297), + [anon_sym_BSLASHpagecolor] = ACTIONS(5297), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), + [anon_sym_BSLASHtext] = ACTIONS(5297), + [anon_sym_BSLASHintertext] = ACTIONS(5297), + [anon_sym_shortintertext] = ACTIONS(5297), + }, + [937] = { + [sym_command_name] = ACTIONS(5301), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5301), + [anon_sym_LPAREN] = ACTIONS(5299), + [anon_sym_RPAREN] = ACTIONS(5299), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym_RBRACK] = ACTIONS(5299), + [anon_sym_COMMA] = ACTIONS(5299), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_BSLASHpart] = ACTIONS(5301), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddpart] = ACTIONS(5301), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5299), + [anon_sym_BSLASHchapter] = ACTIONS(5301), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddchap] = ACTIONS(5301), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsection] = ACTIONS(5301), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddsec] = ACTIONS(5301), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubsection] = ACTIONS(5301), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5301), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHparagraph] = ACTIONS(5301), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5301), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5299), + [anon_sym_BSLASHitem] = ACTIONS(5301), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5299), + [anon_sym_LBRACE] = ACTIONS(5299), + [sym_word] = ACTIONS(5301), + [sym_placeholder] = ACTIONS(5299), + [anon_sym_PLUS] = ACTIONS(5301), + [anon_sym_DASH] = ACTIONS(5301), + [anon_sym_STAR] = ACTIONS(5301), + [anon_sym_SLASH] = ACTIONS(5301), + [anon_sym_CARET] = ACTIONS(5301), + [anon_sym__] = ACTIONS(5301), + [anon_sym_LT] = ACTIONS(5301), + [anon_sym_GT] = ACTIONS(5301), + [anon_sym_BANG] = ACTIONS(5301), + [anon_sym_PIPE] = ACTIONS(5301), + [anon_sym_COLON] = ACTIONS(5301), + [anon_sym_SQUOTE] = ACTIONS(5301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), + [anon_sym_DOLLAR] = ACTIONS(5301), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), + [anon_sym_BSLASHbegin] = ACTIONS(5301), + [anon_sym_BSLASHusepackage] = ACTIONS(5301), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), + [anon_sym_BSLASHinclude] = ACTIONS(5301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), + [anon_sym_BSLASHinput] = ACTIONS(5301), + [anon_sym_BSLASHsubfile] = ACTIONS(5301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), + [anon_sym_BSLASHbibliography] = ACTIONS(5301), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), + [anon_sym_BSLASHincludesvg] = ACTIONS(5301), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), + [anon_sym_BSLASHimport] = ACTIONS(5301), + [anon_sym_BSLASHsubimport] = ACTIONS(5301), + [anon_sym_BSLASHinputfrom] = ACTIONS(5301), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), + [anon_sym_BSLASHincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHcaption] = ACTIONS(5301), + [anon_sym_BSLASHcite] = ACTIONS(5301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCite] = ACTIONS(5301), + [anon_sym_BSLASHnocite] = ACTIONS(5301), + [anon_sym_BSLASHcitet] = ACTIONS(5301), + [anon_sym_BSLASHcitep] = ACTIONS(5301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteauthor] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitetitle] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteyear] = ACTIONS(5301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitedate] = ACTIONS(5301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteurl] = ACTIONS(5301), + [anon_sym_BSLASHfullcite] = ACTIONS(5301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), + [anon_sym_BSLASHcitealt] = ACTIONS(5301), + [anon_sym_BSLASHcitealp] = ACTIONS(5301), + [anon_sym_BSLASHcitetext] = ACTIONS(5301), + [anon_sym_BSLASHparencite] = ACTIONS(5301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHParencite] = ACTIONS(5301), + [anon_sym_BSLASHfootcite] = ACTIONS(5301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), + [anon_sym_BSLASHtextcite] = ACTIONS(5301), + [anon_sym_BSLASHTextcite] = ACTIONS(5301), + [anon_sym_BSLASHsmartcite] = ACTIONS(5301), + [anon_sym_BSLASHSmartcite] = ACTIONS(5301), + [anon_sym_BSLASHsupercite] = ACTIONS(5301), + [anon_sym_BSLASHautocite] = ACTIONS(5301), + [anon_sym_BSLASHAutocite] = ACTIONS(5301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHvolcite] = ACTIONS(5301), + [anon_sym_BSLASHVolcite] = ACTIONS(5301), + [anon_sym_BSLASHpvolcite] = ACTIONS(5301), + [anon_sym_BSLASHPvolcite] = ACTIONS(5301), + [anon_sym_BSLASHfvolcite] = ACTIONS(5301), + [anon_sym_BSLASHftvolcite] = ACTIONS(5301), + [anon_sym_BSLASHsvolcite] = ACTIONS(5301), + [anon_sym_BSLASHSvolcite] = ACTIONS(5301), + [anon_sym_BSLASHtvolcite] = ACTIONS(5301), + [anon_sym_BSLASHTvolcite] = ACTIONS(5301), + [anon_sym_BSLASHavolcite] = ACTIONS(5301), + [anon_sym_BSLASHAvolcite] = ACTIONS(5301), + [anon_sym_BSLASHnotecite] = ACTIONS(5301), + [anon_sym_BSLASHNotecite] = ACTIONS(5301), + [anon_sym_BSLASHpnotecite] = ACTIONS(5301), + [anon_sym_BSLASHPnotecite] = ACTIONS(5301), + [anon_sym_BSLASHfnotecite] = ACTIONS(5301), + [anon_sym_BSLASHlabel] = ACTIONS(5301), + [anon_sym_BSLASHref] = ACTIONS(5301), + [anon_sym_BSLASHeqref] = ACTIONS(5301), + [anon_sym_BSLASHvref] = ACTIONS(5301), + [anon_sym_BSLASHVref] = ACTIONS(5301), + [anon_sym_BSLASHautoref] = ACTIONS(5301), + [anon_sym_BSLASHpageref] = ACTIONS(5301), + [anon_sym_BSLASHcref] = ACTIONS(5301), + [anon_sym_BSLASHCref] = ACTIONS(5301), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnameCref] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHlabelcref] = ACTIONS(5301), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCrefrange] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnewlabel] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), + [anon_sym_BSLASHdef] = ACTIONS(5301), + [anon_sym_BSLASHlet] = ACTIONS(5301), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), + [anon_sym_BSLASHgls] = ACTIONS(5301), + [anon_sym_BSLASHGls] = ACTIONS(5301), + [anon_sym_BSLASHGLS] = ACTIONS(5301), + [anon_sym_BSLASHglspl] = ACTIONS(5301), + [anon_sym_BSLASHGlspl] = ACTIONS(5301), + [anon_sym_BSLASHGLSpl] = ACTIONS(5301), + [anon_sym_BSLASHglsdisp] = ACTIONS(5301), + [anon_sym_BSLASHglslink] = ACTIONS(5301), + [anon_sym_BSLASHglstext] = ACTIONS(5301), + [anon_sym_BSLASHGlstext] = ACTIONS(5301), + [anon_sym_BSLASHGLStext] = ACTIONS(5301), + [anon_sym_BSLASHglsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), + [anon_sym_BSLASHglsplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSplural] = ACTIONS(5301), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHglsname] = ACTIONS(5301), + [anon_sym_BSLASHGlsname] = ACTIONS(5301), + [anon_sym_BSLASHGLSname] = ACTIONS(5301), + [anon_sym_BSLASHglssymbol] = ACTIONS(5301), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), + [anon_sym_BSLASHglsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), + [anon_sym_BSLASHglsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), + [anon_sym_BSLASHglsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), + [anon_sym_BSLASHglsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), + [anon_sym_BSLASHglsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), + [anon_sym_BSLASHnewacronym] = ACTIONS(5301), + [anon_sym_BSLASHacrshort] = ACTIONS(5301), + [anon_sym_BSLASHAcrshort] = ACTIONS(5301), + [anon_sym_BSLASHACRshort] = ACTIONS(5301), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), + [anon_sym_BSLASHacrlong] = ACTIONS(5301), + [anon_sym_BSLASHAcrlong] = ACTIONS(5301), + [anon_sym_BSLASHACRlong] = ACTIONS(5301), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), + [anon_sym_BSLASHacrfull] = ACTIONS(5301), + [anon_sym_BSLASHAcrfull] = ACTIONS(5301), + [anon_sym_BSLASHACRfull] = ACTIONS(5301), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), + [anon_sym_BSLASHacs] = ACTIONS(5301), + [anon_sym_BSLASHAcs] = ACTIONS(5301), + [anon_sym_BSLASHacsp] = ACTIONS(5301), + [anon_sym_BSLASHAcsp] = ACTIONS(5301), + [anon_sym_BSLASHacl] = ACTIONS(5301), + [anon_sym_BSLASHAcl] = ACTIONS(5301), + [anon_sym_BSLASHaclp] = ACTIONS(5301), + [anon_sym_BSLASHAclp] = ACTIONS(5301), + [anon_sym_BSLASHacf] = ACTIONS(5301), + [anon_sym_BSLASHAcf] = ACTIONS(5301), + [anon_sym_BSLASHacfp] = ACTIONS(5301), + [anon_sym_BSLASHAcfp] = ACTIONS(5301), + [anon_sym_BSLASHac] = ACTIONS(5301), + [anon_sym_BSLASHAc] = ACTIONS(5301), + [anon_sym_BSLASHacp] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), + [anon_sym_BSLASHcolor] = ACTIONS(5301), + [anon_sym_BSLASHcolorbox] = ACTIONS(5301), + [anon_sym_BSLASHtextcolor] = ACTIONS(5301), + [anon_sym_BSLASHpagecolor] = ACTIONS(5301), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), + [anon_sym_BSLASHtext] = ACTIONS(5301), + [anon_sym_BSLASHintertext] = ACTIONS(5301), + [anon_sym_shortintertext] = ACTIONS(5301), + }, + [938] = { + [sym_command_name] = ACTIONS(5065), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_RBRACK] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_BSLASHpart] = ACTIONS(5065), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddpart] = ACTIONS(5065), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), + [anon_sym_BSLASHchapter] = ACTIONS(5065), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddchap] = ACTIONS(5065), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsection] = ACTIONS(5065), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddsec] = ACTIONS(5065), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubsection] = ACTIONS(5065), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHparagraph] = ACTIONS(5065), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), + [anon_sym_BSLASHitem] = ACTIONS(5065), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5063), + [sym_word] = ACTIONS(5065), + [sym_placeholder] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_CARET] = ACTIONS(5065), + [anon_sym__] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_COLON] = ACTIONS(5065), + [anon_sym_SQUOTE] = ACTIONS(5065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), + [anon_sym_DOLLAR] = ACTIONS(5065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), + [anon_sym_BSLASHbegin] = ACTIONS(5065), + [anon_sym_BSLASHusepackage] = ACTIONS(5065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), + [anon_sym_BSLASHinclude] = ACTIONS(5065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), + [anon_sym_BSLASHinput] = ACTIONS(5065), + [anon_sym_BSLASHsubfile] = ACTIONS(5065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), + [anon_sym_BSLASHbibliography] = ACTIONS(5065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), + [anon_sym_BSLASHincludesvg] = ACTIONS(5065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), + [anon_sym_BSLASHimport] = ACTIONS(5065), + [anon_sym_BSLASHsubimport] = ACTIONS(5065), + [anon_sym_BSLASHinputfrom] = ACTIONS(5065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), + [anon_sym_BSLASHincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHcaption] = ACTIONS(5065), + [anon_sym_BSLASHcite] = ACTIONS(5065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCite] = ACTIONS(5065), + [anon_sym_BSLASHnocite] = ACTIONS(5065), + [anon_sym_BSLASHcitet] = ACTIONS(5065), + [anon_sym_BSLASHcitep] = ACTIONS(5065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteauthor] = ACTIONS(5065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitetitle] = ACTIONS(5065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteyear] = ACTIONS(5065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitedate] = ACTIONS(5065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteurl] = ACTIONS(5065), + [anon_sym_BSLASHfullcite] = ACTIONS(5065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), + [anon_sym_BSLASHcitealt] = ACTIONS(5065), + [anon_sym_BSLASHcitealp] = ACTIONS(5065), + [anon_sym_BSLASHcitetext] = ACTIONS(5065), + [anon_sym_BSLASHparencite] = ACTIONS(5065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHParencite] = ACTIONS(5065), + [anon_sym_BSLASHfootcite] = ACTIONS(5065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), + [anon_sym_BSLASHtextcite] = ACTIONS(5065), + [anon_sym_BSLASHTextcite] = ACTIONS(5065), + [anon_sym_BSLASHsmartcite] = ACTIONS(5065), + [anon_sym_BSLASHSmartcite] = ACTIONS(5065), + [anon_sym_BSLASHsupercite] = ACTIONS(5065), + [anon_sym_BSLASHautocite] = ACTIONS(5065), + [anon_sym_BSLASHAutocite] = ACTIONS(5065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHvolcite] = ACTIONS(5065), + [anon_sym_BSLASHVolcite] = ACTIONS(5065), + [anon_sym_BSLASHpvolcite] = ACTIONS(5065), + [anon_sym_BSLASHPvolcite] = ACTIONS(5065), + [anon_sym_BSLASHfvolcite] = ACTIONS(5065), + [anon_sym_BSLASHftvolcite] = ACTIONS(5065), + [anon_sym_BSLASHsvolcite] = ACTIONS(5065), + [anon_sym_BSLASHSvolcite] = ACTIONS(5065), + [anon_sym_BSLASHtvolcite] = ACTIONS(5065), + [anon_sym_BSLASHTvolcite] = ACTIONS(5065), + [anon_sym_BSLASHavolcite] = ACTIONS(5065), + [anon_sym_BSLASHAvolcite] = ACTIONS(5065), + [anon_sym_BSLASHnotecite] = ACTIONS(5065), + [anon_sym_BSLASHNotecite] = ACTIONS(5065), + [anon_sym_BSLASHpnotecite] = ACTIONS(5065), + [anon_sym_BSLASHPnotecite] = ACTIONS(5065), + [anon_sym_BSLASHfnotecite] = ACTIONS(5065), + [anon_sym_BSLASHlabel] = ACTIONS(5065), + [anon_sym_BSLASHref] = ACTIONS(5065), + [anon_sym_BSLASHeqref] = ACTIONS(5065), + [anon_sym_BSLASHvref] = ACTIONS(5065), + [anon_sym_BSLASHVref] = ACTIONS(5065), + [anon_sym_BSLASHautoref] = ACTIONS(5065), + [anon_sym_BSLASHpageref] = ACTIONS(5065), + [anon_sym_BSLASHcref] = ACTIONS(5065), + [anon_sym_BSLASHCref] = ACTIONS(5065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnameCref] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHlabelcref] = ACTIONS(5065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCrefrange] = ACTIONS(5065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnewlabel] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), + [anon_sym_BSLASHdef] = ACTIONS(5065), + [anon_sym_BSLASHlet] = ACTIONS(5065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), + [anon_sym_BSLASHgls] = ACTIONS(5065), + [anon_sym_BSLASHGls] = ACTIONS(5065), + [anon_sym_BSLASHGLS] = ACTIONS(5065), + [anon_sym_BSLASHglspl] = ACTIONS(5065), + [anon_sym_BSLASHGlspl] = ACTIONS(5065), + [anon_sym_BSLASHGLSpl] = ACTIONS(5065), + [anon_sym_BSLASHglsdisp] = ACTIONS(5065), + [anon_sym_BSLASHglslink] = ACTIONS(5065), + [anon_sym_BSLASHglstext] = ACTIONS(5065), + [anon_sym_BSLASHGlstext] = ACTIONS(5065), + [anon_sym_BSLASHGLStext] = ACTIONS(5065), + [anon_sym_BSLASHglsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), + [anon_sym_BSLASHglsplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSplural] = ACTIONS(5065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHglsname] = ACTIONS(5065), + [anon_sym_BSLASHGlsname] = ACTIONS(5065), + [anon_sym_BSLASHGLSname] = ACTIONS(5065), + [anon_sym_BSLASHglssymbol] = ACTIONS(5065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), + [anon_sym_BSLASHglsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), + [anon_sym_BSLASHglsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), + [anon_sym_BSLASHglsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), + [anon_sym_BSLASHglsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), + [anon_sym_BSLASHglsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), + [anon_sym_BSLASHnewacronym] = ACTIONS(5065), + [anon_sym_BSLASHacrshort] = ACTIONS(5065), + [anon_sym_BSLASHAcrshort] = ACTIONS(5065), + [anon_sym_BSLASHACRshort] = ACTIONS(5065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), + [anon_sym_BSLASHacrlong] = ACTIONS(5065), + [anon_sym_BSLASHAcrlong] = ACTIONS(5065), + [anon_sym_BSLASHACRlong] = ACTIONS(5065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), + [anon_sym_BSLASHacrfull] = ACTIONS(5065), + [anon_sym_BSLASHAcrfull] = ACTIONS(5065), + [anon_sym_BSLASHACRfull] = ACTIONS(5065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), + [anon_sym_BSLASHacs] = ACTIONS(5065), + [anon_sym_BSLASHAcs] = ACTIONS(5065), + [anon_sym_BSLASHacsp] = ACTIONS(5065), + [anon_sym_BSLASHAcsp] = ACTIONS(5065), + [anon_sym_BSLASHacl] = ACTIONS(5065), + [anon_sym_BSLASHAcl] = ACTIONS(5065), + [anon_sym_BSLASHaclp] = ACTIONS(5065), + [anon_sym_BSLASHAclp] = ACTIONS(5065), + [anon_sym_BSLASHacf] = ACTIONS(5065), + [anon_sym_BSLASHAcf] = ACTIONS(5065), + [anon_sym_BSLASHacfp] = ACTIONS(5065), + [anon_sym_BSLASHAcfp] = ACTIONS(5065), + [anon_sym_BSLASHac] = ACTIONS(5065), + [anon_sym_BSLASHAc] = ACTIONS(5065), + [anon_sym_BSLASHacp] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), + [anon_sym_BSLASHcolor] = ACTIONS(5065), + [anon_sym_BSLASHcolorbox] = ACTIONS(5065), + [anon_sym_BSLASHtextcolor] = ACTIONS(5065), + [anon_sym_BSLASHpagecolor] = ACTIONS(5065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHtext] = ACTIONS(5065), + [anon_sym_BSLASHintertext] = ACTIONS(5065), + [anon_sym_shortintertext] = ACTIONS(5065), + }, + [939] = { + [sym_command_name] = ACTIONS(5073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5071), + [anon_sym_RPAREN] = ACTIONS(5071), + [anon_sym_LBRACK] = ACTIONS(5071), + [anon_sym_RBRACK] = ACTIONS(5071), + [anon_sym_COMMA] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_BSLASHpart] = ACTIONS(5073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddpart] = ACTIONS(5073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), + [anon_sym_BSLASHchapter] = ACTIONS(5073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddchap] = ACTIONS(5073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsection] = ACTIONS(5073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddsec] = ACTIONS(5073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubsection] = ACTIONS(5073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHparagraph] = ACTIONS(5073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), + [anon_sym_BSLASHitem] = ACTIONS(5073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5071), + [sym_word] = ACTIONS(5073), + [sym_placeholder] = ACTIONS(5071), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_CARET] = ACTIONS(5073), + [anon_sym__] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_PIPE] = ACTIONS(5073), + [anon_sym_COLON] = ACTIONS(5073), + [anon_sym_SQUOTE] = ACTIONS(5073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), + [anon_sym_DOLLAR] = ACTIONS(5073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), + [anon_sym_BSLASHbegin] = ACTIONS(5073), + [anon_sym_BSLASHusepackage] = ACTIONS(5073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), + [anon_sym_BSLASHinclude] = ACTIONS(5073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), + [anon_sym_BSLASHinput] = ACTIONS(5073), + [anon_sym_BSLASHsubfile] = ACTIONS(5073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), + [anon_sym_BSLASHbibliography] = ACTIONS(5073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), + [anon_sym_BSLASHincludesvg] = ACTIONS(5073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), + [anon_sym_BSLASHimport] = ACTIONS(5073), + [anon_sym_BSLASHsubimport] = ACTIONS(5073), + [anon_sym_BSLASHinputfrom] = ACTIONS(5073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), + [anon_sym_BSLASHincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHcaption] = ACTIONS(5073), + [anon_sym_BSLASHcite] = ACTIONS(5073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCite] = ACTIONS(5073), + [anon_sym_BSLASHnocite] = ACTIONS(5073), + [anon_sym_BSLASHcitet] = ACTIONS(5073), + [anon_sym_BSLASHcitep] = ACTIONS(5073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteauthor] = ACTIONS(5073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitetitle] = ACTIONS(5073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteyear] = ACTIONS(5073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitedate] = ACTIONS(5073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteurl] = ACTIONS(5073), + [anon_sym_BSLASHfullcite] = ACTIONS(5073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), + [anon_sym_BSLASHcitealt] = ACTIONS(5073), + [anon_sym_BSLASHcitealp] = ACTIONS(5073), + [anon_sym_BSLASHcitetext] = ACTIONS(5073), + [anon_sym_BSLASHparencite] = ACTIONS(5073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHParencite] = ACTIONS(5073), + [anon_sym_BSLASHfootcite] = ACTIONS(5073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), + [anon_sym_BSLASHtextcite] = ACTIONS(5073), + [anon_sym_BSLASHTextcite] = ACTIONS(5073), + [anon_sym_BSLASHsmartcite] = ACTIONS(5073), + [anon_sym_BSLASHSmartcite] = ACTIONS(5073), + [anon_sym_BSLASHsupercite] = ACTIONS(5073), + [anon_sym_BSLASHautocite] = ACTIONS(5073), + [anon_sym_BSLASHAutocite] = ACTIONS(5073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHvolcite] = ACTIONS(5073), + [anon_sym_BSLASHVolcite] = ACTIONS(5073), + [anon_sym_BSLASHpvolcite] = ACTIONS(5073), + [anon_sym_BSLASHPvolcite] = ACTIONS(5073), + [anon_sym_BSLASHfvolcite] = ACTIONS(5073), + [anon_sym_BSLASHftvolcite] = ACTIONS(5073), + [anon_sym_BSLASHsvolcite] = ACTIONS(5073), + [anon_sym_BSLASHSvolcite] = ACTIONS(5073), + [anon_sym_BSLASHtvolcite] = ACTIONS(5073), + [anon_sym_BSLASHTvolcite] = ACTIONS(5073), + [anon_sym_BSLASHavolcite] = ACTIONS(5073), + [anon_sym_BSLASHAvolcite] = ACTIONS(5073), + [anon_sym_BSLASHnotecite] = ACTIONS(5073), + [anon_sym_BSLASHNotecite] = ACTIONS(5073), + [anon_sym_BSLASHpnotecite] = ACTIONS(5073), + [anon_sym_BSLASHPnotecite] = ACTIONS(5073), + [anon_sym_BSLASHfnotecite] = ACTIONS(5073), + [anon_sym_BSLASHlabel] = ACTIONS(5073), + [anon_sym_BSLASHref] = ACTIONS(5073), + [anon_sym_BSLASHeqref] = ACTIONS(5073), + [anon_sym_BSLASHvref] = ACTIONS(5073), + [anon_sym_BSLASHVref] = ACTIONS(5073), + [anon_sym_BSLASHautoref] = ACTIONS(5073), + [anon_sym_BSLASHpageref] = ACTIONS(5073), + [anon_sym_BSLASHcref] = ACTIONS(5073), + [anon_sym_BSLASHCref] = ACTIONS(5073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnameCref] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHlabelcref] = ACTIONS(5073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCrefrange] = ACTIONS(5073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnewlabel] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), + [anon_sym_BSLASHdef] = ACTIONS(5073), + [anon_sym_BSLASHlet] = ACTIONS(5073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), + [anon_sym_BSLASHgls] = ACTIONS(5073), + [anon_sym_BSLASHGls] = ACTIONS(5073), + [anon_sym_BSLASHGLS] = ACTIONS(5073), + [anon_sym_BSLASHglspl] = ACTIONS(5073), + [anon_sym_BSLASHGlspl] = ACTIONS(5073), + [anon_sym_BSLASHGLSpl] = ACTIONS(5073), + [anon_sym_BSLASHglsdisp] = ACTIONS(5073), + [anon_sym_BSLASHglslink] = ACTIONS(5073), + [anon_sym_BSLASHglstext] = ACTIONS(5073), + [anon_sym_BSLASHGlstext] = ACTIONS(5073), + [anon_sym_BSLASHGLStext] = ACTIONS(5073), + [anon_sym_BSLASHglsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), + [anon_sym_BSLASHglsplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSplural] = ACTIONS(5073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHglsname] = ACTIONS(5073), + [anon_sym_BSLASHGlsname] = ACTIONS(5073), + [anon_sym_BSLASHGLSname] = ACTIONS(5073), + [anon_sym_BSLASHglssymbol] = ACTIONS(5073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), + [anon_sym_BSLASHglsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), + [anon_sym_BSLASHglsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), + [anon_sym_BSLASHglsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), + [anon_sym_BSLASHglsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), + [anon_sym_BSLASHglsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), + [anon_sym_BSLASHnewacronym] = ACTIONS(5073), + [anon_sym_BSLASHacrshort] = ACTIONS(5073), + [anon_sym_BSLASHAcrshort] = ACTIONS(5073), + [anon_sym_BSLASHACRshort] = ACTIONS(5073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), + [anon_sym_BSLASHacrlong] = ACTIONS(5073), + [anon_sym_BSLASHAcrlong] = ACTIONS(5073), + [anon_sym_BSLASHACRlong] = ACTIONS(5073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), + [anon_sym_BSLASHacrfull] = ACTIONS(5073), + [anon_sym_BSLASHAcrfull] = ACTIONS(5073), + [anon_sym_BSLASHACRfull] = ACTIONS(5073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), + [anon_sym_BSLASHacs] = ACTIONS(5073), + [anon_sym_BSLASHAcs] = ACTIONS(5073), + [anon_sym_BSLASHacsp] = ACTIONS(5073), + [anon_sym_BSLASHAcsp] = ACTIONS(5073), + [anon_sym_BSLASHacl] = ACTIONS(5073), + [anon_sym_BSLASHAcl] = ACTIONS(5073), + [anon_sym_BSLASHaclp] = ACTIONS(5073), + [anon_sym_BSLASHAclp] = ACTIONS(5073), + [anon_sym_BSLASHacf] = ACTIONS(5073), + [anon_sym_BSLASHAcf] = ACTIONS(5073), + [anon_sym_BSLASHacfp] = ACTIONS(5073), + [anon_sym_BSLASHAcfp] = ACTIONS(5073), + [anon_sym_BSLASHac] = ACTIONS(5073), + [anon_sym_BSLASHAc] = ACTIONS(5073), + [anon_sym_BSLASHacp] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), + [anon_sym_BSLASHcolor] = ACTIONS(5073), + [anon_sym_BSLASHcolorbox] = ACTIONS(5073), + [anon_sym_BSLASHtextcolor] = ACTIONS(5073), + [anon_sym_BSLASHpagecolor] = ACTIONS(5073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHtext] = ACTIONS(5073), + [anon_sym_BSLASHintertext] = ACTIONS(5073), + [anon_sym_shortintertext] = ACTIONS(5073), }, - [1102] = { - [sym_command_name] = ACTIONS(5117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_BSLASHpart] = ACTIONS(5117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddpart] = ACTIONS(5117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHchapter] = ACTIONS(5117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddchap] = ACTIONS(5117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsection] = ACTIONS(5117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddsec] = ACTIONS(5117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHparagraph] = ACTIONS(5117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHitem] = ACTIONS(5117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [sym_word] = ACTIONS(5117), - [sym_placeholder] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym__] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5117), - [anon_sym_PIPE] = ACTIONS(5117), - [anon_sym_COLON] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5115), - [anon_sym_BSLASHbegin] = ACTIONS(5117), - [anon_sym_BSLASHend] = ACTIONS(5117), - [anon_sym_BSLASHusepackage] = ACTIONS(5117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5117), - [anon_sym_BSLASHinclude] = ACTIONS(5117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5117), - [anon_sym_BSLASHinput] = ACTIONS(5117), - [anon_sym_BSLASHsubfile] = ACTIONS(5117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5117), - [anon_sym_BSLASHbibliography] = ACTIONS(5117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5117), - [anon_sym_BSLASHincludesvg] = ACTIONS(5117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5117), - [anon_sym_BSLASHimport] = ACTIONS(5117), - [anon_sym_BSLASHsubimport] = ACTIONS(5117), - [anon_sym_BSLASHinputfrom] = ACTIONS(5117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5117), - [anon_sym_BSLASHincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHcaption] = ACTIONS(5117), - [anon_sym_BSLASHcite] = ACTIONS(5117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCite] = ACTIONS(5117), - [anon_sym_BSLASHnocite] = ACTIONS(5117), - [anon_sym_BSLASHcitet] = ACTIONS(5117), - [anon_sym_BSLASHcitep] = ACTIONS(5117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteyear] = ACTIONS(5117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitedate] = ACTIONS(5117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteurl] = ACTIONS(5117), - [anon_sym_BSLASHfullcite] = ACTIONS(5117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5117), - [anon_sym_BSLASHcitealt] = ACTIONS(5117), - [anon_sym_BSLASHcitealp] = ACTIONS(5117), - [anon_sym_BSLASHcitetext] = ACTIONS(5117), - [anon_sym_BSLASHparencite] = ACTIONS(5117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHParencite] = ACTIONS(5117), - [anon_sym_BSLASHfootcite] = ACTIONS(5117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5117), - [anon_sym_BSLASHtextcite] = ACTIONS(5117), - [anon_sym_BSLASHTextcite] = ACTIONS(5117), - [anon_sym_BSLASHsmartcite] = ACTIONS(5117), - [anon_sym_BSLASHSmartcite] = ACTIONS(5117), - [anon_sym_BSLASHsupercite] = ACTIONS(5117), - [anon_sym_BSLASHautocite] = ACTIONS(5117), - [anon_sym_BSLASHAutocite] = ACTIONS(5117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHvolcite] = ACTIONS(5117), - [anon_sym_BSLASHVolcite] = ACTIONS(5117), - [anon_sym_BSLASHpvolcite] = ACTIONS(5117), - [anon_sym_BSLASHPvolcite] = ACTIONS(5117), - [anon_sym_BSLASHfvolcite] = ACTIONS(5117), - [anon_sym_BSLASHftvolcite] = ACTIONS(5117), - [anon_sym_BSLASHsvolcite] = ACTIONS(5117), - [anon_sym_BSLASHSvolcite] = ACTIONS(5117), - [anon_sym_BSLASHtvolcite] = ACTIONS(5117), - [anon_sym_BSLASHTvolcite] = ACTIONS(5117), - [anon_sym_BSLASHavolcite] = ACTIONS(5117), - [anon_sym_BSLASHAvolcite] = ACTIONS(5117), - [anon_sym_BSLASHnotecite] = ACTIONS(5117), - [anon_sym_BSLASHNotecite] = ACTIONS(5117), - [anon_sym_BSLASHpnotecite] = ACTIONS(5117), - [anon_sym_BSLASHPnotecite] = ACTIONS(5117), - [anon_sym_BSLASHfnotecite] = ACTIONS(5117), - [anon_sym_BSLASHlabel] = ACTIONS(5117), - [anon_sym_BSLASHref] = ACTIONS(5117), - [anon_sym_BSLASHeqref] = ACTIONS(5117), - [anon_sym_BSLASHvref] = ACTIONS(5117), - [anon_sym_BSLASHVref] = ACTIONS(5117), - [anon_sym_BSLASHautoref] = ACTIONS(5117), - [anon_sym_BSLASHpageref] = ACTIONS(5117), - [anon_sym_BSLASHcref] = ACTIONS(5117), - [anon_sym_BSLASHCref] = ACTIONS(5117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnameCref] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHlabelcref] = ACTIONS(5117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnewlabel] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdef] = ACTIONS(5117), - [anon_sym_BSLASHlet] = ACTIONS(5117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5117), - [anon_sym_BSLASHgls] = ACTIONS(5117), - [anon_sym_BSLASHGls] = ACTIONS(5117), - [anon_sym_BSLASHGLS] = ACTIONS(5117), - [anon_sym_BSLASHglspl] = ACTIONS(5117), - [anon_sym_BSLASHGlspl] = ACTIONS(5117), - [anon_sym_BSLASHGLSpl] = ACTIONS(5117), - [anon_sym_BSLASHglsdisp] = ACTIONS(5117), - [anon_sym_BSLASHglslink] = ACTIONS(5117), - [anon_sym_BSLASHglstext] = ACTIONS(5117), - [anon_sym_BSLASHGlstext] = ACTIONS(5117), - [anon_sym_BSLASHGLStext] = ACTIONS(5117), - [anon_sym_BSLASHglsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5117), - [anon_sym_BSLASHglsplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSplural] = ACTIONS(5117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHglsname] = ACTIONS(5117), - [anon_sym_BSLASHGlsname] = ACTIONS(5117), - [anon_sym_BSLASHGLSname] = ACTIONS(5117), - [anon_sym_BSLASHglssymbol] = ACTIONS(5117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5117), - [anon_sym_BSLASHglsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5117), - [anon_sym_BSLASHglsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5117), - [anon_sym_BSLASHglsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5117), - [anon_sym_BSLASHglsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5117), - [anon_sym_BSLASHglsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5117), - [anon_sym_BSLASHnewacronym] = ACTIONS(5117), - [anon_sym_BSLASHacrshort] = ACTIONS(5117), - [anon_sym_BSLASHAcrshort] = ACTIONS(5117), - [anon_sym_BSLASHACRshort] = ACTIONS(5117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5117), - [anon_sym_BSLASHacrlong] = ACTIONS(5117), - [anon_sym_BSLASHAcrlong] = ACTIONS(5117), - [anon_sym_BSLASHACRlong] = ACTIONS(5117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5117), - [anon_sym_BSLASHacrfull] = ACTIONS(5117), - [anon_sym_BSLASHAcrfull] = ACTIONS(5117), - [anon_sym_BSLASHACRfull] = ACTIONS(5117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5117), - [anon_sym_BSLASHacs] = ACTIONS(5117), - [anon_sym_BSLASHAcs] = ACTIONS(5117), - [anon_sym_BSLASHacsp] = ACTIONS(5117), - [anon_sym_BSLASHAcsp] = ACTIONS(5117), - [anon_sym_BSLASHacl] = ACTIONS(5117), - [anon_sym_BSLASHAcl] = ACTIONS(5117), - [anon_sym_BSLASHaclp] = ACTIONS(5117), - [anon_sym_BSLASHAclp] = ACTIONS(5117), - [anon_sym_BSLASHacf] = ACTIONS(5117), - [anon_sym_BSLASHAcf] = ACTIONS(5117), - [anon_sym_BSLASHacfp] = ACTIONS(5117), - [anon_sym_BSLASHAcfp] = ACTIONS(5117), - [anon_sym_BSLASHac] = ACTIONS(5117), - [anon_sym_BSLASHAc] = ACTIONS(5117), - [anon_sym_BSLASHacp] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5117), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5117), - [anon_sym_BSLASHcolor] = ACTIONS(5117), - [anon_sym_BSLASHcolorbox] = ACTIONS(5117), - [anon_sym_BSLASHtextcolor] = ACTIONS(5117), - [anon_sym_BSLASHpagecolor] = ACTIONS(5117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5117), + [940] = { + [sym_command_name] = ACTIONS(4963), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_RBRACK] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_EQ] = ACTIONS(4961), + [anon_sym_BSLASHpart] = ACTIONS(4963), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddpart] = ACTIONS(4963), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4961), + [anon_sym_BSLASHchapter] = ACTIONS(4963), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddchap] = ACTIONS(4963), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsection] = ACTIONS(4963), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddsec] = ACTIONS(4963), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubsection] = ACTIONS(4963), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4963), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHparagraph] = ACTIONS(4963), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4963), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4961), + [anon_sym_BSLASHitem] = ACTIONS(4963), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4961), + [anon_sym_LBRACE] = ACTIONS(4961), + [sym_word] = ACTIONS(4963), + [sym_placeholder] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), + [anon_sym__] = ACTIONS(4963), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_COLON] = ACTIONS(4963), + [anon_sym_SQUOTE] = ACTIONS(4963), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), + [anon_sym_DOLLAR] = ACTIONS(4963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), + [anon_sym_BSLASHbegin] = ACTIONS(4963), + [anon_sym_BSLASHusepackage] = ACTIONS(4963), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), + [anon_sym_BSLASHinclude] = ACTIONS(4963), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), + [anon_sym_BSLASHinput] = ACTIONS(4963), + [anon_sym_BSLASHsubfile] = ACTIONS(4963), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), + [anon_sym_BSLASHbibliography] = ACTIONS(4963), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), + [anon_sym_BSLASHincludesvg] = ACTIONS(4963), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), + [anon_sym_BSLASHimport] = ACTIONS(4963), + [anon_sym_BSLASHsubimport] = ACTIONS(4963), + [anon_sym_BSLASHinputfrom] = ACTIONS(4963), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), + [anon_sym_BSLASHincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHcaption] = ACTIONS(4963), + [anon_sym_BSLASHcite] = ACTIONS(4963), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCite] = ACTIONS(4963), + [anon_sym_BSLASHnocite] = ACTIONS(4963), + [anon_sym_BSLASHcitet] = ACTIONS(4963), + [anon_sym_BSLASHcitep] = ACTIONS(4963), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteauthor] = ACTIONS(4963), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitetitle] = ACTIONS(4963), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteyear] = ACTIONS(4963), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitedate] = ACTIONS(4963), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteurl] = ACTIONS(4963), + [anon_sym_BSLASHfullcite] = ACTIONS(4963), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), + [anon_sym_BSLASHcitealt] = ACTIONS(4963), + [anon_sym_BSLASHcitealp] = ACTIONS(4963), + [anon_sym_BSLASHcitetext] = ACTIONS(4963), + [anon_sym_BSLASHparencite] = ACTIONS(4963), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHParencite] = ACTIONS(4963), + [anon_sym_BSLASHfootcite] = ACTIONS(4963), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), + [anon_sym_BSLASHtextcite] = ACTIONS(4963), + [anon_sym_BSLASHTextcite] = ACTIONS(4963), + [anon_sym_BSLASHsmartcite] = ACTIONS(4963), + [anon_sym_BSLASHSmartcite] = ACTIONS(4963), + [anon_sym_BSLASHsupercite] = ACTIONS(4963), + [anon_sym_BSLASHautocite] = ACTIONS(4963), + [anon_sym_BSLASHAutocite] = ACTIONS(4963), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHvolcite] = ACTIONS(4963), + [anon_sym_BSLASHVolcite] = ACTIONS(4963), + [anon_sym_BSLASHpvolcite] = ACTIONS(4963), + [anon_sym_BSLASHPvolcite] = ACTIONS(4963), + [anon_sym_BSLASHfvolcite] = ACTIONS(4963), + [anon_sym_BSLASHftvolcite] = ACTIONS(4963), + [anon_sym_BSLASHsvolcite] = ACTIONS(4963), + [anon_sym_BSLASHSvolcite] = ACTIONS(4963), + [anon_sym_BSLASHtvolcite] = ACTIONS(4963), + [anon_sym_BSLASHTvolcite] = ACTIONS(4963), + [anon_sym_BSLASHavolcite] = ACTIONS(4963), + [anon_sym_BSLASHAvolcite] = ACTIONS(4963), + [anon_sym_BSLASHnotecite] = ACTIONS(4963), + [anon_sym_BSLASHNotecite] = ACTIONS(4963), + [anon_sym_BSLASHpnotecite] = ACTIONS(4963), + [anon_sym_BSLASHPnotecite] = ACTIONS(4963), + [anon_sym_BSLASHfnotecite] = ACTIONS(4963), + [anon_sym_BSLASHlabel] = ACTIONS(4963), + [anon_sym_BSLASHref] = ACTIONS(4963), + [anon_sym_BSLASHeqref] = ACTIONS(4963), + [anon_sym_BSLASHvref] = ACTIONS(4963), + [anon_sym_BSLASHVref] = ACTIONS(4963), + [anon_sym_BSLASHautoref] = ACTIONS(4963), + [anon_sym_BSLASHpageref] = ACTIONS(4963), + [anon_sym_BSLASHcref] = ACTIONS(4963), + [anon_sym_BSLASHCref] = ACTIONS(4963), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnameCref] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHlabelcref] = ACTIONS(4963), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCrefrange] = ACTIONS(4963), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnewlabel] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), + [anon_sym_BSLASHdef] = ACTIONS(4963), + [anon_sym_BSLASHlet] = ACTIONS(4963), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), + [anon_sym_BSLASHgls] = ACTIONS(4963), + [anon_sym_BSLASHGls] = ACTIONS(4963), + [anon_sym_BSLASHGLS] = ACTIONS(4963), + [anon_sym_BSLASHglspl] = ACTIONS(4963), + [anon_sym_BSLASHGlspl] = ACTIONS(4963), + [anon_sym_BSLASHGLSpl] = ACTIONS(4963), + [anon_sym_BSLASHglsdisp] = ACTIONS(4963), + [anon_sym_BSLASHglslink] = ACTIONS(4963), + [anon_sym_BSLASHglstext] = ACTIONS(4963), + [anon_sym_BSLASHGlstext] = ACTIONS(4963), + [anon_sym_BSLASHGLStext] = ACTIONS(4963), + [anon_sym_BSLASHglsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), + [anon_sym_BSLASHglsplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSplural] = ACTIONS(4963), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHglsname] = ACTIONS(4963), + [anon_sym_BSLASHGlsname] = ACTIONS(4963), + [anon_sym_BSLASHGLSname] = ACTIONS(4963), + [anon_sym_BSLASHglssymbol] = ACTIONS(4963), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), + [anon_sym_BSLASHglsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), + [anon_sym_BSLASHglsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), + [anon_sym_BSLASHglsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), + [anon_sym_BSLASHglsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), + [anon_sym_BSLASHglsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), + [anon_sym_BSLASHnewacronym] = ACTIONS(4963), + [anon_sym_BSLASHacrshort] = ACTIONS(4963), + [anon_sym_BSLASHAcrshort] = ACTIONS(4963), + [anon_sym_BSLASHACRshort] = ACTIONS(4963), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), + [anon_sym_BSLASHacrlong] = ACTIONS(4963), + [anon_sym_BSLASHAcrlong] = ACTIONS(4963), + [anon_sym_BSLASHACRlong] = ACTIONS(4963), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), + [anon_sym_BSLASHacrfull] = ACTIONS(4963), + [anon_sym_BSLASHAcrfull] = ACTIONS(4963), + [anon_sym_BSLASHACRfull] = ACTIONS(4963), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), + [anon_sym_BSLASHacs] = ACTIONS(4963), + [anon_sym_BSLASHAcs] = ACTIONS(4963), + [anon_sym_BSLASHacsp] = ACTIONS(4963), + [anon_sym_BSLASHAcsp] = ACTIONS(4963), + [anon_sym_BSLASHacl] = ACTIONS(4963), + [anon_sym_BSLASHAcl] = ACTIONS(4963), + [anon_sym_BSLASHaclp] = ACTIONS(4963), + [anon_sym_BSLASHAclp] = ACTIONS(4963), + [anon_sym_BSLASHacf] = ACTIONS(4963), + [anon_sym_BSLASHAcf] = ACTIONS(4963), + [anon_sym_BSLASHacfp] = ACTIONS(4963), + [anon_sym_BSLASHAcfp] = ACTIONS(4963), + [anon_sym_BSLASHac] = ACTIONS(4963), + [anon_sym_BSLASHAc] = ACTIONS(4963), + [anon_sym_BSLASHacp] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), + [anon_sym_BSLASHcolor] = ACTIONS(4963), + [anon_sym_BSLASHcolorbox] = ACTIONS(4963), + [anon_sym_BSLASHtextcolor] = ACTIONS(4963), + [anon_sym_BSLASHpagecolor] = ACTIONS(4963), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), + [anon_sym_BSLASHtext] = ACTIONS(4963), + [anon_sym_BSLASHintertext] = ACTIONS(4963), + [anon_sym_shortintertext] = ACTIONS(4963), }, - [1103] = { - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_BSLASHpart] = ACTIONS(5113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddpart] = ACTIONS(5113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHchapter] = ACTIONS(5113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddchap] = ACTIONS(5113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsection] = ACTIONS(5113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddsec] = ACTIONS(5113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHparagraph] = ACTIONS(5113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHitem] = ACTIONS(5113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5111), - [anon_sym_BSLASHbegin] = ACTIONS(5113), - [anon_sym_BSLASHend] = ACTIONS(5113), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), + [941] = { + [sym_command_name] = ACTIONS(5305), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5303), + [anon_sym_RPAREN] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5303), + [anon_sym_RBRACK] = ACTIONS(5303), + [anon_sym_COMMA] = ACTIONS(5303), + [anon_sym_EQ] = ACTIONS(5303), + [anon_sym_BSLASHpart] = ACTIONS(5305), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddpart] = ACTIONS(5305), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), + [anon_sym_BSLASHchapter] = ACTIONS(5305), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddchap] = ACTIONS(5305), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsection] = ACTIONS(5305), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddsec] = ACTIONS(5305), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubsection] = ACTIONS(5305), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHparagraph] = ACTIONS(5305), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), + [anon_sym_BSLASHitem] = ACTIONS(5305), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), + [anon_sym_LBRACE] = ACTIONS(5303), + [sym_word] = ACTIONS(5305), + [sym_placeholder] = ACTIONS(5303), + [anon_sym_PLUS] = ACTIONS(5305), + [anon_sym_DASH] = ACTIONS(5305), + [anon_sym_STAR] = ACTIONS(5305), + [anon_sym_SLASH] = ACTIONS(5305), + [anon_sym_CARET] = ACTIONS(5305), + [anon_sym__] = ACTIONS(5305), + [anon_sym_LT] = ACTIONS(5305), + [anon_sym_GT] = ACTIONS(5305), + [anon_sym_BANG] = ACTIONS(5305), + [anon_sym_PIPE] = ACTIONS(5305), + [anon_sym_COLON] = ACTIONS(5305), + [anon_sym_SQUOTE] = ACTIONS(5305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), + [anon_sym_DOLLAR] = ACTIONS(5305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), + [anon_sym_BSLASHbegin] = ACTIONS(5305), + [anon_sym_BSLASHusepackage] = ACTIONS(5305), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), + [anon_sym_BSLASHinclude] = ACTIONS(5305), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), + [anon_sym_BSLASHinput] = ACTIONS(5305), + [anon_sym_BSLASHsubfile] = ACTIONS(5305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), + [anon_sym_BSLASHbibliography] = ACTIONS(5305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), + [anon_sym_BSLASHincludesvg] = ACTIONS(5305), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), + [anon_sym_BSLASHimport] = ACTIONS(5305), + [anon_sym_BSLASHsubimport] = ACTIONS(5305), + [anon_sym_BSLASHinputfrom] = ACTIONS(5305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), + [anon_sym_BSLASHincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHcaption] = ACTIONS(5305), + [anon_sym_BSLASHcite] = ACTIONS(5305), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCite] = ACTIONS(5305), + [anon_sym_BSLASHnocite] = ACTIONS(5305), + [anon_sym_BSLASHcitet] = ACTIONS(5305), + [anon_sym_BSLASHcitep] = ACTIONS(5305), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor] = ACTIONS(5305), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle] = ACTIONS(5305), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteyear] = ACTIONS(5305), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitedate] = ACTIONS(5305), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteurl] = ACTIONS(5305), + [anon_sym_BSLASHfullcite] = ACTIONS(5305), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), + [anon_sym_BSLASHcitealt] = ACTIONS(5305), + [anon_sym_BSLASHcitealp] = ACTIONS(5305), + [anon_sym_BSLASHcitetext] = ACTIONS(5305), + [anon_sym_BSLASHparencite] = ACTIONS(5305), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHParencite] = ACTIONS(5305), + [anon_sym_BSLASHfootcite] = ACTIONS(5305), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), + [anon_sym_BSLASHtextcite] = ACTIONS(5305), + [anon_sym_BSLASHTextcite] = ACTIONS(5305), + [anon_sym_BSLASHsmartcite] = ACTIONS(5305), + [anon_sym_BSLASHSmartcite] = ACTIONS(5305), + [anon_sym_BSLASHsupercite] = ACTIONS(5305), + [anon_sym_BSLASHautocite] = ACTIONS(5305), + [anon_sym_BSLASHAutocite] = ACTIONS(5305), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHvolcite] = ACTIONS(5305), + [anon_sym_BSLASHVolcite] = ACTIONS(5305), + [anon_sym_BSLASHpvolcite] = ACTIONS(5305), + [anon_sym_BSLASHPvolcite] = ACTIONS(5305), + [anon_sym_BSLASHfvolcite] = ACTIONS(5305), + [anon_sym_BSLASHftvolcite] = ACTIONS(5305), + [anon_sym_BSLASHsvolcite] = ACTIONS(5305), + [anon_sym_BSLASHSvolcite] = ACTIONS(5305), + [anon_sym_BSLASHtvolcite] = ACTIONS(5305), + [anon_sym_BSLASHTvolcite] = ACTIONS(5305), + [anon_sym_BSLASHavolcite] = ACTIONS(5305), + [anon_sym_BSLASHAvolcite] = ACTIONS(5305), + [anon_sym_BSLASHnotecite] = ACTIONS(5305), + [anon_sym_BSLASHNotecite] = ACTIONS(5305), + [anon_sym_BSLASHpnotecite] = ACTIONS(5305), + [anon_sym_BSLASHPnotecite] = ACTIONS(5305), + [anon_sym_BSLASHfnotecite] = ACTIONS(5305), + [anon_sym_BSLASHlabel] = ACTIONS(5305), + [anon_sym_BSLASHref] = ACTIONS(5305), + [anon_sym_BSLASHeqref] = ACTIONS(5305), + [anon_sym_BSLASHvref] = ACTIONS(5305), + [anon_sym_BSLASHVref] = ACTIONS(5305), + [anon_sym_BSLASHautoref] = ACTIONS(5305), + [anon_sym_BSLASHpageref] = ACTIONS(5305), + [anon_sym_BSLASHcref] = ACTIONS(5305), + [anon_sym_BSLASHCref] = ACTIONS(5305), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnameCref] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHlabelcref] = ACTIONS(5305), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange] = ACTIONS(5305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnewlabel] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), + [anon_sym_BSLASHdef] = ACTIONS(5305), + [anon_sym_BSLASHlet] = ACTIONS(5305), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), + [anon_sym_BSLASHgls] = ACTIONS(5305), + [anon_sym_BSLASHGls] = ACTIONS(5305), + [anon_sym_BSLASHGLS] = ACTIONS(5305), + [anon_sym_BSLASHglspl] = ACTIONS(5305), + [anon_sym_BSLASHGlspl] = ACTIONS(5305), + [anon_sym_BSLASHGLSpl] = ACTIONS(5305), + [anon_sym_BSLASHglsdisp] = ACTIONS(5305), + [anon_sym_BSLASHglslink] = ACTIONS(5305), + [anon_sym_BSLASHglstext] = ACTIONS(5305), + [anon_sym_BSLASHGlstext] = ACTIONS(5305), + [anon_sym_BSLASHGLStext] = ACTIONS(5305), + [anon_sym_BSLASHglsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), + [anon_sym_BSLASHglsplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSplural] = ACTIONS(5305), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHglsname] = ACTIONS(5305), + [anon_sym_BSLASHGlsname] = ACTIONS(5305), + [anon_sym_BSLASHGLSname] = ACTIONS(5305), + [anon_sym_BSLASHglssymbol] = ACTIONS(5305), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), + [anon_sym_BSLASHglsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), + [anon_sym_BSLASHglsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), + [anon_sym_BSLASHglsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), + [anon_sym_BSLASHglsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), + [anon_sym_BSLASHglsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), + [anon_sym_BSLASHnewacronym] = ACTIONS(5305), + [anon_sym_BSLASHacrshort] = ACTIONS(5305), + [anon_sym_BSLASHAcrshort] = ACTIONS(5305), + [anon_sym_BSLASHACRshort] = ACTIONS(5305), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), + [anon_sym_BSLASHacrlong] = ACTIONS(5305), + [anon_sym_BSLASHAcrlong] = ACTIONS(5305), + [anon_sym_BSLASHACRlong] = ACTIONS(5305), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), + [anon_sym_BSLASHacrfull] = ACTIONS(5305), + [anon_sym_BSLASHAcrfull] = ACTIONS(5305), + [anon_sym_BSLASHACRfull] = ACTIONS(5305), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), + [anon_sym_BSLASHacs] = ACTIONS(5305), + [anon_sym_BSLASHAcs] = ACTIONS(5305), + [anon_sym_BSLASHacsp] = ACTIONS(5305), + [anon_sym_BSLASHAcsp] = ACTIONS(5305), + [anon_sym_BSLASHacl] = ACTIONS(5305), + [anon_sym_BSLASHAcl] = ACTIONS(5305), + [anon_sym_BSLASHaclp] = ACTIONS(5305), + [anon_sym_BSLASHAclp] = ACTIONS(5305), + [anon_sym_BSLASHacf] = ACTIONS(5305), + [anon_sym_BSLASHAcf] = ACTIONS(5305), + [anon_sym_BSLASHacfp] = ACTIONS(5305), + [anon_sym_BSLASHAcfp] = ACTIONS(5305), + [anon_sym_BSLASHac] = ACTIONS(5305), + [anon_sym_BSLASHAc] = ACTIONS(5305), + [anon_sym_BSLASHacp] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), + [anon_sym_BSLASHcolor] = ACTIONS(5305), + [anon_sym_BSLASHcolorbox] = ACTIONS(5305), + [anon_sym_BSLASHtextcolor] = ACTIONS(5305), + [anon_sym_BSLASHpagecolor] = ACTIONS(5305), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), + [anon_sym_BSLASHtext] = ACTIONS(5305), + [anon_sym_BSLASHintertext] = ACTIONS(5305), + [anon_sym_shortintertext] = ACTIONS(5305), }, - [1104] = { - [sym_command_name] = ACTIONS(5109), + [942] = { + [sym_command_name] = ACTIONS(5221), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_BSLASHpart] = ACTIONS(5109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddpart] = ACTIONS(5109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHchapter] = ACTIONS(5109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddchap] = ACTIONS(5109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsection] = ACTIONS(5109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddsec] = ACTIONS(5109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHparagraph] = ACTIONS(5109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHitem] = ACTIONS(5109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), - [anon_sym_BSLASHbegin] = ACTIONS(5109), - [anon_sym_BSLASHend] = ACTIONS(5109), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), + [anon_sym_BSLASHiffalse] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5219), + [anon_sym_RPAREN] = ACTIONS(5219), + [anon_sym_LBRACK] = ACTIONS(5219), + [anon_sym_RBRACK] = ACTIONS(5219), + [anon_sym_COMMA] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_BSLASHpart] = ACTIONS(5221), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddpart] = ACTIONS(5221), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), + [anon_sym_BSLASHchapter] = ACTIONS(5221), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddchap] = ACTIONS(5221), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsection] = ACTIONS(5221), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddsec] = ACTIONS(5221), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubsection] = ACTIONS(5221), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHparagraph] = ACTIONS(5221), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), + [anon_sym_BSLASHitem] = ACTIONS(5221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5219), + [sym_word] = ACTIONS(5221), + [sym_placeholder] = ACTIONS(5219), + [anon_sym_PLUS] = ACTIONS(5221), + [anon_sym_DASH] = ACTIONS(5221), + [anon_sym_STAR] = ACTIONS(5221), + [anon_sym_SLASH] = ACTIONS(5221), + [anon_sym_CARET] = ACTIONS(5221), + [anon_sym__] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5221), + [anon_sym_GT] = ACTIONS(5221), + [anon_sym_BANG] = ACTIONS(5221), + [anon_sym_PIPE] = ACTIONS(5221), + [anon_sym_COLON] = ACTIONS(5221), + [anon_sym_SQUOTE] = ACTIONS(5221), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), + [anon_sym_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), + [anon_sym_BSLASHbegin] = ACTIONS(5221), + [anon_sym_BSLASHusepackage] = ACTIONS(5221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), + [anon_sym_BSLASHinclude] = ACTIONS(5221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), + [anon_sym_BSLASHinput] = ACTIONS(5221), + [anon_sym_BSLASHsubfile] = ACTIONS(5221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), + [anon_sym_BSLASHbibliography] = ACTIONS(5221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), + [anon_sym_BSLASHincludesvg] = ACTIONS(5221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), + [anon_sym_BSLASHimport] = ACTIONS(5221), + [anon_sym_BSLASHsubimport] = ACTIONS(5221), + [anon_sym_BSLASHinputfrom] = ACTIONS(5221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), + [anon_sym_BSLASHincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHcaption] = ACTIONS(5221), + [anon_sym_BSLASHcite] = ACTIONS(5221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCite] = ACTIONS(5221), + [anon_sym_BSLASHnocite] = ACTIONS(5221), + [anon_sym_BSLASHcitet] = ACTIONS(5221), + [anon_sym_BSLASHcitep] = ACTIONS(5221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteyear] = ACTIONS(5221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitedate] = ACTIONS(5221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteurl] = ACTIONS(5221), + [anon_sym_BSLASHfullcite] = ACTIONS(5221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), + [anon_sym_BSLASHcitealt] = ACTIONS(5221), + [anon_sym_BSLASHcitealp] = ACTIONS(5221), + [anon_sym_BSLASHcitetext] = ACTIONS(5221), + [anon_sym_BSLASHparencite] = ACTIONS(5221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHParencite] = ACTIONS(5221), + [anon_sym_BSLASHfootcite] = ACTIONS(5221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), + [anon_sym_BSLASHtextcite] = ACTIONS(5221), + [anon_sym_BSLASHTextcite] = ACTIONS(5221), + [anon_sym_BSLASHsmartcite] = ACTIONS(5221), + [anon_sym_BSLASHSmartcite] = ACTIONS(5221), + [anon_sym_BSLASHsupercite] = ACTIONS(5221), + [anon_sym_BSLASHautocite] = ACTIONS(5221), + [anon_sym_BSLASHAutocite] = ACTIONS(5221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHvolcite] = ACTIONS(5221), + [anon_sym_BSLASHVolcite] = ACTIONS(5221), + [anon_sym_BSLASHpvolcite] = ACTIONS(5221), + [anon_sym_BSLASHPvolcite] = ACTIONS(5221), + [anon_sym_BSLASHfvolcite] = ACTIONS(5221), + [anon_sym_BSLASHftvolcite] = ACTIONS(5221), + [anon_sym_BSLASHsvolcite] = ACTIONS(5221), + [anon_sym_BSLASHSvolcite] = ACTIONS(5221), + [anon_sym_BSLASHtvolcite] = ACTIONS(5221), + [anon_sym_BSLASHTvolcite] = ACTIONS(5221), + [anon_sym_BSLASHavolcite] = ACTIONS(5221), + [anon_sym_BSLASHAvolcite] = ACTIONS(5221), + [anon_sym_BSLASHnotecite] = ACTIONS(5221), + [anon_sym_BSLASHNotecite] = ACTIONS(5221), + [anon_sym_BSLASHpnotecite] = ACTIONS(5221), + [anon_sym_BSLASHPnotecite] = ACTIONS(5221), + [anon_sym_BSLASHfnotecite] = ACTIONS(5221), + [anon_sym_BSLASHlabel] = ACTIONS(5221), + [anon_sym_BSLASHref] = ACTIONS(5221), + [anon_sym_BSLASHeqref] = ACTIONS(5221), + [anon_sym_BSLASHvref] = ACTIONS(5221), + [anon_sym_BSLASHVref] = ACTIONS(5221), + [anon_sym_BSLASHautoref] = ACTIONS(5221), + [anon_sym_BSLASHpageref] = ACTIONS(5221), + [anon_sym_BSLASHcref] = ACTIONS(5221), + [anon_sym_BSLASHCref] = ACTIONS(5221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnameCref] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHlabelcref] = ACTIONS(5221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnewlabel] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), + [anon_sym_BSLASHdef] = ACTIONS(5221), + [anon_sym_BSLASHlet] = ACTIONS(5221), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), + [anon_sym_BSLASHgls] = ACTIONS(5221), + [anon_sym_BSLASHGls] = ACTIONS(5221), + [anon_sym_BSLASHGLS] = ACTIONS(5221), + [anon_sym_BSLASHglspl] = ACTIONS(5221), + [anon_sym_BSLASHGlspl] = ACTIONS(5221), + [anon_sym_BSLASHGLSpl] = ACTIONS(5221), + [anon_sym_BSLASHglsdisp] = ACTIONS(5221), + [anon_sym_BSLASHglslink] = ACTIONS(5221), + [anon_sym_BSLASHglstext] = ACTIONS(5221), + [anon_sym_BSLASHGlstext] = ACTIONS(5221), + [anon_sym_BSLASHGLStext] = ACTIONS(5221), + [anon_sym_BSLASHglsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), + [anon_sym_BSLASHglsplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSplural] = ACTIONS(5221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHglsname] = ACTIONS(5221), + [anon_sym_BSLASHGlsname] = ACTIONS(5221), + [anon_sym_BSLASHGLSname] = ACTIONS(5221), + [anon_sym_BSLASHglssymbol] = ACTIONS(5221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), + [anon_sym_BSLASHglsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), + [anon_sym_BSLASHglsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), + [anon_sym_BSLASHglsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), + [anon_sym_BSLASHglsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), + [anon_sym_BSLASHglsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), + [anon_sym_BSLASHnewacronym] = ACTIONS(5221), + [anon_sym_BSLASHacrshort] = ACTIONS(5221), + [anon_sym_BSLASHAcrshort] = ACTIONS(5221), + [anon_sym_BSLASHACRshort] = ACTIONS(5221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), + [anon_sym_BSLASHacrlong] = ACTIONS(5221), + [anon_sym_BSLASHAcrlong] = ACTIONS(5221), + [anon_sym_BSLASHACRlong] = ACTIONS(5221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), + [anon_sym_BSLASHacrfull] = ACTIONS(5221), + [anon_sym_BSLASHAcrfull] = ACTIONS(5221), + [anon_sym_BSLASHACRfull] = ACTIONS(5221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), + [anon_sym_BSLASHacs] = ACTIONS(5221), + [anon_sym_BSLASHAcs] = ACTIONS(5221), + [anon_sym_BSLASHacsp] = ACTIONS(5221), + [anon_sym_BSLASHAcsp] = ACTIONS(5221), + [anon_sym_BSLASHacl] = ACTIONS(5221), + [anon_sym_BSLASHAcl] = ACTIONS(5221), + [anon_sym_BSLASHaclp] = ACTIONS(5221), + [anon_sym_BSLASHAclp] = ACTIONS(5221), + [anon_sym_BSLASHacf] = ACTIONS(5221), + [anon_sym_BSLASHAcf] = ACTIONS(5221), + [anon_sym_BSLASHacfp] = ACTIONS(5221), + [anon_sym_BSLASHAcfp] = ACTIONS(5221), + [anon_sym_BSLASHac] = ACTIONS(5221), + [anon_sym_BSLASHAc] = ACTIONS(5221), + [anon_sym_BSLASHacp] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), + [anon_sym_BSLASHcolor] = ACTIONS(5221), + [anon_sym_BSLASHcolorbox] = ACTIONS(5221), + [anon_sym_BSLASHtextcolor] = ACTIONS(5221), + [anon_sym_BSLASHpagecolor] = ACTIONS(5221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), + [anon_sym_BSLASHtext] = ACTIONS(5221), + [anon_sym_BSLASHintertext] = ACTIONS(5221), + [anon_sym_shortintertext] = ACTIONS(5221), }, - [1105] = { - [sym_command_name] = ACTIONS(5105), + [943] = { + [sym_command_name] = ACTIONS(4897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4897), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_RBRACK] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_BSLASHpart] = ACTIONS(4897), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddpart] = ACTIONS(4897), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4895), + [anon_sym_BSLASHchapter] = ACTIONS(4897), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddchap] = ACTIONS(4897), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsection] = ACTIONS(4897), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddsec] = ACTIONS(4897), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubsection] = ACTIONS(4897), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4897), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHparagraph] = ACTIONS(4897), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4897), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4895), + [anon_sym_BSLASHitem] = ACTIONS(4897), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4895), + [anon_sym_LBRACE] = ACTIONS(4895), + [sym_word] = ACTIONS(4897), + [sym_placeholder] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_STAR] = ACTIONS(4897), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_CARET] = ACTIONS(4897), + [anon_sym__] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_BANG] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_COLON] = ACTIONS(4897), + [anon_sym_SQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(4897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), + [anon_sym_BSLASHbegin] = ACTIONS(4897), + [anon_sym_BSLASHusepackage] = ACTIONS(4897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), + [anon_sym_BSLASHinclude] = ACTIONS(4897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), + [anon_sym_BSLASHinput] = ACTIONS(4897), + [anon_sym_BSLASHsubfile] = ACTIONS(4897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), + [anon_sym_BSLASHbibliography] = ACTIONS(4897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), + [anon_sym_BSLASHincludesvg] = ACTIONS(4897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), + [anon_sym_BSLASHimport] = ACTIONS(4897), + [anon_sym_BSLASHsubimport] = ACTIONS(4897), + [anon_sym_BSLASHinputfrom] = ACTIONS(4897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), + [anon_sym_BSLASHincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHcaption] = ACTIONS(4897), + [anon_sym_BSLASHcite] = ACTIONS(4897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCite] = ACTIONS(4897), + [anon_sym_BSLASHnocite] = ACTIONS(4897), + [anon_sym_BSLASHcitet] = ACTIONS(4897), + [anon_sym_BSLASHcitep] = ACTIONS(4897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteauthor] = ACTIONS(4897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitetitle] = ACTIONS(4897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteyear] = ACTIONS(4897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitedate] = ACTIONS(4897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteurl] = ACTIONS(4897), + [anon_sym_BSLASHfullcite] = ACTIONS(4897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), + [anon_sym_BSLASHcitealt] = ACTIONS(4897), + [anon_sym_BSLASHcitealp] = ACTIONS(4897), + [anon_sym_BSLASHcitetext] = ACTIONS(4897), + [anon_sym_BSLASHparencite] = ACTIONS(4897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHParencite] = ACTIONS(4897), + [anon_sym_BSLASHfootcite] = ACTIONS(4897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), + [anon_sym_BSLASHtextcite] = ACTIONS(4897), + [anon_sym_BSLASHTextcite] = ACTIONS(4897), + [anon_sym_BSLASHsmartcite] = ACTIONS(4897), + [anon_sym_BSLASHSmartcite] = ACTIONS(4897), + [anon_sym_BSLASHsupercite] = ACTIONS(4897), + [anon_sym_BSLASHautocite] = ACTIONS(4897), + [anon_sym_BSLASHAutocite] = ACTIONS(4897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHvolcite] = ACTIONS(4897), + [anon_sym_BSLASHVolcite] = ACTIONS(4897), + [anon_sym_BSLASHpvolcite] = ACTIONS(4897), + [anon_sym_BSLASHPvolcite] = ACTIONS(4897), + [anon_sym_BSLASHfvolcite] = ACTIONS(4897), + [anon_sym_BSLASHftvolcite] = ACTIONS(4897), + [anon_sym_BSLASHsvolcite] = ACTIONS(4897), + [anon_sym_BSLASHSvolcite] = ACTIONS(4897), + [anon_sym_BSLASHtvolcite] = ACTIONS(4897), + [anon_sym_BSLASHTvolcite] = ACTIONS(4897), + [anon_sym_BSLASHavolcite] = ACTIONS(4897), + [anon_sym_BSLASHAvolcite] = ACTIONS(4897), + [anon_sym_BSLASHnotecite] = ACTIONS(4897), + [anon_sym_BSLASHNotecite] = ACTIONS(4897), + [anon_sym_BSLASHpnotecite] = ACTIONS(4897), + [anon_sym_BSLASHPnotecite] = ACTIONS(4897), + [anon_sym_BSLASHfnotecite] = ACTIONS(4897), + [anon_sym_BSLASHlabel] = ACTIONS(4897), + [anon_sym_BSLASHref] = ACTIONS(4897), + [anon_sym_BSLASHeqref] = ACTIONS(4897), + [anon_sym_BSLASHvref] = ACTIONS(4897), + [anon_sym_BSLASHVref] = ACTIONS(4897), + [anon_sym_BSLASHautoref] = ACTIONS(4897), + [anon_sym_BSLASHpageref] = ACTIONS(4897), + [anon_sym_BSLASHcref] = ACTIONS(4897), + [anon_sym_BSLASHCref] = ACTIONS(4897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnameCref] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHlabelcref] = ACTIONS(4897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCrefrange] = ACTIONS(4897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnewlabel] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), + [anon_sym_BSLASHdef] = ACTIONS(4897), + [anon_sym_BSLASHlet] = ACTIONS(4897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), + [anon_sym_BSLASHgls] = ACTIONS(4897), + [anon_sym_BSLASHGls] = ACTIONS(4897), + [anon_sym_BSLASHGLS] = ACTIONS(4897), + [anon_sym_BSLASHglspl] = ACTIONS(4897), + [anon_sym_BSLASHGlspl] = ACTIONS(4897), + [anon_sym_BSLASHGLSpl] = ACTIONS(4897), + [anon_sym_BSLASHglsdisp] = ACTIONS(4897), + [anon_sym_BSLASHglslink] = ACTIONS(4897), + [anon_sym_BSLASHglstext] = ACTIONS(4897), + [anon_sym_BSLASHGlstext] = ACTIONS(4897), + [anon_sym_BSLASHGLStext] = ACTIONS(4897), + [anon_sym_BSLASHglsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), + [anon_sym_BSLASHglsplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSplural] = ACTIONS(4897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHglsname] = ACTIONS(4897), + [anon_sym_BSLASHGlsname] = ACTIONS(4897), + [anon_sym_BSLASHGLSname] = ACTIONS(4897), + [anon_sym_BSLASHglssymbol] = ACTIONS(4897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), + [anon_sym_BSLASHglsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), + [anon_sym_BSLASHglsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), + [anon_sym_BSLASHglsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), + [anon_sym_BSLASHglsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), + [anon_sym_BSLASHglsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), + [anon_sym_BSLASHnewacronym] = ACTIONS(4897), + [anon_sym_BSLASHacrshort] = ACTIONS(4897), + [anon_sym_BSLASHAcrshort] = ACTIONS(4897), + [anon_sym_BSLASHACRshort] = ACTIONS(4897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), + [anon_sym_BSLASHacrlong] = ACTIONS(4897), + [anon_sym_BSLASHAcrlong] = ACTIONS(4897), + [anon_sym_BSLASHACRlong] = ACTIONS(4897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), + [anon_sym_BSLASHacrfull] = ACTIONS(4897), + [anon_sym_BSLASHAcrfull] = ACTIONS(4897), + [anon_sym_BSLASHACRfull] = ACTIONS(4897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), + [anon_sym_BSLASHacs] = ACTIONS(4897), + [anon_sym_BSLASHAcs] = ACTIONS(4897), + [anon_sym_BSLASHacsp] = ACTIONS(4897), + [anon_sym_BSLASHAcsp] = ACTIONS(4897), + [anon_sym_BSLASHacl] = ACTIONS(4897), + [anon_sym_BSLASHAcl] = ACTIONS(4897), + [anon_sym_BSLASHaclp] = ACTIONS(4897), + [anon_sym_BSLASHAclp] = ACTIONS(4897), + [anon_sym_BSLASHacf] = ACTIONS(4897), + [anon_sym_BSLASHAcf] = ACTIONS(4897), + [anon_sym_BSLASHacfp] = ACTIONS(4897), + [anon_sym_BSLASHAcfp] = ACTIONS(4897), + [anon_sym_BSLASHac] = ACTIONS(4897), + [anon_sym_BSLASHAc] = ACTIONS(4897), + [anon_sym_BSLASHacp] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), + [anon_sym_BSLASHcolor] = ACTIONS(4897), + [anon_sym_BSLASHcolorbox] = ACTIONS(4897), + [anon_sym_BSLASHtextcolor] = ACTIONS(4897), + [anon_sym_BSLASHpagecolor] = ACTIONS(4897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), + [anon_sym_BSLASHtext] = ACTIONS(4897), + [anon_sym_BSLASHintertext] = ACTIONS(4897), + [anon_sym_shortintertext] = ACTIONS(4897), + }, + [944] = { + [sym_command_name] = ACTIONS(4901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4901), + [anon_sym_LPAREN] = ACTIONS(4899), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_RBRACK] = ACTIONS(4899), + [anon_sym_COMMA] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4899), + [anon_sym_BSLASHpart] = ACTIONS(4901), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddpart] = ACTIONS(4901), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4899), + [anon_sym_BSLASHchapter] = ACTIONS(4901), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddchap] = ACTIONS(4901), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsection] = ACTIONS(4901), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddsec] = ACTIONS(4901), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubsection] = ACTIONS(4901), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4901), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHparagraph] = ACTIONS(4901), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4901), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4899), + [anon_sym_BSLASHitem] = ACTIONS(4901), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4899), + [anon_sym_LBRACE] = ACTIONS(4899), + [sym_word] = ACTIONS(4901), + [sym_placeholder] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(4901), + [anon_sym_DASH] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4901), + [anon_sym_SLASH] = ACTIONS(4901), + [anon_sym_CARET] = ACTIONS(4901), + [anon_sym__] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_BANG] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_COLON] = ACTIONS(4901), + [anon_sym_SQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), + [anon_sym_BSLASHbegin] = ACTIONS(4901), + [anon_sym_BSLASHusepackage] = ACTIONS(4901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), + [anon_sym_BSLASHinclude] = ACTIONS(4901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), + [anon_sym_BSLASHinput] = ACTIONS(4901), + [anon_sym_BSLASHsubfile] = ACTIONS(4901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), + [anon_sym_BSLASHbibliography] = ACTIONS(4901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), + [anon_sym_BSLASHincludesvg] = ACTIONS(4901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), + [anon_sym_BSLASHimport] = ACTIONS(4901), + [anon_sym_BSLASHsubimport] = ACTIONS(4901), + [anon_sym_BSLASHinputfrom] = ACTIONS(4901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), + [anon_sym_BSLASHincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHcaption] = ACTIONS(4901), + [anon_sym_BSLASHcite] = ACTIONS(4901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCite] = ACTIONS(4901), + [anon_sym_BSLASHnocite] = ACTIONS(4901), + [anon_sym_BSLASHcitet] = ACTIONS(4901), + [anon_sym_BSLASHcitep] = ACTIONS(4901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteauthor] = ACTIONS(4901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitetitle] = ACTIONS(4901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteyear] = ACTIONS(4901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitedate] = ACTIONS(4901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteurl] = ACTIONS(4901), + [anon_sym_BSLASHfullcite] = ACTIONS(4901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), + [anon_sym_BSLASHcitealt] = ACTIONS(4901), + [anon_sym_BSLASHcitealp] = ACTIONS(4901), + [anon_sym_BSLASHcitetext] = ACTIONS(4901), + [anon_sym_BSLASHparencite] = ACTIONS(4901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHParencite] = ACTIONS(4901), + [anon_sym_BSLASHfootcite] = ACTIONS(4901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), + [anon_sym_BSLASHtextcite] = ACTIONS(4901), + [anon_sym_BSLASHTextcite] = ACTIONS(4901), + [anon_sym_BSLASHsmartcite] = ACTIONS(4901), + [anon_sym_BSLASHSmartcite] = ACTIONS(4901), + [anon_sym_BSLASHsupercite] = ACTIONS(4901), + [anon_sym_BSLASHautocite] = ACTIONS(4901), + [anon_sym_BSLASHAutocite] = ACTIONS(4901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHvolcite] = ACTIONS(4901), + [anon_sym_BSLASHVolcite] = ACTIONS(4901), + [anon_sym_BSLASHpvolcite] = ACTIONS(4901), + [anon_sym_BSLASHPvolcite] = ACTIONS(4901), + [anon_sym_BSLASHfvolcite] = ACTIONS(4901), + [anon_sym_BSLASHftvolcite] = ACTIONS(4901), + [anon_sym_BSLASHsvolcite] = ACTIONS(4901), + [anon_sym_BSLASHSvolcite] = ACTIONS(4901), + [anon_sym_BSLASHtvolcite] = ACTIONS(4901), + [anon_sym_BSLASHTvolcite] = ACTIONS(4901), + [anon_sym_BSLASHavolcite] = ACTIONS(4901), + [anon_sym_BSLASHAvolcite] = ACTIONS(4901), + [anon_sym_BSLASHnotecite] = ACTIONS(4901), + [anon_sym_BSLASHNotecite] = ACTIONS(4901), + [anon_sym_BSLASHpnotecite] = ACTIONS(4901), + [anon_sym_BSLASHPnotecite] = ACTIONS(4901), + [anon_sym_BSLASHfnotecite] = ACTIONS(4901), + [anon_sym_BSLASHlabel] = ACTIONS(4901), + [anon_sym_BSLASHref] = ACTIONS(4901), + [anon_sym_BSLASHeqref] = ACTIONS(4901), + [anon_sym_BSLASHvref] = ACTIONS(4901), + [anon_sym_BSLASHVref] = ACTIONS(4901), + [anon_sym_BSLASHautoref] = ACTIONS(4901), + [anon_sym_BSLASHpageref] = ACTIONS(4901), + [anon_sym_BSLASHcref] = ACTIONS(4901), + [anon_sym_BSLASHCref] = ACTIONS(4901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnameCref] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHlabelcref] = ACTIONS(4901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCrefrange] = ACTIONS(4901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnewlabel] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), + [anon_sym_BSLASHdef] = ACTIONS(4901), + [anon_sym_BSLASHlet] = ACTIONS(4901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), + [anon_sym_BSLASHgls] = ACTIONS(4901), + [anon_sym_BSLASHGls] = ACTIONS(4901), + [anon_sym_BSLASHGLS] = ACTIONS(4901), + [anon_sym_BSLASHglspl] = ACTIONS(4901), + [anon_sym_BSLASHGlspl] = ACTIONS(4901), + [anon_sym_BSLASHGLSpl] = ACTIONS(4901), + [anon_sym_BSLASHglsdisp] = ACTIONS(4901), + [anon_sym_BSLASHglslink] = ACTIONS(4901), + [anon_sym_BSLASHglstext] = ACTIONS(4901), + [anon_sym_BSLASHGlstext] = ACTIONS(4901), + [anon_sym_BSLASHGLStext] = ACTIONS(4901), + [anon_sym_BSLASHglsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), + [anon_sym_BSLASHglsplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSplural] = ACTIONS(4901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHglsname] = ACTIONS(4901), + [anon_sym_BSLASHGlsname] = ACTIONS(4901), + [anon_sym_BSLASHGLSname] = ACTIONS(4901), + [anon_sym_BSLASHglssymbol] = ACTIONS(4901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), + [anon_sym_BSLASHglsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), + [anon_sym_BSLASHglsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), + [anon_sym_BSLASHglsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), + [anon_sym_BSLASHglsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), + [anon_sym_BSLASHglsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), + [anon_sym_BSLASHnewacronym] = ACTIONS(4901), + [anon_sym_BSLASHacrshort] = ACTIONS(4901), + [anon_sym_BSLASHAcrshort] = ACTIONS(4901), + [anon_sym_BSLASHACRshort] = ACTIONS(4901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), + [anon_sym_BSLASHacrlong] = ACTIONS(4901), + [anon_sym_BSLASHAcrlong] = ACTIONS(4901), + [anon_sym_BSLASHACRlong] = ACTIONS(4901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), + [anon_sym_BSLASHacrfull] = ACTIONS(4901), + [anon_sym_BSLASHAcrfull] = ACTIONS(4901), + [anon_sym_BSLASHACRfull] = ACTIONS(4901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), + [anon_sym_BSLASHacs] = ACTIONS(4901), + [anon_sym_BSLASHAcs] = ACTIONS(4901), + [anon_sym_BSLASHacsp] = ACTIONS(4901), + [anon_sym_BSLASHAcsp] = ACTIONS(4901), + [anon_sym_BSLASHacl] = ACTIONS(4901), + [anon_sym_BSLASHAcl] = ACTIONS(4901), + [anon_sym_BSLASHaclp] = ACTIONS(4901), + [anon_sym_BSLASHAclp] = ACTIONS(4901), + [anon_sym_BSLASHacf] = ACTIONS(4901), + [anon_sym_BSLASHAcf] = ACTIONS(4901), + [anon_sym_BSLASHacfp] = ACTIONS(4901), + [anon_sym_BSLASHAcfp] = ACTIONS(4901), + [anon_sym_BSLASHac] = ACTIONS(4901), + [anon_sym_BSLASHAc] = ACTIONS(4901), + [anon_sym_BSLASHacp] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), + [anon_sym_BSLASHcolor] = ACTIONS(4901), + [anon_sym_BSLASHcolorbox] = ACTIONS(4901), + [anon_sym_BSLASHtextcolor] = ACTIONS(4901), + [anon_sym_BSLASHpagecolor] = ACTIONS(4901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), + [anon_sym_BSLASHtext] = ACTIONS(4901), + [anon_sym_BSLASHintertext] = ACTIONS(4901), + [anon_sym_shortintertext] = ACTIONS(4901), + }, + [945] = { + [sym_command_name] = ACTIONS(4905), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4905), + [anon_sym_LPAREN] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_LBRACK] = ACTIONS(4903), + [anon_sym_RBRACK] = ACTIONS(4903), + [anon_sym_COMMA] = ACTIONS(4903), + [anon_sym_EQ] = ACTIONS(4903), + [anon_sym_BSLASHpart] = ACTIONS(4905), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddpart] = ACTIONS(4905), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4903), + [anon_sym_BSLASHchapter] = ACTIONS(4905), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddchap] = ACTIONS(4905), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsection] = ACTIONS(4905), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddsec] = ACTIONS(4905), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubsection] = ACTIONS(4905), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4905), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHparagraph] = ACTIONS(4905), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4905), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4903), + [anon_sym_BSLASHitem] = ACTIONS(4905), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4903), + [anon_sym_LBRACE] = ACTIONS(4903), + [sym_word] = ACTIONS(4905), + [sym_placeholder] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4905), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_CARET] = ACTIONS(4905), + [anon_sym__] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4905), + [anon_sym_COLON] = ACTIONS(4905), + [anon_sym_SQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4905), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), + [anon_sym_BSLASHbegin] = ACTIONS(4905), + [anon_sym_BSLASHusepackage] = ACTIONS(4905), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), + [anon_sym_BSLASHinclude] = ACTIONS(4905), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), + [anon_sym_BSLASHinput] = ACTIONS(4905), + [anon_sym_BSLASHsubfile] = ACTIONS(4905), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), + [anon_sym_BSLASHbibliography] = ACTIONS(4905), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), + [anon_sym_BSLASHincludesvg] = ACTIONS(4905), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), + [anon_sym_BSLASHimport] = ACTIONS(4905), + [anon_sym_BSLASHsubimport] = ACTIONS(4905), + [anon_sym_BSLASHinputfrom] = ACTIONS(4905), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), + [anon_sym_BSLASHincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHcaption] = ACTIONS(4905), + [anon_sym_BSLASHcite] = ACTIONS(4905), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCite] = ACTIONS(4905), + [anon_sym_BSLASHnocite] = ACTIONS(4905), + [anon_sym_BSLASHcitet] = ACTIONS(4905), + [anon_sym_BSLASHcitep] = ACTIONS(4905), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteauthor] = ACTIONS(4905), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitetitle] = ACTIONS(4905), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteyear] = ACTIONS(4905), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitedate] = ACTIONS(4905), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteurl] = ACTIONS(4905), + [anon_sym_BSLASHfullcite] = ACTIONS(4905), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), + [anon_sym_BSLASHcitealt] = ACTIONS(4905), + [anon_sym_BSLASHcitealp] = ACTIONS(4905), + [anon_sym_BSLASHcitetext] = ACTIONS(4905), + [anon_sym_BSLASHparencite] = ACTIONS(4905), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHParencite] = ACTIONS(4905), + [anon_sym_BSLASHfootcite] = ACTIONS(4905), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), + [anon_sym_BSLASHtextcite] = ACTIONS(4905), + [anon_sym_BSLASHTextcite] = ACTIONS(4905), + [anon_sym_BSLASHsmartcite] = ACTIONS(4905), + [anon_sym_BSLASHSmartcite] = ACTIONS(4905), + [anon_sym_BSLASHsupercite] = ACTIONS(4905), + [anon_sym_BSLASHautocite] = ACTIONS(4905), + [anon_sym_BSLASHAutocite] = ACTIONS(4905), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHvolcite] = ACTIONS(4905), + [anon_sym_BSLASHVolcite] = ACTIONS(4905), + [anon_sym_BSLASHpvolcite] = ACTIONS(4905), + [anon_sym_BSLASHPvolcite] = ACTIONS(4905), + [anon_sym_BSLASHfvolcite] = ACTIONS(4905), + [anon_sym_BSLASHftvolcite] = ACTIONS(4905), + [anon_sym_BSLASHsvolcite] = ACTIONS(4905), + [anon_sym_BSLASHSvolcite] = ACTIONS(4905), + [anon_sym_BSLASHtvolcite] = ACTIONS(4905), + [anon_sym_BSLASHTvolcite] = ACTIONS(4905), + [anon_sym_BSLASHavolcite] = ACTIONS(4905), + [anon_sym_BSLASHAvolcite] = ACTIONS(4905), + [anon_sym_BSLASHnotecite] = ACTIONS(4905), + [anon_sym_BSLASHNotecite] = ACTIONS(4905), + [anon_sym_BSLASHpnotecite] = ACTIONS(4905), + [anon_sym_BSLASHPnotecite] = ACTIONS(4905), + [anon_sym_BSLASHfnotecite] = ACTIONS(4905), + [anon_sym_BSLASHlabel] = ACTIONS(4905), + [anon_sym_BSLASHref] = ACTIONS(4905), + [anon_sym_BSLASHeqref] = ACTIONS(4905), + [anon_sym_BSLASHvref] = ACTIONS(4905), + [anon_sym_BSLASHVref] = ACTIONS(4905), + [anon_sym_BSLASHautoref] = ACTIONS(4905), + [anon_sym_BSLASHpageref] = ACTIONS(4905), + [anon_sym_BSLASHcref] = ACTIONS(4905), + [anon_sym_BSLASHCref] = ACTIONS(4905), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnameCref] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHlabelcref] = ACTIONS(4905), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCrefrange] = ACTIONS(4905), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnewlabel] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), + [anon_sym_BSLASHdef] = ACTIONS(4905), + [anon_sym_BSLASHlet] = ACTIONS(4905), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), + [anon_sym_BSLASHgls] = ACTIONS(4905), + [anon_sym_BSLASHGls] = ACTIONS(4905), + [anon_sym_BSLASHGLS] = ACTIONS(4905), + [anon_sym_BSLASHglspl] = ACTIONS(4905), + [anon_sym_BSLASHGlspl] = ACTIONS(4905), + [anon_sym_BSLASHGLSpl] = ACTIONS(4905), + [anon_sym_BSLASHglsdisp] = ACTIONS(4905), + [anon_sym_BSLASHglslink] = ACTIONS(4905), + [anon_sym_BSLASHglstext] = ACTIONS(4905), + [anon_sym_BSLASHGlstext] = ACTIONS(4905), + [anon_sym_BSLASHGLStext] = ACTIONS(4905), + [anon_sym_BSLASHglsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), + [anon_sym_BSLASHglsplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSplural] = ACTIONS(4905), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHglsname] = ACTIONS(4905), + [anon_sym_BSLASHGlsname] = ACTIONS(4905), + [anon_sym_BSLASHGLSname] = ACTIONS(4905), + [anon_sym_BSLASHglssymbol] = ACTIONS(4905), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), + [anon_sym_BSLASHglsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), + [anon_sym_BSLASHglsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), + [anon_sym_BSLASHglsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), + [anon_sym_BSLASHglsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), + [anon_sym_BSLASHglsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), + [anon_sym_BSLASHnewacronym] = ACTIONS(4905), + [anon_sym_BSLASHacrshort] = ACTIONS(4905), + [anon_sym_BSLASHAcrshort] = ACTIONS(4905), + [anon_sym_BSLASHACRshort] = ACTIONS(4905), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), + [anon_sym_BSLASHacrlong] = ACTIONS(4905), + [anon_sym_BSLASHAcrlong] = ACTIONS(4905), + [anon_sym_BSLASHACRlong] = ACTIONS(4905), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), + [anon_sym_BSLASHacrfull] = ACTIONS(4905), + [anon_sym_BSLASHAcrfull] = ACTIONS(4905), + [anon_sym_BSLASHACRfull] = ACTIONS(4905), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), + [anon_sym_BSLASHacs] = ACTIONS(4905), + [anon_sym_BSLASHAcs] = ACTIONS(4905), + [anon_sym_BSLASHacsp] = ACTIONS(4905), + [anon_sym_BSLASHAcsp] = ACTIONS(4905), + [anon_sym_BSLASHacl] = ACTIONS(4905), + [anon_sym_BSLASHAcl] = ACTIONS(4905), + [anon_sym_BSLASHaclp] = ACTIONS(4905), + [anon_sym_BSLASHAclp] = ACTIONS(4905), + [anon_sym_BSLASHacf] = ACTIONS(4905), + [anon_sym_BSLASHAcf] = ACTIONS(4905), + [anon_sym_BSLASHacfp] = ACTIONS(4905), + [anon_sym_BSLASHAcfp] = ACTIONS(4905), + [anon_sym_BSLASHac] = ACTIONS(4905), + [anon_sym_BSLASHAc] = ACTIONS(4905), + [anon_sym_BSLASHacp] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), + [anon_sym_BSLASHcolor] = ACTIONS(4905), + [anon_sym_BSLASHcolorbox] = ACTIONS(4905), + [anon_sym_BSLASHtextcolor] = ACTIONS(4905), + [anon_sym_BSLASHpagecolor] = ACTIONS(4905), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), + [anon_sym_BSLASHtext] = ACTIONS(4905), + [anon_sym_BSLASHintertext] = ACTIONS(4905), + [anon_sym_shortintertext] = ACTIONS(4905), + }, + [946] = { + [sym_command_name] = ACTIONS(4909), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4909), + [anon_sym_LPAREN] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4907), + [anon_sym_LBRACK] = ACTIONS(4907), + [anon_sym_RBRACK] = ACTIONS(4907), + [anon_sym_COMMA] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_BSLASHpart] = ACTIONS(4909), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddpart] = ACTIONS(4909), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4907), + [anon_sym_BSLASHchapter] = ACTIONS(4909), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddchap] = ACTIONS(4909), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsection] = ACTIONS(4909), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddsec] = ACTIONS(4909), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubsection] = ACTIONS(4909), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4909), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHparagraph] = ACTIONS(4909), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4909), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4907), + [anon_sym_BSLASHitem] = ACTIONS(4909), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4907), + [anon_sym_LBRACE] = ACTIONS(4907), + [sym_word] = ACTIONS(4909), + [sym_placeholder] = ACTIONS(4907), + [anon_sym_PLUS] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_STAR] = ACTIONS(4909), + [anon_sym_SLASH] = ACTIONS(4909), + [anon_sym_CARET] = ACTIONS(4909), + [anon_sym__] = ACTIONS(4909), + [anon_sym_LT] = ACTIONS(4909), + [anon_sym_GT] = ACTIONS(4909), + [anon_sym_BANG] = ACTIONS(4909), + [anon_sym_PIPE] = ACTIONS(4909), + [anon_sym_COLON] = ACTIONS(4909), + [anon_sym_SQUOTE] = ACTIONS(4909), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), + [anon_sym_DOLLAR] = ACTIONS(4909), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), + [anon_sym_BSLASHbegin] = ACTIONS(4909), + [anon_sym_BSLASHusepackage] = ACTIONS(4909), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), + [anon_sym_BSLASHinclude] = ACTIONS(4909), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), + [anon_sym_BSLASHinput] = ACTIONS(4909), + [anon_sym_BSLASHsubfile] = ACTIONS(4909), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), + [anon_sym_BSLASHbibliography] = ACTIONS(4909), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), + [anon_sym_BSLASHincludesvg] = ACTIONS(4909), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), + [anon_sym_BSLASHimport] = ACTIONS(4909), + [anon_sym_BSLASHsubimport] = ACTIONS(4909), + [anon_sym_BSLASHinputfrom] = ACTIONS(4909), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), + [anon_sym_BSLASHincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHcaption] = ACTIONS(4909), + [anon_sym_BSLASHcite] = ACTIONS(4909), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCite] = ACTIONS(4909), + [anon_sym_BSLASHnocite] = ACTIONS(4909), + [anon_sym_BSLASHcitet] = ACTIONS(4909), + [anon_sym_BSLASHcitep] = ACTIONS(4909), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteauthor] = ACTIONS(4909), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitetitle] = ACTIONS(4909), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteyear] = ACTIONS(4909), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitedate] = ACTIONS(4909), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteurl] = ACTIONS(4909), + [anon_sym_BSLASHfullcite] = ACTIONS(4909), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), + [anon_sym_BSLASHcitealt] = ACTIONS(4909), + [anon_sym_BSLASHcitealp] = ACTIONS(4909), + [anon_sym_BSLASHcitetext] = ACTIONS(4909), + [anon_sym_BSLASHparencite] = ACTIONS(4909), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHParencite] = ACTIONS(4909), + [anon_sym_BSLASHfootcite] = ACTIONS(4909), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), + [anon_sym_BSLASHtextcite] = ACTIONS(4909), + [anon_sym_BSLASHTextcite] = ACTIONS(4909), + [anon_sym_BSLASHsmartcite] = ACTIONS(4909), + [anon_sym_BSLASHSmartcite] = ACTIONS(4909), + [anon_sym_BSLASHsupercite] = ACTIONS(4909), + [anon_sym_BSLASHautocite] = ACTIONS(4909), + [anon_sym_BSLASHAutocite] = ACTIONS(4909), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHvolcite] = ACTIONS(4909), + [anon_sym_BSLASHVolcite] = ACTIONS(4909), + [anon_sym_BSLASHpvolcite] = ACTIONS(4909), + [anon_sym_BSLASHPvolcite] = ACTIONS(4909), + [anon_sym_BSLASHfvolcite] = ACTIONS(4909), + [anon_sym_BSLASHftvolcite] = ACTIONS(4909), + [anon_sym_BSLASHsvolcite] = ACTIONS(4909), + [anon_sym_BSLASHSvolcite] = ACTIONS(4909), + [anon_sym_BSLASHtvolcite] = ACTIONS(4909), + [anon_sym_BSLASHTvolcite] = ACTIONS(4909), + [anon_sym_BSLASHavolcite] = ACTIONS(4909), + [anon_sym_BSLASHAvolcite] = ACTIONS(4909), + [anon_sym_BSLASHnotecite] = ACTIONS(4909), + [anon_sym_BSLASHNotecite] = ACTIONS(4909), + [anon_sym_BSLASHpnotecite] = ACTIONS(4909), + [anon_sym_BSLASHPnotecite] = ACTIONS(4909), + [anon_sym_BSLASHfnotecite] = ACTIONS(4909), + [anon_sym_BSLASHlabel] = ACTIONS(4909), + [anon_sym_BSLASHref] = ACTIONS(4909), + [anon_sym_BSLASHeqref] = ACTIONS(4909), + [anon_sym_BSLASHvref] = ACTIONS(4909), + [anon_sym_BSLASHVref] = ACTIONS(4909), + [anon_sym_BSLASHautoref] = ACTIONS(4909), + [anon_sym_BSLASHpageref] = ACTIONS(4909), + [anon_sym_BSLASHcref] = ACTIONS(4909), + [anon_sym_BSLASHCref] = ACTIONS(4909), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnameCref] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHlabelcref] = ACTIONS(4909), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCrefrange] = ACTIONS(4909), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnewlabel] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), + [anon_sym_BSLASHdef] = ACTIONS(4909), + [anon_sym_BSLASHlet] = ACTIONS(4909), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), + [anon_sym_BSLASHgls] = ACTIONS(4909), + [anon_sym_BSLASHGls] = ACTIONS(4909), + [anon_sym_BSLASHGLS] = ACTIONS(4909), + [anon_sym_BSLASHglspl] = ACTIONS(4909), + [anon_sym_BSLASHGlspl] = ACTIONS(4909), + [anon_sym_BSLASHGLSpl] = ACTIONS(4909), + [anon_sym_BSLASHglsdisp] = ACTIONS(4909), + [anon_sym_BSLASHglslink] = ACTIONS(4909), + [anon_sym_BSLASHglstext] = ACTIONS(4909), + [anon_sym_BSLASHGlstext] = ACTIONS(4909), + [anon_sym_BSLASHGLStext] = ACTIONS(4909), + [anon_sym_BSLASHglsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), + [anon_sym_BSLASHglsplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSplural] = ACTIONS(4909), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHglsname] = ACTIONS(4909), + [anon_sym_BSLASHGlsname] = ACTIONS(4909), + [anon_sym_BSLASHGLSname] = ACTIONS(4909), + [anon_sym_BSLASHglssymbol] = ACTIONS(4909), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), + [anon_sym_BSLASHglsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), + [anon_sym_BSLASHglsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), + [anon_sym_BSLASHglsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), + [anon_sym_BSLASHglsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), + [anon_sym_BSLASHglsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), + [anon_sym_BSLASHnewacronym] = ACTIONS(4909), + [anon_sym_BSLASHacrshort] = ACTIONS(4909), + [anon_sym_BSLASHAcrshort] = ACTIONS(4909), + [anon_sym_BSLASHACRshort] = ACTIONS(4909), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), + [anon_sym_BSLASHacrlong] = ACTIONS(4909), + [anon_sym_BSLASHAcrlong] = ACTIONS(4909), + [anon_sym_BSLASHACRlong] = ACTIONS(4909), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), + [anon_sym_BSLASHacrfull] = ACTIONS(4909), + [anon_sym_BSLASHAcrfull] = ACTIONS(4909), + [anon_sym_BSLASHACRfull] = ACTIONS(4909), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), + [anon_sym_BSLASHacs] = ACTIONS(4909), + [anon_sym_BSLASHAcs] = ACTIONS(4909), + [anon_sym_BSLASHacsp] = ACTIONS(4909), + [anon_sym_BSLASHAcsp] = ACTIONS(4909), + [anon_sym_BSLASHacl] = ACTIONS(4909), + [anon_sym_BSLASHAcl] = ACTIONS(4909), + [anon_sym_BSLASHaclp] = ACTIONS(4909), + [anon_sym_BSLASHAclp] = ACTIONS(4909), + [anon_sym_BSLASHacf] = ACTIONS(4909), + [anon_sym_BSLASHAcf] = ACTIONS(4909), + [anon_sym_BSLASHacfp] = ACTIONS(4909), + [anon_sym_BSLASHAcfp] = ACTIONS(4909), + [anon_sym_BSLASHac] = ACTIONS(4909), + [anon_sym_BSLASHAc] = ACTIONS(4909), + [anon_sym_BSLASHacp] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), + [anon_sym_BSLASHcolor] = ACTIONS(4909), + [anon_sym_BSLASHcolorbox] = ACTIONS(4909), + [anon_sym_BSLASHtextcolor] = ACTIONS(4909), + [anon_sym_BSLASHpagecolor] = ACTIONS(4909), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), + [anon_sym_BSLASHtext] = ACTIONS(4909), + [anon_sym_BSLASHintertext] = ACTIONS(4909), + [anon_sym_shortintertext] = ACTIONS(4909), + }, + [947] = { + [sym_command_name] = ACTIONS(4913), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4913), + [anon_sym_LPAREN] = ACTIONS(4911), + [anon_sym_RPAREN] = ACTIONS(4911), + [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_RBRACK] = ACTIONS(4911), + [anon_sym_COMMA] = ACTIONS(4911), + [anon_sym_EQ] = ACTIONS(4911), + [anon_sym_BSLASHpart] = ACTIONS(4913), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddpart] = ACTIONS(4913), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4911), + [anon_sym_BSLASHchapter] = ACTIONS(4913), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddchap] = ACTIONS(4913), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsection] = ACTIONS(4913), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddsec] = ACTIONS(4913), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubsection] = ACTIONS(4913), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4913), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHparagraph] = ACTIONS(4913), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4913), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4911), + [anon_sym_BSLASHitem] = ACTIONS(4913), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4911), + [sym_word] = ACTIONS(4913), + [sym_placeholder] = ACTIONS(4911), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4913), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_CARET] = ACTIONS(4913), + [anon_sym__] = ACTIONS(4913), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_BANG] = ACTIONS(4913), + [anon_sym_PIPE] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4913), + [anon_sym_SQUOTE] = ACTIONS(4913), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), + [anon_sym_DOLLAR] = ACTIONS(4913), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), + [anon_sym_BSLASHbegin] = ACTIONS(4913), + [anon_sym_BSLASHusepackage] = ACTIONS(4913), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), + [anon_sym_BSLASHinclude] = ACTIONS(4913), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), + [anon_sym_BSLASHinput] = ACTIONS(4913), + [anon_sym_BSLASHsubfile] = ACTIONS(4913), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), + [anon_sym_BSLASHbibliography] = ACTIONS(4913), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), + [anon_sym_BSLASHincludesvg] = ACTIONS(4913), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), + [anon_sym_BSLASHimport] = ACTIONS(4913), + [anon_sym_BSLASHsubimport] = ACTIONS(4913), + [anon_sym_BSLASHinputfrom] = ACTIONS(4913), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), + [anon_sym_BSLASHincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHcaption] = ACTIONS(4913), + [anon_sym_BSLASHcite] = ACTIONS(4913), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCite] = ACTIONS(4913), + [anon_sym_BSLASHnocite] = ACTIONS(4913), + [anon_sym_BSLASHcitet] = ACTIONS(4913), + [anon_sym_BSLASHcitep] = ACTIONS(4913), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteauthor] = ACTIONS(4913), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitetitle] = ACTIONS(4913), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteyear] = ACTIONS(4913), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitedate] = ACTIONS(4913), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteurl] = ACTIONS(4913), + [anon_sym_BSLASHfullcite] = ACTIONS(4913), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), + [anon_sym_BSLASHcitealt] = ACTIONS(4913), + [anon_sym_BSLASHcitealp] = ACTIONS(4913), + [anon_sym_BSLASHcitetext] = ACTIONS(4913), + [anon_sym_BSLASHparencite] = ACTIONS(4913), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHParencite] = ACTIONS(4913), + [anon_sym_BSLASHfootcite] = ACTIONS(4913), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), + [anon_sym_BSLASHtextcite] = ACTIONS(4913), + [anon_sym_BSLASHTextcite] = ACTIONS(4913), + [anon_sym_BSLASHsmartcite] = ACTIONS(4913), + [anon_sym_BSLASHSmartcite] = ACTIONS(4913), + [anon_sym_BSLASHsupercite] = ACTIONS(4913), + [anon_sym_BSLASHautocite] = ACTIONS(4913), + [anon_sym_BSLASHAutocite] = ACTIONS(4913), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHvolcite] = ACTIONS(4913), + [anon_sym_BSLASHVolcite] = ACTIONS(4913), + [anon_sym_BSLASHpvolcite] = ACTIONS(4913), + [anon_sym_BSLASHPvolcite] = ACTIONS(4913), + [anon_sym_BSLASHfvolcite] = ACTIONS(4913), + [anon_sym_BSLASHftvolcite] = ACTIONS(4913), + [anon_sym_BSLASHsvolcite] = ACTIONS(4913), + [anon_sym_BSLASHSvolcite] = ACTIONS(4913), + [anon_sym_BSLASHtvolcite] = ACTIONS(4913), + [anon_sym_BSLASHTvolcite] = ACTIONS(4913), + [anon_sym_BSLASHavolcite] = ACTIONS(4913), + [anon_sym_BSLASHAvolcite] = ACTIONS(4913), + [anon_sym_BSLASHnotecite] = ACTIONS(4913), + [anon_sym_BSLASHNotecite] = ACTIONS(4913), + [anon_sym_BSLASHpnotecite] = ACTIONS(4913), + [anon_sym_BSLASHPnotecite] = ACTIONS(4913), + [anon_sym_BSLASHfnotecite] = ACTIONS(4913), + [anon_sym_BSLASHlabel] = ACTIONS(4913), + [anon_sym_BSLASHref] = ACTIONS(4913), + [anon_sym_BSLASHeqref] = ACTIONS(4913), + [anon_sym_BSLASHvref] = ACTIONS(4913), + [anon_sym_BSLASHVref] = ACTIONS(4913), + [anon_sym_BSLASHautoref] = ACTIONS(4913), + [anon_sym_BSLASHpageref] = ACTIONS(4913), + [anon_sym_BSLASHcref] = ACTIONS(4913), + [anon_sym_BSLASHCref] = ACTIONS(4913), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnameCref] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHlabelcref] = ACTIONS(4913), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCrefrange] = ACTIONS(4913), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnewlabel] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), + [anon_sym_BSLASHdef] = ACTIONS(4913), + [anon_sym_BSLASHlet] = ACTIONS(4913), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), + [anon_sym_BSLASHgls] = ACTIONS(4913), + [anon_sym_BSLASHGls] = ACTIONS(4913), + [anon_sym_BSLASHGLS] = ACTIONS(4913), + [anon_sym_BSLASHglspl] = ACTIONS(4913), + [anon_sym_BSLASHGlspl] = ACTIONS(4913), + [anon_sym_BSLASHGLSpl] = ACTIONS(4913), + [anon_sym_BSLASHglsdisp] = ACTIONS(4913), + [anon_sym_BSLASHglslink] = ACTIONS(4913), + [anon_sym_BSLASHglstext] = ACTIONS(4913), + [anon_sym_BSLASHGlstext] = ACTIONS(4913), + [anon_sym_BSLASHGLStext] = ACTIONS(4913), + [anon_sym_BSLASHglsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), + [anon_sym_BSLASHglsplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSplural] = ACTIONS(4913), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHglsname] = ACTIONS(4913), + [anon_sym_BSLASHGlsname] = ACTIONS(4913), + [anon_sym_BSLASHGLSname] = ACTIONS(4913), + [anon_sym_BSLASHglssymbol] = ACTIONS(4913), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), + [anon_sym_BSLASHglsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), + [anon_sym_BSLASHglsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), + [anon_sym_BSLASHglsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), + [anon_sym_BSLASHglsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), + [anon_sym_BSLASHglsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), + [anon_sym_BSLASHnewacronym] = ACTIONS(4913), + [anon_sym_BSLASHacrshort] = ACTIONS(4913), + [anon_sym_BSLASHAcrshort] = ACTIONS(4913), + [anon_sym_BSLASHACRshort] = ACTIONS(4913), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), + [anon_sym_BSLASHacrlong] = ACTIONS(4913), + [anon_sym_BSLASHAcrlong] = ACTIONS(4913), + [anon_sym_BSLASHACRlong] = ACTIONS(4913), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), + [anon_sym_BSLASHacrfull] = ACTIONS(4913), + [anon_sym_BSLASHAcrfull] = ACTIONS(4913), + [anon_sym_BSLASHACRfull] = ACTIONS(4913), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), + [anon_sym_BSLASHacs] = ACTIONS(4913), + [anon_sym_BSLASHAcs] = ACTIONS(4913), + [anon_sym_BSLASHacsp] = ACTIONS(4913), + [anon_sym_BSLASHAcsp] = ACTIONS(4913), + [anon_sym_BSLASHacl] = ACTIONS(4913), + [anon_sym_BSLASHAcl] = ACTIONS(4913), + [anon_sym_BSLASHaclp] = ACTIONS(4913), + [anon_sym_BSLASHAclp] = ACTIONS(4913), + [anon_sym_BSLASHacf] = ACTIONS(4913), + [anon_sym_BSLASHAcf] = ACTIONS(4913), + [anon_sym_BSLASHacfp] = ACTIONS(4913), + [anon_sym_BSLASHAcfp] = ACTIONS(4913), + [anon_sym_BSLASHac] = ACTIONS(4913), + [anon_sym_BSLASHAc] = ACTIONS(4913), + [anon_sym_BSLASHacp] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), + [anon_sym_BSLASHcolor] = ACTIONS(4913), + [anon_sym_BSLASHcolorbox] = ACTIONS(4913), + [anon_sym_BSLASHtextcolor] = ACTIONS(4913), + [anon_sym_BSLASHpagecolor] = ACTIONS(4913), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), + [anon_sym_BSLASHtext] = ACTIONS(4913), + [anon_sym_BSLASHintertext] = ACTIONS(4913), + [anon_sym_shortintertext] = ACTIONS(4913), + }, + [948] = { + [sym_command_name] = ACTIONS(4917), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_RPAREN] = ACTIONS(4915), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4915), + [anon_sym_BSLASHpart] = ACTIONS(4917), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddpart] = ACTIONS(4917), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4915), + [anon_sym_BSLASHchapter] = ACTIONS(4917), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddchap] = ACTIONS(4917), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsection] = ACTIONS(4917), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddsec] = ACTIONS(4917), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubsection] = ACTIONS(4917), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4917), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHparagraph] = ACTIONS(4917), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4917), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4915), + [anon_sym_BSLASHitem] = ACTIONS(4917), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4915), + [sym_word] = ACTIONS(4917), + [sym_placeholder] = ACTIONS(4915), + [anon_sym_PLUS] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4917), + [anon_sym_CARET] = ACTIONS(4917), + [anon_sym__] = ACTIONS(4917), + [anon_sym_LT] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4917), + [anon_sym_BANG] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_SQUOTE] = ACTIONS(4917), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), + [anon_sym_DOLLAR] = ACTIONS(4917), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), + [anon_sym_BSLASHbegin] = ACTIONS(4917), + [anon_sym_BSLASHusepackage] = ACTIONS(4917), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), + [anon_sym_BSLASHinclude] = ACTIONS(4917), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), + [anon_sym_BSLASHinput] = ACTIONS(4917), + [anon_sym_BSLASHsubfile] = ACTIONS(4917), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), + [anon_sym_BSLASHbibliography] = ACTIONS(4917), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), + [anon_sym_BSLASHincludesvg] = ACTIONS(4917), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), + [anon_sym_BSLASHimport] = ACTIONS(4917), + [anon_sym_BSLASHsubimport] = ACTIONS(4917), + [anon_sym_BSLASHinputfrom] = ACTIONS(4917), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), + [anon_sym_BSLASHincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHcaption] = ACTIONS(4917), + [anon_sym_BSLASHcite] = ACTIONS(4917), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCite] = ACTIONS(4917), + [anon_sym_BSLASHnocite] = ACTIONS(4917), + [anon_sym_BSLASHcitet] = ACTIONS(4917), + [anon_sym_BSLASHcitep] = ACTIONS(4917), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteauthor] = ACTIONS(4917), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitetitle] = ACTIONS(4917), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteyear] = ACTIONS(4917), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitedate] = ACTIONS(4917), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteurl] = ACTIONS(4917), + [anon_sym_BSLASHfullcite] = ACTIONS(4917), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), + [anon_sym_BSLASHcitealt] = ACTIONS(4917), + [anon_sym_BSLASHcitealp] = ACTIONS(4917), + [anon_sym_BSLASHcitetext] = ACTIONS(4917), + [anon_sym_BSLASHparencite] = ACTIONS(4917), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHParencite] = ACTIONS(4917), + [anon_sym_BSLASHfootcite] = ACTIONS(4917), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), + [anon_sym_BSLASHtextcite] = ACTIONS(4917), + [anon_sym_BSLASHTextcite] = ACTIONS(4917), + [anon_sym_BSLASHsmartcite] = ACTIONS(4917), + [anon_sym_BSLASHSmartcite] = ACTIONS(4917), + [anon_sym_BSLASHsupercite] = ACTIONS(4917), + [anon_sym_BSLASHautocite] = ACTIONS(4917), + [anon_sym_BSLASHAutocite] = ACTIONS(4917), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHvolcite] = ACTIONS(4917), + [anon_sym_BSLASHVolcite] = ACTIONS(4917), + [anon_sym_BSLASHpvolcite] = ACTIONS(4917), + [anon_sym_BSLASHPvolcite] = ACTIONS(4917), + [anon_sym_BSLASHfvolcite] = ACTIONS(4917), + [anon_sym_BSLASHftvolcite] = ACTIONS(4917), + [anon_sym_BSLASHsvolcite] = ACTIONS(4917), + [anon_sym_BSLASHSvolcite] = ACTIONS(4917), + [anon_sym_BSLASHtvolcite] = ACTIONS(4917), + [anon_sym_BSLASHTvolcite] = ACTIONS(4917), + [anon_sym_BSLASHavolcite] = ACTIONS(4917), + [anon_sym_BSLASHAvolcite] = ACTIONS(4917), + [anon_sym_BSLASHnotecite] = ACTIONS(4917), + [anon_sym_BSLASHNotecite] = ACTIONS(4917), + [anon_sym_BSLASHpnotecite] = ACTIONS(4917), + [anon_sym_BSLASHPnotecite] = ACTIONS(4917), + [anon_sym_BSLASHfnotecite] = ACTIONS(4917), + [anon_sym_BSLASHlabel] = ACTIONS(4917), + [anon_sym_BSLASHref] = ACTIONS(4917), + [anon_sym_BSLASHeqref] = ACTIONS(4917), + [anon_sym_BSLASHvref] = ACTIONS(4917), + [anon_sym_BSLASHVref] = ACTIONS(4917), + [anon_sym_BSLASHautoref] = ACTIONS(4917), + [anon_sym_BSLASHpageref] = ACTIONS(4917), + [anon_sym_BSLASHcref] = ACTIONS(4917), + [anon_sym_BSLASHCref] = ACTIONS(4917), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnameCref] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHlabelcref] = ACTIONS(4917), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCrefrange] = ACTIONS(4917), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnewlabel] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), + [anon_sym_BSLASHdef] = ACTIONS(4917), + [anon_sym_BSLASHlet] = ACTIONS(4917), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), + [anon_sym_BSLASHgls] = ACTIONS(4917), + [anon_sym_BSLASHGls] = ACTIONS(4917), + [anon_sym_BSLASHGLS] = ACTIONS(4917), + [anon_sym_BSLASHglspl] = ACTIONS(4917), + [anon_sym_BSLASHGlspl] = ACTIONS(4917), + [anon_sym_BSLASHGLSpl] = ACTIONS(4917), + [anon_sym_BSLASHglsdisp] = ACTIONS(4917), + [anon_sym_BSLASHglslink] = ACTIONS(4917), + [anon_sym_BSLASHglstext] = ACTIONS(4917), + [anon_sym_BSLASHGlstext] = ACTIONS(4917), + [anon_sym_BSLASHGLStext] = ACTIONS(4917), + [anon_sym_BSLASHglsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), + [anon_sym_BSLASHglsplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSplural] = ACTIONS(4917), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHglsname] = ACTIONS(4917), + [anon_sym_BSLASHGlsname] = ACTIONS(4917), + [anon_sym_BSLASHGLSname] = ACTIONS(4917), + [anon_sym_BSLASHglssymbol] = ACTIONS(4917), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), + [anon_sym_BSLASHglsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), + [anon_sym_BSLASHglsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), + [anon_sym_BSLASHglsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), + [anon_sym_BSLASHglsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), + [anon_sym_BSLASHglsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), + [anon_sym_BSLASHnewacronym] = ACTIONS(4917), + [anon_sym_BSLASHacrshort] = ACTIONS(4917), + [anon_sym_BSLASHAcrshort] = ACTIONS(4917), + [anon_sym_BSLASHACRshort] = ACTIONS(4917), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), + [anon_sym_BSLASHacrlong] = ACTIONS(4917), + [anon_sym_BSLASHAcrlong] = ACTIONS(4917), + [anon_sym_BSLASHACRlong] = ACTIONS(4917), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), + [anon_sym_BSLASHacrfull] = ACTIONS(4917), + [anon_sym_BSLASHAcrfull] = ACTIONS(4917), + [anon_sym_BSLASHACRfull] = ACTIONS(4917), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), + [anon_sym_BSLASHacs] = ACTIONS(4917), + [anon_sym_BSLASHAcs] = ACTIONS(4917), + [anon_sym_BSLASHacsp] = ACTIONS(4917), + [anon_sym_BSLASHAcsp] = ACTIONS(4917), + [anon_sym_BSLASHacl] = ACTIONS(4917), + [anon_sym_BSLASHAcl] = ACTIONS(4917), + [anon_sym_BSLASHaclp] = ACTIONS(4917), + [anon_sym_BSLASHAclp] = ACTIONS(4917), + [anon_sym_BSLASHacf] = ACTIONS(4917), + [anon_sym_BSLASHAcf] = ACTIONS(4917), + [anon_sym_BSLASHacfp] = ACTIONS(4917), + [anon_sym_BSLASHAcfp] = ACTIONS(4917), + [anon_sym_BSLASHac] = ACTIONS(4917), + [anon_sym_BSLASHAc] = ACTIONS(4917), + [anon_sym_BSLASHacp] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), + [anon_sym_BSLASHcolor] = ACTIONS(4917), + [anon_sym_BSLASHcolorbox] = ACTIONS(4917), + [anon_sym_BSLASHtextcolor] = ACTIONS(4917), + [anon_sym_BSLASHpagecolor] = ACTIONS(4917), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), + [anon_sym_BSLASHtext] = ACTIONS(4917), + [anon_sym_BSLASHintertext] = ACTIONS(4917), + [anon_sym_shortintertext] = ACTIONS(4917), + }, + [949] = { + [sym_command_name] = ACTIONS(4929), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5105), - [anon_sym_LPAREN] = ACTIONS(5103), - [anon_sym_RPAREN] = ACTIONS(5103), - [anon_sym_LBRACK] = ACTIONS(5103), - [anon_sym_RBRACK] = ACTIONS(5103), - [anon_sym_COMMA] = ACTIONS(5103), - [anon_sym_EQ] = ACTIONS(5103), - [anon_sym_BSLASHpart] = ACTIONS(5105), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddpart] = ACTIONS(5105), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), - [anon_sym_BSLASHchapter] = ACTIONS(5105), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddchap] = ACTIONS(5105), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsection] = ACTIONS(5105), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHaddsec] = ACTIONS(5105), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), - [anon_sym_BSLASHparagraph] = ACTIONS(5105), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), - [anon_sym_BSLASHitem] = ACTIONS(5105), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), - [anon_sym_LBRACE] = ACTIONS(5103), - [sym_word] = ACTIONS(5105), - [sym_placeholder] = ACTIONS(5103), - [anon_sym_PLUS] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_SLASH] = ACTIONS(5105), - [anon_sym_CARET] = ACTIONS(5105), - [anon_sym__] = ACTIONS(5105), - [anon_sym_LT] = ACTIONS(5105), - [anon_sym_GT] = ACTIONS(5105), - [anon_sym_BANG] = ACTIONS(5105), - [anon_sym_PIPE] = ACTIONS(5105), - [anon_sym_COLON] = ACTIONS(5105), - [anon_sym_SQUOTE] = ACTIONS(5105), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5105), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), - [anon_sym_BSLASHbegin] = ACTIONS(5105), - [anon_sym_BSLASHend] = ACTIONS(5105), - [anon_sym_BSLASHusepackage] = ACTIONS(5105), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), - [anon_sym_BSLASHinclude] = ACTIONS(5105), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), - [anon_sym_BSLASHinput] = ACTIONS(5105), - [anon_sym_BSLASHsubfile] = ACTIONS(5105), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), - [anon_sym_BSLASHbibliography] = ACTIONS(5105), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), - [anon_sym_BSLASHincludesvg] = ACTIONS(5105), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), - [anon_sym_BSLASHimport] = ACTIONS(5105), - [anon_sym_BSLASHsubimport] = ACTIONS(5105), - [anon_sym_BSLASHinputfrom] = ACTIONS(5105), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), - [anon_sym_BSLASHincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), - [anon_sym_BSLASHcaption] = ACTIONS(5105), - [anon_sym_BSLASHcite] = ACTIONS(5105), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCite] = ACTIONS(5105), - [anon_sym_BSLASHnocite] = ACTIONS(5105), - [anon_sym_BSLASHcitet] = ACTIONS(5105), - [anon_sym_BSLASHcitep] = ACTIONS(5105), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteauthor] = ACTIONS(5105), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitetitle] = ACTIONS(5105), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteyear] = ACTIONS(5105), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), - [anon_sym_BSLASHcitedate] = ACTIONS(5105), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), - [anon_sym_BSLASHciteurl] = ACTIONS(5105), - [anon_sym_BSLASHfullcite] = ACTIONS(5105), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), - [anon_sym_BSLASHcitealt] = ACTIONS(5105), - [anon_sym_BSLASHcitealp] = ACTIONS(5105), - [anon_sym_BSLASHcitetext] = ACTIONS(5105), - [anon_sym_BSLASHparencite] = ACTIONS(5105), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHParencite] = ACTIONS(5105), - [anon_sym_BSLASHfootcite] = ACTIONS(5105), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), - [anon_sym_BSLASHtextcite] = ACTIONS(5105), - [anon_sym_BSLASHTextcite] = ACTIONS(5105), - [anon_sym_BSLASHsmartcite] = ACTIONS(5105), - [anon_sym_BSLASHSmartcite] = ACTIONS(5105), - [anon_sym_BSLASHsupercite] = ACTIONS(5105), - [anon_sym_BSLASHautocite] = ACTIONS(5105), - [anon_sym_BSLASHAutocite] = ACTIONS(5105), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), - [anon_sym_BSLASHvolcite] = ACTIONS(5105), - [anon_sym_BSLASHVolcite] = ACTIONS(5105), - [anon_sym_BSLASHpvolcite] = ACTIONS(5105), - [anon_sym_BSLASHPvolcite] = ACTIONS(5105), - [anon_sym_BSLASHfvolcite] = ACTIONS(5105), - [anon_sym_BSLASHftvolcite] = ACTIONS(5105), - [anon_sym_BSLASHsvolcite] = ACTIONS(5105), - [anon_sym_BSLASHSvolcite] = ACTIONS(5105), - [anon_sym_BSLASHtvolcite] = ACTIONS(5105), - [anon_sym_BSLASHTvolcite] = ACTIONS(5105), - [anon_sym_BSLASHavolcite] = ACTIONS(5105), - [anon_sym_BSLASHAvolcite] = ACTIONS(5105), - [anon_sym_BSLASHnotecite] = ACTIONS(5105), - [anon_sym_BSLASHNotecite] = ACTIONS(5105), - [anon_sym_BSLASHpnotecite] = ACTIONS(5105), - [anon_sym_BSLASHPnotecite] = ACTIONS(5105), - [anon_sym_BSLASHfnotecite] = ACTIONS(5105), - [anon_sym_BSLASHlabel] = ACTIONS(5105), - [anon_sym_BSLASHref] = ACTIONS(5105), - [anon_sym_BSLASHeqref] = ACTIONS(5105), - [anon_sym_BSLASHvref] = ACTIONS(5105), - [anon_sym_BSLASHVref] = ACTIONS(5105), - [anon_sym_BSLASHautoref] = ACTIONS(5105), - [anon_sym_BSLASHpageref] = ACTIONS(5105), - [anon_sym_BSLASHcref] = ACTIONS(5105), - [anon_sym_BSLASHCref] = ACTIONS(5105), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnameCref] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), - [anon_sym_BSLASHlabelcref] = ACTIONS(5105), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange] = ACTIONS(5105), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHCrefrange] = ACTIONS(5105), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), - [anon_sym_BSLASHnewlabel] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand] = ACTIONS(5105), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), - [anon_sym_BSLASHdef] = ACTIONS(5105), - [anon_sym_BSLASHlet] = ACTIONS(5105), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), - [anon_sym_BSLASHgls] = ACTIONS(5105), - [anon_sym_BSLASHGls] = ACTIONS(5105), - [anon_sym_BSLASHGLS] = ACTIONS(5105), - [anon_sym_BSLASHglspl] = ACTIONS(5105), - [anon_sym_BSLASHGlspl] = ACTIONS(5105), - [anon_sym_BSLASHGLSpl] = ACTIONS(5105), - [anon_sym_BSLASHglsdisp] = ACTIONS(5105), - [anon_sym_BSLASHglslink] = ACTIONS(5105), - [anon_sym_BSLASHglstext] = ACTIONS(5105), - [anon_sym_BSLASHGlstext] = ACTIONS(5105), - [anon_sym_BSLASHGLStext] = ACTIONS(5105), - [anon_sym_BSLASHglsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), - [anon_sym_BSLASHglsplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSplural] = ACTIONS(5105), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), - [anon_sym_BSLASHglsname] = ACTIONS(5105), - [anon_sym_BSLASHGlsname] = ACTIONS(5105), - [anon_sym_BSLASHGLSname] = ACTIONS(5105), - [anon_sym_BSLASHglssymbol] = ACTIONS(5105), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), - [anon_sym_BSLASHglsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), - [anon_sym_BSLASHglsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), - [anon_sym_BSLASHglsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), - [anon_sym_BSLASHglsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), - [anon_sym_BSLASHglsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), - [anon_sym_BSLASHnewacronym] = ACTIONS(5105), - [anon_sym_BSLASHacrshort] = ACTIONS(5105), - [anon_sym_BSLASHAcrshort] = ACTIONS(5105), - [anon_sym_BSLASHACRshort] = ACTIONS(5105), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), - [anon_sym_BSLASHacrlong] = ACTIONS(5105), - [anon_sym_BSLASHAcrlong] = ACTIONS(5105), - [anon_sym_BSLASHACRlong] = ACTIONS(5105), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), - [anon_sym_BSLASHacrfull] = ACTIONS(5105), - [anon_sym_BSLASHAcrfull] = ACTIONS(5105), - [anon_sym_BSLASHACRfull] = ACTIONS(5105), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), - [anon_sym_BSLASHacs] = ACTIONS(5105), - [anon_sym_BSLASHAcs] = ACTIONS(5105), - [anon_sym_BSLASHacsp] = ACTIONS(5105), - [anon_sym_BSLASHAcsp] = ACTIONS(5105), - [anon_sym_BSLASHacl] = ACTIONS(5105), - [anon_sym_BSLASHAcl] = ACTIONS(5105), - [anon_sym_BSLASHaclp] = ACTIONS(5105), - [anon_sym_BSLASHAclp] = ACTIONS(5105), - [anon_sym_BSLASHacf] = ACTIONS(5105), - [anon_sym_BSLASHAcf] = ACTIONS(5105), - [anon_sym_BSLASHacfp] = ACTIONS(5105), - [anon_sym_BSLASHAcfp] = ACTIONS(5105), - [anon_sym_BSLASHac] = ACTIONS(5105), - [anon_sym_BSLASHAc] = ACTIONS(5105), - [anon_sym_BSLASHacp] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), - [anon_sym_BSLASHcolor] = ACTIONS(5105), - [anon_sym_BSLASHcolorbox] = ACTIONS(5105), - [anon_sym_BSLASHtextcolor] = ACTIONS(5105), - [anon_sym_BSLASHpagecolor] = ACTIONS(5105), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), + [anon_sym_BSLASHiffalse] = ACTIONS(4929), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_RBRACK] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_EQ] = ACTIONS(4927), + [anon_sym_BSLASHpart] = ACTIONS(4929), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddpart] = ACTIONS(4929), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), + [anon_sym_BSLASHchapter] = ACTIONS(4929), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddchap] = ACTIONS(4929), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsection] = ACTIONS(4929), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddsec] = ACTIONS(4929), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubsection] = ACTIONS(4929), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHparagraph] = ACTIONS(4929), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), + [anon_sym_BSLASHitem] = ACTIONS(4929), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), + [anon_sym_LBRACE] = ACTIONS(4927), + [sym_word] = ACTIONS(4929), + [sym_placeholder] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_CARET] = ACTIONS(4929), + [anon_sym__] = ACTIONS(4929), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_BANG] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4929), + [anon_sym_COLON] = ACTIONS(4929), + [anon_sym_SQUOTE] = ACTIONS(4929), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), + [anon_sym_DOLLAR] = ACTIONS(4929), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), + [anon_sym_BSLASHbegin] = ACTIONS(4929), + [anon_sym_BSLASHusepackage] = ACTIONS(4929), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), + [anon_sym_BSLASHinclude] = ACTIONS(4929), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), + [anon_sym_BSLASHinput] = ACTIONS(4929), + [anon_sym_BSLASHsubfile] = ACTIONS(4929), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), + [anon_sym_BSLASHbibliography] = ACTIONS(4929), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), + [anon_sym_BSLASHincludesvg] = ACTIONS(4929), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), + [anon_sym_BSLASHimport] = ACTIONS(4929), + [anon_sym_BSLASHsubimport] = ACTIONS(4929), + [anon_sym_BSLASHinputfrom] = ACTIONS(4929), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), + [anon_sym_BSLASHincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHcaption] = ACTIONS(4929), + [anon_sym_BSLASHcite] = ACTIONS(4929), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCite] = ACTIONS(4929), + [anon_sym_BSLASHnocite] = ACTIONS(4929), + [anon_sym_BSLASHcitet] = ACTIONS(4929), + [anon_sym_BSLASHcitep] = ACTIONS(4929), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteauthor] = ACTIONS(4929), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitetitle] = ACTIONS(4929), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteyear] = ACTIONS(4929), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitedate] = ACTIONS(4929), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteurl] = ACTIONS(4929), + [anon_sym_BSLASHfullcite] = ACTIONS(4929), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), + [anon_sym_BSLASHcitealt] = ACTIONS(4929), + [anon_sym_BSLASHcitealp] = ACTIONS(4929), + [anon_sym_BSLASHcitetext] = ACTIONS(4929), + [anon_sym_BSLASHparencite] = ACTIONS(4929), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHParencite] = ACTIONS(4929), + [anon_sym_BSLASHfootcite] = ACTIONS(4929), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), + [anon_sym_BSLASHtextcite] = ACTIONS(4929), + [anon_sym_BSLASHTextcite] = ACTIONS(4929), + [anon_sym_BSLASHsmartcite] = ACTIONS(4929), + [anon_sym_BSLASHSmartcite] = ACTIONS(4929), + [anon_sym_BSLASHsupercite] = ACTIONS(4929), + [anon_sym_BSLASHautocite] = ACTIONS(4929), + [anon_sym_BSLASHAutocite] = ACTIONS(4929), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHvolcite] = ACTIONS(4929), + [anon_sym_BSLASHVolcite] = ACTIONS(4929), + [anon_sym_BSLASHpvolcite] = ACTIONS(4929), + [anon_sym_BSLASHPvolcite] = ACTIONS(4929), + [anon_sym_BSLASHfvolcite] = ACTIONS(4929), + [anon_sym_BSLASHftvolcite] = ACTIONS(4929), + [anon_sym_BSLASHsvolcite] = ACTIONS(4929), + [anon_sym_BSLASHSvolcite] = ACTIONS(4929), + [anon_sym_BSLASHtvolcite] = ACTIONS(4929), + [anon_sym_BSLASHTvolcite] = ACTIONS(4929), + [anon_sym_BSLASHavolcite] = ACTIONS(4929), + [anon_sym_BSLASHAvolcite] = ACTIONS(4929), + [anon_sym_BSLASHnotecite] = ACTIONS(4929), + [anon_sym_BSLASHNotecite] = ACTIONS(4929), + [anon_sym_BSLASHpnotecite] = ACTIONS(4929), + [anon_sym_BSLASHPnotecite] = ACTIONS(4929), + [anon_sym_BSLASHfnotecite] = ACTIONS(4929), + [anon_sym_BSLASHlabel] = ACTIONS(4929), + [anon_sym_BSLASHref] = ACTIONS(4929), + [anon_sym_BSLASHeqref] = ACTIONS(4929), + [anon_sym_BSLASHvref] = ACTIONS(4929), + [anon_sym_BSLASHVref] = ACTIONS(4929), + [anon_sym_BSLASHautoref] = ACTIONS(4929), + [anon_sym_BSLASHpageref] = ACTIONS(4929), + [anon_sym_BSLASHcref] = ACTIONS(4929), + [anon_sym_BSLASHCref] = ACTIONS(4929), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnameCref] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHlabelcref] = ACTIONS(4929), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCrefrange] = ACTIONS(4929), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnewlabel] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), + [anon_sym_BSLASHdef] = ACTIONS(4929), + [anon_sym_BSLASHlet] = ACTIONS(4929), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), + [anon_sym_BSLASHgls] = ACTIONS(4929), + [anon_sym_BSLASHGls] = ACTIONS(4929), + [anon_sym_BSLASHGLS] = ACTIONS(4929), + [anon_sym_BSLASHglspl] = ACTIONS(4929), + [anon_sym_BSLASHGlspl] = ACTIONS(4929), + [anon_sym_BSLASHGLSpl] = ACTIONS(4929), + [anon_sym_BSLASHglsdisp] = ACTIONS(4929), + [anon_sym_BSLASHglslink] = ACTIONS(4929), + [anon_sym_BSLASHglstext] = ACTIONS(4929), + [anon_sym_BSLASHGlstext] = ACTIONS(4929), + [anon_sym_BSLASHGLStext] = ACTIONS(4929), + [anon_sym_BSLASHglsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), + [anon_sym_BSLASHglsplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSplural] = ACTIONS(4929), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHglsname] = ACTIONS(4929), + [anon_sym_BSLASHGlsname] = ACTIONS(4929), + [anon_sym_BSLASHGLSname] = ACTIONS(4929), + [anon_sym_BSLASHglssymbol] = ACTIONS(4929), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), + [anon_sym_BSLASHglsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), + [anon_sym_BSLASHglsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), + [anon_sym_BSLASHglsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), + [anon_sym_BSLASHglsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), + [anon_sym_BSLASHglsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), + [anon_sym_BSLASHnewacronym] = ACTIONS(4929), + [anon_sym_BSLASHacrshort] = ACTIONS(4929), + [anon_sym_BSLASHAcrshort] = ACTIONS(4929), + [anon_sym_BSLASHACRshort] = ACTIONS(4929), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), + [anon_sym_BSLASHacrlong] = ACTIONS(4929), + [anon_sym_BSLASHAcrlong] = ACTIONS(4929), + [anon_sym_BSLASHACRlong] = ACTIONS(4929), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), + [anon_sym_BSLASHacrfull] = ACTIONS(4929), + [anon_sym_BSLASHAcrfull] = ACTIONS(4929), + [anon_sym_BSLASHACRfull] = ACTIONS(4929), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), + [anon_sym_BSLASHacs] = ACTIONS(4929), + [anon_sym_BSLASHAcs] = ACTIONS(4929), + [anon_sym_BSLASHacsp] = ACTIONS(4929), + [anon_sym_BSLASHAcsp] = ACTIONS(4929), + [anon_sym_BSLASHacl] = ACTIONS(4929), + [anon_sym_BSLASHAcl] = ACTIONS(4929), + [anon_sym_BSLASHaclp] = ACTIONS(4929), + [anon_sym_BSLASHAclp] = ACTIONS(4929), + [anon_sym_BSLASHacf] = ACTIONS(4929), + [anon_sym_BSLASHAcf] = ACTIONS(4929), + [anon_sym_BSLASHacfp] = ACTIONS(4929), + [anon_sym_BSLASHAcfp] = ACTIONS(4929), + [anon_sym_BSLASHac] = ACTIONS(4929), + [anon_sym_BSLASHAc] = ACTIONS(4929), + [anon_sym_BSLASHacp] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), + [anon_sym_BSLASHcolor] = ACTIONS(4929), + [anon_sym_BSLASHcolorbox] = ACTIONS(4929), + [anon_sym_BSLASHtextcolor] = ACTIONS(4929), + [anon_sym_BSLASHpagecolor] = ACTIONS(4929), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), + [anon_sym_BSLASHtext] = ACTIONS(4929), + [anon_sym_BSLASHintertext] = ACTIONS(4929), + [anon_sym_shortintertext] = ACTIONS(4929), }, - [1106] = { - [sym_command_name] = ACTIONS(5097), + [950] = { + [sym_command_name] = ACTIONS(4939), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4937), + [anon_sym_RPAREN] = ACTIONS(4937), + [anon_sym_LBRACK] = ACTIONS(4937), + [anon_sym_RBRACK] = ACTIONS(4937), + [anon_sym_COMMA] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_BSLASHpart] = ACTIONS(4939), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddpart] = ACTIONS(4939), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4937), + [anon_sym_BSLASHchapter] = ACTIONS(4939), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddchap] = ACTIONS(4939), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsection] = ACTIONS(4939), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddsec] = ACTIONS(4939), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubsection] = ACTIONS(4939), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4939), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHparagraph] = ACTIONS(4939), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4939), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4937), + [anon_sym_BSLASHitem] = ACTIONS(4939), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4937), + [sym_word] = ACTIONS(4939), + [sym_placeholder] = ACTIONS(4937), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_SLASH] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(4939), + [anon_sym__] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4939), + [anon_sym_GT] = ACTIONS(4939), + [anon_sym_BANG] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4939), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_SQUOTE] = ACTIONS(4939), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), + [anon_sym_DOLLAR] = ACTIONS(4939), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), + [anon_sym_BSLASHbegin] = ACTIONS(4939), + [anon_sym_BSLASHusepackage] = ACTIONS(4939), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), + [anon_sym_BSLASHinclude] = ACTIONS(4939), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), + [anon_sym_BSLASHinput] = ACTIONS(4939), + [anon_sym_BSLASHsubfile] = ACTIONS(4939), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), + [anon_sym_BSLASHbibliography] = ACTIONS(4939), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), + [anon_sym_BSLASHincludesvg] = ACTIONS(4939), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), + [anon_sym_BSLASHimport] = ACTIONS(4939), + [anon_sym_BSLASHsubimport] = ACTIONS(4939), + [anon_sym_BSLASHinputfrom] = ACTIONS(4939), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), + [anon_sym_BSLASHincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHcaption] = ACTIONS(4939), + [anon_sym_BSLASHcite] = ACTIONS(4939), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCite] = ACTIONS(4939), + [anon_sym_BSLASHnocite] = ACTIONS(4939), + [anon_sym_BSLASHcitet] = ACTIONS(4939), + [anon_sym_BSLASHcitep] = ACTIONS(4939), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteauthor] = ACTIONS(4939), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitetitle] = ACTIONS(4939), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteyear] = ACTIONS(4939), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitedate] = ACTIONS(4939), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteurl] = ACTIONS(4939), + [anon_sym_BSLASHfullcite] = ACTIONS(4939), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), + [anon_sym_BSLASHcitealt] = ACTIONS(4939), + [anon_sym_BSLASHcitealp] = ACTIONS(4939), + [anon_sym_BSLASHcitetext] = ACTIONS(4939), + [anon_sym_BSLASHparencite] = ACTIONS(4939), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHParencite] = ACTIONS(4939), + [anon_sym_BSLASHfootcite] = ACTIONS(4939), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), + [anon_sym_BSLASHtextcite] = ACTIONS(4939), + [anon_sym_BSLASHTextcite] = ACTIONS(4939), + [anon_sym_BSLASHsmartcite] = ACTIONS(4939), + [anon_sym_BSLASHSmartcite] = ACTIONS(4939), + [anon_sym_BSLASHsupercite] = ACTIONS(4939), + [anon_sym_BSLASHautocite] = ACTIONS(4939), + [anon_sym_BSLASHAutocite] = ACTIONS(4939), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHvolcite] = ACTIONS(4939), + [anon_sym_BSLASHVolcite] = ACTIONS(4939), + [anon_sym_BSLASHpvolcite] = ACTIONS(4939), + [anon_sym_BSLASHPvolcite] = ACTIONS(4939), + [anon_sym_BSLASHfvolcite] = ACTIONS(4939), + [anon_sym_BSLASHftvolcite] = ACTIONS(4939), + [anon_sym_BSLASHsvolcite] = ACTIONS(4939), + [anon_sym_BSLASHSvolcite] = ACTIONS(4939), + [anon_sym_BSLASHtvolcite] = ACTIONS(4939), + [anon_sym_BSLASHTvolcite] = ACTIONS(4939), + [anon_sym_BSLASHavolcite] = ACTIONS(4939), + [anon_sym_BSLASHAvolcite] = ACTIONS(4939), + [anon_sym_BSLASHnotecite] = ACTIONS(4939), + [anon_sym_BSLASHNotecite] = ACTIONS(4939), + [anon_sym_BSLASHpnotecite] = ACTIONS(4939), + [anon_sym_BSLASHPnotecite] = ACTIONS(4939), + [anon_sym_BSLASHfnotecite] = ACTIONS(4939), + [anon_sym_BSLASHlabel] = ACTIONS(4939), + [anon_sym_BSLASHref] = ACTIONS(4939), + [anon_sym_BSLASHeqref] = ACTIONS(4939), + [anon_sym_BSLASHvref] = ACTIONS(4939), + [anon_sym_BSLASHVref] = ACTIONS(4939), + [anon_sym_BSLASHautoref] = ACTIONS(4939), + [anon_sym_BSLASHpageref] = ACTIONS(4939), + [anon_sym_BSLASHcref] = ACTIONS(4939), + [anon_sym_BSLASHCref] = ACTIONS(4939), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnameCref] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHlabelcref] = ACTIONS(4939), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCrefrange] = ACTIONS(4939), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnewlabel] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), + [anon_sym_BSLASHdef] = ACTIONS(4939), + [anon_sym_BSLASHlet] = ACTIONS(4939), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), + [anon_sym_BSLASHgls] = ACTIONS(4939), + [anon_sym_BSLASHGls] = ACTIONS(4939), + [anon_sym_BSLASHGLS] = ACTIONS(4939), + [anon_sym_BSLASHglspl] = ACTIONS(4939), + [anon_sym_BSLASHGlspl] = ACTIONS(4939), + [anon_sym_BSLASHGLSpl] = ACTIONS(4939), + [anon_sym_BSLASHglsdisp] = ACTIONS(4939), + [anon_sym_BSLASHglslink] = ACTIONS(4939), + [anon_sym_BSLASHglstext] = ACTIONS(4939), + [anon_sym_BSLASHGlstext] = ACTIONS(4939), + [anon_sym_BSLASHGLStext] = ACTIONS(4939), + [anon_sym_BSLASHglsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), + [anon_sym_BSLASHglsplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSplural] = ACTIONS(4939), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHglsname] = ACTIONS(4939), + [anon_sym_BSLASHGlsname] = ACTIONS(4939), + [anon_sym_BSLASHGLSname] = ACTIONS(4939), + [anon_sym_BSLASHglssymbol] = ACTIONS(4939), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), + [anon_sym_BSLASHglsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), + [anon_sym_BSLASHglsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), + [anon_sym_BSLASHglsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), + [anon_sym_BSLASHglsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), + [anon_sym_BSLASHglsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), + [anon_sym_BSLASHnewacronym] = ACTIONS(4939), + [anon_sym_BSLASHacrshort] = ACTIONS(4939), + [anon_sym_BSLASHAcrshort] = ACTIONS(4939), + [anon_sym_BSLASHACRshort] = ACTIONS(4939), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), + [anon_sym_BSLASHacrlong] = ACTIONS(4939), + [anon_sym_BSLASHAcrlong] = ACTIONS(4939), + [anon_sym_BSLASHACRlong] = ACTIONS(4939), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), + [anon_sym_BSLASHacrfull] = ACTIONS(4939), + [anon_sym_BSLASHAcrfull] = ACTIONS(4939), + [anon_sym_BSLASHACRfull] = ACTIONS(4939), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), + [anon_sym_BSLASHacs] = ACTIONS(4939), + [anon_sym_BSLASHAcs] = ACTIONS(4939), + [anon_sym_BSLASHacsp] = ACTIONS(4939), + [anon_sym_BSLASHAcsp] = ACTIONS(4939), + [anon_sym_BSLASHacl] = ACTIONS(4939), + [anon_sym_BSLASHAcl] = ACTIONS(4939), + [anon_sym_BSLASHaclp] = ACTIONS(4939), + [anon_sym_BSLASHAclp] = ACTIONS(4939), + [anon_sym_BSLASHacf] = ACTIONS(4939), + [anon_sym_BSLASHAcf] = ACTIONS(4939), + [anon_sym_BSLASHacfp] = ACTIONS(4939), + [anon_sym_BSLASHAcfp] = ACTIONS(4939), + [anon_sym_BSLASHac] = ACTIONS(4939), + [anon_sym_BSLASHAc] = ACTIONS(4939), + [anon_sym_BSLASHacp] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), + [anon_sym_BSLASHcolor] = ACTIONS(4939), + [anon_sym_BSLASHcolorbox] = ACTIONS(4939), + [anon_sym_BSLASHtextcolor] = ACTIONS(4939), + [anon_sym_BSLASHpagecolor] = ACTIONS(4939), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), + [anon_sym_BSLASHtext] = ACTIONS(4939), + [anon_sym_BSLASHintertext] = ACTIONS(4939), + [anon_sym_shortintertext] = ACTIONS(4939), + }, + [951] = { + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), + }, + [952] = { + [sym_command_name] = ACTIONS(4959), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_BSLASHpart] = ACTIONS(5097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddpart] = ACTIONS(5097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHchapter] = ACTIONS(5097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddchap] = ACTIONS(5097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsection] = ACTIONS(5097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddsec] = ACTIONS(5097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHparagraph] = ACTIONS(5097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHitem] = ACTIONS(5097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), - [anon_sym_BSLASHbegin] = ACTIONS(5097), - [anon_sym_BSLASHend] = ACTIONS(5097), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), + [anon_sym_BSLASHiffalse] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_BSLASHpart] = ACTIONS(4959), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddpart] = ACTIONS(4959), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), + [anon_sym_BSLASHchapter] = ACTIONS(4959), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddchap] = ACTIONS(4959), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsection] = ACTIONS(4959), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddsec] = ACTIONS(4959), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubsection] = ACTIONS(4959), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHparagraph] = ACTIONS(4959), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), + [anon_sym_BSLASHitem] = ACTIONS(4959), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4957), + [sym_word] = ACTIONS(4959), + [sym_placeholder] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_CARET] = ACTIONS(4959), + [anon_sym__] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_COLON] = ACTIONS(4959), + [anon_sym_SQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), + [anon_sym_DOLLAR] = ACTIONS(4959), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), + [anon_sym_BSLASHbegin] = ACTIONS(4959), + [anon_sym_BSLASHusepackage] = ACTIONS(4959), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), + [anon_sym_BSLASHinclude] = ACTIONS(4959), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), + [anon_sym_BSLASHinput] = ACTIONS(4959), + [anon_sym_BSLASHsubfile] = ACTIONS(4959), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), + [anon_sym_BSLASHbibliography] = ACTIONS(4959), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), + [anon_sym_BSLASHincludesvg] = ACTIONS(4959), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), + [anon_sym_BSLASHimport] = ACTIONS(4959), + [anon_sym_BSLASHsubimport] = ACTIONS(4959), + [anon_sym_BSLASHinputfrom] = ACTIONS(4959), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), + [anon_sym_BSLASHincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHcaption] = ACTIONS(4959), + [anon_sym_BSLASHcite] = ACTIONS(4959), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCite] = ACTIONS(4959), + [anon_sym_BSLASHnocite] = ACTIONS(4959), + [anon_sym_BSLASHcitet] = ACTIONS(4959), + [anon_sym_BSLASHcitep] = ACTIONS(4959), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteauthor] = ACTIONS(4959), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitetitle] = ACTIONS(4959), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteyear] = ACTIONS(4959), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitedate] = ACTIONS(4959), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteurl] = ACTIONS(4959), + [anon_sym_BSLASHfullcite] = ACTIONS(4959), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), + [anon_sym_BSLASHcitealt] = ACTIONS(4959), + [anon_sym_BSLASHcitealp] = ACTIONS(4959), + [anon_sym_BSLASHcitetext] = ACTIONS(4959), + [anon_sym_BSLASHparencite] = ACTIONS(4959), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHParencite] = ACTIONS(4959), + [anon_sym_BSLASHfootcite] = ACTIONS(4959), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), + [anon_sym_BSLASHtextcite] = ACTIONS(4959), + [anon_sym_BSLASHTextcite] = ACTIONS(4959), + [anon_sym_BSLASHsmartcite] = ACTIONS(4959), + [anon_sym_BSLASHSmartcite] = ACTIONS(4959), + [anon_sym_BSLASHsupercite] = ACTIONS(4959), + [anon_sym_BSLASHautocite] = ACTIONS(4959), + [anon_sym_BSLASHAutocite] = ACTIONS(4959), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHvolcite] = ACTIONS(4959), + [anon_sym_BSLASHVolcite] = ACTIONS(4959), + [anon_sym_BSLASHpvolcite] = ACTIONS(4959), + [anon_sym_BSLASHPvolcite] = ACTIONS(4959), + [anon_sym_BSLASHfvolcite] = ACTIONS(4959), + [anon_sym_BSLASHftvolcite] = ACTIONS(4959), + [anon_sym_BSLASHsvolcite] = ACTIONS(4959), + [anon_sym_BSLASHSvolcite] = ACTIONS(4959), + [anon_sym_BSLASHtvolcite] = ACTIONS(4959), + [anon_sym_BSLASHTvolcite] = ACTIONS(4959), + [anon_sym_BSLASHavolcite] = ACTIONS(4959), + [anon_sym_BSLASHAvolcite] = ACTIONS(4959), + [anon_sym_BSLASHnotecite] = ACTIONS(4959), + [anon_sym_BSLASHNotecite] = ACTIONS(4959), + [anon_sym_BSLASHpnotecite] = ACTIONS(4959), + [anon_sym_BSLASHPnotecite] = ACTIONS(4959), + [anon_sym_BSLASHfnotecite] = ACTIONS(4959), + [anon_sym_BSLASHlabel] = ACTIONS(4959), + [anon_sym_BSLASHref] = ACTIONS(4959), + [anon_sym_BSLASHeqref] = ACTIONS(4959), + [anon_sym_BSLASHvref] = ACTIONS(4959), + [anon_sym_BSLASHVref] = ACTIONS(4959), + [anon_sym_BSLASHautoref] = ACTIONS(4959), + [anon_sym_BSLASHpageref] = ACTIONS(4959), + [anon_sym_BSLASHcref] = ACTIONS(4959), + [anon_sym_BSLASHCref] = ACTIONS(4959), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnameCref] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHlabelcref] = ACTIONS(4959), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCrefrange] = ACTIONS(4959), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnewlabel] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), + [anon_sym_BSLASHdef] = ACTIONS(4959), + [anon_sym_BSLASHlet] = ACTIONS(4959), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), + [anon_sym_BSLASHgls] = ACTIONS(4959), + [anon_sym_BSLASHGls] = ACTIONS(4959), + [anon_sym_BSLASHGLS] = ACTIONS(4959), + [anon_sym_BSLASHglspl] = ACTIONS(4959), + [anon_sym_BSLASHGlspl] = ACTIONS(4959), + [anon_sym_BSLASHGLSpl] = ACTIONS(4959), + [anon_sym_BSLASHglsdisp] = ACTIONS(4959), + [anon_sym_BSLASHglslink] = ACTIONS(4959), + [anon_sym_BSLASHglstext] = ACTIONS(4959), + [anon_sym_BSLASHGlstext] = ACTIONS(4959), + [anon_sym_BSLASHGLStext] = ACTIONS(4959), + [anon_sym_BSLASHglsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), + [anon_sym_BSLASHglsplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSplural] = ACTIONS(4959), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHglsname] = ACTIONS(4959), + [anon_sym_BSLASHGlsname] = ACTIONS(4959), + [anon_sym_BSLASHGLSname] = ACTIONS(4959), + [anon_sym_BSLASHglssymbol] = ACTIONS(4959), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), + [anon_sym_BSLASHglsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), + [anon_sym_BSLASHglsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), + [anon_sym_BSLASHglsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), + [anon_sym_BSLASHglsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), + [anon_sym_BSLASHglsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), + [anon_sym_BSLASHnewacronym] = ACTIONS(4959), + [anon_sym_BSLASHacrshort] = ACTIONS(4959), + [anon_sym_BSLASHAcrshort] = ACTIONS(4959), + [anon_sym_BSLASHACRshort] = ACTIONS(4959), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), + [anon_sym_BSLASHacrlong] = ACTIONS(4959), + [anon_sym_BSLASHAcrlong] = ACTIONS(4959), + [anon_sym_BSLASHACRlong] = ACTIONS(4959), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), + [anon_sym_BSLASHacrfull] = ACTIONS(4959), + [anon_sym_BSLASHAcrfull] = ACTIONS(4959), + [anon_sym_BSLASHACRfull] = ACTIONS(4959), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), + [anon_sym_BSLASHacs] = ACTIONS(4959), + [anon_sym_BSLASHAcs] = ACTIONS(4959), + [anon_sym_BSLASHacsp] = ACTIONS(4959), + [anon_sym_BSLASHAcsp] = ACTIONS(4959), + [anon_sym_BSLASHacl] = ACTIONS(4959), + [anon_sym_BSLASHAcl] = ACTIONS(4959), + [anon_sym_BSLASHaclp] = ACTIONS(4959), + [anon_sym_BSLASHAclp] = ACTIONS(4959), + [anon_sym_BSLASHacf] = ACTIONS(4959), + [anon_sym_BSLASHAcf] = ACTIONS(4959), + [anon_sym_BSLASHacfp] = ACTIONS(4959), + [anon_sym_BSLASHAcfp] = ACTIONS(4959), + [anon_sym_BSLASHac] = ACTIONS(4959), + [anon_sym_BSLASHAc] = ACTIONS(4959), + [anon_sym_BSLASHacp] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), + [anon_sym_BSLASHcolor] = ACTIONS(4959), + [anon_sym_BSLASHcolorbox] = ACTIONS(4959), + [anon_sym_BSLASHtextcolor] = ACTIONS(4959), + [anon_sym_BSLASHpagecolor] = ACTIONS(4959), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHtext] = ACTIONS(4959), + [anon_sym_BSLASHintertext] = ACTIONS(4959), + [anon_sym_shortintertext] = ACTIONS(4959), }, - [1107] = { - [sym_command_name] = ACTIONS(5085), + [953] = { + [sym_command_name] = ACTIONS(5007), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_BSLASHpart] = ACTIONS(5085), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddpart] = ACTIONS(5085), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHchapter] = ACTIONS(5085), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddchap] = ACTIONS(5085), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsection] = ACTIONS(5085), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddsec] = ACTIONS(5085), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHparagraph] = ACTIONS(5085), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHitem] = ACTIONS(5085), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASHbegin] = ACTIONS(5085), - [anon_sym_BSLASHend] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), + [anon_sym_BSLASHiffalse] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_RBRACK] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_BSLASHpart] = ACTIONS(5007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddpart] = ACTIONS(5007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), + [anon_sym_BSLASHchapter] = ACTIONS(5007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddchap] = ACTIONS(5007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsection] = ACTIONS(5007), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddsec] = ACTIONS(5007), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubsection] = ACTIONS(5007), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHparagraph] = ACTIONS(5007), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), + [anon_sym_BSLASHitem] = ACTIONS(5007), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5005), + [sym_word] = ACTIONS(5007), + [sym_placeholder] = ACTIONS(5005), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym__] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_BANG] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5007), + [anon_sym_SQUOTE] = ACTIONS(5007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), + [anon_sym_DOLLAR] = ACTIONS(5007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), + [anon_sym_BSLASHbegin] = ACTIONS(5007), + [anon_sym_BSLASHusepackage] = ACTIONS(5007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), + [anon_sym_BSLASHinclude] = ACTIONS(5007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), + [anon_sym_BSLASHinput] = ACTIONS(5007), + [anon_sym_BSLASHsubfile] = ACTIONS(5007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), + [anon_sym_BSLASHbibliography] = ACTIONS(5007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), + [anon_sym_BSLASHincludesvg] = ACTIONS(5007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), + [anon_sym_BSLASHimport] = ACTIONS(5007), + [anon_sym_BSLASHsubimport] = ACTIONS(5007), + [anon_sym_BSLASHinputfrom] = ACTIONS(5007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), + [anon_sym_BSLASHincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHcaption] = ACTIONS(5007), + [anon_sym_BSLASHcite] = ACTIONS(5007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCite] = ACTIONS(5007), + [anon_sym_BSLASHnocite] = ACTIONS(5007), + [anon_sym_BSLASHcitet] = ACTIONS(5007), + [anon_sym_BSLASHcitep] = ACTIONS(5007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteauthor] = ACTIONS(5007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitetitle] = ACTIONS(5007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteyear] = ACTIONS(5007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitedate] = ACTIONS(5007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteurl] = ACTIONS(5007), + [anon_sym_BSLASHfullcite] = ACTIONS(5007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), + [anon_sym_BSLASHcitealt] = ACTIONS(5007), + [anon_sym_BSLASHcitealp] = ACTIONS(5007), + [anon_sym_BSLASHcitetext] = ACTIONS(5007), + [anon_sym_BSLASHparencite] = ACTIONS(5007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHParencite] = ACTIONS(5007), + [anon_sym_BSLASHfootcite] = ACTIONS(5007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), + [anon_sym_BSLASHtextcite] = ACTIONS(5007), + [anon_sym_BSLASHTextcite] = ACTIONS(5007), + [anon_sym_BSLASHsmartcite] = ACTIONS(5007), + [anon_sym_BSLASHSmartcite] = ACTIONS(5007), + [anon_sym_BSLASHsupercite] = ACTIONS(5007), + [anon_sym_BSLASHautocite] = ACTIONS(5007), + [anon_sym_BSLASHAutocite] = ACTIONS(5007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHvolcite] = ACTIONS(5007), + [anon_sym_BSLASHVolcite] = ACTIONS(5007), + [anon_sym_BSLASHpvolcite] = ACTIONS(5007), + [anon_sym_BSLASHPvolcite] = ACTIONS(5007), + [anon_sym_BSLASHfvolcite] = ACTIONS(5007), + [anon_sym_BSLASHftvolcite] = ACTIONS(5007), + [anon_sym_BSLASHsvolcite] = ACTIONS(5007), + [anon_sym_BSLASHSvolcite] = ACTIONS(5007), + [anon_sym_BSLASHtvolcite] = ACTIONS(5007), + [anon_sym_BSLASHTvolcite] = ACTIONS(5007), + [anon_sym_BSLASHavolcite] = ACTIONS(5007), + [anon_sym_BSLASHAvolcite] = ACTIONS(5007), + [anon_sym_BSLASHnotecite] = ACTIONS(5007), + [anon_sym_BSLASHNotecite] = ACTIONS(5007), + [anon_sym_BSLASHpnotecite] = ACTIONS(5007), + [anon_sym_BSLASHPnotecite] = ACTIONS(5007), + [anon_sym_BSLASHfnotecite] = ACTIONS(5007), + [anon_sym_BSLASHlabel] = ACTIONS(5007), + [anon_sym_BSLASHref] = ACTIONS(5007), + [anon_sym_BSLASHeqref] = ACTIONS(5007), + [anon_sym_BSLASHvref] = ACTIONS(5007), + [anon_sym_BSLASHVref] = ACTIONS(5007), + [anon_sym_BSLASHautoref] = ACTIONS(5007), + [anon_sym_BSLASHpageref] = ACTIONS(5007), + [anon_sym_BSLASHcref] = ACTIONS(5007), + [anon_sym_BSLASHCref] = ACTIONS(5007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnameCref] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHlabelcref] = ACTIONS(5007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCrefrange] = ACTIONS(5007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnewlabel] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), + [anon_sym_BSLASHdef] = ACTIONS(5007), + [anon_sym_BSLASHlet] = ACTIONS(5007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), + [anon_sym_BSLASHgls] = ACTIONS(5007), + [anon_sym_BSLASHGls] = ACTIONS(5007), + [anon_sym_BSLASHGLS] = ACTIONS(5007), + [anon_sym_BSLASHglspl] = ACTIONS(5007), + [anon_sym_BSLASHGlspl] = ACTIONS(5007), + [anon_sym_BSLASHGLSpl] = ACTIONS(5007), + [anon_sym_BSLASHglsdisp] = ACTIONS(5007), + [anon_sym_BSLASHglslink] = ACTIONS(5007), + [anon_sym_BSLASHglstext] = ACTIONS(5007), + [anon_sym_BSLASHGlstext] = ACTIONS(5007), + [anon_sym_BSLASHGLStext] = ACTIONS(5007), + [anon_sym_BSLASHglsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), + [anon_sym_BSLASHglsplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSplural] = ACTIONS(5007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHglsname] = ACTIONS(5007), + [anon_sym_BSLASHGlsname] = ACTIONS(5007), + [anon_sym_BSLASHGLSname] = ACTIONS(5007), + [anon_sym_BSLASHglssymbol] = ACTIONS(5007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), + [anon_sym_BSLASHglsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), + [anon_sym_BSLASHglsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), + [anon_sym_BSLASHglsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), + [anon_sym_BSLASHglsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), + [anon_sym_BSLASHglsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), + [anon_sym_BSLASHnewacronym] = ACTIONS(5007), + [anon_sym_BSLASHacrshort] = ACTIONS(5007), + [anon_sym_BSLASHAcrshort] = ACTIONS(5007), + [anon_sym_BSLASHACRshort] = ACTIONS(5007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), + [anon_sym_BSLASHacrlong] = ACTIONS(5007), + [anon_sym_BSLASHAcrlong] = ACTIONS(5007), + [anon_sym_BSLASHACRlong] = ACTIONS(5007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), + [anon_sym_BSLASHacrfull] = ACTIONS(5007), + [anon_sym_BSLASHAcrfull] = ACTIONS(5007), + [anon_sym_BSLASHACRfull] = ACTIONS(5007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), + [anon_sym_BSLASHacs] = ACTIONS(5007), + [anon_sym_BSLASHAcs] = ACTIONS(5007), + [anon_sym_BSLASHacsp] = ACTIONS(5007), + [anon_sym_BSLASHAcsp] = ACTIONS(5007), + [anon_sym_BSLASHacl] = ACTIONS(5007), + [anon_sym_BSLASHAcl] = ACTIONS(5007), + [anon_sym_BSLASHaclp] = ACTIONS(5007), + [anon_sym_BSLASHAclp] = ACTIONS(5007), + [anon_sym_BSLASHacf] = ACTIONS(5007), + [anon_sym_BSLASHAcf] = ACTIONS(5007), + [anon_sym_BSLASHacfp] = ACTIONS(5007), + [anon_sym_BSLASHAcfp] = ACTIONS(5007), + [anon_sym_BSLASHac] = ACTIONS(5007), + [anon_sym_BSLASHAc] = ACTIONS(5007), + [anon_sym_BSLASHacp] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), + [anon_sym_BSLASHcolor] = ACTIONS(5007), + [anon_sym_BSLASHcolorbox] = ACTIONS(5007), + [anon_sym_BSLASHtextcolor] = ACTIONS(5007), + [anon_sym_BSLASHpagecolor] = ACTIONS(5007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), + [anon_sym_BSLASHtext] = ACTIONS(5007), + [anon_sym_BSLASHintertext] = ACTIONS(5007), + [anon_sym_shortintertext] = ACTIONS(5007), }, - [1108] = { + [954] = { + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHchapter] = ACTIONS(143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddchap] = ACTIONS(143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), + [anon_sym_BSLASHsection] = ACTIONS(143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddsec] = ACTIONS(143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHparagraph] = ACTIONS(143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHitem] = ACTIONS(143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_RPAREN] = ACTIONS(141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), + }, + [955] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(137), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_RPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [956] = { + [sym_command_name] = ACTIONS(4891), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_LBRACK] = ACTIONS(4889), + [anon_sym_RBRACK] = ACTIONS(4889), + [anon_sym_COMMA] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4889), + [anon_sym_BSLASHpart] = ACTIONS(4891), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddpart] = ACTIONS(4891), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4889), + [anon_sym_BSLASHchapter] = ACTIONS(4891), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddchap] = ACTIONS(4891), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsection] = ACTIONS(4891), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddsec] = ACTIONS(4891), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubsection] = ACTIONS(4891), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4891), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHparagraph] = ACTIONS(4891), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4891), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4889), + [anon_sym_BSLASHitem] = ACTIONS(4891), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(4889), + [sym_word] = ACTIONS(4891), + [sym_placeholder] = ACTIONS(4889), + [anon_sym_PLUS] = ACTIONS(4891), + [anon_sym_DASH] = ACTIONS(4891), + [anon_sym_STAR] = ACTIONS(4891), + [anon_sym_SLASH] = ACTIONS(4891), + [anon_sym_CARET] = ACTIONS(4891), + [anon_sym__] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_BANG] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_SQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4889), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4889), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4889), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4889), + [anon_sym_BSLASHbegin] = ACTIONS(4891), + [anon_sym_BSLASHusepackage] = ACTIONS(4891), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4891), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4891), + [anon_sym_BSLASHinclude] = ACTIONS(4891), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4891), + [anon_sym_BSLASHinput] = ACTIONS(4891), + [anon_sym_BSLASHsubfile] = ACTIONS(4891), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4891), + [anon_sym_BSLASHbibliography] = ACTIONS(4891), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4891), + [anon_sym_BSLASHincludesvg] = ACTIONS(4891), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4891), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4891), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4891), + [anon_sym_BSLASHimport] = ACTIONS(4891), + [anon_sym_BSLASHsubimport] = ACTIONS(4891), + [anon_sym_BSLASHinputfrom] = ACTIONS(4891), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4891), + [anon_sym_BSLASHincludefrom] = ACTIONS(4891), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4891), + [anon_sym_BSLASHcaption] = ACTIONS(4891), + [anon_sym_BSLASHcite] = ACTIONS(4891), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCite] = ACTIONS(4891), + [anon_sym_BSLASHnocite] = ACTIONS(4891), + [anon_sym_BSLASHcitet] = ACTIONS(4891), + [anon_sym_BSLASHcitep] = ACTIONS(4891), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteauthor] = ACTIONS(4891), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4891), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitetitle] = ACTIONS(4891), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteyear] = ACTIONS(4891), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitedate] = ACTIONS(4891), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteurl] = ACTIONS(4891), + [anon_sym_BSLASHfullcite] = ACTIONS(4891), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4891), + [anon_sym_BSLASHcitealt] = ACTIONS(4891), + [anon_sym_BSLASHcitealp] = ACTIONS(4891), + [anon_sym_BSLASHcitetext] = ACTIONS(4891), + [anon_sym_BSLASHparencite] = ACTIONS(4891), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHParencite] = ACTIONS(4891), + [anon_sym_BSLASHfootcite] = ACTIONS(4891), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4891), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4891), + [anon_sym_BSLASHtextcite] = ACTIONS(4891), + [anon_sym_BSLASHTextcite] = ACTIONS(4891), + [anon_sym_BSLASHsmartcite] = ACTIONS(4891), + [anon_sym_BSLASHSmartcite] = ACTIONS(4891), + [anon_sym_BSLASHsupercite] = ACTIONS(4891), + [anon_sym_BSLASHautocite] = ACTIONS(4891), + [anon_sym_BSLASHAutocite] = ACTIONS(4891), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHvolcite] = ACTIONS(4891), + [anon_sym_BSLASHVolcite] = ACTIONS(4891), + [anon_sym_BSLASHpvolcite] = ACTIONS(4891), + [anon_sym_BSLASHPvolcite] = ACTIONS(4891), + [anon_sym_BSLASHfvolcite] = ACTIONS(4891), + [anon_sym_BSLASHftvolcite] = ACTIONS(4891), + [anon_sym_BSLASHsvolcite] = ACTIONS(4891), + [anon_sym_BSLASHSvolcite] = ACTIONS(4891), + [anon_sym_BSLASHtvolcite] = ACTIONS(4891), + [anon_sym_BSLASHTvolcite] = ACTIONS(4891), + [anon_sym_BSLASHavolcite] = ACTIONS(4891), + [anon_sym_BSLASHAvolcite] = ACTIONS(4891), + [anon_sym_BSLASHnotecite] = ACTIONS(4891), + [anon_sym_BSLASHNotecite] = ACTIONS(4891), + [anon_sym_BSLASHpnotecite] = ACTIONS(4891), + [anon_sym_BSLASHPnotecite] = ACTIONS(4891), + [anon_sym_BSLASHfnotecite] = ACTIONS(4891), + [anon_sym_BSLASHlabel] = ACTIONS(4891), + [anon_sym_BSLASHref] = ACTIONS(4891), + [anon_sym_BSLASHeqref] = ACTIONS(4891), + [anon_sym_BSLASHvref] = ACTIONS(4891), + [anon_sym_BSLASHVref] = ACTIONS(4891), + [anon_sym_BSLASHautoref] = ACTIONS(4891), + [anon_sym_BSLASHpageref] = ACTIONS(4891), + [anon_sym_BSLASHcref] = ACTIONS(4891), + [anon_sym_BSLASHCref] = ACTIONS(4891), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4889), + [anon_sym_BSLASHnamecref] = ACTIONS(4891), + [anon_sym_BSLASHnameCref] = ACTIONS(4891), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4891), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4891), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4891), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4891), + [anon_sym_BSLASHlabelcref] = ACTIONS(4891), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4891), + [anon_sym_BSLASHcrefrange] = ACTIONS(4891), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCrefrange] = ACTIONS(4891), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4889), + [anon_sym_BSLASHnewlabel] = ACTIONS(4891), + [anon_sym_BSLASHnewcommand] = ACTIONS(4891), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4889), + [anon_sym_BSLASHdef] = ACTIONS(4891), + [anon_sym_BSLASHlet] = ACTIONS(4891), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4891), + [anon_sym_BSLASHgls] = ACTIONS(4891), + [anon_sym_BSLASHGls] = ACTIONS(4891), + [anon_sym_BSLASHGLS] = ACTIONS(4891), + [anon_sym_BSLASHglspl] = ACTIONS(4891), + [anon_sym_BSLASHGlspl] = ACTIONS(4891), + [anon_sym_BSLASHGLSpl] = ACTIONS(4891), + [anon_sym_BSLASHglsdisp] = ACTIONS(4891), + [anon_sym_BSLASHglslink] = ACTIONS(4891), + [anon_sym_BSLASHglstext] = ACTIONS(4891), + [anon_sym_BSLASHGlstext] = ACTIONS(4891), + [anon_sym_BSLASHGLStext] = ACTIONS(4891), + [anon_sym_BSLASHglsfirst] = ACTIONS(4891), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4891), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4891), + [anon_sym_BSLASHglsplural] = ACTIONS(4891), + [anon_sym_BSLASHGlsplural] = ACTIONS(4891), + [anon_sym_BSLASHGLSplural] = ACTIONS(4891), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHglsname] = ACTIONS(4891), + [anon_sym_BSLASHGlsname] = ACTIONS(4891), + [anon_sym_BSLASHGLSname] = ACTIONS(4891), + [anon_sym_BSLASHglssymbol] = ACTIONS(4891), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4891), + [anon_sym_BSLASHglsdesc] = ACTIONS(4891), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4891), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4891), + [anon_sym_BSLASHglsuseri] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4891), + [anon_sym_BSLASHglsuserii] = ACTIONS(4891), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4891), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4891), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4891), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4891), + [anon_sym_BSLASHglsuserv] = ACTIONS(4891), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4891), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4891), + [anon_sym_BSLASHglsuservi] = ACTIONS(4891), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4891), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4891), + [anon_sym_BSLASHnewacronym] = ACTIONS(4891), + [anon_sym_BSLASHacrshort] = ACTIONS(4891), + [anon_sym_BSLASHAcrshort] = ACTIONS(4891), + [anon_sym_BSLASHACRshort] = ACTIONS(4891), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4891), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4891), + [anon_sym_BSLASHacrlong] = ACTIONS(4891), + [anon_sym_BSLASHAcrlong] = ACTIONS(4891), + [anon_sym_BSLASHACRlong] = ACTIONS(4891), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4891), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4891), + [anon_sym_BSLASHacrfull] = ACTIONS(4891), + [anon_sym_BSLASHAcrfull] = ACTIONS(4891), + [anon_sym_BSLASHACRfull] = ACTIONS(4891), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4891), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4891), + [anon_sym_BSLASHacs] = ACTIONS(4891), + [anon_sym_BSLASHAcs] = ACTIONS(4891), + [anon_sym_BSLASHacsp] = ACTIONS(4891), + [anon_sym_BSLASHAcsp] = ACTIONS(4891), + [anon_sym_BSLASHacl] = ACTIONS(4891), + [anon_sym_BSLASHAcl] = ACTIONS(4891), + [anon_sym_BSLASHaclp] = ACTIONS(4891), + [anon_sym_BSLASHAclp] = ACTIONS(4891), + [anon_sym_BSLASHacf] = ACTIONS(4891), + [anon_sym_BSLASHAcf] = ACTIONS(4891), + [anon_sym_BSLASHacfp] = ACTIONS(4891), + [anon_sym_BSLASHAcfp] = ACTIONS(4891), + [anon_sym_BSLASHac] = ACTIONS(4891), + [anon_sym_BSLASHAc] = ACTIONS(4891), + [anon_sym_BSLASHacp] = ACTIONS(4891), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4891), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4891), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4891), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4891), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4891), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4891), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4891), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4891), + [anon_sym_BSLASHcolor] = ACTIONS(4891), + [anon_sym_BSLASHcolorbox] = ACTIONS(4891), + [anon_sym_BSLASHtextcolor] = ACTIONS(4891), + [anon_sym_BSLASHpagecolor] = ACTIONS(4891), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4891), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4891), + [anon_sym_BSLASHtext] = ACTIONS(4891), + [anon_sym_BSLASHintertext] = ACTIONS(4891), + [anon_sym_shortintertext] = ACTIONS(4891), + }, + [957] = { [sym_command_name] = ACTIONS(5049), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -336197,9 +296477,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(5049), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5047), [anon_sym_DOLLAR] = ACTIONS(5049), [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5047), [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), [anon_sym_BSLASHbegin] = ACTIONS(5049), [anon_sym_BSLASHusepackage] = ACTIONS(5049), @@ -336415,2698 +296695,5723 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(5049), [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [anon_sym_BSLASHtext] = ACTIONS(5049), + [anon_sym_BSLASHintertext] = ACTIONS(5049), + [anon_sym_shortintertext] = ACTIONS(5049), }, - [1109] = { - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_BSLASHpart] = ACTIONS(141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddpart] = ACTIONS(141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHchapter] = ACTIONS(141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddchap] = ACTIONS(141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), - [anon_sym_BSLASHsection] = ACTIONS(141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddsec] = ACTIONS(141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHparagraph] = ACTIONS(141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHitem] = ACTIONS(141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(141), - [anon_sym_BSLASHend] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), - }, - [1110] = { - [sym_command_name] = ACTIONS(5093), + [958] = { + [sym_command_name] = ACTIONS(5061), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_BSLASHpart] = ACTIONS(5093), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddpart] = ACTIONS(5093), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHchapter] = ACTIONS(5093), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddchap] = ACTIONS(5093), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsection] = ACTIONS(5093), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddsec] = ACTIONS(5093), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHparagraph] = ACTIONS(5093), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHitem] = ACTIONS(5093), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASHbegin] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHiffalse] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5059), + [anon_sym_RPAREN] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5059), + [anon_sym_RBRACK] = ACTIONS(5059), + [anon_sym_COMMA] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_BSLASHpart] = ACTIONS(5061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddpart] = ACTIONS(5061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), + [anon_sym_BSLASHchapter] = ACTIONS(5061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddchap] = ACTIONS(5061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsection] = ACTIONS(5061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddsec] = ACTIONS(5061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubsection] = ACTIONS(5061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHparagraph] = ACTIONS(5061), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), + [anon_sym_BSLASHitem] = ACTIONS(5061), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5059), + [sym_word] = ACTIONS(5061), + [sym_placeholder] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_STAR] = ACTIONS(5061), + [anon_sym_SLASH] = ACTIONS(5061), + [anon_sym_CARET] = ACTIONS(5061), + [anon_sym__] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5061), + [anon_sym_GT] = ACTIONS(5061), + [anon_sym_BANG] = ACTIONS(5061), + [anon_sym_PIPE] = ACTIONS(5061), + [anon_sym_COLON] = ACTIONS(5061), + [anon_sym_SQUOTE] = ACTIONS(5061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), + [anon_sym_DOLLAR] = ACTIONS(5061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), + [anon_sym_BSLASHbegin] = ACTIONS(5061), + [anon_sym_BSLASHusepackage] = ACTIONS(5061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), + [anon_sym_BSLASHinclude] = ACTIONS(5061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), + [anon_sym_BSLASHinput] = ACTIONS(5061), + [anon_sym_BSLASHsubfile] = ACTIONS(5061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), + [anon_sym_BSLASHbibliography] = ACTIONS(5061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), + [anon_sym_BSLASHincludesvg] = ACTIONS(5061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), + [anon_sym_BSLASHimport] = ACTIONS(5061), + [anon_sym_BSLASHsubimport] = ACTIONS(5061), + [anon_sym_BSLASHinputfrom] = ACTIONS(5061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), + [anon_sym_BSLASHincludefrom] = ACTIONS(5061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), + [anon_sym_BSLASHcaption] = ACTIONS(5061), + [anon_sym_BSLASHcite] = ACTIONS(5061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCite] = ACTIONS(5061), + [anon_sym_BSLASHnocite] = ACTIONS(5061), + [anon_sym_BSLASHcitet] = ACTIONS(5061), + [anon_sym_BSLASHcitep] = ACTIONS(5061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteauthor] = ACTIONS(5061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitetitle] = ACTIONS(5061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteyear] = ACTIONS(5061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitedate] = ACTIONS(5061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteurl] = ACTIONS(5061), + [anon_sym_BSLASHfullcite] = ACTIONS(5061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), + [anon_sym_BSLASHcitealt] = ACTIONS(5061), + [anon_sym_BSLASHcitealp] = ACTIONS(5061), + [anon_sym_BSLASHcitetext] = ACTIONS(5061), + [anon_sym_BSLASHparencite] = ACTIONS(5061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHParencite] = ACTIONS(5061), + [anon_sym_BSLASHfootcite] = ACTIONS(5061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), + [anon_sym_BSLASHtextcite] = ACTIONS(5061), + [anon_sym_BSLASHTextcite] = ACTIONS(5061), + [anon_sym_BSLASHsmartcite] = ACTIONS(5061), + [anon_sym_BSLASHSmartcite] = ACTIONS(5061), + [anon_sym_BSLASHsupercite] = ACTIONS(5061), + [anon_sym_BSLASHautocite] = ACTIONS(5061), + [anon_sym_BSLASHAutocite] = ACTIONS(5061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHvolcite] = ACTIONS(5061), + [anon_sym_BSLASHVolcite] = ACTIONS(5061), + [anon_sym_BSLASHpvolcite] = ACTIONS(5061), + [anon_sym_BSLASHPvolcite] = ACTIONS(5061), + [anon_sym_BSLASHfvolcite] = ACTIONS(5061), + [anon_sym_BSLASHftvolcite] = ACTIONS(5061), + [anon_sym_BSLASHsvolcite] = ACTIONS(5061), + [anon_sym_BSLASHSvolcite] = ACTIONS(5061), + [anon_sym_BSLASHtvolcite] = ACTIONS(5061), + [anon_sym_BSLASHTvolcite] = ACTIONS(5061), + [anon_sym_BSLASHavolcite] = ACTIONS(5061), + [anon_sym_BSLASHAvolcite] = ACTIONS(5061), + [anon_sym_BSLASHnotecite] = ACTIONS(5061), + [anon_sym_BSLASHNotecite] = ACTIONS(5061), + [anon_sym_BSLASHpnotecite] = ACTIONS(5061), + [anon_sym_BSLASHPnotecite] = ACTIONS(5061), + [anon_sym_BSLASHfnotecite] = ACTIONS(5061), + [anon_sym_BSLASHlabel] = ACTIONS(5061), + [anon_sym_BSLASHref] = ACTIONS(5061), + [anon_sym_BSLASHeqref] = ACTIONS(5061), + [anon_sym_BSLASHvref] = ACTIONS(5061), + [anon_sym_BSLASHVref] = ACTIONS(5061), + [anon_sym_BSLASHautoref] = ACTIONS(5061), + [anon_sym_BSLASHpageref] = ACTIONS(5061), + [anon_sym_BSLASHcref] = ACTIONS(5061), + [anon_sym_BSLASHCref] = ACTIONS(5061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), + [anon_sym_BSLASHnamecref] = ACTIONS(5061), + [anon_sym_BSLASHnameCref] = ACTIONS(5061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), + [anon_sym_BSLASHlabelcref] = ACTIONS(5061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), + [anon_sym_BSLASHcrefrange] = ACTIONS(5061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCrefrange] = ACTIONS(5061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), + [anon_sym_BSLASHnewlabel] = ACTIONS(5061), + [anon_sym_BSLASHnewcommand] = ACTIONS(5061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), + [anon_sym_BSLASHdef] = ACTIONS(5061), + [anon_sym_BSLASHlet] = ACTIONS(5061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), + [anon_sym_BSLASHgls] = ACTIONS(5061), + [anon_sym_BSLASHGls] = ACTIONS(5061), + [anon_sym_BSLASHGLS] = ACTIONS(5061), + [anon_sym_BSLASHglspl] = ACTIONS(5061), + [anon_sym_BSLASHGlspl] = ACTIONS(5061), + [anon_sym_BSLASHGLSpl] = ACTIONS(5061), + [anon_sym_BSLASHglsdisp] = ACTIONS(5061), + [anon_sym_BSLASHglslink] = ACTIONS(5061), + [anon_sym_BSLASHglstext] = ACTIONS(5061), + [anon_sym_BSLASHGlstext] = ACTIONS(5061), + [anon_sym_BSLASHGLStext] = ACTIONS(5061), + [anon_sym_BSLASHglsfirst] = ACTIONS(5061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), + [anon_sym_BSLASHglsplural] = ACTIONS(5061), + [anon_sym_BSLASHGlsplural] = ACTIONS(5061), + [anon_sym_BSLASHGLSplural] = ACTIONS(5061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHglsname] = ACTIONS(5061), + [anon_sym_BSLASHGlsname] = ACTIONS(5061), + [anon_sym_BSLASHGLSname] = ACTIONS(5061), + [anon_sym_BSLASHglssymbol] = ACTIONS(5061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), + [anon_sym_BSLASHglsdesc] = ACTIONS(5061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), + [anon_sym_BSLASHglsuseri] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), + [anon_sym_BSLASHglsuserii] = ACTIONS(5061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), + [anon_sym_BSLASHglsuserv] = ACTIONS(5061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), + [anon_sym_BSLASHglsuservi] = ACTIONS(5061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), + [anon_sym_BSLASHnewacronym] = ACTIONS(5061), + [anon_sym_BSLASHacrshort] = ACTIONS(5061), + [anon_sym_BSLASHAcrshort] = ACTIONS(5061), + [anon_sym_BSLASHACRshort] = ACTIONS(5061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), + [anon_sym_BSLASHacrlong] = ACTIONS(5061), + [anon_sym_BSLASHAcrlong] = ACTIONS(5061), + [anon_sym_BSLASHACRlong] = ACTIONS(5061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), + [anon_sym_BSLASHacrfull] = ACTIONS(5061), + [anon_sym_BSLASHAcrfull] = ACTIONS(5061), + [anon_sym_BSLASHACRfull] = ACTIONS(5061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), + [anon_sym_BSLASHacs] = ACTIONS(5061), + [anon_sym_BSLASHAcs] = ACTIONS(5061), + [anon_sym_BSLASHacsp] = ACTIONS(5061), + [anon_sym_BSLASHAcsp] = ACTIONS(5061), + [anon_sym_BSLASHacl] = ACTIONS(5061), + [anon_sym_BSLASHAcl] = ACTIONS(5061), + [anon_sym_BSLASHaclp] = ACTIONS(5061), + [anon_sym_BSLASHAclp] = ACTIONS(5061), + [anon_sym_BSLASHacf] = ACTIONS(5061), + [anon_sym_BSLASHAcf] = ACTIONS(5061), + [anon_sym_BSLASHacfp] = ACTIONS(5061), + [anon_sym_BSLASHAcfp] = ACTIONS(5061), + [anon_sym_BSLASHac] = ACTIONS(5061), + [anon_sym_BSLASHAc] = ACTIONS(5061), + [anon_sym_BSLASHacp] = ACTIONS(5061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), + [anon_sym_BSLASHcolor] = ACTIONS(5061), + [anon_sym_BSLASHcolorbox] = ACTIONS(5061), + [anon_sym_BSLASHtextcolor] = ACTIONS(5061), + [anon_sym_BSLASHpagecolor] = ACTIONS(5061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [anon_sym_BSLASHtext] = ACTIONS(5061), + [anon_sym_BSLASHintertext] = ACTIONS(5061), + [anon_sym_shortintertext] = ACTIONS(5061), }, - [1111] = { - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHend] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), + [959] = { + [sym_command_name] = ACTIONS(4883), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4883), + [anon_sym_LPAREN] = ACTIONS(4881), + [anon_sym_RPAREN] = ACTIONS(4881), + [anon_sym_LBRACK] = ACTIONS(4881), + [anon_sym_RBRACK] = ACTIONS(4881), + [anon_sym_COMMA] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(4881), + [anon_sym_BSLASHpart] = ACTIONS(4883), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddpart] = ACTIONS(4883), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4881), + [anon_sym_BSLASHchapter] = ACTIONS(4883), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddchap] = ACTIONS(4883), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsection] = ACTIONS(4883), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddsec] = ACTIONS(4883), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubsection] = ACTIONS(4883), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4883), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHparagraph] = ACTIONS(4883), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4883), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4881), + [anon_sym_BSLASHitem] = ACTIONS(4883), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4881), + [anon_sym_LBRACE] = ACTIONS(4881), + [sym_word] = ACTIONS(4883), + [sym_placeholder] = ACTIONS(4881), + [anon_sym_PLUS] = ACTIONS(4883), + [anon_sym_DASH] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_CARET] = ACTIONS(4883), + [anon_sym__] = ACTIONS(4883), + [anon_sym_LT] = ACTIONS(4883), + [anon_sym_GT] = ACTIONS(4883), + [anon_sym_BANG] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4883), + [anon_sym_COLON] = ACTIONS(4883), + [anon_sym_SQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4881), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4881), + [anon_sym_DOLLAR] = ACTIONS(4883), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4881), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4881), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4881), + [anon_sym_BSLASHbegin] = ACTIONS(4883), + [anon_sym_BSLASHusepackage] = ACTIONS(4883), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4883), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4883), + [anon_sym_BSLASHinclude] = ACTIONS(4883), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4883), + [anon_sym_BSLASHinput] = ACTIONS(4883), + [anon_sym_BSLASHsubfile] = ACTIONS(4883), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4883), + [anon_sym_BSLASHbibliography] = ACTIONS(4883), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4883), + [anon_sym_BSLASHincludesvg] = ACTIONS(4883), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4883), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4883), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4883), + [anon_sym_BSLASHimport] = ACTIONS(4883), + [anon_sym_BSLASHsubimport] = ACTIONS(4883), + [anon_sym_BSLASHinputfrom] = ACTIONS(4883), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4883), + [anon_sym_BSLASHincludefrom] = ACTIONS(4883), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4883), + [anon_sym_BSLASHcaption] = ACTIONS(4883), + [anon_sym_BSLASHcite] = ACTIONS(4883), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCite] = ACTIONS(4883), + [anon_sym_BSLASHnocite] = ACTIONS(4883), + [anon_sym_BSLASHcitet] = ACTIONS(4883), + [anon_sym_BSLASHcitep] = ACTIONS(4883), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteauthor] = ACTIONS(4883), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4883), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitetitle] = ACTIONS(4883), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteyear] = ACTIONS(4883), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitedate] = ACTIONS(4883), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteurl] = ACTIONS(4883), + [anon_sym_BSLASHfullcite] = ACTIONS(4883), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4883), + [anon_sym_BSLASHcitealt] = ACTIONS(4883), + [anon_sym_BSLASHcitealp] = ACTIONS(4883), + [anon_sym_BSLASHcitetext] = ACTIONS(4883), + [anon_sym_BSLASHparencite] = ACTIONS(4883), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHParencite] = ACTIONS(4883), + [anon_sym_BSLASHfootcite] = ACTIONS(4883), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4883), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4883), + [anon_sym_BSLASHtextcite] = ACTIONS(4883), + [anon_sym_BSLASHTextcite] = ACTIONS(4883), + [anon_sym_BSLASHsmartcite] = ACTIONS(4883), + [anon_sym_BSLASHSmartcite] = ACTIONS(4883), + [anon_sym_BSLASHsupercite] = ACTIONS(4883), + [anon_sym_BSLASHautocite] = ACTIONS(4883), + [anon_sym_BSLASHAutocite] = ACTIONS(4883), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHvolcite] = ACTIONS(4883), + [anon_sym_BSLASHVolcite] = ACTIONS(4883), + [anon_sym_BSLASHpvolcite] = ACTIONS(4883), + [anon_sym_BSLASHPvolcite] = ACTIONS(4883), + [anon_sym_BSLASHfvolcite] = ACTIONS(4883), + [anon_sym_BSLASHftvolcite] = ACTIONS(4883), + [anon_sym_BSLASHsvolcite] = ACTIONS(4883), + [anon_sym_BSLASHSvolcite] = ACTIONS(4883), + [anon_sym_BSLASHtvolcite] = ACTIONS(4883), + [anon_sym_BSLASHTvolcite] = ACTIONS(4883), + [anon_sym_BSLASHavolcite] = ACTIONS(4883), + [anon_sym_BSLASHAvolcite] = ACTIONS(4883), + [anon_sym_BSLASHnotecite] = ACTIONS(4883), + [anon_sym_BSLASHNotecite] = ACTIONS(4883), + [anon_sym_BSLASHpnotecite] = ACTIONS(4883), + [anon_sym_BSLASHPnotecite] = ACTIONS(4883), + [anon_sym_BSLASHfnotecite] = ACTIONS(4883), + [anon_sym_BSLASHlabel] = ACTIONS(4883), + [anon_sym_BSLASHref] = ACTIONS(4883), + [anon_sym_BSLASHeqref] = ACTIONS(4883), + [anon_sym_BSLASHvref] = ACTIONS(4883), + [anon_sym_BSLASHVref] = ACTIONS(4883), + [anon_sym_BSLASHautoref] = ACTIONS(4883), + [anon_sym_BSLASHpageref] = ACTIONS(4883), + [anon_sym_BSLASHcref] = ACTIONS(4883), + [anon_sym_BSLASHCref] = ACTIONS(4883), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4881), + [anon_sym_BSLASHnamecref] = ACTIONS(4883), + [anon_sym_BSLASHnameCref] = ACTIONS(4883), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4883), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4883), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4883), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4883), + [anon_sym_BSLASHlabelcref] = ACTIONS(4883), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4883), + [anon_sym_BSLASHcrefrange] = ACTIONS(4883), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCrefrange] = ACTIONS(4883), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4881), + [anon_sym_BSLASHnewlabel] = ACTIONS(4883), + [anon_sym_BSLASHnewcommand] = ACTIONS(4883), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4883), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4883), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4883), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4881), + [anon_sym_BSLASHdef] = ACTIONS(4883), + [anon_sym_BSLASHlet] = ACTIONS(4883), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4883), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4883), + [anon_sym_BSLASHgls] = ACTIONS(4883), + [anon_sym_BSLASHGls] = ACTIONS(4883), + [anon_sym_BSLASHGLS] = ACTIONS(4883), + [anon_sym_BSLASHglspl] = ACTIONS(4883), + [anon_sym_BSLASHGlspl] = ACTIONS(4883), + [anon_sym_BSLASHGLSpl] = ACTIONS(4883), + [anon_sym_BSLASHglsdisp] = ACTIONS(4883), + [anon_sym_BSLASHglslink] = ACTIONS(4883), + [anon_sym_BSLASHglstext] = ACTIONS(4883), + [anon_sym_BSLASHGlstext] = ACTIONS(4883), + [anon_sym_BSLASHGLStext] = ACTIONS(4883), + [anon_sym_BSLASHglsfirst] = ACTIONS(4883), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4883), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4883), + [anon_sym_BSLASHglsplural] = ACTIONS(4883), + [anon_sym_BSLASHGlsplural] = ACTIONS(4883), + [anon_sym_BSLASHGLSplural] = ACTIONS(4883), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHglsname] = ACTIONS(4883), + [anon_sym_BSLASHGlsname] = ACTIONS(4883), + [anon_sym_BSLASHGLSname] = ACTIONS(4883), + [anon_sym_BSLASHglssymbol] = ACTIONS(4883), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4883), + [anon_sym_BSLASHglsdesc] = ACTIONS(4883), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4883), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4883), + [anon_sym_BSLASHglsuseri] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4883), + [anon_sym_BSLASHglsuserii] = ACTIONS(4883), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4883), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4883), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4883), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4883), + [anon_sym_BSLASHglsuserv] = ACTIONS(4883), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4883), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4883), + [anon_sym_BSLASHglsuservi] = ACTIONS(4883), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4883), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4883), + [anon_sym_BSLASHnewacronym] = ACTIONS(4883), + [anon_sym_BSLASHacrshort] = ACTIONS(4883), + [anon_sym_BSLASHAcrshort] = ACTIONS(4883), + [anon_sym_BSLASHACRshort] = ACTIONS(4883), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4883), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4883), + [anon_sym_BSLASHacrlong] = ACTIONS(4883), + [anon_sym_BSLASHAcrlong] = ACTIONS(4883), + [anon_sym_BSLASHACRlong] = ACTIONS(4883), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4883), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4883), + [anon_sym_BSLASHacrfull] = ACTIONS(4883), + [anon_sym_BSLASHAcrfull] = ACTIONS(4883), + [anon_sym_BSLASHACRfull] = ACTIONS(4883), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4883), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4883), + [anon_sym_BSLASHacs] = ACTIONS(4883), + [anon_sym_BSLASHAcs] = ACTIONS(4883), + [anon_sym_BSLASHacsp] = ACTIONS(4883), + [anon_sym_BSLASHAcsp] = ACTIONS(4883), + [anon_sym_BSLASHacl] = ACTIONS(4883), + [anon_sym_BSLASHAcl] = ACTIONS(4883), + [anon_sym_BSLASHaclp] = ACTIONS(4883), + [anon_sym_BSLASHAclp] = ACTIONS(4883), + [anon_sym_BSLASHacf] = ACTIONS(4883), + [anon_sym_BSLASHAcf] = ACTIONS(4883), + [anon_sym_BSLASHacfp] = ACTIONS(4883), + [anon_sym_BSLASHAcfp] = ACTIONS(4883), + [anon_sym_BSLASHac] = ACTIONS(4883), + [anon_sym_BSLASHAc] = ACTIONS(4883), + [anon_sym_BSLASHacp] = ACTIONS(4883), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4883), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4883), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4883), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4883), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4883), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4883), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4883), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4883), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4883), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4883), + [anon_sym_BSLASHcolor] = ACTIONS(4883), + [anon_sym_BSLASHcolorbox] = ACTIONS(4883), + [anon_sym_BSLASHtextcolor] = ACTIONS(4883), + [anon_sym_BSLASHpagecolor] = ACTIONS(4883), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4883), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4883), + [anon_sym_BSLASHtext] = ACTIONS(4883), + [anon_sym_BSLASHintertext] = ACTIONS(4883), + [anon_sym_shortintertext] = ACTIONS(4883), }, - [1112] = { - [sym_command_name] = ACTIONS(5041), + [960] = { + [sym_command_name] = ACTIONS(5069), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_BSLASHpart] = ACTIONS(5041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddpart] = ACTIONS(5041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHchapter] = ACTIONS(5041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddchap] = ACTIONS(5041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsection] = ACTIONS(5041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddsec] = ACTIONS(5041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHparagraph] = ACTIONS(5041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHitem] = ACTIONS(5041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASHbegin] = ACTIONS(5041), - [anon_sym_BSLASHend] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + [anon_sym_BSLASHiffalse] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_RPAREN] = ACTIONS(5067), + [anon_sym_LBRACK] = ACTIONS(5067), + [anon_sym_RBRACK] = ACTIONS(5067), + [anon_sym_COMMA] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_BSLASHpart] = ACTIONS(5069), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddpart] = ACTIONS(5069), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), + [anon_sym_BSLASHchapter] = ACTIONS(5069), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddchap] = ACTIONS(5069), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsection] = ACTIONS(5069), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddsec] = ACTIONS(5069), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubsection] = ACTIONS(5069), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHparagraph] = ACTIONS(5069), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), + [anon_sym_BSLASHitem] = ACTIONS(5069), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5067), + [sym_word] = ACTIONS(5069), + [sym_placeholder] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_STAR] = ACTIONS(5069), + [anon_sym_SLASH] = ACTIONS(5069), + [anon_sym_CARET] = ACTIONS(5069), + [anon_sym__] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5069), + [anon_sym_GT] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5069), + [anon_sym_PIPE] = ACTIONS(5069), + [anon_sym_COLON] = ACTIONS(5069), + [anon_sym_SQUOTE] = ACTIONS(5069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), + [anon_sym_BSLASHbegin] = ACTIONS(5069), + [anon_sym_BSLASHusepackage] = ACTIONS(5069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), + [anon_sym_BSLASHinclude] = ACTIONS(5069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), + [anon_sym_BSLASHinput] = ACTIONS(5069), + [anon_sym_BSLASHsubfile] = ACTIONS(5069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), + [anon_sym_BSLASHbibliography] = ACTIONS(5069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), + [anon_sym_BSLASHincludesvg] = ACTIONS(5069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), + [anon_sym_BSLASHimport] = ACTIONS(5069), + [anon_sym_BSLASHsubimport] = ACTIONS(5069), + [anon_sym_BSLASHinputfrom] = ACTIONS(5069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), + [anon_sym_BSLASHincludefrom] = ACTIONS(5069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), + [anon_sym_BSLASHcaption] = ACTIONS(5069), + [anon_sym_BSLASHcite] = ACTIONS(5069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCite] = ACTIONS(5069), + [anon_sym_BSLASHnocite] = ACTIONS(5069), + [anon_sym_BSLASHcitet] = ACTIONS(5069), + [anon_sym_BSLASHcitep] = ACTIONS(5069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteauthor] = ACTIONS(5069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitetitle] = ACTIONS(5069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteyear] = ACTIONS(5069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitedate] = ACTIONS(5069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteurl] = ACTIONS(5069), + [anon_sym_BSLASHfullcite] = ACTIONS(5069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), + [anon_sym_BSLASHcitealt] = ACTIONS(5069), + [anon_sym_BSLASHcitealp] = ACTIONS(5069), + [anon_sym_BSLASHcitetext] = ACTIONS(5069), + [anon_sym_BSLASHparencite] = ACTIONS(5069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHParencite] = ACTIONS(5069), + [anon_sym_BSLASHfootcite] = ACTIONS(5069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), + [anon_sym_BSLASHtextcite] = ACTIONS(5069), + [anon_sym_BSLASHTextcite] = ACTIONS(5069), + [anon_sym_BSLASHsmartcite] = ACTIONS(5069), + [anon_sym_BSLASHSmartcite] = ACTIONS(5069), + [anon_sym_BSLASHsupercite] = ACTIONS(5069), + [anon_sym_BSLASHautocite] = ACTIONS(5069), + [anon_sym_BSLASHAutocite] = ACTIONS(5069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHvolcite] = ACTIONS(5069), + [anon_sym_BSLASHVolcite] = ACTIONS(5069), + [anon_sym_BSLASHpvolcite] = ACTIONS(5069), + [anon_sym_BSLASHPvolcite] = ACTIONS(5069), + [anon_sym_BSLASHfvolcite] = ACTIONS(5069), + [anon_sym_BSLASHftvolcite] = ACTIONS(5069), + [anon_sym_BSLASHsvolcite] = ACTIONS(5069), + [anon_sym_BSLASHSvolcite] = ACTIONS(5069), + [anon_sym_BSLASHtvolcite] = ACTIONS(5069), + [anon_sym_BSLASHTvolcite] = ACTIONS(5069), + [anon_sym_BSLASHavolcite] = ACTIONS(5069), + [anon_sym_BSLASHAvolcite] = ACTIONS(5069), + [anon_sym_BSLASHnotecite] = ACTIONS(5069), + [anon_sym_BSLASHNotecite] = ACTIONS(5069), + [anon_sym_BSLASHpnotecite] = ACTIONS(5069), + [anon_sym_BSLASHPnotecite] = ACTIONS(5069), + [anon_sym_BSLASHfnotecite] = ACTIONS(5069), + [anon_sym_BSLASHlabel] = ACTIONS(5069), + [anon_sym_BSLASHref] = ACTIONS(5069), + [anon_sym_BSLASHeqref] = ACTIONS(5069), + [anon_sym_BSLASHvref] = ACTIONS(5069), + [anon_sym_BSLASHVref] = ACTIONS(5069), + [anon_sym_BSLASHautoref] = ACTIONS(5069), + [anon_sym_BSLASHpageref] = ACTIONS(5069), + [anon_sym_BSLASHcref] = ACTIONS(5069), + [anon_sym_BSLASHCref] = ACTIONS(5069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), + [anon_sym_BSLASHnamecref] = ACTIONS(5069), + [anon_sym_BSLASHnameCref] = ACTIONS(5069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), + [anon_sym_BSLASHlabelcref] = ACTIONS(5069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), + [anon_sym_BSLASHcrefrange] = ACTIONS(5069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCrefrange] = ACTIONS(5069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), + [anon_sym_BSLASHnewlabel] = ACTIONS(5069), + [anon_sym_BSLASHnewcommand] = ACTIONS(5069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), + [anon_sym_BSLASHdef] = ACTIONS(5069), + [anon_sym_BSLASHlet] = ACTIONS(5069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), + [anon_sym_BSLASHgls] = ACTIONS(5069), + [anon_sym_BSLASHGls] = ACTIONS(5069), + [anon_sym_BSLASHGLS] = ACTIONS(5069), + [anon_sym_BSLASHglspl] = ACTIONS(5069), + [anon_sym_BSLASHGlspl] = ACTIONS(5069), + [anon_sym_BSLASHGLSpl] = ACTIONS(5069), + [anon_sym_BSLASHglsdisp] = ACTIONS(5069), + [anon_sym_BSLASHglslink] = ACTIONS(5069), + [anon_sym_BSLASHglstext] = ACTIONS(5069), + [anon_sym_BSLASHGlstext] = ACTIONS(5069), + [anon_sym_BSLASHGLStext] = ACTIONS(5069), + [anon_sym_BSLASHglsfirst] = ACTIONS(5069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), + [anon_sym_BSLASHglsplural] = ACTIONS(5069), + [anon_sym_BSLASHGlsplural] = ACTIONS(5069), + [anon_sym_BSLASHGLSplural] = ACTIONS(5069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHglsname] = ACTIONS(5069), + [anon_sym_BSLASHGlsname] = ACTIONS(5069), + [anon_sym_BSLASHGLSname] = ACTIONS(5069), + [anon_sym_BSLASHglssymbol] = ACTIONS(5069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), + [anon_sym_BSLASHglsdesc] = ACTIONS(5069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), + [anon_sym_BSLASHglsuseri] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), + [anon_sym_BSLASHglsuserii] = ACTIONS(5069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), + [anon_sym_BSLASHglsuserv] = ACTIONS(5069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), + [anon_sym_BSLASHglsuservi] = ACTIONS(5069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), + [anon_sym_BSLASHnewacronym] = ACTIONS(5069), + [anon_sym_BSLASHacrshort] = ACTIONS(5069), + [anon_sym_BSLASHAcrshort] = ACTIONS(5069), + [anon_sym_BSLASHACRshort] = ACTIONS(5069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), + [anon_sym_BSLASHacrlong] = ACTIONS(5069), + [anon_sym_BSLASHAcrlong] = ACTIONS(5069), + [anon_sym_BSLASHACRlong] = ACTIONS(5069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), + [anon_sym_BSLASHacrfull] = ACTIONS(5069), + [anon_sym_BSLASHAcrfull] = ACTIONS(5069), + [anon_sym_BSLASHACRfull] = ACTIONS(5069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), + [anon_sym_BSLASHacs] = ACTIONS(5069), + [anon_sym_BSLASHAcs] = ACTIONS(5069), + [anon_sym_BSLASHacsp] = ACTIONS(5069), + [anon_sym_BSLASHAcsp] = ACTIONS(5069), + [anon_sym_BSLASHacl] = ACTIONS(5069), + [anon_sym_BSLASHAcl] = ACTIONS(5069), + [anon_sym_BSLASHaclp] = ACTIONS(5069), + [anon_sym_BSLASHAclp] = ACTIONS(5069), + [anon_sym_BSLASHacf] = ACTIONS(5069), + [anon_sym_BSLASHAcf] = ACTIONS(5069), + [anon_sym_BSLASHacfp] = ACTIONS(5069), + [anon_sym_BSLASHAcfp] = ACTIONS(5069), + [anon_sym_BSLASHac] = ACTIONS(5069), + [anon_sym_BSLASHAc] = ACTIONS(5069), + [anon_sym_BSLASHacp] = ACTIONS(5069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), + [anon_sym_BSLASHcolor] = ACTIONS(5069), + [anon_sym_BSLASHcolorbox] = ACTIONS(5069), + [anon_sym_BSLASHtextcolor] = ACTIONS(5069), + [anon_sym_BSLASHpagecolor] = ACTIONS(5069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), + [anon_sym_BSLASHtext] = ACTIONS(5069), + [anon_sym_BSLASHintertext] = ACTIONS(5069), + [anon_sym_shortintertext] = ACTIONS(5069), }, - [1113] = { - [sym_command_name] = ACTIONS(4983), + [961] = { + [sym_command_name] = ACTIONS(5077), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_BSLASHpart] = ACTIONS(4983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddpart] = ACTIONS(4983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHchapter] = ACTIONS(4983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddchap] = ACTIONS(4983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsection] = ACTIONS(4983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddsec] = ACTIONS(4983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHparagraph] = ACTIONS(4983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHitem] = ACTIONS(4983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(4981), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), - [anon_sym_BSLASHbegin] = ACTIONS(4983), - [anon_sym_BSLASHend] = ACTIONS(4983), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHiffalse] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_RPAREN] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_RBRACK] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_EQ] = ACTIONS(5075), + [anon_sym_BSLASHpart] = ACTIONS(5077), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddpart] = ACTIONS(5077), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), + [anon_sym_BSLASHchapter] = ACTIONS(5077), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddchap] = ACTIONS(5077), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsection] = ACTIONS(5077), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddsec] = ACTIONS(5077), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubsection] = ACTIONS(5077), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHparagraph] = ACTIONS(5077), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), + [anon_sym_BSLASHitem] = ACTIONS(5077), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5075), + [sym_word] = ACTIONS(5077), + [sym_placeholder] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_CARET] = ACTIONS(5077), + [anon_sym__] = ACTIONS(5077), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_PIPE] = ACTIONS(5077), + [anon_sym_COLON] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), + [anon_sym_DOLLAR] = ACTIONS(5077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), + [anon_sym_BSLASHbegin] = ACTIONS(5077), + [anon_sym_BSLASHusepackage] = ACTIONS(5077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), + [anon_sym_BSLASHinclude] = ACTIONS(5077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), + [anon_sym_BSLASHinput] = ACTIONS(5077), + [anon_sym_BSLASHsubfile] = ACTIONS(5077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), + [anon_sym_BSLASHbibliography] = ACTIONS(5077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), + [anon_sym_BSLASHincludesvg] = ACTIONS(5077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), + [anon_sym_BSLASHimport] = ACTIONS(5077), + [anon_sym_BSLASHsubimport] = ACTIONS(5077), + [anon_sym_BSLASHinputfrom] = ACTIONS(5077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), + [anon_sym_BSLASHincludefrom] = ACTIONS(5077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), + [anon_sym_BSLASHcaption] = ACTIONS(5077), + [anon_sym_BSLASHcite] = ACTIONS(5077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCite] = ACTIONS(5077), + [anon_sym_BSLASHnocite] = ACTIONS(5077), + [anon_sym_BSLASHcitet] = ACTIONS(5077), + [anon_sym_BSLASHcitep] = ACTIONS(5077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteauthor] = ACTIONS(5077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitetitle] = ACTIONS(5077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteyear] = ACTIONS(5077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitedate] = ACTIONS(5077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteurl] = ACTIONS(5077), + [anon_sym_BSLASHfullcite] = ACTIONS(5077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), + [anon_sym_BSLASHcitealt] = ACTIONS(5077), + [anon_sym_BSLASHcitealp] = ACTIONS(5077), + [anon_sym_BSLASHcitetext] = ACTIONS(5077), + [anon_sym_BSLASHparencite] = ACTIONS(5077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHParencite] = ACTIONS(5077), + [anon_sym_BSLASHfootcite] = ACTIONS(5077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), + [anon_sym_BSLASHtextcite] = ACTIONS(5077), + [anon_sym_BSLASHTextcite] = ACTIONS(5077), + [anon_sym_BSLASHsmartcite] = ACTIONS(5077), + [anon_sym_BSLASHSmartcite] = ACTIONS(5077), + [anon_sym_BSLASHsupercite] = ACTIONS(5077), + [anon_sym_BSLASHautocite] = ACTIONS(5077), + [anon_sym_BSLASHAutocite] = ACTIONS(5077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHvolcite] = ACTIONS(5077), + [anon_sym_BSLASHVolcite] = ACTIONS(5077), + [anon_sym_BSLASHpvolcite] = ACTIONS(5077), + [anon_sym_BSLASHPvolcite] = ACTIONS(5077), + [anon_sym_BSLASHfvolcite] = ACTIONS(5077), + [anon_sym_BSLASHftvolcite] = ACTIONS(5077), + [anon_sym_BSLASHsvolcite] = ACTIONS(5077), + [anon_sym_BSLASHSvolcite] = ACTIONS(5077), + [anon_sym_BSLASHtvolcite] = ACTIONS(5077), + [anon_sym_BSLASHTvolcite] = ACTIONS(5077), + [anon_sym_BSLASHavolcite] = ACTIONS(5077), + [anon_sym_BSLASHAvolcite] = ACTIONS(5077), + [anon_sym_BSLASHnotecite] = ACTIONS(5077), + [anon_sym_BSLASHNotecite] = ACTIONS(5077), + [anon_sym_BSLASHpnotecite] = ACTIONS(5077), + [anon_sym_BSLASHPnotecite] = ACTIONS(5077), + [anon_sym_BSLASHfnotecite] = ACTIONS(5077), + [anon_sym_BSLASHlabel] = ACTIONS(5077), + [anon_sym_BSLASHref] = ACTIONS(5077), + [anon_sym_BSLASHeqref] = ACTIONS(5077), + [anon_sym_BSLASHvref] = ACTIONS(5077), + [anon_sym_BSLASHVref] = ACTIONS(5077), + [anon_sym_BSLASHautoref] = ACTIONS(5077), + [anon_sym_BSLASHpageref] = ACTIONS(5077), + [anon_sym_BSLASHcref] = ACTIONS(5077), + [anon_sym_BSLASHCref] = ACTIONS(5077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), + [anon_sym_BSLASHnamecref] = ACTIONS(5077), + [anon_sym_BSLASHnameCref] = ACTIONS(5077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), + [anon_sym_BSLASHlabelcref] = ACTIONS(5077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), + [anon_sym_BSLASHcrefrange] = ACTIONS(5077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCrefrange] = ACTIONS(5077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), + [anon_sym_BSLASHnewlabel] = ACTIONS(5077), + [anon_sym_BSLASHnewcommand] = ACTIONS(5077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), + [anon_sym_BSLASHdef] = ACTIONS(5077), + [anon_sym_BSLASHlet] = ACTIONS(5077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), + [anon_sym_BSLASHgls] = ACTIONS(5077), + [anon_sym_BSLASHGls] = ACTIONS(5077), + [anon_sym_BSLASHGLS] = ACTIONS(5077), + [anon_sym_BSLASHglspl] = ACTIONS(5077), + [anon_sym_BSLASHGlspl] = ACTIONS(5077), + [anon_sym_BSLASHGLSpl] = ACTIONS(5077), + [anon_sym_BSLASHglsdisp] = ACTIONS(5077), + [anon_sym_BSLASHglslink] = ACTIONS(5077), + [anon_sym_BSLASHglstext] = ACTIONS(5077), + [anon_sym_BSLASHGlstext] = ACTIONS(5077), + [anon_sym_BSLASHGLStext] = ACTIONS(5077), + [anon_sym_BSLASHglsfirst] = ACTIONS(5077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), + [anon_sym_BSLASHglsplural] = ACTIONS(5077), + [anon_sym_BSLASHGlsplural] = ACTIONS(5077), + [anon_sym_BSLASHGLSplural] = ACTIONS(5077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHglsname] = ACTIONS(5077), + [anon_sym_BSLASHGlsname] = ACTIONS(5077), + [anon_sym_BSLASHGLSname] = ACTIONS(5077), + [anon_sym_BSLASHglssymbol] = ACTIONS(5077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), + [anon_sym_BSLASHglsdesc] = ACTIONS(5077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), + [anon_sym_BSLASHglsuseri] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), + [anon_sym_BSLASHglsuserii] = ACTIONS(5077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), + [anon_sym_BSLASHglsuserv] = ACTIONS(5077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), + [anon_sym_BSLASHglsuservi] = ACTIONS(5077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), + [anon_sym_BSLASHnewacronym] = ACTIONS(5077), + [anon_sym_BSLASHacrshort] = ACTIONS(5077), + [anon_sym_BSLASHAcrshort] = ACTIONS(5077), + [anon_sym_BSLASHACRshort] = ACTIONS(5077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), + [anon_sym_BSLASHacrlong] = ACTIONS(5077), + [anon_sym_BSLASHAcrlong] = ACTIONS(5077), + [anon_sym_BSLASHACRlong] = ACTIONS(5077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), + [anon_sym_BSLASHacrfull] = ACTIONS(5077), + [anon_sym_BSLASHAcrfull] = ACTIONS(5077), + [anon_sym_BSLASHACRfull] = ACTIONS(5077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), + [anon_sym_BSLASHacs] = ACTIONS(5077), + [anon_sym_BSLASHAcs] = ACTIONS(5077), + [anon_sym_BSLASHacsp] = ACTIONS(5077), + [anon_sym_BSLASHAcsp] = ACTIONS(5077), + [anon_sym_BSLASHacl] = ACTIONS(5077), + [anon_sym_BSLASHAcl] = ACTIONS(5077), + [anon_sym_BSLASHaclp] = ACTIONS(5077), + [anon_sym_BSLASHAclp] = ACTIONS(5077), + [anon_sym_BSLASHacf] = ACTIONS(5077), + [anon_sym_BSLASHAcf] = ACTIONS(5077), + [anon_sym_BSLASHacfp] = ACTIONS(5077), + [anon_sym_BSLASHAcfp] = ACTIONS(5077), + [anon_sym_BSLASHac] = ACTIONS(5077), + [anon_sym_BSLASHAc] = ACTIONS(5077), + [anon_sym_BSLASHacp] = ACTIONS(5077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), + [anon_sym_BSLASHcolor] = ACTIONS(5077), + [anon_sym_BSLASHcolorbox] = ACTIONS(5077), + [anon_sym_BSLASHtextcolor] = ACTIONS(5077), + [anon_sym_BSLASHpagecolor] = ACTIONS(5077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), + [anon_sym_BSLASHtext] = ACTIONS(5077), + [anon_sym_BSLASHintertext] = ACTIONS(5077), + [anon_sym_shortintertext] = ACTIONS(5077), + }, + [962] = { + [sym_command_name] = ACTIONS(5109), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [anon_sym_RBRACK] = ACTIONS(5107), + [anon_sym_COMMA] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_BSLASHpart] = ACTIONS(5109), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddpart] = ACTIONS(5109), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), + [anon_sym_BSLASHchapter] = ACTIONS(5109), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddchap] = ACTIONS(5109), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsection] = ACTIONS(5109), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddsec] = ACTIONS(5109), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubsection] = ACTIONS(5109), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHparagraph] = ACTIONS(5109), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), + [anon_sym_BSLASHitem] = ACTIONS(5109), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), + [anon_sym_LBRACE] = ACTIONS(5107), + [sym_word] = ACTIONS(5109), + [sym_placeholder] = ACTIONS(5107), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_CARET] = ACTIONS(5109), + [anon_sym__] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_BANG] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5109), + [anon_sym_COLON] = ACTIONS(5109), + [anon_sym_SQUOTE] = ACTIONS(5109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), + [anon_sym_DOLLAR] = ACTIONS(5109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), + [anon_sym_BSLASHbegin] = ACTIONS(5109), + [anon_sym_BSLASHusepackage] = ACTIONS(5109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), + [anon_sym_BSLASHinclude] = ACTIONS(5109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), + [anon_sym_BSLASHinput] = ACTIONS(5109), + [anon_sym_BSLASHsubfile] = ACTIONS(5109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), + [anon_sym_BSLASHbibliography] = ACTIONS(5109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), + [anon_sym_BSLASHincludesvg] = ACTIONS(5109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), + [anon_sym_BSLASHimport] = ACTIONS(5109), + [anon_sym_BSLASHsubimport] = ACTIONS(5109), + [anon_sym_BSLASHinputfrom] = ACTIONS(5109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), + [anon_sym_BSLASHincludefrom] = ACTIONS(5109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), + [anon_sym_BSLASHcaption] = ACTIONS(5109), + [anon_sym_BSLASHcite] = ACTIONS(5109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCite] = ACTIONS(5109), + [anon_sym_BSLASHnocite] = ACTIONS(5109), + [anon_sym_BSLASHcitet] = ACTIONS(5109), + [anon_sym_BSLASHcitep] = ACTIONS(5109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteauthor] = ACTIONS(5109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitetitle] = ACTIONS(5109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteyear] = ACTIONS(5109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitedate] = ACTIONS(5109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteurl] = ACTIONS(5109), + [anon_sym_BSLASHfullcite] = ACTIONS(5109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), + [anon_sym_BSLASHcitealt] = ACTIONS(5109), + [anon_sym_BSLASHcitealp] = ACTIONS(5109), + [anon_sym_BSLASHcitetext] = ACTIONS(5109), + [anon_sym_BSLASHparencite] = ACTIONS(5109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHParencite] = ACTIONS(5109), + [anon_sym_BSLASHfootcite] = ACTIONS(5109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), + [anon_sym_BSLASHtextcite] = ACTIONS(5109), + [anon_sym_BSLASHTextcite] = ACTIONS(5109), + [anon_sym_BSLASHsmartcite] = ACTIONS(5109), + [anon_sym_BSLASHSmartcite] = ACTIONS(5109), + [anon_sym_BSLASHsupercite] = ACTIONS(5109), + [anon_sym_BSLASHautocite] = ACTIONS(5109), + [anon_sym_BSLASHAutocite] = ACTIONS(5109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHvolcite] = ACTIONS(5109), + [anon_sym_BSLASHVolcite] = ACTIONS(5109), + [anon_sym_BSLASHpvolcite] = ACTIONS(5109), + [anon_sym_BSLASHPvolcite] = ACTIONS(5109), + [anon_sym_BSLASHfvolcite] = ACTIONS(5109), + [anon_sym_BSLASHftvolcite] = ACTIONS(5109), + [anon_sym_BSLASHsvolcite] = ACTIONS(5109), + [anon_sym_BSLASHSvolcite] = ACTIONS(5109), + [anon_sym_BSLASHtvolcite] = ACTIONS(5109), + [anon_sym_BSLASHTvolcite] = ACTIONS(5109), + [anon_sym_BSLASHavolcite] = ACTIONS(5109), + [anon_sym_BSLASHAvolcite] = ACTIONS(5109), + [anon_sym_BSLASHnotecite] = ACTIONS(5109), + [anon_sym_BSLASHNotecite] = ACTIONS(5109), + [anon_sym_BSLASHpnotecite] = ACTIONS(5109), + [anon_sym_BSLASHPnotecite] = ACTIONS(5109), + [anon_sym_BSLASHfnotecite] = ACTIONS(5109), + [anon_sym_BSLASHlabel] = ACTIONS(5109), + [anon_sym_BSLASHref] = ACTIONS(5109), + [anon_sym_BSLASHeqref] = ACTIONS(5109), + [anon_sym_BSLASHvref] = ACTIONS(5109), + [anon_sym_BSLASHVref] = ACTIONS(5109), + [anon_sym_BSLASHautoref] = ACTIONS(5109), + [anon_sym_BSLASHpageref] = ACTIONS(5109), + [anon_sym_BSLASHcref] = ACTIONS(5109), + [anon_sym_BSLASHCref] = ACTIONS(5109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), + [anon_sym_BSLASHnamecref] = ACTIONS(5109), + [anon_sym_BSLASHnameCref] = ACTIONS(5109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), + [anon_sym_BSLASHlabelcref] = ACTIONS(5109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), + [anon_sym_BSLASHcrefrange] = ACTIONS(5109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCrefrange] = ACTIONS(5109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), + [anon_sym_BSLASHnewlabel] = ACTIONS(5109), + [anon_sym_BSLASHnewcommand] = ACTIONS(5109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), + [anon_sym_BSLASHdef] = ACTIONS(5109), + [anon_sym_BSLASHlet] = ACTIONS(5109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), + [anon_sym_BSLASHgls] = ACTIONS(5109), + [anon_sym_BSLASHGls] = ACTIONS(5109), + [anon_sym_BSLASHGLS] = ACTIONS(5109), + [anon_sym_BSLASHglspl] = ACTIONS(5109), + [anon_sym_BSLASHGlspl] = ACTIONS(5109), + [anon_sym_BSLASHGLSpl] = ACTIONS(5109), + [anon_sym_BSLASHglsdisp] = ACTIONS(5109), + [anon_sym_BSLASHglslink] = ACTIONS(5109), + [anon_sym_BSLASHglstext] = ACTIONS(5109), + [anon_sym_BSLASHGlstext] = ACTIONS(5109), + [anon_sym_BSLASHGLStext] = ACTIONS(5109), + [anon_sym_BSLASHglsfirst] = ACTIONS(5109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), + [anon_sym_BSLASHglsplural] = ACTIONS(5109), + [anon_sym_BSLASHGlsplural] = ACTIONS(5109), + [anon_sym_BSLASHGLSplural] = ACTIONS(5109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHglsname] = ACTIONS(5109), + [anon_sym_BSLASHGlsname] = ACTIONS(5109), + [anon_sym_BSLASHGLSname] = ACTIONS(5109), + [anon_sym_BSLASHglssymbol] = ACTIONS(5109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), + [anon_sym_BSLASHglsdesc] = ACTIONS(5109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), + [anon_sym_BSLASHglsuseri] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), + [anon_sym_BSLASHglsuserii] = ACTIONS(5109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), + [anon_sym_BSLASHglsuserv] = ACTIONS(5109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), + [anon_sym_BSLASHglsuservi] = ACTIONS(5109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), + [anon_sym_BSLASHnewacronym] = ACTIONS(5109), + [anon_sym_BSLASHacrshort] = ACTIONS(5109), + [anon_sym_BSLASHAcrshort] = ACTIONS(5109), + [anon_sym_BSLASHACRshort] = ACTIONS(5109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), + [anon_sym_BSLASHacrlong] = ACTIONS(5109), + [anon_sym_BSLASHAcrlong] = ACTIONS(5109), + [anon_sym_BSLASHACRlong] = ACTIONS(5109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), + [anon_sym_BSLASHacrfull] = ACTIONS(5109), + [anon_sym_BSLASHAcrfull] = ACTIONS(5109), + [anon_sym_BSLASHACRfull] = ACTIONS(5109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), + [anon_sym_BSLASHacs] = ACTIONS(5109), + [anon_sym_BSLASHAcs] = ACTIONS(5109), + [anon_sym_BSLASHacsp] = ACTIONS(5109), + [anon_sym_BSLASHAcsp] = ACTIONS(5109), + [anon_sym_BSLASHacl] = ACTIONS(5109), + [anon_sym_BSLASHAcl] = ACTIONS(5109), + [anon_sym_BSLASHaclp] = ACTIONS(5109), + [anon_sym_BSLASHAclp] = ACTIONS(5109), + [anon_sym_BSLASHacf] = ACTIONS(5109), + [anon_sym_BSLASHAcf] = ACTIONS(5109), + [anon_sym_BSLASHacfp] = ACTIONS(5109), + [anon_sym_BSLASHAcfp] = ACTIONS(5109), + [anon_sym_BSLASHac] = ACTIONS(5109), + [anon_sym_BSLASHAc] = ACTIONS(5109), + [anon_sym_BSLASHacp] = ACTIONS(5109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), + [anon_sym_BSLASHcolor] = ACTIONS(5109), + [anon_sym_BSLASHcolorbox] = ACTIONS(5109), + [anon_sym_BSLASHtextcolor] = ACTIONS(5109), + [anon_sym_BSLASHpagecolor] = ACTIONS(5109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), + [anon_sym_BSLASHtext] = ACTIONS(5109), + [anon_sym_BSLASHintertext] = ACTIONS(5109), + [anon_sym_shortintertext] = ACTIONS(5109), }, - [1114] = { - [sym_command_name] = ACTIONS(5089), + [963] = { + [sym_command_name] = ACTIONS(5115), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5115), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_RPAREN] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_RBRACK] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_EQ] = ACTIONS(5113), + [anon_sym_BSLASHpart] = ACTIONS(5115), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddpart] = ACTIONS(5115), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5113), + [anon_sym_BSLASHchapter] = ACTIONS(5115), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddchap] = ACTIONS(5115), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsection] = ACTIONS(5115), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddsec] = ACTIONS(5115), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubsection] = ACTIONS(5115), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5115), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHparagraph] = ACTIONS(5115), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5115), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5113), + [anon_sym_BSLASHitem] = ACTIONS(5115), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(5113), + [sym_word] = ACTIONS(5115), + [sym_placeholder] = ACTIONS(5113), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_CARET] = ACTIONS(5115), + [anon_sym__] = ACTIONS(5115), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_BANG] = ACTIONS(5115), + [anon_sym_PIPE] = ACTIONS(5115), + [anon_sym_COLON] = ACTIONS(5115), + [anon_sym_SQUOTE] = ACTIONS(5115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5113), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5113), + [anon_sym_DOLLAR] = ACTIONS(5115), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5113), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5113), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5113), + [anon_sym_BSLASHbegin] = ACTIONS(5115), + [anon_sym_BSLASHusepackage] = ACTIONS(5115), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5115), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5115), + [anon_sym_BSLASHinclude] = ACTIONS(5115), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5115), + [anon_sym_BSLASHinput] = ACTIONS(5115), + [anon_sym_BSLASHsubfile] = ACTIONS(5115), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5115), + [anon_sym_BSLASHbibliography] = ACTIONS(5115), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5115), + [anon_sym_BSLASHincludesvg] = ACTIONS(5115), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5115), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5115), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5115), + [anon_sym_BSLASHimport] = ACTIONS(5115), + [anon_sym_BSLASHsubimport] = ACTIONS(5115), + [anon_sym_BSLASHinputfrom] = ACTIONS(5115), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5115), + [anon_sym_BSLASHincludefrom] = ACTIONS(5115), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5115), + [anon_sym_BSLASHcaption] = ACTIONS(5115), + [anon_sym_BSLASHcite] = ACTIONS(5115), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCite] = ACTIONS(5115), + [anon_sym_BSLASHnocite] = ACTIONS(5115), + [anon_sym_BSLASHcitet] = ACTIONS(5115), + [anon_sym_BSLASHcitep] = ACTIONS(5115), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteauthor] = ACTIONS(5115), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5115), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitetitle] = ACTIONS(5115), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteyear] = ACTIONS(5115), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitedate] = ACTIONS(5115), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteurl] = ACTIONS(5115), + [anon_sym_BSLASHfullcite] = ACTIONS(5115), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5115), + [anon_sym_BSLASHcitealt] = ACTIONS(5115), + [anon_sym_BSLASHcitealp] = ACTIONS(5115), + [anon_sym_BSLASHcitetext] = ACTIONS(5115), + [anon_sym_BSLASHparencite] = ACTIONS(5115), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHParencite] = ACTIONS(5115), + [anon_sym_BSLASHfootcite] = ACTIONS(5115), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5115), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5115), + [anon_sym_BSLASHtextcite] = ACTIONS(5115), + [anon_sym_BSLASHTextcite] = ACTIONS(5115), + [anon_sym_BSLASHsmartcite] = ACTIONS(5115), + [anon_sym_BSLASHSmartcite] = ACTIONS(5115), + [anon_sym_BSLASHsupercite] = ACTIONS(5115), + [anon_sym_BSLASHautocite] = ACTIONS(5115), + [anon_sym_BSLASHAutocite] = ACTIONS(5115), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHvolcite] = ACTIONS(5115), + [anon_sym_BSLASHVolcite] = ACTIONS(5115), + [anon_sym_BSLASHpvolcite] = ACTIONS(5115), + [anon_sym_BSLASHPvolcite] = ACTIONS(5115), + [anon_sym_BSLASHfvolcite] = ACTIONS(5115), + [anon_sym_BSLASHftvolcite] = ACTIONS(5115), + [anon_sym_BSLASHsvolcite] = ACTIONS(5115), + [anon_sym_BSLASHSvolcite] = ACTIONS(5115), + [anon_sym_BSLASHtvolcite] = ACTIONS(5115), + [anon_sym_BSLASHTvolcite] = ACTIONS(5115), + [anon_sym_BSLASHavolcite] = ACTIONS(5115), + [anon_sym_BSLASHAvolcite] = ACTIONS(5115), + [anon_sym_BSLASHnotecite] = ACTIONS(5115), + [anon_sym_BSLASHNotecite] = ACTIONS(5115), + [anon_sym_BSLASHpnotecite] = ACTIONS(5115), + [anon_sym_BSLASHPnotecite] = ACTIONS(5115), + [anon_sym_BSLASHfnotecite] = ACTIONS(5115), + [anon_sym_BSLASHlabel] = ACTIONS(5115), + [anon_sym_BSLASHref] = ACTIONS(5115), + [anon_sym_BSLASHeqref] = ACTIONS(5115), + [anon_sym_BSLASHvref] = ACTIONS(5115), + [anon_sym_BSLASHVref] = ACTIONS(5115), + [anon_sym_BSLASHautoref] = ACTIONS(5115), + [anon_sym_BSLASHpageref] = ACTIONS(5115), + [anon_sym_BSLASHcref] = ACTIONS(5115), + [anon_sym_BSLASHCref] = ACTIONS(5115), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5113), + [anon_sym_BSLASHnamecref] = ACTIONS(5115), + [anon_sym_BSLASHnameCref] = ACTIONS(5115), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5115), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5115), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5115), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5115), + [anon_sym_BSLASHlabelcref] = ACTIONS(5115), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5115), + [anon_sym_BSLASHcrefrange] = ACTIONS(5115), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCrefrange] = ACTIONS(5115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5113), + [anon_sym_BSLASHnewlabel] = ACTIONS(5115), + [anon_sym_BSLASHnewcommand] = ACTIONS(5115), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5115), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5115), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5115), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5113), + [anon_sym_BSLASHdef] = ACTIONS(5115), + [anon_sym_BSLASHlet] = ACTIONS(5115), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5115), + [anon_sym_BSLASHgls] = ACTIONS(5115), + [anon_sym_BSLASHGls] = ACTIONS(5115), + [anon_sym_BSLASHGLS] = ACTIONS(5115), + [anon_sym_BSLASHglspl] = ACTIONS(5115), + [anon_sym_BSLASHGlspl] = ACTIONS(5115), + [anon_sym_BSLASHGLSpl] = ACTIONS(5115), + [anon_sym_BSLASHglsdisp] = ACTIONS(5115), + [anon_sym_BSLASHglslink] = ACTIONS(5115), + [anon_sym_BSLASHglstext] = ACTIONS(5115), + [anon_sym_BSLASHGlstext] = ACTIONS(5115), + [anon_sym_BSLASHGLStext] = ACTIONS(5115), + [anon_sym_BSLASHglsfirst] = ACTIONS(5115), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5115), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5115), + [anon_sym_BSLASHglsplural] = ACTIONS(5115), + [anon_sym_BSLASHGlsplural] = ACTIONS(5115), + [anon_sym_BSLASHGLSplural] = ACTIONS(5115), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHglsname] = ACTIONS(5115), + [anon_sym_BSLASHGlsname] = ACTIONS(5115), + [anon_sym_BSLASHGLSname] = ACTIONS(5115), + [anon_sym_BSLASHglssymbol] = ACTIONS(5115), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5115), + [anon_sym_BSLASHglsdesc] = ACTIONS(5115), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5115), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5115), + [anon_sym_BSLASHglsuseri] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5115), + [anon_sym_BSLASHglsuserii] = ACTIONS(5115), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5115), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5115), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5115), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5115), + [anon_sym_BSLASHglsuserv] = ACTIONS(5115), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5115), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5115), + [anon_sym_BSLASHglsuservi] = ACTIONS(5115), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5115), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5115), + [anon_sym_BSLASHnewacronym] = ACTIONS(5115), + [anon_sym_BSLASHacrshort] = ACTIONS(5115), + [anon_sym_BSLASHAcrshort] = ACTIONS(5115), + [anon_sym_BSLASHACRshort] = ACTIONS(5115), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5115), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5115), + [anon_sym_BSLASHacrlong] = ACTIONS(5115), + [anon_sym_BSLASHAcrlong] = ACTIONS(5115), + [anon_sym_BSLASHACRlong] = ACTIONS(5115), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5115), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5115), + [anon_sym_BSLASHacrfull] = ACTIONS(5115), + [anon_sym_BSLASHAcrfull] = ACTIONS(5115), + [anon_sym_BSLASHACRfull] = ACTIONS(5115), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5115), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5115), + [anon_sym_BSLASHacs] = ACTIONS(5115), + [anon_sym_BSLASHAcs] = ACTIONS(5115), + [anon_sym_BSLASHacsp] = ACTIONS(5115), + [anon_sym_BSLASHAcsp] = ACTIONS(5115), + [anon_sym_BSLASHacl] = ACTIONS(5115), + [anon_sym_BSLASHAcl] = ACTIONS(5115), + [anon_sym_BSLASHaclp] = ACTIONS(5115), + [anon_sym_BSLASHAclp] = ACTIONS(5115), + [anon_sym_BSLASHacf] = ACTIONS(5115), + [anon_sym_BSLASHAcf] = ACTIONS(5115), + [anon_sym_BSLASHacfp] = ACTIONS(5115), + [anon_sym_BSLASHAcfp] = ACTIONS(5115), + [anon_sym_BSLASHac] = ACTIONS(5115), + [anon_sym_BSLASHAc] = ACTIONS(5115), + [anon_sym_BSLASHacp] = ACTIONS(5115), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5115), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5115), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5115), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5115), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5115), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5115), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5115), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5115), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5115), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5115), + [anon_sym_BSLASHcolor] = ACTIONS(5115), + [anon_sym_BSLASHcolorbox] = ACTIONS(5115), + [anon_sym_BSLASHtextcolor] = ACTIONS(5115), + [anon_sym_BSLASHpagecolor] = ACTIONS(5115), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5115), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5115), + [anon_sym_BSLASHtext] = ACTIONS(5115), + [anon_sym_BSLASHintertext] = ACTIONS(5115), + [anon_sym_shortintertext] = ACTIONS(5115), + }, + [964] = { + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_RBRACK] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_BSLASHpart] = ACTIONS(5123), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddpart] = ACTIONS(5123), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5121), + [anon_sym_BSLASHchapter] = ACTIONS(5123), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddchap] = ACTIONS(5123), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsection] = ACTIONS(5123), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddsec] = ACTIONS(5123), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubsection] = ACTIONS(5123), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5123), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHparagraph] = ACTIONS(5123), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5123), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5121), + [anon_sym_BSLASHitem] = ACTIONS(5123), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5121), + [sym_word] = ACTIONS(5123), + [sym_placeholder] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5123), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_CARET] = ACTIONS(5123), + [anon_sym__] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5123), + [anon_sym_COLON] = ACTIONS(5123), + [anon_sym_SQUOTE] = ACTIONS(5123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5121), + [anon_sym_DOLLAR] = ACTIONS(5123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5121), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5121), + [anon_sym_BSLASHbegin] = ACTIONS(5123), + [anon_sym_BSLASHusepackage] = ACTIONS(5123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5123), + [anon_sym_BSLASHinclude] = ACTIONS(5123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5123), + [anon_sym_BSLASHinput] = ACTIONS(5123), + [anon_sym_BSLASHsubfile] = ACTIONS(5123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5123), + [anon_sym_BSLASHbibliography] = ACTIONS(5123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5123), + [anon_sym_BSLASHincludesvg] = ACTIONS(5123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5123), + [anon_sym_BSLASHimport] = ACTIONS(5123), + [anon_sym_BSLASHsubimport] = ACTIONS(5123), + [anon_sym_BSLASHinputfrom] = ACTIONS(5123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5123), + [anon_sym_BSLASHincludefrom] = ACTIONS(5123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5123), + [anon_sym_BSLASHcaption] = ACTIONS(5123), + [anon_sym_BSLASHcite] = ACTIONS(5123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCite] = ACTIONS(5123), + [anon_sym_BSLASHnocite] = ACTIONS(5123), + [anon_sym_BSLASHcitet] = ACTIONS(5123), + [anon_sym_BSLASHcitep] = ACTIONS(5123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteauthor] = ACTIONS(5123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitetitle] = ACTIONS(5123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteyear] = ACTIONS(5123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitedate] = ACTIONS(5123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteurl] = ACTIONS(5123), + [anon_sym_BSLASHfullcite] = ACTIONS(5123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5123), + [anon_sym_BSLASHcitealt] = ACTIONS(5123), + [anon_sym_BSLASHcitealp] = ACTIONS(5123), + [anon_sym_BSLASHcitetext] = ACTIONS(5123), + [anon_sym_BSLASHparencite] = ACTIONS(5123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHParencite] = ACTIONS(5123), + [anon_sym_BSLASHfootcite] = ACTIONS(5123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5123), + [anon_sym_BSLASHtextcite] = ACTIONS(5123), + [anon_sym_BSLASHTextcite] = ACTIONS(5123), + [anon_sym_BSLASHsmartcite] = ACTIONS(5123), + [anon_sym_BSLASHSmartcite] = ACTIONS(5123), + [anon_sym_BSLASHsupercite] = ACTIONS(5123), + [anon_sym_BSLASHautocite] = ACTIONS(5123), + [anon_sym_BSLASHAutocite] = ACTIONS(5123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHvolcite] = ACTIONS(5123), + [anon_sym_BSLASHVolcite] = ACTIONS(5123), + [anon_sym_BSLASHpvolcite] = ACTIONS(5123), + [anon_sym_BSLASHPvolcite] = ACTIONS(5123), + [anon_sym_BSLASHfvolcite] = ACTIONS(5123), + [anon_sym_BSLASHftvolcite] = ACTIONS(5123), + [anon_sym_BSLASHsvolcite] = ACTIONS(5123), + [anon_sym_BSLASHSvolcite] = ACTIONS(5123), + [anon_sym_BSLASHtvolcite] = ACTIONS(5123), + [anon_sym_BSLASHTvolcite] = ACTIONS(5123), + [anon_sym_BSLASHavolcite] = ACTIONS(5123), + [anon_sym_BSLASHAvolcite] = ACTIONS(5123), + [anon_sym_BSLASHnotecite] = ACTIONS(5123), + [anon_sym_BSLASHNotecite] = ACTIONS(5123), + [anon_sym_BSLASHpnotecite] = ACTIONS(5123), + [anon_sym_BSLASHPnotecite] = ACTIONS(5123), + [anon_sym_BSLASHfnotecite] = ACTIONS(5123), + [anon_sym_BSLASHlabel] = ACTIONS(5123), + [anon_sym_BSLASHref] = ACTIONS(5123), + [anon_sym_BSLASHeqref] = ACTIONS(5123), + [anon_sym_BSLASHvref] = ACTIONS(5123), + [anon_sym_BSLASHVref] = ACTIONS(5123), + [anon_sym_BSLASHautoref] = ACTIONS(5123), + [anon_sym_BSLASHpageref] = ACTIONS(5123), + [anon_sym_BSLASHcref] = ACTIONS(5123), + [anon_sym_BSLASHCref] = ACTIONS(5123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5121), + [anon_sym_BSLASHnamecref] = ACTIONS(5123), + [anon_sym_BSLASHnameCref] = ACTIONS(5123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5123), + [anon_sym_BSLASHlabelcref] = ACTIONS(5123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5123), + [anon_sym_BSLASHcrefrange] = ACTIONS(5123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCrefrange] = ACTIONS(5123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5121), + [anon_sym_BSLASHnewlabel] = ACTIONS(5123), + [anon_sym_BSLASHnewcommand] = ACTIONS(5123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5121), + [anon_sym_BSLASHdef] = ACTIONS(5123), + [anon_sym_BSLASHlet] = ACTIONS(5123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5123), + [anon_sym_BSLASHgls] = ACTIONS(5123), + [anon_sym_BSLASHGls] = ACTIONS(5123), + [anon_sym_BSLASHGLS] = ACTIONS(5123), + [anon_sym_BSLASHglspl] = ACTIONS(5123), + [anon_sym_BSLASHGlspl] = ACTIONS(5123), + [anon_sym_BSLASHGLSpl] = ACTIONS(5123), + [anon_sym_BSLASHglsdisp] = ACTIONS(5123), + [anon_sym_BSLASHglslink] = ACTIONS(5123), + [anon_sym_BSLASHglstext] = ACTIONS(5123), + [anon_sym_BSLASHGlstext] = ACTIONS(5123), + [anon_sym_BSLASHGLStext] = ACTIONS(5123), + [anon_sym_BSLASHglsfirst] = ACTIONS(5123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5123), + [anon_sym_BSLASHglsplural] = ACTIONS(5123), + [anon_sym_BSLASHGlsplural] = ACTIONS(5123), + [anon_sym_BSLASHGLSplural] = ACTIONS(5123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHglsname] = ACTIONS(5123), + [anon_sym_BSLASHGlsname] = ACTIONS(5123), + [anon_sym_BSLASHGLSname] = ACTIONS(5123), + [anon_sym_BSLASHglssymbol] = ACTIONS(5123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5123), + [anon_sym_BSLASHglsdesc] = ACTIONS(5123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5123), + [anon_sym_BSLASHglsuseri] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5123), + [anon_sym_BSLASHglsuserii] = ACTIONS(5123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5123), + [anon_sym_BSLASHglsuserv] = ACTIONS(5123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5123), + [anon_sym_BSLASHglsuservi] = ACTIONS(5123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5123), + [anon_sym_BSLASHnewacronym] = ACTIONS(5123), + [anon_sym_BSLASHacrshort] = ACTIONS(5123), + [anon_sym_BSLASHAcrshort] = ACTIONS(5123), + [anon_sym_BSLASHACRshort] = ACTIONS(5123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5123), + [anon_sym_BSLASHacrlong] = ACTIONS(5123), + [anon_sym_BSLASHAcrlong] = ACTIONS(5123), + [anon_sym_BSLASHACRlong] = ACTIONS(5123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5123), + [anon_sym_BSLASHacrfull] = ACTIONS(5123), + [anon_sym_BSLASHAcrfull] = ACTIONS(5123), + [anon_sym_BSLASHACRfull] = ACTIONS(5123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5123), + [anon_sym_BSLASHacs] = ACTIONS(5123), + [anon_sym_BSLASHAcs] = ACTIONS(5123), + [anon_sym_BSLASHacsp] = ACTIONS(5123), + [anon_sym_BSLASHAcsp] = ACTIONS(5123), + [anon_sym_BSLASHacl] = ACTIONS(5123), + [anon_sym_BSLASHAcl] = ACTIONS(5123), + [anon_sym_BSLASHaclp] = ACTIONS(5123), + [anon_sym_BSLASHAclp] = ACTIONS(5123), + [anon_sym_BSLASHacf] = ACTIONS(5123), + [anon_sym_BSLASHAcf] = ACTIONS(5123), + [anon_sym_BSLASHacfp] = ACTIONS(5123), + [anon_sym_BSLASHAcfp] = ACTIONS(5123), + [anon_sym_BSLASHac] = ACTIONS(5123), + [anon_sym_BSLASHAc] = ACTIONS(5123), + [anon_sym_BSLASHacp] = ACTIONS(5123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5123), + [anon_sym_BSLASHcolor] = ACTIONS(5123), + [anon_sym_BSLASHcolorbox] = ACTIONS(5123), + [anon_sym_BSLASHtextcolor] = ACTIONS(5123), + [anon_sym_BSLASHpagecolor] = ACTIONS(5123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5123), + [anon_sym_BSLASHtext] = ACTIONS(5123), + [anon_sym_BSLASHintertext] = ACTIONS(5123), + [anon_sym_shortintertext] = ACTIONS(5123), + }, + [965] = { + [sym_command_name] = ACTIONS(5127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_RPAREN] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_BSLASHpart] = ACTIONS(5127), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddpart] = ACTIONS(5127), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5125), + [anon_sym_BSLASHchapter] = ACTIONS(5127), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddchap] = ACTIONS(5127), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsection] = ACTIONS(5127), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddsec] = ACTIONS(5127), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubsection] = ACTIONS(5127), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5127), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHparagraph] = ACTIONS(5127), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5127), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5125), + [anon_sym_BSLASHitem] = ACTIONS(5127), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5127), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_CARET] = ACTIONS(5127), + [anon_sym__] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5127), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_COLON] = ACTIONS(5127), + [anon_sym_SQUOTE] = ACTIONS(5127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5125), + [anon_sym_DOLLAR] = ACTIONS(5127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5125), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5125), + [anon_sym_BSLASHbegin] = ACTIONS(5127), + [anon_sym_BSLASHusepackage] = ACTIONS(5127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5127), + [anon_sym_BSLASHinclude] = ACTIONS(5127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5127), + [anon_sym_BSLASHinput] = ACTIONS(5127), + [anon_sym_BSLASHsubfile] = ACTIONS(5127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5127), + [anon_sym_BSLASHbibliography] = ACTIONS(5127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5127), + [anon_sym_BSLASHincludesvg] = ACTIONS(5127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5127), + [anon_sym_BSLASHimport] = ACTIONS(5127), + [anon_sym_BSLASHsubimport] = ACTIONS(5127), + [anon_sym_BSLASHinputfrom] = ACTIONS(5127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5127), + [anon_sym_BSLASHincludefrom] = ACTIONS(5127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5127), + [anon_sym_BSLASHcaption] = ACTIONS(5127), + [anon_sym_BSLASHcite] = ACTIONS(5127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCite] = ACTIONS(5127), + [anon_sym_BSLASHnocite] = ACTIONS(5127), + [anon_sym_BSLASHcitet] = ACTIONS(5127), + [anon_sym_BSLASHcitep] = ACTIONS(5127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteauthor] = ACTIONS(5127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitetitle] = ACTIONS(5127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteyear] = ACTIONS(5127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitedate] = ACTIONS(5127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteurl] = ACTIONS(5127), + [anon_sym_BSLASHfullcite] = ACTIONS(5127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5127), + [anon_sym_BSLASHcitealt] = ACTIONS(5127), + [anon_sym_BSLASHcitealp] = ACTIONS(5127), + [anon_sym_BSLASHcitetext] = ACTIONS(5127), + [anon_sym_BSLASHparencite] = ACTIONS(5127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHParencite] = ACTIONS(5127), + [anon_sym_BSLASHfootcite] = ACTIONS(5127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5127), + [anon_sym_BSLASHtextcite] = ACTIONS(5127), + [anon_sym_BSLASHTextcite] = ACTIONS(5127), + [anon_sym_BSLASHsmartcite] = ACTIONS(5127), + [anon_sym_BSLASHSmartcite] = ACTIONS(5127), + [anon_sym_BSLASHsupercite] = ACTIONS(5127), + [anon_sym_BSLASHautocite] = ACTIONS(5127), + [anon_sym_BSLASHAutocite] = ACTIONS(5127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHvolcite] = ACTIONS(5127), + [anon_sym_BSLASHVolcite] = ACTIONS(5127), + [anon_sym_BSLASHpvolcite] = ACTIONS(5127), + [anon_sym_BSLASHPvolcite] = ACTIONS(5127), + [anon_sym_BSLASHfvolcite] = ACTIONS(5127), + [anon_sym_BSLASHftvolcite] = ACTIONS(5127), + [anon_sym_BSLASHsvolcite] = ACTIONS(5127), + [anon_sym_BSLASHSvolcite] = ACTIONS(5127), + [anon_sym_BSLASHtvolcite] = ACTIONS(5127), + [anon_sym_BSLASHTvolcite] = ACTIONS(5127), + [anon_sym_BSLASHavolcite] = ACTIONS(5127), + [anon_sym_BSLASHAvolcite] = ACTIONS(5127), + [anon_sym_BSLASHnotecite] = ACTIONS(5127), + [anon_sym_BSLASHNotecite] = ACTIONS(5127), + [anon_sym_BSLASHpnotecite] = ACTIONS(5127), + [anon_sym_BSLASHPnotecite] = ACTIONS(5127), + [anon_sym_BSLASHfnotecite] = ACTIONS(5127), + [anon_sym_BSLASHlabel] = ACTIONS(5127), + [anon_sym_BSLASHref] = ACTIONS(5127), + [anon_sym_BSLASHeqref] = ACTIONS(5127), + [anon_sym_BSLASHvref] = ACTIONS(5127), + [anon_sym_BSLASHVref] = ACTIONS(5127), + [anon_sym_BSLASHautoref] = ACTIONS(5127), + [anon_sym_BSLASHpageref] = ACTIONS(5127), + [anon_sym_BSLASHcref] = ACTIONS(5127), + [anon_sym_BSLASHCref] = ACTIONS(5127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5125), + [anon_sym_BSLASHnamecref] = ACTIONS(5127), + [anon_sym_BSLASHnameCref] = ACTIONS(5127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5127), + [anon_sym_BSLASHlabelcref] = ACTIONS(5127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5127), + [anon_sym_BSLASHcrefrange] = ACTIONS(5127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCrefrange] = ACTIONS(5127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5125), + [anon_sym_BSLASHnewlabel] = ACTIONS(5127), + [anon_sym_BSLASHnewcommand] = ACTIONS(5127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5125), + [anon_sym_BSLASHdef] = ACTIONS(5127), + [anon_sym_BSLASHlet] = ACTIONS(5127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5127), + [anon_sym_BSLASHgls] = ACTIONS(5127), + [anon_sym_BSLASHGls] = ACTIONS(5127), + [anon_sym_BSLASHGLS] = ACTIONS(5127), + [anon_sym_BSLASHglspl] = ACTIONS(5127), + [anon_sym_BSLASHGlspl] = ACTIONS(5127), + [anon_sym_BSLASHGLSpl] = ACTIONS(5127), + [anon_sym_BSLASHglsdisp] = ACTIONS(5127), + [anon_sym_BSLASHglslink] = ACTIONS(5127), + [anon_sym_BSLASHglstext] = ACTIONS(5127), + [anon_sym_BSLASHGlstext] = ACTIONS(5127), + [anon_sym_BSLASHGLStext] = ACTIONS(5127), + [anon_sym_BSLASHglsfirst] = ACTIONS(5127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5127), + [anon_sym_BSLASHglsplural] = ACTIONS(5127), + [anon_sym_BSLASHGlsplural] = ACTIONS(5127), + [anon_sym_BSLASHGLSplural] = ACTIONS(5127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHglsname] = ACTIONS(5127), + [anon_sym_BSLASHGlsname] = ACTIONS(5127), + [anon_sym_BSLASHGLSname] = ACTIONS(5127), + [anon_sym_BSLASHglssymbol] = ACTIONS(5127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5127), + [anon_sym_BSLASHglsdesc] = ACTIONS(5127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5127), + [anon_sym_BSLASHglsuseri] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5127), + [anon_sym_BSLASHglsuserii] = ACTIONS(5127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5127), + [anon_sym_BSLASHglsuserv] = ACTIONS(5127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5127), + [anon_sym_BSLASHglsuservi] = ACTIONS(5127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5127), + [anon_sym_BSLASHnewacronym] = ACTIONS(5127), + [anon_sym_BSLASHacrshort] = ACTIONS(5127), + [anon_sym_BSLASHAcrshort] = ACTIONS(5127), + [anon_sym_BSLASHACRshort] = ACTIONS(5127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5127), + [anon_sym_BSLASHacrlong] = ACTIONS(5127), + [anon_sym_BSLASHAcrlong] = ACTIONS(5127), + [anon_sym_BSLASHACRlong] = ACTIONS(5127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5127), + [anon_sym_BSLASHacrfull] = ACTIONS(5127), + [anon_sym_BSLASHAcrfull] = ACTIONS(5127), + [anon_sym_BSLASHACRfull] = ACTIONS(5127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5127), + [anon_sym_BSLASHacs] = ACTIONS(5127), + [anon_sym_BSLASHAcs] = ACTIONS(5127), + [anon_sym_BSLASHacsp] = ACTIONS(5127), + [anon_sym_BSLASHAcsp] = ACTIONS(5127), + [anon_sym_BSLASHacl] = ACTIONS(5127), + [anon_sym_BSLASHAcl] = ACTIONS(5127), + [anon_sym_BSLASHaclp] = ACTIONS(5127), + [anon_sym_BSLASHAclp] = ACTIONS(5127), + [anon_sym_BSLASHacf] = ACTIONS(5127), + [anon_sym_BSLASHAcf] = ACTIONS(5127), + [anon_sym_BSLASHacfp] = ACTIONS(5127), + [anon_sym_BSLASHAcfp] = ACTIONS(5127), + [anon_sym_BSLASHac] = ACTIONS(5127), + [anon_sym_BSLASHAc] = ACTIONS(5127), + [anon_sym_BSLASHacp] = ACTIONS(5127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5127), + [anon_sym_BSLASHcolor] = ACTIONS(5127), + [anon_sym_BSLASHcolorbox] = ACTIONS(5127), + [anon_sym_BSLASHtextcolor] = ACTIONS(5127), + [anon_sym_BSLASHpagecolor] = ACTIONS(5127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5127), + [anon_sym_BSLASHtext] = ACTIONS(5127), + [anon_sym_BSLASHintertext] = ACTIONS(5127), + [anon_sym_shortintertext] = ACTIONS(5127), + }, + [966] = { + [sym_command_name] = ACTIONS(5153), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_RPAREN] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_RBRACK] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(5151), + [anon_sym_BSLASHpart] = ACTIONS(5153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddpart] = ACTIONS(5153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5151), + [anon_sym_BSLASHchapter] = ACTIONS(5153), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddchap] = ACTIONS(5153), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsection] = ACTIONS(5153), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddsec] = ACTIONS(5153), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubsection] = ACTIONS(5153), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5153), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHparagraph] = ACTIONS(5153), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5153), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5151), + [anon_sym_BSLASHitem] = ACTIONS(5153), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5151), + [sym_word] = ACTIONS(5153), + [sym_placeholder] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym__] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5153), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5151), + [anon_sym_DOLLAR] = ACTIONS(5153), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), + [anon_sym_BSLASHbegin] = ACTIONS(5153), + [anon_sym_BSLASHusepackage] = ACTIONS(5153), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), + [anon_sym_BSLASHinclude] = ACTIONS(5153), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), + [anon_sym_BSLASHinput] = ACTIONS(5153), + [anon_sym_BSLASHsubfile] = ACTIONS(5153), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5153), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), + [anon_sym_BSLASHincludesvg] = ACTIONS(5153), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), + [anon_sym_BSLASHimport] = ACTIONS(5153), + [anon_sym_BSLASHsubimport] = ACTIONS(5153), + [anon_sym_BSLASHinputfrom] = ACTIONS(5153), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), + [anon_sym_BSLASHincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHcaption] = ACTIONS(5153), + [anon_sym_BSLASHcite] = ACTIONS(5153), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCite] = ACTIONS(5153), + [anon_sym_BSLASHnocite] = ACTIONS(5153), + [anon_sym_BSLASHcitet] = ACTIONS(5153), + [anon_sym_BSLASHcitep] = ACTIONS(5153), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteauthor] = ACTIONS(5153), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitetitle] = ACTIONS(5153), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteyear] = ACTIONS(5153), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitedate] = ACTIONS(5153), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteurl] = ACTIONS(5153), + [anon_sym_BSLASHfullcite] = ACTIONS(5153), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), + [anon_sym_BSLASHcitealt] = ACTIONS(5153), + [anon_sym_BSLASHcitealp] = ACTIONS(5153), + [anon_sym_BSLASHcitetext] = ACTIONS(5153), + [anon_sym_BSLASHparencite] = ACTIONS(5153), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHParencite] = ACTIONS(5153), + [anon_sym_BSLASHfootcite] = ACTIONS(5153), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), + [anon_sym_BSLASHtextcite] = ACTIONS(5153), + [anon_sym_BSLASHTextcite] = ACTIONS(5153), + [anon_sym_BSLASHsmartcite] = ACTIONS(5153), + [anon_sym_BSLASHSmartcite] = ACTIONS(5153), + [anon_sym_BSLASHsupercite] = ACTIONS(5153), + [anon_sym_BSLASHautocite] = ACTIONS(5153), + [anon_sym_BSLASHAutocite] = ACTIONS(5153), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHvolcite] = ACTIONS(5153), + [anon_sym_BSLASHVolcite] = ACTIONS(5153), + [anon_sym_BSLASHpvolcite] = ACTIONS(5153), + [anon_sym_BSLASHPvolcite] = ACTIONS(5153), + [anon_sym_BSLASHfvolcite] = ACTIONS(5153), + [anon_sym_BSLASHftvolcite] = ACTIONS(5153), + [anon_sym_BSLASHsvolcite] = ACTIONS(5153), + [anon_sym_BSLASHSvolcite] = ACTIONS(5153), + [anon_sym_BSLASHtvolcite] = ACTIONS(5153), + [anon_sym_BSLASHTvolcite] = ACTIONS(5153), + [anon_sym_BSLASHavolcite] = ACTIONS(5153), + [anon_sym_BSLASHAvolcite] = ACTIONS(5153), + [anon_sym_BSLASHnotecite] = ACTIONS(5153), + [anon_sym_BSLASHNotecite] = ACTIONS(5153), + [anon_sym_BSLASHpnotecite] = ACTIONS(5153), + [anon_sym_BSLASHPnotecite] = ACTIONS(5153), + [anon_sym_BSLASHfnotecite] = ACTIONS(5153), + [anon_sym_BSLASHlabel] = ACTIONS(5153), + [anon_sym_BSLASHref] = ACTIONS(5153), + [anon_sym_BSLASHeqref] = ACTIONS(5153), + [anon_sym_BSLASHvref] = ACTIONS(5153), + [anon_sym_BSLASHVref] = ACTIONS(5153), + [anon_sym_BSLASHautoref] = ACTIONS(5153), + [anon_sym_BSLASHpageref] = ACTIONS(5153), + [anon_sym_BSLASHcref] = ACTIONS(5153), + [anon_sym_BSLASHCref] = ACTIONS(5153), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnameCref] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHlabelcref] = ACTIONS(5153), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCrefrange] = ACTIONS(5153), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnewlabel] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), + [anon_sym_BSLASHdef] = ACTIONS(5153), + [anon_sym_BSLASHlet] = ACTIONS(5153), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), + [anon_sym_BSLASHgls] = ACTIONS(5153), + [anon_sym_BSLASHGls] = ACTIONS(5153), + [anon_sym_BSLASHGLS] = ACTIONS(5153), + [anon_sym_BSLASHglspl] = ACTIONS(5153), + [anon_sym_BSLASHGlspl] = ACTIONS(5153), + [anon_sym_BSLASHGLSpl] = ACTIONS(5153), + [anon_sym_BSLASHglsdisp] = ACTIONS(5153), + [anon_sym_BSLASHglslink] = ACTIONS(5153), + [anon_sym_BSLASHglstext] = ACTIONS(5153), + [anon_sym_BSLASHGlstext] = ACTIONS(5153), + [anon_sym_BSLASHGLStext] = ACTIONS(5153), + [anon_sym_BSLASHglsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), + [anon_sym_BSLASHglsplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSplural] = ACTIONS(5153), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHglsname] = ACTIONS(5153), + [anon_sym_BSLASHGlsname] = ACTIONS(5153), + [anon_sym_BSLASHGLSname] = ACTIONS(5153), + [anon_sym_BSLASHglssymbol] = ACTIONS(5153), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), + [anon_sym_BSLASHglsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), + [anon_sym_BSLASHglsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), + [anon_sym_BSLASHglsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), + [anon_sym_BSLASHglsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), + [anon_sym_BSLASHglsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), + [anon_sym_BSLASHnewacronym] = ACTIONS(5153), + [anon_sym_BSLASHacrshort] = ACTIONS(5153), + [anon_sym_BSLASHAcrshort] = ACTIONS(5153), + [anon_sym_BSLASHACRshort] = ACTIONS(5153), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), + [anon_sym_BSLASHacrlong] = ACTIONS(5153), + [anon_sym_BSLASHAcrlong] = ACTIONS(5153), + [anon_sym_BSLASHACRlong] = ACTIONS(5153), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), + [anon_sym_BSLASHacrfull] = ACTIONS(5153), + [anon_sym_BSLASHAcrfull] = ACTIONS(5153), + [anon_sym_BSLASHACRfull] = ACTIONS(5153), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), + [anon_sym_BSLASHacs] = ACTIONS(5153), + [anon_sym_BSLASHAcs] = ACTIONS(5153), + [anon_sym_BSLASHacsp] = ACTIONS(5153), + [anon_sym_BSLASHAcsp] = ACTIONS(5153), + [anon_sym_BSLASHacl] = ACTIONS(5153), + [anon_sym_BSLASHAcl] = ACTIONS(5153), + [anon_sym_BSLASHaclp] = ACTIONS(5153), + [anon_sym_BSLASHAclp] = ACTIONS(5153), + [anon_sym_BSLASHacf] = ACTIONS(5153), + [anon_sym_BSLASHAcf] = ACTIONS(5153), + [anon_sym_BSLASHacfp] = ACTIONS(5153), + [anon_sym_BSLASHAcfp] = ACTIONS(5153), + [anon_sym_BSLASHac] = ACTIONS(5153), + [anon_sym_BSLASHAc] = ACTIONS(5153), + [anon_sym_BSLASHacp] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), + [anon_sym_BSLASHcolor] = ACTIONS(5153), + [anon_sym_BSLASHcolorbox] = ACTIONS(5153), + [anon_sym_BSLASHtextcolor] = ACTIONS(5153), + [anon_sym_BSLASHpagecolor] = ACTIONS(5153), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), + [anon_sym_BSLASHtext] = ACTIONS(5153), + [anon_sym_BSLASHintertext] = ACTIONS(5153), + [anon_sym_shortintertext] = ACTIONS(5153), + }, + [967] = { + [sym_command_name] = ACTIONS(4921), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4921), + [anon_sym_LPAREN] = ACTIONS(4919), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_RBRACK] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4919), + [anon_sym_BSLASHpart] = ACTIONS(4921), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddpart] = ACTIONS(4921), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4919), + [anon_sym_BSLASHchapter] = ACTIONS(4921), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddchap] = ACTIONS(4921), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsection] = ACTIONS(4921), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddsec] = ACTIONS(4921), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubsection] = ACTIONS(4921), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4921), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHparagraph] = ACTIONS(4921), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4921), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4919), + [anon_sym_BSLASHitem] = ACTIONS(4921), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4919), + [anon_sym_LBRACE] = ACTIONS(4919), + [sym_word] = ACTIONS(4921), + [sym_placeholder] = ACTIONS(4919), + [anon_sym_PLUS] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4921), + [anon_sym_CARET] = ACTIONS(4921), + [anon_sym__] = ACTIONS(4921), + [anon_sym_LT] = ACTIONS(4921), + [anon_sym_GT] = ACTIONS(4921), + [anon_sym_BANG] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_COLON] = ACTIONS(4921), + [anon_sym_SQUOTE] = ACTIONS(4921), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), + [anon_sym_DOLLAR] = ACTIONS(4921), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4919), + [anon_sym_BSLASHbegin] = ACTIONS(4921), + [anon_sym_BSLASHusepackage] = ACTIONS(4921), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), + [anon_sym_BSLASHinclude] = ACTIONS(4921), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), + [anon_sym_BSLASHinput] = ACTIONS(4921), + [anon_sym_BSLASHsubfile] = ACTIONS(4921), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), + [anon_sym_BSLASHbibliography] = ACTIONS(4921), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), + [anon_sym_BSLASHincludesvg] = ACTIONS(4921), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), + [anon_sym_BSLASHimport] = ACTIONS(4921), + [anon_sym_BSLASHsubimport] = ACTIONS(4921), + [anon_sym_BSLASHinputfrom] = ACTIONS(4921), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), + [anon_sym_BSLASHincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHcaption] = ACTIONS(4921), + [anon_sym_BSLASHcite] = ACTIONS(4921), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCite] = ACTIONS(4921), + [anon_sym_BSLASHnocite] = ACTIONS(4921), + [anon_sym_BSLASHcitet] = ACTIONS(4921), + [anon_sym_BSLASHcitep] = ACTIONS(4921), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteauthor] = ACTIONS(4921), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitetitle] = ACTIONS(4921), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteyear] = ACTIONS(4921), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitedate] = ACTIONS(4921), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteurl] = ACTIONS(4921), + [anon_sym_BSLASHfullcite] = ACTIONS(4921), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), + [anon_sym_BSLASHcitealt] = ACTIONS(4921), + [anon_sym_BSLASHcitealp] = ACTIONS(4921), + [anon_sym_BSLASHcitetext] = ACTIONS(4921), + [anon_sym_BSLASHparencite] = ACTIONS(4921), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHParencite] = ACTIONS(4921), + [anon_sym_BSLASHfootcite] = ACTIONS(4921), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), + [anon_sym_BSLASHtextcite] = ACTIONS(4921), + [anon_sym_BSLASHTextcite] = ACTIONS(4921), + [anon_sym_BSLASHsmartcite] = ACTIONS(4921), + [anon_sym_BSLASHSmartcite] = ACTIONS(4921), + [anon_sym_BSLASHsupercite] = ACTIONS(4921), + [anon_sym_BSLASHautocite] = ACTIONS(4921), + [anon_sym_BSLASHAutocite] = ACTIONS(4921), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHvolcite] = ACTIONS(4921), + [anon_sym_BSLASHVolcite] = ACTIONS(4921), + [anon_sym_BSLASHpvolcite] = ACTIONS(4921), + [anon_sym_BSLASHPvolcite] = ACTIONS(4921), + [anon_sym_BSLASHfvolcite] = ACTIONS(4921), + [anon_sym_BSLASHftvolcite] = ACTIONS(4921), + [anon_sym_BSLASHsvolcite] = ACTIONS(4921), + [anon_sym_BSLASHSvolcite] = ACTIONS(4921), + [anon_sym_BSLASHtvolcite] = ACTIONS(4921), + [anon_sym_BSLASHTvolcite] = ACTIONS(4921), + [anon_sym_BSLASHavolcite] = ACTIONS(4921), + [anon_sym_BSLASHAvolcite] = ACTIONS(4921), + [anon_sym_BSLASHnotecite] = ACTIONS(4921), + [anon_sym_BSLASHNotecite] = ACTIONS(4921), + [anon_sym_BSLASHpnotecite] = ACTIONS(4921), + [anon_sym_BSLASHPnotecite] = ACTIONS(4921), + [anon_sym_BSLASHfnotecite] = ACTIONS(4921), + [anon_sym_BSLASHlabel] = ACTIONS(4921), + [anon_sym_BSLASHref] = ACTIONS(4921), + [anon_sym_BSLASHeqref] = ACTIONS(4921), + [anon_sym_BSLASHvref] = ACTIONS(4921), + [anon_sym_BSLASHVref] = ACTIONS(4921), + [anon_sym_BSLASHautoref] = ACTIONS(4921), + [anon_sym_BSLASHpageref] = ACTIONS(4921), + [anon_sym_BSLASHcref] = ACTIONS(4921), + [anon_sym_BSLASHCref] = ACTIONS(4921), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnameCref] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHlabelcref] = ACTIONS(4921), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCrefrange] = ACTIONS(4921), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnewlabel] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), + [anon_sym_BSLASHdef] = ACTIONS(4921), + [anon_sym_BSLASHlet] = ACTIONS(4921), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), + [anon_sym_BSLASHgls] = ACTIONS(4921), + [anon_sym_BSLASHGls] = ACTIONS(4921), + [anon_sym_BSLASHGLS] = ACTIONS(4921), + [anon_sym_BSLASHglspl] = ACTIONS(4921), + [anon_sym_BSLASHGlspl] = ACTIONS(4921), + [anon_sym_BSLASHGLSpl] = ACTIONS(4921), + [anon_sym_BSLASHglsdisp] = ACTIONS(4921), + [anon_sym_BSLASHglslink] = ACTIONS(4921), + [anon_sym_BSLASHglstext] = ACTIONS(4921), + [anon_sym_BSLASHGlstext] = ACTIONS(4921), + [anon_sym_BSLASHGLStext] = ACTIONS(4921), + [anon_sym_BSLASHglsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), + [anon_sym_BSLASHglsplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSplural] = ACTIONS(4921), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHglsname] = ACTIONS(4921), + [anon_sym_BSLASHGlsname] = ACTIONS(4921), + [anon_sym_BSLASHGLSname] = ACTIONS(4921), + [anon_sym_BSLASHglssymbol] = ACTIONS(4921), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), + [anon_sym_BSLASHglsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), + [anon_sym_BSLASHglsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), + [anon_sym_BSLASHglsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), + [anon_sym_BSLASHglsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), + [anon_sym_BSLASHglsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), + [anon_sym_BSLASHnewacronym] = ACTIONS(4921), + [anon_sym_BSLASHacrshort] = ACTIONS(4921), + [anon_sym_BSLASHAcrshort] = ACTIONS(4921), + [anon_sym_BSLASHACRshort] = ACTIONS(4921), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), + [anon_sym_BSLASHacrlong] = ACTIONS(4921), + [anon_sym_BSLASHAcrlong] = ACTIONS(4921), + [anon_sym_BSLASHACRlong] = ACTIONS(4921), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), + [anon_sym_BSLASHacrfull] = ACTIONS(4921), + [anon_sym_BSLASHAcrfull] = ACTIONS(4921), + [anon_sym_BSLASHACRfull] = ACTIONS(4921), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), + [anon_sym_BSLASHacs] = ACTIONS(4921), + [anon_sym_BSLASHAcs] = ACTIONS(4921), + [anon_sym_BSLASHacsp] = ACTIONS(4921), + [anon_sym_BSLASHAcsp] = ACTIONS(4921), + [anon_sym_BSLASHacl] = ACTIONS(4921), + [anon_sym_BSLASHAcl] = ACTIONS(4921), + [anon_sym_BSLASHaclp] = ACTIONS(4921), + [anon_sym_BSLASHAclp] = ACTIONS(4921), + [anon_sym_BSLASHacf] = ACTIONS(4921), + [anon_sym_BSLASHAcf] = ACTIONS(4921), + [anon_sym_BSLASHacfp] = ACTIONS(4921), + [anon_sym_BSLASHAcfp] = ACTIONS(4921), + [anon_sym_BSLASHac] = ACTIONS(4921), + [anon_sym_BSLASHAc] = ACTIONS(4921), + [anon_sym_BSLASHacp] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), + [anon_sym_BSLASHcolor] = ACTIONS(4921), + [anon_sym_BSLASHcolorbox] = ACTIONS(4921), + [anon_sym_BSLASHtextcolor] = ACTIONS(4921), + [anon_sym_BSLASHpagecolor] = ACTIONS(4921), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), + [anon_sym_BSLASHtext] = ACTIONS(4921), + [anon_sym_BSLASHintertext] = ACTIONS(4921), + [anon_sym_shortintertext] = ACTIONS(4921), + }, + [968] = { + [sym_command_name] = ACTIONS(4925), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_RBRACK] = ACTIONS(4923), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_EQ] = ACTIONS(4923), + [anon_sym_BSLASHpart] = ACTIONS(4925), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddpart] = ACTIONS(4925), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4923), + [anon_sym_BSLASHchapter] = ACTIONS(4925), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddchap] = ACTIONS(4925), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsection] = ACTIONS(4925), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddsec] = ACTIONS(4925), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubsection] = ACTIONS(4925), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4925), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHparagraph] = ACTIONS(4925), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4925), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4923), + [anon_sym_BSLASHitem] = ACTIONS(4925), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4923), + [sym_word] = ACTIONS(4925), + [sym_placeholder] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym__] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_BANG] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_SQUOTE] = ACTIONS(4925), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), + [anon_sym_DOLLAR] = ACTIONS(4925), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4923), + [anon_sym_BSLASHbegin] = ACTIONS(4925), + [anon_sym_BSLASHusepackage] = ACTIONS(4925), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), + [anon_sym_BSLASHinclude] = ACTIONS(4925), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), + [anon_sym_BSLASHinput] = ACTIONS(4925), + [anon_sym_BSLASHsubfile] = ACTIONS(4925), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), + [anon_sym_BSLASHbibliography] = ACTIONS(4925), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), + [anon_sym_BSLASHincludesvg] = ACTIONS(4925), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), + [anon_sym_BSLASHimport] = ACTIONS(4925), + [anon_sym_BSLASHsubimport] = ACTIONS(4925), + [anon_sym_BSLASHinputfrom] = ACTIONS(4925), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), + [anon_sym_BSLASHincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHcaption] = ACTIONS(4925), + [anon_sym_BSLASHcite] = ACTIONS(4925), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCite] = ACTIONS(4925), + [anon_sym_BSLASHnocite] = ACTIONS(4925), + [anon_sym_BSLASHcitet] = ACTIONS(4925), + [anon_sym_BSLASHcitep] = ACTIONS(4925), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteauthor] = ACTIONS(4925), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitetitle] = ACTIONS(4925), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteyear] = ACTIONS(4925), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitedate] = ACTIONS(4925), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteurl] = ACTIONS(4925), + [anon_sym_BSLASHfullcite] = ACTIONS(4925), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4925), + [anon_sym_BSLASHcitealt] = ACTIONS(4925), + [anon_sym_BSLASHcitealp] = ACTIONS(4925), + [anon_sym_BSLASHcitetext] = ACTIONS(4925), + [anon_sym_BSLASHparencite] = ACTIONS(4925), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHParencite] = ACTIONS(4925), + [anon_sym_BSLASHfootcite] = ACTIONS(4925), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4925), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4925), + [anon_sym_BSLASHtextcite] = ACTIONS(4925), + [anon_sym_BSLASHTextcite] = ACTIONS(4925), + [anon_sym_BSLASHsmartcite] = ACTIONS(4925), + [anon_sym_BSLASHSmartcite] = ACTIONS(4925), + [anon_sym_BSLASHsupercite] = ACTIONS(4925), + [anon_sym_BSLASHautocite] = ACTIONS(4925), + [anon_sym_BSLASHAutocite] = ACTIONS(4925), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHvolcite] = ACTIONS(4925), + [anon_sym_BSLASHVolcite] = ACTIONS(4925), + [anon_sym_BSLASHpvolcite] = ACTIONS(4925), + [anon_sym_BSLASHPvolcite] = ACTIONS(4925), + [anon_sym_BSLASHfvolcite] = ACTIONS(4925), + [anon_sym_BSLASHftvolcite] = ACTIONS(4925), + [anon_sym_BSLASHsvolcite] = ACTIONS(4925), + [anon_sym_BSLASHSvolcite] = ACTIONS(4925), + [anon_sym_BSLASHtvolcite] = ACTIONS(4925), + [anon_sym_BSLASHTvolcite] = ACTIONS(4925), + [anon_sym_BSLASHavolcite] = ACTIONS(4925), + [anon_sym_BSLASHAvolcite] = ACTIONS(4925), + [anon_sym_BSLASHnotecite] = ACTIONS(4925), + [anon_sym_BSLASHNotecite] = ACTIONS(4925), + [anon_sym_BSLASHpnotecite] = ACTIONS(4925), + [anon_sym_BSLASHPnotecite] = ACTIONS(4925), + [anon_sym_BSLASHfnotecite] = ACTIONS(4925), + [anon_sym_BSLASHlabel] = ACTIONS(4925), + [anon_sym_BSLASHref] = ACTIONS(4925), + [anon_sym_BSLASHeqref] = ACTIONS(4925), + [anon_sym_BSLASHvref] = ACTIONS(4925), + [anon_sym_BSLASHVref] = ACTIONS(4925), + [anon_sym_BSLASHautoref] = ACTIONS(4925), + [anon_sym_BSLASHpageref] = ACTIONS(4925), + [anon_sym_BSLASHcref] = ACTIONS(4925), + [anon_sym_BSLASHCref] = ACTIONS(4925), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnameCref] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHlabelcref] = ACTIONS(4925), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCrefrange] = ACTIONS(4925), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnewlabel] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), + [anon_sym_BSLASHdef] = ACTIONS(4925), + [anon_sym_BSLASHlet] = ACTIONS(4925), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), + [anon_sym_BSLASHgls] = ACTIONS(4925), + [anon_sym_BSLASHGls] = ACTIONS(4925), + [anon_sym_BSLASHGLS] = ACTIONS(4925), + [anon_sym_BSLASHglspl] = ACTIONS(4925), + [anon_sym_BSLASHGlspl] = ACTIONS(4925), + [anon_sym_BSLASHGLSpl] = ACTIONS(4925), + [anon_sym_BSLASHglsdisp] = ACTIONS(4925), + [anon_sym_BSLASHglslink] = ACTIONS(4925), + [anon_sym_BSLASHglstext] = ACTIONS(4925), + [anon_sym_BSLASHGlstext] = ACTIONS(4925), + [anon_sym_BSLASHGLStext] = ACTIONS(4925), + [anon_sym_BSLASHglsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), + [anon_sym_BSLASHglsplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSplural] = ACTIONS(4925), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHglsname] = ACTIONS(4925), + [anon_sym_BSLASHGlsname] = ACTIONS(4925), + [anon_sym_BSLASHGLSname] = ACTIONS(4925), + [anon_sym_BSLASHglssymbol] = ACTIONS(4925), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), + [anon_sym_BSLASHglsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), + [anon_sym_BSLASHglsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), + [anon_sym_BSLASHglsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), + [anon_sym_BSLASHglsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), + [anon_sym_BSLASHglsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), + [anon_sym_BSLASHnewacronym] = ACTIONS(4925), + [anon_sym_BSLASHacrshort] = ACTIONS(4925), + [anon_sym_BSLASHAcrshort] = ACTIONS(4925), + [anon_sym_BSLASHACRshort] = ACTIONS(4925), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), + [anon_sym_BSLASHacrlong] = ACTIONS(4925), + [anon_sym_BSLASHAcrlong] = ACTIONS(4925), + [anon_sym_BSLASHACRlong] = ACTIONS(4925), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), + [anon_sym_BSLASHacrfull] = ACTIONS(4925), + [anon_sym_BSLASHAcrfull] = ACTIONS(4925), + [anon_sym_BSLASHACRfull] = ACTIONS(4925), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), + [anon_sym_BSLASHacs] = ACTIONS(4925), + [anon_sym_BSLASHAcs] = ACTIONS(4925), + [anon_sym_BSLASHacsp] = ACTIONS(4925), + [anon_sym_BSLASHAcsp] = ACTIONS(4925), + [anon_sym_BSLASHacl] = ACTIONS(4925), + [anon_sym_BSLASHAcl] = ACTIONS(4925), + [anon_sym_BSLASHaclp] = ACTIONS(4925), + [anon_sym_BSLASHAclp] = ACTIONS(4925), + [anon_sym_BSLASHacf] = ACTIONS(4925), + [anon_sym_BSLASHAcf] = ACTIONS(4925), + [anon_sym_BSLASHacfp] = ACTIONS(4925), + [anon_sym_BSLASHAcfp] = ACTIONS(4925), + [anon_sym_BSLASHac] = ACTIONS(4925), + [anon_sym_BSLASHAc] = ACTIONS(4925), + [anon_sym_BSLASHacp] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), + [anon_sym_BSLASHcolor] = ACTIONS(4925), + [anon_sym_BSLASHcolorbox] = ACTIONS(4925), + [anon_sym_BSLASHtextcolor] = ACTIONS(4925), + [anon_sym_BSLASHpagecolor] = ACTIONS(4925), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), + [anon_sym_BSLASHtext] = ACTIONS(4925), + [anon_sym_BSLASHintertext] = ACTIONS(4925), + [anon_sym_shortintertext] = ACTIONS(4925), + }, + [969] = { + [sym_command_name] = ACTIONS(5145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_RPAREN] = ACTIONS(5143), + [anon_sym_LBRACK] = ACTIONS(5143), + [anon_sym_RBRACK] = ACTIONS(5143), + [anon_sym_COMMA] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_BSLASHpart] = ACTIONS(5145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddpart] = ACTIONS(5145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5143), + [anon_sym_BSLASHchapter] = ACTIONS(5145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddchap] = ACTIONS(5145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsection] = ACTIONS(5145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddsec] = ACTIONS(5145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubsection] = ACTIONS(5145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHparagraph] = ACTIONS(5145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5143), + [anon_sym_BSLASHitem] = ACTIONS(5145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5143), + [sym_word] = ACTIONS(5145), + [sym_placeholder] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym__] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5145), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), + [anon_sym_DOLLAR] = ACTIONS(5145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), + [anon_sym_BSLASHbegin] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5145), + [anon_sym_BSLASHinclude] = ACTIONS(5145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5145), + [anon_sym_BSLASHinput] = ACTIONS(5145), + [anon_sym_BSLASHsubfile] = ACTIONS(5145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5145), + [anon_sym_BSLASHbibliography] = ACTIONS(5145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5145), + [anon_sym_BSLASHincludesvg] = ACTIONS(5145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5145), + [anon_sym_BSLASHimport] = ACTIONS(5145), + [anon_sym_BSLASHsubimport] = ACTIONS(5145), + [anon_sym_BSLASHinputfrom] = ACTIONS(5145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5145), + [anon_sym_BSLASHincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHcaption] = ACTIONS(5145), + [anon_sym_BSLASHcite] = ACTIONS(5145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCite] = ACTIONS(5145), + [anon_sym_BSLASHnocite] = ACTIONS(5145), + [anon_sym_BSLASHcitet] = ACTIONS(5145), + [anon_sym_BSLASHcitep] = ACTIONS(5145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteauthor] = ACTIONS(5145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitetitle] = ACTIONS(5145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteyear] = ACTIONS(5145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitedate] = ACTIONS(5145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteurl] = ACTIONS(5145), + [anon_sym_BSLASHfullcite] = ACTIONS(5145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5145), + [anon_sym_BSLASHcitealt] = ACTIONS(5145), + [anon_sym_BSLASHcitealp] = ACTIONS(5145), + [anon_sym_BSLASHcitetext] = ACTIONS(5145), + [anon_sym_BSLASHparencite] = ACTIONS(5145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHParencite] = ACTIONS(5145), + [anon_sym_BSLASHfootcite] = ACTIONS(5145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5145), + [anon_sym_BSLASHtextcite] = ACTIONS(5145), + [anon_sym_BSLASHTextcite] = ACTIONS(5145), + [anon_sym_BSLASHsmartcite] = ACTIONS(5145), + [anon_sym_BSLASHSmartcite] = ACTIONS(5145), + [anon_sym_BSLASHsupercite] = ACTIONS(5145), + [anon_sym_BSLASHautocite] = ACTIONS(5145), + [anon_sym_BSLASHAutocite] = ACTIONS(5145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHvolcite] = ACTIONS(5145), + [anon_sym_BSLASHVolcite] = ACTIONS(5145), + [anon_sym_BSLASHpvolcite] = ACTIONS(5145), + [anon_sym_BSLASHPvolcite] = ACTIONS(5145), + [anon_sym_BSLASHfvolcite] = ACTIONS(5145), + [anon_sym_BSLASHftvolcite] = ACTIONS(5145), + [anon_sym_BSLASHsvolcite] = ACTIONS(5145), + [anon_sym_BSLASHSvolcite] = ACTIONS(5145), + [anon_sym_BSLASHtvolcite] = ACTIONS(5145), + [anon_sym_BSLASHTvolcite] = ACTIONS(5145), + [anon_sym_BSLASHavolcite] = ACTIONS(5145), + [anon_sym_BSLASHAvolcite] = ACTIONS(5145), + [anon_sym_BSLASHnotecite] = ACTIONS(5145), + [anon_sym_BSLASHNotecite] = ACTIONS(5145), + [anon_sym_BSLASHpnotecite] = ACTIONS(5145), + [anon_sym_BSLASHPnotecite] = ACTIONS(5145), + [anon_sym_BSLASHfnotecite] = ACTIONS(5145), + [anon_sym_BSLASHlabel] = ACTIONS(5145), + [anon_sym_BSLASHref] = ACTIONS(5145), + [anon_sym_BSLASHeqref] = ACTIONS(5145), + [anon_sym_BSLASHvref] = ACTIONS(5145), + [anon_sym_BSLASHVref] = ACTIONS(5145), + [anon_sym_BSLASHautoref] = ACTIONS(5145), + [anon_sym_BSLASHpageref] = ACTIONS(5145), + [anon_sym_BSLASHcref] = ACTIONS(5145), + [anon_sym_BSLASHCref] = ACTIONS(5145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnameCref] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHlabelcref] = ACTIONS(5145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCrefrange] = ACTIONS(5145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnewlabel] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), + [anon_sym_BSLASHdef] = ACTIONS(5145), + [anon_sym_BSLASHlet] = ACTIONS(5145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5145), + [anon_sym_BSLASHgls] = ACTIONS(5145), + [anon_sym_BSLASHGls] = ACTIONS(5145), + [anon_sym_BSLASHGLS] = ACTIONS(5145), + [anon_sym_BSLASHglspl] = ACTIONS(5145), + [anon_sym_BSLASHGlspl] = ACTIONS(5145), + [anon_sym_BSLASHGLSpl] = ACTIONS(5145), + [anon_sym_BSLASHglsdisp] = ACTIONS(5145), + [anon_sym_BSLASHglslink] = ACTIONS(5145), + [anon_sym_BSLASHglstext] = ACTIONS(5145), + [anon_sym_BSLASHGlstext] = ACTIONS(5145), + [anon_sym_BSLASHGLStext] = ACTIONS(5145), + [anon_sym_BSLASHglsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5145), + [anon_sym_BSLASHglsplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSplural] = ACTIONS(5145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHglsname] = ACTIONS(5145), + [anon_sym_BSLASHGlsname] = ACTIONS(5145), + [anon_sym_BSLASHGLSname] = ACTIONS(5145), + [anon_sym_BSLASHglssymbol] = ACTIONS(5145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5145), + [anon_sym_BSLASHglsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5145), + [anon_sym_BSLASHglsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5145), + [anon_sym_BSLASHglsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5145), + [anon_sym_BSLASHglsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5145), + [anon_sym_BSLASHglsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5145), + [anon_sym_BSLASHnewacronym] = ACTIONS(5145), + [anon_sym_BSLASHacrshort] = ACTIONS(5145), + [anon_sym_BSLASHAcrshort] = ACTIONS(5145), + [anon_sym_BSLASHACRshort] = ACTIONS(5145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5145), + [anon_sym_BSLASHacrlong] = ACTIONS(5145), + [anon_sym_BSLASHAcrlong] = ACTIONS(5145), + [anon_sym_BSLASHACRlong] = ACTIONS(5145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5145), + [anon_sym_BSLASHacrfull] = ACTIONS(5145), + [anon_sym_BSLASHAcrfull] = ACTIONS(5145), + [anon_sym_BSLASHACRfull] = ACTIONS(5145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5145), + [anon_sym_BSLASHacs] = ACTIONS(5145), + [anon_sym_BSLASHAcs] = ACTIONS(5145), + [anon_sym_BSLASHacsp] = ACTIONS(5145), + [anon_sym_BSLASHAcsp] = ACTIONS(5145), + [anon_sym_BSLASHacl] = ACTIONS(5145), + [anon_sym_BSLASHAcl] = ACTIONS(5145), + [anon_sym_BSLASHaclp] = ACTIONS(5145), + [anon_sym_BSLASHAclp] = ACTIONS(5145), + [anon_sym_BSLASHacf] = ACTIONS(5145), + [anon_sym_BSLASHAcf] = ACTIONS(5145), + [anon_sym_BSLASHacfp] = ACTIONS(5145), + [anon_sym_BSLASHAcfp] = ACTIONS(5145), + [anon_sym_BSLASHac] = ACTIONS(5145), + [anon_sym_BSLASHAc] = ACTIONS(5145), + [anon_sym_BSLASHacp] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5145), + [anon_sym_BSLASHcolor] = ACTIONS(5145), + [anon_sym_BSLASHcolorbox] = ACTIONS(5145), + [anon_sym_BSLASHtextcolor] = ACTIONS(5145), + [anon_sym_BSLASHpagecolor] = ACTIONS(5145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5145), + [anon_sym_BSLASHtext] = ACTIONS(5145), + [anon_sym_BSLASHintertext] = ACTIONS(5145), + [anon_sym_shortintertext] = ACTIONS(5145), + }, + [970] = { + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_BSLASHpart] = ACTIONS(133), + [anon_sym_BSLASHpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddpart] = ACTIONS(133), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHchapter] = ACTIONS(133), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddchap] = ACTIONS(133), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), + [anon_sym_BSLASHsection] = ACTIONS(133), + [anon_sym_BSLASHsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddsec] = ACTIONS(133), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHparagraph] = ACTIONS(133), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubparagraph] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHitem] = ACTIONS(133), + [anon_sym_BSLASHitem_STAR] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASH_RBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), + }, + [971] = { + [sym_command_name] = ACTIONS(5205), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_BSLASHpart] = ACTIONS(5089), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddpart] = ACTIONS(5089), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHchapter] = ACTIONS(5089), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddchap] = ACTIONS(5089), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsection] = ACTIONS(5089), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddsec] = ACTIONS(5089), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHparagraph] = ACTIONS(5089), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHitem] = ACTIONS(5089), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASHbegin] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHiffalse] = ACTIONS(5205), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_RPAREN] = ACTIONS(5203), + [anon_sym_LBRACK] = ACTIONS(5203), + [anon_sym_RBRACK] = ACTIONS(5203), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_EQ] = ACTIONS(5203), + [anon_sym_BSLASHpart] = ACTIONS(5205), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddpart] = ACTIONS(5205), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), + [anon_sym_BSLASHchapter] = ACTIONS(5205), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddchap] = ACTIONS(5205), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsection] = ACTIONS(5205), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddsec] = ACTIONS(5205), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubsection] = ACTIONS(5205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHparagraph] = ACTIONS(5205), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), + [anon_sym_BSLASHitem] = ACTIONS(5205), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), + [anon_sym_LBRACE] = ACTIONS(5203), + [sym_word] = ACTIONS(5205), + [sym_placeholder] = ACTIONS(5203), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_CARET] = ACTIONS(5205), + [anon_sym__] = ACTIONS(5205), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_PIPE] = ACTIONS(5205), + [anon_sym_COLON] = ACTIONS(5205), + [anon_sym_SQUOTE] = ACTIONS(5205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), + [anon_sym_BSLASH_RPAREN] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), + [anon_sym_BSLASHbegin] = ACTIONS(5205), + [anon_sym_BSLASHusepackage] = ACTIONS(5205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), + [anon_sym_BSLASHinclude] = ACTIONS(5205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), + [anon_sym_BSLASHinput] = ACTIONS(5205), + [anon_sym_BSLASHsubfile] = ACTIONS(5205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), + [anon_sym_BSLASHbibliography] = ACTIONS(5205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), + [anon_sym_BSLASHincludesvg] = ACTIONS(5205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), + [anon_sym_BSLASHimport] = ACTIONS(5205), + [anon_sym_BSLASHsubimport] = ACTIONS(5205), + [anon_sym_BSLASHinputfrom] = ACTIONS(5205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), + [anon_sym_BSLASHincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHcaption] = ACTIONS(5205), + [anon_sym_BSLASHcite] = ACTIONS(5205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCite] = ACTIONS(5205), + [anon_sym_BSLASHnocite] = ACTIONS(5205), + [anon_sym_BSLASHcitet] = ACTIONS(5205), + [anon_sym_BSLASHcitep] = ACTIONS(5205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteauthor] = ACTIONS(5205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitetitle] = ACTIONS(5205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteyear] = ACTIONS(5205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitedate] = ACTIONS(5205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteurl] = ACTIONS(5205), + [anon_sym_BSLASHfullcite] = ACTIONS(5205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), + [anon_sym_BSLASHcitealt] = ACTIONS(5205), + [anon_sym_BSLASHcitealp] = ACTIONS(5205), + [anon_sym_BSLASHcitetext] = ACTIONS(5205), + [anon_sym_BSLASHparencite] = ACTIONS(5205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHParencite] = ACTIONS(5205), + [anon_sym_BSLASHfootcite] = ACTIONS(5205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), + [anon_sym_BSLASHtextcite] = ACTIONS(5205), + [anon_sym_BSLASHTextcite] = ACTIONS(5205), + [anon_sym_BSLASHsmartcite] = ACTIONS(5205), + [anon_sym_BSLASHSmartcite] = ACTIONS(5205), + [anon_sym_BSLASHsupercite] = ACTIONS(5205), + [anon_sym_BSLASHautocite] = ACTIONS(5205), + [anon_sym_BSLASHAutocite] = ACTIONS(5205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHvolcite] = ACTIONS(5205), + [anon_sym_BSLASHVolcite] = ACTIONS(5205), + [anon_sym_BSLASHpvolcite] = ACTIONS(5205), + [anon_sym_BSLASHPvolcite] = ACTIONS(5205), + [anon_sym_BSLASHfvolcite] = ACTIONS(5205), + [anon_sym_BSLASHftvolcite] = ACTIONS(5205), + [anon_sym_BSLASHsvolcite] = ACTIONS(5205), + [anon_sym_BSLASHSvolcite] = ACTIONS(5205), + [anon_sym_BSLASHtvolcite] = ACTIONS(5205), + [anon_sym_BSLASHTvolcite] = ACTIONS(5205), + [anon_sym_BSLASHavolcite] = ACTIONS(5205), + [anon_sym_BSLASHAvolcite] = ACTIONS(5205), + [anon_sym_BSLASHnotecite] = ACTIONS(5205), + [anon_sym_BSLASHNotecite] = ACTIONS(5205), + [anon_sym_BSLASHpnotecite] = ACTIONS(5205), + [anon_sym_BSLASHPnotecite] = ACTIONS(5205), + [anon_sym_BSLASHfnotecite] = ACTIONS(5205), + [anon_sym_BSLASHlabel] = ACTIONS(5205), + [anon_sym_BSLASHref] = ACTIONS(5205), + [anon_sym_BSLASHeqref] = ACTIONS(5205), + [anon_sym_BSLASHvref] = ACTIONS(5205), + [anon_sym_BSLASHVref] = ACTIONS(5205), + [anon_sym_BSLASHautoref] = ACTIONS(5205), + [anon_sym_BSLASHpageref] = ACTIONS(5205), + [anon_sym_BSLASHcref] = ACTIONS(5205), + [anon_sym_BSLASHCref] = ACTIONS(5205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnameCref] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHlabelcref] = ACTIONS(5205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCrefrange] = ACTIONS(5205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnewlabel] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), + [anon_sym_BSLASHdef] = ACTIONS(5205), + [anon_sym_BSLASHlet] = ACTIONS(5205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), + [anon_sym_BSLASHgls] = ACTIONS(5205), + [anon_sym_BSLASHGls] = ACTIONS(5205), + [anon_sym_BSLASHGLS] = ACTIONS(5205), + [anon_sym_BSLASHglspl] = ACTIONS(5205), + [anon_sym_BSLASHGlspl] = ACTIONS(5205), + [anon_sym_BSLASHGLSpl] = ACTIONS(5205), + [anon_sym_BSLASHglsdisp] = ACTIONS(5205), + [anon_sym_BSLASHglslink] = ACTIONS(5205), + [anon_sym_BSLASHglstext] = ACTIONS(5205), + [anon_sym_BSLASHGlstext] = ACTIONS(5205), + [anon_sym_BSLASHGLStext] = ACTIONS(5205), + [anon_sym_BSLASHglsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), + [anon_sym_BSLASHglsplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSplural] = ACTIONS(5205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHglsname] = ACTIONS(5205), + [anon_sym_BSLASHGlsname] = ACTIONS(5205), + [anon_sym_BSLASHGLSname] = ACTIONS(5205), + [anon_sym_BSLASHglssymbol] = ACTIONS(5205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), + [anon_sym_BSLASHglsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), + [anon_sym_BSLASHglsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), + [anon_sym_BSLASHglsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), + [anon_sym_BSLASHglsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), + [anon_sym_BSLASHglsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), + [anon_sym_BSLASHnewacronym] = ACTIONS(5205), + [anon_sym_BSLASHacrshort] = ACTIONS(5205), + [anon_sym_BSLASHAcrshort] = ACTIONS(5205), + [anon_sym_BSLASHACRshort] = ACTIONS(5205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), + [anon_sym_BSLASHacrlong] = ACTIONS(5205), + [anon_sym_BSLASHAcrlong] = ACTIONS(5205), + [anon_sym_BSLASHACRlong] = ACTIONS(5205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), + [anon_sym_BSLASHacrfull] = ACTIONS(5205), + [anon_sym_BSLASHAcrfull] = ACTIONS(5205), + [anon_sym_BSLASHACRfull] = ACTIONS(5205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), + [anon_sym_BSLASHacs] = ACTIONS(5205), + [anon_sym_BSLASHAcs] = ACTIONS(5205), + [anon_sym_BSLASHacsp] = ACTIONS(5205), + [anon_sym_BSLASHAcsp] = ACTIONS(5205), + [anon_sym_BSLASHacl] = ACTIONS(5205), + [anon_sym_BSLASHAcl] = ACTIONS(5205), + [anon_sym_BSLASHaclp] = ACTIONS(5205), + [anon_sym_BSLASHAclp] = ACTIONS(5205), + [anon_sym_BSLASHacf] = ACTIONS(5205), + [anon_sym_BSLASHAcf] = ACTIONS(5205), + [anon_sym_BSLASHacfp] = ACTIONS(5205), + [anon_sym_BSLASHAcfp] = ACTIONS(5205), + [anon_sym_BSLASHac] = ACTIONS(5205), + [anon_sym_BSLASHAc] = ACTIONS(5205), + [anon_sym_BSLASHacp] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), + [anon_sym_BSLASHcolor] = ACTIONS(5205), + [anon_sym_BSLASHcolorbox] = ACTIONS(5205), + [anon_sym_BSLASHtextcolor] = ACTIONS(5205), + [anon_sym_BSLASHpagecolor] = ACTIONS(5205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), + [anon_sym_BSLASHtext] = ACTIONS(5205), + [anon_sym_BSLASHintertext] = ACTIONS(5205), + [anon_sym_shortintertext] = ACTIONS(5205), }, - [1115] = { - [sym_command_name] = ACTIONS(4975), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_RPAREN] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_RBRACK] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4973), - [anon_sym_BSLASHpart] = ACTIONS(4975), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddpart] = ACTIONS(4975), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4973), - [anon_sym_BSLASHchapter] = ACTIONS(4975), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddchap] = ACTIONS(4975), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsection] = ACTIONS(4975), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddsec] = ACTIONS(4975), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubsection] = ACTIONS(4975), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4975), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHparagraph] = ACTIONS(4975), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4975), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4973), - [anon_sym_BSLASHitem] = ACTIONS(4975), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4973), - [anon_sym_LBRACE] = ACTIONS(4973), - [sym_word] = ACTIONS(4975), - [sym_placeholder] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym__] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4973), - [anon_sym_BSLASHbegin] = ACTIONS(4975), - [anon_sym_BSLASHend] = ACTIONS(4975), - [anon_sym_BSLASHusepackage] = ACTIONS(4975), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4975), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4975), - [anon_sym_BSLASHinclude] = ACTIONS(4975), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4975), - [anon_sym_BSLASHinput] = ACTIONS(4975), - [anon_sym_BSLASHsubfile] = ACTIONS(4975), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4975), - [anon_sym_BSLASHbibliography] = ACTIONS(4975), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4975), - [anon_sym_BSLASHincludesvg] = ACTIONS(4975), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4975), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4975), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4975), - [anon_sym_BSLASHimport] = ACTIONS(4975), - [anon_sym_BSLASHsubimport] = ACTIONS(4975), - [anon_sym_BSLASHinputfrom] = ACTIONS(4975), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4975), - [anon_sym_BSLASHincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHcaption] = ACTIONS(4975), - [anon_sym_BSLASHcite] = ACTIONS(4975), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCite] = ACTIONS(4975), - [anon_sym_BSLASHnocite] = ACTIONS(4975), - [anon_sym_BSLASHcitet] = ACTIONS(4975), - [anon_sym_BSLASHcitep] = ACTIONS(4975), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor] = ACTIONS(4975), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4975), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle] = ACTIONS(4975), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteyear] = ACTIONS(4975), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitedate] = ACTIONS(4975), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteurl] = ACTIONS(4975), - [anon_sym_BSLASHfullcite] = ACTIONS(4975), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4975), - [anon_sym_BSLASHcitealt] = ACTIONS(4975), - [anon_sym_BSLASHcitealp] = ACTIONS(4975), - [anon_sym_BSLASHcitetext] = ACTIONS(4975), - [anon_sym_BSLASHparencite] = ACTIONS(4975), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHParencite] = ACTIONS(4975), - [anon_sym_BSLASHfootcite] = ACTIONS(4975), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4975), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4975), - [anon_sym_BSLASHtextcite] = ACTIONS(4975), - [anon_sym_BSLASHTextcite] = ACTIONS(4975), - [anon_sym_BSLASHsmartcite] = ACTIONS(4975), - [anon_sym_BSLASHSmartcite] = ACTIONS(4975), - [anon_sym_BSLASHsupercite] = ACTIONS(4975), - [anon_sym_BSLASHautocite] = ACTIONS(4975), - [anon_sym_BSLASHAutocite] = ACTIONS(4975), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHvolcite] = ACTIONS(4975), - [anon_sym_BSLASHVolcite] = ACTIONS(4975), - [anon_sym_BSLASHpvolcite] = ACTIONS(4975), - [anon_sym_BSLASHPvolcite] = ACTIONS(4975), - [anon_sym_BSLASHfvolcite] = ACTIONS(4975), - [anon_sym_BSLASHftvolcite] = ACTIONS(4975), - [anon_sym_BSLASHsvolcite] = ACTIONS(4975), - [anon_sym_BSLASHSvolcite] = ACTIONS(4975), - [anon_sym_BSLASHtvolcite] = ACTIONS(4975), - [anon_sym_BSLASHTvolcite] = ACTIONS(4975), - [anon_sym_BSLASHavolcite] = ACTIONS(4975), - [anon_sym_BSLASHAvolcite] = ACTIONS(4975), - [anon_sym_BSLASHnotecite] = ACTIONS(4975), - [anon_sym_BSLASHNotecite] = ACTIONS(4975), - [anon_sym_BSLASHpnotecite] = ACTIONS(4975), - [anon_sym_BSLASHPnotecite] = ACTIONS(4975), - [anon_sym_BSLASHfnotecite] = ACTIONS(4975), - [anon_sym_BSLASHlabel] = ACTIONS(4975), - [anon_sym_BSLASHref] = ACTIONS(4975), - [anon_sym_BSLASHeqref] = ACTIONS(4975), - [anon_sym_BSLASHvref] = ACTIONS(4975), - [anon_sym_BSLASHVref] = ACTIONS(4975), - [anon_sym_BSLASHautoref] = ACTIONS(4975), - [anon_sym_BSLASHpageref] = ACTIONS(4975), - [anon_sym_BSLASHcref] = ACTIONS(4975), - [anon_sym_BSLASHCref] = ACTIONS(4975), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnameCref] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHlabelcref] = ACTIONS(4975), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange] = ACTIONS(4975), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnewlabel] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4975), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4975), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4975), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4973), - [anon_sym_BSLASHdef] = ACTIONS(4975), - [anon_sym_BSLASHlet] = ACTIONS(4975), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4975), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4975), - [anon_sym_BSLASHgls] = ACTIONS(4975), - [anon_sym_BSLASHGls] = ACTIONS(4975), - [anon_sym_BSLASHGLS] = ACTIONS(4975), - [anon_sym_BSLASHglspl] = ACTIONS(4975), - [anon_sym_BSLASHGlspl] = ACTIONS(4975), - [anon_sym_BSLASHGLSpl] = ACTIONS(4975), - [anon_sym_BSLASHglsdisp] = ACTIONS(4975), - [anon_sym_BSLASHglslink] = ACTIONS(4975), - [anon_sym_BSLASHglstext] = ACTIONS(4975), - [anon_sym_BSLASHGlstext] = ACTIONS(4975), - [anon_sym_BSLASHGLStext] = ACTIONS(4975), - [anon_sym_BSLASHglsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4975), - [anon_sym_BSLASHglsplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSplural] = ACTIONS(4975), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHglsname] = ACTIONS(4975), - [anon_sym_BSLASHGlsname] = ACTIONS(4975), - [anon_sym_BSLASHGLSname] = ACTIONS(4975), - [anon_sym_BSLASHglssymbol] = ACTIONS(4975), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4975), - [anon_sym_BSLASHglsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4975), - [anon_sym_BSLASHglsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4975), - [anon_sym_BSLASHglsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4975), - [anon_sym_BSLASHglsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4975), - [anon_sym_BSLASHglsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4975), - [anon_sym_BSLASHnewacronym] = ACTIONS(4975), - [anon_sym_BSLASHacrshort] = ACTIONS(4975), - [anon_sym_BSLASHAcrshort] = ACTIONS(4975), - [anon_sym_BSLASHACRshort] = ACTIONS(4975), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4975), - [anon_sym_BSLASHacrlong] = ACTIONS(4975), - [anon_sym_BSLASHAcrlong] = ACTIONS(4975), - [anon_sym_BSLASHACRlong] = ACTIONS(4975), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4975), - [anon_sym_BSLASHacrfull] = ACTIONS(4975), - [anon_sym_BSLASHAcrfull] = ACTIONS(4975), - [anon_sym_BSLASHACRfull] = ACTIONS(4975), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4975), - [anon_sym_BSLASHacs] = ACTIONS(4975), - [anon_sym_BSLASHAcs] = ACTIONS(4975), - [anon_sym_BSLASHacsp] = ACTIONS(4975), - [anon_sym_BSLASHAcsp] = ACTIONS(4975), - [anon_sym_BSLASHacl] = ACTIONS(4975), - [anon_sym_BSLASHAcl] = ACTIONS(4975), - [anon_sym_BSLASHaclp] = ACTIONS(4975), - [anon_sym_BSLASHAclp] = ACTIONS(4975), - [anon_sym_BSLASHacf] = ACTIONS(4975), - [anon_sym_BSLASHAcf] = ACTIONS(4975), - [anon_sym_BSLASHacfp] = ACTIONS(4975), - [anon_sym_BSLASHAcfp] = ACTIONS(4975), - [anon_sym_BSLASHac] = ACTIONS(4975), - [anon_sym_BSLASHAc] = ACTIONS(4975), - [anon_sym_BSLASHacp] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4975), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4975), - [anon_sym_BSLASHcolor] = ACTIONS(4975), - [anon_sym_BSLASHcolorbox] = ACTIONS(4975), - [anon_sym_BSLASHtextcolor] = ACTIONS(4975), - [anon_sym_BSLASHpagecolor] = ACTIONS(4975), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4975), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4975), + [972] = { + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_BSLASHpart] = ACTIONS(149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddpart] = ACTIONS(149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHchapter] = ACTIONS(149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddchap] = ACTIONS(149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), + [anon_sym_BSLASHsection] = ACTIONS(149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddsec] = ACTIONS(149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHparagraph] = ACTIONS(149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHitem] = ACTIONS(149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASH_RBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), }, - [1116] = { - [sym_command_name] = ACTIONS(4971), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_RBRACK] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_BSLASHpart] = ACTIONS(4971), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddpart] = ACTIONS(4971), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4969), - [anon_sym_BSLASHchapter] = ACTIONS(4971), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddchap] = ACTIONS(4971), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsection] = ACTIONS(4971), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddsec] = ACTIONS(4971), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubsection] = ACTIONS(4971), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4971), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHparagraph] = ACTIONS(4971), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4971), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4969), - [anon_sym_BSLASHitem] = ACTIONS(4971), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4969), - [anon_sym_LBRACE] = ACTIONS(4969), - [sym_word] = ACTIONS(4971), - [sym_placeholder] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_CARET] = ACTIONS(4971), - [anon_sym__] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4969), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4969), - [anon_sym_BSLASHbegin] = ACTIONS(4971), - [anon_sym_BSLASHend] = ACTIONS(4971), - [anon_sym_BSLASHusepackage] = ACTIONS(4971), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4971), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4971), - [anon_sym_BSLASHinclude] = ACTIONS(4971), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4971), - [anon_sym_BSLASHinput] = ACTIONS(4971), - [anon_sym_BSLASHsubfile] = ACTIONS(4971), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4971), - [anon_sym_BSLASHbibliography] = ACTIONS(4971), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4971), - [anon_sym_BSLASHincludesvg] = ACTIONS(4971), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4971), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4971), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4971), - [anon_sym_BSLASHimport] = ACTIONS(4971), - [anon_sym_BSLASHsubimport] = ACTIONS(4971), - [anon_sym_BSLASHinputfrom] = ACTIONS(4971), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4971), - [anon_sym_BSLASHincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHcaption] = ACTIONS(4971), - [anon_sym_BSLASHcite] = ACTIONS(4971), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCite] = ACTIONS(4971), - [anon_sym_BSLASHnocite] = ACTIONS(4971), - [anon_sym_BSLASHcitet] = ACTIONS(4971), - [anon_sym_BSLASHcitep] = ACTIONS(4971), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteyear] = ACTIONS(4971), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitedate] = ACTIONS(4971), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteurl] = ACTIONS(4971), - [anon_sym_BSLASHfullcite] = ACTIONS(4971), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4971), - [anon_sym_BSLASHcitealt] = ACTIONS(4971), - [anon_sym_BSLASHcitealp] = ACTIONS(4971), - [anon_sym_BSLASHcitetext] = ACTIONS(4971), - [anon_sym_BSLASHparencite] = ACTIONS(4971), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHParencite] = ACTIONS(4971), - [anon_sym_BSLASHfootcite] = ACTIONS(4971), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4971), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4971), - [anon_sym_BSLASHtextcite] = ACTIONS(4971), - [anon_sym_BSLASHTextcite] = ACTIONS(4971), - [anon_sym_BSLASHsmartcite] = ACTIONS(4971), - [anon_sym_BSLASHSmartcite] = ACTIONS(4971), - [anon_sym_BSLASHsupercite] = ACTIONS(4971), - [anon_sym_BSLASHautocite] = ACTIONS(4971), - [anon_sym_BSLASHAutocite] = ACTIONS(4971), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHvolcite] = ACTIONS(4971), - [anon_sym_BSLASHVolcite] = ACTIONS(4971), - [anon_sym_BSLASHpvolcite] = ACTIONS(4971), - [anon_sym_BSLASHPvolcite] = ACTIONS(4971), - [anon_sym_BSLASHfvolcite] = ACTIONS(4971), - [anon_sym_BSLASHftvolcite] = ACTIONS(4971), - [anon_sym_BSLASHsvolcite] = ACTIONS(4971), - [anon_sym_BSLASHSvolcite] = ACTIONS(4971), - [anon_sym_BSLASHtvolcite] = ACTIONS(4971), - [anon_sym_BSLASHTvolcite] = ACTIONS(4971), - [anon_sym_BSLASHavolcite] = ACTIONS(4971), - [anon_sym_BSLASHAvolcite] = ACTIONS(4971), - [anon_sym_BSLASHnotecite] = ACTIONS(4971), - [anon_sym_BSLASHNotecite] = ACTIONS(4971), - [anon_sym_BSLASHpnotecite] = ACTIONS(4971), - [anon_sym_BSLASHPnotecite] = ACTIONS(4971), - [anon_sym_BSLASHfnotecite] = ACTIONS(4971), - [anon_sym_BSLASHlabel] = ACTIONS(4971), - [anon_sym_BSLASHref] = ACTIONS(4971), - [anon_sym_BSLASHeqref] = ACTIONS(4971), - [anon_sym_BSLASHvref] = ACTIONS(4971), - [anon_sym_BSLASHVref] = ACTIONS(4971), - [anon_sym_BSLASHautoref] = ACTIONS(4971), - [anon_sym_BSLASHpageref] = ACTIONS(4971), - [anon_sym_BSLASHcref] = ACTIONS(4971), - [anon_sym_BSLASHCref] = ACTIONS(4971), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnameCref] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHlabelcref] = ACTIONS(4971), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnewlabel] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4969), - [anon_sym_BSLASHdef] = ACTIONS(4971), - [anon_sym_BSLASHlet] = ACTIONS(4971), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4971), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4971), - [anon_sym_BSLASHgls] = ACTIONS(4971), - [anon_sym_BSLASHGls] = ACTIONS(4971), - [anon_sym_BSLASHGLS] = ACTIONS(4971), - [anon_sym_BSLASHglspl] = ACTIONS(4971), - [anon_sym_BSLASHGlspl] = ACTIONS(4971), - [anon_sym_BSLASHGLSpl] = ACTIONS(4971), - [anon_sym_BSLASHglsdisp] = ACTIONS(4971), - [anon_sym_BSLASHglslink] = ACTIONS(4971), - [anon_sym_BSLASHglstext] = ACTIONS(4971), - [anon_sym_BSLASHGlstext] = ACTIONS(4971), - [anon_sym_BSLASHGLStext] = ACTIONS(4971), - [anon_sym_BSLASHglsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4971), - [anon_sym_BSLASHglsplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSplural] = ACTIONS(4971), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHglsname] = ACTIONS(4971), - [anon_sym_BSLASHGlsname] = ACTIONS(4971), - [anon_sym_BSLASHGLSname] = ACTIONS(4971), - [anon_sym_BSLASHglssymbol] = ACTIONS(4971), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4971), - [anon_sym_BSLASHglsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4971), - [anon_sym_BSLASHglsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4971), - [anon_sym_BSLASHglsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4971), - [anon_sym_BSLASHglsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4971), - [anon_sym_BSLASHglsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4971), - [anon_sym_BSLASHnewacronym] = ACTIONS(4971), - [anon_sym_BSLASHacrshort] = ACTIONS(4971), - [anon_sym_BSLASHAcrshort] = ACTIONS(4971), - [anon_sym_BSLASHACRshort] = ACTIONS(4971), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4971), - [anon_sym_BSLASHacrlong] = ACTIONS(4971), - [anon_sym_BSLASHAcrlong] = ACTIONS(4971), - [anon_sym_BSLASHACRlong] = ACTIONS(4971), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4971), - [anon_sym_BSLASHacrfull] = ACTIONS(4971), - [anon_sym_BSLASHAcrfull] = ACTIONS(4971), - [anon_sym_BSLASHACRfull] = ACTIONS(4971), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4971), - [anon_sym_BSLASHacs] = ACTIONS(4971), - [anon_sym_BSLASHAcs] = ACTIONS(4971), - [anon_sym_BSLASHacsp] = ACTIONS(4971), - [anon_sym_BSLASHAcsp] = ACTIONS(4971), - [anon_sym_BSLASHacl] = ACTIONS(4971), - [anon_sym_BSLASHAcl] = ACTIONS(4971), - [anon_sym_BSLASHaclp] = ACTIONS(4971), - [anon_sym_BSLASHAclp] = ACTIONS(4971), - [anon_sym_BSLASHacf] = ACTIONS(4971), - [anon_sym_BSLASHAcf] = ACTIONS(4971), - [anon_sym_BSLASHacfp] = ACTIONS(4971), - [anon_sym_BSLASHAcfp] = ACTIONS(4971), - [anon_sym_BSLASHac] = ACTIONS(4971), - [anon_sym_BSLASHAc] = ACTIONS(4971), - [anon_sym_BSLASHacp] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4971), - [anon_sym_BSLASHcolor] = ACTIONS(4971), - [anon_sym_BSLASHcolorbox] = ACTIONS(4971), - [anon_sym_BSLASHtextcolor] = ACTIONS(4971), - [anon_sym_BSLASHpagecolor] = ACTIONS(4971), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4971), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4971), + [973] = { + [sym_command_name] = ACTIONS(4969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_EQ] = ACTIONS(4967), + [anon_sym_BSLASHpart] = ACTIONS(4969), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddpart] = ACTIONS(4969), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4967), + [anon_sym_BSLASHchapter] = ACTIONS(4969), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddchap] = ACTIONS(4969), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsection] = ACTIONS(4969), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddsec] = ACTIONS(4969), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubsection] = ACTIONS(4969), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4969), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHparagraph] = ACTIONS(4969), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4969), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4967), + [anon_sym_BSLASHitem] = ACTIONS(4969), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4967), + [sym_word] = ACTIONS(4969), + [sym_placeholder] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_CARET] = ACTIONS(4969), + [anon_sym__] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_COLON] = ACTIONS(4969), + [anon_sym_SQUOTE] = ACTIONS(4969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4967), + [anon_sym_BSLASHbegin] = ACTIONS(4969), + [anon_sym_BSLASHusepackage] = ACTIONS(4969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), + [anon_sym_BSLASHinclude] = ACTIONS(4969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), + [anon_sym_BSLASHinput] = ACTIONS(4969), + [anon_sym_BSLASHsubfile] = ACTIONS(4969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), + [anon_sym_BSLASHbibliography] = ACTIONS(4969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), + [anon_sym_BSLASHincludesvg] = ACTIONS(4969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), + [anon_sym_BSLASHimport] = ACTIONS(4969), + [anon_sym_BSLASHsubimport] = ACTIONS(4969), + [anon_sym_BSLASHinputfrom] = ACTIONS(4969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), + [anon_sym_BSLASHincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHcaption] = ACTIONS(4969), + [anon_sym_BSLASHcite] = ACTIONS(4969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCite] = ACTIONS(4969), + [anon_sym_BSLASHnocite] = ACTIONS(4969), + [anon_sym_BSLASHcitet] = ACTIONS(4969), + [anon_sym_BSLASHcitep] = ACTIONS(4969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteauthor] = ACTIONS(4969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitetitle] = ACTIONS(4969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteyear] = ACTIONS(4969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitedate] = ACTIONS(4969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteurl] = ACTIONS(4969), + [anon_sym_BSLASHfullcite] = ACTIONS(4969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), + [anon_sym_BSLASHcitealt] = ACTIONS(4969), + [anon_sym_BSLASHcitealp] = ACTIONS(4969), + [anon_sym_BSLASHcitetext] = ACTIONS(4969), + [anon_sym_BSLASHparencite] = ACTIONS(4969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHParencite] = ACTIONS(4969), + [anon_sym_BSLASHfootcite] = ACTIONS(4969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), + [anon_sym_BSLASHtextcite] = ACTIONS(4969), + [anon_sym_BSLASHTextcite] = ACTIONS(4969), + [anon_sym_BSLASHsmartcite] = ACTIONS(4969), + [anon_sym_BSLASHSmartcite] = ACTIONS(4969), + [anon_sym_BSLASHsupercite] = ACTIONS(4969), + [anon_sym_BSLASHautocite] = ACTIONS(4969), + [anon_sym_BSLASHAutocite] = ACTIONS(4969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHvolcite] = ACTIONS(4969), + [anon_sym_BSLASHVolcite] = ACTIONS(4969), + [anon_sym_BSLASHpvolcite] = ACTIONS(4969), + [anon_sym_BSLASHPvolcite] = ACTIONS(4969), + [anon_sym_BSLASHfvolcite] = ACTIONS(4969), + [anon_sym_BSLASHftvolcite] = ACTIONS(4969), + [anon_sym_BSLASHsvolcite] = ACTIONS(4969), + [anon_sym_BSLASHSvolcite] = ACTIONS(4969), + [anon_sym_BSLASHtvolcite] = ACTIONS(4969), + [anon_sym_BSLASHTvolcite] = ACTIONS(4969), + [anon_sym_BSLASHavolcite] = ACTIONS(4969), + [anon_sym_BSLASHAvolcite] = ACTIONS(4969), + [anon_sym_BSLASHnotecite] = ACTIONS(4969), + [anon_sym_BSLASHNotecite] = ACTIONS(4969), + [anon_sym_BSLASHpnotecite] = ACTIONS(4969), + [anon_sym_BSLASHPnotecite] = ACTIONS(4969), + [anon_sym_BSLASHfnotecite] = ACTIONS(4969), + [anon_sym_BSLASHlabel] = ACTIONS(4969), + [anon_sym_BSLASHref] = ACTIONS(4969), + [anon_sym_BSLASHeqref] = ACTIONS(4969), + [anon_sym_BSLASHvref] = ACTIONS(4969), + [anon_sym_BSLASHVref] = ACTIONS(4969), + [anon_sym_BSLASHautoref] = ACTIONS(4969), + [anon_sym_BSLASHpageref] = ACTIONS(4969), + [anon_sym_BSLASHcref] = ACTIONS(4969), + [anon_sym_BSLASHCref] = ACTIONS(4969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnameCref] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHlabelcref] = ACTIONS(4969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCrefrange] = ACTIONS(4969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnewlabel] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), + [anon_sym_BSLASHdef] = ACTIONS(4969), + [anon_sym_BSLASHlet] = ACTIONS(4969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), + [anon_sym_BSLASHgls] = ACTIONS(4969), + [anon_sym_BSLASHGls] = ACTIONS(4969), + [anon_sym_BSLASHGLS] = ACTIONS(4969), + [anon_sym_BSLASHglspl] = ACTIONS(4969), + [anon_sym_BSLASHGlspl] = ACTIONS(4969), + [anon_sym_BSLASHGLSpl] = ACTIONS(4969), + [anon_sym_BSLASHglsdisp] = ACTIONS(4969), + [anon_sym_BSLASHglslink] = ACTIONS(4969), + [anon_sym_BSLASHglstext] = ACTIONS(4969), + [anon_sym_BSLASHGlstext] = ACTIONS(4969), + [anon_sym_BSLASHGLStext] = ACTIONS(4969), + [anon_sym_BSLASHglsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), + [anon_sym_BSLASHglsplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSplural] = ACTIONS(4969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHglsname] = ACTIONS(4969), + [anon_sym_BSLASHGlsname] = ACTIONS(4969), + [anon_sym_BSLASHGLSname] = ACTIONS(4969), + [anon_sym_BSLASHglssymbol] = ACTIONS(4969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), + [anon_sym_BSLASHglsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), + [anon_sym_BSLASHglsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), + [anon_sym_BSLASHglsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), + [anon_sym_BSLASHglsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), + [anon_sym_BSLASHglsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), + [anon_sym_BSLASHnewacronym] = ACTIONS(4969), + [anon_sym_BSLASHacrshort] = ACTIONS(4969), + [anon_sym_BSLASHAcrshort] = ACTIONS(4969), + [anon_sym_BSLASHACRshort] = ACTIONS(4969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), + [anon_sym_BSLASHacrlong] = ACTIONS(4969), + [anon_sym_BSLASHAcrlong] = ACTIONS(4969), + [anon_sym_BSLASHACRlong] = ACTIONS(4969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), + [anon_sym_BSLASHacrfull] = ACTIONS(4969), + [anon_sym_BSLASHAcrfull] = ACTIONS(4969), + [anon_sym_BSLASHACRfull] = ACTIONS(4969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), + [anon_sym_BSLASHacs] = ACTIONS(4969), + [anon_sym_BSLASHAcs] = ACTIONS(4969), + [anon_sym_BSLASHacsp] = ACTIONS(4969), + [anon_sym_BSLASHAcsp] = ACTIONS(4969), + [anon_sym_BSLASHacl] = ACTIONS(4969), + [anon_sym_BSLASHAcl] = ACTIONS(4969), + [anon_sym_BSLASHaclp] = ACTIONS(4969), + [anon_sym_BSLASHAclp] = ACTIONS(4969), + [anon_sym_BSLASHacf] = ACTIONS(4969), + [anon_sym_BSLASHAcf] = ACTIONS(4969), + [anon_sym_BSLASHacfp] = ACTIONS(4969), + [anon_sym_BSLASHAcfp] = ACTIONS(4969), + [anon_sym_BSLASHac] = ACTIONS(4969), + [anon_sym_BSLASHAc] = ACTIONS(4969), + [anon_sym_BSLASHacp] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), + [anon_sym_BSLASHcolor] = ACTIONS(4969), + [anon_sym_BSLASHcolorbox] = ACTIONS(4969), + [anon_sym_BSLASHtextcolor] = ACTIONS(4969), + [anon_sym_BSLASHpagecolor] = ACTIONS(4969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), + [anon_sym_BSLASHtext] = ACTIONS(4969), + [anon_sym_BSLASHintertext] = ACTIONS(4969), + [anon_sym_shortintertext] = ACTIONS(4969), }, - [1117] = { - [sym_command_name] = ACTIONS(4967), + [974] = { + [sym_command_name] = ACTIONS(4973), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4971), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), + [anon_sym_RBRACK] = ACTIONS(4971), + [anon_sym_COMMA] = ACTIONS(4971), + [anon_sym_EQ] = ACTIONS(4971), + [anon_sym_BSLASHpart] = ACTIONS(4973), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddpart] = ACTIONS(4973), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4971), + [anon_sym_BSLASHchapter] = ACTIONS(4973), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddchap] = ACTIONS(4973), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsection] = ACTIONS(4973), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddsec] = ACTIONS(4973), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubsection] = ACTIONS(4973), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4973), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHparagraph] = ACTIONS(4973), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4973), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4971), + [anon_sym_BSLASHitem] = ACTIONS(4973), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4971), + [anon_sym_LBRACE] = ACTIONS(4971), + [sym_word] = ACTIONS(4973), + [sym_placeholder] = ACTIONS(4971), + [anon_sym_PLUS] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym__] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4973), + [anon_sym_GT] = ACTIONS(4973), + [anon_sym_BANG] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_SQUOTE] = ACTIONS(4973), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), + [anon_sym_DOLLAR] = ACTIONS(4973), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4971), + [anon_sym_BSLASHbegin] = ACTIONS(4973), + [anon_sym_BSLASHusepackage] = ACTIONS(4973), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), + [anon_sym_BSLASHinclude] = ACTIONS(4973), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), + [anon_sym_BSLASHinput] = ACTIONS(4973), + [anon_sym_BSLASHsubfile] = ACTIONS(4973), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), + [anon_sym_BSLASHbibliography] = ACTIONS(4973), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), + [anon_sym_BSLASHincludesvg] = ACTIONS(4973), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), + [anon_sym_BSLASHimport] = ACTIONS(4973), + [anon_sym_BSLASHsubimport] = ACTIONS(4973), + [anon_sym_BSLASHinputfrom] = ACTIONS(4973), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), + [anon_sym_BSLASHincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHcaption] = ACTIONS(4973), + [anon_sym_BSLASHcite] = ACTIONS(4973), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCite] = ACTIONS(4973), + [anon_sym_BSLASHnocite] = ACTIONS(4973), + [anon_sym_BSLASHcitet] = ACTIONS(4973), + [anon_sym_BSLASHcitep] = ACTIONS(4973), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteauthor] = ACTIONS(4973), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitetitle] = ACTIONS(4973), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteyear] = ACTIONS(4973), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitedate] = ACTIONS(4973), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteurl] = ACTIONS(4973), + [anon_sym_BSLASHfullcite] = ACTIONS(4973), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), + [anon_sym_BSLASHcitealt] = ACTIONS(4973), + [anon_sym_BSLASHcitealp] = ACTIONS(4973), + [anon_sym_BSLASHcitetext] = ACTIONS(4973), + [anon_sym_BSLASHparencite] = ACTIONS(4973), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHParencite] = ACTIONS(4973), + [anon_sym_BSLASHfootcite] = ACTIONS(4973), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), + [anon_sym_BSLASHtextcite] = ACTIONS(4973), + [anon_sym_BSLASHTextcite] = ACTIONS(4973), + [anon_sym_BSLASHsmartcite] = ACTIONS(4973), + [anon_sym_BSLASHSmartcite] = ACTIONS(4973), + [anon_sym_BSLASHsupercite] = ACTIONS(4973), + [anon_sym_BSLASHautocite] = ACTIONS(4973), + [anon_sym_BSLASHAutocite] = ACTIONS(4973), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHvolcite] = ACTIONS(4973), + [anon_sym_BSLASHVolcite] = ACTIONS(4973), + [anon_sym_BSLASHpvolcite] = ACTIONS(4973), + [anon_sym_BSLASHPvolcite] = ACTIONS(4973), + [anon_sym_BSLASHfvolcite] = ACTIONS(4973), + [anon_sym_BSLASHftvolcite] = ACTIONS(4973), + [anon_sym_BSLASHsvolcite] = ACTIONS(4973), + [anon_sym_BSLASHSvolcite] = ACTIONS(4973), + [anon_sym_BSLASHtvolcite] = ACTIONS(4973), + [anon_sym_BSLASHTvolcite] = ACTIONS(4973), + [anon_sym_BSLASHavolcite] = ACTIONS(4973), + [anon_sym_BSLASHAvolcite] = ACTIONS(4973), + [anon_sym_BSLASHnotecite] = ACTIONS(4973), + [anon_sym_BSLASHNotecite] = ACTIONS(4973), + [anon_sym_BSLASHpnotecite] = ACTIONS(4973), + [anon_sym_BSLASHPnotecite] = ACTIONS(4973), + [anon_sym_BSLASHfnotecite] = ACTIONS(4973), + [anon_sym_BSLASHlabel] = ACTIONS(4973), + [anon_sym_BSLASHref] = ACTIONS(4973), + [anon_sym_BSLASHeqref] = ACTIONS(4973), + [anon_sym_BSLASHvref] = ACTIONS(4973), + [anon_sym_BSLASHVref] = ACTIONS(4973), + [anon_sym_BSLASHautoref] = ACTIONS(4973), + [anon_sym_BSLASHpageref] = ACTIONS(4973), + [anon_sym_BSLASHcref] = ACTIONS(4973), + [anon_sym_BSLASHCref] = ACTIONS(4973), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnameCref] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHlabelcref] = ACTIONS(4973), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCrefrange] = ACTIONS(4973), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnewlabel] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), + [anon_sym_BSLASHdef] = ACTIONS(4973), + [anon_sym_BSLASHlet] = ACTIONS(4973), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), + [anon_sym_BSLASHgls] = ACTIONS(4973), + [anon_sym_BSLASHGls] = ACTIONS(4973), + [anon_sym_BSLASHGLS] = ACTIONS(4973), + [anon_sym_BSLASHglspl] = ACTIONS(4973), + [anon_sym_BSLASHGlspl] = ACTIONS(4973), + [anon_sym_BSLASHGLSpl] = ACTIONS(4973), + [anon_sym_BSLASHglsdisp] = ACTIONS(4973), + [anon_sym_BSLASHglslink] = ACTIONS(4973), + [anon_sym_BSLASHglstext] = ACTIONS(4973), + [anon_sym_BSLASHGlstext] = ACTIONS(4973), + [anon_sym_BSLASHGLStext] = ACTIONS(4973), + [anon_sym_BSLASHglsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), + [anon_sym_BSLASHglsplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSplural] = ACTIONS(4973), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHglsname] = ACTIONS(4973), + [anon_sym_BSLASHGlsname] = ACTIONS(4973), + [anon_sym_BSLASHGLSname] = ACTIONS(4973), + [anon_sym_BSLASHglssymbol] = ACTIONS(4973), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), + [anon_sym_BSLASHglsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), + [anon_sym_BSLASHglsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), + [anon_sym_BSLASHglsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), + [anon_sym_BSLASHglsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), + [anon_sym_BSLASHglsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), + [anon_sym_BSLASHnewacronym] = ACTIONS(4973), + [anon_sym_BSLASHacrshort] = ACTIONS(4973), + [anon_sym_BSLASHAcrshort] = ACTIONS(4973), + [anon_sym_BSLASHACRshort] = ACTIONS(4973), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), + [anon_sym_BSLASHacrlong] = ACTIONS(4973), + [anon_sym_BSLASHAcrlong] = ACTIONS(4973), + [anon_sym_BSLASHACRlong] = ACTIONS(4973), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), + [anon_sym_BSLASHacrfull] = ACTIONS(4973), + [anon_sym_BSLASHAcrfull] = ACTIONS(4973), + [anon_sym_BSLASHACRfull] = ACTIONS(4973), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), + [anon_sym_BSLASHacs] = ACTIONS(4973), + [anon_sym_BSLASHAcs] = ACTIONS(4973), + [anon_sym_BSLASHacsp] = ACTIONS(4973), + [anon_sym_BSLASHAcsp] = ACTIONS(4973), + [anon_sym_BSLASHacl] = ACTIONS(4973), + [anon_sym_BSLASHAcl] = ACTIONS(4973), + [anon_sym_BSLASHaclp] = ACTIONS(4973), + [anon_sym_BSLASHAclp] = ACTIONS(4973), + [anon_sym_BSLASHacf] = ACTIONS(4973), + [anon_sym_BSLASHAcf] = ACTIONS(4973), + [anon_sym_BSLASHacfp] = ACTIONS(4973), + [anon_sym_BSLASHAcfp] = ACTIONS(4973), + [anon_sym_BSLASHac] = ACTIONS(4973), + [anon_sym_BSLASHAc] = ACTIONS(4973), + [anon_sym_BSLASHacp] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), + [anon_sym_BSLASHcolor] = ACTIONS(4973), + [anon_sym_BSLASHcolorbox] = ACTIONS(4973), + [anon_sym_BSLASHtextcolor] = ACTIONS(4973), + [anon_sym_BSLASHpagecolor] = ACTIONS(4973), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), + [anon_sym_BSLASHtext] = ACTIONS(4973), + [anon_sym_BSLASHintertext] = ACTIONS(4973), + [anon_sym_shortintertext] = ACTIONS(4973), + }, + [975] = { + [sym_command_name] = ACTIONS(5149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_RPAREN] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_RBRACK] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_BSLASHpart] = ACTIONS(5149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddpart] = ACTIONS(5149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5147), + [anon_sym_BSLASHchapter] = ACTIONS(5149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddchap] = ACTIONS(5149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsection] = ACTIONS(5149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddsec] = ACTIONS(5149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubsection] = ACTIONS(5149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHparagraph] = ACTIONS(5149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5147), + [anon_sym_BSLASHitem] = ACTIONS(5149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5147), + [anon_sym_LBRACE] = ACTIONS(5147), + [sym_word] = ACTIONS(5149), + [sym_placeholder] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym__] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_COLON] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5147), + [anon_sym_DOLLAR] = ACTIONS(5149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), + [anon_sym_BSLASHbegin] = ACTIONS(5149), + [anon_sym_BSLASHusepackage] = ACTIONS(5149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), + [anon_sym_BSLASHinput] = ACTIONS(5149), + [anon_sym_BSLASHsubfile] = ACTIONS(5149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), + [anon_sym_BSLASHbibliography] = ACTIONS(5149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), + [anon_sym_BSLASHincludesvg] = ACTIONS(5149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), + [anon_sym_BSLASHimport] = ACTIONS(5149), + [anon_sym_BSLASHsubimport] = ACTIONS(5149), + [anon_sym_BSLASHinputfrom] = ACTIONS(5149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), + [anon_sym_BSLASHincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHcaption] = ACTIONS(5149), + [anon_sym_BSLASHcite] = ACTIONS(5149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCite] = ACTIONS(5149), + [anon_sym_BSLASHnocite] = ACTIONS(5149), + [anon_sym_BSLASHcitet] = ACTIONS(5149), + [anon_sym_BSLASHcitep] = ACTIONS(5149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteauthor] = ACTIONS(5149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitetitle] = ACTIONS(5149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteyear] = ACTIONS(5149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitedate] = ACTIONS(5149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteurl] = ACTIONS(5149), + [anon_sym_BSLASHfullcite] = ACTIONS(5149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), + [anon_sym_BSLASHcitealt] = ACTIONS(5149), + [anon_sym_BSLASHcitealp] = ACTIONS(5149), + [anon_sym_BSLASHcitetext] = ACTIONS(5149), + [anon_sym_BSLASHparencite] = ACTIONS(5149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHParencite] = ACTIONS(5149), + [anon_sym_BSLASHfootcite] = ACTIONS(5149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), + [anon_sym_BSLASHtextcite] = ACTIONS(5149), + [anon_sym_BSLASHTextcite] = ACTIONS(5149), + [anon_sym_BSLASHsmartcite] = ACTIONS(5149), + [anon_sym_BSLASHSmartcite] = ACTIONS(5149), + [anon_sym_BSLASHsupercite] = ACTIONS(5149), + [anon_sym_BSLASHautocite] = ACTIONS(5149), + [anon_sym_BSLASHAutocite] = ACTIONS(5149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHvolcite] = ACTIONS(5149), + [anon_sym_BSLASHVolcite] = ACTIONS(5149), + [anon_sym_BSLASHpvolcite] = ACTIONS(5149), + [anon_sym_BSLASHPvolcite] = ACTIONS(5149), + [anon_sym_BSLASHfvolcite] = ACTIONS(5149), + [anon_sym_BSLASHftvolcite] = ACTIONS(5149), + [anon_sym_BSLASHsvolcite] = ACTIONS(5149), + [anon_sym_BSLASHSvolcite] = ACTIONS(5149), + [anon_sym_BSLASHtvolcite] = ACTIONS(5149), + [anon_sym_BSLASHTvolcite] = ACTIONS(5149), + [anon_sym_BSLASHavolcite] = ACTIONS(5149), + [anon_sym_BSLASHAvolcite] = ACTIONS(5149), + [anon_sym_BSLASHnotecite] = ACTIONS(5149), + [anon_sym_BSLASHNotecite] = ACTIONS(5149), + [anon_sym_BSLASHpnotecite] = ACTIONS(5149), + [anon_sym_BSLASHPnotecite] = ACTIONS(5149), + [anon_sym_BSLASHfnotecite] = ACTIONS(5149), + [anon_sym_BSLASHlabel] = ACTIONS(5149), + [anon_sym_BSLASHref] = ACTIONS(5149), + [anon_sym_BSLASHeqref] = ACTIONS(5149), + [anon_sym_BSLASHvref] = ACTIONS(5149), + [anon_sym_BSLASHVref] = ACTIONS(5149), + [anon_sym_BSLASHautoref] = ACTIONS(5149), + [anon_sym_BSLASHpageref] = ACTIONS(5149), + [anon_sym_BSLASHcref] = ACTIONS(5149), + [anon_sym_BSLASHCref] = ACTIONS(5149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnameCref] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHlabelcref] = ACTIONS(5149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCrefrange] = ACTIONS(5149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnewlabel] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), + [anon_sym_BSLASHdef] = ACTIONS(5149), + [anon_sym_BSLASHlet] = ACTIONS(5149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), + [anon_sym_BSLASHgls] = ACTIONS(5149), + [anon_sym_BSLASHGls] = ACTIONS(5149), + [anon_sym_BSLASHGLS] = ACTIONS(5149), + [anon_sym_BSLASHglspl] = ACTIONS(5149), + [anon_sym_BSLASHGlspl] = ACTIONS(5149), + [anon_sym_BSLASHGLSpl] = ACTIONS(5149), + [anon_sym_BSLASHglsdisp] = ACTIONS(5149), + [anon_sym_BSLASHglslink] = ACTIONS(5149), + [anon_sym_BSLASHglstext] = ACTIONS(5149), + [anon_sym_BSLASHGlstext] = ACTIONS(5149), + [anon_sym_BSLASHGLStext] = ACTIONS(5149), + [anon_sym_BSLASHglsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), + [anon_sym_BSLASHglsplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSplural] = ACTIONS(5149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHglsname] = ACTIONS(5149), + [anon_sym_BSLASHGlsname] = ACTIONS(5149), + [anon_sym_BSLASHGLSname] = ACTIONS(5149), + [anon_sym_BSLASHglssymbol] = ACTIONS(5149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), + [anon_sym_BSLASHglsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), + [anon_sym_BSLASHglsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), + [anon_sym_BSLASHglsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), + [anon_sym_BSLASHglsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), + [anon_sym_BSLASHglsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), + [anon_sym_BSLASHnewacronym] = ACTIONS(5149), + [anon_sym_BSLASHacrshort] = ACTIONS(5149), + [anon_sym_BSLASHAcrshort] = ACTIONS(5149), + [anon_sym_BSLASHACRshort] = ACTIONS(5149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), + [anon_sym_BSLASHacrlong] = ACTIONS(5149), + [anon_sym_BSLASHAcrlong] = ACTIONS(5149), + [anon_sym_BSLASHACRlong] = ACTIONS(5149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), + [anon_sym_BSLASHacrfull] = ACTIONS(5149), + [anon_sym_BSLASHAcrfull] = ACTIONS(5149), + [anon_sym_BSLASHACRfull] = ACTIONS(5149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), + [anon_sym_BSLASHacs] = ACTIONS(5149), + [anon_sym_BSLASHAcs] = ACTIONS(5149), + [anon_sym_BSLASHacsp] = ACTIONS(5149), + [anon_sym_BSLASHAcsp] = ACTIONS(5149), + [anon_sym_BSLASHacl] = ACTIONS(5149), + [anon_sym_BSLASHAcl] = ACTIONS(5149), + [anon_sym_BSLASHaclp] = ACTIONS(5149), + [anon_sym_BSLASHAclp] = ACTIONS(5149), + [anon_sym_BSLASHacf] = ACTIONS(5149), + [anon_sym_BSLASHAcf] = ACTIONS(5149), + [anon_sym_BSLASHacfp] = ACTIONS(5149), + [anon_sym_BSLASHAcfp] = ACTIONS(5149), + [anon_sym_BSLASHac] = ACTIONS(5149), + [anon_sym_BSLASHAc] = ACTIONS(5149), + [anon_sym_BSLASHacp] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), + [anon_sym_BSLASHcolor] = ACTIONS(5149), + [anon_sym_BSLASHcolorbox] = ACTIONS(5149), + [anon_sym_BSLASHtextcolor] = ACTIONS(5149), + [anon_sym_BSLASHpagecolor] = ACTIONS(5149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), + [anon_sym_BSLASHtext] = ACTIONS(5149), + [anon_sym_BSLASHintertext] = ACTIONS(5149), + [anon_sym_shortintertext] = ACTIONS(5149), + }, + [976] = { + [sym_command_name] = ACTIONS(4983), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4965), - [anon_sym_BSLASHpart] = ACTIONS(4967), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddpart] = ACTIONS(4967), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4965), - [anon_sym_BSLASHchapter] = ACTIONS(4967), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddchap] = ACTIONS(4967), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsection] = ACTIONS(4967), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddsec] = ACTIONS(4967), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubsection] = ACTIONS(4967), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4967), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHparagraph] = ACTIONS(4967), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4967), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4965), - [anon_sym_BSLASHitem] = ACTIONS(4967), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4965), - [sym_word] = ACTIONS(4967), - [sym_placeholder] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_CARET] = ACTIONS(4967), - [anon_sym__] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4965), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4965), - [anon_sym_BSLASHbegin] = ACTIONS(4967), - [anon_sym_BSLASHend] = ACTIONS(4967), - [anon_sym_BSLASHusepackage] = ACTIONS(4967), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4967), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4967), - [anon_sym_BSLASHinclude] = ACTIONS(4967), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4967), - [anon_sym_BSLASHinput] = ACTIONS(4967), - [anon_sym_BSLASHsubfile] = ACTIONS(4967), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4967), - [anon_sym_BSLASHbibliography] = ACTIONS(4967), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4967), - [anon_sym_BSLASHincludesvg] = ACTIONS(4967), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4967), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4967), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4967), - [anon_sym_BSLASHimport] = ACTIONS(4967), - [anon_sym_BSLASHsubimport] = ACTIONS(4967), - [anon_sym_BSLASHinputfrom] = ACTIONS(4967), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4967), - [anon_sym_BSLASHincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHcaption] = ACTIONS(4967), - [anon_sym_BSLASHcite] = ACTIONS(4967), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCite] = ACTIONS(4967), - [anon_sym_BSLASHnocite] = ACTIONS(4967), - [anon_sym_BSLASHcitet] = ACTIONS(4967), - [anon_sym_BSLASHcitep] = ACTIONS(4967), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteauthor] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitetitle] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteyear] = ACTIONS(4967), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitedate] = ACTIONS(4967), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteurl] = ACTIONS(4967), - [anon_sym_BSLASHfullcite] = ACTIONS(4967), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4967), - [anon_sym_BSLASHcitealt] = ACTIONS(4967), - [anon_sym_BSLASHcitealp] = ACTIONS(4967), - [anon_sym_BSLASHcitetext] = ACTIONS(4967), - [anon_sym_BSLASHparencite] = ACTIONS(4967), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHParencite] = ACTIONS(4967), - [anon_sym_BSLASHfootcite] = ACTIONS(4967), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4967), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4967), - [anon_sym_BSLASHtextcite] = ACTIONS(4967), - [anon_sym_BSLASHTextcite] = ACTIONS(4967), - [anon_sym_BSLASHsmartcite] = ACTIONS(4967), - [anon_sym_BSLASHSmartcite] = ACTIONS(4967), - [anon_sym_BSLASHsupercite] = ACTIONS(4967), - [anon_sym_BSLASHautocite] = ACTIONS(4967), - [anon_sym_BSLASHAutocite] = ACTIONS(4967), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHvolcite] = ACTIONS(4967), - [anon_sym_BSLASHVolcite] = ACTIONS(4967), - [anon_sym_BSLASHpvolcite] = ACTIONS(4967), - [anon_sym_BSLASHPvolcite] = ACTIONS(4967), - [anon_sym_BSLASHfvolcite] = ACTIONS(4967), - [anon_sym_BSLASHftvolcite] = ACTIONS(4967), - [anon_sym_BSLASHsvolcite] = ACTIONS(4967), - [anon_sym_BSLASHSvolcite] = ACTIONS(4967), - [anon_sym_BSLASHtvolcite] = ACTIONS(4967), - [anon_sym_BSLASHTvolcite] = ACTIONS(4967), - [anon_sym_BSLASHavolcite] = ACTIONS(4967), - [anon_sym_BSLASHAvolcite] = ACTIONS(4967), - [anon_sym_BSLASHnotecite] = ACTIONS(4967), - [anon_sym_BSLASHNotecite] = ACTIONS(4967), - [anon_sym_BSLASHpnotecite] = ACTIONS(4967), - [anon_sym_BSLASHPnotecite] = ACTIONS(4967), - [anon_sym_BSLASHfnotecite] = ACTIONS(4967), - [anon_sym_BSLASHlabel] = ACTIONS(4967), - [anon_sym_BSLASHref] = ACTIONS(4967), - [anon_sym_BSLASHeqref] = ACTIONS(4967), - [anon_sym_BSLASHvref] = ACTIONS(4967), - [anon_sym_BSLASHVref] = ACTIONS(4967), - [anon_sym_BSLASHautoref] = ACTIONS(4967), - [anon_sym_BSLASHpageref] = ACTIONS(4967), - [anon_sym_BSLASHcref] = ACTIONS(4967), - [anon_sym_BSLASHCref] = ACTIONS(4967), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnameCref] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHlabelcref] = ACTIONS(4967), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCrefrange] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnewlabel] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4965), - [anon_sym_BSLASHdef] = ACTIONS(4967), - [anon_sym_BSLASHlet] = ACTIONS(4967), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4967), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4967), - [anon_sym_BSLASHgls] = ACTIONS(4967), - [anon_sym_BSLASHGls] = ACTIONS(4967), - [anon_sym_BSLASHGLS] = ACTIONS(4967), - [anon_sym_BSLASHglspl] = ACTIONS(4967), - [anon_sym_BSLASHGlspl] = ACTIONS(4967), - [anon_sym_BSLASHGLSpl] = ACTIONS(4967), - [anon_sym_BSLASHglsdisp] = ACTIONS(4967), - [anon_sym_BSLASHglslink] = ACTIONS(4967), - [anon_sym_BSLASHglstext] = ACTIONS(4967), - [anon_sym_BSLASHGlstext] = ACTIONS(4967), - [anon_sym_BSLASHGLStext] = ACTIONS(4967), - [anon_sym_BSLASHglsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4967), - [anon_sym_BSLASHglsplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSplural] = ACTIONS(4967), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHglsname] = ACTIONS(4967), - [anon_sym_BSLASHGlsname] = ACTIONS(4967), - [anon_sym_BSLASHGLSname] = ACTIONS(4967), - [anon_sym_BSLASHglssymbol] = ACTIONS(4967), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4967), - [anon_sym_BSLASHglsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4967), - [anon_sym_BSLASHglsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4967), - [anon_sym_BSLASHglsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4967), - [anon_sym_BSLASHglsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4967), - [anon_sym_BSLASHglsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4967), - [anon_sym_BSLASHnewacronym] = ACTIONS(4967), - [anon_sym_BSLASHacrshort] = ACTIONS(4967), - [anon_sym_BSLASHAcrshort] = ACTIONS(4967), - [anon_sym_BSLASHACRshort] = ACTIONS(4967), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4967), - [anon_sym_BSLASHacrlong] = ACTIONS(4967), - [anon_sym_BSLASHAcrlong] = ACTIONS(4967), - [anon_sym_BSLASHACRlong] = ACTIONS(4967), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4967), - [anon_sym_BSLASHacrfull] = ACTIONS(4967), - [anon_sym_BSLASHAcrfull] = ACTIONS(4967), - [anon_sym_BSLASHACRfull] = ACTIONS(4967), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4967), - [anon_sym_BSLASHacs] = ACTIONS(4967), - [anon_sym_BSLASHAcs] = ACTIONS(4967), - [anon_sym_BSLASHacsp] = ACTIONS(4967), - [anon_sym_BSLASHAcsp] = ACTIONS(4967), - [anon_sym_BSLASHacl] = ACTIONS(4967), - [anon_sym_BSLASHAcl] = ACTIONS(4967), - [anon_sym_BSLASHaclp] = ACTIONS(4967), - [anon_sym_BSLASHAclp] = ACTIONS(4967), - [anon_sym_BSLASHacf] = ACTIONS(4967), - [anon_sym_BSLASHAcf] = ACTIONS(4967), - [anon_sym_BSLASHacfp] = ACTIONS(4967), - [anon_sym_BSLASHAcfp] = ACTIONS(4967), - [anon_sym_BSLASHac] = ACTIONS(4967), - [anon_sym_BSLASHAc] = ACTIONS(4967), - [anon_sym_BSLASHacp] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4967), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4967), - [anon_sym_BSLASHcolor] = ACTIONS(4967), - [anon_sym_BSLASHcolorbox] = ACTIONS(4967), - [anon_sym_BSLASHtextcolor] = ACTIONS(4967), - [anon_sym_BSLASHpagecolor] = ACTIONS(4967), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4967), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4967), + [anon_sym_BSLASHiffalse] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_RBRACK] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4981), + [anon_sym_BSLASHpart] = ACTIONS(4983), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddpart] = ACTIONS(4983), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), + [anon_sym_BSLASHchapter] = ACTIONS(4983), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddchap] = ACTIONS(4983), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsection] = ACTIONS(4983), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddsec] = ACTIONS(4983), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubsection] = ACTIONS(4983), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHparagraph] = ACTIONS(4983), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), + [anon_sym_BSLASHitem] = ACTIONS(4983), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4981), + [sym_word] = ACTIONS(4983), + [sym_placeholder] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym__] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_SQUOTE] = ACTIONS(4983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), + [anon_sym_DOLLAR] = ACTIONS(4983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4981), + [anon_sym_BSLASHbegin] = ACTIONS(4983), + [anon_sym_BSLASHusepackage] = ACTIONS(4983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), + [anon_sym_BSLASHinclude] = ACTIONS(4983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), + [anon_sym_BSLASHinput] = ACTIONS(4983), + [anon_sym_BSLASHsubfile] = ACTIONS(4983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), + [anon_sym_BSLASHbibliography] = ACTIONS(4983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), + [anon_sym_BSLASHincludesvg] = ACTIONS(4983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), + [anon_sym_BSLASHimport] = ACTIONS(4983), + [anon_sym_BSLASHsubimport] = ACTIONS(4983), + [anon_sym_BSLASHinputfrom] = ACTIONS(4983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), + [anon_sym_BSLASHincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHcaption] = ACTIONS(4983), + [anon_sym_BSLASHcite] = ACTIONS(4983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCite] = ACTIONS(4983), + [anon_sym_BSLASHnocite] = ACTIONS(4983), + [anon_sym_BSLASHcitet] = ACTIONS(4983), + [anon_sym_BSLASHcitep] = ACTIONS(4983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteauthor] = ACTIONS(4983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitetitle] = ACTIONS(4983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteyear] = ACTIONS(4983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitedate] = ACTIONS(4983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteurl] = ACTIONS(4983), + [anon_sym_BSLASHfullcite] = ACTIONS(4983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), + [anon_sym_BSLASHcitealt] = ACTIONS(4983), + [anon_sym_BSLASHcitealp] = ACTIONS(4983), + [anon_sym_BSLASHcitetext] = ACTIONS(4983), + [anon_sym_BSLASHparencite] = ACTIONS(4983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHParencite] = ACTIONS(4983), + [anon_sym_BSLASHfootcite] = ACTIONS(4983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), + [anon_sym_BSLASHtextcite] = ACTIONS(4983), + [anon_sym_BSLASHTextcite] = ACTIONS(4983), + [anon_sym_BSLASHsmartcite] = ACTIONS(4983), + [anon_sym_BSLASHSmartcite] = ACTIONS(4983), + [anon_sym_BSLASHsupercite] = ACTIONS(4983), + [anon_sym_BSLASHautocite] = ACTIONS(4983), + [anon_sym_BSLASHAutocite] = ACTIONS(4983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHvolcite] = ACTIONS(4983), + [anon_sym_BSLASHVolcite] = ACTIONS(4983), + [anon_sym_BSLASHpvolcite] = ACTIONS(4983), + [anon_sym_BSLASHPvolcite] = ACTIONS(4983), + [anon_sym_BSLASHfvolcite] = ACTIONS(4983), + [anon_sym_BSLASHftvolcite] = ACTIONS(4983), + [anon_sym_BSLASHsvolcite] = ACTIONS(4983), + [anon_sym_BSLASHSvolcite] = ACTIONS(4983), + [anon_sym_BSLASHtvolcite] = ACTIONS(4983), + [anon_sym_BSLASHTvolcite] = ACTIONS(4983), + [anon_sym_BSLASHavolcite] = ACTIONS(4983), + [anon_sym_BSLASHAvolcite] = ACTIONS(4983), + [anon_sym_BSLASHnotecite] = ACTIONS(4983), + [anon_sym_BSLASHNotecite] = ACTIONS(4983), + [anon_sym_BSLASHpnotecite] = ACTIONS(4983), + [anon_sym_BSLASHPnotecite] = ACTIONS(4983), + [anon_sym_BSLASHfnotecite] = ACTIONS(4983), + [anon_sym_BSLASHlabel] = ACTIONS(4983), + [anon_sym_BSLASHref] = ACTIONS(4983), + [anon_sym_BSLASHeqref] = ACTIONS(4983), + [anon_sym_BSLASHvref] = ACTIONS(4983), + [anon_sym_BSLASHVref] = ACTIONS(4983), + [anon_sym_BSLASHautoref] = ACTIONS(4983), + [anon_sym_BSLASHpageref] = ACTIONS(4983), + [anon_sym_BSLASHcref] = ACTIONS(4983), + [anon_sym_BSLASHCref] = ACTIONS(4983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnameCref] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHlabelcref] = ACTIONS(4983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCrefrange] = ACTIONS(4983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnewlabel] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), + [anon_sym_BSLASHdef] = ACTIONS(4983), + [anon_sym_BSLASHlet] = ACTIONS(4983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), + [anon_sym_BSLASHgls] = ACTIONS(4983), + [anon_sym_BSLASHGls] = ACTIONS(4983), + [anon_sym_BSLASHGLS] = ACTIONS(4983), + [anon_sym_BSLASHglspl] = ACTIONS(4983), + [anon_sym_BSLASHGlspl] = ACTIONS(4983), + [anon_sym_BSLASHGLSpl] = ACTIONS(4983), + [anon_sym_BSLASHglsdisp] = ACTIONS(4983), + [anon_sym_BSLASHglslink] = ACTIONS(4983), + [anon_sym_BSLASHglstext] = ACTIONS(4983), + [anon_sym_BSLASHGlstext] = ACTIONS(4983), + [anon_sym_BSLASHGLStext] = ACTIONS(4983), + [anon_sym_BSLASHglsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), + [anon_sym_BSLASHglsplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSplural] = ACTIONS(4983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHglsname] = ACTIONS(4983), + [anon_sym_BSLASHGlsname] = ACTIONS(4983), + [anon_sym_BSLASHGLSname] = ACTIONS(4983), + [anon_sym_BSLASHglssymbol] = ACTIONS(4983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), + [anon_sym_BSLASHglsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), + [anon_sym_BSLASHglsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), + [anon_sym_BSLASHglsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), + [anon_sym_BSLASHglsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), + [anon_sym_BSLASHglsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), + [anon_sym_BSLASHnewacronym] = ACTIONS(4983), + [anon_sym_BSLASHacrshort] = ACTIONS(4983), + [anon_sym_BSLASHAcrshort] = ACTIONS(4983), + [anon_sym_BSLASHACRshort] = ACTIONS(4983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), + [anon_sym_BSLASHacrlong] = ACTIONS(4983), + [anon_sym_BSLASHAcrlong] = ACTIONS(4983), + [anon_sym_BSLASHACRlong] = ACTIONS(4983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), + [anon_sym_BSLASHacrfull] = ACTIONS(4983), + [anon_sym_BSLASHAcrfull] = ACTIONS(4983), + [anon_sym_BSLASHACRfull] = ACTIONS(4983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), + [anon_sym_BSLASHacs] = ACTIONS(4983), + [anon_sym_BSLASHAcs] = ACTIONS(4983), + [anon_sym_BSLASHacsp] = ACTIONS(4983), + [anon_sym_BSLASHAcsp] = ACTIONS(4983), + [anon_sym_BSLASHacl] = ACTIONS(4983), + [anon_sym_BSLASHAcl] = ACTIONS(4983), + [anon_sym_BSLASHaclp] = ACTIONS(4983), + [anon_sym_BSLASHAclp] = ACTIONS(4983), + [anon_sym_BSLASHacf] = ACTIONS(4983), + [anon_sym_BSLASHAcf] = ACTIONS(4983), + [anon_sym_BSLASHacfp] = ACTIONS(4983), + [anon_sym_BSLASHAcfp] = ACTIONS(4983), + [anon_sym_BSLASHac] = ACTIONS(4983), + [anon_sym_BSLASHAc] = ACTIONS(4983), + [anon_sym_BSLASHacp] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), + [anon_sym_BSLASHcolor] = ACTIONS(4983), + [anon_sym_BSLASHcolorbox] = ACTIONS(4983), + [anon_sym_BSLASHtextcolor] = ACTIONS(4983), + [anon_sym_BSLASHpagecolor] = ACTIONS(4983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHtext] = ACTIONS(4983), + [anon_sym_BSLASHintertext] = ACTIONS(4983), + [anon_sym_shortintertext] = ACTIONS(4983), }, - [1118] = { - [sym_command_name] = ACTIONS(4959), + [977] = { + [sym_command_name] = ACTIONS(4987), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_BSLASHpart] = ACTIONS(4959), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddpart] = ACTIONS(4959), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHchapter] = ACTIONS(4959), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddchap] = ACTIONS(4959), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsection] = ACTIONS(4959), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddsec] = ACTIONS(4959), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHparagraph] = ACTIONS(4959), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHitem] = ACTIONS(4959), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASHbegin] = ACTIONS(4959), - [anon_sym_BSLASHend] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHiffalse] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4985), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(4985), + [anon_sym_RBRACK] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_BSLASHpart] = ACTIONS(4987), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddpart] = ACTIONS(4987), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), + [anon_sym_BSLASHchapter] = ACTIONS(4987), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddchap] = ACTIONS(4987), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsection] = ACTIONS(4987), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddsec] = ACTIONS(4987), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubsection] = ACTIONS(4987), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHparagraph] = ACTIONS(4987), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), + [anon_sym_BSLASHitem] = ACTIONS(4987), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4985), + [sym_word] = ACTIONS(4987), + [sym_placeholder] = ACTIONS(4985), + [anon_sym_PLUS] = ACTIONS(4987), + [anon_sym_DASH] = ACTIONS(4987), + [anon_sym_STAR] = ACTIONS(4987), + [anon_sym_SLASH] = ACTIONS(4987), + [anon_sym_CARET] = ACTIONS(4987), + [anon_sym__] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym_GT] = ACTIONS(4987), + [anon_sym_BANG] = ACTIONS(4987), + [anon_sym_PIPE] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_SQUOTE] = ACTIONS(4987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(4987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4985), + [anon_sym_BSLASHbegin] = ACTIONS(4987), + [anon_sym_BSLASHusepackage] = ACTIONS(4987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), + [anon_sym_BSLASHinclude] = ACTIONS(4987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), + [anon_sym_BSLASHinput] = ACTIONS(4987), + [anon_sym_BSLASHsubfile] = ACTIONS(4987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), + [anon_sym_BSLASHbibliography] = ACTIONS(4987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), + [anon_sym_BSLASHincludesvg] = ACTIONS(4987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), + [anon_sym_BSLASHimport] = ACTIONS(4987), + [anon_sym_BSLASHsubimport] = ACTIONS(4987), + [anon_sym_BSLASHinputfrom] = ACTIONS(4987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), + [anon_sym_BSLASHincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHcaption] = ACTIONS(4987), + [anon_sym_BSLASHcite] = ACTIONS(4987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCite] = ACTIONS(4987), + [anon_sym_BSLASHnocite] = ACTIONS(4987), + [anon_sym_BSLASHcitet] = ACTIONS(4987), + [anon_sym_BSLASHcitep] = ACTIONS(4987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteauthor] = ACTIONS(4987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitetitle] = ACTIONS(4987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteyear] = ACTIONS(4987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitedate] = ACTIONS(4987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteurl] = ACTIONS(4987), + [anon_sym_BSLASHfullcite] = ACTIONS(4987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), + [anon_sym_BSLASHcitealt] = ACTIONS(4987), + [anon_sym_BSLASHcitealp] = ACTIONS(4987), + [anon_sym_BSLASHcitetext] = ACTIONS(4987), + [anon_sym_BSLASHparencite] = ACTIONS(4987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHParencite] = ACTIONS(4987), + [anon_sym_BSLASHfootcite] = ACTIONS(4987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), + [anon_sym_BSLASHtextcite] = ACTIONS(4987), + [anon_sym_BSLASHTextcite] = ACTIONS(4987), + [anon_sym_BSLASHsmartcite] = ACTIONS(4987), + [anon_sym_BSLASHSmartcite] = ACTIONS(4987), + [anon_sym_BSLASHsupercite] = ACTIONS(4987), + [anon_sym_BSLASHautocite] = ACTIONS(4987), + [anon_sym_BSLASHAutocite] = ACTIONS(4987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHvolcite] = ACTIONS(4987), + [anon_sym_BSLASHVolcite] = ACTIONS(4987), + [anon_sym_BSLASHpvolcite] = ACTIONS(4987), + [anon_sym_BSLASHPvolcite] = ACTIONS(4987), + [anon_sym_BSLASHfvolcite] = ACTIONS(4987), + [anon_sym_BSLASHftvolcite] = ACTIONS(4987), + [anon_sym_BSLASHsvolcite] = ACTIONS(4987), + [anon_sym_BSLASHSvolcite] = ACTIONS(4987), + [anon_sym_BSLASHtvolcite] = ACTIONS(4987), + [anon_sym_BSLASHTvolcite] = ACTIONS(4987), + [anon_sym_BSLASHavolcite] = ACTIONS(4987), + [anon_sym_BSLASHAvolcite] = ACTIONS(4987), + [anon_sym_BSLASHnotecite] = ACTIONS(4987), + [anon_sym_BSLASHNotecite] = ACTIONS(4987), + [anon_sym_BSLASHpnotecite] = ACTIONS(4987), + [anon_sym_BSLASHPnotecite] = ACTIONS(4987), + [anon_sym_BSLASHfnotecite] = ACTIONS(4987), + [anon_sym_BSLASHlabel] = ACTIONS(4987), + [anon_sym_BSLASHref] = ACTIONS(4987), + [anon_sym_BSLASHeqref] = ACTIONS(4987), + [anon_sym_BSLASHvref] = ACTIONS(4987), + [anon_sym_BSLASHVref] = ACTIONS(4987), + [anon_sym_BSLASHautoref] = ACTIONS(4987), + [anon_sym_BSLASHpageref] = ACTIONS(4987), + [anon_sym_BSLASHcref] = ACTIONS(4987), + [anon_sym_BSLASHCref] = ACTIONS(4987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnameCref] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHlabelcref] = ACTIONS(4987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCrefrange] = ACTIONS(4987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnewlabel] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), + [anon_sym_BSLASHdef] = ACTIONS(4987), + [anon_sym_BSLASHlet] = ACTIONS(4987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), + [anon_sym_BSLASHgls] = ACTIONS(4987), + [anon_sym_BSLASHGls] = ACTIONS(4987), + [anon_sym_BSLASHGLS] = ACTIONS(4987), + [anon_sym_BSLASHglspl] = ACTIONS(4987), + [anon_sym_BSLASHGlspl] = ACTIONS(4987), + [anon_sym_BSLASHGLSpl] = ACTIONS(4987), + [anon_sym_BSLASHglsdisp] = ACTIONS(4987), + [anon_sym_BSLASHglslink] = ACTIONS(4987), + [anon_sym_BSLASHglstext] = ACTIONS(4987), + [anon_sym_BSLASHGlstext] = ACTIONS(4987), + [anon_sym_BSLASHGLStext] = ACTIONS(4987), + [anon_sym_BSLASHglsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), + [anon_sym_BSLASHglsplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSplural] = ACTIONS(4987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHglsname] = ACTIONS(4987), + [anon_sym_BSLASHGlsname] = ACTIONS(4987), + [anon_sym_BSLASHGLSname] = ACTIONS(4987), + [anon_sym_BSLASHglssymbol] = ACTIONS(4987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), + [anon_sym_BSLASHglsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), + [anon_sym_BSLASHglsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), + [anon_sym_BSLASHglsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), + [anon_sym_BSLASHglsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), + [anon_sym_BSLASHglsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), + [anon_sym_BSLASHnewacronym] = ACTIONS(4987), + [anon_sym_BSLASHacrshort] = ACTIONS(4987), + [anon_sym_BSLASHAcrshort] = ACTIONS(4987), + [anon_sym_BSLASHACRshort] = ACTIONS(4987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), + [anon_sym_BSLASHacrlong] = ACTIONS(4987), + [anon_sym_BSLASHAcrlong] = ACTIONS(4987), + [anon_sym_BSLASHACRlong] = ACTIONS(4987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), + [anon_sym_BSLASHacrfull] = ACTIONS(4987), + [anon_sym_BSLASHAcrfull] = ACTIONS(4987), + [anon_sym_BSLASHACRfull] = ACTIONS(4987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), + [anon_sym_BSLASHacs] = ACTIONS(4987), + [anon_sym_BSLASHAcs] = ACTIONS(4987), + [anon_sym_BSLASHacsp] = ACTIONS(4987), + [anon_sym_BSLASHAcsp] = ACTIONS(4987), + [anon_sym_BSLASHacl] = ACTIONS(4987), + [anon_sym_BSLASHAcl] = ACTIONS(4987), + [anon_sym_BSLASHaclp] = ACTIONS(4987), + [anon_sym_BSLASHAclp] = ACTIONS(4987), + [anon_sym_BSLASHacf] = ACTIONS(4987), + [anon_sym_BSLASHAcf] = ACTIONS(4987), + [anon_sym_BSLASHacfp] = ACTIONS(4987), + [anon_sym_BSLASHAcfp] = ACTIONS(4987), + [anon_sym_BSLASHac] = ACTIONS(4987), + [anon_sym_BSLASHAc] = ACTIONS(4987), + [anon_sym_BSLASHacp] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), + [anon_sym_BSLASHcolor] = ACTIONS(4987), + [anon_sym_BSLASHcolorbox] = ACTIONS(4987), + [anon_sym_BSLASHtextcolor] = ACTIONS(4987), + [anon_sym_BSLASHpagecolor] = ACTIONS(4987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), + [anon_sym_BSLASHtext] = ACTIONS(4987), + [anon_sym_BSLASHintertext] = ACTIONS(4987), + [anon_sym_shortintertext] = ACTIONS(4987), }, - [1119] = { + [978] = { + [sym_command_name] = ACTIONS(4991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4989), + [anon_sym_RPAREN] = ACTIONS(4989), + [anon_sym_LBRACK] = ACTIONS(4989), + [anon_sym_RBRACK] = ACTIONS(4989), + [anon_sym_COMMA] = ACTIONS(4989), + [anon_sym_EQ] = ACTIONS(4989), + [anon_sym_BSLASHpart] = ACTIONS(4991), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddpart] = ACTIONS(4991), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), + [anon_sym_BSLASHchapter] = ACTIONS(4991), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddchap] = ACTIONS(4991), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsection] = ACTIONS(4991), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddsec] = ACTIONS(4991), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubsection] = ACTIONS(4991), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHparagraph] = ACTIONS(4991), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), + [anon_sym_BSLASHitem] = ACTIONS(4991), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(4989), + [sym_word] = ACTIONS(4991), + [sym_placeholder] = ACTIONS(4989), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym__] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_BANG] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_SQUOTE] = ACTIONS(4991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), + [anon_sym_DOLLAR] = ACTIONS(4991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4989), + [anon_sym_BSLASHbegin] = ACTIONS(4991), + [anon_sym_BSLASHusepackage] = ACTIONS(4991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), + [anon_sym_BSLASHinclude] = ACTIONS(4991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), + [anon_sym_BSLASHinput] = ACTIONS(4991), + [anon_sym_BSLASHsubfile] = ACTIONS(4991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), + [anon_sym_BSLASHbibliography] = ACTIONS(4991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), + [anon_sym_BSLASHincludesvg] = ACTIONS(4991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), + [anon_sym_BSLASHimport] = ACTIONS(4991), + [anon_sym_BSLASHsubimport] = ACTIONS(4991), + [anon_sym_BSLASHinputfrom] = ACTIONS(4991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), + [anon_sym_BSLASHincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHcaption] = ACTIONS(4991), + [anon_sym_BSLASHcite] = ACTIONS(4991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCite] = ACTIONS(4991), + [anon_sym_BSLASHnocite] = ACTIONS(4991), + [anon_sym_BSLASHcitet] = ACTIONS(4991), + [anon_sym_BSLASHcitep] = ACTIONS(4991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteauthor] = ACTIONS(4991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitetitle] = ACTIONS(4991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteyear] = ACTIONS(4991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitedate] = ACTIONS(4991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteurl] = ACTIONS(4991), + [anon_sym_BSLASHfullcite] = ACTIONS(4991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), + [anon_sym_BSLASHcitealt] = ACTIONS(4991), + [anon_sym_BSLASHcitealp] = ACTIONS(4991), + [anon_sym_BSLASHcitetext] = ACTIONS(4991), + [anon_sym_BSLASHparencite] = ACTIONS(4991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHParencite] = ACTIONS(4991), + [anon_sym_BSLASHfootcite] = ACTIONS(4991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), + [anon_sym_BSLASHtextcite] = ACTIONS(4991), + [anon_sym_BSLASHTextcite] = ACTIONS(4991), + [anon_sym_BSLASHsmartcite] = ACTIONS(4991), + [anon_sym_BSLASHSmartcite] = ACTIONS(4991), + [anon_sym_BSLASHsupercite] = ACTIONS(4991), + [anon_sym_BSLASHautocite] = ACTIONS(4991), + [anon_sym_BSLASHAutocite] = ACTIONS(4991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHvolcite] = ACTIONS(4991), + [anon_sym_BSLASHVolcite] = ACTIONS(4991), + [anon_sym_BSLASHpvolcite] = ACTIONS(4991), + [anon_sym_BSLASHPvolcite] = ACTIONS(4991), + [anon_sym_BSLASHfvolcite] = ACTIONS(4991), + [anon_sym_BSLASHftvolcite] = ACTIONS(4991), + [anon_sym_BSLASHsvolcite] = ACTIONS(4991), + [anon_sym_BSLASHSvolcite] = ACTIONS(4991), + [anon_sym_BSLASHtvolcite] = ACTIONS(4991), + [anon_sym_BSLASHTvolcite] = ACTIONS(4991), + [anon_sym_BSLASHavolcite] = ACTIONS(4991), + [anon_sym_BSLASHAvolcite] = ACTIONS(4991), + [anon_sym_BSLASHnotecite] = ACTIONS(4991), + [anon_sym_BSLASHNotecite] = ACTIONS(4991), + [anon_sym_BSLASHpnotecite] = ACTIONS(4991), + [anon_sym_BSLASHPnotecite] = ACTIONS(4991), + [anon_sym_BSLASHfnotecite] = ACTIONS(4991), + [anon_sym_BSLASHlabel] = ACTIONS(4991), + [anon_sym_BSLASHref] = ACTIONS(4991), + [anon_sym_BSLASHeqref] = ACTIONS(4991), + [anon_sym_BSLASHvref] = ACTIONS(4991), + [anon_sym_BSLASHVref] = ACTIONS(4991), + [anon_sym_BSLASHautoref] = ACTIONS(4991), + [anon_sym_BSLASHpageref] = ACTIONS(4991), + [anon_sym_BSLASHcref] = ACTIONS(4991), + [anon_sym_BSLASHCref] = ACTIONS(4991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnameCref] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHlabelcref] = ACTIONS(4991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCrefrange] = ACTIONS(4991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnewlabel] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), + [anon_sym_BSLASHdef] = ACTIONS(4991), + [anon_sym_BSLASHlet] = ACTIONS(4991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), + [anon_sym_BSLASHgls] = ACTIONS(4991), + [anon_sym_BSLASHGls] = ACTIONS(4991), + [anon_sym_BSLASHGLS] = ACTIONS(4991), + [anon_sym_BSLASHglspl] = ACTIONS(4991), + [anon_sym_BSLASHGlspl] = ACTIONS(4991), + [anon_sym_BSLASHGLSpl] = ACTIONS(4991), + [anon_sym_BSLASHglsdisp] = ACTIONS(4991), + [anon_sym_BSLASHglslink] = ACTIONS(4991), + [anon_sym_BSLASHglstext] = ACTIONS(4991), + [anon_sym_BSLASHGlstext] = ACTIONS(4991), + [anon_sym_BSLASHGLStext] = ACTIONS(4991), + [anon_sym_BSLASHglsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), + [anon_sym_BSLASHglsplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSplural] = ACTIONS(4991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHglsname] = ACTIONS(4991), + [anon_sym_BSLASHGlsname] = ACTIONS(4991), + [anon_sym_BSLASHGLSname] = ACTIONS(4991), + [anon_sym_BSLASHglssymbol] = ACTIONS(4991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), + [anon_sym_BSLASHglsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), + [anon_sym_BSLASHglsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), + [anon_sym_BSLASHglsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), + [anon_sym_BSLASHglsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), + [anon_sym_BSLASHglsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), + [anon_sym_BSLASHnewacronym] = ACTIONS(4991), + [anon_sym_BSLASHacrshort] = ACTIONS(4991), + [anon_sym_BSLASHAcrshort] = ACTIONS(4991), + [anon_sym_BSLASHACRshort] = ACTIONS(4991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), + [anon_sym_BSLASHacrlong] = ACTIONS(4991), + [anon_sym_BSLASHAcrlong] = ACTIONS(4991), + [anon_sym_BSLASHACRlong] = ACTIONS(4991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), + [anon_sym_BSLASHacrfull] = ACTIONS(4991), + [anon_sym_BSLASHAcrfull] = ACTIONS(4991), + [anon_sym_BSLASHACRfull] = ACTIONS(4991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), + [anon_sym_BSLASHacs] = ACTIONS(4991), + [anon_sym_BSLASHAcs] = ACTIONS(4991), + [anon_sym_BSLASHacsp] = ACTIONS(4991), + [anon_sym_BSLASHAcsp] = ACTIONS(4991), + [anon_sym_BSLASHacl] = ACTIONS(4991), + [anon_sym_BSLASHAcl] = ACTIONS(4991), + [anon_sym_BSLASHaclp] = ACTIONS(4991), + [anon_sym_BSLASHAclp] = ACTIONS(4991), + [anon_sym_BSLASHacf] = ACTIONS(4991), + [anon_sym_BSLASHAcf] = ACTIONS(4991), + [anon_sym_BSLASHacfp] = ACTIONS(4991), + [anon_sym_BSLASHAcfp] = ACTIONS(4991), + [anon_sym_BSLASHac] = ACTIONS(4991), + [anon_sym_BSLASHAc] = ACTIONS(4991), + [anon_sym_BSLASHacp] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), + [anon_sym_BSLASHcolor] = ACTIONS(4991), + [anon_sym_BSLASHcolorbox] = ACTIONS(4991), + [anon_sym_BSLASHtextcolor] = ACTIONS(4991), + [anon_sym_BSLASHpagecolor] = ACTIONS(4991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHtext] = ACTIONS(4991), + [anon_sym_BSLASHintertext] = ACTIONS(4991), + [anon_sym_shortintertext] = ACTIONS(4991), + }, + [979] = { [sym_command_name] = ACTIONS(4995), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -339159,8 +302464,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(4995), [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4993), [anon_sym_BSLASHbegin] = ACTIONS(4995), - [anon_sym_BSLASHend] = ACTIONS(4995), [anon_sym_BSLASHusepackage] = ACTIONS(4995), [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), @@ -339374,14803 +302679,25851 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(4995), [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), + [anon_sym_BSLASHtext] = ACTIONS(4995), + [anon_sym_BSLASHintertext] = ACTIONS(4995), + [anon_sym_shortintertext] = ACTIONS(4995), }, - [1120] = { - [sym_command_name] = ACTIONS(4949), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4947), - [anon_sym_RBRACK] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_BSLASHpart] = ACTIONS(4949), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddpart] = ACTIONS(4949), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4947), - [anon_sym_BSLASHchapter] = ACTIONS(4949), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddchap] = ACTIONS(4949), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsection] = ACTIONS(4949), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddsec] = ACTIONS(4949), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubsection] = ACTIONS(4949), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4949), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHparagraph] = ACTIONS(4949), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4949), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4947), - [anon_sym_BSLASHitem] = ACTIONS(4949), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [sym_word] = ACTIONS(4949), - [sym_placeholder] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4949), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym__] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4949), - [anon_sym_BANG] = ACTIONS(4949), - [anon_sym_PIPE] = ACTIONS(4949), - [anon_sym_COLON] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4949), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4947), - [anon_sym_BSLASHbegin] = ACTIONS(4949), - [anon_sym_BSLASHend] = ACTIONS(4949), - [anon_sym_BSLASHusepackage] = ACTIONS(4949), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4949), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4949), - [anon_sym_BSLASHinclude] = ACTIONS(4949), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4949), - [anon_sym_BSLASHinput] = ACTIONS(4949), - [anon_sym_BSLASHsubfile] = ACTIONS(4949), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4949), - [anon_sym_BSLASHbibliography] = ACTIONS(4949), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4949), - [anon_sym_BSLASHincludesvg] = ACTIONS(4949), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4949), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4949), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4949), - [anon_sym_BSLASHimport] = ACTIONS(4949), - [anon_sym_BSLASHsubimport] = ACTIONS(4949), - [anon_sym_BSLASHinputfrom] = ACTIONS(4949), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4949), - [anon_sym_BSLASHincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHcaption] = ACTIONS(4949), - [anon_sym_BSLASHcite] = ACTIONS(4949), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCite] = ACTIONS(4949), - [anon_sym_BSLASHnocite] = ACTIONS(4949), - [anon_sym_BSLASHcitet] = ACTIONS(4949), - [anon_sym_BSLASHcitep] = ACTIONS(4949), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteyear] = ACTIONS(4949), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitedate] = ACTIONS(4949), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteurl] = ACTIONS(4949), - [anon_sym_BSLASHfullcite] = ACTIONS(4949), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4949), - [anon_sym_BSLASHcitealt] = ACTIONS(4949), - [anon_sym_BSLASHcitealp] = ACTIONS(4949), - [anon_sym_BSLASHcitetext] = ACTIONS(4949), - [anon_sym_BSLASHparencite] = ACTIONS(4949), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHParencite] = ACTIONS(4949), - [anon_sym_BSLASHfootcite] = ACTIONS(4949), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4949), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4949), - [anon_sym_BSLASHtextcite] = ACTIONS(4949), - [anon_sym_BSLASHTextcite] = ACTIONS(4949), - [anon_sym_BSLASHsmartcite] = ACTIONS(4949), - [anon_sym_BSLASHSmartcite] = ACTIONS(4949), - [anon_sym_BSLASHsupercite] = ACTIONS(4949), - [anon_sym_BSLASHautocite] = ACTIONS(4949), - [anon_sym_BSLASHAutocite] = ACTIONS(4949), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHvolcite] = ACTIONS(4949), - [anon_sym_BSLASHVolcite] = ACTIONS(4949), - [anon_sym_BSLASHpvolcite] = ACTIONS(4949), - [anon_sym_BSLASHPvolcite] = ACTIONS(4949), - [anon_sym_BSLASHfvolcite] = ACTIONS(4949), - [anon_sym_BSLASHftvolcite] = ACTIONS(4949), - [anon_sym_BSLASHsvolcite] = ACTIONS(4949), - [anon_sym_BSLASHSvolcite] = ACTIONS(4949), - [anon_sym_BSLASHtvolcite] = ACTIONS(4949), - [anon_sym_BSLASHTvolcite] = ACTIONS(4949), - [anon_sym_BSLASHavolcite] = ACTIONS(4949), - [anon_sym_BSLASHAvolcite] = ACTIONS(4949), - [anon_sym_BSLASHnotecite] = ACTIONS(4949), - [anon_sym_BSLASHNotecite] = ACTIONS(4949), - [anon_sym_BSLASHpnotecite] = ACTIONS(4949), - [anon_sym_BSLASHPnotecite] = ACTIONS(4949), - [anon_sym_BSLASHfnotecite] = ACTIONS(4949), - [anon_sym_BSLASHlabel] = ACTIONS(4949), - [anon_sym_BSLASHref] = ACTIONS(4949), - [anon_sym_BSLASHeqref] = ACTIONS(4949), - [anon_sym_BSLASHvref] = ACTIONS(4949), - [anon_sym_BSLASHVref] = ACTIONS(4949), - [anon_sym_BSLASHautoref] = ACTIONS(4949), - [anon_sym_BSLASHpageref] = ACTIONS(4949), - [anon_sym_BSLASHcref] = ACTIONS(4949), - [anon_sym_BSLASHCref] = ACTIONS(4949), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnameCref] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHlabelcref] = ACTIONS(4949), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnewlabel] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4947), - [anon_sym_BSLASHdef] = ACTIONS(4949), - [anon_sym_BSLASHlet] = ACTIONS(4949), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4949), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4949), - [anon_sym_BSLASHgls] = ACTIONS(4949), - [anon_sym_BSLASHGls] = ACTIONS(4949), - [anon_sym_BSLASHGLS] = ACTIONS(4949), - [anon_sym_BSLASHglspl] = ACTIONS(4949), - [anon_sym_BSLASHGlspl] = ACTIONS(4949), - [anon_sym_BSLASHGLSpl] = ACTIONS(4949), - [anon_sym_BSLASHglsdisp] = ACTIONS(4949), - [anon_sym_BSLASHglslink] = ACTIONS(4949), - [anon_sym_BSLASHglstext] = ACTIONS(4949), - [anon_sym_BSLASHGlstext] = ACTIONS(4949), - [anon_sym_BSLASHGLStext] = ACTIONS(4949), - [anon_sym_BSLASHglsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4949), - [anon_sym_BSLASHglsplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSplural] = ACTIONS(4949), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHglsname] = ACTIONS(4949), - [anon_sym_BSLASHGlsname] = ACTIONS(4949), - [anon_sym_BSLASHGLSname] = ACTIONS(4949), - [anon_sym_BSLASHglssymbol] = ACTIONS(4949), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4949), - [anon_sym_BSLASHglsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4949), - [anon_sym_BSLASHglsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4949), - [anon_sym_BSLASHglsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4949), - [anon_sym_BSLASHglsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4949), - [anon_sym_BSLASHglsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4949), - [anon_sym_BSLASHnewacronym] = ACTIONS(4949), - [anon_sym_BSLASHacrshort] = ACTIONS(4949), - [anon_sym_BSLASHAcrshort] = ACTIONS(4949), - [anon_sym_BSLASHACRshort] = ACTIONS(4949), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4949), - [anon_sym_BSLASHacrlong] = ACTIONS(4949), - [anon_sym_BSLASHAcrlong] = ACTIONS(4949), - [anon_sym_BSLASHACRlong] = ACTIONS(4949), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4949), - [anon_sym_BSLASHacrfull] = ACTIONS(4949), - [anon_sym_BSLASHAcrfull] = ACTIONS(4949), - [anon_sym_BSLASHACRfull] = ACTIONS(4949), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4949), - [anon_sym_BSLASHacs] = ACTIONS(4949), - [anon_sym_BSLASHAcs] = ACTIONS(4949), - [anon_sym_BSLASHacsp] = ACTIONS(4949), - [anon_sym_BSLASHAcsp] = ACTIONS(4949), - [anon_sym_BSLASHacl] = ACTIONS(4949), - [anon_sym_BSLASHAcl] = ACTIONS(4949), - [anon_sym_BSLASHaclp] = ACTIONS(4949), - [anon_sym_BSLASHAclp] = ACTIONS(4949), - [anon_sym_BSLASHacf] = ACTIONS(4949), - [anon_sym_BSLASHAcf] = ACTIONS(4949), - [anon_sym_BSLASHacfp] = ACTIONS(4949), - [anon_sym_BSLASHAcfp] = ACTIONS(4949), - [anon_sym_BSLASHac] = ACTIONS(4949), - [anon_sym_BSLASHAc] = ACTIONS(4949), - [anon_sym_BSLASHacp] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4949), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4949), - [anon_sym_BSLASHcolor] = ACTIONS(4949), - [anon_sym_BSLASHcolorbox] = ACTIONS(4949), - [anon_sym_BSLASHtextcolor] = ACTIONS(4949), - [anon_sym_BSLASHpagecolor] = ACTIONS(4949), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4949), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4949), + [980] = { + [sym_command_name] = ACTIONS(4999), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_RBRACK] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4997), + [anon_sym_BSLASHpart] = ACTIONS(4999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddpart] = ACTIONS(4999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), + [anon_sym_BSLASHchapter] = ACTIONS(4999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddchap] = ACTIONS(4999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsection] = ACTIONS(4999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddsec] = ACTIONS(4999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubsection] = ACTIONS(4999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHparagraph] = ACTIONS(4999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), + [anon_sym_BSLASHitem] = ACTIONS(4999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4997), + [sym_word] = ACTIONS(4999), + [sym_placeholder] = ACTIONS(4997), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym__] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_BANG] = ACTIONS(4999), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_SQUOTE] = ACTIONS(4999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), + [anon_sym_DOLLAR] = ACTIONS(4999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4997), + [anon_sym_BSLASHbegin] = ACTIONS(4999), + [anon_sym_BSLASHusepackage] = ACTIONS(4999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), + [anon_sym_BSLASHinclude] = ACTIONS(4999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), + [anon_sym_BSLASHinput] = ACTIONS(4999), + [anon_sym_BSLASHsubfile] = ACTIONS(4999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), + [anon_sym_BSLASHbibliography] = ACTIONS(4999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), + [anon_sym_BSLASHincludesvg] = ACTIONS(4999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), + [anon_sym_BSLASHimport] = ACTIONS(4999), + [anon_sym_BSLASHsubimport] = ACTIONS(4999), + [anon_sym_BSLASHinputfrom] = ACTIONS(4999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), + [anon_sym_BSLASHincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHcaption] = ACTIONS(4999), + [anon_sym_BSLASHcite] = ACTIONS(4999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCite] = ACTIONS(4999), + [anon_sym_BSLASHnocite] = ACTIONS(4999), + [anon_sym_BSLASHcitet] = ACTIONS(4999), + [anon_sym_BSLASHcitep] = ACTIONS(4999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteauthor] = ACTIONS(4999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitetitle] = ACTIONS(4999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteyear] = ACTIONS(4999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitedate] = ACTIONS(4999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteurl] = ACTIONS(4999), + [anon_sym_BSLASHfullcite] = ACTIONS(4999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), + [anon_sym_BSLASHcitealt] = ACTIONS(4999), + [anon_sym_BSLASHcitealp] = ACTIONS(4999), + [anon_sym_BSLASHcitetext] = ACTIONS(4999), + [anon_sym_BSLASHparencite] = ACTIONS(4999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHParencite] = ACTIONS(4999), + [anon_sym_BSLASHfootcite] = ACTIONS(4999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), + [anon_sym_BSLASHtextcite] = ACTIONS(4999), + [anon_sym_BSLASHTextcite] = ACTIONS(4999), + [anon_sym_BSLASHsmartcite] = ACTIONS(4999), + [anon_sym_BSLASHSmartcite] = ACTIONS(4999), + [anon_sym_BSLASHsupercite] = ACTIONS(4999), + [anon_sym_BSLASHautocite] = ACTIONS(4999), + [anon_sym_BSLASHAutocite] = ACTIONS(4999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHvolcite] = ACTIONS(4999), + [anon_sym_BSLASHVolcite] = ACTIONS(4999), + [anon_sym_BSLASHpvolcite] = ACTIONS(4999), + [anon_sym_BSLASHPvolcite] = ACTIONS(4999), + [anon_sym_BSLASHfvolcite] = ACTIONS(4999), + [anon_sym_BSLASHftvolcite] = ACTIONS(4999), + [anon_sym_BSLASHsvolcite] = ACTIONS(4999), + [anon_sym_BSLASHSvolcite] = ACTIONS(4999), + [anon_sym_BSLASHtvolcite] = ACTIONS(4999), + [anon_sym_BSLASHTvolcite] = ACTIONS(4999), + [anon_sym_BSLASHavolcite] = ACTIONS(4999), + [anon_sym_BSLASHAvolcite] = ACTIONS(4999), + [anon_sym_BSLASHnotecite] = ACTIONS(4999), + [anon_sym_BSLASHNotecite] = ACTIONS(4999), + [anon_sym_BSLASHpnotecite] = ACTIONS(4999), + [anon_sym_BSLASHPnotecite] = ACTIONS(4999), + [anon_sym_BSLASHfnotecite] = ACTIONS(4999), + [anon_sym_BSLASHlabel] = ACTIONS(4999), + [anon_sym_BSLASHref] = ACTIONS(4999), + [anon_sym_BSLASHeqref] = ACTIONS(4999), + [anon_sym_BSLASHvref] = ACTIONS(4999), + [anon_sym_BSLASHVref] = ACTIONS(4999), + [anon_sym_BSLASHautoref] = ACTIONS(4999), + [anon_sym_BSLASHpageref] = ACTIONS(4999), + [anon_sym_BSLASHcref] = ACTIONS(4999), + [anon_sym_BSLASHCref] = ACTIONS(4999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnameCref] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHlabelcref] = ACTIONS(4999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCrefrange] = ACTIONS(4999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnewlabel] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), + [anon_sym_BSLASHdef] = ACTIONS(4999), + [anon_sym_BSLASHlet] = ACTIONS(4999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), + [anon_sym_BSLASHgls] = ACTIONS(4999), + [anon_sym_BSLASHGls] = ACTIONS(4999), + [anon_sym_BSLASHGLS] = ACTIONS(4999), + [anon_sym_BSLASHglspl] = ACTIONS(4999), + [anon_sym_BSLASHGlspl] = ACTIONS(4999), + [anon_sym_BSLASHGLSpl] = ACTIONS(4999), + [anon_sym_BSLASHglsdisp] = ACTIONS(4999), + [anon_sym_BSLASHglslink] = ACTIONS(4999), + [anon_sym_BSLASHglstext] = ACTIONS(4999), + [anon_sym_BSLASHGlstext] = ACTIONS(4999), + [anon_sym_BSLASHGLStext] = ACTIONS(4999), + [anon_sym_BSLASHglsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), + [anon_sym_BSLASHglsplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSplural] = ACTIONS(4999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHglsname] = ACTIONS(4999), + [anon_sym_BSLASHGlsname] = ACTIONS(4999), + [anon_sym_BSLASHGLSname] = ACTIONS(4999), + [anon_sym_BSLASHglssymbol] = ACTIONS(4999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), + [anon_sym_BSLASHglsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), + [anon_sym_BSLASHglsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), + [anon_sym_BSLASHglsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), + [anon_sym_BSLASHglsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), + [anon_sym_BSLASHglsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), + [anon_sym_BSLASHnewacronym] = ACTIONS(4999), + [anon_sym_BSLASHacrshort] = ACTIONS(4999), + [anon_sym_BSLASHAcrshort] = ACTIONS(4999), + [anon_sym_BSLASHACRshort] = ACTIONS(4999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), + [anon_sym_BSLASHacrlong] = ACTIONS(4999), + [anon_sym_BSLASHAcrlong] = ACTIONS(4999), + [anon_sym_BSLASHACRlong] = ACTIONS(4999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), + [anon_sym_BSLASHacrfull] = ACTIONS(4999), + [anon_sym_BSLASHAcrfull] = ACTIONS(4999), + [anon_sym_BSLASHACRfull] = ACTIONS(4999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), + [anon_sym_BSLASHacs] = ACTIONS(4999), + [anon_sym_BSLASHAcs] = ACTIONS(4999), + [anon_sym_BSLASHacsp] = ACTIONS(4999), + [anon_sym_BSLASHAcsp] = ACTIONS(4999), + [anon_sym_BSLASHacl] = ACTIONS(4999), + [anon_sym_BSLASHAcl] = ACTIONS(4999), + [anon_sym_BSLASHaclp] = ACTIONS(4999), + [anon_sym_BSLASHAclp] = ACTIONS(4999), + [anon_sym_BSLASHacf] = ACTIONS(4999), + [anon_sym_BSLASHAcf] = ACTIONS(4999), + [anon_sym_BSLASHacfp] = ACTIONS(4999), + [anon_sym_BSLASHAcfp] = ACTIONS(4999), + [anon_sym_BSLASHac] = ACTIONS(4999), + [anon_sym_BSLASHAc] = ACTIONS(4999), + [anon_sym_BSLASHacp] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), + [anon_sym_BSLASHcolor] = ACTIONS(4999), + [anon_sym_BSLASHcolorbox] = ACTIONS(4999), + [anon_sym_BSLASHtextcolor] = ACTIONS(4999), + [anon_sym_BSLASHpagecolor] = ACTIONS(4999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), + [anon_sym_BSLASHtext] = ACTIONS(4999), + [anon_sym_BSLASHintertext] = ACTIONS(4999), + [anon_sym_shortintertext] = ACTIONS(4999), }, - [1121] = { - [sym_command_name] = ACTIONS(5185), + [981] = { + [sym_command_name] = ACTIONS(5003), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_BSLASHpart] = ACTIONS(5185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddpart] = ACTIONS(5185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHchapter] = ACTIONS(5185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddchap] = ACTIONS(5185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsection] = ACTIONS(5185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddsec] = ACTIONS(5185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHparagraph] = ACTIONS(5185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHitem] = ACTIONS(5185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASHbegin] = ACTIONS(5185), - [anon_sym_BSLASHend] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - }, - [1122] = { - [sym_command_name] = ACTIONS(5353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_BSLASHpart] = ACTIONS(5353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddpart] = ACTIONS(5353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHchapter] = ACTIONS(5353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddchap] = ACTIONS(5353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsection] = ACTIONS(5353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddsec] = ACTIONS(5353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHparagraph] = ACTIONS(5353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHitem] = ACTIONS(5353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASHbegin] = ACTIONS(5353), - [anon_sym_BSLASHend] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), - }, - [1123] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_BSLASHpart] = ACTIONS(5143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddpart] = ACTIONS(5143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHchapter] = ACTIONS(5143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddchap] = ACTIONS(5143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsection] = ACTIONS(5143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddsec] = ACTIONS(5143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHparagraph] = ACTIONS(5143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHitem] = ACTIONS(5143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASHbegin] = ACTIONS(5143), - [anon_sym_BSLASHend] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), + [anon_sym_BSLASHiffalse] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_RBRACK] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(5001), + [anon_sym_BSLASHpart] = ACTIONS(5003), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddpart] = ACTIONS(5003), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), + [anon_sym_BSLASHchapter] = ACTIONS(5003), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddchap] = ACTIONS(5003), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsection] = ACTIONS(5003), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddsec] = ACTIONS(5003), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubsection] = ACTIONS(5003), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHparagraph] = ACTIONS(5003), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), + [anon_sym_BSLASHitem] = ACTIONS(5003), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5001), + [sym_word] = ACTIONS(5003), + [sym_placeholder] = ACTIONS(5001), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym__] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_BANG] = ACTIONS(5003), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_SQUOTE] = ACTIONS(5003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), + [anon_sym_DOLLAR] = ACTIONS(5003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5001), + [anon_sym_BSLASHbegin] = ACTIONS(5003), + [anon_sym_BSLASHusepackage] = ACTIONS(5003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), + [anon_sym_BSLASHinclude] = ACTIONS(5003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), + [anon_sym_BSLASHinput] = ACTIONS(5003), + [anon_sym_BSLASHsubfile] = ACTIONS(5003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), + [anon_sym_BSLASHbibliography] = ACTIONS(5003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), + [anon_sym_BSLASHincludesvg] = ACTIONS(5003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), + [anon_sym_BSLASHimport] = ACTIONS(5003), + [anon_sym_BSLASHsubimport] = ACTIONS(5003), + [anon_sym_BSLASHinputfrom] = ACTIONS(5003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), + [anon_sym_BSLASHincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHcaption] = ACTIONS(5003), + [anon_sym_BSLASHcite] = ACTIONS(5003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCite] = ACTIONS(5003), + [anon_sym_BSLASHnocite] = ACTIONS(5003), + [anon_sym_BSLASHcitet] = ACTIONS(5003), + [anon_sym_BSLASHcitep] = ACTIONS(5003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteauthor] = ACTIONS(5003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitetitle] = ACTIONS(5003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteyear] = ACTIONS(5003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitedate] = ACTIONS(5003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteurl] = ACTIONS(5003), + [anon_sym_BSLASHfullcite] = ACTIONS(5003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), + [anon_sym_BSLASHcitealt] = ACTIONS(5003), + [anon_sym_BSLASHcitealp] = ACTIONS(5003), + [anon_sym_BSLASHcitetext] = ACTIONS(5003), + [anon_sym_BSLASHparencite] = ACTIONS(5003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHParencite] = ACTIONS(5003), + [anon_sym_BSLASHfootcite] = ACTIONS(5003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), + [anon_sym_BSLASHtextcite] = ACTIONS(5003), + [anon_sym_BSLASHTextcite] = ACTIONS(5003), + [anon_sym_BSLASHsmartcite] = ACTIONS(5003), + [anon_sym_BSLASHSmartcite] = ACTIONS(5003), + [anon_sym_BSLASHsupercite] = ACTIONS(5003), + [anon_sym_BSLASHautocite] = ACTIONS(5003), + [anon_sym_BSLASHAutocite] = ACTIONS(5003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHvolcite] = ACTIONS(5003), + [anon_sym_BSLASHVolcite] = ACTIONS(5003), + [anon_sym_BSLASHpvolcite] = ACTIONS(5003), + [anon_sym_BSLASHPvolcite] = ACTIONS(5003), + [anon_sym_BSLASHfvolcite] = ACTIONS(5003), + [anon_sym_BSLASHftvolcite] = ACTIONS(5003), + [anon_sym_BSLASHsvolcite] = ACTIONS(5003), + [anon_sym_BSLASHSvolcite] = ACTIONS(5003), + [anon_sym_BSLASHtvolcite] = ACTIONS(5003), + [anon_sym_BSLASHTvolcite] = ACTIONS(5003), + [anon_sym_BSLASHavolcite] = ACTIONS(5003), + [anon_sym_BSLASHAvolcite] = ACTIONS(5003), + [anon_sym_BSLASHnotecite] = ACTIONS(5003), + [anon_sym_BSLASHNotecite] = ACTIONS(5003), + [anon_sym_BSLASHpnotecite] = ACTIONS(5003), + [anon_sym_BSLASHPnotecite] = ACTIONS(5003), + [anon_sym_BSLASHfnotecite] = ACTIONS(5003), + [anon_sym_BSLASHlabel] = ACTIONS(5003), + [anon_sym_BSLASHref] = ACTIONS(5003), + [anon_sym_BSLASHeqref] = ACTIONS(5003), + [anon_sym_BSLASHvref] = ACTIONS(5003), + [anon_sym_BSLASHVref] = ACTIONS(5003), + [anon_sym_BSLASHautoref] = ACTIONS(5003), + [anon_sym_BSLASHpageref] = ACTIONS(5003), + [anon_sym_BSLASHcref] = ACTIONS(5003), + [anon_sym_BSLASHCref] = ACTIONS(5003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnameCref] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHlabelcref] = ACTIONS(5003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCrefrange] = ACTIONS(5003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnewlabel] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), + [anon_sym_BSLASHdef] = ACTIONS(5003), + [anon_sym_BSLASHlet] = ACTIONS(5003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), + [anon_sym_BSLASHgls] = ACTIONS(5003), + [anon_sym_BSLASHGls] = ACTIONS(5003), + [anon_sym_BSLASHGLS] = ACTIONS(5003), + [anon_sym_BSLASHglspl] = ACTIONS(5003), + [anon_sym_BSLASHGlspl] = ACTIONS(5003), + [anon_sym_BSLASHGLSpl] = ACTIONS(5003), + [anon_sym_BSLASHglsdisp] = ACTIONS(5003), + [anon_sym_BSLASHglslink] = ACTIONS(5003), + [anon_sym_BSLASHglstext] = ACTIONS(5003), + [anon_sym_BSLASHGlstext] = ACTIONS(5003), + [anon_sym_BSLASHGLStext] = ACTIONS(5003), + [anon_sym_BSLASHglsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), + [anon_sym_BSLASHglsplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSplural] = ACTIONS(5003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHglsname] = ACTIONS(5003), + [anon_sym_BSLASHGlsname] = ACTIONS(5003), + [anon_sym_BSLASHGLSname] = ACTIONS(5003), + [anon_sym_BSLASHglssymbol] = ACTIONS(5003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), + [anon_sym_BSLASHglsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), + [anon_sym_BSLASHglsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), + [anon_sym_BSLASHglsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), + [anon_sym_BSLASHglsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), + [anon_sym_BSLASHglsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), + [anon_sym_BSLASHnewacronym] = ACTIONS(5003), + [anon_sym_BSLASHacrshort] = ACTIONS(5003), + [anon_sym_BSLASHAcrshort] = ACTIONS(5003), + [anon_sym_BSLASHACRshort] = ACTIONS(5003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), + [anon_sym_BSLASHacrlong] = ACTIONS(5003), + [anon_sym_BSLASHAcrlong] = ACTIONS(5003), + [anon_sym_BSLASHACRlong] = ACTIONS(5003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), + [anon_sym_BSLASHacrfull] = ACTIONS(5003), + [anon_sym_BSLASHAcrfull] = ACTIONS(5003), + [anon_sym_BSLASHACRfull] = ACTIONS(5003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), + [anon_sym_BSLASHacs] = ACTIONS(5003), + [anon_sym_BSLASHAcs] = ACTIONS(5003), + [anon_sym_BSLASHacsp] = ACTIONS(5003), + [anon_sym_BSLASHAcsp] = ACTIONS(5003), + [anon_sym_BSLASHacl] = ACTIONS(5003), + [anon_sym_BSLASHAcl] = ACTIONS(5003), + [anon_sym_BSLASHaclp] = ACTIONS(5003), + [anon_sym_BSLASHAclp] = ACTIONS(5003), + [anon_sym_BSLASHacf] = ACTIONS(5003), + [anon_sym_BSLASHAcf] = ACTIONS(5003), + [anon_sym_BSLASHacfp] = ACTIONS(5003), + [anon_sym_BSLASHAcfp] = ACTIONS(5003), + [anon_sym_BSLASHac] = ACTIONS(5003), + [anon_sym_BSLASHAc] = ACTIONS(5003), + [anon_sym_BSLASHacp] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), + [anon_sym_BSLASHcolor] = ACTIONS(5003), + [anon_sym_BSLASHcolorbox] = ACTIONS(5003), + [anon_sym_BSLASHtextcolor] = ACTIONS(5003), + [anon_sym_BSLASHpagecolor] = ACTIONS(5003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), + [anon_sym_BSLASHtext] = ACTIONS(5003), + [anon_sym_BSLASHintertext] = ACTIONS(5003), + [anon_sym_shortintertext] = ACTIONS(5003), }, - [1124] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_BSLASHpart] = ACTIONS(5129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddpart] = ACTIONS(5129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHchapter] = ACTIONS(5129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddchap] = ACTIONS(5129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsection] = ACTIONS(5129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddsec] = ACTIONS(5129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHparagraph] = ACTIONS(5129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHitem] = ACTIONS(5129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASHbegin] = ACTIONS(5129), - [anon_sym_BSLASHend] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), + [982] = { + [sym_command_name] = ACTIONS(5013), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5013), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_RBRACK] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_BSLASHpart] = ACTIONS(5013), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddpart] = ACTIONS(5013), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5011), + [anon_sym_BSLASHchapter] = ACTIONS(5013), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddchap] = ACTIONS(5013), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsection] = ACTIONS(5013), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddsec] = ACTIONS(5013), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubsection] = ACTIONS(5013), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5013), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHparagraph] = ACTIONS(5013), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5013), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5011), + [anon_sym_BSLASHitem] = ACTIONS(5013), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5011), + [anon_sym_LBRACE] = ACTIONS(5011), + [sym_word] = ACTIONS(5013), + [sym_placeholder] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5013), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_CARET] = ACTIONS(5013), + [anon_sym__] = ACTIONS(5013), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_PIPE] = ACTIONS(5013), + [anon_sym_COLON] = ACTIONS(5013), + [anon_sym_SQUOTE] = ACTIONS(5013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), + [anon_sym_DOLLAR] = ACTIONS(5013), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5011), + [anon_sym_BSLASHbegin] = ACTIONS(5013), + [anon_sym_BSLASHusepackage] = ACTIONS(5013), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), + [anon_sym_BSLASHinclude] = ACTIONS(5013), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), + [anon_sym_BSLASHinput] = ACTIONS(5013), + [anon_sym_BSLASHsubfile] = ACTIONS(5013), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), + [anon_sym_BSLASHbibliography] = ACTIONS(5013), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), + [anon_sym_BSLASHincludesvg] = ACTIONS(5013), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), + [anon_sym_BSLASHimport] = ACTIONS(5013), + [anon_sym_BSLASHsubimport] = ACTIONS(5013), + [anon_sym_BSLASHinputfrom] = ACTIONS(5013), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), + [anon_sym_BSLASHincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHcaption] = ACTIONS(5013), + [anon_sym_BSLASHcite] = ACTIONS(5013), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCite] = ACTIONS(5013), + [anon_sym_BSLASHnocite] = ACTIONS(5013), + [anon_sym_BSLASHcitet] = ACTIONS(5013), + [anon_sym_BSLASHcitep] = ACTIONS(5013), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteauthor] = ACTIONS(5013), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitetitle] = ACTIONS(5013), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteyear] = ACTIONS(5013), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitedate] = ACTIONS(5013), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteurl] = ACTIONS(5013), + [anon_sym_BSLASHfullcite] = ACTIONS(5013), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), + [anon_sym_BSLASHcitealt] = ACTIONS(5013), + [anon_sym_BSLASHcitealp] = ACTIONS(5013), + [anon_sym_BSLASHcitetext] = ACTIONS(5013), + [anon_sym_BSLASHparencite] = ACTIONS(5013), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHParencite] = ACTIONS(5013), + [anon_sym_BSLASHfootcite] = ACTIONS(5013), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), + [anon_sym_BSLASHtextcite] = ACTIONS(5013), + [anon_sym_BSLASHTextcite] = ACTIONS(5013), + [anon_sym_BSLASHsmartcite] = ACTIONS(5013), + [anon_sym_BSLASHSmartcite] = ACTIONS(5013), + [anon_sym_BSLASHsupercite] = ACTIONS(5013), + [anon_sym_BSLASHautocite] = ACTIONS(5013), + [anon_sym_BSLASHAutocite] = ACTIONS(5013), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHvolcite] = ACTIONS(5013), + [anon_sym_BSLASHVolcite] = ACTIONS(5013), + [anon_sym_BSLASHpvolcite] = ACTIONS(5013), + [anon_sym_BSLASHPvolcite] = ACTIONS(5013), + [anon_sym_BSLASHfvolcite] = ACTIONS(5013), + [anon_sym_BSLASHftvolcite] = ACTIONS(5013), + [anon_sym_BSLASHsvolcite] = ACTIONS(5013), + [anon_sym_BSLASHSvolcite] = ACTIONS(5013), + [anon_sym_BSLASHtvolcite] = ACTIONS(5013), + [anon_sym_BSLASHTvolcite] = ACTIONS(5013), + [anon_sym_BSLASHavolcite] = ACTIONS(5013), + [anon_sym_BSLASHAvolcite] = ACTIONS(5013), + [anon_sym_BSLASHnotecite] = ACTIONS(5013), + [anon_sym_BSLASHNotecite] = ACTIONS(5013), + [anon_sym_BSLASHpnotecite] = ACTIONS(5013), + [anon_sym_BSLASHPnotecite] = ACTIONS(5013), + [anon_sym_BSLASHfnotecite] = ACTIONS(5013), + [anon_sym_BSLASHlabel] = ACTIONS(5013), + [anon_sym_BSLASHref] = ACTIONS(5013), + [anon_sym_BSLASHeqref] = ACTIONS(5013), + [anon_sym_BSLASHvref] = ACTIONS(5013), + [anon_sym_BSLASHVref] = ACTIONS(5013), + [anon_sym_BSLASHautoref] = ACTIONS(5013), + [anon_sym_BSLASHpageref] = ACTIONS(5013), + [anon_sym_BSLASHcref] = ACTIONS(5013), + [anon_sym_BSLASHCref] = ACTIONS(5013), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnameCref] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHlabelcref] = ACTIONS(5013), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCrefrange] = ACTIONS(5013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnewlabel] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), + [anon_sym_BSLASHdef] = ACTIONS(5013), + [anon_sym_BSLASHlet] = ACTIONS(5013), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), + [anon_sym_BSLASHgls] = ACTIONS(5013), + [anon_sym_BSLASHGls] = ACTIONS(5013), + [anon_sym_BSLASHGLS] = ACTIONS(5013), + [anon_sym_BSLASHglspl] = ACTIONS(5013), + [anon_sym_BSLASHGlspl] = ACTIONS(5013), + [anon_sym_BSLASHGLSpl] = ACTIONS(5013), + [anon_sym_BSLASHglsdisp] = ACTIONS(5013), + [anon_sym_BSLASHglslink] = ACTIONS(5013), + [anon_sym_BSLASHglstext] = ACTIONS(5013), + [anon_sym_BSLASHGlstext] = ACTIONS(5013), + [anon_sym_BSLASHGLStext] = ACTIONS(5013), + [anon_sym_BSLASHglsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), + [anon_sym_BSLASHglsplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSplural] = ACTIONS(5013), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHglsname] = ACTIONS(5013), + [anon_sym_BSLASHGlsname] = ACTIONS(5013), + [anon_sym_BSLASHGLSname] = ACTIONS(5013), + [anon_sym_BSLASHglssymbol] = ACTIONS(5013), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), + [anon_sym_BSLASHglsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), + [anon_sym_BSLASHglsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), + [anon_sym_BSLASHglsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), + [anon_sym_BSLASHglsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), + [anon_sym_BSLASHglsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), + [anon_sym_BSLASHnewacronym] = ACTIONS(5013), + [anon_sym_BSLASHacrshort] = ACTIONS(5013), + [anon_sym_BSLASHAcrshort] = ACTIONS(5013), + [anon_sym_BSLASHACRshort] = ACTIONS(5013), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), + [anon_sym_BSLASHacrlong] = ACTIONS(5013), + [anon_sym_BSLASHAcrlong] = ACTIONS(5013), + [anon_sym_BSLASHACRlong] = ACTIONS(5013), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), + [anon_sym_BSLASHacrfull] = ACTIONS(5013), + [anon_sym_BSLASHAcrfull] = ACTIONS(5013), + [anon_sym_BSLASHACRfull] = ACTIONS(5013), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), + [anon_sym_BSLASHacs] = ACTIONS(5013), + [anon_sym_BSLASHAcs] = ACTIONS(5013), + [anon_sym_BSLASHacsp] = ACTIONS(5013), + [anon_sym_BSLASHAcsp] = ACTIONS(5013), + [anon_sym_BSLASHacl] = ACTIONS(5013), + [anon_sym_BSLASHAcl] = ACTIONS(5013), + [anon_sym_BSLASHaclp] = ACTIONS(5013), + [anon_sym_BSLASHAclp] = ACTIONS(5013), + [anon_sym_BSLASHacf] = ACTIONS(5013), + [anon_sym_BSLASHAcf] = ACTIONS(5013), + [anon_sym_BSLASHacfp] = ACTIONS(5013), + [anon_sym_BSLASHAcfp] = ACTIONS(5013), + [anon_sym_BSLASHac] = ACTIONS(5013), + [anon_sym_BSLASHAc] = ACTIONS(5013), + [anon_sym_BSLASHacp] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), + [anon_sym_BSLASHcolor] = ACTIONS(5013), + [anon_sym_BSLASHcolorbox] = ACTIONS(5013), + [anon_sym_BSLASHtextcolor] = ACTIONS(5013), + [anon_sym_BSLASHpagecolor] = ACTIONS(5013), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), + [anon_sym_BSLASHtext] = ACTIONS(5013), + [anon_sym_BSLASHintertext] = ACTIONS(5013), + [anon_sym_shortintertext] = ACTIONS(5013), }, - [1125] = { - [sym_command_name] = ACTIONS(5381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5381), - [anon_sym_LPAREN] = ACTIONS(5379), - [anon_sym_RPAREN] = ACTIONS(5379), - [anon_sym_LBRACK] = ACTIONS(5379), - [anon_sym_RBRACK] = ACTIONS(5379), - [anon_sym_COMMA] = ACTIONS(5379), - [anon_sym_EQ] = ACTIONS(5379), - [anon_sym_BSLASHpart] = ACTIONS(5381), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddpart] = ACTIONS(5381), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5379), - [anon_sym_BSLASHchapter] = ACTIONS(5381), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddchap] = ACTIONS(5381), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsection] = ACTIONS(5381), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddsec] = ACTIONS(5381), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubsection] = ACTIONS(5381), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5381), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHparagraph] = ACTIONS(5381), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5381), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5379), - [anon_sym_BSLASHitem] = ACTIONS(5381), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5379), - [anon_sym_LBRACE] = ACTIONS(5379), - [sym_word] = ACTIONS(5381), - [sym_placeholder] = ACTIONS(5379), - [anon_sym_PLUS] = ACTIONS(5381), - [anon_sym_DASH] = ACTIONS(5381), - [anon_sym_STAR] = ACTIONS(5381), - [anon_sym_SLASH] = ACTIONS(5381), - [anon_sym_CARET] = ACTIONS(5381), - [anon_sym__] = ACTIONS(5381), - [anon_sym_LT] = ACTIONS(5381), - [anon_sym_GT] = ACTIONS(5381), - [anon_sym_BANG] = ACTIONS(5381), - [anon_sym_PIPE] = ACTIONS(5381), - [anon_sym_COLON] = ACTIONS(5381), - [anon_sym_SQUOTE] = ACTIONS(5381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5379), - [anon_sym_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5379), - [anon_sym_BSLASHbegin] = ACTIONS(5381), - [anon_sym_BSLASHend] = ACTIONS(5381), - [anon_sym_BSLASHusepackage] = ACTIONS(5381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5381), - [anon_sym_BSLASHinclude] = ACTIONS(5381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5381), - [anon_sym_BSLASHinput] = ACTIONS(5381), - [anon_sym_BSLASHsubfile] = ACTIONS(5381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5381), - [anon_sym_BSLASHbibliography] = ACTIONS(5381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5381), - [anon_sym_BSLASHincludesvg] = ACTIONS(5381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5381), - [anon_sym_BSLASHimport] = ACTIONS(5381), - [anon_sym_BSLASHsubimport] = ACTIONS(5381), - [anon_sym_BSLASHinputfrom] = ACTIONS(5381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5381), - [anon_sym_BSLASHincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHcaption] = ACTIONS(5381), - [anon_sym_BSLASHcite] = ACTIONS(5381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCite] = ACTIONS(5381), - [anon_sym_BSLASHnocite] = ACTIONS(5381), - [anon_sym_BSLASHcitet] = ACTIONS(5381), - [anon_sym_BSLASHcitep] = ACTIONS(5381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteyear] = ACTIONS(5381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitedate] = ACTIONS(5381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteurl] = ACTIONS(5381), - [anon_sym_BSLASHfullcite] = ACTIONS(5381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5381), - [anon_sym_BSLASHcitealt] = ACTIONS(5381), - [anon_sym_BSLASHcitealp] = ACTIONS(5381), - [anon_sym_BSLASHcitetext] = ACTIONS(5381), - [anon_sym_BSLASHparencite] = ACTIONS(5381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHParencite] = ACTIONS(5381), - [anon_sym_BSLASHfootcite] = ACTIONS(5381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5381), - [anon_sym_BSLASHtextcite] = ACTIONS(5381), - [anon_sym_BSLASHTextcite] = ACTIONS(5381), - [anon_sym_BSLASHsmartcite] = ACTIONS(5381), - [anon_sym_BSLASHSmartcite] = ACTIONS(5381), - [anon_sym_BSLASHsupercite] = ACTIONS(5381), - [anon_sym_BSLASHautocite] = ACTIONS(5381), - [anon_sym_BSLASHAutocite] = ACTIONS(5381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHvolcite] = ACTIONS(5381), - [anon_sym_BSLASHVolcite] = ACTIONS(5381), - [anon_sym_BSLASHpvolcite] = ACTIONS(5381), - [anon_sym_BSLASHPvolcite] = ACTIONS(5381), - [anon_sym_BSLASHfvolcite] = ACTIONS(5381), - [anon_sym_BSLASHftvolcite] = ACTIONS(5381), - [anon_sym_BSLASHsvolcite] = ACTIONS(5381), - [anon_sym_BSLASHSvolcite] = ACTIONS(5381), - [anon_sym_BSLASHtvolcite] = ACTIONS(5381), - [anon_sym_BSLASHTvolcite] = ACTIONS(5381), - [anon_sym_BSLASHavolcite] = ACTIONS(5381), - [anon_sym_BSLASHAvolcite] = ACTIONS(5381), - [anon_sym_BSLASHnotecite] = ACTIONS(5381), - [anon_sym_BSLASHNotecite] = ACTIONS(5381), - [anon_sym_BSLASHpnotecite] = ACTIONS(5381), - [anon_sym_BSLASHPnotecite] = ACTIONS(5381), - [anon_sym_BSLASHfnotecite] = ACTIONS(5381), - [anon_sym_BSLASHlabel] = ACTIONS(5381), - [anon_sym_BSLASHref] = ACTIONS(5381), - [anon_sym_BSLASHeqref] = ACTIONS(5381), - [anon_sym_BSLASHvref] = ACTIONS(5381), - [anon_sym_BSLASHVref] = ACTIONS(5381), - [anon_sym_BSLASHautoref] = ACTIONS(5381), - [anon_sym_BSLASHpageref] = ACTIONS(5381), - [anon_sym_BSLASHcref] = ACTIONS(5381), - [anon_sym_BSLASHCref] = ACTIONS(5381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnameCref] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHlabelcref] = ACTIONS(5381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnewlabel] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5379), - [anon_sym_BSLASHdef] = ACTIONS(5381), - [anon_sym_BSLASHlet] = ACTIONS(5381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5381), - [anon_sym_BSLASHgls] = ACTIONS(5381), - [anon_sym_BSLASHGls] = ACTIONS(5381), - [anon_sym_BSLASHGLS] = ACTIONS(5381), - [anon_sym_BSLASHglspl] = ACTIONS(5381), - [anon_sym_BSLASHGlspl] = ACTIONS(5381), - [anon_sym_BSLASHGLSpl] = ACTIONS(5381), - [anon_sym_BSLASHglsdisp] = ACTIONS(5381), - [anon_sym_BSLASHglslink] = ACTIONS(5381), - [anon_sym_BSLASHglstext] = ACTIONS(5381), - [anon_sym_BSLASHGlstext] = ACTIONS(5381), - [anon_sym_BSLASHGLStext] = ACTIONS(5381), - [anon_sym_BSLASHglsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5381), - [anon_sym_BSLASHglsplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSplural] = ACTIONS(5381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHglsname] = ACTIONS(5381), - [anon_sym_BSLASHGlsname] = ACTIONS(5381), - [anon_sym_BSLASHGLSname] = ACTIONS(5381), - [anon_sym_BSLASHglssymbol] = ACTIONS(5381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5381), - [anon_sym_BSLASHglsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5381), - [anon_sym_BSLASHglsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5381), - [anon_sym_BSLASHglsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5381), - [anon_sym_BSLASHglsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5381), - [anon_sym_BSLASHglsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5381), - [anon_sym_BSLASHnewacronym] = ACTIONS(5381), - [anon_sym_BSLASHacrshort] = ACTIONS(5381), - [anon_sym_BSLASHAcrshort] = ACTIONS(5381), - [anon_sym_BSLASHACRshort] = ACTIONS(5381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5381), - [anon_sym_BSLASHacrlong] = ACTIONS(5381), - [anon_sym_BSLASHAcrlong] = ACTIONS(5381), - [anon_sym_BSLASHACRlong] = ACTIONS(5381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5381), - [anon_sym_BSLASHacrfull] = ACTIONS(5381), - [anon_sym_BSLASHAcrfull] = ACTIONS(5381), - [anon_sym_BSLASHACRfull] = ACTIONS(5381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5381), - [anon_sym_BSLASHacs] = ACTIONS(5381), - [anon_sym_BSLASHAcs] = ACTIONS(5381), - [anon_sym_BSLASHacsp] = ACTIONS(5381), - [anon_sym_BSLASHAcsp] = ACTIONS(5381), - [anon_sym_BSLASHacl] = ACTIONS(5381), - [anon_sym_BSLASHAcl] = ACTIONS(5381), - [anon_sym_BSLASHaclp] = ACTIONS(5381), - [anon_sym_BSLASHAclp] = ACTIONS(5381), - [anon_sym_BSLASHacf] = ACTIONS(5381), - [anon_sym_BSLASHAcf] = ACTIONS(5381), - [anon_sym_BSLASHacfp] = ACTIONS(5381), - [anon_sym_BSLASHAcfp] = ACTIONS(5381), - [anon_sym_BSLASHac] = ACTIONS(5381), - [anon_sym_BSLASHAc] = ACTIONS(5381), - [anon_sym_BSLASHacp] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5381), - [anon_sym_BSLASHcolor] = ACTIONS(5381), - [anon_sym_BSLASHcolorbox] = ACTIONS(5381), - [anon_sym_BSLASHtextcolor] = ACTIONS(5381), - [anon_sym_BSLASHpagecolor] = ACTIONS(5381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5381), + [983] = { + [sym_command_name] = ACTIONS(5017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5017), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_RPAREN] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_RBRACK] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_EQ] = ACTIONS(5015), + [anon_sym_BSLASHpart] = ACTIONS(5017), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddpart] = ACTIONS(5017), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5015), + [anon_sym_BSLASHchapter] = ACTIONS(5017), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddchap] = ACTIONS(5017), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsection] = ACTIONS(5017), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddsec] = ACTIONS(5017), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubsection] = ACTIONS(5017), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5017), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHparagraph] = ACTIONS(5017), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5017), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5015), + [anon_sym_BSLASHitem] = ACTIONS(5017), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5015), + [anon_sym_LBRACE] = ACTIONS(5015), + [sym_word] = ACTIONS(5017), + [sym_placeholder] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5017), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_CARET] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5017), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_COLON] = ACTIONS(5017), + [anon_sym_SQUOTE] = ACTIONS(5017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), + [anon_sym_DOLLAR] = ACTIONS(5017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5015), + [anon_sym_BSLASHbegin] = ACTIONS(5017), + [anon_sym_BSLASHusepackage] = ACTIONS(5017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), + [anon_sym_BSLASHinclude] = ACTIONS(5017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), + [anon_sym_BSLASHinput] = ACTIONS(5017), + [anon_sym_BSLASHsubfile] = ACTIONS(5017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), + [anon_sym_BSLASHbibliography] = ACTIONS(5017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), + [anon_sym_BSLASHincludesvg] = ACTIONS(5017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), + [anon_sym_BSLASHimport] = ACTIONS(5017), + [anon_sym_BSLASHsubimport] = ACTIONS(5017), + [anon_sym_BSLASHinputfrom] = ACTIONS(5017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), + [anon_sym_BSLASHincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHcaption] = ACTIONS(5017), + [anon_sym_BSLASHcite] = ACTIONS(5017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCite] = ACTIONS(5017), + [anon_sym_BSLASHnocite] = ACTIONS(5017), + [anon_sym_BSLASHcitet] = ACTIONS(5017), + [anon_sym_BSLASHcitep] = ACTIONS(5017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteauthor] = ACTIONS(5017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitetitle] = ACTIONS(5017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteyear] = ACTIONS(5017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitedate] = ACTIONS(5017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteurl] = ACTIONS(5017), + [anon_sym_BSLASHfullcite] = ACTIONS(5017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), + [anon_sym_BSLASHcitealt] = ACTIONS(5017), + [anon_sym_BSLASHcitealp] = ACTIONS(5017), + [anon_sym_BSLASHcitetext] = ACTIONS(5017), + [anon_sym_BSLASHparencite] = ACTIONS(5017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHParencite] = ACTIONS(5017), + [anon_sym_BSLASHfootcite] = ACTIONS(5017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), + [anon_sym_BSLASHtextcite] = ACTIONS(5017), + [anon_sym_BSLASHTextcite] = ACTIONS(5017), + [anon_sym_BSLASHsmartcite] = ACTIONS(5017), + [anon_sym_BSLASHSmartcite] = ACTIONS(5017), + [anon_sym_BSLASHsupercite] = ACTIONS(5017), + [anon_sym_BSLASHautocite] = ACTIONS(5017), + [anon_sym_BSLASHAutocite] = ACTIONS(5017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHvolcite] = ACTIONS(5017), + [anon_sym_BSLASHVolcite] = ACTIONS(5017), + [anon_sym_BSLASHpvolcite] = ACTIONS(5017), + [anon_sym_BSLASHPvolcite] = ACTIONS(5017), + [anon_sym_BSLASHfvolcite] = ACTIONS(5017), + [anon_sym_BSLASHftvolcite] = ACTIONS(5017), + [anon_sym_BSLASHsvolcite] = ACTIONS(5017), + [anon_sym_BSLASHSvolcite] = ACTIONS(5017), + [anon_sym_BSLASHtvolcite] = ACTIONS(5017), + [anon_sym_BSLASHTvolcite] = ACTIONS(5017), + [anon_sym_BSLASHavolcite] = ACTIONS(5017), + [anon_sym_BSLASHAvolcite] = ACTIONS(5017), + [anon_sym_BSLASHnotecite] = ACTIONS(5017), + [anon_sym_BSLASHNotecite] = ACTIONS(5017), + [anon_sym_BSLASHpnotecite] = ACTIONS(5017), + [anon_sym_BSLASHPnotecite] = ACTIONS(5017), + [anon_sym_BSLASHfnotecite] = ACTIONS(5017), + [anon_sym_BSLASHlabel] = ACTIONS(5017), + [anon_sym_BSLASHref] = ACTIONS(5017), + [anon_sym_BSLASHeqref] = ACTIONS(5017), + [anon_sym_BSLASHvref] = ACTIONS(5017), + [anon_sym_BSLASHVref] = ACTIONS(5017), + [anon_sym_BSLASHautoref] = ACTIONS(5017), + [anon_sym_BSLASHpageref] = ACTIONS(5017), + [anon_sym_BSLASHcref] = ACTIONS(5017), + [anon_sym_BSLASHCref] = ACTIONS(5017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnameCref] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHlabelcref] = ACTIONS(5017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCrefrange] = ACTIONS(5017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnewlabel] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), + [anon_sym_BSLASHdef] = ACTIONS(5017), + [anon_sym_BSLASHlet] = ACTIONS(5017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), + [anon_sym_BSLASHgls] = ACTIONS(5017), + [anon_sym_BSLASHGls] = ACTIONS(5017), + [anon_sym_BSLASHGLS] = ACTIONS(5017), + [anon_sym_BSLASHglspl] = ACTIONS(5017), + [anon_sym_BSLASHGlspl] = ACTIONS(5017), + [anon_sym_BSLASHGLSpl] = ACTIONS(5017), + [anon_sym_BSLASHglsdisp] = ACTIONS(5017), + [anon_sym_BSLASHglslink] = ACTIONS(5017), + [anon_sym_BSLASHglstext] = ACTIONS(5017), + [anon_sym_BSLASHGlstext] = ACTIONS(5017), + [anon_sym_BSLASHGLStext] = ACTIONS(5017), + [anon_sym_BSLASHglsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), + [anon_sym_BSLASHglsplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSplural] = ACTIONS(5017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHglsname] = ACTIONS(5017), + [anon_sym_BSLASHGlsname] = ACTIONS(5017), + [anon_sym_BSLASHGLSname] = ACTIONS(5017), + [anon_sym_BSLASHglssymbol] = ACTIONS(5017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), + [anon_sym_BSLASHglsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), + [anon_sym_BSLASHglsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), + [anon_sym_BSLASHglsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), + [anon_sym_BSLASHglsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), + [anon_sym_BSLASHglsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), + [anon_sym_BSLASHnewacronym] = ACTIONS(5017), + [anon_sym_BSLASHacrshort] = ACTIONS(5017), + [anon_sym_BSLASHAcrshort] = ACTIONS(5017), + [anon_sym_BSLASHACRshort] = ACTIONS(5017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), + [anon_sym_BSLASHacrlong] = ACTIONS(5017), + [anon_sym_BSLASHAcrlong] = ACTIONS(5017), + [anon_sym_BSLASHACRlong] = ACTIONS(5017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), + [anon_sym_BSLASHacrfull] = ACTIONS(5017), + [anon_sym_BSLASHAcrfull] = ACTIONS(5017), + [anon_sym_BSLASHACRfull] = ACTIONS(5017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), + [anon_sym_BSLASHacs] = ACTIONS(5017), + [anon_sym_BSLASHAcs] = ACTIONS(5017), + [anon_sym_BSLASHacsp] = ACTIONS(5017), + [anon_sym_BSLASHAcsp] = ACTIONS(5017), + [anon_sym_BSLASHacl] = ACTIONS(5017), + [anon_sym_BSLASHAcl] = ACTIONS(5017), + [anon_sym_BSLASHaclp] = ACTIONS(5017), + [anon_sym_BSLASHAclp] = ACTIONS(5017), + [anon_sym_BSLASHacf] = ACTIONS(5017), + [anon_sym_BSLASHAcf] = ACTIONS(5017), + [anon_sym_BSLASHacfp] = ACTIONS(5017), + [anon_sym_BSLASHAcfp] = ACTIONS(5017), + [anon_sym_BSLASHac] = ACTIONS(5017), + [anon_sym_BSLASHAc] = ACTIONS(5017), + [anon_sym_BSLASHacp] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), + [anon_sym_BSLASHcolor] = ACTIONS(5017), + [anon_sym_BSLASHcolorbox] = ACTIONS(5017), + [anon_sym_BSLASHtextcolor] = ACTIONS(5017), + [anon_sym_BSLASHpagecolor] = ACTIONS(5017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), + [anon_sym_BSLASHtext] = ACTIONS(5017), + [anon_sym_BSLASHintertext] = ACTIONS(5017), + [anon_sym_shortintertext] = ACTIONS(5017), }, - [1126] = { - [sym_command_name] = ACTIONS(5029), + [984] = { + [sym_command_name] = ACTIONS(5021), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_BSLASHpart] = ACTIONS(5029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddpart] = ACTIONS(5029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHchapter] = ACTIONS(5029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddchap] = ACTIONS(5029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsection] = ACTIONS(5029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddsec] = ACTIONS(5029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHparagraph] = ACTIONS(5029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHitem] = ACTIONS(5029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASHbegin] = ACTIONS(5029), - [anon_sym_BSLASHend] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - }, - [1127] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_BSLASHpart] = ACTIONS(5371), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddpart] = ACTIONS(5371), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHchapter] = ACTIONS(5371), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddchap] = ACTIONS(5371), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsection] = ACTIONS(5371), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddsec] = ACTIONS(5371), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHparagraph] = ACTIONS(5371), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5371), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHitem] = ACTIONS(5371), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASHbegin] = ACTIONS(5371), - [anon_sym_BSLASHend] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), - }, - [1128] = { - [sym_command_name] = ACTIONS(5367), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5367), - [anon_sym_LPAREN] = ACTIONS(5365), - [anon_sym_RPAREN] = ACTIONS(5365), - [anon_sym_LBRACK] = ACTIONS(5365), - [anon_sym_RBRACK] = ACTIONS(5365), - [anon_sym_COMMA] = ACTIONS(5365), - [anon_sym_EQ] = ACTIONS(5365), - [anon_sym_BSLASHpart] = ACTIONS(5367), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddpart] = ACTIONS(5367), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5365), - [anon_sym_BSLASHchapter] = ACTIONS(5367), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddchap] = ACTIONS(5367), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsection] = ACTIONS(5367), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddsec] = ACTIONS(5367), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubsection] = ACTIONS(5367), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5367), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHparagraph] = ACTIONS(5367), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5367), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5365), - [anon_sym_BSLASHitem] = ACTIONS(5367), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5365), - [anon_sym_LBRACE] = ACTIONS(5365), - [sym_word] = ACTIONS(5367), - [sym_placeholder] = ACTIONS(5365), - [anon_sym_PLUS] = ACTIONS(5367), - [anon_sym_DASH] = ACTIONS(5367), - [anon_sym_STAR] = ACTIONS(5367), - [anon_sym_SLASH] = ACTIONS(5367), - [anon_sym_CARET] = ACTIONS(5367), - [anon_sym__] = ACTIONS(5367), - [anon_sym_LT] = ACTIONS(5367), - [anon_sym_GT] = ACTIONS(5367), - [anon_sym_BANG] = ACTIONS(5367), - [anon_sym_PIPE] = ACTIONS(5367), - [anon_sym_COLON] = ACTIONS(5367), - [anon_sym_SQUOTE] = ACTIONS(5367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5365), - [anon_sym_DOLLAR] = ACTIONS(5367), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5365), - [anon_sym_BSLASHbegin] = ACTIONS(5367), - [anon_sym_BSLASHend] = ACTIONS(5367), - [anon_sym_BSLASHusepackage] = ACTIONS(5367), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5367), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5367), - [anon_sym_BSLASHinclude] = ACTIONS(5367), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5367), - [anon_sym_BSLASHinput] = ACTIONS(5367), - [anon_sym_BSLASHsubfile] = ACTIONS(5367), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5367), - [anon_sym_BSLASHbibliography] = ACTIONS(5367), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5367), - [anon_sym_BSLASHincludesvg] = ACTIONS(5367), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5367), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5367), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5367), - [anon_sym_BSLASHimport] = ACTIONS(5367), - [anon_sym_BSLASHsubimport] = ACTIONS(5367), - [anon_sym_BSLASHinputfrom] = ACTIONS(5367), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5367), - [anon_sym_BSLASHincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHcaption] = ACTIONS(5367), - [anon_sym_BSLASHcite] = ACTIONS(5367), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCite] = ACTIONS(5367), - [anon_sym_BSLASHnocite] = ACTIONS(5367), - [anon_sym_BSLASHcitet] = ACTIONS(5367), - [anon_sym_BSLASHcitep] = ACTIONS(5367), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor] = ACTIONS(5367), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5367), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle] = ACTIONS(5367), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteyear] = ACTIONS(5367), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitedate] = ACTIONS(5367), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteurl] = ACTIONS(5367), - [anon_sym_BSLASHfullcite] = ACTIONS(5367), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5367), - [anon_sym_BSLASHcitealt] = ACTIONS(5367), - [anon_sym_BSLASHcitealp] = ACTIONS(5367), - [anon_sym_BSLASHcitetext] = ACTIONS(5367), - [anon_sym_BSLASHparencite] = ACTIONS(5367), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHParencite] = ACTIONS(5367), - [anon_sym_BSLASHfootcite] = ACTIONS(5367), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5367), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5367), - [anon_sym_BSLASHtextcite] = ACTIONS(5367), - [anon_sym_BSLASHTextcite] = ACTIONS(5367), - [anon_sym_BSLASHsmartcite] = ACTIONS(5367), - [anon_sym_BSLASHSmartcite] = ACTIONS(5367), - [anon_sym_BSLASHsupercite] = ACTIONS(5367), - [anon_sym_BSLASHautocite] = ACTIONS(5367), - [anon_sym_BSLASHAutocite] = ACTIONS(5367), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHvolcite] = ACTIONS(5367), - [anon_sym_BSLASHVolcite] = ACTIONS(5367), - [anon_sym_BSLASHpvolcite] = ACTIONS(5367), - [anon_sym_BSLASHPvolcite] = ACTIONS(5367), - [anon_sym_BSLASHfvolcite] = ACTIONS(5367), - [anon_sym_BSLASHftvolcite] = ACTIONS(5367), - [anon_sym_BSLASHsvolcite] = ACTIONS(5367), - [anon_sym_BSLASHSvolcite] = ACTIONS(5367), - [anon_sym_BSLASHtvolcite] = ACTIONS(5367), - [anon_sym_BSLASHTvolcite] = ACTIONS(5367), - [anon_sym_BSLASHavolcite] = ACTIONS(5367), - [anon_sym_BSLASHAvolcite] = ACTIONS(5367), - [anon_sym_BSLASHnotecite] = ACTIONS(5367), - [anon_sym_BSLASHNotecite] = ACTIONS(5367), - [anon_sym_BSLASHpnotecite] = ACTIONS(5367), - [anon_sym_BSLASHPnotecite] = ACTIONS(5367), - [anon_sym_BSLASHfnotecite] = ACTIONS(5367), - [anon_sym_BSLASHlabel] = ACTIONS(5367), - [anon_sym_BSLASHref] = ACTIONS(5367), - [anon_sym_BSLASHeqref] = ACTIONS(5367), - [anon_sym_BSLASHvref] = ACTIONS(5367), - [anon_sym_BSLASHVref] = ACTIONS(5367), - [anon_sym_BSLASHautoref] = ACTIONS(5367), - [anon_sym_BSLASHpageref] = ACTIONS(5367), - [anon_sym_BSLASHcref] = ACTIONS(5367), - [anon_sym_BSLASHCref] = ACTIONS(5367), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnameCref] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHlabelcref] = ACTIONS(5367), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange] = ACTIONS(5367), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnewlabel] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5367), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5367), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5367), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5365), - [anon_sym_BSLASHdef] = ACTIONS(5367), - [anon_sym_BSLASHlet] = ACTIONS(5367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5367), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5367), - [anon_sym_BSLASHgls] = ACTIONS(5367), - [anon_sym_BSLASHGls] = ACTIONS(5367), - [anon_sym_BSLASHGLS] = ACTIONS(5367), - [anon_sym_BSLASHglspl] = ACTIONS(5367), - [anon_sym_BSLASHGlspl] = ACTIONS(5367), - [anon_sym_BSLASHGLSpl] = ACTIONS(5367), - [anon_sym_BSLASHglsdisp] = ACTIONS(5367), - [anon_sym_BSLASHglslink] = ACTIONS(5367), - [anon_sym_BSLASHglstext] = ACTIONS(5367), - [anon_sym_BSLASHGlstext] = ACTIONS(5367), - [anon_sym_BSLASHGLStext] = ACTIONS(5367), - [anon_sym_BSLASHglsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5367), - [anon_sym_BSLASHglsplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSplural] = ACTIONS(5367), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHglsname] = ACTIONS(5367), - [anon_sym_BSLASHGlsname] = ACTIONS(5367), - [anon_sym_BSLASHGLSname] = ACTIONS(5367), - [anon_sym_BSLASHglssymbol] = ACTIONS(5367), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5367), - [anon_sym_BSLASHglsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5367), - [anon_sym_BSLASHglsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5367), - [anon_sym_BSLASHglsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5367), - [anon_sym_BSLASHglsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5367), - [anon_sym_BSLASHglsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5367), - [anon_sym_BSLASHnewacronym] = ACTIONS(5367), - [anon_sym_BSLASHacrshort] = ACTIONS(5367), - [anon_sym_BSLASHAcrshort] = ACTIONS(5367), - [anon_sym_BSLASHACRshort] = ACTIONS(5367), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5367), - [anon_sym_BSLASHacrlong] = ACTIONS(5367), - [anon_sym_BSLASHAcrlong] = ACTIONS(5367), - [anon_sym_BSLASHACRlong] = ACTIONS(5367), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5367), - [anon_sym_BSLASHacrfull] = ACTIONS(5367), - [anon_sym_BSLASHAcrfull] = ACTIONS(5367), - [anon_sym_BSLASHACRfull] = ACTIONS(5367), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5367), - [anon_sym_BSLASHacs] = ACTIONS(5367), - [anon_sym_BSLASHAcs] = ACTIONS(5367), - [anon_sym_BSLASHacsp] = ACTIONS(5367), - [anon_sym_BSLASHAcsp] = ACTIONS(5367), - [anon_sym_BSLASHacl] = ACTIONS(5367), - [anon_sym_BSLASHAcl] = ACTIONS(5367), - [anon_sym_BSLASHaclp] = ACTIONS(5367), - [anon_sym_BSLASHAclp] = ACTIONS(5367), - [anon_sym_BSLASHacf] = ACTIONS(5367), - [anon_sym_BSLASHAcf] = ACTIONS(5367), - [anon_sym_BSLASHacfp] = ACTIONS(5367), - [anon_sym_BSLASHAcfp] = ACTIONS(5367), - [anon_sym_BSLASHac] = ACTIONS(5367), - [anon_sym_BSLASHAc] = ACTIONS(5367), - [anon_sym_BSLASHacp] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5367), - [anon_sym_BSLASHcolor] = ACTIONS(5367), - [anon_sym_BSLASHcolorbox] = ACTIONS(5367), - [anon_sym_BSLASHtextcolor] = ACTIONS(5367), - [anon_sym_BSLASHpagecolor] = ACTIONS(5367), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5367), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5367), - }, - [1129] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_BSLASHpart] = ACTIONS(5361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddpart] = ACTIONS(5361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHchapter] = ACTIONS(5361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddchap] = ACTIONS(5361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsection] = ACTIONS(5361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddsec] = ACTIONS(5361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHparagraph] = ACTIONS(5361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHitem] = ACTIONS(5361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASHbegin] = ACTIONS(5361), - [anon_sym_BSLASHend] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - }, - [1130] = { - [sym_command_name] = ACTIONS(5357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_BSLASHpart] = ACTIONS(5357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddpart] = ACTIONS(5357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHchapter] = ACTIONS(5357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddchap] = ACTIONS(5357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsection] = ACTIONS(5357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddsec] = ACTIONS(5357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHparagraph] = ACTIONS(5357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHitem] = ACTIONS(5357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASHbegin] = ACTIONS(5357), - [anon_sym_BSLASHend] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), + [anon_sym_BSLASHiffalse] = ACTIONS(5021), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_BSLASHpart] = ACTIONS(5021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddpart] = ACTIONS(5021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), + [anon_sym_BSLASHchapter] = ACTIONS(5021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddchap] = ACTIONS(5021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsection] = ACTIONS(5021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddsec] = ACTIONS(5021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubsection] = ACTIONS(5021), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHparagraph] = ACTIONS(5021), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), + [anon_sym_BSLASHitem] = ACTIONS(5021), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [sym_word] = ACTIONS(5021), + [sym_placeholder] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5021), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_CARET] = ACTIONS(5021), + [anon_sym__] = ACTIONS(5021), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_COLON] = ACTIONS(5021), + [anon_sym_SQUOTE] = ACTIONS(5021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), + [anon_sym_DOLLAR] = ACTIONS(5021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5019), + [anon_sym_BSLASHbegin] = ACTIONS(5021), + [anon_sym_BSLASHusepackage] = ACTIONS(5021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), + [anon_sym_BSLASHinclude] = ACTIONS(5021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), + [anon_sym_BSLASHinput] = ACTIONS(5021), + [anon_sym_BSLASHsubfile] = ACTIONS(5021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), + [anon_sym_BSLASHbibliography] = ACTIONS(5021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), + [anon_sym_BSLASHincludesvg] = ACTIONS(5021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), + [anon_sym_BSLASHimport] = ACTIONS(5021), + [anon_sym_BSLASHsubimport] = ACTIONS(5021), + [anon_sym_BSLASHinputfrom] = ACTIONS(5021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), + [anon_sym_BSLASHincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHcaption] = ACTIONS(5021), + [anon_sym_BSLASHcite] = ACTIONS(5021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCite] = ACTIONS(5021), + [anon_sym_BSLASHnocite] = ACTIONS(5021), + [anon_sym_BSLASHcitet] = ACTIONS(5021), + [anon_sym_BSLASHcitep] = ACTIONS(5021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteauthor] = ACTIONS(5021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitetitle] = ACTIONS(5021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteyear] = ACTIONS(5021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitedate] = ACTIONS(5021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteurl] = ACTIONS(5021), + [anon_sym_BSLASHfullcite] = ACTIONS(5021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), + [anon_sym_BSLASHcitealt] = ACTIONS(5021), + [anon_sym_BSLASHcitealp] = ACTIONS(5021), + [anon_sym_BSLASHcitetext] = ACTIONS(5021), + [anon_sym_BSLASHparencite] = ACTIONS(5021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHParencite] = ACTIONS(5021), + [anon_sym_BSLASHfootcite] = ACTIONS(5021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), + [anon_sym_BSLASHtextcite] = ACTIONS(5021), + [anon_sym_BSLASHTextcite] = ACTIONS(5021), + [anon_sym_BSLASHsmartcite] = ACTIONS(5021), + [anon_sym_BSLASHSmartcite] = ACTIONS(5021), + [anon_sym_BSLASHsupercite] = ACTIONS(5021), + [anon_sym_BSLASHautocite] = ACTIONS(5021), + [anon_sym_BSLASHAutocite] = ACTIONS(5021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHvolcite] = ACTIONS(5021), + [anon_sym_BSLASHVolcite] = ACTIONS(5021), + [anon_sym_BSLASHpvolcite] = ACTIONS(5021), + [anon_sym_BSLASHPvolcite] = ACTIONS(5021), + [anon_sym_BSLASHfvolcite] = ACTIONS(5021), + [anon_sym_BSLASHftvolcite] = ACTIONS(5021), + [anon_sym_BSLASHsvolcite] = ACTIONS(5021), + [anon_sym_BSLASHSvolcite] = ACTIONS(5021), + [anon_sym_BSLASHtvolcite] = ACTIONS(5021), + [anon_sym_BSLASHTvolcite] = ACTIONS(5021), + [anon_sym_BSLASHavolcite] = ACTIONS(5021), + [anon_sym_BSLASHAvolcite] = ACTIONS(5021), + [anon_sym_BSLASHnotecite] = ACTIONS(5021), + [anon_sym_BSLASHNotecite] = ACTIONS(5021), + [anon_sym_BSLASHpnotecite] = ACTIONS(5021), + [anon_sym_BSLASHPnotecite] = ACTIONS(5021), + [anon_sym_BSLASHfnotecite] = ACTIONS(5021), + [anon_sym_BSLASHlabel] = ACTIONS(5021), + [anon_sym_BSLASHref] = ACTIONS(5021), + [anon_sym_BSLASHeqref] = ACTIONS(5021), + [anon_sym_BSLASHvref] = ACTIONS(5021), + [anon_sym_BSLASHVref] = ACTIONS(5021), + [anon_sym_BSLASHautoref] = ACTIONS(5021), + [anon_sym_BSLASHpageref] = ACTIONS(5021), + [anon_sym_BSLASHcref] = ACTIONS(5021), + [anon_sym_BSLASHCref] = ACTIONS(5021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnameCref] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHlabelcref] = ACTIONS(5021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCrefrange] = ACTIONS(5021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnewlabel] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), + [anon_sym_BSLASHdef] = ACTIONS(5021), + [anon_sym_BSLASHlet] = ACTIONS(5021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), + [anon_sym_BSLASHgls] = ACTIONS(5021), + [anon_sym_BSLASHGls] = ACTIONS(5021), + [anon_sym_BSLASHGLS] = ACTIONS(5021), + [anon_sym_BSLASHglspl] = ACTIONS(5021), + [anon_sym_BSLASHGlspl] = ACTIONS(5021), + [anon_sym_BSLASHGLSpl] = ACTIONS(5021), + [anon_sym_BSLASHglsdisp] = ACTIONS(5021), + [anon_sym_BSLASHglslink] = ACTIONS(5021), + [anon_sym_BSLASHglstext] = ACTIONS(5021), + [anon_sym_BSLASHGlstext] = ACTIONS(5021), + [anon_sym_BSLASHGLStext] = ACTIONS(5021), + [anon_sym_BSLASHglsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), + [anon_sym_BSLASHglsplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSplural] = ACTIONS(5021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHglsname] = ACTIONS(5021), + [anon_sym_BSLASHGlsname] = ACTIONS(5021), + [anon_sym_BSLASHGLSname] = ACTIONS(5021), + [anon_sym_BSLASHglssymbol] = ACTIONS(5021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), + [anon_sym_BSLASHglsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), + [anon_sym_BSLASHglsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), + [anon_sym_BSLASHglsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), + [anon_sym_BSLASHglsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), + [anon_sym_BSLASHglsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), + [anon_sym_BSLASHnewacronym] = ACTIONS(5021), + [anon_sym_BSLASHacrshort] = ACTIONS(5021), + [anon_sym_BSLASHAcrshort] = ACTIONS(5021), + [anon_sym_BSLASHACRshort] = ACTIONS(5021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), + [anon_sym_BSLASHacrlong] = ACTIONS(5021), + [anon_sym_BSLASHAcrlong] = ACTIONS(5021), + [anon_sym_BSLASHACRlong] = ACTIONS(5021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), + [anon_sym_BSLASHacrfull] = ACTIONS(5021), + [anon_sym_BSLASHAcrfull] = ACTIONS(5021), + [anon_sym_BSLASHACRfull] = ACTIONS(5021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), + [anon_sym_BSLASHacs] = ACTIONS(5021), + [anon_sym_BSLASHAcs] = ACTIONS(5021), + [anon_sym_BSLASHacsp] = ACTIONS(5021), + [anon_sym_BSLASHAcsp] = ACTIONS(5021), + [anon_sym_BSLASHacl] = ACTIONS(5021), + [anon_sym_BSLASHAcl] = ACTIONS(5021), + [anon_sym_BSLASHaclp] = ACTIONS(5021), + [anon_sym_BSLASHAclp] = ACTIONS(5021), + [anon_sym_BSLASHacf] = ACTIONS(5021), + [anon_sym_BSLASHAcf] = ACTIONS(5021), + [anon_sym_BSLASHacfp] = ACTIONS(5021), + [anon_sym_BSLASHAcfp] = ACTIONS(5021), + [anon_sym_BSLASHac] = ACTIONS(5021), + [anon_sym_BSLASHAc] = ACTIONS(5021), + [anon_sym_BSLASHacp] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), + [anon_sym_BSLASHcolor] = ACTIONS(5021), + [anon_sym_BSLASHcolorbox] = ACTIONS(5021), + [anon_sym_BSLASHtextcolor] = ACTIONS(5021), + [anon_sym_BSLASHpagecolor] = ACTIONS(5021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHtext] = ACTIONS(5021), + [anon_sym_BSLASHintertext] = ACTIONS(5021), + [anon_sym_shortintertext] = ACTIONS(5021), }, - [1131] = { - [sym_command_name] = ACTIONS(5081), + [985] = { + [sym_command_name] = ACTIONS(5025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_BSLASHpart] = ACTIONS(5081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddpart] = ACTIONS(5081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHchapter] = ACTIONS(5081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddchap] = ACTIONS(5081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsection] = ACTIONS(5081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddsec] = ACTIONS(5081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHparagraph] = ACTIONS(5081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHitem] = ACTIONS(5081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASHbegin] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), + [anon_sym_BSLASHiffalse] = ACTIONS(5025), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_RBRACK] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5023), + [anon_sym_BSLASHpart] = ACTIONS(5025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddpart] = ACTIONS(5025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), + [anon_sym_BSLASHchapter] = ACTIONS(5025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddchap] = ACTIONS(5025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsection] = ACTIONS(5025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddsec] = ACTIONS(5025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubsection] = ACTIONS(5025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHparagraph] = ACTIONS(5025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), + [anon_sym_BSLASHitem] = ACTIONS(5025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5023), + [sym_word] = ACTIONS(5025), + [sym_placeholder] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5025), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_SLASH] = ACTIONS(5025), + [anon_sym_CARET] = ACTIONS(5025), + [anon_sym__] = ACTIONS(5025), + [anon_sym_LT] = ACTIONS(5025), + [anon_sym_GT] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5025), + [anon_sym_PIPE] = ACTIONS(5025), + [anon_sym_COLON] = ACTIONS(5025), + [anon_sym_SQUOTE] = ACTIONS(5025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(5025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5023), + [anon_sym_BSLASHbegin] = ACTIONS(5025), + [anon_sym_BSLASHusepackage] = ACTIONS(5025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), + [anon_sym_BSLASHinclude] = ACTIONS(5025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), + [anon_sym_BSLASHinput] = ACTIONS(5025), + [anon_sym_BSLASHsubfile] = ACTIONS(5025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), + [anon_sym_BSLASHbibliography] = ACTIONS(5025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), + [anon_sym_BSLASHincludesvg] = ACTIONS(5025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), + [anon_sym_BSLASHimport] = ACTIONS(5025), + [anon_sym_BSLASHsubimport] = ACTIONS(5025), + [anon_sym_BSLASHinputfrom] = ACTIONS(5025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), + [anon_sym_BSLASHincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHcaption] = ACTIONS(5025), + [anon_sym_BSLASHcite] = ACTIONS(5025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCite] = ACTIONS(5025), + [anon_sym_BSLASHnocite] = ACTIONS(5025), + [anon_sym_BSLASHcitet] = ACTIONS(5025), + [anon_sym_BSLASHcitep] = ACTIONS(5025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteauthor] = ACTIONS(5025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitetitle] = ACTIONS(5025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteyear] = ACTIONS(5025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitedate] = ACTIONS(5025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteurl] = ACTIONS(5025), + [anon_sym_BSLASHfullcite] = ACTIONS(5025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), + [anon_sym_BSLASHcitealt] = ACTIONS(5025), + [anon_sym_BSLASHcitealp] = ACTIONS(5025), + [anon_sym_BSLASHcitetext] = ACTIONS(5025), + [anon_sym_BSLASHparencite] = ACTIONS(5025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHParencite] = ACTIONS(5025), + [anon_sym_BSLASHfootcite] = ACTIONS(5025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), + [anon_sym_BSLASHtextcite] = ACTIONS(5025), + [anon_sym_BSLASHTextcite] = ACTIONS(5025), + [anon_sym_BSLASHsmartcite] = ACTIONS(5025), + [anon_sym_BSLASHSmartcite] = ACTIONS(5025), + [anon_sym_BSLASHsupercite] = ACTIONS(5025), + [anon_sym_BSLASHautocite] = ACTIONS(5025), + [anon_sym_BSLASHAutocite] = ACTIONS(5025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHvolcite] = ACTIONS(5025), + [anon_sym_BSLASHVolcite] = ACTIONS(5025), + [anon_sym_BSLASHpvolcite] = ACTIONS(5025), + [anon_sym_BSLASHPvolcite] = ACTIONS(5025), + [anon_sym_BSLASHfvolcite] = ACTIONS(5025), + [anon_sym_BSLASHftvolcite] = ACTIONS(5025), + [anon_sym_BSLASHsvolcite] = ACTIONS(5025), + [anon_sym_BSLASHSvolcite] = ACTIONS(5025), + [anon_sym_BSLASHtvolcite] = ACTIONS(5025), + [anon_sym_BSLASHTvolcite] = ACTIONS(5025), + [anon_sym_BSLASHavolcite] = ACTIONS(5025), + [anon_sym_BSLASHAvolcite] = ACTIONS(5025), + [anon_sym_BSLASHnotecite] = ACTIONS(5025), + [anon_sym_BSLASHNotecite] = ACTIONS(5025), + [anon_sym_BSLASHpnotecite] = ACTIONS(5025), + [anon_sym_BSLASHPnotecite] = ACTIONS(5025), + [anon_sym_BSLASHfnotecite] = ACTIONS(5025), + [anon_sym_BSLASHlabel] = ACTIONS(5025), + [anon_sym_BSLASHref] = ACTIONS(5025), + [anon_sym_BSLASHeqref] = ACTIONS(5025), + [anon_sym_BSLASHvref] = ACTIONS(5025), + [anon_sym_BSLASHVref] = ACTIONS(5025), + [anon_sym_BSLASHautoref] = ACTIONS(5025), + [anon_sym_BSLASHpageref] = ACTIONS(5025), + [anon_sym_BSLASHcref] = ACTIONS(5025), + [anon_sym_BSLASHCref] = ACTIONS(5025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnameCref] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHlabelcref] = ACTIONS(5025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCrefrange] = ACTIONS(5025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnewlabel] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), + [anon_sym_BSLASHdef] = ACTIONS(5025), + [anon_sym_BSLASHlet] = ACTIONS(5025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), + [anon_sym_BSLASHgls] = ACTIONS(5025), + [anon_sym_BSLASHGls] = ACTIONS(5025), + [anon_sym_BSLASHGLS] = ACTIONS(5025), + [anon_sym_BSLASHglspl] = ACTIONS(5025), + [anon_sym_BSLASHGlspl] = ACTIONS(5025), + [anon_sym_BSLASHGLSpl] = ACTIONS(5025), + [anon_sym_BSLASHglsdisp] = ACTIONS(5025), + [anon_sym_BSLASHglslink] = ACTIONS(5025), + [anon_sym_BSLASHglstext] = ACTIONS(5025), + [anon_sym_BSLASHGlstext] = ACTIONS(5025), + [anon_sym_BSLASHGLStext] = ACTIONS(5025), + [anon_sym_BSLASHglsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), + [anon_sym_BSLASHglsplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSplural] = ACTIONS(5025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHglsname] = ACTIONS(5025), + [anon_sym_BSLASHGlsname] = ACTIONS(5025), + [anon_sym_BSLASHGLSname] = ACTIONS(5025), + [anon_sym_BSLASHglssymbol] = ACTIONS(5025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), + [anon_sym_BSLASHglsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), + [anon_sym_BSLASHglsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), + [anon_sym_BSLASHglsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), + [anon_sym_BSLASHglsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), + [anon_sym_BSLASHglsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), + [anon_sym_BSLASHnewacronym] = ACTIONS(5025), + [anon_sym_BSLASHacrshort] = ACTIONS(5025), + [anon_sym_BSLASHAcrshort] = ACTIONS(5025), + [anon_sym_BSLASHACRshort] = ACTIONS(5025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), + [anon_sym_BSLASHacrlong] = ACTIONS(5025), + [anon_sym_BSLASHAcrlong] = ACTIONS(5025), + [anon_sym_BSLASHACRlong] = ACTIONS(5025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), + [anon_sym_BSLASHacrfull] = ACTIONS(5025), + [anon_sym_BSLASHAcrfull] = ACTIONS(5025), + [anon_sym_BSLASHACRfull] = ACTIONS(5025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), + [anon_sym_BSLASHacs] = ACTIONS(5025), + [anon_sym_BSLASHAcs] = ACTIONS(5025), + [anon_sym_BSLASHacsp] = ACTIONS(5025), + [anon_sym_BSLASHAcsp] = ACTIONS(5025), + [anon_sym_BSLASHacl] = ACTIONS(5025), + [anon_sym_BSLASHAcl] = ACTIONS(5025), + [anon_sym_BSLASHaclp] = ACTIONS(5025), + [anon_sym_BSLASHAclp] = ACTIONS(5025), + [anon_sym_BSLASHacf] = ACTIONS(5025), + [anon_sym_BSLASHAcf] = ACTIONS(5025), + [anon_sym_BSLASHacfp] = ACTIONS(5025), + [anon_sym_BSLASHAcfp] = ACTIONS(5025), + [anon_sym_BSLASHac] = ACTIONS(5025), + [anon_sym_BSLASHAc] = ACTIONS(5025), + [anon_sym_BSLASHacp] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), + [anon_sym_BSLASHcolor] = ACTIONS(5025), + [anon_sym_BSLASHcolorbox] = ACTIONS(5025), + [anon_sym_BSLASHtextcolor] = ACTIONS(5025), + [anon_sym_BSLASHpagecolor] = ACTIONS(5025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [anon_sym_BSLASHtext] = ACTIONS(5025), + [anon_sym_BSLASHintertext] = ACTIONS(5025), + [anon_sym_shortintertext] = ACTIONS(5025), }, - [1132] = { - [sym_command_name] = ACTIONS(4987), + [986] = { + [sym_command_name] = ACTIONS(5029), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_BSLASHpart] = ACTIONS(4987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddpart] = ACTIONS(4987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHchapter] = ACTIONS(4987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddchap] = ACTIONS(4987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsection] = ACTIONS(4987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddsec] = ACTIONS(4987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHparagraph] = ACTIONS(4987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHitem] = ACTIONS(4987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(4985), - [sym_word] = ACTIONS(4987), - [sym_placeholder] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym__] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), - [anon_sym_BSLASHbegin] = ACTIONS(4987), - [anon_sym_BSLASHend] = ACTIONS(4987), - [anon_sym_BSLASHusepackage] = ACTIONS(4987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), - [anon_sym_BSLASHinclude] = ACTIONS(4987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), - [anon_sym_BSLASHinput] = ACTIONS(4987), - [anon_sym_BSLASHsubfile] = ACTIONS(4987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), - [anon_sym_BSLASHbibliography] = ACTIONS(4987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), - [anon_sym_BSLASHincludesvg] = ACTIONS(4987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), - [anon_sym_BSLASHimport] = ACTIONS(4987), - [anon_sym_BSLASHsubimport] = ACTIONS(4987), - [anon_sym_BSLASHinputfrom] = ACTIONS(4987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), - [anon_sym_BSLASHincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHcaption] = ACTIONS(4987), - [anon_sym_BSLASHcite] = ACTIONS(4987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCite] = ACTIONS(4987), - [anon_sym_BSLASHnocite] = ACTIONS(4987), - [anon_sym_BSLASHcitet] = ACTIONS(4987), - [anon_sym_BSLASHcitep] = ACTIONS(4987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteauthor] = ACTIONS(4987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitetitle] = ACTIONS(4987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteyear] = ACTIONS(4987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitedate] = ACTIONS(4987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteurl] = ACTIONS(4987), - [anon_sym_BSLASHfullcite] = ACTIONS(4987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), - [anon_sym_BSLASHcitealt] = ACTIONS(4987), - [anon_sym_BSLASHcitealp] = ACTIONS(4987), - [anon_sym_BSLASHcitetext] = ACTIONS(4987), - [anon_sym_BSLASHparencite] = ACTIONS(4987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHParencite] = ACTIONS(4987), - [anon_sym_BSLASHfootcite] = ACTIONS(4987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), - [anon_sym_BSLASHtextcite] = ACTIONS(4987), - [anon_sym_BSLASHTextcite] = ACTIONS(4987), - [anon_sym_BSLASHsmartcite] = ACTIONS(4987), - [anon_sym_BSLASHSmartcite] = ACTIONS(4987), - [anon_sym_BSLASHsupercite] = ACTIONS(4987), - [anon_sym_BSLASHautocite] = ACTIONS(4987), - [anon_sym_BSLASHAutocite] = ACTIONS(4987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHvolcite] = ACTIONS(4987), - [anon_sym_BSLASHVolcite] = ACTIONS(4987), - [anon_sym_BSLASHpvolcite] = ACTIONS(4987), - [anon_sym_BSLASHPvolcite] = ACTIONS(4987), - [anon_sym_BSLASHfvolcite] = ACTIONS(4987), - [anon_sym_BSLASHftvolcite] = ACTIONS(4987), - [anon_sym_BSLASHsvolcite] = ACTIONS(4987), - [anon_sym_BSLASHSvolcite] = ACTIONS(4987), - [anon_sym_BSLASHtvolcite] = ACTIONS(4987), - [anon_sym_BSLASHTvolcite] = ACTIONS(4987), - [anon_sym_BSLASHavolcite] = ACTIONS(4987), - [anon_sym_BSLASHAvolcite] = ACTIONS(4987), - [anon_sym_BSLASHnotecite] = ACTIONS(4987), - [anon_sym_BSLASHNotecite] = ACTIONS(4987), - [anon_sym_BSLASHpnotecite] = ACTIONS(4987), - [anon_sym_BSLASHPnotecite] = ACTIONS(4987), - [anon_sym_BSLASHfnotecite] = ACTIONS(4987), - [anon_sym_BSLASHlabel] = ACTIONS(4987), - [anon_sym_BSLASHref] = ACTIONS(4987), - [anon_sym_BSLASHeqref] = ACTIONS(4987), - [anon_sym_BSLASHvref] = ACTIONS(4987), - [anon_sym_BSLASHVref] = ACTIONS(4987), - [anon_sym_BSLASHautoref] = ACTIONS(4987), - [anon_sym_BSLASHpageref] = ACTIONS(4987), - [anon_sym_BSLASHcref] = ACTIONS(4987), - [anon_sym_BSLASHCref] = ACTIONS(4987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnameCref] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHlabelcref] = ACTIONS(4987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCrefrange] = ACTIONS(4987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnewlabel] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdef] = ACTIONS(4987), - [anon_sym_BSLASHlet] = ACTIONS(4987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), - [anon_sym_BSLASHgls] = ACTIONS(4987), - [anon_sym_BSLASHGls] = ACTIONS(4987), - [anon_sym_BSLASHGLS] = ACTIONS(4987), - [anon_sym_BSLASHglspl] = ACTIONS(4987), - [anon_sym_BSLASHGlspl] = ACTIONS(4987), - [anon_sym_BSLASHGLSpl] = ACTIONS(4987), - [anon_sym_BSLASHglsdisp] = ACTIONS(4987), - [anon_sym_BSLASHglslink] = ACTIONS(4987), - [anon_sym_BSLASHglstext] = ACTIONS(4987), - [anon_sym_BSLASHGlstext] = ACTIONS(4987), - [anon_sym_BSLASHGLStext] = ACTIONS(4987), - [anon_sym_BSLASHglsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), - [anon_sym_BSLASHglsplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSplural] = ACTIONS(4987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHglsname] = ACTIONS(4987), - [anon_sym_BSLASHGlsname] = ACTIONS(4987), - [anon_sym_BSLASHGLSname] = ACTIONS(4987), - [anon_sym_BSLASHglssymbol] = ACTIONS(4987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), - [anon_sym_BSLASHglsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), - [anon_sym_BSLASHglsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), - [anon_sym_BSLASHglsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), - [anon_sym_BSLASHglsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), - [anon_sym_BSLASHglsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), - [anon_sym_BSLASHnewacronym] = ACTIONS(4987), - [anon_sym_BSLASHacrshort] = ACTIONS(4987), - [anon_sym_BSLASHAcrshort] = ACTIONS(4987), - [anon_sym_BSLASHACRshort] = ACTIONS(4987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), - [anon_sym_BSLASHacrlong] = ACTIONS(4987), - [anon_sym_BSLASHAcrlong] = ACTIONS(4987), - [anon_sym_BSLASHACRlong] = ACTIONS(4987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), - [anon_sym_BSLASHacrfull] = ACTIONS(4987), - [anon_sym_BSLASHAcrfull] = ACTIONS(4987), - [anon_sym_BSLASHACRfull] = ACTIONS(4987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), - [anon_sym_BSLASHacs] = ACTIONS(4987), - [anon_sym_BSLASHAcs] = ACTIONS(4987), - [anon_sym_BSLASHacsp] = ACTIONS(4987), - [anon_sym_BSLASHAcsp] = ACTIONS(4987), - [anon_sym_BSLASHacl] = ACTIONS(4987), - [anon_sym_BSLASHAcl] = ACTIONS(4987), - [anon_sym_BSLASHaclp] = ACTIONS(4987), - [anon_sym_BSLASHAclp] = ACTIONS(4987), - [anon_sym_BSLASHacf] = ACTIONS(4987), - [anon_sym_BSLASHAcf] = ACTIONS(4987), - [anon_sym_BSLASHacfp] = ACTIONS(4987), - [anon_sym_BSLASHAcfp] = ACTIONS(4987), - [anon_sym_BSLASHac] = ACTIONS(4987), - [anon_sym_BSLASHAc] = ACTIONS(4987), - [anon_sym_BSLASHacp] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), - [anon_sym_BSLASHcolor] = ACTIONS(4987), - [anon_sym_BSLASHcolorbox] = ACTIONS(4987), - [anon_sym_BSLASHtextcolor] = ACTIONS(4987), - [anon_sym_BSLASHpagecolor] = ACTIONS(4987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), + [anon_sym_BSLASHiffalse] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_RBRACK] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_BSLASHpart] = ACTIONS(5029), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddpart] = ACTIONS(5029), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), + [anon_sym_BSLASHchapter] = ACTIONS(5029), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddchap] = ACTIONS(5029), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsection] = ACTIONS(5029), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddsec] = ACTIONS(5029), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubsection] = ACTIONS(5029), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHparagraph] = ACTIONS(5029), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), + [anon_sym_BSLASHitem] = ACTIONS(5029), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5027), + [sym_word] = ACTIONS(5029), + [sym_placeholder] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_CARET] = ACTIONS(5029), + [anon_sym__] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_COLON] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), + [anon_sym_DOLLAR] = ACTIONS(5029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5027), + [anon_sym_BSLASHbegin] = ACTIONS(5029), + [anon_sym_BSLASHusepackage] = ACTIONS(5029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), + [anon_sym_BSLASHinclude] = ACTIONS(5029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), + [anon_sym_BSLASHinput] = ACTIONS(5029), + [anon_sym_BSLASHsubfile] = ACTIONS(5029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), + [anon_sym_BSLASHbibliography] = ACTIONS(5029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), + [anon_sym_BSLASHincludesvg] = ACTIONS(5029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), + [anon_sym_BSLASHimport] = ACTIONS(5029), + [anon_sym_BSLASHsubimport] = ACTIONS(5029), + [anon_sym_BSLASHinputfrom] = ACTIONS(5029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), + [anon_sym_BSLASHincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHcaption] = ACTIONS(5029), + [anon_sym_BSLASHcite] = ACTIONS(5029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCite] = ACTIONS(5029), + [anon_sym_BSLASHnocite] = ACTIONS(5029), + [anon_sym_BSLASHcitet] = ACTIONS(5029), + [anon_sym_BSLASHcitep] = ACTIONS(5029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteauthor] = ACTIONS(5029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitetitle] = ACTIONS(5029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteyear] = ACTIONS(5029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitedate] = ACTIONS(5029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteurl] = ACTIONS(5029), + [anon_sym_BSLASHfullcite] = ACTIONS(5029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), + [anon_sym_BSLASHcitealt] = ACTIONS(5029), + [anon_sym_BSLASHcitealp] = ACTIONS(5029), + [anon_sym_BSLASHcitetext] = ACTIONS(5029), + [anon_sym_BSLASHparencite] = ACTIONS(5029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHParencite] = ACTIONS(5029), + [anon_sym_BSLASHfootcite] = ACTIONS(5029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), + [anon_sym_BSLASHtextcite] = ACTIONS(5029), + [anon_sym_BSLASHTextcite] = ACTIONS(5029), + [anon_sym_BSLASHsmartcite] = ACTIONS(5029), + [anon_sym_BSLASHSmartcite] = ACTIONS(5029), + [anon_sym_BSLASHsupercite] = ACTIONS(5029), + [anon_sym_BSLASHautocite] = ACTIONS(5029), + [anon_sym_BSLASHAutocite] = ACTIONS(5029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHvolcite] = ACTIONS(5029), + [anon_sym_BSLASHVolcite] = ACTIONS(5029), + [anon_sym_BSLASHpvolcite] = ACTIONS(5029), + [anon_sym_BSLASHPvolcite] = ACTIONS(5029), + [anon_sym_BSLASHfvolcite] = ACTIONS(5029), + [anon_sym_BSLASHftvolcite] = ACTIONS(5029), + [anon_sym_BSLASHsvolcite] = ACTIONS(5029), + [anon_sym_BSLASHSvolcite] = ACTIONS(5029), + [anon_sym_BSLASHtvolcite] = ACTIONS(5029), + [anon_sym_BSLASHTvolcite] = ACTIONS(5029), + [anon_sym_BSLASHavolcite] = ACTIONS(5029), + [anon_sym_BSLASHAvolcite] = ACTIONS(5029), + [anon_sym_BSLASHnotecite] = ACTIONS(5029), + [anon_sym_BSLASHNotecite] = ACTIONS(5029), + [anon_sym_BSLASHpnotecite] = ACTIONS(5029), + [anon_sym_BSLASHPnotecite] = ACTIONS(5029), + [anon_sym_BSLASHfnotecite] = ACTIONS(5029), + [anon_sym_BSLASHlabel] = ACTIONS(5029), + [anon_sym_BSLASHref] = ACTIONS(5029), + [anon_sym_BSLASHeqref] = ACTIONS(5029), + [anon_sym_BSLASHvref] = ACTIONS(5029), + [anon_sym_BSLASHVref] = ACTIONS(5029), + [anon_sym_BSLASHautoref] = ACTIONS(5029), + [anon_sym_BSLASHpageref] = ACTIONS(5029), + [anon_sym_BSLASHcref] = ACTIONS(5029), + [anon_sym_BSLASHCref] = ACTIONS(5029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnameCref] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHlabelcref] = ACTIONS(5029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCrefrange] = ACTIONS(5029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnewlabel] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), + [anon_sym_BSLASHdef] = ACTIONS(5029), + [anon_sym_BSLASHlet] = ACTIONS(5029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), + [anon_sym_BSLASHgls] = ACTIONS(5029), + [anon_sym_BSLASHGls] = ACTIONS(5029), + [anon_sym_BSLASHGLS] = ACTIONS(5029), + [anon_sym_BSLASHglspl] = ACTIONS(5029), + [anon_sym_BSLASHGlspl] = ACTIONS(5029), + [anon_sym_BSLASHGLSpl] = ACTIONS(5029), + [anon_sym_BSLASHglsdisp] = ACTIONS(5029), + [anon_sym_BSLASHglslink] = ACTIONS(5029), + [anon_sym_BSLASHglstext] = ACTIONS(5029), + [anon_sym_BSLASHGlstext] = ACTIONS(5029), + [anon_sym_BSLASHGLStext] = ACTIONS(5029), + [anon_sym_BSLASHglsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), + [anon_sym_BSLASHglsplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSplural] = ACTIONS(5029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHglsname] = ACTIONS(5029), + [anon_sym_BSLASHGlsname] = ACTIONS(5029), + [anon_sym_BSLASHGLSname] = ACTIONS(5029), + [anon_sym_BSLASHglssymbol] = ACTIONS(5029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), + [anon_sym_BSLASHglsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), + [anon_sym_BSLASHglsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), + [anon_sym_BSLASHglsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), + [anon_sym_BSLASHglsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), + [anon_sym_BSLASHglsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), + [anon_sym_BSLASHnewacronym] = ACTIONS(5029), + [anon_sym_BSLASHacrshort] = ACTIONS(5029), + [anon_sym_BSLASHAcrshort] = ACTIONS(5029), + [anon_sym_BSLASHACRshort] = ACTIONS(5029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), + [anon_sym_BSLASHacrlong] = ACTIONS(5029), + [anon_sym_BSLASHAcrlong] = ACTIONS(5029), + [anon_sym_BSLASHACRlong] = ACTIONS(5029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), + [anon_sym_BSLASHacrfull] = ACTIONS(5029), + [anon_sym_BSLASHAcrfull] = ACTIONS(5029), + [anon_sym_BSLASHACRfull] = ACTIONS(5029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), + [anon_sym_BSLASHacs] = ACTIONS(5029), + [anon_sym_BSLASHAcs] = ACTIONS(5029), + [anon_sym_BSLASHacsp] = ACTIONS(5029), + [anon_sym_BSLASHAcsp] = ACTIONS(5029), + [anon_sym_BSLASHacl] = ACTIONS(5029), + [anon_sym_BSLASHAcl] = ACTIONS(5029), + [anon_sym_BSLASHaclp] = ACTIONS(5029), + [anon_sym_BSLASHAclp] = ACTIONS(5029), + [anon_sym_BSLASHacf] = ACTIONS(5029), + [anon_sym_BSLASHAcf] = ACTIONS(5029), + [anon_sym_BSLASHacfp] = ACTIONS(5029), + [anon_sym_BSLASHAcfp] = ACTIONS(5029), + [anon_sym_BSLASHac] = ACTIONS(5029), + [anon_sym_BSLASHAc] = ACTIONS(5029), + [anon_sym_BSLASHacp] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), + [anon_sym_BSLASHcolor] = ACTIONS(5029), + [anon_sym_BSLASHcolorbox] = ACTIONS(5029), + [anon_sym_BSLASHtextcolor] = ACTIONS(5029), + [anon_sym_BSLASHpagecolor] = ACTIONS(5029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), + [anon_sym_BSLASHtext] = ACTIONS(5029), + [anon_sym_BSLASHintertext] = ACTIONS(5029), + [anon_sym_shortintertext] = ACTIONS(5029), }, - [1133] = { - [sym_command_name] = ACTIONS(4991), + [987] = { + [sym_command_name] = ACTIONS(5119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_BSLASHpart] = ACTIONS(5119), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddpart] = ACTIONS(5119), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5117), + [anon_sym_BSLASHchapter] = ACTIONS(5119), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddchap] = ACTIONS(5119), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsection] = ACTIONS(5119), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddsec] = ACTIONS(5119), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubsection] = ACTIONS(5119), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5119), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHparagraph] = ACTIONS(5119), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5119), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5117), + [anon_sym_BSLASHitem] = ACTIONS(5119), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5117), + [sym_word] = ACTIONS(5119), + [sym_placeholder] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5119), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_CARET] = ACTIONS(5119), + [anon_sym__] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_COLON] = ACTIONS(5119), + [anon_sym_SQUOTE] = ACTIONS(5119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), + [anon_sym_DOLLAR] = ACTIONS(5119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5117), + [anon_sym_BSLASHbegin] = ACTIONS(5119), + [anon_sym_BSLASHusepackage] = ACTIONS(5119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), + [anon_sym_BSLASHinclude] = ACTIONS(5119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), + [anon_sym_BSLASHinput] = ACTIONS(5119), + [anon_sym_BSLASHsubfile] = ACTIONS(5119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), + [anon_sym_BSLASHbibliography] = ACTIONS(5119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), + [anon_sym_BSLASHincludesvg] = ACTIONS(5119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), + [anon_sym_BSLASHimport] = ACTIONS(5119), + [anon_sym_BSLASHsubimport] = ACTIONS(5119), + [anon_sym_BSLASHinputfrom] = ACTIONS(5119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), + [anon_sym_BSLASHincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHcaption] = ACTIONS(5119), + [anon_sym_BSLASHcite] = ACTIONS(5119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCite] = ACTIONS(5119), + [anon_sym_BSLASHnocite] = ACTIONS(5119), + [anon_sym_BSLASHcitet] = ACTIONS(5119), + [anon_sym_BSLASHcitep] = ACTIONS(5119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteauthor] = ACTIONS(5119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitetitle] = ACTIONS(5119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteyear] = ACTIONS(5119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitedate] = ACTIONS(5119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteurl] = ACTIONS(5119), + [anon_sym_BSLASHfullcite] = ACTIONS(5119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), + [anon_sym_BSLASHcitealt] = ACTIONS(5119), + [anon_sym_BSLASHcitealp] = ACTIONS(5119), + [anon_sym_BSLASHcitetext] = ACTIONS(5119), + [anon_sym_BSLASHparencite] = ACTIONS(5119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHParencite] = ACTIONS(5119), + [anon_sym_BSLASHfootcite] = ACTIONS(5119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), + [anon_sym_BSLASHtextcite] = ACTIONS(5119), + [anon_sym_BSLASHTextcite] = ACTIONS(5119), + [anon_sym_BSLASHsmartcite] = ACTIONS(5119), + [anon_sym_BSLASHSmartcite] = ACTIONS(5119), + [anon_sym_BSLASHsupercite] = ACTIONS(5119), + [anon_sym_BSLASHautocite] = ACTIONS(5119), + [anon_sym_BSLASHAutocite] = ACTIONS(5119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHvolcite] = ACTIONS(5119), + [anon_sym_BSLASHVolcite] = ACTIONS(5119), + [anon_sym_BSLASHpvolcite] = ACTIONS(5119), + [anon_sym_BSLASHPvolcite] = ACTIONS(5119), + [anon_sym_BSLASHfvolcite] = ACTIONS(5119), + [anon_sym_BSLASHftvolcite] = ACTIONS(5119), + [anon_sym_BSLASHsvolcite] = ACTIONS(5119), + [anon_sym_BSLASHSvolcite] = ACTIONS(5119), + [anon_sym_BSLASHtvolcite] = ACTIONS(5119), + [anon_sym_BSLASHTvolcite] = ACTIONS(5119), + [anon_sym_BSLASHavolcite] = ACTIONS(5119), + [anon_sym_BSLASHAvolcite] = ACTIONS(5119), + [anon_sym_BSLASHnotecite] = ACTIONS(5119), + [anon_sym_BSLASHNotecite] = ACTIONS(5119), + [anon_sym_BSLASHpnotecite] = ACTIONS(5119), + [anon_sym_BSLASHPnotecite] = ACTIONS(5119), + [anon_sym_BSLASHfnotecite] = ACTIONS(5119), + [anon_sym_BSLASHlabel] = ACTIONS(5119), + [anon_sym_BSLASHref] = ACTIONS(5119), + [anon_sym_BSLASHeqref] = ACTIONS(5119), + [anon_sym_BSLASHvref] = ACTIONS(5119), + [anon_sym_BSLASHVref] = ACTIONS(5119), + [anon_sym_BSLASHautoref] = ACTIONS(5119), + [anon_sym_BSLASHpageref] = ACTIONS(5119), + [anon_sym_BSLASHcref] = ACTIONS(5119), + [anon_sym_BSLASHCref] = ACTIONS(5119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnameCref] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHlabelcref] = ACTIONS(5119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCrefrange] = ACTIONS(5119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnewlabel] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), + [anon_sym_BSLASHdef] = ACTIONS(5119), + [anon_sym_BSLASHlet] = ACTIONS(5119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), + [anon_sym_BSLASHgls] = ACTIONS(5119), + [anon_sym_BSLASHGls] = ACTIONS(5119), + [anon_sym_BSLASHGLS] = ACTIONS(5119), + [anon_sym_BSLASHglspl] = ACTIONS(5119), + [anon_sym_BSLASHGlspl] = ACTIONS(5119), + [anon_sym_BSLASHGLSpl] = ACTIONS(5119), + [anon_sym_BSLASHglsdisp] = ACTIONS(5119), + [anon_sym_BSLASHglslink] = ACTIONS(5119), + [anon_sym_BSLASHglstext] = ACTIONS(5119), + [anon_sym_BSLASHGlstext] = ACTIONS(5119), + [anon_sym_BSLASHGLStext] = ACTIONS(5119), + [anon_sym_BSLASHglsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), + [anon_sym_BSLASHglsplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSplural] = ACTIONS(5119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHglsname] = ACTIONS(5119), + [anon_sym_BSLASHGlsname] = ACTIONS(5119), + [anon_sym_BSLASHGLSname] = ACTIONS(5119), + [anon_sym_BSLASHglssymbol] = ACTIONS(5119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), + [anon_sym_BSLASHglsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), + [anon_sym_BSLASHglsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), + [anon_sym_BSLASHglsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), + [anon_sym_BSLASHglsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), + [anon_sym_BSLASHglsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), + [anon_sym_BSLASHnewacronym] = ACTIONS(5119), + [anon_sym_BSLASHacrshort] = ACTIONS(5119), + [anon_sym_BSLASHAcrshort] = ACTIONS(5119), + [anon_sym_BSLASHACRshort] = ACTIONS(5119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), + [anon_sym_BSLASHacrlong] = ACTIONS(5119), + [anon_sym_BSLASHAcrlong] = ACTIONS(5119), + [anon_sym_BSLASHACRlong] = ACTIONS(5119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), + [anon_sym_BSLASHacrfull] = ACTIONS(5119), + [anon_sym_BSLASHAcrfull] = ACTIONS(5119), + [anon_sym_BSLASHACRfull] = ACTIONS(5119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), + [anon_sym_BSLASHacs] = ACTIONS(5119), + [anon_sym_BSLASHAcs] = ACTIONS(5119), + [anon_sym_BSLASHacsp] = ACTIONS(5119), + [anon_sym_BSLASHAcsp] = ACTIONS(5119), + [anon_sym_BSLASHacl] = ACTIONS(5119), + [anon_sym_BSLASHAcl] = ACTIONS(5119), + [anon_sym_BSLASHaclp] = ACTIONS(5119), + [anon_sym_BSLASHAclp] = ACTIONS(5119), + [anon_sym_BSLASHacf] = ACTIONS(5119), + [anon_sym_BSLASHAcf] = ACTIONS(5119), + [anon_sym_BSLASHacfp] = ACTIONS(5119), + [anon_sym_BSLASHAcfp] = ACTIONS(5119), + [anon_sym_BSLASHac] = ACTIONS(5119), + [anon_sym_BSLASHAc] = ACTIONS(5119), + [anon_sym_BSLASHacp] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), + [anon_sym_BSLASHcolor] = ACTIONS(5119), + [anon_sym_BSLASHcolorbox] = ACTIONS(5119), + [anon_sym_BSLASHtextcolor] = ACTIONS(5119), + [anon_sym_BSLASHpagecolor] = ACTIONS(5119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), + [anon_sym_BSLASHtext] = ACTIONS(5119), + [anon_sym_BSLASHintertext] = ACTIONS(5119), + [anon_sym_shortintertext] = ACTIONS(5119), + }, + [988] = { + [sym_command_name] = ACTIONS(5033), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_BSLASHpart] = ACTIONS(4991), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddpart] = ACTIONS(4991), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHchapter] = ACTIONS(4991), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddchap] = ACTIONS(4991), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsection] = ACTIONS(4991), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddsec] = ACTIONS(4991), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHparagraph] = ACTIONS(4991), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHitem] = ACTIONS(4991), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4989), - [sym_word] = ACTIONS(4991), - [sym_placeholder] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym__] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), - [anon_sym_BSLASHbegin] = ACTIONS(4991), - [anon_sym_BSLASHend] = ACTIONS(4991), - [anon_sym_BSLASHusepackage] = ACTIONS(4991), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), - [anon_sym_BSLASHinclude] = ACTIONS(4991), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), - [anon_sym_BSLASHinput] = ACTIONS(4991), - [anon_sym_BSLASHsubfile] = ACTIONS(4991), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), - [anon_sym_BSLASHbibliography] = ACTIONS(4991), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), - [anon_sym_BSLASHincludesvg] = ACTIONS(4991), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), - [anon_sym_BSLASHimport] = ACTIONS(4991), - [anon_sym_BSLASHsubimport] = ACTIONS(4991), - [anon_sym_BSLASHinputfrom] = ACTIONS(4991), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), - [anon_sym_BSLASHincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHcaption] = ACTIONS(4991), - [anon_sym_BSLASHcite] = ACTIONS(4991), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCite] = ACTIONS(4991), - [anon_sym_BSLASHnocite] = ACTIONS(4991), - [anon_sym_BSLASHcitet] = ACTIONS(4991), - [anon_sym_BSLASHcitep] = ACTIONS(4991), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteauthor] = ACTIONS(4991), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitetitle] = ACTIONS(4991), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteyear] = ACTIONS(4991), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitedate] = ACTIONS(4991), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteurl] = ACTIONS(4991), - [anon_sym_BSLASHfullcite] = ACTIONS(4991), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), - [anon_sym_BSLASHcitealt] = ACTIONS(4991), - [anon_sym_BSLASHcitealp] = ACTIONS(4991), - [anon_sym_BSLASHcitetext] = ACTIONS(4991), - [anon_sym_BSLASHparencite] = ACTIONS(4991), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHParencite] = ACTIONS(4991), - [anon_sym_BSLASHfootcite] = ACTIONS(4991), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), - [anon_sym_BSLASHtextcite] = ACTIONS(4991), - [anon_sym_BSLASHTextcite] = ACTIONS(4991), - [anon_sym_BSLASHsmartcite] = ACTIONS(4991), - [anon_sym_BSLASHSmartcite] = ACTIONS(4991), - [anon_sym_BSLASHsupercite] = ACTIONS(4991), - [anon_sym_BSLASHautocite] = ACTIONS(4991), - [anon_sym_BSLASHAutocite] = ACTIONS(4991), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHvolcite] = ACTIONS(4991), - [anon_sym_BSLASHVolcite] = ACTIONS(4991), - [anon_sym_BSLASHpvolcite] = ACTIONS(4991), - [anon_sym_BSLASHPvolcite] = ACTIONS(4991), - [anon_sym_BSLASHfvolcite] = ACTIONS(4991), - [anon_sym_BSLASHftvolcite] = ACTIONS(4991), - [anon_sym_BSLASHsvolcite] = ACTIONS(4991), - [anon_sym_BSLASHSvolcite] = ACTIONS(4991), - [anon_sym_BSLASHtvolcite] = ACTIONS(4991), - [anon_sym_BSLASHTvolcite] = ACTIONS(4991), - [anon_sym_BSLASHavolcite] = ACTIONS(4991), - [anon_sym_BSLASHAvolcite] = ACTIONS(4991), - [anon_sym_BSLASHnotecite] = ACTIONS(4991), - [anon_sym_BSLASHNotecite] = ACTIONS(4991), - [anon_sym_BSLASHpnotecite] = ACTIONS(4991), - [anon_sym_BSLASHPnotecite] = ACTIONS(4991), - [anon_sym_BSLASHfnotecite] = ACTIONS(4991), - [anon_sym_BSLASHlabel] = ACTIONS(4991), - [anon_sym_BSLASHref] = ACTIONS(4991), - [anon_sym_BSLASHeqref] = ACTIONS(4991), - [anon_sym_BSLASHvref] = ACTIONS(4991), - [anon_sym_BSLASHVref] = ACTIONS(4991), - [anon_sym_BSLASHautoref] = ACTIONS(4991), - [anon_sym_BSLASHpageref] = ACTIONS(4991), - [anon_sym_BSLASHcref] = ACTIONS(4991), - [anon_sym_BSLASHCref] = ACTIONS(4991), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnameCref] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHlabelcref] = ACTIONS(4991), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCrefrange] = ACTIONS(4991), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnewlabel] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdef] = ACTIONS(4991), - [anon_sym_BSLASHlet] = ACTIONS(4991), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), - [anon_sym_BSLASHgls] = ACTIONS(4991), - [anon_sym_BSLASHGls] = ACTIONS(4991), - [anon_sym_BSLASHGLS] = ACTIONS(4991), - [anon_sym_BSLASHglspl] = ACTIONS(4991), - [anon_sym_BSLASHGlspl] = ACTIONS(4991), - [anon_sym_BSLASHGLSpl] = ACTIONS(4991), - [anon_sym_BSLASHglsdisp] = ACTIONS(4991), - [anon_sym_BSLASHglslink] = ACTIONS(4991), - [anon_sym_BSLASHglstext] = ACTIONS(4991), - [anon_sym_BSLASHGlstext] = ACTIONS(4991), - [anon_sym_BSLASHGLStext] = ACTIONS(4991), - [anon_sym_BSLASHglsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), - [anon_sym_BSLASHglsplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSplural] = ACTIONS(4991), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHglsname] = ACTIONS(4991), - [anon_sym_BSLASHGlsname] = ACTIONS(4991), - [anon_sym_BSLASHGLSname] = ACTIONS(4991), - [anon_sym_BSLASHglssymbol] = ACTIONS(4991), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), - [anon_sym_BSLASHglsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), - [anon_sym_BSLASHglsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), - [anon_sym_BSLASHglsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), - [anon_sym_BSLASHglsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), - [anon_sym_BSLASHglsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), - [anon_sym_BSLASHnewacronym] = ACTIONS(4991), - [anon_sym_BSLASHacrshort] = ACTIONS(4991), - [anon_sym_BSLASHAcrshort] = ACTIONS(4991), - [anon_sym_BSLASHACRshort] = ACTIONS(4991), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), - [anon_sym_BSLASHacrlong] = ACTIONS(4991), - [anon_sym_BSLASHAcrlong] = ACTIONS(4991), - [anon_sym_BSLASHACRlong] = ACTIONS(4991), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), - [anon_sym_BSLASHacrfull] = ACTIONS(4991), - [anon_sym_BSLASHAcrfull] = ACTIONS(4991), - [anon_sym_BSLASHACRfull] = ACTIONS(4991), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), - [anon_sym_BSLASHacs] = ACTIONS(4991), - [anon_sym_BSLASHAcs] = ACTIONS(4991), - [anon_sym_BSLASHacsp] = ACTIONS(4991), - [anon_sym_BSLASHAcsp] = ACTIONS(4991), - [anon_sym_BSLASHacl] = ACTIONS(4991), - [anon_sym_BSLASHAcl] = ACTIONS(4991), - [anon_sym_BSLASHaclp] = ACTIONS(4991), - [anon_sym_BSLASHAclp] = ACTIONS(4991), - [anon_sym_BSLASHacf] = ACTIONS(4991), - [anon_sym_BSLASHAcf] = ACTIONS(4991), - [anon_sym_BSLASHacfp] = ACTIONS(4991), - [anon_sym_BSLASHAcfp] = ACTIONS(4991), - [anon_sym_BSLASHac] = ACTIONS(4991), - [anon_sym_BSLASHAc] = ACTIONS(4991), - [anon_sym_BSLASHacp] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), - [anon_sym_BSLASHcolor] = ACTIONS(4991), - [anon_sym_BSLASHcolorbox] = ACTIONS(4991), - [anon_sym_BSLASHtextcolor] = ACTIONS(4991), - [anon_sym_BSLASHpagecolor] = ACTIONS(4991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHiffalse] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_BSLASHpart] = ACTIONS(5033), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddpart] = ACTIONS(5033), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), + [anon_sym_BSLASHchapter] = ACTIONS(5033), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddchap] = ACTIONS(5033), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsection] = ACTIONS(5033), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddsec] = ACTIONS(5033), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubsection] = ACTIONS(5033), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHparagraph] = ACTIONS(5033), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), + [anon_sym_BSLASHitem] = ACTIONS(5033), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5031), + [sym_word] = ACTIONS(5033), + [sym_placeholder] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5033), + [anon_sym_DASH] = ACTIONS(5033), + [anon_sym_STAR] = ACTIONS(5033), + [anon_sym_SLASH] = ACTIONS(5033), + [anon_sym_CARET] = ACTIONS(5033), + [anon_sym__] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5033), + [anon_sym_PIPE] = ACTIONS(5033), + [anon_sym_COLON] = ACTIONS(5033), + [anon_sym_SQUOTE] = ACTIONS(5033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), + [anon_sym_DOLLAR] = ACTIONS(5033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5031), + [anon_sym_BSLASHbegin] = ACTIONS(5033), + [anon_sym_BSLASHusepackage] = ACTIONS(5033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), + [anon_sym_BSLASHinclude] = ACTIONS(5033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), + [anon_sym_BSLASHinput] = ACTIONS(5033), + [anon_sym_BSLASHsubfile] = ACTIONS(5033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), + [anon_sym_BSLASHbibliography] = ACTIONS(5033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), + [anon_sym_BSLASHincludesvg] = ACTIONS(5033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), + [anon_sym_BSLASHimport] = ACTIONS(5033), + [anon_sym_BSLASHsubimport] = ACTIONS(5033), + [anon_sym_BSLASHinputfrom] = ACTIONS(5033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), + [anon_sym_BSLASHincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHcaption] = ACTIONS(5033), + [anon_sym_BSLASHcite] = ACTIONS(5033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCite] = ACTIONS(5033), + [anon_sym_BSLASHnocite] = ACTIONS(5033), + [anon_sym_BSLASHcitet] = ACTIONS(5033), + [anon_sym_BSLASHcitep] = ACTIONS(5033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteauthor] = ACTIONS(5033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitetitle] = ACTIONS(5033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteyear] = ACTIONS(5033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitedate] = ACTIONS(5033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteurl] = ACTIONS(5033), + [anon_sym_BSLASHfullcite] = ACTIONS(5033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), + [anon_sym_BSLASHcitealt] = ACTIONS(5033), + [anon_sym_BSLASHcitealp] = ACTIONS(5033), + [anon_sym_BSLASHcitetext] = ACTIONS(5033), + [anon_sym_BSLASHparencite] = ACTIONS(5033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHParencite] = ACTIONS(5033), + [anon_sym_BSLASHfootcite] = ACTIONS(5033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), + [anon_sym_BSLASHtextcite] = ACTIONS(5033), + [anon_sym_BSLASHTextcite] = ACTIONS(5033), + [anon_sym_BSLASHsmartcite] = ACTIONS(5033), + [anon_sym_BSLASHSmartcite] = ACTIONS(5033), + [anon_sym_BSLASHsupercite] = ACTIONS(5033), + [anon_sym_BSLASHautocite] = ACTIONS(5033), + [anon_sym_BSLASHAutocite] = ACTIONS(5033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHvolcite] = ACTIONS(5033), + [anon_sym_BSLASHVolcite] = ACTIONS(5033), + [anon_sym_BSLASHpvolcite] = ACTIONS(5033), + [anon_sym_BSLASHPvolcite] = ACTIONS(5033), + [anon_sym_BSLASHfvolcite] = ACTIONS(5033), + [anon_sym_BSLASHftvolcite] = ACTIONS(5033), + [anon_sym_BSLASHsvolcite] = ACTIONS(5033), + [anon_sym_BSLASHSvolcite] = ACTIONS(5033), + [anon_sym_BSLASHtvolcite] = ACTIONS(5033), + [anon_sym_BSLASHTvolcite] = ACTIONS(5033), + [anon_sym_BSLASHavolcite] = ACTIONS(5033), + [anon_sym_BSLASHAvolcite] = ACTIONS(5033), + [anon_sym_BSLASHnotecite] = ACTIONS(5033), + [anon_sym_BSLASHNotecite] = ACTIONS(5033), + [anon_sym_BSLASHpnotecite] = ACTIONS(5033), + [anon_sym_BSLASHPnotecite] = ACTIONS(5033), + [anon_sym_BSLASHfnotecite] = ACTIONS(5033), + [anon_sym_BSLASHlabel] = ACTIONS(5033), + [anon_sym_BSLASHref] = ACTIONS(5033), + [anon_sym_BSLASHeqref] = ACTIONS(5033), + [anon_sym_BSLASHvref] = ACTIONS(5033), + [anon_sym_BSLASHVref] = ACTIONS(5033), + [anon_sym_BSLASHautoref] = ACTIONS(5033), + [anon_sym_BSLASHpageref] = ACTIONS(5033), + [anon_sym_BSLASHcref] = ACTIONS(5033), + [anon_sym_BSLASHCref] = ACTIONS(5033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnameCref] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHlabelcref] = ACTIONS(5033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCrefrange] = ACTIONS(5033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnewlabel] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), + [anon_sym_BSLASHdef] = ACTIONS(5033), + [anon_sym_BSLASHlet] = ACTIONS(5033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), + [anon_sym_BSLASHgls] = ACTIONS(5033), + [anon_sym_BSLASHGls] = ACTIONS(5033), + [anon_sym_BSLASHGLS] = ACTIONS(5033), + [anon_sym_BSLASHglspl] = ACTIONS(5033), + [anon_sym_BSLASHGlspl] = ACTIONS(5033), + [anon_sym_BSLASHGLSpl] = ACTIONS(5033), + [anon_sym_BSLASHglsdisp] = ACTIONS(5033), + [anon_sym_BSLASHglslink] = ACTIONS(5033), + [anon_sym_BSLASHglstext] = ACTIONS(5033), + [anon_sym_BSLASHGlstext] = ACTIONS(5033), + [anon_sym_BSLASHGLStext] = ACTIONS(5033), + [anon_sym_BSLASHglsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), + [anon_sym_BSLASHglsplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSplural] = ACTIONS(5033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHglsname] = ACTIONS(5033), + [anon_sym_BSLASHGlsname] = ACTIONS(5033), + [anon_sym_BSLASHGLSname] = ACTIONS(5033), + [anon_sym_BSLASHglssymbol] = ACTIONS(5033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), + [anon_sym_BSLASHglsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), + [anon_sym_BSLASHglsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), + [anon_sym_BSLASHglsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), + [anon_sym_BSLASHglsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), + [anon_sym_BSLASHglsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), + [anon_sym_BSLASHnewacronym] = ACTIONS(5033), + [anon_sym_BSLASHacrshort] = ACTIONS(5033), + [anon_sym_BSLASHAcrshort] = ACTIONS(5033), + [anon_sym_BSLASHACRshort] = ACTIONS(5033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), + [anon_sym_BSLASHacrlong] = ACTIONS(5033), + [anon_sym_BSLASHAcrlong] = ACTIONS(5033), + [anon_sym_BSLASHACRlong] = ACTIONS(5033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), + [anon_sym_BSLASHacrfull] = ACTIONS(5033), + [anon_sym_BSLASHAcrfull] = ACTIONS(5033), + [anon_sym_BSLASHACRfull] = ACTIONS(5033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), + [anon_sym_BSLASHacs] = ACTIONS(5033), + [anon_sym_BSLASHAcs] = ACTIONS(5033), + [anon_sym_BSLASHacsp] = ACTIONS(5033), + [anon_sym_BSLASHAcsp] = ACTIONS(5033), + [anon_sym_BSLASHacl] = ACTIONS(5033), + [anon_sym_BSLASHAcl] = ACTIONS(5033), + [anon_sym_BSLASHaclp] = ACTIONS(5033), + [anon_sym_BSLASHAclp] = ACTIONS(5033), + [anon_sym_BSLASHacf] = ACTIONS(5033), + [anon_sym_BSLASHAcf] = ACTIONS(5033), + [anon_sym_BSLASHacfp] = ACTIONS(5033), + [anon_sym_BSLASHAcfp] = ACTIONS(5033), + [anon_sym_BSLASHac] = ACTIONS(5033), + [anon_sym_BSLASHAc] = ACTIONS(5033), + [anon_sym_BSLASHacp] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), + [anon_sym_BSLASHcolor] = ACTIONS(5033), + [anon_sym_BSLASHcolorbox] = ACTIONS(5033), + [anon_sym_BSLASHtextcolor] = ACTIONS(5033), + [anon_sym_BSLASHpagecolor] = ACTIONS(5033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [anon_sym_BSLASHtext] = ACTIONS(5033), + [anon_sym_BSLASHintertext] = ACTIONS(5033), + [anon_sym_shortintertext] = ACTIONS(5033), }, - [1134] = { - [sym_command_name] = ACTIONS(5003), + [989] = { + [sym_command_name] = ACTIONS(5037), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(5001), - [anon_sym_BSLASHpart] = ACTIONS(5003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddpart] = ACTIONS(5003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHchapter] = ACTIONS(5003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddchap] = ACTIONS(5003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsection] = ACTIONS(5003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddsec] = ACTIONS(5003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHparagraph] = ACTIONS(5003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHitem] = ACTIONS(5003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), - [anon_sym_LBRACE] = ACTIONS(5001), - [sym_word] = ACTIONS(5003), - [sym_placeholder] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym__] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), - [anon_sym_BSLASHbegin] = ACTIONS(5003), - [anon_sym_BSLASHend] = ACTIONS(5003), - [anon_sym_BSLASHusepackage] = ACTIONS(5003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), - [anon_sym_BSLASHinclude] = ACTIONS(5003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), - [anon_sym_BSLASHinput] = ACTIONS(5003), - [anon_sym_BSLASHsubfile] = ACTIONS(5003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), - [anon_sym_BSLASHbibliography] = ACTIONS(5003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), - [anon_sym_BSLASHincludesvg] = ACTIONS(5003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), - [anon_sym_BSLASHimport] = ACTIONS(5003), - [anon_sym_BSLASHsubimport] = ACTIONS(5003), - [anon_sym_BSLASHinputfrom] = ACTIONS(5003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), - [anon_sym_BSLASHincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHcaption] = ACTIONS(5003), - [anon_sym_BSLASHcite] = ACTIONS(5003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCite] = ACTIONS(5003), - [anon_sym_BSLASHnocite] = ACTIONS(5003), - [anon_sym_BSLASHcitet] = ACTIONS(5003), - [anon_sym_BSLASHcitep] = ACTIONS(5003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteyear] = ACTIONS(5003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitedate] = ACTIONS(5003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteurl] = ACTIONS(5003), - [anon_sym_BSLASHfullcite] = ACTIONS(5003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), - [anon_sym_BSLASHcitealt] = ACTIONS(5003), - [anon_sym_BSLASHcitealp] = ACTIONS(5003), - [anon_sym_BSLASHcitetext] = ACTIONS(5003), - [anon_sym_BSLASHparencite] = ACTIONS(5003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHParencite] = ACTIONS(5003), - [anon_sym_BSLASHfootcite] = ACTIONS(5003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), - [anon_sym_BSLASHtextcite] = ACTIONS(5003), - [anon_sym_BSLASHTextcite] = ACTIONS(5003), - [anon_sym_BSLASHsmartcite] = ACTIONS(5003), - [anon_sym_BSLASHSmartcite] = ACTIONS(5003), - [anon_sym_BSLASHsupercite] = ACTIONS(5003), - [anon_sym_BSLASHautocite] = ACTIONS(5003), - [anon_sym_BSLASHAutocite] = ACTIONS(5003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHvolcite] = ACTIONS(5003), - [anon_sym_BSLASHVolcite] = ACTIONS(5003), - [anon_sym_BSLASHpvolcite] = ACTIONS(5003), - [anon_sym_BSLASHPvolcite] = ACTIONS(5003), - [anon_sym_BSLASHfvolcite] = ACTIONS(5003), - [anon_sym_BSLASHftvolcite] = ACTIONS(5003), - [anon_sym_BSLASHsvolcite] = ACTIONS(5003), - [anon_sym_BSLASHSvolcite] = ACTIONS(5003), - [anon_sym_BSLASHtvolcite] = ACTIONS(5003), - [anon_sym_BSLASHTvolcite] = ACTIONS(5003), - [anon_sym_BSLASHavolcite] = ACTIONS(5003), - [anon_sym_BSLASHAvolcite] = ACTIONS(5003), - [anon_sym_BSLASHnotecite] = ACTIONS(5003), - [anon_sym_BSLASHNotecite] = ACTIONS(5003), - [anon_sym_BSLASHpnotecite] = ACTIONS(5003), - [anon_sym_BSLASHPnotecite] = ACTIONS(5003), - [anon_sym_BSLASHfnotecite] = ACTIONS(5003), - [anon_sym_BSLASHlabel] = ACTIONS(5003), - [anon_sym_BSLASHref] = ACTIONS(5003), - [anon_sym_BSLASHeqref] = ACTIONS(5003), - [anon_sym_BSLASHvref] = ACTIONS(5003), - [anon_sym_BSLASHVref] = ACTIONS(5003), - [anon_sym_BSLASHautoref] = ACTIONS(5003), - [anon_sym_BSLASHpageref] = ACTIONS(5003), - [anon_sym_BSLASHcref] = ACTIONS(5003), - [anon_sym_BSLASHCref] = ACTIONS(5003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnameCref] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHlabelcref] = ACTIONS(5003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdef] = ACTIONS(5003), - [anon_sym_BSLASHlet] = ACTIONS(5003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), - [anon_sym_BSLASHgls] = ACTIONS(5003), - [anon_sym_BSLASHGls] = ACTIONS(5003), - [anon_sym_BSLASHGLS] = ACTIONS(5003), - [anon_sym_BSLASHglspl] = ACTIONS(5003), - [anon_sym_BSLASHGlspl] = ACTIONS(5003), - [anon_sym_BSLASHGLSpl] = ACTIONS(5003), - [anon_sym_BSLASHglsdisp] = ACTIONS(5003), - [anon_sym_BSLASHglslink] = ACTIONS(5003), - [anon_sym_BSLASHglstext] = ACTIONS(5003), - [anon_sym_BSLASHGlstext] = ACTIONS(5003), - [anon_sym_BSLASHGLStext] = ACTIONS(5003), - [anon_sym_BSLASHglsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), - [anon_sym_BSLASHglsplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSplural] = ACTIONS(5003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHglsname] = ACTIONS(5003), - [anon_sym_BSLASHGlsname] = ACTIONS(5003), - [anon_sym_BSLASHGLSname] = ACTIONS(5003), - [anon_sym_BSLASHglssymbol] = ACTIONS(5003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), - [anon_sym_BSLASHglsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), - [anon_sym_BSLASHglsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), - [anon_sym_BSLASHglsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), - [anon_sym_BSLASHglsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), - [anon_sym_BSLASHglsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), - [anon_sym_BSLASHnewacronym] = ACTIONS(5003), - [anon_sym_BSLASHacrshort] = ACTIONS(5003), - [anon_sym_BSLASHAcrshort] = ACTIONS(5003), - [anon_sym_BSLASHACRshort] = ACTIONS(5003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), - [anon_sym_BSLASHacrlong] = ACTIONS(5003), - [anon_sym_BSLASHAcrlong] = ACTIONS(5003), - [anon_sym_BSLASHACRlong] = ACTIONS(5003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), - [anon_sym_BSLASHacrfull] = ACTIONS(5003), - [anon_sym_BSLASHAcrfull] = ACTIONS(5003), - [anon_sym_BSLASHACRfull] = ACTIONS(5003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), - [anon_sym_BSLASHacs] = ACTIONS(5003), - [anon_sym_BSLASHAcs] = ACTIONS(5003), - [anon_sym_BSLASHacsp] = ACTIONS(5003), - [anon_sym_BSLASHAcsp] = ACTIONS(5003), - [anon_sym_BSLASHacl] = ACTIONS(5003), - [anon_sym_BSLASHAcl] = ACTIONS(5003), - [anon_sym_BSLASHaclp] = ACTIONS(5003), - [anon_sym_BSLASHAclp] = ACTIONS(5003), - [anon_sym_BSLASHacf] = ACTIONS(5003), - [anon_sym_BSLASHAcf] = ACTIONS(5003), - [anon_sym_BSLASHacfp] = ACTIONS(5003), - [anon_sym_BSLASHAcfp] = ACTIONS(5003), - [anon_sym_BSLASHac] = ACTIONS(5003), - [anon_sym_BSLASHAc] = ACTIONS(5003), - [anon_sym_BSLASHacp] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), - [anon_sym_BSLASHcolor] = ACTIONS(5003), - [anon_sym_BSLASHcolorbox] = ACTIONS(5003), - [anon_sym_BSLASHtextcolor] = ACTIONS(5003), - [anon_sym_BSLASHpagecolor] = ACTIONS(5003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), + [anon_sym_BSLASHiffalse] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5035), + [anon_sym_RPAREN] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_RBRACK] = ACTIONS(5035), + [anon_sym_COMMA] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_BSLASHpart] = ACTIONS(5037), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), + [anon_sym_BSLASHaddpart] = ACTIONS(5037), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), + [anon_sym_BSLASHchapter] = ACTIONS(5037), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), + [anon_sym_BSLASHaddchap] = ACTIONS(5037), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsection] = ACTIONS(5037), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), + [anon_sym_BSLASHaddsec] = ACTIONS(5037), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsubsection] = ACTIONS(5037), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), + [anon_sym_BSLASHparagraph] = ACTIONS(5037), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), + [anon_sym_BSLASHitem] = ACTIONS(5037), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5035), + [sym_word] = ACTIONS(5037), + [sym_placeholder] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5037), + [anon_sym_STAR] = ACTIONS(5037), + [anon_sym_SLASH] = ACTIONS(5037), + [anon_sym_CARET] = ACTIONS(5037), + [anon_sym__] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_COLON] = ACTIONS(5037), + [anon_sym_SQUOTE] = ACTIONS(5037), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), + [anon_sym_DOLLAR] = ACTIONS(5037), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5035), + [anon_sym_BSLASHbegin] = ACTIONS(5037), + [anon_sym_BSLASHusepackage] = ACTIONS(5037), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), + [anon_sym_BSLASHinclude] = ACTIONS(5037), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), + [anon_sym_BSLASHinput] = ACTIONS(5037), + [anon_sym_BSLASHsubfile] = ACTIONS(5037), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), + [anon_sym_BSLASHbibliography] = ACTIONS(5037), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), + [anon_sym_BSLASHincludesvg] = ACTIONS(5037), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), + [anon_sym_BSLASHimport] = ACTIONS(5037), + [anon_sym_BSLASHsubimport] = ACTIONS(5037), + [anon_sym_BSLASHinputfrom] = ACTIONS(5037), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), + [anon_sym_BSLASHincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHcaption] = ACTIONS(5037), + [anon_sym_BSLASHcite] = ACTIONS(5037), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCite] = ACTIONS(5037), + [anon_sym_BSLASHnocite] = ACTIONS(5037), + [anon_sym_BSLASHcitet] = ACTIONS(5037), + [anon_sym_BSLASHcitep] = ACTIONS(5037), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteauthor] = ACTIONS(5037), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitetitle] = ACTIONS(5037), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteyear] = ACTIONS(5037), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitedate] = ACTIONS(5037), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteurl] = ACTIONS(5037), + [anon_sym_BSLASHfullcite] = ACTIONS(5037), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), + [anon_sym_BSLASHcitealt] = ACTIONS(5037), + [anon_sym_BSLASHcitealp] = ACTIONS(5037), + [anon_sym_BSLASHcitetext] = ACTIONS(5037), + [anon_sym_BSLASHparencite] = ACTIONS(5037), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHParencite] = ACTIONS(5037), + [anon_sym_BSLASHfootcite] = ACTIONS(5037), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), + [anon_sym_BSLASHtextcite] = ACTIONS(5037), + [anon_sym_BSLASHTextcite] = ACTIONS(5037), + [anon_sym_BSLASHsmartcite] = ACTIONS(5037), + [anon_sym_BSLASHSmartcite] = ACTIONS(5037), + [anon_sym_BSLASHsupercite] = ACTIONS(5037), + [anon_sym_BSLASHautocite] = ACTIONS(5037), + [anon_sym_BSLASHAutocite] = ACTIONS(5037), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHvolcite] = ACTIONS(5037), + [anon_sym_BSLASHVolcite] = ACTIONS(5037), + [anon_sym_BSLASHpvolcite] = ACTIONS(5037), + [anon_sym_BSLASHPvolcite] = ACTIONS(5037), + [anon_sym_BSLASHfvolcite] = ACTIONS(5037), + [anon_sym_BSLASHftvolcite] = ACTIONS(5037), + [anon_sym_BSLASHsvolcite] = ACTIONS(5037), + [anon_sym_BSLASHSvolcite] = ACTIONS(5037), + [anon_sym_BSLASHtvolcite] = ACTIONS(5037), + [anon_sym_BSLASHTvolcite] = ACTIONS(5037), + [anon_sym_BSLASHavolcite] = ACTIONS(5037), + [anon_sym_BSLASHAvolcite] = ACTIONS(5037), + [anon_sym_BSLASHnotecite] = ACTIONS(5037), + [anon_sym_BSLASHNotecite] = ACTIONS(5037), + [anon_sym_BSLASHpnotecite] = ACTIONS(5037), + [anon_sym_BSLASHPnotecite] = ACTIONS(5037), + [anon_sym_BSLASHfnotecite] = ACTIONS(5037), + [anon_sym_BSLASHlabel] = ACTIONS(5037), + [anon_sym_BSLASHref] = ACTIONS(5037), + [anon_sym_BSLASHeqref] = ACTIONS(5037), + [anon_sym_BSLASHvref] = ACTIONS(5037), + [anon_sym_BSLASHVref] = ACTIONS(5037), + [anon_sym_BSLASHautoref] = ACTIONS(5037), + [anon_sym_BSLASHpageref] = ACTIONS(5037), + [anon_sym_BSLASHcref] = ACTIONS(5037), + [anon_sym_BSLASHCref] = ACTIONS(5037), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnameCref] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHlabelcref] = ACTIONS(5037), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCrefrange] = ACTIONS(5037), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnewlabel] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), + [anon_sym_BSLASHdef] = ACTIONS(5037), + [anon_sym_BSLASHlet] = ACTIONS(5037), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), + [anon_sym_BSLASHgls] = ACTIONS(5037), + [anon_sym_BSLASHGls] = ACTIONS(5037), + [anon_sym_BSLASHGLS] = ACTIONS(5037), + [anon_sym_BSLASHglspl] = ACTIONS(5037), + [anon_sym_BSLASHGlspl] = ACTIONS(5037), + [anon_sym_BSLASHGLSpl] = ACTIONS(5037), + [anon_sym_BSLASHglsdisp] = ACTIONS(5037), + [anon_sym_BSLASHglslink] = ACTIONS(5037), + [anon_sym_BSLASHglstext] = ACTIONS(5037), + [anon_sym_BSLASHGlstext] = ACTIONS(5037), + [anon_sym_BSLASHGLStext] = ACTIONS(5037), + [anon_sym_BSLASHglsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), + [anon_sym_BSLASHglsplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSplural] = ACTIONS(5037), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHglsname] = ACTIONS(5037), + [anon_sym_BSLASHGlsname] = ACTIONS(5037), + [anon_sym_BSLASHGLSname] = ACTIONS(5037), + [anon_sym_BSLASHglssymbol] = ACTIONS(5037), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), + [anon_sym_BSLASHglsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), + [anon_sym_BSLASHglsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), + [anon_sym_BSLASHglsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), + [anon_sym_BSLASHglsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), + [anon_sym_BSLASHglsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), + [anon_sym_BSLASHnewacronym] = ACTIONS(5037), + [anon_sym_BSLASHacrshort] = ACTIONS(5037), + [anon_sym_BSLASHAcrshort] = ACTIONS(5037), + [anon_sym_BSLASHACRshort] = ACTIONS(5037), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), + [anon_sym_BSLASHacrlong] = ACTIONS(5037), + [anon_sym_BSLASHAcrlong] = ACTIONS(5037), + [anon_sym_BSLASHACRlong] = ACTIONS(5037), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), + [anon_sym_BSLASHacrfull] = ACTIONS(5037), + [anon_sym_BSLASHAcrfull] = ACTIONS(5037), + [anon_sym_BSLASHACRfull] = ACTIONS(5037), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), + [anon_sym_BSLASHacs] = ACTIONS(5037), + [anon_sym_BSLASHAcs] = ACTIONS(5037), + [anon_sym_BSLASHacsp] = ACTIONS(5037), + [anon_sym_BSLASHAcsp] = ACTIONS(5037), + [anon_sym_BSLASHacl] = ACTIONS(5037), + [anon_sym_BSLASHAcl] = ACTIONS(5037), + [anon_sym_BSLASHaclp] = ACTIONS(5037), + [anon_sym_BSLASHAclp] = ACTIONS(5037), + [anon_sym_BSLASHacf] = ACTIONS(5037), + [anon_sym_BSLASHAcf] = ACTIONS(5037), + [anon_sym_BSLASHacfp] = ACTIONS(5037), + [anon_sym_BSLASHAcfp] = ACTIONS(5037), + [anon_sym_BSLASHac] = ACTIONS(5037), + [anon_sym_BSLASHAc] = ACTIONS(5037), + [anon_sym_BSLASHacp] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), + [anon_sym_BSLASHcolor] = ACTIONS(5037), + [anon_sym_BSLASHcolorbox] = ACTIONS(5037), + [anon_sym_BSLASHtextcolor] = ACTIONS(5037), + [anon_sym_BSLASHpagecolor] = ACTIONS(5037), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [anon_sym_BSLASHtext] = ACTIONS(5037), + [anon_sym_BSLASHintertext] = ACTIONS(5037), + [anon_sym_shortintertext] = ACTIONS(5037), }, - [1135] = { - [sym_command_name] = ACTIONS(5077), + [990] = { + [sym_command_name] = ACTIONS(5041), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_BSLASHpart] = ACTIONS(5077), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddpart] = ACTIONS(5077), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHchapter] = ACTIONS(5077), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddchap] = ACTIONS(5077), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsection] = ACTIONS(5077), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddsec] = ACTIONS(5077), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHparagraph] = ACTIONS(5077), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHitem] = ACTIONS(5077), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5077), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), - [anon_sym_BSLASHbegin] = ACTIONS(5077), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), + [anon_sym_BSLASHiffalse] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_RBRACK] = ACTIONS(5039), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_BSLASHpart] = ACTIONS(5041), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddpart] = ACTIONS(5041), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), + [anon_sym_BSLASHchapter] = ACTIONS(5041), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddchap] = ACTIONS(5041), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsection] = ACTIONS(5041), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddsec] = ACTIONS(5041), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubsection] = ACTIONS(5041), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHparagraph] = ACTIONS(5041), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), + [anon_sym_BSLASHitem] = ACTIONS(5041), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5039), + [sym_word] = ACTIONS(5041), + [sym_placeholder] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_SLASH] = ACTIONS(5041), + [anon_sym_CARET] = ACTIONS(5041), + [anon_sym__] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5041), + [anon_sym_PIPE] = ACTIONS(5041), + [anon_sym_COLON] = ACTIONS(5041), + [anon_sym_SQUOTE] = ACTIONS(5041), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5039), + [anon_sym_BSLASHbegin] = ACTIONS(5041), + [anon_sym_BSLASHusepackage] = ACTIONS(5041), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), + [anon_sym_BSLASHinclude] = ACTIONS(5041), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), + [anon_sym_BSLASHinput] = ACTIONS(5041), + [anon_sym_BSLASHsubfile] = ACTIONS(5041), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), + [anon_sym_BSLASHbibliography] = ACTIONS(5041), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), + [anon_sym_BSLASHincludesvg] = ACTIONS(5041), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), + [anon_sym_BSLASHimport] = ACTIONS(5041), + [anon_sym_BSLASHsubimport] = ACTIONS(5041), + [anon_sym_BSLASHinputfrom] = ACTIONS(5041), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), + [anon_sym_BSLASHincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHcaption] = ACTIONS(5041), + [anon_sym_BSLASHcite] = ACTIONS(5041), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCite] = ACTIONS(5041), + [anon_sym_BSLASHnocite] = ACTIONS(5041), + [anon_sym_BSLASHcitet] = ACTIONS(5041), + [anon_sym_BSLASHcitep] = ACTIONS(5041), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteauthor] = ACTIONS(5041), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitetitle] = ACTIONS(5041), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteyear] = ACTIONS(5041), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitedate] = ACTIONS(5041), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteurl] = ACTIONS(5041), + [anon_sym_BSLASHfullcite] = ACTIONS(5041), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), + [anon_sym_BSLASHcitealt] = ACTIONS(5041), + [anon_sym_BSLASHcitealp] = ACTIONS(5041), + [anon_sym_BSLASHcitetext] = ACTIONS(5041), + [anon_sym_BSLASHparencite] = ACTIONS(5041), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHParencite] = ACTIONS(5041), + [anon_sym_BSLASHfootcite] = ACTIONS(5041), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), + [anon_sym_BSLASHtextcite] = ACTIONS(5041), + [anon_sym_BSLASHTextcite] = ACTIONS(5041), + [anon_sym_BSLASHsmartcite] = ACTIONS(5041), + [anon_sym_BSLASHSmartcite] = ACTIONS(5041), + [anon_sym_BSLASHsupercite] = ACTIONS(5041), + [anon_sym_BSLASHautocite] = ACTIONS(5041), + [anon_sym_BSLASHAutocite] = ACTIONS(5041), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHvolcite] = ACTIONS(5041), + [anon_sym_BSLASHVolcite] = ACTIONS(5041), + [anon_sym_BSLASHpvolcite] = ACTIONS(5041), + [anon_sym_BSLASHPvolcite] = ACTIONS(5041), + [anon_sym_BSLASHfvolcite] = ACTIONS(5041), + [anon_sym_BSLASHftvolcite] = ACTIONS(5041), + [anon_sym_BSLASHsvolcite] = ACTIONS(5041), + [anon_sym_BSLASHSvolcite] = ACTIONS(5041), + [anon_sym_BSLASHtvolcite] = ACTIONS(5041), + [anon_sym_BSLASHTvolcite] = ACTIONS(5041), + [anon_sym_BSLASHavolcite] = ACTIONS(5041), + [anon_sym_BSLASHAvolcite] = ACTIONS(5041), + [anon_sym_BSLASHnotecite] = ACTIONS(5041), + [anon_sym_BSLASHNotecite] = ACTIONS(5041), + [anon_sym_BSLASHpnotecite] = ACTIONS(5041), + [anon_sym_BSLASHPnotecite] = ACTIONS(5041), + [anon_sym_BSLASHfnotecite] = ACTIONS(5041), + [anon_sym_BSLASHlabel] = ACTIONS(5041), + [anon_sym_BSLASHref] = ACTIONS(5041), + [anon_sym_BSLASHeqref] = ACTIONS(5041), + [anon_sym_BSLASHvref] = ACTIONS(5041), + [anon_sym_BSLASHVref] = ACTIONS(5041), + [anon_sym_BSLASHautoref] = ACTIONS(5041), + [anon_sym_BSLASHpageref] = ACTIONS(5041), + [anon_sym_BSLASHcref] = ACTIONS(5041), + [anon_sym_BSLASHCref] = ACTIONS(5041), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnameCref] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHlabelcref] = ACTIONS(5041), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCrefrange] = ACTIONS(5041), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnewlabel] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), + [anon_sym_BSLASHdef] = ACTIONS(5041), + [anon_sym_BSLASHlet] = ACTIONS(5041), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), + [anon_sym_BSLASHgls] = ACTIONS(5041), + [anon_sym_BSLASHGls] = ACTIONS(5041), + [anon_sym_BSLASHGLS] = ACTIONS(5041), + [anon_sym_BSLASHglspl] = ACTIONS(5041), + [anon_sym_BSLASHGlspl] = ACTIONS(5041), + [anon_sym_BSLASHGLSpl] = ACTIONS(5041), + [anon_sym_BSLASHglsdisp] = ACTIONS(5041), + [anon_sym_BSLASHglslink] = ACTIONS(5041), + [anon_sym_BSLASHglstext] = ACTIONS(5041), + [anon_sym_BSLASHGlstext] = ACTIONS(5041), + [anon_sym_BSLASHGLStext] = ACTIONS(5041), + [anon_sym_BSLASHglsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), + [anon_sym_BSLASHglsplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSplural] = ACTIONS(5041), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHglsname] = ACTIONS(5041), + [anon_sym_BSLASHGlsname] = ACTIONS(5041), + [anon_sym_BSLASHGLSname] = ACTIONS(5041), + [anon_sym_BSLASHglssymbol] = ACTIONS(5041), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), + [anon_sym_BSLASHglsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), + [anon_sym_BSLASHglsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), + [anon_sym_BSLASHglsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), + [anon_sym_BSLASHglsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), + [anon_sym_BSLASHglsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), + [anon_sym_BSLASHnewacronym] = ACTIONS(5041), + [anon_sym_BSLASHacrshort] = ACTIONS(5041), + [anon_sym_BSLASHAcrshort] = ACTIONS(5041), + [anon_sym_BSLASHACRshort] = ACTIONS(5041), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), + [anon_sym_BSLASHacrlong] = ACTIONS(5041), + [anon_sym_BSLASHAcrlong] = ACTIONS(5041), + [anon_sym_BSLASHACRlong] = ACTIONS(5041), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), + [anon_sym_BSLASHacrfull] = ACTIONS(5041), + [anon_sym_BSLASHAcrfull] = ACTIONS(5041), + [anon_sym_BSLASHACRfull] = ACTIONS(5041), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), + [anon_sym_BSLASHacs] = ACTIONS(5041), + [anon_sym_BSLASHAcs] = ACTIONS(5041), + [anon_sym_BSLASHacsp] = ACTIONS(5041), + [anon_sym_BSLASHAcsp] = ACTIONS(5041), + [anon_sym_BSLASHacl] = ACTIONS(5041), + [anon_sym_BSLASHAcl] = ACTIONS(5041), + [anon_sym_BSLASHaclp] = ACTIONS(5041), + [anon_sym_BSLASHAclp] = ACTIONS(5041), + [anon_sym_BSLASHacf] = ACTIONS(5041), + [anon_sym_BSLASHAcf] = ACTIONS(5041), + [anon_sym_BSLASHacfp] = ACTIONS(5041), + [anon_sym_BSLASHAcfp] = ACTIONS(5041), + [anon_sym_BSLASHac] = ACTIONS(5041), + [anon_sym_BSLASHAc] = ACTIONS(5041), + [anon_sym_BSLASHacp] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), + [anon_sym_BSLASHcolor] = ACTIONS(5041), + [anon_sym_BSLASHcolorbox] = ACTIONS(5041), + [anon_sym_BSLASHtextcolor] = ACTIONS(5041), + [anon_sym_BSLASHpagecolor] = ACTIONS(5041), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + [anon_sym_BSLASHtext] = ACTIONS(5041), + [anon_sym_BSLASHintertext] = ACTIONS(5041), + [anon_sym_shortintertext] = ACTIONS(5041), }, - [1136] = { - [sym_command_name] = ACTIONS(5073), + [991] = { + [sym_command_name] = ACTIONS(5045), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_RBRACK] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_BSLASHpart] = ACTIONS(5045), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddpart] = ACTIONS(5045), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5043), + [anon_sym_BSLASHchapter] = ACTIONS(5045), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddchap] = ACTIONS(5045), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsection] = ACTIONS(5045), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddsec] = ACTIONS(5045), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubsection] = ACTIONS(5045), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5045), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHparagraph] = ACTIONS(5045), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5045), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5043), + [anon_sym_BSLASHitem] = ACTIONS(5045), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5043), + [sym_word] = ACTIONS(5045), + [sym_placeholder] = ACTIONS(5043), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_CARET] = ACTIONS(5045), + [anon_sym__] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_COLON] = ACTIONS(5045), + [anon_sym_SQUOTE] = ACTIONS(5045), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), + [anon_sym_DOLLAR] = ACTIONS(5045), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5043), + [anon_sym_BSLASHbegin] = ACTIONS(5045), + [anon_sym_BSLASHusepackage] = ACTIONS(5045), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), + [anon_sym_BSLASHinclude] = ACTIONS(5045), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), + [anon_sym_BSLASHinput] = ACTIONS(5045), + [anon_sym_BSLASHsubfile] = ACTIONS(5045), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), + [anon_sym_BSLASHbibliography] = ACTIONS(5045), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), + [anon_sym_BSLASHincludesvg] = ACTIONS(5045), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), + [anon_sym_BSLASHimport] = ACTIONS(5045), + [anon_sym_BSLASHsubimport] = ACTIONS(5045), + [anon_sym_BSLASHinputfrom] = ACTIONS(5045), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), + [anon_sym_BSLASHincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHcaption] = ACTIONS(5045), + [anon_sym_BSLASHcite] = ACTIONS(5045), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCite] = ACTIONS(5045), + [anon_sym_BSLASHnocite] = ACTIONS(5045), + [anon_sym_BSLASHcitet] = ACTIONS(5045), + [anon_sym_BSLASHcitep] = ACTIONS(5045), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteauthor] = ACTIONS(5045), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitetitle] = ACTIONS(5045), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteyear] = ACTIONS(5045), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitedate] = ACTIONS(5045), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteurl] = ACTIONS(5045), + [anon_sym_BSLASHfullcite] = ACTIONS(5045), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), + [anon_sym_BSLASHcitealt] = ACTIONS(5045), + [anon_sym_BSLASHcitealp] = ACTIONS(5045), + [anon_sym_BSLASHcitetext] = ACTIONS(5045), + [anon_sym_BSLASHparencite] = ACTIONS(5045), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHParencite] = ACTIONS(5045), + [anon_sym_BSLASHfootcite] = ACTIONS(5045), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), + [anon_sym_BSLASHtextcite] = ACTIONS(5045), + [anon_sym_BSLASHTextcite] = ACTIONS(5045), + [anon_sym_BSLASHsmartcite] = ACTIONS(5045), + [anon_sym_BSLASHSmartcite] = ACTIONS(5045), + [anon_sym_BSLASHsupercite] = ACTIONS(5045), + [anon_sym_BSLASHautocite] = ACTIONS(5045), + [anon_sym_BSLASHAutocite] = ACTIONS(5045), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHvolcite] = ACTIONS(5045), + [anon_sym_BSLASHVolcite] = ACTIONS(5045), + [anon_sym_BSLASHpvolcite] = ACTIONS(5045), + [anon_sym_BSLASHPvolcite] = ACTIONS(5045), + [anon_sym_BSLASHfvolcite] = ACTIONS(5045), + [anon_sym_BSLASHftvolcite] = ACTIONS(5045), + [anon_sym_BSLASHsvolcite] = ACTIONS(5045), + [anon_sym_BSLASHSvolcite] = ACTIONS(5045), + [anon_sym_BSLASHtvolcite] = ACTIONS(5045), + [anon_sym_BSLASHTvolcite] = ACTIONS(5045), + [anon_sym_BSLASHavolcite] = ACTIONS(5045), + [anon_sym_BSLASHAvolcite] = ACTIONS(5045), + [anon_sym_BSLASHnotecite] = ACTIONS(5045), + [anon_sym_BSLASHNotecite] = ACTIONS(5045), + [anon_sym_BSLASHpnotecite] = ACTIONS(5045), + [anon_sym_BSLASHPnotecite] = ACTIONS(5045), + [anon_sym_BSLASHfnotecite] = ACTIONS(5045), + [anon_sym_BSLASHlabel] = ACTIONS(5045), + [anon_sym_BSLASHref] = ACTIONS(5045), + [anon_sym_BSLASHeqref] = ACTIONS(5045), + [anon_sym_BSLASHvref] = ACTIONS(5045), + [anon_sym_BSLASHVref] = ACTIONS(5045), + [anon_sym_BSLASHautoref] = ACTIONS(5045), + [anon_sym_BSLASHpageref] = ACTIONS(5045), + [anon_sym_BSLASHcref] = ACTIONS(5045), + [anon_sym_BSLASHCref] = ACTIONS(5045), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnameCref] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHlabelcref] = ACTIONS(5045), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCrefrange] = ACTIONS(5045), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnewlabel] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), + [anon_sym_BSLASHdef] = ACTIONS(5045), + [anon_sym_BSLASHlet] = ACTIONS(5045), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), + [anon_sym_BSLASHgls] = ACTIONS(5045), + [anon_sym_BSLASHGls] = ACTIONS(5045), + [anon_sym_BSLASHGLS] = ACTIONS(5045), + [anon_sym_BSLASHglspl] = ACTIONS(5045), + [anon_sym_BSLASHGlspl] = ACTIONS(5045), + [anon_sym_BSLASHGLSpl] = ACTIONS(5045), + [anon_sym_BSLASHglsdisp] = ACTIONS(5045), + [anon_sym_BSLASHglslink] = ACTIONS(5045), + [anon_sym_BSLASHglstext] = ACTIONS(5045), + [anon_sym_BSLASHGlstext] = ACTIONS(5045), + [anon_sym_BSLASHGLStext] = ACTIONS(5045), + [anon_sym_BSLASHglsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), + [anon_sym_BSLASHglsplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSplural] = ACTIONS(5045), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHglsname] = ACTIONS(5045), + [anon_sym_BSLASHGlsname] = ACTIONS(5045), + [anon_sym_BSLASHGLSname] = ACTIONS(5045), + [anon_sym_BSLASHglssymbol] = ACTIONS(5045), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), + [anon_sym_BSLASHglsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), + [anon_sym_BSLASHglsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), + [anon_sym_BSLASHglsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), + [anon_sym_BSLASHglsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), + [anon_sym_BSLASHglsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), + [anon_sym_BSLASHnewacronym] = ACTIONS(5045), + [anon_sym_BSLASHacrshort] = ACTIONS(5045), + [anon_sym_BSLASHAcrshort] = ACTIONS(5045), + [anon_sym_BSLASHACRshort] = ACTIONS(5045), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), + [anon_sym_BSLASHacrlong] = ACTIONS(5045), + [anon_sym_BSLASHAcrlong] = ACTIONS(5045), + [anon_sym_BSLASHACRlong] = ACTIONS(5045), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), + [anon_sym_BSLASHacrfull] = ACTIONS(5045), + [anon_sym_BSLASHAcrfull] = ACTIONS(5045), + [anon_sym_BSLASHACRfull] = ACTIONS(5045), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), + [anon_sym_BSLASHacs] = ACTIONS(5045), + [anon_sym_BSLASHAcs] = ACTIONS(5045), + [anon_sym_BSLASHacsp] = ACTIONS(5045), + [anon_sym_BSLASHAcsp] = ACTIONS(5045), + [anon_sym_BSLASHacl] = ACTIONS(5045), + [anon_sym_BSLASHAcl] = ACTIONS(5045), + [anon_sym_BSLASHaclp] = ACTIONS(5045), + [anon_sym_BSLASHAclp] = ACTIONS(5045), + [anon_sym_BSLASHacf] = ACTIONS(5045), + [anon_sym_BSLASHAcf] = ACTIONS(5045), + [anon_sym_BSLASHacfp] = ACTIONS(5045), + [anon_sym_BSLASHAcfp] = ACTIONS(5045), + [anon_sym_BSLASHac] = ACTIONS(5045), + [anon_sym_BSLASHAc] = ACTIONS(5045), + [anon_sym_BSLASHacp] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), + [anon_sym_BSLASHcolor] = ACTIONS(5045), + [anon_sym_BSLASHcolorbox] = ACTIONS(5045), + [anon_sym_BSLASHtextcolor] = ACTIONS(5045), + [anon_sym_BSLASHpagecolor] = ACTIONS(5045), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), + [anon_sym_BSLASHtext] = ACTIONS(5045), + [anon_sym_BSLASHintertext] = ACTIONS(5045), + [anon_sym_shortintertext] = ACTIONS(5045), + }, + [992] = { + [sym_command_name] = ACTIONS(5053), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_BSLASHpart] = ACTIONS(5073), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddpart] = ACTIONS(5073), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHchapter] = ACTIONS(5073), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddchap] = ACTIONS(5073), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsection] = ACTIONS(5073), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddsec] = ACTIONS(5073), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHparagraph] = ACTIONS(5073), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHitem] = ACTIONS(5073), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASHbegin] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHiffalse] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_BSLASHpart] = ACTIONS(5053), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddpart] = ACTIONS(5053), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), + [anon_sym_BSLASHchapter] = ACTIONS(5053), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddchap] = ACTIONS(5053), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsection] = ACTIONS(5053), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddsec] = ACTIONS(5053), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubsection] = ACTIONS(5053), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHparagraph] = ACTIONS(5053), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), + [anon_sym_BSLASHitem] = ACTIONS(5053), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5051), + [sym_word] = ACTIONS(5053), + [sym_placeholder] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5053), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5053), + [anon_sym__] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_COLON] = ACTIONS(5053), + [anon_sym_SQUOTE] = ACTIONS(5053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), + [anon_sym_DOLLAR] = ACTIONS(5053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5051), + [anon_sym_BSLASHbegin] = ACTIONS(5053), + [anon_sym_BSLASHusepackage] = ACTIONS(5053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), + [anon_sym_BSLASHinclude] = ACTIONS(5053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), + [anon_sym_BSLASHinput] = ACTIONS(5053), + [anon_sym_BSLASHsubfile] = ACTIONS(5053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), + [anon_sym_BSLASHbibliography] = ACTIONS(5053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), + [anon_sym_BSLASHincludesvg] = ACTIONS(5053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), + [anon_sym_BSLASHimport] = ACTIONS(5053), + [anon_sym_BSLASHsubimport] = ACTIONS(5053), + [anon_sym_BSLASHinputfrom] = ACTIONS(5053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), + [anon_sym_BSLASHincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHcaption] = ACTIONS(5053), + [anon_sym_BSLASHcite] = ACTIONS(5053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCite] = ACTIONS(5053), + [anon_sym_BSLASHnocite] = ACTIONS(5053), + [anon_sym_BSLASHcitet] = ACTIONS(5053), + [anon_sym_BSLASHcitep] = ACTIONS(5053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteauthor] = ACTIONS(5053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitetitle] = ACTIONS(5053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteyear] = ACTIONS(5053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitedate] = ACTIONS(5053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteurl] = ACTIONS(5053), + [anon_sym_BSLASHfullcite] = ACTIONS(5053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), + [anon_sym_BSLASHcitealt] = ACTIONS(5053), + [anon_sym_BSLASHcitealp] = ACTIONS(5053), + [anon_sym_BSLASHcitetext] = ACTIONS(5053), + [anon_sym_BSLASHparencite] = ACTIONS(5053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHParencite] = ACTIONS(5053), + [anon_sym_BSLASHfootcite] = ACTIONS(5053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), + [anon_sym_BSLASHtextcite] = ACTIONS(5053), + [anon_sym_BSLASHTextcite] = ACTIONS(5053), + [anon_sym_BSLASHsmartcite] = ACTIONS(5053), + [anon_sym_BSLASHSmartcite] = ACTIONS(5053), + [anon_sym_BSLASHsupercite] = ACTIONS(5053), + [anon_sym_BSLASHautocite] = ACTIONS(5053), + [anon_sym_BSLASHAutocite] = ACTIONS(5053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHvolcite] = ACTIONS(5053), + [anon_sym_BSLASHVolcite] = ACTIONS(5053), + [anon_sym_BSLASHpvolcite] = ACTIONS(5053), + [anon_sym_BSLASHPvolcite] = ACTIONS(5053), + [anon_sym_BSLASHfvolcite] = ACTIONS(5053), + [anon_sym_BSLASHftvolcite] = ACTIONS(5053), + [anon_sym_BSLASHsvolcite] = ACTIONS(5053), + [anon_sym_BSLASHSvolcite] = ACTIONS(5053), + [anon_sym_BSLASHtvolcite] = ACTIONS(5053), + [anon_sym_BSLASHTvolcite] = ACTIONS(5053), + [anon_sym_BSLASHavolcite] = ACTIONS(5053), + [anon_sym_BSLASHAvolcite] = ACTIONS(5053), + [anon_sym_BSLASHnotecite] = ACTIONS(5053), + [anon_sym_BSLASHNotecite] = ACTIONS(5053), + [anon_sym_BSLASHpnotecite] = ACTIONS(5053), + [anon_sym_BSLASHPnotecite] = ACTIONS(5053), + [anon_sym_BSLASHfnotecite] = ACTIONS(5053), + [anon_sym_BSLASHlabel] = ACTIONS(5053), + [anon_sym_BSLASHref] = ACTIONS(5053), + [anon_sym_BSLASHeqref] = ACTIONS(5053), + [anon_sym_BSLASHvref] = ACTIONS(5053), + [anon_sym_BSLASHVref] = ACTIONS(5053), + [anon_sym_BSLASHautoref] = ACTIONS(5053), + [anon_sym_BSLASHpageref] = ACTIONS(5053), + [anon_sym_BSLASHcref] = ACTIONS(5053), + [anon_sym_BSLASHCref] = ACTIONS(5053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnameCref] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHlabelcref] = ACTIONS(5053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCrefrange] = ACTIONS(5053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnewlabel] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), + [anon_sym_BSLASHdef] = ACTIONS(5053), + [anon_sym_BSLASHlet] = ACTIONS(5053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), + [anon_sym_BSLASHgls] = ACTIONS(5053), + [anon_sym_BSLASHGls] = ACTIONS(5053), + [anon_sym_BSLASHGLS] = ACTIONS(5053), + [anon_sym_BSLASHglspl] = ACTIONS(5053), + [anon_sym_BSLASHGlspl] = ACTIONS(5053), + [anon_sym_BSLASHGLSpl] = ACTIONS(5053), + [anon_sym_BSLASHglsdisp] = ACTIONS(5053), + [anon_sym_BSLASHglslink] = ACTIONS(5053), + [anon_sym_BSLASHglstext] = ACTIONS(5053), + [anon_sym_BSLASHGlstext] = ACTIONS(5053), + [anon_sym_BSLASHGLStext] = ACTIONS(5053), + [anon_sym_BSLASHglsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), + [anon_sym_BSLASHglsplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSplural] = ACTIONS(5053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHglsname] = ACTIONS(5053), + [anon_sym_BSLASHGlsname] = ACTIONS(5053), + [anon_sym_BSLASHGLSname] = ACTIONS(5053), + [anon_sym_BSLASHglssymbol] = ACTIONS(5053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), + [anon_sym_BSLASHglsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), + [anon_sym_BSLASHglsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), + [anon_sym_BSLASHglsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), + [anon_sym_BSLASHglsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), + [anon_sym_BSLASHglsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), + [anon_sym_BSLASHnewacronym] = ACTIONS(5053), + [anon_sym_BSLASHacrshort] = ACTIONS(5053), + [anon_sym_BSLASHAcrshort] = ACTIONS(5053), + [anon_sym_BSLASHACRshort] = ACTIONS(5053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), + [anon_sym_BSLASHacrlong] = ACTIONS(5053), + [anon_sym_BSLASHAcrlong] = ACTIONS(5053), + [anon_sym_BSLASHACRlong] = ACTIONS(5053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), + [anon_sym_BSLASHacrfull] = ACTIONS(5053), + [anon_sym_BSLASHAcrfull] = ACTIONS(5053), + [anon_sym_BSLASHACRfull] = ACTIONS(5053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), + [anon_sym_BSLASHacs] = ACTIONS(5053), + [anon_sym_BSLASHAcs] = ACTIONS(5053), + [anon_sym_BSLASHacsp] = ACTIONS(5053), + [anon_sym_BSLASHAcsp] = ACTIONS(5053), + [anon_sym_BSLASHacl] = ACTIONS(5053), + [anon_sym_BSLASHAcl] = ACTIONS(5053), + [anon_sym_BSLASHaclp] = ACTIONS(5053), + [anon_sym_BSLASHAclp] = ACTIONS(5053), + [anon_sym_BSLASHacf] = ACTIONS(5053), + [anon_sym_BSLASHAcf] = ACTIONS(5053), + [anon_sym_BSLASHacfp] = ACTIONS(5053), + [anon_sym_BSLASHAcfp] = ACTIONS(5053), + [anon_sym_BSLASHac] = ACTIONS(5053), + [anon_sym_BSLASHAc] = ACTIONS(5053), + [anon_sym_BSLASHacp] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), + [anon_sym_BSLASHcolor] = ACTIONS(5053), + [anon_sym_BSLASHcolorbox] = ACTIONS(5053), + [anon_sym_BSLASHtextcolor] = ACTIONS(5053), + [anon_sym_BSLASHpagecolor] = ACTIONS(5053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [anon_sym_BSLASHtext] = ACTIONS(5053), + [anon_sym_BSLASHintertext] = ACTIONS(5053), + [anon_sym_shortintertext] = ACTIONS(5053), + }, + [993] = { + [sym_command_name] = ACTIONS(5057), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5055), + [anon_sym_RPAREN] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5055), + [anon_sym_RBRACK] = ACTIONS(5055), + [anon_sym_COMMA] = ACTIONS(5055), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_BSLASHpart] = ACTIONS(5057), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), + [anon_sym_BSLASHaddpart] = ACTIONS(5057), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), + [anon_sym_BSLASHchapter] = ACTIONS(5057), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), + [anon_sym_BSLASHaddchap] = ACTIONS(5057), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsection] = ACTIONS(5057), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), + [anon_sym_BSLASHaddsec] = ACTIONS(5057), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsubsection] = ACTIONS(5057), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), + [anon_sym_BSLASHparagraph] = ACTIONS(5057), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), + [anon_sym_BSLASHitem] = ACTIONS(5057), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5055), + [sym_word] = ACTIONS(5057), + [sym_placeholder] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_STAR] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5057), + [anon_sym_CARET] = ACTIONS(5057), + [anon_sym__] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5057), + [anon_sym_BANG] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5057), + [anon_sym_COLON] = ACTIONS(5057), + [anon_sym_SQUOTE] = ACTIONS(5057), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), + [anon_sym_DOLLAR] = ACTIONS(5057), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5055), + [anon_sym_BSLASHbegin] = ACTIONS(5057), + [anon_sym_BSLASHusepackage] = ACTIONS(5057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), + [anon_sym_BSLASHinclude] = ACTIONS(5057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), + [anon_sym_BSLASHinput] = ACTIONS(5057), + [anon_sym_BSLASHsubfile] = ACTIONS(5057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), + [anon_sym_BSLASHbibliography] = ACTIONS(5057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), + [anon_sym_BSLASHincludesvg] = ACTIONS(5057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), + [anon_sym_BSLASHimport] = ACTIONS(5057), + [anon_sym_BSLASHsubimport] = ACTIONS(5057), + [anon_sym_BSLASHinputfrom] = ACTIONS(5057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), + [anon_sym_BSLASHincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHcaption] = ACTIONS(5057), + [anon_sym_BSLASHcite] = ACTIONS(5057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCite] = ACTIONS(5057), + [anon_sym_BSLASHnocite] = ACTIONS(5057), + [anon_sym_BSLASHcitet] = ACTIONS(5057), + [anon_sym_BSLASHcitep] = ACTIONS(5057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteauthor] = ACTIONS(5057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitetitle] = ACTIONS(5057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteyear] = ACTIONS(5057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitedate] = ACTIONS(5057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteurl] = ACTIONS(5057), + [anon_sym_BSLASHfullcite] = ACTIONS(5057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), + [anon_sym_BSLASHcitealt] = ACTIONS(5057), + [anon_sym_BSLASHcitealp] = ACTIONS(5057), + [anon_sym_BSLASHcitetext] = ACTIONS(5057), + [anon_sym_BSLASHparencite] = ACTIONS(5057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHParencite] = ACTIONS(5057), + [anon_sym_BSLASHfootcite] = ACTIONS(5057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), + [anon_sym_BSLASHtextcite] = ACTIONS(5057), + [anon_sym_BSLASHTextcite] = ACTIONS(5057), + [anon_sym_BSLASHsmartcite] = ACTIONS(5057), + [anon_sym_BSLASHSmartcite] = ACTIONS(5057), + [anon_sym_BSLASHsupercite] = ACTIONS(5057), + [anon_sym_BSLASHautocite] = ACTIONS(5057), + [anon_sym_BSLASHAutocite] = ACTIONS(5057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHvolcite] = ACTIONS(5057), + [anon_sym_BSLASHVolcite] = ACTIONS(5057), + [anon_sym_BSLASHpvolcite] = ACTIONS(5057), + [anon_sym_BSLASHPvolcite] = ACTIONS(5057), + [anon_sym_BSLASHfvolcite] = ACTIONS(5057), + [anon_sym_BSLASHftvolcite] = ACTIONS(5057), + [anon_sym_BSLASHsvolcite] = ACTIONS(5057), + [anon_sym_BSLASHSvolcite] = ACTIONS(5057), + [anon_sym_BSLASHtvolcite] = ACTIONS(5057), + [anon_sym_BSLASHTvolcite] = ACTIONS(5057), + [anon_sym_BSLASHavolcite] = ACTIONS(5057), + [anon_sym_BSLASHAvolcite] = ACTIONS(5057), + [anon_sym_BSLASHnotecite] = ACTIONS(5057), + [anon_sym_BSLASHNotecite] = ACTIONS(5057), + [anon_sym_BSLASHpnotecite] = ACTIONS(5057), + [anon_sym_BSLASHPnotecite] = ACTIONS(5057), + [anon_sym_BSLASHfnotecite] = ACTIONS(5057), + [anon_sym_BSLASHlabel] = ACTIONS(5057), + [anon_sym_BSLASHref] = ACTIONS(5057), + [anon_sym_BSLASHeqref] = ACTIONS(5057), + [anon_sym_BSLASHvref] = ACTIONS(5057), + [anon_sym_BSLASHVref] = ACTIONS(5057), + [anon_sym_BSLASHautoref] = ACTIONS(5057), + [anon_sym_BSLASHpageref] = ACTIONS(5057), + [anon_sym_BSLASHcref] = ACTIONS(5057), + [anon_sym_BSLASHCref] = ACTIONS(5057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnameCref] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHlabelcref] = ACTIONS(5057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCrefrange] = ACTIONS(5057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnewlabel] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), + [anon_sym_BSLASHdef] = ACTIONS(5057), + [anon_sym_BSLASHlet] = ACTIONS(5057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), + [anon_sym_BSLASHgls] = ACTIONS(5057), + [anon_sym_BSLASHGls] = ACTIONS(5057), + [anon_sym_BSLASHGLS] = ACTIONS(5057), + [anon_sym_BSLASHglspl] = ACTIONS(5057), + [anon_sym_BSLASHGlspl] = ACTIONS(5057), + [anon_sym_BSLASHGLSpl] = ACTIONS(5057), + [anon_sym_BSLASHglsdisp] = ACTIONS(5057), + [anon_sym_BSLASHglslink] = ACTIONS(5057), + [anon_sym_BSLASHglstext] = ACTIONS(5057), + [anon_sym_BSLASHGlstext] = ACTIONS(5057), + [anon_sym_BSLASHGLStext] = ACTIONS(5057), + [anon_sym_BSLASHglsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), + [anon_sym_BSLASHglsplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSplural] = ACTIONS(5057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHglsname] = ACTIONS(5057), + [anon_sym_BSLASHGlsname] = ACTIONS(5057), + [anon_sym_BSLASHGLSname] = ACTIONS(5057), + [anon_sym_BSLASHglssymbol] = ACTIONS(5057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), + [anon_sym_BSLASHglsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), + [anon_sym_BSLASHglsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), + [anon_sym_BSLASHglsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), + [anon_sym_BSLASHglsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), + [anon_sym_BSLASHglsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), + [anon_sym_BSLASHnewacronym] = ACTIONS(5057), + [anon_sym_BSLASHacrshort] = ACTIONS(5057), + [anon_sym_BSLASHAcrshort] = ACTIONS(5057), + [anon_sym_BSLASHACRshort] = ACTIONS(5057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), + [anon_sym_BSLASHacrlong] = ACTIONS(5057), + [anon_sym_BSLASHAcrlong] = ACTIONS(5057), + [anon_sym_BSLASHACRlong] = ACTIONS(5057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), + [anon_sym_BSLASHacrfull] = ACTIONS(5057), + [anon_sym_BSLASHAcrfull] = ACTIONS(5057), + [anon_sym_BSLASHACRfull] = ACTIONS(5057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), + [anon_sym_BSLASHacs] = ACTIONS(5057), + [anon_sym_BSLASHAcs] = ACTIONS(5057), + [anon_sym_BSLASHacsp] = ACTIONS(5057), + [anon_sym_BSLASHAcsp] = ACTIONS(5057), + [anon_sym_BSLASHacl] = ACTIONS(5057), + [anon_sym_BSLASHAcl] = ACTIONS(5057), + [anon_sym_BSLASHaclp] = ACTIONS(5057), + [anon_sym_BSLASHAclp] = ACTIONS(5057), + [anon_sym_BSLASHacf] = ACTIONS(5057), + [anon_sym_BSLASHAcf] = ACTIONS(5057), + [anon_sym_BSLASHacfp] = ACTIONS(5057), + [anon_sym_BSLASHAcfp] = ACTIONS(5057), + [anon_sym_BSLASHac] = ACTIONS(5057), + [anon_sym_BSLASHAc] = ACTIONS(5057), + [anon_sym_BSLASHacp] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), + [anon_sym_BSLASHcolor] = ACTIONS(5057), + [anon_sym_BSLASHcolorbox] = ACTIONS(5057), + [anon_sym_BSLASHtextcolor] = ACTIONS(5057), + [anon_sym_BSLASHpagecolor] = ACTIONS(5057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [anon_sym_BSLASHtext] = ACTIONS(5057), + [anon_sym_BSLASHintertext] = ACTIONS(5057), + [anon_sym_shortintertext] = ACTIONS(5057), }, - [1137] = { - [sym_command_name] = ACTIONS(5069), + [994] = { + [sym_command_name] = ACTIONS(4969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_EQ] = ACTIONS(4967), + [anon_sym_BSLASHpart] = ACTIONS(4969), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddpart] = ACTIONS(4969), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4967), + [anon_sym_BSLASHchapter] = ACTIONS(4969), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddchap] = ACTIONS(4969), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsection] = ACTIONS(4969), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddsec] = ACTIONS(4969), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubsection] = ACTIONS(4969), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4969), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHparagraph] = ACTIONS(4969), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4969), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4967), + [anon_sym_BSLASHitem] = ACTIONS(4969), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4967), + [sym_word] = ACTIONS(4969), + [sym_placeholder] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_CARET] = ACTIONS(4969), + [anon_sym__] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_COLON] = ACTIONS(4969), + [anon_sym_SQUOTE] = ACTIONS(4969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), + [anon_sym_BSLASHbegin] = ACTIONS(4969), + [anon_sym_BSLASHusepackage] = ACTIONS(4969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), + [anon_sym_BSLASHinclude] = ACTIONS(4969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), + [anon_sym_BSLASHinput] = ACTIONS(4969), + [anon_sym_BSLASHsubfile] = ACTIONS(4969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), + [anon_sym_BSLASHbibliography] = ACTIONS(4969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), + [anon_sym_BSLASHincludesvg] = ACTIONS(4969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), + [anon_sym_BSLASHimport] = ACTIONS(4969), + [anon_sym_BSLASHsubimport] = ACTIONS(4969), + [anon_sym_BSLASHinputfrom] = ACTIONS(4969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), + [anon_sym_BSLASHincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHcaption] = ACTIONS(4969), + [anon_sym_BSLASHcite] = ACTIONS(4969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCite] = ACTIONS(4969), + [anon_sym_BSLASHnocite] = ACTIONS(4969), + [anon_sym_BSLASHcitet] = ACTIONS(4969), + [anon_sym_BSLASHcitep] = ACTIONS(4969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteauthor] = ACTIONS(4969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitetitle] = ACTIONS(4969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteyear] = ACTIONS(4969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitedate] = ACTIONS(4969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteurl] = ACTIONS(4969), + [anon_sym_BSLASHfullcite] = ACTIONS(4969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), + [anon_sym_BSLASHcitealt] = ACTIONS(4969), + [anon_sym_BSLASHcitealp] = ACTIONS(4969), + [anon_sym_BSLASHcitetext] = ACTIONS(4969), + [anon_sym_BSLASHparencite] = ACTIONS(4969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHParencite] = ACTIONS(4969), + [anon_sym_BSLASHfootcite] = ACTIONS(4969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), + [anon_sym_BSLASHtextcite] = ACTIONS(4969), + [anon_sym_BSLASHTextcite] = ACTIONS(4969), + [anon_sym_BSLASHsmartcite] = ACTIONS(4969), + [anon_sym_BSLASHSmartcite] = ACTIONS(4969), + [anon_sym_BSLASHsupercite] = ACTIONS(4969), + [anon_sym_BSLASHautocite] = ACTIONS(4969), + [anon_sym_BSLASHAutocite] = ACTIONS(4969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHvolcite] = ACTIONS(4969), + [anon_sym_BSLASHVolcite] = ACTIONS(4969), + [anon_sym_BSLASHpvolcite] = ACTIONS(4969), + [anon_sym_BSLASHPvolcite] = ACTIONS(4969), + [anon_sym_BSLASHfvolcite] = ACTIONS(4969), + [anon_sym_BSLASHftvolcite] = ACTIONS(4969), + [anon_sym_BSLASHsvolcite] = ACTIONS(4969), + [anon_sym_BSLASHSvolcite] = ACTIONS(4969), + [anon_sym_BSLASHtvolcite] = ACTIONS(4969), + [anon_sym_BSLASHTvolcite] = ACTIONS(4969), + [anon_sym_BSLASHavolcite] = ACTIONS(4969), + [anon_sym_BSLASHAvolcite] = ACTIONS(4969), + [anon_sym_BSLASHnotecite] = ACTIONS(4969), + [anon_sym_BSLASHNotecite] = ACTIONS(4969), + [anon_sym_BSLASHpnotecite] = ACTIONS(4969), + [anon_sym_BSLASHPnotecite] = ACTIONS(4969), + [anon_sym_BSLASHfnotecite] = ACTIONS(4969), + [anon_sym_BSLASHlabel] = ACTIONS(4969), + [anon_sym_BSLASHref] = ACTIONS(4969), + [anon_sym_BSLASHeqref] = ACTIONS(4969), + [anon_sym_BSLASHvref] = ACTIONS(4969), + [anon_sym_BSLASHVref] = ACTIONS(4969), + [anon_sym_BSLASHautoref] = ACTIONS(4969), + [anon_sym_BSLASHpageref] = ACTIONS(4969), + [anon_sym_BSLASHcref] = ACTIONS(4969), + [anon_sym_BSLASHCref] = ACTIONS(4969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnameCref] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHlabelcref] = ACTIONS(4969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCrefrange] = ACTIONS(4969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnewlabel] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), + [anon_sym_BSLASHdef] = ACTIONS(4969), + [anon_sym_BSLASHlet] = ACTIONS(4969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), + [anon_sym_BSLASHgls] = ACTIONS(4969), + [anon_sym_BSLASHGls] = ACTIONS(4969), + [anon_sym_BSLASHGLS] = ACTIONS(4969), + [anon_sym_BSLASHglspl] = ACTIONS(4969), + [anon_sym_BSLASHGlspl] = ACTIONS(4969), + [anon_sym_BSLASHGLSpl] = ACTIONS(4969), + [anon_sym_BSLASHglsdisp] = ACTIONS(4969), + [anon_sym_BSLASHglslink] = ACTIONS(4969), + [anon_sym_BSLASHglstext] = ACTIONS(4969), + [anon_sym_BSLASHGlstext] = ACTIONS(4969), + [anon_sym_BSLASHGLStext] = ACTIONS(4969), + [anon_sym_BSLASHglsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), + [anon_sym_BSLASHglsplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSplural] = ACTIONS(4969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHglsname] = ACTIONS(4969), + [anon_sym_BSLASHGlsname] = ACTIONS(4969), + [anon_sym_BSLASHGLSname] = ACTIONS(4969), + [anon_sym_BSLASHglssymbol] = ACTIONS(4969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), + [anon_sym_BSLASHglsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), + [anon_sym_BSLASHglsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), + [anon_sym_BSLASHglsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), + [anon_sym_BSLASHglsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), + [anon_sym_BSLASHglsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), + [anon_sym_BSLASHnewacronym] = ACTIONS(4969), + [anon_sym_BSLASHacrshort] = ACTIONS(4969), + [anon_sym_BSLASHAcrshort] = ACTIONS(4969), + [anon_sym_BSLASHACRshort] = ACTIONS(4969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), + [anon_sym_BSLASHacrlong] = ACTIONS(4969), + [anon_sym_BSLASHAcrlong] = ACTIONS(4969), + [anon_sym_BSLASHACRlong] = ACTIONS(4969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), + [anon_sym_BSLASHacrfull] = ACTIONS(4969), + [anon_sym_BSLASHAcrfull] = ACTIONS(4969), + [anon_sym_BSLASHACRfull] = ACTIONS(4969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), + [anon_sym_BSLASHacs] = ACTIONS(4969), + [anon_sym_BSLASHAcs] = ACTIONS(4969), + [anon_sym_BSLASHacsp] = ACTIONS(4969), + [anon_sym_BSLASHAcsp] = ACTIONS(4969), + [anon_sym_BSLASHacl] = ACTIONS(4969), + [anon_sym_BSLASHAcl] = ACTIONS(4969), + [anon_sym_BSLASHaclp] = ACTIONS(4969), + [anon_sym_BSLASHAclp] = ACTIONS(4969), + [anon_sym_BSLASHacf] = ACTIONS(4969), + [anon_sym_BSLASHAcf] = ACTIONS(4969), + [anon_sym_BSLASHacfp] = ACTIONS(4969), + [anon_sym_BSLASHAcfp] = ACTIONS(4969), + [anon_sym_BSLASHac] = ACTIONS(4969), + [anon_sym_BSLASHAc] = ACTIONS(4969), + [anon_sym_BSLASHacp] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), + [anon_sym_BSLASHcolor] = ACTIONS(4969), + [anon_sym_BSLASHcolorbox] = ACTIONS(4969), + [anon_sym_BSLASHtextcolor] = ACTIONS(4969), + [anon_sym_BSLASHpagecolor] = ACTIONS(4969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), + [anon_sym_BSLASHtext] = ACTIONS(4969), + [anon_sym_BSLASHintertext] = ACTIONS(4969), + [anon_sym_shortintertext] = ACTIONS(4969), + }, + [995] = { + [sym_command_name] = ACTIONS(5161), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_RBRACK] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_BSLASHpart] = ACTIONS(5161), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddpart] = ACTIONS(5161), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5159), + [anon_sym_BSLASHchapter] = ACTIONS(5161), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddchap] = ACTIONS(5161), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsection] = ACTIONS(5161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddsec] = ACTIONS(5161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubsection] = ACTIONS(5161), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5161), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHparagraph] = ACTIONS(5161), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5161), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5159), + [anon_sym_BSLASHitem] = ACTIONS(5161), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5159), + [sym_word] = ACTIONS(5161), + [sym_placeholder] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_CARET] = ACTIONS(5161), + [anon_sym__] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_COLON] = ACTIONS(5161), + [anon_sym_SQUOTE] = ACTIONS(5161), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5159), + [anon_sym_DOLLAR] = ACTIONS(5161), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), + [anon_sym_BSLASHbegin] = ACTIONS(5161), + [anon_sym_BSLASHusepackage] = ACTIONS(5161), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), + [anon_sym_BSLASHinclude] = ACTIONS(5161), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), + [anon_sym_BSLASHinput] = ACTIONS(5161), + [anon_sym_BSLASHsubfile] = ACTIONS(5161), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), + [anon_sym_BSLASHbibliography] = ACTIONS(5161), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), + [anon_sym_BSLASHincludesvg] = ACTIONS(5161), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), + [anon_sym_BSLASHimport] = ACTIONS(5161), + [anon_sym_BSLASHsubimport] = ACTIONS(5161), + [anon_sym_BSLASHinputfrom] = ACTIONS(5161), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), + [anon_sym_BSLASHincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHcaption] = ACTIONS(5161), + [anon_sym_BSLASHcite] = ACTIONS(5161), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCite] = ACTIONS(5161), + [anon_sym_BSLASHnocite] = ACTIONS(5161), + [anon_sym_BSLASHcitet] = ACTIONS(5161), + [anon_sym_BSLASHcitep] = ACTIONS(5161), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteauthor] = ACTIONS(5161), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitetitle] = ACTIONS(5161), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteyear] = ACTIONS(5161), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitedate] = ACTIONS(5161), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteurl] = ACTIONS(5161), + [anon_sym_BSLASHfullcite] = ACTIONS(5161), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), + [anon_sym_BSLASHcitealt] = ACTIONS(5161), + [anon_sym_BSLASHcitealp] = ACTIONS(5161), + [anon_sym_BSLASHcitetext] = ACTIONS(5161), + [anon_sym_BSLASHparencite] = ACTIONS(5161), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHParencite] = ACTIONS(5161), + [anon_sym_BSLASHfootcite] = ACTIONS(5161), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), + [anon_sym_BSLASHtextcite] = ACTIONS(5161), + [anon_sym_BSLASHTextcite] = ACTIONS(5161), + [anon_sym_BSLASHsmartcite] = ACTIONS(5161), + [anon_sym_BSLASHSmartcite] = ACTIONS(5161), + [anon_sym_BSLASHsupercite] = ACTIONS(5161), + [anon_sym_BSLASHautocite] = ACTIONS(5161), + [anon_sym_BSLASHAutocite] = ACTIONS(5161), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHvolcite] = ACTIONS(5161), + [anon_sym_BSLASHVolcite] = ACTIONS(5161), + [anon_sym_BSLASHpvolcite] = ACTIONS(5161), + [anon_sym_BSLASHPvolcite] = ACTIONS(5161), + [anon_sym_BSLASHfvolcite] = ACTIONS(5161), + [anon_sym_BSLASHftvolcite] = ACTIONS(5161), + [anon_sym_BSLASHsvolcite] = ACTIONS(5161), + [anon_sym_BSLASHSvolcite] = ACTIONS(5161), + [anon_sym_BSLASHtvolcite] = ACTIONS(5161), + [anon_sym_BSLASHTvolcite] = ACTIONS(5161), + [anon_sym_BSLASHavolcite] = ACTIONS(5161), + [anon_sym_BSLASHAvolcite] = ACTIONS(5161), + [anon_sym_BSLASHnotecite] = ACTIONS(5161), + [anon_sym_BSLASHNotecite] = ACTIONS(5161), + [anon_sym_BSLASHpnotecite] = ACTIONS(5161), + [anon_sym_BSLASHPnotecite] = ACTIONS(5161), + [anon_sym_BSLASHfnotecite] = ACTIONS(5161), + [anon_sym_BSLASHlabel] = ACTIONS(5161), + [anon_sym_BSLASHref] = ACTIONS(5161), + [anon_sym_BSLASHeqref] = ACTIONS(5161), + [anon_sym_BSLASHvref] = ACTIONS(5161), + [anon_sym_BSLASHVref] = ACTIONS(5161), + [anon_sym_BSLASHautoref] = ACTIONS(5161), + [anon_sym_BSLASHpageref] = ACTIONS(5161), + [anon_sym_BSLASHcref] = ACTIONS(5161), + [anon_sym_BSLASHCref] = ACTIONS(5161), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnameCref] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHlabelcref] = ACTIONS(5161), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCrefrange] = ACTIONS(5161), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnewlabel] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), + [anon_sym_BSLASHdef] = ACTIONS(5161), + [anon_sym_BSLASHlet] = ACTIONS(5161), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), + [anon_sym_BSLASHgls] = ACTIONS(5161), + [anon_sym_BSLASHGls] = ACTIONS(5161), + [anon_sym_BSLASHGLS] = ACTIONS(5161), + [anon_sym_BSLASHglspl] = ACTIONS(5161), + [anon_sym_BSLASHGlspl] = ACTIONS(5161), + [anon_sym_BSLASHGLSpl] = ACTIONS(5161), + [anon_sym_BSLASHglsdisp] = ACTIONS(5161), + [anon_sym_BSLASHglslink] = ACTIONS(5161), + [anon_sym_BSLASHglstext] = ACTIONS(5161), + [anon_sym_BSLASHGlstext] = ACTIONS(5161), + [anon_sym_BSLASHGLStext] = ACTIONS(5161), + [anon_sym_BSLASHglsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), + [anon_sym_BSLASHglsplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSplural] = ACTIONS(5161), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHglsname] = ACTIONS(5161), + [anon_sym_BSLASHGlsname] = ACTIONS(5161), + [anon_sym_BSLASHGLSname] = ACTIONS(5161), + [anon_sym_BSLASHglssymbol] = ACTIONS(5161), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), + [anon_sym_BSLASHglsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), + [anon_sym_BSLASHglsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), + [anon_sym_BSLASHglsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), + [anon_sym_BSLASHglsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), + [anon_sym_BSLASHglsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), + [anon_sym_BSLASHnewacronym] = ACTIONS(5161), + [anon_sym_BSLASHacrshort] = ACTIONS(5161), + [anon_sym_BSLASHAcrshort] = ACTIONS(5161), + [anon_sym_BSLASHACRshort] = ACTIONS(5161), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), + [anon_sym_BSLASHacrlong] = ACTIONS(5161), + [anon_sym_BSLASHAcrlong] = ACTIONS(5161), + [anon_sym_BSLASHACRlong] = ACTIONS(5161), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), + [anon_sym_BSLASHacrfull] = ACTIONS(5161), + [anon_sym_BSLASHAcrfull] = ACTIONS(5161), + [anon_sym_BSLASHACRfull] = ACTIONS(5161), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), + [anon_sym_BSLASHacs] = ACTIONS(5161), + [anon_sym_BSLASHAcs] = ACTIONS(5161), + [anon_sym_BSLASHacsp] = ACTIONS(5161), + [anon_sym_BSLASHAcsp] = ACTIONS(5161), + [anon_sym_BSLASHacl] = ACTIONS(5161), + [anon_sym_BSLASHAcl] = ACTIONS(5161), + [anon_sym_BSLASHaclp] = ACTIONS(5161), + [anon_sym_BSLASHAclp] = ACTIONS(5161), + [anon_sym_BSLASHacf] = ACTIONS(5161), + [anon_sym_BSLASHAcf] = ACTIONS(5161), + [anon_sym_BSLASHacfp] = ACTIONS(5161), + [anon_sym_BSLASHAcfp] = ACTIONS(5161), + [anon_sym_BSLASHac] = ACTIONS(5161), + [anon_sym_BSLASHAc] = ACTIONS(5161), + [anon_sym_BSLASHacp] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), + [anon_sym_BSLASHcolor] = ACTIONS(5161), + [anon_sym_BSLASHcolorbox] = ACTIONS(5161), + [anon_sym_BSLASHtextcolor] = ACTIONS(5161), + [anon_sym_BSLASHpagecolor] = ACTIONS(5161), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), + [anon_sym_BSLASHtext] = ACTIONS(5161), + [anon_sym_BSLASHintertext] = ACTIONS(5161), + [anon_sym_shortintertext] = ACTIONS(5161), + }, + [996] = { + [sym_command_name] = ACTIONS(5165), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_BSLASHpart] = ACTIONS(5165), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddpart] = ACTIONS(5165), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5163), + [anon_sym_BSLASHchapter] = ACTIONS(5165), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddchap] = ACTIONS(5165), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsection] = ACTIONS(5165), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddsec] = ACTIONS(5165), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubsection] = ACTIONS(5165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5165), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHparagraph] = ACTIONS(5165), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5165), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5163), + [anon_sym_BSLASHitem] = ACTIONS(5165), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5163), + [sym_word] = ACTIONS(5165), + [sym_placeholder] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5165), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_CARET] = ACTIONS(5165), + [anon_sym__] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_COLON] = ACTIONS(5165), + [anon_sym_SQUOTE] = ACTIONS(5165), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5163), + [anon_sym_DOLLAR] = ACTIONS(5165), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), + [anon_sym_BSLASHbegin] = ACTIONS(5165), + [anon_sym_BSLASHusepackage] = ACTIONS(5165), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), + [anon_sym_BSLASHinclude] = ACTIONS(5165), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), + [anon_sym_BSLASHinput] = ACTIONS(5165), + [anon_sym_BSLASHsubfile] = ACTIONS(5165), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), + [anon_sym_BSLASHbibliography] = ACTIONS(5165), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), + [anon_sym_BSLASHincludesvg] = ACTIONS(5165), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5165), + [anon_sym_BSLASHcite] = ACTIONS(5165), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCite] = ACTIONS(5165), + [anon_sym_BSLASHnocite] = ACTIONS(5165), + [anon_sym_BSLASHcitet] = ACTIONS(5165), + [anon_sym_BSLASHcitep] = ACTIONS(5165), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteauthor] = ACTIONS(5165), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitetitle] = ACTIONS(5165), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteyear] = ACTIONS(5165), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitedate] = ACTIONS(5165), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteurl] = ACTIONS(5165), + [anon_sym_BSLASHfullcite] = ACTIONS(5165), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), + [anon_sym_BSLASHcitealt] = ACTIONS(5165), + [anon_sym_BSLASHcitealp] = ACTIONS(5165), + [anon_sym_BSLASHcitetext] = ACTIONS(5165), + [anon_sym_BSLASHparencite] = ACTIONS(5165), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHParencite] = ACTIONS(5165), + [anon_sym_BSLASHfootcite] = ACTIONS(5165), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), + [anon_sym_BSLASHtextcite] = ACTIONS(5165), + [anon_sym_BSLASHTextcite] = ACTIONS(5165), + [anon_sym_BSLASHsmartcite] = ACTIONS(5165), + [anon_sym_BSLASHSmartcite] = ACTIONS(5165), + [anon_sym_BSLASHsupercite] = ACTIONS(5165), + [anon_sym_BSLASHautocite] = ACTIONS(5165), + [anon_sym_BSLASHAutocite] = ACTIONS(5165), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHvolcite] = ACTIONS(5165), + [anon_sym_BSLASHVolcite] = ACTIONS(5165), + [anon_sym_BSLASHpvolcite] = ACTIONS(5165), + [anon_sym_BSLASHPvolcite] = ACTIONS(5165), + [anon_sym_BSLASHfvolcite] = ACTIONS(5165), + [anon_sym_BSLASHftvolcite] = ACTIONS(5165), + [anon_sym_BSLASHsvolcite] = ACTIONS(5165), + [anon_sym_BSLASHSvolcite] = ACTIONS(5165), + [anon_sym_BSLASHtvolcite] = ACTIONS(5165), + [anon_sym_BSLASHTvolcite] = ACTIONS(5165), + [anon_sym_BSLASHavolcite] = ACTIONS(5165), + [anon_sym_BSLASHAvolcite] = ACTIONS(5165), + [anon_sym_BSLASHnotecite] = ACTIONS(5165), + [anon_sym_BSLASHNotecite] = ACTIONS(5165), + [anon_sym_BSLASHpnotecite] = ACTIONS(5165), + [anon_sym_BSLASHPnotecite] = ACTIONS(5165), + [anon_sym_BSLASHfnotecite] = ACTIONS(5165), + [anon_sym_BSLASHlabel] = ACTIONS(5165), + [anon_sym_BSLASHref] = ACTIONS(5165), + [anon_sym_BSLASHeqref] = ACTIONS(5165), + [anon_sym_BSLASHvref] = ACTIONS(5165), + [anon_sym_BSLASHVref] = ACTIONS(5165), + [anon_sym_BSLASHautoref] = ACTIONS(5165), + [anon_sym_BSLASHpageref] = ACTIONS(5165), + [anon_sym_BSLASHcref] = ACTIONS(5165), + [anon_sym_BSLASHCref] = ACTIONS(5165), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnameCref] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHlabelcref] = ACTIONS(5165), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCrefrange] = ACTIONS(5165), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnewlabel] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), + [anon_sym_BSLASHdef] = ACTIONS(5165), + [anon_sym_BSLASHlet] = ACTIONS(5165), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), + [anon_sym_BSLASHgls] = ACTIONS(5165), + [anon_sym_BSLASHGls] = ACTIONS(5165), + [anon_sym_BSLASHGLS] = ACTIONS(5165), + [anon_sym_BSLASHglspl] = ACTIONS(5165), + [anon_sym_BSLASHGlspl] = ACTIONS(5165), + [anon_sym_BSLASHGLSpl] = ACTIONS(5165), + [anon_sym_BSLASHglsdisp] = ACTIONS(5165), + [anon_sym_BSLASHglslink] = ACTIONS(5165), + [anon_sym_BSLASHglstext] = ACTIONS(5165), + [anon_sym_BSLASHGlstext] = ACTIONS(5165), + [anon_sym_BSLASHGLStext] = ACTIONS(5165), + [anon_sym_BSLASHglsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), + [anon_sym_BSLASHglsplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSplural] = ACTIONS(5165), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHglsname] = ACTIONS(5165), + [anon_sym_BSLASHGlsname] = ACTIONS(5165), + [anon_sym_BSLASHGLSname] = ACTIONS(5165), + [anon_sym_BSLASHglssymbol] = ACTIONS(5165), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), + [anon_sym_BSLASHglsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), + [anon_sym_BSLASHglsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), + [anon_sym_BSLASHglsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), + [anon_sym_BSLASHglsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), + [anon_sym_BSLASHglsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), + [anon_sym_BSLASHnewacronym] = ACTIONS(5165), + [anon_sym_BSLASHacrshort] = ACTIONS(5165), + [anon_sym_BSLASHAcrshort] = ACTIONS(5165), + [anon_sym_BSLASHACRshort] = ACTIONS(5165), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), + [anon_sym_BSLASHacrlong] = ACTIONS(5165), + [anon_sym_BSLASHAcrlong] = ACTIONS(5165), + [anon_sym_BSLASHACRlong] = ACTIONS(5165), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), + [anon_sym_BSLASHacrfull] = ACTIONS(5165), + [anon_sym_BSLASHAcrfull] = ACTIONS(5165), + [anon_sym_BSLASHACRfull] = ACTIONS(5165), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), + [anon_sym_BSLASHacs] = ACTIONS(5165), + [anon_sym_BSLASHAcs] = ACTIONS(5165), + [anon_sym_BSLASHacsp] = ACTIONS(5165), + [anon_sym_BSLASHAcsp] = ACTIONS(5165), + [anon_sym_BSLASHacl] = ACTIONS(5165), + [anon_sym_BSLASHAcl] = ACTIONS(5165), + [anon_sym_BSLASHaclp] = ACTIONS(5165), + [anon_sym_BSLASHAclp] = ACTIONS(5165), + [anon_sym_BSLASHacf] = ACTIONS(5165), + [anon_sym_BSLASHAcf] = ACTIONS(5165), + [anon_sym_BSLASHacfp] = ACTIONS(5165), + [anon_sym_BSLASHAcfp] = ACTIONS(5165), + [anon_sym_BSLASHac] = ACTIONS(5165), + [anon_sym_BSLASHAc] = ACTIONS(5165), + [anon_sym_BSLASHacp] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), + [anon_sym_BSLASHcolor] = ACTIONS(5165), + [anon_sym_BSLASHcolorbox] = ACTIONS(5165), + [anon_sym_BSLASHtextcolor] = ACTIONS(5165), + [anon_sym_BSLASHpagecolor] = ACTIONS(5165), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), + [anon_sym_BSLASHtext] = ACTIONS(5165), + [anon_sym_BSLASHintertext] = ACTIONS(5165), + [anon_sym_shortintertext] = ACTIONS(5165), + }, + [997] = { + [sym_command_name] = ACTIONS(5169), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_BSLASHpart] = ACTIONS(5169), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddpart] = ACTIONS(5169), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5167), + [anon_sym_BSLASHchapter] = ACTIONS(5169), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddchap] = ACTIONS(5169), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsection] = ACTIONS(5169), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddsec] = ACTIONS(5169), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubsection] = ACTIONS(5169), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHparagraph] = ACTIONS(5169), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5169), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5167), + [anon_sym_BSLASHitem] = ACTIONS(5169), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5167), + [sym_word] = ACTIONS(5169), + [sym_placeholder] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_CARET] = ACTIONS(5169), + [anon_sym__] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_PIPE] = ACTIONS(5169), + [anon_sym_COLON] = ACTIONS(5169), + [anon_sym_SQUOTE] = ACTIONS(5169), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5167), + [anon_sym_DOLLAR] = ACTIONS(5169), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), + [anon_sym_BSLASHbegin] = ACTIONS(5169), + [anon_sym_BSLASHusepackage] = ACTIONS(5169), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), + [anon_sym_BSLASHinclude] = ACTIONS(5169), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), + [anon_sym_BSLASHinput] = ACTIONS(5169), + [anon_sym_BSLASHsubfile] = ACTIONS(5169), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), + [anon_sym_BSLASHbibliography] = ACTIONS(5169), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), + [anon_sym_BSLASHincludesvg] = ACTIONS(5169), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), + [anon_sym_BSLASHimport] = ACTIONS(5169), + [anon_sym_BSLASHsubimport] = ACTIONS(5169), + [anon_sym_BSLASHinputfrom] = ACTIONS(5169), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), + [anon_sym_BSLASHincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHcaption] = ACTIONS(5169), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5169), + [anon_sym_BSLASHref] = ACTIONS(5169), + [anon_sym_BSLASHeqref] = ACTIONS(5169), + [anon_sym_BSLASHvref] = ACTIONS(5169), + [anon_sym_BSLASHVref] = ACTIONS(5169), + [anon_sym_BSLASHautoref] = ACTIONS(5169), + [anon_sym_BSLASHpageref] = ACTIONS(5169), + [anon_sym_BSLASHcref] = ACTIONS(5169), + [anon_sym_BSLASHCref] = ACTIONS(5169), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnameCref] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHlabelcref] = ACTIONS(5169), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCrefrange] = ACTIONS(5169), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnewlabel] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), + [anon_sym_BSLASHdef] = ACTIONS(5169), + [anon_sym_BSLASHlet] = ACTIONS(5169), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), + [anon_sym_BSLASHgls] = ACTIONS(5169), + [anon_sym_BSLASHGls] = ACTIONS(5169), + [anon_sym_BSLASHGLS] = ACTIONS(5169), + [anon_sym_BSLASHglspl] = ACTIONS(5169), + [anon_sym_BSLASHGlspl] = ACTIONS(5169), + [anon_sym_BSLASHGLSpl] = ACTIONS(5169), + [anon_sym_BSLASHglsdisp] = ACTIONS(5169), + [anon_sym_BSLASHglslink] = ACTIONS(5169), + [anon_sym_BSLASHglstext] = ACTIONS(5169), + [anon_sym_BSLASHGlstext] = ACTIONS(5169), + [anon_sym_BSLASHGLStext] = ACTIONS(5169), + [anon_sym_BSLASHglsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), + [anon_sym_BSLASHglsplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSplural] = ACTIONS(5169), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHglsname] = ACTIONS(5169), + [anon_sym_BSLASHGlsname] = ACTIONS(5169), + [anon_sym_BSLASHGLSname] = ACTIONS(5169), + [anon_sym_BSLASHglssymbol] = ACTIONS(5169), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), + [anon_sym_BSLASHglsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), + [anon_sym_BSLASHglsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), + [anon_sym_BSLASHglsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), + [anon_sym_BSLASHglsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), + [anon_sym_BSLASHglsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), + [anon_sym_BSLASHnewacronym] = ACTIONS(5169), + [anon_sym_BSLASHacrshort] = ACTIONS(5169), + [anon_sym_BSLASHAcrshort] = ACTIONS(5169), + [anon_sym_BSLASHACRshort] = ACTIONS(5169), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), + [anon_sym_BSLASHacrlong] = ACTIONS(5169), + [anon_sym_BSLASHAcrlong] = ACTIONS(5169), + [anon_sym_BSLASHACRlong] = ACTIONS(5169), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), + [anon_sym_BSLASHacrfull] = ACTIONS(5169), + [anon_sym_BSLASHAcrfull] = ACTIONS(5169), + [anon_sym_BSLASHACRfull] = ACTIONS(5169), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), + [anon_sym_BSLASHacs] = ACTIONS(5169), + [anon_sym_BSLASHAcs] = ACTIONS(5169), + [anon_sym_BSLASHacsp] = ACTIONS(5169), + [anon_sym_BSLASHAcsp] = ACTIONS(5169), + [anon_sym_BSLASHacl] = ACTIONS(5169), + [anon_sym_BSLASHAcl] = ACTIONS(5169), + [anon_sym_BSLASHaclp] = ACTIONS(5169), + [anon_sym_BSLASHAclp] = ACTIONS(5169), + [anon_sym_BSLASHacf] = ACTIONS(5169), + [anon_sym_BSLASHAcf] = ACTIONS(5169), + [anon_sym_BSLASHacfp] = ACTIONS(5169), + [anon_sym_BSLASHAcfp] = ACTIONS(5169), + [anon_sym_BSLASHac] = ACTIONS(5169), + [anon_sym_BSLASHAc] = ACTIONS(5169), + [anon_sym_BSLASHacp] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), + [anon_sym_BSLASHcolor] = ACTIONS(5169), + [anon_sym_BSLASHcolorbox] = ACTIONS(5169), + [anon_sym_BSLASHtextcolor] = ACTIONS(5169), + [anon_sym_BSLASHpagecolor] = ACTIONS(5169), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), + [anon_sym_BSLASHtext] = ACTIONS(5169), + [anon_sym_BSLASHintertext] = ACTIONS(5169), + [anon_sym_shortintertext] = ACTIONS(5169), + }, + [998] = { + [sym_command_name] = ACTIONS(5177), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5175), + [anon_sym_RPAREN] = ACTIONS(5175), + [anon_sym_LBRACK] = ACTIONS(5175), + [anon_sym_RBRACK] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_BSLASHpart] = ACTIONS(5177), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddpart] = ACTIONS(5177), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5175), + [anon_sym_BSLASHchapter] = ACTIONS(5177), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddchap] = ACTIONS(5177), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsection] = ACTIONS(5177), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddsec] = ACTIONS(5177), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubsection] = ACTIONS(5177), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5177), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHparagraph] = ACTIONS(5177), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5175), + [anon_sym_BSLASHitem] = ACTIONS(5177), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5175), + [sym_word] = ACTIONS(5177), + [sym_placeholder] = ACTIONS(5175), + [anon_sym_PLUS] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5177), + [anon_sym_SLASH] = ACTIONS(5177), + [anon_sym_CARET] = ACTIONS(5177), + [anon_sym__] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5177), + [anon_sym_GT] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5177), + [anon_sym_PIPE] = ACTIONS(5177), + [anon_sym_COLON] = ACTIONS(5177), + [anon_sym_SQUOTE] = ACTIONS(5177), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5175), + [anon_sym_DOLLAR] = ACTIONS(5177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), + [anon_sym_BSLASHbegin] = ACTIONS(5177), + [anon_sym_BSLASHusepackage] = ACTIONS(5177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), + [anon_sym_BSLASHinclude] = ACTIONS(5177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), + [anon_sym_BSLASHinput] = ACTIONS(5177), + [anon_sym_BSLASHsubfile] = ACTIONS(5177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), + [anon_sym_BSLASHbibliography] = ACTIONS(5177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), + [anon_sym_BSLASHincludesvg] = ACTIONS(5177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), + [anon_sym_BSLASHimport] = ACTIONS(5177), + [anon_sym_BSLASHsubimport] = ACTIONS(5177), + [anon_sym_BSLASHinputfrom] = ACTIONS(5177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), + [anon_sym_BSLASHincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHcaption] = ACTIONS(5177), + [anon_sym_BSLASHcite] = ACTIONS(5177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCite] = ACTIONS(5177), + [anon_sym_BSLASHnocite] = ACTIONS(5177), + [anon_sym_BSLASHcitet] = ACTIONS(5177), + [anon_sym_BSLASHcitep] = ACTIONS(5177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteauthor] = ACTIONS(5177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitetitle] = ACTIONS(5177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteyear] = ACTIONS(5177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitedate] = ACTIONS(5177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteurl] = ACTIONS(5177), + [anon_sym_BSLASHfullcite] = ACTIONS(5177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), + [anon_sym_BSLASHcitealt] = ACTIONS(5177), + [anon_sym_BSLASHcitealp] = ACTIONS(5177), + [anon_sym_BSLASHcitetext] = ACTIONS(5177), + [anon_sym_BSLASHparencite] = ACTIONS(5177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHParencite] = ACTIONS(5177), + [anon_sym_BSLASHfootcite] = ACTIONS(5177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), + [anon_sym_BSLASHtextcite] = ACTIONS(5177), + [anon_sym_BSLASHTextcite] = ACTIONS(5177), + [anon_sym_BSLASHsmartcite] = ACTIONS(5177), + [anon_sym_BSLASHSmartcite] = ACTIONS(5177), + [anon_sym_BSLASHsupercite] = ACTIONS(5177), + [anon_sym_BSLASHautocite] = ACTIONS(5177), + [anon_sym_BSLASHAutocite] = ACTIONS(5177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHvolcite] = ACTIONS(5177), + [anon_sym_BSLASHVolcite] = ACTIONS(5177), + [anon_sym_BSLASHpvolcite] = ACTIONS(5177), + [anon_sym_BSLASHPvolcite] = ACTIONS(5177), + [anon_sym_BSLASHfvolcite] = ACTIONS(5177), + [anon_sym_BSLASHftvolcite] = ACTIONS(5177), + [anon_sym_BSLASHsvolcite] = ACTIONS(5177), + [anon_sym_BSLASHSvolcite] = ACTIONS(5177), + [anon_sym_BSLASHtvolcite] = ACTIONS(5177), + [anon_sym_BSLASHTvolcite] = ACTIONS(5177), + [anon_sym_BSLASHavolcite] = ACTIONS(5177), + [anon_sym_BSLASHAvolcite] = ACTIONS(5177), + [anon_sym_BSLASHnotecite] = ACTIONS(5177), + [anon_sym_BSLASHNotecite] = ACTIONS(5177), + [anon_sym_BSLASHpnotecite] = ACTIONS(5177), + [anon_sym_BSLASHPnotecite] = ACTIONS(5177), + [anon_sym_BSLASHfnotecite] = ACTIONS(5177), + [anon_sym_BSLASHlabel] = ACTIONS(5177), + [anon_sym_BSLASHref] = ACTIONS(5177), + [anon_sym_BSLASHeqref] = ACTIONS(5177), + [anon_sym_BSLASHvref] = ACTIONS(5177), + [anon_sym_BSLASHVref] = ACTIONS(5177), + [anon_sym_BSLASHautoref] = ACTIONS(5177), + [anon_sym_BSLASHpageref] = ACTIONS(5177), + [anon_sym_BSLASHcref] = ACTIONS(5177), + [anon_sym_BSLASHCref] = ACTIONS(5177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnameCref] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHlabelcref] = ACTIONS(5177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCrefrange] = ACTIONS(5177), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnewlabel] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), + [anon_sym_BSLASHdef] = ACTIONS(5177), + [anon_sym_BSLASHlet] = ACTIONS(5177), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), + [anon_sym_BSLASHgls] = ACTIONS(5177), + [anon_sym_BSLASHGls] = ACTIONS(5177), + [anon_sym_BSLASHGLS] = ACTIONS(5177), + [anon_sym_BSLASHglspl] = ACTIONS(5177), + [anon_sym_BSLASHGlspl] = ACTIONS(5177), + [anon_sym_BSLASHGLSpl] = ACTIONS(5177), + [anon_sym_BSLASHglsdisp] = ACTIONS(5177), + [anon_sym_BSLASHglslink] = ACTIONS(5177), + [anon_sym_BSLASHglstext] = ACTIONS(5177), + [anon_sym_BSLASHGlstext] = ACTIONS(5177), + [anon_sym_BSLASHGLStext] = ACTIONS(5177), + [anon_sym_BSLASHglsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), + [anon_sym_BSLASHglsplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSplural] = ACTIONS(5177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHglsname] = ACTIONS(5177), + [anon_sym_BSLASHGlsname] = ACTIONS(5177), + [anon_sym_BSLASHGLSname] = ACTIONS(5177), + [anon_sym_BSLASHglssymbol] = ACTIONS(5177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), + [anon_sym_BSLASHglsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), + [anon_sym_BSLASHglsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), + [anon_sym_BSLASHglsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), + [anon_sym_BSLASHglsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), + [anon_sym_BSLASHglsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), + [anon_sym_BSLASHnewacronym] = ACTIONS(5177), + [anon_sym_BSLASHacrshort] = ACTIONS(5177), + [anon_sym_BSLASHAcrshort] = ACTIONS(5177), + [anon_sym_BSLASHACRshort] = ACTIONS(5177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), + [anon_sym_BSLASHacrlong] = ACTIONS(5177), + [anon_sym_BSLASHAcrlong] = ACTIONS(5177), + [anon_sym_BSLASHACRlong] = ACTIONS(5177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), + [anon_sym_BSLASHacrfull] = ACTIONS(5177), + [anon_sym_BSLASHAcrfull] = ACTIONS(5177), + [anon_sym_BSLASHACRfull] = ACTIONS(5177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), + [anon_sym_BSLASHacs] = ACTIONS(5177), + [anon_sym_BSLASHAcs] = ACTIONS(5177), + [anon_sym_BSLASHacsp] = ACTIONS(5177), + [anon_sym_BSLASHAcsp] = ACTIONS(5177), + [anon_sym_BSLASHacl] = ACTIONS(5177), + [anon_sym_BSLASHAcl] = ACTIONS(5177), + [anon_sym_BSLASHaclp] = ACTIONS(5177), + [anon_sym_BSLASHAclp] = ACTIONS(5177), + [anon_sym_BSLASHacf] = ACTIONS(5177), + [anon_sym_BSLASHAcf] = ACTIONS(5177), + [anon_sym_BSLASHacfp] = ACTIONS(5177), + [anon_sym_BSLASHAcfp] = ACTIONS(5177), + [anon_sym_BSLASHac] = ACTIONS(5177), + [anon_sym_BSLASHAc] = ACTIONS(5177), + [anon_sym_BSLASHacp] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), + [anon_sym_BSLASHcolor] = ACTIONS(5177), + [anon_sym_BSLASHcolorbox] = ACTIONS(5177), + [anon_sym_BSLASHtextcolor] = ACTIONS(5177), + [anon_sym_BSLASHpagecolor] = ACTIONS(5177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), + [anon_sym_BSLASHtext] = ACTIONS(5177), + [anon_sym_BSLASHintertext] = ACTIONS(5177), + [anon_sym_shortintertext] = ACTIONS(5177), + }, + [999] = { + [sym_command_name] = ACTIONS(5181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5179), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_RBRACK] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_BSLASHpart] = ACTIONS(5181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddpart] = ACTIONS(5181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5179), + [anon_sym_BSLASHchapter] = ACTIONS(5181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddchap] = ACTIONS(5181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsection] = ACTIONS(5181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddsec] = ACTIONS(5181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubsection] = ACTIONS(5181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHparagraph] = ACTIONS(5181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5179), + [anon_sym_BSLASHitem] = ACTIONS(5181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5179), + [sym_word] = ACTIONS(5181), + [sym_placeholder] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5181), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_CARET] = ACTIONS(5181), + [anon_sym__] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_COLON] = ACTIONS(5181), + [anon_sym_SQUOTE] = ACTIONS(5181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5179), + [anon_sym_DOLLAR] = ACTIONS(5181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), + [anon_sym_BSLASHbegin] = ACTIONS(5181), + [anon_sym_BSLASHusepackage] = ACTIONS(5181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), + [anon_sym_BSLASHinclude] = ACTIONS(5181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), + [anon_sym_BSLASHinput] = ACTIONS(5181), + [anon_sym_BSLASHsubfile] = ACTIONS(5181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), + [anon_sym_BSLASHbibliography] = ACTIONS(5181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), + [anon_sym_BSLASHincludesvg] = ACTIONS(5181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), + [anon_sym_BSLASHimport] = ACTIONS(5181), + [anon_sym_BSLASHsubimport] = ACTIONS(5181), + [anon_sym_BSLASHinputfrom] = ACTIONS(5181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), + [anon_sym_BSLASHincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHcaption] = ACTIONS(5181), + [anon_sym_BSLASHcite] = ACTIONS(5181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCite] = ACTIONS(5181), + [anon_sym_BSLASHnocite] = ACTIONS(5181), + [anon_sym_BSLASHcitet] = ACTIONS(5181), + [anon_sym_BSLASHcitep] = ACTIONS(5181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteauthor] = ACTIONS(5181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitetitle] = ACTIONS(5181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteyear] = ACTIONS(5181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitedate] = ACTIONS(5181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteurl] = ACTIONS(5181), + [anon_sym_BSLASHfullcite] = ACTIONS(5181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), + [anon_sym_BSLASHcitealt] = ACTIONS(5181), + [anon_sym_BSLASHcitealp] = ACTIONS(5181), + [anon_sym_BSLASHcitetext] = ACTIONS(5181), + [anon_sym_BSLASHparencite] = ACTIONS(5181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHParencite] = ACTIONS(5181), + [anon_sym_BSLASHfootcite] = ACTIONS(5181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), + [anon_sym_BSLASHtextcite] = ACTIONS(5181), + [anon_sym_BSLASHTextcite] = ACTIONS(5181), + [anon_sym_BSLASHsmartcite] = ACTIONS(5181), + [anon_sym_BSLASHSmartcite] = ACTIONS(5181), + [anon_sym_BSLASHsupercite] = ACTIONS(5181), + [anon_sym_BSLASHautocite] = ACTIONS(5181), + [anon_sym_BSLASHAutocite] = ACTIONS(5181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHvolcite] = ACTIONS(5181), + [anon_sym_BSLASHVolcite] = ACTIONS(5181), + [anon_sym_BSLASHpvolcite] = ACTIONS(5181), + [anon_sym_BSLASHPvolcite] = ACTIONS(5181), + [anon_sym_BSLASHfvolcite] = ACTIONS(5181), + [anon_sym_BSLASHftvolcite] = ACTIONS(5181), + [anon_sym_BSLASHsvolcite] = ACTIONS(5181), + [anon_sym_BSLASHSvolcite] = ACTIONS(5181), + [anon_sym_BSLASHtvolcite] = ACTIONS(5181), + [anon_sym_BSLASHTvolcite] = ACTIONS(5181), + [anon_sym_BSLASHavolcite] = ACTIONS(5181), + [anon_sym_BSLASHAvolcite] = ACTIONS(5181), + [anon_sym_BSLASHnotecite] = ACTIONS(5181), + [anon_sym_BSLASHNotecite] = ACTIONS(5181), + [anon_sym_BSLASHpnotecite] = ACTIONS(5181), + [anon_sym_BSLASHPnotecite] = ACTIONS(5181), + [anon_sym_BSLASHfnotecite] = ACTIONS(5181), + [anon_sym_BSLASHlabel] = ACTIONS(5181), + [anon_sym_BSLASHref] = ACTIONS(5181), + [anon_sym_BSLASHeqref] = ACTIONS(5181), + [anon_sym_BSLASHvref] = ACTIONS(5181), + [anon_sym_BSLASHVref] = ACTIONS(5181), + [anon_sym_BSLASHautoref] = ACTIONS(5181), + [anon_sym_BSLASHpageref] = ACTIONS(5181), + [anon_sym_BSLASHcref] = ACTIONS(5181), + [anon_sym_BSLASHCref] = ACTIONS(5181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnameCref] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHlabelcref] = ACTIONS(5181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnewlabel] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), + [anon_sym_BSLASHdef] = ACTIONS(5181), + [anon_sym_BSLASHlet] = ACTIONS(5181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), + [anon_sym_BSLASHgls] = ACTIONS(5181), + [anon_sym_BSLASHGls] = ACTIONS(5181), + [anon_sym_BSLASHGLS] = ACTIONS(5181), + [anon_sym_BSLASHglspl] = ACTIONS(5181), + [anon_sym_BSLASHGlspl] = ACTIONS(5181), + [anon_sym_BSLASHGLSpl] = ACTIONS(5181), + [anon_sym_BSLASHglsdisp] = ACTIONS(5181), + [anon_sym_BSLASHglslink] = ACTIONS(5181), + [anon_sym_BSLASHglstext] = ACTIONS(5181), + [anon_sym_BSLASHGlstext] = ACTIONS(5181), + [anon_sym_BSLASHGLStext] = ACTIONS(5181), + [anon_sym_BSLASHglsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), + [anon_sym_BSLASHglsplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSplural] = ACTIONS(5181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHglsname] = ACTIONS(5181), + [anon_sym_BSLASHGlsname] = ACTIONS(5181), + [anon_sym_BSLASHGLSname] = ACTIONS(5181), + [anon_sym_BSLASHglssymbol] = ACTIONS(5181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), + [anon_sym_BSLASHglsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), + [anon_sym_BSLASHglsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), + [anon_sym_BSLASHglsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), + [anon_sym_BSLASHglsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), + [anon_sym_BSLASHglsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), + [anon_sym_BSLASHnewacronym] = ACTIONS(5181), + [anon_sym_BSLASHacrshort] = ACTIONS(5181), + [anon_sym_BSLASHAcrshort] = ACTIONS(5181), + [anon_sym_BSLASHACRshort] = ACTIONS(5181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), + [anon_sym_BSLASHacrlong] = ACTIONS(5181), + [anon_sym_BSLASHAcrlong] = ACTIONS(5181), + [anon_sym_BSLASHACRlong] = ACTIONS(5181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), + [anon_sym_BSLASHacrfull] = ACTIONS(5181), + [anon_sym_BSLASHAcrfull] = ACTIONS(5181), + [anon_sym_BSLASHACRfull] = ACTIONS(5181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), + [anon_sym_BSLASHacs] = ACTIONS(5181), + [anon_sym_BSLASHAcs] = ACTIONS(5181), + [anon_sym_BSLASHacsp] = ACTIONS(5181), + [anon_sym_BSLASHAcsp] = ACTIONS(5181), + [anon_sym_BSLASHacl] = ACTIONS(5181), + [anon_sym_BSLASHAcl] = ACTIONS(5181), + [anon_sym_BSLASHaclp] = ACTIONS(5181), + [anon_sym_BSLASHAclp] = ACTIONS(5181), + [anon_sym_BSLASHacf] = ACTIONS(5181), + [anon_sym_BSLASHAcf] = ACTIONS(5181), + [anon_sym_BSLASHacfp] = ACTIONS(5181), + [anon_sym_BSLASHAcfp] = ACTIONS(5181), + [anon_sym_BSLASHac] = ACTIONS(5181), + [anon_sym_BSLASHAc] = ACTIONS(5181), + [anon_sym_BSLASHacp] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), + [anon_sym_BSLASHcolor] = ACTIONS(5181), + [anon_sym_BSLASHcolorbox] = ACTIONS(5181), + [anon_sym_BSLASHtextcolor] = ACTIONS(5181), + [anon_sym_BSLASHpagecolor] = ACTIONS(5181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), + [anon_sym_BSLASHtext] = ACTIONS(5181), + [anon_sym_BSLASHintertext] = ACTIONS(5181), + [anon_sym_shortintertext] = ACTIONS(5181), + }, + [1000] = { + [sym_command_name] = ACTIONS(5185), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_BSLASHpart] = ACTIONS(5069), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddpart] = ACTIONS(5069), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHchapter] = ACTIONS(5069), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddchap] = ACTIONS(5069), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsection] = ACTIONS(5069), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddsec] = ACTIONS(5069), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHparagraph] = ACTIONS(5069), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHitem] = ACTIONS(5069), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), - [anon_sym_BSLASHbegin] = ACTIONS(5069), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), + [anon_sym_BSLASHiffalse] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5183), + [anon_sym_RPAREN] = ACTIONS(5183), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_RBRACK] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_BSLASHpart] = ACTIONS(5185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddpart] = ACTIONS(5185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), + [anon_sym_BSLASHchapter] = ACTIONS(5185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddchap] = ACTIONS(5185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsection] = ACTIONS(5185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddsec] = ACTIONS(5185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubsection] = ACTIONS(5185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHparagraph] = ACTIONS(5185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), + [anon_sym_BSLASHitem] = ACTIONS(5185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5183), + [sym_word] = ACTIONS(5185), + [sym_placeholder] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_CARET] = ACTIONS(5185), + [anon_sym__] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_COLON] = ACTIONS(5185), + [anon_sym_SQUOTE] = ACTIONS(5185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5183), + [anon_sym_DOLLAR] = ACTIONS(5185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), + [anon_sym_BSLASHbegin] = ACTIONS(5185), + [anon_sym_BSLASHusepackage] = ACTIONS(5185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), + [anon_sym_BSLASHinclude] = ACTIONS(5185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), + [anon_sym_BSLASHinput] = ACTIONS(5185), + [anon_sym_BSLASHsubfile] = ACTIONS(5185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), + [anon_sym_BSLASHbibliography] = ACTIONS(5185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), + [anon_sym_BSLASHincludesvg] = ACTIONS(5185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), + [anon_sym_BSLASHimport] = ACTIONS(5185), + [anon_sym_BSLASHsubimport] = ACTIONS(5185), + [anon_sym_BSLASHinputfrom] = ACTIONS(5185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), + [anon_sym_BSLASHincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHcaption] = ACTIONS(5185), + [anon_sym_BSLASHcite] = ACTIONS(5185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCite] = ACTIONS(5185), + [anon_sym_BSLASHnocite] = ACTIONS(5185), + [anon_sym_BSLASHcitet] = ACTIONS(5185), + [anon_sym_BSLASHcitep] = ACTIONS(5185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteauthor] = ACTIONS(5185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitetitle] = ACTIONS(5185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteyear] = ACTIONS(5185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitedate] = ACTIONS(5185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteurl] = ACTIONS(5185), + [anon_sym_BSLASHfullcite] = ACTIONS(5185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), + [anon_sym_BSLASHcitealt] = ACTIONS(5185), + [anon_sym_BSLASHcitealp] = ACTIONS(5185), + [anon_sym_BSLASHcitetext] = ACTIONS(5185), + [anon_sym_BSLASHparencite] = ACTIONS(5185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHParencite] = ACTIONS(5185), + [anon_sym_BSLASHfootcite] = ACTIONS(5185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), + [anon_sym_BSLASHtextcite] = ACTIONS(5185), + [anon_sym_BSLASHTextcite] = ACTIONS(5185), + [anon_sym_BSLASHsmartcite] = ACTIONS(5185), + [anon_sym_BSLASHSmartcite] = ACTIONS(5185), + [anon_sym_BSLASHsupercite] = ACTIONS(5185), + [anon_sym_BSLASHautocite] = ACTIONS(5185), + [anon_sym_BSLASHAutocite] = ACTIONS(5185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHvolcite] = ACTIONS(5185), + [anon_sym_BSLASHVolcite] = ACTIONS(5185), + [anon_sym_BSLASHpvolcite] = ACTIONS(5185), + [anon_sym_BSLASHPvolcite] = ACTIONS(5185), + [anon_sym_BSLASHfvolcite] = ACTIONS(5185), + [anon_sym_BSLASHftvolcite] = ACTIONS(5185), + [anon_sym_BSLASHsvolcite] = ACTIONS(5185), + [anon_sym_BSLASHSvolcite] = ACTIONS(5185), + [anon_sym_BSLASHtvolcite] = ACTIONS(5185), + [anon_sym_BSLASHTvolcite] = ACTIONS(5185), + [anon_sym_BSLASHavolcite] = ACTIONS(5185), + [anon_sym_BSLASHAvolcite] = ACTIONS(5185), + [anon_sym_BSLASHnotecite] = ACTIONS(5185), + [anon_sym_BSLASHNotecite] = ACTIONS(5185), + [anon_sym_BSLASHpnotecite] = ACTIONS(5185), + [anon_sym_BSLASHPnotecite] = ACTIONS(5185), + [anon_sym_BSLASHfnotecite] = ACTIONS(5185), + [anon_sym_BSLASHlabel] = ACTIONS(5185), + [anon_sym_BSLASHref] = ACTIONS(5185), + [anon_sym_BSLASHeqref] = ACTIONS(5185), + [anon_sym_BSLASHvref] = ACTIONS(5185), + [anon_sym_BSLASHVref] = ACTIONS(5185), + [anon_sym_BSLASHautoref] = ACTIONS(5185), + [anon_sym_BSLASHpageref] = ACTIONS(5185), + [anon_sym_BSLASHcref] = ACTIONS(5185), + [anon_sym_BSLASHCref] = ACTIONS(5185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnameCref] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHlabelcref] = ACTIONS(5185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCrefrange] = ACTIONS(5185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnewlabel] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), + [anon_sym_BSLASHdef] = ACTIONS(5185), + [anon_sym_BSLASHlet] = ACTIONS(5185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), + [anon_sym_BSLASHgls] = ACTIONS(5185), + [anon_sym_BSLASHGls] = ACTIONS(5185), + [anon_sym_BSLASHGLS] = ACTIONS(5185), + [anon_sym_BSLASHglspl] = ACTIONS(5185), + [anon_sym_BSLASHGlspl] = ACTIONS(5185), + [anon_sym_BSLASHGLSpl] = ACTIONS(5185), + [anon_sym_BSLASHglsdisp] = ACTIONS(5185), + [anon_sym_BSLASHglslink] = ACTIONS(5185), + [anon_sym_BSLASHglstext] = ACTIONS(5185), + [anon_sym_BSLASHGlstext] = ACTIONS(5185), + [anon_sym_BSLASHGLStext] = ACTIONS(5185), + [anon_sym_BSLASHglsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), + [anon_sym_BSLASHglsplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSplural] = ACTIONS(5185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHglsname] = ACTIONS(5185), + [anon_sym_BSLASHGlsname] = ACTIONS(5185), + [anon_sym_BSLASHGLSname] = ACTIONS(5185), + [anon_sym_BSLASHglssymbol] = ACTIONS(5185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), + [anon_sym_BSLASHglsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), + [anon_sym_BSLASHglsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), + [anon_sym_BSLASHglsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), + [anon_sym_BSLASHglsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), + [anon_sym_BSLASHglsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), + [anon_sym_BSLASHnewacronym] = ACTIONS(5185), + [anon_sym_BSLASHacrshort] = ACTIONS(5185), + [anon_sym_BSLASHAcrshort] = ACTIONS(5185), + [anon_sym_BSLASHACRshort] = ACTIONS(5185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), + [anon_sym_BSLASHacrlong] = ACTIONS(5185), + [anon_sym_BSLASHAcrlong] = ACTIONS(5185), + [anon_sym_BSLASHACRlong] = ACTIONS(5185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), + [anon_sym_BSLASHacrfull] = ACTIONS(5185), + [anon_sym_BSLASHAcrfull] = ACTIONS(5185), + [anon_sym_BSLASHACRfull] = ACTIONS(5185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), + [anon_sym_BSLASHacs] = ACTIONS(5185), + [anon_sym_BSLASHAcs] = ACTIONS(5185), + [anon_sym_BSLASHacsp] = ACTIONS(5185), + [anon_sym_BSLASHAcsp] = ACTIONS(5185), + [anon_sym_BSLASHacl] = ACTIONS(5185), + [anon_sym_BSLASHAcl] = ACTIONS(5185), + [anon_sym_BSLASHaclp] = ACTIONS(5185), + [anon_sym_BSLASHAclp] = ACTIONS(5185), + [anon_sym_BSLASHacf] = ACTIONS(5185), + [anon_sym_BSLASHAcf] = ACTIONS(5185), + [anon_sym_BSLASHacfp] = ACTIONS(5185), + [anon_sym_BSLASHAcfp] = ACTIONS(5185), + [anon_sym_BSLASHac] = ACTIONS(5185), + [anon_sym_BSLASHAc] = ACTIONS(5185), + [anon_sym_BSLASHacp] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), + [anon_sym_BSLASHcolor] = ACTIONS(5185), + [anon_sym_BSLASHcolorbox] = ACTIONS(5185), + [anon_sym_BSLASHtextcolor] = ACTIONS(5185), + [anon_sym_BSLASHpagecolor] = ACTIONS(5185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), + [anon_sym_BSLASHtext] = ACTIONS(5185), + [anon_sym_BSLASHintertext] = ACTIONS(5185), + [anon_sym_shortintertext] = ACTIONS(5185), }, - [1138] = { - [sym_command_name] = ACTIONS(5065), + [1001] = { + [sym_command_name] = ACTIONS(5189), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_BSLASHpart] = ACTIONS(5065), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddpart] = ACTIONS(5065), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHchapter] = ACTIONS(5065), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddchap] = ACTIONS(5065), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsection] = ACTIONS(5065), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddsec] = ACTIONS(5065), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHparagraph] = ACTIONS(5065), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHitem] = ACTIONS(5065), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASHbegin] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHiffalse] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_RPAREN] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_RBRACK] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_BSLASHpart] = ACTIONS(5189), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddpart] = ACTIONS(5189), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), + [anon_sym_BSLASHchapter] = ACTIONS(5189), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddchap] = ACTIONS(5189), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsection] = ACTIONS(5189), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddsec] = ACTIONS(5189), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubsection] = ACTIONS(5189), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHparagraph] = ACTIONS(5189), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), + [anon_sym_BSLASHitem] = ACTIONS(5189), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5187), + [sym_word] = ACTIONS(5189), + [sym_placeholder] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_STAR] = ACTIONS(5189), + [anon_sym_SLASH] = ACTIONS(5189), + [anon_sym_CARET] = ACTIONS(5189), + [anon_sym__] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5189), + [anon_sym_GT] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_PIPE] = ACTIONS(5189), + [anon_sym_COLON] = ACTIONS(5189), + [anon_sym_SQUOTE] = ACTIONS(5189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5187), + [anon_sym_DOLLAR] = ACTIONS(5189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), + [anon_sym_BSLASHbegin] = ACTIONS(5189), + [anon_sym_BSLASHusepackage] = ACTIONS(5189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), + [anon_sym_BSLASHinclude] = ACTIONS(5189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), + [anon_sym_BSLASHinput] = ACTIONS(5189), + [anon_sym_BSLASHsubfile] = ACTIONS(5189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), + [anon_sym_BSLASHbibliography] = ACTIONS(5189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), + [anon_sym_BSLASHincludesvg] = ACTIONS(5189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), + [anon_sym_BSLASHimport] = ACTIONS(5189), + [anon_sym_BSLASHsubimport] = ACTIONS(5189), + [anon_sym_BSLASHinputfrom] = ACTIONS(5189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), + [anon_sym_BSLASHincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHcaption] = ACTIONS(5189), + [anon_sym_BSLASHcite] = ACTIONS(5189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCite] = ACTIONS(5189), + [anon_sym_BSLASHnocite] = ACTIONS(5189), + [anon_sym_BSLASHcitet] = ACTIONS(5189), + [anon_sym_BSLASHcitep] = ACTIONS(5189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteauthor] = ACTIONS(5189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitetitle] = ACTIONS(5189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteyear] = ACTIONS(5189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitedate] = ACTIONS(5189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteurl] = ACTIONS(5189), + [anon_sym_BSLASHfullcite] = ACTIONS(5189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), + [anon_sym_BSLASHcitealt] = ACTIONS(5189), + [anon_sym_BSLASHcitealp] = ACTIONS(5189), + [anon_sym_BSLASHcitetext] = ACTIONS(5189), + [anon_sym_BSLASHparencite] = ACTIONS(5189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHParencite] = ACTIONS(5189), + [anon_sym_BSLASHfootcite] = ACTIONS(5189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), + [anon_sym_BSLASHtextcite] = ACTIONS(5189), + [anon_sym_BSLASHTextcite] = ACTIONS(5189), + [anon_sym_BSLASHsmartcite] = ACTIONS(5189), + [anon_sym_BSLASHSmartcite] = ACTIONS(5189), + [anon_sym_BSLASHsupercite] = ACTIONS(5189), + [anon_sym_BSLASHautocite] = ACTIONS(5189), + [anon_sym_BSLASHAutocite] = ACTIONS(5189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHvolcite] = ACTIONS(5189), + [anon_sym_BSLASHVolcite] = ACTIONS(5189), + [anon_sym_BSLASHpvolcite] = ACTIONS(5189), + [anon_sym_BSLASHPvolcite] = ACTIONS(5189), + [anon_sym_BSLASHfvolcite] = ACTIONS(5189), + [anon_sym_BSLASHftvolcite] = ACTIONS(5189), + [anon_sym_BSLASHsvolcite] = ACTIONS(5189), + [anon_sym_BSLASHSvolcite] = ACTIONS(5189), + [anon_sym_BSLASHtvolcite] = ACTIONS(5189), + [anon_sym_BSLASHTvolcite] = ACTIONS(5189), + [anon_sym_BSLASHavolcite] = ACTIONS(5189), + [anon_sym_BSLASHAvolcite] = ACTIONS(5189), + [anon_sym_BSLASHnotecite] = ACTIONS(5189), + [anon_sym_BSLASHNotecite] = ACTIONS(5189), + [anon_sym_BSLASHpnotecite] = ACTIONS(5189), + [anon_sym_BSLASHPnotecite] = ACTIONS(5189), + [anon_sym_BSLASHfnotecite] = ACTIONS(5189), + [anon_sym_BSLASHlabel] = ACTIONS(5189), + [anon_sym_BSLASHref] = ACTIONS(5189), + [anon_sym_BSLASHeqref] = ACTIONS(5189), + [anon_sym_BSLASHvref] = ACTIONS(5189), + [anon_sym_BSLASHVref] = ACTIONS(5189), + [anon_sym_BSLASHautoref] = ACTIONS(5189), + [anon_sym_BSLASHpageref] = ACTIONS(5189), + [anon_sym_BSLASHcref] = ACTIONS(5189), + [anon_sym_BSLASHCref] = ACTIONS(5189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnameCref] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHlabelcref] = ACTIONS(5189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCrefrange] = ACTIONS(5189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnewlabel] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), + [anon_sym_BSLASHgls] = ACTIONS(5189), + [anon_sym_BSLASHGls] = ACTIONS(5189), + [anon_sym_BSLASHGLS] = ACTIONS(5189), + [anon_sym_BSLASHglspl] = ACTIONS(5189), + [anon_sym_BSLASHGlspl] = ACTIONS(5189), + [anon_sym_BSLASHGLSpl] = ACTIONS(5189), + [anon_sym_BSLASHglsdisp] = ACTIONS(5189), + [anon_sym_BSLASHglslink] = ACTIONS(5189), + [anon_sym_BSLASHglstext] = ACTIONS(5189), + [anon_sym_BSLASHGlstext] = ACTIONS(5189), + [anon_sym_BSLASHGLStext] = ACTIONS(5189), + [anon_sym_BSLASHglsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), + [anon_sym_BSLASHglsplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSplural] = ACTIONS(5189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHglsname] = ACTIONS(5189), + [anon_sym_BSLASHGlsname] = ACTIONS(5189), + [anon_sym_BSLASHGLSname] = ACTIONS(5189), + [anon_sym_BSLASHglssymbol] = ACTIONS(5189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), + [anon_sym_BSLASHglsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), + [anon_sym_BSLASHglsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), + [anon_sym_BSLASHglsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), + [anon_sym_BSLASHglsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), + [anon_sym_BSLASHglsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), + [anon_sym_BSLASHnewacronym] = ACTIONS(5189), + [anon_sym_BSLASHacrshort] = ACTIONS(5189), + [anon_sym_BSLASHAcrshort] = ACTIONS(5189), + [anon_sym_BSLASHACRshort] = ACTIONS(5189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), + [anon_sym_BSLASHacrlong] = ACTIONS(5189), + [anon_sym_BSLASHAcrlong] = ACTIONS(5189), + [anon_sym_BSLASHACRlong] = ACTIONS(5189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), + [anon_sym_BSLASHacrfull] = ACTIONS(5189), + [anon_sym_BSLASHAcrfull] = ACTIONS(5189), + [anon_sym_BSLASHACRfull] = ACTIONS(5189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), + [anon_sym_BSLASHacs] = ACTIONS(5189), + [anon_sym_BSLASHAcs] = ACTIONS(5189), + [anon_sym_BSLASHacsp] = ACTIONS(5189), + [anon_sym_BSLASHAcsp] = ACTIONS(5189), + [anon_sym_BSLASHacl] = ACTIONS(5189), + [anon_sym_BSLASHAcl] = ACTIONS(5189), + [anon_sym_BSLASHaclp] = ACTIONS(5189), + [anon_sym_BSLASHAclp] = ACTIONS(5189), + [anon_sym_BSLASHacf] = ACTIONS(5189), + [anon_sym_BSLASHAcf] = ACTIONS(5189), + [anon_sym_BSLASHacfp] = ACTIONS(5189), + [anon_sym_BSLASHAcfp] = ACTIONS(5189), + [anon_sym_BSLASHac] = ACTIONS(5189), + [anon_sym_BSLASHAc] = ACTIONS(5189), + [anon_sym_BSLASHacp] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), + [anon_sym_BSLASHcolor] = ACTIONS(5189), + [anon_sym_BSLASHcolorbox] = ACTIONS(5189), + [anon_sym_BSLASHtextcolor] = ACTIONS(5189), + [anon_sym_BSLASHpagecolor] = ACTIONS(5189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), + [anon_sym_BSLASHtext] = ACTIONS(5189), + [anon_sym_BSLASHintertext] = ACTIONS(5189), + [anon_sym_shortintertext] = ACTIONS(5189), }, - [1139] = { - [sym_command_name] = ACTIONS(5061), + [1002] = { + [sym_command_name] = ACTIONS(5193), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_BSLASHpart] = ACTIONS(5061), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddpart] = ACTIONS(5061), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHchapter] = ACTIONS(5061), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddchap] = ACTIONS(5061), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsection] = ACTIONS(5061), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddsec] = ACTIONS(5061), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHparagraph] = ACTIONS(5061), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHitem] = ACTIONS(5061), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASHbegin] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [anon_sym_BSLASHiffalse] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5191), + [anon_sym_RPAREN] = ACTIONS(5191), + [anon_sym_LBRACK] = ACTIONS(5191), + [anon_sym_RBRACK] = ACTIONS(5191), + [anon_sym_COMMA] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_BSLASHpart] = ACTIONS(5193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddpart] = ACTIONS(5193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), + [anon_sym_BSLASHchapter] = ACTIONS(5193), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddchap] = ACTIONS(5193), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsection] = ACTIONS(5193), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddsec] = ACTIONS(5193), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubsection] = ACTIONS(5193), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHparagraph] = ACTIONS(5193), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), + [anon_sym_BSLASHitem] = ACTIONS(5193), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5191), + [sym_word] = ACTIONS(5193), + [sym_placeholder] = ACTIONS(5191), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5193), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_CARET] = ACTIONS(5193), + [anon_sym__] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_PIPE] = ACTIONS(5193), + [anon_sym_COLON] = ACTIONS(5193), + [anon_sym_SQUOTE] = ACTIONS(5193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5191), + [anon_sym_DOLLAR] = ACTIONS(5193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), + [anon_sym_BSLASHbegin] = ACTIONS(5193), + [anon_sym_BSLASHusepackage] = ACTIONS(5193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), + [anon_sym_BSLASHinclude] = ACTIONS(5193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), + [anon_sym_BSLASHinput] = ACTIONS(5193), + [anon_sym_BSLASHsubfile] = ACTIONS(5193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), + [anon_sym_BSLASHbibliography] = ACTIONS(5193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), + [anon_sym_BSLASHincludesvg] = ACTIONS(5193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), + [anon_sym_BSLASHimport] = ACTIONS(5193), + [anon_sym_BSLASHsubimport] = ACTIONS(5193), + [anon_sym_BSLASHinputfrom] = ACTIONS(5193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), + [anon_sym_BSLASHincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHcaption] = ACTIONS(5193), + [anon_sym_BSLASHcite] = ACTIONS(5193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCite] = ACTIONS(5193), + [anon_sym_BSLASHnocite] = ACTIONS(5193), + [anon_sym_BSLASHcitet] = ACTIONS(5193), + [anon_sym_BSLASHcitep] = ACTIONS(5193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteauthor] = ACTIONS(5193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitetitle] = ACTIONS(5193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteyear] = ACTIONS(5193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitedate] = ACTIONS(5193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteurl] = ACTIONS(5193), + [anon_sym_BSLASHfullcite] = ACTIONS(5193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), + [anon_sym_BSLASHcitealt] = ACTIONS(5193), + [anon_sym_BSLASHcitealp] = ACTIONS(5193), + [anon_sym_BSLASHcitetext] = ACTIONS(5193), + [anon_sym_BSLASHparencite] = ACTIONS(5193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHParencite] = ACTIONS(5193), + [anon_sym_BSLASHfootcite] = ACTIONS(5193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), + [anon_sym_BSLASHtextcite] = ACTIONS(5193), + [anon_sym_BSLASHTextcite] = ACTIONS(5193), + [anon_sym_BSLASHsmartcite] = ACTIONS(5193), + [anon_sym_BSLASHSmartcite] = ACTIONS(5193), + [anon_sym_BSLASHsupercite] = ACTIONS(5193), + [anon_sym_BSLASHautocite] = ACTIONS(5193), + [anon_sym_BSLASHAutocite] = ACTIONS(5193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHvolcite] = ACTIONS(5193), + [anon_sym_BSLASHVolcite] = ACTIONS(5193), + [anon_sym_BSLASHpvolcite] = ACTIONS(5193), + [anon_sym_BSLASHPvolcite] = ACTIONS(5193), + [anon_sym_BSLASHfvolcite] = ACTIONS(5193), + [anon_sym_BSLASHftvolcite] = ACTIONS(5193), + [anon_sym_BSLASHsvolcite] = ACTIONS(5193), + [anon_sym_BSLASHSvolcite] = ACTIONS(5193), + [anon_sym_BSLASHtvolcite] = ACTIONS(5193), + [anon_sym_BSLASHTvolcite] = ACTIONS(5193), + [anon_sym_BSLASHavolcite] = ACTIONS(5193), + [anon_sym_BSLASHAvolcite] = ACTIONS(5193), + [anon_sym_BSLASHnotecite] = ACTIONS(5193), + [anon_sym_BSLASHNotecite] = ACTIONS(5193), + [anon_sym_BSLASHpnotecite] = ACTIONS(5193), + [anon_sym_BSLASHPnotecite] = ACTIONS(5193), + [anon_sym_BSLASHfnotecite] = ACTIONS(5193), + [anon_sym_BSLASHlabel] = ACTIONS(5193), + [anon_sym_BSLASHref] = ACTIONS(5193), + [anon_sym_BSLASHeqref] = ACTIONS(5193), + [anon_sym_BSLASHvref] = ACTIONS(5193), + [anon_sym_BSLASHVref] = ACTIONS(5193), + [anon_sym_BSLASHautoref] = ACTIONS(5193), + [anon_sym_BSLASHpageref] = ACTIONS(5193), + [anon_sym_BSLASHcref] = ACTIONS(5193), + [anon_sym_BSLASHCref] = ACTIONS(5193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnameCref] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHlabelcref] = ACTIONS(5193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCrefrange] = ACTIONS(5193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnewlabel] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), + [anon_sym_BSLASHdef] = ACTIONS(5193), + [anon_sym_BSLASHlet] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), + [anon_sym_BSLASHgls] = ACTIONS(5193), + [anon_sym_BSLASHGls] = ACTIONS(5193), + [anon_sym_BSLASHGLS] = ACTIONS(5193), + [anon_sym_BSLASHglspl] = ACTIONS(5193), + [anon_sym_BSLASHGlspl] = ACTIONS(5193), + [anon_sym_BSLASHGLSpl] = ACTIONS(5193), + [anon_sym_BSLASHglsdisp] = ACTIONS(5193), + [anon_sym_BSLASHglslink] = ACTIONS(5193), + [anon_sym_BSLASHglstext] = ACTIONS(5193), + [anon_sym_BSLASHGlstext] = ACTIONS(5193), + [anon_sym_BSLASHGLStext] = ACTIONS(5193), + [anon_sym_BSLASHglsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), + [anon_sym_BSLASHglsplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSplural] = ACTIONS(5193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHglsname] = ACTIONS(5193), + [anon_sym_BSLASHGlsname] = ACTIONS(5193), + [anon_sym_BSLASHGLSname] = ACTIONS(5193), + [anon_sym_BSLASHglssymbol] = ACTIONS(5193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), + [anon_sym_BSLASHglsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), + [anon_sym_BSLASHglsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), + [anon_sym_BSLASHglsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), + [anon_sym_BSLASHglsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), + [anon_sym_BSLASHglsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), + [anon_sym_BSLASHnewacronym] = ACTIONS(5193), + [anon_sym_BSLASHacrshort] = ACTIONS(5193), + [anon_sym_BSLASHAcrshort] = ACTIONS(5193), + [anon_sym_BSLASHACRshort] = ACTIONS(5193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), + [anon_sym_BSLASHacrlong] = ACTIONS(5193), + [anon_sym_BSLASHAcrlong] = ACTIONS(5193), + [anon_sym_BSLASHACRlong] = ACTIONS(5193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), + [anon_sym_BSLASHacrfull] = ACTIONS(5193), + [anon_sym_BSLASHAcrfull] = ACTIONS(5193), + [anon_sym_BSLASHACRfull] = ACTIONS(5193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), + [anon_sym_BSLASHacs] = ACTIONS(5193), + [anon_sym_BSLASHAcs] = ACTIONS(5193), + [anon_sym_BSLASHacsp] = ACTIONS(5193), + [anon_sym_BSLASHAcsp] = ACTIONS(5193), + [anon_sym_BSLASHacl] = ACTIONS(5193), + [anon_sym_BSLASHAcl] = ACTIONS(5193), + [anon_sym_BSLASHaclp] = ACTIONS(5193), + [anon_sym_BSLASHAclp] = ACTIONS(5193), + [anon_sym_BSLASHacf] = ACTIONS(5193), + [anon_sym_BSLASHAcf] = ACTIONS(5193), + [anon_sym_BSLASHacfp] = ACTIONS(5193), + [anon_sym_BSLASHAcfp] = ACTIONS(5193), + [anon_sym_BSLASHac] = ACTIONS(5193), + [anon_sym_BSLASHAc] = ACTIONS(5193), + [anon_sym_BSLASHacp] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), + [anon_sym_BSLASHcolor] = ACTIONS(5193), + [anon_sym_BSLASHcolorbox] = ACTIONS(5193), + [anon_sym_BSLASHtextcolor] = ACTIONS(5193), + [anon_sym_BSLASHpagecolor] = ACTIONS(5193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [anon_sym_BSLASHtext] = ACTIONS(5193), + [anon_sym_BSLASHintertext] = ACTIONS(5193), + [anon_sym_shortintertext] = ACTIONS(5193), }, - [1140] = { - [sym_command_name] = ACTIONS(5057), + [1003] = { + [sym_command_name] = ACTIONS(5197), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_BSLASHpart] = ACTIONS(5057), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddpart] = ACTIONS(5057), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), - [anon_sym_BSLASHchapter] = ACTIONS(5057), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddchap] = ACTIONS(5057), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsection] = ACTIONS(5057), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHaddsec] = ACTIONS(5057), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), - [anon_sym_BSLASHparagraph] = ACTIONS(5057), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), - [anon_sym_BSLASHitem] = ACTIONS(5057), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASHbegin] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [anon_sym_BSLASHiffalse] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_BSLASHpart] = ACTIONS(5197), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddpart] = ACTIONS(5197), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), + [anon_sym_BSLASHchapter] = ACTIONS(5197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddchap] = ACTIONS(5197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsection] = ACTIONS(5197), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddsec] = ACTIONS(5197), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubsection] = ACTIONS(5197), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHparagraph] = ACTIONS(5197), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), + [anon_sym_BSLASHitem] = ACTIONS(5197), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5195), + [sym_word] = ACTIONS(5197), + [sym_placeholder] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_CARET] = ACTIONS(5197), + [anon_sym__] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_COLON] = ACTIONS(5197), + [anon_sym_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5195), + [anon_sym_DOLLAR] = ACTIONS(5197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), + [anon_sym_BSLASHbegin] = ACTIONS(5197), + [anon_sym_BSLASHusepackage] = ACTIONS(5197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), + [anon_sym_BSLASHinclude] = ACTIONS(5197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), + [anon_sym_BSLASHinput] = ACTIONS(5197), + [anon_sym_BSLASHsubfile] = ACTIONS(5197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), + [anon_sym_BSLASHbibliography] = ACTIONS(5197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), + [anon_sym_BSLASHincludesvg] = ACTIONS(5197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), + [anon_sym_BSLASHimport] = ACTIONS(5197), + [anon_sym_BSLASHsubimport] = ACTIONS(5197), + [anon_sym_BSLASHinputfrom] = ACTIONS(5197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), + [anon_sym_BSLASHincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHcaption] = ACTIONS(5197), + [anon_sym_BSLASHcite] = ACTIONS(5197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCite] = ACTIONS(5197), + [anon_sym_BSLASHnocite] = ACTIONS(5197), + [anon_sym_BSLASHcitet] = ACTIONS(5197), + [anon_sym_BSLASHcitep] = ACTIONS(5197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteauthor] = ACTIONS(5197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitetitle] = ACTIONS(5197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteyear] = ACTIONS(5197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitedate] = ACTIONS(5197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteurl] = ACTIONS(5197), + [anon_sym_BSLASHfullcite] = ACTIONS(5197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), + [anon_sym_BSLASHcitealt] = ACTIONS(5197), + [anon_sym_BSLASHcitealp] = ACTIONS(5197), + [anon_sym_BSLASHcitetext] = ACTIONS(5197), + [anon_sym_BSLASHparencite] = ACTIONS(5197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHParencite] = ACTIONS(5197), + [anon_sym_BSLASHfootcite] = ACTIONS(5197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), + [anon_sym_BSLASHtextcite] = ACTIONS(5197), + [anon_sym_BSLASHTextcite] = ACTIONS(5197), + [anon_sym_BSLASHsmartcite] = ACTIONS(5197), + [anon_sym_BSLASHSmartcite] = ACTIONS(5197), + [anon_sym_BSLASHsupercite] = ACTIONS(5197), + [anon_sym_BSLASHautocite] = ACTIONS(5197), + [anon_sym_BSLASHAutocite] = ACTIONS(5197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHvolcite] = ACTIONS(5197), + [anon_sym_BSLASHVolcite] = ACTIONS(5197), + [anon_sym_BSLASHpvolcite] = ACTIONS(5197), + [anon_sym_BSLASHPvolcite] = ACTIONS(5197), + [anon_sym_BSLASHfvolcite] = ACTIONS(5197), + [anon_sym_BSLASHftvolcite] = ACTIONS(5197), + [anon_sym_BSLASHsvolcite] = ACTIONS(5197), + [anon_sym_BSLASHSvolcite] = ACTIONS(5197), + [anon_sym_BSLASHtvolcite] = ACTIONS(5197), + [anon_sym_BSLASHTvolcite] = ACTIONS(5197), + [anon_sym_BSLASHavolcite] = ACTIONS(5197), + [anon_sym_BSLASHAvolcite] = ACTIONS(5197), + [anon_sym_BSLASHnotecite] = ACTIONS(5197), + [anon_sym_BSLASHNotecite] = ACTIONS(5197), + [anon_sym_BSLASHpnotecite] = ACTIONS(5197), + [anon_sym_BSLASHPnotecite] = ACTIONS(5197), + [anon_sym_BSLASHfnotecite] = ACTIONS(5197), + [anon_sym_BSLASHlabel] = ACTIONS(5197), + [anon_sym_BSLASHref] = ACTIONS(5197), + [anon_sym_BSLASHeqref] = ACTIONS(5197), + [anon_sym_BSLASHvref] = ACTIONS(5197), + [anon_sym_BSLASHVref] = ACTIONS(5197), + [anon_sym_BSLASHautoref] = ACTIONS(5197), + [anon_sym_BSLASHpageref] = ACTIONS(5197), + [anon_sym_BSLASHcref] = ACTIONS(5197), + [anon_sym_BSLASHCref] = ACTIONS(5197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnameCref] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHlabelcref] = ACTIONS(5197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCrefrange] = ACTIONS(5197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnewlabel] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), + [anon_sym_BSLASHdef] = ACTIONS(5197), + [anon_sym_BSLASHlet] = ACTIONS(5197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5197), + [anon_sym_BSLASHGls] = ACTIONS(5197), + [anon_sym_BSLASHGLS] = ACTIONS(5197), + [anon_sym_BSLASHglspl] = ACTIONS(5197), + [anon_sym_BSLASHGlspl] = ACTIONS(5197), + [anon_sym_BSLASHGLSpl] = ACTIONS(5197), + [anon_sym_BSLASHglsdisp] = ACTIONS(5197), + [anon_sym_BSLASHglslink] = ACTIONS(5197), + [anon_sym_BSLASHglstext] = ACTIONS(5197), + [anon_sym_BSLASHGlstext] = ACTIONS(5197), + [anon_sym_BSLASHGLStext] = ACTIONS(5197), + [anon_sym_BSLASHglsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), + [anon_sym_BSLASHglsplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSplural] = ACTIONS(5197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHglsname] = ACTIONS(5197), + [anon_sym_BSLASHGlsname] = ACTIONS(5197), + [anon_sym_BSLASHGLSname] = ACTIONS(5197), + [anon_sym_BSLASHglssymbol] = ACTIONS(5197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), + [anon_sym_BSLASHglsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), + [anon_sym_BSLASHglsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), + [anon_sym_BSLASHglsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), + [anon_sym_BSLASHglsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), + [anon_sym_BSLASHglsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), + [anon_sym_BSLASHnewacronym] = ACTIONS(5197), + [anon_sym_BSLASHacrshort] = ACTIONS(5197), + [anon_sym_BSLASHAcrshort] = ACTIONS(5197), + [anon_sym_BSLASHACRshort] = ACTIONS(5197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), + [anon_sym_BSLASHacrlong] = ACTIONS(5197), + [anon_sym_BSLASHAcrlong] = ACTIONS(5197), + [anon_sym_BSLASHACRlong] = ACTIONS(5197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), + [anon_sym_BSLASHacrfull] = ACTIONS(5197), + [anon_sym_BSLASHAcrfull] = ACTIONS(5197), + [anon_sym_BSLASHACRfull] = ACTIONS(5197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), + [anon_sym_BSLASHacs] = ACTIONS(5197), + [anon_sym_BSLASHAcs] = ACTIONS(5197), + [anon_sym_BSLASHacsp] = ACTIONS(5197), + [anon_sym_BSLASHAcsp] = ACTIONS(5197), + [anon_sym_BSLASHacl] = ACTIONS(5197), + [anon_sym_BSLASHAcl] = ACTIONS(5197), + [anon_sym_BSLASHaclp] = ACTIONS(5197), + [anon_sym_BSLASHAclp] = ACTIONS(5197), + [anon_sym_BSLASHacf] = ACTIONS(5197), + [anon_sym_BSLASHAcf] = ACTIONS(5197), + [anon_sym_BSLASHacfp] = ACTIONS(5197), + [anon_sym_BSLASHAcfp] = ACTIONS(5197), + [anon_sym_BSLASHac] = ACTIONS(5197), + [anon_sym_BSLASHAc] = ACTIONS(5197), + [anon_sym_BSLASHacp] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), + [anon_sym_BSLASHcolor] = ACTIONS(5197), + [anon_sym_BSLASHcolorbox] = ACTIONS(5197), + [anon_sym_BSLASHtextcolor] = ACTIONS(5197), + [anon_sym_BSLASHpagecolor] = ACTIONS(5197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + [anon_sym_BSLASHtext] = ACTIONS(5197), + [anon_sym_BSLASHintertext] = ACTIONS(5197), + [anon_sym_shortintertext] = ACTIONS(5197), }, - [1141] = { - [sym_command_name] = ACTIONS(5053), + [1004] = { + [sym_command_name] = ACTIONS(5209), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_BSLASHpart] = ACTIONS(5053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddpart] = ACTIONS(5053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHchapter] = ACTIONS(5053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddchap] = ACTIONS(5053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsection] = ACTIONS(5053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddsec] = ACTIONS(5053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHparagraph] = ACTIONS(5053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHitem] = ACTIONS(5053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASHbegin] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [anon_sym_BSLASHiffalse] = ACTIONS(5209), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_RPAREN] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_RBRACK] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_BSLASHpart] = ACTIONS(5209), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddpart] = ACTIONS(5209), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), + [anon_sym_BSLASHchapter] = ACTIONS(5209), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddchap] = ACTIONS(5209), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsection] = ACTIONS(5209), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddsec] = ACTIONS(5209), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubsection] = ACTIONS(5209), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHparagraph] = ACTIONS(5209), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), + [anon_sym_BSLASHitem] = ACTIONS(5209), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), + [anon_sym_LBRACE] = ACTIONS(5207), + [sym_word] = ACTIONS(5209), + [sym_placeholder] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_CARET] = ACTIONS(5209), + [anon_sym__] = ACTIONS(5209), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_PIPE] = ACTIONS(5209), + [anon_sym_COLON] = ACTIONS(5209), + [anon_sym_SQUOTE] = ACTIONS(5209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5207), + [anon_sym_DOLLAR] = ACTIONS(5209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), + [anon_sym_BSLASHbegin] = ACTIONS(5209), + [anon_sym_BSLASHusepackage] = ACTIONS(5209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), + [anon_sym_BSLASHinclude] = ACTIONS(5209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), + [anon_sym_BSLASHinput] = ACTIONS(5209), + [anon_sym_BSLASHsubfile] = ACTIONS(5209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), + [anon_sym_BSLASHbibliography] = ACTIONS(5209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), + [anon_sym_BSLASHincludesvg] = ACTIONS(5209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), + [anon_sym_BSLASHimport] = ACTIONS(5209), + [anon_sym_BSLASHsubimport] = ACTIONS(5209), + [anon_sym_BSLASHinputfrom] = ACTIONS(5209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), + [anon_sym_BSLASHincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHcaption] = ACTIONS(5209), + [anon_sym_BSLASHcite] = ACTIONS(5209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCite] = ACTIONS(5209), + [anon_sym_BSLASHnocite] = ACTIONS(5209), + [anon_sym_BSLASHcitet] = ACTIONS(5209), + [anon_sym_BSLASHcitep] = ACTIONS(5209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteauthor] = ACTIONS(5209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitetitle] = ACTIONS(5209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteyear] = ACTIONS(5209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitedate] = ACTIONS(5209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteurl] = ACTIONS(5209), + [anon_sym_BSLASHfullcite] = ACTIONS(5209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), + [anon_sym_BSLASHcitealt] = ACTIONS(5209), + [anon_sym_BSLASHcitealp] = ACTIONS(5209), + [anon_sym_BSLASHcitetext] = ACTIONS(5209), + [anon_sym_BSLASHparencite] = ACTIONS(5209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHParencite] = ACTIONS(5209), + [anon_sym_BSLASHfootcite] = ACTIONS(5209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), + [anon_sym_BSLASHtextcite] = ACTIONS(5209), + [anon_sym_BSLASHTextcite] = ACTIONS(5209), + [anon_sym_BSLASHsmartcite] = ACTIONS(5209), + [anon_sym_BSLASHSmartcite] = ACTIONS(5209), + [anon_sym_BSLASHsupercite] = ACTIONS(5209), + [anon_sym_BSLASHautocite] = ACTIONS(5209), + [anon_sym_BSLASHAutocite] = ACTIONS(5209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHvolcite] = ACTIONS(5209), + [anon_sym_BSLASHVolcite] = ACTIONS(5209), + [anon_sym_BSLASHpvolcite] = ACTIONS(5209), + [anon_sym_BSLASHPvolcite] = ACTIONS(5209), + [anon_sym_BSLASHfvolcite] = ACTIONS(5209), + [anon_sym_BSLASHftvolcite] = ACTIONS(5209), + [anon_sym_BSLASHsvolcite] = ACTIONS(5209), + [anon_sym_BSLASHSvolcite] = ACTIONS(5209), + [anon_sym_BSLASHtvolcite] = ACTIONS(5209), + [anon_sym_BSLASHTvolcite] = ACTIONS(5209), + [anon_sym_BSLASHavolcite] = ACTIONS(5209), + [anon_sym_BSLASHAvolcite] = ACTIONS(5209), + [anon_sym_BSLASHnotecite] = ACTIONS(5209), + [anon_sym_BSLASHNotecite] = ACTIONS(5209), + [anon_sym_BSLASHpnotecite] = ACTIONS(5209), + [anon_sym_BSLASHPnotecite] = ACTIONS(5209), + [anon_sym_BSLASHfnotecite] = ACTIONS(5209), + [anon_sym_BSLASHlabel] = ACTIONS(5209), + [anon_sym_BSLASHref] = ACTIONS(5209), + [anon_sym_BSLASHeqref] = ACTIONS(5209), + [anon_sym_BSLASHvref] = ACTIONS(5209), + [anon_sym_BSLASHVref] = ACTIONS(5209), + [anon_sym_BSLASHautoref] = ACTIONS(5209), + [anon_sym_BSLASHpageref] = ACTIONS(5209), + [anon_sym_BSLASHcref] = ACTIONS(5209), + [anon_sym_BSLASHCref] = ACTIONS(5209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnameCref] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHlabelcref] = ACTIONS(5209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCrefrange] = ACTIONS(5209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnewlabel] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdef] = ACTIONS(5209), + [anon_sym_BSLASHlet] = ACTIONS(5209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), + [anon_sym_BSLASHgls] = ACTIONS(5209), + [anon_sym_BSLASHGls] = ACTIONS(5209), + [anon_sym_BSLASHGLS] = ACTIONS(5209), + [anon_sym_BSLASHglspl] = ACTIONS(5209), + [anon_sym_BSLASHGlspl] = ACTIONS(5209), + [anon_sym_BSLASHGLSpl] = ACTIONS(5209), + [anon_sym_BSLASHglsdisp] = ACTIONS(5209), + [anon_sym_BSLASHglslink] = ACTIONS(5209), + [anon_sym_BSLASHglstext] = ACTIONS(5209), + [anon_sym_BSLASHGlstext] = ACTIONS(5209), + [anon_sym_BSLASHGLStext] = ACTIONS(5209), + [anon_sym_BSLASHglsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), + [anon_sym_BSLASHglsplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSplural] = ACTIONS(5209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHglsname] = ACTIONS(5209), + [anon_sym_BSLASHGlsname] = ACTIONS(5209), + [anon_sym_BSLASHGLSname] = ACTIONS(5209), + [anon_sym_BSLASHglssymbol] = ACTIONS(5209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), + [anon_sym_BSLASHglsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), + [anon_sym_BSLASHglsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), + [anon_sym_BSLASHglsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), + [anon_sym_BSLASHglsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), + [anon_sym_BSLASHglsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), + [anon_sym_BSLASHnewacronym] = ACTIONS(5209), + [anon_sym_BSLASHacrshort] = ACTIONS(5209), + [anon_sym_BSLASHAcrshort] = ACTIONS(5209), + [anon_sym_BSLASHACRshort] = ACTIONS(5209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), + [anon_sym_BSLASHacrlong] = ACTIONS(5209), + [anon_sym_BSLASHAcrlong] = ACTIONS(5209), + [anon_sym_BSLASHACRlong] = ACTIONS(5209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), + [anon_sym_BSLASHacrfull] = ACTIONS(5209), + [anon_sym_BSLASHAcrfull] = ACTIONS(5209), + [anon_sym_BSLASHACRfull] = ACTIONS(5209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), + [anon_sym_BSLASHacs] = ACTIONS(5209), + [anon_sym_BSLASHAcs] = ACTIONS(5209), + [anon_sym_BSLASHacsp] = ACTIONS(5209), + [anon_sym_BSLASHAcsp] = ACTIONS(5209), + [anon_sym_BSLASHacl] = ACTIONS(5209), + [anon_sym_BSLASHAcl] = ACTIONS(5209), + [anon_sym_BSLASHaclp] = ACTIONS(5209), + [anon_sym_BSLASHAclp] = ACTIONS(5209), + [anon_sym_BSLASHacf] = ACTIONS(5209), + [anon_sym_BSLASHAcf] = ACTIONS(5209), + [anon_sym_BSLASHacfp] = ACTIONS(5209), + [anon_sym_BSLASHAcfp] = ACTIONS(5209), + [anon_sym_BSLASHac] = ACTIONS(5209), + [anon_sym_BSLASHAc] = ACTIONS(5209), + [anon_sym_BSLASHacp] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), + [anon_sym_BSLASHcolor] = ACTIONS(5209), + [anon_sym_BSLASHcolorbox] = ACTIONS(5209), + [anon_sym_BSLASHtextcolor] = ACTIONS(5209), + [anon_sym_BSLASHpagecolor] = ACTIONS(5209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHtext] = ACTIONS(5209), + [anon_sym_BSLASHintertext] = ACTIONS(5209), + [anon_sym_shortintertext] = ACTIONS(5209), }, - [1142] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1781), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5389), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), + [1005] = { + [sym_command_name] = ACTIONS(5213), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_RPAREN] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_RBRACK] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_EQ] = ACTIONS(5211), + [anon_sym_BSLASHpart] = ACTIONS(5213), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddpart] = ACTIONS(5213), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5211), + [anon_sym_BSLASHchapter] = ACTIONS(5213), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddchap] = ACTIONS(5213), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsection] = ACTIONS(5213), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddsec] = ACTIONS(5213), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubsection] = ACTIONS(5213), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5213), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHparagraph] = ACTIONS(5213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5213), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5211), + [anon_sym_BSLASHitem] = ACTIONS(5213), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(5211), + [sym_word] = ACTIONS(5213), + [sym_placeholder] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_CARET] = ACTIONS(5213), + [anon_sym__] = ACTIONS(5213), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_SQUOTE] = ACTIONS(5213), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5211), + [anon_sym_DOLLAR] = ACTIONS(5213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), + [anon_sym_BSLASHbegin] = ACTIONS(5213), + [anon_sym_BSLASHusepackage] = ACTIONS(5213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), + [anon_sym_BSLASHinclude] = ACTIONS(5213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), + [anon_sym_BSLASHinput] = ACTIONS(5213), + [anon_sym_BSLASHsubfile] = ACTIONS(5213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), + [anon_sym_BSLASHbibliography] = ACTIONS(5213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), + [anon_sym_BSLASHincludesvg] = ACTIONS(5213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), + [anon_sym_BSLASHimport] = ACTIONS(5213), + [anon_sym_BSLASHsubimport] = ACTIONS(5213), + [anon_sym_BSLASHinputfrom] = ACTIONS(5213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), + [anon_sym_BSLASHincludefrom] = ACTIONS(5213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), + [anon_sym_BSLASHcaption] = ACTIONS(5213), + [anon_sym_BSLASHcite] = ACTIONS(5213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCite] = ACTIONS(5213), + [anon_sym_BSLASHnocite] = ACTIONS(5213), + [anon_sym_BSLASHcitet] = ACTIONS(5213), + [anon_sym_BSLASHcitep] = ACTIONS(5213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteauthor] = ACTIONS(5213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitetitle] = ACTIONS(5213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteyear] = ACTIONS(5213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitedate] = ACTIONS(5213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteurl] = ACTIONS(5213), + [anon_sym_BSLASHfullcite] = ACTIONS(5213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), + [anon_sym_BSLASHcitealt] = ACTIONS(5213), + [anon_sym_BSLASHcitealp] = ACTIONS(5213), + [anon_sym_BSLASHcitetext] = ACTIONS(5213), + [anon_sym_BSLASHparencite] = ACTIONS(5213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHParencite] = ACTIONS(5213), + [anon_sym_BSLASHfootcite] = ACTIONS(5213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), + [anon_sym_BSLASHtextcite] = ACTIONS(5213), + [anon_sym_BSLASHTextcite] = ACTIONS(5213), + [anon_sym_BSLASHsmartcite] = ACTIONS(5213), + [anon_sym_BSLASHSmartcite] = ACTIONS(5213), + [anon_sym_BSLASHsupercite] = ACTIONS(5213), + [anon_sym_BSLASHautocite] = ACTIONS(5213), + [anon_sym_BSLASHAutocite] = ACTIONS(5213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHvolcite] = ACTIONS(5213), + [anon_sym_BSLASHVolcite] = ACTIONS(5213), + [anon_sym_BSLASHpvolcite] = ACTIONS(5213), + [anon_sym_BSLASHPvolcite] = ACTIONS(5213), + [anon_sym_BSLASHfvolcite] = ACTIONS(5213), + [anon_sym_BSLASHftvolcite] = ACTIONS(5213), + [anon_sym_BSLASHsvolcite] = ACTIONS(5213), + [anon_sym_BSLASHSvolcite] = ACTIONS(5213), + [anon_sym_BSLASHtvolcite] = ACTIONS(5213), + [anon_sym_BSLASHTvolcite] = ACTIONS(5213), + [anon_sym_BSLASHavolcite] = ACTIONS(5213), + [anon_sym_BSLASHAvolcite] = ACTIONS(5213), + [anon_sym_BSLASHnotecite] = ACTIONS(5213), + [anon_sym_BSLASHNotecite] = ACTIONS(5213), + [anon_sym_BSLASHpnotecite] = ACTIONS(5213), + [anon_sym_BSLASHPnotecite] = ACTIONS(5213), + [anon_sym_BSLASHfnotecite] = ACTIONS(5213), + [anon_sym_BSLASHlabel] = ACTIONS(5213), + [anon_sym_BSLASHref] = ACTIONS(5213), + [anon_sym_BSLASHeqref] = ACTIONS(5213), + [anon_sym_BSLASHvref] = ACTIONS(5213), + [anon_sym_BSLASHVref] = ACTIONS(5213), + [anon_sym_BSLASHautoref] = ACTIONS(5213), + [anon_sym_BSLASHpageref] = ACTIONS(5213), + [anon_sym_BSLASHcref] = ACTIONS(5213), + [anon_sym_BSLASHCref] = ACTIONS(5213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), + [anon_sym_BSLASHnamecref] = ACTIONS(5213), + [anon_sym_BSLASHnameCref] = ACTIONS(5213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), + [anon_sym_BSLASHlabelcref] = ACTIONS(5213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), + [anon_sym_BSLASHcrefrange] = ACTIONS(5213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCrefrange] = ACTIONS(5213), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), + [anon_sym_BSLASHnewlabel] = ACTIONS(5213), + [anon_sym_BSLASHnewcommand] = ACTIONS(5213), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), + [anon_sym_BSLASHdef] = ACTIONS(5213), + [anon_sym_BSLASHlet] = ACTIONS(5213), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), + [anon_sym_BSLASHgls] = ACTIONS(5213), + [anon_sym_BSLASHGls] = ACTIONS(5213), + [anon_sym_BSLASHGLS] = ACTIONS(5213), + [anon_sym_BSLASHglspl] = ACTIONS(5213), + [anon_sym_BSLASHGlspl] = ACTIONS(5213), + [anon_sym_BSLASHGLSpl] = ACTIONS(5213), + [anon_sym_BSLASHglsdisp] = ACTIONS(5213), + [anon_sym_BSLASHglslink] = ACTIONS(5213), + [anon_sym_BSLASHglstext] = ACTIONS(5213), + [anon_sym_BSLASHGlstext] = ACTIONS(5213), + [anon_sym_BSLASHGLStext] = ACTIONS(5213), + [anon_sym_BSLASHglsfirst] = ACTIONS(5213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), + [anon_sym_BSLASHglsplural] = ACTIONS(5213), + [anon_sym_BSLASHGlsplural] = ACTIONS(5213), + [anon_sym_BSLASHGLSplural] = ACTIONS(5213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHglsname] = ACTIONS(5213), + [anon_sym_BSLASHGlsname] = ACTIONS(5213), + [anon_sym_BSLASHGLSname] = ACTIONS(5213), + [anon_sym_BSLASHglssymbol] = ACTIONS(5213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), + [anon_sym_BSLASHglsdesc] = ACTIONS(5213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), + [anon_sym_BSLASHglsuseri] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), + [anon_sym_BSLASHglsuserii] = ACTIONS(5213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), + [anon_sym_BSLASHglsuserv] = ACTIONS(5213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), + [anon_sym_BSLASHglsuservi] = ACTIONS(5213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), + [anon_sym_BSLASHnewacronym] = ACTIONS(5213), + [anon_sym_BSLASHacrshort] = ACTIONS(5213), + [anon_sym_BSLASHAcrshort] = ACTIONS(5213), + [anon_sym_BSLASHACRshort] = ACTIONS(5213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), + [anon_sym_BSLASHacrlong] = ACTIONS(5213), + [anon_sym_BSLASHAcrlong] = ACTIONS(5213), + [anon_sym_BSLASHACRlong] = ACTIONS(5213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), + [anon_sym_BSLASHacrfull] = ACTIONS(5213), + [anon_sym_BSLASHAcrfull] = ACTIONS(5213), + [anon_sym_BSLASHACRfull] = ACTIONS(5213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), + [anon_sym_BSLASHacs] = ACTIONS(5213), + [anon_sym_BSLASHAcs] = ACTIONS(5213), + [anon_sym_BSLASHacsp] = ACTIONS(5213), + [anon_sym_BSLASHAcsp] = ACTIONS(5213), + [anon_sym_BSLASHacl] = ACTIONS(5213), + [anon_sym_BSLASHAcl] = ACTIONS(5213), + [anon_sym_BSLASHaclp] = ACTIONS(5213), + [anon_sym_BSLASHAclp] = ACTIONS(5213), + [anon_sym_BSLASHacf] = ACTIONS(5213), + [anon_sym_BSLASHAcf] = ACTIONS(5213), + [anon_sym_BSLASHacfp] = ACTIONS(5213), + [anon_sym_BSLASHAcfp] = ACTIONS(5213), + [anon_sym_BSLASHac] = ACTIONS(5213), + [anon_sym_BSLASHAc] = ACTIONS(5213), + [anon_sym_BSLASHacp] = ACTIONS(5213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), + [anon_sym_BSLASHtext] = ACTIONS(5213), + [anon_sym_BSLASHintertext] = ACTIONS(5213), + [anon_sym_shortintertext] = ACTIONS(5213), }, - [1143] = { - [sym_command_name] = ACTIONS(5037), + [1006] = { + [sym_command_name] = ACTIONS(5217), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_BSLASHpart] = ACTIONS(5037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddpart] = ACTIONS(5037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHchapter] = ACTIONS(5037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddchap] = ACTIONS(5037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsection] = ACTIONS(5037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddsec] = ACTIONS(5037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHparagraph] = ACTIONS(5037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHitem] = ACTIONS(5037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASHbegin] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [anon_sym_BSLASHiffalse] = ACTIONS(5217), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_RPAREN] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_RBRACK] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_BSLASHpart] = ACTIONS(5217), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddpart] = ACTIONS(5217), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), + [anon_sym_BSLASHchapter] = ACTIONS(5217), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddchap] = ACTIONS(5217), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsection] = ACTIONS(5217), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddsec] = ACTIONS(5217), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubsection] = ACTIONS(5217), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHparagraph] = ACTIONS(5217), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), + [anon_sym_BSLASHitem] = ACTIONS(5217), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(5215), + [sym_word] = ACTIONS(5217), + [sym_placeholder] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5217), + [anon_sym_DASH] = ACTIONS(5217), + [anon_sym_STAR] = ACTIONS(5217), + [anon_sym_SLASH] = ACTIONS(5217), + [anon_sym_CARET] = ACTIONS(5217), + [anon_sym__] = ACTIONS(5217), + [anon_sym_LT] = ACTIONS(5217), + [anon_sym_GT] = ACTIONS(5217), + [anon_sym_BANG] = ACTIONS(5217), + [anon_sym_PIPE] = ACTIONS(5217), + [anon_sym_COLON] = ACTIONS(5217), + [anon_sym_SQUOTE] = ACTIONS(5217), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5215), + [anon_sym_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), + [anon_sym_BSLASHbegin] = ACTIONS(5217), + [anon_sym_BSLASHusepackage] = ACTIONS(5217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), + [anon_sym_BSLASHinclude] = ACTIONS(5217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), + [anon_sym_BSLASHinput] = ACTIONS(5217), + [anon_sym_BSLASHsubfile] = ACTIONS(5217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), + [anon_sym_BSLASHbibliography] = ACTIONS(5217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), + [anon_sym_BSLASHincludesvg] = ACTIONS(5217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), + [anon_sym_BSLASHimport] = ACTIONS(5217), + [anon_sym_BSLASHsubimport] = ACTIONS(5217), + [anon_sym_BSLASHinputfrom] = ACTIONS(5217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), + [anon_sym_BSLASHincludefrom] = ACTIONS(5217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), + [anon_sym_BSLASHcaption] = ACTIONS(5217), + [anon_sym_BSLASHcite] = ACTIONS(5217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCite] = ACTIONS(5217), + [anon_sym_BSLASHnocite] = ACTIONS(5217), + [anon_sym_BSLASHcitet] = ACTIONS(5217), + [anon_sym_BSLASHcitep] = ACTIONS(5217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteauthor] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitetitle] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteyear] = ACTIONS(5217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitedate] = ACTIONS(5217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteurl] = ACTIONS(5217), + [anon_sym_BSLASHfullcite] = ACTIONS(5217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), + [anon_sym_BSLASHcitealt] = ACTIONS(5217), + [anon_sym_BSLASHcitealp] = ACTIONS(5217), + [anon_sym_BSLASHcitetext] = ACTIONS(5217), + [anon_sym_BSLASHparencite] = ACTIONS(5217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHParencite] = ACTIONS(5217), + [anon_sym_BSLASHfootcite] = ACTIONS(5217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), + [anon_sym_BSLASHtextcite] = ACTIONS(5217), + [anon_sym_BSLASHTextcite] = ACTIONS(5217), + [anon_sym_BSLASHsmartcite] = ACTIONS(5217), + [anon_sym_BSLASHSmartcite] = ACTIONS(5217), + [anon_sym_BSLASHsupercite] = ACTIONS(5217), + [anon_sym_BSLASHautocite] = ACTIONS(5217), + [anon_sym_BSLASHAutocite] = ACTIONS(5217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHvolcite] = ACTIONS(5217), + [anon_sym_BSLASHVolcite] = ACTIONS(5217), + [anon_sym_BSLASHpvolcite] = ACTIONS(5217), + [anon_sym_BSLASHPvolcite] = ACTIONS(5217), + [anon_sym_BSLASHfvolcite] = ACTIONS(5217), + [anon_sym_BSLASHftvolcite] = ACTIONS(5217), + [anon_sym_BSLASHsvolcite] = ACTIONS(5217), + [anon_sym_BSLASHSvolcite] = ACTIONS(5217), + [anon_sym_BSLASHtvolcite] = ACTIONS(5217), + [anon_sym_BSLASHTvolcite] = ACTIONS(5217), + [anon_sym_BSLASHavolcite] = ACTIONS(5217), + [anon_sym_BSLASHAvolcite] = ACTIONS(5217), + [anon_sym_BSLASHnotecite] = ACTIONS(5217), + [anon_sym_BSLASHNotecite] = ACTIONS(5217), + [anon_sym_BSLASHpnotecite] = ACTIONS(5217), + [anon_sym_BSLASHPnotecite] = ACTIONS(5217), + [anon_sym_BSLASHfnotecite] = ACTIONS(5217), + [anon_sym_BSLASHlabel] = ACTIONS(5217), + [anon_sym_BSLASHref] = ACTIONS(5217), + [anon_sym_BSLASHeqref] = ACTIONS(5217), + [anon_sym_BSLASHvref] = ACTIONS(5217), + [anon_sym_BSLASHVref] = ACTIONS(5217), + [anon_sym_BSLASHautoref] = ACTIONS(5217), + [anon_sym_BSLASHpageref] = ACTIONS(5217), + [anon_sym_BSLASHcref] = ACTIONS(5217), + [anon_sym_BSLASHCref] = ACTIONS(5217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), + [anon_sym_BSLASHnamecref] = ACTIONS(5217), + [anon_sym_BSLASHnameCref] = ACTIONS(5217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), + [anon_sym_BSLASHlabelcref] = ACTIONS(5217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), + [anon_sym_BSLASHcrefrange] = ACTIONS(5217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCrefrange] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), + [anon_sym_BSLASHnewlabel] = ACTIONS(5217), + [anon_sym_BSLASHnewcommand] = ACTIONS(5217), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), + [anon_sym_BSLASHdef] = ACTIONS(5217), + [anon_sym_BSLASHlet] = ACTIONS(5217), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), + [anon_sym_BSLASHgls] = ACTIONS(5217), + [anon_sym_BSLASHGls] = ACTIONS(5217), + [anon_sym_BSLASHGLS] = ACTIONS(5217), + [anon_sym_BSLASHglspl] = ACTIONS(5217), + [anon_sym_BSLASHGlspl] = ACTIONS(5217), + [anon_sym_BSLASHGLSpl] = ACTIONS(5217), + [anon_sym_BSLASHglsdisp] = ACTIONS(5217), + [anon_sym_BSLASHglslink] = ACTIONS(5217), + [anon_sym_BSLASHglstext] = ACTIONS(5217), + [anon_sym_BSLASHGlstext] = ACTIONS(5217), + [anon_sym_BSLASHGLStext] = ACTIONS(5217), + [anon_sym_BSLASHglsfirst] = ACTIONS(5217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), + [anon_sym_BSLASHglsplural] = ACTIONS(5217), + [anon_sym_BSLASHGlsplural] = ACTIONS(5217), + [anon_sym_BSLASHGLSplural] = ACTIONS(5217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHglsname] = ACTIONS(5217), + [anon_sym_BSLASHGlsname] = ACTIONS(5217), + [anon_sym_BSLASHGLSname] = ACTIONS(5217), + [anon_sym_BSLASHglssymbol] = ACTIONS(5217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), + [anon_sym_BSLASHglsdesc] = ACTIONS(5217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), + [anon_sym_BSLASHglsuseri] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), + [anon_sym_BSLASHglsuserii] = ACTIONS(5217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), + [anon_sym_BSLASHglsuserv] = ACTIONS(5217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), + [anon_sym_BSLASHglsuservi] = ACTIONS(5217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), + [anon_sym_BSLASHnewacronym] = ACTIONS(5217), + [anon_sym_BSLASHacrshort] = ACTIONS(5217), + [anon_sym_BSLASHAcrshort] = ACTIONS(5217), + [anon_sym_BSLASHACRshort] = ACTIONS(5217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), + [anon_sym_BSLASHacrlong] = ACTIONS(5217), + [anon_sym_BSLASHAcrlong] = ACTIONS(5217), + [anon_sym_BSLASHACRlong] = ACTIONS(5217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), + [anon_sym_BSLASHacrfull] = ACTIONS(5217), + [anon_sym_BSLASHAcrfull] = ACTIONS(5217), + [anon_sym_BSLASHACRfull] = ACTIONS(5217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), + [anon_sym_BSLASHacs] = ACTIONS(5217), + [anon_sym_BSLASHAcs] = ACTIONS(5217), + [anon_sym_BSLASHacsp] = ACTIONS(5217), + [anon_sym_BSLASHAcsp] = ACTIONS(5217), + [anon_sym_BSLASHacl] = ACTIONS(5217), + [anon_sym_BSLASHAcl] = ACTIONS(5217), + [anon_sym_BSLASHaclp] = ACTIONS(5217), + [anon_sym_BSLASHAclp] = ACTIONS(5217), + [anon_sym_BSLASHacf] = ACTIONS(5217), + [anon_sym_BSLASHAcf] = ACTIONS(5217), + [anon_sym_BSLASHacfp] = ACTIONS(5217), + [anon_sym_BSLASHAcfp] = ACTIONS(5217), + [anon_sym_BSLASHac] = ACTIONS(5217), + [anon_sym_BSLASHAc] = ACTIONS(5217), + [anon_sym_BSLASHacp] = ACTIONS(5217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), + [anon_sym_BSLASHcolor] = ACTIONS(5217), + [anon_sym_BSLASHcolorbox] = ACTIONS(5217), + [anon_sym_BSLASHtextcolor] = ACTIONS(5217), + [anon_sym_BSLASHpagecolor] = ACTIONS(5217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [anon_sym_BSLASHtext] = ACTIONS(5217), + [anon_sym_BSLASHintertext] = ACTIONS(5217), + [anon_sym_shortintertext] = ACTIONS(5217), }, - [1144] = { - [sym_command_name] = ACTIONS(5033), + [1007] = { + [sym_command_name] = ACTIONS(5225), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_BSLASHpart] = ACTIONS(5033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddpart] = ACTIONS(5033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHchapter] = ACTIONS(5033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddchap] = ACTIONS(5033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsection] = ACTIONS(5033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddsec] = ACTIONS(5033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHparagraph] = ACTIONS(5033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHitem] = ACTIONS(5033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASHbegin] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [anon_sym_BSLASHiffalse] = ACTIONS(5225), + [anon_sym_LPAREN] = ACTIONS(5223), + [anon_sym_RPAREN] = ACTIONS(5223), + [anon_sym_LBRACK] = ACTIONS(5223), + [anon_sym_RBRACK] = ACTIONS(5223), + [anon_sym_COMMA] = ACTIONS(5223), + [anon_sym_EQ] = ACTIONS(5223), + [anon_sym_BSLASHpart] = ACTIONS(5225), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddpart] = ACTIONS(5225), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), + [anon_sym_BSLASHchapter] = ACTIONS(5225), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddchap] = ACTIONS(5225), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsection] = ACTIONS(5225), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddsec] = ACTIONS(5225), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubsection] = ACTIONS(5225), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHparagraph] = ACTIONS(5225), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), + [anon_sym_BSLASHitem] = ACTIONS(5225), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), + [anon_sym_LBRACE] = ACTIONS(5223), + [sym_word] = ACTIONS(5225), + [sym_placeholder] = ACTIONS(5223), + [anon_sym_PLUS] = ACTIONS(5225), + [anon_sym_DASH] = ACTIONS(5225), + [anon_sym_STAR] = ACTIONS(5225), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_CARET] = ACTIONS(5225), + [anon_sym__] = ACTIONS(5225), + [anon_sym_LT] = ACTIONS(5225), + [anon_sym_GT] = ACTIONS(5225), + [anon_sym_BANG] = ACTIONS(5225), + [anon_sym_PIPE] = ACTIONS(5225), + [anon_sym_COLON] = ACTIONS(5225), + [anon_sym_SQUOTE] = ACTIONS(5225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5223), + [anon_sym_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), + [anon_sym_BSLASHbegin] = ACTIONS(5225), + [anon_sym_BSLASHusepackage] = ACTIONS(5225), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), + [anon_sym_BSLASHinclude] = ACTIONS(5225), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), + [anon_sym_BSLASHinput] = ACTIONS(5225), + [anon_sym_BSLASHsubfile] = ACTIONS(5225), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), + [anon_sym_BSLASHbibliography] = ACTIONS(5225), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), + [anon_sym_BSLASHincludesvg] = ACTIONS(5225), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), + [anon_sym_BSLASHimport] = ACTIONS(5225), + [anon_sym_BSLASHsubimport] = ACTIONS(5225), + [anon_sym_BSLASHinputfrom] = ACTIONS(5225), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), + [anon_sym_BSLASHincludefrom] = ACTIONS(5225), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), + [anon_sym_BSLASHcaption] = ACTIONS(5225), + [anon_sym_BSLASHcite] = ACTIONS(5225), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCite] = ACTIONS(5225), + [anon_sym_BSLASHnocite] = ACTIONS(5225), + [anon_sym_BSLASHcitet] = ACTIONS(5225), + [anon_sym_BSLASHcitep] = ACTIONS(5225), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteyear] = ACTIONS(5225), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitedate] = ACTIONS(5225), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteurl] = ACTIONS(5225), + [anon_sym_BSLASHfullcite] = ACTIONS(5225), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), + [anon_sym_BSLASHcitealt] = ACTIONS(5225), + [anon_sym_BSLASHcitealp] = ACTIONS(5225), + [anon_sym_BSLASHcitetext] = ACTIONS(5225), + [anon_sym_BSLASHparencite] = ACTIONS(5225), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHParencite] = ACTIONS(5225), + [anon_sym_BSLASHfootcite] = ACTIONS(5225), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), + [anon_sym_BSLASHtextcite] = ACTIONS(5225), + [anon_sym_BSLASHTextcite] = ACTIONS(5225), + [anon_sym_BSLASHsmartcite] = ACTIONS(5225), + [anon_sym_BSLASHSmartcite] = ACTIONS(5225), + [anon_sym_BSLASHsupercite] = ACTIONS(5225), + [anon_sym_BSLASHautocite] = ACTIONS(5225), + [anon_sym_BSLASHAutocite] = ACTIONS(5225), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHvolcite] = ACTIONS(5225), + [anon_sym_BSLASHVolcite] = ACTIONS(5225), + [anon_sym_BSLASHpvolcite] = ACTIONS(5225), + [anon_sym_BSLASHPvolcite] = ACTIONS(5225), + [anon_sym_BSLASHfvolcite] = ACTIONS(5225), + [anon_sym_BSLASHftvolcite] = ACTIONS(5225), + [anon_sym_BSLASHsvolcite] = ACTIONS(5225), + [anon_sym_BSLASHSvolcite] = ACTIONS(5225), + [anon_sym_BSLASHtvolcite] = ACTIONS(5225), + [anon_sym_BSLASHTvolcite] = ACTIONS(5225), + [anon_sym_BSLASHavolcite] = ACTIONS(5225), + [anon_sym_BSLASHAvolcite] = ACTIONS(5225), + [anon_sym_BSLASHnotecite] = ACTIONS(5225), + [anon_sym_BSLASHNotecite] = ACTIONS(5225), + [anon_sym_BSLASHpnotecite] = ACTIONS(5225), + [anon_sym_BSLASHPnotecite] = ACTIONS(5225), + [anon_sym_BSLASHfnotecite] = ACTIONS(5225), + [anon_sym_BSLASHlabel] = ACTIONS(5225), + [anon_sym_BSLASHref] = ACTIONS(5225), + [anon_sym_BSLASHeqref] = ACTIONS(5225), + [anon_sym_BSLASHvref] = ACTIONS(5225), + [anon_sym_BSLASHVref] = ACTIONS(5225), + [anon_sym_BSLASHautoref] = ACTIONS(5225), + [anon_sym_BSLASHpageref] = ACTIONS(5225), + [anon_sym_BSLASHcref] = ACTIONS(5225), + [anon_sym_BSLASHCref] = ACTIONS(5225), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), + [anon_sym_BSLASHnamecref] = ACTIONS(5225), + [anon_sym_BSLASHnameCref] = ACTIONS(5225), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), + [anon_sym_BSLASHlabelcref] = ACTIONS(5225), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), + [anon_sym_BSLASHcrefrange] = ACTIONS(5225), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), + [anon_sym_BSLASHnewlabel] = ACTIONS(5225), + [anon_sym_BSLASHnewcommand] = ACTIONS(5225), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), + [anon_sym_BSLASHdef] = ACTIONS(5225), + [anon_sym_BSLASHlet] = ACTIONS(5225), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), + [anon_sym_BSLASHgls] = ACTIONS(5225), + [anon_sym_BSLASHGls] = ACTIONS(5225), + [anon_sym_BSLASHGLS] = ACTIONS(5225), + [anon_sym_BSLASHglspl] = ACTIONS(5225), + [anon_sym_BSLASHGlspl] = ACTIONS(5225), + [anon_sym_BSLASHGLSpl] = ACTIONS(5225), + [anon_sym_BSLASHglsdisp] = ACTIONS(5225), + [anon_sym_BSLASHglslink] = ACTIONS(5225), + [anon_sym_BSLASHglstext] = ACTIONS(5225), + [anon_sym_BSLASHGlstext] = ACTIONS(5225), + [anon_sym_BSLASHGLStext] = ACTIONS(5225), + [anon_sym_BSLASHglsfirst] = ACTIONS(5225), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), + [anon_sym_BSLASHglsplural] = ACTIONS(5225), + [anon_sym_BSLASHGlsplural] = ACTIONS(5225), + [anon_sym_BSLASHGLSplural] = ACTIONS(5225), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHglsname] = ACTIONS(5225), + [anon_sym_BSLASHGlsname] = ACTIONS(5225), + [anon_sym_BSLASHGLSname] = ACTIONS(5225), + [anon_sym_BSLASHglssymbol] = ACTIONS(5225), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), + [anon_sym_BSLASHglsdesc] = ACTIONS(5225), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), + [anon_sym_BSLASHglsuseri] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), + [anon_sym_BSLASHglsuserii] = ACTIONS(5225), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), + [anon_sym_BSLASHglsuserv] = ACTIONS(5225), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), + [anon_sym_BSLASHglsuservi] = ACTIONS(5225), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), + [anon_sym_BSLASHnewacronym] = ACTIONS(5225), + [anon_sym_BSLASHacrshort] = ACTIONS(5225), + [anon_sym_BSLASHAcrshort] = ACTIONS(5225), + [anon_sym_BSLASHACRshort] = ACTIONS(5225), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), + [anon_sym_BSLASHacrlong] = ACTIONS(5225), + [anon_sym_BSLASHAcrlong] = ACTIONS(5225), + [anon_sym_BSLASHACRlong] = ACTIONS(5225), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), + [anon_sym_BSLASHacrfull] = ACTIONS(5225), + [anon_sym_BSLASHAcrfull] = ACTIONS(5225), + [anon_sym_BSLASHACRfull] = ACTIONS(5225), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), + [anon_sym_BSLASHacs] = ACTIONS(5225), + [anon_sym_BSLASHAcs] = ACTIONS(5225), + [anon_sym_BSLASHacsp] = ACTIONS(5225), + [anon_sym_BSLASHAcsp] = ACTIONS(5225), + [anon_sym_BSLASHacl] = ACTIONS(5225), + [anon_sym_BSLASHAcl] = ACTIONS(5225), + [anon_sym_BSLASHaclp] = ACTIONS(5225), + [anon_sym_BSLASHAclp] = ACTIONS(5225), + [anon_sym_BSLASHacf] = ACTIONS(5225), + [anon_sym_BSLASHAcf] = ACTIONS(5225), + [anon_sym_BSLASHacfp] = ACTIONS(5225), + [anon_sym_BSLASHAcfp] = ACTIONS(5225), + [anon_sym_BSLASHac] = ACTIONS(5225), + [anon_sym_BSLASHAc] = ACTIONS(5225), + [anon_sym_BSLASHacp] = ACTIONS(5225), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), + [anon_sym_BSLASHcolor] = ACTIONS(5225), + [anon_sym_BSLASHcolorbox] = ACTIONS(5225), + [anon_sym_BSLASHtextcolor] = ACTIONS(5225), + [anon_sym_BSLASHpagecolor] = ACTIONS(5225), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), + [anon_sym_BSLASHtext] = ACTIONS(5225), + [anon_sym_BSLASHintertext] = ACTIONS(5225), + [anon_sym_shortintertext] = ACTIONS(5225), }, - [1145] = { - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_BSLASHpart] = ACTIONS(131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddpart] = ACTIONS(131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHchapter] = ACTIONS(131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddchap] = ACTIONS(131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(129), - [anon_sym_BSLASHsection] = ACTIONS(131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddsec] = ACTIONS(131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHparagraph] = ACTIONS(131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHitem] = ACTIONS(131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_BSLASH_RBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [1008] = { + [sym_command_name] = ACTIONS(5229), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5229), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5227), + [anon_sym_LBRACK] = ACTIONS(5227), + [anon_sym_RBRACK] = ACTIONS(5227), + [anon_sym_COMMA] = ACTIONS(5227), + [anon_sym_EQ] = ACTIONS(5227), + [anon_sym_BSLASHpart] = ACTIONS(5229), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddpart] = ACTIONS(5229), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5227), + [anon_sym_BSLASHchapter] = ACTIONS(5229), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddchap] = ACTIONS(5229), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsection] = ACTIONS(5229), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddsec] = ACTIONS(5229), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubsection] = ACTIONS(5229), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHparagraph] = ACTIONS(5229), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5227), + [anon_sym_BSLASHitem] = ACTIONS(5229), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5227), + [anon_sym_LBRACE] = ACTIONS(5227), + [sym_word] = ACTIONS(5229), + [sym_placeholder] = ACTIONS(5227), + [anon_sym_PLUS] = ACTIONS(5229), + [anon_sym_DASH] = ACTIONS(5229), + [anon_sym_STAR] = ACTIONS(5229), + [anon_sym_SLASH] = ACTIONS(5229), + [anon_sym_CARET] = ACTIONS(5229), + [anon_sym__] = ACTIONS(5229), + [anon_sym_LT] = ACTIONS(5229), + [anon_sym_GT] = ACTIONS(5229), + [anon_sym_BANG] = ACTIONS(5229), + [anon_sym_PIPE] = ACTIONS(5229), + [anon_sym_COLON] = ACTIONS(5229), + [anon_sym_SQUOTE] = ACTIONS(5229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5227), + [anon_sym_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), + [anon_sym_BSLASHbegin] = ACTIONS(5229), + [anon_sym_BSLASHusepackage] = ACTIONS(5229), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), + [anon_sym_BSLASHinclude] = ACTIONS(5229), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), + [anon_sym_BSLASHinput] = ACTIONS(5229), + [anon_sym_BSLASHsubfile] = ACTIONS(5229), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), + [anon_sym_BSLASHbibliography] = ACTIONS(5229), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), + [anon_sym_BSLASHincludesvg] = ACTIONS(5229), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), + [anon_sym_BSLASHimport] = ACTIONS(5229), + [anon_sym_BSLASHsubimport] = ACTIONS(5229), + [anon_sym_BSLASHinputfrom] = ACTIONS(5229), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), + [anon_sym_BSLASHincludefrom] = ACTIONS(5229), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), + [anon_sym_BSLASHcaption] = ACTIONS(5229), + [anon_sym_BSLASHcite] = ACTIONS(5229), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCite] = ACTIONS(5229), + [anon_sym_BSLASHnocite] = ACTIONS(5229), + [anon_sym_BSLASHcitet] = ACTIONS(5229), + [anon_sym_BSLASHcitep] = ACTIONS(5229), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteyear] = ACTIONS(5229), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitedate] = ACTIONS(5229), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteurl] = ACTIONS(5229), + [anon_sym_BSLASHfullcite] = ACTIONS(5229), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), + [anon_sym_BSLASHcitealt] = ACTIONS(5229), + [anon_sym_BSLASHcitealp] = ACTIONS(5229), + [anon_sym_BSLASHcitetext] = ACTIONS(5229), + [anon_sym_BSLASHparencite] = ACTIONS(5229), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHParencite] = ACTIONS(5229), + [anon_sym_BSLASHfootcite] = ACTIONS(5229), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), + [anon_sym_BSLASHtextcite] = ACTIONS(5229), + [anon_sym_BSLASHTextcite] = ACTIONS(5229), + [anon_sym_BSLASHsmartcite] = ACTIONS(5229), + [anon_sym_BSLASHSmartcite] = ACTIONS(5229), + [anon_sym_BSLASHsupercite] = ACTIONS(5229), + [anon_sym_BSLASHautocite] = ACTIONS(5229), + [anon_sym_BSLASHAutocite] = ACTIONS(5229), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHvolcite] = ACTIONS(5229), + [anon_sym_BSLASHVolcite] = ACTIONS(5229), + [anon_sym_BSLASHpvolcite] = ACTIONS(5229), + [anon_sym_BSLASHPvolcite] = ACTIONS(5229), + [anon_sym_BSLASHfvolcite] = ACTIONS(5229), + [anon_sym_BSLASHftvolcite] = ACTIONS(5229), + [anon_sym_BSLASHsvolcite] = ACTIONS(5229), + [anon_sym_BSLASHSvolcite] = ACTIONS(5229), + [anon_sym_BSLASHtvolcite] = ACTIONS(5229), + [anon_sym_BSLASHTvolcite] = ACTIONS(5229), + [anon_sym_BSLASHavolcite] = ACTIONS(5229), + [anon_sym_BSLASHAvolcite] = ACTIONS(5229), + [anon_sym_BSLASHnotecite] = ACTIONS(5229), + [anon_sym_BSLASHNotecite] = ACTIONS(5229), + [anon_sym_BSLASHpnotecite] = ACTIONS(5229), + [anon_sym_BSLASHPnotecite] = ACTIONS(5229), + [anon_sym_BSLASHfnotecite] = ACTIONS(5229), + [anon_sym_BSLASHlabel] = ACTIONS(5229), + [anon_sym_BSLASHref] = ACTIONS(5229), + [anon_sym_BSLASHeqref] = ACTIONS(5229), + [anon_sym_BSLASHvref] = ACTIONS(5229), + [anon_sym_BSLASHVref] = ACTIONS(5229), + [anon_sym_BSLASHautoref] = ACTIONS(5229), + [anon_sym_BSLASHpageref] = ACTIONS(5229), + [anon_sym_BSLASHcref] = ACTIONS(5229), + [anon_sym_BSLASHCref] = ACTIONS(5229), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), + [anon_sym_BSLASHnamecref] = ACTIONS(5229), + [anon_sym_BSLASHnameCref] = ACTIONS(5229), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), + [anon_sym_BSLASHlabelcref] = ACTIONS(5229), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), + [anon_sym_BSLASHcrefrange] = ACTIONS(5229), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), + [anon_sym_BSLASHnewlabel] = ACTIONS(5229), + [anon_sym_BSLASHnewcommand] = ACTIONS(5229), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), + [anon_sym_BSLASHdef] = ACTIONS(5229), + [anon_sym_BSLASHlet] = ACTIONS(5229), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), + [anon_sym_BSLASHgls] = ACTIONS(5229), + [anon_sym_BSLASHGls] = ACTIONS(5229), + [anon_sym_BSLASHGLS] = ACTIONS(5229), + [anon_sym_BSLASHglspl] = ACTIONS(5229), + [anon_sym_BSLASHGlspl] = ACTIONS(5229), + [anon_sym_BSLASHGLSpl] = ACTIONS(5229), + [anon_sym_BSLASHglsdisp] = ACTIONS(5229), + [anon_sym_BSLASHglslink] = ACTIONS(5229), + [anon_sym_BSLASHglstext] = ACTIONS(5229), + [anon_sym_BSLASHGlstext] = ACTIONS(5229), + [anon_sym_BSLASHGLStext] = ACTIONS(5229), + [anon_sym_BSLASHglsfirst] = ACTIONS(5229), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), + [anon_sym_BSLASHglsplural] = ACTIONS(5229), + [anon_sym_BSLASHGlsplural] = ACTIONS(5229), + [anon_sym_BSLASHGLSplural] = ACTIONS(5229), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHglsname] = ACTIONS(5229), + [anon_sym_BSLASHGlsname] = ACTIONS(5229), + [anon_sym_BSLASHGLSname] = ACTIONS(5229), + [anon_sym_BSLASHglssymbol] = ACTIONS(5229), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), + [anon_sym_BSLASHglsdesc] = ACTIONS(5229), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), + [anon_sym_BSLASHglsuseri] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), + [anon_sym_BSLASHglsuserii] = ACTIONS(5229), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), + [anon_sym_BSLASHglsuserv] = ACTIONS(5229), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), + [anon_sym_BSLASHglsuservi] = ACTIONS(5229), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), + [anon_sym_BSLASHnewacronym] = ACTIONS(5229), + [anon_sym_BSLASHacrshort] = ACTIONS(5229), + [anon_sym_BSLASHAcrshort] = ACTIONS(5229), + [anon_sym_BSLASHACRshort] = ACTIONS(5229), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), + [anon_sym_BSLASHacrlong] = ACTIONS(5229), + [anon_sym_BSLASHAcrlong] = ACTIONS(5229), + [anon_sym_BSLASHACRlong] = ACTIONS(5229), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), + [anon_sym_BSLASHacrfull] = ACTIONS(5229), + [anon_sym_BSLASHAcrfull] = ACTIONS(5229), + [anon_sym_BSLASHACRfull] = ACTIONS(5229), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), + [anon_sym_BSLASHacs] = ACTIONS(5229), + [anon_sym_BSLASHAcs] = ACTIONS(5229), + [anon_sym_BSLASHacsp] = ACTIONS(5229), + [anon_sym_BSLASHAcsp] = ACTIONS(5229), + [anon_sym_BSLASHacl] = ACTIONS(5229), + [anon_sym_BSLASHAcl] = ACTIONS(5229), + [anon_sym_BSLASHaclp] = ACTIONS(5229), + [anon_sym_BSLASHAclp] = ACTIONS(5229), + [anon_sym_BSLASHacf] = ACTIONS(5229), + [anon_sym_BSLASHAcf] = ACTIONS(5229), + [anon_sym_BSLASHacfp] = ACTIONS(5229), + [anon_sym_BSLASHAcfp] = ACTIONS(5229), + [anon_sym_BSLASHac] = ACTIONS(5229), + [anon_sym_BSLASHAc] = ACTIONS(5229), + [anon_sym_BSLASHacp] = ACTIONS(5229), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), + [anon_sym_BSLASHcolor] = ACTIONS(5229), + [anon_sym_BSLASHcolorbox] = ACTIONS(5229), + [anon_sym_BSLASHtextcolor] = ACTIONS(5229), + [anon_sym_BSLASHpagecolor] = ACTIONS(5229), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), + [anon_sym_BSLASHtext] = ACTIONS(5229), + [anon_sym_BSLASHintertext] = ACTIONS(5229), + [anon_sym_shortintertext] = ACTIONS(5229), }, - [1146] = { - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_BSLASHpart] = ACTIONS(147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddpart] = ACTIONS(147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHchapter] = ACTIONS(147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddchap] = ACTIONS(147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(145), - [anon_sym_BSLASHsection] = ACTIONS(147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddsec] = ACTIONS(147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHparagraph] = ACTIONS(147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHitem] = ACTIONS(147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_BSLASH_RBRACK] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), + [1009] = { + [sym_command_name] = ACTIONS(5233), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5233), + [anon_sym_LPAREN] = ACTIONS(5231), + [anon_sym_RPAREN] = ACTIONS(5231), + [anon_sym_LBRACK] = ACTIONS(5231), + [anon_sym_RBRACK] = ACTIONS(5231), + [anon_sym_COMMA] = ACTIONS(5231), + [anon_sym_EQ] = ACTIONS(5231), + [anon_sym_BSLASHpart] = ACTIONS(5233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddpart] = ACTIONS(5233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5231), + [anon_sym_BSLASHchapter] = ACTIONS(5233), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddchap] = ACTIONS(5233), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsection] = ACTIONS(5233), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddsec] = ACTIONS(5233), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubsection] = ACTIONS(5233), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHparagraph] = ACTIONS(5233), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5231), + [anon_sym_BSLASHitem] = ACTIONS(5233), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5231), + [anon_sym_LBRACE] = ACTIONS(5231), + [sym_word] = ACTIONS(5233), + [sym_placeholder] = ACTIONS(5231), + [anon_sym_PLUS] = ACTIONS(5233), + [anon_sym_DASH] = ACTIONS(5233), + [anon_sym_STAR] = ACTIONS(5233), + [anon_sym_SLASH] = ACTIONS(5233), + [anon_sym_CARET] = ACTIONS(5233), + [anon_sym__] = ACTIONS(5233), + [anon_sym_LT] = ACTIONS(5233), + [anon_sym_GT] = ACTIONS(5233), + [anon_sym_BANG] = ACTIONS(5233), + [anon_sym_PIPE] = ACTIONS(5233), + [anon_sym_COLON] = ACTIONS(5233), + [anon_sym_SQUOTE] = ACTIONS(5233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5231), + [anon_sym_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), + [anon_sym_BSLASHbegin] = ACTIONS(5233), + [anon_sym_BSLASHusepackage] = ACTIONS(5233), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), + [anon_sym_BSLASHinclude] = ACTIONS(5233), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), + [anon_sym_BSLASHinput] = ACTIONS(5233), + [anon_sym_BSLASHsubfile] = ACTIONS(5233), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), + [anon_sym_BSLASHbibliography] = ACTIONS(5233), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), + [anon_sym_BSLASHincludesvg] = ACTIONS(5233), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), + [anon_sym_BSLASHimport] = ACTIONS(5233), + [anon_sym_BSLASHsubimport] = ACTIONS(5233), + [anon_sym_BSLASHinputfrom] = ACTIONS(5233), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), + [anon_sym_BSLASHincludefrom] = ACTIONS(5233), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), + [anon_sym_BSLASHcaption] = ACTIONS(5233), + [anon_sym_BSLASHcite] = ACTIONS(5233), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCite] = ACTIONS(5233), + [anon_sym_BSLASHnocite] = ACTIONS(5233), + [anon_sym_BSLASHcitet] = ACTIONS(5233), + [anon_sym_BSLASHcitep] = ACTIONS(5233), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteyear] = ACTIONS(5233), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitedate] = ACTIONS(5233), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteurl] = ACTIONS(5233), + [anon_sym_BSLASHfullcite] = ACTIONS(5233), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), + [anon_sym_BSLASHcitealt] = ACTIONS(5233), + [anon_sym_BSLASHcitealp] = ACTIONS(5233), + [anon_sym_BSLASHcitetext] = ACTIONS(5233), + [anon_sym_BSLASHparencite] = ACTIONS(5233), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHParencite] = ACTIONS(5233), + [anon_sym_BSLASHfootcite] = ACTIONS(5233), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), + [anon_sym_BSLASHtextcite] = ACTIONS(5233), + [anon_sym_BSLASHTextcite] = ACTIONS(5233), + [anon_sym_BSLASHsmartcite] = ACTIONS(5233), + [anon_sym_BSLASHSmartcite] = ACTIONS(5233), + [anon_sym_BSLASHsupercite] = ACTIONS(5233), + [anon_sym_BSLASHautocite] = ACTIONS(5233), + [anon_sym_BSLASHAutocite] = ACTIONS(5233), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHvolcite] = ACTIONS(5233), + [anon_sym_BSLASHVolcite] = ACTIONS(5233), + [anon_sym_BSLASHpvolcite] = ACTIONS(5233), + [anon_sym_BSLASHPvolcite] = ACTIONS(5233), + [anon_sym_BSLASHfvolcite] = ACTIONS(5233), + [anon_sym_BSLASHftvolcite] = ACTIONS(5233), + [anon_sym_BSLASHsvolcite] = ACTIONS(5233), + [anon_sym_BSLASHSvolcite] = ACTIONS(5233), + [anon_sym_BSLASHtvolcite] = ACTIONS(5233), + [anon_sym_BSLASHTvolcite] = ACTIONS(5233), + [anon_sym_BSLASHavolcite] = ACTIONS(5233), + [anon_sym_BSLASHAvolcite] = ACTIONS(5233), + [anon_sym_BSLASHnotecite] = ACTIONS(5233), + [anon_sym_BSLASHNotecite] = ACTIONS(5233), + [anon_sym_BSLASHpnotecite] = ACTIONS(5233), + [anon_sym_BSLASHPnotecite] = ACTIONS(5233), + [anon_sym_BSLASHfnotecite] = ACTIONS(5233), + [anon_sym_BSLASHlabel] = ACTIONS(5233), + [anon_sym_BSLASHref] = ACTIONS(5233), + [anon_sym_BSLASHeqref] = ACTIONS(5233), + [anon_sym_BSLASHvref] = ACTIONS(5233), + [anon_sym_BSLASHVref] = ACTIONS(5233), + [anon_sym_BSLASHautoref] = ACTIONS(5233), + [anon_sym_BSLASHpageref] = ACTIONS(5233), + [anon_sym_BSLASHcref] = ACTIONS(5233), + [anon_sym_BSLASHCref] = ACTIONS(5233), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), + [anon_sym_BSLASHnamecref] = ACTIONS(5233), + [anon_sym_BSLASHnameCref] = ACTIONS(5233), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), + [anon_sym_BSLASHlabelcref] = ACTIONS(5233), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), + [anon_sym_BSLASHcrefrange] = ACTIONS(5233), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), + [anon_sym_BSLASHnewlabel] = ACTIONS(5233), + [anon_sym_BSLASHnewcommand] = ACTIONS(5233), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), + [anon_sym_BSLASHdef] = ACTIONS(5233), + [anon_sym_BSLASHlet] = ACTIONS(5233), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), + [anon_sym_BSLASHgls] = ACTIONS(5233), + [anon_sym_BSLASHGls] = ACTIONS(5233), + [anon_sym_BSLASHGLS] = ACTIONS(5233), + [anon_sym_BSLASHglspl] = ACTIONS(5233), + [anon_sym_BSLASHGlspl] = ACTIONS(5233), + [anon_sym_BSLASHGLSpl] = ACTIONS(5233), + [anon_sym_BSLASHglsdisp] = ACTIONS(5233), + [anon_sym_BSLASHglslink] = ACTIONS(5233), + [anon_sym_BSLASHglstext] = ACTIONS(5233), + [anon_sym_BSLASHGlstext] = ACTIONS(5233), + [anon_sym_BSLASHGLStext] = ACTIONS(5233), + [anon_sym_BSLASHglsfirst] = ACTIONS(5233), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), + [anon_sym_BSLASHglsplural] = ACTIONS(5233), + [anon_sym_BSLASHGlsplural] = ACTIONS(5233), + [anon_sym_BSLASHGLSplural] = ACTIONS(5233), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHglsname] = ACTIONS(5233), + [anon_sym_BSLASHGlsname] = ACTIONS(5233), + [anon_sym_BSLASHGLSname] = ACTIONS(5233), + [anon_sym_BSLASHglssymbol] = ACTIONS(5233), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), + [anon_sym_BSLASHglsdesc] = ACTIONS(5233), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), + [anon_sym_BSLASHglsuseri] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), + [anon_sym_BSLASHglsuserii] = ACTIONS(5233), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), + [anon_sym_BSLASHglsuserv] = ACTIONS(5233), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), + [anon_sym_BSLASHglsuservi] = ACTIONS(5233), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), + [anon_sym_BSLASHnewacronym] = ACTIONS(5233), + [anon_sym_BSLASHacrshort] = ACTIONS(5233), + [anon_sym_BSLASHAcrshort] = ACTIONS(5233), + [anon_sym_BSLASHACRshort] = ACTIONS(5233), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), + [anon_sym_BSLASHacrlong] = ACTIONS(5233), + [anon_sym_BSLASHAcrlong] = ACTIONS(5233), + [anon_sym_BSLASHACRlong] = ACTIONS(5233), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), + [anon_sym_BSLASHacrfull] = ACTIONS(5233), + [anon_sym_BSLASHAcrfull] = ACTIONS(5233), + [anon_sym_BSLASHACRfull] = ACTIONS(5233), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), + [anon_sym_BSLASHacs] = ACTIONS(5233), + [anon_sym_BSLASHAcs] = ACTIONS(5233), + [anon_sym_BSLASHacsp] = ACTIONS(5233), + [anon_sym_BSLASHAcsp] = ACTIONS(5233), + [anon_sym_BSLASHacl] = ACTIONS(5233), + [anon_sym_BSLASHAcl] = ACTIONS(5233), + [anon_sym_BSLASHaclp] = ACTIONS(5233), + [anon_sym_BSLASHAclp] = ACTIONS(5233), + [anon_sym_BSLASHacf] = ACTIONS(5233), + [anon_sym_BSLASHAcf] = ACTIONS(5233), + [anon_sym_BSLASHacfp] = ACTIONS(5233), + [anon_sym_BSLASHAcfp] = ACTIONS(5233), + [anon_sym_BSLASHac] = ACTIONS(5233), + [anon_sym_BSLASHAc] = ACTIONS(5233), + [anon_sym_BSLASHacp] = ACTIONS(5233), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), + [anon_sym_BSLASHcolor] = ACTIONS(5233), + [anon_sym_BSLASHcolorbox] = ACTIONS(5233), + [anon_sym_BSLASHtextcolor] = ACTIONS(5233), + [anon_sym_BSLASHpagecolor] = ACTIONS(5233), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), + [anon_sym_BSLASHtext] = ACTIONS(5233), + [anon_sym_BSLASHintertext] = ACTIONS(5233), + [anon_sym_shortintertext] = ACTIONS(5233), }, - [1147] = { - [sym_command_name] = ACTIONS(5025), + [1010] = { + [sym_command_name] = ACTIONS(5237), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5237), + [anon_sym_LPAREN] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(5235), + [anon_sym_LBRACK] = ACTIONS(5235), + [anon_sym_RBRACK] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_EQ] = ACTIONS(5235), + [anon_sym_BSLASHpart] = ACTIONS(5237), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddpart] = ACTIONS(5237), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5235), + [anon_sym_BSLASHchapter] = ACTIONS(5237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddchap] = ACTIONS(5237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsection] = ACTIONS(5237), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddsec] = ACTIONS(5237), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubsection] = ACTIONS(5237), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5237), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHparagraph] = ACTIONS(5237), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5237), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5235), + [anon_sym_BSLASHitem] = ACTIONS(5237), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5235), + [anon_sym_LBRACE] = ACTIONS(5235), + [sym_word] = ACTIONS(5237), + [sym_placeholder] = ACTIONS(5235), + [anon_sym_PLUS] = ACTIONS(5237), + [anon_sym_DASH] = ACTIONS(5237), + [anon_sym_STAR] = ACTIONS(5237), + [anon_sym_SLASH] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym__] = ACTIONS(5237), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_BANG] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_COLON] = ACTIONS(5237), + [anon_sym_SQUOTE] = ACTIONS(5237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5235), + [anon_sym_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), + [anon_sym_BSLASHbegin] = ACTIONS(5237), + [anon_sym_BSLASHusepackage] = ACTIONS(5237), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), + [anon_sym_BSLASHinclude] = ACTIONS(5237), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), + [anon_sym_BSLASHinput] = ACTIONS(5237), + [anon_sym_BSLASHsubfile] = ACTIONS(5237), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), + [anon_sym_BSLASHbibliography] = ACTIONS(5237), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), + [anon_sym_BSLASHincludesvg] = ACTIONS(5237), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), + [anon_sym_BSLASHimport] = ACTIONS(5237), + [anon_sym_BSLASHsubimport] = ACTIONS(5237), + [anon_sym_BSLASHinputfrom] = ACTIONS(5237), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), + [anon_sym_BSLASHincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHcaption] = ACTIONS(5237), + [anon_sym_BSLASHcite] = ACTIONS(5237), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCite] = ACTIONS(5237), + [anon_sym_BSLASHnocite] = ACTIONS(5237), + [anon_sym_BSLASHcitet] = ACTIONS(5237), + [anon_sym_BSLASHcitep] = ACTIONS(5237), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteyear] = ACTIONS(5237), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitedate] = ACTIONS(5237), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteurl] = ACTIONS(5237), + [anon_sym_BSLASHfullcite] = ACTIONS(5237), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), + [anon_sym_BSLASHcitealt] = ACTIONS(5237), + [anon_sym_BSLASHcitealp] = ACTIONS(5237), + [anon_sym_BSLASHcitetext] = ACTIONS(5237), + [anon_sym_BSLASHparencite] = ACTIONS(5237), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHParencite] = ACTIONS(5237), + [anon_sym_BSLASHfootcite] = ACTIONS(5237), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), + [anon_sym_BSLASHtextcite] = ACTIONS(5237), + [anon_sym_BSLASHTextcite] = ACTIONS(5237), + [anon_sym_BSLASHsmartcite] = ACTIONS(5237), + [anon_sym_BSLASHSmartcite] = ACTIONS(5237), + [anon_sym_BSLASHsupercite] = ACTIONS(5237), + [anon_sym_BSLASHautocite] = ACTIONS(5237), + [anon_sym_BSLASHAutocite] = ACTIONS(5237), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHvolcite] = ACTIONS(5237), + [anon_sym_BSLASHVolcite] = ACTIONS(5237), + [anon_sym_BSLASHpvolcite] = ACTIONS(5237), + [anon_sym_BSLASHPvolcite] = ACTIONS(5237), + [anon_sym_BSLASHfvolcite] = ACTIONS(5237), + [anon_sym_BSLASHftvolcite] = ACTIONS(5237), + [anon_sym_BSLASHsvolcite] = ACTIONS(5237), + [anon_sym_BSLASHSvolcite] = ACTIONS(5237), + [anon_sym_BSLASHtvolcite] = ACTIONS(5237), + [anon_sym_BSLASHTvolcite] = ACTIONS(5237), + [anon_sym_BSLASHavolcite] = ACTIONS(5237), + [anon_sym_BSLASHAvolcite] = ACTIONS(5237), + [anon_sym_BSLASHnotecite] = ACTIONS(5237), + [anon_sym_BSLASHNotecite] = ACTIONS(5237), + [anon_sym_BSLASHpnotecite] = ACTIONS(5237), + [anon_sym_BSLASHPnotecite] = ACTIONS(5237), + [anon_sym_BSLASHfnotecite] = ACTIONS(5237), + [anon_sym_BSLASHlabel] = ACTIONS(5237), + [anon_sym_BSLASHref] = ACTIONS(5237), + [anon_sym_BSLASHeqref] = ACTIONS(5237), + [anon_sym_BSLASHvref] = ACTIONS(5237), + [anon_sym_BSLASHVref] = ACTIONS(5237), + [anon_sym_BSLASHautoref] = ACTIONS(5237), + [anon_sym_BSLASHpageref] = ACTIONS(5237), + [anon_sym_BSLASHcref] = ACTIONS(5237), + [anon_sym_BSLASHCref] = ACTIONS(5237), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnameCref] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHlabelcref] = ACTIONS(5237), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnewlabel] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), + [anon_sym_BSLASHdef] = ACTIONS(5237), + [anon_sym_BSLASHlet] = ACTIONS(5237), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), + [anon_sym_BSLASHgls] = ACTIONS(5237), + [anon_sym_BSLASHGls] = ACTIONS(5237), + [anon_sym_BSLASHGLS] = ACTIONS(5237), + [anon_sym_BSLASHglspl] = ACTIONS(5237), + [anon_sym_BSLASHGlspl] = ACTIONS(5237), + [anon_sym_BSLASHGLSpl] = ACTIONS(5237), + [anon_sym_BSLASHglsdisp] = ACTIONS(5237), + [anon_sym_BSLASHglslink] = ACTIONS(5237), + [anon_sym_BSLASHglstext] = ACTIONS(5237), + [anon_sym_BSLASHGlstext] = ACTIONS(5237), + [anon_sym_BSLASHGLStext] = ACTIONS(5237), + [anon_sym_BSLASHglsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), + [anon_sym_BSLASHglsplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSplural] = ACTIONS(5237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHglsname] = ACTIONS(5237), + [anon_sym_BSLASHGlsname] = ACTIONS(5237), + [anon_sym_BSLASHGLSname] = ACTIONS(5237), + [anon_sym_BSLASHglssymbol] = ACTIONS(5237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), + [anon_sym_BSLASHglsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), + [anon_sym_BSLASHglsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), + [anon_sym_BSLASHglsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), + [anon_sym_BSLASHglsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), + [anon_sym_BSLASHglsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), + [anon_sym_BSLASHnewacronym] = ACTIONS(5237), + [anon_sym_BSLASHacrshort] = ACTIONS(5237), + [anon_sym_BSLASHAcrshort] = ACTIONS(5237), + [anon_sym_BSLASHACRshort] = ACTIONS(5237), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), + [anon_sym_BSLASHacrlong] = ACTIONS(5237), + [anon_sym_BSLASHAcrlong] = ACTIONS(5237), + [anon_sym_BSLASHACRlong] = ACTIONS(5237), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), + [anon_sym_BSLASHacrfull] = ACTIONS(5237), + [anon_sym_BSLASHAcrfull] = ACTIONS(5237), + [anon_sym_BSLASHACRfull] = ACTIONS(5237), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), + [anon_sym_BSLASHacs] = ACTIONS(5237), + [anon_sym_BSLASHAcs] = ACTIONS(5237), + [anon_sym_BSLASHacsp] = ACTIONS(5237), + [anon_sym_BSLASHAcsp] = ACTIONS(5237), + [anon_sym_BSLASHacl] = ACTIONS(5237), + [anon_sym_BSLASHAcl] = ACTIONS(5237), + [anon_sym_BSLASHaclp] = ACTIONS(5237), + [anon_sym_BSLASHAclp] = ACTIONS(5237), + [anon_sym_BSLASHacf] = ACTIONS(5237), + [anon_sym_BSLASHAcf] = ACTIONS(5237), + [anon_sym_BSLASHacfp] = ACTIONS(5237), + [anon_sym_BSLASHAcfp] = ACTIONS(5237), + [anon_sym_BSLASHac] = ACTIONS(5237), + [anon_sym_BSLASHAc] = ACTIONS(5237), + [anon_sym_BSLASHacp] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), + [anon_sym_BSLASHcolor] = ACTIONS(5237), + [anon_sym_BSLASHcolorbox] = ACTIONS(5237), + [anon_sym_BSLASHtextcolor] = ACTIONS(5237), + [anon_sym_BSLASHpagecolor] = ACTIONS(5237), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), + [anon_sym_BSLASHtext] = ACTIONS(5237), + [anon_sym_BSLASHintertext] = ACTIONS(5237), + [anon_sym_shortintertext] = ACTIONS(5237), + }, + [1011] = { + [sym_command_name] = ACTIONS(5241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5241), + [anon_sym_LPAREN] = ACTIONS(5239), + [anon_sym_RPAREN] = ACTIONS(5239), + [anon_sym_LBRACK] = ACTIONS(5239), + [anon_sym_RBRACK] = ACTIONS(5239), + [anon_sym_COMMA] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_BSLASHpart] = ACTIONS(5241), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddpart] = ACTIONS(5241), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5239), + [anon_sym_BSLASHchapter] = ACTIONS(5241), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddchap] = ACTIONS(5241), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsection] = ACTIONS(5241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddsec] = ACTIONS(5241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubsection] = ACTIONS(5241), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5241), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHparagraph] = ACTIONS(5241), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5241), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5239), + [anon_sym_BSLASHitem] = ACTIONS(5241), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(5239), + [sym_word] = ACTIONS(5241), + [sym_placeholder] = ACTIONS(5239), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5241), + [anon_sym_CARET] = ACTIONS(5241), + [anon_sym__] = ACTIONS(5241), + [anon_sym_LT] = ACTIONS(5241), + [anon_sym_GT] = ACTIONS(5241), + [anon_sym_BANG] = ACTIONS(5241), + [anon_sym_PIPE] = ACTIONS(5241), + [anon_sym_COLON] = ACTIONS(5241), + [anon_sym_SQUOTE] = ACTIONS(5241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5239), + [anon_sym_DOLLAR] = ACTIONS(5241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), + [anon_sym_BSLASHbegin] = ACTIONS(5241), + [anon_sym_BSLASHusepackage] = ACTIONS(5241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), + [anon_sym_BSLASHinclude] = ACTIONS(5241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), + [anon_sym_BSLASHinput] = ACTIONS(5241), + [anon_sym_BSLASHsubfile] = ACTIONS(5241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), + [anon_sym_BSLASHbibliography] = ACTIONS(5241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), + [anon_sym_BSLASHincludesvg] = ACTIONS(5241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), + [anon_sym_BSLASHimport] = ACTIONS(5241), + [anon_sym_BSLASHsubimport] = ACTIONS(5241), + [anon_sym_BSLASHinputfrom] = ACTIONS(5241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), + [anon_sym_BSLASHincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHcaption] = ACTIONS(5241), + [anon_sym_BSLASHcite] = ACTIONS(5241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCite] = ACTIONS(5241), + [anon_sym_BSLASHnocite] = ACTIONS(5241), + [anon_sym_BSLASHcitet] = ACTIONS(5241), + [anon_sym_BSLASHcitep] = ACTIONS(5241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor] = ACTIONS(5241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle] = ACTIONS(5241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteyear] = ACTIONS(5241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitedate] = ACTIONS(5241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteurl] = ACTIONS(5241), + [anon_sym_BSLASHfullcite] = ACTIONS(5241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), + [anon_sym_BSLASHcitealt] = ACTIONS(5241), + [anon_sym_BSLASHcitealp] = ACTIONS(5241), + [anon_sym_BSLASHcitetext] = ACTIONS(5241), + [anon_sym_BSLASHparencite] = ACTIONS(5241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHParencite] = ACTIONS(5241), + [anon_sym_BSLASHfootcite] = ACTIONS(5241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), + [anon_sym_BSLASHtextcite] = ACTIONS(5241), + [anon_sym_BSLASHTextcite] = ACTIONS(5241), + [anon_sym_BSLASHsmartcite] = ACTIONS(5241), + [anon_sym_BSLASHSmartcite] = ACTIONS(5241), + [anon_sym_BSLASHsupercite] = ACTIONS(5241), + [anon_sym_BSLASHautocite] = ACTIONS(5241), + [anon_sym_BSLASHAutocite] = ACTIONS(5241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHvolcite] = ACTIONS(5241), + [anon_sym_BSLASHVolcite] = ACTIONS(5241), + [anon_sym_BSLASHpvolcite] = ACTIONS(5241), + [anon_sym_BSLASHPvolcite] = ACTIONS(5241), + [anon_sym_BSLASHfvolcite] = ACTIONS(5241), + [anon_sym_BSLASHftvolcite] = ACTIONS(5241), + [anon_sym_BSLASHsvolcite] = ACTIONS(5241), + [anon_sym_BSLASHSvolcite] = ACTIONS(5241), + [anon_sym_BSLASHtvolcite] = ACTIONS(5241), + [anon_sym_BSLASHTvolcite] = ACTIONS(5241), + [anon_sym_BSLASHavolcite] = ACTIONS(5241), + [anon_sym_BSLASHAvolcite] = ACTIONS(5241), + [anon_sym_BSLASHnotecite] = ACTIONS(5241), + [anon_sym_BSLASHNotecite] = ACTIONS(5241), + [anon_sym_BSLASHpnotecite] = ACTIONS(5241), + [anon_sym_BSLASHPnotecite] = ACTIONS(5241), + [anon_sym_BSLASHfnotecite] = ACTIONS(5241), + [anon_sym_BSLASHlabel] = ACTIONS(5241), + [anon_sym_BSLASHref] = ACTIONS(5241), + [anon_sym_BSLASHeqref] = ACTIONS(5241), + [anon_sym_BSLASHvref] = ACTIONS(5241), + [anon_sym_BSLASHVref] = ACTIONS(5241), + [anon_sym_BSLASHautoref] = ACTIONS(5241), + [anon_sym_BSLASHpageref] = ACTIONS(5241), + [anon_sym_BSLASHcref] = ACTIONS(5241), + [anon_sym_BSLASHCref] = ACTIONS(5241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnameCref] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHlabelcref] = ACTIONS(5241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange] = ACTIONS(5241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnewlabel] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), + [anon_sym_BSLASHdef] = ACTIONS(5241), + [anon_sym_BSLASHlet] = ACTIONS(5241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), + [anon_sym_BSLASHgls] = ACTIONS(5241), + [anon_sym_BSLASHGls] = ACTIONS(5241), + [anon_sym_BSLASHGLS] = ACTIONS(5241), + [anon_sym_BSLASHglspl] = ACTIONS(5241), + [anon_sym_BSLASHGlspl] = ACTIONS(5241), + [anon_sym_BSLASHGLSpl] = ACTIONS(5241), + [anon_sym_BSLASHglsdisp] = ACTIONS(5241), + [anon_sym_BSLASHglslink] = ACTIONS(5241), + [anon_sym_BSLASHglstext] = ACTIONS(5241), + [anon_sym_BSLASHGlstext] = ACTIONS(5241), + [anon_sym_BSLASHGLStext] = ACTIONS(5241), + [anon_sym_BSLASHglsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), + [anon_sym_BSLASHglsplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSplural] = ACTIONS(5241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHglsname] = ACTIONS(5241), + [anon_sym_BSLASHGlsname] = ACTIONS(5241), + [anon_sym_BSLASHGLSname] = ACTIONS(5241), + [anon_sym_BSLASHglssymbol] = ACTIONS(5241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), + [anon_sym_BSLASHglsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), + [anon_sym_BSLASHglsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), + [anon_sym_BSLASHglsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), + [anon_sym_BSLASHglsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), + [anon_sym_BSLASHglsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), + [anon_sym_BSLASHnewacronym] = ACTIONS(5241), + [anon_sym_BSLASHacrshort] = ACTIONS(5241), + [anon_sym_BSLASHAcrshort] = ACTIONS(5241), + [anon_sym_BSLASHACRshort] = ACTIONS(5241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), + [anon_sym_BSLASHacrlong] = ACTIONS(5241), + [anon_sym_BSLASHAcrlong] = ACTIONS(5241), + [anon_sym_BSLASHACRlong] = ACTIONS(5241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), + [anon_sym_BSLASHacrfull] = ACTIONS(5241), + [anon_sym_BSLASHAcrfull] = ACTIONS(5241), + [anon_sym_BSLASHACRfull] = ACTIONS(5241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), + [anon_sym_BSLASHacs] = ACTIONS(5241), + [anon_sym_BSLASHAcs] = ACTIONS(5241), + [anon_sym_BSLASHacsp] = ACTIONS(5241), + [anon_sym_BSLASHAcsp] = ACTIONS(5241), + [anon_sym_BSLASHacl] = ACTIONS(5241), + [anon_sym_BSLASHAcl] = ACTIONS(5241), + [anon_sym_BSLASHaclp] = ACTIONS(5241), + [anon_sym_BSLASHAclp] = ACTIONS(5241), + [anon_sym_BSLASHacf] = ACTIONS(5241), + [anon_sym_BSLASHAcf] = ACTIONS(5241), + [anon_sym_BSLASHacfp] = ACTIONS(5241), + [anon_sym_BSLASHAcfp] = ACTIONS(5241), + [anon_sym_BSLASHac] = ACTIONS(5241), + [anon_sym_BSLASHAc] = ACTIONS(5241), + [anon_sym_BSLASHacp] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), + [anon_sym_BSLASHcolor] = ACTIONS(5241), + [anon_sym_BSLASHcolorbox] = ACTIONS(5241), + [anon_sym_BSLASHtextcolor] = ACTIONS(5241), + [anon_sym_BSLASHpagecolor] = ACTIONS(5241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), + [anon_sym_BSLASHtext] = ACTIONS(5241), + [anon_sym_BSLASHintertext] = ACTIONS(5241), + [anon_sym_shortintertext] = ACTIONS(5241), + }, + [1012] = { + [sym_command_name] = ACTIONS(5245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5243), + [anon_sym_RPAREN] = ACTIONS(5243), + [anon_sym_LBRACK] = ACTIONS(5243), + [anon_sym_RBRACK] = ACTIONS(5243), + [anon_sym_COMMA] = ACTIONS(5243), + [anon_sym_EQ] = ACTIONS(5243), + [anon_sym_BSLASHpart] = ACTIONS(5245), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddpart] = ACTIONS(5245), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5243), + [anon_sym_BSLASHchapter] = ACTIONS(5245), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddchap] = ACTIONS(5245), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsection] = ACTIONS(5245), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddsec] = ACTIONS(5245), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubsection] = ACTIONS(5245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5245), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHparagraph] = ACTIONS(5245), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5245), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5243), + [anon_sym_BSLASHitem] = ACTIONS(5245), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5243), + [anon_sym_LBRACE] = ACTIONS(5243), + [sym_word] = ACTIONS(5245), + [sym_placeholder] = ACTIONS(5243), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_STAR] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5245), + [anon_sym_CARET] = ACTIONS(5245), + [anon_sym__] = ACTIONS(5245), + [anon_sym_LT] = ACTIONS(5245), + [anon_sym_GT] = ACTIONS(5245), + [anon_sym_BANG] = ACTIONS(5245), + [anon_sym_PIPE] = ACTIONS(5245), + [anon_sym_COLON] = ACTIONS(5245), + [anon_sym_SQUOTE] = ACTIONS(5245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5243), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5243), + [anon_sym_DOLLAR] = ACTIONS(5245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5243), + [anon_sym_BSLASHbegin] = ACTIONS(5245), + [anon_sym_BSLASHusepackage] = ACTIONS(5245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), + [anon_sym_BSLASHinclude] = ACTIONS(5245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), + [anon_sym_BSLASHinput] = ACTIONS(5245), + [anon_sym_BSLASHsubfile] = ACTIONS(5245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), + [anon_sym_BSLASHbibliography] = ACTIONS(5245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), + [anon_sym_BSLASHincludesvg] = ACTIONS(5245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), + [anon_sym_BSLASHimport] = ACTIONS(5245), + [anon_sym_BSLASHsubimport] = ACTIONS(5245), + [anon_sym_BSLASHinputfrom] = ACTIONS(5245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), + [anon_sym_BSLASHincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHcaption] = ACTIONS(5245), + [anon_sym_BSLASHcite] = ACTIONS(5245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCite] = ACTIONS(5245), + [anon_sym_BSLASHnocite] = ACTIONS(5245), + [anon_sym_BSLASHcitet] = ACTIONS(5245), + [anon_sym_BSLASHcitep] = ACTIONS(5245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteauthor] = ACTIONS(5245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitetitle] = ACTIONS(5245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteyear] = ACTIONS(5245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitedate] = ACTIONS(5245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteurl] = ACTIONS(5245), + [anon_sym_BSLASHfullcite] = ACTIONS(5245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), + [anon_sym_BSLASHcitealt] = ACTIONS(5245), + [anon_sym_BSLASHcitealp] = ACTIONS(5245), + [anon_sym_BSLASHcitetext] = ACTIONS(5245), + [anon_sym_BSLASHparencite] = ACTIONS(5245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHParencite] = ACTIONS(5245), + [anon_sym_BSLASHfootcite] = ACTIONS(5245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), + [anon_sym_BSLASHtextcite] = ACTIONS(5245), + [anon_sym_BSLASHTextcite] = ACTIONS(5245), + [anon_sym_BSLASHsmartcite] = ACTIONS(5245), + [anon_sym_BSLASHSmartcite] = ACTIONS(5245), + [anon_sym_BSLASHsupercite] = ACTIONS(5245), + [anon_sym_BSLASHautocite] = ACTIONS(5245), + [anon_sym_BSLASHAutocite] = ACTIONS(5245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHvolcite] = ACTIONS(5245), + [anon_sym_BSLASHVolcite] = ACTIONS(5245), + [anon_sym_BSLASHpvolcite] = ACTIONS(5245), + [anon_sym_BSLASHPvolcite] = ACTIONS(5245), + [anon_sym_BSLASHfvolcite] = ACTIONS(5245), + [anon_sym_BSLASHftvolcite] = ACTIONS(5245), + [anon_sym_BSLASHsvolcite] = ACTIONS(5245), + [anon_sym_BSLASHSvolcite] = ACTIONS(5245), + [anon_sym_BSLASHtvolcite] = ACTIONS(5245), + [anon_sym_BSLASHTvolcite] = ACTIONS(5245), + [anon_sym_BSLASHavolcite] = ACTIONS(5245), + [anon_sym_BSLASHAvolcite] = ACTIONS(5245), + [anon_sym_BSLASHnotecite] = ACTIONS(5245), + [anon_sym_BSLASHNotecite] = ACTIONS(5245), + [anon_sym_BSLASHpnotecite] = ACTIONS(5245), + [anon_sym_BSLASHPnotecite] = ACTIONS(5245), + [anon_sym_BSLASHfnotecite] = ACTIONS(5245), + [anon_sym_BSLASHlabel] = ACTIONS(5245), + [anon_sym_BSLASHref] = ACTIONS(5245), + [anon_sym_BSLASHeqref] = ACTIONS(5245), + [anon_sym_BSLASHvref] = ACTIONS(5245), + [anon_sym_BSLASHVref] = ACTIONS(5245), + [anon_sym_BSLASHautoref] = ACTIONS(5245), + [anon_sym_BSLASHpageref] = ACTIONS(5245), + [anon_sym_BSLASHcref] = ACTIONS(5245), + [anon_sym_BSLASHCref] = ACTIONS(5245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnameCref] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHlabelcref] = ACTIONS(5245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCrefrange] = ACTIONS(5245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnewlabel] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), + [anon_sym_BSLASHdef] = ACTIONS(5245), + [anon_sym_BSLASHlet] = ACTIONS(5245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), + [anon_sym_BSLASHgls] = ACTIONS(5245), + [anon_sym_BSLASHGls] = ACTIONS(5245), + [anon_sym_BSLASHGLS] = ACTIONS(5245), + [anon_sym_BSLASHglspl] = ACTIONS(5245), + [anon_sym_BSLASHGlspl] = ACTIONS(5245), + [anon_sym_BSLASHGLSpl] = ACTIONS(5245), + [anon_sym_BSLASHglsdisp] = ACTIONS(5245), + [anon_sym_BSLASHglslink] = ACTIONS(5245), + [anon_sym_BSLASHglstext] = ACTIONS(5245), + [anon_sym_BSLASHGlstext] = ACTIONS(5245), + [anon_sym_BSLASHGLStext] = ACTIONS(5245), + [anon_sym_BSLASHglsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), + [anon_sym_BSLASHglsplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSplural] = ACTIONS(5245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHglsname] = ACTIONS(5245), + [anon_sym_BSLASHGlsname] = ACTIONS(5245), + [anon_sym_BSLASHGLSname] = ACTIONS(5245), + [anon_sym_BSLASHglssymbol] = ACTIONS(5245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), + [anon_sym_BSLASHglsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), + [anon_sym_BSLASHglsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), + [anon_sym_BSLASHglsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), + [anon_sym_BSLASHglsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), + [anon_sym_BSLASHglsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), + [anon_sym_BSLASHnewacronym] = ACTIONS(5245), + [anon_sym_BSLASHacrshort] = ACTIONS(5245), + [anon_sym_BSLASHAcrshort] = ACTIONS(5245), + [anon_sym_BSLASHACRshort] = ACTIONS(5245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), + [anon_sym_BSLASHacrlong] = ACTIONS(5245), + [anon_sym_BSLASHAcrlong] = ACTIONS(5245), + [anon_sym_BSLASHACRlong] = ACTIONS(5245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), + [anon_sym_BSLASHacrfull] = ACTIONS(5245), + [anon_sym_BSLASHAcrfull] = ACTIONS(5245), + [anon_sym_BSLASHACRfull] = ACTIONS(5245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), + [anon_sym_BSLASHacs] = ACTIONS(5245), + [anon_sym_BSLASHAcs] = ACTIONS(5245), + [anon_sym_BSLASHacsp] = ACTIONS(5245), + [anon_sym_BSLASHAcsp] = ACTIONS(5245), + [anon_sym_BSLASHacl] = ACTIONS(5245), + [anon_sym_BSLASHAcl] = ACTIONS(5245), + [anon_sym_BSLASHaclp] = ACTIONS(5245), + [anon_sym_BSLASHAclp] = ACTIONS(5245), + [anon_sym_BSLASHacf] = ACTIONS(5245), + [anon_sym_BSLASHAcf] = ACTIONS(5245), + [anon_sym_BSLASHacfp] = ACTIONS(5245), + [anon_sym_BSLASHAcfp] = ACTIONS(5245), + [anon_sym_BSLASHac] = ACTIONS(5245), + [anon_sym_BSLASHAc] = ACTIONS(5245), + [anon_sym_BSLASHacp] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), + [anon_sym_BSLASHcolor] = ACTIONS(5245), + [anon_sym_BSLASHcolorbox] = ACTIONS(5245), + [anon_sym_BSLASHtextcolor] = ACTIONS(5245), + [anon_sym_BSLASHpagecolor] = ACTIONS(5245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), + [anon_sym_BSLASHtext] = ACTIONS(5245), + [anon_sym_BSLASHintertext] = ACTIONS(5245), + [anon_sym_shortintertext] = ACTIONS(5245), + }, + [1013] = { + [sym_command_name] = ACTIONS(5249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5249), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5247), + [anon_sym_LBRACK] = ACTIONS(5247), + [anon_sym_RBRACK] = ACTIONS(5247), + [anon_sym_COMMA] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_BSLASHpart] = ACTIONS(5249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddpart] = ACTIONS(5249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHchapter] = ACTIONS(5249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddchap] = ACTIONS(5249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsection] = ACTIONS(5249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddsec] = ACTIONS(5249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHparagraph] = ACTIONS(5249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHitem] = ACTIONS(5249), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5247), + [anon_sym_LBRACE] = ACTIONS(5247), + [sym_word] = ACTIONS(5249), + [sym_placeholder] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5249), + [anon_sym_STAR] = ACTIONS(5249), + [anon_sym_SLASH] = ACTIONS(5249), + [anon_sym_CARET] = ACTIONS(5249), + [anon_sym__] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(5249), + [anon_sym_GT] = ACTIONS(5249), + [anon_sym_BANG] = ACTIONS(5249), + [anon_sym_PIPE] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_SQUOTE] = ACTIONS(5249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5247), + [anon_sym_DOLLAR] = ACTIONS(5249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), + [anon_sym_BSLASHbegin] = ACTIONS(5249), + [anon_sym_BSLASHusepackage] = ACTIONS(5249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), + [anon_sym_BSLASHinclude] = ACTIONS(5249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), + [anon_sym_BSLASHinput] = ACTIONS(5249), + [anon_sym_BSLASHsubfile] = ACTIONS(5249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), + [anon_sym_BSLASHbibliography] = ACTIONS(5249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), + [anon_sym_BSLASHincludesvg] = ACTIONS(5249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), + [anon_sym_BSLASHimport] = ACTIONS(5249), + [anon_sym_BSLASHsubimport] = ACTIONS(5249), + [anon_sym_BSLASHinputfrom] = ACTIONS(5249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), + [anon_sym_BSLASHincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHcaption] = ACTIONS(5249), + [anon_sym_BSLASHcite] = ACTIONS(5249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCite] = ACTIONS(5249), + [anon_sym_BSLASHnocite] = ACTIONS(5249), + [anon_sym_BSLASHcitet] = ACTIONS(5249), + [anon_sym_BSLASHcitep] = ACTIONS(5249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteauthor] = ACTIONS(5249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitetitle] = ACTIONS(5249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteyear] = ACTIONS(5249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitedate] = ACTIONS(5249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteurl] = ACTIONS(5249), + [anon_sym_BSLASHfullcite] = ACTIONS(5249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), + [anon_sym_BSLASHcitealt] = ACTIONS(5249), + [anon_sym_BSLASHcitealp] = ACTIONS(5249), + [anon_sym_BSLASHcitetext] = ACTIONS(5249), + [anon_sym_BSLASHparencite] = ACTIONS(5249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHParencite] = ACTIONS(5249), + [anon_sym_BSLASHfootcite] = ACTIONS(5249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), + [anon_sym_BSLASHtextcite] = ACTIONS(5249), + [anon_sym_BSLASHTextcite] = ACTIONS(5249), + [anon_sym_BSLASHsmartcite] = ACTIONS(5249), + [anon_sym_BSLASHSmartcite] = ACTIONS(5249), + [anon_sym_BSLASHsupercite] = ACTIONS(5249), + [anon_sym_BSLASHautocite] = ACTIONS(5249), + [anon_sym_BSLASHAutocite] = ACTIONS(5249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHvolcite] = ACTIONS(5249), + [anon_sym_BSLASHVolcite] = ACTIONS(5249), + [anon_sym_BSLASHpvolcite] = ACTIONS(5249), + [anon_sym_BSLASHPvolcite] = ACTIONS(5249), + [anon_sym_BSLASHfvolcite] = ACTIONS(5249), + [anon_sym_BSLASHftvolcite] = ACTIONS(5249), + [anon_sym_BSLASHsvolcite] = ACTIONS(5249), + [anon_sym_BSLASHSvolcite] = ACTIONS(5249), + [anon_sym_BSLASHtvolcite] = ACTIONS(5249), + [anon_sym_BSLASHTvolcite] = ACTIONS(5249), + [anon_sym_BSLASHavolcite] = ACTIONS(5249), + [anon_sym_BSLASHAvolcite] = ACTIONS(5249), + [anon_sym_BSLASHnotecite] = ACTIONS(5249), + [anon_sym_BSLASHNotecite] = ACTIONS(5249), + [anon_sym_BSLASHpnotecite] = ACTIONS(5249), + [anon_sym_BSLASHPnotecite] = ACTIONS(5249), + [anon_sym_BSLASHfnotecite] = ACTIONS(5249), + [anon_sym_BSLASHlabel] = ACTIONS(5249), + [anon_sym_BSLASHref] = ACTIONS(5249), + [anon_sym_BSLASHeqref] = ACTIONS(5249), + [anon_sym_BSLASHvref] = ACTIONS(5249), + [anon_sym_BSLASHVref] = ACTIONS(5249), + [anon_sym_BSLASHautoref] = ACTIONS(5249), + [anon_sym_BSLASHpageref] = ACTIONS(5249), + [anon_sym_BSLASHcref] = ACTIONS(5249), + [anon_sym_BSLASHCref] = ACTIONS(5249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnameCref] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHlabelcref] = ACTIONS(5249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + [anon_sym_BSLASHtext] = ACTIONS(5249), + [anon_sym_BSLASHintertext] = ACTIONS(5249), + [anon_sym_shortintertext] = ACTIONS(5249), + }, + [1014] = { + [sym_command_name] = ACTIONS(5253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5253), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(5251), + [anon_sym_LBRACK] = ACTIONS(5251), + [anon_sym_RBRACK] = ACTIONS(5251), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_BSLASHpart] = ACTIONS(5253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddpart] = ACTIONS(5253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHchapter] = ACTIONS(5253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddchap] = ACTIONS(5253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsection] = ACTIONS(5253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddsec] = ACTIONS(5253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHparagraph] = ACTIONS(5253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHitem] = ACTIONS(5253), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5251), + [sym_word] = ACTIONS(5253), + [sym_placeholder] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5253), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym__] = ACTIONS(5253), + [anon_sym_LT] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5253), + [anon_sym_BANG] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_SQUOTE] = ACTIONS(5253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5251), + [anon_sym_DOLLAR] = ACTIONS(5253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), + [anon_sym_BSLASHbegin] = ACTIONS(5253), + [anon_sym_BSLASHusepackage] = ACTIONS(5253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHinclude] = ACTIONS(5253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), + [anon_sym_BSLASHinput] = ACTIONS(5253), + [anon_sym_BSLASHsubfile] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), + [anon_sym_BSLASHbibliography] = ACTIONS(5253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), + [anon_sym_BSLASHincludesvg] = ACTIONS(5253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), + [anon_sym_BSLASHimport] = ACTIONS(5253), + [anon_sym_BSLASHsubimport] = ACTIONS(5253), + [anon_sym_BSLASHinputfrom] = ACTIONS(5253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), + [anon_sym_BSLASHincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHcaption] = ACTIONS(5253), + [anon_sym_BSLASHcite] = ACTIONS(5253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCite] = ACTIONS(5253), + [anon_sym_BSLASHnocite] = ACTIONS(5253), + [anon_sym_BSLASHcitet] = ACTIONS(5253), + [anon_sym_BSLASHcitep] = ACTIONS(5253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteauthor] = ACTIONS(5253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitetitle] = ACTIONS(5253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteyear] = ACTIONS(5253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitedate] = ACTIONS(5253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteurl] = ACTIONS(5253), + [anon_sym_BSLASHfullcite] = ACTIONS(5253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), + [anon_sym_BSLASHcitealt] = ACTIONS(5253), + [anon_sym_BSLASHcitealp] = ACTIONS(5253), + [anon_sym_BSLASHcitetext] = ACTIONS(5253), + [anon_sym_BSLASHparencite] = ACTIONS(5253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHParencite] = ACTIONS(5253), + [anon_sym_BSLASHfootcite] = ACTIONS(5253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), + [anon_sym_BSLASHtextcite] = ACTIONS(5253), + [anon_sym_BSLASHTextcite] = ACTIONS(5253), + [anon_sym_BSLASHsmartcite] = ACTIONS(5253), + [anon_sym_BSLASHSmartcite] = ACTIONS(5253), + [anon_sym_BSLASHsupercite] = ACTIONS(5253), + [anon_sym_BSLASHautocite] = ACTIONS(5253), + [anon_sym_BSLASHAutocite] = ACTIONS(5253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHvolcite] = ACTIONS(5253), + [anon_sym_BSLASHVolcite] = ACTIONS(5253), + [anon_sym_BSLASHpvolcite] = ACTIONS(5253), + [anon_sym_BSLASHPvolcite] = ACTIONS(5253), + [anon_sym_BSLASHfvolcite] = ACTIONS(5253), + [anon_sym_BSLASHftvolcite] = ACTIONS(5253), + [anon_sym_BSLASHsvolcite] = ACTIONS(5253), + [anon_sym_BSLASHSvolcite] = ACTIONS(5253), + [anon_sym_BSLASHtvolcite] = ACTIONS(5253), + [anon_sym_BSLASHTvolcite] = ACTIONS(5253), + [anon_sym_BSLASHavolcite] = ACTIONS(5253), + [anon_sym_BSLASHAvolcite] = ACTIONS(5253), + [anon_sym_BSLASHnotecite] = ACTIONS(5253), + [anon_sym_BSLASHNotecite] = ACTIONS(5253), + [anon_sym_BSLASHpnotecite] = ACTIONS(5253), + [anon_sym_BSLASHPnotecite] = ACTIONS(5253), + [anon_sym_BSLASHfnotecite] = ACTIONS(5253), + [anon_sym_BSLASHlabel] = ACTIONS(5253), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCrefrange] = ACTIONS(5253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnewlabel] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdef] = ACTIONS(5253), + [anon_sym_BSLASHlet] = ACTIONS(5253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), + [anon_sym_BSLASHgls] = ACTIONS(5253), + [anon_sym_BSLASHGls] = ACTIONS(5253), + [anon_sym_BSLASHGLS] = ACTIONS(5253), + [anon_sym_BSLASHglspl] = ACTIONS(5253), + [anon_sym_BSLASHGlspl] = ACTIONS(5253), + [anon_sym_BSLASHGLSpl] = ACTIONS(5253), + [anon_sym_BSLASHglsdisp] = ACTIONS(5253), + [anon_sym_BSLASHglslink] = ACTIONS(5253), + [anon_sym_BSLASHglstext] = ACTIONS(5253), + [anon_sym_BSLASHGlstext] = ACTIONS(5253), + [anon_sym_BSLASHGLStext] = ACTIONS(5253), + [anon_sym_BSLASHglsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), + [anon_sym_BSLASHglsplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSplural] = ACTIONS(5253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHglsname] = ACTIONS(5253), + [anon_sym_BSLASHGlsname] = ACTIONS(5253), + [anon_sym_BSLASHGLSname] = ACTIONS(5253), + [anon_sym_BSLASHglssymbol] = ACTIONS(5253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), + [anon_sym_BSLASHglsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), + [anon_sym_BSLASHglsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), + [anon_sym_BSLASHglsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), + [anon_sym_BSLASHglsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), + [anon_sym_BSLASHglsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), + [anon_sym_BSLASHnewacronym] = ACTIONS(5253), + [anon_sym_BSLASHacrshort] = ACTIONS(5253), + [anon_sym_BSLASHAcrshort] = ACTIONS(5253), + [anon_sym_BSLASHACRshort] = ACTIONS(5253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), + [anon_sym_BSLASHacrlong] = ACTIONS(5253), + [anon_sym_BSLASHAcrlong] = ACTIONS(5253), + [anon_sym_BSLASHACRlong] = ACTIONS(5253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), + [anon_sym_BSLASHacrfull] = ACTIONS(5253), + [anon_sym_BSLASHAcrfull] = ACTIONS(5253), + [anon_sym_BSLASHACRfull] = ACTIONS(5253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), + [anon_sym_BSLASHacs] = ACTIONS(5253), + [anon_sym_BSLASHAcs] = ACTIONS(5253), + [anon_sym_BSLASHacsp] = ACTIONS(5253), + [anon_sym_BSLASHAcsp] = ACTIONS(5253), + [anon_sym_BSLASHacl] = ACTIONS(5253), + [anon_sym_BSLASHAcl] = ACTIONS(5253), + [anon_sym_BSLASHaclp] = ACTIONS(5253), + [anon_sym_BSLASHAclp] = ACTIONS(5253), + [anon_sym_BSLASHacf] = ACTIONS(5253), + [anon_sym_BSLASHAcf] = ACTIONS(5253), + [anon_sym_BSLASHacfp] = ACTIONS(5253), + [anon_sym_BSLASHAcfp] = ACTIONS(5253), + [anon_sym_BSLASHac] = ACTIONS(5253), + [anon_sym_BSLASHAc] = ACTIONS(5253), + [anon_sym_BSLASHacp] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), + [anon_sym_BSLASHcolor] = ACTIONS(5253), + [anon_sym_BSLASHcolorbox] = ACTIONS(5253), + [anon_sym_BSLASHtextcolor] = ACTIONS(5253), + [anon_sym_BSLASHpagecolor] = ACTIONS(5253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), + [anon_sym_BSLASHtext] = ACTIONS(5253), + [anon_sym_BSLASHintertext] = ACTIONS(5253), + [anon_sym_shortintertext] = ACTIONS(5253), + }, + [1015] = { + [sym_command_name] = ACTIONS(5257), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5257), + [anon_sym_LPAREN] = ACTIONS(5255), + [anon_sym_RPAREN] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_RBRACK] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_BSLASHpart] = ACTIONS(5257), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddpart] = ACTIONS(5257), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5255), + [anon_sym_BSLASHchapter] = ACTIONS(5257), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddchap] = ACTIONS(5257), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsection] = ACTIONS(5257), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddsec] = ACTIONS(5257), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubsection] = ACTIONS(5257), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5257), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHparagraph] = ACTIONS(5257), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5255), + [anon_sym_BSLASHitem] = ACTIONS(5257), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(5255), + [sym_word] = ACTIONS(5257), + [sym_placeholder] = ACTIONS(5255), + [anon_sym_PLUS] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(5257), + [anon_sym_STAR] = ACTIONS(5257), + [anon_sym_SLASH] = ACTIONS(5257), + [anon_sym_CARET] = ACTIONS(5257), + [anon_sym__] = ACTIONS(5257), + [anon_sym_LT] = ACTIONS(5257), + [anon_sym_GT] = ACTIONS(5257), + [anon_sym_BANG] = ACTIONS(5257), + [anon_sym_PIPE] = ACTIONS(5257), + [anon_sym_COLON] = ACTIONS(5257), + [anon_sym_SQUOTE] = ACTIONS(5257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5255), + [anon_sym_DOLLAR] = ACTIONS(5257), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), + [anon_sym_BSLASHbegin] = ACTIONS(5257), + [anon_sym_BSLASHusepackage] = ACTIONS(5257), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), + [anon_sym_BSLASHinclude] = ACTIONS(5257), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), + [anon_sym_BSLASHinput] = ACTIONS(5257), + [anon_sym_BSLASHsubfile] = ACTIONS(5257), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), + [anon_sym_BSLASHbibliography] = ACTIONS(5257), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), + [anon_sym_BSLASHincludesvg] = ACTIONS(5257), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), + [anon_sym_BSLASHimport] = ACTIONS(5257), + [anon_sym_BSLASHsubimport] = ACTIONS(5257), + [anon_sym_BSLASHinputfrom] = ACTIONS(5257), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), + [anon_sym_BSLASHincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHcaption] = ACTIONS(5257), + [anon_sym_BSLASHcite] = ACTIONS(5257), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCite] = ACTIONS(5257), + [anon_sym_BSLASHnocite] = ACTIONS(5257), + [anon_sym_BSLASHcitet] = ACTIONS(5257), + [anon_sym_BSLASHcitep] = ACTIONS(5257), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteauthor] = ACTIONS(5257), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitetitle] = ACTIONS(5257), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteyear] = ACTIONS(5257), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitedate] = ACTIONS(5257), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteurl] = ACTIONS(5257), + [anon_sym_BSLASHfullcite] = ACTIONS(5257), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), + [anon_sym_BSLASHcitealt] = ACTIONS(5257), + [anon_sym_BSLASHcitealp] = ACTIONS(5257), + [anon_sym_BSLASHcitetext] = ACTIONS(5257), + [anon_sym_BSLASHparencite] = ACTIONS(5257), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHParencite] = ACTIONS(5257), + [anon_sym_BSLASHfootcite] = ACTIONS(5257), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), + [anon_sym_BSLASHtextcite] = ACTIONS(5257), + [anon_sym_BSLASHTextcite] = ACTIONS(5257), + [anon_sym_BSLASHsmartcite] = ACTIONS(5257), + [anon_sym_BSLASHSmartcite] = ACTIONS(5257), + [anon_sym_BSLASHsupercite] = ACTIONS(5257), + [anon_sym_BSLASHautocite] = ACTIONS(5257), + [anon_sym_BSLASHAutocite] = ACTIONS(5257), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHvolcite] = ACTIONS(5257), + [anon_sym_BSLASHVolcite] = ACTIONS(5257), + [anon_sym_BSLASHpvolcite] = ACTIONS(5257), + [anon_sym_BSLASHPvolcite] = ACTIONS(5257), + [anon_sym_BSLASHfvolcite] = ACTIONS(5257), + [anon_sym_BSLASHftvolcite] = ACTIONS(5257), + [anon_sym_BSLASHsvolcite] = ACTIONS(5257), + [anon_sym_BSLASHSvolcite] = ACTIONS(5257), + [anon_sym_BSLASHtvolcite] = ACTIONS(5257), + [anon_sym_BSLASHTvolcite] = ACTIONS(5257), + [anon_sym_BSLASHavolcite] = ACTIONS(5257), + [anon_sym_BSLASHAvolcite] = ACTIONS(5257), + [anon_sym_BSLASHnotecite] = ACTIONS(5257), + [anon_sym_BSLASHNotecite] = ACTIONS(5257), + [anon_sym_BSLASHpnotecite] = ACTIONS(5257), + [anon_sym_BSLASHPnotecite] = ACTIONS(5257), + [anon_sym_BSLASHfnotecite] = ACTIONS(5257), + [anon_sym_BSLASHlabel] = ACTIONS(5257), + [anon_sym_BSLASHref] = ACTIONS(5257), + [anon_sym_BSLASHeqref] = ACTIONS(5257), + [anon_sym_BSLASHvref] = ACTIONS(5257), + [anon_sym_BSLASHVref] = ACTIONS(5257), + [anon_sym_BSLASHautoref] = ACTIONS(5257), + [anon_sym_BSLASHpageref] = ACTIONS(5257), + [anon_sym_BSLASHcref] = ACTIONS(5257), + [anon_sym_BSLASHCref] = ACTIONS(5257), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnameCref] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHlabelcref] = ACTIONS(5257), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCrefrange] = ACTIONS(5257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnewlabel] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), + [anon_sym_BSLASHdef] = ACTIONS(5257), + [anon_sym_BSLASHlet] = ACTIONS(5257), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), + [anon_sym_BSLASHgls] = ACTIONS(5257), + [anon_sym_BSLASHGls] = ACTIONS(5257), + [anon_sym_BSLASHGLS] = ACTIONS(5257), + [anon_sym_BSLASHglspl] = ACTIONS(5257), + [anon_sym_BSLASHGlspl] = ACTIONS(5257), + [anon_sym_BSLASHGLSpl] = ACTIONS(5257), + [anon_sym_BSLASHglsdisp] = ACTIONS(5257), + [anon_sym_BSLASHglslink] = ACTIONS(5257), + [anon_sym_BSLASHglstext] = ACTIONS(5257), + [anon_sym_BSLASHGlstext] = ACTIONS(5257), + [anon_sym_BSLASHGLStext] = ACTIONS(5257), + [anon_sym_BSLASHglsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), + [anon_sym_BSLASHglsplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSplural] = ACTIONS(5257), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHglsname] = ACTIONS(5257), + [anon_sym_BSLASHGlsname] = ACTIONS(5257), + [anon_sym_BSLASHGLSname] = ACTIONS(5257), + [anon_sym_BSLASHglssymbol] = ACTIONS(5257), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), + [anon_sym_BSLASHglsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), + [anon_sym_BSLASHglsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), + [anon_sym_BSLASHglsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), + [anon_sym_BSLASHglsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), + [anon_sym_BSLASHglsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), + [anon_sym_BSLASHnewacronym] = ACTIONS(5257), + [anon_sym_BSLASHacrshort] = ACTIONS(5257), + [anon_sym_BSLASHAcrshort] = ACTIONS(5257), + [anon_sym_BSLASHACRshort] = ACTIONS(5257), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), + [anon_sym_BSLASHacrlong] = ACTIONS(5257), + [anon_sym_BSLASHAcrlong] = ACTIONS(5257), + [anon_sym_BSLASHACRlong] = ACTIONS(5257), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), + [anon_sym_BSLASHacrfull] = ACTIONS(5257), + [anon_sym_BSLASHAcrfull] = ACTIONS(5257), + [anon_sym_BSLASHACRfull] = ACTIONS(5257), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), + [anon_sym_BSLASHacs] = ACTIONS(5257), + [anon_sym_BSLASHAcs] = ACTIONS(5257), + [anon_sym_BSLASHacsp] = ACTIONS(5257), + [anon_sym_BSLASHAcsp] = ACTIONS(5257), + [anon_sym_BSLASHacl] = ACTIONS(5257), + [anon_sym_BSLASHAcl] = ACTIONS(5257), + [anon_sym_BSLASHaclp] = ACTIONS(5257), + [anon_sym_BSLASHAclp] = ACTIONS(5257), + [anon_sym_BSLASHacf] = ACTIONS(5257), + [anon_sym_BSLASHAcf] = ACTIONS(5257), + [anon_sym_BSLASHacfp] = ACTIONS(5257), + [anon_sym_BSLASHAcfp] = ACTIONS(5257), + [anon_sym_BSLASHac] = ACTIONS(5257), + [anon_sym_BSLASHAc] = ACTIONS(5257), + [anon_sym_BSLASHacp] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), + [anon_sym_BSLASHcolor] = ACTIONS(5257), + [anon_sym_BSLASHcolorbox] = ACTIONS(5257), + [anon_sym_BSLASHtextcolor] = ACTIONS(5257), + [anon_sym_BSLASHpagecolor] = ACTIONS(5257), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), + [anon_sym_BSLASHtext] = ACTIONS(5257), + [anon_sym_BSLASHintertext] = ACTIONS(5257), + [anon_sym_shortintertext] = ACTIONS(5257), + }, + [1016] = { + [sym_command_name] = ACTIONS(5261), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5261), + [anon_sym_LPAREN] = ACTIONS(5259), + [anon_sym_RPAREN] = ACTIONS(5259), + [anon_sym_LBRACK] = ACTIONS(5259), + [anon_sym_RBRACK] = ACTIONS(5259), + [anon_sym_COMMA] = ACTIONS(5259), + [anon_sym_EQ] = ACTIONS(5259), + [anon_sym_BSLASHpart] = ACTIONS(5261), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddpart] = ACTIONS(5261), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5259), + [anon_sym_BSLASHchapter] = ACTIONS(5261), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddchap] = ACTIONS(5261), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsection] = ACTIONS(5261), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddsec] = ACTIONS(5261), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubsection] = ACTIONS(5261), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5261), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHparagraph] = ACTIONS(5261), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5261), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5259), + [anon_sym_BSLASHitem] = ACTIONS(5261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5259), + [anon_sym_LBRACE] = ACTIONS(5259), + [sym_word] = ACTIONS(5261), + [sym_placeholder] = ACTIONS(5259), + [anon_sym_PLUS] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(5261), + [anon_sym_STAR] = ACTIONS(5261), + [anon_sym_SLASH] = ACTIONS(5261), + [anon_sym_CARET] = ACTIONS(5261), + [anon_sym__] = ACTIONS(5261), + [anon_sym_LT] = ACTIONS(5261), + [anon_sym_GT] = ACTIONS(5261), + [anon_sym_BANG] = ACTIONS(5261), + [anon_sym_PIPE] = ACTIONS(5261), + [anon_sym_COLON] = ACTIONS(5261), + [anon_sym_SQUOTE] = ACTIONS(5261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5259), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5259), + [anon_sym_DOLLAR] = ACTIONS(5261), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5259), + [anon_sym_BSLASHbegin] = ACTIONS(5261), + [anon_sym_BSLASHusepackage] = ACTIONS(5261), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), + [anon_sym_BSLASHinclude] = ACTIONS(5261), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), + [anon_sym_BSLASHinput] = ACTIONS(5261), + [anon_sym_BSLASHsubfile] = ACTIONS(5261), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), + [anon_sym_BSLASHbibliography] = ACTIONS(5261), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), + [anon_sym_BSLASHincludesvg] = ACTIONS(5261), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), + [anon_sym_BSLASHimport] = ACTIONS(5261), + [anon_sym_BSLASHsubimport] = ACTIONS(5261), + [anon_sym_BSLASHinputfrom] = ACTIONS(5261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), + [anon_sym_BSLASHincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHcaption] = ACTIONS(5261), + [anon_sym_BSLASHcite] = ACTIONS(5261), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCite] = ACTIONS(5261), + [anon_sym_BSLASHnocite] = ACTIONS(5261), + [anon_sym_BSLASHcitet] = ACTIONS(5261), + [anon_sym_BSLASHcitep] = ACTIONS(5261), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteauthor] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitetitle] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteyear] = ACTIONS(5261), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitedate] = ACTIONS(5261), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteurl] = ACTIONS(5261), + [anon_sym_BSLASHfullcite] = ACTIONS(5261), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), + [anon_sym_BSLASHcitealt] = ACTIONS(5261), + [anon_sym_BSLASHcitealp] = ACTIONS(5261), + [anon_sym_BSLASHcitetext] = ACTIONS(5261), + [anon_sym_BSLASHparencite] = ACTIONS(5261), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHParencite] = ACTIONS(5261), + [anon_sym_BSLASHfootcite] = ACTIONS(5261), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), + [anon_sym_BSLASHtextcite] = ACTIONS(5261), + [anon_sym_BSLASHTextcite] = ACTIONS(5261), + [anon_sym_BSLASHsmartcite] = ACTIONS(5261), + [anon_sym_BSLASHSmartcite] = ACTIONS(5261), + [anon_sym_BSLASHsupercite] = ACTIONS(5261), + [anon_sym_BSLASHautocite] = ACTIONS(5261), + [anon_sym_BSLASHAutocite] = ACTIONS(5261), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHvolcite] = ACTIONS(5261), + [anon_sym_BSLASHVolcite] = ACTIONS(5261), + [anon_sym_BSLASHpvolcite] = ACTIONS(5261), + [anon_sym_BSLASHPvolcite] = ACTIONS(5261), + [anon_sym_BSLASHfvolcite] = ACTIONS(5261), + [anon_sym_BSLASHftvolcite] = ACTIONS(5261), + [anon_sym_BSLASHsvolcite] = ACTIONS(5261), + [anon_sym_BSLASHSvolcite] = ACTIONS(5261), + [anon_sym_BSLASHtvolcite] = ACTIONS(5261), + [anon_sym_BSLASHTvolcite] = ACTIONS(5261), + [anon_sym_BSLASHavolcite] = ACTIONS(5261), + [anon_sym_BSLASHAvolcite] = ACTIONS(5261), + [anon_sym_BSLASHnotecite] = ACTIONS(5261), + [anon_sym_BSLASHNotecite] = ACTIONS(5261), + [anon_sym_BSLASHpnotecite] = ACTIONS(5261), + [anon_sym_BSLASHPnotecite] = ACTIONS(5261), + [anon_sym_BSLASHfnotecite] = ACTIONS(5261), + [anon_sym_BSLASHlabel] = ACTIONS(5261), + [anon_sym_BSLASHref] = ACTIONS(5261), + [anon_sym_BSLASHeqref] = ACTIONS(5261), + [anon_sym_BSLASHvref] = ACTIONS(5261), + [anon_sym_BSLASHVref] = ACTIONS(5261), + [anon_sym_BSLASHautoref] = ACTIONS(5261), + [anon_sym_BSLASHpageref] = ACTIONS(5261), + [anon_sym_BSLASHcref] = ACTIONS(5261), + [anon_sym_BSLASHCref] = ACTIONS(5261), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnameCref] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHlabelcref] = ACTIONS(5261), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCrefrange] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnewlabel] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), + [anon_sym_BSLASHdef] = ACTIONS(5261), + [anon_sym_BSLASHlet] = ACTIONS(5261), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), + [anon_sym_BSLASHgls] = ACTIONS(5261), + [anon_sym_BSLASHGls] = ACTIONS(5261), + [anon_sym_BSLASHGLS] = ACTIONS(5261), + [anon_sym_BSLASHglspl] = ACTIONS(5261), + [anon_sym_BSLASHGlspl] = ACTIONS(5261), + [anon_sym_BSLASHGLSpl] = ACTIONS(5261), + [anon_sym_BSLASHglsdisp] = ACTIONS(5261), + [anon_sym_BSLASHglslink] = ACTIONS(5261), + [anon_sym_BSLASHglstext] = ACTIONS(5261), + [anon_sym_BSLASHGlstext] = ACTIONS(5261), + [anon_sym_BSLASHGLStext] = ACTIONS(5261), + [anon_sym_BSLASHglsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), + [anon_sym_BSLASHglsplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSplural] = ACTIONS(5261), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHglsname] = ACTIONS(5261), + [anon_sym_BSLASHGlsname] = ACTIONS(5261), + [anon_sym_BSLASHGLSname] = ACTIONS(5261), + [anon_sym_BSLASHglssymbol] = ACTIONS(5261), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), + [anon_sym_BSLASHglsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), + [anon_sym_BSLASHglsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), + [anon_sym_BSLASHglsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), + [anon_sym_BSLASHglsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), + [anon_sym_BSLASHglsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), + [anon_sym_BSLASHnewacronym] = ACTIONS(5261), + [anon_sym_BSLASHacrshort] = ACTIONS(5261), + [anon_sym_BSLASHAcrshort] = ACTIONS(5261), + [anon_sym_BSLASHACRshort] = ACTIONS(5261), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), + [anon_sym_BSLASHacrlong] = ACTIONS(5261), + [anon_sym_BSLASHAcrlong] = ACTIONS(5261), + [anon_sym_BSLASHACRlong] = ACTIONS(5261), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), + [anon_sym_BSLASHacrfull] = ACTIONS(5261), + [anon_sym_BSLASHAcrfull] = ACTIONS(5261), + [anon_sym_BSLASHACRfull] = ACTIONS(5261), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), + [anon_sym_BSLASHacs] = ACTIONS(5261), + [anon_sym_BSLASHAcs] = ACTIONS(5261), + [anon_sym_BSLASHacsp] = ACTIONS(5261), + [anon_sym_BSLASHAcsp] = ACTIONS(5261), + [anon_sym_BSLASHacl] = ACTIONS(5261), + [anon_sym_BSLASHAcl] = ACTIONS(5261), + [anon_sym_BSLASHaclp] = ACTIONS(5261), + [anon_sym_BSLASHAclp] = ACTIONS(5261), + [anon_sym_BSLASHacf] = ACTIONS(5261), + [anon_sym_BSLASHAcf] = ACTIONS(5261), + [anon_sym_BSLASHacfp] = ACTIONS(5261), + [anon_sym_BSLASHAcfp] = ACTIONS(5261), + [anon_sym_BSLASHac] = ACTIONS(5261), + [anon_sym_BSLASHAc] = ACTIONS(5261), + [anon_sym_BSLASHacp] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), + [anon_sym_BSLASHcolor] = ACTIONS(5261), + [anon_sym_BSLASHcolorbox] = ACTIONS(5261), + [anon_sym_BSLASHtextcolor] = ACTIONS(5261), + [anon_sym_BSLASHpagecolor] = ACTIONS(5261), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), + [anon_sym_BSLASHtext] = ACTIONS(5261), + [anon_sym_BSLASHintertext] = ACTIONS(5261), + [anon_sym_shortintertext] = ACTIONS(5261), + }, + [1017] = { + [sym_command_name] = ACTIONS(5265), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5265), + [anon_sym_LPAREN] = ACTIONS(5263), + [anon_sym_RPAREN] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(5263), + [anon_sym_RBRACK] = ACTIONS(5263), + [anon_sym_COMMA] = ACTIONS(5263), + [anon_sym_EQ] = ACTIONS(5263), + [anon_sym_BSLASHpart] = ACTIONS(5265), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddpart] = ACTIONS(5265), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5263), + [anon_sym_BSLASHchapter] = ACTIONS(5265), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddchap] = ACTIONS(5265), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsection] = ACTIONS(5265), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddsec] = ACTIONS(5265), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubsection] = ACTIONS(5265), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5265), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHparagraph] = ACTIONS(5265), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5265), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5263), + [anon_sym_BSLASHitem] = ACTIONS(5265), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5263), + [anon_sym_LBRACE] = ACTIONS(5263), + [sym_word] = ACTIONS(5265), + [sym_placeholder] = ACTIONS(5263), + [anon_sym_PLUS] = ACTIONS(5265), + [anon_sym_DASH] = ACTIONS(5265), + [anon_sym_STAR] = ACTIONS(5265), + [anon_sym_SLASH] = ACTIONS(5265), + [anon_sym_CARET] = ACTIONS(5265), + [anon_sym__] = ACTIONS(5265), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_GT] = ACTIONS(5265), + [anon_sym_BANG] = ACTIONS(5265), + [anon_sym_PIPE] = ACTIONS(5265), + [anon_sym_COLON] = ACTIONS(5265), + [anon_sym_SQUOTE] = ACTIONS(5265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5263), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5263), + [anon_sym_DOLLAR] = ACTIONS(5265), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5263), + [anon_sym_BSLASHbegin] = ACTIONS(5265), + [anon_sym_BSLASHusepackage] = ACTIONS(5265), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), + [anon_sym_BSLASHinclude] = ACTIONS(5265), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), + [anon_sym_BSLASHinput] = ACTIONS(5265), + [anon_sym_BSLASHsubfile] = ACTIONS(5265), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), + [anon_sym_BSLASHbibliography] = ACTIONS(5265), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), + [anon_sym_BSLASHincludesvg] = ACTIONS(5265), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), + [anon_sym_BSLASHimport] = ACTIONS(5265), + [anon_sym_BSLASHsubimport] = ACTIONS(5265), + [anon_sym_BSLASHinputfrom] = ACTIONS(5265), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), + [anon_sym_BSLASHincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHcaption] = ACTIONS(5265), + [anon_sym_BSLASHcite] = ACTIONS(5265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCite] = ACTIONS(5265), + [anon_sym_BSLASHnocite] = ACTIONS(5265), + [anon_sym_BSLASHcitet] = ACTIONS(5265), + [anon_sym_BSLASHcitep] = ACTIONS(5265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor] = ACTIONS(5265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle] = ACTIONS(5265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteyear] = ACTIONS(5265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitedate] = ACTIONS(5265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteurl] = ACTIONS(5265), + [anon_sym_BSLASHfullcite] = ACTIONS(5265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), + [anon_sym_BSLASHcitealt] = ACTIONS(5265), + [anon_sym_BSLASHcitealp] = ACTIONS(5265), + [anon_sym_BSLASHcitetext] = ACTIONS(5265), + [anon_sym_BSLASHparencite] = ACTIONS(5265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHParencite] = ACTIONS(5265), + [anon_sym_BSLASHfootcite] = ACTIONS(5265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), + [anon_sym_BSLASHtextcite] = ACTIONS(5265), + [anon_sym_BSLASHTextcite] = ACTIONS(5265), + [anon_sym_BSLASHsmartcite] = ACTIONS(5265), + [anon_sym_BSLASHSmartcite] = ACTIONS(5265), + [anon_sym_BSLASHsupercite] = ACTIONS(5265), + [anon_sym_BSLASHautocite] = ACTIONS(5265), + [anon_sym_BSLASHAutocite] = ACTIONS(5265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHvolcite] = ACTIONS(5265), + [anon_sym_BSLASHVolcite] = ACTIONS(5265), + [anon_sym_BSLASHpvolcite] = ACTIONS(5265), + [anon_sym_BSLASHPvolcite] = ACTIONS(5265), + [anon_sym_BSLASHfvolcite] = ACTIONS(5265), + [anon_sym_BSLASHftvolcite] = ACTIONS(5265), + [anon_sym_BSLASHsvolcite] = ACTIONS(5265), + [anon_sym_BSLASHSvolcite] = ACTIONS(5265), + [anon_sym_BSLASHtvolcite] = ACTIONS(5265), + [anon_sym_BSLASHTvolcite] = ACTIONS(5265), + [anon_sym_BSLASHavolcite] = ACTIONS(5265), + [anon_sym_BSLASHAvolcite] = ACTIONS(5265), + [anon_sym_BSLASHnotecite] = ACTIONS(5265), + [anon_sym_BSLASHNotecite] = ACTIONS(5265), + [anon_sym_BSLASHpnotecite] = ACTIONS(5265), + [anon_sym_BSLASHPnotecite] = ACTIONS(5265), + [anon_sym_BSLASHfnotecite] = ACTIONS(5265), + [anon_sym_BSLASHlabel] = ACTIONS(5265), + [anon_sym_BSLASHref] = ACTIONS(5265), + [anon_sym_BSLASHeqref] = ACTIONS(5265), + [anon_sym_BSLASHvref] = ACTIONS(5265), + [anon_sym_BSLASHVref] = ACTIONS(5265), + [anon_sym_BSLASHautoref] = ACTIONS(5265), + [anon_sym_BSLASHpageref] = ACTIONS(5265), + [anon_sym_BSLASHcref] = ACTIONS(5265), + [anon_sym_BSLASHCref] = ACTIONS(5265), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnameCref] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHlabelcref] = ACTIONS(5265), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange] = ACTIONS(5265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnewlabel] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), + [anon_sym_BSLASHdef] = ACTIONS(5265), + [anon_sym_BSLASHlet] = ACTIONS(5265), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), + [anon_sym_BSLASHgls] = ACTIONS(5265), + [anon_sym_BSLASHGls] = ACTIONS(5265), + [anon_sym_BSLASHGLS] = ACTIONS(5265), + [anon_sym_BSLASHglspl] = ACTIONS(5265), + [anon_sym_BSLASHGlspl] = ACTIONS(5265), + [anon_sym_BSLASHGLSpl] = ACTIONS(5265), + [anon_sym_BSLASHglsdisp] = ACTIONS(5265), + [anon_sym_BSLASHglslink] = ACTIONS(5265), + [anon_sym_BSLASHglstext] = ACTIONS(5265), + [anon_sym_BSLASHGlstext] = ACTIONS(5265), + [anon_sym_BSLASHGLStext] = ACTIONS(5265), + [anon_sym_BSLASHglsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), + [anon_sym_BSLASHglsplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSplural] = ACTIONS(5265), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHglsname] = ACTIONS(5265), + [anon_sym_BSLASHGlsname] = ACTIONS(5265), + [anon_sym_BSLASHGLSname] = ACTIONS(5265), + [anon_sym_BSLASHglssymbol] = ACTIONS(5265), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), + [anon_sym_BSLASHglsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), + [anon_sym_BSLASHglsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), + [anon_sym_BSLASHglsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), + [anon_sym_BSLASHglsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), + [anon_sym_BSLASHglsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), + [anon_sym_BSLASHnewacronym] = ACTIONS(5265), + [anon_sym_BSLASHacrshort] = ACTIONS(5265), + [anon_sym_BSLASHAcrshort] = ACTIONS(5265), + [anon_sym_BSLASHACRshort] = ACTIONS(5265), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), + [anon_sym_BSLASHacrlong] = ACTIONS(5265), + [anon_sym_BSLASHAcrlong] = ACTIONS(5265), + [anon_sym_BSLASHACRlong] = ACTIONS(5265), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), + [anon_sym_BSLASHacrfull] = ACTIONS(5265), + [anon_sym_BSLASHAcrfull] = ACTIONS(5265), + [anon_sym_BSLASHACRfull] = ACTIONS(5265), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), + [anon_sym_BSLASHacs] = ACTIONS(5265), + [anon_sym_BSLASHAcs] = ACTIONS(5265), + [anon_sym_BSLASHacsp] = ACTIONS(5265), + [anon_sym_BSLASHAcsp] = ACTIONS(5265), + [anon_sym_BSLASHacl] = ACTIONS(5265), + [anon_sym_BSLASHAcl] = ACTIONS(5265), + [anon_sym_BSLASHaclp] = ACTIONS(5265), + [anon_sym_BSLASHAclp] = ACTIONS(5265), + [anon_sym_BSLASHacf] = ACTIONS(5265), + [anon_sym_BSLASHAcf] = ACTIONS(5265), + [anon_sym_BSLASHacfp] = ACTIONS(5265), + [anon_sym_BSLASHAcfp] = ACTIONS(5265), + [anon_sym_BSLASHac] = ACTIONS(5265), + [anon_sym_BSLASHAc] = ACTIONS(5265), + [anon_sym_BSLASHacp] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), + [anon_sym_BSLASHcolor] = ACTIONS(5265), + [anon_sym_BSLASHcolorbox] = ACTIONS(5265), + [anon_sym_BSLASHtextcolor] = ACTIONS(5265), + [anon_sym_BSLASHpagecolor] = ACTIONS(5265), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), + [anon_sym_BSLASHtext] = ACTIONS(5265), + [anon_sym_BSLASHintertext] = ACTIONS(5265), + [anon_sym_shortintertext] = ACTIONS(5265), + }, + [1018] = { + [sym_command_name] = ACTIONS(5269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5269), + [anon_sym_LPAREN] = ACTIONS(5267), + [anon_sym_RPAREN] = ACTIONS(5267), + [anon_sym_LBRACK] = ACTIONS(5267), + [anon_sym_RBRACK] = ACTIONS(5267), + [anon_sym_COMMA] = ACTIONS(5267), + [anon_sym_EQ] = ACTIONS(5267), + [anon_sym_BSLASHpart] = ACTIONS(5269), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddpart] = ACTIONS(5269), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5267), + [anon_sym_BSLASHchapter] = ACTIONS(5269), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddchap] = ACTIONS(5269), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsection] = ACTIONS(5269), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddsec] = ACTIONS(5269), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubsection] = ACTIONS(5269), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5269), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHparagraph] = ACTIONS(5269), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5269), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5267), + [anon_sym_BSLASHitem] = ACTIONS(5269), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5267), + [anon_sym_LBRACE] = ACTIONS(5267), + [sym_word] = ACTIONS(5269), + [sym_placeholder] = ACTIONS(5267), + [anon_sym_PLUS] = ACTIONS(5269), + [anon_sym_DASH] = ACTIONS(5269), + [anon_sym_STAR] = ACTIONS(5269), + [anon_sym_SLASH] = ACTIONS(5269), + [anon_sym_CARET] = ACTIONS(5269), + [anon_sym__] = ACTIONS(5269), + [anon_sym_LT] = ACTIONS(5269), + [anon_sym_GT] = ACTIONS(5269), + [anon_sym_BANG] = ACTIONS(5269), + [anon_sym_PIPE] = ACTIONS(5269), + [anon_sym_COLON] = ACTIONS(5269), + [anon_sym_SQUOTE] = ACTIONS(5269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5267), + [anon_sym_DOLLAR] = ACTIONS(5269), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), + [anon_sym_BSLASHbegin] = ACTIONS(5269), + [anon_sym_BSLASHusepackage] = ACTIONS(5269), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), + [anon_sym_BSLASHinclude] = ACTIONS(5269), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), + [anon_sym_BSLASHinput] = ACTIONS(5269), + [anon_sym_BSLASHsubfile] = ACTIONS(5269), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), + [anon_sym_BSLASHbibliography] = ACTIONS(5269), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), + [anon_sym_BSLASHincludesvg] = ACTIONS(5269), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), + [anon_sym_BSLASHimport] = ACTIONS(5269), + [anon_sym_BSLASHsubimport] = ACTIONS(5269), + [anon_sym_BSLASHinputfrom] = ACTIONS(5269), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), + [anon_sym_BSLASHincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHcaption] = ACTIONS(5269), + [anon_sym_BSLASHcite] = ACTIONS(5269), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCite] = ACTIONS(5269), + [anon_sym_BSLASHnocite] = ACTIONS(5269), + [anon_sym_BSLASHcitet] = ACTIONS(5269), + [anon_sym_BSLASHcitep] = ACTIONS(5269), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteauthor] = ACTIONS(5269), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitetitle] = ACTIONS(5269), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteyear] = ACTIONS(5269), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitedate] = ACTIONS(5269), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteurl] = ACTIONS(5269), + [anon_sym_BSLASHfullcite] = ACTIONS(5269), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), + [anon_sym_BSLASHcitealt] = ACTIONS(5269), + [anon_sym_BSLASHcitealp] = ACTIONS(5269), + [anon_sym_BSLASHcitetext] = ACTIONS(5269), + [anon_sym_BSLASHparencite] = ACTIONS(5269), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHParencite] = ACTIONS(5269), + [anon_sym_BSLASHfootcite] = ACTIONS(5269), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), + [anon_sym_BSLASHtextcite] = ACTIONS(5269), + [anon_sym_BSLASHTextcite] = ACTIONS(5269), + [anon_sym_BSLASHsmartcite] = ACTIONS(5269), + [anon_sym_BSLASHSmartcite] = ACTIONS(5269), + [anon_sym_BSLASHsupercite] = ACTIONS(5269), + [anon_sym_BSLASHautocite] = ACTIONS(5269), + [anon_sym_BSLASHAutocite] = ACTIONS(5269), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHvolcite] = ACTIONS(5269), + [anon_sym_BSLASHVolcite] = ACTIONS(5269), + [anon_sym_BSLASHpvolcite] = ACTIONS(5269), + [anon_sym_BSLASHPvolcite] = ACTIONS(5269), + [anon_sym_BSLASHfvolcite] = ACTIONS(5269), + [anon_sym_BSLASHftvolcite] = ACTIONS(5269), + [anon_sym_BSLASHsvolcite] = ACTIONS(5269), + [anon_sym_BSLASHSvolcite] = ACTIONS(5269), + [anon_sym_BSLASHtvolcite] = ACTIONS(5269), + [anon_sym_BSLASHTvolcite] = ACTIONS(5269), + [anon_sym_BSLASHavolcite] = ACTIONS(5269), + [anon_sym_BSLASHAvolcite] = ACTIONS(5269), + [anon_sym_BSLASHnotecite] = ACTIONS(5269), + [anon_sym_BSLASHNotecite] = ACTIONS(5269), + [anon_sym_BSLASHpnotecite] = ACTIONS(5269), + [anon_sym_BSLASHPnotecite] = ACTIONS(5269), + [anon_sym_BSLASHfnotecite] = ACTIONS(5269), + [anon_sym_BSLASHlabel] = ACTIONS(5269), + [anon_sym_BSLASHref] = ACTIONS(5269), + [anon_sym_BSLASHeqref] = ACTIONS(5269), + [anon_sym_BSLASHvref] = ACTIONS(5269), + [anon_sym_BSLASHVref] = ACTIONS(5269), + [anon_sym_BSLASHautoref] = ACTIONS(5269), + [anon_sym_BSLASHpageref] = ACTIONS(5269), + [anon_sym_BSLASHcref] = ACTIONS(5269), + [anon_sym_BSLASHCref] = ACTIONS(5269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnameCref] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHlabelcref] = ACTIONS(5269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCrefrange] = ACTIONS(5269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnewlabel] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), + [anon_sym_BSLASHdef] = ACTIONS(5269), + [anon_sym_BSLASHlet] = ACTIONS(5269), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), + [anon_sym_BSLASHgls] = ACTIONS(5269), + [anon_sym_BSLASHGls] = ACTIONS(5269), + [anon_sym_BSLASHGLS] = ACTIONS(5269), + [anon_sym_BSLASHglspl] = ACTIONS(5269), + [anon_sym_BSLASHGlspl] = ACTIONS(5269), + [anon_sym_BSLASHGLSpl] = ACTIONS(5269), + [anon_sym_BSLASHglsdisp] = ACTIONS(5269), + [anon_sym_BSLASHglslink] = ACTIONS(5269), + [anon_sym_BSLASHglstext] = ACTIONS(5269), + [anon_sym_BSLASHGlstext] = ACTIONS(5269), + [anon_sym_BSLASHGLStext] = ACTIONS(5269), + [anon_sym_BSLASHglsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), + [anon_sym_BSLASHglsplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSplural] = ACTIONS(5269), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHglsname] = ACTIONS(5269), + [anon_sym_BSLASHGlsname] = ACTIONS(5269), + [anon_sym_BSLASHGLSname] = ACTIONS(5269), + [anon_sym_BSLASHglssymbol] = ACTIONS(5269), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), + [anon_sym_BSLASHglsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), + [anon_sym_BSLASHglsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), + [anon_sym_BSLASHglsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), + [anon_sym_BSLASHglsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), + [anon_sym_BSLASHglsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), + [anon_sym_BSLASHnewacronym] = ACTIONS(5269), + [anon_sym_BSLASHacrshort] = ACTIONS(5269), + [anon_sym_BSLASHAcrshort] = ACTIONS(5269), + [anon_sym_BSLASHACRshort] = ACTIONS(5269), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), + [anon_sym_BSLASHacrlong] = ACTIONS(5269), + [anon_sym_BSLASHAcrlong] = ACTIONS(5269), + [anon_sym_BSLASHACRlong] = ACTIONS(5269), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), + [anon_sym_BSLASHacrfull] = ACTIONS(5269), + [anon_sym_BSLASHAcrfull] = ACTIONS(5269), + [anon_sym_BSLASHACRfull] = ACTIONS(5269), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), + [anon_sym_BSLASHacs] = ACTIONS(5269), + [anon_sym_BSLASHAcs] = ACTIONS(5269), + [anon_sym_BSLASHacsp] = ACTIONS(5269), + [anon_sym_BSLASHAcsp] = ACTIONS(5269), + [anon_sym_BSLASHacl] = ACTIONS(5269), + [anon_sym_BSLASHAcl] = ACTIONS(5269), + [anon_sym_BSLASHaclp] = ACTIONS(5269), + [anon_sym_BSLASHAclp] = ACTIONS(5269), + [anon_sym_BSLASHacf] = ACTIONS(5269), + [anon_sym_BSLASHAcf] = ACTIONS(5269), + [anon_sym_BSLASHacfp] = ACTIONS(5269), + [anon_sym_BSLASHAcfp] = ACTIONS(5269), + [anon_sym_BSLASHac] = ACTIONS(5269), + [anon_sym_BSLASHAc] = ACTIONS(5269), + [anon_sym_BSLASHacp] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), + [anon_sym_BSLASHcolor] = ACTIONS(5269), + [anon_sym_BSLASHcolorbox] = ACTIONS(5269), + [anon_sym_BSLASHtextcolor] = ACTIONS(5269), + [anon_sym_BSLASHpagecolor] = ACTIONS(5269), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), + [anon_sym_BSLASHtext] = ACTIONS(5269), + [anon_sym_BSLASHintertext] = ACTIONS(5269), + [anon_sym_shortintertext] = ACTIONS(5269), + }, + [1019] = { + [sym_command_name] = ACTIONS(5273), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5273), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(5271), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_COMMA] = ACTIONS(5271), + [anon_sym_EQ] = ACTIONS(5271), + [anon_sym_BSLASHpart] = ACTIONS(5273), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddpart] = ACTIONS(5273), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHchapter] = ACTIONS(5273), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddchap] = ACTIONS(5273), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsection] = ACTIONS(5273), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddsec] = ACTIONS(5273), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHparagraph] = ACTIONS(5273), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHitem] = ACTIONS(5273), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(5271), + [sym_word] = ACTIONS(5273), + [sym_placeholder] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5273), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5273), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym__] = ACTIONS(5273), + [anon_sym_LT] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5273), + [anon_sym_BANG] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5273), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_SQUOTE] = ACTIONS(5273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5271), + [anon_sym_DOLLAR] = ACTIONS(5273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), + [anon_sym_BSLASHbegin] = ACTIONS(5273), + [anon_sym_BSLASHusepackage] = ACTIONS(5273), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), + [anon_sym_BSLASHinclude] = ACTIONS(5273), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), + [anon_sym_BSLASHinput] = ACTIONS(5273), + [anon_sym_BSLASHsubfile] = ACTIONS(5273), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), + [anon_sym_BSLASHbibliography] = ACTIONS(5273), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), + [anon_sym_BSLASHincludesvg] = ACTIONS(5273), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), + [anon_sym_BSLASHimport] = ACTIONS(5273), + [anon_sym_BSLASHsubimport] = ACTIONS(5273), + [anon_sym_BSLASHinputfrom] = ACTIONS(5273), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), + [anon_sym_BSLASHincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHcaption] = ACTIONS(5273), + [anon_sym_BSLASHcite] = ACTIONS(5273), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCite] = ACTIONS(5273), + [anon_sym_BSLASHnocite] = ACTIONS(5273), + [anon_sym_BSLASHcitet] = ACTIONS(5273), + [anon_sym_BSLASHcitep] = ACTIONS(5273), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteauthor] = ACTIONS(5273), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitetitle] = ACTIONS(5273), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteyear] = ACTIONS(5273), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitedate] = ACTIONS(5273), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteurl] = ACTIONS(5273), + [anon_sym_BSLASHfullcite] = ACTIONS(5273), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), + [anon_sym_BSLASHcitealt] = ACTIONS(5273), + [anon_sym_BSLASHcitealp] = ACTIONS(5273), + [anon_sym_BSLASHcitetext] = ACTIONS(5273), + [anon_sym_BSLASHparencite] = ACTIONS(5273), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHParencite] = ACTIONS(5273), + [anon_sym_BSLASHfootcite] = ACTIONS(5273), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), + [anon_sym_BSLASHtextcite] = ACTIONS(5273), + [anon_sym_BSLASHTextcite] = ACTIONS(5273), + [anon_sym_BSLASHsmartcite] = ACTIONS(5273), + [anon_sym_BSLASHSmartcite] = ACTIONS(5273), + [anon_sym_BSLASHsupercite] = ACTIONS(5273), + [anon_sym_BSLASHautocite] = ACTIONS(5273), + [anon_sym_BSLASHAutocite] = ACTIONS(5273), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHvolcite] = ACTIONS(5273), + [anon_sym_BSLASHVolcite] = ACTIONS(5273), + [anon_sym_BSLASHpvolcite] = ACTIONS(5273), + [anon_sym_BSLASHPvolcite] = ACTIONS(5273), + [anon_sym_BSLASHfvolcite] = ACTIONS(5273), + [anon_sym_BSLASHftvolcite] = ACTIONS(5273), + [anon_sym_BSLASHsvolcite] = ACTIONS(5273), + [anon_sym_BSLASHSvolcite] = ACTIONS(5273), + [anon_sym_BSLASHtvolcite] = ACTIONS(5273), + [anon_sym_BSLASHTvolcite] = ACTIONS(5273), + [anon_sym_BSLASHavolcite] = ACTIONS(5273), + [anon_sym_BSLASHAvolcite] = ACTIONS(5273), + [anon_sym_BSLASHnotecite] = ACTIONS(5273), + [anon_sym_BSLASHNotecite] = ACTIONS(5273), + [anon_sym_BSLASHpnotecite] = ACTIONS(5273), + [anon_sym_BSLASHPnotecite] = ACTIONS(5273), + [anon_sym_BSLASHfnotecite] = ACTIONS(5273), + [anon_sym_BSLASHlabel] = ACTIONS(5273), + [anon_sym_BSLASHref] = ACTIONS(5273), + [anon_sym_BSLASHeqref] = ACTIONS(5273), + [anon_sym_BSLASHvref] = ACTIONS(5273), + [anon_sym_BSLASHVref] = ACTIONS(5273), + [anon_sym_BSLASHautoref] = ACTIONS(5273), + [anon_sym_BSLASHpageref] = ACTIONS(5273), + [anon_sym_BSLASHcref] = ACTIONS(5273), + [anon_sym_BSLASHCref] = ACTIONS(5273), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnameCref] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHlabelcref] = ACTIONS(5273), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCrefrange] = ACTIONS(5273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdef] = ACTIONS(5273), + [anon_sym_BSLASHlet] = ACTIONS(5273), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), + [anon_sym_BSLASHgls] = ACTIONS(5273), + [anon_sym_BSLASHGls] = ACTIONS(5273), + [anon_sym_BSLASHGLS] = ACTIONS(5273), + [anon_sym_BSLASHglspl] = ACTIONS(5273), + [anon_sym_BSLASHGlspl] = ACTIONS(5273), + [anon_sym_BSLASHGLSpl] = ACTIONS(5273), + [anon_sym_BSLASHglsdisp] = ACTIONS(5273), + [anon_sym_BSLASHglslink] = ACTIONS(5273), + [anon_sym_BSLASHglstext] = ACTIONS(5273), + [anon_sym_BSLASHGlstext] = ACTIONS(5273), + [anon_sym_BSLASHGLStext] = ACTIONS(5273), + [anon_sym_BSLASHglsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), + [anon_sym_BSLASHglsplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSplural] = ACTIONS(5273), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHglsname] = ACTIONS(5273), + [anon_sym_BSLASHGlsname] = ACTIONS(5273), + [anon_sym_BSLASHGLSname] = ACTIONS(5273), + [anon_sym_BSLASHglssymbol] = ACTIONS(5273), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), + [anon_sym_BSLASHglsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), + [anon_sym_BSLASHglsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), + [anon_sym_BSLASHglsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), + [anon_sym_BSLASHglsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), + [anon_sym_BSLASHglsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), + [anon_sym_BSLASHnewacronym] = ACTIONS(5273), + [anon_sym_BSLASHacrshort] = ACTIONS(5273), + [anon_sym_BSLASHAcrshort] = ACTIONS(5273), + [anon_sym_BSLASHACRshort] = ACTIONS(5273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), + [anon_sym_BSLASHacrlong] = ACTIONS(5273), + [anon_sym_BSLASHAcrlong] = ACTIONS(5273), + [anon_sym_BSLASHACRlong] = ACTIONS(5273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), + [anon_sym_BSLASHacrfull] = ACTIONS(5273), + [anon_sym_BSLASHAcrfull] = ACTIONS(5273), + [anon_sym_BSLASHACRfull] = ACTIONS(5273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), + [anon_sym_BSLASHacs] = ACTIONS(5273), + [anon_sym_BSLASHAcs] = ACTIONS(5273), + [anon_sym_BSLASHacsp] = ACTIONS(5273), + [anon_sym_BSLASHAcsp] = ACTIONS(5273), + [anon_sym_BSLASHacl] = ACTIONS(5273), + [anon_sym_BSLASHAcl] = ACTIONS(5273), + [anon_sym_BSLASHaclp] = ACTIONS(5273), + [anon_sym_BSLASHAclp] = ACTIONS(5273), + [anon_sym_BSLASHacf] = ACTIONS(5273), + [anon_sym_BSLASHAcf] = ACTIONS(5273), + [anon_sym_BSLASHacfp] = ACTIONS(5273), + [anon_sym_BSLASHAcfp] = ACTIONS(5273), + [anon_sym_BSLASHac] = ACTIONS(5273), + [anon_sym_BSLASHAc] = ACTIONS(5273), + [anon_sym_BSLASHacp] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), + [anon_sym_BSLASHcolor] = ACTIONS(5273), + [anon_sym_BSLASHcolorbox] = ACTIONS(5273), + [anon_sym_BSLASHtextcolor] = ACTIONS(5273), + [anon_sym_BSLASHpagecolor] = ACTIONS(5273), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), + [anon_sym_BSLASHtext] = ACTIONS(5273), + [anon_sym_BSLASHintertext] = ACTIONS(5273), + [anon_sym_shortintertext] = ACTIONS(5273), + }, + [1020] = { + [sym_command_name] = ACTIONS(5277), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5277), + [anon_sym_LPAREN] = ACTIONS(5275), + [anon_sym_RPAREN] = ACTIONS(5275), + [anon_sym_LBRACK] = ACTIONS(5275), + [anon_sym_RBRACK] = ACTIONS(5275), + [anon_sym_COMMA] = ACTIONS(5275), + [anon_sym_EQ] = ACTIONS(5275), + [anon_sym_BSLASHpart] = ACTIONS(5277), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddpart] = ACTIONS(5277), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5275), + [anon_sym_BSLASHchapter] = ACTIONS(5277), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddchap] = ACTIONS(5277), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsection] = ACTIONS(5277), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddsec] = ACTIONS(5277), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubsection] = ACTIONS(5277), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5277), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHparagraph] = ACTIONS(5277), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5277), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5275), + [anon_sym_BSLASHitem] = ACTIONS(5277), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5275), + [anon_sym_LBRACE] = ACTIONS(5275), + [sym_word] = ACTIONS(5277), + [sym_placeholder] = ACTIONS(5275), + [anon_sym_PLUS] = ACTIONS(5277), + [anon_sym_DASH] = ACTIONS(5277), + [anon_sym_STAR] = ACTIONS(5277), + [anon_sym_SLASH] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5277), + [anon_sym__] = ACTIONS(5277), + [anon_sym_LT] = ACTIONS(5277), + [anon_sym_GT] = ACTIONS(5277), + [anon_sym_BANG] = ACTIONS(5277), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_COLON] = ACTIONS(5277), + [anon_sym_SQUOTE] = ACTIONS(5277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5275), + [anon_sym_DOLLAR] = ACTIONS(5277), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), + [anon_sym_BSLASHbegin] = ACTIONS(5277), + [anon_sym_BSLASHusepackage] = ACTIONS(5277), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), + [anon_sym_BSLASHinclude] = ACTIONS(5277), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), + [anon_sym_BSLASHinput] = ACTIONS(5277), + [anon_sym_BSLASHsubfile] = ACTIONS(5277), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), + [anon_sym_BSLASHbibliography] = ACTIONS(5277), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), + [anon_sym_BSLASHincludesvg] = ACTIONS(5277), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), + [anon_sym_BSLASHimport] = ACTIONS(5277), + [anon_sym_BSLASHsubimport] = ACTIONS(5277), + [anon_sym_BSLASHinputfrom] = ACTIONS(5277), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), + [anon_sym_BSLASHincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHcaption] = ACTIONS(5277), + [anon_sym_BSLASHcite] = ACTIONS(5277), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCite] = ACTIONS(5277), + [anon_sym_BSLASHnocite] = ACTIONS(5277), + [anon_sym_BSLASHcitet] = ACTIONS(5277), + [anon_sym_BSLASHcitep] = ACTIONS(5277), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteauthor] = ACTIONS(5277), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitetitle] = ACTIONS(5277), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteyear] = ACTIONS(5277), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitedate] = ACTIONS(5277), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteurl] = ACTIONS(5277), + [anon_sym_BSLASHfullcite] = ACTIONS(5277), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), + [anon_sym_BSLASHcitealt] = ACTIONS(5277), + [anon_sym_BSLASHcitealp] = ACTIONS(5277), + [anon_sym_BSLASHcitetext] = ACTIONS(5277), + [anon_sym_BSLASHparencite] = ACTIONS(5277), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHParencite] = ACTIONS(5277), + [anon_sym_BSLASHfootcite] = ACTIONS(5277), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), + [anon_sym_BSLASHtextcite] = ACTIONS(5277), + [anon_sym_BSLASHTextcite] = ACTIONS(5277), + [anon_sym_BSLASHsmartcite] = ACTIONS(5277), + [anon_sym_BSLASHSmartcite] = ACTIONS(5277), + [anon_sym_BSLASHsupercite] = ACTIONS(5277), + [anon_sym_BSLASHautocite] = ACTIONS(5277), + [anon_sym_BSLASHAutocite] = ACTIONS(5277), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHvolcite] = ACTIONS(5277), + [anon_sym_BSLASHVolcite] = ACTIONS(5277), + [anon_sym_BSLASHpvolcite] = ACTIONS(5277), + [anon_sym_BSLASHPvolcite] = ACTIONS(5277), + [anon_sym_BSLASHfvolcite] = ACTIONS(5277), + [anon_sym_BSLASHftvolcite] = ACTIONS(5277), + [anon_sym_BSLASHsvolcite] = ACTIONS(5277), + [anon_sym_BSLASHSvolcite] = ACTIONS(5277), + [anon_sym_BSLASHtvolcite] = ACTIONS(5277), + [anon_sym_BSLASHTvolcite] = ACTIONS(5277), + [anon_sym_BSLASHavolcite] = ACTIONS(5277), + [anon_sym_BSLASHAvolcite] = ACTIONS(5277), + [anon_sym_BSLASHnotecite] = ACTIONS(5277), + [anon_sym_BSLASHNotecite] = ACTIONS(5277), + [anon_sym_BSLASHpnotecite] = ACTIONS(5277), + [anon_sym_BSLASHPnotecite] = ACTIONS(5277), + [anon_sym_BSLASHfnotecite] = ACTIONS(5277), + [anon_sym_BSLASHlabel] = ACTIONS(5277), + [anon_sym_BSLASHref] = ACTIONS(5277), + [anon_sym_BSLASHeqref] = ACTIONS(5277), + [anon_sym_BSLASHvref] = ACTIONS(5277), + [anon_sym_BSLASHVref] = ACTIONS(5277), + [anon_sym_BSLASHautoref] = ACTIONS(5277), + [anon_sym_BSLASHpageref] = ACTIONS(5277), + [anon_sym_BSLASHcref] = ACTIONS(5277), + [anon_sym_BSLASHCref] = ACTIONS(5277), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnameCref] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHlabelcref] = ACTIONS(5277), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCrefrange] = ACTIONS(5277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnewlabel] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), + [anon_sym_BSLASHdef] = ACTIONS(5277), + [anon_sym_BSLASHlet] = ACTIONS(5277), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), + [anon_sym_BSLASHgls] = ACTIONS(5277), + [anon_sym_BSLASHGls] = ACTIONS(5277), + [anon_sym_BSLASHGLS] = ACTIONS(5277), + [anon_sym_BSLASHglspl] = ACTIONS(5277), + [anon_sym_BSLASHGlspl] = ACTIONS(5277), + [anon_sym_BSLASHGLSpl] = ACTIONS(5277), + [anon_sym_BSLASHglsdisp] = ACTIONS(5277), + [anon_sym_BSLASHglslink] = ACTIONS(5277), + [anon_sym_BSLASHglstext] = ACTIONS(5277), + [anon_sym_BSLASHGlstext] = ACTIONS(5277), + [anon_sym_BSLASHGLStext] = ACTIONS(5277), + [anon_sym_BSLASHglsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), + [anon_sym_BSLASHglsplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSplural] = ACTIONS(5277), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHglsname] = ACTIONS(5277), + [anon_sym_BSLASHGlsname] = ACTIONS(5277), + [anon_sym_BSLASHGLSname] = ACTIONS(5277), + [anon_sym_BSLASHglssymbol] = ACTIONS(5277), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), + [anon_sym_BSLASHglsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), + [anon_sym_BSLASHglsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), + [anon_sym_BSLASHglsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), + [anon_sym_BSLASHglsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), + [anon_sym_BSLASHglsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), + [anon_sym_BSLASHnewacronym] = ACTIONS(5277), + [anon_sym_BSLASHacrshort] = ACTIONS(5277), + [anon_sym_BSLASHAcrshort] = ACTIONS(5277), + [anon_sym_BSLASHACRshort] = ACTIONS(5277), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), + [anon_sym_BSLASHacrlong] = ACTIONS(5277), + [anon_sym_BSLASHAcrlong] = ACTIONS(5277), + [anon_sym_BSLASHACRlong] = ACTIONS(5277), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), + [anon_sym_BSLASHacrfull] = ACTIONS(5277), + [anon_sym_BSLASHAcrfull] = ACTIONS(5277), + [anon_sym_BSLASHACRfull] = ACTIONS(5277), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), + [anon_sym_BSLASHacs] = ACTIONS(5277), + [anon_sym_BSLASHAcs] = ACTIONS(5277), + [anon_sym_BSLASHacsp] = ACTIONS(5277), + [anon_sym_BSLASHAcsp] = ACTIONS(5277), + [anon_sym_BSLASHacl] = ACTIONS(5277), + [anon_sym_BSLASHAcl] = ACTIONS(5277), + [anon_sym_BSLASHaclp] = ACTIONS(5277), + [anon_sym_BSLASHAclp] = ACTIONS(5277), + [anon_sym_BSLASHacf] = ACTIONS(5277), + [anon_sym_BSLASHAcf] = ACTIONS(5277), + [anon_sym_BSLASHacfp] = ACTIONS(5277), + [anon_sym_BSLASHAcfp] = ACTIONS(5277), + [anon_sym_BSLASHac] = ACTIONS(5277), + [anon_sym_BSLASHAc] = ACTIONS(5277), + [anon_sym_BSLASHacp] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), + [anon_sym_BSLASHcolor] = ACTIONS(5277), + [anon_sym_BSLASHcolorbox] = ACTIONS(5277), + [anon_sym_BSLASHtextcolor] = ACTIONS(5277), + [anon_sym_BSLASHpagecolor] = ACTIONS(5277), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), + [anon_sym_BSLASHtext] = ACTIONS(5277), + [anon_sym_BSLASHintertext] = ACTIONS(5277), + [anon_sym_shortintertext] = ACTIONS(5277), + }, + [1021] = { + [sym_command_name] = ACTIONS(4943), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4941), + [anon_sym_RPAREN] = ACTIONS(4941), + [anon_sym_LBRACK] = ACTIONS(4941), + [anon_sym_RBRACK] = ACTIONS(4941), + [anon_sym_COMMA] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4941), + [anon_sym_BSLASHpart] = ACTIONS(4943), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddpart] = ACTIONS(4943), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4941), + [anon_sym_BSLASHchapter] = ACTIONS(4943), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddchap] = ACTIONS(4943), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsection] = ACTIONS(4943), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddsec] = ACTIONS(4943), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubsection] = ACTIONS(4943), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4943), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHparagraph] = ACTIONS(4943), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4943), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4941), + [anon_sym_BSLASHitem] = ACTIONS(4943), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4941), + [anon_sym_LBRACE] = ACTIONS(4941), + [sym_word] = ACTIONS(4943), + [sym_placeholder] = ACTIONS(4941), + [anon_sym_PLUS] = ACTIONS(4943), + [anon_sym_DASH] = ACTIONS(4943), + [anon_sym_STAR] = ACTIONS(4943), + [anon_sym_SLASH] = ACTIONS(4943), + [anon_sym_CARET] = ACTIONS(4943), + [anon_sym__] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4943), + [anon_sym_GT] = ACTIONS(4943), + [anon_sym_BANG] = ACTIONS(4943), + [anon_sym_PIPE] = ACTIONS(4943), + [anon_sym_COLON] = ACTIONS(4943), + [anon_sym_SQUOTE] = ACTIONS(4943), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4941), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4941), + [anon_sym_DOLLAR] = ACTIONS(4943), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4941), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4941), + [anon_sym_BSLASHbegin] = ACTIONS(4943), + [anon_sym_BSLASHend] = ACTIONS(4943), + [anon_sym_BSLASHusepackage] = ACTIONS(4943), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4943), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4943), + [anon_sym_BSLASHinclude] = ACTIONS(4943), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4943), + [anon_sym_BSLASHinput] = ACTIONS(4943), + [anon_sym_BSLASHsubfile] = ACTIONS(4943), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), + [anon_sym_BSLASHbibliography] = ACTIONS(4943), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4943), + [anon_sym_BSLASHincludesvg] = ACTIONS(4943), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4943), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4943), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4943), + [anon_sym_BSLASHimport] = ACTIONS(4943), + [anon_sym_BSLASHsubimport] = ACTIONS(4943), + [anon_sym_BSLASHinputfrom] = ACTIONS(4943), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4943), + [anon_sym_BSLASHincludefrom] = ACTIONS(4943), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4943), + [anon_sym_BSLASHcaption] = ACTIONS(4943), + [anon_sym_BSLASHcite] = ACTIONS(4943), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCite] = ACTIONS(4943), + [anon_sym_BSLASHnocite] = ACTIONS(4943), + [anon_sym_BSLASHcitet] = ACTIONS(4943), + [anon_sym_BSLASHcitep] = ACTIONS(4943), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteauthor] = ACTIONS(4943), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4943), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitetitle] = ACTIONS(4943), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteyear] = ACTIONS(4943), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitedate] = ACTIONS(4943), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteurl] = ACTIONS(4943), + [anon_sym_BSLASHfullcite] = ACTIONS(4943), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4943), + [anon_sym_BSLASHcitealt] = ACTIONS(4943), + [anon_sym_BSLASHcitealp] = ACTIONS(4943), + [anon_sym_BSLASHcitetext] = ACTIONS(4943), + [anon_sym_BSLASHparencite] = ACTIONS(4943), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHParencite] = ACTIONS(4943), + [anon_sym_BSLASHfootcite] = ACTIONS(4943), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4943), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4943), + [anon_sym_BSLASHtextcite] = ACTIONS(4943), + [anon_sym_BSLASHTextcite] = ACTIONS(4943), + [anon_sym_BSLASHsmartcite] = ACTIONS(4943), + [anon_sym_BSLASHSmartcite] = ACTIONS(4943), + [anon_sym_BSLASHsupercite] = ACTIONS(4943), + [anon_sym_BSLASHautocite] = ACTIONS(4943), + [anon_sym_BSLASHAutocite] = ACTIONS(4943), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHvolcite] = ACTIONS(4943), + [anon_sym_BSLASHVolcite] = ACTIONS(4943), + [anon_sym_BSLASHpvolcite] = ACTIONS(4943), + [anon_sym_BSLASHPvolcite] = ACTIONS(4943), + [anon_sym_BSLASHfvolcite] = ACTIONS(4943), + [anon_sym_BSLASHftvolcite] = ACTIONS(4943), + [anon_sym_BSLASHsvolcite] = ACTIONS(4943), + [anon_sym_BSLASHSvolcite] = ACTIONS(4943), + [anon_sym_BSLASHtvolcite] = ACTIONS(4943), + [anon_sym_BSLASHTvolcite] = ACTIONS(4943), + [anon_sym_BSLASHavolcite] = ACTIONS(4943), + [anon_sym_BSLASHAvolcite] = ACTIONS(4943), + [anon_sym_BSLASHnotecite] = ACTIONS(4943), + [anon_sym_BSLASHNotecite] = ACTIONS(4943), + [anon_sym_BSLASHpnotecite] = ACTIONS(4943), + [anon_sym_BSLASHPnotecite] = ACTIONS(4943), + [anon_sym_BSLASHfnotecite] = ACTIONS(4943), + [anon_sym_BSLASHlabel] = ACTIONS(4943), + [anon_sym_BSLASHref] = ACTIONS(4943), + [anon_sym_BSLASHeqref] = ACTIONS(4943), + [anon_sym_BSLASHvref] = ACTIONS(4943), + [anon_sym_BSLASHVref] = ACTIONS(4943), + [anon_sym_BSLASHautoref] = ACTIONS(4943), + [anon_sym_BSLASHpageref] = ACTIONS(4943), + [anon_sym_BSLASHcref] = ACTIONS(4943), + [anon_sym_BSLASHCref] = ACTIONS(4943), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4941), + [anon_sym_BSLASHnamecref] = ACTIONS(4943), + [anon_sym_BSLASHnameCref] = ACTIONS(4943), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4943), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4943), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4943), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4943), + [anon_sym_BSLASHlabelcref] = ACTIONS(4943), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4943), + [anon_sym_BSLASHcrefrange] = ACTIONS(4943), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCrefrange] = ACTIONS(4943), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4941), + [anon_sym_BSLASHnewlabel] = ACTIONS(4943), + [anon_sym_BSLASHnewcommand] = ACTIONS(4943), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4943), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4943), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4943), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4941), + [anon_sym_BSLASHdef] = ACTIONS(4943), + [anon_sym_BSLASHlet] = ACTIONS(4943), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4943), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4943), + [anon_sym_BSLASHgls] = ACTIONS(4943), + [anon_sym_BSLASHGls] = ACTIONS(4943), + [anon_sym_BSLASHGLS] = ACTIONS(4943), + [anon_sym_BSLASHglspl] = ACTIONS(4943), + [anon_sym_BSLASHGlspl] = ACTIONS(4943), + [anon_sym_BSLASHGLSpl] = ACTIONS(4943), + [anon_sym_BSLASHglsdisp] = ACTIONS(4943), + [anon_sym_BSLASHglslink] = ACTIONS(4943), + [anon_sym_BSLASHglstext] = ACTIONS(4943), + [anon_sym_BSLASHGlstext] = ACTIONS(4943), + [anon_sym_BSLASHGLStext] = ACTIONS(4943), + [anon_sym_BSLASHglsfirst] = ACTIONS(4943), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4943), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4943), + [anon_sym_BSLASHglsplural] = ACTIONS(4943), + [anon_sym_BSLASHGlsplural] = ACTIONS(4943), + [anon_sym_BSLASHGLSplural] = ACTIONS(4943), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHglsname] = ACTIONS(4943), + [anon_sym_BSLASHGlsname] = ACTIONS(4943), + [anon_sym_BSLASHGLSname] = ACTIONS(4943), + [anon_sym_BSLASHglssymbol] = ACTIONS(4943), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4943), + [anon_sym_BSLASHglsdesc] = ACTIONS(4943), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4943), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4943), + [anon_sym_BSLASHglsuseri] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4943), + [anon_sym_BSLASHglsuserii] = ACTIONS(4943), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4943), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4943), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4943), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4943), + [anon_sym_BSLASHglsuserv] = ACTIONS(4943), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4943), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4943), + [anon_sym_BSLASHglsuservi] = ACTIONS(4943), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4943), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4943), + [anon_sym_BSLASHnewacronym] = ACTIONS(4943), + [anon_sym_BSLASHacrshort] = ACTIONS(4943), + [anon_sym_BSLASHAcrshort] = ACTIONS(4943), + [anon_sym_BSLASHACRshort] = ACTIONS(4943), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4943), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4943), + [anon_sym_BSLASHacrlong] = ACTIONS(4943), + [anon_sym_BSLASHAcrlong] = ACTIONS(4943), + [anon_sym_BSLASHACRlong] = ACTIONS(4943), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4943), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4943), + [anon_sym_BSLASHacrfull] = ACTIONS(4943), + [anon_sym_BSLASHAcrfull] = ACTIONS(4943), + [anon_sym_BSLASHACRfull] = ACTIONS(4943), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4943), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4943), + [anon_sym_BSLASHacs] = ACTIONS(4943), + [anon_sym_BSLASHAcs] = ACTIONS(4943), + [anon_sym_BSLASHacsp] = ACTIONS(4943), + [anon_sym_BSLASHAcsp] = ACTIONS(4943), + [anon_sym_BSLASHacl] = ACTIONS(4943), + [anon_sym_BSLASHAcl] = ACTIONS(4943), + [anon_sym_BSLASHaclp] = ACTIONS(4943), + [anon_sym_BSLASHAclp] = ACTIONS(4943), + [anon_sym_BSLASHacf] = ACTIONS(4943), + [anon_sym_BSLASHAcf] = ACTIONS(4943), + [anon_sym_BSLASHacfp] = ACTIONS(4943), + [anon_sym_BSLASHAcfp] = ACTIONS(4943), + [anon_sym_BSLASHac] = ACTIONS(4943), + [anon_sym_BSLASHAc] = ACTIONS(4943), + [anon_sym_BSLASHacp] = ACTIONS(4943), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4943), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4943), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4943), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4943), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4943), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4943), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4943), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4943), + [anon_sym_BSLASHcolor] = ACTIONS(4943), + [anon_sym_BSLASHcolorbox] = ACTIONS(4943), + [anon_sym_BSLASHtextcolor] = ACTIONS(4943), + [anon_sym_BSLASHpagecolor] = ACTIONS(4943), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4943), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4943), + [anon_sym_BSLASHtext] = ACTIONS(4943), + [anon_sym_BSLASHintertext] = ACTIONS(4943), + [anon_sym_shortintertext] = ACTIONS(4943), + }, + [1022] = { + [sym_command_name] = ACTIONS(5281), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5281), + [anon_sym_LPAREN] = ACTIONS(5279), + [anon_sym_RPAREN] = ACTIONS(5279), + [anon_sym_LBRACK] = ACTIONS(5279), + [anon_sym_RBRACK] = ACTIONS(5279), + [anon_sym_COMMA] = ACTIONS(5279), + [anon_sym_EQ] = ACTIONS(5279), + [anon_sym_BSLASHpart] = ACTIONS(5281), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddpart] = ACTIONS(5281), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5279), + [anon_sym_BSLASHchapter] = ACTIONS(5281), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddchap] = ACTIONS(5281), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsection] = ACTIONS(5281), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddsec] = ACTIONS(5281), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubsection] = ACTIONS(5281), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5281), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHparagraph] = ACTIONS(5281), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5281), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5279), + [anon_sym_BSLASHitem] = ACTIONS(5281), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5279), + [anon_sym_LBRACE] = ACTIONS(5279), + [sym_word] = ACTIONS(5281), + [sym_placeholder] = ACTIONS(5279), + [anon_sym_PLUS] = ACTIONS(5281), + [anon_sym_DASH] = ACTIONS(5281), + [anon_sym_STAR] = ACTIONS(5281), + [anon_sym_SLASH] = ACTIONS(5281), + [anon_sym_CARET] = ACTIONS(5281), + [anon_sym__] = ACTIONS(5281), + [anon_sym_LT] = ACTIONS(5281), + [anon_sym_GT] = ACTIONS(5281), + [anon_sym_BANG] = ACTIONS(5281), + [anon_sym_PIPE] = ACTIONS(5281), + [anon_sym_COLON] = ACTIONS(5281), + [anon_sym_SQUOTE] = ACTIONS(5281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5279), + [anon_sym_DOLLAR] = ACTIONS(5281), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), + [anon_sym_BSLASHbegin] = ACTIONS(5281), + [anon_sym_BSLASHusepackage] = ACTIONS(5281), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), + [anon_sym_BSLASHinclude] = ACTIONS(5281), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), + [anon_sym_BSLASHinput] = ACTIONS(5281), + [anon_sym_BSLASHsubfile] = ACTIONS(5281), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), + [anon_sym_BSLASHbibliography] = ACTIONS(5281), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), + [anon_sym_BSLASHincludesvg] = ACTIONS(5281), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), + [anon_sym_BSLASHimport] = ACTIONS(5281), + [anon_sym_BSLASHsubimport] = ACTIONS(5281), + [anon_sym_BSLASHinputfrom] = ACTIONS(5281), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), + [anon_sym_BSLASHincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHcaption] = ACTIONS(5281), + [anon_sym_BSLASHcite] = ACTIONS(5281), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCite] = ACTIONS(5281), + [anon_sym_BSLASHnocite] = ACTIONS(5281), + [anon_sym_BSLASHcitet] = ACTIONS(5281), + [anon_sym_BSLASHcitep] = ACTIONS(5281), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteauthor] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitetitle] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteyear] = ACTIONS(5281), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitedate] = ACTIONS(5281), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteurl] = ACTIONS(5281), + [anon_sym_BSLASHfullcite] = ACTIONS(5281), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), + [anon_sym_BSLASHcitealt] = ACTIONS(5281), + [anon_sym_BSLASHcitealp] = ACTIONS(5281), + [anon_sym_BSLASHcitetext] = ACTIONS(5281), + [anon_sym_BSLASHparencite] = ACTIONS(5281), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHParencite] = ACTIONS(5281), + [anon_sym_BSLASHfootcite] = ACTIONS(5281), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), + [anon_sym_BSLASHtextcite] = ACTIONS(5281), + [anon_sym_BSLASHTextcite] = ACTIONS(5281), + [anon_sym_BSLASHsmartcite] = ACTIONS(5281), + [anon_sym_BSLASHSmartcite] = ACTIONS(5281), + [anon_sym_BSLASHsupercite] = ACTIONS(5281), + [anon_sym_BSLASHautocite] = ACTIONS(5281), + [anon_sym_BSLASHAutocite] = ACTIONS(5281), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHvolcite] = ACTIONS(5281), + [anon_sym_BSLASHVolcite] = ACTIONS(5281), + [anon_sym_BSLASHpvolcite] = ACTIONS(5281), + [anon_sym_BSLASHPvolcite] = ACTIONS(5281), + [anon_sym_BSLASHfvolcite] = ACTIONS(5281), + [anon_sym_BSLASHftvolcite] = ACTIONS(5281), + [anon_sym_BSLASHsvolcite] = ACTIONS(5281), + [anon_sym_BSLASHSvolcite] = ACTIONS(5281), + [anon_sym_BSLASHtvolcite] = ACTIONS(5281), + [anon_sym_BSLASHTvolcite] = ACTIONS(5281), + [anon_sym_BSLASHavolcite] = ACTIONS(5281), + [anon_sym_BSLASHAvolcite] = ACTIONS(5281), + [anon_sym_BSLASHnotecite] = ACTIONS(5281), + [anon_sym_BSLASHNotecite] = ACTIONS(5281), + [anon_sym_BSLASHpnotecite] = ACTIONS(5281), + [anon_sym_BSLASHPnotecite] = ACTIONS(5281), + [anon_sym_BSLASHfnotecite] = ACTIONS(5281), + [anon_sym_BSLASHlabel] = ACTIONS(5281), + [anon_sym_BSLASHref] = ACTIONS(5281), + [anon_sym_BSLASHeqref] = ACTIONS(5281), + [anon_sym_BSLASHvref] = ACTIONS(5281), + [anon_sym_BSLASHVref] = ACTIONS(5281), + [anon_sym_BSLASHautoref] = ACTIONS(5281), + [anon_sym_BSLASHpageref] = ACTIONS(5281), + [anon_sym_BSLASHcref] = ACTIONS(5281), + [anon_sym_BSLASHCref] = ACTIONS(5281), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnameCref] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHlabelcref] = ACTIONS(5281), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCrefrange] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnewlabel] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), + [anon_sym_BSLASHdef] = ACTIONS(5281), + [anon_sym_BSLASHlet] = ACTIONS(5281), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), + [anon_sym_BSLASHgls] = ACTIONS(5281), + [anon_sym_BSLASHGls] = ACTIONS(5281), + [anon_sym_BSLASHGLS] = ACTIONS(5281), + [anon_sym_BSLASHglspl] = ACTIONS(5281), + [anon_sym_BSLASHGlspl] = ACTIONS(5281), + [anon_sym_BSLASHGLSpl] = ACTIONS(5281), + [anon_sym_BSLASHglsdisp] = ACTIONS(5281), + [anon_sym_BSLASHglslink] = ACTIONS(5281), + [anon_sym_BSLASHglstext] = ACTIONS(5281), + [anon_sym_BSLASHGlstext] = ACTIONS(5281), + [anon_sym_BSLASHGLStext] = ACTIONS(5281), + [anon_sym_BSLASHglsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), + [anon_sym_BSLASHglsplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSplural] = ACTIONS(5281), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHglsname] = ACTIONS(5281), + [anon_sym_BSLASHGlsname] = ACTIONS(5281), + [anon_sym_BSLASHGLSname] = ACTIONS(5281), + [anon_sym_BSLASHglssymbol] = ACTIONS(5281), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), + [anon_sym_BSLASHglsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), + [anon_sym_BSLASHglsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), + [anon_sym_BSLASHglsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), + [anon_sym_BSLASHglsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), + [anon_sym_BSLASHglsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), + [anon_sym_BSLASHnewacronym] = ACTIONS(5281), + [anon_sym_BSLASHacrshort] = ACTIONS(5281), + [anon_sym_BSLASHAcrshort] = ACTIONS(5281), + [anon_sym_BSLASHACRshort] = ACTIONS(5281), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), + [anon_sym_BSLASHacrlong] = ACTIONS(5281), + [anon_sym_BSLASHAcrlong] = ACTIONS(5281), + [anon_sym_BSLASHACRlong] = ACTIONS(5281), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), + [anon_sym_BSLASHacrfull] = ACTIONS(5281), + [anon_sym_BSLASHAcrfull] = ACTIONS(5281), + [anon_sym_BSLASHACRfull] = ACTIONS(5281), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), + [anon_sym_BSLASHacs] = ACTIONS(5281), + [anon_sym_BSLASHAcs] = ACTIONS(5281), + [anon_sym_BSLASHacsp] = ACTIONS(5281), + [anon_sym_BSLASHAcsp] = ACTIONS(5281), + [anon_sym_BSLASHacl] = ACTIONS(5281), + [anon_sym_BSLASHAcl] = ACTIONS(5281), + [anon_sym_BSLASHaclp] = ACTIONS(5281), + [anon_sym_BSLASHAclp] = ACTIONS(5281), + [anon_sym_BSLASHacf] = ACTIONS(5281), + [anon_sym_BSLASHAcf] = ACTIONS(5281), + [anon_sym_BSLASHacfp] = ACTIONS(5281), + [anon_sym_BSLASHAcfp] = ACTIONS(5281), + [anon_sym_BSLASHac] = ACTIONS(5281), + [anon_sym_BSLASHAc] = ACTIONS(5281), + [anon_sym_BSLASHacp] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), + [anon_sym_BSLASHcolor] = ACTIONS(5281), + [anon_sym_BSLASHcolorbox] = ACTIONS(5281), + [anon_sym_BSLASHtextcolor] = ACTIONS(5281), + [anon_sym_BSLASHpagecolor] = ACTIONS(5281), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), + [anon_sym_BSLASHtext] = ACTIONS(5281), + [anon_sym_BSLASHintertext] = ACTIONS(5281), + [anon_sym_shortintertext] = ACTIONS(5281), + }, + [1023] = { + [sym_command_name] = ACTIONS(5309), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5309), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_RPAREN] = ACTIONS(5307), + [anon_sym_LBRACK] = ACTIONS(5307), + [anon_sym_RBRACK] = ACTIONS(5307), + [anon_sym_COMMA] = ACTIONS(5307), + [anon_sym_EQ] = ACTIONS(5307), + [anon_sym_BSLASHpart] = ACTIONS(5309), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddpart] = ACTIONS(5309), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5307), + [anon_sym_BSLASHchapter] = ACTIONS(5309), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddchap] = ACTIONS(5309), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsection] = ACTIONS(5309), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddsec] = ACTIONS(5309), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubsection] = ACTIONS(5309), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5309), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHparagraph] = ACTIONS(5309), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5309), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5307), + [anon_sym_BSLASHitem] = ACTIONS(5309), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5307), + [anon_sym_LBRACE] = ACTIONS(5307), + [sym_word] = ACTIONS(5309), + [sym_placeholder] = ACTIONS(5307), + [anon_sym_PLUS] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5309), + [anon_sym_STAR] = ACTIONS(5309), + [anon_sym_SLASH] = ACTIONS(5309), + [anon_sym_CARET] = ACTIONS(5309), + [anon_sym__] = ACTIONS(5309), + [anon_sym_LT] = ACTIONS(5309), + [anon_sym_GT] = ACTIONS(5309), + [anon_sym_BANG] = ACTIONS(5309), + [anon_sym_PIPE] = ACTIONS(5309), + [anon_sym_COLON] = ACTIONS(5309), + [anon_sym_SQUOTE] = ACTIONS(5309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), + [anon_sym_BSLASHbegin] = ACTIONS(5309), + [anon_sym_BSLASHusepackage] = ACTIONS(5309), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), + [anon_sym_BSLASHinclude] = ACTIONS(5309), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), + [anon_sym_BSLASHinput] = ACTIONS(5309), + [anon_sym_BSLASHsubfile] = ACTIONS(5309), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), + [anon_sym_BSLASHbibliography] = ACTIONS(5309), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), + [anon_sym_BSLASHincludesvg] = ACTIONS(5309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), + [anon_sym_BSLASHimport] = ACTIONS(5309), + [anon_sym_BSLASHsubimport] = ACTIONS(5309), + [anon_sym_BSLASHinputfrom] = ACTIONS(5309), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), + [anon_sym_BSLASHincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHcaption] = ACTIONS(5309), + [anon_sym_BSLASHcite] = ACTIONS(5309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCite] = ACTIONS(5309), + [anon_sym_BSLASHnocite] = ACTIONS(5309), + [anon_sym_BSLASHcitet] = ACTIONS(5309), + [anon_sym_BSLASHcitep] = ACTIONS(5309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteauthor] = ACTIONS(5309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitetitle] = ACTIONS(5309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteyear] = ACTIONS(5309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitedate] = ACTIONS(5309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteurl] = ACTIONS(5309), + [anon_sym_BSLASHfullcite] = ACTIONS(5309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), + [anon_sym_BSLASHcitealt] = ACTIONS(5309), + [anon_sym_BSLASHcitealp] = ACTIONS(5309), + [anon_sym_BSLASHcitetext] = ACTIONS(5309), + [anon_sym_BSLASHparencite] = ACTIONS(5309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHParencite] = ACTIONS(5309), + [anon_sym_BSLASHfootcite] = ACTIONS(5309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), + [anon_sym_BSLASHtextcite] = ACTIONS(5309), + [anon_sym_BSLASHTextcite] = ACTIONS(5309), + [anon_sym_BSLASHsmartcite] = ACTIONS(5309), + [anon_sym_BSLASHSmartcite] = ACTIONS(5309), + [anon_sym_BSLASHsupercite] = ACTIONS(5309), + [anon_sym_BSLASHautocite] = ACTIONS(5309), + [anon_sym_BSLASHAutocite] = ACTIONS(5309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHvolcite] = ACTIONS(5309), + [anon_sym_BSLASHVolcite] = ACTIONS(5309), + [anon_sym_BSLASHpvolcite] = ACTIONS(5309), + [anon_sym_BSLASHPvolcite] = ACTIONS(5309), + [anon_sym_BSLASHfvolcite] = ACTIONS(5309), + [anon_sym_BSLASHftvolcite] = ACTIONS(5309), + [anon_sym_BSLASHsvolcite] = ACTIONS(5309), + [anon_sym_BSLASHSvolcite] = ACTIONS(5309), + [anon_sym_BSLASHtvolcite] = ACTIONS(5309), + [anon_sym_BSLASHTvolcite] = ACTIONS(5309), + [anon_sym_BSLASHavolcite] = ACTIONS(5309), + [anon_sym_BSLASHAvolcite] = ACTIONS(5309), + [anon_sym_BSLASHnotecite] = ACTIONS(5309), + [anon_sym_BSLASHNotecite] = ACTIONS(5309), + [anon_sym_BSLASHpnotecite] = ACTIONS(5309), + [anon_sym_BSLASHPnotecite] = ACTIONS(5309), + [anon_sym_BSLASHfnotecite] = ACTIONS(5309), + [anon_sym_BSLASHlabel] = ACTIONS(5309), + [anon_sym_BSLASHref] = ACTIONS(5309), + [anon_sym_BSLASHeqref] = ACTIONS(5309), + [anon_sym_BSLASHvref] = ACTIONS(5309), + [anon_sym_BSLASHVref] = ACTIONS(5309), + [anon_sym_BSLASHautoref] = ACTIONS(5309), + [anon_sym_BSLASHpageref] = ACTIONS(5309), + [anon_sym_BSLASHcref] = ACTIONS(5309), + [anon_sym_BSLASHCref] = ACTIONS(5309), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnameCref] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHlabelcref] = ACTIONS(5309), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCrefrange] = ACTIONS(5309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnewlabel] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), + [anon_sym_BSLASHdef] = ACTIONS(5309), + [anon_sym_BSLASHlet] = ACTIONS(5309), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), + [anon_sym_BSLASHgls] = ACTIONS(5309), + [anon_sym_BSLASHGls] = ACTIONS(5309), + [anon_sym_BSLASHGLS] = ACTIONS(5309), + [anon_sym_BSLASHglspl] = ACTIONS(5309), + [anon_sym_BSLASHGlspl] = ACTIONS(5309), + [anon_sym_BSLASHGLSpl] = ACTIONS(5309), + [anon_sym_BSLASHglsdisp] = ACTIONS(5309), + [anon_sym_BSLASHglslink] = ACTIONS(5309), + [anon_sym_BSLASHglstext] = ACTIONS(5309), + [anon_sym_BSLASHGlstext] = ACTIONS(5309), + [anon_sym_BSLASHGLStext] = ACTIONS(5309), + [anon_sym_BSLASHglsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), + [anon_sym_BSLASHglsplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSplural] = ACTIONS(5309), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHglsname] = ACTIONS(5309), + [anon_sym_BSLASHGlsname] = ACTIONS(5309), + [anon_sym_BSLASHGLSname] = ACTIONS(5309), + [anon_sym_BSLASHglssymbol] = ACTIONS(5309), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), + [anon_sym_BSLASHglsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), + [anon_sym_BSLASHglsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), + [anon_sym_BSLASHglsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), + [anon_sym_BSLASHglsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), + [anon_sym_BSLASHglsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), + [anon_sym_BSLASHnewacronym] = ACTIONS(5309), + [anon_sym_BSLASHacrshort] = ACTIONS(5309), + [anon_sym_BSLASHAcrshort] = ACTIONS(5309), + [anon_sym_BSLASHACRshort] = ACTIONS(5309), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), + [anon_sym_BSLASHacrlong] = ACTIONS(5309), + [anon_sym_BSLASHAcrlong] = ACTIONS(5309), + [anon_sym_BSLASHACRlong] = ACTIONS(5309), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), + [anon_sym_BSLASHacrfull] = ACTIONS(5309), + [anon_sym_BSLASHAcrfull] = ACTIONS(5309), + [anon_sym_BSLASHACRfull] = ACTIONS(5309), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), + [anon_sym_BSLASHacs] = ACTIONS(5309), + [anon_sym_BSLASHAcs] = ACTIONS(5309), + [anon_sym_BSLASHacsp] = ACTIONS(5309), + [anon_sym_BSLASHAcsp] = ACTIONS(5309), + [anon_sym_BSLASHacl] = ACTIONS(5309), + [anon_sym_BSLASHAcl] = ACTIONS(5309), + [anon_sym_BSLASHaclp] = ACTIONS(5309), + [anon_sym_BSLASHAclp] = ACTIONS(5309), + [anon_sym_BSLASHacf] = ACTIONS(5309), + [anon_sym_BSLASHAcf] = ACTIONS(5309), + [anon_sym_BSLASHacfp] = ACTIONS(5309), + [anon_sym_BSLASHAcfp] = ACTIONS(5309), + [anon_sym_BSLASHac] = ACTIONS(5309), + [anon_sym_BSLASHAc] = ACTIONS(5309), + [anon_sym_BSLASHacp] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), + [anon_sym_BSLASHcolor] = ACTIONS(5309), + [anon_sym_BSLASHcolorbox] = ACTIONS(5309), + [anon_sym_BSLASHtextcolor] = ACTIONS(5309), + [anon_sym_BSLASHpagecolor] = ACTIONS(5309), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), + [anon_sym_BSLASHtext] = ACTIONS(5309), + [anon_sym_BSLASHintertext] = ACTIONS(5309), + [anon_sym_shortintertext] = ACTIONS(5309), + }, + [1024] = { + [sym_command_name] = ACTIONS(5157), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5157), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RBRACK] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_EQ] = ACTIONS(5155), + [anon_sym_BSLASHpart] = ACTIONS(5157), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddpart] = ACTIONS(5157), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5155), + [anon_sym_BSLASHchapter] = ACTIONS(5157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddchap] = ACTIONS(5157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsection] = ACTIONS(5157), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddsec] = ACTIONS(5157), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubsection] = ACTIONS(5157), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5157), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHparagraph] = ACTIONS(5157), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5157), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5155), + [anon_sym_BSLASHitem] = ACTIONS(5157), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5155), + [anon_sym_LBRACE] = ACTIONS(5155), + [sym_word] = ACTIONS(5157), + [sym_placeholder] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(5157), + [anon_sym_STAR] = ACTIONS(5157), + [anon_sym_SLASH] = ACTIONS(5157), + [anon_sym_CARET] = ACTIONS(5157), + [anon_sym__] = ACTIONS(5157), + [anon_sym_LT] = ACTIONS(5157), + [anon_sym_GT] = ACTIONS(5157), + [anon_sym_BANG] = ACTIONS(5157), + [anon_sym_PIPE] = ACTIONS(5157), + [anon_sym_COLON] = ACTIONS(5157), + [anon_sym_SQUOTE] = ACTIONS(5157), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5155), + [anon_sym_DOLLAR] = ACTIONS(5157), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), + [anon_sym_BSLASHbegin] = ACTIONS(5157), + [anon_sym_BSLASHusepackage] = ACTIONS(5157), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), + [anon_sym_BSLASHinclude] = ACTIONS(5157), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), + [anon_sym_BSLASHinput] = ACTIONS(5157), + [anon_sym_BSLASHsubfile] = ACTIONS(5157), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), + [anon_sym_BSLASHbibliography] = ACTIONS(5157), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5157), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), + [anon_sym_BSLASHimport] = ACTIONS(5157), + [anon_sym_BSLASHsubimport] = ACTIONS(5157), + [anon_sym_BSLASHinputfrom] = ACTIONS(5157), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), + [anon_sym_BSLASHincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHcaption] = ACTIONS(5157), + [anon_sym_BSLASHcite] = ACTIONS(5157), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCite] = ACTIONS(5157), + [anon_sym_BSLASHnocite] = ACTIONS(5157), + [anon_sym_BSLASHcitet] = ACTIONS(5157), + [anon_sym_BSLASHcitep] = ACTIONS(5157), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteauthor] = ACTIONS(5157), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitetitle] = ACTIONS(5157), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteyear] = ACTIONS(5157), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitedate] = ACTIONS(5157), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteurl] = ACTIONS(5157), + [anon_sym_BSLASHfullcite] = ACTIONS(5157), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), + [anon_sym_BSLASHcitealt] = ACTIONS(5157), + [anon_sym_BSLASHcitealp] = ACTIONS(5157), + [anon_sym_BSLASHcitetext] = ACTIONS(5157), + [anon_sym_BSLASHparencite] = ACTIONS(5157), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHParencite] = ACTIONS(5157), + [anon_sym_BSLASHfootcite] = ACTIONS(5157), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), + [anon_sym_BSLASHtextcite] = ACTIONS(5157), + [anon_sym_BSLASHTextcite] = ACTIONS(5157), + [anon_sym_BSLASHsmartcite] = ACTIONS(5157), + [anon_sym_BSLASHSmartcite] = ACTIONS(5157), + [anon_sym_BSLASHsupercite] = ACTIONS(5157), + [anon_sym_BSLASHautocite] = ACTIONS(5157), + [anon_sym_BSLASHAutocite] = ACTIONS(5157), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHvolcite] = ACTIONS(5157), + [anon_sym_BSLASHVolcite] = ACTIONS(5157), + [anon_sym_BSLASHpvolcite] = ACTIONS(5157), + [anon_sym_BSLASHPvolcite] = ACTIONS(5157), + [anon_sym_BSLASHfvolcite] = ACTIONS(5157), + [anon_sym_BSLASHftvolcite] = ACTIONS(5157), + [anon_sym_BSLASHsvolcite] = ACTIONS(5157), + [anon_sym_BSLASHSvolcite] = ACTIONS(5157), + [anon_sym_BSLASHtvolcite] = ACTIONS(5157), + [anon_sym_BSLASHTvolcite] = ACTIONS(5157), + [anon_sym_BSLASHavolcite] = ACTIONS(5157), + [anon_sym_BSLASHAvolcite] = ACTIONS(5157), + [anon_sym_BSLASHnotecite] = ACTIONS(5157), + [anon_sym_BSLASHNotecite] = ACTIONS(5157), + [anon_sym_BSLASHpnotecite] = ACTIONS(5157), + [anon_sym_BSLASHPnotecite] = ACTIONS(5157), + [anon_sym_BSLASHfnotecite] = ACTIONS(5157), + [anon_sym_BSLASHlabel] = ACTIONS(5157), + [anon_sym_BSLASHref] = ACTIONS(5157), + [anon_sym_BSLASHeqref] = ACTIONS(5157), + [anon_sym_BSLASHvref] = ACTIONS(5157), + [anon_sym_BSLASHVref] = ACTIONS(5157), + [anon_sym_BSLASHautoref] = ACTIONS(5157), + [anon_sym_BSLASHpageref] = ACTIONS(5157), + [anon_sym_BSLASHcref] = ACTIONS(5157), + [anon_sym_BSLASHCref] = ACTIONS(5157), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnameCref] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHlabelcref] = ACTIONS(5157), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCrefrange] = ACTIONS(5157), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnewlabel] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), + [anon_sym_BSLASHdef] = ACTIONS(5157), + [anon_sym_BSLASHlet] = ACTIONS(5157), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), + [anon_sym_BSLASHgls] = ACTIONS(5157), + [anon_sym_BSLASHGls] = ACTIONS(5157), + [anon_sym_BSLASHGLS] = ACTIONS(5157), + [anon_sym_BSLASHglspl] = ACTIONS(5157), + [anon_sym_BSLASHGlspl] = ACTIONS(5157), + [anon_sym_BSLASHGLSpl] = ACTIONS(5157), + [anon_sym_BSLASHglsdisp] = ACTIONS(5157), + [anon_sym_BSLASHglslink] = ACTIONS(5157), + [anon_sym_BSLASHglstext] = ACTIONS(5157), + [anon_sym_BSLASHGlstext] = ACTIONS(5157), + [anon_sym_BSLASHGLStext] = ACTIONS(5157), + [anon_sym_BSLASHglsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), + [anon_sym_BSLASHglsplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSplural] = ACTIONS(5157), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHglsname] = ACTIONS(5157), + [anon_sym_BSLASHGlsname] = ACTIONS(5157), + [anon_sym_BSLASHGLSname] = ACTIONS(5157), + [anon_sym_BSLASHglssymbol] = ACTIONS(5157), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), + [anon_sym_BSLASHglsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), + [anon_sym_BSLASHglsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), + [anon_sym_BSLASHglsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), + [anon_sym_BSLASHglsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), + [anon_sym_BSLASHglsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), + [anon_sym_BSLASHnewacronym] = ACTIONS(5157), + [anon_sym_BSLASHacrshort] = ACTIONS(5157), + [anon_sym_BSLASHAcrshort] = ACTIONS(5157), + [anon_sym_BSLASHACRshort] = ACTIONS(5157), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), + [anon_sym_BSLASHacrlong] = ACTIONS(5157), + [anon_sym_BSLASHAcrlong] = ACTIONS(5157), + [anon_sym_BSLASHACRlong] = ACTIONS(5157), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), + [anon_sym_BSLASHacrfull] = ACTIONS(5157), + [anon_sym_BSLASHAcrfull] = ACTIONS(5157), + [anon_sym_BSLASHACRfull] = ACTIONS(5157), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), + [anon_sym_BSLASHacs] = ACTIONS(5157), + [anon_sym_BSLASHAcs] = ACTIONS(5157), + [anon_sym_BSLASHacsp] = ACTIONS(5157), + [anon_sym_BSLASHAcsp] = ACTIONS(5157), + [anon_sym_BSLASHacl] = ACTIONS(5157), + [anon_sym_BSLASHAcl] = ACTIONS(5157), + [anon_sym_BSLASHaclp] = ACTIONS(5157), + [anon_sym_BSLASHAclp] = ACTIONS(5157), + [anon_sym_BSLASHacf] = ACTIONS(5157), + [anon_sym_BSLASHAcf] = ACTIONS(5157), + [anon_sym_BSLASHacfp] = ACTIONS(5157), + [anon_sym_BSLASHAcfp] = ACTIONS(5157), + [anon_sym_BSLASHac] = ACTIONS(5157), + [anon_sym_BSLASHAc] = ACTIONS(5157), + [anon_sym_BSLASHacp] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), + [anon_sym_BSLASHcolor] = ACTIONS(5157), + [anon_sym_BSLASHcolorbox] = ACTIONS(5157), + [anon_sym_BSLASHtextcolor] = ACTIONS(5157), + [anon_sym_BSLASHpagecolor] = ACTIONS(5157), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), + [anon_sym_BSLASHtext] = ACTIONS(5157), + [anon_sym_BSLASHintertext] = ACTIONS(5157), + [anon_sym_shortintertext] = ACTIONS(5157), + }, + [1025] = { + [sym_command_name] = ACTIONS(5081), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_BSLASHpart] = ACTIONS(5025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddpart] = ACTIONS(5025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHchapter] = ACTIONS(5025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddchap] = ACTIONS(5025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsection] = ACTIONS(5025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddsec] = ACTIONS(5025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHparagraph] = ACTIONS(5025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHitem] = ACTIONS(5025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASHbegin] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [anon_sym_BSLASHiffalse] = ACTIONS(5081), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_RPAREN] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_RBRACK] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_EQ] = ACTIONS(5079), + [anon_sym_BSLASHpart] = ACTIONS(5081), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddpart] = ACTIONS(5081), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), + [anon_sym_BSLASHchapter] = ACTIONS(5081), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddchap] = ACTIONS(5081), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsection] = ACTIONS(5081), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddsec] = ACTIONS(5081), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubsection] = ACTIONS(5081), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHparagraph] = ACTIONS(5081), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), + [anon_sym_BSLASHitem] = ACTIONS(5081), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), + [anon_sym_LBRACE] = ACTIONS(5079), + [sym_word] = ACTIONS(5081), + [sym_placeholder] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(5081), + [anon_sym_STAR] = ACTIONS(5081), + [anon_sym_SLASH] = ACTIONS(5081), + [anon_sym_CARET] = ACTIONS(5081), + [anon_sym__] = ACTIONS(5081), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_GT] = ACTIONS(5081), + [anon_sym_BANG] = ACTIONS(5081), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_COLON] = ACTIONS(5081), + [anon_sym_SQUOTE] = ACTIONS(5081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5079), + [anon_sym_BSLASHbegin] = ACTIONS(5081), + [anon_sym_BSLASHusepackage] = ACTIONS(5081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), + [anon_sym_BSLASHinclude] = ACTIONS(5081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), + [anon_sym_BSLASHinput] = ACTIONS(5081), + [anon_sym_BSLASHsubfile] = ACTIONS(5081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), + [anon_sym_BSLASHbibliography] = ACTIONS(5081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), + [anon_sym_BSLASHincludesvg] = ACTIONS(5081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), + [anon_sym_BSLASHimport] = ACTIONS(5081), + [anon_sym_BSLASHsubimport] = ACTIONS(5081), + [anon_sym_BSLASHinputfrom] = ACTIONS(5081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), + [anon_sym_BSLASHincludefrom] = ACTIONS(5081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), + [anon_sym_BSLASHcaption] = ACTIONS(5081), + [anon_sym_BSLASHcite] = ACTIONS(5081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCite] = ACTIONS(5081), + [anon_sym_BSLASHnocite] = ACTIONS(5081), + [anon_sym_BSLASHcitet] = ACTIONS(5081), + [anon_sym_BSLASHcitep] = ACTIONS(5081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteauthor] = ACTIONS(5081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitetitle] = ACTIONS(5081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteyear] = ACTIONS(5081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitedate] = ACTIONS(5081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteurl] = ACTIONS(5081), + [anon_sym_BSLASHfullcite] = ACTIONS(5081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), + [anon_sym_BSLASHcitealt] = ACTIONS(5081), + [anon_sym_BSLASHcitealp] = ACTIONS(5081), + [anon_sym_BSLASHcitetext] = ACTIONS(5081), + [anon_sym_BSLASHparencite] = ACTIONS(5081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHParencite] = ACTIONS(5081), + [anon_sym_BSLASHfootcite] = ACTIONS(5081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), + [anon_sym_BSLASHtextcite] = ACTIONS(5081), + [anon_sym_BSLASHTextcite] = ACTIONS(5081), + [anon_sym_BSLASHsmartcite] = ACTIONS(5081), + [anon_sym_BSLASHSmartcite] = ACTIONS(5081), + [anon_sym_BSLASHsupercite] = ACTIONS(5081), + [anon_sym_BSLASHautocite] = ACTIONS(5081), + [anon_sym_BSLASHAutocite] = ACTIONS(5081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHvolcite] = ACTIONS(5081), + [anon_sym_BSLASHVolcite] = ACTIONS(5081), + [anon_sym_BSLASHpvolcite] = ACTIONS(5081), + [anon_sym_BSLASHPvolcite] = ACTIONS(5081), + [anon_sym_BSLASHfvolcite] = ACTIONS(5081), + [anon_sym_BSLASHftvolcite] = ACTIONS(5081), + [anon_sym_BSLASHsvolcite] = ACTIONS(5081), + [anon_sym_BSLASHSvolcite] = ACTIONS(5081), + [anon_sym_BSLASHtvolcite] = ACTIONS(5081), + [anon_sym_BSLASHTvolcite] = ACTIONS(5081), + [anon_sym_BSLASHavolcite] = ACTIONS(5081), + [anon_sym_BSLASHAvolcite] = ACTIONS(5081), + [anon_sym_BSLASHnotecite] = ACTIONS(5081), + [anon_sym_BSLASHNotecite] = ACTIONS(5081), + [anon_sym_BSLASHpnotecite] = ACTIONS(5081), + [anon_sym_BSLASHPnotecite] = ACTIONS(5081), + [anon_sym_BSLASHfnotecite] = ACTIONS(5081), + [anon_sym_BSLASHlabel] = ACTIONS(5081), + [anon_sym_BSLASHref] = ACTIONS(5081), + [anon_sym_BSLASHeqref] = ACTIONS(5081), + [anon_sym_BSLASHvref] = ACTIONS(5081), + [anon_sym_BSLASHVref] = ACTIONS(5081), + [anon_sym_BSLASHautoref] = ACTIONS(5081), + [anon_sym_BSLASHpageref] = ACTIONS(5081), + [anon_sym_BSLASHcref] = ACTIONS(5081), + [anon_sym_BSLASHCref] = ACTIONS(5081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), + [anon_sym_BSLASHnamecref] = ACTIONS(5081), + [anon_sym_BSLASHnameCref] = ACTIONS(5081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), + [anon_sym_BSLASHlabelcref] = ACTIONS(5081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), + [anon_sym_BSLASHcrefrange] = ACTIONS(5081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCrefrange] = ACTIONS(5081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), + [anon_sym_BSLASHnewlabel] = ACTIONS(5081), + [anon_sym_BSLASHnewcommand] = ACTIONS(5081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), + [anon_sym_BSLASHdef] = ACTIONS(5081), + [anon_sym_BSLASHlet] = ACTIONS(5081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), + [anon_sym_BSLASHgls] = ACTIONS(5081), + [anon_sym_BSLASHGls] = ACTIONS(5081), + [anon_sym_BSLASHGLS] = ACTIONS(5081), + [anon_sym_BSLASHglspl] = ACTIONS(5081), + [anon_sym_BSLASHGlspl] = ACTIONS(5081), + [anon_sym_BSLASHGLSpl] = ACTIONS(5081), + [anon_sym_BSLASHglsdisp] = ACTIONS(5081), + [anon_sym_BSLASHglslink] = ACTIONS(5081), + [anon_sym_BSLASHglstext] = ACTIONS(5081), + [anon_sym_BSLASHGlstext] = ACTIONS(5081), + [anon_sym_BSLASHGLStext] = ACTIONS(5081), + [anon_sym_BSLASHglsfirst] = ACTIONS(5081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), + [anon_sym_BSLASHglsplural] = ACTIONS(5081), + [anon_sym_BSLASHGlsplural] = ACTIONS(5081), + [anon_sym_BSLASHGLSplural] = ACTIONS(5081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHglsname] = ACTIONS(5081), + [anon_sym_BSLASHGlsname] = ACTIONS(5081), + [anon_sym_BSLASHGLSname] = ACTIONS(5081), + [anon_sym_BSLASHglssymbol] = ACTIONS(5081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), + [anon_sym_BSLASHglsdesc] = ACTIONS(5081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), + [anon_sym_BSLASHglsuseri] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), + [anon_sym_BSLASHglsuserii] = ACTIONS(5081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), + [anon_sym_BSLASHglsuserv] = ACTIONS(5081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), + [anon_sym_BSLASHglsuservi] = ACTIONS(5081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), + [anon_sym_BSLASHnewacronym] = ACTIONS(5081), + [anon_sym_BSLASHacrshort] = ACTIONS(5081), + [anon_sym_BSLASHAcrshort] = ACTIONS(5081), + [anon_sym_BSLASHACRshort] = ACTIONS(5081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), + [anon_sym_BSLASHacrlong] = ACTIONS(5081), + [anon_sym_BSLASHAcrlong] = ACTIONS(5081), + [anon_sym_BSLASHACRlong] = ACTIONS(5081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), + [anon_sym_BSLASHacrfull] = ACTIONS(5081), + [anon_sym_BSLASHAcrfull] = ACTIONS(5081), + [anon_sym_BSLASHACRfull] = ACTIONS(5081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), + [anon_sym_BSLASHacs] = ACTIONS(5081), + [anon_sym_BSLASHAcs] = ACTIONS(5081), + [anon_sym_BSLASHacsp] = ACTIONS(5081), + [anon_sym_BSLASHAcsp] = ACTIONS(5081), + [anon_sym_BSLASHacl] = ACTIONS(5081), + [anon_sym_BSLASHAcl] = ACTIONS(5081), + [anon_sym_BSLASHaclp] = ACTIONS(5081), + [anon_sym_BSLASHAclp] = ACTIONS(5081), + [anon_sym_BSLASHacf] = ACTIONS(5081), + [anon_sym_BSLASHAcf] = ACTIONS(5081), + [anon_sym_BSLASHacfp] = ACTIONS(5081), + [anon_sym_BSLASHAcfp] = ACTIONS(5081), + [anon_sym_BSLASHac] = ACTIONS(5081), + [anon_sym_BSLASHAc] = ACTIONS(5081), + [anon_sym_BSLASHacp] = ACTIONS(5081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), + [anon_sym_BSLASHcolor] = ACTIONS(5081), + [anon_sym_BSLASHcolorbox] = ACTIONS(5081), + [anon_sym_BSLASHtextcolor] = ACTIONS(5081), + [anon_sym_BSLASHpagecolor] = ACTIONS(5081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), + [anon_sym_BSLASHtext] = ACTIONS(5081), + [anon_sym_BSLASHintertext] = ACTIONS(5081), + [anon_sym_shortintertext] = ACTIONS(5081), }, - [1148] = { - [sym_command_name] = ACTIONS(5021), + [1026] = { + [sym_command_name] = ACTIONS(5085), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_BSLASHpart] = ACTIONS(5021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddpart] = ACTIONS(5021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHchapter] = ACTIONS(5021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddchap] = ACTIONS(5021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsection] = ACTIONS(5021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddsec] = ACTIONS(5021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHparagraph] = ACTIONS(5021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHitem] = ACTIONS(5021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASHbegin] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHiffalse] = ACTIONS(5085), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_RPAREN] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_RBRACK] = ACTIONS(5083), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5083), + [anon_sym_BSLASHpart] = ACTIONS(5085), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddpart] = ACTIONS(5085), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), + [anon_sym_BSLASHchapter] = ACTIONS(5085), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddchap] = ACTIONS(5085), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsection] = ACTIONS(5085), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddsec] = ACTIONS(5085), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubsection] = ACTIONS(5085), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHparagraph] = ACTIONS(5085), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), + [anon_sym_BSLASHitem] = ACTIONS(5085), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), + [anon_sym_LBRACE] = ACTIONS(5083), + [sym_word] = ACTIONS(5085), + [sym_placeholder] = ACTIONS(5083), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_CARET] = ACTIONS(5085), + [anon_sym__] = ACTIONS(5085), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_PIPE] = ACTIONS(5085), + [anon_sym_COLON] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), + [anon_sym_DOLLAR] = ACTIONS(5085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5083), + [anon_sym_BSLASHbegin] = ACTIONS(5085), + [anon_sym_BSLASHusepackage] = ACTIONS(5085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), + [anon_sym_BSLASHinclude] = ACTIONS(5085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), + [anon_sym_BSLASHinput] = ACTIONS(5085), + [anon_sym_BSLASHsubfile] = ACTIONS(5085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), + [anon_sym_BSLASHbibliography] = ACTIONS(5085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), + [anon_sym_BSLASHincludesvg] = ACTIONS(5085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), + [anon_sym_BSLASHimport] = ACTIONS(5085), + [anon_sym_BSLASHsubimport] = ACTIONS(5085), + [anon_sym_BSLASHinputfrom] = ACTIONS(5085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), + [anon_sym_BSLASHincludefrom] = ACTIONS(5085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), + [anon_sym_BSLASHcaption] = ACTIONS(5085), + [anon_sym_BSLASHcite] = ACTIONS(5085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCite] = ACTIONS(5085), + [anon_sym_BSLASHnocite] = ACTIONS(5085), + [anon_sym_BSLASHcitet] = ACTIONS(5085), + [anon_sym_BSLASHcitep] = ACTIONS(5085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteauthor] = ACTIONS(5085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitetitle] = ACTIONS(5085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteyear] = ACTIONS(5085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitedate] = ACTIONS(5085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteurl] = ACTIONS(5085), + [anon_sym_BSLASHfullcite] = ACTIONS(5085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), + [anon_sym_BSLASHcitealt] = ACTIONS(5085), + [anon_sym_BSLASHcitealp] = ACTIONS(5085), + [anon_sym_BSLASHcitetext] = ACTIONS(5085), + [anon_sym_BSLASHparencite] = ACTIONS(5085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHParencite] = ACTIONS(5085), + [anon_sym_BSLASHfootcite] = ACTIONS(5085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), + [anon_sym_BSLASHtextcite] = ACTIONS(5085), + [anon_sym_BSLASHTextcite] = ACTIONS(5085), + [anon_sym_BSLASHsmartcite] = ACTIONS(5085), + [anon_sym_BSLASHSmartcite] = ACTIONS(5085), + [anon_sym_BSLASHsupercite] = ACTIONS(5085), + [anon_sym_BSLASHautocite] = ACTIONS(5085), + [anon_sym_BSLASHAutocite] = ACTIONS(5085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHvolcite] = ACTIONS(5085), + [anon_sym_BSLASHVolcite] = ACTIONS(5085), + [anon_sym_BSLASHpvolcite] = ACTIONS(5085), + [anon_sym_BSLASHPvolcite] = ACTIONS(5085), + [anon_sym_BSLASHfvolcite] = ACTIONS(5085), + [anon_sym_BSLASHftvolcite] = ACTIONS(5085), + [anon_sym_BSLASHsvolcite] = ACTIONS(5085), + [anon_sym_BSLASHSvolcite] = ACTIONS(5085), + [anon_sym_BSLASHtvolcite] = ACTIONS(5085), + [anon_sym_BSLASHTvolcite] = ACTIONS(5085), + [anon_sym_BSLASHavolcite] = ACTIONS(5085), + [anon_sym_BSLASHAvolcite] = ACTIONS(5085), + [anon_sym_BSLASHnotecite] = ACTIONS(5085), + [anon_sym_BSLASHNotecite] = ACTIONS(5085), + [anon_sym_BSLASHpnotecite] = ACTIONS(5085), + [anon_sym_BSLASHPnotecite] = ACTIONS(5085), + [anon_sym_BSLASHfnotecite] = ACTIONS(5085), + [anon_sym_BSLASHlabel] = ACTIONS(5085), + [anon_sym_BSLASHref] = ACTIONS(5085), + [anon_sym_BSLASHeqref] = ACTIONS(5085), + [anon_sym_BSLASHvref] = ACTIONS(5085), + [anon_sym_BSLASHVref] = ACTIONS(5085), + [anon_sym_BSLASHautoref] = ACTIONS(5085), + [anon_sym_BSLASHpageref] = ACTIONS(5085), + [anon_sym_BSLASHcref] = ACTIONS(5085), + [anon_sym_BSLASHCref] = ACTIONS(5085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), + [anon_sym_BSLASHnamecref] = ACTIONS(5085), + [anon_sym_BSLASHnameCref] = ACTIONS(5085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), + [anon_sym_BSLASHlabelcref] = ACTIONS(5085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), + [anon_sym_BSLASHcrefrange] = ACTIONS(5085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCrefrange] = ACTIONS(5085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), + [anon_sym_BSLASHnewlabel] = ACTIONS(5085), + [anon_sym_BSLASHnewcommand] = ACTIONS(5085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), + [anon_sym_BSLASHdef] = ACTIONS(5085), + [anon_sym_BSLASHlet] = ACTIONS(5085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), + [anon_sym_BSLASHgls] = ACTIONS(5085), + [anon_sym_BSLASHGls] = ACTIONS(5085), + [anon_sym_BSLASHGLS] = ACTIONS(5085), + [anon_sym_BSLASHglspl] = ACTIONS(5085), + [anon_sym_BSLASHGlspl] = ACTIONS(5085), + [anon_sym_BSLASHGLSpl] = ACTIONS(5085), + [anon_sym_BSLASHglsdisp] = ACTIONS(5085), + [anon_sym_BSLASHglslink] = ACTIONS(5085), + [anon_sym_BSLASHglstext] = ACTIONS(5085), + [anon_sym_BSLASHGlstext] = ACTIONS(5085), + [anon_sym_BSLASHGLStext] = ACTIONS(5085), + [anon_sym_BSLASHglsfirst] = ACTIONS(5085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), + [anon_sym_BSLASHglsplural] = ACTIONS(5085), + [anon_sym_BSLASHGlsplural] = ACTIONS(5085), + [anon_sym_BSLASHGLSplural] = ACTIONS(5085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHglsname] = ACTIONS(5085), + [anon_sym_BSLASHGlsname] = ACTIONS(5085), + [anon_sym_BSLASHGLSname] = ACTIONS(5085), + [anon_sym_BSLASHglssymbol] = ACTIONS(5085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), + [anon_sym_BSLASHglsdesc] = ACTIONS(5085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), + [anon_sym_BSLASHglsuseri] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), + [anon_sym_BSLASHglsuserii] = ACTIONS(5085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), + [anon_sym_BSLASHglsuserv] = ACTIONS(5085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), + [anon_sym_BSLASHglsuservi] = ACTIONS(5085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), + [anon_sym_BSLASHnewacronym] = ACTIONS(5085), + [anon_sym_BSLASHacrshort] = ACTIONS(5085), + [anon_sym_BSLASHAcrshort] = ACTIONS(5085), + [anon_sym_BSLASHACRshort] = ACTIONS(5085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), + [anon_sym_BSLASHacrlong] = ACTIONS(5085), + [anon_sym_BSLASHAcrlong] = ACTIONS(5085), + [anon_sym_BSLASHACRlong] = ACTIONS(5085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), + [anon_sym_BSLASHacrfull] = ACTIONS(5085), + [anon_sym_BSLASHAcrfull] = ACTIONS(5085), + [anon_sym_BSLASHACRfull] = ACTIONS(5085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), + [anon_sym_BSLASHacs] = ACTIONS(5085), + [anon_sym_BSLASHAcs] = ACTIONS(5085), + [anon_sym_BSLASHacsp] = ACTIONS(5085), + [anon_sym_BSLASHAcsp] = ACTIONS(5085), + [anon_sym_BSLASHacl] = ACTIONS(5085), + [anon_sym_BSLASHAcl] = ACTIONS(5085), + [anon_sym_BSLASHaclp] = ACTIONS(5085), + [anon_sym_BSLASHAclp] = ACTIONS(5085), + [anon_sym_BSLASHacf] = ACTIONS(5085), + [anon_sym_BSLASHAcf] = ACTIONS(5085), + [anon_sym_BSLASHacfp] = ACTIONS(5085), + [anon_sym_BSLASHAcfp] = ACTIONS(5085), + [anon_sym_BSLASHac] = ACTIONS(5085), + [anon_sym_BSLASHAc] = ACTIONS(5085), + [anon_sym_BSLASHacp] = ACTIONS(5085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), + [anon_sym_BSLASHcolor] = ACTIONS(5085), + [anon_sym_BSLASHcolorbox] = ACTIONS(5085), + [anon_sym_BSLASHtextcolor] = ACTIONS(5085), + [anon_sym_BSLASHpagecolor] = ACTIONS(5085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), + [anon_sym_BSLASHtext] = ACTIONS(5085), + [anon_sym_BSLASHintertext] = ACTIONS(5085), + [anon_sym_shortintertext] = ACTIONS(5085), + }, + [1027] = { + [sym_command_name] = ACTIONS(5089), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5089), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_RPAREN] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_RBRACK] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_EQ] = ACTIONS(5087), + [anon_sym_BSLASHpart] = ACTIONS(5089), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddpart] = ACTIONS(5089), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), + [anon_sym_BSLASHchapter] = ACTIONS(5089), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddchap] = ACTIONS(5089), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsection] = ACTIONS(5089), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddsec] = ACTIONS(5089), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubsection] = ACTIONS(5089), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHparagraph] = ACTIONS(5089), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), + [anon_sym_BSLASHitem] = ACTIONS(5089), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), + [anon_sym_LBRACE] = ACTIONS(5087), + [sym_word] = ACTIONS(5089), + [sym_placeholder] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5089), + [anon_sym__] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_BANG] = ACTIONS(5089), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_COLON] = ACTIONS(5089), + [anon_sym_SQUOTE] = ACTIONS(5089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), + [anon_sym_DOLLAR] = ACTIONS(5089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5087), + [anon_sym_BSLASHbegin] = ACTIONS(5089), + [anon_sym_BSLASHusepackage] = ACTIONS(5089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), + [anon_sym_BSLASHinclude] = ACTIONS(5089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), + [anon_sym_BSLASHinput] = ACTIONS(5089), + [anon_sym_BSLASHsubfile] = ACTIONS(5089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), + [anon_sym_BSLASHbibliography] = ACTIONS(5089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), + [anon_sym_BSLASHincludesvg] = ACTIONS(5089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), + [anon_sym_BSLASHimport] = ACTIONS(5089), + [anon_sym_BSLASHsubimport] = ACTIONS(5089), + [anon_sym_BSLASHinputfrom] = ACTIONS(5089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), + [anon_sym_BSLASHincludefrom] = ACTIONS(5089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), + [anon_sym_BSLASHcaption] = ACTIONS(5089), + [anon_sym_BSLASHcite] = ACTIONS(5089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCite] = ACTIONS(5089), + [anon_sym_BSLASHnocite] = ACTIONS(5089), + [anon_sym_BSLASHcitet] = ACTIONS(5089), + [anon_sym_BSLASHcitep] = ACTIONS(5089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteauthor] = ACTIONS(5089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitetitle] = ACTIONS(5089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteyear] = ACTIONS(5089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitedate] = ACTIONS(5089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteurl] = ACTIONS(5089), + [anon_sym_BSLASHfullcite] = ACTIONS(5089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), + [anon_sym_BSLASHcitealt] = ACTIONS(5089), + [anon_sym_BSLASHcitealp] = ACTIONS(5089), + [anon_sym_BSLASHcitetext] = ACTIONS(5089), + [anon_sym_BSLASHparencite] = ACTIONS(5089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHParencite] = ACTIONS(5089), + [anon_sym_BSLASHfootcite] = ACTIONS(5089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), + [anon_sym_BSLASHtextcite] = ACTIONS(5089), + [anon_sym_BSLASHTextcite] = ACTIONS(5089), + [anon_sym_BSLASHsmartcite] = ACTIONS(5089), + [anon_sym_BSLASHSmartcite] = ACTIONS(5089), + [anon_sym_BSLASHsupercite] = ACTIONS(5089), + [anon_sym_BSLASHautocite] = ACTIONS(5089), + [anon_sym_BSLASHAutocite] = ACTIONS(5089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHvolcite] = ACTIONS(5089), + [anon_sym_BSLASHVolcite] = ACTIONS(5089), + [anon_sym_BSLASHpvolcite] = ACTIONS(5089), + [anon_sym_BSLASHPvolcite] = ACTIONS(5089), + [anon_sym_BSLASHfvolcite] = ACTIONS(5089), + [anon_sym_BSLASHftvolcite] = ACTIONS(5089), + [anon_sym_BSLASHsvolcite] = ACTIONS(5089), + [anon_sym_BSLASHSvolcite] = ACTIONS(5089), + [anon_sym_BSLASHtvolcite] = ACTIONS(5089), + [anon_sym_BSLASHTvolcite] = ACTIONS(5089), + [anon_sym_BSLASHavolcite] = ACTIONS(5089), + [anon_sym_BSLASHAvolcite] = ACTIONS(5089), + [anon_sym_BSLASHnotecite] = ACTIONS(5089), + [anon_sym_BSLASHNotecite] = ACTIONS(5089), + [anon_sym_BSLASHpnotecite] = ACTIONS(5089), + [anon_sym_BSLASHPnotecite] = ACTIONS(5089), + [anon_sym_BSLASHfnotecite] = ACTIONS(5089), + [anon_sym_BSLASHlabel] = ACTIONS(5089), + [anon_sym_BSLASHref] = ACTIONS(5089), + [anon_sym_BSLASHeqref] = ACTIONS(5089), + [anon_sym_BSLASHvref] = ACTIONS(5089), + [anon_sym_BSLASHVref] = ACTIONS(5089), + [anon_sym_BSLASHautoref] = ACTIONS(5089), + [anon_sym_BSLASHpageref] = ACTIONS(5089), + [anon_sym_BSLASHcref] = ACTIONS(5089), + [anon_sym_BSLASHCref] = ACTIONS(5089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), + [anon_sym_BSLASHnamecref] = ACTIONS(5089), + [anon_sym_BSLASHnameCref] = ACTIONS(5089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), + [anon_sym_BSLASHlabelcref] = ACTIONS(5089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), + [anon_sym_BSLASHcrefrange] = ACTIONS(5089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCrefrange] = ACTIONS(5089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), + [anon_sym_BSLASHnewlabel] = ACTIONS(5089), + [anon_sym_BSLASHnewcommand] = ACTIONS(5089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), + [anon_sym_BSLASHdef] = ACTIONS(5089), + [anon_sym_BSLASHlet] = ACTIONS(5089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), + [anon_sym_BSLASHgls] = ACTIONS(5089), + [anon_sym_BSLASHGls] = ACTIONS(5089), + [anon_sym_BSLASHGLS] = ACTIONS(5089), + [anon_sym_BSLASHglspl] = ACTIONS(5089), + [anon_sym_BSLASHGlspl] = ACTIONS(5089), + [anon_sym_BSLASHGLSpl] = ACTIONS(5089), + [anon_sym_BSLASHglsdisp] = ACTIONS(5089), + [anon_sym_BSLASHglslink] = ACTIONS(5089), + [anon_sym_BSLASHglstext] = ACTIONS(5089), + [anon_sym_BSLASHGlstext] = ACTIONS(5089), + [anon_sym_BSLASHGLStext] = ACTIONS(5089), + [anon_sym_BSLASHglsfirst] = ACTIONS(5089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), + [anon_sym_BSLASHglsplural] = ACTIONS(5089), + [anon_sym_BSLASHGlsplural] = ACTIONS(5089), + [anon_sym_BSLASHGLSplural] = ACTIONS(5089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHglsname] = ACTIONS(5089), + [anon_sym_BSLASHGlsname] = ACTIONS(5089), + [anon_sym_BSLASHGLSname] = ACTIONS(5089), + [anon_sym_BSLASHglssymbol] = ACTIONS(5089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), + [anon_sym_BSLASHglsdesc] = ACTIONS(5089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), + [anon_sym_BSLASHglsuseri] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), + [anon_sym_BSLASHglsuserii] = ACTIONS(5089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), + [anon_sym_BSLASHglsuserv] = ACTIONS(5089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), + [anon_sym_BSLASHglsuservi] = ACTIONS(5089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), + [anon_sym_BSLASHnewacronym] = ACTIONS(5089), + [anon_sym_BSLASHacrshort] = ACTIONS(5089), + [anon_sym_BSLASHAcrshort] = ACTIONS(5089), + [anon_sym_BSLASHACRshort] = ACTIONS(5089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), + [anon_sym_BSLASHacrlong] = ACTIONS(5089), + [anon_sym_BSLASHAcrlong] = ACTIONS(5089), + [anon_sym_BSLASHACRlong] = ACTIONS(5089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), + [anon_sym_BSLASHacrfull] = ACTIONS(5089), + [anon_sym_BSLASHAcrfull] = ACTIONS(5089), + [anon_sym_BSLASHACRfull] = ACTIONS(5089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), + [anon_sym_BSLASHacs] = ACTIONS(5089), + [anon_sym_BSLASHAcs] = ACTIONS(5089), + [anon_sym_BSLASHacsp] = ACTIONS(5089), + [anon_sym_BSLASHAcsp] = ACTIONS(5089), + [anon_sym_BSLASHacl] = ACTIONS(5089), + [anon_sym_BSLASHAcl] = ACTIONS(5089), + [anon_sym_BSLASHaclp] = ACTIONS(5089), + [anon_sym_BSLASHAclp] = ACTIONS(5089), + [anon_sym_BSLASHacf] = ACTIONS(5089), + [anon_sym_BSLASHAcf] = ACTIONS(5089), + [anon_sym_BSLASHacfp] = ACTIONS(5089), + [anon_sym_BSLASHAcfp] = ACTIONS(5089), + [anon_sym_BSLASHac] = ACTIONS(5089), + [anon_sym_BSLASHAc] = ACTIONS(5089), + [anon_sym_BSLASHacp] = ACTIONS(5089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), + [anon_sym_BSLASHcolor] = ACTIONS(5089), + [anon_sym_BSLASHcolorbox] = ACTIONS(5089), + [anon_sym_BSLASHtextcolor] = ACTIONS(5089), + [anon_sym_BSLASHpagecolor] = ACTIONS(5089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHtext] = ACTIONS(5089), + [anon_sym_BSLASHintertext] = ACTIONS(5089), + [anon_sym_shortintertext] = ACTIONS(5089), }, - [1149] = { - [sym_command_name] = ACTIONS(4999), + [1028] = { + [sym_command_name] = ACTIONS(5093), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4997), - [anon_sym_BSLASHpart] = ACTIONS(4999), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddpart] = ACTIONS(4999), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHchapter] = ACTIONS(4999), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddchap] = ACTIONS(4999), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsection] = ACTIONS(4999), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddsec] = ACTIONS(4999), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHparagraph] = ACTIONS(4999), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHitem] = ACTIONS(4999), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4997), - [sym_word] = ACTIONS(4999), - [sym_placeholder] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym__] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4997), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), - [anon_sym_BSLASHbegin] = ACTIONS(4999), - [anon_sym_BSLASHusepackage] = ACTIONS(4999), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), - [anon_sym_BSLASHinclude] = ACTIONS(4999), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), - [anon_sym_BSLASHinput] = ACTIONS(4999), - [anon_sym_BSLASHsubfile] = ACTIONS(4999), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), - [anon_sym_BSLASHbibliography] = ACTIONS(4999), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), - [anon_sym_BSLASHincludesvg] = ACTIONS(4999), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), - [anon_sym_BSLASHimport] = ACTIONS(4999), - [anon_sym_BSLASHsubimport] = ACTIONS(4999), - [anon_sym_BSLASHinputfrom] = ACTIONS(4999), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), - [anon_sym_BSLASHincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHcaption] = ACTIONS(4999), - [anon_sym_BSLASHcite] = ACTIONS(4999), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCite] = ACTIONS(4999), - [anon_sym_BSLASHnocite] = ACTIONS(4999), - [anon_sym_BSLASHcitet] = ACTIONS(4999), - [anon_sym_BSLASHcitep] = ACTIONS(4999), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteauthor] = ACTIONS(4999), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitetitle] = ACTIONS(4999), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteyear] = ACTIONS(4999), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitedate] = ACTIONS(4999), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteurl] = ACTIONS(4999), - [anon_sym_BSLASHfullcite] = ACTIONS(4999), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), - [anon_sym_BSLASHcitealt] = ACTIONS(4999), - [anon_sym_BSLASHcitealp] = ACTIONS(4999), - [anon_sym_BSLASHcitetext] = ACTIONS(4999), - [anon_sym_BSLASHparencite] = ACTIONS(4999), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHParencite] = ACTIONS(4999), - [anon_sym_BSLASHfootcite] = ACTIONS(4999), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), - [anon_sym_BSLASHtextcite] = ACTIONS(4999), - [anon_sym_BSLASHTextcite] = ACTIONS(4999), - [anon_sym_BSLASHsmartcite] = ACTIONS(4999), - [anon_sym_BSLASHSmartcite] = ACTIONS(4999), - [anon_sym_BSLASHsupercite] = ACTIONS(4999), - [anon_sym_BSLASHautocite] = ACTIONS(4999), - [anon_sym_BSLASHAutocite] = ACTIONS(4999), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHvolcite] = ACTIONS(4999), - [anon_sym_BSLASHVolcite] = ACTIONS(4999), - [anon_sym_BSLASHpvolcite] = ACTIONS(4999), - [anon_sym_BSLASHPvolcite] = ACTIONS(4999), - [anon_sym_BSLASHfvolcite] = ACTIONS(4999), - [anon_sym_BSLASHftvolcite] = ACTIONS(4999), - [anon_sym_BSLASHsvolcite] = ACTIONS(4999), - [anon_sym_BSLASHSvolcite] = ACTIONS(4999), - [anon_sym_BSLASHtvolcite] = ACTIONS(4999), - [anon_sym_BSLASHTvolcite] = ACTIONS(4999), - [anon_sym_BSLASHavolcite] = ACTIONS(4999), - [anon_sym_BSLASHAvolcite] = ACTIONS(4999), - [anon_sym_BSLASHnotecite] = ACTIONS(4999), - [anon_sym_BSLASHNotecite] = ACTIONS(4999), - [anon_sym_BSLASHpnotecite] = ACTIONS(4999), - [anon_sym_BSLASHPnotecite] = ACTIONS(4999), - [anon_sym_BSLASHfnotecite] = ACTIONS(4999), - [anon_sym_BSLASHlabel] = ACTIONS(4999), - [anon_sym_BSLASHref] = ACTIONS(4999), - [anon_sym_BSLASHeqref] = ACTIONS(4999), - [anon_sym_BSLASHvref] = ACTIONS(4999), - [anon_sym_BSLASHVref] = ACTIONS(4999), - [anon_sym_BSLASHautoref] = ACTIONS(4999), - [anon_sym_BSLASHpageref] = ACTIONS(4999), - [anon_sym_BSLASHcref] = ACTIONS(4999), - [anon_sym_BSLASHCref] = ACTIONS(4999), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnameCref] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHlabelcref] = ACTIONS(4999), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCrefrange] = ACTIONS(4999), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnewlabel] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdef] = ACTIONS(4999), - [anon_sym_BSLASHlet] = ACTIONS(4999), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), - [anon_sym_BSLASHgls] = ACTIONS(4999), - [anon_sym_BSLASHGls] = ACTIONS(4999), - [anon_sym_BSLASHGLS] = ACTIONS(4999), - [anon_sym_BSLASHglspl] = ACTIONS(4999), - [anon_sym_BSLASHGlspl] = ACTIONS(4999), - [anon_sym_BSLASHGLSpl] = ACTIONS(4999), - [anon_sym_BSLASHglsdisp] = ACTIONS(4999), - [anon_sym_BSLASHglslink] = ACTIONS(4999), - [anon_sym_BSLASHglstext] = ACTIONS(4999), - [anon_sym_BSLASHGlstext] = ACTIONS(4999), - [anon_sym_BSLASHGLStext] = ACTIONS(4999), - [anon_sym_BSLASHglsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), - [anon_sym_BSLASHglsplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSplural] = ACTIONS(4999), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHglsname] = ACTIONS(4999), - [anon_sym_BSLASHGlsname] = ACTIONS(4999), - [anon_sym_BSLASHGLSname] = ACTIONS(4999), - [anon_sym_BSLASHglssymbol] = ACTIONS(4999), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), - [anon_sym_BSLASHglsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), - [anon_sym_BSLASHglsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), - [anon_sym_BSLASHglsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), - [anon_sym_BSLASHglsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), - [anon_sym_BSLASHglsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), - [anon_sym_BSLASHnewacronym] = ACTIONS(4999), - [anon_sym_BSLASHacrshort] = ACTIONS(4999), - [anon_sym_BSLASHAcrshort] = ACTIONS(4999), - [anon_sym_BSLASHACRshort] = ACTIONS(4999), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), - [anon_sym_BSLASHacrlong] = ACTIONS(4999), - [anon_sym_BSLASHAcrlong] = ACTIONS(4999), - [anon_sym_BSLASHACRlong] = ACTIONS(4999), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), - [anon_sym_BSLASHacrfull] = ACTIONS(4999), - [anon_sym_BSLASHAcrfull] = ACTIONS(4999), - [anon_sym_BSLASHACRfull] = ACTIONS(4999), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), - [anon_sym_BSLASHacs] = ACTIONS(4999), - [anon_sym_BSLASHAcs] = ACTIONS(4999), - [anon_sym_BSLASHacsp] = ACTIONS(4999), - [anon_sym_BSLASHAcsp] = ACTIONS(4999), - [anon_sym_BSLASHacl] = ACTIONS(4999), - [anon_sym_BSLASHAcl] = ACTIONS(4999), - [anon_sym_BSLASHaclp] = ACTIONS(4999), - [anon_sym_BSLASHAclp] = ACTIONS(4999), - [anon_sym_BSLASHacf] = ACTIONS(4999), - [anon_sym_BSLASHAcf] = ACTIONS(4999), - [anon_sym_BSLASHacfp] = ACTIONS(4999), - [anon_sym_BSLASHAcfp] = ACTIONS(4999), - [anon_sym_BSLASHac] = ACTIONS(4999), - [anon_sym_BSLASHAc] = ACTIONS(4999), - [anon_sym_BSLASHacp] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), - [anon_sym_BSLASHcolor] = ACTIONS(4999), - [anon_sym_BSLASHcolorbox] = ACTIONS(4999), - [anon_sym_BSLASHtextcolor] = ACTIONS(4999), - [anon_sym_BSLASHpagecolor] = ACTIONS(4999), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), + [anon_sym_BSLASHiffalse] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_RBRACK] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5091), + [anon_sym_BSLASHpart] = ACTIONS(5093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddpart] = ACTIONS(5093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), + [anon_sym_BSLASHchapter] = ACTIONS(5093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddchap] = ACTIONS(5093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsection] = ACTIONS(5093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddsec] = ACTIONS(5093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubsection] = ACTIONS(5093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHparagraph] = ACTIONS(5093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), + [anon_sym_BSLASHitem] = ACTIONS(5093), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), + [anon_sym_LBRACE] = ACTIONS(5091), + [sym_word] = ACTIONS(5093), + [sym_placeholder] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(5093), + [anon_sym_STAR] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5093), + [anon_sym_CARET] = ACTIONS(5093), + [anon_sym__] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5093), + [anon_sym_GT] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(5093), + [anon_sym_PIPE] = ACTIONS(5093), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_SQUOTE] = ACTIONS(5093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), + [anon_sym_DOLLAR] = ACTIONS(5093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5091), + [anon_sym_BSLASHbegin] = ACTIONS(5093), + [anon_sym_BSLASHusepackage] = ACTIONS(5093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), + [anon_sym_BSLASHinclude] = ACTIONS(5093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), + [anon_sym_BSLASHinput] = ACTIONS(5093), + [anon_sym_BSLASHsubfile] = ACTIONS(5093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), + [anon_sym_BSLASHbibliography] = ACTIONS(5093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), + [anon_sym_BSLASHincludesvg] = ACTIONS(5093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), + [anon_sym_BSLASHimport] = ACTIONS(5093), + [anon_sym_BSLASHsubimport] = ACTIONS(5093), + [anon_sym_BSLASHinputfrom] = ACTIONS(5093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), + [anon_sym_BSLASHincludefrom] = ACTIONS(5093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), + [anon_sym_BSLASHcaption] = ACTIONS(5093), + [anon_sym_BSLASHcite] = ACTIONS(5093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCite] = ACTIONS(5093), + [anon_sym_BSLASHnocite] = ACTIONS(5093), + [anon_sym_BSLASHcitet] = ACTIONS(5093), + [anon_sym_BSLASHcitep] = ACTIONS(5093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteauthor] = ACTIONS(5093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitetitle] = ACTIONS(5093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteyear] = ACTIONS(5093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitedate] = ACTIONS(5093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteurl] = ACTIONS(5093), + [anon_sym_BSLASHfullcite] = ACTIONS(5093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), + [anon_sym_BSLASHcitealt] = ACTIONS(5093), + [anon_sym_BSLASHcitealp] = ACTIONS(5093), + [anon_sym_BSLASHcitetext] = ACTIONS(5093), + [anon_sym_BSLASHparencite] = ACTIONS(5093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHParencite] = ACTIONS(5093), + [anon_sym_BSLASHfootcite] = ACTIONS(5093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), + [anon_sym_BSLASHtextcite] = ACTIONS(5093), + [anon_sym_BSLASHTextcite] = ACTIONS(5093), + [anon_sym_BSLASHsmartcite] = ACTIONS(5093), + [anon_sym_BSLASHSmartcite] = ACTIONS(5093), + [anon_sym_BSLASHsupercite] = ACTIONS(5093), + [anon_sym_BSLASHautocite] = ACTIONS(5093), + [anon_sym_BSLASHAutocite] = ACTIONS(5093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHvolcite] = ACTIONS(5093), + [anon_sym_BSLASHVolcite] = ACTIONS(5093), + [anon_sym_BSLASHpvolcite] = ACTIONS(5093), + [anon_sym_BSLASHPvolcite] = ACTIONS(5093), + [anon_sym_BSLASHfvolcite] = ACTIONS(5093), + [anon_sym_BSLASHftvolcite] = ACTIONS(5093), + [anon_sym_BSLASHsvolcite] = ACTIONS(5093), + [anon_sym_BSLASHSvolcite] = ACTIONS(5093), + [anon_sym_BSLASHtvolcite] = ACTIONS(5093), + [anon_sym_BSLASHTvolcite] = ACTIONS(5093), + [anon_sym_BSLASHavolcite] = ACTIONS(5093), + [anon_sym_BSLASHAvolcite] = ACTIONS(5093), + [anon_sym_BSLASHnotecite] = ACTIONS(5093), + [anon_sym_BSLASHNotecite] = ACTIONS(5093), + [anon_sym_BSLASHpnotecite] = ACTIONS(5093), + [anon_sym_BSLASHPnotecite] = ACTIONS(5093), + [anon_sym_BSLASHfnotecite] = ACTIONS(5093), + [anon_sym_BSLASHlabel] = ACTIONS(5093), + [anon_sym_BSLASHref] = ACTIONS(5093), + [anon_sym_BSLASHeqref] = ACTIONS(5093), + [anon_sym_BSLASHvref] = ACTIONS(5093), + [anon_sym_BSLASHVref] = ACTIONS(5093), + [anon_sym_BSLASHautoref] = ACTIONS(5093), + [anon_sym_BSLASHpageref] = ACTIONS(5093), + [anon_sym_BSLASHcref] = ACTIONS(5093), + [anon_sym_BSLASHCref] = ACTIONS(5093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), + [anon_sym_BSLASHnamecref] = ACTIONS(5093), + [anon_sym_BSLASHnameCref] = ACTIONS(5093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), + [anon_sym_BSLASHlabelcref] = ACTIONS(5093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), + [anon_sym_BSLASHcrefrange] = ACTIONS(5093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCrefrange] = ACTIONS(5093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), + [anon_sym_BSLASHnewlabel] = ACTIONS(5093), + [anon_sym_BSLASHnewcommand] = ACTIONS(5093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), + [anon_sym_BSLASHdef] = ACTIONS(5093), + [anon_sym_BSLASHlet] = ACTIONS(5093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), + [anon_sym_BSLASHgls] = ACTIONS(5093), + [anon_sym_BSLASHGls] = ACTIONS(5093), + [anon_sym_BSLASHGLS] = ACTIONS(5093), + [anon_sym_BSLASHglspl] = ACTIONS(5093), + [anon_sym_BSLASHGlspl] = ACTIONS(5093), + [anon_sym_BSLASHGLSpl] = ACTIONS(5093), + [anon_sym_BSLASHglsdisp] = ACTIONS(5093), + [anon_sym_BSLASHglslink] = ACTIONS(5093), + [anon_sym_BSLASHglstext] = ACTIONS(5093), + [anon_sym_BSLASHGlstext] = ACTIONS(5093), + [anon_sym_BSLASHGLStext] = ACTIONS(5093), + [anon_sym_BSLASHglsfirst] = ACTIONS(5093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), + [anon_sym_BSLASHglsplural] = ACTIONS(5093), + [anon_sym_BSLASHGlsplural] = ACTIONS(5093), + [anon_sym_BSLASHGLSplural] = ACTIONS(5093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHglsname] = ACTIONS(5093), + [anon_sym_BSLASHGlsname] = ACTIONS(5093), + [anon_sym_BSLASHGLSname] = ACTIONS(5093), + [anon_sym_BSLASHglssymbol] = ACTIONS(5093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), + [anon_sym_BSLASHglsdesc] = ACTIONS(5093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), + [anon_sym_BSLASHglsuseri] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), + [anon_sym_BSLASHglsuserii] = ACTIONS(5093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), + [anon_sym_BSLASHglsuserv] = ACTIONS(5093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), + [anon_sym_BSLASHglsuservi] = ACTIONS(5093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), + [anon_sym_BSLASHnewacronym] = ACTIONS(5093), + [anon_sym_BSLASHacrshort] = ACTIONS(5093), + [anon_sym_BSLASHAcrshort] = ACTIONS(5093), + [anon_sym_BSLASHACRshort] = ACTIONS(5093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), + [anon_sym_BSLASHacrlong] = ACTIONS(5093), + [anon_sym_BSLASHAcrlong] = ACTIONS(5093), + [anon_sym_BSLASHACRlong] = ACTIONS(5093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), + [anon_sym_BSLASHacrfull] = ACTIONS(5093), + [anon_sym_BSLASHAcrfull] = ACTIONS(5093), + [anon_sym_BSLASHACRfull] = ACTIONS(5093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), + [anon_sym_BSLASHacs] = ACTIONS(5093), + [anon_sym_BSLASHAcs] = ACTIONS(5093), + [anon_sym_BSLASHacsp] = ACTIONS(5093), + [anon_sym_BSLASHAcsp] = ACTIONS(5093), + [anon_sym_BSLASHacl] = ACTIONS(5093), + [anon_sym_BSLASHAcl] = ACTIONS(5093), + [anon_sym_BSLASHaclp] = ACTIONS(5093), + [anon_sym_BSLASHAclp] = ACTIONS(5093), + [anon_sym_BSLASHacf] = ACTIONS(5093), + [anon_sym_BSLASHAcf] = ACTIONS(5093), + [anon_sym_BSLASHacfp] = ACTIONS(5093), + [anon_sym_BSLASHAcfp] = ACTIONS(5093), + [anon_sym_BSLASHac] = ACTIONS(5093), + [anon_sym_BSLASHAc] = ACTIONS(5093), + [anon_sym_BSLASHacp] = ACTIONS(5093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), + [anon_sym_BSLASHcolor] = ACTIONS(5093), + [anon_sym_BSLASHcolorbox] = ACTIONS(5093), + [anon_sym_BSLASHtextcolor] = ACTIONS(5093), + [anon_sym_BSLASHpagecolor] = ACTIONS(5093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHtext] = ACTIONS(5093), + [anon_sym_BSLASHintertext] = ACTIONS(5093), + [anon_sym_shortintertext] = ACTIONS(5093), }, - [1150] = { - [sym_command_name] = ACTIONS(4991), + [1029] = { + [sym_command_name] = ACTIONS(5097), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_BSLASHpart] = ACTIONS(4991), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddpart] = ACTIONS(4991), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), - [anon_sym_BSLASHchapter] = ACTIONS(4991), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddchap] = ACTIONS(4991), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsection] = ACTIONS(4991), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHaddsec] = ACTIONS(4991), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), - [anon_sym_BSLASHparagraph] = ACTIONS(4991), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), - [anon_sym_BSLASHitem] = ACTIONS(4991), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4989), - [sym_word] = ACTIONS(4991), - [sym_placeholder] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym__] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), - [anon_sym_BSLASHbegin] = ACTIONS(4991), - [anon_sym_BSLASHusepackage] = ACTIONS(4991), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), - [anon_sym_BSLASHinclude] = ACTIONS(4991), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), - [anon_sym_BSLASHinput] = ACTIONS(4991), - [anon_sym_BSLASHsubfile] = ACTIONS(4991), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), - [anon_sym_BSLASHbibliography] = ACTIONS(4991), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), - [anon_sym_BSLASHincludesvg] = ACTIONS(4991), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), - [anon_sym_BSLASHimport] = ACTIONS(4991), - [anon_sym_BSLASHsubimport] = ACTIONS(4991), - [anon_sym_BSLASHinputfrom] = ACTIONS(4991), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), - [anon_sym_BSLASHincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHcaption] = ACTIONS(4991), - [anon_sym_BSLASHcite] = ACTIONS(4991), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCite] = ACTIONS(4991), - [anon_sym_BSLASHnocite] = ACTIONS(4991), - [anon_sym_BSLASHcitet] = ACTIONS(4991), - [anon_sym_BSLASHcitep] = ACTIONS(4991), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteauthor] = ACTIONS(4991), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitetitle] = ACTIONS(4991), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteyear] = ACTIONS(4991), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitedate] = ACTIONS(4991), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteurl] = ACTIONS(4991), - [anon_sym_BSLASHfullcite] = ACTIONS(4991), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), - [anon_sym_BSLASHcitealt] = ACTIONS(4991), - [anon_sym_BSLASHcitealp] = ACTIONS(4991), - [anon_sym_BSLASHcitetext] = ACTIONS(4991), - [anon_sym_BSLASHparencite] = ACTIONS(4991), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHParencite] = ACTIONS(4991), - [anon_sym_BSLASHfootcite] = ACTIONS(4991), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), - [anon_sym_BSLASHtextcite] = ACTIONS(4991), - [anon_sym_BSLASHTextcite] = ACTIONS(4991), - [anon_sym_BSLASHsmartcite] = ACTIONS(4991), - [anon_sym_BSLASHSmartcite] = ACTIONS(4991), - [anon_sym_BSLASHsupercite] = ACTIONS(4991), - [anon_sym_BSLASHautocite] = ACTIONS(4991), - [anon_sym_BSLASHAutocite] = ACTIONS(4991), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHvolcite] = ACTIONS(4991), - [anon_sym_BSLASHVolcite] = ACTIONS(4991), - [anon_sym_BSLASHpvolcite] = ACTIONS(4991), - [anon_sym_BSLASHPvolcite] = ACTIONS(4991), - [anon_sym_BSLASHfvolcite] = ACTIONS(4991), - [anon_sym_BSLASHftvolcite] = ACTIONS(4991), - [anon_sym_BSLASHsvolcite] = ACTIONS(4991), - [anon_sym_BSLASHSvolcite] = ACTIONS(4991), - [anon_sym_BSLASHtvolcite] = ACTIONS(4991), - [anon_sym_BSLASHTvolcite] = ACTIONS(4991), - [anon_sym_BSLASHavolcite] = ACTIONS(4991), - [anon_sym_BSLASHAvolcite] = ACTIONS(4991), - [anon_sym_BSLASHnotecite] = ACTIONS(4991), - [anon_sym_BSLASHNotecite] = ACTIONS(4991), - [anon_sym_BSLASHpnotecite] = ACTIONS(4991), - [anon_sym_BSLASHPnotecite] = ACTIONS(4991), - [anon_sym_BSLASHfnotecite] = ACTIONS(4991), - [anon_sym_BSLASHlabel] = ACTIONS(4991), - [anon_sym_BSLASHref] = ACTIONS(4991), - [anon_sym_BSLASHeqref] = ACTIONS(4991), - [anon_sym_BSLASHvref] = ACTIONS(4991), - [anon_sym_BSLASHVref] = ACTIONS(4991), - [anon_sym_BSLASHautoref] = ACTIONS(4991), - [anon_sym_BSLASHpageref] = ACTIONS(4991), - [anon_sym_BSLASHcref] = ACTIONS(4991), - [anon_sym_BSLASHCref] = ACTIONS(4991), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnameCref] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHlabelcref] = ACTIONS(4991), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCrefrange] = ACTIONS(4991), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnewlabel] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdef] = ACTIONS(4991), - [anon_sym_BSLASHlet] = ACTIONS(4991), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), - [anon_sym_BSLASHgls] = ACTIONS(4991), - [anon_sym_BSLASHGls] = ACTIONS(4991), - [anon_sym_BSLASHGLS] = ACTIONS(4991), - [anon_sym_BSLASHglspl] = ACTIONS(4991), - [anon_sym_BSLASHGlspl] = ACTIONS(4991), - [anon_sym_BSLASHGLSpl] = ACTIONS(4991), - [anon_sym_BSLASHglsdisp] = ACTIONS(4991), - [anon_sym_BSLASHglslink] = ACTIONS(4991), - [anon_sym_BSLASHglstext] = ACTIONS(4991), - [anon_sym_BSLASHGlstext] = ACTIONS(4991), - [anon_sym_BSLASHGLStext] = ACTIONS(4991), - [anon_sym_BSLASHglsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), - [anon_sym_BSLASHglsplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSplural] = ACTIONS(4991), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHglsname] = ACTIONS(4991), - [anon_sym_BSLASHGlsname] = ACTIONS(4991), - [anon_sym_BSLASHGLSname] = ACTIONS(4991), - [anon_sym_BSLASHglssymbol] = ACTIONS(4991), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), - [anon_sym_BSLASHglsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), - [anon_sym_BSLASHglsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), - [anon_sym_BSLASHglsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), - [anon_sym_BSLASHglsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), - [anon_sym_BSLASHglsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), - [anon_sym_BSLASHnewacronym] = ACTIONS(4991), - [anon_sym_BSLASHacrshort] = ACTIONS(4991), - [anon_sym_BSLASHAcrshort] = ACTIONS(4991), - [anon_sym_BSLASHACRshort] = ACTIONS(4991), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), - [anon_sym_BSLASHacrlong] = ACTIONS(4991), - [anon_sym_BSLASHAcrlong] = ACTIONS(4991), - [anon_sym_BSLASHACRlong] = ACTIONS(4991), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), - [anon_sym_BSLASHacrfull] = ACTIONS(4991), - [anon_sym_BSLASHAcrfull] = ACTIONS(4991), - [anon_sym_BSLASHACRfull] = ACTIONS(4991), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), - [anon_sym_BSLASHacs] = ACTIONS(4991), - [anon_sym_BSLASHAcs] = ACTIONS(4991), - [anon_sym_BSLASHacsp] = ACTIONS(4991), - [anon_sym_BSLASHAcsp] = ACTIONS(4991), - [anon_sym_BSLASHacl] = ACTIONS(4991), - [anon_sym_BSLASHAcl] = ACTIONS(4991), - [anon_sym_BSLASHaclp] = ACTIONS(4991), - [anon_sym_BSLASHAclp] = ACTIONS(4991), - [anon_sym_BSLASHacf] = ACTIONS(4991), - [anon_sym_BSLASHAcf] = ACTIONS(4991), - [anon_sym_BSLASHacfp] = ACTIONS(4991), - [anon_sym_BSLASHAcfp] = ACTIONS(4991), - [anon_sym_BSLASHac] = ACTIONS(4991), - [anon_sym_BSLASHAc] = ACTIONS(4991), - [anon_sym_BSLASHacp] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), - [anon_sym_BSLASHcolor] = ACTIONS(4991), - [anon_sym_BSLASHcolorbox] = ACTIONS(4991), - [anon_sym_BSLASHtextcolor] = ACTIONS(4991), - [anon_sym_BSLASHpagecolor] = ACTIONS(4991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHiffalse] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5095), + [anon_sym_RPAREN] = ACTIONS(5095), + [anon_sym_LBRACK] = ACTIONS(5095), + [anon_sym_RBRACK] = ACTIONS(5095), + [anon_sym_COMMA] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_BSLASHpart] = ACTIONS(5097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddpart] = ACTIONS(5097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), + [anon_sym_BSLASHchapter] = ACTIONS(5097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddchap] = ACTIONS(5097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsection] = ACTIONS(5097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddsec] = ACTIONS(5097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubsection] = ACTIONS(5097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHparagraph] = ACTIONS(5097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), + [anon_sym_BSLASHitem] = ACTIONS(5097), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5095), + [sym_word] = ACTIONS(5097), + [sym_placeholder] = ACTIONS(5095), + [anon_sym_PLUS] = ACTIONS(5097), + [anon_sym_DASH] = ACTIONS(5097), + [anon_sym_STAR] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5097), + [anon_sym_CARET] = ACTIONS(5097), + [anon_sym__] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5097), + [anon_sym_GT] = ACTIONS(5097), + [anon_sym_BANG] = ACTIONS(5097), + [anon_sym_PIPE] = ACTIONS(5097), + [anon_sym_COLON] = ACTIONS(5097), + [anon_sym_SQUOTE] = ACTIONS(5097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), + [anon_sym_DOLLAR] = ACTIONS(5097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5095), + [anon_sym_BSLASHbegin] = ACTIONS(5097), + [anon_sym_BSLASHusepackage] = ACTIONS(5097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), + [anon_sym_BSLASHinclude] = ACTIONS(5097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), + [anon_sym_BSLASHinput] = ACTIONS(5097), + [anon_sym_BSLASHsubfile] = ACTIONS(5097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), + [anon_sym_BSLASHbibliography] = ACTIONS(5097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), + [anon_sym_BSLASHincludesvg] = ACTIONS(5097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), + [anon_sym_BSLASHimport] = ACTIONS(5097), + [anon_sym_BSLASHsubimport] = ACTIONS(5097), + [anon_sym_BSLASHinputfrom] = ACTIONS(5097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), + [anon_sym_BSLASHincludefrom] = ACTIONS(5097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), + [anon_sym_BSLASHcaption] = ACTIONS(5097), + [anon_sym_BSLASHcite] = ACTIONS(5097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCite] = ACTIONS(5097), + [anon_sym_BSLASHnocite] = ACTIONS(5097), + [anon_sym_BSLASHcitet] = ACTIONS(5097), + [anon_sym_BSLASHcitep] = ACTIONS(5097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteauthor] = ACTIONS(5097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitetitle] = ACTIONS(5097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteyear] = ACTIONS(5097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitedate] = ACTIONS(5097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteurl] = ACTIONS(5097), + [anon_sym_BSLASHfullcite] = ACTIONS(5097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), + [anon_sym_BSLASHcitealt] = ACTIONS(5097), + [anon_sym_BSLASHcitealp] = ACTIONS(5097), + [anon_sym_BSLASHcitetext] = ACTIONS(5097), + [anon_sym_BSLASHparencite] = ACTIONS(5097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHParencite] = ACTIONS(5097), + [anon_sym_BSLASHfootcite] = ACTIONS(5097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), + [anon_sym_BSLASHtextcite] = ACTIONS(5097), + [anon_sym_BSLASHTextcite] = ACTIONS(5097), + [anon_sym_BSLASHsmartcite] = ACTIONS(5097), + [anon_sym_BSLASHSmartcite] = ACTIONS(5097), + [anon_sym_BSLASHsupercite] = ACTIONS(5097), + [anon_sym_BSLASHautocite] = ACTIONS(5097), + [anon_sym_BSLASHAutocite] = ACTIONS(5097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHvolcite] = ACTIONS(5097), + [anon_sym_BSLASHVolcite] = ACTIONS(5097), + [anon_sym_BSLASHpvolcite] = ACTIONS(5097), + [anon_sym_BSLASHPvolcite] = ACTIONS(5097), + [anon_sym_BSLASHfvolcite] = ACTIONS(5097), + [anon_sym_BSLASHftvolcite] = ACTIONS(5097), + [anon_sym_BSLASHsvolcite] = ACTIONS(5097), + [anon_sym_BSLASHSvolcite] = ACTIONS(5097), + [anon_sym_BSLASHtvolcite] = ACTIONS(5097), + [anon_sym_BSLASHTvolcite] = ACTIONS(5097), + [anon_sym_BSLASHavolcite] = ACTIONS(5097), + [anon_sym_BSLASHAvolcite] = ACTIONS(5097), + [anon_sym_BSLASHnotecite] = ACTIONS(5097), + [anon_sym_BSLASHNotecite] = ACTIONS(5097), + [anon_sym_BSLASHpnotecite] = ACTIONS(5097), + [anon_sym_BSLASHPnotecite] = ACTIONS(5097), + [anon_sym_BSLASHfnotecite] = ACTIONS(5097), + [anon_sym_BSLASHlabel] = ACTIONS(5097), + [anon_sym_BSLASHref] = ACTIONS(5097), + [anon_sym_BSLASHeqref] = ACTIONS(5097), + [anon_sym_BSLASHvref] = ACTIONS(5097), + [anon_sym_BSLASHVref] = ACTIONS(5097), + [anon_sym_BSLASHautoref] = ACTIONS(5097), + [anon_sym_BSLASHpageref] = ACTIONS(5097), + [anon_sym_BSLASHcref] = ACTIONS(5097), + [anon_sym_BSLASHCref] = ACTIONS(5097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), + [anon_sym_BSLASHnamecref] = ACTIONS(5097), + [anon_sym_BSLASHnameCref] = ACTIONS(5097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), + [anon_sym_BSLASHlabelcref] = ACTIONS(5097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), + [anon_sym_BSLASHcrefrange] = ACTIONS(5097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCrefrange] = ACTIONS(5097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), + [anon_sym_BSLASHnewlabel] = ACTIONS(5097), + [anon_sym_BSLASHnewcommand] = ACTIONS(5097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), + [anon_sym_BSLASHdef] = ACTIONS(5097), + [anon_sym_BSLASHlet] = ACTIONS(5097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), + [anon_sym_BSLASHgls] = ACTIONS(5097), + [anon_sym_BSLASHGls] = ACTIONS(5097), + [anon_sym_BSLASHGLS] = ACTIONS(5097), + [anon_sym_BSLASHglspl] = ACTIONS(5097), + [anon_sym_BSLASHGlspl] = ACTIONS(5097), + [anon_sym_BSLASHGLSpl] = ACTIONS(5097), + [anon_sym_BSLASHglsdisp] = ACTIONS(5097), + [anon_sym_BSLASHglslink] = ACTIONS(5097), + [anon_sym_BSLASHglstext] = ACTIONS(5097), + [anon_sym_BSLASHGlstext] = ACTIONS(5097), + [anon_sym_BSLASHGLStext] = ACTIONS(5097), + [anon_sym_BSLASHglsfirst] = ACTIONS(5097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), + [anon_sym_BSLASHglsplural] = ACTIONS(5097), + [anon_sym_BSLASHGlsplural] = ACTIONS(5097), + [anon_sym_BSLASHGLSplural] = ACTIONS(5097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHglsname] = ACTIONS(5097), + [anon_sym_BSLASHGlsname] = ACTIONS(5097), + [anon_sym_BSLASHGLSname] = ACTIONS(5097), + [anon_sym_BSLASHglssymbol] = ACTIONS(5097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), + [anon_sym_BSLASHglsdesc] = ACTIONS(5097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), + [anon_sym_BSLASHglsuseri] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), + [anon_sym_BSLASHglsuserii] = ACTIONS(5097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), + [anon_sym_BSLASHglsuserv] = ACTIONS(5097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), + [anon_sym_BSLASHglsuservi] = ACTIONS(5097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), + [anon_sym_BSLASHnewacronym] = ACTIONS(5097), + [anon_sym_BSLASHacrshort] = ACTIONS(5097), + [anon_sym_BSLASHAcrshort] = ACTIONS(5097), + [anon_sym_BSLASHACRshort] = ACTIONS(5097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), + [anon_sym_BSLASHacrlong] = ACTIONS(5097), + [anon_sym_BSLASHAcrlong] = ACTIONS(5097), + [anon_sym_BSLASHACRlong] = ACTIONS(5097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), + [anon_sym_BSLASHacrfull] = ACTIONS(5097), + [anon_sym_BSLASHAcrfull] = ACTIONS(5097), + [anon_sym_BSLASHACRfull] = ACTIONS(5097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), + [anon_sym_BSLASHacs] = ACTIONS(5097), + [anon_sym_BSLASHAcs] = ACTIONS(5097), + [anon_sym_BSLASHacsp] = ACTIONS(5097), + [anon_sym_BSLASHAcsp] = ACTIONS(5097), + [anon_sym_BSLASHacl] = ACTIONS(5097), + [anon_sym_BSLASHAcl] = ACTIONS(5097), + [anon_sym_BSLASHaclp] = ACTIONS(5097), + [anon_sym_BSLASHAclp] = ACTIONS(5097), + [anon_sym_BSLASHacf] = ACTIONS(5097), + [anon_sym_BSLASHAcf] = ACTIONS(5097), + [anon_sym_BSLASHacfp] = ACTIONS(5097), + [anon_sym_BSLASHAcfp] = ACTIONS(5097), + [anon_sym_BSLASHac] = ACTIONS(5097), + [anon_sym_BSLASHAc] = ACTIONS(5097), + [anon_sym_BSLASHacp] = ACTIONS(5097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), + [anon_sym_BSLASHcolor] = ACTIONS(5097), + [anon_sym_BSLASHcolorbox] = ACTIONS(5097), + [anon_sym_BSLASHtextcolor] = ACTIONS(5097), + [anon_sym_BSLASHpagecolor] = ACTIONS(5097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), + [anon_sym_BSLASHtext] = ACTIONS(5097), + [anon_sym_BSLASHintertext] = ACTIONS(5097), + [anon_sym_shortintertext] = ACTIONS(5097), }, - [1151] = { - [sym_command_name] = ACTIONS(4987), + [1030] = { + [sym_command_name] = ACTIONS(5101), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_BSLASHpart] = ACTIONS(4987), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddpart] = ACTIONS(4987), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), - [anon_sym_BSLASHchapter] = ACTIONS(4987), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddchap] = ACTIONS(4987), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsection] = ACTIONS(4987), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHaddsec] = ACTIONS(4987), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), - [anon_sym_BSLASHparagraph] = ACTIONS(4987), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), - [anon_sym_BSLASHitem] = ACTIONS(4987), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(4985), - [sym_word] = ACTIONS(4987), - [sym_placeholder] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym__] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), - [anon_sym_BSLASHbegin] = ACTIONS(4987), - [anon_sym_BSLASHusepackage] = ACTIONS(4987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), - [anon_sym_BSLASHinclude] = ACTIONS(4987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), - [anon_sym_BSLASHinput] = ACTIONS(4987), - [anon_sym_BSLASHsubfile] = ACTIONS(4987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), - [anon_sym_BSLASHbibliography] = ACTIONS(4987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), - [anon_sym_BSLASHincludesvg] = ACTIONS(4987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), - [anon_sym_BSLASHimport] = ACTIONS(4987), - [anon_sym_BSLASHsubimport] = ACTIONS(4987), - [anon_sym_BSLASHinputfrom] = ACTIONS(4987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), - [anon_sym_BSLASHincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHcaption] = ACTIONS(4987), - [anon_sym_BSLASHcite] = ACTIONS(4987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCite] = ACTIONS(4987), - [anon_sym_BSLASHnocite] = ACTIONS(4987), - [anon_sym_BSLASHcitet] = ACTIONS(4987), - [anon_sym_BSLASHcitep] = ACTIONS(4987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteauthor] = ACTIONS(4987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitetitle] = ACTIONS(4987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteyear] = ACTIONS(4987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitedate] = ACTIONS(4987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteurl] = ACTIONS(4987), - [anon_sym_BSLASHfullcite] = ACTIONS(4987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), - [anon_sym_BSLASHcitealt] = ACTIONS(4987), - [anon_sym_BSLASHcitealp] = ACTIONS(4987), - [anon_sym_BSLASHcitetext] = ACTIONS(4987), - [anon_sym_BSLASHparencite] = ACTIONS(4987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHParencite] = ACTIONS(4987), - [anon_sym_BSLASHfootcite] = ACTIONS(4987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), - [anon_sym_BSLASHtextcite] = ACTIONS(4987), - [anon_sym_BSLASHTextcite] = ACTIONS(4987), - [anon_sym_BSLASHsmartcite] = ACTIONS(4987), - [anon_sym_BSLASHSmartcite] = ACTIONS(4987), - [anon_sym_BSLASHsupercite] = ACTIONS(4987), - [anon_sym_BSLASHautocite] = ACTIONS(4987), - [anon_sym_BSLASHAutocite] = ACTIONS(4987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHvolcite] = ACTIONS(4987), - [anon_sym_BSLASHVolcite] = ACTIONS(4987), - [anon_sym_BSLASHpvolcite] = ACTIONS(4987), - [anon_sym_BSLASHPvolcite] = ACTIONS(4987), - [anon_sym_BSLASHfvolcite] = ACTIONS(4987), - [anon_sym_BSLASHftvolcite] = ACTIONS(4987), - [anon_sym_BSLASHsvolcite] = ACTIONS(4987), - [anon_sym_BSLASHSvolcite] = ACTIONS(4987), - [anon_sym_BSLASHtvolcite] = ACTIONS(4987), - [anon_sym_BSLASHTvolcite] = ACTIONS(4987), - [anon_sym_BSLASHavolcite] = ACTIONS(4987), - [anon_sym_BSLASHAvolcite] = ACTIONS(4987), - [anon_sym_BSLASHnotecite] = ACTIONS(4987), - [anon_sym_BSLASHNotecite] = ACTIONS(4987), - [anon_sym_BSLASHpnotecite] = ACTIONS(4987), - [anon_sym_BSLASHPnotecite] = ACTIONS(4987), - [anon_sym_BSLASHfnotecite] = ACTIONS(4987), - [anon_sym_BSLASHlabel] = ACTIONS(4987), - [anon_sym_BSLASHref] = ACTIONS(4987), - [anon_sym_BSLASHeqref] = ACTIONS(4987), - [anon_sym_BSLASHvref] = ACTIONS(4987), - [anon_sym_BSLASHVref] = ACTIONS(4987), - [anon_sym_BSLASHautoref] = ACTIONS(4987), - [anon_sym_BSLASHpageref] = ACTIONS(4987), - [anon_sym_BSLASHcref] = ACTIONS(4987), - [anon_sym_BSLASHCref] = ACTIONS(4987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnameCref] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHlabelcref] = ACTIONS(4987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCrefrange] = ACTIONS(4987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnewlabel] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdef] = ACTIONS(4987), - [anon_sym_BSLASHlet] = ACTIONS(4987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), - [anon_sym_BSLASHgls] = ACTIONS(4987), - [anon_sym_BSLASHGls] = ACTIONS(4987), - [anon_sym_BSLASHGLS] = ACTIONS(4987), - [anon_sym_BSLASHglspl] = ACTIONS(4987), - [anon_sym_BSLASHGlspl] = ACTIONS(4987), - [anon_sym_BSLASHGLSpl] = ACTIONS(4987), - [anon_sym_BSLASHglsdisp] = ACTIONS(4987), - [anon_sym_BSLASHglslink] = ACTIONS(4987), - [anon_sym_BSLASHglstext] = ACTIONS(4987), - [anon_sym_BSLASHGlstext] = ACTIONS(4987), - [anon_sym_BSLASHGLStext] = ACTIONS(4987), - [anon_sym_BSLASHglsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), - [anon_sym_BSLASHglsplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSplural] = ACTIONS(4987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHglsname] = ACTIONS(4987), - [anon_sym_BSLASHGlsname] = ACTIONS(4987), - [anon_sym_BSLASHGLSname] = ACTIONS(4987), - [anon_sym_BSLASHglssymbol] = ACTIONS(4987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), - [anon_sym_BSLASHglsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), - [anon_sym_BSLASHglsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), - [anon_sym_BSLASHglsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), - [anon_sym_BSLASHglsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), - [anon_sym_BSLASHglsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), - [anon_sym_BSLASHnewacronym] = ACTIONS(4987), - [anon_sym_BSLASHacrshort] = ACTIONS(4987), - [anon_sym_BSLASHAcrshort] = ACTIONS(4987), - [anon_sym_BSLASHACRshort] = ACTIONS(4987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), - [anon_sym_BSLASHacrlong] = ACTIONS(4987), - [anon_sym_BSLASHAcrlong] = ACTIONS(4987), - [anon_sym_BSLASHACRlong] = ACTIONS(4987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), - [anon_sym_BSLASHacrfull] = ACTIONS(4987), - [anon_sym_BSLASHAcrfull] = ACTIONS(4987), - [anon_sym_BSLASHACRfull] = ACTIONS(4987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), - [anon_sym_BSLASHacs] = ACTIONS(4987), - [anon_sym_BSLASHAcs] = ACTIONS(4987), - [anon_sym_BSLASHacsp] = ACTIONS(4987), - [anon_sym_BSLASHAcsp] = ACTIONS(4987), - [anon_sym_BSLASHacl] = ACTIONS(4987), - [anon_sym_BSLASHAcl] = ACTIONS(4987), - [anon_sym_BSLASHaclp] = ACTIONS(4987), - [anon_sym_BSLASHAclp] = ACTIONS(4987), - [anon_sym_BSLASHacf] = ACTIONS(4987), - [anon_sym_BSLASHAcf] = ACTIONS(4987), - [anon_sym_BSLASHacfp] = ACTIONS(4987), - [anon_sym_BSLASHAcfp] = ACTIONS(4987), - [anon_sym_BSLASHac] = ACTIONS(4987), - [anon_sym_BSLASHAc] = ACTIONS(4987), - [anon_sym_BSLASHacp] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), - [anon_sym_BSLASHcolor] = ACTIONS(4987), - [anon_sym_BSLASHcolorbox] = ACTIONS(4987), - [anon_sym_BSLASHtextcolor] = ACTIONS(4987), - [anon_sym_BSLASHpagecolor] = ACTIONS(4987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), - }, - [1152] = { - [sym_command_name] = ACTIONS(5357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_BSLASHpart] = ACTIONS(5357), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddpart] = ACTIONS(5357), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5355), - [anon_sym_BSLASHchapter] = ACTIONS(5357), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddchap] = ACTIONS(5357), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsection] = ACTIONS(5357), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHaddsec] = ACTIONS(5357), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5357), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5355), - [anon_sym_BSLASHparagraph] = ACTIONS(5357), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5357), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5355), - [anon_sym_BSLASHitem] = ACTIONS(5357), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASHbegin] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), - }, - [1153] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_BSLASHpart] = ACTIONS(5361), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddpart] = ACTIONS(5361), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5359), - [anon_sym_BSLASHchapter] = ACTIONS(5361), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddchap] = ACTIONS(5361), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsection] = ACTIONS(5361), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHaddsec] = ACTIONS(5361), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5361), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5359), - [anon_sym_BSLASHparagraph] = ACTIONS(5361), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5361), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5359), - [anon_sym_BSLASHitem] = ACTIONS(5361), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASHbegin] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - }, - [1154] = { - [sym_command_name] = ACTIONS(5367), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5367), - [anon_sym_LPAREN] = ACTIONS(5365), - [anon_sym_RPAREN] = ACTIONS(5365), - [anon_sym_LBRACK] = ACTIONS(5365), - [anon_sym_RBRACK] = ACTIONS(5365), - [anon_sym_COMMA] = ACTIONS(5365), - [anon_sym_EQ] = ACTIONS(5365), - [anon_sym_BSLASHpart] = ACTIONS(5367), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddpart] = ACTIONS(5367), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5365), - [anon_sym_BSLASHchapter] = ACTIONS(5367), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddchap] = ACTIONS(5367), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsection] = ACTIONS(5367), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHaddsec] = ACTIONS(5367), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubsection] = ACTIONS(5367), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5367), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5365), - [anon_sym_BSLASHparagraph] = ACTIONS(5367), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5365), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5367), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5365), - [anon_sym_BSLASHitem] = ACTIONS(5367), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5365), - [anon_sym_LBRACE] = ACTIONS(5365), - [sym_word] = ACTIONS(5367), - [sym_placeholder] = ACTIONS(5365), - [anon_sym_PLUS] = ACTIONS(5367), - [anon_sym_DASH] = ACTIONS(5367), - [anon_sym_STAR] = ACTIONS(5367), - [anon_sym_SLASH] = ACTIONS(5367), - [anon_sym_CARET] = ACTIONS(5367), - [anon_sym__] = ACTIONS(5367), - [anon_sym_LT] = ACTIONS(5367), - [anon_sym_GT] = ACTIONS(5367), - [anon_sym_BANG] = ACTIONS(5367), - [anon_sym_PIPE] = ACTIONS(5367), - [anon_sym_COLON] = ACTIONS(5367), - [anon_sym_SQUOTE] = ACTIONS(5367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5365), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5365), - [anon_sym_DOLLAR] = ACTIONS(5367), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5365), - [anon_sym_BSLASHbegin] = ACTIONS(5367), - [anon_sym_BSLASHusepackage] = ACTIONS(5367), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5367), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5367), - [anon_sym_BSLASHinclude] = ACTIONS(5367), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5367), - [anon_sym_BSLASHinput] = ACTIONS(5367), - [anon_sym_BSLASHsubfile] = ACTIONS(5367), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5367), - [anon_sym_BSLASHbibliography] = ACTIONS(5367), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5367), - [anon_sym_BSLASHincludesvg] = ACTIONS(5367), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5367), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5367), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5367), - [anon_sym_BSLASHimport] = ACTIONS(5367), - [anon_sym_BSLASHsubimport] = ACTIONS(5367), - [anon_sym_BSLASHinputfrom] = ACTIONS(5367), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5367), - [anon_sym_BSLASHincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHcaption] = ACTIONS(5367), - [anon_sym_BSLASHcite] = ACTIONS(5367), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCite] = ACTIONS(5367), - [anon_sym_BSLASHnocite] = ACTIONS(5367), - [anon_sym_BSLASHcitet] = ACTIONS(5367), - [anon_sym_BSLASHcitep] = ACTIONS(5367), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor] = ACTIONS(5367), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5367), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle] = ACTIONS(5367), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteyear] = ACTIONS(5367), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitedate] = ACTIONS(5367), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteurl] = ACTIONS(5367), - [anon_sym_BSLASHfullcite] = ACTIONS(5367), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5367), - [anon_sym_BSLASHcitealt] = ACTIONS(5367), - [anon_sym_BSLASHcitealp] = ACTIONS(5367), - [anon_sym_BSLASHcitetext] = ACTIONS(5367), - [anon_sym_BSLASHparencite] = ACTIONS(5367), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHParencite] = ACTIONS(5367), - [anon_sym_BSLASHfootcite] = ACTIONS(5367), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5367), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5367), - [anon_sym_BSLASHtextcite] = ACTIONS(5367), - [anon_sym_BSLASHTextcite] = ACTIONS(5367), - [anon_sym_BSLASHsmartcite] = ACTIONS(5367), - [anon_sym_BSLASHSmartcite] = ACTIONS(5367), - [anon_sym_BSLASHsupercite] = ACTIONS(5367), - [anon_sym_BSLASHautocite] = ACTIONS(5367), - [anon_sym_BSLASHAutocite] = ACTIONS(5367), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHvolcite] = ACTIONS(5367), - [anon_sym_BSLASHVolcite] = ACTIONS(5367), - [anon_sym_BSLASHpvolcite] = ACTIONS(5367), - [anon_sym_BSLASHPvolcite] = ACTIONS(5367), - [anon_sym_BSLASHfvolcite] = ACTIONS(5367), - [anon_sym_BSLASHftvolcite] = ACTIONS(5367), - [anon_sym_BSLASHsvolcite] = ACTIONS(5367), - [anon_sym_BSLASHSvolcite] = ACTIONS(5367), - [anon_sym_BSLASHtvolcite] = ACTIONS(5367), - [anon_sym_BSLASHTvolcite] = ACTIONS(5367), - [anon_sym_BSLASHavolcite] = ACTIONS(5367), - [anon_sym_BSLASHAvolcite] = ACTIONS(5367), - [anon_sym_BSLASHnotecite] = ACTIONS(5367), - [anon_sym_BSLASHNotecite] = ACTIONS(5367), - [anon_sym_BSLASHpnotecite] = ACTIONS(5367), - [anon_sym_BSLASHPnotecite] = ACTIONS(5367), - [anon_sym_BSLASHfnotecite] = ACTIONS(5367), - [anon_sym_BSLASHlabel] = ACTIONS(5367), - [anon_sym_BSLASHref] = ACTIONS(5367), - [anon_sym_BSLASHeqref] = ACTIONS(5367), - [anon_sym_BSLASHvref] = ACTIONS(5367), - [anon_sym_BSLASHVref] = ACTIONS(5367), - [anon_sym_BSLASHautoref] = ACTIONS(5367), - [anon_sym_BSLASHpageref] = ACTIONS(5367), - [anon_sym_BSLASHcref] = ACTIONS(5367), - [anon_sym_BSLASHCref] = ACTIONS(5367), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnameCref] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHlabelcref] = ACTIONS(5367), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange] = ACTIONS(5367), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnewlabel] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5367), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5367), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5367), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5365), - [anon_sym_BSLASHdef] = ACTIONS(5367), - [anon_sym_BSLASHlet] = ACTIONS(5367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5367), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5367), - [anon_sym_BSLASHgls] = ACTIONS(5367), - [anon_sym_BSLASHGls] = ACTIONS(5367), - [anon_sym_BSLASHGLS] = ACTIONS(5367), - [anon_sym_BSLASHglspl] = ACTIONS(5367), - [anon_sym_BSLASHGlspl] = ACTIONS(5367), - [anon_sym_BSLASHGLSpl] = ACTIONS(5367), - [anon_sym_BSLASHglsdisp] = ACTIONS(5367), - [anon_sym_BSLASHglslink] = ACTIONS(5367), - [anon_sym_BSLASHglstext] = ACTIONS(5367), - [anon_sym_BSLASHGlstext] = ACTIONS(5367), - [anon_sym_BSLASHGLStext] = ACTIONS(5367), - [anon_sym_BSLASHglsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5367), - [anon_sym_BSLASHglsplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSplural] = ACTIONS(5367), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHglsname] = ACTIONS(5367), - [anon_sym_BSLASHGlsname] = ACTIONS(5367), - [anon_sym_BSLASHGLSname] = ACTIONS(5367), - [anon_sym_BSLASHglssymbol] = ACTIONS(5367), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5367), - [anon_sym_BSLASHglsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5367), - [anon_sym_BSLASHglsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5367), - [anon_sym_BSLASHglsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5367), - [anon_sym_BSLASHglsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5367), - [anon_sym_BSLASHglsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5367), - [anon_sym_BSLASHnewacronym] = ACTIONS(5367), - [anon_sym_BSLASHacrshort] = ACTIONS(5367), - [anon_sym_BSLASHAcrshort] = ACTIONS(5367), - [anon_sym_BSLASHACRshort] = ACTIONS(5367), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5367), - [anon_sym_BSLASHacrlong] = ACTIONS(5367), - [anon_sym_BSLASHAcrlong] = ACTIONS(5367), - [anon_sym_BSLASHACRlong] = ACTIONS(5367), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5367), - [anon_sym_BSLASHacrfull] = ACTIONS(5367), - [anon_sym_BSLASHAcrfull] = ACTIONS(5367), - [anon_sym_BSLASHACRfull] = ACTIONS(5367), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5367), - [anon_sym_BSLASHacs] = ACTIONS(5367), - [anon_sym_BSLASHAcs] = ACTIONS(5367), - [anon_sym_BSLASHacsp] = ACTIONS(5367), - [anon_sym_BSLASHAcsp] = ACTIONS(5367), - [anon_sym_BSLASHacl] = ACTIONS(5367), - [anon_sym_BSLASHAcl] = ACTIONS(5367), - [anon_sym_BSLASHaclp] = ACTIONS(5367), - [anon_sym_BSLASHAclp] = ACTIONS(5367), - [anon_sym_BSLASHacf] = ACTIONS(5367), - [anon_sym_BSLASHAcf] = ACTIONS(5367), - [anon_sym_BSLASHacfp] = ACTIONS(5367), - [anon_sym_BSLASHAcfp] = ACTIONS(5367), - [anon_sym_BSLASHac] = ACTIONS(5367), - [anon_sym_BSLASHAc] = ACTIONS(5367), - [anon_sym_BSLASHacp] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5367), - [anon_sym_BSLASHcolor] = ACTIONS(5367), - [anon_sym_BSLASHcolorbox] = ACTIONS(5367), - [anon_sym_BSLASHtextcolor] = ACTIONS(5367), - [anon_sym_BSLASHpagecolor] = ACTIONS(5367), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5367), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5367), - }, - [1155] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_BSLASHpart] = ACTIONS(5371), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddpart] = ACTIONS(5371), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5369), - [anon_sym_BSLASHchapter] = ACTIONS(5371), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddchap] = ACTIONS(5371), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsection] = ACTIONS(5371), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHaddsec] = ACTIONS(5371), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5371), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5369), - [anon_sym_BSLASHparagraph] = ACTIONS(5371), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5371), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5369), - [anon_sym_BSLASHitem] = ACTIONS(5371), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASHbegin] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), + [anon_sym_BSLASHiffalse] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5099), + [anon_sym_RPAREN] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [anon_sym_RBRACK] = ACTIONS(5099), + [anon_sym_COMMA] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_BSLASHpart] = ACTIONS(5101), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddpart] = ACTIONS(5101), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), + [anon_sym_BSLASHchapter] = ACTIONS(5101), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddchap] = ACTIONS(5101), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsection] = ACTIONS(5101), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddsec] = ACTIONS(5101), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubsection] = ACTIONS(5101), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHparagraph] = ACTIONS(5101), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), + [anon_sym_BSLASHitem] = ACTIONS(5101), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5099), + [sym_word] = ACTIONS(5101), + [sym_placeholder] = ACTIONS(5099), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_CARET] = ACTIONS(5101), + [anon_sym__] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_BANG] = ACTIONS(5101), + [anon_sym_PIPE] = ACTIONS(5101), + [anon_sym_COLON] = ACTIONS(5101), + [anon_sym_SQUOTE] = ACTIONS(5101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), + [anon_sym_DOLLAR] = ACTIONS(5101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5099), + [anon_sym_BSLASHbegin] = ACTIONS(5101), + [anon_sym_BSLASHusepackage] = ACTIONS(5101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), + [anon_sym_BSLASHinclude] = ACTIONS(5101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), + [anon_sym_BSLASHinput] = ACTIONS(5101), + [anon_sym_BSLASHsubfile] = ACTIONS(5101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), + [anon_sym_BSLASHbibliography] = ACTIONS(5101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), + [anon_sym_BSLASHincludesvg] = ACTIONS(5101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), + [anon_sym_BSLASHimport] = ACTIONS(5101), + [anon_sym_BSLASHsubimport] = ACTIONS(5101), + [anon_sym_BSLASHinputfrom] = ACTIONS(5101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), + [anon_sym_BSLASHincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHcaption] = ACTIONS(5101), + [anon_sym_BSLASHcite] = ACTIONS(5101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCite] = ACTIONS(5101), + [anon_sym_BSLASHnocite] = ACTIONS(5101), + [anon_sym_BSLASHcitet] = ACTIONS(5101), + [anon_sym_BSLASHcitep] = ACTIONS(5101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteauthor] = ACTIONS(5101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitetitle] = ACTIONS(5101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteyear] = ACTIONS(5101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitedate] = ACTIONS(5101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteurl] = ACTIONS(5101), + [anon_sym_BSLASHfullcite] = ACTIONS(5101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), + [anon_sym_BSLASHcitealt] = ACTIONS(5101), + [anon_sym_BSLASHcitealp] = ACTIONS(5101), + [anon_sym_BSLASHcitetext] = ACTIONS(5101), + [anon_sym_BSLASHparencite] = ACTIONS(5101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHParencite] = ACTIONS(5101), + [anon_sym_BSLASHfootcite] = ACTIONS(5101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), + [anon_sym_BSLASHtextcite] = ACTIONS(5101), + [anon_sym_BSLASHTextcite] = ACTIONS(5101), + [anon_sym_BSLASHsmartcite] = ACTIONS(5101), + [anon_sym_BSLASHSmartcite] = ACTIONS(5101), + [anon_sym_BSLASHsupercite] = ACTIONS(5101), + [anon_sym_BSLASHautocite] = ACTIONS(5101), + [anon_sym_BSLASHAutocite] = ACTIONS(5101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHvolcite] = ACTIONS(5101), + [anon_sym_BSLASHVolcite] = ACTIONS(5101), + [anon_sym_BSLASHpvolcite] = ACTIONS(5101), + [anon_sym_BSLASHPvolcite] = ACTIONS(5101), + [anon_sym_BSLASHfvolcite] = ACTIONS(5101), + [anon_sym_BSLASHftvolcite] = ACTIONS(5101), + [anon_sym_BSLASHsvolcite] = ACTIONS(5101), + [anon_sym_BSLASHSvolcite] = ACTIONS(5101), + [anon_sym_BSLASHtvolcite] = ACTIONS(5101), + [anon_sym_BSLASHTvolcite] = ACTIONS(5101), + [anon_sym_BSLASHavolcite] = ACTIONS(5101), + [anon_sym_BSLASHAvolcite] = ACTIONS(5101), + [anon_sym_BSLASHnotecite] = ACTIONS(5101), + [anon_sym_BSLASHNotecite] = ACTIONS(5101), + [anon_sym_BSLASHpnotecite] = ACTIONS(5101), + [anon_sym_BSLASHPnotecite] = ACTIONS(5101), + [anon_sym_BSLASHfnotecite] = ACTIONS(5101), + [anon_sym_BSLASHlabel] = ACTIONS(5101), + [anon_sym_BSLASHref] = ACTIONS(5101), + [anon_sym_BSLASHeqref] = ACTIONS(5101), + [anon_sym_BSLASHvref] = ACTIONS(5101), + [anon_sym_BSLASHVref] = ACTIONS(5101), + [anon_sym_BSLASHautoref] = ACTIONS(5101), + [anon_sym_BSLASHpageref] = ACTIONS(5101), + [anon_sym_BSLASHcref] = ACTIONS(5101), + [anon_sym_BSLASHCref] = ACTIONS(5101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), + [anon_sym_BSLASHnamecref] = ACTIONS(5101), + [anon_sym_BSLASHnameCref] = ACTIONS(5101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), + [anon_sym_BSLASHlabelcref] = ACTIONS(5101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), + [anon_sym_BSLASHcrefrange] = ACTIONS(5101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCrefrange] = ACTIONS(5101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), + [anon_sym_BSLASHnewlabel] = ACTIONS(5101), + [anon_sym_BSLASHnewcommand] = ACTIONS(5101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), + [anon_sym_BSLASHdef] = ACTIONS(5101), + [anon_sym_BSLASHlet] = ACTIONS(5101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), + [anon_sym_BSLASHgls] = ACTIONS(5101), + [anon_sym_BSLASHGls] = ACTIONS(5101), + [anon_sym_BSLASHGLS] = ACTIONS(5101), + [anon_sym_BSLASHglspl] = ACTIONS(5101), + [anon_sym_BSLASHGlspl] = ACTIONS(5101), + [anon_sym_BSLASHGLSpl] = ACTIONS(5101), + [anon_sym_BSLASHglsdisp] = ACTIONS(5101), + [anon_sym_BSLASHglslink] = ACTIONS(5101), + [anon_sym_BSLASHglstext] = ACTIONS(5101), + [anon_sym_BSLASHGlstext] = ACTIONS(5101), + [anon_sym_BSLASHGLStext] = ACTIONS(5101), + [anon_sym_BSLASHglsfirst] = ACTIONS(5101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), + [anon_sym_BSLASHglsplural] = ACTIONS(5101), + [anon_sym_BSLASHGlsplural] = ACTIONS(5101), + [anon_sym_BSLASHGLSplural] = ACTIONS(5101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHglsname] = ACTIONS(5101), + [anon_sym_BSLASHGlsname] = ACTIONS(5101), + [anon_sym_BSLASHGLSname] = ACTIONS(5101), + [anon_sym_BSLASHglssymbol] = ACTIONS(5101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), + [anon_sym_BSLASHglsdesc] = ACTIONS(5101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), + [anon_sym_BSLASHglsuseri] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), + [anon_sym_BSLASHglsuserii] = ACTIONS(5101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), + [anon_sym_BSLASHglsuserv] = ACTIONS(5101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), + [anon_sym_BSLASHglsuservi] = ACTIONS(5101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), + [anon_sym_BSLASHnewacronym] = ACTIONS(5101), + [anon_sym_BSLASHacrshort] = ACTIONS(5101), + [anon_sym_BSLASHAcrshort] = ACTIONS(5101), + [anon_sym_BSLASHACRshort] = ACTIONS(5101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), + [anon_sym_BSLASHacrlong] = ACTIONS(5101), + [anon_sym_BSLASHAcrlong] = ACTIONS(5101), + [anon_sym_BSLASHACRlong] = ACTIONS(5101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), + [anon_sym_BSLASHacrfull] = ACTIONS(5101), + [anon_sym_BSLASHAcrfull] = ACTIONS(5101), + [anon_sym_BSLASHACRfull] = ACTIONS(5101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), + [anon_sym_BSLASHacs] = ACTIONS(5101), + [anon_sym_BSLASHAcs] = ACTIONS(5101), + [anon_sym_BSLASHacsp] = ACTIONS(5101), + [anon_sym_BSLASHAcsp] = ACTIONS(5101), + [anon_sym_BSLASHacl] = ACTIONS(5101), + [anon_sym_BSLASHAcl] = ACTIONS(5101), + [anon_sym_BSLASHaclp] = ACTIONS(5101), + [anon_sym_BSLASHAclp] = ACTIONS(5101), + [anon_sym_BSLASHacf] = ACTIONS(5101), + [anon_sym_BSLASHAcf] = ACTIONS(5101), + [anon_sym_BSLASHacfp] = ACTIONS(5101), + [anon_sym_BSLASHAcfp] = ACTIONS(5101), + [anon_sym_BSLASHac] = ACTIONS(5101), + [anon_sym_BSLASHAc] = ACTIONS(5101), + [anon_sym_BSLASHacp] = ACTIONS(5101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), + [anon_sym_BSLASHcolor] = ACTIONS(5101), + [anon_sym_BSLASHcolorbox] = ACTIONS(5101), + [anon_sym_BSLASHtextcolor] = ACTIONS(5101), + [anon_sym_BSLASHpagecolor] = ACTIONS(5101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), + [anon_sym_BSLASHtext] = ACTIONS(5101), + [anon_sym_BSLASHintertext] = ACTIONS(5101), + [anon_sym_shortintertext] = ACTIONS(5101), }, - [1156] = { - [sym_command_name] = ACTIONS(5029), + [1031] = { + [sym_command_name] = ACTIONS(5105), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_BSLASHpart] = ACTIONS(5029), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddpart] = ACTIONS(5029), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), - [anon_sym_BSLASHchapter] = ACTIONS(5029), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddchap] = ACTIONS(5029), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsection] = ACTIONS(5029), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHaddsec] = ACTIONS(5029), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), - [anon_sym_BSLASHparagraph] = ACTIONS(5029), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), - [anon_sym_BSLASHitem] = ACTIONS(5029), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASHbegin] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), + [anon_sym_BSLASHiffalse] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_RPAREN] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_RBRACK] = ACTIONS(5103), + [anon_sym_COMMA] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_BSLASHpart] = ACTIONS(5105), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), + [anon_sym_BSLASHaddpart] = ACTIONS(5105), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), + [anon_sym_BSLASHchapter] = ACTIONS(5105), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), + [anon_sym_BSLASHaddchap] = ACTIONS(5105), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsection] = ACTIONS(5105), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), + [anon_sym_BSLASHaddsec] = ACTIONS(5105), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsubsection] = ACTIONS(5105), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), + [anon_sym_BSLASHparagraph] = ACTIONS(5105), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), + [anon_sym_BSLASHitem] = ACTIONS(5105), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5103), + [sym_word] = ACTIONS(5105), + [sym_placeholder] = ACTIONS(5103), + [anon_sym_PLUS] = ACTIONS(5105), + [anon_sym_DASH] = ACTIONS(5105), + [anon_sym_STAR] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5105), + [anon_sym_CARET] = ACTIONS(5105), + [anon_sym__] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5105), + [anon_sym_GT] = ACTIONS(5105), + [anon_sym_BANG] = ACTIONS(5105), + [anon_sym_PIPE] = ACTIONS(5105), + [anon_sym_COLON] = ACTIONS(5105), + [anon_sym_SQUOTE] = ACTIONS(5105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), + [anon_sym_DOLLAR] = ACTIONS(5105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5103), + [anon_sym_BSLASHbegin] = ACTIONS(5105), + [anon_sym_BSLASHusepackage] = ACTIONS(5105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), + [anon_sym_BSLASHinclude] = ACTIONS(5105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), + [anon_sym_BSLASHinput] = ACTIONS(5105), + [anon_sym_BSLASHsubfile] = ACTIONS(5105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), + [anon_sym_BSLASHbibliography] = ACTIONS(5105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), + [anon_sym_BSLASHincludesvg] = ACTIONS(5105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), + [anon_sym_BSLASHimport] = ACTIONS(5105), + [anon_sym_BSLASHsubimport] = ACTIONS(5105), + [anon_sym_BSLASHinputfrom] = ACTIONS(5105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), + [anon_sym_BSLASHincludefrom] = ACTIONS(5105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), + [anon_sym_BSLASHcaption] = ACTIONS(5105), + [anon_sym_BSLASHcite] = ACTIONS(5105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCite] = ACTIONS(5105), + [anon_sym_BSLASHnocite] = ACTIONS(5105), + [anon_sym_BSLASHcitet] = ACTIONS(5105), + [anon_sym_BSLASHcitep] = ACTIONS(5105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteauthor] = ACTIONS(5105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitetitle] = ACTIONS(5105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteyear] = ACTIONS(5105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitedate] = ACTIONS(5105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteurl] = ACTIONS(5105), + [anon_sym_BSLASHfullcite] = ACTIONS(5105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), + [anon_sym_BSLASHcitealt] = ACTIONS(5105), + [anon_sym_BSLASHcitealp] = ACTIONS(5105), + [anon_sym_BSLASHcitetext] = ACTIONS(5105), + [anon_sym_BSLASHparencite] = ACTIONS(5105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHParencite] = ACTIONS(5105), + [anon_sym_BSLASHfootcite] = ACTIONS(5105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), + [anon_sym_BSLASHtextcite] = ACTIONS(5105), + [anon_sym_BSLASHTextcite] = ACTIONS(5105), + [anon_sym_BSLASHsmartcite] = ACTIONS(5105), + [anon_sym_BSLASHSmartcite] = ACTIONS(5105), + [anon_sym_BSLASHsupercite] = ACTIONS(5105), + [anon_sym_BSLASHautocite] = ACTIONS(5105), + [anon_sym_BSLASHAutocite] = ACTIONS(5105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHvolcite] = ACTIONS(5105), + [anon_sym_BSLASHVolcite] = ACTIONS(5105), + [anon_sym_BSLASHpvolcite] = ACTIONS(5105), + [anon_sym_BSLASHPvolcite] = ACTIONS(5105), + [anon_sym_BSLASHfvolcite] = ACTIONS(5105), + [anon_sym_BSLASHftvolcite] = ACTIONS(5105), + [anon_sym_BSLASHsvolcite] = ACTIONS(5105), + [anon_sym_BSLASHSvolcite] = ACTIONS(5105), + [anon_sym_BSLASHtvolcite] = ACTIONS(5105), + [anon_sym_BSLASHTvolcite] = ACTIONS(5105), + [anon_sym_BSLASHavolcite] = ACTIONS(5105), + [anon_sym_BSLASHAvolcite] = ACTIONS(5105), + [anon_sym_BSLASHnotecite] = ACTIONS(5105), + [anon_sym_BSLASHNotecite] = ACTIONS(5105), + [anon_sym_BSLASHpnotecite] = ACTIONS(5105), + [anon_sym_BSLASHPnotecite] = ACTIONS(5105), + [anon_sym_BSLASHfnotecite] = ACTIONS(5105), + [anon_sym_BSLASHlabel] = ACTIONS(5105), + [anon_sym_BSLASHref] = ACTIONS(5105), + [anon_sym_BSLASHeqref] = ACTIONS(5105), + [anon_sym_BSLASHvref] = ACTIONS(5105), + [anon_sym_BSLASHVref] = ACTIONS(5105), + [anon_sym_BSLASHautoref] = ACTIONS(5105), + [anon_sym_BSLASHpageref] = ACTIONS(5105), + [anon_sym_BSLASHcref] = ACTIONS(5105), + [anon_sym_BSLASHCref] = ACTIONS(5105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), + [anon_sym_BSLASHnamecref] = ACTIONS(5105), + [anon_sym_BSLASHnameCref] = ACTIONS(5105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), + [anon_sym_BSLASHlabelcref] = ACTIONS(5105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), + [anon_sym_BSLASHcrefrange] = ACTIONS(5105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCrefrange] = ACTIONS(5105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), + [anon_sym_BSLASHnewlabel] = ACTIONS(5105), + [anon_sym_BSLASHnewcommand] = ACTIONS(5105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), + [anon_sym_BSLASHdef] = ACTIONS(5105), + [anon_sym_BSLASHlet] = ACTIONS(5105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), + [anon_sym_BSLASHgls] = ACTIONS(5105), + [anon_sym_BSLASHGls] = ACTIONS(5105), + [anon_sym_BSLASHGLS] = ACTIONS(5105), + [anon_sym_BSLASHglspl] = ACTIONS(5105), + [anon_sym_BSLASHGlspl] = ACTIONS(5105), + [anon_sym_BSLASHGLSpl] = ACTIONS(5105), + [anon_sym_BSLASHglsdisp] = ACTIONS(5105), + [anon_sym_BSLASHglslink] = ACTIONS(5105), + [anon_sym_BSLASHglstext] = ACTIONS(5105), + [anon_sym_BSLASHGlstext] = ACTIONS(5105), + [anon_sym_BSLASHGLStext] = ACTIONS(5105), + [anon_sym_BSLASHglsfirst] = ACTIONS(5105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), + [anon_sym_BSLASHglsplural] = ACTIONS(5105), + [anon_sym_BSLASHGlsplural] = ACTIONS(5105), + [anon_sym_BSLASHGLSplural] = ACTIONS(5105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHglsname] = ACTIONS(5105), + [anon_sym_BSLASHGlsname] = ACTIONS(5105), + [anon_sym_BSLASHGLSname] = ACTIONS(5105), + [anon_sym_BSLASHglssymbol] = ACTIONS(5105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), + [anon_sym_BSLASHglsdesc] = ACTIONS(5105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), + [anon_sym_BSLASHglsuseri] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), + [anon_sym_BSLASHglsuserii] = ACTIONS(5105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), + [anon_sym_BSLASHglsuserv] = ACTIONS(5105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), + [anon_sym_BSLASHglsuservi] = ACTIONS(5105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), + [anon_sym_BSLASHnewacronym] = ACTIONS(5105), + [anon_sym_BSLASHacrshort] = ACTIONS(5105), + [anon_sym_BSLASHAcrshort] = ACTIONS(5105), + [anon_sym_BSLASHACRshort] = ACTIONS(5105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), + [anon_sym_BSLASHacrlong] = ACTIONS(5105), + [anon_sym_BSLASHAcrlong] = ACTIONS(5105), + [anon_sym_BSLASHACRlong] = ACTIONS(5105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), + [anon_sym_BSLASHacrfull] = ACTIONS(5105), + [anon_sym_BSLASHAcrfull] = ACTIONS(5105), + [anon_sym_BSLASHACRfull] = ACTIONS(5105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), + [anon_sym_BSLASHacs] = ACTIONS(5105), + [anon_sym_BSLASHAcs] = ACTIONS(5105), + [anon_sym_BSLASHacsp] = ACTIONS(5105), + [anon_sym_BSLASHAcsp] = ACTIONS(5105), + [anon_sym_BSLASHacl] = ACTIONS(5105), + [anon_sym_BSLASHAcl] = ACTIONS(5105), + [anon_sym_BSLASHaclp] = ACTIONS(5105), + [anon_sym_BSLASHAclp] = ACTIONS(5105), + [anon_sym_BSLASHacf] = ACTIONS(5105), + [anon_sym_BSLASHAcf] = ACTIONS(5105), + [anon_sym_BSLASHacfp] = ACTIONS(5105), + [anon_sym_BSLASHAcfp] = ACTIONS(5105), + [anon_sym_BSLASHac] = ACTIONS(5105), + [anon_sym_BSLASHAc] = ACTIONS(5105), + [anon_sym_BSLASHacp] = ACTIONS(5105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), + [anon_sym_BSLASHcolor] = ACTIONS(5105), + [anon_sym_BSLASHcolorbox] = ACTIONS(5105), + [anon_sym_BSLASHtextcolor] = ACTIONS(5105), + [anon_sym_BSLASHpagecolor] = ACTIONS(5105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), + [anon_sym_BSLASHtext] = ACTIONS(5105), + [anon_sym_BSLASHintertext] = ACTIONS(5105), + [anon_sym_shortintertext] = ACTIONS(5105), }, - [1157] = { - [sym_command_name] = ACTIONS(5381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5381), - [anon_sym_LPAREN] = ACTIONS(5379), - [anon_sym_RPAREN] = ACTIONS(5379), - [anon_sym_LBRACK] = ACTIONS(5379), - [anon_sym_RBRACK] = ACTIONS(5379), - [anon_sym_COMMA] = ACTIONS(5379), - [anon_sym_EQ] = ACTIONS(5379), - [anon_sym_BSLASHpart] = ACTIONS(5381), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddpart] = ACTIONS(5381), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5379), - [anon_sym_BSLASHchapter] = ACTIONS(5381), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddchap] = ACTIONS(5381), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsection] = ACTIONS(5381), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHaddsec] = ACTIONS(5381), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubsection] = ACTIONS(5381), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5381), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5379), - [anon_sym_BSLASHparagraph] = ACTIONS(5381), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5379), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5381), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5379), - [anon_sym_BSLASHitem] = ACTIONS(5381), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5379), - [anon_sym_LBRACE] = ACTIONS(5379), - [sym_word] = ACTIONS(5381), - [sym_placeholder] = ACTIONS(5379), - [anon_sym_PLUS] = ACTIONS(5381), - [anon_sym_DASH] = ACTIONS(5381), - [anon_sym_STAR] = ACTIONS(5381), - [anon_sym_SLASH] = ACTIONS(5381), - [anon_sym_CARET] = ACTIONS(5381), - [anon_sym__] = ACTIONS(5381), - [anon_sym_LT] = ACTIONS(5381), - [anon_sym_GT] = ACTIONS(5381), - [anon_sym_BANG] = ACTIONS(5381), - [anon_sym_PIPE] = ACTIONS(5381), - [anon_sym_COLON] = ACTIONS(5381), - [anon_sym_SQUOTE] = ACTIONS(5381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5379), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5379), - [anon_sym_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5379), - [anon_sym_BSLASHbegin] = ACTIONS(5381), - [anon_sym_BSLASHusepackage] = ACTIONS(5381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5381), - [anon_sym_BSLASHinclude] = ACTIONS(5381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5381), - [anon_sym_BSLASHinput] = ACTIONS(5381), - [anon_sym_BSLASHsubfile] = ACTIONS(5381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5381), - [anon_sym_BSLASHbibliography] = ACTIONS(5381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5381), - [anon_sym_BSLASHincludesvg] = ACTIONS(5381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5381), - [anon_sym_BSLASHimport] = ACTIONS(5381), - [anon_sym_BSLASHsubimport] = ACTIONS(5381), - [anon_sym_BSLASHinputfrom] = ACTIONS(5381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5381), - [anon_sym_BSLASHincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHcaption] = ACTIONS(5381), - [anon_sym_BSLASHcite] = ACTIONS(5381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCite] = ACTIONS(5381), - [anon_sym_BSLASHnocite] = ACTIONS(5381), - [anon_sym_BSLASHcitet] = ACTIONS(5381), - [anon_sym_BSLASHcitep] = ACTIONS(5381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteyear] = ACTIONS(5381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitedate] = ACTIONS(5381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteurl] = ACTIONS(5381), - [anon_sym_BSLASHfullcite] = ACTIONS(5381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5381), - [anon_sym_BSLASHcitealt] = ACTIONS(5381), - [anon_sym_BSLASHcitealp] = ACTIONS(5381), - [anon_sym_BSLASHcitetext] = ACTIONS(5381), - [anon_sym_BSLASHparencite] = ACTIONS(5381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHParencite] = ACTIONS(5381), - [anon_sym_BSLASHfootcite] = ACTIONS(5381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5381), - [anon_sym_BSLASHtextcite] = ACTIONS(5381), - [anon_sym_BSLASHTextcite] = ACTIONS(5381), - [anon_sym_BSLASHsmartcite] = ACTIONS(5381), - [anon_sym_BSLASHSmartcite] = ACTIONS(5381), - [anon_sym_BSLASHsupercite] = ACTIONS(5381), - [anon_sym_BSLASHautocite] = ACTIONS(5381), - [anon_sym_BSLASHAutocite] = ACTIONS(5381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHvolcite] = ACTIONS(5381), - [anon_sym_BSLASHVolcite] = ACTIONS(5381), - [anon_sym_BSLASHpvolcite] = ACTIONS(5381), - [anon_sym_BSLASHPvolcite] = ACTIONS(5381), - [anon_sym_BSLASHfvolcite] = ACTIONS(5381), - [anon_sym_BSLASHftvolcite] = ACTIONS(5381), - [anon_sym_BSLASHsvolcite] = ACTIONS(5381), - [anon_sym_BSLASHSvolcite] = ACTIONS(5381), - [anon_sym_BSLASHtvolcite] = ACTIONS(5381), - [anon_sym_BSLASHTvolcite] = ACTIONS(5381), - [anon_sym_BSLASHavolcite] = ACTIONS(5381), - [anon_sym_BSLASHAvolcite] = ACTIONS(5381), - [anon_sym_BSLASHnotecite] = ACTIONS(5381), - [anon_sym_BSLASHNotecite] = ACTIONS(5381), - [anon_sym_BSLASHpnotecite] = ACTIONS(5381), - [anon_sym_BSLASHPnotecite] = ACTIONS(5381), - [anon_sym_BSLASHfnotecite] = ACTIONS(5381), - [anon_sym_BSLASHlabel] = ACTIONS(5381), - [anon_sym_BSLASHref] = ACTIONS(5381), - [anon_sym_BSLASHeqref] = ACTIONS(5381), - [anon_sym_BSLASHvref] = ACTIONS(5381), - [anon_sym_BSLASHVref] = ACTIONS(5381), - [anon_sym_BSLASHautoref] = ACTIONS(5381), - [anon_sym_BSLASHpageref] = ACTIONS(5381), - [anon_sym_BSLASHcref] = ACTIONS(5381), - [anon_sym_BSLASHCref] = ACTIONS(5381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnameCref] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHlabelcref] = ACTIONS(5381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnewlabel] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5379), - [anon_sym_BSLASHdef] = ACTIONS(5381), - [anon_sym_BSLASHlet] = ACTIONS(5381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5381), - [anon_sym_BSLASHgls] = ACTIONS(5381), - [anon_sym_BSLASHGls] = ACTIONS(5381), - [anon_sym_BSLASHGLS] = ACTIONS(5381), - [anon_sym_BSLASHglspl] = ACTIONS(5381), - [anon_sym_BSLASHGlspl] = ACTIONS(5381), - [anon_sym_BSLASHGLSpl] = ACTIONS(5381), - [anon_sym_BSLASHglsdisp] = ACTIONS(5381), - [anon_sym_BSLASHglslink] = ACTIONS(5381), - [anon_sym_BSLASHglstext] = ACTIONS(5381), - [anon_sym_BSLASHGlstext] = ACTIONS(5381), - [anon_sym_BSLASHGLStext] = ACTIONS(5381), - [anon_sym_BSLASHglsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5381), - [anon_sym_BSLASHglsplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSplural] = ACTIONS(5381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHglsname] = ACTIONS(5381), - [anon_sym_BSLASHGlsname] = ACTIONS(5381), - [anon_sym_BSLASHGLSname] = ACTIONS(5381), - [anon_sym_BSLASHglssymbol] = ACTIONS(5381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5381), - [anon_sym_BSLASHglsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5381), - [anon_sym_BSLASHglsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5381), - [anon_sym_BSLASHglsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5381), - [anon_sym_BSLASHglsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5381), - [anon_sym_BSLASHglsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5381), - [anon_sym_BSLASHnewacronym] = ACTIONS(5381), - [anon_sym_BSLASHacrshort] = ACTIONS(5381), - [anon_sym_BSLASHAcrshort] = ACTIONS(5381), - [anon_sym_BSLASHACRshort] = ACTIONS(5381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5381), - [anon_sym_BSLASHacrlong] = ACTIONS(5381), - [anon_sym_BSLASHAcrlong] = ACTIONS(5381), - [anon_sym_BSLASHACRlong] = ACTIONS(5381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5381), - [anon_sym_BSLASHacrfull] = ACTIONS(5381), - [anon_sym_BSLASHAcrfull] = ACTIONS(5381), - [anon_sym_BSLASHACRfull] = ACTIONS(5381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5381), - [anon_sym_BSLASHacs] = ACTIONS(5381), - [anon_sym_BSLASHAcs] = ACTIONS(5381), - [anon_sym_BSLASHacsp] = ACTIONS(5381), - [anon_sym_BSLASHAcsp] = ACTIONS(5381), - [anon_sym_BSLASHacl] = ACTIONS(5381), - [anon_sym_BSLASHAcl] = ACTIONS(5381), - [anon_sym_BSLASHaclp] = ACTIONS(5381), - [anon_sym_BSLASHAclp] = ACTIONS(5381), - [anon_sym_BSLASHacf] = ACTIONS(5381), - [anon_sym_BSLASHAcf] = ACTIONS(5381), - [anon_sym_BSLASHacfp] = ACTIONS(5381), - [anon_sym_BSLASHAcfp] = ACTIONS(5381), - [anon_sym_BSLASHac] = ACTIONS(5381), - [anon_sym_BSLASHAc] = ACTIONS(5381), - [anon_sym_BSLASHacp] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5381), - [anon_sym_BSLASHcolor] = ACTIONS(5381), - [anon_sym_BSLASHcolorbox] = ACTIONS(5381), - [anon_sym_BSLASHtextcolor] = ACTIONS(5381), - [anon_sym_BSLASHpagecolor] = ACTIONS(5381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5381), + [1032] = { + [sym_command_name] = ACTIONS(4887), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_LBRACK] = ACTIONS(4885), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_BSLASHpart] = ACTIONS(4887), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddpart] = ACTIONS(4887), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4885), + [anon_sym_BSLASHchapter] = ACTIONS(4887), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddchap] = ACTIONS(4887), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsection] = ACTIONS(4887), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddsec] = ACTIONS(4887), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubsection] = ACTIONS(4887), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4887), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHparagraph] = ACTIONS(4887), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4887), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4885), + [anon_sym_BSLASHitem] = ACTIONS(4887), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4885), + [sym_word] = ACTIONS(4887), + [sym_placeholder] = ACTIONS(4885), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym__] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_COLON] = ACTIONS(4887), + [anon_sym_SQUOTE] = ACTIONS(4887), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4885), + [anon_sym_BSLASHbegin] = ACTIONS(4887), + [anon_sym_BSLASHusepackage] = ACTIONS(4887), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), + [anon_sym_BSLASHinclude] = ACTIONS(4887), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), + [anon_sym_BSLASHinput] = ACTIONS(4887), + [anon_sym_BSLASHsubfile] = ACTIONS(4887), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), + [anon_sym_BSLASHbibliography] = ACTIONS(4887), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), + [anon_sym_BSLASHincludesvg] = ACTIONS(4887), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), + [anon_sym_BSLASHimport] = ACTIONS(4887), + [anon_sym_BSLASHsubimport] = ACTIONS(4887), + [anon_sym_BSLASHinputfrom] = ACTIONS(4887), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), + [anon_sym_BSLASHincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHcaption] = ACTIONS(4887), + [anon_sym_BSLASHcite] = ACTIONS(4887), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCite] = ACTIONS(4887), + [anon_sym_BSLASHnocite] = ACTIONS(4887), + [anon_sym_BSLASHcitet] = ACTIONS(4887), + [anon_sym_BSLASHcitep] = ACTIONS(4887), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteauthor] = ACTIONS(4887), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitetitle] = ACTIONS(4887), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteyear] = ACTIONS(4887), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitedate] = ACTIONS(4887), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteurl] = ACTIONS(4887), + [anon_sym_BSLASHfullcite] = ACTIONS(4887), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), + [anon_sym_BSLASHcitealt] = ACTIONS(4887), + [anon_sym_BSLASHcitealp] = ACTIONS(4887), + [anon_sym_BSLASHcitetext] = ACTIONS(4887), + [anon_sym_BSLASHparencite] = ACTIONS(4887), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHParencite] = ACTIONS(4887), + [anon_sym_BSLASHfootcite] = ACTIONS(4887), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), + [anon_sym_BSLASHtextcite] = ACTIONS(4887), + [anon_sym_BSLASHTextcite] = ACTIONS(4887), + [anon_sym_BSLASHsmartcite] = ACTIONS(4887), + [anon_sym_BSLASHSmartcite] = ACTIONS(4887), + [anon_sym_BSLASHsupercite] = ACTIONS(4887), + [anon_sym_BSLASHautocite] = ACTIONS(4887), + [anon_sym_BSLASHAutocite] = ACTIONS(4887), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHvolcite] = ACTIONS(4887), + [anon_sym_BSLASHVolcite] = ACTIONS(4887), + [anon_sym_BSLASHpvolcite] = ACTIONS(4887), + [anon_sym_BSLASHPvolcite] = ACTIONS(4887), + [anon_sym_BSLASHfvolcite] = ACTIONS(4887), + [anon_sym_BSLASHftvolcite] = ACTIONS(4887), + [anon_sym_BSLASHsvolcite] = ACTIONS(4887), + [anon_sym_BSLASHSvolcite] = ACTIONS(4887), + [anon_sym_BSLASHtvolcite] = ACTIONS(4887), + [anon_sym_BSLASHTvolcite] = ACTIONS(4887), + [anon_sym_BSLASHavolcite] = ACTIONS(4887), + [anon_sym_BSLASHAvolcite] = ACTIONS(4887), + [anon_sym_BSLASHnotecite] = ACTIONS(4887), + [anon_sym_BSLASHNotecite] = ACTIONS(4887), + [anon_sym_BSLASHpnotecite] = ACTIONS(4887), + [anon_sym_BSLASHPnotecite] = ACTIONS(4887), + [anon_sym_BSLASHfnotecite] = ACTIONS(4887), + [anon_sym_BSLASHlabel] = ACTIONS(4887), + [anon_sym_BSLASHref] = ACTIONS(4887), + [anon_sym_BSLASHeqref] = ACTIONS(4887), + [anon_sym_BSLASHvref] = ACTIONS(4887), + [anon_sym_BSLASHVref] = ACTIONS(4887), + [anon_sym_BSLASHautoref] = ACTIONS(4887), + [anon_sym_BSLASHpageref] = ACTIONS(4887), + [anon_sym_BSLASHcref] = ACTIONS(4887), + [anon_sym_BSLASHCref] = ACTIONS(4887), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnameCref] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHlabelcref] = ACTIONS(4887), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCrefrange] = ACTIONS(4887), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnewlabel] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), + [anon_sym_BSLASHdef] = ACTIONS(4887), + [anon_sym_BSLASHlet] = ACTIONS(4887), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), + [anon_sym_BSLASHgls] = ACTIONS(4887), + [anon_sym_BSLASHGls] = ACTIONS(4887), + [anon_sym_BSLASHGLS] = ACTIONS(4887), + [anon_sym_BSLASHglspl] = ACTIONS(4887), + [anon_sym_BSLASHGlspl] = ACTIONS(4887), + [anon_sym_BSLASHGLSpl] = ACTIONS(4887), + [anon_sym_BSLASHglsdisp] = ACTIONS(4887), + [anon_sym_BSLASHglslink] = ACTIONS(4887), + [anon_sym_BSLASHglstext] = ACTIONS(4887), + [anon_sym_BSLASHGlstext] = ACTIONS(4887), + [anon_sym_BSLASHGLStext] = ACTIONS(4887), + [anon_sym_BSLASHglsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), + [anon_sym_BSLASHglsplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSplural] = ACTIONS(4887), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHglsname] = ACTIONS(4887), + [anon_sym_BSLASHGlsname] = ACTIONS(4887), + [anon_sym_BSLASHGLSname] = ACTIONS(4887), + [anon_sym_BSLASHglssymbol] = ACTIONS(4887), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), + [anon_sym_BSLASHglsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), + [anon_sym_BSLASHglsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), + [anon_sym_BSLASHglsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), + [anon_sym_BSLASHglsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), + [anon_sym_BSLASHglsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), + [anon_sym_BSLASHnewacronym] = ACTIONS(4887), + [anon_sym_BSLASHacrshort] = ACTIONS(4887), + [anon_sym_BSLASHAcrshort] = ACTIONS(4887), + [anon_sym_BSLASHACRshort] = ACTIONS(4887), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), + [anon_sym_BSLASHacrlong] = ACTIONS(4887), + [anon_sym_BSLASHAcrlong] = ACTIONS(4887), + [anon_sym_BSLASHACRlong] = ACTIONS(4887), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), + [anon_sym_BSLASHacrfull] = ACTIONS(4887), + [anon_sym_BSLASHAcrfull] = ACTIONS(4887), + [anon_sym_BSLASHACRfull] = ACTIONS(4887), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), + [anon_sym_BSLASHacs] = ACTIONS(4887), + [anon_sym_BSLASHAcs] = ACTIONS(4887), + [anon_sym_BSLASHacsp] = ACTIONS(4887), + [anon_sym_BSLASHAcsp] = ACTIONS(4887), + [anon_sym_BSLASHacl] = ACTIONS(4887), + [anon_sym_BSLASHAcl] = ACTIONS(4887), + [anon_sym_BSLASHaclp] = ACTIONS(4887), + [anon_sym_BSLASHAclp] = ACTIONS(4887), + [anon_sym_BSLASHacf] = ACTIONS(4887), + [anon_sym_BSLASHAcf] = ACTIONS(4887), + [anon_sym_BSLASHacfp] = ACTIONS(4887), + [anon_sym_BSLASHAcfp] = ACTIONS(4887), + [anon_sym_BSLASHac] = ACTIONS(4887), + [anon_sym_BSLASHAc] = ACTIONS(4887), + [anon_sym_BSLASHacp] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), + [anon_sym_BSLASHcolor] = ACTIONS(4887), + [anon_sym_BSLASHcolorbox] = ACTIONS(4887), + [anon_sym_BSLASHtextcolor] = ACTIONS(4887), + [anon_sym_BSLASHpagecolor] = ACTIONS(4887), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), + [anon_sym_BSLASHtext] = ACTIONS(4887), + [anon_sym_BSLASHintertext] = ACTIONS(4887), + [anon_sym_shortintertext] = ACTIONS(4887), }, - [1158] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_BSLASHpart] = ACTIONS(5129), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddpart] = ACTIONS(5129), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5127), - [anon_sym_BSLASHchapter] = ACTIONS(5129), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddchap] = ACTIONS(5129), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsection] = ACTIONS(5129), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHaddsec] = ACTIONS(5129), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5129), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5127), - [anon_sym_BSLASHparagraph] = ACTIONS(5129), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5129), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5127), - [anon_sym_BSLASHitem] = ACTIONS(5129), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASHbegin] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), + [1033] = { + [sym_command_name] = ACTIONS(4955), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_EQ] = ACTIONS(4953), + [anon_sym_BSLASHpart] = ACTIONS(4955), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddpart] = ACTIONS(4955), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4953), + [anon_sym_BSLASHchapter] = ACTIONS(4955), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddchap] = ACTIONS(4955), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsection] = ACTIONS(4955), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddsec] = ACTIONS(4955), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubsection] = ACTIONS(4955), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4955), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHparagraph] = ACTIONS(4955), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4955), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4953), + [anon_sym_BSLASHitem] = ACTIONS(4955), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4953), + [sym_word] = ACTIONS(4955), + [sym_placeholder] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4955), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), + [anon_sym__] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(4955), + [anon_sym_SQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), + [anon_sym_DOLLAR] = ACTIONS(4955), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), + [anon_sym_BSLASHbegin] = ACTIONS(4955), + [anon_sym_BSLASHusepackage] = ACTIONS(4955), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), + [anon_sym_BSLASHinclude] = ACTIONS(4955), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), + [anon_sym_BSLASHinput] = ACTIONS(4955), + [anon_sym_BSLASHsubfile] = ACTIONS(4955), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), + [anon_sym_BSLASHbibliography] = ACTIONS(4955), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), + [anon_sym_BSLASHincludesvg] = ACTIONS(4955), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), + [anon_sym_BSLASHimport] = ACTIONS(4955), + [anon_sym_BSLASHsubimport] = ACTIONS(4955), + [anon_sym_BSLASHinputfrom] = ACTIONS(4955), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), + [anon_sym_BSLASHincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHcaption] = ACTIONS(4955), + [anon_sym_BSLASHcite] = ACTIONS(4955), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCite] = ACTIONS(4955), + [anon_sym_BSLASHnocite] = ACTIONS(4955), + [anon_sym_BSLASHcitet] = ACTIONS(4955), + [anon_sym_BSLASHcitep] = ACTIONS(4955), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteauthor] = ACTIONS(4955), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitetitle] = ACTIONS(4955), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteyear] = ACTIONS(4955), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitedate] = ACTIONS(4955), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteurl] = ACTIONS(4955), + [anon_sym_BSLASHfullcite] = ACTIONS(4955), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), + [anon_sym_BSLASHcitealt] = ACTIONS(4955), + [anon_sym_BSLASHcitealp] = ACTIONS(4955), + [anon_sym_BSLASHcitetext] = ACTIONS(4955), + [anon_sym_BSLASHparencite] = ACTIONS(4955), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHParencite] = ACTIONS(4955), + [anon_sym_BSLASHfootcite] = ACTIONS(4955), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), + [anon_sym_BSLASHtextcite] = ACTIONS(4955), + [anon_sym_BSLASHTextcite] = ACTIONS(4955), + [anon_sym_BSLASHsmartcite] = ACTIONS(4955), + [anon_sym_BSLASHSmartcite] = ACTIONS(4955), + [anon_sym_BSLASHsupercite] = ACTIONS(4955), + [anon_sym_BSLASHautocite] = ACTIONS(4955), + [anon_sym_BSLASHAutocite] = ACTIONS(4955), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHvolcite] = ACTIONS(4955), + [anon_sym_BSLASHVolcite] = ACTIONS(4955), + [anon_sym_BSLASHpvolcite] = ACTIONS(4955), + [anon_sym_BSLASHPvolcite] = ACTIONS(4955), + [anon_sym_BSLASHfvolcite] = ACTIONS(4955), + [anon_sym_BSLASHftvolcite] = ACTIONS(4955), + [anon_sym_BSLASHsvolcite] = ACTIONS(4955), + [anon_sym_BSLASHSvolcite] = ACTIONS(4955), + [anon_sym_BSLASHtvolcite] = ACTIONS(4955), + [anon_sym_BSLASHTvolcite] = ACTIONS(4955), + [anon_sym_BSLASHavolcite] = ACTIONS(4955), + [anon_sym_BSLASHAvolcite] = ACTIONS(4955), + [anon_sym_BSLASHnotecite] = ACTIONS(4955), + [anon_sym_BSLASHNotecite] = ACTIONS(4955), + [anon_sym_BSLASHpnotecite] = ACTIONS(4955), + [anon_sym_BSLASHPnotecite] = ACTIONS(4955), + [anon_sym_BSLASHfnotecite] = ACTIONS(4955), + [anon_sym_BSLASHlabel] = ACTIONS(4955), + [anon_sym_BSLASHref] = ACTIONS(4955), + [anon_sym_BSLASHeqref] = ACTIONS(4955), + [anon_sym_BSLASHvref] = ACTIONS(4955), + [anon_sym_BSLASHVref] = ACTIONS(4955), + [anon_sym_BSLASHautoref] = ACTIONS(4955), + [anon_sym_BSLASHpageref] = ACTIONS(4955), + [anon_sym_BSLASHcref] = ACTIONS(4955), + [anon_sym_BSLASHCref] = ACTIONS(4955), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnameCref] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHlabelcref] = ACTIONS(4955), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCrefrange] = ACTIONS(4955), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnewlabel] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), + [anon_sym_BSLASHdef] = ACTIONS(4955), + [anon_sym_BSLASHlet] = ACTIONS(4955), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), + [anon_sym_BSLASHgls] = ACTIONS(4955), + [anon_sym_BSLASHGls] = ACTIONS(4955), + [anon_sym_BSLASHGLS] = ACTIONS(4955), + [anon_sym_BSLASHglspl] = ACTIONS(4955), + [anon_sym_BSLASHGlspl] = ACTIONS(4955), + [anon_sym_BSLASHGLSpl] = ACTIONS(4955), + [anon_sym_BSLASHglsdisp] = ACTIONS(4955), + [anon_sym_BSLASHglslink] = ACTIONS(4955), + [anon_sym_BSLASHglstext] = ACTIONS(4955), + [anon_sym_BSLASHGlstext] = ACTIONS(4955), + [anon_sym_BSLASHGLStext] = ACTIONS(4955), + [anon_sym_BSLASHglsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), + [anon_sym_BSLASHglsplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSplural] = ACTIONS(4955), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHglsname] = ACTIONS(4955), + [anon_sym_BSLASHGlsname] = ACTIONS(4955), + [anon_sym_BSLASHGLSname] = ACTIONS(4955), + [anon_sym_BSLASHglssymbol] = ACTIONS(4955), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), + [anon_sym_BSLASHglsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), + [anon_sym_BSLASHglsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), + [anon_sym_BSLASHglsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), + [anon_sym_BSLASHglsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), + [anon_sym_BSLASHglsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), + [anon_sym_BSLASHnewacronym] = ACTIONS(4955), + [anon_sym_BSLASHacrshort] = ACTIONS(4955), + [anon_sym_BSLASHAcrshort] = ACTIONS(4955), + [anon_sym_BSLASHACRshort] = ACTIONS(4955), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), + [anon_sym_BSLASHacrlong] = ACTIONS(4955), + [anon_sym_BSLASHAcrlong] = ACTIONS(4955), + [anon_sym_BSLASHACRlong] = ACTIONS(4955), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), + [anon_sym_BSLASHacrfull] = ACTIONS(4955), + [anon_sym_BSLASHAcrfull] = ACTIONS(4955), + [anon_sym_BSLASHACRfull] = ACTIONS(4955), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), + [anon_sym_BSLASHacs] = ACTIONS(4955), + [anon_sym_BSLASHAcs] = ACTIONS(4955), + [anon_sym_BSLASHacsp] = ACTIONS(4955), + [anon_sym_BSLASHAcsp] = ACTIONS(4955), + [anon_sym_BSLASHacl] = ACTIONS(4955), + [anon_sym_BSLASHAcl] = ACTIONS(4955), + [anon_sym_BSLASHaclp] = ACTIONS(4955), + [anon_sym_BSLASHAclp] = ACTIONS(4955), + [anon_sym_BSLASHacf] = ACTIONS(4955), + [anon_sym_BSLASHAcf] = ACTIONS(4955), + [anon_sym_BSLASHacfp] = ACTIONS(4955), + [anon_sym_BSLASHAcfp] = ACTIONS(4955), + [anon_sym_BSLASHac] = ACTIONS(4955), + [anon_sym_BSLASHAc] = ACTIONS(4955), + [anon_sym_BSLASHacp] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), + [anon_sym_BSLASHcolor] = ACTIONS(4955), + [anon_sym_BSLASHcolorbox] = ACTIONS(4955), + [anon_sym_BSLASHtextcolor] = ACTIONS(4955), + [anon_sym_BSLASHpagecolor] = ACTIONS(4955), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), + [anon_sym_BSLASHtext] = ACTIONS(4955), + [anon_sym_BSLASHintertext] = ACTIONS(4955), + [anon_sym_shortintertext] = ACTIONS(4955), }, - [1159] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_BSLASHpart] = ACTIONS(5143), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddpart] = ACTIONS(5143), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5141), - [anon_sym_BSLASHchapter] = ACTIONS(5143), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddchap] = ACTIONS(5143), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsection] = ACTIONS(5143), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHaddsec] = ACTIONS(5143), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5143), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5141), - [anon_sym_BSLASHparagraph] = ACTIONS(5143), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5143), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5141), - [anon_sym_BSLASHitem] = ACTIONS(5143), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASHbegin] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), + [1034] = { + [sym_command_name] = ACTIONS(4951), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [anon_sym_RBRACK] = ACTIONS(4949), + [anon_sym_COMMA] = ACTIONS(4949), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_BSLASHpart] = ACTIONS(4951), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddpart] = ACTIONS(4951), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4949), + [anon_sym_BSLASHchapter] = ACTIONS(4951), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddchap] = ACTIONS(4951), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsection] = ACTIONS(4951), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddsec] = ACTIONS(4951), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubsection] = ACTIONS(4951), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4951), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHparagraph] = ACTIONS(4951), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4951), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4949), + [anon_sym_BSLASHitem] = ACTIONS(4951), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4949), + [sym_word] = ACTIONS(4951), + [sym_placeholder] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_STAR] = ACTIONS(4951), + [anon_sym_SLASH] = ACTIONS(4951), + [anon_sym_CARET] = ACTIONS(4951), + [anon_sym__] = ACTIONS(4951), + [anon_sym_LT] = ACTIONS(4951), + [anon_sym_GT] = ACTIONS(4951), + [anon_sym_BANG] = ACTIONS(4951), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_COLON] = ACTIONS(4951), + [anon_sym_SQUOTE] = ACTIONS(4951), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4949), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4949), + [anon_sym_DOLLAR] = ACTIONS(4951), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4949), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4949), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4949), + [anon_sym_BSLASHbegin] = ACTIONS(4951), + [anon_sym_BSLASHusepackage] = ACTIONS(4951), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4951), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4951), + [anon_sym_BSLASHinclude] = ACTIONS(4951), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4951), + [anon_sym_BSLASHinput] = ACTIONS(4951), + [anon_sym_BSLASHsubfile] = ACTIONS(4951), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4951), + [anon_sym_BSLASHbibliography] = ACTIONS(4951), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4951), + [anon_sym_BSLASHincludesvg] = ACTIONS(4951), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4951), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4951), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4951), + [anon_sym_BSLASHimport] = ACTIONS(4951), + [anon_sym_BSLASHsubimport] = ACTIONS(4951), + [anon_sym_BSLASHinputfrom] = ACTIONS(4951), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4951), + [anon_sym_BSLASHincludefrom] = ACTIONS(4951), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4951), + [anon_sym_BSLASHcaption] = ACTIONS(4951), + [anon_sym_BSLASHcite] = ACTIONS(4951), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCite] = ACTIONS(4951), + [anon_sym_BSLASHnocite] = ACTIONS(4951), + [anon_sym_BSLASHcitet] = ACTIONS(4951), + [anon_sym_BSLASHcitep] = ACTIONS(4951), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteauthor] = ACTIONS(4951), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4951), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitetitle] = ACTIONS(4951), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteyear] = ACTIONS(4951), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitedate] = ACTIONS(4951), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteurl] = ACTIONS(4951), + [anon_sym_BSLASHfullcite] = ACTIONS(4951), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4951), + [anon_sym_BSLASHcitealt] = ACTIONS(4951), + [anon_sym_BSLASHcitealp] = ACTIONS(4951), + [anon_sym_BSLASHcitetext] = ACTIONS(4951), + [anon_sym_BSLASHparencite] = ACTIONS(4951), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHParencite] = ACTIONS(4951), + [anon_sym_BSLASHfootcite] = ACTIONS(4951), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4951), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4951), + [anon_sym_BSLASHtextcite] = ACTIONS(4951), + [anon_sym_BSLASHTextcite] = ACTIONS(4951), + [anon_sym_BSLASHsmartcite] = ACTIONS(4951), + [anon_sym_BSLASHSmartcite] = ACTIONS(4951), + [anon_sym_BSLASHsupercite] = ACTIONS(4951), + [anon_sym_BSLASHautocite] = ACTIONS(4951), + [anon_sym_BSLASHAutocite] = ACTIONS(4951), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHvolcite] = ACTIONS(4951), + [anon_sym_BSLASHVolcite] = ACTIONS(4951), + [anon_sym_BSLASHpvolcite] = ACTIONS(4951), + [anon_sym_BSLASHPvolcite] = ACTIONS(4951), + [anon_sym_BSLASHfvolcite] = ACTIONS(4951), + [anon_sym_BSLASHftvolcite] = ACTIONS(4951), + [anon_sym_BSLASHsvolcite] = ACTIONS(4951), + [anon_sym_BSLASHSvolcite] = ACTIONS(4951), + [anon_sym_BSLASHtvolcite] = ACTIONS(4951), + [anon_sym_BSLASHTvolcite] = ACTIONS(4951), + [anon_sym_BSLASHavolcite] = ACTIONS(4951), + [anon_sym_BSLASHAvolcite] = ACTIONS(4951), + [anon_sym_BSLASHnotecite] = ACTIONS(4951), + [anon_sym_BSLASHNotecite] = ACTIONS(4951), + [anon_sym_BSLASHpnotecite] = ACTIONS(4951), + [anon_sym_BSLASHPnotecite] = ACTIONS(4951), + [anon_sym_BSLASHfnotecite] = ACTIONS(4951), + [anon_sym_BSLASHlabel] = ACTIONS(4951), + [anon_sym_BSLASHref] = ACTIONS(4951), + [anon_sym_BSLASHeqref] = ACTIONS(4951), + [anon_sym_BSLASHvref] = ACTIONS(4951), + [anon_sym_BSLASHVref] = ACTIONS(4951), + [anon_sym_BSLASHautoref] = ACTIONS(4951), + [anon_sym_BSLASHpageref] = ACTIONS(4951), + [anon_sym_BSLASHcref] = ACTIONS(4951), + [anon_sym_BSLASHCref] = ACTIONS(4951), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4949), + [anon_sym_BSLASHnamecref] = ACTIONS(4951), + [anon_sym_BSLASHnameCref] = ACTIONS(4951), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4951), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4951), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4951), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4951), + [anon_sym_BSLASHlabelcref] = ACTIONS(4951), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4951), + [anon_sym_BSLASHcrefrange] = ACTIONS(4951), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCrefrange] = ACTIONS(4951), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4949), + [anon_sym_BSLASHnewlabel] = ACTIONS(4951), + [anon_sym_BSLASHnewcommand] = ACTIONS(4951), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4951), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4951), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4951), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4949), + [anon_sym_BSLASHdef] = ACTIONS(4951), + [anon_sym_BSLASHlet] = ACTIONS(4951), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4951), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4951), + [anon_sym_BSLASHgls] = ACTIONS(4951), + [anon_sym_BSLASHGls] = ACTIONS(4951), + [anon_sym_BSLASHGLS] = ACTIONS(4951), + [anon_sym_BSLASHglspl] = ACTIONS(4951), + [anon_sym_BSLASHGlspl] = ACTIONS(4951), + [anon_sym_BSLASHGLSpl] = ACTIONS(4951), + [anon_sym_BSLASHglsdisp] = ACTIONS(4951), + [anon_sym_BSLASHglslink] = ACTIONS(4951), + [anon_sym_BSLASHglstext] = ACTIONS(4951), + [anon_sym_BSLASHGlstext] = ACTIONS(4951), + [anon_sym_BSLASHGLStext] = ACTIONS(4951), + [anon_sym_BSLASHglsfirst] = ACTIONS(4951), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4951), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4951), + [anon_sym_BSLASHglsplural] = ACTIONS(4951), + [anon_sym_BSLASHGlsplural] = ACTIONS(4951), + [anon_sym_BSLASHGLSplural] = ACTIONS(4951), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHglsname] = ACTIONS(4951), + [anon_sym_BSLASHGlsname] = ACTIONS(4951), + [anon_sym_BSLASHGLSname] = ACTIONS(4951), + [anon_sym_BSLASHglssymbol] = ACTIONS(4951), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4951), + [anon_sym_BSLASHglsdesc] = ACTIONS(4951), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4951), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4951), + [anon_sym_BSLASHglsuseri] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4951), + [anon_sym_BSLASHglsuserii] = ACTIONS(4951), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4951), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4951), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4951), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4951), + [anon_sym_BSLASHglsuserv] = ACTIONS(4951), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4951), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4951), + [anon_sym_BSLASHglsuservi] = ACTIONS(4951), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4951), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4951), + [anon_sym_BSLASHnewacronym] = ACTIONS(4951), + [anon_sym_BSLASHacrshort] = ACTIONS(4951), + [anon_sym_BSLASHAcrshort] = ACTIONS(4951), + [anon_sym_BSLASHACRshort] = ACTIONS(4951), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4951), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4951), + [anon_sym_BSLASHacrlong] = ACTIONS(4951), + [anon_sym_BSLASHAcrlong] = ACTIONS(4951), + [anon_sym_BSLASHACRlong] = ACTIONS(4951), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4951), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4951), + [anon_sym_BSLASHacrfull] = ACTIONS(4951), + [anon_sym_BSLASHAcrfull] = ACTIONS(4951), + [anon_sym_BSLASHACRfull] = ACTIONS(4951), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4951), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4951), + [anon_sym_BSLASHacs] = ACTIONS(4951), + [anon_sym_BSLASHAcs] = ACTIONS(4951), + [anon_sym_BSLASHacsp] = ACTIONS(4951), + [anon_sym_BSLASHAcsp] = ACTIONS(4951), + [anon_sym_BSLASHacl] = ACTIONS(4951), + [anon_sym_BSLASHAcl] = ACTIONS(4951), + [anon_sym_BSLASHaclp] = ACTIONS(4951), + [anon_sym_BSLASHAclp] = ACTIONS(4951), + [anon_sym_BSLASHacf] = ACTIONS(4951), + [anon_sym_BSLASHAcf] = ACTIONS(4951), + [anon_sym_BSLASHacfp] = ACTIONS(4951), + [anon_sym_BSLASHAcfp] = ACTIONS(4951), + [anon_sym_BSLASHac] = ACTIONS(4951), + [anon_sym_BSLASHAc] = ACTIONS(4951), + [anon_sym_BSLASHacp] = ACTIONS(4951), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4951), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4951), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4951), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4951), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4951), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4951), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4951), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4951), + [anon_sym_BSLASHcolor] = ACTIONS(4951), + [anon_sym_BSLASHcolorbox] = ACTIONS(4951), + [anon_sym_BSLASHtextcolor] = ACTIONS(4951), + [anon_sym_BSLASHpagecolor] = ACTIONS(4951), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4951), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4951), + [anon_sym_BSLASHtext] = ACTIONS(4951), + [anon_sym_BSLASHintertext] = ACTIONS(4951), + [anon_sym_shortintertext] = ACTIONS(4951), }, - [1160] = { - [sym_command_name] = ACTIONS(5353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_BSLASHpart] = ACTIONS(5353), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddpart] = ACTIONS(5353), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5351), - [anon_sym_BSLASHchapter] = ACTIONS(5353), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddchap] = ACTIONS(5353), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsection] = ACTIONS(5353), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHaddsec] = ACTIONS(5353), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5353), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5351), - [anon_sym_BSLASHparagraph] = ACTIONS(5353), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5353), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5351), - [anon_sym_BSLASHitem] = ACTIONS(5353), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASHbegin] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [1035] = { + [sym_command_name] = ACTIONS(4947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4947), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_RPAREN] = ACTIONS(4945), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_RBRACK] = ACTIONS(4945), + [anon_sym_COMMA] = ACTIONS(4945), + [anon_sym_EQ] = ACTIONS(4945), + [anon_sym_BSLASHpart] = ACTIONS(4947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddpart] = ACTIONS(4947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4945), + [anon_sym_BSLASHchapter] = ACTIONS(4947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddchap] = ACTIONS(4947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsection] = ACTIONS(4947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddsec] = ACTIONS(4947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubsection] = ACTIONS(4947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHparagraph] = ACTIONS(4947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4947), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4945), + [anon_sym_BSLASHitem] = ACTIONS(4947), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4945), + [anon_sym_LBRACE] = ACTIONS(4945), + [sym_word] = ACTIONS(4947), + [sym_placeholder] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(4947), + [anon_sym_DASH] = ACTIONS(4947), + [anon_sym_STAR] = ACTIONS(4947), + [anon_sym_SLASH] = ACTIONS(4947), + [anon_sym_CARET] = ACTIONS(4947), + [anon_sym__] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_BANG] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_COLON] = ACTIONS(4947), + [anon_sym_SQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4945), + [anon_sym_DOLLAR] = ACTIONS(4947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4945), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4945), + [anon_sym_BSLASHbegin] = ACTIONS(4947), + [anon_sym_BSLASHusepackage] = ACTIONS(4947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4947), + [anon_sym_BSLASHinclude] = ACTIONS(4947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4947), + [anon_sym_BSLASHinput] = ACTIONS(4947), + [anon_sym_BSLASHsubfile] = ACTIONS(4947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4947), + [anon_sym_BSLASHbibliography] = ACTIONS(4947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4947), + [anon_sym_BSLASHincludesvg] = ACTIONS(4947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4947), + [anon_sym_BSLASHimport] = ACTIONS(4947), + [anon_sym_BSLASHsubimport] = ACTIONS(4947), + [anon_sym_BSLASHinputfrom] = ACTIONS(4947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4947), + [anon_sym_BSLASHincludefrom] = ACTIONS(4947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4947), + [anon_sym_BSLASHcaption] = ACTIONS(4947), + [anon_sym_BSLASHcite] = ACTIONS(4947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCite] = ACTIONS(4947), + [anon_sym_BSLASHnocite] = ACTIONS(4947), + [anon_sym_BSLASHcitet] = ACTIONS(4947), + [anon_sym_BSLASHcitep] = ACTIONS(4947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteauthor] = ACTIONS(4947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitetitle] = ACTIONS(4947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteyear] = ACTIONS(4947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitedate] = ACTIONS(4947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteurl] = ACTIONS(4947), + [anon_sym_BSLASHfullcite] = ACTIONS(4947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4947), + [anon_sym_BSLASHcitealt] = ACTIONS(4947), + [anon_sym_BSLASHcitealp] = ACTIONS(4947), + [anon_sym_BSLASHcitetext] = ACTIONS(4947), + [anon_sym_BSLASHparencite] = ACTIONS(4947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHParencite] = ACTIONS(4947), + [anon_sym_BSLASHfootcite] = ACTIONS(4947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4947), + [anon_sym_BSLASHtextcite] = ACTIONS(4947), + [anon_sym_BSLASHTextcite] = ACTIONS(4947), + [anon_sym_BSLASHsmartcite] = ACTIONS(4947), + [anon_sym_BSLASHSmartcite] = ACTIONS(4947), + [anon_sym_BSLASHsupercite] = ACTIONS(4947), + [anon_sym_BSLASHautocite] = ACTIONS(4947), + [anon_sym_BSLASHAutocite] = ACTIONS(4947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHvolcite] = ACTIONS(4947), + [anon_sym_BSLASHVolcite] = ACTIONS(4947), + [anon_sym_BSLASHpvolcite] = ACTIONS(4947), + [anon_sym_BSLASHPvolcite] = ACTIONS(4947), + [anon_sym_BSLASHfvolcite] = ACTIONS(4947), + [anon_sym_BSLASHftvolcite] = ACTIONS(4947), + [anon_sym_BSLASHsvolcite] = ACTIONS(4947), + [anon_sym_BSLASHSvolcite] = ACTIONS(4947), + [anon_sym_BSLASHtvolcite] = ACTIONS(4947), + [anon_sym_BSLASHTvolcite] = ACTIONS(4947), + [anon_sym_BSLASHavolcite] = ACTIONS(4947), + [anon_sym_BSLASHAvolcite] = ACTIONS(4947), + [anon_sym_BSLASHnotecite] = ACTIONS(4947), + [anon_sym_BSLASHNotecite] = ACTIONS(4947), + [anon_sym_BSLASHpnotecite] = ACTIONS(4947), + [anon_sym_BSLASHPnotecite] = ACTIONS(4947), + [anon_sym_BSLASHfnotecite] = ACTIONS(4947), + [anon_sym_BSLASHlabel] = ACTIONS(4947), + [anon_sym_BSLASHref] = ACTIONS(4947), + [anon_sym_BSLASHeqref] = ACTIONS(4947), + [anon_sym_BSLASHvref] = ACTIONS(4947), + [anon_sym_BSLASHVref] = ACTIONS(4947), + [anon_sym_BSLASHautoref] = ACTIONS(4947), + [anon_sym_BSLASHpageref] = ACTIONS(4947), + [anon_sym_BSLASHcref] = ACTIONS(4947), + [anon_sym_BSLASHCref] = ACTIONS(4947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4945), + [anon_sym_BSLASHnamecref] = ACTIONS(4947), + [anon_sym_BSLASHnameCref] = ACTIONS(4947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4947), + [anon_sym_BSLASHlabelcref] = ACTIONS(4947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4947), + [anon_sym_BSLASHcrefrange] = ACTIONS(4947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCrefrange] = ACTIONS(4947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4945), + [anon_sym_BSLASHnewlabel] = ACTIONS(4947), + [anon_sym_BSLASHnewcommand] = ACTIONS(4947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4945), + [anon_sym_BSLASHdef] = ACTIONS(4947), + [anon_sym_BSLASHlet] = ACTIONS(4947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), + [anon_sym_BSLASHgls] = ACTIONS(4947), + [anon_sym_BSLASHGls] = ACTIONS(4947), + [anon_sym_BSLASHGLS] = ACTIONS(4947), + [anon_sym_BSLASHglspl] = ACTIONS(4947), + [anon_sym_BSLASHGlspl] = ACTIONS(4947), + [anon_sym_BSLASHGLSpl] = ACTIONS(4947), + [anon_sym_BSLASHglsdisp] = ACTIONS(4947), + [anon_sym_BSLASHglslink] = ACTIONS(4947), + [anon_sym_BSLASHglstext] = ACTIONS(4947), + [anon_sym_BSLASHGlstext] = ACTIONS(4947), + [anon_sym_BSLASHGLStext] = ACTIONS(4947), + [anon_sym_BSLASHglsfirst] = ACTIONS(4947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4947), + [anon_sym_BSLASHglsplural] = ACTIONS(4947), + [anon_sym_BSLASHGlsplural] = ACTIONS(4947), + [anon_sym_BSLASHGLSplural] = ACTIONS(4947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHglsname] = ACTIONS(4947), + [anon_sym_BSLASHGlsname] = ACTIONS(4947), + [anon_sym_BSLASHGLSname] = ACTIONS(4947), + [anon_sym_BSLASHglssymbol] = ACTIONS(4947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4947), + [anon_sym_BSLASHglsdesc] = ACTIONS(4947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4947), + [anon_sym_BSLASHglsuseri] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4947), + [anon_sym_BSLASHglsuserii] = ACTIONS(4947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4947), + [anon_sym_BSLASHglsuserv] = ACTIONS(4947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4947), + [anon_sym_BSLASHglsuservi] = ACTIONS(4947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4947), + [anon_sym_BSLASHnewacronym] = ACTIONS(4947), + [anon_sym_BSLASHacrshort] = ACTIONS(4947), + [anon_sym_BSLASHAcrshort] = ACTIONS(4947), + [anon_sym_BSLASHACRshort] = ACTIONS(4947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4947), + [anon_sym_BSLASHacrlong] = ACTIONS(4947), + [anon_sym_BSLASHAcrlong] = ACTIONS(4947), + [anon_sym_BSLASHACRlong] = ACTIONS(4947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4947), + [anon_sym_BSLASHacrfull] = ACTIONS(4947), + [anon_sym_BSLASHAcrfull] = ACTIONS(4947), + [anon_sym_BSLASHACRfull] = ACTIONS(4947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4947), + [anon_sym_BSLASHacs] = ACTIONS(4947), + [anon_sym_BSLASHAcs] = ACTIONS(4947), + [anon_sym_BSLASHacsp] = ACTIONS(4947), + [anon_sym_BSLASHAcsp] = ACTIONS(4947), + [anon_sym_BSLASHacl] = ACTIONS(4947), + [anon_sym_BSLASHAcl] = ACTIONS(4947), + [anon_sym_BSLASHaclp] = ACTIONS(4947), + [anon_sym_BSLASHAclp] = ACTIONS(4947), + [anon_sym_BSLASHacf] = ACTIONS(4947), + [anon_sym_BSLASHAcf] = ACTIONS(4947), + [anon_sym_BSLASHacfp] = ACTIONS(4947), + [anon_sym_BSLASHAcfp] = ACTIONS(4947), + [anon_sym_BSLASHac] = ACTIONS(4947), + [anon_sym_BSLASHAc] = ACTIONS(4947), + [anon_sym_BSLASHacp] = ACTIONS(4947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4947), + [anon_sym_BSLASHcolor] = ACTIONS(4947), + [anon_sym_BSLASHcolorbox] = ACTIONS(4947), + [anon_sym_BSLASHtextcolor] = ACTIONS(4947), + [anon_sym_BSLASHpagecolor] = ACTIONS(4947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4947), + [anon_sym_BSLASHtext] = ACTIONS(4947), + [anon_sym_BSLASHintertext] = ACTIONS(4947), + [anon_sym_shortintertext] = ACTIONS(4947), }, - [1161] = { - [sym_command_name] = ACTIONS(5185), + [1036] = { + [sym_command_name] = ACTIONS(4943), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4941), + [anon_sym_RPAREN] = ACTIONS(4941), + [anon_sym_LBRACK] = ACTIONS(4941), + [anon_sym_RBRACK] = ACTIONS(4941), + [anon_sym_COMMA] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4941), + [anon_sym_BSLASHpart] = ACTIONS(4943), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddpart] = ACTIONS(4943), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4941), + [anon_sym_BSLASHchapter] = ACTIONS(4943), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddchap] = ACTIONS(4943), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsection] = ACTIONS(4943), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddsec] = ACTIONS(4943), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubsection] = ACTIONS(4943), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4943), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHparagraph] = ACTIONS(4943), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4943), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4941), + [anon_sym_BSLASHitem] = ACTIONS(4943), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4941), + [anon_sym_LBRACE] = ACTIONS(4941), + [sym_word] = ACTIONS(4943), + [sym_placeholder] = ACTIONS(4941), + [anon_sym_PLUS] = ACTIONS(4943), + [anon_sym_DASH] = ACTIONS(4943), + [anon_sym_STAR] = ACTIONS(4943), + [anon_sym_SLASH] = ACTIONS(4943), + [anon_sym_CARET] = ACTIONS(4943), + [anon_sym__] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4943), + [anon_sym_GT] = ACTIONS(4943), + [anon_sym_BANG] = ACTIONS(4943), + [anon_sym_PIPE] = ACTIONS(4943), + [anon_sym_COLON] = ACTIONS(4943), + [anon_sym_SQUOTE] = ACTIONS(4943), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4941), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4941), + [anon_sym_DOLLAR] = ACTIONS(4943), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4941), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4941), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4941), + [anon_sym_BSLASHbegin] = ACTIONS(4943), + [anon_sym_BSLASHusepackage] = ACTIONS(4943), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4943), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4943), + [anon_sym_BSLASHinclude] = ACTIONS(4943), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4943), + [anon_sym_BSLASHinput] = ACTIONS(4943), + [anon_sym_BSLASHsubfile] = ACTIONS(4943), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), + [anon_sym_BSLASHbibliography] = ACTIONS(4943), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4943), + [anon_sym_BSLASHincludesvg] = ACTIONS(4943), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4943), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4943), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4943), + [anon_sym_BSLASHimport] = ACTIONS(4943), + [anon_sym_BSLASHsubimport] = ACTIONS(4943), + [anon_sym_BSLASHinputfrom] = ACTIONS(4943), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4943), + [anon_sym_BSLASHincludefrom] = ACTIONS(4943), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4943), + [anon_sym_BSLASHcaption] = ACTIONS(4943), + [anon_sym_BSLASHcite] = ACTIONS(4943), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCite] = ACTIONS(4943), + [anon_sym_BSLASHnocite] = ACTIONS(4943), + [anon_sym_BSLASHcitet] = ACTIONS(4943), + [anon_sym_BSLASHcitep] = ACTIONS(4943), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteauthor] = ACTIONS(4943), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4943), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitetitle] = ACTIONS(4943), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteyear] = ACTIONS(4943), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitedate] = ACTIONS(4943), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteurl] = ACTIONS(4943), + [anon_sym_BSLASHfullcite] = ACTIONS(4943), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4943), + [anon_sym_BSLASHcitealt] = ACTIONS(4943), + [anon_sym_BSLASHcitealp] = ACTIONS(4943), + [anon_sym_BSLASHcitetext] = ACTIONS(4943), + [anon_sym_BSLASHparencite] = ACTIONS(4943), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHParencite] = ACTIONS(4943), + [anon_sym_BSLASHfootcite] = ACTIONS(4943), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4943), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4943), + [anon_sym_BSLASHtextcite] = ACTIONS(4943), + [anon_sym_BSLASHTextcite] = ACTIONS(4943), + [anon_sym_BSLASHsmartcite] = ACTIONS(4943), + [anon_sym_BSLASHSmartcite] = ACTIONS(4943), + [anon_sym_BSLASHsupercite] = ACTIONS(4943), + [anon_sym_BSLASHautocite] = ACTIONS(4943), + [anon_sym_BSLASHAutocite] = ACTIONS(4943), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHvolcite] = ACTIONS(4943), + [anon_sym_BSLASHVolcite] = ACTIONS(4943), + [anon_sym_BSLASHpvolcite] = ACTIONS(4943), + [anon_sym_BSLASHPvolcite] = ACTIONS(4943), + [anon_sym_BSLASHfvolcite] = ACTIONS(4943), + [anon_sym_BSLASHftvolcite] = ACTIONS(4943), + [anon_sym_BSLASHsvolcite] = ACTIONS(4943), + [anon_sym_BSLASHSvolcite] = ACTIONS(4943), + [anon_sym_BSLASHtvolcite] = ACTIONS(4943), + [anon_sym_BSLASHTvolcite] = ACTIONS(4943), + [anon_sym_BSLASHavolcite] = ACTIONS(4943), + [anon_sym_BSLASHAvolcite] = ACTIONS(4943), + [anon_sym_BSLASHnotecite] = ACTIONS(4943), + [anon_sym_BSLASHNotecite] = ACTIONS(4943), + [anon_sym_BSLASHpnotecite] = ACTIONS(4943), + [anon_sym_BSLASHPnotecite] = ACTIONS(4943), + [anon_sym_BSLASHfnotecite] = ACTIONS(4943), + [anon_sym_BSLASHlabel] = ACTIONS(4943), + [anon_sym_BSLASHref] = ACTIONS(4943), + [anon_sym_BSLASHeqref] = ACTIONS(4943), + [anon_sym_BSLASHvref] = ACTIONS(4943), + [anon_sym_BSLASHVref] = ACTIONS(4943), + [anon_sym_BSLASHautoref] = ACTIONS(4943), + [anon_sym_BSLASHpageref] = ACTIONS(4943), + [anon_sym_BSLASHcref] = ACTIONS(4943), + [anon_sym_BSLASHCref] = ACTIONS(4943), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4941), + [anon_sym_BSLASHnamecref] = ACTIONS(4943), + [anon_sym_BSLASHnameCref] = ACTIONS(4943), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4943), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4943), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4943), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4943), + [anon_sym_BSLASHlabelcref] = ACTIONS(4943), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4943), + [anon_sym_BSLASHcrefrange] = ACTIONS(4943), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCrefrange] = ACTIONS(4943), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4941), + [anon_sym_BSLASHnewlabel] = ACTIONS(4943), + [anon_sym_BSLASHnewcommand] = ACTIONS(4943), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4943), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4943), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4943), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4941), + [anon_sym_BSLASHdef] = ACTIONS(4943), + [anon_sym_BSLASHlet] = ACTIONS(4943), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4943), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4943), + [anon_sym_BSLASHgls] = ACTIONS(4943), + [anon_sym_BSLASHGls] = ACTIONS(4943), + [anon_sym_BSLASHGLS] = ACTIONS(4943), + [anon_sym_BSLASHglspl] = ACTIONS(4943), + [anon_sym_BSLASHGlspl] = ACTIONS(4943), + [anon_sym_BSLASHGLSpl] = ACTIONS(4943), + [anon_sym_BSLASHglsdisp] = ACTIONS(4943), + [anon_sym_BSLASHglslink] = ACTIONS(4943), + [anon_sym_BSLASHglstext] = ACTIONS(4943), + [anon_sym_BSLASHGlstext] = ACTIONS(4943), + [anon_sym_BSLASHGLStext] = ACTIONS(4943), + [anon_sym_BSLASHglsfirst] = ACTIONS(4943), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4943), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4943), + [anon_sym_BSLASHglsplural] = ACTIONS(4943), + [anon_sym_BSLASHGlsplural] = ACTIONS(4943), + [anon_sym_BSLASHGLSplural] = ACTIONS(4943), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHglsname] = ACTIONS(4943), + [anon_sym_BSLASHGlsname] = ACTIONS(4943), + [anon_sym_BSLASHGLSname] = ACTIONS(4943), + [anon_sym_BSLASHglssymbol] = ACTIONS(4943), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4943), + [anon_sym_BSLASHglsdesc] = ACTIONS(4943), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4943), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4943), + [anon_sym_BSLASHglsuseri] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4943), + [anon_sym_BSLASHglsuserii] = ACTIONS(4943), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4943), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4943), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4943), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4943), + [anon_sym_BSLASHglsuserv] = ACTIONS(4943), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4943), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4943), + [anon_sym_BSLASHglsuservi] = ACTIONS(4943), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4943), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4943), + [anon_sym_BSLASHnewacronym] = ACTIONS(4943), + [anon_sym_BSLASHacrshort] = ACTIONS(4943), + [anon_sym_BSLASHAcrshort] = ACTIONS(4943), + [anon_sym_BSLASHACRshort] = ACTIONS(4943), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4943), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4943), + [anon_sym_BSLASHacrlong] = ACTIONS(4943), + [anon_sym_BSLASHAcrlong] = ACTIONS(4943), + [anon_sym_BSLASHACRlong] = ACTIONS(4943), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4943), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4943), + [anon_sym_BSLASHacrfull] = ACTIONS(4943), + [anon_sym_BSLASHAcrfull] = ACTIONS(4943), + [anon_sym_BSLASHACRfull] = ACTIONS(4943), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4943), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4943), + [anon_sym_BSLASHacs] = ACTIONS(4943), + [anon_sym_BSLASHAcs] = ACTIONS(4943), + [anon_sym_BSLASHacsp] = ACTIONS(4943), + [anon_sym_BSLASHAcsp] = ACTIONS(4943), + [anon_sym_BSLASHacl] = ACTIONS(4943), + [anon_sym_BSLASHAcl] = ACTIONS(4943), + [anon_sym_BSLASHaclp] = ACTIONS(4943), + [anon_sym_BSLASHAclp] = ACTIONS(4943), + [anon_sym_BSLASHacf] = ACTIONS(4943), + [anon_sym_BSLASHAcf] = ACTIONS(4943), + [anon_sym_BSLASHacfp] = ACTIONS(4943), + [anon_sym_BSLASHAcfp] = ACTIONS(4943), + [anon_sym_BSLASHac] = ACTIONS(4943), + [anon_sym_BSLASHAc] = ACTIONS(4943), + [anon_sym_BSLASHacp] = ACTIONS(4943), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4943), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4943), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4943), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4943), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4943), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4943), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4943), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4943), + [anon_sym_BSLASHcolor] = ACTIONS(4943), + [anon_sym_BSLASHcolorbox] = ACTIONS(4943), + [anon_sym_BSLASHtextcolor] = ACTIONS(4943), + [anon_sym_BSLASHpagecolor] = ACTIONS(4943), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4943), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4943), + [anon_sym_BSLASHtext] = ACTIONS(4943), + [anon_sym_BSLASHintertext] = ACTIONS(4943), + [anon_sym_shortintertext] = ACTIONS(4943), + }, + [1037] = { + [sym_command_name] = ACTIONS(5131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_BSLASHpart] = ACTIONS(5131), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddpart] = ACTIONS(5131), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5129), + [anon_sym_BSLASHchapter] = ACTIONS(5131), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddchap] = ACTIONS(5131), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsection] = ACTIONS(5131), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddsec] = ACTIONS(5131), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubsection] = ACTIONS(5131), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5131), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHparagraph] = ACTIONS(5131), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5131), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5129), + [anon_sym_BSLASHitem] = ACTIONS(5131), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5129), + [sym_word] = ACTIONS(5131), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5129), + [anon_sym_DOLLAR] = ACTIONS(5131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5129), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5129), + [anon_sym_BSLASHbegin] = ACTIONS(5131), + [anon_sym_BSLASHusepackage] = ACTIONS(5131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5131), + [anon_sym_BSLASHinclude] = ACTIONS(5131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5131), + [anon_sym_BSLASHinput] = ACTIONS(5131), + [anon_sym_BSLASHsubfile] = ACTIONS(5131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5131), + [anon_sym_BSLASHbibliography] = ACTIONS(5131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5131), + [anon_sym_BSLASHincludesvg] = ACTIONS(5131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5131), + [anon_sym_BSLASHimport] = ACTIONS(5131), + [anon_sym_BSLASHsubimport] = ACTIONS(5131), + [anon_sym_BSLASHinputfrom] = ACTIONS(5131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5131), + [anon_sym_BSLASHincludefrom] = ACTIONS(5131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5131), + [anon_sym_BSLASHcaption] = ACTIONS(5131), + [anon_sym_BSLASHcite] = ACTIONS(5131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCite] = ACTIONS(5131), + [anon_sym_BSLASHnocite] = ACTIONS(5131), + [anon_sym_BSLASHcitet] = ACTIONS(5131), + [anon_sym_BSLASHcitep] = ACTIONS(5131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteauthor] = ACTIONS(5131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitetitle] = ACTIONS(5131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteyear] = ACTIONS(5131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitedate] = ACTIONS(5131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteurl] = ACTIONS(5131), + [anon_sym_BSLASHfullcite] = ACTIONS(5131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5131), + [anon_sym_BSLASHcitealt] = ACTIONS(5131), + [anon_sym_BSLASHcitealp] = ACTIONS(5131), + [anon_sym_BSLASHcitetext] = ACTIONS(5131), + [anon_sym_BSLASHparencite] = ACTIONS(5131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHParencite] = ACTIONS(5131), + [anon_sym_BSLASHfootcite] = ACTIONS(5131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5131), + [anon_sym_BSLASHtextcite] = ACTIONS(5131), + [anon_sym_BSLASHTextcite] = ACTIONS(5131), + [anon_sym_BSLASHsmartcite] = ACTIONS(5131), + [anon_sym_BSLASHSmartcite] = ACTIONS(5131), + [anon_sym_BSLASHsupercite] = ACTIONS(5131), + [anon_sym_BSLASHautocite] = ACTIONS(5131), + [anon_sym_BSLASHAutocite] = ACTIONS(5131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHvolcite] = ACTIONS(5131), + [anon_sym_BSLASHVolcite] = ACTIONS(5131), + [anon_sym_BSLASHpvolcite] = ACTIONS(5131), + [anon_sym_BSLASHPvolcite] = ACTIONS(5131), + [anon_sym_BSLASHfvolcite] = ACTIONS(5131), + [anon_sym_BSLASHftvolcite] = ACTIONS(5131), + [anon_sym_BSLASHsvolcite] = ACTIONS(5131), + [anon_sym_BSLASHSvolcite] = ACTIONS(5131), + [anon_sym_BSLASHtvolcite] = ACTIONS(5131), + [anon_sym_BSLASHTvolcite] = ACTIONS(5131), + [anon_sym_BSLASHavolcite] = ACTIONS(5131), + [anon_sym_BSLASHAvolcite] = ACTIONS(5131), + [anon_sym_BSLASHnotecite] = ACTIONS(5131), + [anon_sym_BSLASHNotecite] = ACTIONS(5131), + [anon_sym_BSLASHpnotecite] = ACTIONS(5131), + [anon_sym_BSLASHPnotecite] = ACTIONS(5131), + [anon_sym_BSLASHfnotecite] = ACTIONS(5131), + [anon_sym_BSLASHlabel] = ACTIONS(5131), + [anon_sym_BSLASHref] = ACTIONS(5131), + [anon_sym_BSLASHeqref] = ACTIONS(5131), + [anon_sym_BSLASHvref] = ACTIONS(5131), + [anon_sym_BSLASHVref] = ACTIONS(5131), + [anon_sym_BSLASHautoref] = ACTIONS(5131), + [anon_sym_BSLASHpageref] = ACTIONS(5131), + [anon_sym_BSLASHcref] = ACTIONS(5131), + [anon_sym_BSLASHCref] = ACTIONS(5131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5129), + [anon_sym_BSLASHnamecref] = ACTIONS(5131), + [anon_sym_BSLASHnameCref] = ACTIONS(5131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5131), + [anon_sym_BSLASHlabelcref] = ACTIONS(5131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5131), + [anon_sym_BSLASHcrefrange] = ACTIONS(5131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCrefrange] = ACTIONS(5131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5129), + [anon_sym_BSLASHnewlabel] = ACTIONS(5131), + [anon_sym_BSLASHnewcommand] = ACTIONS(5131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5129), + [anon_sym_BSLASHdef] = ACTIONS(5131), + [anon_sym_BSLASHlet] = ACTIONS(5131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5131), + [anon_sym_BSLASHgls] = ACTIONS(5131), + [anon_sym_BSLASHGls] = ACTIONS(5131), + [anon_sym_BSLASHGLS] = ACTIONS(5131), + [anon_sym_BSLASHglspl] = ACTIONS(5131), + [anon_sym_BSLASHGlspl] = ACTIONS(5131), + [anon_sym_BSLASHGLSpl] = ACTIONS(5131), + [anon_sym_BSLASHglsdisp] = ACTIONS(5131), + [anon_sym_BSLASHglslink] = ACTIONS(5131), + [anon_sym_BSLASHglstext] = ACTIONS(5131), + [anon_sym_BSLASHGlstext] = ACTIONS(5131), + [anon_sym_BSLASHGLStext] = ACTIONS(5131), + [anon_sym_BSLASHglsfirst] = ACTIONS(5131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5131), + [anon_sym_BSLASHglsplural] = ACTIONS(5131), + [anon_sym_BSLASHGlsplural] = ACTIONS(5131), + [anon_sym_BSLASHGLSplural] = ACTIONS(5131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHglsname] = ACTIONS(5131), + [anon_sym_BSLASHGlsname] = ACTIONS(5131), + [anon_sym_BSLASHGLSname] = ACTIONS(5131), + [anon_sym_BSLASHglssymbol] = ACTIONS(5131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5131), + [anon_sym_BSLASHglsdesc] = ACTIONS(5131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5131), + [anon_sym_BSLASHglsuseri] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5131), + [anon_sym_BSLASHglsuserii] = ACTIONS(5131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5131), + [anon_sym_BSLASHglsuserv] = ACTIONS(5131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5131), + [anon_sym_BSLASHglsuservi] = ACTIONS(5131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5131), + [anon_sym_BSLASHnewacronym] = ACTIONS(5131), + [anon_sym_BSLASHacrshort] = ACTIONS(5131), + [anon_sym_BSLASHAcrshort] = ACTIONS(5131), + [anon_sym_BSLASHACRshort] = ACTIONS(5131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5131), + [anon_sym_BSLASHacrlong] = ACTIONS(5131), + [anon_sym_BSLASHAcrlong] = ACTIONS(5131), + [anon_sym_BSLASHACRlong] = ACTIONS(5131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5131), + [anon_sym_BSLASHacrfull] = ACTIONS(5131), + [anon_sym_BSLASHAcrfull] = ACTIONS(5131), + [anon_sym_BSLASHACRfull] = ACTIONS(5131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5131), + [anon_sym_BSLASHacs] = ACTIONS(5131), + [anon_sym_BSLASHAcs] = ACTIONS(5131), + [anon_sym_BSLASHacsp] = ACTIONS(5131), + [anon_sym_BSLASHAcsp] = ACTIONS(5131), + [anon_sym_BSLASHacl] = ACTIONS(5131), + [anon_sym_BSLASHAcl] = ACTIONS(5131), + [anon_sym_BSLASHaclp] = ACTIONS(5131), + [anon_sym_BSLASHAclp] = ACTIONS(5131), + [anon_sym_BSLASHacf] = ACTIONS(5131), + [anon_sym_BSLASHAcf] = ACTIONS(5131), + [anon_sym_BSLASHacfp] = ACTIONS(5131), + [anon_sym_BSLASHAcfp] = ACTIONS(5131), + [anon_sym_BSLASHac] = ACTIONS(5131), + [anon_sym_BSLASHAc] = ACTIONS(5131), + [anon_sym_BSLASHacp] = ACTIONS(5131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5131), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5131), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5131), + [anon_sym_BSLASHcolor] = ACTIONS(5131), + [anon_sym_BSLASHcolorbox] = ACTIONS(5131), + [anon_sym_BSLASHtextcolor] = ACTIONS(5131), + [anon_sym_BSLASHpagecolor] = ACTIONS(5131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5131), + [anon_sym_BSLASHtext] = ACTIONS(5131), + [anon_sym_BSLASHintertext] = ACTIONS(5131), + [anon_sym_shortintertext] = ACTIONS(5131), + }, + [1038] = { + [sym_command_name] = ACTIONS(4935), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4935), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_RPAREN] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_RBRACK] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_EQ] = ACTIONS(4933), + [anon_sym_BSLASHpart] = ACTIONS(4935), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddpart] = ACTIONS(4935), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4933), + [anon_sym_BSLASHchapter] = ACTIONS(4935), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddchap] = ACTIONS(4935), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsection] = ACTIONS(4935), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddsec] = ACTIONS(4935), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubsection] = ACTIONS(4935), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4935), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHparagraph] = ACTIONS(4935), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4935), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4933), + [anon_sym_BSLASHitem] = ACTIONS(4935), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4933), + [sym_word] = ACTIONS(4935), + [sym_placeholder] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4935), + [anon_sym_DASH] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4935), + [anon_sym_SLASH] = ACTIONS(4935), + [anon_sym_CARET] = ACTIONS(4935), + [anon_sym__] = ACTIONS(4935), + [anon_sym_LT] = ACTIONS(4935), + [anon_sym_GT] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4935), + [anon_sym_PIPE] = ACTIONS(4935), + [anon_sym_COLON] = ACTIONS(4935), + [anon_sym_SQUOTE] = ACTIONS(4935), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4933), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4933), + [anon_sym_DOLLAR] = ACTIONS(4935), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4933), + [anon_sym_BSLASH_RPAREN] = ACTIONS(4933), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4933), + [anon_sym_BSLASHbegin] = ACTIONS(4935), + [anon_sym_BSLASHusepackage] = ACTIONS(4935), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4935), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4935), + [anon_sym_BSLASHinclude] = ACTIONS(4935), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4935), + [anon_sym_BSLASHinput] = ACTIONS(4935), + [anon_sym_BSLASHsubfile] = ACTIONS(4935), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4935), + [anon_sym_BSLASHbibliography] = ACTIONS(4935), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4935), + [anon_sym_BSLASHincludesvg] = ACTIONS(4935), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4935), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4935), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4935), + [anon_sym_BSLASHimport] = ACTIONS(4935), + [anon_sym_BSLASHsubimport] = ACTIONS(4935), + [anon_sym_BSLASHinputfrom] = ACTIONS(4935), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4935), + [anon_sym_BSLASHincludefrom] = ACTIONS(4935), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4935), + [anon_sym_BSLASHcaption] = ACTIONS(4935), + [anon_sym_BSLASHcite] = ACTIONS(4935), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCite] = ACTIONS(4935), + [anon_sym_BSLASHnocite] = ACTIONS(4935), + [anon_sym_BSLASHcitet] = ACTIONS(4935), + [anon_sym_BSLASHcitep] = ACTIONS(4935), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteauthor] = ACTIONS(4935), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4935), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitetitle] = ACTIONS(4935), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteyear] = ACTIONS(4935), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitedate] = ACTIONS(4935), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteurl] = ACTIONS(4935), + [anon_sym_BSLASHfullcite] = ACTIONS(4935), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4935), + [anon_sym_BSLASHcitealt] = ACTIONS(4935), + [anon_sym_BSLASHcitealp] = ACTIONS(4935), + [anon_sym_BSLASHcitetext] = ACTIONS(4935), + [anon_sym_BSLASHparencite] = ACTIONS(4935), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHParencite] = ACTIONS(4935), + [anon_sym_BSLASHfootcite] = ACTIONS(4935), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4935), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4935), + [anon_sym_BSLASHtextcite] = ACTIONS(4935), + [anon_sym_BSLASHTextcite] = ACTIONS(4935), + [anon_sym_BSLASHsmartcite] = ACTIONS(4935), + [anon_sym_BSLASHSmartcite] = ACTIONS(4935), + [anon_sym_BSLASHsupercite] = ACTIONS(4935), + [anon_sym_BSLASHautocite] = ACTIONS(4935), + [anon_sym_BSLASHAutocite] = ACTIONS(4935), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHvolcite] = ACTIONS(4935), + [anon_sym_BSLASHVolcite] = ACTIONS(4935), + [anon_sym_BSLASHpvolcite] = ACTIONS(4935), + [anon_sym_BSLASHPvolcite] = ACTIONS(4935), + [anon_sym_BSLASHfvolcite] = ACTIONS(4935), + [anon_sym_BSLASHftvolcite] = ACTIONS(4935), + [anon_sym_BSLASHsvolcite] = ACTIONS(4935), + [anon_sym_BSLASHSvolcite] = ACTIONS(4935), + [anon_sym_BSLASHtvolcite] = ACTIONS(4935), + [anon_sym_BSLASHTvolcite] = ACTIONS(4935), + [anon_sym_BSLASHavolcite] = ACTIONS(4935), + [anon_sym_BSLASHAvolcite] = ACTIONS(4935), + [anon_sym_BSLASHnotecite] = ACTIONS(4935), + [anon_sym_BSLASHNotecite] = ACTIONS(4935), + [anon_sym_BSLASHpnotecite] = ACTIONS(4935), + [anon_sym_BSLASHPnotecite] = ACTIONS(4935), + [anon_sym_BSLASHfnotecite] = ACTIONS(4935), + [anon_sym_BSLASHlabel] = ACTIONS(4935), + [anon_sym_BSLASHref] = ACTIONS(4935), + [anon_sym_BSLASHeqref] = ACTIONS(4935), + [anon_sym_BSLASHvref] = ACTIONS(4935), + [anon_sym_BSLASHVref] = ACTIONS(4935), + [anon_sym_BSLASHautoref] = ACTIONS(4935), + [anon_sym_BSLASHpageref] = ACTIONS(4935), + [anon_sym_BSLASHcref] = ACTIONS(4935), + [anon_sym_BSLASHCref] = ACTIONS(4935), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4933), + [anon_sym_BSLASHnamecref] = ACTIONS(4935), + [anon_sym_BSLASHnameCref] = ACTIONS(4935), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4935), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4935), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4935), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4935), + [anon_sym_BSLASHlabelcref] = ACTIONS(4935), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4935), + [anon_sym_BSLASHcrefrange] = ACTIONS(4935), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCrefrange] = ACTIONS(4935), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4933), + [anon_sym_BSLASHnewlabel] = ACTIONS(4935), + [anon_sym_BSLASHnewcommand] = ACTIONS(4935), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4935), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4935), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4935), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4933), + [anon_sym_BSLASHdef] = ACTIONS(4935), + [anon_sym_BSLASHlet] = ACTIONS(4935), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4935), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4935), + [anon_sym_BSLASHgls] = ACTIONS(4935), + [anon_sym_BSLASHGls] = ACTIONS(4935), + [anon_sym_BSLASHGLS] = ACTIONS(4935), + [anon_sym_BSLASHglspl] = ACTIONS(4935), + [anon_sym_BSLASHGlspl] = ACTIONS(4935), + [anon_sym_BSLASHGLSpl] = ACTIONS(4935), + [anon_sym_BSLASHglsdisp] = ACTIONS(4935), + [anon_sym_BSLASHglslink] = ACTIONS(4935), + [anon_sym_BSLASHglstext] = ACTIONS(4935), + [anon_sym_BSLASHGlstext] = ACTIONS(4935), + [anon_sym_BSLASHGLStext] = ACTIONS(4935), + [anon_sym_BSLASHglsfirst] = ACTIONS(4935), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4935), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4935), + [anon_sym_BSLASHglsplural] = ACTIONS(4935), + [anon_sym_BSLASHGlsplural] = ACTIONS(4935), + [anon_sym_BSLASHGLSplural] = ACTIONS(4935), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHglsname] = ACTIONS(4935), + [anon_sym_BSLASHGlsname] = ACTIONS(4935), + [anon_sym_BSLASHGLSname] = ACTIONS(4935), + [anon_sym_BSLASHglssymbol] = ACTIONS(4935), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4935), + [anon_sym_BSLASHglsdesc] = ACTIONS(4935), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4935), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4935), + [anon_sym_BSLASHglsuseri] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4935), + [anon_sym_BSLASHglsuserii] = ACTIONS(4935), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4935), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4935), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4935), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4935), + [anon_sym_BSLASHglsuserv] = ACTIONS(4935), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4935), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4935), + [anon_sym_BSLASHglsuservi] = ACTIONS(4935), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4935), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4935), + [anon_sym_BSLASHnewacronym] = ACTIONS(4935), + [anon_sym_BSLASHacrshort] = ACTIONS(4935), + [anon_sym_BSLASHAcrshort] = ACTIONS(4935), + [anon_sym_BSLASHACRshort] = ACTIONS(4935), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4935), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4935), + [anon_sym_BSLASHacrlong] = ACTIONS(4935), + [anon_sym_BSLASHAcrlong] = ACTIONS(4935), + [anon_sym_BSLASHACRlong] = ACTIONS(4935), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4935), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4935), + [anon_sym_BSLASHacrfull] = ACTIONS(4935), + [anon_sym_BSLASHAcrfull] = ACTIONS(4935), + [anon_sym_BSLASHACRfull] = ACTIONS(4935), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4935), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4935), + [anon_sym_BSLASHacs] = ACTIONS(4935), + [anon_sym_BSLASHAcs] = ACTIONS(4935), + [anon_sym_BSLASHacsp] = ACTIONS(4935), + [anon_sym_BSLASHAcsp] = ACTIONS(4935), + [anon_sym_BSLASHacl] = ACTIONS(4935), + [anon_sym_BSLASHAcl] = ACTIONS(4935), + [anon_sym_BSLASHaclp] = ACTIONS(4935), + [anon_sym_BSLASHAclp] = ACTIONS(4935), + [anon_sym_BSLASHacf] = ACTIONS(4935), + [anon_sym_BSLASHAcf] = ACTIONS(4935), + [anon_sym_BSLASHacfp] = ACTIONS(4935), + [anon_sym_BSLASHAcfp] = ACTIONS(4935), + [anon_sym_BSLASHac] = ACTIONS(4935), + [anon_sym_BSLASHAc] = ACTIONS(4935), + [anon_sym_BSLASHacp] = ACTIONS(4935), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4935), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4935), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4935), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4935), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4935), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4935), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4935), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4935), + [anon_sym_BSLASHcolor] = ACTIONS(4935), + [anon_sym_BSLASHcolorbox] = ACTIONS(4935), + [anon_sym_BSLASHtextcolor] = ACTIONS(4935), + [anon_sym_BSLASHpagecolor] = ACTIONS(4935), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4935), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), + [anon_sym_BSLASHtext] = ACTIONS(4935), + [anon_sym_BSLASHintertext] = ACTIONS(4935), + [anon_sym_shortintertext] = ACTIONS(4935), + }, + [1039] = { + [sym_command_name] = ACTIONS(5135), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_BSLASHpart] = ACTIONS(5185), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddpart] = ACTIONS(5185), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), - [anon_sym_BSLASHchapter] = ACTIONS(5185), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddchap] = ACTIONS(5185), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsection] = ACTIONS(5185), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHaddsec] = ACTIONS(5185), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), - [anon_sym_BSLASHparagraph] = ACTIONS(5185), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), - [anon_sym_BSLASHitem] = ACTIONS(5185), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASHbegin] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), + [anon_sym_BSLASHiffalse] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_RPAREN] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_RBRACK] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_BSLASHpart] = ACTIONS(5135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), + [anon_sym_BSLASHaddpart] = ACTIONS(5135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), + [anon_sym_BSLASHchapter] = ACTIONS(5135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), + [anon_sym_BSLASHaddchap] = ACTIONS(5135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsection] = ACTIONS(5135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), + [anon_sym_BSLASHaddsec] = ACTIONS(5135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsubsection] = ACTIONS(5135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), + [anon_sym_BSLASHparagraph] = ACTIONS(5135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), + [anon_sym_BSLASHitem] = ACTIONS(5135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5133), + [sym_word] = ACTIONS(5135), + [sym_placeholder] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_CARET] = ACTIONS(5135), + [anon_sym__] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_PIPE] = ACTIONS(5135), + [anon_sym_COLON] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), + [anon_sym_DOLLAR] = ACTIONS(5135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5133), + [anon_sym_BSLASHbegin] = ACTIONS(5135), + [anon_sym_BSLASHusepackage] = ACTIONS(5135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), + [anon_sym_BSLASHinclude] = ACTIONS(5135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), + [anon_sym_BSLASHinput] = ACTIONS(5135), + [anon_sym_BSLASHsubfile] = ACTIONS(5135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), + [anon_sym_BSLASHbibliography] = ACTIONS(5135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), + [anon_sym_BSLASHincludesvg] = ACTIONS(5135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), + [anon_sym_BSLASHimport] = ACTIONS(5135), + [anon_sym_BSLASHsubimport] = ACTIONS(5135), + [anon_sym_BSLASHinputfrom] = ACTIONS(5135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), + [anon_sym_BSLASHincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHcaption] = ACTIONS(5135), + [anon_sym_BSLASHcite] = ACTIONS(5135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCite] = ACTIONS(5135), + [anon_sym_BSLASHnocite] = ACTIONS(5135), + [anon_sym_BSLASHcitet] = ACTIONS(5135), + [anon_sym_BSLASHcitep] = ACTIONS(5135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteauthor] = ACTIONS(5135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitetitle] = ACTIONS(5135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteyear] = ACTIONS(5135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitedate] = ACTIONS(5135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteurl] = ACTIONS(5135), + [anon_sym_BSLASHfullcite] = ACTIONS(5135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), + [anon_sym_BSLASHcitealt] = ACTIONS(5135), + [anon_sym_BSLASHcitealp] = ACTIONS(5135), + [anon_sym_BSLASHcitetext] = ACTIONS(5135), + [anon_sym_BSLASHparencite] = ACTIONS(5135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHParencite] = ACTIONS(5135), + [anon_sym_BSLASHfootcite] = ACTIONS(5135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), + [anon_sym_BSLASHtextcite] = ACTIONS(5135), + [anon_sym_BSLASHTextcite] = ACTIONS(5135), + [anon_sym_BSLASHsmartcite] = ACTIONS(5135), + [anon_sym_BSLASHSmartcite] = ACTIONS(5135), + [anon_sym_BSLASHsupercite] = ACTIONS(5135), + [anon_sym_BSLASHautocite] = ACTIONS(5135), + [anon_sym_BSLASHAutocite] = ACTIONS(5135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHvolcite] = ACTIONS(5135), + [anon_sym_BSLASHVolcite] = ACTIONS(5135), + [anon_sym_BSLASHpvolcite] = ACTIONS(5135), + [anon_sym_BSLASHPvolcite] = ACTIONS(5135), + [anon_sym_BSLASHfvolcite] = ACTIONS(5135), + [anon_sym_BSLASHftvolcite] = ACTIONS(5135), + [anon_sym_BSLASHsvolcite] = ACTIONS(5135), + [anon_sym_BSLASHSvolcite] = ACTIONS(5135), + [anon_sym_BSLASHtvolcite] = ACTIONS(5135), + [anon_sym_BSLASHTvolcite] = ACTIONS(5135), + [anon_sym_BSLASHavolcite] = ACTIONS(5135), + [anon_sym_BSLASHAvolcite] = ACTIONS(5135), + [anon_sym_BSLASHnotecite] = ACTIONS(5135), + [anon_sym_BSLASHNotecite] = ACTIONS(5135), + [anon_sym_BSLASHpnotecite] = ACTIONS(5135), + [anon_sym_BSLASHPnotecite] = ACTIONS(5135), + [anon_sym_BSLASHfnotecite] = ACTIONS(5135), + [anon_sym_BSLASHlabel] = ACTIONS(5135), + [anon_sym_BSLASHref] = ACTIONS(5135), + [anon_sym_BSLASHeqref] = ACTIONS(5135), + [anon_sym_BSLASHvref] = ACTIONS(5135), + [anon_sym_BSLASHVref] = ACTIONS(5135), + [anon_sym_BSLASHautoref] = ACTIONS(5135), + [anon_sym_BSLASHpageref] = ACTIONS(5135), + [anon_sym_BSLASHcref] = ACTIONS(5135), + [anon_sym_BSLASHCref] = ACTIONS(5135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnameCref] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHlabelcref] = ACTIONS(5135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCrefrange] = ACTIONS(5135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnewlabel] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), + [anon_sym_BSLASHdef] = ACTIONS(5135), + [anon_sym_BSLASHlet] = ACTIONS(5135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), + [anon_sym_BSLASHgls] = ACTIONS(5135), + [anon_sym_BSLASHGls] = ACTIONS(5135), + [anon_sym_BSLASHGLS] = ACTIONS(5135), + [anon_sym_BSLASHglspl] = ACTIONS(5135), + [anon_sym_BSLASHGlspl] = ACTIONS(5135), + [anon_sym_BSLASHGLSpl] = ACTIONS(5135), + [anon_sym_BSLASHglsdisp] = ACTIONS(5135), + [anon_sym_BSLASHglslink] = ACTIONS(5135), + [anon_sym_BSLASHglstext] = ACTIONS(5135), + [anon_sym_BSLASHGlstext] = ACTIONS(5135), + [anon_sym_BSLASHGLStext] = ACTIONS(5135), + [anon_sym_BSLASHglsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), + [anon_sym_BSLASHglsplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSplural] = ACTIONS(5135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHglsname] = ACTIONS(5135), + [anon_sym_BSLASHGlsname] = ACTIONS(5135), + [anon_sym_BSLASHGLSname] = ACTIONS(5135), + [anon_sym_BSLASHglssymbol] = ACTIONS(5135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), + [anon_sym_BSLASHglsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), + [anon_sym_BSLASHglsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), + [anon_sym_BSLASHglsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), + [anon_sym_BSLASHglsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), + [anon_sym_BSLASHglsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), + [anon_sym_BSLASHnewacronym] = ACTIONS(5135), + [anon_sym_BSLASHacrshort] = ACTIONS(5135), + [anon_sym_BSLASHAcrshort] = ACTIONS(5135), + [anon_sym_BSLASHACRshort] = ACTIONS(5135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), + [anon_sym_BSLASHacrlong] = ACTIONS(5135), + [anon_sym_BSLASHAcrlong] = ACTIONS(5135), + [anon_sym_BSLASHACRlong] = ACTIONS(5135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), + [anon_sym_BSLASHacrfull] = ACTIONS(5135), + [anon_sym_BSLASHAcrfull] = ACTIONS(5135), + [anon_sym_BSLASHACRfull] = ACTIONS(5135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), + [anon_sym_BSLASHacs] = ACTIONS(5135), + [anon_sym_BSLASHAcs] = ACTIONS(5135), + [anon_sym_BSLASHacsp] = ACTIONS(5135), + [anon_sym_BSLASHAcsp] = ACTIONS(5135), + [anon_sym_BSLASHacl] = ACTIONS(5135), + [anon_sym_BSLASHAcl] = ACTIONS(5135), + [anon_sym_BSLASHaclp] = ACTIONS(5135), + [anon_sym_BSLASHAclp] = ACTIONS(5135), + [anon_sym_BSLASHacf] = ACTIONS(5135), + [anon_sym_BSLASHAcf] = ACTIONS(5135), + [anon_sym_BSLASHacfp] = ACTIONS(5135), + [anon_sym_BSLASHAcfp] = ACTIONS(5135), + [anon_sym_BSLASHac] = ACTIONS(5135), + [anon_sym_BSLASHAc] = ACTIONS(5135), + [anon_sym_BSLASHacp] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), + [anon_sym_BSLASHcolor] = ACTIONS(5135), + [anon_sym_BSLASHcolorbox] = ACTIONS(5135), + [anon_sym_BSLASHtextcolor] = ACTIONS(5135), + [anon_sym_BSLASHpagecolor] = ACTIONS(5135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [anon_sym_BSLASHtext] = ACTIONS(5135), + [anon_sym_BSLASHintertext] = ACTIONS(5135), + [anon_sym_shortintertext] = ACTIONS(5135), }, - [1162] = { - [sym_command_name] = ACTIONS(4949), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4947), - [anon_sym_RBRACK] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_BSLASHpart] = ACTIONS(4949), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddpart] = ACTIONS(4949), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4947), - [anon_sym_BSLASHchapter] = ACTIONS(4949), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddchap] = ACTIONS(4949), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsection] = ACTIONS(4949), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHaddsec] = ACTIONS(4949), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubsection] = ACTIONS(4949), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4949), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4947), - [anon_sym_BSLASHparagraph] = ACTIONS(4949), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4947), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4949), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4947), - [anon_sym_BSLASHitem] = ACTIONS(4949), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [sym_word] = ACTIONS(4949), - [sym_placeholder] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4949), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym__] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4949), - [anon_sym_BANG] = ACTIONS(4949), - [anon_sym_PIPE] = ACTIONS(4949), - [anon_sym_COLON] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4949), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4947), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4947), - [anon_sym_BSLASHbegin] = ACTIONS(4949), - [anon_sym_BSLASHusepackage] = ACTIONS(4949), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4949), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4949), - [anon_sym_BSLASHinclude] = ACTIONS(4949), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4949), - [anon_sym_BSLASHinput] = ACTIONS(4949), - [anon_sym_BSLASHsubfile] = ACTIONS(4949), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4949), - [anon_sym_BSLASHbibliography] = ACTIONS(4949), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4949), - [anon_sym_BSLASHincludesvg] = ACTIONS(4949), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4949), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4949), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4949), - [anon_sym_BSLASHimport] = ACTIONS(4949), - [anon_sym_BSLASHsubimport] = ACTIONS(4949), - [anon_sym_BSLASHinputfrom] = ACTIONS(4949), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4949), - [anon_sym_BSLASHincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHcaption] = ACTIONS(4949), - [anon_sym_BSLASHcite] = ACTIONS(4949), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCite] = ACTIONS(4949), - [anon_sym_BSLASHnocite] = ACTIONS(4949), - [anon_sym_BSLASHcitet] = ACTIONS(4949), - [anon_sym_BSLASHcitep] = ACTIONS(4949), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteyear] = ACTIONS(4949), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitedate] = ACTIONS(4949), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteurl] = ACTIONS(4949), - [anon_sym_BSLASHfullcite] = ACTIONS(4949), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4949), - [anon_sym_BSLASHcitealt] = ACTIONS(4949), - [anon_sym_BSLASHcitealp] = ACTIONS(4949), - [anon_sym_BSLASHcitetext] = ACTIONS(4949), - [anon_sym_BSLASHparencite] = ACTIONS(4949), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHParencite] = ACTIONS(4949), - [anon_sym_BSLASHfootcite] = ACTIONS(4949), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4949), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4949), - [anon_sym_BSLASHtextcite] = ACTIONS(4949), - [anon_sym_BSLASHTextcite] = ACTIONS(4949), - [anon_sym_BSLASHsmartcite] = ACTIONS(4949), - [anon_sym_BSLASHSmartcite] = ACTIONS(4949), - [anon_sym_BSLASHsupercite] = ACTIONS(4949), - [anon_sym_BSLASHautocite] = ACTIONS(4949), - [anon_sym_BSLASHAutocite] = ACTIONS(4949), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHvolcite] = ACTIONS(4949), - [anon_sym_BSLASHVolcite] = ACTIONS(4949), - [anon_sym_BSLASHpvolcite] = ACTIONS(4949), - [anon_sym_BSLASHPvolcite] = ACTIONS(4949), - [anon_sym_BSLASHfvolcite] = ACTIONS(4949), - [anon_sym_BSLASHftvolcite] = ACTIONS(4949), - [anon_sym_BSLASHsvolcite] = ACTIONS(4949), - [anon_sym_BSLASHSvolcite] = ACTIONS(4949), - [anon_sym_BSLASHtvolcite] = ACTIONS(4949), - [anon_sym_BSLASHTvolcite] = ACTIONS(4949), - [anon_sym_BSLASHavolcite] = ACTIONS(4949), - [anon_sym_BSLASHAvolcite] = ACTIONS(4949), - [anon_sym_BSLASHnotecite] = ACTIONS(4949), - [anon_sym_BSLASHNotecite] = ACTIONS(4949), - [anon_sym_BSLASHpnotecite] = ACTIONS(4949), - [anon_sym_BSLASHPnotecite] = ACTIONS(4949), - [anon_sym_BSLASHfnotecite] = ACTIONS(4949), - [anon_sym_BSLASHlabel] = ACTIONS(4949), - [anon_sym_BSLASHref] = ACTIONS(4949), - [anon_sym_BSLASHeqref] = ACTIONS(4949), - [anon_sym_BSLASHvref] = ACTIONS(4949), - [anon_sym_BSLASHVref] = ACTIONS(4949), - [anon_sym_BSLASHautoref] = ACTIONS(4949), - [anon_sym_BSLASHpageref] = ACTIONS(4949), - [anon_sym_BSLASHcref] = ACTIONS(4949), - [anon_sym_BSLASHCref] = ACTIONS(4949), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnameCref] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHlabelcref] = ACTIONS(4949), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnewlabel] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4947), - [anon_sym_BSLASHdef] = ACTIONS(4949), - [anon_sym_BSLASHlet] = ACTIONS(4949), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4949), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4949), - [anon_sym_BSLASHgls] = ACTIONS(4949), - [anon_sym_BSLASHGls] = ACTIONS(4949), - [anon_sym_BSLASHGLS] = ACTIONS(4949), - [anon_sym_BSLASHglspl] = ACTIONS(4949), - [anon_sym_BSLASHGlspl] = ACTIONS(4949), - [anon_sym_BSLASHGLSpl] = ACTIONS(4949), - [anon_sym_BSLASHglsdisp] = ACTIONS(4949), - [anon_sym_BSLASHglslink] = ACTIONS(4949), - [anon_sym_BSLASHglstext] = ACTIONS(4949), - [anon_sym_BSLASHGlstext] = ACTIONS(4949), - [anon_sym_BSLASHGLStext] = ACTIONS(4949), - [anon_sym_BSLASHglsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4949), - [anon_sym_BSLASHglsplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSplural] = ACTIONS(4949), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHglsname] = ACTIONS(4949), - [anon_sym_BSLASHGlsname] = ACTIONS(4949), - [anon_sym_BSLASHGLSname] = ACTIONS(4949), - [anon_sym_BSLASHglssymbol] = ACTIONS(4949), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4949), - [anon_sym_BSLASHglsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4949), - [anon_sym_BSLASHglsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4949), - [anon_sym_BSLASHglsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4949), - [anon_sym_BSLASHglsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4949), - [anon_sym_BSLASHglsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4949), - [anon_sym_BSLASHnewacronym] = ACTIONS(4949), - [anon_sym_BSLASHacrshort] = ACTIONS(4949), - [anon_sym_BSLASHAcrshort] = ACTIONS(4949), - [anon_sym_BSLASHACRshort] = ACTIONS(4949), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4949), - [anon_sym_BSLASHacrlong] = ACTIONS(4949), - [anon_sym_BSLASHAcrlong] = ACTIONS(4949), - [anon_sym_BSLASHACRlong] = ACTIONS(4949), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4949), - [anon_sym_BSLASHacrfull] = ACTIONS(4949), - [anon_sym_BSLASHAcrfull] = ACTIONS(4949), - [anon_sym_BSLASHACRfull] = ACTIONS(4949), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4949), - [anon_sym_BSLASHacs] = ACTIONS(4949), - [anon_sym_BSLASHAcs] = ACTIONS(4949), - [anon_sym_BSLASHacsp] = ACTIONS(4949), - [anon_sym_BSLASHAcsp] = ACTIONS(4949), - [anon_sym_BSLASHacl] = ACTIONS(4949), - [anon_sym_BSLASHAcl] = ACTIONS(4949), - [anon_sym_BSLASHaclp] = ACTIONS(4949), - [anon_sym_BSLASHAclp] = ACTIONS(4949), - [anon_sym_BSLASHacf] = ACTIONS(4949), - [anon_sym_BSLASHAcf] = ACTIONS(4949), - [anon_sym_BSLASHacfp] = ACTIONS(4949), - [anon_sym_BSLASHAcfp] = ACTIONS(4949), - [anon_sym_BSLASHac] = ACTIONS(4949), - [anon_sym_BSLASHAc] = ACTIONS(4949), - [anon_sym_BSLASHacp] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4949), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4949), - [anon_sym_BSLASHcolor] = ACTIONS(4949), - [anon_sym_BSLASHcolorbox] = ACTIONS(4949), - [anon_sym_BSLASHtextcolor] = ACTIONS(4949), - [anon_sym_BSLASHpagecolor] = ACTIONS(4949), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4949), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4949), + [1040] = { + [sym_command_name] = ACTIONS(5157), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5157), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RBRACK] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_EQ] = ACTIONS(5155), + [anon_sym_BSLASHpart] = ACTIONS(5157), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddpart] = ACTIONS(5157), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5155), + [anon_sym_BSLASHchapter] = ACTIONS(5157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddchap] = ACTIONS(5157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsection] = ACTIONS(5157), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddsec] = ACTIONS(5157), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubsection] = ACTIONS(5157), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5157), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHparagraph] = ACTIONS(5157), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5157), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5155), + [anon_sym_BSLASHitem] = ACTIONS(5157), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5155), + [anon_sym_LBRACE] = ACTIONS(5155), + [sym_word] = ACTIONS(5157), + [sym_placeholder] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(5157), + [anon_sym_STAR] = ACTIONS(5157), + [anon_sym_SLASH] = ACTIONS(5157), + [anon_sym_CARET] = ACTIONS(5157), + [anon_sym__] = ACTIONS(5157), + [anon_sym_LT] = ACTIONS(5157), + [anon_sym_GT] = ACTIONS(5157), + [anon_sym_BANG] = ACTIONS(5157), + [anon_sym_PIPE] = ACTIONS(5157), + [anon_sym_COLON] = ACTIONS(5157), + [anon_sym_SQUOTE] = ACTIONS(5157), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), + [anon_sym_DOLLAR] = ACTIONS(5157), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5155), + [anon_sym_BSLASHbegin] = ACTIONS(5157), + [anon_sym_BSLASHusepackage] = ACTIONS(5157), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), + [anon_sym_BSLASHinclude] = ACTIONS(5157), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), + [anon_sym_BSLASHinput] = ACTIONS(5157), + [anon_sym_BSLASHsubfile] = ACTIONS(5157), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), + [anon_sym_BSLASHbibliography] = ACTIONS(5157), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5157), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), + [anon_sym_BSLASHimport] = ACTIONS(5157), + [anon_sym_BSLASHsubimport] = ACTIONS(5157), + [anon_sym_BSLASHinputfrom] = ACTIONS(5157), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), + [anon_sym_BSLASHincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHcaption] = ACTIONS(5157), + [anon_sym_BSLASHcite] = ACTIONS(5157), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCite] = ACTIONS(5157), + [anon_sym_BSLASHnocite] = ACTIONS(5157), + [anon_sym_BSLASHcitet] = ACTIONS(5157), + [anon_sym_BSLASHcitep] = ACTIONS(5157), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteauthor] = ACTIONS(5157), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitetitle] = ACTIONS(5157), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteyear] = ACTIONS(5157), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitedate] = ACTIONS(5157), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteurl] = ACTIONS(5157), + [anon_sym_BSLASHfullcite] = ACTIONS(5157), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), + [anon_sym_BSLASHcitealt] = ACTIONS(5157), + [anon_sym_BSLASHcitealp] = ACTIONS(5157), + [anon_sym_BSLASHcitetext] = ACTIONS(5157), + [anon_sym_BSLASHparencite] = ACTIONS(5157), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHParencite] = ACTIONS(5157), + [anon_sym_BSLASHfootcite] = ACTIONS(5157), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), + [anon_sym_BSLASHtextcite] = ACTIONS(5157), + [anon_sym_BSLASHTextcite] = ACTIONS(5157), + [anon_sym_BSLASHsmartcite] = ACTIONS(5157), + [anon_sym_BSLASHSmartcite] = ACTIONS(5157), + [anon_sym_BSLASHsupercite] = ACTIONS(5157), + [anon_sym_BSLASHautocite] = ACTIONS(5157), + [anon_sym_BSLASHAutocite] = ACTIONS(5157), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHvolcite] = ACTIONS(5157), + [anon_sym_BSLASHVolcite] = ACTIONS(5157), + [anon_sym_BSLASHpvolcite] = ACTIONS(5157), + [anon_sym_BSLASHPvolcite] = ACTIONS(5157), + [anon_sym_BSLASHfvolcite] = ACTIONS(5157), + [anon_sym_BSLASHftvolcite] = ACTIONS(5157), + [anon_sym_BSLASHsvolcite] = ACTIONS(5157), + [anon_sym_BSLASHSvolcite] = ACTIONS(5157), + [anon_sym_BSLASHtvolcite] = ACTIONS(5157), + [anon_sym_BSLASHTvolcite] = ACTIONS(5157), + [anon_sym_BSLASHavolcite] = ACTIONS(5157), + [anon_sym_BSLASHAvolcite] = ACTIONS(5157), + [anon_sym_BSLASHnotecite] = ACTIONS(5157), + [anon_sym_BSLASHNotecite] = ACTIONS(5157), + [anon_sym_BSLASHpnotecite] = ACTIONS(5157), + [anon_sym_BSLASHPnotecite] = ACTIONS(5157), + [anon_sym_BSLASHfnotecite] = ACTIONS(5157), + [anon_sym_BSLASHlabel] = ACTIONS(5157), + [anon_sym_BSLASHref] = ACTIONS(5157), + [anon_sym_BSLASHeqref] = ACTIONS(5157), + [anon_sym_BSLASHvref] = ACTIONS(5157), + [anon_sym_BSLASHVref] = ACTIONS(5157), + [anon_sym_BSLASHautoref] = ACTIONS(5157), + [anon_sym_BSLASHpageref] = ACTIONS(5157), + [anon_sym_BSLASHcref] = ACTIONS(5157), + [anon_sym_BSLASHCref] = ACTIONS(5157), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnameCref] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHlabelcref] = ACTIONS(5157), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCrefrange] = ACTIONS(5157), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnewlabel] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), + [anon_sym_BSLASHdef] = ACTIONS(5157), + [anon_sym_BSLASHlet] = ACTIONS(5157), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), + [anon_sym_BSLASHgls] = ACTIONS(5157), + [anon_sym_BSLASHGls] = ACTIONS(5157), + [anon_sym_BSLASHGLS] = ACTIONS(5157), + [anon_sym_BSLASHglspl] = ACTIONS(5157), + [anon_sym_BSLASHGlspl] = ACTIONS(5157), + [anon_sym_BSLASHGLSpl] = ACTIONS(5157), + [anon_sym_BSLASHglsdisp] = ACTIONS(5157), + [anon_sym_BSLASHglslink] = ACTIONS(5157), + [anon_sym_BSLASHglstext] = ACTIONS(5157), + [anon_sym_BSLASHGlstext] = ACTIONS(5157), + [anon_sym_BSLASHGLStext] = ACTIONS(5157), + [anon_sym_BSLASHglsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), + [anon_sym_BSLASHglsplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSplural] = ACTIONS(5157), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHglsname] = ACTIONS(5157), + [anon_sym_BSLASHGlsname] = ACTIONS(5157), + [anon_sym_BSLASHGLSname] = ACTIONS(5157), + [anon_sym_BSLASHglssymbol] = ACTIONS(5157), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), + [anon_sym_BSLASHglsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), + [anon_sym_BSLASHglsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), + [anon_sym_BSLASHglsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), + [anon_sym_BSLASHglsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), + [anon_sym_BSLASHglsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), + [anon_sym_BSLASHnewacronym] = ACTIONS(5157), + [anon_sym_BSLASHacrshort] = ACTIONS(5157), + [anon_sym_BSLASHAcrshort] = ACTIONS(5157), + [anon_sym_BSLASHACRshort] = ACTIONS(5157), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), + [anon_sym_BSLASHacrlong] = ACTIONS(5157), + [anon_sym_BSLASHAcrlong] = ACTIONS(5157), + [anon_sym_BSLASHACRlong] = ACTIONS(5157), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), + [anon_sym_BSLASHacrfull] = ACTIONS(5157), + [anon_sym_BSLASHAcrfull] = ACTIONS(5157), + [anon_sym_BSLASHACRfull] = ACTIONS(5157), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), + [anon_sym_BSLASHacs] = ACTIONS(5157), + [anon_sym_BSLASHAcs] = ACTIONS(5157), + [anon_sym_BSLASHacsp] = ACTIONS(5157), + [anon_sym_BSLASHAcsp] = ACTIONS(5157), + [anon_sym_BSLASHacl] = ACTIONS(5157), + [anon_sym_BSLASHAcl] = ACTIONS(5157), + [anon_sym_BSLASHaclp] = ACTIONS(5157), + [anon_sym_BSLASHAclp] = ACTIONS(5157), + [anon_sym_BSLASHacf] = ACTIONS(5157), + [anon_sym_BSLASHAcf] = ACTIONS(5157), + [anon_sym_BSLASHacfp] = ACTIONS(5157), + [anon_sym_BSLASHAcfp] = ACTIONS(5157), + [anon_sym_BSLASHac] = ACTIONS(5157), + [anon_sym_BSLASHAc] = ACTIONS(5157), + [anon_sym_BSLASHacp] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), + [anon_sym_BSLASHcolor] = ACTIONS(5157), + [anon_sym_BSLASHcolorbox] = ACTIONS(5157), + [anon_sym_BSLASHtextcolor] = ACTIONS(5157), + [anon_sym_BSLASHpagecolor] = ACTIONS(5157), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), + [anon_sym_BSLASHtext] = ACTIONS(5157), + [anon_sym_BSLASHintertext] = ACTIONS(5157), + [anon_sym_shortintertext] = ACTIONS(5157), }, - [1163] = { - [sym_command_name] = ACTIONS(4953), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_RBRACK] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_BSLASHpart] = ACTIONS(4953), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddpart] = ACTIONS(4953), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4951), - [anon_sym_BSLASHchapter] = ACTIONS(4953), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddchap] = ACTIONS(4953), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsection] = ACTIONS(4953), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHaddsec] = ACTIONS(4953), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubsection] = ACTIONS(4953), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4953), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4951), - [anon_sym_BSLASHparagraph] = ACTIONS(4953), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4951), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4953), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4951), - [anon_sym_BSLASHitem] = ACTIONS(4953), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [sym_word] = ACTIONS(4953), - [sym_placeholder] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym__] = ACTIONS(4953), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4953), - [anon_sym_COLON] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4953), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4951), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4951), - [anon_sym_BSLASHbegin] = ACTIONS(4953), - [anon_sym_BSLASHusepackage] = ACTIONS(4953), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4953), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4953), - [anon_sym_BSLASHinclude] = ACTIONS(4953), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4953), - [anon_sym_BSLASHinput] = ACTIONS(4953), - [anon_sym_BSLASHsubfile] = ACTIONS(4953), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4953), - [anon_sym_BSLASHbibliography] = ACTIONS(4953), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4953), - [anon_sym_BSLASHincludesvg] = ACTIONS(4953), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4953), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4953), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4953), - [anon_sym_BSLASHimport] = ACTIONS(4953), - [anon_sym_BSLASHsubimport] = ACTIONS(4953), - [anon_sym_BSLASHinputfrom] = ACTIONS(4953), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4953), - [anon_sym_BSLASHincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHcaption] = ACTIONS(4953), - [anon_sym_BSLASHcite] = ACTIONS(4953), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCite] = ACTIONS(4953), - [anon_sym_BSLASHnocite] = ACTIONS(4953), - [anon_sym_BSLASHcitet] = ACTIONS(4953), - [anon_sym_BSLASHcitep] = ACTIONS(4953), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteyear] = ACTIONS(4953), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitedate] = ACTIONS(4953), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteurl] = ACTIONS(4953), - [anon_sym_BSLASHfullcite] = ACTIONS(4953), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4953), - [anon_sym_BSLASHcitealt] = ACTIONS(4953), - [anon_sym_BSLASHcitealp] = ACTIONS(4953), - [anon_sym_BSLASHcitetext] = ACTIONS(4953), - [anon_sym_BSLASHparencite] = ACTIONS(4953), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHParencite] = ACTIONS(4953), - [anon_sym_BSLASHfootcite] = ACTIONS(4953), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4953), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4953), - [anon_sym_BSLASHtextcite] = ACTIONS(4953), - [anon_sym_BSLASHTextcite] = ACTIONS(4953), - [anon_sym_BSLASHsmartcite] = ACTIONS(4953), - [anon_sym_BSLASHSmartcite] = ACTIONS(4953), - [anon_sym_BSLASHsupercite] = ACTIONS(4953), - [anon_sym_BSLASHautocite] = ACTIONS(4953), - [anon_sym_BSLASHAutocite] = ACTIONS(4953), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHvolcite] = ACTIONS(4953), - [anon_sym_BSLASHVolcite] = ACTIONS(4953), - [anon_sym_BSLASHpvolcite] = ACTIONS(4953), - [anon_sym_BSLASHPvolcite] = ACTIONS(4953), - [anon_sym_BSLASHfvolcite] = ACTIONS(4953), - [anon_sym_BSLASHftvolcite] = ACTIONS(4953), - [anon_sym_BSLASHsvolcite] = ACTIONS(4953), - [anon_sym_BSLASHSvolcite] = ACTIONS(4953), - [anon_sym_BSLASHtvolcite] = ACTIONS(4953), - [anon_sym_BSLASHTvolcite] = ACTIONS(4953), - [anon_sym_BSLASHavolcite] = ACTIONS(4953), - [anon_sym_BSLASHAvolcite] = ACTIONS(4953), - [anon_sym_BSLASHnotecite] = ACTIONS(4953), - [anon_sym_BSLASHNotecite] = ACTIONS(4953), - [anon_sym_BSLASHpnotecite] = ACTIONS(4953), - [anon_sym_BSLASHPnotecite] = ACTIONS(4953), - [anon_sym_BSLASHfnotecite] = ACTIONS(4953), - [anon_sym_BSLASHlabel] = ACTIONS(4953), - [anon_sym_BSLASHref] = ACTIONS(4953), - [anon_sym_BSLASHeqref] = ACTIONS(4953), - [anon_sym_BSLASHvref] = ACTIONS(4953), - [anon_sym_BSLASHVref] = ACTIONS(4953), - [anon_sym_BSLASHautoref] = ACTIONS(4953), - [anon_sym_BSLASHpageref] = ACTIONS(4953), - [anon_sym_BSLASHcref] = ACTIONS(4953), - [anon_sym_BSLASHCref] = ACTIONS(4953), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnameCref] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHlabelcref] = ACTIONS(4953), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnewlabel] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4951), - [anon_sym_BSLASHdef] = ACTIONS(4953), - [anon_sym_BSLASHlet] = ACTIONS(4953), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4953), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4953), - [anon_sym_BSLASHgls] = ACTIONS(4953), - [anon_sym_BSLASHGls] = ACTIONS(4953), - [anon_sym_BSLASHGLS] = ACTIONS(4953), - [anon_sym_BSLASHglspl] = ACTIONS(4953), - [anon_sym_BSLASHGlspl] = ACTIONS(4953), - [anon_sym_BSLASHGLSpl] = ACTIONS(4953), - [anon_sym_BSLASHglsdisp] = ACTIONS(4953), - [anon_sym_BSLASHglslink] = ACTIONS(4953), - [anon_sym_BSLASHglstext] = ACTIONS(4953), - [anon_sym_BSLASHGlstext] = ACTIONS(4953), - [anon_sym_BSLASHGLStext] = ACTIONS(4953), - [anon_sym_BSLASHglsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4953), - [anon_sym_BSLASHglsplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSplural] = ACTIONS(4953), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHglsname] = ACTIONS(4953), - [anon_sym_BSLASHGlsname] = ACTIONS(4953), - [anon_sym_BSLASHGLSname] = ACTIONS(4953), - [anon_sym_BSLASHglssymbol] = ACTIONS(4953), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4953), - [anon_sym_BSLASHglsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4953), - [anon_sym_BSLASHglsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4953), - [anon_sym_BSLASHglsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4953), - [anon_sym_BSLASHglsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4953), - [anon_sym_BSLASHglsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4953), - [anon_sym_BSLASHnewacronym] = ACTIONS(4953), - [anon_sym_BSLASHacrshort] = ACTIONS(4953), - [anon_sym_BSLASHAcrshort] = ACTIONS(4953), - [anon_sym_BSLASHACRshort] = ACTIONS(4953), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4953), - [anon_sym_BSLASHacrlong] = ACTIONS(4953), - [anon_sym_BSLASHAcrlong] = ACTIONS(4953), - [anon_sym_BSLASHACRlong] = ACTIONS(4953), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4953), - [anon_sym_BSLASHacrfull] = ACTIONS(4953), - [anon_sym_BSLASHAcrfull] = ACTIONS(4953), - [anon_sym_BSLASHACRfull] = ACTIONS(4953), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4953), - [anon_sym_BSLASHacs] = ACTIONS(4953), - [anon_sym_BSLASHAcs] = ACTIONS(4953), - [anon_sym_BSLASHacsp] = ACTIONS(4953), - [anon_sym_BSLASHAcsp] = ACTIONS(4953), - [anon_sym_BSLASHacl] = ACTIONS(4953), - [anon_sym_BSLASHAcl] = ACTIONS(4953), - [anon_sym_BSLASHaclp] = ACTIONS(4953), - [anon_sym_BSLASHAclp] = ACTIONS(4953), - [anon_sym_BSLASHacf] = ACTIONS(4953), - [anon_sym_BSLASHAcf] = ACTIONS(4953), - [anon_sym_BSLASHacfp] = ACTIONS(4953), - [anon_sym_BSLASHAcfp] = ACTIONS(4953), - [anon_sym_BSLASHac] = ACTIONS(4953), - [anon_sym_BSLASHAc] = ACTIONS(4953), - [anon_sym_BSLASHacp] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4953), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4953), - [anon_sym_BSLASHcolor] = ACTIONS(4953), - [anon_sym_BSLASHcolorbox] = ACTIONS(4953), - [anon_sym_BSLASHtextcolor] = ACTIONS(4953), - [anon_sym_BSLASHpagecolor] = ACTIONS(4953), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4953), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4953), + [1041] = { + [sym_command_name] = ACTIONS(5309), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5309), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_RPAREN] = ACTIONS(5307), + [anon_sym_LBRACK] = ACTIONS(5307), + [anon_sym_RBRACK] = ACTIONS(5307), + [anon_sym_COMMA] = ACTIONS(5307), + [anon_sym_EQ] = ACTIONS(5307), + [anon_sym_BSLASHpart] = ACTIONS(5309), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddpart] = ACTIONS(5309), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5307), + [anon_sym_BSLASHchapter] = ACTIONS(5309), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddchap] = ACTIONS(5309), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsection] = ACTIONS(5309), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddsec] = ACTIONS(5309), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubsection] = ACTIONS(5309), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5309), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHparagraph] = ACTIONS(5309), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5309), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5307), + [anon_sym_BSLASHitem] = ACTIONS(5309), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5307), + [anon_sym_LBRACE] = ACTIONS(5307), + [sym_word] = ACTIONS(5309), + [sym_placeholder] = ACTIONS(5307), + [anon_sym_PLUS] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5309), + [anon_sym_STAR] = ACTIONS(5309), + [anon_sym_SLASH] = ACTIONS(5309), + [anon_sym_CARET] = ACTIONS(5309), + [anon_sym__] = ACTIONS(5309), + [anon_sym_LT] = ACTIONS(5309), + [anon_sym_GT] = ACTIONS(5309), + [anon_sym_BANG] = ACTIONS(5309), + [anon_sym_PIPE] = ACTIONS(5309), + [anon_sym_COLON] = ACTIONS(5309), + [anon_sym_SQUOTE] = ACTIONS(5309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5307), + [anon_sym_BSLASHbegin] = ACTIONS(5309), + [anon_sym_BSLASHusepackage] = ACTIONS(5309), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), + [anon_sym_BSLASHinclude] = ACTIONS(5309), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), + [anon_sym_BSLASHinput] = ACTIONS(5309), + [anon_sym_BSLASHsubfile] = ACTIONS(5309), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), + [anon_sym_BSLASHbibliography] = ACTIONS(5309), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), + [anon_sym_BSLASHincludesvg] = ACTIONS(5309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), + [anon_sym_BSLASHimport] = ACTIONS(5309), + [anon_sym_BSLASHsubimport] = ACTIONS(5309), + [anon_sym_BSLASHinputfrom] = ACTIONS(5309), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), + [anon_sym_BSLASHincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHcaption] = ACTIONS(5309), + [anon_sym_BSLASHcite] = ACTIONS(5309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCite] = ACTIONS(5309), + [anon_sym_BSLASHnocite] = ACTIONS(5309), + [anon_sym_BSLASHcitet] = ACTIONS(5309), + [anon_sym_BSLASHcitep] = ACTIONS(5309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteauthor] = ACTIONS(5309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitetitle] = ACTIONS(5309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteyear] = ACTIONS(5309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitedate] = ACTIONS(5309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteurl] = ACTIONS(5309), + [anon_sym_BSLASHfullcite] = ACTIONS(5309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), + [anon_sym_BSLASHcitealt] = ACTIONS(5309), + [anon_sym_BSLASHcitealp] = ACTIONS(5309), + [anon_sym_BSLASHcitetext] = ACTIONS(5309), + [anon_sym_BSLASHparencite] = ACTIONS(5309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHParencite] = ACTIONS(5309), + [anon_sym_BSLASHfootcite] = ACTIONS(5309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), + [anon_sym_BSLASHtextcite] = ACTIONS(5309), + [anon_sym_BSLASHTextcite] = ACTIONS(5309), + [anon_sym_BSLASHsmartcite] = ACTIONS(5309), + [anon_sym_BSLASHSmartcite] = ACTIONS(5309), + [anon_sym_BSLASHsupercite] = ACTIONS(5309), + [anon_sym_BSLASHautocite] = ACTIONS(5309), + [anon_sym_BSLASHAutocite] = ACTIONS(5309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHvolcite] = ACTIONS(5309), + [anon_sym_BSLASHVolcite] = ACTIONS(5309), + [anon_sym_BSLASHpvolcite] = ACTIONS(5309), + [anon_sym_BSLASHPvolcite] = ACTIONS(5309), + [anon_sym_BSLASHfvolcite] = ACTIONS(5309), + [anon_sym_BSLASHftvolcite] = ACTIONS(5309), + [anon_sym_BSLASHsvolcite] = ACTIONS(5309), + [anon_sym_BSLASHSvolcite] = ACTIONS(5309), + [anon_sym_BSLASHtvolcite] = ACTIONS(5309), + [anon_sym_BSLASHTvolcite] = ACTIONS(5309), + [anon_sym_BSLASHavolcite] = ACTIONS(5309), + [anon_sym_BSLASHAvolcite] = ACTIONS(5309), + [anon_sym_BSLASHnotecite] = ACTIONS(5309), + [anon_sym_BSLASHNotecite] = ACTIONS(5309), + [anon_sym_BSLASHpnotecite] = ACTIONS(5309), + [anon_sym_BSLASHPnotecite] = ACTIONS(5309), + [anon_sym_BSLASHfnotecite] = ACTIONS(5309), + [anon_sym_BSLASHlabel] = ACTIONS(5309), + [anon_sym_BSLASHref] = ACTIONS(5309), + [anon_sym_BSLASHeqref] = ACTIONS(5309), + [anon_sym_BSLASHvref] = ACTIONS(5309), + [anon_sym_BSLASHVref] = ACTIONS(5309), + [anon_sym_BSLASHautoref] = ACTIONS(5309), + [anon_sym_BSLASHpageref] = ACTIONS(5309), + [anon_sym_BSLASHcref] = ACTIONS(5309), + [anon_sym_BSLASHCref] = ACTIONS(5309), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnameCref] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHlabelcref] = ACTIONS(5309), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCrefrange] = ACTIONS(5309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnewlabel] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), + [anon_sym_BSLASHdef] = ACTIONS(5309), + [anon_sym_BSLASHlet] = ACTIONS(5309), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), + [anon_sym_BSLASHgls] = ACTIONS(5309), + [anon_sym_BSLASHGls] = ACTIONS(5309), + [anon_sym_BSLASHGLS] = ACTIONS(5309), + [anon_sym_BSLASHglspl] = ACTIONS(5309), + [anon_sym_BSLASHGlspl] = ACTIONS(5309), + [anon_sym_BSLASHGLSpl] = ACTIONS(5309), + [anon_sym_BSLASHglsdisp] = ACTIONS(5309), + [anon_sym_BSLASHglslink] = ACTIONS(5309), + [anon_sym_BSLASHglstext] = ACTIONS(5309), + [anon_sym_BSLASHGlstext] = ACTIONS(5309), + [anon_sym_BSLASHGLStext] = ACTIONS(5309), + [anon_sym_BSLASHglsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), + [anon_sym_BSLASHglsplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSplural] = ACTIONS(5309), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHglsname] = ACTIONS(5309), + [anon_sym_BSLASHGlsname] = ACTIONS(5309), + [anon_sym_BSLASHGLSname] = ACTIONS(5309), + [anon_sym_BSLASHglssymbol] = ACTIONS(5309), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), + [anon_sym_BSLASHglsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), + [anon_sym_BSLASHglsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), + [anon_sym_BSLASHglsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), + [anon_sym_BSLASHglsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), + [anon_sym_BSLASHglsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), + [anon_sym_BSLASHnewacronym] = ACTIONS(5309), + [anon_sym_BSLASHacrshort] = ACTIONS(5309), + [anon_sym_BSLASHAcrshort] = ACTIONS(5309), + [anon_sym_BSLASHACRshort] = ACTIONS(5309), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), + [anon_sym_BSLASHacrlong] = ACTIONS(5309), + [anon_sym_BSLASHAcrlong] = ACTIONS(5309), + [anon_sym_BSLASHACRlong] = ACTIONS(5309), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), + [anon_sym_BSLASHacrfull] = ACTIONS(5309), + [anon_sym_BSLASHAcrfull] = ACTIONS(5309), + [anon_sym_BSLASHACRfull] = ACTIONS(5309), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), + [anon_sym_BSLASHacs] = ACTIONS(5309), + [anon_sym_BSLASHAcs] = ACTIONS(5309), + [anon_sym_BSLASHacsp] = ACTIONS(5309), + [anon_sym_BSLASHAcsp] = ACTIONS(5309), + [anon_sym_BSLASHacl] = ACTIONS(5309), + [anon_sym_BSLASHAcl] = ACTIONS(5309), + [anon_sym_BSLASHaclp] = ACTIONS(5309), + [anon_sym_BSLASHAclp] = ACTIONS(5309), + [anon_sym_BSLASHacf] = ACTIONS(5309), + [anon_sym_BSLASHAcf] = ACTIONS(5309), + [anon_sym_BSLASHacfp] = ACTIONS(5309), + [anon_sym_BSLASHAcfp] = ACTIONS(5309), + [anon_sym_BSLASHac] = ACTIONS(5309), + [anon_sym_BSLASHAc] = ACTIONS(5309), + [anon_sym_BSLASHacp] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), + [anon_sym_BSLASHcolor] = ACTIONS(5309), + [anon_sym_BSLASHcolorbox] = ACTIONS(5309), + [anon_sym_BSLASHtextcolor] = ACTIONS(5309), + [anon_sym_BSLASHpagecolor] = ACTIONS(5309), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), + [anon_sym_BSLASHtext] = ACTIONS(5309), + [anon_sym_BSLASHintertext] = ACTIONS(5309), + [anon_sym_shortintertext] = ACTIONS(5309), }, - [1164] = { - [sym_command_name] = ACTIONS(4959), + [1042] = { + [sym_command_name] = ACTIONS(5281), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5281), + [anon_sym_LPAREN] = ACTIONS(5279), + [anon_sym_RPAREN] = ACTIONS(5279), + [anon_sym_LBRACK] = ACTIONS(5279), + [anon_sym_RBRACK] = ACTIONS(5279), + [anon_sym_COMMA] = ACTIONS(5279), + [anon_sym_EQ] = ACTIONS(5279), + [anon_sym_BSLASHpart] = ACTIONS(5281), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddpart] = ACTIONS(5281), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5279), + [anon_sym_BSLASHchapter] = ACTIONS(5281), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddchap] = ACTIONS(5281), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsection] = ACTIONS(5281), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddsec] = ACTIONS(5281), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubsection] = ACTIONS(5281), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5281), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHparagraph] = ACTIONS(5281), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5281), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5279), + [anon_sym_BSLASHitem] = ACTIONS(5281), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5279), + [anon_sym_LBRACE] = ACTIONS(5279), + [sym_word] = ACTIONS(5281), + [sym_placeholder] = ACTIONS(5279), + [anon_sym_PLUS] = ACTIONS(5281), + [anon_sym_DASH] = ACTIONS(5281), + [anon_sym_STAR] = ACTIONS(5281), + [anon_sym_SLASH] = ACTIONS(5281), + [anon_sym_CARET] = ACTIONS(5281), + [anon_sym__] = ACTIONS(5281), + [anon_sym_LT] = ACTIONS(5281), + [anon_sym_GT] = ACTIONS(5281), + [anon_sym_BANG] = ACTIONS(5281), + [anon_sym_PIPE] = ACTIONS(5281), + [anon_sym_COLON] = ACTIONS(5281), + [anon_sym_SQUOTE] = ACTIONS(5281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), + [anon_sym_DOLLAR] = ACTIONS(5281), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5279), + [anon_sym_BSLASHbegin] = ACTIONS(5281), + [anon_sym_BSLASHusepackage] = ACTIONS(5281), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), + [anon_sym_BSLASHinclude] = ACTIONS(5281), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), + [anon_sym_BSLASHinput] = ACTIONS(5281), + [anon_sym_BSLASHsubfile] = ACTIONS(5281), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), + [anon_sym_BSLASHbibliography] = ACTIONS(5281), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), + [anon_sym_BSLASHincludesvg] = ACTIONS(5281), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), + [anon_sym_BSLASHimport] = ACTIONS(5281), + [anon_sym_BSLASHsubimport] = ACTIONS(5281), + [anon_sym_BSLASHinputfrom] = ACTIONS(5281), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), + [anon_sym_BSLASHincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHcaption] = ACTIONS(5281), + [anon_sym_BSLASHcite] = ACTIONS(5281), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCite] = ACTIONS(5281), + [anon_sym_BSLASHnocite] = ACTIONS(5281), + [anon_sym_BSLASHcitet] = ACTIONS(5281), + [anon_sym_BSLASHcitep] = ACTIONS(5281), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteauthor] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitetitle] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteyear] = ACTIONS(5281), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitedate] = ACTIONS(5281), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteurl] = ACTIONS(5281), + [anon_sym_BSLASHfullcite] = ACTIONS(5281), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), + [anon_sym_BSLASHcitealt] = ACTIONS(5281), + [anon_sym_BSLASHcitealp] = ACTIONS(5281), + [anon_sym_BSLASHcitetext] = ACTIONS(5281), + [anon_sym_BSLASHparencite] = ACTIONS(5281), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHParencite] = ACTIONS(5281), + [anon_sym_BSLASHfootcite] = ACTIONS(5281), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), + [anon_sym_BSLASHtextcite] = ACTIONS(5281), + [anon_sym_BSLASHTextcite] = ACTIONS(5281), + [anon_sym_BSLASHsmartcite] = ACTIONS(5281), + [anon_sym_BSLASHSmartcite] = ACTIONS(5281), + [anon_sym_BSLASHsupercite] = ACTIONS(5281), + [anon_sym_BSLASHautocite] = ACTIONS(5281), + [anon_sym_BSLASHAutocite] = ACTIONS(5281), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHvolcite] = ACTIONS(5281), + [anon_sym_BSLASHVolcite] = ACTIONS(5281), + [anon_sym_BSLASHpvolcite] = ACTIONS(5281), + [anon_sym_BSLASHPvolcite] = ACTIONS(5281), + [anon_sym_BSLASHfvolcite] = ACTIONS(5281), + [anon_sym_BSLASHftvolcite] = ACTIONS(5281), + [anon_sym_BSLASHsvolcite] = ACTIONS(5281), + [anon_sym_BSLASHSvolcite] = ACTIONS(5281), + [anon_sym_BSLASHtvolcite] = ACTIONS(5281), + [anon_sym_BSLASHTvolcite] = ACTIONS(5281), + [anon_sym_BSLASHavolcite] = ACTIONS(5281), + [anon_sym_BSLASHAvolcite] = ACTIONS(5281), + [anon_sym_BSLASHnotecite] = ACTIONS(5281), + [anon_sym_BSLASHNotecite] = ACTIONS(5281), + [anon_sym_BSLASHpnotecite] = ACTIONS(5281), + [anon_sym_BSLASHPnotecite] = ACTIONS(5281), + [anon_sym_BSLASHfnotecite] = ACTIONS(5281), + [anon_sym_BSLASHlabel] = ACTIONS(5281), + [anon_sym_BSLASHref] = ACTIONS(5281), + [anon_sym_BSLASHeqref] = ACTIONS(5281), + [anon_sym_BSLASHvref] = ACTIONS(5281), + [anon_sym_BSLASHVref] = ACTIONS(5281), + [anon_sym_BSLASHautoref] = ACTIONS(5281), + [anon_sym_BSLASHpageref] = ACTIONS(5281), + [anon_sym_BSLASHcref] = ACTIONS(5281), + [anon_sym_BSLASHCref] = ACTIONS(5281), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnameCref] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHlabelcref] = ACTIONS(5281), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCrefrange] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnewlabel] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), + [anon_sym_BSLASHdef] = ACTIONS(5281), + [anon_sym_BSLASHlet] = ACTIONS(5281), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), + [anon_sym_BSLASHgls] = ACTIONS(5281), + [anon_sym_BSLASHGls] = ACTIONS(5281), + [anon_sym_BSLASHGLS] = ACTIONS(5281), + [anon_sym_BSLASHglspl] = ACTIONS(5281), + [anon_sym_BSLASHGlspl] = ACTIONS(5281), + [anon_sym_BSLASHGLSpl] = ACTIONS(5281), + [anon_sym_BSLASHglsdisp] = ACTIONS(5281), + [anon_sym_BSLASHglslink] = ACTIONS(5281), + [anon_sym_BSLASHglstext] = ACTIONS(5281), + [anon_sym_BSLASHGlstext] = ACTIONS(5281), + [anon_sym_BSLASHGLStext] = ACTIONS(5281), + [anon_sym_BSLASHglsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), + [anon_sym_BSLASHglsplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSplural] = ACTIONS(5281), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHglsname] = ACTIONS(5281), + [anon_sym_BSLASHGlsname] = ACTIONS(5281), + [anon_sym_BSLASHGLSname] = ACTIONS(5281), + [anon_sym_BSLASHglssymbol] = ACTIONS(5281), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), + [anon_sym_BSLASHglsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), + [anon_sym_BSLASHglsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), + [anon_sym_BSLASHglsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), + [anon_sym_BSLASHglsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), + [anon_sym_BSLASHglsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), + [anon_sym_BSLASHnewacronym] = ACTIONS(5281), + [anon_sym_BSLASHacrshort] = ACTIONS(5281), + [anon_sym_BSLASHAcrshort] = ACTIONS(5281), + [anon_sym_BSLASHACRshort] = ACTIONS(5281), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), + [anon_sym_BSLASHacrlong] = ACTIONS(5281), + [anon_sym_BSLASHAcrlong] = ACTIONS(5281), + [anon_sym_BSLASHACRlong] = ACTIONS(5281), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), + [anon_sym_BSLASHacrfull] = ACTIONS(5281), + [anon_sym_BSLASHAcrfull] = ACTIONS(5281), + [anon_sym_BSLASHACRfull] = ACTIONS(5281), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), + [anon_sym_BSLASHacs] = ACTIONS(5281), + [anon_sym_BSLASHAcs] = ACTIONS(5281), + [anon_sym_BSLASHacsp] = ACTIONS(5281), + [anon_sym_BSLASHAcsp] = ACTIONS(5281), + [anon_sym_BSLASHacl] = ACTIONS(5281), + [anon_sym_BSLASHAcl] = ACTIONS(5281), + [anon_sym_BSLASHaclp] = ACTIONS(5281), + [anon_sym_BSLASHAclp] = ACTIONS(5281), + [anon_sym_BSLASHacf] = ACTIONS(5281), + [anon_sym_BSLASHAcf] = ACTIONS(5281), + [anon_sym_BSLASHacfp] = ACTIONS(5281), + [anon_sym_BSLASHAcfp] = ACTIONS(5281), + [anon_sym_BSLASHac] = ACTIONS(5281), + [anon_sym_BSLASHAc] = ACTIONS(5281), + [anon_sym_BSLASHacp] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), + [anon_sym_BSLASHcolor] = ACTIONS(5281), + [anon_sym_BSLASHcolorbox] = ACTIONS(5281), + [anon_sym_BSLASHtextcolor] = ACTIONS(5281), + [anon_sym_BSLASHpagecolor] = ACTIONS(5281), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), + [anon_sym_BSLASHtext] = ACTIONS(5281), + [anon_sym_BSLASHintertext] = ACTIONS(5281), + [anon_sym_shortintertext] = ACTIONS(5281), + }, + [1043] = { + [sym_command_name] = ACTIONS(5277), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5277), + [anon_sym_LPAREN] = ACTIONS(5275), + [anon_sym_RPAREN] = ACTIONS(5275), + [anon_sym_LBRACK] = ACTIONS(5275), + [anon_sym_RBRACK] = ACTIONS(5275), + [anon_sym_COMMA] = ACTIONS(5275), + [anon_sym_EQ] = ACTIONS(5275), + [anon_sym_BSLASHpart] = ACTIONS(5277), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddpart] = ACTIONS(5277), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5275), + [anon_sym_BSLASHchapter] = ACTIONS(5277), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddchap] = ACTIONS(5277), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsection] = ACTIONS(5277), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddsec] = ACTIONS(5277), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubsection] = ACTIONS(5277), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5277), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHparagraph] = ACTIONS(5277), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5277), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5275), + [anon_sym_BSLASHitem] = ACTIONS(5277), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5275), + [anon_sym_LBRACE] = ACTIONS(5275), + [sym_word] = ACTIONS(5277), + [sym_placeholder] = ACTIONS(5275), + [anon_sym_PLUS] = ACTIONS(5277), + [anon_sym_DASH] = ACTIONS(5277), + [anon_sym_STAR] = ACTIONS(5277), + [anon_sym_SLASH] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5277), + [anon_sym__] = ACTIONS(5277), + [anon_sym_LT] = ACTIONS(5277), + [anon_sym_GT] = ACTIONS(5277), + [anon_sym_BANG] = ACTIONS(5277), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_COLON] = ACTIONS(5277), + [anon_sym_SQUOTE] = ACTIONS(5277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), + [anon_sym_DOLLAR] = ACTIONS(5277), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5275), + [anon_sym_BSLASHbegin] = ACTIONS(5277), + [anon_sym_BSLASHusepackage] = ACTIONS(5277), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), + [anon_sym_BSLASHinclude] = ACTIONS(5277), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), + [anon_sym_BSLASHinput] = ACTIONS(5277), + [anon_sym_BSLASHsubfile] = ACTIONS(5277), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), + [anon_sym_BSLASHbibliography] = ACTIONS(5277), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), + [anon_sym_BSLASHincludesvg] = ACTIONS(5277), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), + [anon_sym_BSLASHimport] = ACTIONS(5277), + [anon_sym_BSLASHsubimport] = ACTIONS(5277), + [anon_sym_BSLASHinputfrom] = ACTIONS(5277), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), + [anon_sym_BSLASHincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHcaption] = ACTIONS(5277), + [anon_sym_BSLASHcite] = ACTIONS(5277), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCite] = ACTIONS(5277), + [anon_sym_BSLASHnocite] = ACTIONS(5277), + [anon_sym_BSLASHcitet] = ACTIONS(5277), + [anon_sym_BSLASHcitep] = ACTIONS(5277), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteauthor] = ACTIONS(5277), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitetitle] = ACTIONS(5277), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteyear] = ACTIONS(5277), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitedate] = ACTIONS(5277), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteurl] = ACTIONS(5277), + [anon_sym_BSLASHfullcite] = ACTIONS(5277), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), + [anon_sym_BSLASHcitealt] = ACTIONS(5277), + [anon_sym_BSLASHcitealp] = ACTIONS(5277), + [anon_sym_BSLASHcitetext] = ACTIONS(5277), + [anon_sym_BSLASHparencite] = ACTIONS(5277), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHParencite] = ACTIONS(5277), + [anon_sym_BSLASHfootcite] = ACTIONS(5277), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), + [anon_sym_BSLASHtextcite] = ACTIONS(5277), + [anon_sym_BSLASHTextcite] = ACTIONS(5277), + [anon_sym_BSLASHsmartcite] = ACTIONS(5277), + [anon_sym_BSLASHSmartcite] = ACTIONS(5277), + [anon_sym_BSLASHsupercite] = ACTIONS(5277), + [anon_sym_BSLASHautocite] = ACTIONS(5277), + [anon_sym_BSLASHAutocite] = ACTIONS(5277), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHvolcite] = ACTIONS(5277), + [anon_sym_BSLASHVolcite] = ACTIONS(5277), + [anon_sym_BSLASHpvolcite] = ACTIONS(5277), + [anon_sym_BSLASHPvolcite] = ACTIONS(5277), + [anon_sym_BSLASHfvolcite] = ACTIONS(5277), + [anon_sym_BSLASHftvolcite] = ACTIONS(5277), + [anon_sym_BSLASHsvolcite] = ACTIONS(5277), + [anon_sym_BSLASHSvolcite] = ACTIONS(5277), + [anon_sym_BSLASHtvolcite] = ACTIONS(5277), + [anon_sym_BSLASHTvolcite] = ACTIONS(5277), + [anon_sym_BSLASHavolcite] = ACTIONS(5277), + [anon_sym_BSLASHAvolcite] = ACTIONS(5277), + [anon_sym_BSLASHnotecite] = ACTIONS(5277), + [anon_sym_BSLASHNotecite] = ACTIONS(5277), + [anon_sym_BSLASHpnotecite] = ACTIONS(5277), + [anon_sym_BSLASHPnotecite] = ACTIONS(5277), + [anon_sym_BSLASHfnotecite] = ACTIONS(5277), + [anon_sym_BSLASHlabel] = ACTIONS(5277), + [anon_sym_BSLASHref] = ACTIONS(5277), + [anon_sym_BSLASHeqref] = ACTIONS(5277), + [anon_sym_BSLASHvref] = ACTIONS(5277), + [anon_sym_BSLASHVref] = ACTIONS(5277), + [anon_sym_BSLASHautoref] = ACTIONS(5277), + [anon_sym_BSLASHpageref] = ACTIONS(5277), + [anon_sym_BSLASHcref] = ACTIONS(5277), + [anon_sym_BSLASHCref] = ACTIONS(5277), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnameCref] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHlabelcref] = ACTIONS(5277), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCrefrange] = ACTIONS(5277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnewlabel] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), + [anon_sym_BSLASHdef] = ACTIONS(5277), + [anon_sym_BSLASHlet] = ACTIONS(5277), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), + [anon_sym_BSLASHgls] = ACTIONS(5277), + [anon_sym_BSLASHGls] = ACTIONS(5277), + [anon_sym_BSLASHGLS] = ACTIONS(5277), + [anon_sym_BSLASHglspl] = ACTIONS(5277), + [anon_sym_BSLASHGlspl] = ACTIONS(5277), + [anon_sym_BSLASHGLSpl] = ACTIONS(5277), + [anon_sym_BSLASHglsdisp] = ACTIONS(5277), + [anon_sym_BSLASHglslink] = ACTIONS(5277), + [anon_sym_BSLASHglstext] = ACTIONS(5277), + [anon_sym_BSLASHGlstext] = ACTIONS(5277), + [anon_sym_BSLASHGLStext] = ACTIONS(5277), + [anon_sym_BSLASHglsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), + [anon_sym_BSLASHglsplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSplural] = ACTIONS(5277), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHglsname] = ACTIONS(5277), + [anon_sym_BSLASHGlsname] = ACTIONS(5277), + [anon_sym_BSLASHGLSname] = ACTIONS(5277), + [anon_sym_BSLASHglssymbol] = ACTIONS(5277), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), + [anon_sym_BSLASHglsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), + [anon_sym_BSLASHglsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), + [anon_sym_BSLASHglsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), + [anon_sym_BSLASHglsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), + [anon_sym_BSLASHglsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), + [anon_sym_BSLASHnewacronym] = ACTIONS(5277), + [anon_sym_BSLASHacrshort] = ACTIONS(5277), + [anon_sym_BSLASHAcrshort] = ACTIONS(5277), + [anon_sym_BSLASHACRshort] = ACTIONS(5277), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), + [anon_sym_BSLASHacrlong] = ACTIONS(5277), + [anon_sym_BSLASHAcrlong] = ACTIONS(5277), + [anon_sym_BSLASHACRlong] = ACTIONS(5277), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), + [anon_sym_BSLASHacrfull] = ACTIONS(5277), + [anon_sym_BSLASHAcrfull] = ACTIONS(5277), + [anon_sym_BSLASHACRfull] = ACTIONS(5277), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), + [anon_sym_BSLASHacs] = ACTIONS(5277), + [anon_sym_BSLASHAcs] = ACTIONS(5277), + [anon_sym_BSLASHacsp] = ACTIONS(5277), + [anon_sym_BSLASHAcsp] = ACTIONS(5277), + [anon_sym_BSLASHacl] = ACTIONS(5277), + [anon_sym_BSLASHAcl] = ACTIONS(5277), + [anon_sym_BSLASHaclp] = ACTIONS(5277), + [anon_sym_BSLASHAclp] = ACTIONS(5277), + [anon_sym_BSLASHacf] = ACTIONS(5277), + [anon_sym_BSLASHAcf] = ACTIONS(5277), + [anon_sym_BSLASHacfp] = ACTIONS(5277), + [anon_sym_BSLASHAcfp] = ACTIONS(5277), + [anon_sym_BSLASHac] = ACTIONS(5277), + [anon_sym_BSLASHAc] = ACTIONS(5277), + [anon_sym_BSLASHacp] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), + [anon_sym_BSLASHcolor] = ACTIONS(5277), + [anon_sym_BSLASHcolorbox] = ACTIONS(5277), + [anon_sym_BSLASHtextcolor] = ACTIONS(5277), + [anon_sym_BSLASHpagecolor] = ACTIONS(5277), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), + [anon_sym_BSLASHtext] = ACTIONS(5277), + [anon_sym_BSLASHintertext] = ACTIONS(5277), + [anon_sym_shortintertext] = ACTIONS(5277), + }, + [1044] = { + [sym_command_name] = ACTIONS(5273), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5273), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(5271), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_COMMA] = ACTIONS(5271), + [anon_sym_EQ] = ACTIONS(5271), + [anon_sym_BSLASHpart] = ACTIONS(5273), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddpart] = ACTIONS(5273), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHchapter] = ACTIONS(5273), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddchap] = ACTIONS(5273), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsection] = ACTIONS(5273), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddsec] = ACTIONS(5273), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHparagraph] = ACTIONS(5273), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHitem] = ACTIONS(5273), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(5271), + [sym_word] = ACTIONS(5273), + [sym_placeholder] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5273), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5273), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym__] = ACTIONS(5273), + [anon_sym_LT] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5273), + [anon_sym_BANG] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5273), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_SQUOTE] = ACTIONS(5273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), + [anon_sym_DOLLAR] = ACTIONS(5273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5271), + [anon_sym_BSLASHbegin] = ACTIONS(5273), + [anon_sym_BSLASHusepackage] = ACTIONS(5273), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), + [anon_sym_BSLASHinclude] = ACTIONS(5273), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), + [anon_sym_BSLASHinput] = ACTIONS(5273), + [anon_sym_BSLASHsubfile] = ACTIONS(5273), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), + [anon_sym_BSLASHbibliography] = ACTIONS(5273), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), + [anon_sym_BSLASHincludesvg] = ACTIONS(5273), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), + [anon_sym_BSLASHimport] = ACTIONS(5273), + [anon_sym_BSLASHsubimport] = ACTIONS(5273), + [anon_sym_BSLASHinputfrom] = ACTIONS(5273), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), + [anon_sym_BSLASHincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHcaption] = ACTIONS(5273), + [anon_sym_BSLASHcite] = ACTIONS(5273), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCite] = ACTIONS(5273), + [anon_sym_BSLASHnocite] = ACTIONS(5273), + [anon_sym_BSLASHcitet] = ACTIONS(5273), + [anon_sym_BSLASHcitep] = ACTIONS(5273), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteauthor] = ACTIONS(5273), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitetitle] = ACTIONS(5273), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteyear] = ACTIONS(5273), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitedate] = ACTIONS(5273), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteurl] = ACTIONS(5273), + [anon_sym_BSLASHfullcite] = ACTIONS(5273), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), + [anon_sym_BSLASHcitealt] = ACTIONS(5273), + [anon_sym_BSLASHcitealp] = ACTIONS(5273), + [anon_sym_BSLASHcitetext] = ACTIONS(5273), + [anon_sym_BSLASHparencite] = ACTIONS(5273), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHParencite] = ACTIONS(5273), + [anon_sym_BSLASHfootcite] = ACTIONS(5273), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), + [anon_sym_BSLASHtextcite] = ACTIONS(5273), + [anon_sym_BSLASHTextcite] = ACTIONS(5273), + [anon_sym_BSLASHsmartcite] = ACTIONS(5273), + [anon_sym_BSLASHSmartcite] = ACTIONS(5273), + [anon_sym_BSLASHsupercite] = ACTIONS(5273), + [anon_sym_BSLASHautocite] = ACTIONS(5273), + [anon_sym_BSLASHAutocite] = ACTIONS(5273), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHvolcite] = ACTIONS(5273), + [anon_sym_BSLASHVolcite] = ACTIONS(5273), + [anon_sym_BSLASHpvolcite] = ACTIONS(5273), + [anon_sym_BSLASHPvolcite] = ACTIONS(5273), + [anon_sym_BSLASHfvolcite] = ACTIONS(5273), + [anon_sym_BSLASHftvolcite] = ACTIONS(5273), + [anon_sym_BSLASHsvolcite] = ACTIONS(5273), + [anon_sym_BSLASHSvolcite] = ACTIONS(5273), + [anon_sym_BSLASHtvolcite] = ACTIONS(5273), + [anon_sym_BSLASHTvolcite] = ACTIONS(5273), + [anon_sym_BSLASHavolcite] = ACTIONS(5273), + [anon_sym_BSLASHAvolcite] = ACTIONS(5273), + [anon_sym_BSLASHnotecite] = ACTIONS(5273), + [anon_sym_BSLASHNotecite] = ACTIONS(5273), + [anon_sym_BSLASHpnotecite] = ACTIONS(5273), + [anon_sym_BSLASHPnotecite] = ACTIONS(5273), + [anon_sym_BSLASHfnotecite] = ACTIONS(5273), + [anon_sym_BSLASHlabel] = ACTIONS(5273), + [anon_sym_BSLASHref] = ACTIONS(5273), + [anon_sym_BSLASHeqref] = ACTIONS(5273), + [anon_sym_BSLASHvref] = ACTIONS(5273), + [anon_sym_BSLASHVref] = ACTIONS(5273), + [anon_sym_BSLASHautoref] = ACTIONS(5273), + [anon_sym_BSLASHpageref] = ACTIONS(5273), + [anon_sym_BSLASHcref] = ACTIONS(5273), + [anon_sym_BSLASHCref] = ACTIONS(5273), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnameCref] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHlabelcref] = ACTIONS(5273), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCrefrange] = ACTIONS(5273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdef] = ACTIONS(5273), + [anon_sym_BSLASHlet] = ACTIONS(5273), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), + [anon_sym_BSLASHgls] = ACTIONS(5273), + [anon_sym_BSLASHGls] = ACTIONS(5273), + [anon_sym_BSLASHGLS] = ACTIONS(5273), + [anon_sym_BSLASHglspl] = ACTIONS(5273), + [anon_sym_BSLASHGlspl] = ACTIONS(5273), + [anon_sym_BSLASHGLSpl] = ACTIONS(5273), + [anon_sym_BSLASHglsdisp] = ACTIONS(5273), + [anon_sym_BSLASHglslink] = ACTIONS(5273), + [anon_sym_BSLASHglstext] = ACTIONS(5273), + [anon_sym_BSLASHGlstext] = ACTIONS(5273), + [anon_sym_BSLASHGLStext] = ACTIONS(5273), + [anon_sym_BSLASHglsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), + [anon_sym_BSLASHglsplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSplural] = ACTIONS(5273), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHglsname] = ACTIONS(5273), + [anon_sym_BSLASHGlsname] = ACTIONS(5273), + [anon_sym_BSLASHGLSname] = ACTIONS(5273), + [anon_sym_BSLASHglssymbol] = ACTIONS(5273), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), + [anon_sym_BSLASHglsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), + [anon_sym_BSLASHglsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), + [anon_sym_BSLASHglsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), + [anon_sym_BSLASHglsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), + [anon_sym_BSLASHglsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), + [anon_sym_BSLASHnewacronym] = ACTIONS(5273), + [anon_sym_BSLASHacrshort] = ACTIONS(5273), + [anon_sym_BSLASHAcrshort] = ACTIONS(5273), + [anon_sym_BSLASHACRshort] = ACTIONS(5273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), + [anon_sym_BSLASHacrlong] = ACTIONS(5273), + [anon_sym_BSLASHAcrlong] = ACTIONS(5273), + [anon_sym_BSLASHACRlong] = ACTIONS(5273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), + [anon_sym_BSLASHacrfull] = ACTIONS(5273), + [anon_sym_BSLASHAcrfull] = ACTIONS(5273), + [anon_sym_BSLASHACRfull] = ACTIONS(5273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), + [anon_sym_BSLASHacs] = ACTIONS(5273), + [anon_sym_BSLASHAcs] = ACTIONS(5273), + [anon_sym_BSLASHacsp] = ACTIONS(5273), + [anon_sym_BSLASHAcsp] = ACTIONS(5273), + [anon_sym_BSLASHacl] = ACTIONS(5273), + [anon_sym_BSLASHAcl] = ACTIONS(5273), + [anon_sym_BSLASHaclp] = ACTIONS(5273), + [anon_sym_BSLASHAclp] = ACTIONS(5273), + [anon_sym_BSLASHacf] = ACTIONS(5273), + [anon_sym_BSLASHAcf] = ACTIONS(5273), + [anon_sym_BSLASHacfp] = ACTIONS(5273), + [anon_sym_BSLASHAcfp] = ACTIONS(5273), + [anon_sym_BSLASHac] = ACTIONS(5273), + [anon_sym_BSLASHAc] = ACTIONS(5273), + [anon_sym_BSLASHacp] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), + [anon_sym_BSLASHcolor] = ACTIONS(5273), + [anon_sym_BSLASHcolorbox] = ACTIONS(5273), + [anon_sym_BSLASHtextcolor] = ACTIONS(5273), + [anon_sym_BSLASHpagecolor] = ACTIONS(5273), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), + [anon_sym_BSLASHtext] = ACTIONS(5273), + [anon_sym_BSLASHintertext] = ACTIONS(5273), + [anon_sym_shortintertext] = ACTIONS(5273), + }, + [1045] = { + [sym_command_name] = ACTIONS(5269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5269), + [anon_sym_LPAREN] = ACTIONS(5267), + [anon_sym_RPAREN] = ACTIONS(5267), + [anon_sym_LBRACK] = ACTIONS(5267), + [anon_sym_RBRACK] = ACTIONS(5267), + [anon_sym_COMMA] = ACTIONS(5267), + [anon_sym_EQ] = ACTIONS(5267), + [anon_sym_BSLASHpart] = ACTIONS(5269), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddpart] = ACTIONS(5269), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5267), + [anon_sym_BSLASHchapter] = ACTIONS(5269), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddchap] = ACTIONS(5269), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsection] = ACTIONS(5269), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddsec] = ACTIONS(5269), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubsection] = ACTIONS(5269), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5269), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHparagraph] = ACTIONS(5269), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5269), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5267), + [anon_sym_BSLASHitem] = ACTIONS(5269), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5267), + [anon_sym_LBRACE] = ACTIONS(5267), + [sym_word] = ACTIONS(5269), + [sym_placeholder] = ACTIONS(5267), + [anon_sym_PLUS] = ACTIONS(5269), + [anon_sym_DASH] = ACTIONS(5269), + [anon_sym_STAR] = ACTIONS(5269), + [anon_sym_SLASH] = ACTIONS(5269), + [anon_sym_CARET] = ACTIONS(5269), + [anon_sym__] = ACTIONS(5269), + [anon_sym_LT] = ACTIONS(5269), + [anon_sym_GT] = ACTIONS(5269), + [anon_sym_BANG] = ACTIONS(5269), + [anon_sym_PIPE] = ACTIONS(5269), + [anon_sym_COLON] = ACTIONS(5269), + [anon_sym_SQUOTE] = ACTIONS(5269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), + [anon_sym_DOLLAR] = ACTIONS(5269), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5267), + [anon_sym_BSLASHbegin] = ACTIONS(5269), + [anon_sym_BSLASHusepackage] = ACTIONS(5269), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), + [anon_sym_BSLASHinclude] = ACTIONS(5269), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), + [anon_sym_BSLASHinput] = ACTIONS(5269), + [anon_sym_BSLASHsubfile] = ACTIONS(5269), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), + [anon_sym_BSLASHbibliography] = ACTIONS(5269), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), + [anon_sym_BSLASHincludesvg] = ACTIONS(5269), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), + [anon_sym_BSLASHimport] = ACTIONS(5269), + [anon_sym_BSLASHsubimport] = ACTIONS(5269), + [anon_sym_BSLASHinputfrom] = ACTIONS(5269), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), + [anon_sym_BSLASHincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHcaption] = ACTIONS(5269), + [anon_sym_BSLASHcite] = ACTIONS(5269), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCite] = ACTIONS(5269), + [anon_sym_BSLASHnocite] = ACTIONS(5269), + [anon_sym_BSLASHcitet] = ACTIONS(5269), + [anon_sym_BSLASHcitep] = ACTIONS(5269), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteauthor] = ACTIONS(5269), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitetitle] = ACTIONS(5269), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteyear] = ACTIONS(5269), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitedate] = ACTIONS(5269), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteurl] = ACTIONS(5269), + [anon_sym_BSLASHfullcite] = ACTIONS(5269), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), + [anon_sym_BSLASHcitealt] = ACTIONS(5269), + [anon_sym_BSLASHcitealp] = ACTIONS(5269), + [anon_sym_BSLASHcitetext] = ACTIONS(5269), + [anon_sym_BSLASHparencite] = ACTIONS(5269), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHParencite] = ACTIONS(5269), + [anon_sym_BSLASHfootcite] = ACTIONS(5269), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), + [anon_sym_BSLASHtextcite] = ACTIONS(5269), + [anon_sym_BSLASHTextcite] = ACTIONS(5269), + [anon_sym_BSLASHsmartcite] = ACTIONS(5269), + [anon_sym_BSLASHSmartcite] = ACTIONS(5269), + [anon_sym_BSLASHsupercite] = ACTIONS(5269), + [anon_sym_BSLASHautocite] = ACTIONS(5269), + [anon_sym_BSLASHAutocite] = ACTIONS(5269), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHvolcite] = ACTIONS(5269), + [anon_sym_BSLASHVolcite] = ACTIONS(5269), + [anon_sym_BSLASHpvolcite] = ACTIONS(5269), + [anon_sym_BSLASHPvolcite] = ACTIONS(5269), + [anon_sym_BSLASHfvolcite] = ACTIONS(5269), + [anon_sym_BSLASHftvolcite] = ACTIONS(5269), + [anon_sym_BSLASHsvolcite] = ACTIONS(5269), + [anon_sym_BSLASHSvolcite] = ACTIONS(5269), + [anon_sym_BSLASHtvolcite] = ACTIONS(5269), + [anon_sym_BSLASHTvolcite] = ACTIONS(5269), + [anon_sym_BSLASHavolcite] = ACTIONS(5269), + [anon_sym_BSLASHAvolcite] = ACTIONS(5269), + [anon_sym_BSLASHnotecite] = ACTIONS(5269), + [anon_sym_BSLASHNotecite] = ACTIONS(5269), + [anon_sym_BSLASHpnotecite] = ACTIONS(5269), + [anon_sym_BSLASHPnotecite] = ACTIONS(5269), + [anon_sym_BSLASHfnotecite] = ACTIONS(5269), + [anon_sym_BSLASHlabel] = ACTIONS(5269), + [anon_sym_BSLASHref] = ACTIONS(5269), + [anon_sym_BSLASHeqref] = ACTIONS(5269), + [anon_sym_BSLASHvref] = ACTIONS(5269), + [anon_sym_BSLASHVref] = ACTIONS(5269), + [anon_sym_BSLASHautoref] = ACTIONS(5269), + [anon_sym_BSLASHpageref] = ACTIONS(5269), + [anon_sym_BSLASHcref] = ACTIONS(5269), + [anon_sym_BSLASHCref] = ACTIONS(5269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnameCref] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHlabelcref] = ACTIONS(5269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCrefrange] = ACTIONS(5269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnewlabel] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), + [anon_sym_BSLASHdef] = ACTIONS(5269), + [anon_sym_BSLASHlet] = ACTIONS(5269), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), + [anon_sym_BSLASHgls] = ACTIONS(5269), + [anon_sym_BSLASHGls] = ACTIONS(5269), + [anon_sym_BSLASHGLS] = ACTIONS(5269), + [anon_sym_BSLASHglspl] = ACTIONS(5269), + [anon_sym_BSLASHGlspl] = ACTIONS(5269), + [anon_sym_BSLASHGLSpl] = ACTIONS(5269), + [anon_sym_BSLASHglsdisp] = ACTIONS(5269), + [anon_sym_BSLASHglslink] = ACTIONS(5269), + [anon_sym_BSLASHglstext] = ACTIONS(5269), + [anon_sym_BSLASHGlstext] = ACTIONS(5269), + [anon_sym_BSLASHGLStext] = ACTIONS(5269), + [anon_sym_BSLASHglsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), + [anon_sym_BSLASHglsplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSplural] = ACTIONS(5269), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHglsname] = ACTIONS(5269), + [anon_sym_BSLASHGlsname] = ACTIONS(5269), + [anon_sym_BSLASHGLSname] = ACTIONS(5269), + [anon_sym_BSLASHglssymbol] = ACTIONS(5269), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), + [anon_sym_BSLASHglsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), + [anon_sym_BSLASHglsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), + [anon_sym_BSLASHglsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), + [anon_sym_BSLASHglsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), + [anon_sym_BSLASHglsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), + [anon_sym_BSLASHnewacronym] = ACTIONS(5269), + [anon_sym_BSLASHacrshort] = ACTIONS(5269), + [anon_sym_BSLASHAcrshort] = ACTIONS(5269), + [anon_sym_BSLASHACRshort] = ACTIONS(5269), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), + [anon_sym_BSLASHacrlong] = ACTIONS(5269), + [anon_sym_BSLASHAcrlong] = ACTIONS(5269), + [anon_sym_BSLASHACRlong] = ACTIONS(5269), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), + [anon_sym_BSLASHacrfull] = ACTIONS(5269), + [anon_sym_BSLASHAcrfull] = ACTIONS(5269), + [anon_sym_BSLASHACRfull] = ACTIONS(5269), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), + [anon_sym_BSLASHacs] = ACTIONS(5269), + [anon_sym_BSLASHAcs] = ACTIONS(5269), + [anon_sym_BSLASHacsp] = ACTIONS(5269), + [anon_sym_BSLASHAcsp] = ACTIONS(5269), + [anon_sym_BSLASHacl] = ACTIONS(5269), + [anon_sym_BSLASHAcl] = ACTIONS(5269), + [anon_sym_BSLASHaclp] = ACTIONS(5269), + [anon_sym_BSLASHAclp] = ACTIONS(5269), + [anon_sym_BSLASHacf] = ACTIONS(5269), + [anon_sym_BSLASHAcf] = ACTIONS(5269), + [anon_sym_BSLASHacfp] = ACTIONS(5269), + [anon_sym_BSLASHAcfp] = ACTIONS(5269), + [anon_sym_BSLASHac] = ACTIONS(5269), + [anon_sym_BSLASHAc] = ACTIONS(5269), + [anon_sym_BSLASHacp] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), + [anon_sym_BSLASHcolor] = ACTIONS(5269), + [anon_sym_BSLASHcolorbox] = ACTIONS(5269), + [anon_sym_BSLASHtextcolor] = ACTIONS(5269), + [anon_sym_BSLASHpagecolor] = ACTIONS(5269), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), + [anon_sym_BSLASHtext] = ACTIONS(5269), + [anon_sym_BSLASHintertext] = ACTIONS(5269), + [anon_sym_shortintertext] = ACTIONS(5269), + }, + [1046] = { + [sym_command_name] = ACTIONS(5265), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5265), + [anon_sym_LPAREN] = ACTIONS(5263), + [anon_sym_RPAREN] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(5263), + [anon_sym_RBRACK] = ACTIONS(5263), + [anon_sym_COMMA] = ACTIONS(5263), + [anon_sym_EQ] = ACTIONS(5263), + [anon_sym_BSLASHpart] = ACTIONS(5265), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddpart] = ACTIONS(5265), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5263), + [anon_sym_BSLASHchapter] = ACTIONS(5265), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddchap] = ACTIONS(5265), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsection] = ACTIONS(5265), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddsec] = ACTIONS(5265), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubsection] = ACTIONS(5265), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5265), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHparagraph] = ACTIONS(5265), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5265), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5263), + [anon_sym_BSLASHitem] = ACTIONS(5265), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5263), + [anon_sym_LBRACE] = ACTIONS(5263), + [sym_word] = ACTIONS(5265), + [sym_placeholder] = ACTIONS(5263), + [anon_sym_PLUS] = ACTIONS(5265), + [anon_sym_DASH] = ACTIONS(5265), + [anon_sym_STAR] = ACTIONS(5265), + [anon_sym_SLASH] = ACTIONS(5265), + [anon_sym_CARET] = ACTIONS(5265), + [anon_sym__] = ACTIONS(5265), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_GT] = ACTIONS(5265), + [anon_sym_BANG] = ACTIONS(5265), + [anon_sym_PIPE] = ACTIONS(5265), + [anon_sym_COLON] = ACTIONS(5265), + [anon_sym_SQUOTE] = ACTIONS(5265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5263), + [anon_sym_DOLLAR] = ACTIONS(5265), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5263), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5263), + [anon_sym_BSLASHbegin] = ACTIONS(5265), + [anon_sym_BSLASHusepackage] = ACTIONS(5265), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), + [anon_sym_BSLASHinclude] = ACTIONS(5265), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), + [anon_sym_BSLASHinput] = ACTIONS(5265), + [anon_sym_BSLASHsubfile] = ACTIONS(5265), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), + [anon_sym_BSLASHbibliography] = ACTIONS(5265), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), + [anon_sym_BSLASHincludesvg] = ACTIONS(5265), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), + [anon_sym_BSLASHimport] = ACTIONS(5265), + [anon_sym_BSLASHsubimport] = ACTIONS(5265), + [anon_sym_BSLASHinputfrom] = ACTIONS(5265), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), + [anon_sym_BSLASHincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHcaption] = ACTIONS(5265), + [anon_sym_BSLASHcite] = ACTIONS(5265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCite] = ACTIONS(5265), + [anon_sym_BSLASHnocite] = ACTIONS(5265), + [anon_sym_BSLASHcitet] = ACTIONS(5265), + [anon_sym_BSLASHcitep] = ACTIONS(5265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor] = ACTIONS(5265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle] = ACTIONS(5265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteyear] = ACTIONS(5265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitedate] = ACTIONS(5265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteurl] = ACTIONS(5265), + [anon_sym_BSLASHfullcite] = ACTIONS(5265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), + [anon_sym_BSLASHcitealt] = ACTIONS(5265), + [anon_sym_BSLASHcitealp] = ACTIONS(5265), + [anon_sym_BSLASHcitetext] = ACTIONS(5265), + [anon_sym_BSLASHparencite] = ACTIONS(5265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHParencite] = ACTIONS(5265), + [anon_sym_BSLASHfootcite] = ACTIONS(5265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), + [anon_sym_BSLASHtextcite] = ACTIONS(5265), + [anon_sym_BSLASHTextcite] = ACTIONS(5265), + [anon_sym_BSLASHsmartcite] = ACTIONS(5265), + [anon_sym_BSLASHSmartcite] = ACTIONS(5265), + [anon_sym_BSLASHsupercite] = ACTIONS(5265), + [anon_sym_BSLASHautocite] = ACTIONS(5265), + [anon_sym_BSLASHAutocite] = ACTIONS(5265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHvolcite] = ACTIONS(5265), + [anon_sym_BSLASHVolcite] = ACTIONS(5265), + [anon_sym_BSLASHpvolcite] = ACTIONS(5265), + [anon_sym_BSLASHPvolcite] = ACTIONS(5265), + [anon_sym_BSLASHfvolcite] = ACTIONS(5265), + [anon_sym_BSLASHftvolcite] = ACTIONS(5265), + [anon_sym_BSLASHsvolcite] = ACTIONS(5265), + [anon_sym_BSLASHSvolcite] = ACTIONS(5265), + [anon_sym_BSLASHtvolcite] = ACTIONS(5265), + [anon_sym_BSLASHTvolcite] = ACTIONS(5265), + [anon_sym_BSLASHavolcite] = ACTIONS(5265), + [anon_sym_BSLASHAvolcite] = ACTIONS(5265), + [anon_sym_BSLASHnotecite] = ACTIONS(5265), + [anon_sym_BSLASHNotecite] = ACTIONS(5265), + [anon_sym_BSLASHpnotecite] = ACTIONS(5265), + [anon_sym_BSLASHPnotecite] = ACTIONS(5265), + [anon_sym_BSLASHfnotecite] = ACTIONS(5265), + [anon_sym_BSLASHlabel] = ACTIONS(5265), + [anon_sym_BSLASHref] = ACTIONS(5265), + [anon_sym_BSLASHeqref] = ACTIONS(5265), + [anon_sym_BSLASHvref] = ACTIONS(5265), + [anon_sym_BSLASHVref] = ACTIONS(5265), + [anon_sym_BSLASHautoref] = ACTIONS(5265), + [anon_sym_BSLASHpageref] = ACTIONS(5265), + [anon_sym_BSLASHcref] = ACTIONS(5265), + [anon_sym_BSLASHCref] = ACTIONS(5265), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnameCref] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHlabelcref] = ACTIONS(5265), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange] = ACTIONS(5265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnewlabel] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), + [anon_sym_BSLASHdef] = ACTIONS(5265), + [anon_sym_BSLASHlet] = ACTIONS(5265), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), + [anon_sym_BSLASHgls] = ACTIONS(5265), + [anon_sym_BSLASHGls] = ACTIONS(5265), + [anon_sym_BSLASHGLS] = ACTIONS(5265), + [anon_sym_BSLASHglspl] = ACTIONS(5265), + [anon_sym_BSLASHGlspl] = ACTIONS(5265), + [anon_sym_BSLASHGLSpl] = ACTIONS(5265), + [anon_sym_BSLASHglsdisp] = ACTIONS(5265), + [anon_sym_BSLASHglslink] = ACTIONS(5265), + [anon_sym_BSLASHglstext] = ACTIONS(5265), + [anon_sym_BSLASHGlstext] = ACTIONS(5265), + [anon_sym_BSLASHGLStext] = ACTIONS(5265), + [anon_sym_BSLASHglsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), + [anon_sym_BSLASHglsplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSplural] = ACTIONS(5265), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHglsname] = ACTIONS(5265), + [anon_sym_BSLASHGlsname] = ACTIONS(5265), + [anon_sym_BSLASHGLSname] = ACTIONS(5265), + [anon_sym_BSLASHglssymbol] = ACTIONS(5265), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), + [anon_sym_BSLASHglsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), + [anon_sym_BSLASHglsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), + [anon_sym_BSLASHglsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), + [anon_sym_BSLASHglsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), + [anon_sym_BSLASHglsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), + [anon_sym_BSLASHnewacronym] = ACTIONS(5265), + [anon_sym_BSLASHacrshort] = ACTIONS(5265), + [anon_sym_BSLASHAcrshort] = ACTIONS(5265), + [anon_sym_BSLASHACRshort] = ACTIONS(5265), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), + [anon_sym_BSLASHacrlong] = ACTIONS(5265), + [anon_sym_BSLASHAcrlong] = ACTIONS(5265), + [anon_sym_BSLASHACRlong] = ACTIONS(5265), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), + [anon_sym_BSLASHacrfull] = ACTIONS(5265), + [anon_sym_BSLASHAcrfull] = ACTIONS(5265), + [anon_sym_BSLASHACRfull] = ACTIONS(5265), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), + [anon_sym_BSLASHacs] = ACTIONS(5265), + [anon_sym_BSLASHAcs] = ACTIONS(5265), + [anon_sym_BSLASHacsp] = ACTIONS(5265), + [anon_sym_BSLASHAcsp] = ACTIONS(5265), + [anon_sym_BSLASHacl] = ACTIONS(5265), + [anon_sym_BSLASHAcl] = ACTIONS(5265), + [anon_sym_BSLASHaclp] = ACTIONS(5265), + [anon_sym_BSLASHAclp] = ACTIONS(5265), + [anon_sym_BSLASHacf] = ACTIONS(5265), + [anon_sym_BSLASHAcf] = ACTIONS(5265), + [anon_sym_BSLASHacfp] = ACTIONS(5265), + [anon_sym_BSLASHAcfp] = ACTIONS(5265), + [anon_sym_BSLASHac] = ACTIONS(5265), + [anon_sym_BSLASHAc] = ACTIONS(5265), + [anon_sym_BSLASHacp] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), + [anon_sym_BSLASHcolor] = ACTIONS(5265), + [anon_sym_BSLASHcolorbox] = ACTIONS(5265), + [anon_sym_BSLASHtextcolor] = ACTIONS(5265), + [anon_sym_BSLASHpagecolor] = ACTIONS(5265), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), + [anon_sym_BSLASHtext] = ACTIONS(5265), + [anon_sym_BSLASHintertext] = ACTIONS(5265), + [anon_sym_shortintertext] = ACTIONS(5265), + }, + [1047] = { + [sym_command_name] = ACTIONS(5261), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5261), + [anon_sym_LPAREN] = ACTIONS(5259), + [anon_sym_RPAREN] = ACTIONS(5259), + [anon_sym_LBRACK] = ACTIONS(5259), + [anon_sym_RBRACK] = ACTIONS(5259), + [anon_sym_COMMA] = ACTIONS(5259), + [anon_sym_EQ] = ACTIONS(5259), + [anon_sym_BSLASHpart] = ACTIONS(5261), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddpart] = ACTIONS(5261), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5259), + [anon_sym_BSLASHchapter] = ACTIONS(5261), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddchap] = ACTIONS(5261), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsection] = ACTIONS(5261), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddsec] = ACTIONS(5261), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubsection] = ACTIONS(5261), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5261), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHparagraph] = ACTIONS(5261), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5261), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5259), + [anon_sym_BSLASHitem] = ACTIONS(5261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5259), + [anon_sym_LBRACE] = ACTIONS(5259), + [sym_word] = ACTIONS(5261), + [sym_placeholder] = ACTIONS(5259), + [anon_sym_PLUS] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(5261), + [anon_sym_STAR] = ACTIONS(5261), + [anon_sym_SLASH] = ACTIONS(5261), + [anon_sym_CARET] = ACTIONS(5261), + [anon_sym__] = ACTIONS(5261), + [anon_sym_LT] = ACTIONS(5261), + [anon_sym_GT] = ACTIONS(5261), + [anon_sym_BANG] = ACTIONS(5261), + [anon_sym_PIPE] = ACTIONS(5261), + [anon_sym_COLON] = ACTIONS(5261), + [anon_sym_SQUOTE] = ACTIONS(5261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5259), + [anon_sym_DOLLAR] = ACTIONS(5261), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5259), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5259), + [anon_sym_BSLASHbegin] = ACTIONS(5261), + [anon_sym_BSLASHusepackage] = ACTIONS(5261), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), + [anon_sym_BSLASHinclude] = ACTIONS(5261), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), + [anon_sym_BSLASHinput] = ACTIONS(5261), + [anon_sym_BSLASHsubfile] = ACTIONS(5261), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), + [anon_sym_BSLASHbibliography] = ACTIONS(5261), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), + [anon_sym_BSLASHincludesvg] = ACTIONS(5261), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), + [anon_sym_BSLASHimport] = ACTIONS(5261), + [anon_sym_BSLASHsubimport] = ACTIONS(5261), + [anon_sym_BSLASHinputfrom] = ACTIONS(5261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), + [anon_sym_BSLASHincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHcaption] = ACTIONS(5261), + [anon_sym_BSLASHcite] = ACTIONS(5261), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCite] = ACTIONS(5261), + [anon_sym_BSLASHnocite] = ACTIONS(5261), + [anon_sym_BSLASHcitet] = ACTIONS(5261), + [anon_sym_BSLASHcitep] = ACTIONS(5261), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteauthor] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitetitle] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteyear] = ACTIONS(5261), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitedate] = ACTIONS(5261), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteurl] = ACTIONS(5261), + [anon_sym_BSLASHfullcite] = ACTIONS(5261), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), + [anon_sym_BSLASHcitealt] = ACTIONS(5261), + [anon_sym_BSLASHcitealp] = ACTIONS(5261), + [anon_sym_BSLASHcitetext] = ACTIONS(5261), + [anon_sym_BSLASHparencite] = ACTIONS(5261), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHParencite] = ACTIONS(5261), + [anon_sym_BSLASHfootcite] = ACTIONS(5261), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), + [anon_sym_BSLASHtextcite] = ACTIONS(5261), + [anon_sym_BSLASHTextcite] = ACTIONS(5261), + [anon_sym_BSLASHsmartcite] = ACTIONS(5261), + [anon_sym_BSLASHSmartcite] = ACTIONS(5261), + [anon_sym_BSLASHsupercite] = ACTIONS(5261), + [anon_sym_BSLASHautocite] = ACTIONS(5261), + [anon_sym_BSLASHAutocite] = ACTIONS(5261), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHvolcite] = ACTIONS(5261), + [anon_sym_BSLASHVolcite] = ACTIONS(5261), + [anon_sym_BSLASHpvolcite] = ACTIONS(5261), + [anon_sym_BSLASHPvolcite] = ACTIONS(5261), + [anon_sym_BSLASHfvolcite] = ACTIONS(5261), + [anon_sym_BSLASHftvolcite] = ACTIONS(5261), + [anon_sym_BSLASHsvolcite] = ACTIONS(5261), + [anon_sym_BSLASHSvolcite] = ACTIONS(5261), + [anon_sym_BSLASHtvolcite] = ACTIONS(5261), + [anon_sym_BSLASHTvolcite] = ACTIONS(5261), + [anon_sym_BSLASHavolcite] = ACTIONS(5261), + [anon_sym_BSLASHAvolcite] = ACTIONS(5261), + [anon_sym_BSLASHnotecite] = ACTIONS(5261), + [anon_sym_BSLASHNotecite] = ACTIONS(5261), + [anon_sym_BSLASHpnotecite] = ACTIONS(5261), + [anon_sym_BSLASHPnotecite] = ACTIONS(5261), + [anon_sym_BSLASHfnotecite] = ACTIONS(5261), + [anon_sym_BSLASHlabel] = ACTIONS(5261), + [anon_sym_BSLASHref] = ACTIONS(5261), + [anon_sym_BSLASHeqref] = ACTIONS(5261), + [anon_sym_BSLASHvref] = ACTIONS(5261), + [anon_sym_BSLASHVref] = ACTIONS(5261), + [anon_sym_BSLASHautoref] = ACTIONS(5261), + [anon_sym_BSLASHpageref] = ACTIONS(5261), + [anon_sym_BSLASHcref] = ACTIONS(5261), + [anon_sym_BSLASHCref] = ACTIONS(5261), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnameCref] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHlabelcref] = ACTIONS(5261), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCrefrange] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnewlabel] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), + [anon_sym_BSLASHdef] = ACTIONS(5261), + [anon_sym_BSLASHlet] = ACTIONS(5261), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), + [anon_sym_BSLASHgls] = ACTIONS(5261), + [anon_sym_BSLASHGls] = ACTIONS(5261), + [anon_sym_BSLASHGLS] = ACTIONS(5261), + [anon_sym_BSLASHglspl] = ACTIONS(5261), + [anon_sym_BSLASHGlspl] = ACTIONS(5261), + [anon_sym_BSLASHGLSpl] = ACTIONS(5261), + [anon_sym_BSLASHglsdisp] = ACTIONS(5261), + [anon_sym_BSLASHglslink] = ACTIONS(5261), + [anon_sym_BSLASHglstext] = ACTIONS(5261), + [anon_sym_BSLASHGlstext] = ACTIONS(5261), + [anon_sym_BSLASHGLStext] = ACTIONS(5261), + [anon_sym_BSLASHglsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), + [anon_sym_BSLASHglsplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSplural] = ACTIONS(5261), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHglsname] = ACTIONS(5261), + [anon_sym_BSLASHGlsname] = ACTIONS(5261), + [anon_sym_BSLASHGLSname] = ACTIONS(5261), + [anon_sym_BSLASHglssymbol] = ACTIONS(5261), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), + [anon_sym_BSLASHglsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), + [anon_sym_BSLASHglsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), + [anon_sym_BSLASHglsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), + [anon_sym_BSLASHglsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), + [anon_sym_BSLASHglsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), + [anon_sym_BSLASHnewacronym] = ACTIONS(5261), + [anon_sym_BSLASHacrshort] = ACTIONS(5261), + [anon_sym_BSLASHAcrshort] = ACTIONS(5261), + [anon_sym_BSLASHACRshort] = ACTIONS(5261), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), + [anon_sym_BSLASHacrlong] = ACTIONS(5261), + [anon_sym_BSLASHAcrlong] = ACTIONS(5261), + [anon_sym_BSLASHACRlong] = ACTIONS(5261), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), + [anon_sym_BSLASHacrfull] = ACTIONS(5261), + [anon_sym_BSLASHAcrfull] = ACTIONS(5261), + [anon_sym_BSLASHACRfull] = ACTIONS(5261), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), + [anon_sym_BSLASHacs] = ACTIONS(5261), + [anon_sym_BSLASHAcs] = ACTIONS(5261), + [anon_sym_BSLASHacsp] = ACTIONS(5261), + [anon_sym_BSLASHAcsp] = ACTIONS(5261), + [anon_sym_BSLASHacl] = ACTIONS(5261), + [anon_sym_BSLASHAcl] = ACTIONS(5261), + [anon_sym_BSLASHaclp] = ACTIONS(5261), + [anon_sym_BSLASHAclp] = ACTIONS(5261), + [anon_sym_BSLASHacf] = ACTIONS(5261), + [anon_sym_BSLASHAcf] = ACTIONS(5261), + [anon_sym_BSLASHacfp] = ACTIONS(5261), + [anon_sym_BSLASHAcfp] = ACTIONS(5261), + [anon_sym_BSLASHac] = ACTIONS(5261), + [anon_sym_BSLASHAc] = ACTIONS(5261), + [anon_sym_BSLASHacp] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), + [anon_sym_BSLASHcolor] = ACTIONS(5261), + [anon_sym_BSLASHcolorbox] = ACTIONS(5261), + [anon_sym_BSLASHtextcolor] = ACTIONS(5261), + [anon_sym_BSLASHpagecolor] = ACTIONS(5261), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), + [anon_sym_BSLASHtext] = ACTIONS(5261), + [anon_sym_BSLASHintertext] = ACTIONS(5261), + [anon_sym_shortintertext] = ACTIONS(5261), + }, + [1048] = { + [sym_command_name] = ACTIONS(5257), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5257), + [anon_sym_LPAREN] = ACTIONS(5255), + [anon_sym_RPAREN] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_RBRACK] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_BSLASHpart] = ACTIONS(5257), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddpart] = ACTIONS(5257), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5255), + [anon_sym_BSLASHchapter] = ACTIONS(5257), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddchap] = ACTIONS(5257), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsection] = ACTIONS(5257), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddsec] = ACTIONS(5257), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubsection] = ACTIONS(5257), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5257), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHparagraph] = ACTIONS(5257), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5255), + [anon_sym_BSLASHitem] = ACTIONS(5257), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(5255), + [sym_word] = ACTIONS(5257), + [sym_placeholder] = ACTIONS(5255), + [anon_sym_PLUS] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(5257), + [anon_sym_STAR] = ACTIONS(5257), + [anon_sym_SLASH] = ACTIONS(5257), + [anon_sym_CARET] = ACTIONS(5257), + [anon_sym__] = ACTIONS(5257), + [anon_sym_LT] = ACTIONS(5257), + [anon_sym_GT] = ACTIONS(5257), + [anon_sym_BANG] = ACTIONS(5257), + [anon_sym_PIPE] = ACTIONS(5257), + [anon_sym_COLON] = ACTIONS(5257), + [anon_sym_SQUOTE] = ACTIONS(5257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), + [anon_sym_DOLLAR] = ACTIONS(5257), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5255), + [anon_sym_BSLASHbegin] = ACTIONS(5257), + [anon_sym_BSLASHusepackage] = ACTIONS(5257), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), + [anon_sym_BSLASHinclude] = ACTIONS(5257), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), + [anon_sym_BSLASHinput] = ACTIONS(5257), + [anon_sym_BSLASHsubfile] = ACTIONS(5257), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), + [anon_sym_BSLASHbibliography] = ACTIONS(5257), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), + [anon_sym_BSLASHincludesvg] = ACTIONS(5257), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), + [anon_sym_BSLASHimport] = ACTIONS(5257), + [anon_sym_BSLASHsubimport] = ACTIONS(5257), + [anon_sym_BSLASHinputfrom] = ACTIONS(5257), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), + [anon_sym_BSLASHincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHcaption] = ACTIONS(5257), + [anon_sym_BSLASHcite] = ACTIONS(5257), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCite] = ACTIONS(5257), + [anon_sym_BSLASHnocite] = ACTIONS(5257), + [anon_sym_BSLASHcitet] = ACTIONS(5257), + [anon_sym_BSLASHcitep] = ACTIONS(5257), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteauthor] = ACTIONS(5257), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitetitle] = ACTIONS(5257), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteyear] = ACTIONS(5257), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitedate] = ACTIONS(5257), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteurl] = ACTIONS(5257), + [anon_sym_BSLASHfullcite] = ACTIONS(5257), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), + [anon_sym_BSLASHcitealt] = ACTIONS(5257), + [anon_sym_BSLASHcitealp] = ACTIONS(5257), + [anon_sym_BSLASHcitetext] = ACTIONS(5257), + [anon_sym_BSLASHparencite] = ACTIONS(5257), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHParencite] = ACTIONS(5257), + [anon_sym_BSLASHfootcite] = ACTIONS(5257), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), + [anon_sym_BSLASHtextcite] = ACTIONS(5257), + [anon_sym_BSLASHTextcite] = ACTIONS(5257), + [anon_sym_BSLASHsmartcite] = ACTIONS(5257), + [anon_sym_BSLASHSmartcite] = ACTIONS(5257), + [anon_sym_BSLASHsupercite] = ACTIONS(5257), + [anon_sym_BSLASHautocite] = ACTIONS(5257), + [anon_sym_BSLASHAutocite] = ACTIONS(5257), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHvolcite] = ACTIONS(5257), + [anon_sym_BSLASHVolcite] = ACTIONS(5257), + [anon_sym_BSLASHpvolcite] = ACTIONS(5257), + [anon_sym_BSLASHPvolcite] = ACTIONS(5257), + [anon_sym_BSLASHfvolcite] = ACTIONS(5257), + [anon_sym_BSLASHftvolcite] = ACTIONS(5257), + [anon_sym_BSLASHsvolcite] = ACTIONS(5257), + [anon_sym_BSLASHSvolcite] = ACTIONS(5257), + [anon_sym_BSLASHtvolcite] = ACTIONS(5257), + [anon_sym_BSLASHTvolcite] = ACTIONS(5257), + [anon_sym_BSLASHavolcite] = ACTIONS(5257), + [anon_sym_BSLASHAvolcite] = ACTIONS(5257), + [anon_sym_BSLASHnotecite] = ACTIONS(5257), + [anon_sym_BSLASHNotecite] = ACTIONS(5257), + [anon_sym_BSLASHpnotecite] = ACTIONS(5257), + [anon_sym_BSLASHPnotecite] = ACTIONS(5257), + [anon_sym_BSLASHfnotecite] = ACTIONS(5257), + [anon_sym_BSLASHlabel] = ACTIONS(5257), + [anon_sym_BSLASHref] = ACTIONS(5257), + [anon_sym_BSLASHeqref] = ACTIONS(5257), + [anon_sym_BSLASHvref] = ACTIONS(5257), + [anon_sym_BSLASHVref] = ACTIONS(5257), + [anon_sym_BSLASHautoref] = ACTIONS(5257), + [anon_sym_BSLASHpageref] = ACTIONS(5257), + [anon_sym_BSLASHcref] = ACTIONS(5257), + [anon_sym_BSLASHCref] = ACTIONS(5257), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnameCref] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHlabelcref] = ACTIONS(5257), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCrefrange] = ACTIONS(5257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnewlabel] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), + [anon_sym_BSLASHdef] = ACTIONS(5257), + [anon_sym_BSLASHlet] = ACTIONS(5257), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), + [anon_sym_BSLASHgls] = ACTIONS(5257), + [anon_sym_BSLASHGls] = ACTIONS(5257), + [anon_sym_BSLASHGLS] = ACTIONS(5257), + [anon_sym_BSLASHglspl] = ACTIONS(5257), + [anon_sym_BSLASHGlspl] = ACTIONS(5257), + [anon_sym_BSLASHGLSpl] = ACTIONS(5257), + [anon_sym_BSLASHglsdisp] = ACTIONS(5257), + [anon_sym_BSLASHglslink] = ACTIONS(5257), + [anon_sym_BSLASHglstext] = ACTIONS(5257), + [anon_sym_BSLASHGlstext] = ACTIONS(5257), + [anon_sym_BSLASHGLStext] = ACTIONS(5257), + [anon_sym_BSLASHglsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), + [anon_sym_BSLASHglsplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSplural] = ACTIONS(5257), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHglsname] = ACTIONS(5257), + [anon_sym_BSLASHGlsname] = ACTIONS(5257), + [anon_sym_BSLASHGLSname] = ACTIONS(5257), + [anon_sym_BSLASHglssymbol] = ACTIONS(5257), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), + [anon_sym_BSLASHglsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), + [anon_sym_BSLASHglsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), + [anon_sym_BSLASHglsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), + [anon_sym_BSLASHglsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), + [anon_sym_BSLASHglsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), + [anon_sym_BSLASHnewacronym] = ACTIONS(5257), + [anon_sym_BSLASHacrshort] = ACTIONS(5257), + [anon_sym_BSLASHAcrshort] = ACTIONS(5257), + [anon_sym_BSLASHACRshort] = ACTIONS(5257), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), + [anon_sym_BSLASHacrlong] = ACTIONS(5257), + [anon_sym_BSLASHAcrlong] = ACTIONS(5257), + [anon_sym_BSLASHACRlong] = ACTIONS(5257), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), + [anon_sym_BSLASHacrfull] = ACTIONS(5257), + [anon_sym_BSLASHAcrfull] = ACTIONS(5257), + [anon_sym_BSLASHACRfull] = ACTIONS(5257), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), + [anon_sym_BSLASHacs] = ACTIONS(5257), + [anon_sym_BSLASHAcs] = ACTIONS(5257), + [anon_sym_BSLASHacsp] = ACTIONS(5257), + [anon_sym_BSLASHAcsp] = ACTIONS(5257), + [anon_sym_BSLASHacl] = ACTIONS(5257), + [anon_sym_BSLASHAcl] = ACTIONS(5257), + [anon_sym_BSLASHaclp] = ACTIONS(5257), + [anon_sym_BSLASHAclp] = ACTIONS(5257), + [anon_sym_BSLASHacf] = ACTIONS(5257), + [anon_sym_BSLASHAcf] = ACTIONS(5257), + [anon_sym_BSLASHacfp] = ACTIONS(5257), + [anon_sym_BSLASHAcfp] = ACTIONS(5257), + [anon_sym_BSLASHac] = ACTIONS(5257), + [anon_sym_BSLASHAc] = ACTIONS(5257), + [anon_sym_BSLASHacp] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), + [anon_sym_BSLASHcolor] = ACTIONS(5257), + [anon_sym_BSLASHcolorbox] = ACTIONS(5257), + [anon_sym_BSLASHtextcolor] = ACTIONS(5257), + [anon_sym_BSLASHpagecolor] = ACTIONS(5257), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), + [anon_sym_BSLASHtext] = ACTIONS(5257), + [anon_sym_BSLASHintertext] = ACTIONS(5257), + [anon_sym_shortintertext] = ACTIONS(5257), + }, + [1049] = { + [sym_command_name] = ACTIONS(5253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5253), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(5251), + [anon_sym_LBRACK] = ACTIONS(5251), + [anon_sym_RBRACK] = ACTIONS(5251), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_BSLASHpart] = ACTIONS(5253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddpart] = ACTIONS(5253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHchapter] = ACTIONS(5253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddchap] = ACTIONS(5253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsection] = ACTIONS(5253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddsec] = ACTIONS(5253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHparagraph] = ACTIONS(5253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHitem] = ACTIONS(5253), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5251), + [sym_word] = ACTIONS(5253), + [sym_placeholder] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5253), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym__] = ACTIONS(5253), + [anon_sym_LT] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5253), + [anon_sym_BANG] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_SQUOTE] = ACTIONS(5253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), + [anon_sym_DOLLAR] = ACTIONS(5253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5251), + [anon_sym_BSLASHbegin] = ACTIONS(5253), + [anon_sym_BSLASHusepackage] = ACTIONS(5253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHinclude] = ACTIONS(5253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), + [anon_sym_BSLASHinput] = ACTIONS(5253), + [anon_sym_BSLASHsubfile] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), + [anon_sym_BSLASHbibliography] = ACTIONS(5253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), + [anon_sym_BSLASHincludesvg] = ACTIONS(5253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), + [anon_sym_BSLASHimport] = ACTIONS(5253), + [anon_sym_BSLASHsubimport] = ACTIONS(5253), + [anon_sym_BSLASHinputfrom] = ACTIONS(5253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), + [anon_sym_BSLASHincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHcaption] = ACTIONS(5253), + [anon_sym_BSLASHcite] = ACTIONS(5253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCite] = ACTIONS(5253), + [anon_sym_BSLASHnocite] = ACTIONS(5253), + [anon_sym_BSLASHcitet] = ACTIONS(5253), + [anon_sym_BSLASHcitep] = ACTIONS(5253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteauthor] = ACTIONS(5253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitetitle] = ACTIONS(5253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteyear] = ACTIONS(5253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitedate] = ACTIONS(5253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteurl] = ACTIONS(5253), + [anon_sym_BSLASHfullcite] = ACTIONS(5253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), + [anon_sym_BSLASHcitealt] = ACTIONS(5253), + [anon_sym_BSLASHcitealp] = ACTIONS(5253), + [anon_sym_BSLASHcitetext] = ACTIONS(5253), + [anon_sym_BSLASHparencite] = ACTIONS(5253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHParencite] = ACTIONS(5253), + [anon_sym_BSLASHfootcite] = ACTIONS(5253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), + [anon_sym_BSLASHtextcite] = ACTIONS(5253), + [anon_sym_BSLASHTextcite] = ACTIONS(5253), + [anon_sym_BSLASHsmartcite] = ACTIONS(5253), + [anon_sym_BSLASHSmartcite] = ACTIONS(5253), + [anon_sym_BSLASHsupercite] = ACTIONS(5253), + [anon_sym_BSLASHautocite] = ACTIONS(5253), + [anon_sym_BSLASHAutocite] = ACTIONS(5253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHvolcite] = ACTIONS(5253), + [anon_sym_BSLASHVolcite] = ACTIONS(5253), + [anon_sym_BSLASHpvolcite] = ACTIONS(5253), + [anon_sym_BSLASHPvolcite] = ACTIONS(5253), + [anon_sym_BSLASHfvolcite] = ACTIONS(5253), + [anon_sym_BSLASHftvolcite] = ACTIONS(5253), + [anon_sym_BSLASHsvolcite] = ACTIONS(5253), + [anon_sym_BSLASHSvolcite] = ACTIONS(5253), + [anon_sym_BSLASHtvolcite] = ACTIONS(5253), + [anon_sym_BSLASHTvolcite] = ACTIONS(5253), + [anon_sym_BSLASHavolcite] = ACTIONS(5253), + [anon_sym_BSLASHAvolcite] = ACTIONS(5253), + [anon_sym_BSLASHnotecite] = ACTIONS(5253), + [anon_sym_BSLASHNotecite] = ACTIONS(5253), + [anon_sym_BSLASHpnotecite] = ACTIONS(5253), + [anon_sym_BSLASHPnotecite] = ACTIONS(5253), + [anon_sym_BSLASHfnotecite] = ACTIONS(5253), + [anon_sym_BSLASHlabel] = ACTIONS(5253), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCrefrange] = ACTIONS(5253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnewlabel] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdef] = ACTIONS(5253), + [anon_sym_BSLASHlet] = ACTIONS(5253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), + [anon_sym_BSLASHgls] = ACTIONS(5253), + [anon_sym_BSLASHGls] = ACTIONS(5253), + [anon_sym_BSLASHGLS] = ACTIONS(5253), + [anon_sym_BSLASHglspl] = ACTIONS(5253), + [anon_sym_BSLASHGlspl] = ACTIONS(5253), + [anon_sym_BSLASHGLSpl] = ACTIONS(5253), + [anon_sym_BSLASHglsdisp] = ACTIONS(5253), + [anon_sym_BSLASHglslink] = ACTIONS(5253), + [anon_sym_BSLASHglstext] = ACTIONS(5253), + [anon_sym_BSLASHGlstext] = ACTIONS(5253), + [anon_sym_BSLASHGLStext] = ACTIONS(5253), + [anon_sym_BSLASHglsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), + [anon_sym_BSLASHglsplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSplural] = ACTIONS(5253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHglsname] = ACTIONS(5253), + [anon_sym_BSLASHGlsname] = ACTIONS(5253), + [anon_sym_BSLASHGLSname] = ACTIONS(5253), + [anon_sym_BSLASHglssymbol] = ACTIONS(5253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), + [anon_sym_BSLASHglsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), + [anon_sym_BSLASHglsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), + [anon_sym_BSLASHglsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), + [anon_sym_BSLASHglsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), + [anon_sym_BSLASHglsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), + [anon_sym_BSLASHnewacronym] = ACTIONS(5253), + [anon_sym_BSLASHacrshort] = ACTIONS(5253), + [anon_sym_BSLASHAcrshort] = ACTIONS(5253), + [anon_sym_BSLASHACRshort] = ACTIONS(5253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), + [anon_sym_BSLASHacrlong] = ACTIONS(5253), + [anon_sym_BSLASHAcrlong] = ACTIONS(5253), + [anon_sym_BSLASHACRlong] = ACTIONS(5253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), + [anon_sym_BSLASHacrfull] = ACTIONS(5253), + [anon_sym_BSLASHAcrfull] = ACTIONS(5253), + [anon_sym_BSLASHACRfull] = ACTIONS(5253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), + [anon_sym_BSLASHacs] = ACTIONS(5253), + [anon_sym_BSLASHAcs] = ACTIONS(5253), + [anon_sym_BSLASHacsp] = ACTIONS(5253), + [anon_sym_BSLASHAcsp] = ACTIONS(5253), + [anon_sym_BSLASHacl] = ACTIONS(5253), + [anon_sym_BSLASHAcl] = ACTIONS(5253), + [anon_sym_BSLASHaclp] = ACTIONS(5253), + [anon_sym_BSLASHAclp] = ACTIONS(5253), + [anon_sym_BSLASHacf] = ACTIONS(5253), + [anon_sym_BSLASHAcf] = ACTIONS(5253), + [anon_sym_BSLASHacfp] = ACTIONS(5253), + [anon_sym_BSLASHAcfp] = ACTIONS(5253), + [anon_sym_BSLASHac] = ACTIONS(5253), + [anon_sym_BSLASHAc] = ACTIONS(5253), + [anon_sym_BSLASHacp] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), + [anon_sym_BSLASHcolor] = ACTIONS(5253), + [anon_sym_BSLASHcolorbox] = ACTIONS(5253), + [anon_sym_BSLASHtextcolor] = ACTIONS(5253), + [anon_sym_BSLASHpagecolor] = ACTIONS(5253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), + [anon_sym_BSLASHtext] = ACTIONS(5253), + [anon_sym_BSLASHintertext] = ACTIONS(5253), + [anon_sym_shortintertext] = ACTIONS(5253), + }, + [1050] = { + [sym_command_name] = ACTIONS(5249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5249), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5247), + [anon_sym_LBRACK] = ACTIONS(5247), + [anon_sym_RBRACK] = ACTIONS(5247), + [anon_sym_COMMA] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_BSLASHpart] = ACTIONS(5249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddpart] = ACTIONS(5249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHchapter] = ACTIONS(5249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddchap] = ACTIONS(5249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsection] = ACTIONS(5249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddsec] = ACTIONS(5249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHparagraph] = ACTIONS(5249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHitem] = ACTIONS(5249), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5247), + [anon_sym_LBRACE] = ACTIONS(5247), + [sym_word] = ACTIONS(5249), + [sym_placeholder] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5249), + [anon_sym_STAR] = ACTIONS(5249), + [anon_sym_SLASH] = ACTIONS(5249), + [anon_sym_CARET] = ACTIONS(5249), + [anon_sym__] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(5249), + [anon_sym_GT] = ACTIONS(5249), + [anon_sym_BANG] = ACTIONS(5249), + [anon_sym_PIPE] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_SQUOTE] = ACTIONS(5249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), + [anon_sym_DOLLAR] = ACTIONS(5249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5247), + [anon_sym_BSLASHbegin] = ACTIONS(5249), + [anon_sym_BSLASHusepackage] = ACTIONS(5249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), + [anon_sym_BSLASHinclude] = ACTIONS(5249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), + [anon_sym_BSLASHinput] = ACTIONS(5249), + [anon_sym_BSLASHsubfile] = ACTIONS(5249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), + [anon_sym_BSLASHbibliography] = ACTIONS(5249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), + [anon_sym_BSLASHincludesvg] = ACTIONS(5249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), + [anon_sym_BSLASHimport] = ACTIONS(5249), + [anon_sym_BSLASHsubimport] = ACTIONS(5249), + [anon_sym_BSLASHinputfrom] = ACTIONS(5249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), + [anon_sym_BSLASHincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHcaption] = ACTIONS(5249), + [anon_sym_BSLASHcite] = ACTIONS(5249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCite] = ACTIONS(5249), + [anon_sym_BSLASHnocite] = ACTIONS(5249), + [anon_sym_BSLASHcitet] = ACTIONS(5249), + [anon_sym_BSLASHcitep] = ACTIONS(5249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteauthor] = ACTIONS(5249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitetitle] = ACTIONS(5249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteyear] = ACTIONS(5249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitedate] = ACTIONS(5249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteurl] = ACTIONS(5249), + [anon_sym_BSLASHfullcite] = ACTIONS(5249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), + [anon_sym_BSLASHcitealt] = ACTIONS(5249), + [anon_sym_BSLASHcitealp] = ACTIONS(5249), + [anon_sym_BSLASHcitetext] = ACTIONS(5249), + [anon_sym_BSLASHparencite] = ACTIONS(5249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHParencite] = ACTIONS(5249), + [anon_sym_BSLASHfootcite] = ACTIONS(5249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), + [anon_sym_BSLASHtextcite] = ACTIONS(5249), + [anon_sym_BSLASHTextcite] = ACTIONS(5249), + [anon_sym_BSLASHsmartcite] = ACTIONS(5249), + [anon_sym_BSLASHSmartcite] = ACTIONS(5249), + [anon_sym_BSLASHsupercite] = ACTIONS(5249), + [anon_sym_BSLASHautocite] = ACTIONS(5249), + [anon_sym_BSLASHAutocite] = ACTIONS(5249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHvolcite] = ACTIONS(5249), + [anon_sym_BSLASHVolcite] = ACTIONS(5249), + [anon_sym_BSLASHpvolcite] = ACTIONS(5249), + [anon_sym_BSLASHPvolcite] = ACTIONS(5249), + [anon_sym_BSLASHfvolcite] = ACTIONS(5249), + [anon_sym_BSLASHftvolcite] = ACTIONS(5249), + [anon_sym_BSLASHsvolcite] = ACTIONS(5249), + [anon_sym_BSLASHSvolcite] = ACTIONS(5249), + [anon_sym_BSLASHtvolcite] = ACTIONS(5249), + [anon_sym_BSLASHTvolcite] = ACTIONS(5249), + [anon_sym_BSLASHavolcite] = ACTIONS(5249), + [anon_sym_BSLASHAvolcite] = ACTIONS(5249), + [anon_sym_BSLASHnotecite] = ACTIONS(5249), + [anon_sym_BSLASHNotecite] = ACTIONS(5249), + [anon_sym_BSLASHpnotecite] = ACTIONS(5249), + [anon_sym_BSLASHPnotecite] = ACTIONS(5249), + [anon_sym_BSLASHfnotecite] = ACTIONS(5249), + [anon_sym_BSLASHlabel] = ACTIONS(5249), + [anon_sym_BSLASHref] = ACTIONS(5249), + [anon_sym_BSLASHeqref] = ACTIONS(5249), + [anon_sym_BSLASHvref] = ACTIONS(5249), + [anon_sym_BSLASHVref] = ACTIONS(5249), + [anon_sym_BSLASHautoref] = ACTIONS(5249), + [anon_sym_BSLASHpageref] = ACTIONS(5249), + [anon_sym_BSLASHcref] = ACTIONS(5249), + [anon_sym_BSLASHCref] = ACTIONS(5249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnameCref] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHlabelcref] = ACTIONS(5249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + [anon_sym_BSLASHtext] = ACTIONS(5249), + [anon_sym_BSLASHintertext] = ACTIONS(5249), + [anon_sym_shortintertext] = ACTIONS(5249), + }, + [1051] = { + [sym_command_name] = ACTIONS(5245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5243), + [anon_sym_RPAREN] = ACTIONS(5243), + [anon_sym_LBRACK] = ACTIONS(5243), + [anon_sym_RBRACK] = ACTIONS(5243), + [anon_sym_COMMA] = ACTIONS(5243), + [anon_sym_EQ] = ACTIONS(5243), + [anon_sym_BSLASHpart] = ACTIONS(5245), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddpart] = ACTIONS(5245), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5243), + [anon_sym_BSLASHchapter] = ACTIONS(5245), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddchap] = ACTIONS(5245), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsection] = ACTIONS(5245), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddsec] = ACTIONS(5245), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubsection] = ACTIONS(5245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5245), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHparagraph] = ACTIONS(5245), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5245), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5243), + [anon_sym_BSLASHitem] = ACTIONS(5245), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5243), + [anon_sym_LBRACE] = ACTIONS(5243), + [sym_word] = ACTIONS(5245), + [sym_placeholder] = ACTIONS(5243), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_STAR] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5245), + [anon_sym_CARET] = ACTIONS(5245), + [anon_sym__] = ACTIONS(5245), + [anon_sym_LT] = ACTIONS(5245), + [anon_sym_GT] = ACTIONS(5245), + [anon_sym_BANG] = ACTIONS(5245), + [anon_sym_PIPE] = ACTIONS(5245), + [anon_sym_COLON] = ACTIONS(5245), + [anon_sym_SQUOTE] = ACTIONS(5245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5243), + [anon_sym_DOLLAR] = ACTIONS(5245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5243), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5243), + [anon_sym_BSLASHbegin] = ACTIONS(5245), + [anon_sym_BSLASHusepackage] = ACTIONS(5245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), + [anon_sym_BSLASHinclude] = ACTIONS(5245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), + [anon_sym_BSLASHinput] = ACTIONS(5245), + [anon_sym_BSLASHsubfile] = ACTIONS(5245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), + [anon_sym_BSLASHbibliography] = ACTIONS(5245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), + [anon_sym_BSLASHincludesvg] = ACTIONS(5245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), + [anon_sym_BSLASHimport] = ACTIONS(5245), + [anon_sym_BSLASHsubimport] = ACTIONS(5245), + [anon_sym_BSLASHinputfrom] = ACTIONS(5245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), + [anon_sym_BSLASHincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHcaption] = ACTIONS(5245), + [anon_sym_BSLASHcite] = ACTIONS(5245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCite] = ACTIONS(5245), + [anon_sym_BSLASHnocite] = ACTIONS(5245), + [anon_sym_BSLASHcitet] = ACTIONS(5245), + [anon_sym_BSLASHcitep] = ACTIONS(5245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteauthor] = ACTIONS(5245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitetitle] = ACTIONS(5245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteyear] = ACTIONS(5245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitedate] = ACTIONS(5245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteurl] = ACTIONS(5245), + [anon_sym_BSLASHfullcite] = ACTIONS(5245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), + [anon_sym_BSLASHcitealt] = ACTIONS(5245), + [anon_sym_BSLASHcitealp] = ACTIONS(5245), + [anon_sym_BSLASHcitetext] = ACTIONS(5245), + [anon_sym_BSLASHparencite] = ACTIONS(5245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHParencite] = ACTIONS(5245), + [anon_sym_BSLASHfootcite] = ACTIONS(5245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), + [anon_sym_BSLASHtextcite] = ACTIONS(5245), + [anon_sym_BSLASHTextcite] = ACTIONS(5245), + [anon_sym_BSLASHsmartcite] = ACTIONS(5245), + [anon_sym_BSLASHSmartcite] = ACTIONS(5245), + [anon_sym_BSLASHsupercite] = ACTIONS(5245), + [anon_sym_BSLASHautocite] = ACTIONS(5245), + [anon_sym_BSLASHAutocite] = ACTIONS(5245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHvolcite] = ACTIONS(5245), + [anon_sym_BSLASHVolcite] = ACTIONS(5245), + [anon_sym_BSLASHpvolcite] = ACTIONS(5245), + [anon_sym_BSLASHPvolcite] = ACTIONS(5245), + [anon_sym_BSLASHfvolcite] = ACTIONS(5245), + [anon_sym_BSLASHftvolcite] = ACTIONS(5245), + [anon_sym_BSLASHsvolcite] = ACTIONS(5245), + [anon_sym_BSLASHSvolcite] = ACTIONS(5245), + [anon_sym_BSLASHtvolcite] = ACTIONS(5245), + [anon_sym_BSLASHTvolcite] = ACTIONS(5245), + [anon_sym_BSLASHavolcite] = ACTIONS(5245), + [anon_sym_BSLASHAvolcite] = ACTIONS(5245), + [anon_sym_BSLASHnotecite] = ACTIONS(5245), + [anon_sym_BSLASHNotecite] = ACTIONS(5245), + [anon_sym_BSLASHpnotecite] = ACTIONS(5245), + [anon_sym_BSLASHPnotecite] = ACTIONS(5245), + [anon_sym_BSLASHfnotecite] = ACTIONS(5245), + [anon_sym_BSLASHlabel] = ACTIONS(5245), + [anon_sym_BSLASHref] = ACTIONS(5245), + [anon_sym_BSLASHeqref] = ACTIONS(5245), + [anon_sym_BSLASHvref] = ACTIONS(5245), + [anon_sym_BSLASHVref] = ACTIONS(5245), + [anon_sym_BSLASHautoref] = ACTIONS(5245), + [anon_sym_BSLASHpageref] = ACTIONS(5245), + [anon_sym_BSLASHcref] = ACTIONS(5245), + [anon_sym_BSLASHCref] = ACTIONS(5245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnameCref] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHlabelcref] = ACTIONS(5245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCrefrange] = ACTIONS(5245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnewlabel] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), + [anon_sym_BSLASHdef] = ACTIONS(5245), + [anon_sym_BSLASHlet] = ACTIONS(5245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), + [anon_sym_BSLASHgls] = ACTIONS(5245), + [anon_sym_BSLASHGls] = ACTIONS(5245), + [anon_sym_BSLASHGLS] = ACTIONS(5245), + [anon_sym_BSLASHglspl] = ACTIONS(5245), + [anon_sym_BSLASHGlspl] = ACTIONS(5245), + [anon_sym_BSLASHGLSpl] = ACTIONS(5245), + [anon_sym_BSLASHglsdisp] = ACTIONS(5245), + [anon_sym_BSLASHglslink] = ACTIONS(5245), + [anon_sym_BSLASHglstext] = ACTIONS(5245), + [anon_sym_BSLASHGlstext] = ACTIONS(5245), + [anon_sym_BSLASHGLStext] = ACTIONS(5245), + [anon_sym_BSLASHglsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), + [anon_sym_BSLASHglsplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSplural] = ACTIONS(5245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHglsname] = ACTIONS(5245), + [anon_sym_BSLASHGlsname] = ACTIONS(5245), + [anon_sym_BSLASHGLSname] = ACTIONS(5245), + [anon_sym_BSLASHglssymbol] = ACTIONS(5245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), + [anon_sym_BSLASHglsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), + [anon_sym_BSLASHglsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), + [anon_sym_BSLASHglsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), + [anon_sym_BSLASHglsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), + [anon_sym_BSLASHglsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), + [anon_sym_BSLASHnewacronym] = ACTIONS(5245), + [anon_sym_BSLASHacrshort] = ACTIONS(5245), + [anon_sym_BSLASHAcrshort] = ACTIONS(5245), + [anon_sym_BSLASHACRshort] = ACTIONS(5245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), + [anon_sym_BSLASHacrlong] = ACTIONS(5245), + [anon_sym_BSLASHAcrlong] = ACTIONS(5245), + [anon_sym_BSLASHACRlong] = ACTIONS(5245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), + [anon_sym_BSLASHacrfull] = ACTIONS(5245), + [anon_sym_BSLASHAcrfull] = ACTIONS(5245), + [anon_sym_BSLASHACRfull] = ACTIONS(5245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), + [anon_sym_BSLASHacs] = ACTIONS(5245), + [anon_sym_BSLASHAcs] = ACTIONS(5245), + [anon_sym_BSLASHacsp] = ACTIONS(5245), + [anon_sym_BSLASHAcsp] = ACTIONS(5245), + [anon_sym_BSLASHacl] = ACTIONS(5245), + [anon_sym_BSLASHAcl] = ACTIONS(5245), + [anon_sym_BSLASHaclp] = ACTIONS(5245), + [anon_sym_BSLASHAclp] = ACTIONS(5245), + [anon_sym_BSLASHacf] = ACTIONS(5245), + [anon_sym_BSLASHAcf] = ACTIONS(5245), + [anon_sym_BSLASHacfp] = ACTIONS(5245), + [anon_sym_BSLASHAcfp] = ACTIONS(5245), + [anon_sym_BSLASHac] = ACTIONS(5245), + [anon_sym_BSLASHAc] = ACTIONS(5245), + [anon_sym_BSLASHacp] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), + [anon_sym_BSLASHcolor] = ACTIONS(5245), + [anon_sym_BSLASHcolorbox] = ACTIONS(5245), + [anon_sym_BSLASHtextcolor] = ACTIONS(5245), + [anon_sym_BSLASHpagecolor] = ACTIONS(5245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), + [anon_sym_BSLASHtext] = ACTIONS(5245), + [anon_sym_BSLASHintertext] = ACTIONS(5245), + [anon_sym_shortintertext] = ACTIONS(5245), + }, + [1052] = { + [sym_command_name] = ACTIONS(5241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5241), + [anon_sym_LPAREN] = ACTIONS(5239), + [anon_sym_RPAREN] = ACTIONS(5239), + [anon_sym_LBRACK] = ACTIONS(5239), + [anon_sym_RBRACK] = ACTIONS(5239), + [anon_sym_COMMA] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_BSLASHpart] = ACTIONS(5241), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddpart] = ACTIONS(5241), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5239), + [anon_sym_BSLASHchapter] = ACTIONS(5241), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddchap] = ACTIONS(5241), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsection] = ACTIONS(5241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddsec] = ACTIONS(5241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubsection] = ACTIONS(5241), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5241), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHparagraph] = ACTIONS(5241), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5241), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5239), + [anon_sym_BSLASHitem] = ACTIONS(5241), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(5239), + [sym_word] = ACTIONS(5241), + [sym_placeholder] = ACTIONS(5239), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5241), + [anon_sym_CARET] = ACTIONS(5241), + [anon_sym__] = ACTIONS(5241), + [anon_sym_LT] = ACTIONS(5241), + [anon_sym_GT] = ACTIONS(5241), + [anon_sym_BANG] = ACTIONS(5241), + [anon_sym_PIPE] = ACTIONS(5241), + [anon_sym_COLON] = ACTIONS(5241), + [anon_sym_SQUOTE] = ACTIONS(5241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), + [anon_sym_DOLLAR] = ACTIONS(5241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5239), + [anon_sym_BSLASHbegin] = ACTIONS(5241), + [anon_sym_BSLASHusepackage] = ACTIONS(5241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), + [anon_sym_BSLASHinclude] = ACTIONS(5241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), + [anon_sym_BSLASHinput] = ACTIONS(5241), + [anon_sym_BSLASHsubfile] = ACTIONS(5241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), + [anon_sym_BSLASHbibliography] = ACTIONS(5241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), + [anon_sym_BSLASHincludesvg] = ACTIONS(5241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), + [anon_sym_BSLASHimport] = ACTIONS(5241), + [anon_sym_BSLASHsubimport] = ACTIONS(5241), + [anon_sym_BSLASHinputfrom] = ACTIONS(5241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), + [anon_sym_BSLASHincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHcaption] = ACTIONS(5241), + [anon_sym_BSLASHcite] = ACTIONS(5241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCite] = ACTIONS(5241), + [anon_sym_BSLASHnocite] = ACTIONS(5241), + [anon_sym_BSLASHcitet] = ACTIONS(5241), + [anon_sym_BSLASHcitep] = ACTIONS(5241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor] = ACTIONS(5241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle] = ACTIONS(5241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteyear] = ACTIONS(5241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitedate] = ACTIONS(5241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteurl] = ACTIONS(5241), + [anon_sym_BSLASHfullcite] = ACTIONS(5241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), + [anon_sym_BSLASHcitealt] = ACTIONS(5241), + [anon_sym_BSLASHcitealp] = ACTIONS(5241), + [anon_sym_BSLASHcitetext] = ACTIONS(5241), + [anon_sym_BSLASHparencite] = ACTIONS(5241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHParencite] = ACTIONS(5241), + [anon_sym_BSLASHfootcite] = ACTIONS(5241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), + [anon_sym_BSLASHtextcite] = ACTIONS(5241), + [anon_sym_BSLASHTextcite] = ACTIONS(5241), + [anon_sym_BSLASHsmartcite] = ACTIONS(5241), + [anon_sym_BSLASHSmartcite] = ACTIONS(5241), + [anon_sym_BSLASHsupercite] = ACTIONS(5241), + [anon_sym_BSLASHautocite] = ACTIONS(5241), + [anon_sym_BSLASHAutocite] = ACTIONS(5241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHvolcite] = ACTIONS(5241), + [anon_sym_BSLASHVolcite] = ACTIONS(5241), + [anon_sym_BSLASHpvolcite] = ACTIONS(5241), + [anon_sym_BSLASHPvolcite] = ACTIONS(5241), + [anon_sym_BSLASHfvolcite] = ACTIONS(5241), + [anon_sym_BSLASHftvolcite] = ACTIONS(5241), + [anon_sym_BSLASHsvolcite] = ACTIONS(5241), + [anon_sym_BSLASHSvolcite] = ACTIONS(5241), + [anon_sym_BSLASHtvolcite] = ACTIONS(5241), + [anon_sym_BSLASHTvolcite] = ACTIONS(5241), + [anon_sym_BSLASHavolcite] = ACTIONS(5241), + [anon_sym_BSLASHAvolcite] = ACTIONS(5241), + [anon_sym_BSLASHnotecite] = ACTIONS(5241), + [anon_sym_BSLASHNotecite] = ACTIONS(5241), + [anon_sym_BSLASHpnotecite] = ACTIONS(5241), + [anon_sym_BSLASHPnotecite] = ACTIONS(5241), + [anon_sym_BSLASHfnotecite] = ACTIONS(5241), + [anon_sym_BSLASHlabel] = ACTIONS(5241), + [anon_sym_BSLASHref] = ACTIONS(5241), + [anon_sym_BSLASHeqref] = ACTIONS(5241), + [anon_sym_BSLASHvref] = ACTIONS(5241), + [anon_sym_BSLASHVref] = ACTIONS(5241), + [anon_sym_BSLASHautoref] = ACTIONS(5241), + [anon_sym_BSLASHpageref] = ACTIONS(5241), + [anon_sym_BSLASHcref] = ACTIONS(5241), + [anon_sym_BSLASHCref] = ACTIONS(5241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnameCref] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHlabelcref] = ACTIONS(5241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange] = ACTIONS(5241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnewlabel] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), + [anon_sym_BSLASHdef] = ACTIONS(5241), + [anon_sym_BSLASHlet] = ACTIONS(5241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), + [anon_sym_BSLASHgls] = ACTIONS(5241), + [anon_sym_BSLASHGls] = ACTIONS(5241), + [anon_sym_BSLASHGLS] = ACTIONS(5241), + [anon_sym_BSLASHglspl] = ACTIONS(5241), + [anon_sym_BSLASHGlspl] = ACTIONS(5241), + [anon_sym_BSLASHGLSpl] = ACTIONS(5241), + [anon_sym_BSLASHglsdisp] = ACTIONS(5241), + [anon_sym_BSLASHglslink] = ACTIONS(5241), + [anon_sym_BSLASHglstext] = ACTIONS(5241), + [anon_sym_BSLASHGlstext] = ACTIONS(5241), + [anon_sym_BSLASHGLStext] = ACTIONS(5241), + [anon_sym_BSLASHglsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), + [anon_sym_BSLASHglsplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSplural] = ACTIONS(5241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHglsname] = ACTIONS(5241), + [anon_sym_BSLASHGlsname] = ACTIONS(5241), + [anon_sym_BSLASHGLSname] = ACTIONS(5241), + [anon_sym_BSLASHglssymbol] = ACTIONS(5241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), + [anon_sym_BSLASHglsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), + [anon_sym_BSLASHglsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), + [anon_sym_BSLASHglsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), + [anon_sym_BSLASHglsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), + [anon_sym_BSLASHglsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), + [anon_sym_BSLASHnewacronym] = ACTIONS(5241), + [anon_sym_BSLASHacrshort] = ACTIONS(5241), + [anon_sym_BSLASHAcrshort] = ACTIONS(5241), + [anon_sym_BSLASHACRshort] = ACTIONS(5241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), + [anon_sym_BSLASHacrlong] = ACTIONS(5241), + [anon_sym_BSLASHAcrlong] = ACTIONS(5241), + [anon_sym_BSLASHACRlong] = ACTIONS(5241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), + [anon_sym_BSLASHacrfull] = ACTIONS(5241), + [anon_sym_BSLASHAcrfull] = ACTIONS(5241), + [anon_sym_BSLASHACRfull] = ACTIONS(5241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), + [anon_sym_BSLASHacs] = ACTIONS(5241), + [anon_sym_BSLASHAcs] = ACTIONS(5241), + [anon_sym_BSLASHacsp] = ACTIONS(5241), + [anon_sym_BSLASHAcsp] = ACTIONS(5241), + [anon_sym_BSLASHacl] = ACTIONS(5241), + [anon_sym_BSLASHAcl] = ACTIONS(5241), + [anon_sym_BSLASHaclp] = ACTIONS(5241), + [anon_sym_BSLASHAclp] = ACTIONS(5241), + [anon_sym_BSLASHacf] = ACTIONS(5241), + [anon_sym_BSLASHAcf] = ACTIONS(5241), + [anon_sym_BSLASHacfp] = ACTIONS(5241), + [anon_sym_BSLASHAcfp] = ACTIONS(5241), + [anon_sym_BSLASHac] = ACTIONS(5241), + [anon_sym_BSLASHAc] = ACTIONS(5241), + [anon_sym_BSLASHacp] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), + [anon_sym_BSLASHcolor] = ACTIONS(5241), + [anon_sym_BSLASHcolorbox] = ACTIONS(5241), + [anon_sym_BSLASHtextcolor] = ACTIONS(5241), + [anon_sym_BSLASHpagecolor] = ACTIONS(5241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), + [anon_sym_BSLASHtext] = ACTIONS(5241), + [anon_sym_BSLASHintertext] = ACTIONS(5241), + [anon_sym_shortintertext] = ACTIONS(5241), + }, + [1053] = { + [sym_command_name] = ACTIONS(5135), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_BSLASHpart] = ACTIONS(4959), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddpart] = ACTIONS(4959), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), - [anon_sym_BSLASHchapter] = ACTIONS(4959), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddchap] = ACTIONS(4959), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsection] = ACTIONS(4959), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHaddsec] = ACTIONS(4959), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), - [anon_sym_BSLASHparagraph] = ACTIONS(4959), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), - [anon_sym_BSLASHitem] = ACTIONS(4959), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASHbegin] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHiffalse] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_RPAREN] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_RBRACK] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_BSLASHpart] = ACTIONS(5135), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), + [anon_sym_BSLASHaddpart] = ACTIONS(5135), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), + [anon_sym_BSLASHchapter] = ACTIONS(5135), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), + [anon_sym_BSLASHaddchap] = ACTIONS(5135), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsection] = ACTIONS(5135), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), + [anon_sym_BSLASHaddsec] = ACTIONS(5135), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsubsection] = ACTIONS(5135), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), + [anon_sym_BSLASHparagraph] = ACTIONS(5135), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), + [anon_sym_BSLASHitem] = ACTIONS(5135), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5133), + [sym_word] = ACTIONS(5135), + [sym_placeholder] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_CARET] = ACTIONS(5135), + [anon_sym__] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_PIPE] = ACTIONS(5135), + [anon_sym_COLON] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5133), + [anon_sym_DOLLAR] = ACTIONS(5135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), + [anon_sym_BSLASHbegin] = ACTIONS(5135), + [anon_sym_BSLASHusepackage] = ACTIONS(5135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), + [anon_sym_BSLASHinclude] = ACTIONS(5135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), + [anon_sym_BSLASHinput] = ACTIONS(5135), + [anon_sym_BSLASHsubfile] = ACTIONS(5135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), + [anon_sym_BSLASHbibliography] = ACTIONS(5135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), + [anon_sym_BSLASHincludesvg] = ACTIONS(5135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), + [anon_sym_BSLASHimport] = ACTIONS(5135), + [anon_sym_BSLASHsubimport] = ACTIONS(5135), + [anon_sym_BSLASHinputfrom] = ACTIONS(5135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), + [anon_sym_BSLASHincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHcaption] = ACTIONS(5135), + [anon_sym_BSLASHcite] = ACTIONS(5135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCite] = ACTIONS(5135), + [anon_sym_BSLASHnocite] = ACTIONS(5135), + [anon_sym_BSLASHcitet] = ACTIONS(5135), + [anon_sym_BSLASHcitep] = ACTIONS(5135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteauthor] = ACTIONS(5135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitetitle] = ACTIONS(5135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteyear] = ACTIONS(5135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitedate] = ACTIONS(5135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteurl] = ACTIONS(5135), + [anon_sym_BSLASHfullcite] = ACTIONS(5135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), + [anon_sym_BSLASHcitealt] = ACTIONS(5135), + [anon_sym_BSLASHcitealp] = ACTIONS(5135), + [anon_sym_BSLASHcitetext] = ACTIONS(5135), + [anon_sym_BSLASHparencite] = ACTIONS(5135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHParencite] = ACTIONS(5135), + [anon_sym_BSLASHfootcite] = ACTIONS(5135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), + [anon_sym_BSLASHtextcite] = ACTIONS(5135), + [anon_sym_BSLASHTextcite] = ACTIONS(5135), + [anon_sym_BSLASHsmartcite] = ACTIONS(5135), + [anon_sym_BSLASHSmartcite] = ACTIONS(5135), + [anon_sym_BSLASHsupercite] = ACTIONS(5135), + [anon_sym_BSLASHautocite] = ACTIONS(5135), + [anon_sym_BSLASHAutocite] = ACTIONS(5135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHvolcite] = ACTIONS(5135), + [anon_sym_BSLASHVolcite] = ACTIONS(5135), + [anon_sym_BSLASHpvolcite] = ACTIONS(5135), + [anon_sym_BSLASHPvolcite] = ACTIONS(5135), + [anon_sym_BSLASHfvolcite] = ACTIONS(5135), + [anon_sym_BSLASHftvolcite] = ACTIONS(5135), + [anon_sym_BSLASHsvolcite] = ACTIONS(5135), + [anon_sym_BSLASHSvolcite] = ACTIONS(5135), + [anon_sym_BSLASHtvolcite] = ACTIONS(5135), + [anon_sym_BSLASHTvolcite] = ACTIONS(5135), + [anon_sym_BSLASHavolcite] = ACTIONS(5135), + [anon_sym_BSLASHAvolcite] = ACTIONS(5135), + [anon_sym_BSLASHnotecite] = ACTIONS(5135), + [anon_sym_BSLASHNotecite] = ACTIONS(5135), + [anon_sym_BSLASHpnotecite] = ACTIONS(5135), + [anon_sym_BSLASHPnotecite] = ACTIONS(5135), + [anon_sym_BSLASHfnotecite] = ACTIONS(5135), + [anon_sym_BSLASHlabel] = ACTIONS(5135), + [anon_sym_BSLASHref] = ACTIONS(5135), + [anon_sym_BSLASHeqref] = ACTIONS(5135), + [anon_sym_BSLASHvref] = ACTIONS(5135), + [anon_sym_BSLASHVref] = ACTIONS(5135), + [anon_sym_BSLASHautoref] = ACTIONS(5135), + [anon_sym_BSLASHpageref] = ACTIONS(5135), + [anon_sym_BSLASHcref] = ACTIONS(5135), + [anon_sym_BSLASHCref] = ACTIONS(5135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnameCref] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHlabelcref] = ACTIONS(5135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCrefrange] = ACTIONS(5135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnewlabel] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), + [anon_sym_BSLASHdef] = ACTIONS(5135), + [anon_sym_BSLASHlet] = ACTIONS(5135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), + [anon_sym_BSLASHgls] = ACTIONS(5135), + [anon_sym_BSLASHGls] = ACTIONS(5135), + [anon_sym_BSLASHGLS] = ACTIONS(5135), + [anon_sym_BSLASHglspl] = ACTIONS(5135), + [anon_sym_BSLASHGlspl] = ACTIONS(5135), + [anon_sym_BSLASHGLSpl] = ACTIONS(5135), + [anon_sym_BSLASHglsdisp] = ACTIONS(5135), + [anon_sym_BSLASHglslink] = ACTIONS(5135), + [anon_sym_BSLASHglstext] = ACTIONS(5135), + [anon_sym_BSLASHGlstext] = ACTIONS(5135), + [anon_sym_BSLASHGLStext] = ACTIONS(5135), + [anon_sym_BSLASHglsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), + [anon_sym_BSLASHglsplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSplural] = ACTIONS(5135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHglsname] = ACTIONS(5135), + [anon_sym_BSLASHGlsname] = ACTIONS(5135), + [anon_sym_BSLASHGLSname] = ACTIONS(5135), + [anon_sym_BSLASHglssymbol] = ACTIONS(5135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), + [anon_sym_BSLASHglsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), + [anon_sym_BSLASHglsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), + [anon_sym_BSLASHglsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), + [anon_sym_BSLASHglsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), + [anon_sym_BSLASHglsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), + [anon_sym_BSLASHnewacronym] = ACTIONS(5135), + [anon_sym_BSLASHacrshort] = ACTIONS(5135), + [anon_sym_BSLASHAcrshort] = ACTIONS(5135), + [anon_sym_BSLASHACRshort] = ACTIONS(5135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), + [anon_sym_BSLASHacrlong] = ACTIONS(5135), + [anon_sym_BSLASHAcrlong] = ACTIONS(5135), + [anon_sym_BSLASHACRlong] = ACTIONS(5135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), + [anon_sym_BSLASHacrfull] = ACTIONS(5135), + [anon_sym_BSLASHAcrfull] = ACTIONS(5135), + [anon_sym_BSLASHACRfull] = ACTIONS(5135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), + [anon_sym_BSLASHacs] = ACTIONS(5135), + [anon_sym_BSLASHAcs] = ACTIONS(5135), + [anon_sym_BSLASHacsp] = ACTIONS(5135), + [anon_sym_BSLASHAcsp] = ACTIONS(5135), + [anon_sym_BSLASHacl] = ACTIONS(5135), + [anon_sym_BSLASHAcl] = ACTIONS(5135), + [anon_sym_BSLASHaclp] = ACTIONS(5135), + [anon_sym_BSLASHAclp] = ACTIONS(5135), + [anon_sym_BSLASHacf] = ACTIONS(5135), + [anon_sym_BSLASHAcf] = ACTIONS(5135), + [anon_sym_BSLASHacfp] = ACTIONS(5135), + [anon_sym_BSLASHAcfp] = ACTIONS(5135), + [anon_sym_BSLASHac] = ACTIONS(5135), + [anon_sym_BSLASHAc] = ACTIONS(5135), + [anon_sym_BSLASHacp] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), + [anon_sym_BSLASHcolor] = ACTIONS(5135), + [anon_sym_BSLASHcolorbox] = ACTIONS(5135), + [anon_sym_BSLASHtextcolor] = ACTIONS(5135), + [anon_sym_BSLASHpagecolor] = ACTIONS(5135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [anon_sym_BSLASHtext] = ACTIONS(5135), + [anon_sym_BSLASHintertext] = ACTIONS(5135), + [anon_sym_shortintertext] = ACTIONS(5135), }, - [1165] = { - [sym_command_name] = ACTIONS(4967), + [1054] = { + [sym_command_name] = ACTIONS(5237), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5237), + [anon_sym_LPAREN] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(5235), + [anon_sym_LBRACK] = ACTIONS(5235), + [anon_sym_RBRACK] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_EQ] = ACTIONS(5235), + [anon_sym_BSLASHpart] = ACTIONS(5237), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddpart] = ACTIONS(5237), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5235), + [anon_sym_BSLASHchapter] = ACTIONS(5237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddchap] = ACTIONS(5237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsection] = ACTIONS(5237), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddsec] = ACTIONS(5237), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubsection] = ACTIONS(5237), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5237), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHparagraph] = ACTIONS(5237), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5237), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5235), + [anon_sym_BSLASHitem] = ACTIONS(5237), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5235), + [anon_sym_LBRACE] = ACTIONS(5235), + [sym_word] = ACTIONS(5237), + [sym_placeholder] = ACTIONS(5235), + [anon_sym_PLUS] = ACTIONS(5237), + [anon_sym_DASH] = ACTIONS(5237), + [anon_sym_STAR] = ACTIONS(5237), + [anon_sym_SLASH] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym__] = ACTIONS(5237), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_BANG] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_COLON] = ACTIONS(5237), + [anon_sym_SQUOTE] = ACTIONS(5237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), + [anon_sym_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5235), + [anon_sym_BSLASHbegin] = ACTIONS(5237), + [anon_sym_BSLASHusepackage] = ACTIONS(5237), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), + [anon_sym_BSLASHinclude] = ACTIONS(5237), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), + [anon_sym_BSLASHinput] = ACTIONS(5237), + [anon_sym_BSLASHsubfile] = ACTIONS(5237), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), + [anon_sym_BSLASHbibliography] = ACTIONS(5237), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), + [anon_sym_BSLASHincludesvg] = ACTIONS(5237), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), + [anon_sym_BSLASHimport] = ACTIONS(5237), + [anon_sym_BSLASHsubimport] = ACTIONS(5237), + [anon_sym_BSLASHinputfrom] = ACTIONS(5237), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), + [anon_sym_BSLASHincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHcaption] = ACTIONS(5237), + [anon_sym_BSLASHcite] = ACTIONS(5237), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCite] = ACTIONS(5237), + [anon_sym_BSLASHnocite] = ACTIONS(5237), + [anon_sym_BSLASHcitet] = ACTIONS(5237), + [anon_sym_BSLASHcitep] = ACTIONS(5237), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteyear] = ACTIONS(5237), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitedate] = ACTIONS(5237), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteurl] = ACTIONS(5237), + [anon_sym_BSLASHfullcite] = ACTIONS(5237), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), + [anon_sym_BSLASHcitealt] = ACTIONS(5237), + [anon_sym_BSLASHcitealp] = ACTIONS(5237), + [anon_sym_BSLASHcitetext] = ACTIONS(5237), + [anon_sym_BSLASHparencite] = ACTIONS(5237), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHParencite] = ACTIONS(5237), + [anon_sym_BSLASHfootcite] = ACTIONS(5237), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), + [anon_sym_BSLASHtextcite] = ACTIONS(5237), + [anon_sym_BSLASHTextcite] = ACTIONS(5237), + [anon_sym_BSLASHsmartcite] = ACTIONS(5237), + [anon_sym_BSLASHSmartcite] = ACTIONS(5237), + [anon_sym_BSLASHsupercite] = ACTIONS(5237), + [anon_sym_BSLASHautocite] = ACTIONS(5237), + [anon_sym_BSLASHAutocite] = ACTIONS(5237), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHvolcite] = ACTIONS(5237), + [anon_sym_BSLASHVolcite] = ACTIONS(5237), + [anon_sym_BSLASHpvolcite] = ACTIONS(5237), + [anon_sym_BSLASHPvolcite] = ACTIONS(5237), + [anon_sym_BSLASHfvolcite] = ACTIONS(5237), + [anon_sym_BSLASHftvolcite] = ACTIONS(5237), + [anon_sym_BSLASHsvolcite] = ACTIONS(5237), + [anon_sym_BSLASHSvolcite] = ACTIONS(5237), + [anon_sym_BSLASHtvolcite] = ACTIONS(5237), + [anon_sym_BSLASHTvolcite] = ACTIONS(5237), + [anon_sym_BSLASHavolcite] = ACTIONS(5237), + [anon_sym_BSLASHAvolcite] = ACTIONS(5237), + [anon_sym_BSLASHnotecite] = ACTIONS(5237), + [anon_sym_BSLASHNotecite] = ACTIONS(5237), + [anon_sym_BSLASHpnotecite] = ACTIONS(5237), + [anon_sym_BSLASHPnotecite] = ACTIONS(5237), + [anon_sym_BSLASHfnotecite] = ACTIONS(5237), + [anon_sym_BSLASHlabel] = ACTIONS(5237), + [anon_sym_BSLASHref] = ACTIONS(5237), + [anon_sym_BSLASHeqref] = ACTIONS(5237), + [anon_sym_BSLASHvref] = ACTIONS(5237), + [anon_sym_BSLASHVref] = ACTIONS(5237), + [anon_sym_BSLASHautoref] = ACTIONS(5237), + [anon_sym_BSLASHpageref] = ACTIONS(5237), + [anon_sym_BSLASHcref] = ACTIONS(5237), + [anon_sym_BSLASHCref] = ACTIONS(5237), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnameCref] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHlabelcref] = ACTIONS(5237), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnewlabel] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), + [anon_sym_BSLASHdef] = ACTIONS(5237), + [anon_sym_BSLASHlet] = ACTIONS(5237), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), + [anon_sym_BSLASHgls] = ACTIONS(5237), + [anon_sym_BSLASHGls] = ACTIONS(5237), + [anon_sym_BSLASHGLS] = ACTIONS(5237), + [anon_sym_BSLASHglspl] = ACTIONS(5237), + [anon_sym_BSLASHGlspl] = ACTIONS(5237), + [anon_sym_BSLASHGLSpl] = ACTIONS(5237), + [anon_sym_BSLASHglsdisp] = ACTIONS(5237), + [anon_sym_BSLASHglslink] = ACTIONS(5237), + [anon_sym_BSLASHglstext] = ACTIONS(5237), + [anon_sym_BSLASHGlstext] = ACTIONS(5237), + [anon_sym_BSLASHGLStext] = ACTIONS(5237), + [anon_sym_BSLASHglsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), + [anon_sym_BSLASHglsplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSplural] = ACTIONS(5237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHglsname] = ACTIONS(5237), + [anon_sym_BSLASHGlsname] = ACTIONS(5237), + [anon_sym_BSLASHGLSname] = ACTIONS(5237), + [anon_sym_BSLASHglssymbol] = ACTIONS(5237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), + [anon_sym_BSLASHglsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), + [anon_sym_BSLASHglsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), + [anon_sym_BSLASHglsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), + [anon_sym_BSLASHglsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), + [anon_sym_BSLASHglsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), + [anon_sym_BSLASHnewacronym] = ACTIONS(5237), + [anon_sym_BSLASHacrshort] = ACTIONS(5237), + [anon_sym_BSLASHAcrshort] = ACTIONS(5237), + [anon_sym_BSLASHACRshort] = ACTIONS(5237), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), + [anon_sym_BSLASHacrlong] = ACTIONS(5237), + [anon_sym_BSLASHAcrlong] = ACTIONS(5237), + [anon_sym_BSLASHACRlong] = ACTIONS(5237), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), + [anon_sym_BSLASHacrfull] = ACTIONS(5237), + [anon_sym_BSLASHAcrfull] = ACTIONS(5237), + [anon_sym_BSLASHACRfull] = ACTIONS(5237), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), + [anon_sym_BSLASHacs] = ACTIONS(5237), + [anon_sym_BSLASHAcs] = ACTIONS(5237), + [anon_sym_BSLASHacsp] = ACTIONS(5237), + [anon_sym_BSLASHAcsp] = ACTIONS(5237), + [anon_sym_BSLASHacl] = ACTIONS(5237), + [anon_sym_BSLASHAcl] = ACTIONS(5237), + [anon_sym_BSLASHaclp] = ACTIONS(5237), + [anon_sym_BSLASHAclp] = ACTIONS(5237), + [anon_sym_BSLASHacf] = ACTIONS(5237), + [anon_sym_BSLASHAcf] = ACTIONS(5237), + [anon_sym_BSLASHacfp] = ACTIONS(5237), + [anon_sym_BSLASHAcfp] = ACTIONS(5237), + [anon_sym_BSLASHac] = ACTIONS(5237), + [anon_sym_BSLASHAc] = ACTIONS(5237), + [anon_sym_BSLASHacp] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), + [anon_sym_BSLASHcolor] = ACTIONS(5237), + [anon_sym_BSLASHcolorbox] = ACTIONS(5237), + [anon_sym_BSLASHtextcolor] = ACTIONS(5237), + [anon_sym_BSLASHpagecolor] = ACTIONS(5237), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), + [anon_sym_BSLASHtext] = ACTIONS(5237), + [anon_sym_BSLASHintertext] = ACTIONS(5237), + [anon_sym_shortintertext] = ACTIONS(5237), + }, + [1055] = { + [sym_command_name] = ACTIONS(5233), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5233), + [anon_sym_LPAREN] = ACTIONS(5231), + [anon_sym_RPAREN] = ACTIONS(5231), + [anon_sym_LBRACK] = ACTIONS(5231), + [anon_sym_RBRACK] = ACTIONS(5231), + [anon_sym_COMMA] = ACTIONS(5231), + [anon_sym_EQ] = ACTIONS(5231), + [anon_sym_BSLASHpart] = ACTIONS(5233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddpart] = ACTIONS(5233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5231), + [anon_sym_BSLASHchapter] = ACTIONS(5233), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddchap] = ACTIONS(5233), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsection] = ACTIONS(5233), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddsec] = ACTIONS(5233), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubsection] = ACTIONS(5233), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHparagraph] = ACTIONS(5233), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5231), + [anon_sym_BSLASHitem] = ACTIONS(5233), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5231), + [anon_sym_LBRACE] = ACTIONS(5231), + [sym_word] = ACTIONS(5233), + [sym_placeholder] = ACTIONS(5231), + [anon_sym_PLUS] = ACTIONS(5233), + [anon_sym_DASH] = ACTIONS(5233), + [anon_sym_STAR] = ACTIONS(5233), + [anon_sym_SLASH] = ACTIONS(5233), + [anon_sym_CARET] = ACTIONS(5233), + [anon_sym__] = ACTIONS(5233), + [anon_sym_LT] = ACTIONS(5233), + [anon_sym_GT] = ACTIONS(5233), + [anon_sym_BANG] = ACTIONS(5233), + [anon_sym_PIPE] = ACTIONS(5233), + [anon_sym_COLON] = ACTIONS(5233), + [anon_sym_SQUOTE] = ACTIONS(5233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), + [anon_sym_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5231), + [anon_sym_BSLASHbegin] = ACTIONS(5233), + [anon_sym_BSLASHusepackage] = ACTIONS(5233), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), + [anon_sym_BSLASHinclude] = ACTIONS(5233), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), + [anon_sym_BSLASHinput] = ACTIONS(5233), + [anon_sym_BSLASHsubfile] = ACTIONS(5233), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), + [anon_sym_BSLASHbibliography] = ACTIONS(5233), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), + [anon_sym_BSLASHincludesvg] = ACTIONS(5233), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), + [anon_sym_BSLASHimport] = ACTIONS(5233), + [anon_sym_BSLASHsubimport] = ACTIONS(5233), + [anon_sym_BSLASHinputfrom] = ACTIONS(5233), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), + [anon_sym_BSLASHincludefrom] = ACTIONS(5233), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), + [anon_sym_BSLASHcaption] = ACTIONS(5233), + [anon_sym_BSLASHcite] = ACTIONS(5233), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCite] = ACTIONS(5233), + [anon_sym_BSLASHnocite] = ACTIONS(5233), + [anon_sym_BSLASHcitet] = ACTIONS(5233), + [anon_sym_BSLASHcitep] = ACTIONS(5233), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteyear] = ACTIONS(5233), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitedate] = ACTIONS(5233), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteurl] = ACTIONS(5233), + [anon_sym_BSLASHfullcite] = ACTIONS(5233), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), + [anon_sym_BSLASHcitealt] = ACTIONS(5233), + [anon_sym_BSLASHcitealp] = ACTIONS(5233), + [anon_sym_BSLASHcitetext] = ACTIONS(5233), + [anon_sym_BSLASHparencite] = ACTIONS(5233), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHParencite] = ACTIONS(5233), + [anon_sym_BSLASHfootcite] = ACTIONS(5233), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), + [anon_sym_BSLASHtextcite] = ACTIONS(5233), + [anon_sym_BSLASHTextcite] = ACTIONS(5233), + [anon_sym_BSLASHsmartcite] = ACTIONS(5233), + [anon_sym_BSLASHSmartcite] = ACTIONS(5233), + [anon_sym_BSLASHsupercite] = ACTIONS(5233), + [anon_sym_BSLASHautocite] = ACTIONS(5233), + [anon_sym_BSLASHAutocite] = ACTIONS(5233), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHvolcite] = ACTIONS(5233), + [anon_sym_BSLASHVolcite] = ACTIONS(5233), + [anon_sym_BSLASHpvolcite] = ACTIONS(5233), + [anon_sym_BSLASHPvolcite] = ACTIONS(5233), + [anon_sym_BSLASHfvolcite] = ACTIONS(5233), + [anon_sym_BSLASHftvolcite] = ACTIONS(5233), + [anon_sym_BSLASHsvolcite] = ACTIONS(5233), + [anon_sym_BSLASHSvolcite] = ACTIONS(5233), + [anon_sym_BSLASHtvolcite] = ACTIONS(5233), + [anon_sym_BSLASHTvolcite] = ACTIONS(5233), + [anon_sym_BSLASHavolcite] = ACTIONS(5233), + [anon_sym_BSLASHAvolcite] = ACTIONS(5233), + [anon_sym_BSLASHnotecite] = ACTIONS(5233), + [anon_sym_BSLASHNotecite] = ACTIONS(5233), + [anon_sym_BSLASHpnotecite] = ACTIONS(5233), + [anon_sym_BSLASHPnotecite] = ACTIONS(5233), + [anon_sym_BSLASHfnotecite] = ACTIONS(5233), + [anon_sym_BSLASHlabel] = ACTIONS(5233), + [anon_sym_BSLASHref] = ACTIONS(5233), + [anon_sym_BSLASHeqref] = ACTIONS(5233), + [anon_sym_BSLASHvref] = ACTIONS(5233), + [anon_sym_BSLASHVref] = ACTIONS(5233), + [anon_sym_BSLASHautoref] = ACTIONS(5233), + [anon_sym_BSLASHpageref] = ACTIONS(5233), + [anon_sym_BSLASHcref] = ACTIONS(5233), + [anon_sym_BSLASHCref] = ACTIONS(5233), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), + [anon_sym_BSLASHnamecref] = ACTIONS(5233), + [anon_sym_BSLASHnameCref] = ACTIONS(5233), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), + [anon_sym_BSLASHlabelcref] = ACTIONS(5233), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), + [anon_sym_BSLASHcrefrange] = ACTIONS(5233), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), + [anon_sym_BSLASHnewlabel] = ACTIONS(5233), + [anon_sym_BSLASHnewcommand] = ACTIONS(5233), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), + [anon_sym_BSLASHdef] = ACTIONS(5233), + [anon_sym_BSLASHlet] = ACTIONS(5233), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), + [anon_sym_BSLASHgls] = ACTIONS(5233), + [anon_sym_BSLASHGls] = ACTIONS(5233), + [anon_sym_BSLASHGLS] = ACTIONS(5233), + [anon_sym_BSLASHglspl] = ACTIONS(5233), + [anon_sym_BSLASHGlspl] = ACTIONS(5233), + [anon_sym_BSLASHGLSpl] = ACTIONS(5233), + [anon_sym_BSLASHglsdisp] = ACTIONS(5233), + [anon_sym_BSLASHglslink] = ACTIONS(5233), + [anon_sym_BSLASHglstext] = ACTIONS(5233), + [anon_sym_BSLASHGlstext] = ACTIONS(5233), + [anon_sym_BSLASHGLStext] = ACTIONS(5233), + [anon_sym_BSLASHglsfirst] = ACTIONS(5233), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), + [anon_sym_BSLASHglsplural] = ACTIONS(5233), + [anon_sym_BSLASHGlsplural] = ACTIONS(5233), + [anon_sym_BSLASHGLSplural] = ACTIONS(5233), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHglsname] = ACTIONS(5233), + [anon_sym_BSLASHGlsname] = ACTIONS(5233), + [anon_sym_BSLASHGLSname] = ACTIONS(5233), + [anon_sym_BSLASHglssymbol] = ACTIONS(5233), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), + [anon_sym_BSLASHglsdesc] = ACTIONS(5233), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), + [anon_sym_BSLASHglsuseri] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), + [anon_sym_BSLASHglsuserii] = ACTIONS(5233), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), + [anon_sym_BSLASHglsuserv] = ACTIONS(5233), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), + [anon_sym_BSLASHglsuservi] = ACTIONS(5233), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), + [anon_sym_BSLASHnewacronym] = ACTIONS(5233), + [anon_sym_BSLASHacrshort] = ACTIONS(5233), + [anon_sym_BSLASHAcrshort] = ACTIONS(5233), + [anon_sym_BSLASHACRshort] = ACTIONS(5233), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), + [anon_sym_BSLASHacrlong] = ACTIONS(5233), + [anon_sym_BSLASHAcrlong] = ACTIONS(5233), + [anon_sym_BSLASHACRlong] = ACTIONS(5233), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), + [anon_sym_BSLASHacrfull] = ACTIONS(5233), + [anon_sym_BSLASHAcrfull] = ACTIONS(5233), + [anon_sym_BSLASHACRfull] = ACTIONS(5233), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), + [anon_sym_BSLASHacs] = ACTIONS(5233), + [anon_sym_BSLASHAcs] = ACTIONS(5233), + [anon_sym_BSLASHacsp] = ACTIONS(5233), + [anon_sym_BSLASHAcsp] = ACTIONS(5233), + [anon_sym_BSLASHacl] = ACTIONS(5233), + [anon_sym_BSLASHAcl] = ACTIONS(5233), + [anon_sym_BSLASHaclp] = ACTIONS(5233), + [anon_sym_BSLASHAclp] = ACTIONS(5233), + [anon_sym_BSLASHacf] = ACTIONS(5233), + [anon_sym_BSLASHAcf] = ACTIONS(5233), + [anon_sym_BSLASHacfp] = ACTIONS(5233), + [anon_sym_BSLASHAcfp] = ACTIONS(5233), + [anon_sym_BSLASHac] = ACTIONS(5233), + [anon_sym_BSLASHAc] = ACTIONS(5233), + [anon_sym_BSLASHacp] = ACTIONS(5233), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), + [anon_sym_BSLASHcolor] = ACTIONS(5233), + [anon_sym_BSLASHcolorbox] = ACTIONS(5233), + [anon_sym_BSLASHtextcolor] = ACTIONS(5233), + [anon_sym_BSLASHpagecolor] = ACTIONS(5233), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), + [anon_sym_BSLASHtext] = ACTIONS(5233), + [anon_sym_BSLASHintertext] = ACTIONS(5233), + [anon_sym_shortintertext] = ACTIONS(5233), + }, + [1056] = { + [sym_command_name] = ACTIONS(5229), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5229), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5227), + [anon_sym_LBRACK] = ACTIONS(5227), + [anon_sym_RBRACK] = ACTIONS(5227), + [anon_sym_COMMA] = ACTIONS(5227), + [anon_sym_EQ] = ACTIONS(5227), + [anon_sym_BSLASHpart] = ACTIONS(5229), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddpart] = ACTIONS(5229), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5227), + [anon_sym_BSLASHchapter] = ACTIONS(5229), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddchap] = ACTIONS(5229), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsection] = ACTIONS(5229), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddsec] = ACTIONS(5229), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubsection] = ACTIONS(5229), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHparagraph] = ACTIONS(5229), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5227), + [anon_sym_BSLASHitem] = ACTIONS(5229), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5227), + [anon_sym_LBRACE] = ACTIONS(5227), + [sym_word] = ACTIONS(5229), + [sym_placeholder] = ACTIONS(5227), + [anon_sym_PLUS] = ACTIONS(5229), + [anon_sym_DASH] = ACTIONS(5229), + [anon_sym_STAR] = ACTIONS(5229), + [anon_sym_SLASH] = ACTIONS(5229), + [anon_sym_CARET] = ACTIONS(5229), + [anon_sym__] = ACTIONS(5229), + [anon_sym_LT] = ACTIONS(5229), + [anon_sym_GT] = ACTIONS(5229), + [anon_sym_BANG] = ACTIONS(5229), + [anon_sym_PIPE] = ACTIONS(5229), + [anon_sym_COLON] = ACTIONS(5229), + [anon_sym_SQUOTE] = ACTIONS(5229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), + [anon_sym_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5227), + [anon_sym_BSLASHbegin] = ACTIONS(5229), + [anon_sym_BSLASHusepackage] = ACTIONS(5229), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), + [anon_sym_BSLASHinclude] = ACTIONS(5229), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), + [anon_sym_BSLASHinput] = ACTIONS(5229), + [anon_sym_BSLASHsubfile] = ACTIONS(5229), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), + [anon_sym_BSLASHbibliography] = ACTIONS(5229), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), + [anon_sym_BSLASHincludesvg] = ACTIONS(5229), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), + [anon_sym_BSLASHimport] = ACTIONS(5229), + [anon_sym_BSLASHsubimport] = ACTIONS(5229), + [anon_sym_BSLASHinputfrom] = ACTIONS(5229), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), + [anon_sym_BSLASHincludefrom] = ACTIONS(5229), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), + [anon_sym_BSLASHcaption] = ACTIONS(5229), + [anon_sym_BSLASHcite] = ACTIONS(5229), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCite] = ACTIONS(5229), + [anon_sym_BSLASHnocite] = ACTIONS(5229), + [anon_sym_BSLASHcitet] = ACTIONS(5229), + [anon_sym_BSLASHcitep] = ACTIONS(5229), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteyear] = ACTIONS(5229), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitedate] = ACTIONS(5229), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteurl] = ACTIONS(5229), + [anon_sym_BSLASHfullcite] = ACTIONS(5229), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), + [anon_sym_BSLASHcitealt] = ACTIONS(5229), + [anon_sym_BSLASHcitealp] = ACTIONS(5229), + [anon_sym_BSLASHcitetext] = ACTIONS(5229), + [anon_sym_BSLASHparencite] = ACTIONS(5229), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHParencite] = ACTIONS(5229), + [anon_sym_BSLASHfootcite] = ACTIONS(5229), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), + [anon_sym_BSLASHtextcite] = ACTIONS(5229), + [anon_sym_BSLASHTextcite] = ACTIONS(5229), + [anon_sym_BSLASHsmartcite] = ACTIONS(5229), + [anon_sym_BSLASHSmartcite] = ACTIONS(5229), + [anon_sym_BSLASHsupercite] = ACTIONS(5229), + [anon_sym_BSLASHautocite] = ACTIONS(5229), + [anon_sym_BSLASHAutocite] = ACTIONS(5229), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHvolcite] = ACTIONS(5229), + [anon_sym_BSLASHVolcite] = ACTIONS(5229), + [anon_sym_BSLASHpvolcite] = ACTIONS(5229), + [anon_sym_BSLASHPvolcite] = ACTIONS(5229), + [anon_sym_BSLASHfvolcite] = ACTIONS(5229), + [anon_sym_BSLASHftvolcite] = ACTIONS(5229), + [anon_sym_BSLASHsvolcite] = ACTIONS(5229), + [anon_sym_BSLASHSvolcite] = ACTIONS(5229), + [anon_sym_BSLASHtvolcite] = ACTIONS(5229), + [anon_sym_BSLASHTvolcite] = ACTIONS(5229), + [anon_sym_BSLASHavolcite] = ACTIONS(5229), + [anon_sym_BSLASHAvolcite] = ACTIONS(5229), + [anon_sym_BSLASHnotecite] = ACTIONS(5229), + [anon_sym_BSLASHNotecite] = ACTIONS(5229), + [anon_sym_BSLASHpnotecite] = ACTIONS(5229), + [anon_sym_BSLASHPnotecite] = ACTIONS(5229), + [anon_sym_BSLASHfnotecite] = ACTIONS(5229), + [anon_sym_BSLASHlabel] = ACTIONS(5229), + [anon_sym_BSLASHref] = ACTIONS(5229), + [anon_sym_BSLASHeqref] = ACTIONS(5229), + [anon_sym_BSLASHvref] = ACTIONS(5229), + [anon_sym_BSLASHVref] = ACTIONS(5229), + [anon_sym_BSLASHautoref] = ACTIONS(5229), + [anon_sym_BSLASHpageref] = ACTIONS(5229), + [anon_sym_BSLASHcref] = ACTIONS(5229), + [anon_sym_BSLASHCref] = ACTIONS(5229), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), + [anon_sym_BSLASHnamecref] = ACTIONS(5229), + [anon_sym_BSLASHnameCref] = ACTIONS(5229), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), + [anon_sym_BSLASHlabelcref] = ACTIONS(5229), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), + [anon_sym_BSLASHcrefrange] = ACTIONS(5229), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), + [anon_sym_BSLASHnewlabel] = ACTIONS(5229), + [anon_sym_BSLASHnewcommand] = ACTIONS(5229), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), + [anon_sym_BSLASHdef] = ACTIONS(5229), + [anon_sym_BSLASHlet] = ACTIONS(5229), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), + [anon_sym_BSLASHgls] = ACTIONS(5229), + [anon_sym_BSLASHGls] = ACTIONS(5229), + [anon_sym_BSLASHGLS] = ACTIONS(5229), + [anon_sym_BSLASHglspl] = ACTIONS(5229), + [anon_sym_BSLASHGlspl] = ACTIONS(5229), + [anon_sym_BSLASHGLSpl] = ACTIONS(5229), + [anon_sym_BSLASHglsdisp] = ACTIONS(5229), + [anon_sym_BSLASHglslink] = ACTIONS(5229), + [anon_sym_BSLASHglstext] = ACTIONS(5229), + [anon_sym_BSLASHGlstext] = ACTIONS(5229), + [anon_sym_BSLASHGLStext] = ACTIONS(5229), + [anon_sym_BSLASHglsfirst] = ACTIONS(5229), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), + [anon_sym_BSLASHglsplural] = ACTIONS(5229), + [anon_sym_BSLASHGlsplural] = ACTIONS(5229), + [anon_sym_BSLASHGLSplural] = ACTIONS(5229), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHglsname] = ACTIONS(5229), + [anon_sym_BSLASHGlsname] = ACTIONS(5229), + [anon_sym_BSLASHGLSname] = ACTIONS(5229), + [anon_sym_BSLASHglssymbol] = ACTIONS(5229), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), + [anon_sym_BSLASHglsdesc] = ACTIONS(5229), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), + [anon_sym_BSLASHglsuseri] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), + [anon_sym_BSLASHglsuserii] = ACTIONS(5229), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), + [anon_sym_BSLASHglsuserv] = ACTIONS(5229), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), + [anon_sym_BSLASHglsuservi] = ACTIONS(5229), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), + [anon_sym_BSLASHnewacronym] = ACTIONS(5229), + [anon_sym_BSLASHacrshort] = ACTIONS(5229), + [anon_sym_BSLASHAcrshort] = ACTIONS(5229), + [anon_sym_BSLASHACRshort] = ACTIONS(5229), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), + [anon_sym_BSLASHacrlong] = ACTIONS(5229), + [anon_sym_BSLASHAcrlong] = ACTIONS(5229), + [anon_sym_BSLASHACRlong] = ACTIONS(5229), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), + [anon_sym_BSLASHacrfull] = ACTIONS(5229), + [anon_sym_BSLASHAcrfull] = ACTIONS(5229), + [anon_sym_BSLASHACRfull] = ACTIONS(5229), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), + [anon_sym_BSLASHacs] = ACTIONS(5229), + [anon_sym_BSLASHAcs] = ACTIONS(5229), + [anon_sym_BSLASHacsp] = ACTIONS(5229), + [anon_sym_BSLASHAcsp] = ACTIONS(5229), + [anon_sym_BSLASHacl] = ACTIONS(5229), + [anon_sym_BSLASHAcl] = ACTIONS(5229), + [anon_sym_BSLASHaclp] = ACTIONS(5229), + [anon_sym_BSLASHAclp] = ACTIONS(5229), + [anon_sym_BSLASHacf] = ACTIONS(5229), + [anon_sym_BSLASHAcf] = ACTIONS(5229), + [anon_sym_BSLASHacfp] = ACTIONS(5229), + [anon_sym_BSLASHAcfp] = ACTIONS(5229), + [anon_sym_BSLASHac] = ACTIONS(5229), + [anon_sym_BSLASHAc] = ACTIONS(5229), + [anon_sym_BSLASHacp] = ACTIONS(5229), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), + [anon_sym_BSLASHcolor] = ACTIONS(5229), + [anon_sym_BSLASHcolorbox] = ACTIONS(5229), + [anon_sym_BSLASHtextcolor] = ACTIONS(5229), + [anon_sym_BSLASHpagecolor] = ACTIONS(5229), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), + [anon_sym_BSLASHtext] = ACTIONS(5229), + [anon_sym_BSLASHintertext] = ACTIONS(5229), + [anon_sym_shortintertext] = ACTIONS(5229), + }, + [1057] = { + [sym_command_name] = ACTIONS(5225), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4965), - [anon_sym_BSLASHpart] = ACTIONS(4967), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddpart] = ACTIONS(4967), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4965), - [anon_sym_BSLASHchapter] = ACTIONS(4967), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddchap] = ACTIONS(4967), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsection] = ACTIONS(4967), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHaddsec] = ACTIONS(4967), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubsection] = ACTIONS(4967), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4967), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4965), - [anon_sym_BSLASHparagraph] = ACTIONS(4967), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4965), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4967), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4965), - [anon_sym_BSLASHitem] = ACTIONS(4967), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4965), - [sym_word] = ACTIONS(4967), - [sym_placeholder] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_CARET] = ACTIONS(4967), - [anon_sym__] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4965), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4965), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4965), - [anon_sym_BSLASHbegin] = ACTIONS(4967), - [anon_sym_BSLASHusepackage] = ACTIONS(4967), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4967), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4967), - [anon_sym_BSLASHinclude] = ACTIONS(4967), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4967), - [anon_sym_BSLASHinput] = ACTIONS(4967), - [anon_sym_BSLASHsubfile] = ACTIONS(4967), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4967), - [anon_sym_BSLASHbibliography] = ACTIONS(4967), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4967), - [anon_sym_BSLASHincludesvg] = ACTIONS(4967), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4967), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4967), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4967), - [anon_sym_BSLASHimport] = ACTIONS(4967), - [anon_sym_BSLASHsubimport] = ACTIONS(4967), - [anon_sym_BSLASHinputfrom] = ACTIONS(4967), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4967), - [anon_sym_BSLASHincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHcaption] = ACTIONS(4967), - [anon_sym_BSLASHcite] = ACTIONS(4967), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCite] = ACTIONS(4967), - [anon_sym_BSLASHnocite] = ACTIONS(4967), - [anon_sym_BSLASHcitet] = ACTIONS(4967), - [anon_sym_BSLASHcitep] = ACTIONS(4967), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteauthor] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitetitle] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteyear] = ACTIONS(4967), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitedate] = ACTIONS(4967), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteurl] = ACTIONS(4967), - [anon_sym_BSLASHfullcite] = ACTIONS(4967), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4967), - [anon_sym_BSLASHcitealt] = ACTIONS(4967), - [anon_sym_BSLASHcitealp] = ACTIONS(4967), - [anon_sym_BSLASHcitetext] = ACTIONS(4967), - [anon_sym_BSLASHparencite] = ACTIONS(4967), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHParencite] = ACTIONS(4967), - [anon_sym_BSLASHfootcite] = ACTIONS(4967), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4967), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4967), - [anon_sym_BSLASHtextcite] = ACTIONS(4967), - [anon_sym_BSLASHTextcite] = ACTIONS(4967), - [anon_sym_BSLASHsmartcite] = ACTIONS(4967), - [anon_sym_BSLASHSmartcite] = ACTIONS(4967), - [anon_sym_BSLASHsupercite] = ACTIONS(4967), - [anon_sym_BSLASHautocite] = ACTIONS(4967), - [anon_sym_BSLASHAutocite] = ACTIONS(4967), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHvolcite] = ACTIONS(4967), - [anon_sym_BSLASHVolcite] = ACTIONS(4967), - [anon_sym_BSLASHpvolcite] = ACTIONS(4967), - [anon_sym_BSLASHPvolcite] = ACTIONS(4967), - [anon_sym_BSLASHfvolcite] = ACTIONS(4967), - [anon_sym_BSLASHftvolcite] = ACTIONS(4967), - [anon_sym_BSLASHsvolcite] = ACTIONS(4967), - [anon_sym_BSLASHSvolcite] = ACTIONS(4967), - [anon_sym_BSLASHtvolcite] = ACTIONS(4967), - [anon_sym_BSLASHTvolcite] = ACTIONS(4967), - [anon_sym_BSLASHavolcite] = ACTIONS(4967), - [anon_sym_BSLASHAvolcite] = ACTIONS(4967), - [anon_sym_BSLASHnotecite] = ACTIONS(4967), - [anon_sym_BSLASHNotecite] = ACTIONS(4967), - [anon_sym_BSLASHpnotecite] = ACTIONS(4967), - [anon_sym_BSLASHPnotecite] = ACTIONS(4967), - [anon_sym_BSLASHfnotecite] = ACTIONS(4967), - [anon_sym_BSLASHlabel] = ACTIONS(4967), - [anon_sym_BSLASHref] = ACTIONS(4967), - [anon_sym_BSLASHeqref] = ACTIONS(4967), - [anon_sym_BSLASHvref] = ACTIONS(4967), - [anon_sym_BSLASHVref] = ACTIONS(4967), - [anon_sym_BSLASHautoref] = ACTIONS(4967), - [anon_sym_BSLASHpageref] = ACTIONS(4967), - [anon_sym_BSLASHcref] = ACTIONS(4967), - [anon_sym_BSLASHCref] = ACTIONS(4967), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnameCref] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHlabelcref] = ACTIONS(4967), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCrefrange] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnewlabel] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4965), - [anon_sym_BSLASHdef] = ACTIONS(4967), - [anon_sym_BSLASHlet] = ACTIONS(4967), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4967), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4967), - [anon_sym_BSLASHgls] = ACTIONS(4967), - [anon_sym_BSLASHGls] = ACTIONS(4967), - [anon_sym_BSLASHGLS] = ACTIONS(4967), - [anon_sym_BSLASHglspl] = ACTIONS(4967), - [anon_sym_BSLASHGlspl] = ACTIONS(4967), - [anon_sym_BSLASHGLSpl] = ACTIONS(4967), - [anon_sym_BSLASHglsdisp] = ACTIONS(4967), - [anon_sym_BSLASHglslink] = ACTIONS(4967), - [anon_sym_BSLASHglstext] = ACTIONS(4967), - [anon_sym_BSLASHGlstext] = ACTIONS(4967), - [anon_sym_BSLASHGLStext] = ACTIONS(4967), - [anon_sym_BSLASHglsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4967), - [anon_sym_BSLASHglsplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSplural] = ACTIONS(4967), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHglsname] = ACTIONS(4967), - [anon_sym_BSLASHGlsname] = ACTIONS(4967), - [anon_sym_BSLASHGLSname] = ACTIONS(4967), - [anon_sym_BSLASHglssymbol] = ACTIONS(4967), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4967), - [anon_sym_BSLASHglsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4967), - [anon_sym_BSLASHglsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4967), - [anon_sym_BSLASHglsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4967), - [anon_sym_BSLASHglsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4967), - [anon_sym_BSLASHglsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4967), - [anon_sym_BSLASHnewacronym] = ACTIONS(4967), - [anon_sym_BSLASHacrshort] = ACTIONS(4967), - [anon_sym_BSLASHAcrshort] = ACTIONS(4967), - [anon_sym_BSLASHACRshort] = ACTIONS(4967), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4967), - [anon_sym_BSLASHacrlong] = ACTIONS(4967), - [anon_sym_BSLASHAcrlong] = ACTIONS(4967), - [anon_sym_BSLASHACRlong] = ACTIONS(4967), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4967), - [anon_sym_BSLASHacrfull] = ACTIONS(4967), - [anon_sym_BSLASHAcrfull] = ACTIONS(4967), - [anon_sym_BSLASHACRfull] = ACTIONS(4967), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4967), - [anon_sym_BSLASHacs] = ACTIONS(4967), - [anon_sym_BSLASHAcs] = ACTIONS(4967), - [anon_sym_BSLASHacsp] = ACTIONS(4967), - [anon_sym_BSLASHAcsp] = ACTIONS(4967), - [anon_sym_BSLASHacl] = ACTIONS(4967), - [anon_sym_BSLASHAcl] = ACTIONS(4967), - [anon_sym_BSLASHaclp] = ACTIONS(4967), - [anon_sym_BSLASHAclp] = ACTIONS(4967), - [anon_sym_BSLASHacf] = ACTIONS(4967), - [anon_sym_BSLASHAcf] = ACTIONS(4967), - [anon_sym_BSLASHacfp] = ACTIONS(4967), - [anon_sym_BSLASHAcfp] = ACTIONS(4967), - [anon_sym_BSLASHac] = ACTIONS(4967), - [anon_sym_BSLASHAc] = ACTIONS(4967), - [anon_sym_BSLASHacp] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4967), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4967), - [anon_sym_BSLASHcolor] = ACTIONS(4967), - [anon_sym_BSLASHcolorbox] = ACTIONS(4967), - [anon_sym_BSLASHtextcolor] = ACTIONS(4967), - [anon_sym_BSLASHpagecolor] = ACTIONS(4967), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4967), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4967), + [anon_sym_BSLASHiffalse] = ACTIONS(5225), + [anon_sym_LPAREN] = ACTIONS(5223), + [anon_sym_RPAREN] = ACTIONS(5223), + [anon_sym_LBRACK] = ACTIONS(5223), + [anon_sym_RBRACK] = ACTIONS(5223), + [anon_sym_COMMA] = ACTIONS(5223), + [anon_sym_EQ] = ACTIONS(5223), + [anon_sym_BSLASHpart] = ACTIONS(5225), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddpart] = ACTIONS(5225), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), + [anon_sym_BSLASHchapter] = ACTIONS(5225), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddchap] = ACTIONS(5225), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsection] = ACTIONS(5225), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddsec] = ACTIONS(5225), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubsection] = ACTIONS(5225), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHparagraph] = ACTIONS(5225), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), + [anon_sym_BSLASHitem] = ACTIONS(5225), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), + [anon_sym_LBRACE] = ACTIONS(5223), + [sym_word] = ACTIONS(5225), + [sym_placeholder] = ACTIONS(5223), + [anon_sym_PLUS] = ACTIONS(5225), + [anon_sym_DASH] = ACTIONS(5225), + [anon_sym_STAR] = ACTIONS(5225), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_CARET] = ACTIONS(5225), + [anon_sym__] = ACTIONS(5225), + [anon_sym_LT] = ACTIONS(5225), + [anon_sym_GT] = ACTIONS(5225), + [anon_sym_BANG] = ACTIONS(5225), + [anon_sym_PIPE] = ACTIONS(5225), + [anon_sym_COLON] = ACTIONS(5225), + [anon_sym_SQUOTE] = ACTIONS(5225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), + [anon_sym_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5223), + [anon_sym_BSLASHbegin] = ACTIONS(5225), + [anon_sym_BSLASHusepackage] = ACTIONS(5225), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), + [anon_sym_BSLASHinclude] = ACTIONS(5225), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), + [anon_sym_BSLASHinput] = ACTIONS(5225), + [anon_sym_BSLASHsubfile] = ACTIONS(5225), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), + [anon_sym_BSLASHbibliography] = ACTIONS(5225), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), + [anon_sym_BSLASHincludesvg] = ACTIONS(5225), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), + [anon_sym_BSLASHimport] = ACTIONS(5225), + [anon_sym_BSLASHsubimport] = ACTIONS(5225), + [anon_sym_BSLASHinputfrom] = ACTIONS(5225), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), + [anon_sym_BSLASHincludefrom] = ACTIONS(5225), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), + [anon_sym_BSLASHcaption] = ACTIONS(5225), + [anon_sym_BSLASHcite] = ACTIONS(5225), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCite] = ACTIONS(5225), + [anon_sym_BSLASHnocite] = ACTIONS(5225), + [anon_sym_BSLASHcitet] = ACTIONS(5225), + [anon_sym_BSLASHcitep] = ACTIONS(5225), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteyear] = ACTIONS(5225), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitedate] = ACTIONS(5225), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteurl] = ACTIONS(5225), + [anon_sym_BSLASHfullcite] = ACTIONS(5225), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), + [anon_sym_BSLASHcitealt] = ACTIONS(5225), + [anon_sym_BSLASHcitealp] = ACTIONS(5225), + [anon_sym_BSLASHcitetext] = ACTIONS(5225), + [anon_sym_BSLASHparencite] = ACTIONS(5225), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHParencite] = ACTIONS(5225), + [anon_sym_BSLASHfootcite] = ACTIONS(5225), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), + [anon_sym_BSLASHtextcite] = ACTIONS(5225), + [anon_sym_BSLASHTextcite] = ACTIONS(5225), + [anon_sym_BSLASHsmartcite] = ACTIONS(5225), + [anon_sym_BSLASHSmartcite] = ACTIONS(5225), + [anon_sym_BSLASHsupercite] = ACTIONS(5225), + [anon_sym_BSLASHautocite] = ACTIONS(5225), + [anon_sym_BSLASHAutocite] = ACTIONS(5225), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHvolcite] = ACTIONS(5225), + [anon_sym_BSLASHVolcite] = ACTIONS(5225), + [anon_sym_BSLASHpvolcite] = ACTIONS(5225), + [anon_sym_BSLASHPvolcite] = ACTIONS(5225), + [anon_sym_BSLASHfvolcite] = ACTIONS(5225), + [anon_sym_BSLASHftvolcite] = ACTIONS(5225), + [anon_sym_BSLASHsvolcite] = ACTIONS(5225), + [anon_sym_BSLASHSvolcite] = ACTIONS(5225), + [anon_sym_BSLASHtvolcite] = ACTIONS(5225), + [anon_sym_BSLASHTvolcite] = ACTIONS(5225), + [anon_sym_BSLASHavolcite] = ACTIONS(5225), + [anon_sym_BSLASHAvolcite] = ACTIONS(5225), + [anon_sym_BSLASHnotecite] = ACTIONS(5225), + [anon_sym_BSLASHNotecite] = ACTIONS(5225), + [anon_sym_BSLASHpnotecite] = ACTIONS(5225), + [anon_sym_BSLASHPnotecite] = ACTIONS(5225), + [anon_sym_BSLASHfnotecite] = ACTIONS(5225), + [anon_sym_BSLASHlabel] = ACTIONS(5225), + [anon_sym_BSLASHref] = ACTIONS(5225), + [anon_sym_BSLASHeqref] = ACTIONS(5225), + [anon_sym_BSLASHvref] = ACTIONS(5225), + [anon_sym_BSLASHVref] = ACTIONS(5225), + [anon_sym_BSLASHautoref] = ACTIONS(5225), + [anon_sym_BSLASHpageref] = ACTIONS(5225), + [anon_sym_BSLASHcref] = ACTIONS(5225), + [anon_sym_BSLASHCref] = ACTIONS(5225), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), + [anon_sym_BSLASHnamecref] = ACTIONS(5225), + [anon_sym_BSLASHnameCref] = ACTIONS(5225), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), + [anon_sym_BSLASHlabelcref] = ACTIONS(5225), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), + [anon_sym_BSLASHcrefrange] = ACTIONS(5225), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), + [anon_sym_BSLASHnewlabel] = ACTIONS(5225), + [anon_sym_BSLASHnewcommand] = ACTIONS(5225), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), + [anon_sym_BSLASHdef] = ACTIONS(5225), + [anon_sym_BSLASHlet] = ACTIONS(5225), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), + [anon_sym_BSLASHgls] = ACTIONS(5225), + [anon_sym_BSLASHGls] = ACTIONS(5225), + [anon_sym_BSLASHGLS] = ACTIONS(5225), + [anon_sym_BSLASHglspl] = ACTIONS(5225), + [anon_sym_BSLASHGlspl] = ACTIONS(5225), + [anon_sym_BSLASHGLSpl] = ACTIONS(5225), + [anon_sym_BSLASHglsdisp] = ACTIONS(5225), + [anon_sym_BSLASHglslink] = ACTIONS(5225), + [anon_sym_BSLASHglstext] = ACTIONS(5225), + [anon_sym_BSLASHGlstext] = ACTIONS(5225), + [anon_sym_BSLASHGLStext] = ACTIONS(5225), + [anon_sym_BSLASHglsfirst] = ACTIONS(5225), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), + [anon_sym_BSLASHglsplural] = ACTIONS(5225), + [anon_sym_BSLASHGlsplural] = ACTIONS(5225), + [anon_sym_BSLASHGLSplural] = ACTIONS(5225), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHglsname] = ACTIONS(5225), + [anon_sym_BSLASHGlsname] = ACTIONS(5225), + [anon_sym_BSLASHGLSname] = ACTIONS(5225), + [anon_sym_BSLASHglssymbol] = ACTIONS(5225), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), + [anon_sym_BSLASHglsdesc] = ACTIONS(5225), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), + [anon_sym_BSLASHglsuseri] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), + [anon_sym_BSLASHglsuserii] = ACTIONS(5225), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), + [anon_sym_BSLASHglsuserv] = ACTIONS(5225), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), + [anon_sym_BSLASHglsuservi] = ACTIONS(5225), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), + [anon_sym_BSLASHnewacronym] = ACTIONS(5225), + [anon_sym_BSLASHacrshort] = ACTIONS(5225), + [anon_sym_BSLASHAcrshort] = ACTIONS(5225), + [anon_sym_BSLASHACRshort] = ACTIONS(5225), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), + [anon_sym_BSLASHacrlong] = ACTIONS(5225), + [anon_sym_BSLASHAcrlong] = ACTIONS(5225), + [anon_sym_BSLASHACRlong] = ACTIONS(5225), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), + [anon_sym_BSLASHacrfull] = ACTIONS(5225), + [anon_sym_BSLASHAcrfull] = ACTIONS(5225), + [anon_sym_BSLASHACRfull] = ACTIONS(5225), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), + [anon_sym_BSLASHacs] = ACTIONS(5225), + [anon_sym_BSLASHAcs] = ACTIONS(5225), + [anon_sym_BSLASHacsp] = ACTIONS(5225), + [anon_sym_BSLASHAcsp] = ACTIONS(5225), + [anon_sym_BSLASHacl] = ACTIONS(5225), + [anon_sym_BSLASHAcl] = ACTIONS(5225), + [anon_sym_BSLASHaclp] = ACTIONS(5225), + [anon_sym_BSLASHAclp] = ACTIONS(5225), + [anon_sym_BSLASHacf] = ACTIONS(5225), + [anon_sym_BSLASHAcf] = ACTIONS(5225), + [anon_sym_BSLASHacfp] = ACTIONS(5225), + [anon_sym_BSLASHAcfp] = ACTIONS(5225), + [anon_sym_BSLASHac] = ACTIONS(5225), + [anon_sym_BSLASHAc] = ACTIONS(5225), + [anon_sym_BSLASHacp] = ACTIONS(5225), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), + [anon_sym_BSLASHcolor] = ACTIONS(5225), + [anon_sym_BSLASHcolorbox] = ACTIONS(5225), + [anon_sym_BSLASHtextcolor] = ACTIONS(5225), + [anon_sym_BSLASHpagecolor] = ACTIONS(5225), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), + [anon_sym_BSLASHtext] = ACTIONS(5225), + [anon_sym_BSLASHintertext] = ACTIONS(5225), + [anon_sym_shortintertext] = ACTIONS(5225), + }, + [1058] = { + [sym_command_name] = ACTIONS(5217), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5217), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_RPAREN] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_RBRACK] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_BSLASHpart] = ACTIONS(5217), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddpart] = ACTIONS(5217), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), + [anon_sym_BSLASHchapter] = ACTIONS(5217), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddchap] = ACTIONS(5217), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsection] = ACTIONS(5217), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddsec] = ACTIONS(5217), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubsection] = ACTIONS(5217), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHparagraph] = ACTIONS(5217), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), + [anon_sym_BSLASHitem] = ACTIONS(5217), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(5215), + [sym_word] = ACTIONS(5217), + [sym_placeholder] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5217), + [anon_sym_DASH] = ACTIONS(5217), + [anon_sym_STAR] = ACTIONS(5217), + [anon_sym_SLASH] = ACTIONS(5217), + [anon_sym_CARET] = ACTIONS(5217), + [anon_sym__] = ACTIONS(5217), + [anon_sym_LT] = ACTIONS(5217), + [anon_sym_GT] = ACTIONS(5217), + [anon_sym_BANG] = ACTIONS(5217), + [anon_sym_PIPE] = ACTIONS(5217), + [anon_sym_COLON] = ACTIONS(5217), + [anon_sym_SQUOTE] = ACTIONS(5217), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), + [anon_sym_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5215), + [anon_sym_BSLASHbegin] = ACTIONS(5217), + [anon_sym_BSLASHusepackage] = ACTIONS(5217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), + [anon_sym_BSLASHinclude] = ACTIONS(5217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), + [anon_sym_BSLASHinput] = ACTIONS(5217), + [anon_sym_BSLASHsubfile] = ACTIONS(5217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), + [anon_sym_BSLASHbibliography] = ACTIONS(5217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), + [anon_sym_BSLASHincludesvg] = ACTIONS(5217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), + [anon_sym_BSLASHimport] = ACTIONS(5217), + [anon_sym_BSLASHsubimport] = ACTIONS(5217), + [anon_sym_BSLASHinputfrom] = ACTIONS(5217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), + [anon_sym_BSLASHincludefrom] = ACTIONS(5217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), + [anon_sym_BSLASHcaption] = ACTIONS(5217), + [anon_sym_BSLASHcite] = ACTIONS(5217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCite] = ACTIONS(5217), + [anon_sym_BSLASHnocite] = ACTIONS(5217), + [anon_sym_BSLASHcitet] = ACTIONS(5217), + [anon_sym_BSLASHcitep] = ACTIONS(5217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteauthor] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitetitle] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteyear] = ACTIONS(5217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitedate] = ACTIONS(5217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteurl] = ACTIONS(5217), + [anon_sym_BSLASHfullcite] = ACTIONS(5217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), + [anon_sym_BSLASHcitealt] = ACTIONS(5217), + [anon_sym_BSLASHcitealp] = ACTIONS(5217), + [anon_sym_BSLASHcitetext] = ACTIONS(5217), + [anon_sym_BSLASHparencite] = ACTIONS(5217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHParencite] = ACTIONS(5217), + [anon_sym_BSLASHfootcite] = ACTIONS(5217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), + [anon_sym_BSLASHtextcite] = ACTIONS(5217), + [anon_sym_BSLASHTextcite] = ACTIONS(5217), + [anon_sym_BSLASHsmartcite] = ACTIONS(5217), + [anon_sym_BSLASHSmartcite] = ACTIONS(5217), + [anon_sym_BSLASHsupercite] = ACTIONS(5217), + [anon_sym_BSLASHautocite] = ACTIONS(5217), + [anon_sym_BSLASHAutocite] = ACTIONS(5217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHvolcite] = ACTIONS(5217), + [anon_sym_BSLASHVolcite] = ACTIONS(5217), + [anon_sym_BSLASHpvolcite] = ACTIONS(5217), + [anon_sym_BSLASHPvolcite] = ACTIONS(5217), + [anon_sym_BSLASHfvolcite] = ACTIONS(5217), + [anon_sym_BSLASHftvolcite] = ACTIONS(5217), + [anon_sym_BSLASHsvolcite] = ACTIONS(5217), + [anon_sym_BSLASHSvolcite] = ACTIONS(5217), + [anon_sym_BSLASHtvolcite] = ACTIONS(5217), + [anon_sym_BSLASHTvolcite] = ACTIONS(5217), + [anon_sym_BSLASHavolcite] = ACTIONS(5217), + [anon_sym_BSLASHAvolcite] = ACTIONS(5217), + [anon_sym_BSLASHnotecite] = ACTIONS(5217), + [anon_sym_BSLASHNotecite] = ACTIONS(5217), + [anon_sym_BSLASHpnotecite] = ACTIONS(5217), + [anon_sym_BSLASHPnotecite] = ACTIONS(5217), + [anon_sym_BSLASHfnotecite] = ACTIONS(5217), + [anon_sym_BSLASHlabel] = ACTIONS(5217), + [anon_sym_BSLASHref] = ACTIONS(5217), + [anon_sym_BSLASHeqref] = ACTIONS(5217), + [anon_sym_BSLASHvref] = ACTIONS(5217), + [anon_sym_BSLASHVref] = ACTIONS(5217), + [anon_sym_BSLASHautoref] = ACTIONS(5217), + [anon_sym_BSLASHpageref] = ACTIONS(5217), + [anon_sym_BSLASHcref] = ACTIONS(5217), + [anon_sym_BSLASHCref] = ACTIONS(5217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), + [anon_sym_BSLASHnamecref] = ACTIONS(5217), + [anon_sym_BSLASHnameCref] = ACTIONS(5217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), + [anon_sym_BSLASHlabelcref] = ACTIONS(5217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), + [anon_sym_BSLASHcrefrange] = ACTIONS(5217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCrefrange] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), + [anon_sym_BSLASHnewlabel] = ACTIONS(5217), + [anon_sym_BSLASHnewcommand] = ACTIONS(5217), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), + [anon_sym_BSLASHdef] = ACTIONS(5217), + [anon_sym_BSLASHlet] = ACTIONS(5217), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), + [anon_sym_BSLASHgls] = ACTIONS(5217), + [anon_sym_BSLASHGls] = ACTIONS(5217), + [anon_sym_BSLASHGLS] = ACTIONS(5217), + [anon_sym_BSLASHglspl] = ACTIONS(5217), + [anon_sym_BSLASHGlspl] = ACTIONS(5217), + [anon_sym_BSLASHGLSpl] = ACTIONS(5217), + [anon_sym_BSLASHglsdisp] = ACTIONS(5217), + [anon_sym_BSLASHglslink] = ACTIONS(5217), + [anon_sym_BSLASHglstext] = ACTIONS(5217), + [anon_sym_BSLASHGlstext] = ACTIONS(5217), + [anon_sym_BSLASHGLStext] = ACTIONS(5217), + [anon_sym_BSLASHglsfirst] = ACTIONS(5217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), + [anon_sym_BSLASHglsplural] = ACTIONS(5217), + [anon_sym_BSLASHGlsplural] = ACTIONS(5217), + [anon_sym_BSLASHGLSplural] = ACTIONS(5217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHglsname] = ACTIONS(5217), + [anon_sym_BSLASHGlsname] = ACTIONS(5217), + [anon_sym_BSLASHGLSname] = ACTIONS(5217), + [anon_sym_BSLASHglssymbol] = ACTIONS(5217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), + [anon_sym_BSLASHglsdesc] = ACTIONS(5217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), + [anon_sym_BSLASHglsuseri] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), + [anon_sym_BSLASHglsuserii] = ACTIONS(5217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), + [anon_sym_BSLASHglsuserv] = ACTIONS(5217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), + [anon_sym_BSLASHglsuservi] = ACTIONS(5217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), + [anon_sym_BSLASHnewacronym] = ACTIONS(5217), + [anon_sym_BSLASHacrshort] = ACTIONS(5217), + [anon_sym_BSLASHAcrshort] = ACTIONS(5217), + [anon_sym_BSLASHACRshort] = ACTIONS(5217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), + [anon_sym_BSLASHacrlong] = ACTIONS(5217), + [anon_sym_BSLASHAcrlong] = ACTIONS(5217), + [anon_sym_BSLASHACRlong] = ACTIONS(5217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), + [anon_sym_BSLASHacrfull] = ACTIONS(5217), + [anon_sym_BSLASHAcrfull] = ACTIONS(5217), + [anon_sym_BSLASHACRfull] = ACTIONS(5217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), + [anon_sym_BSLASHacs] = ACTIONS(5217), + [anon_sym_BSLASHAcs] = ACTIONS(5217), + [anon_sym_BSLASHacsp] = ACTIONS(5217), + [anon_sym_BSLASHAcsp] = ACTIONS(5217), + [anon_sym_BSLASHacl] = ACTIONS(5217), + [anon_sym_BSLASHAcl] = ACTIONS(5217), + [anon_sym_BSLASHaclp] = ACTIONS(5217), + [anon_sym_BSLASHAclp] = ACTIONS(5217), + [anon_sym_BSLASHacf] = ACTIONS(5217), + [anon_sym_BSLASHAcf] = ACTIONS(5217), + [anon_sym_BSLASHacfp] = ACTIONS(5217), + [anon_sym_BSLASHAcfp] = ACTIONS(5217), + [anon_sym_BSLASHac] = ACTIONS(5217), + [anon_sym_BSLASHAc] = ACTIONS(5217), + [anon_sym_BSLASHacp] = ACTIONS(5217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), + [anon_sym_BSLASHcolor] = ACTIONS(5217), + [anon_sym_BSLASHcolorbox] = ACTIONS(5217), + [anon_sym_BSLASHtextcolor] = ACTIONS(5217), + [anon_sym_BSLASHpagecolor] = ACTIONS(5217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [anon_sym_BSLASHtext] = ACTIONS(5217), + [anon_sym_BSLASHintertext] = ACTIONS(5217), + [anon_sym_shortintertext] = ACTIONS(5217), }, - [1166] = { - [sym_command_name] = ACTIONS(4971), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_RBRACK] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_BSLASHpart] = ACTIONS(4971), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddpart] = ACTIONS(4971), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4969), - [anon_sym_BSLASHchapter] = ACTIONS(4971), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddchap] = ACTIONS(4971), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsection] = ACTIONS(4971), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHaddsec] = ACTIONS(4971), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubsection] = ACTIONS(4971), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4971), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4969), - [anon_sym_BSLASHparagraph] = ACTIONS(4971), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4969), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4971), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4969), - [anon_sym_BSLASHitem] = ACTIONS(4971), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4969), - [anon_sym_LBRACE] = ACTIONS(4969), - [sym_word] = ACTIONS(4971), - [sym_placeholder] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_CARET] = ACTIONS(4971), - [anon_sym__] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4969), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4969), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4969), - [anon_sym_BSLASHbegin] = ACTIONS(4971), - [anon_sym_BSLASHusepackage] = ACTIONS(4971), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4971), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4971), - [anon_sym_BSLASHinclude] = ACTIONS(4971), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4971), - [anon_sym_BSLASHinput] = ACTIONS(4971), - [anon_sym_BSLASHsubfile] = ACTIONS(4971), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4971), - [anon_sym_BSLASHbibliography] = ACTIONS(4971), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4971), - [anon_sym_BSLASHincludesvg] = ACTIONS(4971), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4971), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4971), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4971), - [anon_sym_BSLASHimport] = ACTIONS(4971), - [anon_sym_BSLASHsubimport] = ACTIONS(4971), - [anon_sym_BSLASHinputfrom] = ACTIONS(4971), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4971), - [anon_sym_BSLASHincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHcaption] = ACTIONS(4971), - [anon_sym_BSLASHcite] = ACTIONS(4971), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCite] = ACTIONS(4971), - [anon_sym_BSLASHnocite] = ACTIONS(4971), - [anon_sym_BSLASHcitet] = ACTIONS(4971), - [anon_sym_BSLASHcitep] = ACTIONS(4971), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteyear] = ACTIONS(4971), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitedate] = ACTIONS(4971), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteurl] = ACTIONS(4971), - [anon_sym_BSLASHfullcite] = ACTIONS(4971), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4971), - [anon_sym_BSLASHcitealt] = ACTIONS(4971), - [anon_sym_BSLASHcitealp] = ACTIONS(4971), - [anon_sym_BSLASHcitetext] = ACTIONS(4971), - [anon_sym_BSLASHparencite] = ACTIONS(4971), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHParencite] = ACTIONS(4971), - [anon_sym_BSLASHfootcite] = ACTIONS(4971), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4971), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4971), - [anon_sym_BSLASHtextcite] = ACTIONS(4971), - [anon_sym_BSLASHTextcite] = ACTIONS(4971), - [anon_sym_BSLASHsmartcite] = ACTIONS(4971), - [anon_sym_BSLASHSmartcite] = ACTIONS(4971), - [anon_sym_BSLASHsupercite] = ACTIONS(4971), - [anon_sym_BSLASHautocite] = ACTIONS(4971), - [anon_sym_BSLASHAutocite] = ACTIONS(4971), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHvolcite] = ACTIONS(4971), - [anon_sym_BSLASHVolcite] = ACTIONS(4971), - [anon_sym_BSLASHpvolcite] = ACTIONS(4971), - [anon_sym_BSLASHPvolcite] = ACTIONS(4971), - [anon_sym_BSLASHfvolcite] = ACTIONS(4971), - [anon_sym_BSLASHftvolcite] = ACTIONS(4971), - [anon_sym_BSLASHsvolcite] = ACTIONS(4971), - [anon_sym_BSLASHSvolcite] = ACTIONS(4971), - [anon_sym_BSLASHtvolcite] = ACTIONS(4971), - [anon_sym_BSLASHTvolcite] = ACTIONS(4971), - [anon_sym_BSLASHavolcite] = ACTIONS(4971), - [anon_sym_BSLASHAvolcite] = ACTIONS(4971), - [anon_sym_BSLASHnotecite] = ACTIONS(4971), - [anon_sym_BSLASHNotecite] = ACTIONS(4971), - [anon_sym_BSLASHpnotecite] = ACTIONS(4971), - [anon_sym_BSLASHPnotecite] = ACTIONS(4971), - [anon_sym_BSLASHfnotecite] = ACTIONS(4971), - [anon_sym_BSLASHlabel] = ACTIONS(4971), - [anon_sym_BSLASHref] = ACTIONS(4971), - [anon_sym_BSLASHeqref] = ACTIONS(4971), - [anon_sym_BSLASHvref] = ACTIONS(4971), - [anon_sym_BSLASHVref] = ACTIONS(4971), - [anon_sym_BSLASHautoref] = ACTIONS(4971), - [anon_sym_BSLASHpageref] = ACTIONS(4971), - [anon_sym_BSLASHcref] = ACTIONS(4971), - [anon_sym_BSLASHCref] = ACTIONS(4971), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnameCref] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHlabelcref] = ACTIONS(4971), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnewlabel] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4969), - [anon_sym_BSLASHdef] = ACTIONS(4971), - [anon_sym_BSLASHlet] = ACTIONS(4971), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4971), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4971), - [anon_sym_BSLASHgls] = ACTIONS(4971), - [anon_sym_BSLASHGls] = ACTIONS(4971), - [anon_sym_BSLASHGLS] = ACTIONS(4971), - [anon_sym_BSLASHglspl] = ACTIONS(4971), - [anon_sym_BSLASHGlspl] = ACTIONS(4971), - [anon_sym_BSLASHGLSpl] = ACTIONS(4971), - [anon_sym_BSLASHglsdisp] = ACTIONS(4971), - [anon_sym_BSLASHglslink] = ACTIONS(4971), - [anon_sym_BSLASHglstext] = ACTIONS(4971), - [anon_sym_BSLASHGlstext] = ACTIONS(4971), - [anon_sym_BSLASHGLStext] = ACTIONS(4971), - [anon_sym_BSLASHglsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4971), - [anon_sym_BSLASHglsplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSplural] = ACTIONS(4971), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHglsname] = ACTIONS(4971), - [anon_sym_BSLASHGlsname] = ACTIONS(4971), - [anon_sym_BSLASHGLSname] = ACTIONS(4971), - [anon_sym_BSLASHglssymbol] = ACTIONS(4971), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4971), - [anon_sym_BSLASHglsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4971), - [anon_sym_BSLASHglsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4971), - [anon_sym_BSLASHglsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4971), - [anon_sym_BSLASHglsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4971), - [anon_sym_BSLASHglsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4971), - [anon_sym_BSLASHnewacronym] = ACTIONS(4971), - [anon_sym_BSLASHacrshort] = ACTIONS(4971), - [anon_sym_BSLASHAcrshort] = ACTIONS(4971), - [anon_sym_BSLASHACRshort] = ACTIONS(4971), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4971), - [anon_sym_BSLASHacrlong] = ACTIONS(4971), - [anon_sym_BSLASHAcrlong] = ACTIONS(4971), - [anon_sym_BSLASHACRlong] = ACTIONS(4971), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4971), - [anon_sym_BSLASHacrfull] = ACTIONS(4971), - [anon_sym_BSLASHAcrfull] = ACTIONS(4971), - [anon_sym_BSLASHACRfull] = ACTIONS(4971), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4971), - [anon_sym_BSLASHacs] = ACTIONS(4971), - [anon_sym_BSLASHAcs] = ACTIONS(4971), - [anon_sym_BSLASHacsp] = ACTIONS(4971), - [anon_sym_BSLASHAcsp] = ACTIONS(4971), - [anon_sym_BSLASHacl] = ACTIONS(4971), - [anon_sym_BSLASHAcl] = ACTIONS(4971), - [anon_sym_BSLASHaclp] = ACTIONS(4971), - [anon_sym_BSLASHAclp] = ACTIONS(4971), - [anon_sym_BSLASHacf] = ACTIONS(4971), - [anon_sym_BSLASHAcf] = ACTIONS(4971), - [anon_sym_BSLASHacfp] = ACTIONS(4971), - [anon_sym_BSLASHAcfp] = ACTIONS(4971), - [anon_sym_BSLASHac] = ACTIONS(4971), - [anon_sym_BSLASHAc] = ACTIONS(4971), - [anon_sym_BSLASHacp] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4971), - [anon_sym_BSLASHcolor] = ACTIONS(4971), - [anon_sym_BSLASHcolorbox] = ACTIONS(4971), - [anon_sym_BSLASHtextcolor] = ACTIONS(4971), - [anon_sym_BSLASHpagecolor] = ACTIONS(4971), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4971), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4971), + [1059] = { + [sym_command_name] = ACTIONS(5213), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_RPAREN] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_RBRACK] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_EQ] = ACTIONS(5211), + [anon_sym_BSLASHpart] = ACTIONS(5213), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddpart] = ACTIONS(5213), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5211), + [anon_sym_BSLASHchapter] = ACTIONS(5213), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddchap] = ACTIONS(5213), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsection] = ACTIONS(5213), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddsec] = ACTIONS(5213), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubsection] = ACTIONS(5213), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5213), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHparagraph] = ACTIONS(5213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5213), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5211), + [anon_sym_BSLASHitem] = ACTIONS(5213), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(5211), + [sym_word] = ACTIONS(5213), + [sym_placeholder] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_CARET] = ACTIONS(5213), + [anon_sym__] = ACTIONS(5213), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_SQUOTE] = ACTIONS(5213), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), + [anon_sym_DOLLAR] = ACTIONS(5213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5211), + [anon_sym_BSLASHbegin] = ACTIONS(5213), + [anon_sym_BSLASHusepackage] = ACTIONS(5213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), + [anon_sym_BSLASHinclude] = ACTIONS(5213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), + [anon_sym_BSLASHinput] = ACTIONS(5213), + [anon_sym_BSLASHsubfile] = ACTIONS(5213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), + [anon_sym_BSLASHbibliography] = ACTIONS(5213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), + [anon_sym_BSLASHincludesvg] = ACTIONS(5213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), + [anon_sym_BSLASHimport] = ACTIONS(5213), + [anon_sym_BSLASHsubimport] = ACTIONS(5213), + [anon_sym_BSLASHinputfrom] = ACTIONS(5213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), + [anon_sym_BSLASHincludefrom] = ACTIONS(5213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), + [anon_sym_BSLASHcaption] = ACTIONS(5213), + [anon_sym_BSLASHcite] = ACTIONS(5213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCite] = ACTIONS(5213), + [anon_sym_BSLASHnocite] = ACTIONS(5213), + [anon_sym_BSLASHcitet] = ACTIONS(5213), + [anon_sym_BSLASHcitep] = ACTIONS(5213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteauthor] = ACTIONS(5213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitetitle] = ACTIONS(5213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteyear] = ACTIONS(5213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitedate] = ACTIONS(5213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteurl] = ACTIONS(5213), + [anon_sym_BSLASHfullcite] = ACTIONS(5213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), + [anon_sym_BSLASHcitealt] = ACTIONS(5213), + [anon_sym_BSLASHcitealp] = ACTIONS(5213), + [anon_sym_BSLASHcitetext] = ACTIONS(5213), + [anon_sym_BSLASHparencite] = ACTIONS(5213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHParencite] = ACTIONS(5213), + [anon_sym_BSLASHfootcite] = ACTIONS(5213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), + [anon_sym_BSLASHtextcite] = ACTIONS(5213), + [anon_sym_BSLASHTextcite] = ACTIONS(5213), + [anon_sym_BSLASHsmartcite] = ACTIONS(5213), + [anon_sym_BSLASHSmartcite] = ACTIONS(5213), + [anon_sym_BSLASHsupercite] = ACTIONS(5213), + [anon_sym_BSLASHautocite] = ACTIONS(5213), + [anon_sym_BSLASHAutocite] = ACTIONS(5213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHvolcite] = ACTIONS(5213), + [anon_sym_BSLASHVolcite] = ACTIONS(5213), + [anon_sym_BSLASHpvolcite] = ACTIONS(5213), + [anon_sym_BSLASHPvolcite] = ACTIONS(5213), + [anon_sym_BSLASHfvolcite] = ACTIONS(5213), + [anon_sym_BSLASHftvolcite] = ACTIONS(5213), + [anon_sym_BSLASHsvolcite] = ACTIONS(5213), + [anon_sym_BSLASHSvolcite] = ACTIONS(5213), + [anon_sym_BSLASHtvolcite] = ACTIONS(5213), + [anon_sym_BSLASHTvolcite] = ACTIONS(5213), + [anon_sym_BSLASHavolcite] = ACTIONS(5213), + [anon_sym_BSLASHAvolcite] = ACTIONS(5213), + [anon_sym_BSLASHnotecite] = ACTIONS(5213), + [anon_sym_BSLASHNotecite] = ACTIONS(5213), + [anon_sym_BSLASHpnotecite] = ACTIONS(5213), + [anon_sym_BSLASHPnotecite] = ACTIONS(5213), + [anon_sym_BSLASHfnotecite] = ACTIONS(5213), + [anon_sym_BSLASHlabel] = ACTIONS(5213), + [anon_sym_BSLASHref] = ACTIONS(5213), + [anon_sym_BSLASHeqref] = ACTIONS(5213), + [anon_sym_BSLASHvref] = ACTIONS(5213), + [anon_sym_BSLASHVref] = ACTIONS(5213), + [anon_sym_BSLASHautoref] = ACTIONS(5213), + [anon_sym_BSLASHpageref] = ACTIONS(5213), + [anon_sym_BSLASHcref] = ACTIONS(5213), + [anon_sym_BSLASHCref] = ACTIONS(5213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), + [anon_sym_BSLASHnamecref] = ACTIONS(5213), + [anon_sym_BSLASHnameCref] = ACTIONS(5213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), + [anon_sym_BSLASHlabelcref] = ACTIONS(5213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), + [anon_sym_BSLASHcrefrange] = ACTIONS(5213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCrefrange] = ACTIONS(5213), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), + [anon_sym_BSLASHnewlabel] = ACTIONS(5213), + [anon_sym_BSLASHnewcommand] = ACTIONS(5213), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), + [anon_sym_BSLASHdef] = ACTIONS(5213), + [anon_sym_BSLASHlet] = ACTIONS(5213), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), + [anon_sym_BSLASHgls] = ACTIONS(5213), + [anon_sym_BSLASHGls] = ACTIONS(5213), + [anon_sym_BSLASHGLS] = ACTIONS(5213), + [anon_sym_BSLASHglspl] = ACTIONS(5213), + [anon_sym_BSLASHGlspl] = ACTIONS(5213), + [anon_sym_BSLASHGLSpl] = ACTIONS(5213), + [anon_sym_BSLASHglsdisp] = ACTIONS(5213), + [anon_sym_BSLASHglslink] = ACTIONS(5213), + [anon_sym_BSLASHglstext] = ACTIONS(5213), + [anon_sym_BSLASHGlstext] = ACTIONS(5213), + [anon_sym_BSLASHGLStext] = ACTIONS(5213), + [anon_sym_BSLASHglsfirst] = ACTIONS(5213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), + [anon_sym_BSLASHglsplural] = ACTIONS(5213), + [anon_sym_BSLASHGlsplural] = ACTIONS(5213), + [anon_sym_BSLASHGLSplural] = ACTIONS(5213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHglsname] = ACTIONS(5213), + [anon_sym_BSLASHGlsname] = ACTIONS(5213), + [anon_sym_BSLASHGLSname] = ACTIONS(5213), + [anon_sym_BSLASHglssymbol] = ACTIONS(5213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), + [anon_sym_BSLASHglsdesc] = ACTIONS(5213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), + [anon_sym_BSLASHglsuseri] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), + [anon_sym_BSLASHglsuserii] = ACTIONS(5213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), + [anon_sym_BSLASHglsuserv] = ACTIONS(5213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), + [anon_sym_BSLASHglsuservi] = ACTIONS(5213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), + [anon_sym_BSLASHnewacronym] = ACTIONS(5213), + [anon_sym_BSLASHacrshort] = ACTIONS(5213), + [anon_sym_BSLASHAcrshort] = ACTIONS(5213), + [anon_sym_BSLASHACRshort] = ACTIONS(5213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), + [anon_sym_BSLASHacrlong] = ACTIONS(5213), + [anon_sym_BSLASHAcrlong] = ACTIONS(5213), + [anon_sym_BSLASHACRlong] = ACTIONS(5213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), + [anon_sym_BSLASHacrfull] = ACTIONS(5213), + [anon_sym_BSLASHAcrfull] = ACTIONS(5213), + [anon_sym_BSLASHACRfull] = ACTIONS(5213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), + [anon_sym_BSLASHacs] = ACTIONS(5213), + [anon_sym_BSLASHAcs] = ACTIONS(5213), + [anon_sym_BSLASHacsp] = ACTIONS(5213), + [anon_sym_BSLASHAcsp] = ACTIONS(5213), + [anon_sym_BSLASHacl] = ACTIONS(5213), + [anon_sym_BSLASHAcl] = ACTIONS(5213), + [anon_sym_BSLASHaclp] = ACTIONS(5213), + [anon_sym_BSLASHAclp] = ACTIONS(5213), + [anon_sym_BSLASHacf] = ACTIONS(5213), + [anon_sym_BSLASHAcf] = ACTIONS(5213), + [anon_sym_BSLASHacfp] = ACTIONS(5213), + [anon_sym_BSLASHAcfp] = ACTIONS(5213), + [anon_sym_BSLASHac] = ACTIONS(5213), + [anon_sym_BSLASHAc] = ACTIONS(5213), + [anon_sym_BSLASHacp] = ACTIONS(5213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), + [anon_sym_BSLASHtext] = ACTIONS(5213), + [anon_sym_BSLASHintertext] = ACTIONS(5213), + [anon_sym_shortintertext] = ACTIONS(5213), }, - [1167] = { - [sym_command_name] = ACTIONS(4975), + [1060] = { + [sym_command_name] = ACTIONS(5209), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_RPAREN] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_RBRACK] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4973), - [anon_sym_BSLASHpart] = ACTIONS(4975), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddpart] = ACTIONS(4975), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4973), - [anon_sym_BSLASHchapter] = ACTIONS(4975), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddchap] = ACTIONS(4975), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsection] = ACTIONS(4975), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHaddsec] = ACTIONS(4975), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubsection] = ACTIONS(4975), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4975), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4973), - [anon_sym_BSLASHparagraph] = ACTIONS(4975), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4973), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4975), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4973), - [anon_sym_BSLASHitem] = ACTIONS(4975), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4973), - [anon_sym_LBRACE] = ACTIONS(4973), - [sym_word] = ACTIONS(4975), - [sym_placeholder] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym__] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4973), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4973), - [anon_sym_BSLASHbegin] = ACTIONS(4975), - [anon_sym_BSLASHusepackage] = ACTIONS(4975), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4975), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4975), - [anon_sym_BSLASHinclude] = ACTIONS(4975), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4975), - [anon_sym_BSLASHinput] = ACTIONS(4975), - [anon_sym_BSLASHsubfile] = ACTIONS(4975), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4975), - [anon_sym_BSLASHbibliography] = ACTIONS(4975), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4975), - [anon_sym_BSLASHincludesvg] = ACTIONS(4975), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4975), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4975), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4975), - [anon_sym_BSLASHimport] = ACTIONS(4975), - [anon_sym_BSLASHsubimport] = ACTIONS(4975), - [anon_sym_BSLASHinputfrom] = ACTIONS(4975), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4975), - [anon_sym_BSLASHincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHcaption] = ACTIONS(4975), - [anon_sym_BSLASHcite] = ACTIONS(4975), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCite] = ACTIONS(4975), - [anon_sym_BSLASHnocite] = ACTIONS(4975), - [anon_sym_BSLASHcitet] = ACTIONS(4975), - [anon_sym_BSLASHcitep] = ACTIONS(4975), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor] = ACTIONS(4975), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4975), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle] = ACTIONS(4975), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteyear] = ACTIONS(4975), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitedate] = ACTIONS(4975), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteurl] = ACTIONS(4975), - [anon_sym_BSLASHfullcite] = ACTIONS(4975), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4975), - [anon_sym_BSLASHcitealt] = ACTIONS(4975), - [anon_sym_BSLASHcitealp] = ACTIONS(4975), - [anon_sym_BSLASHcitetext] = ACTIONS(4975), - [anon_sym_BSLASHparencite] = ACTIONS(4975), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHParencite] = ACTIONS(4975), - [anon_sym_BSLASHfootcite] = ACTIONS(4975), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4975), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4975), - [anon_sym_BSLASHtextcite] = ACTIONS(4975), - [anon_sym_BSLASHTextcite] = ACTIONS(4975), - [anon_sym_BSLASHsmartcite] = ACTIONS(4975), - [anon_sym_BSLASHSmartcite] = ACTIONS(4975), - [anon_sym_BSLASHsupercite] = ACTIONS(4975), - [anon_sym_BSLASHautocite] = ACTIONS(4975), - [anon_sym_BSLASHAutocite] = ACTIONS(4975), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHvolcite] = ACTIONS(4975), - [anon_sym_BSLASHVolcite] = ACTIONS(4975), - [anon_sym_BSLASHpvolcite] = ACTIONS(4975), - [anon_sym_BSLASHPvolcite] = ACTIONS(4975), - [anon_sym_BSLASHfvolcite] = ACTIONS(4975), - [anon_sym_BSLASHftvolcite] = ACTIONS(4975), - [anon_sym_BSLASHsvolcite] = ACTIONS(4975), - [anon_sym_BSLASHSvolcite] = ACTIONS(4975), - [anon_sym_BSLASHtvolcite] = ACTIONS(4975), - [anon_sym_BSLASHTvolcite] = ACTIONS(4975), - [anon_sym_BSLASHavolcite] = ACTIONS(4975), - [anon_sym_BSLASHAvolcite] = ACTIONS(4975), - [anon_sym_BSLASHnotecite] = ACTIONS(4975), - [anon_sym_BSLASHNotecite] = ACTIONS(4975), - [anon_sym_BSLASHpnotecite] = ACTIONS(4975), - [anon_sym_BSLASHPnotecite] = ACTIONS(4975), - [anon_sym_BSLASHfnotecite] = ACTIONS(4975), - [anon_sym_BSLASHlabel] = ACTIONS(4975), - [anon_sym_BSLASHref] = ACTIONS(4975), - [anon_sym_BSLASHeqref] = ACTIONS(4975), - [anon_sym_BSLASHvref] = ACTIONS(4975), - [anon_sym_BSLASHVref] = ACTIONS(4975), - [anon_sym_BSLASHautoref] = ACTIONS(4975), - [anon_sym_BSLASHpageref] = ACTIONS(4975), - [anon_sym_BSLASHcref] = ACTIONS(4975), - [anon_sym_BSLASHCref] = ACTIONS(4975), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnameCref] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHlabelcref] = ACTIONS(4975), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange] = ACTIONS(4975), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnewlabel] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4975), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4975), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4975), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4973), - [anon_sym_BSLASHdef] = ACTIONS(4975), - [anon_sym_BSLASHlet] = ACTIONS(4975), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4975), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4975), - [anon_sym_BSLASHgls] = ACTIONS(4975), - [anon_sym_BSLASHGls] = ACTIONS(4975), - [anon_sym_BSLASHGLS] = ACTIONS(4975), - [anon_sym_BSLASHglspl] = ACTIONS(4975), - [anon_sym_BSLASHGlspl] = ACTIONS(4975), - [anon_sym_BSLASHGLSpl] = ACTIONS(4975), - [anon_sym_BSLASHglsdisp] = ACTIONS(4975), - [anon_sym_BSLASHglslink] = ACTIONS(4975), - [anon_sym_BSLASHglstext] = ACTIONS(4975), - [anon_sym_BSLASHGlstext] = ACTIONS(4975), - [anon_sym_BSLASHGLStext] = ACTIONS(4975), - [anon_sym_BSLASHglsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4975), - [anon_sym_BSLASHglsplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSplural] = ACTIONS(4975), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHglsname] = ACTIONS(4975), - [anon_sym_BSLASHGlsname] = ACTIONS(4975), - [anon_sym_BSLASHGLSname] = ACTIONS(4975), - [anon_sym_BSLASHglssymbol] = ACTIONS(4975), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4975), - [anon_sym_BSLASHglsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4975), - [anon_sym_BSLASHglsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4975), - [anon_sym_BSLASHglsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4975), - [anon_sym_BSLASHglsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4975), - [anon_sym_BSLASHglsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4975), - [anon_sym_BSLASHnewacronym] = ACTIONS(4975), - [anon_sym_BSLASHacrshort] = ACTIONS(4975), - [anon_sym_BSLASHAcrshort] = ACTIONS(4975), - [anon_sym_BSLASHACRshort] = ACTIONS(4975), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4975), - [anon_sym_BSLASHacrlong] = ACTIONS(4975), - [anon_sym_BSLASHAcrlong] = ACTIONS(4975), - [anon_sym_BSLASHACRlong] = ACTIONS(4975), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4975), - [anon_sym_BSLASHacrfull] = ACTIONS(4975), - [anon_sym_BSLASHAcrfull] = ACTIONS(4975), - [anon_sym_BSLASHACRfull] = ACTIONS(4975), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4975), - [anon_sym_BSLASHacs] = ACTIONS(4975), - [anon_sym_BSLASHAcs] = ACTIONS(4975), - [anon_sym_BSLASHacsp] = ACTIONS(4975), - [anon_sym_BSLASHAcsp] = ACTIONS(4975), - [anon_sym_BSLASHacl] = ACTIONS(4975), - [anon_sym_BSLASHAcl] = ACTIONS(4975), - [anon_sym_BSLASHaclp] = ACTIONS(4975), - [anon_sym_BSLASHAclp] = ACTIONS(4975), - [anon_sym_BSLASHacf] = ACTIONS(4975), - [anon_sym_BSLASHAcf] = ACTIONS(4975), - [anon_sym_BSLASHacfp] = ACTIONS(4975), - [anon_sym_BSLASHAcfp] = ACTIONS(4975), - [anon_sym_BSLASHac] = ACTIONS(4975), - [anon_sym_BSLASHAc] = ACTIONS(4975), - [anon_sym_BSLASHacp] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4975), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4975), - [anon_sym_BSLASHcolor] = ACTIONS(4975), - [anon_sym_BSLASHcolorbox] = ACTIONS(4975), - [anon_sym_BSLASHtextcolor] = ACTIONS(4975), - [anon_sym_BSLASHpagecolor] = ACTIONS(4975), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4975), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4975), + [anon_sym_BSLASHiffalse] = ACTIONS(5209), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_RPAREN] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_RBRACK] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_BSLASHpart] = ACTIONS(5209), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddpart] = ACTIONS(5209), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), + [anon_sym_BSLASHchapter] = ACTIONS(5209), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddchap] = ACTIONS(5209), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsection] = ACTIONS(5209), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddsec] = ACTIONS(5209), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubsection] = ACTIONS(5209), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHparagraph] = ACTIONS(5209), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), + [anon_sym_BSLASHitem] = ACTIONS(5209), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), + [anon_sym_LBRACE] = ACTIONS(5207), + [sym_word] = ACTIONS(5209), + [sym_placeholder] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_CARET] = ACTIONS(5209), + [anon_sym__] = ACTIONS(5209), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_PIPE] = ACTIONS(5209), + [anon_sym_COLON] = ACTIONS(5209), + [anon_sym_SQUOTE] = ACTIONS(5209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), + [anon_sym_DOLLAR] = ACTIONS(5209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5207), + [anon_sym_BSLASHbegin] = ACTIONS(5209), + [anon_sym_BSLASHusepackage] = ACTIONS(5209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), + [anon_sym_BSLASHinclude] = ACTIONS(5209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), + [anon_sym_BSLASHinput] = ACTIONS(5209), + [anon_sym_BSLASHsubfile] = ACTIONS(5209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), + [anon_sym_BSLASHbibliography] = ACTIONS(5209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), + [anon_sym_BSLASHincludesvg] = ACTIONS(5209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), + [anon_sym_BSLASHimport] = ACTIONS(5209), + [anon_sym_BSLASHsubimport] = ACTIONS(5209), + [anon_sym_BSLASHinputfrom] = ACTIONS(5209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), + [anon_sym_BSLASHincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHcaption] = ACTIONS(5209), + [anon_sym_BSLASHcite] = ACTIONS(5209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCite] = ACTIONS(5209), + [anon_sym_BSLASHnocite] = ACTIONS(5209), + [anon_sym_BSLASHcitet] = ACTIONS(5209), + [anon_sym_BSLASHcitep] = ACTIONS(5209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteauthor] = ACTIONS(5209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitetitle] = ACTIONS(5209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteyear] = ACTIONS(5209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitedate] = ACTIONS(5209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteurl] = ACTIONS(5209), + [anon_sym_BSLASHfullcite] = ACTIONS(5209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), + [anon_sym_BSLASHcitealt] = ACTIONS(5209), + [anon_sym_BSLASHcitealp] = ACTIONS(5209), + [anon_sym_BSLASHcitetext] = ACTIONS(5209), + [anon_sym_BSLASHparencite] = ACTIONS(5209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHParencite] = ACTIONS(5209), + [anon_sym_BSLASHfootcite] = ACTIONS(5209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), + [anon_sym_BSLASHtextcite] = ACTIONS(5209), + [anon_sym_BSLASHTextcite] = ACTIONS(5209), + [anon_sym_BSLASHsmartcite] = ACTIONS(5209), + [anon_sym_BSLASHSmartcite] = ACTIONS(5209), + [anon_sym_BSLASHsupercite] = ACTIONS(5209), + [anon_sym_BSLASHautocite] = ACTIONS(5209), + [anon_sym_BSLASHAutocite] = ACTIONS(5209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHvolcite] = ACTIONS(5209), + [anon_sym_BSLASHVolcite] = ACTIONS(5209), + [anon_sym_BSLASHpvolcite] = ACTIONS(5209), + [anon_sym_BSLASHPvolcite] = ACTIONS(5209), + [anon_sym_BSLASHfvolcite] = ACTIONS(5209), + [anon_sym_BSLASHftvolcite] = ACTIONS(5209), + [anon_sym_BSLASHsvolcite] = ACTIONS(5209), + [anon_sym_BSLASHSvolcite] = ACTIONS(5209), + [anon_sym_BSLASHtvolcite] = ACTIONS(5209), + [anon_sym_BSLASHTvolcite] = ACTIONS(5209), + [anon_sym_BSLASHavolcite] = ACTIONS(5209), + [anon_sym_BSLASHAvolcite] = ACTIONS(5209), + [anon_sym_BSLASHnotecite] = ACTIONS(5209), + [anon_sym_BSLASHNotecite] = ACTIONS(5209), + [anon_sym_BSLASHpnotecite] = ACTIONS(5209), + [anon_sym_BSLASHPnotecite] = ACTIONS(5209), + [anon_sym_BSLASHfnotecite] = ACTIONS(5209), + [anon_sym_BSLASHlabel] = ACTIONS(5209), + [anon_sym_BSLASHref] = ACTIONS(5209), + [anon_sym_BSLASHeqref] = ACTIONS(5209), + [anon_sym_BSLASHvref] = ACTIONS(5209), + [anon_sym_BSLASHVref] = ACTIONS(5209), + [anon_sym_BSLASHautoref] = ACTIONS(5209), + [anon_sym_BSLASHpageref] = ACTIONS(5209), + [anon_sym_BSLASHcref] = ACTIONS(5209), + [anon_sym_BSLASHCref] = ACTIONS(5209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnameCref] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHlabelcref] = ACTIONS(5209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCrefrange] = ACTIONS(5209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnewlabel] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdef] = ACTIONS(5209), + [anon_sym_BSLASHlet] = ACTIONS(5209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), + [anon_sym_BSLASHgls] = ACTIONS(5209), + [anon_sym_BSLASHGls] = ACTIONS(5209), + [anon_sym_BSLASHGLS] = ACTIONS(5209), + [anon_sym_BSLASHglspl] = ACTIONS(5209), + [anon_sym_BSLASHGlspl] = ACTIONS(5209), + [anon_sym_BSLASHGLSpl] = ACTIONS(5209), + [anon_sym_BSLASHglsdisp] = ACTIONS(5209), + [anon_sym_BSLASHglslink] = ACTIONS(5209), + [anon_sym_BSLASHglstext] = ACTIONS(5209), + [anon_sym_BSLASHGlstext] = ACTIONS(5209), + [anon_sym_BSLASHGLStext] = ACTIONS(5209), + [anon_sym_BSLASHglsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), + [anon_sym_BSLASHglsplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSplural] = ACTIONS(5209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHglsname] = ACTIONS(5209), + [anon_sym_BSLASHGlsname] = ACTIONS(5209), + [anon_sym_BSLASHGLSname] = ACTIONS(5209), + [anon_sym_BSLASHglssymbol] = ACTIONS(5209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), + [anon_sym_BSLASHglsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), + [anon_sym_BSLASHglsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), + [anon_sym_BSLASHglsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), + [anon_sym_BSLASHglsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), + [anon_sym_BSLASHglsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), + [anon_sym_BSLASHnewacronym] = ACTIONS(5209), + [anon_sym_BSLASHacrshort] = ACTIONS(5209), + [anon_sym_BSLASHAcrshort] = ACTIONS(5209), + [anon_sym_BSLASHACRshort] = ACTIONS(5209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), + [anon_sym_BSLASHacrlong] = ACTIONS(5209), + [anon_sym_BSLASHAcrlong] = ACTIONS(5209), + [anon_sym_BSLASHACRlong] = ACTIONS(5209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), + [anon_sym_BSLASHacrfull] = ACTIONS(5209), + [anon_sym_BSLASHAcrfull] = ACTIONS(5209), + [anon_sym_BSLASHACRfull] = ACTIONS(5209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), + [anon_sym_BSLASHacs] = ACTIONS(5209), + [anon_sym_BSLASHAcs] = ACTIONS(5209), + [anon_sym_BSLASHacsp] = ACTIONS(5209), + [anon_sym_BSLASHAcsp] = ACTIONS(5209), + [anon_sym_BSLASHacl] = ACTIONS(5209), + [anon_sym_BSLASHAcl] = ACTIONS(5209), + [anon_sym_BSLASHaclp] = ACTIONS(5209), + [anon_sym_BSLASHAclp] = ACTIONS(5209), + [anon_sym_BSLASHacf] = ACTIONS(5209), + [anon_sym_BSLASHAcf] = ACTIONS(5209), + [anon_sym_BSLASHacfp] = ACTIONS(5209), + [anon_sym_BSLASHAcfp] = ACTIONS(5209), + [anon_sym_BSLASHac] = ACTIONS(5209), + [anon_sym_BSLASHAc] = ACTIONS(5209), + [anon_sym_BSLASHacp] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), + [anon_sym_BSLASHcolor] = ACTIONS(5209), + [anon_sym_BSLASHcolorbox] = ACTIONS(5209), + [anon_sym_BSLASHtextcolor] = ACTIONS(5209), + [anon_sym_BSLASHpagecolor] = ACTIONS(5209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHtext] = ACTIONS(5209), + [anon_sym_BSLASHintertext] = ACTIONS(5209), + [anon_sym_shortintertext] = ACTIONS(5209), }, - [1168] = { - [sym_command_name] = ACTIONS(4983), + [1061] = { + [sym_command_name] = ACTIONS(5201), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_BSLASHpart] = ACTIONS(4983), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddpart] = ACTIONS(4983), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), - [anon_sym_BSLASHchapter] = ACTIONS(4983), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddchap] = ACTIONS(4983), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsection] = ACTIONS(4983), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHaddsec] = ACTIONS(4983), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), - [anon_sym_BSLASHparagraph] = ACTIONS(4983), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), - [anon_sym_BSLASHitem] = ACTIONS(4983), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(4981), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), - [anon_sym_BSLASH_RBRACK] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), - [anon_sym_BSLASHbegin] = ACTIONS(4983), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHiffalse] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_BSLASHpart] = ACTIONS(5201), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddpart] = ACTIONS(5201), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), + [anon_sym_BSLASHchapter] = ACTIONS(5201), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddchap] = ACTIONS(5201), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsection] = ACTIONS(5201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddsec] = ACTIONS(5201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubsection] = ACTIONS(5201), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHparagraph] = ACTIONS(5201), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), + [anon_sym_BSLASHitem] = ACTIONS(5201), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5199), + [sym_word] = ACTIONS(5201), + [sym_placeholder] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5201), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_CARET] = ACTIONS(5201), + [anon_sym__] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_SQUOTE] = ACTIONS(5201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), + [anon_sym_DOLLAR] = ACTIONS(5201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5199), + [anon_sym_BSLASHbegin] = ACTIONS(5201), + [anon_sym_BSLASHusepackage] = ACTIONS(5201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), + [anon_sym_BSLASHinclude] = ACTIONS(5201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), + [anon_sym_BSLASHinput] = ACTIONS(5201), + [anon_sym_BSLASHsubfile] = ACTIONS(5201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), + [anon_sym_BSLASHbibliography] = ACTIONS(5201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), + [anon_sym_BSLASHincludesvg] = ACTIONS(5201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), + [anon_sym_BSLASHimport] = ACTIONS(5201), + [anon_sym_BSLASHsubimport] = ACTIONS(5201), + [anon_sym_BSLASHinputfrom] = ACTIONS(5201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), + [anon_sym_BSLASHincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHcaption] = ACTIONS(5201), + [anon_sym_BSLASHcite] = ACTIONS(5201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCite] = ACTIONS(5201), + [anon_sym_BSLASHnocite] = ACTIONS(5201), + [anon_sym_BSLASHcitet] = ACTIONS(5201), + [anon_sym_BSLASHcitep] = ACTIONS(5201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteauthor] = ACTIONS(5201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitetitle] = ACTIONS(5201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteyear] = ACTIONS(5201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitedate] = ACTIONS(5201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteurl] = ACTIONS(5201), + [anon_sym_BSLASHfullcite] = ACTIONS(5201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), + [anon_sym_BSLASHcitealt] = ACTIONS(5201), + [anon_sym_BSLASHcitealp] = ACTIONS(5201), + [anon_sym_BSLASHcitetext] = ACTIONS(5201), + [anon_sym_BSLASHparencite] = ACTIONS(5201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHParencite] = ACTIONS(5201), + [anon_sym_BSLASHfootcite] = ACTIONS(5201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), + [anon_sym_BSLASHtextcite] = ACTIONS(5201), + [anon_sym_BSLASHTextcite] = ACTIONS(5201), + [anon_sym_BSLASHsmartcite] = ACTIONS(5201), + [anon_sym_BSLASHSmartcite] = ACTIONS(5201), + [anon_sym_BSLASHsupercite] = ACTIONS(5201), + [anon_sym_BSLASHautocite] = ACTIONS(5201), + [anon_sym_BSLASHAutocite] = ACTIONS(5201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHvolcite] = ACTIONS(5201), + [anon_sym_BSLASHVolcite] = ACTIONS(5201), + [anon_sym_BSLASHpvolcite] = ACTIONS(5201), + [anon_sym_BSLASHPvolcite] = ACTIONS(5201), + [anon_sym_BSLASHfvolcite] = ACTIONS(5201), + [anon_sym_BSLASHftvolcite] = ACTIONS(5201), + [anon_sym_BSLASHsvolcite] = ACTIONS(5201), + [anon_sym_BSLASHSvolcite] = ACTIONS(5201), + [anon_sym_BSLASHtvolcite] = ACTIONS(5201), + [anon_sym_BSLASHTvolcite] = ACTIONS(5201), + [anon_sym_BSLASHavolcite] = ACTIONS(5201), + [anon_sym_BSLASHAvolcite] = ACTIONS(5201), + [anon_sym_BSLASHnotecite] = ACTIONS(5201), + [anon_sym_BSLASHNotecite] = ACTIONS(5201), + [anon_sym_BSLASHpnotecite] = ACTIONS(5201), + [anon_sym_BSLASHPnotecite] = ACTIONS(5201), + [anon_sym_BSLASHfnotecite] = ACTIONS(5201), + [anon_sym_BSLASHlabel] = ACTIONS(5201), + [anon_sym_BSLASHref] = ACTIONS(5201), + [anon_sym_BSLASHeqref] = ACTIONS(5201), + [anon_sym_BSLASHvref] = ACTIONS(5201), + [anon_sym_BSLASHVref] = ACTIONS(5201), + [anon_sym_BSLASHautoref] = ACTIONS(5201), + [anon_sym_BSLASHpageref] = ACTIONS(5201), + [anon_sym_BSLASHcref] = ACTIONS(5201), + [anon_sym_BSLASHCref] = ACTIONS(5201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnameCref] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHlabelcref] = ACTIONS(5201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCrefrange] = ACTIONS(5201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnewlabel] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), + [anon_sym_BSLASHdef] = ACTIONS(5201), + [anon_sym_BSLASHlet] = ACTIONS(5201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), + [anon_sym_BSLASHgls] = ACTIONS(5201), + [anon_sym_BSLASHGls] = ACTIONS(5201), + [anon_sym_BSLASHGLS] = ACTIONS(5201), + [anon_sym_BSLASHglspl] = ACTIONS(5201), + [anon_sym_BSLASHGlspl] = ACTIONS(5201), + [anon_sym_BSLASHGLSpl] = ACTIONS(5201), + [anon_sym_BSLASHglsdisp] = ACTIONS(5201), + [anon_sym_BSLASHglslink] = ACTIONS(5201), + [anon_sym_BSLASHglstext] = ACTIONS(5201), + [anon_sym_BSLASHGlstext] = ACTIONS(5201), + [anon_sym_BSLASHGLStext] = ACTIONS(5201), + [anon_sym_BSLASHglsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), + [anon_sym_BSLASHglsplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSplural] = ACTIONS(5201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHglsname] = ACTIONS(5201), + [anon_sym_BSLASHGlsname] = ACTIONS(5201), + [anon_sym_BSLASHGLSname] = ACTIONS(5201), + [anon_sym_BSLASHglssymbol] = ACTIONS(5201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), + [anon_sym_BSLASHglsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), + [anon_sym_BSLASHglsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), + [anon_sym_BSLASHglsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), + [anon_sym_BSLASHglsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), + [anon_sym_BSLASHglsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5201), + [anon_sym_BSLASHAcrshort] = ACTIONS(5201), + [anon_sym_BSLASHACRshort] = ACTIONS(5201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), + [anon_sym_BSLASHacrlong] = ACTIONS(5201), + [anon_sym_BSLASHAcrlong] = ACTIONS(5201), + [anon_sym_BSLASHACRlong] = ACTIONS(5201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), + [anon_sym_BSLASHacrfull] = ACTIONS(5201), + [anon_sym_BSLASHAcrfull] = ACTIONS(5201), + [anon_sym_BSLASHACRfull] = ACTIONS(5201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), + [anon_sym_BSLASHacs] = ACTIONS(5201), + [anon_sym_BSLASHAcs] = ACTIONS(5201), + [anon_sym_BSLASHacsp] = ACTIONS(5201), + [anon_sym_BSLASHAcsp] = ACTIONS(5201), + [anon_sym_BSLASHacl] = ACTIONS(5201), + [anon_sym_BSLASHAcl] = ACTIONS(5201), + [anon_sym_BSLASHaclp] = ACTIONS(5201), + [anon_sym_BSLASHAclp] = ACTIONS(5201), + [anon_sym_BSLASHacf] = ACTIONS(5201), + [anon_sym_BSLASHAcf] = ACTIONS(5201), + [anon_sym_BSLASHacfp] = ACTIONS(5201), + [anon_sym_BSLASHAcfp] = ACTIONS(5201), + [anon_sym_BSLASHac] = ACTIONS(5201), + [anon_sym_BSLASHAc] = ACTIONS(5201), + [anon_sym_BSLASHacp] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), + [anon_sym_BSLASHcolor] = ACTIONS(5201), + [anon_sym_BSLASHcolorbox] = ACTIONS(5201), + [anon_sym_BSLASHtextcolor] = ACTIONS(5201), + [anon_sym_BSLASHpagecolor] = ACTIONS(5201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), + [anon_sym_BSLASHtext] = ACTIONS(5201), + [anon_sym_BSLASHintertext] = ACTIONS(5201), + [anon_sym_shortintertext] = ACTIONS(5201), }, - [1169] = { - [sym_command_name] = ACTIONS(5041), + [1062] = { + [sym_command_name] = ACTIONS(5197), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_BSLASHpart] = ACTIONS(5041), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddpart] = ACTIONS(5041), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), - [anon_sym_BSLASHchapter] = ACTIONS(5041), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddchap] = ACTIONS(5041), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsection] = ACTIONS(5041), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHaddsec] = ACTIONS(5041), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), - [anon_sym_BSLASHparagraph] = ACTIONS(5041), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), - [anon_sym_BSLASHitem] = ACTIONS(5041), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASHbegin] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + [anon_sym_BSLASHiffalse] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_BSLASHpart] = ACTIONS(5197), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddpart] = ACTIONS(5197), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), + [anon_sym_BSLASHchapter] = ACTIONS(5197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddchap] = ACTIONS(5197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsection] = ACTIONS(5197), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddsec] = ACTIONS(5197), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubsection] = ACTIONS(5197), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHparagraph] = ACTIONS(5197), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), + [anon_sym_BSLASHitem] = ACTIONS(5197), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5195), + [sym_word] = ACTIONS(5197), + [sym_placeholder] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_CARET] = ACTIONS(5197), + [anon_sym__] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_COLON] = ACTIONS(5197), + [anon_sym_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), + [anon_sym_DOLLAR] = ACTIONS(5197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5195), + [anon_sym_BSLASHbegin] = ACTIONS(5197), + [anon_sym_BSLASHusepackage] = ACTIONS(5197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), + [anon_sym_BSLASHinclude] = ACTIONS(5197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), + [anon_sym_BSLASHinput] = ACTIONS(5197), + [anon_sym_BSLASHsubfile] = ACTIONS(5197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), + [anon_sym_BSLASHbibliography] = ACTIONS(5197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), + [anon_sym_BSLASHincludesvg] = ACTIONS(5197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), + [anon_sym_BSLASHimport] = ACTIONS(5197), + [anon_sym_BSLASHsubimport] = ACTIONS(5197), + [anon_sym_BSLASHinputfrom] = ACTIONS(5197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), + [anon_sym_BSLASHincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHcaption] = ACTIONS(5197), + [anon_sym_BSLASHcite] = ACTIONS(5197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCite] = ACTIONS(5197), + [anon_sym_BSLASHnocite] = ACTIONS(5197), + [anon_sym_BSLASHcitet] = ACTIONS(5197), + [anon_sym_BSLASHcitep] = ACTIONS(5197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteauthor] = ACTIONS(5197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitetitle] = ACTIONS(5197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteyear] = ACTIONS(5197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitedate] = ACTIONS(5197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteurl] = ACTIONS(5197), + [anon_sym_BSLASHfullcite] = ACTIONS(5197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), + [anon_sym_BSLASHcitealt] = ACTIONS(5197), + [anon_sym_BSLASHcitealp] = ACTIONS(5197), + [anon_sym_BSLASHcitetext] = ACTIONS(5197), + [anon_sym_BSLASHparencite] = ACTIONS(5197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHParencite] = ACTIONS(5197), + [anon_sym_BSLASHfootcite] = ACTIONS(5197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), + [anon_sym_BSLASHtextcite] = ACTIONS(5197), + [anon_sym_BSLASHTextcite] = ACTIONS(5197), + [anon_sym_BSLASHsmartcite] = ACTIONS(5197), + [anon_sym_BSLASHSmartcite] = ACTIONS(5197), + [anon_sym_BSLASHsupercite] = ACTIONS(5197), + [anon_sym_BSLASHautocite] = ACTIONS(5197), + [anon_sym_BSLASHAutocite] = ACTIONS(5197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHvolcite] = ACTIONS(5197), + [anon_sym_BSLASHVolcite] = ACTIONS(5197), + [anon_sym_BSLASHpvolcite] = ACTIONS(5197), + [anon_sym_BSLASHPvolcite] = ACTIONS(5197), + [anon_sym_BSLASHfvolcite] = ACTIONS(5197), + [anon_sym_BSLASHftvolcite] = ACTIONS(5197), + [anon_sym_BSLASHsvolcite] = ACTIONS(5197), + [anon_sym_BSLASHSvolcite] = ACTIONS(5197), + [anon_sym_BSLASHtvolcite] = ACTIONS(5197), + [anon_sym_BSLASHTvolcite] = ACTIONS(5197), + [anon_sym_BSLASHavolcite] = ACTIONS(5197), + [anon_sym_BSLASHAvolcite] = ACTIONS(5197), + [anon_sym_BSLASHnotecite] = ACTIONS(5197), + [anon_sym_BSLASHNotecite] = ACTIONS(5197), + [anon_sym_BSLASHpnotecite] = ACTIONS(5197), + [anon_sym_BSLASHPnotecite] = ACTIONS(5197), + [anon_sym_BSLASHfnotecite] = ACTIONS(5197), + [anon_sym_BSLASHlabel] = ACTIONS(5197), + [anon_sym_BSLASHref] = ACTIONS(5197), + [anon_sym_BSLASHeqref] = ACTIONS(5197), + [anon_sym_BSLASHvref] = ACTIONS(5197), + [anon_sym_BSLASHVref] = ACTIONS(5197), + [anon_sym_BSLASHautoref] = ACTIONS(5197), + [anon_sym_BSLASHpageref] = ACTIONS(5197), + [anon_sym_BSLASHcref] = ACTIONS(5197), + [anon_sym_BSLASHCref] = ACTIONS(5197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnameCref] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHlabelcref] = ACTIONS(5197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCrefrange] = ACTIONS(5197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnewlabel] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), + [anon_sym_BSLASHdef] = ACTIONS(5197), + [anon_sym_BSLASHlet] = ACTIONS(5197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5197), + [anon_sym_BSLASHGls] = ACTIONS(5197), + [anon_sym_BSLASHGLS] = ACTIONS(5197), + [anon_sym_BSLASHglspl] = ACTIONS(5197), + [anon_sym_BSLASHGlspl] = ACTIONS(5197), + [anon_sym_BSLASHGLSpl] = ACTIONS(5197), + [anon_sym_BSLASHglsdisp] = ACTIONS(5197), + [anon_sym_BSLASHglslink] = ACTIONS(5197), + [anon_sym_BSLASHglstext] = ACTIONS(5197), + [anon_sym_BSLASHGlstext] = ACTIONS(5197), + [anon_sym_BSLASHGLStext] = ACTIONS(5197), + [anon_sym_BSLASHglsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), + [anon_sym_BSLASHglsplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSplural] = ACTIONS(5197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHglsname] = ACTIONS(5197), + [anon_sym_BSLASHGlsname] = ACTIONS(5197), + [anon_sym_BSLASHGLSname] = ACTIONS(5197), + [anon_sym_BSLASHglssymbol] = ACTIONS(5197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), + [anon_sym_BSLASHglsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), + [anon_sym_BSLASHglsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), + [anon_sym_BSLASHglsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), + [anon_sym_BSLASHglsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), + [anon_sym_BSLASHglsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), + [anon_sym_BSLASHnewacronym] = ACTIONS(5197), + [anon_sym_BSLASHacrshort] = ACTIONS(5197), + [anon_sym_BSLASHAcrshort] = ACTIONS(5197), + [anon_sym_BSLASHACRshort] = ACTIONS(5197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), + [anon_sym_BSLASHacrlong] = ACTIONS(5197), + [anon_sym_BSLASHAcrlong] = ACTIONS(5197), + [anon_sym_BSLASHACRlong] = ACTIONS(5197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), + [anon_sym_BSLASHacrfull] = ACTIONS(5197), + [anon_sym_BSLASHAcrfull] = ACTIONS(5197), + [anon_sym_BSLASHACRfull] = ACTIONS(5197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), + [anon_sym_BSLASHacs] = ACTIONS(5197), + [anon_sym_BSLASHAcs] = ACTIONS(5197), + [anon_sym_BSLASHacsp] = ACTIONS(5197), + [anon_sym_BSLASHAcsp] = ACTIONS(5197), + [anon_sym_BSLASHacl] = ACTIONS(5197), + [anon_sym_BSLASHAcl] = ACTIONS(5197), + [anon_sym_BSLASHaclp] = ACTIONS(5197), + [anon_sym_BSLASHAclp] = ACTIONS(5197), + [anon_sym_BSLASHacf] = ACTIONS(5197), + [anon_sym_BSLASHAcf] = ACTIONS(5197), + [anon_sym_BSLASHacfp] = ACTIONS(5197), + [anon_sym_BSLASHAcfp] = ACTIONS(5197), + [anon_sym_BSLASHac] = ACTIONS(5197), + [anon_sym_BSLASHAc] = ACTIONS(5197), + [anon_sym_BSLASHacp] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), + [anon_sym_BSLASHcolor] = ACTIONS(5197), + [anon_sym_BSLASHcolorbox] = ACTIONS(5197), + [anon_sym_BSLASHtextcolor] = ACTIONS(5197), + [anon_sym_BSLASHpagecolor] = ACTIONS(5197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + [anon_sym_BSLASHtext] = ACTIONS(5197), + [anon_sym_BSLASHintertext] = ACTIONS(5197), + [anon_sym_shortintertext] = ACTIONS(5197), }, - [1170] = { - [sym_command_name] = ACTIONS(4999), + [1063] = { + [sym_command_name] = ACTIONS(5193), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4997), - [anon_sym_BSLASHpart] = ACTIONS(4999), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddpart] = ACTIONS(4999), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), - [anon_sym_BSLASHchapter] = ACTIONS(4999), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddchap] = ACTIONS(4999), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsection] = ACTIONS(4999), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHaddsec] = ACTIONS(4999), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), - [anon_sym_BSLASHparagraph] = ACTIONS(4999), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), - [anon_sym_BSLASHitem] = ACTIONS(4999), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4997), - [sym_word] = ACTIONS(4999), - [sym_placeholder] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym__] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), - [anon_sym_BSLASHbegin] = ACTIONS(4999), - [anon_sym_BSLASHend] = ACTIONS(4999), - [anon_sym_BSLASHusepackage] = ACTIONS(4999), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), - [anon_sym_BSLASHinclude] = ACTIONS(4999), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), - [anon_sym_BSLASHinput] = ACTIONS(4999), - [anon_sym_BSLASHsubfile] = ACTIONS(4999), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), - [anon_sym_BSLASHbibliography] = ACTIONS(4999), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), - [anon_sym_BSLASHincludesvg] = ACTIONS(4999), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), - [anon_sym_BSLASHimport] = ACTIONS(4999), - [anon_sym_BSLASHsubimport] = ACTIONS(4999), - [anon_sym_BSLASHinputfrom] = ACTIONS(4999), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), - [anon_sym_BSLASHincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHcaption] = ACTIONS(4999), - [anon_sym_BSLASHcite] = ACTIONS(4999), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCite] = ACTIONS(4999), - [anon_sym_BSLASHnocite] = ACTIONS(4999), - [anon_sym_BSLASHcitet] = ACTIONS(4999), - [anon_sym_BSLASHcitep] = ACTIONS(4999), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteauthor] = ACTIONS(4999), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitetitle] = ACTIONS(4999), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteyear] = ACTIONS(4999), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitedate] = ACTIONS(4999), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteurl] = ACTIONS(4999), - [anon_sym_BSLASHfullcite] = ACTIONS(4999), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), - [anon_sym_BSLASHcitealt] = ACTIONS(4999), - [anon_sym_BSLASHcitealp] = ACTIONS(4999), - [anon_sym_BSLASHcitetext] = ACTIONS(4999), - [anon_sym_BSLASHparencite] = ACTIONS(4999), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHParencite] = ACTIONS(4999), - [anon_sym_BSLASHfootcite] = ACTIONS(4999), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), - [anon_sym_BSLASHtextcite] = ACTIONS(4999), - [anon_sym_BSLASHTextcite] = ACTIONS(4999), - [anon_sym_BSLASHsmartcite] = ACTIONS(4999), - [anon_sym_BSLASHSmartcite] = ACTIONS(4999), - [anon_sym_BSLASHsupercite] = ACTIONS(4999), - [anon_sym_BSLASHautocite] = ACTIONS(4999), - [anon_sym_BSLASHAutocite] = ACTIONS(4999), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHvolcite] = ACTIONS(4999), - [anon_sym_BSLASHVolcite] = ACTIONS(4999), - [anon_sym_BSLASHpvolcite] = ACTIONS(4999), - [anon_sym_BSLASHPvolcite] = ACTIONS(4999), - [anon_sym_BSLASHfvolcite] = ACTIONS(4999), - [anon_sym_BSLASHftvolcite] = ACTIONS(4999), - [anon_sym_BSLASHsvolcite] = ACTIONS(4999), - [anon_sym_BSLASHSvolcite] = ACTIONS(4999), - [anon_sym_BSLASHtvolcite] = ACTIONS(4999), - [anon_sym_BSLASHTvolcite] = ACTIONS(4999), - [anon_sym_BSLASHavolcite] = ACTIONS(4999), - [anon_sym_BSLASHAvolcite] = ACTIONS(4999), - [anon_sym_BSLASHnotecite] = ACTIONS(4999), - [anon_sym_BSLASHNotecite] = ACTIONS(4999), - [anon_sym_BSLASHpnotecite] = ACTIONS(4999), - [anon_sym_BSLASHPnotecite] = ACTIONS(4999), - [anon_sym_BSLASHfnotecite] = ACTIONS(4999), - [anon_sym_BSLASHlabel] = ACTIONS(4999), - [anon_sym_BSLASHref] = ACTIONS(4999), - [anon_sym_BSLASHeqref] = ACTIONS(4999), - [anon_sym_BSLASHvref] = ACTIONS(4999), - [anon_sym_BSLASHVref] = ACTIONS(4999), - [anon_sym_BSLASHautoref] = ACTIONS(4999), - [anon_sym_BSLASHpageref] = ACTIONS(4999), - [anon_sym_BSLASHcref] = ACTIONS(4999), - [anon_sym_BSLASHCref] = ACTIONS(4999), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnameCref] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHlabelcref] = ACTIONS(4999), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCrefrange] = ACTIONS(4999), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnewlabel] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdef] = ACTIONS(4999), - [anon_sym_BSLASHlet] = ACTIONS(4999), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), - [anon_sym_BSLASHgls] = ACTIONS(4999), - [anon_sym_BSLASHGls] = ACTIONS(4999), - [anon_sym_BSLASHGLS] = ACTIONS(4999), - [anon_sym_BSLASHglspl] = ACTIONS(4999), - [anon_sym_BSLASHGlspl] = ACTIONS(4999), - [anon_sym_BSLASHGLSpl] = ACTIONS(4999), - [anon_sym_BSLASHglsdisp] = ACTIONS(4999), - [anon_sym_BSLASHglslink] = ACTIONS(4999), - [anon_sym_BSLASHglstext] = ACTIONS(4999), - [anon_sym_BSLASHGlstext] = ACTIONS(4999), - [anon_sym_BSLASHGLStext] = ACTIONS(4999), - [anon_sym_BSLASHglsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), - [anon_sym_BSLASHglsplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSplural] = ACTIONS(4999), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHglsname] = ACTIONS(4999), - [anon_sym_BSLASHGlsname] = ACTIONS(4999), - [anon_sym_BSLASHGLSname] = ACTIONS(4999), - [anon_sym_BSLASHglssymbol] = ACTIONS(4999), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), - [anon_sym_BSLASHglsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), - [anon_sym_BSLASHglsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), - [anon_sym_BSLASHglsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), - [anon_sym_BSLASHglsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), - [anon_sym_BSLASHglsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), - [anon_sym_BSLASHnewacronym] = ACTIONS(4999), - [anon_sym_BSLASHacrshort] = ACTIONS(4999), - [anon_sym_BSLASHAcrshort] = ACTIONS(4999), - [anon_sym_BSLASHACRshort] = ACTIONS(4999), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), - [anon_sym_BSLASHacrlong] = ACTIONS(4999), - [anon_sym_BSLASHAcrlong] = ACTIONS(4999), - [anon_sym_BSLASHACRlong] = ACTIONS(4999), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), - [anon_sym_BSLASHacrfull] = ACTIONS(4999), - [anon_sym_BSLASHAcrfull] = ACTIONS(4999), - [anon_sym_BSLASHACRfull] = ACTIONS(4999), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), - [anon_sym_BSLASHacs] = ACTIONS(4999), - [anon_sym_BSLASHAcs] = ACTIONS(4999), - [anon_sym_BSLASHacsp] = ACTIONS(4999), - [anon_sym_BSLASHAcsp] = ACTIONS(4999), - [anon_sym_BSLASHacl] = ACTIONS(4999), - [anon_sym_BSLASHAcl] = ACTIONS(4999), - [anon_sym_BSLASHaclp] = ACTIONS(4999), - [anon_sym_BSLASHAclp] = ACTIONS(4999), - [anon_sym_BSLASHacf] = ACTIONS(4999), - [anon_sym_BSLASHAcf] = ACTIONS(4999), - [anon_sym_BSLASHacfp] = ACTIONS(4999), - [anon_sym_BSLASHAcfp] = ACTIONS(4999), - [anon_sym_BSLASHac] = ACTIONS(4999), - [anon_sym_BSLASHAc] = ACTIONS(4999), - [anon_sym_BSLASHacp] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), - [anon_sym_BSLASHcolor] = ACTIONS(4999), - [anon_sym_BSLASHcolorbox] = ACTIONS(4999), - [anon_sym_BSLASHtextcolor] = ACTIONS(4999), - [anon_sym_BSLASHpagecolor] = ACTIONS(4999), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), - }, - [1171] = { - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_BSLASHpart] = ACTIONS(137), - [anon_sym_BSLASHpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddpart] = ACTIONS(137), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(135), - [anon_sym_BSLASHchapter] = ACTIONS(137), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddchap] = ACTIONS(137), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(135), - [anon_sym_BSLASHsection] = ACTIONS(137), - [anon_sym_BSLASHsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHaddsec] = ACTIONS(137), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubsubsection] = ACTIONS(137), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(135), - [anon_sym_BSLASHparagraph] = ACTIONS(137), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHsubparagraph] = ACTIONS(137), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(135), - [anon_sym_BSLASHitem] = ACTIONS(137), - [anon_sym_BSLASHitem_STAR] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_BSLASH_RBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), + [anon_sym_BSLASHiffalse] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5191), + [anon_sym_RPAREN] = ACTIONS(5191), + [anon_sym_LBRACK] = ACTIONS(5191), + [anon_sym_RBRACK] = ACTIONS(5191), + [anon_sym_COMMA] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_BSLASHpart] = ACTIONS(5193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddpart] = ACTIONS(5193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), + [anon_sym_BSLASHchapter] = ACTIONS(5193), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddchap] = ACTIONS(5193), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsection] = ACTIONS(5193), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddsec] = ACTIONS(5193), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubsection] = ACTIONS(5193), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHparagraph] = ACTIONS(5193), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), + [anon_sym_BSLASHitem] = ACTIONS(5193), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5191), + [sym_word] = ACTIONS(5193), + [sym_placeholder] = ACTIONS(5191), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5193), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_CARET] = ACTIONS(5193), + [anon_sym__] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_PIPE] = ACTIONS(5193), + [anon_sym_COLON] = ACTIONS(5193), + [anon_sym_SQUOTE] = ACTIONS(5193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), + [anon_sym_DOLLAR] = ACTIONS(5193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5191), + [anon_sym_BSLASHbegin] = ACTIONS(5193), + [anon_sym_BSLASHusepackage] = ACTIONS(5193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), + [anon_sym_BSLASHinclude] = ACTIONS(5193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), + [anon_sym_BSLASHinput] = ACTIONS(5193), + [anon_sym_BSLASHsubfile] = ACTIONS(5193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), + [anon_sym_BSLASHbibliography] = ACTIONS(5193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), + [anon_sym_BSLASHincludesvg] = ACTIONS(5193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), + [anon_sym_BSLASHimport] = ACTIONS(5193), + [anon_sym_BSLASHsubimport] = ACTIONS(5193), + [anon_sym_BSLASHinputfrom] = ACTIONS(5193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), + [anon_sym_BSLASHincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHcaption] = ACTIONS(5193), + [anon_sym_BSLASHcite] = ACTIONS(5193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCite] = ACTIONS(5193), + [anon_sym_BSLASHnocite] = ACTIONS(5193), + [anon_sym_BSLASHcitet] = ACTIONS(5193), + [anon_sym_BSLASHcitep] = ACTIONS(5193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteauthor] = ACTIONS(5193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitetitle] = ACTIONS(5193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteyear] = ACTIONS(5193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitedate] = ACTIONS(5193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteurl] = ACTIONS(5193), + [anon_sym_BSLASHfullcite] = ACTIONS(5193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), + [anon_sym_BSLASHcitealt] = ACTIONS(5193), + [anon_sym_BSLASHcitealp] = ACTIONS(5193), + [anon_sym_BSLASHcitetext] = ACTIONS(5193), + [anon_sym_BSLASHparencite] = ACTIONS(5193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHParencite] = ACTIONS(5193), + [anon_sym_BSLASHfootcite] = ACTIONS(5193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), + [anon_sym_BSLASHtextcite] = ACTIONS(5193), + [anon_sym_BSLASHTextcite] = ACTIONS(5193), + [anon_sym_BSLASHsmartcite] = ACTIONS(5193), + [anon_sym_BSLASHSmartcite] = ACTIONS(5193), + [anon_sym_BSLASHsupercite] = ACTIONS(5193), + [anon_sym_BSLASHautocite] = ACTIONS(5193), + [anon_sym_BSLASHAutocite] = ACTIONS(5193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHvolcite] = ACTIONS(5193), + [anon_sym_BSLASHVolcite] = ACTIONS(5193), + [anon_sym_BSLASHpvolcite] = ACTIONS(5193), + [anon_sym_BSLASHPvolcite] = ACTIONS(5193), + [anon_sym_BSLASHfvolcite] = ACTIONS(5193), + [anon_sym_BSLASHftvolcite] = ACTIONS(5193), + [anon_sym_BSLASHsvolcite] = ACTIONS(5193), + [anon_sym_BSLASHSvolcite] = ACTIONS(5193), + [anon_sym_BSLASHtvolcite] = ACTIONS(5193), + [anon_sym_BSLASHTvolcite] = ACTIONS(5193), + [anon_sym_BSLASHavolcite] = ACTIONS(5193), + [anon_sym_BSLASHAvolcite] = ACTIONS(5193), + [anon_sym_BSLASHnotecite] = ACTIONS(5193), + [anon_sym_BSLASHNotecite] = ACTIONS(5193), + [anon_sym_BSLASHpnotecite] = ACTIONS(5193), + [anon_sym_BSLASHPnotecite] = ACTIONS(5193), + [anon_sym_BSLASHfnotecite] = ACTIONS(5193), + [anon_sym_BSLASHlabel] = ACTIONS(5193), + [anon_sym_BSLASHref] = ACTIONS(5193), + [anon_sym_BSLASHeqref] = ACTIONS(5193), + [anon_sym_BSLASHvref] = ACTIONS(5193), + [anon_sym_BSLASHVref] = ACTIONS(5193), + [anon_sym_BSLASHautoref] = ACTIONS(5193), + [anon_sym_BSLASHpageref] = ACTIONS(5193), + [anon_sym_BSLASHcref] = ACTIONS(5193), + [anon_sym_BSLASHCref] = ACTIONS(5193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnameCref] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHlabelcref] = ACTIONS(5193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCrefrange] = ACTIONS(5193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnewlabel] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), + [anon_sym_BSLASHdef] = ACTIONS(5193), + [anon_sym_BSLASHlet] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), + [anon_sym_BSLASHgls] = ACTIONS(5193), + [anon_sym_BSLASHGls] = ACTIONS(5193), + [anon_sym_BSLASHGLS] = ACTIONS(5193), + [anon_sym_BSLASHglspl] = ACTIONS(5193), + [anon_sym_BSLASHGlspl] = ACTIONS(5193), + [anon_sym_BSLASHGLSpl] = ACTIONS(5193), + [anon_sym_BSLASHglsdisp] = ACTIONS(5193), + [anon_sym_BSLASHglslink] = ACTIONS(5193), + [anon_sym_BSLASHglstext] = ACTIONS(5193), + [anon_sym_BSLASHGlstext] = ACTIONS(5193), + [anon_sym_BSLASHGLStext] = ACTIONS(5193), + [anon_sym_BSLASHglsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), + [anon_sym_BSLASHglsplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSplural] = ACTIONS(5193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHglsname] = ACTIONS(5193), + [anon_sym_BSLASHGlsname] = ACTIONS(5193), + [anon_sym_BSLASHGLSname] = ACTIONS(5193), + [anon_sym_BSLASHglssymbol] = ACTIONS(5193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), + [anon_sym_BSLASHglsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), + [anon_sym_BSLASHglsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), + [anon_sym_BSLASHglsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), + [anon_sym_BSLASHglsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), + [anon_sym_BSLASHglsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), + [anon_sym_BSLASHnewacronym] = ACTIONS(5193), + [anon_sym_BSLASHacrshort] = ACTIONS(5193), + [anon_sym_BSLASHAcrshort] = ACTIONS(5193), + [anon_sym_BSLASHACRshort] = ACTIONS(5193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), + [anon_sym_BSLASHacrlong] = ACTIONS(5193), + [anon_sym_BSLASHAcrlong] = ACTIONS(5193), + [anon_sym_BSLASHACRlong] = ACTIONS(5193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), + [anon_sym_BSLASHacrfull] = ACTIONS(5193), + [anon_sym_BSLASHAcrfull] = ACTIONS(5193), + [anon_sym_BSLASHACRfull] = ACTIONS(5193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), + [anon_sym_BSLASHacs] = ACTIONS(5193), + [anon_sym_BSLASHAcs] = ACTIONS(5193), + [anon_sym_BSLASHacsp] = ACTIONS(5193), + [anon_sym_BSLASHAcsp] = ACTIONS(5193), + [anon_sym_BSLASHacl] = ACTIONS(5193), + [anon_sym_BSLASHAcl] = ACTIONS(5193), + [anon_sym_BSLASHaclp] = ACTIONS(5193), + [anon_sym_BSLASHAclp] = ACTIONS(5193), + [anon_sym_BSLASHacf] = ACTIONS(5193), + [anon_sym_BSLASHAcf] = ACTIONS(5193), + [anon_sym_BSLASHacfp] = ACTIONS(5193), + [anon_sym_BSLASHAcfp] = ACTIONS(5193), + [anon_sym_BSLASHac] = ACTIONS(5193), + [anon_sym_BSLASHAc] = ACTIONS(5193), + [anon_sym_BSLASHacp] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), + [anon_sym_BSLASHcolor] = ACTIONS(5193), + [anon_sym_BSLASHcolorbox] = ACTIONS(5193), + [anon_sym_BSLASHtextcolor] = ACTIONS(5193), + [anon_sym_BSLASHpagecolor] = ACTIONS(5193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [anon_sym_BSLASHtext] = ACTIONS(5193), + [anon_sym_BSLASHintertext] = ACTIONS(5193), + [anon_sym_shortintertext] = ACTIONS(5193), }, - [1172] = { - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_BSLASHpart] = ACTIONS(141), - [anon_sym_BSLASHpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddpart] = ACTIONS(141), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(139), - [anon_sym_BSLASHchapter] = ACTIONS(141), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddchap] = ACTIONS(141), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(139), - [anon_sym_BSLASHsection] = ACTIONS(141), - [anon_sym_BSLASHsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHaddsec] = ACTIONS(141), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubsubsection] = ACTIONS(141), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(139), - [anon_sym_BSLASHparagraph] = ACTIONS(141), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHsubparagraph] = ACTIONS(141), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(139), - [anon_sym_BSLASHitem] = ACTIONS(141), - [anon_sym_BSLASHitem_STAR] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_BSLASH_RBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [1064] = { + [sym_command_name] = ACTIONS(5189), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_RPAREN] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_RBRACK] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_BSLASHpart] = ACTIONS(5189), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddpart] = ACTIONS(5189), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), + [anon_sym_BSLASHchapter] = ACTIONS(5189), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddchap] = ACTIONS(5189), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsection] = ACTIONS(5189), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddsec] = ACTIONS(5189), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubsection] = ACTIONS(5189), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHparagraph] = ACTIONS(5189), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), + [anon_sym_BSLASHitem] = ACTIONS(5189), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5187), + [sym_word] = ACTIONS(5189), + [sym_placeholder] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_STAR] = ACTIONS(5189), + [anon_sym_SLASH] = ACTIONS(5189), + [anon_sym_CARET] = ACTIONS(5189), + [anon_sym__] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5189), + [anon_sym_GT] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_PIPE] = ACTIONS(5189), + [anon_sym_COLON] = ACTIONS(5189), + [anon_sym_SQUOTE] = ACTIONS(5189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), + [anon_sym_DOLLAR] = ACTIONS(5189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5187), + [anon_sym_BSLASHbegin] = ACTIONS(5189), + [anon_sym_BSLASHusepackage] = ACTIONS(5189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), + [anon_sym_BSLASHinclude] = ACTIONS(5189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), + [anon_sym_BSLASHinput] = ACTIONS(5189), + [anon_sym_BSLASHsubfile] = ACTIONS(5189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), + [anon_sym_BSLASHbibliography] = ACTIONS(5189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), + [anon_sym_BSLASHincludesvg] = ACTIONS(5189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), + [anon_sym_BSLASHimport] = ACTIONS(5189), + [anon_sym_BSLASHsubimport] = ACTIONS(5189), + [anon_sym_BSLASHinputfrom] = ACTIONS(5189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), + [anon_sym_BSLASHincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHcaption] = ACTIONS(5189), + [anon_sym_BSLASHcite] = ACTIONS(5189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCite] = ACTIONS(5189), + [anon_sym_BSLASHnocite] = ACTIONS(5189), + [anon_sym_BSLASHcitet] = ACTIONS(5189), + [anon_sym_BSLASHcitep] = ACTIONS(5189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteauthor] = ACTIONS(5189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitetitle] = ACTIONS(5189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteyear] = ACTIONS(5189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitedate] = ACTIONS(5189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteurl] = ACTIONS(5189), + [anon_sym_BSLASHfullcite] = ACTIONS(5189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), + [anon_sym_BSLASHcitealt] = ACTIONS(5189), + [anon_sym_BSLASHcitealp] = ACTIONS(5189), + [anon_sym_BSLASHcitetext] = ACTIONS(5189), + [anon_sym_BSLASHparencite] = ACTIONS(5189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHParencite] = ACTIONS(5189), + [anon_sym_BSLASHfootcite] = ACTIONS(5189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), + [anon_sym_BSLASHtextcite] = ACTIONS(5189), + [anon_sym_BSLASHTextcite] = ACTIONS(5189), + [anon_sym_BSLASHsmartcite] = ACTIONS(5189), + [anon_sym_BSLASHSmartcite] = ACTIONS(5189), + [anon_sym_BSLASHsupercite] = ACTIONS(5189), + [anon_sym_BSLASHautocite] = ACTIONS(5189), + [anon_sym_BSLASHAutocite] = ACTIONS(5189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHvolcite] = ACTIONS(5189), + [anon_sym_BSLASHVolcite] = ACTIONS(5189), + [anon_sym_BSLASHpvolcite] = ACTIONS(5189), + [anon_sym_BSLASHPvolcite] = ACTIONS(5189), + [anon_sym_BSLASHfvolcite] = ACTIONS(5189), + [anon_sym_BSLASHftvolcite] = ACTIONS(5189), + [anon_sym_BSLASHsvolcite] = ACTIONS(5189), + [anon_sym_BSLASHSvolcite] = ACTIONS(5189), + [anon_sym_BSLASHtvolcite] = ACTIONS(5189), + [anon_sym_BSLASHTvolcite] = ACTIONS(5189), + [anon_sym_BSLASHavolcite] = ACTIONS(5189), + [anon_sym_BSLASHAvolcite] = ACTIONS(5189), + [anon_sym_BSLASHnotecite] = ACTIONS(5189), + [anon_sym_BSLASHNotecite] = ACTIONS(5189), + [anon_sym_BSLASHpnotecite] = ACTIONS(5189), + [anon_sym_BSLASHPnotecite] = ACTIONS(5189), + [anon_sym_BSLASHfnotecite] = ACTIONS(5189), + [anon_sym_BSLASHlabel] = ACTIONS(5189), + [anon_sym_BSLASHref] = ACTIONS(5189), + [anon_sym_BSLASHeqref] = ACTIONS(5189), + [anon_sym_BSLASHvref] = ACTIONS(5189), + [anon_sym_BSLASHVref] = ACTIONS(5189), + [anon_sym_BSLASHautoref] = ACTIONS(5189), + [anon_sym_BSLASHpageref] = ACTIONS(5189), + [anon_sym_BSLASHcref] = ACTIONS(5189), + [anon_sym_BSLASHCref] = ACTIONS(5189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnameCref] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHlabelcref] = ACTIONS(5189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCrefrange] = ACTIONS(5189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnewlabel] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), + [anon_sym_BSLASHgls] = ACTIONS(5189), + [anon_sym_BSLASHGls] = ACTIONS(5189), + [anon_sym_BSLASHGLS] = ACTIONS(5189), + [anon_sym_BSLASHglspl] = ACTIONS(5189), + [anon_sym_BSLASHGlspl] = ACTIONS(5189), + [anon_sym_BSLASHGLSpl] = ACTIONS(5189), + [anon_sym_BSLASHglsdisp] = ACTIONS(5189), + [anon_sym_BSLASHglslink] = ACTIONS(5189), + [anon_sym_BSLASHglstext] = ACTIONS(5189), + [anon_sym_BSLASHGlstext] = ACTIONS(5189), + [anon_sym_BSLASHGLStext] = ACTIONS(5189), + [anon_sym_BSLASHglsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), + [anon_sym_BSLASHglsplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSplural] = ACTIONS(5189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHglsname] = ACTIONS(5189), + [anon_sym_BSLASHGlsname] = ACTIONS(5189), + [anon_sym_BSLASHGLSname] = ACTIONS(5189), + [anon_sym_BSLASHglssymbol] = ACTIONS(5189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), + [anon_sym_BSLASHglsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), + [anon_sym_BSLASHglsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), + [anon_sym_BSLASHglsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), + [anon_sym_BSLASHglsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), + [anon_sym_BSLASHglsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), + [anon_sym_BSLASHnewacronym] = ACTIONS(5189), + [anon_sym_BSLASHacrshort] = ACTIONS(5189), + [anon_sym_BSLASHAcrshort] = ACTIONS(5189), + [anon_sym_BSLASHACRshort] = ACTIONS(5189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), + [anon_sym_BSLASHacrlong] = ACTIONS(5189), + [anon_sym_BSLASHAcrlong] = ACTIONS(5189), + [anon_sym_BSLASHACRlong] = ACTIONS(5189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), + [anon_sym_BSLASHacrfull] = ACTIONS(5189), + [anon_sym_BSLASHAcrfull] = ACTIONS(5189), + [anon_sym_BSLASHACRfull] = ACTIONS(5189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), + [anon_sym_BSLASHacs] = ACTIONS(5189), + [anon_sym_BSLASHAcs] = ACTIONS(5189), + [anon_sym_BSLASHacsp] = ACTIONS(5189), + [anon_sym_BSLASHAcsp] = ACTIONS(5189), + [anon_sym_BSLASHacl] = ACTIONS(5189), + [anon_sym_BSLASHAcl] = ACTIONS(5189), + [anon_sym_BSLASHaclp] = ACTIONS(5189), + [anon_sym_BSLASHAclp] = ACTIONS(5189), + [anon_sym_BSLASHacf] = ACTIONS(5189), + [anon_sym_BSLASHAcf] = ACTIONS(5189), + [anon_sym_BSLASHacfp] = ACTIONS(5189), + [anon_sym_BSLASHAcfp] = ACTIONS(5189), + [anon_sym_BSLASHac] = ACTIONS(5189), + [anon_sym_BSLASHAc] = ACTIONS(5189), + [anon_sym_BSLASHacp] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), + [anon_sym_BSLASHcolor] = ACTIONS(5189), + [anon_sym_BSLASHcolorbox] = ACTIONS(5189), + [anon_sym_BSLASHtextcolor] = ACTIONS(5189), + [anon_sym_BSLASHpagecolor] = ACTIONS(5189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), + [anon_sym_BSLASHtext] = ACTIONS(5189), + [anon_sym_BSLASHintertext] = ACTIONS(5189), + [anon_sym_shortintertext] = ACTIONS(5189), }, - [1173] = { - [sym_command_name] = ACTIONS(5085), + [1065] = { + [sym_command_name] = ACTIONS(5185), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_BSLASHpart] = ACTIONS(5085), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddpart] = ACTIONS(5085), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), - [anon_sym_BSLASHchapter] = ACTIONS(5085), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddchap] = ACTIONS(5085), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsection] = ACTIONS(5085), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHaddsec] = ACTIONS(5085), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), - [anon_sym_BSLASHparagraph] = ACTIONS(5085), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), - [anon_sym_BSLASHitem] = ACTIONS(5085), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASHbegin] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), + [anon_sym_BSLASHiffalse] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5183), + [anon_sym_RPAREN] = ACTIONS(5183), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_RBRACK] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_BSLASHpart] = ACTIONS(5185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddpart] = ACTIONS(5185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), + [anon_sym_BSLASHchapter] = ACTIONS(5185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddchap] = ACTIONS(5185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsection] = ACTIONS(5185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddsec] = ACTIONS(5185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubsection] = ACTIONS(5185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHparagraph] = ACTIONS(5185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), + [anon_sym_BSLASHitem] = ACTIONS(5185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5183), + [sym_word] = ACTIONS(5185), + [sym_placeholder] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_CARET] = ACTIONS(5185), + [anon_sym__] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_COLON] = ACTIONS(5185), + [anon_sym_SQUOTE] = ACTIONS(5185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), + [anon_sym_DOLLAR] = ACTIONS(5185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5183), + [anon_sym_BSLASHbegin] = ACTIONS(5185), + [anon_sym_BSLASHusepackage] = ACTIONS(5185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), + [anon_sym_BSLASHinclude] = ACTIONS(5185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), + [anon_sym_BSLASHinput] = ACTIONS(5185), + [anon_sym_BSLASHsubfile] = ACTIONS(5185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), + [anon_sym_BSLASHbibliography] = ACTIONS(5185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), + [anon_sym_BSLASHincludesvg] = ACTIONS(5185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), + [anon_sym_BSLASHimport] = ACTIONS(5185), + [anon_sym_BSLASHsubimport] = ACTIONS(5185), + [anon_sym_BSLASHinputfrom] = ACTIONS(5185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), + [anon_sym_BSLASHincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHcaption] = ACTIONS(5185), + [anon_sym_BSLASHcite] = ACTIONS(5185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCite] = ACTIONS(5185), + [anon_sym_BSLASHnocite] = ACTIONS(5185), + [anon_sym_BSLASHcitet] = ACTIONS(5185), + [anon_sym_BSLASHcitep] = ACTIONS(5185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteauthor] = ACTIONS(5185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitetitle] = ACTIONS(5185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteyear] = ACTIONS(5185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitedate] = ACTIONS(5185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteurl] = ACTIONS(5185), + [anon_sym_BSLASHfullcite] = ACTIONS(5185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), + [anon_sym_BSLASHcitealt] = ACTIONS(5185), + [anon_sym_BSLASHcitealp] = ACTIONS(5185), + [anon_sym_BSLASHcitetext] = ACTIONS(5185), + [anon_sym_BSLASHparencite] = ACTIONS(5185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHParencite] = ACTIONS(5185), + [anon_sym_BSLASHfootcite] = ACTIONS(5185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), + [anon_sym_BSLASHtextcite] = ACTIONS(5185), + [anon_sym_BSLASHTextcite] = ACTIONS(5185), + [anon_sym_BSLASHsmartcite] = ACTIONS(5185), + [anon_sym_BSLASHSmartcite] = ACTIONS(5185), + [anon_sym_BSLASHsupercite] = ACTIONS(5185), + [anon_sym_BSLASHautocite] = ACTIONS(5185), + [anon_sym_BSLASHAutocite] = ACTIONS(5185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHvolcite] = ACTIONS(5185), + [anon_sym_BSLASHVolcite] = ACTIONS(5185), + [anon_sym_BSLASHpvolcite] = ACTIONS(5185), + [anon_sym_BSLASHPvolcite] = ACTIONS(5185), + [anon_sym_BSLASHfvolcite] = ACTIONS(5185), + [anon_sym_BSLASHftvolcite] = ACTIONS(5185), + [anon_sym_BSLASHsvolcite] = ACTIONS(5185), + [anon_sym_BSLASHSvolcite] = ACTIONS(5185), + [anon_sym_BSLASHtvolcite] = ACTIONS(5185), + [anon_sym_BSLASHTvolcite] = ACTIONS(5185), + [anon_sym_BSLASHavolcite] = ACTIONS(5185), + [anon_sym_BSLASHAvolcite] = ACTIONS(5185), + [anon_sym_BSLASHnotecite] = ACTIONS(5185), + [anon_sym_BSLASHNotecite] = ACTIONS(5185), + [anon_sym_BSLASHpnotecite] = ACTIONS(5185), + [anon_sym_BSLASHPnotecite] = ACTIONS(5185), + [anon_sym_BSLASHfnotecite] = ACTIONS(5185), + [anon_sym_BSLASHlabel] = ACTIONS(5185), + [anon_sym_BSLASHref] = ACTIONS(5185), + [anon_sym_BSLASHeqref] = ACTIONS(5185), + [anon_sym_BSLASHvref] = ACTIONS(5185), + [anon_sym_BSLASHVref] = ACTIONS(5185), + [anon_sym_BSLASHautoref] = ACTIONS(5185), + [anon_sym_BSLASHpageref] = ACTIONS(5185), + [anon_sym_BSLASHcref] = ACTIONS(5185), + [anon_sym_BSLASHCref] = ACTIONS(5185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnameCref] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHlabelcref] = ACTIONS(5185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCrefrange] = ACTIONS(5185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnewlabel] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), + [anon_sym_BSLASHdef] = ACTIONS(5185), + [anon_sym_BSLASHlet] = ACTIONS(5185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), + [anon_sym_BSLASHgls] = ACTIONS(5185), + [anon_sym_BSLASHGls] = ACTIONS(5185), + [anon_sym_BSLASHGLS] = ACTIONS(5185), + [anon_sym_BSLASHglspl] = ACTIONS(5185), + [anon_sym_BSLASHGlspl] = ACTIONS(5185), + [anon_sym_BSLASHGLSpl] = ACTIONS(5185), + [anon_sym_BSLASHglsdisp] = ACTIONS(5185), + [anon_sym_BSLASHglslink] = ACTIONS(5185), + [anon_sym_BSLASHglstext] = ACTIONS(5185), + [anon_sym_BSLASHGlstext] = ACTIONS(5185), + [anon_sym_BSLASHGLStext] = ACTIONS(5185), + [anon_sym_BSLASHglsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), + [anon_sym_BSLASHglsplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSplural] = ACTIONS(5185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHglsname] = ACTIONS(5185), + [anon_sym_BSLASHGlsname] = ACTIONS(5185), + [anon_sym_BSLASHGLSname] = ACTIONS(5185), + [anon_sym_BSLASHglssymbol] = ACTIONS(5185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), + [anon_sym_BSLASHglsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), + [anon_sym_BSLASHglsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), + [anon_sym_BSLASHglsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), + [anon_sym_BSLASHglsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), + [anon_sym_BSLASHglsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), + [anon_sym_BSLASHnewacronym] = ACTIONS(5185), + [anon_sym_BSLASHacrshort] = ACTIONS(5185), + [anon_sym_BSLASHAcrshort] = ACTIONS(5185), + [anon_sym_BSLASHACRshort] = ACTIONS(5185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), + [anon_sym_BSLASHacrlong] = ACTIONS(5185), + [anon_sym_BSLASHAcrlong] = ACTIONS(5185), + [anon_sym_BSLASHACRlong] = ACTIONS(5185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), + [anon_sym_BSLASHacrfull] = ACTIONS(5185), + [anon_sym_BSLASHAcrfull] = ACTIONS(5185), + [anon_sym_BSLASHACRfull] = ACTIONS(5185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), + [anon_sym_BSLASHacs] = ACTIONS(5185), + [anon_sym_BSLASHAcs] = ACTIONS(5185), + [anon_sym_BSLASHacsp] = ACTIONS(5185), + [anon_sym_BSLASHAcsp] = ACTIONS(5185), + [anon_sym_BSLASHacl] = ACTIONS(5185), + [anon_sym_BSLASHAcl] = ACTIONS(5185), + [anon_sym_BSLASHaclp] = ACTIONS(5185), + [anon_sym_BSLASHAclp] = ACTIONS(5185), + [anon_sym_BSLASHacf] = ACTIONS(5185), + [anon_sym_BSLASHAcf] = ACTIONS(5185), + [anon_sym_BSLASHacfp] = ACTIONS(5185), + [anon_sym_BSLASHAcfp] = ACTIONS(5185), + [anon_sym_BSLASHac] = ACTIONS(5185), + [anon_sym_BSLASHAc] = ACTIONS(5185), + [anon_sym_BSLASHacp] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), + [anon_sym_BSLASHcolor] = ACTIONS(5185), + [anon_sym_BSLASHcolorbox] = ACTIONS(5185), + [anon_sym_BSLASHtextcolor] = ACTIONS(5185), + [anon_sym_BSLASHpagecolor] = ACTIONS(5185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), + [anon_sym_BSLASHtext] = ACTIONS(5185), + [anon_sym_BSLASHintertext] = ACTIONS(5185), + [anon_sym_shortintertext] = ACTIONS(5185), }, - [1174] = { - [sym_command_name] = ACTIONS(5097), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5097), - [anon_sym_LPAREN] = ACTIONS(5095), - [anon_sym_RPAREN] = ACTIONS(5095), - [anon_sym_LBRACK] = ACTIONS(5095), - [anon_sym_RBRACK] = ACTIONS(5095), - [anon_sym_COMMA] = ACTIONS(5095), - [anon_sym_EQ] = ACTIONS(5095), - [anon_sym_BSLASHpart] = ACTIONS(5097), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddpart] = ACTIONS(5097), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), - [anon_sym_BSLASHchapter] = ACTIONS(5097), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddchap] = ACTIONS(5097), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsection] = ACTIONS(5097), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHaddsec] = ACTIONS(5097), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), - [anon_sym_BSLASHparagraph] = ACTIONS(5097), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), - [anon_sym_BSLASHitem] = ACTIONS(5097), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), - [anon_sym_LBRACE] = ACTIONS(5095), - [sym_word] = ACTIONS(5097), - [sym_placeholder] = ACTIONS(5095), - [anon_sym_PLUS] = ACTIONS(5097), - [anon_sym_DASH] = ACTIONS(5097), - [anon_sym_STAR] = ACTIONS(5097), - [anon_sym_SLASH] = ACTIONS(5097), - [anon_sym_CARET] = ACTIONS(5097), - [anon_sym__] = ACTIONS(5097), - [anon_sym_LT] = ACTIONS(5097), - [anon_sym_GT] = ACTIONS(5097), - [anon_sym_BANG] = ACTIONS(5097), - [anon_sym_PIPE] = ACTIONS(5097), - [anon_sym_COLON] = ACTIONS(5097), - [anon_sym_SQUOTE] = ACTIONS(5097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(5097), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), - [anon_sym_BSLASHbegin] = ACTIONS(5097), - [anon_sym_BSLASHusepackage] = ACTIONS(5097), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), - [anon_sym_BSLASHinclude] = ACTIONS(5097), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), - [anon_sym_BSLASHinput] = ACTIONS(5097), - [anon_sym_BSLASHsubfile] = ACTIONS(5097), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), - [anon_sym_BSLASHbibliography] = ACTIONS(5097), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), - [anon_sym_BSLASHincludesvg] = ACTIONS(5097), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), - [anon_sym_BSLASHimport] = ACTIONS(5097), - [anon_sym_BSLASHsubimport] = ACTIONS(5097), - [anon_sym_BSLASHinputfrom] = ACTIONS(5097), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), - [anon_sym_BSLASHincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), - [anon_sym_BSLASHcaption] = ACTIONS(5097), - [anon_sym_BSLASHcite] = ACTIONS(5097), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCite] = ACTIONS(5097), - [anon_sym_BSLASHnocite] = ACTIONS(5097), - [anon_sym_BSLASHcitet] = ACTIONS(5097), - [anon_sym_BSLASHcitep] = ACTIONS(5097), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteauthor] = ACTIONS(5097), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitetitle] = ACTIONS(5097), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteyear] = ACTIONS(5097), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), - [anon_sym_BSLASHcitedate] = ACTIONS(5097), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), - [anon_sym_BSLASHciteurl] = ACTIONS(5097), - [anon_sym_BSLASHfullcite] = ACTIONS(5097), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), - [anon_sym_BSLASHcitealt] = ACTIONS(5097), - [anon_sym_BSLASHcitealp] = ACTIONS(5097), - [anon_sym_BSLASHcitetext] = ACTIONS(5097), - [anon_sym_BSLASHparencite] = ACTIONS(5097), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHParencite] = ACTIONS(5097), - [anon_sym_BSLASHfootcite] = ACTIONS(5097), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), - [anon_sym_BSLASHtextcite] = ACTIONS(5097), - [anon_sym_BSLASHTextcite] = ACTIONS(5097), - [anon_sym_BSLASHsmartcite] = ACTIONS(5097), - [anon_sym_BSLASHSmartcite] = ACTIONS(5097), - [anon_sym_BSLASHsupercite] = ACTIONS(5097), - [anon_sym_BSLASHautocite] = ACTIONS(5097), - [anon_sym_BSLASHAutocite] = ACTIONS(5097), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), - [anon_sym_BSLASHvolcite] = ACTIONS(5097), - [anon_sym_BSLASHVolcite] = ACTIONS(5097), - [anon_sym_BSLASHpvolcite] = ACTIONS(5097), - [anon_sym_BSLASHPvolcite] = ACTIONS(5097), - [anon_sym_BSLASHfvolcite] = ACTIONS(5097), - [anon_sym_BSLASHftvolcite] = ACTIONS(5097), - [anon_sym_BSLASHsvolcite] = ACTIONS(5097), - [anon_sym_BSLASHSvolcite] = ACTIONS(5097), - [anon_sym_BSLASHtvolcite] = ACTIONS(5097), - [anon_sym_BSLASHTvolcite] = ACTIONS(5097), - [anon_sym_BSLASHavolcite] = ACTIONS(5097), - [anon_sym_BSLASHAvolcite] = ACTIONS(5097), - [anon_sym_BSLASHnotecite] = ACTIONS(5097), - [anon_sym_BSLASHNotecite] = ACTIONS(5097), - [anon_sym_BSLASHpnotecite] = ACTIONS(5097), - [anon_sym_BSLASHPnotecite] = ACTIONS(5097), - [anon_sym_BSLASHfnotecite] = ACTIONS(5097), - [anon_sym_BSLASHlabel] = ACTIONS(5097), - [anon_sym_BSLASHref] = ACTIONS(5097), - [anon_sym_BSLASHeqref] = ACTIONS(5097), - [anon_sym_BSLASHvref] = ACTIONS(5097), - [anon_sym_BSLASHVref] = ACTIONS(5097), - [anon_sym_BSLASHautoref] = ACTIONS(5097), - [anon_sym_BSLASHpageref] = ACTIONS(5097), - [anon_sym_BSLASHcref] = ACTIONS(5097), - [anon_sym_BSLASHCref] = ACTIONS(5097), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnameCref] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), - [anon_sym_BSLASHlabelcref] = ACTIONS(5097), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange] = ACTIONS(5097), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHCrefrange] = ACTIONS(5097), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), - [anon_sym_BSLASHnewlabel] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand] = ACTIONS(5097), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), - [anon_sym_BSLASHdef] = ACTIONS(5097), - [anon_sym_BSLASHlet] = ACTIONS(5097), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), - [anon_sym_BSLASHgls] = ACTIONS(5097), - [anon_sym_BSLASHGls] = ACTIONS(5097), - [anon_sym_BSLASHGLS] = ACTIONS(5097), - [anon_sym_BSLASHglspl] = ACTIONS(5097), - [anon_sym_BSLASHGlspl] = ACTIONS(5097), - [anon_sym_BSLASHGLSpl] = ACTIONS(5097), - [anon_sym_BSLASHglsdisp] = ACTIONS(5097), - [anon_sym_BSLASHglslink] = ACTIONS(5097), - [anon_sym_BSLASHglstext] = ACTIONS(5097), - [anon_sym_BSLASHGlstext] = ACTIONS(5097), - [anon_sym_BSLASHGLStext] = ACTIONS(5097), - [anon_sym_BSLASHglsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), - [anon_sym_BSLASHglsplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSplural] = ACTIONS(5097), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), - [anon_sym_BSLASHglsname] = ACTIONS(5097), - [anon_sym_BSLASHGlsname] = ACTIONS(5097), - [anon_sym_BSLASHGLSname] = ACTIONS(5097), - [anon_sym_BSLASHglssymbol] = ACTIONS(5097), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), - [anon_sym_BSLASHglsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), - [anon_sym_BSLASHglsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), - [anon_sym_BSLASHglsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), - [anon_sym_BSLASHglsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), - [anon_sym_BSLASHglsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), - [anon_sym_BSLASHnewacronym] = ACTIONS(5097), - [anon_sym_BSLASHacrshort] = ACTIONS(5097), - [anon_sym_BSLASHAcrshort] = ACTIONS(5097), - [anon_sym_BSLASHACRshort] = ACTIONS(5097), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), - [anon_sym_BSLASHacrlong] = ACTIONS(5097), - [anon_sym_BSLASHAcrlong] = ACTIONS(5097), - [anon_sym_BSLASHACRlong] = ACTIONS(5097), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), - [anon_sym_BSLASHacrfull] = ACTIONS(5097), - [anon_sym_BSLASHAcrfull] = ACTIONS(5097), - [anon_sym_BSLASHACRfull] = ACTIONS(5097), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), - [anon_sym_BSLASHacs] = ACTIONS(5097), - [anon_sym_BSLASHAcs] = ACTIONS(5097), - [anon_sym_BSLASHacsp] = ACTIONS(5097), - [anon_sym_BSLASHAcsp] = ACTIONS(5097), - [anon_sym_BSLASHacl] = ACTIONS(5097), - [anon_sym_BSLASHAcl] = ACTIONS(5097), - [anon_sym_BSLASHaclp] = ACTIONS(5097), - [anon_sym_BSLASHAclp] = ACTIONS(5097), - [anon_sym_BSLASHacf] = ACTIONS(5097), - [anon_sym_BSLASHAcf] = ACTIONS(5097), - [anon_sym_BSLASHacfp] = ACTIONS(5097), - [anon_sym_BSLASHAcfp] = ACTIONS(5097), - [anon_sym_BSLASHac] = ACTIONS(5097), - [anon_sym_BSLASHAc] = ACTIONS(5097), - [anon_sym_BSLASHacp] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), - [anon_sym_BSLASHcolor] = ACTIONS(5097), - [anon_sym_BSLASHcolorbox] = ACTIONS(5097), - [anon_sym_BSLASHtextcolor] = ACTIONS(5097), - [anon_sym_BSLASHpagecolor] = ACTIONS(5097), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), + [1066] = { + [sym_command_name] = ACTIONS(5181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5179), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_RBRACK] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_BSLASHpart] = ACTIONS(5181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddpart] = ACTIONS(5181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5179), + [anon_sym_BSLASHchapter] = ACTIONS(5181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddchap] = ACTIONS(5181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsection] = ACTIONS(5181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddsec] = ACTIONS(5181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubsection] = ACTIONS(5181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHparagraph] = ACTIONS(5181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5179), + [anon_sym_BSLASHitem] = ACTIONS(5181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5179), + [sym_word] = ACTIONS(5181), + [sym_placeholder] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5181), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_CARET] = ACTIONS(5181), + [anon_sym__] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_COLON] = ACTIONS(5181), + [anon_sym_SQUOTE] = ACTIONS(5181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), + [anon_sym_DOLLAR] = ACTIONS(5181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5179), + [anon_sym_BSLASHbegin] = ACTIONS(5181), + [anon_sym_BSLASHusepackage] = ACTIONS(5181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), + [anon_sym_BSLASHinclude] = ACTIONS(5181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), + [anon_sym_BSLASHinput] = ACTIONS(5181), + [anon_sym_BSLASHsubfile] = ACTIONS(5181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), + [anon_sym_BSLASHbibliography] = ACTIONS(5181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), + [anon_sym_BSLASHincludesvg] = ACTIONS(5181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), + [anon_sym_BSLASHimport] = ACTIONS(5181), + [anon_sym_BSLASHsubimport] = ACTIONS(5181), + [anon_sym_BSLASHinputfrom] = ACTIONS(5181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), + [anon_sym_BSLASHincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHcaption] = ACTIONS(5181), + [anon_sym_BSLASHcite] = ACTIONS(5181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCite] = ACTIONS(5181), + [anon_sym_BSLASHnocite] = ACTIONS(5181), + [anon_sym_BSLASHcitet] = ACTIONS(5181), + [anon_sym_BSLASHcitep] = ACTIONS(5181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteauthor] = ACTIONS(5181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitetitle] = ACTIONS(5181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteyear] = ACTIONS(5181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitedate] = ACTIONS(5181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteurl] = ACTIONS(5181), + [anon_sym_BSLASHfullcite] = ACTIONS(5181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), + [anon_sym_BSLASHcitealt] = ACTIONS(5181), + [anon_sym_BSLASHcitealp] = ACTIONS(5181), + [anon_sym_BSLASHcitetext] = ACTIONS(5181), + [anon_sym_BSLASHparencite] = ACTIONS(5181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHParencite] = ACTIONS(5181), + [anon_sym_BSLASHfootcite] = ACTIONS(5181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), + [anon_sym_BSLASHtextcite] = ACTIONS(5181), + [anon_sym_BSLASHTextcite] = ACTIONS(5181), + [anon_sym_BSLASHsmartcite] = ACTIONS(5181), + [anon_sym_BSLASHSmartcite] = ACTIONS(5181), + [anon_sym_BSLASHsupercite] = ACTIONS(5181), + [anon_sym_BSLASHautocite] = ACTIONS(5181), + [anon_sym_BSLASHAutocite] = ACTIONS(5181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHvolcite] = ACTIONS(5181), + [anon_sym_BSLASHVolcite] = ACTIONS(5181), + [anon_sym_BSLASHpvolcite] = ACTIONS(5181), + [anon_sym_BSLASHPvolcite] = ACTIONS(5181), + [anon_sym_BSLASHfvolcite] = ACTIONS(5181), + [anon_sym_BSLASHftvolcite] = ACTIONS(5181), + [anon_sym_BSLASHsvolcite] = ACTIONS(5181), + [anon_sym_BSLASHSvolcite] = ACTIONS(5181), + [anon_sym_BSLASHtvolcite] = ACTIONS(5181), + [anon_sym_BSLASHTvolcite] = ACTIONS(5181), + [anon_sym_BSLASHavolcite] = ACTIONS(5181), + [anon_sym_BSLASHAvolcite] = ACTIONS(5181), + [anon_sym_BSLASHnotecite] = ACTIONS(5181), + [anon_sym_BSLASHNotecite] = ACTIONS(5181), + [anon_sym_BSLASHpnotecite] = ACTIONS(5181), + [anon_sym_BSLASHPnotecite] = ACTIONS(5181), + [anon_sym_BSLASHfnotecite] = ACTIONS(5181), + [anon_sym_BSLASHlabel] = ACTIONS(5181), + [anon_sym_BSLASHref] = ACTIONS(5181), + [anon_sym_BSLASHeqref] = ACTIONS(5181), + [anon_sym_BSLASHvref] = ACTIONS(5181), + [anon_sym_BSLASHVref] = ACTIONS(5181), + [anon_sym_BSLASHautoref] = ACTIONS(5181), + [anon_sym_BSLASHpageref] = ACTIONS(5181), + [anon_sym_BSLASHcref] = ACTIONS(5181), + [anon_sym_BSLASHCref] = ACTIONS(5181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnameCref] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHlabelcref] = ACTIONS(5181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnewlabel] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), + [anon_sym_BSLASHdef] = ACTIONS(5181), + [anon_sym_BSLASHlet] = ACTIONS(5181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), + [anon_sym_BSLASHgls] = ACTIONS(5181), + [anon_sym_BSLASHGls] = ACTIONS(5181), + [anon_sym_BSLASHGLS] = ACTIONS(5181), + [anon_sym_BSLASHglspl] = ACTIONS(5181), + [anon_sym_BSLASHGlspl] = ACTIONS(5181), + [anon_sym_BSLASHGLSpl] = ACTIONS(5181), + [anon_sym_BSLASHglsdisp] = ACTIONS(5181), + [anon_sym_BSLASHglslink] = ACTIONS(5181), + [anon_sym_BSLASHglstext] = ACTIONS(5181), + [anon_sym_BSLASHGlstext] = ACTIONS(5181), + [anon_sym_BSLASHGLStext] = ACTIONS(5181), + [anon_sym_BSLASHglsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), + [anon_sym_BSLASHglsplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSplural] = ACTIONS(5181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHglsname] = ACTIONS(5181), + [anon_sym_BSLASHGlsname] = ACTIONS(5181), + [anon_sym_BSLASHGLSname] = ACTIONS(5181), + [anon_sym_BSLASHglssymbol] = ACTIONS(5181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), + [anon_sym_BSLASHglsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), + [anon_sym_BSLASHglsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), + [anon_sym_BSLASHglsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), + [anon_sym_BSLASHglsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), + [anon_sym_BSLASHglsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), + [anon_sym_BSLASHnewacronym] = ACTIONS(5181), + [anon_sym_BSLASHacrshort] = ACTIONS(5181), + [anon_sym_BSLASHAcrshort] = ACTIONS(5181), + [anon_sym_BSLASHACRshort] = ACTIONS(5181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), + [anon_sym_BSLASHacrlong] = ACTIONS(5181), + [anon_sym_BSLASHAcrlong] = ACTIONS(5181), + [anon_sym_BSLASHACRlong] = ACTIONS(5181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), + [anon_sym_BSLASHacrfull] = ACTIONS(5181), + [anon_sym_BSLASHAcrfull] = ACTIONS(5181), + [anon_sym_BSLASHACRfull] = ACTIONS(5181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), + [anon_sym_BSLASHacs] = ACTIONS(5181), + [anon_sym_BSLASHAcs] = ACTIONS(5181), + [anon_sym_BSLASHacsp] = ACTIONS(5181), + [anon_sym_BSLASHAcsp] = ACTIONS(5181), + [anon_sym_BSLASHacl] = ACTIONS(5181), + [anon_sym_BSLASHAcl] = ACTIONS(5181), + [anon_sym_BSLASHaclp] = ACTIONS(5181), + [anon_sym_BSLASHAclp] = ACTIONS(5181), + [anon_sym_BSLASHacf] = ACTIONS(5181), + [anon_sym_BSLASHAcf] = ACTIONS(5181), + [anon_sym_BSLASHacfp] = ACTIONS(5181), + [anon_sym_BSLASHAcfp] = ACTIONS(5181), + [anon_sym_BSLASHac] = ACTIONS(5181), + [anon_sym_BSLASHAc] = ACTIONS(5181), + [anon_sym_BSLASHacp] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), + [anon_sym_BSLASHcolor] = ACTIONS(5181), + [anon_sym_BSLASHcolorbox] = ACTIONS(5181), + [anon_sym_BSLASHtextcolor] = ACTIONS(5181), + [anon_sym_BSLASHpagecolor] = ACTIONS(5181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), + [anon_sym_BSLASHtext] = ACTIONS(5181), + [anon_sym_BSLASHintertext] = ACTIONS(5181), + [anon_sym_shortintertext] = ACTIONS(5181), }, - [1175] = { + [1067] = { + [sym_command_name] = ACTIONS(5177), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5175), + [anon_sym_RPAREN] = ACTIONS(5175), + [anon_sym_LBRACK] = ACTIONS(5175), + [anon_sym_RBRACK] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_BSLASHpart] = ACTIONS(5177), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddpart] = ACTIONS(5177), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5175), + [anon_sym_BSLASHchapter] = ACTIONS(5177), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddchap] = ACTIONS(5177), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsection] = ACTIONS(5177), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddsec] = ACTIONS(5177), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubsection] = ACTIONS(5177), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5177), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHparagraph] = ACTIONS(5177), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5175), + [anon_sym_BSLASHitem] = ACTIONS(5177), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5175), + [sym_word] = ACTIONS(5177), + [sym_placeholder] = ACTIONS(5175), + [anon_sym_PLUS] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5177), + [anon_sym_SLASH] = ACTIONS(5177), + [anon_sym_CARET] = ACTIONS(5177), + [anon_sym__] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5177), + [anon_sym_GT] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5177), + [anon_sym_PIPE] = ACTIONS(5177), + [anon_sym_COLON] = ACTIONS(5177), + [anon_sym_SQUOTE] = ACTIONS(5177), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), + [anon_sym_DOLLAR] = ACTIONS(5177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5175), + [anon_sym_BSLASHbegin] = ACTIONS(5177), + [anon_sym_BSLASHusepackage] = ACTIONS(5177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), + [anon_sym_BSLASHinclude] = ACTIONS(5177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), + [anon_sym_BSLASHinput] = ACTIONS(5177), + [anon_sym_BSLASHsubfile] = ACTIONS(5177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), + [anon_sym_BSLASHbibliography] = ACTIONS(5177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), + [anon_sym_BSLASHincludesvg] = ACTIONS(5177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), + [anon_sym_BSLASHimport] = ACTIONS(5177), + [anon_sym_BSLASHsubimport] = ACTIONS(5177), + [anon_sym_BSLASHinputfrom] = ACTIONS(5177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), + [anon_sym_BSLASHincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHcaption] = ACTIONS(5177), + [anon_sym_BSLASHcite] = ACTIONS(5177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCite] = ACTIONS(5177), + [anon_sym_BSLASHnocite] = ACTIONS(5177), + [anon_sym_BSLASHcitet] = ACTIONS(5177), + [anon_sym_BSLASHcitep] = ACTIONS(5177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteauthor] = ACTIONS(5177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitetitle] = ACTIONS(5177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteyear] = ACTIONS(5177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitedate] = ACTIONS(5177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteurl] = ACTIONS(5177), + [anon_sym_BSLASHfullcite] = ACTIONS(5177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), + [anon_sym_BSLASHcitealt] = ACTIONS(5177), + [anon_sym_BSLASHcitealp] = ACTIONS(5177), + [anon_sym_BSLASHcitetext] = ACTIONS(5177), + [anon_sym_BSLASHparencite] = ACTIONS(5177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHParencite] = ACTIONS(5177), + [anon_sym_BSLASHfootcite] = ACTIONS(5177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), + [anon_sym_BSLASHtextcite] = ACTIONS(5177), + [anon_sym_BSLASHTextcite] = ACTIONS(5177), + [anon_sym_BSLASHsmartcite] = ACTIONS(5177), + [anon_sym_BSLASHSmartcite] = ACTIONS(5177), + [anon_sym_BSLASHsupercite] = ACTIONS(5177), + [anon_sym_BSLASHautocite] = ACTIONS(5177), + [anon_sym_BSLASHAutocite] = ACTIONS(5177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHvolcite] = ACTIONS(5177), + [anon_sym_BSLASHVolcite] = ACTIONS(5177), + [anon_sym_BSLASHpvolcite] = ACTIONS(5177), + [anon_sym_BSLASHPvolcite] = ACTIONS(5177), + [anon_sym_BSLASHfvolcite] = ACTIONS(5177), + [anon_sym_BSLASHftvolcite] = ACTIONS(5177), + [anon_sym_BSLASHsvolcite] = ACTIONS(5177), + [anon_sym_BSLASHSvolcite] = ACTIONS(5177), + [anon_sym_BSLASHtvolcite] = ACTIONS(5177), + [anon_sym_BSLASHTvolcite] = ACTIONS(5177), + [anon_sym_BSLASHavolcite] = ACTIONS(5177), + [anon_sym_BSLASHAvolcite] = ACTIONS(5177), + [anon_sym_BSLASHnotecite] = ACTIONS(5177), + [anon_sym_BSLASHNotecite] = ACTIONS(5177), + [anon_sym_BSLASHpnotecite] = ACTIONS(5177), + [anon_sym_BSLASHPnotecite] = ACTIONS(5177), + [anon_sym_BSLASHfnotecite] = ACTIONS(5177), + [anon_sym_BSLASHlabel] = ACTIONS(5177), + [anon_sym_BSLASHref] = ACTIONS(5177), + [anon_sym_BSLASHeqref] = ACTIONS(5177), + [anon_sym_BSLASHvref] = ACTIONS(5177), + [anon_sym_BSLASHVref] = ACTIONS(5177), + [anon_sym_BSLASHautoref] = ACTIONS(5177), + [anon_sym_BSLASHpageref] = ACTIONS(5177), + [anon_sym_BSLASHcref] = ACTIONS(5177), + [anon_sym_BSLASHCref] = ACTIONS(5177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnameCref] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHlabelcref] = ACTIONS(5177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCrefrange] = ACTIONS(5177), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnewlabel] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), + [anon_sym_BSLASHdef] = ACTIONS(5177), + [anon_sym_BSLASHlet] = ACTIONS(5177), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), + [anon_sym_BSLASHgls] = ACTIONS(5177), + [anon_sym_BSLASHGls] = ACTIONS(5177), + [anon_sym_BSLASHGLS] = ACTIONS(5177), + [anon_sym_BSLASHglspl] = ACTIONS(5177), + [anon_sym_BSLASHGlspl] = ACTIONS(5177), + [anon_sym_BSLASHGLSpl] = ACTIONS(5177), + [anon_sym_BSLASHglsdisp] = ACTIONS(5177), + [anon_sym_BSLASHglslink] = ACTIONS(5177), + [anon_sym_BSLASHglstext] = ACTIONS(5177), + [anon_sym_BSLASHGlstext] = ACTIONS(5177), + [anon_sym_BSLASHGLStext] = ACTIONS(5177), + [anon_sym_BSLASHglsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), + [anon_sym_BSLASHglsplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSplural] = ACTIONS(5177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHglsname] = ACTIONS(5177), + [anon_sym_BSLASHGlsname] = ACTIONS(5177), + [anon_sym_BSLASHGLSname] = ACTIONS(5177), + [anon_sym_BSLASHglssymbol] = ACTIONS(5177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), + [anon_sym_BSLASHglsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), + [anon_sym_BSLASHglsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), + [anon_sym_BSLASHglsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), + [anon_sym_BSLASHglsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), + [anon_sym_BSLASHglsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), + [anon_sym_BSLASHnewacronym] = ACTIONS(5177), + [anon_sym_BSLASHacrshort] = ACTIONS(5177), + [anon_sym_BSLASHAcrshort] = ACTIONS(5177), + [anon_sym_BSLASHACRshort] = ACTIONS(5177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), + [anon_sym_BSLASHacrlong] = ACTIONS(5177), + [anon_sym_BSLASHAcrlong] = ACTIONS(5177), + [anon_sym_BSLASHACRlong] = ACTIONS(5177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), + [anon_sym_BSLASHacrfull] = ACTIONS(5177), + [anon_sym_BSLASHAcrfull] = ACTIONS(5177), + [anon_sym_BSLASHACRfull] = ACTIONS(5177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), + [anon_sym_BSLASHacs] = ACTIONS(5177), + [anon_sym_BSLASHAcs] = ACTIONS(5177), + [anon_sym_BSLASHacsp] = ACTIONS(5177), + [anon_sym_BSLASHAcsp] = ACTIONS(5177), + [anon_sym_BSLASHacl] = ACTIONS(5177), + [anon_sym_BSLASHAcl] = ACTIONS(5177), + [anon_sym_BSLASHaclp] = ACTIONS(5177), + [anon_sym_BSLASHAclp] = ACTIONS(5177), + [anon_sym_BSLASHacf] = ACTIONS(5177), + [anon_sym_BSLASHAcf] = ACTIONS(5177), + [anon_sym_BSLASHacfp] = ACTIONS(5177), + [anon_sym_BSLASHAcfp] = ACTIONS(5177), + [anon_sym_BSLASHac] = ACTIONS(5177), + [anon_sym_BSLASHAc] = ACTIONS(5177), + [anon_sym_BSLASHacp] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), + [anon_sym_BSLASHcolor] = ACTIONS(5177), + [anon_sym_BSLASHcolorbox] = ACTIONS(5177), + [anon_sym_BSLASHtextcolor] = ACTIONS(5177), + [anon_sym_BSLASHpagecolor] = ACTIONS(5177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), + [anon_sym_BSLASHtext] = ACTIONS(5177), + [anon_sym_BSLASHintertext] = ACTIONS(5177), + [anon_sym_shortintertext] = ACTIONS(5177), + }, + [1068] = { + [sym_command_name] = ACTIONS(5169), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_BSLASHpart] = ACTIONS(5169), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddpart] = ACTIONS(5169), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5167), + [anon_sym_BSLASHchapter] = ACTIONS(5169), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddchap] = ACTIONS(5169), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsection] = ACTIONS(5169), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddsec] = ACTIONS(5169), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubsection] = ACTIONS(5169), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHparagraph] = ACTIONS(5169), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5169), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5167), + [anon_sym_BSLASHitem] = ACTIONS(5169), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5167), + [sym_word] = ACTIONS(5169), + [sym_placeholder] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_CARET] = ACTIONS(5169), + [anon_sym__] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_PIPE] = ACTIONS(5169), + [anon_sym_COLON] = ACTIONS(5169), + [anon_sym_SQUOTE] = ACTIONS(5169), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), + [anon_sym_DOLLAR] = ACTIONS(5169), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5167), + [anon_sym_BSLASHbegin] = ACTIONS(5169), + [anon_sym_BSLASHusepackage] = ACTIONS(5169), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), + [anon_sym_BSLASHinclude] = ACTIONS(5169), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), + [anon_sym_BSLASHinput] = ACTIONS(5169), + [anon_sym_BSLASHsubfile] = ACTIONS(5169), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), + [anon_sym_BSLASHbibliography] = ACTIONS(5169), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), + [anon_sym_BSLASHincludesvg] = ACTIONS(5169), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), + [anon_sym_BSLASHimport] = ACTIONS(5169), + [anon_sym_BSLASHsubimport] = ACTIONS(5169), + [anon_sym_BSLASHinputfrom] = ACTIONS(5169), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), + [anon_sym_BSLASHincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHcaption] = ACTIONS(5169), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5169), + [anon_sym_BSLASHref] = ACTIONS(5169), + [anon_sym_BSLASHeqref] = ACTIONS(5169), + [anon_sym_BSLASHvref] = ACTIONS(5169), + [anon_sym_BSLASHVref] = ACTIONS(5169), + [anon_sym_BSLASHautoref] = ACTIONS(5169), + [anon_sym_BSLASHpageref] = ACTIONS(5169), + [anon_sym_BSLASHcref] = ACTIONS(5169), + [anon_sym_BSLASHCref] = ACTIONS(5169), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnameCref] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHlabelcref] = ACTIONS(5169), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCrefrange] = ACTIONS(5169), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnewlabel] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), + [anon_sym_BSLASHdef] = ACTIONS(5169), + [anon_sym_BSLASHlet] = ACTIONS(5169), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), + [anon_sym_BSLASHgls] = ACTIONS(5169), + [anon_sym_BSLASHGls] = ACTIONS(5169), + [anon_sym_BSLASHGLS] = ACTIONS(5169), + [anon_sym_BSLASHglspl] = ACTIONS(5169), + [anon_sym_BSLASHGlspl] = ACTIONS(5169), + [anon_sym_BSLASHGLSpl] = ACTIONS(5169), + [anon_sym_BSLASHglsdisp] = ACTIONS(5169), + [anon_sym_BSLASHglslink] = ACTIONS(5169), + [anon_sym_BSLASHglstext] = ACTIONS(5169), + [anon_sym_BSLASHGlstext] = ACTIONS(5169), + [anon_sym_BSLASHGLStext] = ACTIONS(5169), + [anon_sym_BSLASHglsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), + [anon_sym_BSLASHglsplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSplural] = ACTIONS(5169), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHglsname] = ACTIONS(5169), + [anon_sym_BSLASHGlsname] = ACTIONS(5169), + [anon_sym_BSLASHGLSname] = ACTIONS(5169), + [anon_sym_BSLASHglssymbol] = ACTIONS(5169), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), + [anon_sym_BSLASHglsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), + [anon_sym_BSLASHglsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), + [anon_sym_BSLASHglsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), + [anon_sym_BSLASHglsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), + [anon_sym_BSLASHglsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), + [anon_sym_BSLASHnewacronym] = ACTIONS(5169), + [anon_sym_BSLASHacrshort] = ACTIONS(5169), + [anon_sym_BSLASHAcrshort] = ACTIONS(5169), + [anon_sym_BSLASHACRshort] = ACTIONS(5169), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), + [anon_sym_BSLASHacrlong] = ACTIONS(5169), + [anon_sym_BSLASHAcrlong] = ACTIONS(5169), + [anon_sym_BSLASHACRlong] = ACTIONS(5169), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), + [anon_sym_BSLASHacrfull] = ACTIONS(5169), + [anon_sym_BSLASHAcrfull] = ACTIONS(5169), + [anon_sym_BSLASHACRfull] = ACTIONS(5169), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), + [anon_sym_BSLASHacs] = ACTIONS(5169), + [anon_sym_BSLASHAcs] = ACTIONS(5169), + [anon_sym_BSLASHacsp] = ACTIONS(5169), + [anon_sym_BSLASHAcsp] = ACTIONS(5169), + [anon_sym_BSLASHacl] = ACTIONS(5169), + [anon_sym_BSLASHAcl] = ACTIONS(5169), + [anon_sym_BSLASHaclp] = ACTIONS(5169), + [anon_sym_BSLASHAclp] = ACTIONS(5169), + [anon_sym_BSLASHacf] = ACTIONS(5169), + [anon_sym_BSLASHAcf] = ACTIONS(5169), + [anon_sym_BSLASHacfp] = ACTIONS(5169), + [anon_sym_BSLASHAcfp] = ACTIONS(5169), + [anon_sym_BSLASHac] = ACTIONS(5169), + [anon_sym_BSLASHAc] = ACTIONS(5169), + [anon_sym_BSLASHacp] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), + [anon_sym_BSLASHcolor] = ACTIONS(5169), + [anon_sym_BSLASHcolorbox] = ACTIONS(5169), + [anon_sym_BSLASHtextcolor] = ACTIONS(5169), + [anon_sym_BSLASHpagecolor] = ACTIONS(5169), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), + [anon_sym_BSLASHtext] = ACTIONS(5169), + [anon_sym_BSLASHintertext] = ACTIONS(5169), + [anon_sym_shortintertext] = ACTIONS(5169), + }, + [1069] = { + [sym_command_name] = ACTIONS(5165), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_BSLASHpart] = ACTIONS(5165), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddpart] = ACTIONS(5165), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5163), + [anon_sym_BSLASHchapter] = ACTIONS(5165), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddchap] = ACTIONS(5165), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsection] = ACTIONS(5165), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddsec] = ACTIONS(5165), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubsection] = ACTIONS(5165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5165), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHparagraph] = ACTIONS(5165), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5165), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5163), + [anon_sym_BSLASHitem] = ACTIONS(5165), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5163), + [sym_word] = ACTIONS(5165), + [sym_placeholder] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5165), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_CARET] = ACTIONS(5165), + [anon_sym__] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_COLON] = ACTIONS(5165), + [anon_sym_SQUOTE] = ACTIONS(5165), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), + [anon_sym_DOLLAR] = ACTIONS(5165), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5163), + [anon_sym_BSLASHbegin] = ACTIONS(5165), + [anon_sym_BSLASHusepackage] = ACTIONS(5165), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), + [anon_sym_BSLASHinclude] = ACTIONS(5165), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), + [anon_sym_BSLASHinput] = ACTIONS(5165), + [anon_sym_BSLASHsubfile] = ACTIONS(5165), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), + [anon_sym_BSLASHbibliography] = ACTIONS(5165), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), + [anon_sym_BSLASHincludesvg] = ACTIONS(5165), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5165), + [anon_sym_BSLASHcite] = ACTIONS(5165), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCite] = ACTIONS(5165), + [anon_sym_BSLASHnocite] = ACTIONS(5165), + [anon_sym_BSLASHcitet] = ACTIONS(5165), + [anon_sym_BSLASHcitep] = ACTIONS(5165), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteauthor] = ACTIONS(5165), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitetitle] = ACTIONS(5165), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteyear] = ACTIONS(5165), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitedate] = ACTIONS(5165), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteurl] = ACTIONS(5165), + [anon_sym_BSLASHfullcite] = ACTIONS(5165), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), + [anon_sym_BSLASHcitealt] = ACTIONS(5165), + [anon_sym_BSLASHcitealp] = ACTIONS(5165), + [anon_sym_BSLASHcitetext] = ACTIONS(5165), + [anon_sym_BSLASHparencite] = ACTIONS(5165), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHParencite] = ACTIONS(5165), + [anon_sym_BSLASHfootcite] = ACTIONS(5165), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), + [anon_sym_BSLASHtextcite] = ACTIONS(5165), + [anon_sym_BSLASHTextcite] = ACTIONS(5165), + [anon_sym_BSLASHsmartcite] = ACTIONS(5165), + [anon_sym_BSLASHSmartcite] = ACTIONS(5165), + [anon_sym_BSLASHsupercite] = ACTIONS(5165), + [anon_sym_BSLASHautocite] = ACTIONS(5165), + [anon_sym_BSLASHAutocite] = ACTIONS(5165), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHvolcite] = ACTIONS(5165), + [anon_sym_BSLASHVolcite] = ACTIONS(5165), + [anon_sym_BSLASHpvolcite] = ACTIONS(5165), + [anon_sym_BSLASHPvolcite] = ACTIONS(5165), + [anon_sym_BSLASHfvolcite] = ACTIONS(5165), + [anon_sym_BSLASHftvolcite] = ACTIONS(5165), + [anon_sym_BSLASHsvolcite] = ACTIONS(5165), + [anon_sym_BSLASHSvolcite] = ACTIONS(5165), + [anon_sym_BSLASHtvolcite] = ACTIONS(5165), + [anon_sym_BSLASHTvolcite] = ACTIONS(5165), + [anon_sym_BSLASHavolcite] = ACTIONS(5165), + [anon_sym_BSLASHAvolcite] = ACTIONS(5165), + [anon_sym_BSLASHnotecite] = ACTIONS(5165), + [anon_sym_BSLASHNotecite] = ACTIONS(5165), + [anon_sym_BSLASHpnotecite] = ACTIONS(5165), + [anon_sym_BSLASHPnotecite] = ACTIONS(5165), + [anon_sym_BSLASHfnotecite] = ACTIONS(5165), + [anon_sym_BSLASHlabel] = ACTIONS(5165), + [anon_sym_BSLASHref] = ACTIONS(5165), + [anon_sym_BSLASHeqref] = ACTIONS(5165), + [anon_sym_BSLASHvref] = ACTIONS(5165), + [anon_sym_BSLASHVref] = ACTIONS(5165), + [anon_sym_BSLASHautoref] = ACTIONS(5165), + [anon_sym_BSLASHpageref] = ACTIONS(5165), + [anon_sym_BSLASHcref] = ACTIONS(5165), + [anon_sym_BSLASHCref] = ACTIONS(5165), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnameCref] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHlabelcref] = ACTIONS(5165), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCrefrange] = ACTIONS(5165), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnewlabel] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), + [anon_sym_BSLASHdef] = ACTIONS(5165), + [anon_sym_BSLASHlet] = ACTIONS(5165), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), + [anon_sym_BSLASHgls] = ACTIONS(5165), + [anon_sym_BSLASHGls] = ACTIONS(5165), + [anon_sym_BSLASHGLS] = ACTIONS(5165), + [anon_sym_BSLASHglspl] = ACTIONS(5165), + [anon_sym_BSLASHGlspl] = ACTIONS(5165), + [anon_sym_BSLASHGLSpl] = ACTIONS(5165), + [anon_sym_BSLASHglsdisp] = ACTIONS(5165), + [anon_sym_BSLASHglslink] = ACTIONS(5165), + [anon_sym_BSLASHglstext] = ACTIONS(5165), + [anon_sym_BSLASHGlstext] = ACTIONS(5165), + [anon_sym_BSLASHGLStext] = ACTIONS(5165), + [anon_sym_BSLASHglsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), + [anon_sym_BSLASHglsplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSplural] = ACTIONS(5165), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHglsname] = ACTIONS(5165), + [anon_sym_BSLASHGlsname] = ACTIONS(5165), + [anon_sym_BSLASHGLSname] = ACTIONS(5165), + [anon_sym_BSLASHglssymbol] = ACTIONS(5165), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), + [anon_sym_BSLASHglsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), + [anon_sym_BSLASHglsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), + [anon_sym_BSLASHglsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), + [anon_sym_BSLASHglsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), + [anon_sym_BSLASHglsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), + [anon_sym_BSLASHnewacronym] = ACTIONS(5165), + [anon_sym_BSLASHacrshort] = ACTIONS(5165), + [anon_sym_BSLASHAcrshort] = ACTIONS(5165), + [anon_sym_BSLASHACRshort] = ACTIONS(5165), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), + [anon_sym_BSLASHacrlong] = ACTIONS(5165), + [anon_sym_BSLASHAcrlong] = ACTIONS(5165), + [anon_sym_BSLASHACRlong] = ACTIONS(5165), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), + [anon_sym_BSLASHacrfull] = ACTIONS(5165), + [anon_sym_BSLASHAcrfull] = ACTIONS(5165), + [anon_sym_BSLASHACRfull] = ACTIONS(5165), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), + [anon_sym_BSLASHacs] = ACTIONS(5165), + [anon_sym_BSLASHAcs] = ACTIONS(5165), + [anon_sym_BSLASHacsp] = ACTIONS(5165), + [anon_sym_BSLASHAcsp] = ACTIONS(5165), + [anon_sym_BSLASHacl] = ACTIONS(5165), + [anon_sym_BSLASHAcl] = ACTIONS(5165), + [anon_sym_BSLASHaclp] = ACTIONS(5165), + [anon_sym_BSLASHAclp] = ACTIONS(5165), + [anon_sym_BSLASHacf] = ACTIONS(5165), + [anon_sym_BSLASHAcf] = ACTIONS(5165), + [anon_sym_BSLASHacfp] = ACTIONS(5165), + [anon_sym_BSLASHAcfp] = ACTIONS(5165), + [anon_sym_BSLASHac] = ACTIONS(5165), + [anon_sym_BSLASHAc] = ACTIONS(5165), + [anon_sym_BSLASHacp] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), + [anon_sym_BSLASHcolor] = ACTIONS(5165), + [anon_sym_BSLASHcolorbox] = ACTIONS(5165), + [anon_sym_BSLASHtextcolor] = ACTIONS(5165), + [anon_sym_BSLASHpagecolor] = ACTIONS(5165), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), + [anon_sym_BSLASHtext] = ACTIONS(5165), + [anon_sym_BSLASHintertext] = ACTIONS(5165), + [anon_sym_shortintertext] = ACTIONS(5165), + }, + [1070] = { + [sym_command_name] = ACTIONS(5161), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_RBRACK] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_BSLASHpart] = ACTIONS(5161), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddpart] = ACTIONS(5161), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5159), + [anon_sym_BSLASHchapter] = ACTIONS(5161), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddchap] = ACTIONS(5161), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsection] = ACTIONS(5161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddsec] = ACTIONS(5161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubsection] = ACTIONS(5161), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5161), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHparagraph] = ACTIONS(5161), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5161), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5159), + [anon_sym_BSLASHitem] = ACTIONS(5161), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5159), + [sym_word] = ACTIONS(5161), + [sym_placeholder] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_CARET] = ACTIONS(5161), + [anon_sym__] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_COLON] = ACTIONS(5161), + [anon_sym_SQUOTE] = ACTIONS(5161), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), + [anon_sym_DOLLAR] = ACTIONS(5161), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5159), + [anon_sym_BSLASHbegin] = ACTIONS(5161), + [anon_sym_BSLASHusepackage] = ACTIONS(5161), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), + [anon_sym_BSLASHinclude] = ACTIONS(5161), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), + [anon_sym_BSLASHinput] = ACTIONS(5161), + [anon_sym_BSLASHsubfile] = ACTIONS(5161), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), + [anon_sym_BSLASHbibliography] = ACTIONS(5161), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), + [anon_sym_BSLASHincludesvg] = ACTIONS(5161), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), + [anon_sym_BSLASHimport] = ACTIONS(5161), + [anon_sym_BSLASHsubimport] = ACTIONS(5161), + [anon_sym_BSLASHinputfrom] = ACTIONS(5161), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), + [anon_sym_BSLASHincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHcaption] = ACTIONS(5161), + [anon_sym_BSLASHcite] = ACTIONS(5161), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCite] = ACTIONS(5161), + [anon_sym_BSLASHnocite] = ACTIONS(5161), + [anon_sym_BSLASHcitet] = ACTIONS(5161), + [anon_sym_BSLASHcitep] = ACTIONS(5161), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteauthor] = ACTIONS(5161), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitetitle] = ACTIONS(5161), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteyear] = ACTIONS(5161), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitedate] = ACTIONS(5161), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteurl] = ACTIONS(5161), + [anon_sym_BSLASHfullcite] = ACTIONS(5161), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), + [anon_sym_BSLASHcitealt] = ACTIONS(5161), + [anon_sym_BSLASHcitealp] = ACTIONS(5161), + [anon_sym_BSLASHcitetext] = ACTIONS(5161), + [anon_sym_BSLASHparencite] = ACTIONS(5161), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHParencite] = ACTIONS(5161), + [anon_sym_BSLASHfootcite] = ACTIONS(5161), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), + [anon_sym_BSLASHtextcite] = ACTIONS(5161), + [anon_sym_BSLASHTextcite] = ACTIONS(5161), + [anon_sym_BSLASHsmartcite] = ACTIONS(5161), + [anon_sym_BSLASHSmartcite] = ACTIONS(5161), + [anon_sym_BSLASHsupercite] = ACTIONS(5161), + [anon_sym_BSLASHautocite] = ACTIONS(5161), + [anon_sym_BSLASHAutocite] = ACTIONS(5161), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHvolcite] = ACTIONS(5161), + [anon_sym_BSLASHVolcite] = ACTIONS(5161), + [anon_sym_BSLASHpvolcite] = ACTIONS(5161), + [anon_sym_BSLASHPvolcite] = ACTIONS(5161), + [anon_sym_BSLASHfvolcite] = ACTIONS(5161), + [anon_sym_BSLASHftvolcite] = ACTIONS(5161), + [anon_sym_BSLASHsvolcite] = ACTIONS(5161), + [anon_sym_BSLASHSvolcite] = ACTIONS(5161), + [anon_sym_BSLASHtvolcite] = ACTIONS(5161), + [anon_sym_BSLASHTvolcite] = ACTIONS(5161), + [anon_sym_BSLASHavolcite] = ACTIONS(5161), + [anon_sym_BSLASHAvolcite] = ACTIONS(5161), + [anon_sym_BSLASHnotecite] = ACTIONS(5161), + [anon_sym_BSLASHNotecite] = ACTIONS(5161), + [anon_sym_BSLASHpnotecite] = ACTIONS(5161), + [anon_sym_BSLASHPnotecite] = ACTIONS(5161), + [anon_sym_BSLASHfnotecite] = ACTIONS(5161), + [anon_sym_BSLASHlabel] = ACTIONS(5161), + [anon_sym_BSLASHref] = ACTIONS(5161), + [anon_sym_BSLASHeqref] = ACTIONS(5161), + [anon_sym_BSLASHvref] = ACTIONS(5161), + [anon_sym_BSLASHVref] = ACTIONS(5161), + [anon_sym_BSLASHautoref] = ACTIONS(5161), + [anon_sym_BSLASHpageref] = ACTIONS(5161), + [anon_sym_BSLASHcref] = ACTIONS(5161), + [anon_sym_BSLASHCref] = ACTIONS(5161), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnameCref] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHlabelcref] = ACTIONS(5161), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCrefrange] = ACTIONS(5161), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnewlabel] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), + [anon_sym_BSLASHdef] = ACTIONS(5161), + [anon_sym_BSLASHlet] = ACTIONS(5161), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), + [anon_sym_BSLASHgls] = ACTIONS(5161), + [anon_sym_BSLASHGls] = ACTIONS(5161), + [anon_sym_BSLASHGLS] = ACTIONS(5161), + [anon_sym_BSLASHglspl] = ACTIONS(5161), + [anon_sym_BSLASHGlspl] = ACTIONS(5161), + [anon_sym_BSLASHGLSpl] = ACTIONS(5161), + [anon_sym_BSLASHglsdisp] = ACTIONS(5161), + [anon_sym_BSLASHglslink] = ACTIONS(5161), + [anon_sym_BSLASHglstext] = ACTIONS(5161), + [anon_sym_BSLASHGlstext] = ACTIONS(5161), + [anon_sym_BSLASHGLStext] = ACTIONS(5161), + [anon_sym_BSLASHglsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), + [anon_sym_BSLASHglsplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSplural] = ACTIONS(5161), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHglsname] = ACTIONS(5161), + [anon_sym_BSLASHGlsname] = ACTIONS(5161), + [anon_sym_BSLASHGLSname] = ACTIONS(5161), + [anon_sym_BSLASHglssymbol] = ACTIONS(5161), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), + [anon_sym_BSLASHglsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), + [anon_sym_BSLASHglsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), + [anon_sym_BSLASHglsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), + [anon_sym_BSLASHglsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), + [anon_sym_BSLASHglsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), + [anon_sym_BSLASHnewacronym] = ACTIONS(5161), + [anon_sym_BSLASHacrshort] = ACTIONS(5161), + [anon_sym_BSLASHAcrshort] = ACTIONS(5161), + [anon_sym_BSLASHACRshort] = ACTIONS(5161), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), + [anon_sym_BSLASHacrlong] = ACTIONS(5161), + [anon_sym_BSLASHAcrlong] = ACTIONS(5161), + [anon_sym_BSLASHACRlong] = ACTIONS(5161), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), + [anon_sym_BSLASHacrfull] = ACTIONS(5161), + [anon_sym_BSLASHAcrfull] = ACTIONS(5161), + [anon_sym_BSLASHACRfull] = ACTIONS(5161), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), + [anon_sym_BSLASHacs] = ACTIONS(5161), + [anon_sym_BSLASHAcs] = ACTIONS(5161), + [anon_sym_BSLASHacsp] = ACTIONS(5161), + [anon_sym_BSLASHAcsp] = ACTIONS(5161), + [anon_sym_BSLASHacl] = ACTIONS(5161), + [anon_sym_BSLASHAcl] = ACTIONS(5161), + [anon_sym_BSLASHaclp] = ACTIONS(5161), + [anon_sym_BSLASHAclp] = ACTIONS(5161), + [anon_sym_BSLASHacf] = ACTIONS(5161), + [anon_sym_BSLASHAcf] = ACTIONS(5161), + [anon_sym_BSLASHacfp] = ACTIONS(5161), + [anon_sym_BSLASHAcfp] = ACTIONS(5161), + [anon_sym_BSLASHac] = ACTIONS(5161), + [anon_sym_BSLASHAc] = ACTIONS(5161), + [anon_sym_BSLASHacp] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), + [anon_sym_BSLASHcolor] = ACTIONS(5161), + [anon_sym_BSLASHcolorbox] = ACTIONS(5161), + [anon_sym_BSLASHtextcolor] = ACTIONS(5161), + [anon_sym_BSLASHpagecolor] = ACTIONS(5161), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), + [anon_sym_BSLASHtext] = ACTIONS(5161), + [anon_sym_BSLASHintertext] = ACTIONS(5161), + [anon_sym_shortintertext] = ACTIONS(5161), + }, + [1071] = { + [sym_command_name] = ACTIONS(5153), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_RPAREN] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_RBRACK] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(5151), + [anon_sym_BSLASHpart] = ACTIONS(5153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddpart] = ACTIONS(5153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5151), + [anon_sym_BSLASHchapter] = ACTIONS(5153), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddchap] = ACTIONS(5153), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsection] = ACTIONS(5153), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddsec] = ACTIONS(5153), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubsection] = ACTIONS(5153), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5153), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHparagraph] = ACTIONS(5153), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5153), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5151), + [anon_sym_BSLASHitem] = ACTIONS(5153), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5151), + [sym_word] = ACTIONS(5153), + [sym_placeholder] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym__] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5153), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), + [anon_sym_DOLLAR] = ACTIONS(5153), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5151), + [anon_sym_BSLASHbegin] = ACTIONS(5153), + [anon_sym_BSLASHusepackage] = ACTIONS(5153), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), + [anon_sym_BSLASHinclude] = ACTIONS(5153), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), + [anon_sym_BSLASHinput] = ACTIONS(5153), + [anon_sym_BSLASHsubfile] = ACTIONS(5153), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5153), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), + [anon_sym_BSLASHincludesvg] = ACTIONS(5153), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), + [anon_sym_BSLASHimport] = ACTIONS(5153), + [anon_sym_BSLASHsubimport] = ACTIONS(5153), + [anon_sym_BSLASHinputfrom] = ACTIONS(5153), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), + [anon_sym_BSLASHincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHcaption] = ACTIONS(5153), + [anon_sym_BSLASHcite] = ACTIONS(5153), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCite] = ACTIONS(5153), + [anon_sym_BSLASHnocite] = ACTIONS(5153), + [anon_sym_BSLASHcitet] = ACTIONS(5153), + [anon_sym_BSLASHcitep] = ACTIONS(5153), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteauthor] = ACTIONS(5153), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitetitle] = ACTIONS(5153), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteyear] = ACTIONS(5153), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitedate] = ACTIONS(5153), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteurl] = ACTIONS(5153), + [anon_sym_BSLASHfullcite] = ACTIONS(5153), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), + [anon_sym_BSLASHcitealt] = ACTIONS(5153), + [anon_sym_BSLASHcitealp] = ACTIONS(5153), + [anon_sym_BSLASHcitetext] = ACTIONS(5153), + [anon_sym_BSLASHparencite] = ACTIONS(5153), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHParencite] = ACTIONS(5153), + [anon_sym_BSLASHfootcite] = ACTIONS(5153), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), + [anon_sym_BSLASHtextcite] = ACTIONS(5153), + [anon_sym_BSLASHTextcite] = ACTIONS(5153), + [anon_sym_BSLASHsmartcite] = ACTIONS(5153), + [anon_sym_BSLASHSmartcite] = ACTIONS(5153), + [anon_sym_BSLASHsupercite] = ACTIONS(5153), + [anon_sym_BSLASHautocite] = ACTIONS(5153), + [anon_sym_BSLASHAutocite] = ACTIONS(5153), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHvolcite] = ACTIONS(5153), + [anon_sym_BSLASHVolcite] = ACTIONS(5153), + [anon_sym_BSLASHpvolcite] = ACTIONS(5153), + [anon_sym_BSLASHPvolcite] = ACTIONS(5153), + [anon_sym_BSLASHfvolcite] = ACTIONS(5153), + [anon_sym_BSLASHftvolcite] = ACTIONS(5153), + [anon_sym_BSLASHsvolcite] = ACTIONS(5153), + [anon_sym_BSLASHSvolcite] = ACTIONS(5153), + [anon_sym_BSLASHtvolcite] = ACTIONS(5153), + [anon_sym_BSLASHTvolcite] = ACTIONS(5153), + [anon_sym_BSLASHavolcite] = ACTIONS(5153), + [anon_sym_BSLASHAvolcite] = ACTIONS(5153), + [anon_sym_BSLASHnotecite] = ACTIONS(5153), + [anon_sym_BSLASHNotecite] = ACTIONS(5153), + [anon_sym_BSLASHpnotecite] = ACTIONS(5153), + [anon_sym_BSLASHPnotecite] = ACTIONS(5153), + [anon_sym_BSLASHfnotecite] = ACTIONS(5153), + [anon_sym_BSLASHlabel] = ACTIONS(5153), + [anon_sym_BSLASHref] = ACTIONS(5153), + [anon_sym_BSLASHeqref] = ACTIONS(5153), + [anon_sym_BSLASHvref] = ACTIONS(5153), + [anon_sym_BSLASHVref] = ACTIONS(5153), + [anon_sym_BSLASHautoref] = ACTIONS(5153), + [anon_sym_BSLASHpageref] = ACTIONS(5153), + [anon_sym_BSLASHcref] = ACTIONS(5153), + [anon_sym_BSLASHCref] = ACTIONS(5153), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnameCref] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHlabelcref] = ACTIONS(5153), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCrefrange] = ACTIONS(5153), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnewlabel] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), + [anon_sym_BSLASHdef] = ACTIONS(5153), + [anon_sym_BSLASHlet] = ACTIONS(5153), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), + [anon_sym_BSLASHgls] = ACTIONS(5153), + [anon_sym_BSLASHGls] = ACTIONS(5153), + [anon_sym_BSLASHGLS] = ACTIONS(5153), + [anon_sym_BSLASHglspl] = ACTIONS(5153), + [anon_sym_BSLASHGlspl] = ACTIONS(5153), + [anon_sym_BSLASHGLSpl] = ACTIONS(5153), + [anon_sym_BSLASHglsdisp] = ACTIONS(5153), + [anon_sym_BSLASHglslink] = ACTIONS(5153), + [anon_sym_BSLASHglstext] = ACTIONS(5153), + [anon_sym_BSLASHGlstext] = ACTIONS(5153), + [anon_sym_BSLASHGLStext] = ACTIONS(5153), + [anon_sym_BSLASHglsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), + [anon_sym_BSLASHglsplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSplural] = ACTIONS(5153), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHglsname] = ACTIONS(5153), + [anon_sym_BSLASHGlsname] = ACTIONS(5153), + [anon_sym_BSLASHGLSname] = ACTIONS(5153), + [anon_sym_BSLASHglssymbol] = ACTIONS(5153), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), + [anon_sym_BSLASHglsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), + [anon_sym_BSLASHglsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), + [anon_sym_BSLASHglsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), + [anon_sym_BSLASHglsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), + [anon_sym_BSLASHglsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), + [anon_sym_BSLASHnewacronym] = ACTIONS(5153), + [anon_sym_BSLASHacrshort] = ACTIONS(5153), + [anon_sym_BSLASHAcrshort] = ACTIONS(5153), + [anon_sym_BSLASHACRshort] = ACTIONS(5153), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), + [anon_sym_BSLASHacrlong] = ACTIONS(5153), + [anon_sym_BSLASHAcrlong] = ACTIONS(5153), + [anon_sym_BSLASHACRlong] = ACTIONS(5153), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), + [anon_sym_BSLASHacrfull] = ACTIONS(5153), + [anon_sym_BSLASHAcrfull] = ACTIONS(5153), + [anon_sym_BSLASHACRfull] = ACTIONS(5153), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), + [anon_sym_BSLASHacs] = ACTIONS(5153), + [anon_sym_BSLASHAcs] = ACTIONS(5153), + [anon_sym_BSLASHacsp] = ACTIONS(5153), + [anon_sym_BSLASHAcsp] = ACTIONS(5153), + [anon_sym_BSLASHacl] = ACTIONS(5153), + [anon_sym_BSLASHAcl] = ACTIONS(5153), + [anon_sym_BSLASHaclp] = ACTIONS(5153), + [anon_sym_BSLASHAclp] = ACTIONS(5153), + [anon_sym_BSLASHacf] = ACTIONS(5153), + [anon_sym_BSLASHAcf] = ACTIONS(5153), + [anon_sym_BSLASHacfp] = ACTIONS(5153), + [anon_sym_BSLASHAcfp] = ACTIONS(5153), + [anon_sym_BSLASHac] = ACTIONS(5153), + [anon_sym_BSLASHAc] = ACTIONS(5153), + [anon_sym_BSLASHacp] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), + [anon_sym_BSLASHcolor] = ACTIONS(5153), + [anon_sym_BSLASHcolorbox] = ACTIONS(5153), + [anon_sym_BSLASHtextcolor] = ACTIONS(5153), + [anon_sym_BSLASHpagecolor] = ACTIONS(5153), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), + [anon_sym_BSLASHtext] = ACTIONS(5153), + [anon_sym_BSLASHintertext] = ACTIONS(5153), + [anon_sym_shortintertext] = ACTIONS(5153), + }, + [1072] = { + [sym_command_name] = ACTIONS(5149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_RPAREN] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_RBRACK] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_BSLASHpart] = ACTIONS(5149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddpart] = ACTIONS(5149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5147), + [anon_sym_BSLASHchapter] = ACTIONS(5149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddchap] = ACTIONS(5149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsection] = ACTIONS(5149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddsec] = ACTIONS(5149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubsection] = ACTIONS(5149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHparagraph] = ACTIONS(5149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5147), + [anon_sym_BSLASHitem] = ACTIONS(5149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5147), + [anon_sym_LBRACE] = ACTIONS(5147), + [sym_word] = ACTIONS(5149), + [sym_placeholder] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym__] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_COLON] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), + [anon_sym_DOLLAR] = ACTIONS(5149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), + [anon_sym_BSLASH_RBRACE] = ACTIONS(5147), + [anon_sym_BSLASHbegin] = ACTIONS(5149), + [anon_sym_BSLASHusepackage] = ACTIONS(5149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), + [anon_sym_BSLASHinput] = ACTIONS(5149), + [anon_sym_BSLASHsubfile] = ACTIONS(5149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), + [anon_sym_BSLASHbibliography] = ACTIONS(5149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), + [anon_sym_BSLASHincludesvg] = ACTIONS(5149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), + [anon_sym_BSLASHimport] = ACTIONS(5149), + [anon_sym_BSLASHsubimport] = ACTIONS(5149), + [anon_sym_BSLASHinputfrom] = ACTIONS(5149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), + [anon_sym_BSLASHincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHcaption] = ACTIONS(5149), + [anon_sym_BSLASHcite] = ACTIONS(5149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCite] = ACTIONS(5149), + [anon_sym_BSLASHnocite] = ACTIONS(5149), + [anon_sym_BSLASHcitet] = ACTIONS(5149), + [anon_sym_BSLASHcitep] = ACTIONS(5149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteauthor] = ACTIONS(5149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitetitle] = ACTIONS(5149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteyear] = ACTIONS(5149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitedate] = ACTIONS(5149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteurl] = ACTIONS(5149), + [anon_sym_BSLASHfullcite] = ACTIONS(5149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), + [anon_sym_BSLASHcitealt] = ACTIONS(5149), + [anon_sym_BSLASHcitealp] = ACTIONS(5149), + [anon_sym_BSLASHcitetext] = ACTIONS(5149), + [anon_sym_BSLASHparencite] = ACTIONS(5149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHParencite] = ACTIONS(5149), + [anon_sym_BSLASHfootcite] = ACTIONS(5149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), + [anon_sym_BSLASHtextcite] = ACTIONS(5149), + [anon_sym_BSLASHTextcite] = ACTIONS(5149), + [anon_sym_BSLASHsmartcite] = ACTIONS(5149), + [anon_sym_BSLASHSmartcite] = ACTIONS(5149), + [anon_sym_BSLASHsupercite] = ACTIONS(5149), + [anon_sym_BSLASHautocite] = ACTIONS(5149), + [anon_sym_BSLASHAutocite] = ACTIONS(5149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHvolcite] = ACTIONS(5149), + [anon_sym_BSLASHVolcite] = ACTIONS(5149), + [anon_sym_BSLASHpvolcite] = ACTIONS(5149), + [anon_sym_BSLASHPvolcite] = ACTIONS(5149), + [anon_sym_BSLASHfvolcite] = ACTIONS(5149), + [anon_sym_BSLASHftvolcite] = ACTIONS(5149), + [anon_sym_BSLASHsvolcite] = ACTIONS(5149), + [anon_sym_BSLASHSvolcite] = ACTIONS(5149), + [anon_sym_BSLASHtvolcite] = ACTIONS(5149), + [anon_sym_BSLASHTvolcite] = ACTIONS(5149), + [anon_sym_BSLASHavolcite] = ACTIONS(5149), + [anon_sym_BSLASHAvolcite] = ACTIONS(5149), + [anon_sym_BSLASHnotecite] = ACTIONS(5149), + [anon_sym_BSLASHNotecite] = ACTIONS(5149), + [anon_sym_BSLASHpnotecite] = ACTIONS(5149), + [anon_sym_BSLASHPnotecite] = ACTIONS(5149), + [anon_sym_BSLASHfnotecite] = ACTIONS(5149), + [anon_sym_BSLASHlabel] = ACTIONS(5149), + [anon_sym_BSLASHref] = ACTIONS(5149), + [anon_sym_BSLASHeqref] = ACTIONS(5149), + [anon_sym_BSLASHvref] = ACTIONS(5149), + [anon_sym_BSLASHVref] = ACTIONS(5149), + [anon_sym_BSLASHautoref] = ACTIONS(5149), + [anon_sym_BSLASHpageref] = ACTIONS(5149), + [anon_sym_BSLASHcref] = ACTIONS(5149), + [anon_sym_BSLASHCref] = ACTIONS(5149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnameCref] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHlabelcref] = ACTIONS(5149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCrefrange] = ACTIONS(5149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnewlabel] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), + [anon_sym_BSLASHdef] = ACTIONS(5149), + [anon_sym_BSLASHlet] = ACTIONS(5149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), + [anon_sym_BSLASHgls] = ACTIONS(5149), + [anon_sym_BSLASHGls] = ACTIONS(5149), + [anon_sym_BSLASHGLS] = ACTIONS(5149), + [anon_sym_BSLASHglspl] = ACTIONS(5149), + [anon_sym_BSLASHGlspl] = ACTIONS(5149), + [anon_sym_BSLASHGLSpl] = ACTIONS(5149), + [anon_sym_BSLASHglsdisp] = ACTIONS(5149), + [anon_sym_BSLASHglslink] = ACTIONS(5149), + [anon_sym_BSLASHglstext] = ACTIONS(5149), + [anon_sym_BSLASHGlstext] = ACTIONS(5149), + [anon_sym_BSLASHGLStext] = ACTIONS(5149), + [anon_sym_BSLASHglsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), + [anon_sym_BSLASHglsplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSplural] = ACTIONS(5149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHglsname] = ACTIONS(5149), + [anon_sym_BSLASHGlsname] = ACTIONS(5149), + [anon_sym_BSLASHGLSname] = ACTIONS(5149), + [anon_sym_BSLASHglssymbol] = ACTIONS(5149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), + [anon_sym_BSLASHglsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), + [anon_sym_BSLASHglsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), + [anon_sym_BSLASHglsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), + [anon_sym_BSLASHglsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), + [anon_sym_BSLASHglsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), + [anon_sym_BSLASHnewacronym] = ACTIONS(5149), + [anon_sym_BSLASHacrshort] = ACTIONS(5149), + [anon_sym_BSLASHAcrshort] = ACTIONS(5149), + [anon_sym_BSLASHACRshort] = ACTIONS(5149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), + [anon_sym_BSLASHacrlong] = ACTIONS(5149), + [anon_sym_BSLASHAcrlong] = ACTIONS(5149), + [anon_sym_BSLASHACRlong] = ACTIONS(5149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), + [anon_sym_BSLASHacrfull] = ACTIONS(5149), + [anon_sym_BSLASHAcrfull] = ACTIONS(5149), + [anon_sym_BSLASHACRfull] = ACTIONS(5149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), + [anon_sym_BSLASHacs] = ACTIONS(5149), + [anon_sym_BSLASHAcs] = ACTIONS(5149), + [anon_sym_BSLASHacsp] = ACTIONS(5149), + [anon_sym_BSLASHAcsp] = ACTIONS(5149), + [anon_sym_BSLASHacl] = ACTIONS(5149), + [anon_sym_BSLASHAcl] = ACTIONS(5149), + [anon_sym_BSLASHaclp] = ACTIONS(5149), + [anon_sym_BSLASHAclp] = ACTIONS(5149), + [anon_sym_BSLASHacf] = ACTIONS(5149), + [anon_sym_BSLASHAcf] = ACTIONS(5149), + [anon_sym_BSLASHacfp] = ACTIONS(5149), + [anon_sym_BSLASHAcfp] = ACTIONS(5149), + [anon_sym_BSLASHac] = ACTIONS(5149), + [anon_sym_BSLASHAc] = ACTIONS(5149), + [anon_sym_BSLASHacp] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), + [anon_sym_BSLASHcolor] = ACTIONS(5149), + [anon_sym_BSLASHcolorbox] = ACTIONS(5149), + [anon_sym_BSLASHtextcolor] = ACTIONS(5149), + [anon_sym_BSLASHpagecolor] = ACTIONS(5149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), + [anon_sym_BSLASHtext] = ACTIONS(5149), + [anon_sym_BSLASHintertext] = ACTIONS(5149), + [anon_sym_shortintertext] = ACTIONS(5149), + }, + [1073] = { + [sym_command_name] = ACTIONS(5131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_BSLASHpart] = ACTIONS(5131), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddpart] = ACTIONS(5131), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5129), + [anon_sym_BSLASHchapter] = ACTIONS(5131), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddchap] = ACTIONS(5131), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsection] = ACTIONS(5131), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddsec] = ACTIONS(5131), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubsection] = ACTIONS(5131), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5131), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHparagraph] = ACTIONS(5131), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5131), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5129), + [anon_sym_BSLASHitem] = ACTIONS(5131), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5129), + [sym_word] = ACTIONS(5131), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5129), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5129), + [anon_sym_DOLLAR] = ACTIONS(5131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5129), + [anon_sym_BSLASHbegin] = ACTIONS(5131), + [anon_sym_BSLASHusepackage] = ACTIONS(5131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5131), + [anon_sym_BSLASHinclude] = ACTIONS(5131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5131), + [anon_sym_BSLASHinput] = ACTIONS(5131), + [anon_sym_BSLASHsubfile] = ACTIONS(5131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5131), + [anon_sym_BSLASHbibliography] = ACTIONS(5131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5131), + [anon_sym_BSLASHincludesvg] = ACTIONS(5131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5131), + [anon_sym_BSLASHimport] = ACTIONS(5131), + [anon_sym_BSLASHsubimport] = ACTIONS(5131), + [anon_sym_BSLASHinputfrom] = ACTIONS(5131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5131), + [anon_sym_BSLASHincludefrom] = ACTIONS(5131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5131), + [anon_sym_BSLASHcaption] = ACTIONS(5131), + [anon_sym_BSLASHcite] = ACTIONS(5131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCite] = ACTIONS(5131), + [anon_sym_BSLASHnocite] = ACTIONS(5131), + [anon_sym_BSLASHcitet] = ACTIONS(5131), + [anon_sym_BSLASHcitep] = ACTIONS(5131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteauthor] = ACTIONS(5131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitetitle] = ACTIONS(5131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteyear] = ACTIONS(5131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitedate] = ACTIONS(5131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteurl] = ACTIONS(5131), + [anon_sym_BSLASHfullcite] = ACTIONS(5131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5131), + [anon_sym_BSLASHcitealt] = ACTIONS(5131), + [anon_sym_BSLASHcitealp] = ACTIONS(5131), + [anon_sym_BSLASHcitetext] = ACTIONS(5131), + [anon_sym_BSLASHparencite] = ACTIONS(5131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHParencite] = ACTIONS(5131), + [anon_sym_BSLASHfootcite] = ACTIONS(5131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5131), + [anon_sym_BSLASHtextcite] = ACTIONS(5131), + [anon_sym_BSLASHTextcite] = ACTIONS(5131), + [anon_sym_BSLASHsmartcite] = ACTIONS(5131), + [anon_sym_BSLASHSmartcite] = ACTIONS(5131), + [anon_sym_BSLASHsupercite] = ACTIONS(5131), + [anon_sym_BSLASHautocite] = ACTIONS(5131), + [anon_sym_BSLASHAutocite] = ACTIONS(5131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHvolcite] = ACTIONS(5131), + [anon_sym_BSLASHVolcite] = ACTIONS(5131), + [anon_sym_BSLASHpvolcite] = ACTIONS(5131), + [anon_sym_BSLASHPvolcite] = ACTIONS(5131), + [anon_sym_BSLASHfvolcite] = ACTIONS(5131), + [anon_sym_BSLASHftvolcite] = ACTIONS(5131), + [anon_sym_BSLASHsvolcite] = ACTIONS(5131), + [anon_sym_BSLASHSvolcite] = ACTIONS(5131), + [anon_sym_BSLASHtvolcite] = ACTIONS(5131), + [anon_sym_BSLASHTvolcite] = ACTIONS(5131), + [anon_sym_BSLASHavolcite] = ACTIONS(5131), + [anon_sym_BSLASHAvolcite] = ACTIONS(5131), + [anon_sym_BSLASHnotecite] = ACTIONS(5131), + [anon_sym_BSLASHNotecite] = ACTIONS(5131), + [anon_sym_BSLASHpnotecite] = ACTIONS(5131), + [anon_sym_BSLASHPnotecite] = ACTIONS(5131), + [anon_sym_BSLASHfnotecite] = ACTIONS(5131), + [anon_sym_BSLASHlabel] = ACTIONS(5131), + [anon_sym_BSLASHref] = ACTIONS(5131), + [anon_sym_BSLASHeqref] = ACTIONS(5131), + [anon_sym_BSLASHvref] = ACTIONS(5131), + [anon_sym_BSLASHVref] = ACTIONS(5131), + [anon_sym_BSLASHautoref] = ACTIONS(5131), + [anon_sym_BSLASHpageref] = ACTIONS(5131), + [anon_sym_BSLASHcref] = ACTIONS(5131), + [anon_sym_BSLASHCref] = ACTIONS(5131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5129), + [anon_sym_BSLASHnamecref] = ACTIONS(5131), + [anon_sym_BSLASHnameCref] = ACTIONS(5131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5131), + [anon_sym_BSLASHlabelcref] = ACTIONS(5131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5131), + [anon_sym_BSLASHcrefrange] = ACTIONS(5131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCrefrange] = ACTIONS(5131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5129), + [anon_sym_BSLASHnewlabel] = ACTIONS(5131), + [anon_sym_BSLASHnewcommand] = ACTIONS(5131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5129), + [anon_sym_BSLASHdef] = ACTIONS(5131), + [anon_sym_BSLASHlet] = ACTIONS(5131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5131), + [anon_sym_BSLASHgls] = ACTIONS(5131), + [anon_sym_BSLASHGls] = ACTIONS(5131), + [anon_sym_BSLASHGLS] = ACTIONS(5131), + [anon_sym_BSLASHglspl] = ACTIONS(5131), + [anon_sym_BSLASHGlspl] = ACTIONS(5131), + [anon_sym_BSLASHGLSpl] = ACTIONS(5131), + [anon_sym_BSLASHglsdisp] = ACTIONS(5131), + [anon_sym_BSLASHglslink] = ACTIONS(5131), + [anon_sym_BSLASHglstext] = ACTIONS(5131), + [anon_sym_BSLASHGlstext] = ACTIONS(5131), + [anon_sym_BSLASHGLStext] = ACTIONS(5131), + [anon_sym_BSLASHglsfirst] = ACTIONS(5131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5131), + [anon_sym_BSLASHglsplural] = ACTIONS(5131), + [anon_sym_BSLASHGlsplural] = ACTIONS(5131), + [anon_sym_BSLASHGLSplural] = ACTIONS(5131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHglsname] = ACTIONS(5131), + [anon_sym_BSLASHGlsname] = ACTIONS(5131), + [anon_sym_BSLASHGLSname] = ACTIONS(5131), + [anon_sym_BSLASHglssymbol] = ACTIONS(5131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5131), + [anon_sym_BSLASHglsdesc] = ACTIONS(5131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5131), + [anon_sym_BSLASHglsuseri] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5131), + [anon_sym_BSLASHglsuserii] = ACTIONS(5131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5131), + [anon_sym_BSLASHglsuserv] = ACTIONS(5131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5131), + [anon_sym_BSLASHglsuservi] = ACTIONS(5131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5131), + [anon_sym_BSLASHnewacronym] = ACTIONS(5131), + [anon_sym_BSLASHacrshort] = ACTIONS(5131), + [anon_sym_BSLASHAcrshort] = ACTIONS(5131), + [anon_sym_BSLASHACRshort] = ACTIONS(5131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5131), + [anon_sym_BSLASHacrlong] = ACTIONS(5131), + [anon_sym_BSLASHAcrlong] = ACTIONS(5131), + [anon_sym_BSLASHACRlong] = ACTIONS(5131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5131), + [anon_sym_BSLASHacrfull] = ACTIONS(5131), + [anon_sym_BSLASHAcrfull] = ACTIONS(5131), + [anon_sym_BSLASHACRfull] = ACTIONS(5131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5131), + [anon_sym_BSLASHacs] = ACTIONS(5131), + [anon_sym_BSLASHAcs] = ACTIONS(5131), + [anon_sym_BSLASHacsp] = ACTIONS(5131), + [anon_sym_BSLASHAcsp] = ACTIONS(5131), + [anon_sym_BSLASHacl] = ACTIONS(5131), + [anon_sym_BSLASHAcl] = ACTIONS(5131), + [anon_sym_BSLASHaclp] = ACTIONS(5131), + [anon_sym_BSLASHAclp] = ACTIONS(5131), + [anon_sym_BSLASHacf] = ACTIONS(5131), + [anon_sym_BSLASHAcf] = ACTIONS(5131), + [anon_sym_BSLASHacfp] = ACTIONS(5131), + [anon_sym_BSLASHAcfp] = ACTIONS(5131), + [anon_sym_BSLASHac] = ACTIONS(5131), + [anon_sym_BSLASHAc] = ACTIONS(5131), + [anon_sym_BSLASHacp] = ACTIONS(5131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5131), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5131), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5131), + [anon_sym_BSLASHcolor] = ACTIONS(5131), + [anon_sym_BSLASHcolorbox] = ACTIONS(5131), + [anon_sym_BSLASHtextcolor] = ACTIONS(5131), + [anon_sym_BSLASHpagecolor] = ACTIONS(5131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5131), + [anon_sym_BSLASHtext] = ACTIONS(5131), + [anon_sym_BSLASHintertext] = ACTIONS(5131), + [anon_sym_shortintertext] = ACTIONS(5131), + }, + [1074] = { + [sym_command_name] = ACTIONS(4887), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_LBRACK] = ACTIONS(4885), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_BSLASHpart] = ACTIONS(4887), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddpart] = ACTIONS(4887), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4885), + [anon_sym_BSLASHchapter] = ACTIONS(4887), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddchap] = ACTIONS(4887), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsection] = ACTIONS(4887), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddsec] = ACTIONS(4887), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubsection] = ACTIONS(4887), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4887), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHparagraph] = ACTIONS(4887), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4887), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4885), + [anon_sym_BSLASHitem] = ACTIONS(4887), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4885), + [sym_word] = ACTIONS(4887), + [sym_placeholder] = ACTIONS(4885), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym__] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_COLON] = ACTIONS(4887), + [anon_sym_SQUOTE] = ACTIONS(4887), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), + [anon_sym_BSLASHbegin] = ACTIONS(4887), + [anon_sym_BSLASHusepackage] = ACTIONS(4887), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), + [anon_sym_BSLASHinclude] = ACTIONS(4887), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), + [anon_sym_BSLASHinput] = ACTIONS(4887), + [anon_sym_BSLASHsubfile] = ACTIONS(4887), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), + [anon_sym_BSLASHbibliography] = ACTIONS(4887), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), + [anon_sym_BSLASHincludesvg] = ACTIONS(4887), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), + [anon_sym_BSLASHimport] = ACTIONS(4887), + [anon_sym_BSLASHsubimport] = ACTIONS(4887), + [anon_sym_BSLASHinputfrom] = ACTIONS(4887), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), + [anon_sym_BSLASHincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHcaption] = ACTIONS(4887), + [anon_sym_BSLASHcite] = ACTIONS(4887), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCite] = ACTIONS(4887), + [anon_sym_BSLASHnocite] = ACTIONS(4887), + [anon_sym_BSLASHcitet] = ACTIONS(4887), + [anon_sym_BSLASHcitep] = ACTIONS(4887), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteauthor] = ACTIONS(4887), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitetitle] = ACTIONS(4887), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteyear] = ACTIONS(4887), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitedate] = ACTIONS(4887), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteurl] = ACTIONS(4887), + [anon_sym_BSLASHfullcite] = ACTIONS(4887), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), + [anon_sym_BSLASHcitealt] = ACTIONS(4887), + [anon_sym_BSLASHcitealp] = ACTIONS(4887), + [anon_sym_BSLASHcitetext] = ACTIONS(4887), + [anon_sym_BSLASHparencite] = ACTIONS(4887), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHParencite] = ACTIONS(4887), + [anon_sym_BSLASHfootcite] = ACTIONS(4887), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), + [anon_sym_BSLASHtextcite] = ACTIONS(4887), + [anon_sym_BSLASHTextcite] = ACTIONS(4887), + [anon_sym_BSLASHsmartcite] = ACTIONS(4887), + [anon_sym_BSLASHSmartcite] = ACTIONS(4887), + [anon_sym_BSLASHsupercite] = ACTIONS(4887), + [anon_sym_BSLASHautocite] = ACTIONS(4887), + [anon_sym_BSLASHAutocite] = ACTIONS(4887), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHvolcite] = ACTIONS(4887), + [anon_sym_BSLASHVolcite] = ACTIONS(4887), + [anon_sym_BSLASHpvolcite] = ACTIONS(4887), + [anon_sym_BSLASHPvolcite] = ACTIONS(4887), + [anon_sym_BSLASHfvolcite] = ACTIONS(4887), + [anon_sym_BSLASHftvolcite] = ACTIONS(4887), + [anon_sym_BSLASHsvolcite] = ACTIONS(4887), + [anon_sym_BSLASHSvolcite] = ACTIONS(4887), + [anon_sym_BSLASHtvolcite] = ACTIONS(4887), + [anon_sym_BSLASHTvolcite] = ACTIONS(4887), + [anon_sym_BSLASHavolcite] = ACTIONS(4887), + [anon_sym_BSLASHAvolcite] = ACTIONS(4887), + [anon_sym_BSLASHnotecite] = ACTIONS(4887), + [anon_sym_BSLASHNotecite] = ACTIONS(4887), + [anon_sym_BSLASHpnotecite] = ACTIONS(4887), + [anon_sym_BSLASHPnotecite] = ACTIONS(4887), + [anon_sym_BSLASHfnotecite] = ACTIONS(4887), + [anon_sym_BSLASHlabel] = ACTIONS(4887), + [anon_sym_BSLASHref] = ACTIONS(4887), + [anon_sym_BSLASHeqref] = ACTIONS(4887), + [anon_sym_BSLASHvref] = ACTIONS(4887), + [anon_sym_BSLASHVref] = ACTIONS(4887), + [anon_sym_BSLASHautoref] = ACTIONS(4887), + [anon_sym_BSLASHpageref] = ACTIONS(4887), + [anon_sym_BSLASHcref] = ACTIONS(4887), + [anon_sym_BSLASHCref] = ACTIONS(4887), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnameCref] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHlabelcref] = ACTIONS(4887), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCrefrange] = ACTIONS(4887), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnewlabel] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), + [anon_sym_BSLASHdef] = ACTIONS(4887), + [anon_sym_BSLASHlet] = ACTIONS(4887), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), + [anon_sym_BSLASHgls] = ACTIONS(4887), + [anon_sym_BSLASHGls] = ACTIONS(4887), + [anon_sym_BSLASHGLS] = ACTIONS(4887), + [anon_sym_BSLASHglspl] = ACTIONS(4887), + [anon_sym_BSLASHGlspl] = ACTIONS(4887), + [anon_sym_BSLASHGLSpl] = ACTIONS(4887), + [anon_sym_BSLASHglsdisp] = ACTIONS(4887), + [anon_sym_BSLASHglslink] = ACTIONS(4887), + [anon_sym_BSLASHglstext] = ACTIONS(4887), + [anon_sym_BSLASHGlstext] = ACTIONS(4887), + [anon_sym_BSLASHGLStext] = ACTIONS(4887), + [anon_sym_BSLASHglsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), + [anon_sym_BSLASHglsplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSplural] = ACTIONS(4887), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHglsname] = ACTIONS(4887), + [anon_sym_BSLASHGlsname] = ACTIONS(4887), + [anon_sym_BSLASHGLSname] = ACTIONS(4887), + [anon_sym_BSLASHglssymbol] = ACTIONS(4887), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), + [anon_sym_BSLASHglsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), + [anon_sym_BSLASHglsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), + [anon_sym_BSLASHglsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), + [anon_sym_BSLASHglsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), + [anon_sym_BSLASHglsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), + [anon_sym_BSLASHnewacronym] = ACTIONS(4887), + [anon_sym_BSLASHacrshort] = ACTIONS(4887), + [anon_sym_BSLASHAcrshort] = ACTIONS(4887), + [anon_sym_BSLASHACRshort] = ACTIONS(4887), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), + [anon_sym_BSLASHacrlong] = ACTIONS(4887), + [anon_sym_BSLASHAcrlong] = ACTIONS(4887), + [anon_sym_BSLASHACRlong] = ACTIONS(4887), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), + [anon_sym_BSLASHacrfull] = ACTIONS(4887), + [anon_sym_BSLASHAcrfull] = ACTIONS(4887), + [anon_sym_BSLASHACRfull] = ACTIONS(4887), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), + [anon_sym_BSLASHacs] = ACTIONS(4887), + [anon_sym_BSLASHAcs] = ACTIONS(4887), + [anon_sym_BSLASHacsp] = ACTIONS(4887), + [anon_sym_BSLASHAcsp] = ACTIONS(4887), + [anon_sym_BSLASHacl] = ACTIONS(4887), + [anon_sym_BSLASHAcl] = ACTIONS(4887), + [anon_sym_BSLASHaclp] = ACTIONS(4887), + [anon_sym_BSLASHAclp] = ACTIONS(4887), + [anon_sym_BSLASHacf] = ACTIONS(4887), + [anon_sym_BSLASHAcf] = ACTIONS(4887), + [anon_sym_BSLASHacfp] = ACTIONS(4887), + [anon_sym_BSLASHAcfp] = ACTIONS(4887), + [anon_sym_BSLASHac] = ACTIONS(4887), + [anon_sym_BSLASHAc] = ACTIONS(4887), + [anon_sym_BSLASHacp] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), + [anon_sym_BSLASHcolor] = ACTIONS(4887), + [anon_sym_BSLASHcolorbox] = ACTIONS(4887), + [anon_sym_BSLASHtextcolor] = ACTIONS(4887), + [anon_sym_BSLASHpagecolor] = ACTIONS(4887), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), + [anon_sym_BSLASHtext] = ACTIONS(4887), + [anon_sym_BSLASHintertext] = ACTIONS(4887), + [anon_sym_shortintertext] = ACTIONS(4887), + }, + [1075] = { [sym_command_name] = ACTIONS(5105), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -354438,4312 +328791,2187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(5105), [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), + [anon_sym_BSLASHtext] = ACTIONS(5105), + [anon_sym_BSLASHintertext] = ACTIONS(5105), + [anon_sym_shortintertext] = ACTIONS(5105), + }, + [1076] = { + [sym_command_name] = ACTIONS(5101), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5099), + [anon_sym_RPAREN] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [anon_sym_RBRACK] = ACTIONS(5099), + [anon_sym_COMMA] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_BSLASHpart] = ACTIONS(5101), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddpart] = ACTIONS(5101), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), + [anon_sym_BSLASHchapter] = ACTIONS(5101), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddchap] = ACTIONS(5101), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsection] = ACTIONS(5101), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddsec] = ACTIONS(5101), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubsection] = ACTIONS(5101), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHparagraph] = ACTIONS(5101), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), + [anon_sym_BSLASHitem] = ACTIONS(5101), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5099), + [sym_word] = ACTIONS(5101), + [sym_placeholder] = ACTIONS(5099), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_CARET] = ACTIONS(5101), + [anon_sym__] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_BANG] = ACTIONS(5101), + [anon_sym_PIPE] = ACTIONS(5101), + [anon_sym_COLON] = ACTIONS(5101), + [anon_sym_SQUOTE] = ACTIONS(5101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5099), + [anon_sym_DOLLAR] = ACTIONS(5101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), + [anon_sym_BSLASHbegin] = ACTIONS(5101), + [anon_sym_BSLASHusepackage] = ACTIONS(5101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), + [anon_sym_BSLASHinclude] = ACTIONS(5101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), + [anon_sym_BSLASHinput] = ACTIONS(5101), + [anon_sym_BSLASHsubfile] = ACTIONS(5101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), + [anon_sym_BSLASHbibliography] = ACTIONS(5101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), + [anon_sym_BSLASHincludesvg] = ACTIONS(5101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), + [anon_sym_BSLASHimport] = ACTIONS(5101), + [anon_sym_BSLASHsubimport] = ACTIONS(5101), + [anon_sym_BSLASHinputfrom] = ACTIONS(5101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), + [anon_sym_BSLASHincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHcaption] = ACTIONS(5101), + [anon_sym_BSLASHcite] = ACTIONS(5101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCite] = ACTIONS(5101), + [anon_sym_BSLASHnocite] = ACTIONS(5101), + [anon_sym_BSLASHcitet] = ACTIONS(5101), + [anon_sym_BSLASHcitep] = ACTIONS(5101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteauthor] = ACTIONS(5101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitetitle] = ACTIONS(5101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteyear] = ACTIONS(5101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitedate] = ACTIONS(5101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteurl] = ACTIONS(5101), + [anon_sym_BSLASHfullcite] = ACTIONS(5101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), + [anon_sym_BSLASHcitealt] = ACTIONS(5101), + [anon_sym_BSLASHcitealp] = ACTIONS(5101), + [anon_sym_BSLASHcitetext] = ACTIONS(5101), + [anon_sym_BSLASHparencite] = ACTIONS(5101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHParencite] = ACTIONS(5101), + [anon_sym_BSLASHfootcite] = ACTIONS(5101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), + [anon_sym_BSLASHtextcite] = ACTIONS(5101), + [anon_sym_BSLASHTextcite] = ACTIONS(5101), + [anon_sym_BSLASHsmartcite] = ACTIONS(5101), + [anon_sym_BSLASHSmartcite] = ACTIONS(5101), + [anon_sym_BSLASHsupercite] = ACTIONS(5101), + [anon_sym_BSLASHautocite] = ACTIONS(5101), + [anon_sym_BSLASHAutocite] = ACTIONS(5101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHvolcite] = ACTIONS(5101), + [anon_sym_BSLASHVolcite] = ACTIONS(5101), + [anon_sym_BSLASHpvolcite] = ACTIONS(5101), + [anon_sym_BSLASHPvolcite] = ACTIONS(5101), + [anon_sym_BSLASHfvolcite] = ACTIONS(5101), + [anon_sym_BSLASHftvolcite] = ACTIONS(5101), + [anon_sym_BSLASHsvolcite] = ACTIONS(5101), + [anon_sym_BSLASHSvolcite] = ACTIONS(5101), + [anon_sym_BSLASHtvolcite] = ACTIONS(5101), + [anon_sym_BSLASHTvolcite] = ACTIONS(5101), + [anon_sym_BSLASHavolcite] = ACTIONS(5101), + [anon_sym_BSLASHAvolcite] = ACTIONS(5101), + [anon_sym_BSLASHnotecite] = ACTIONS(5101), + [anon_sym_BSLASHNotecite] = ACTIONS(5101), + [anon_sym_BSLASHpnotecite] = ACTIONS(5101), + [anon_sym_BSLASHPnotecite] = ACTIONS(5101), + [anon_sym_BSLASHfnotecite] = ACTIONS(5101), + [anon_sym_BSLASHlabel] = ACTIONS(5101), + [anon_sym_BSLASHref] = ACTIONS(5101), + [anon_sym_BSLASHeqref] = ACTIONS(5101), + [anon_sym_BSLASHvref] = ACTIONS(5101), + [anon_sym_BSLASHVref] = ACTIONS(5101), + [anon_sym_BSLASHautoref] = ACTIONS(5101), + [anon_sym_BSLASHpageref] = ACTIONS(5101), + [anon_sym_BSLASHcref] = ACTIONS(5101), + [anon_sym_BSLASHCref] = ACTIONS(5101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), + [anon_sym_BSLASHnamecref] = ACTIONS(5101), + [anon_sym_BSLASHnameCref] = ACTIONS(5101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), + [anon_sym_BSLASHlabelcref] = ACTIONS(5101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), + [anon_sym_BSLASHcrefrange] = ACTIONS(5101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCrefrange] = ACTIONS(5101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), + [anon_sym_BSLASHnewlabel] = ACTIONS(5101), + [anon_sym_BSLASHnewcommand] = ACTIONS(5101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), + [anon_sym_BSLASHdef] = ACTIONS(5101), + [anon_sym_BSLASHlet] = ACTIONS(5101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), + [anon_sym_BSLASHgls] = ACTIONS(5101), + [anon_sym_BSLASHGls] = ACTIONS(5101), + [anon_sym_BSLASHGLS] = ACTIONS(5101), + [anon_sym_BSLASHglspl] = ACTIONS(5101), + [anon_sym_BSLASHGlspl] = ACTIONS(5101), + [anon_sym_BSLASHGLSpl] = ACTIONS(5101), + [anon_sym_BSLASHglsdisp] = ACTIONS(5101), + [anon_sym_BSLASHglslink] = ACTIONS(5101), + [anon_sym_BSLASHglstext] = ACTIONS(5101), + [anon_sym_BSLASHGlstext] = ACTIONS(5101), + [anon_sym_BSLASHGLStext] = ACTIONS(5101), + [anon_sym_BSLASHglsfirst] = ACTIONS(5101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), + [anon_sym_BSLASHglsplural] = ACTIONS(5101), + [anon_sym_BSLASHGlsplural] = ACTIONS(5101), + [anon_sym_BSLASHGLSplural] = ACTIONS(5101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHglsname] = ACTIONS(5101), + [anon_sym_BSLASHGlsname] = ACTIONS(5101), + [anon_sym_BSLASHGLSname] = ACTIONS(5101), + [anon_sym_BSLASHglssymbol] = ACTIONS(5101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), + [anon_sym_BSLASHglsdesc] = ACTIONS(5101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), + [anon_sym_BSLASHglsuseri] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), + [anon_sym_BSLASHglsuserii] = ACTIONS(5101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), + [anon_sym_BSLASHglsuserv] = ACTIONS(5101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), + [anon_sym_BSLASHglsuservi] = ACTIONS(5101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), + [anon_sym_BSLASHnewacronym] = ACTIONS(5101), + [anon_sym_BSLASHacrshort] = ACTIONS(5101), + [anon_sym_BSLASHAcrshort] = ACTIONS(5101), + [anon_sym_BSLASHACRshort] = ACTIONS(5101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), + [anon_sym_BSLASHacrlong] = ACTIONS(5101), + [anon_sym_BSLASHAcrlong] = ACTIONS(5101), + [anon_sym_BSLASHACRlong] = ACTIONS(5101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), + [anon_sym_BSLASHacrfull] = ACTIONS(5101), + [anon_sym_BSLASHAcrfull] = ACTIONS(5101), + [anon_sym_BSLASHACRfull] = ACTIONS(5101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), + [anon_sym_BSLASHacs] = ACTIONS(5101), + [anon_sym_BSLASHAcs] = ACTIONS(5101), + [anon_sym_BSLASHacsp] = ACTIONS(5101), + [anon_sym_BSLASHAcsp] = ACTIONS(5101), + [anon_sym_BSLASHacl] = ACTIONS(5101), + [anon_sym_BSLASHAcl] = ACTIONS(5101), + [anon_sym_BSLASHaclp] = ACTIONS(5101), + [anon_sym_BSLASHAclp] = ACTIONS(5101), + [anon_sym_BSLASHacf] = ACTIONS(5101), + [anon_sym_BSLASHAcf] = ACTIONS(5101), + [anon_sym_BSLASHacfp] = ACTIONS(5101), + [anon_sym_BSLASHAcfp] = ACTIONS(5101), + [anon_sym_BSLASHac] = ACTIONS(5101), + [anon_sym_BSLASHAc] = ACTIONS(5101), + [anon_sym_BSLASHacp] = ACTIONS(5101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), + [anon_sym_BSLASHcolor] = ACTIONS(5101), + [anon_sym_BSLASHcolorbox] = ACTIONS(5101), + [anon_sym_BSLASHtextcolor] = ACTIONS(5101), + [anon_sym_BSLASHpagecolor] = ACTIONS(5101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), + [anon_sym_BSLASHtext] = ACTIONS(5101), + [anon_sym_BSLASHintertext] = ACTIONS(5101), + [anon_sym_shortintertext] = ACTIONS(5101), }, - [1176] = { - [sym_command_name] = ACTIONS(5109), + [1077] = { + [sym_command_name] = ACTIONS(5097), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5109), - [anon_sym_LPAREN] = ACTIONS(5107), - [anon_sym_RPAREN] = ACTIONS(5107), - [anon_sym_LBRACK] = ACTIONS(5107), - [anon_sym_RBRACK] = ACTIONS(5107), - [anon_sym_COMMA] = ACTIONS(5107), - [anon_sym_EQ] = ACTIONS(5107), - [anon_sym_BSLASHpart] = ACTIONS(5109), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddpart] = ACTIONS(5109), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), - [anon_sym_BSLASHchapter] = ACTIONS(5109), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddchap] = ACTIONS(5109), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsection] = ACTIONS(5109), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHaddsec] = ACTIONS(5109), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), - [anon_sym_BSLASHparagraph] = ACTIONS(5109), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), - [anon_sym_BSLASHitem] = ACTIONS(5109), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), - [anon_sym_LBRACE] = ACTIONS(5107), - [sym_word] = ACTIONS(5109), - [sym_placeholder] = ACTIONS(5107), - [anon_sym_PLUS] = ACTIONS(5109), - [anon_sym_DASH] = ACTIONS(5109), - [anon_sym_STAR] = ACTIONS(5109), - [anon_sym_SLASH] = ACTIONS(5109), - [anon_sym_CARET] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - [anon_sym_LT] = ACTIONS(5109), - [anon_sym_GT] = ACTIONS(5109), - [anon_sym_BANG] = ACTIONS(5109), - [anon_sym_PIPE] = ACTIONS(5109), - [anon_sym_COLON] = ACTIONS(5109), - [anon_sym_SQUOTE] = ACTIONS(5109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5107), - [anon_sym_DOLLAR] = ACTIONS(5109), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), - [anon_sym_BSLASHbegin] = ACTIONS(5109), - [anon_sym_BSLASHusepackage] = ACTIONS(5109), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), - [anon_sym_BSLASHinclude] = ACTIONS(5109), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), - [anon_sym_BSLASHinput] = ACTIONS(5109), - [anon_sym_BSLASHsubfile] = ACTIONS(5109), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), - [anon_sym_BSLASHbibliography] = ACTIONS(5109), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), - [anon_sym_BSLASHincludesvg] = ACTIONS(5109), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), - [anon_sym_BSLASHimport] = ACTIONS(5109), - [anon_sym_BSLASHsubimport] = ACTIONS(5109), - [anon_sym_BSLASHinputfrom] = ACTIONS(5109), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), - [anon_sym_BSLASHincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), - [anon_sym_BSLASHcaption] = ACTIONS(5109), - [anon_sym_BSLASHcite] = ACTIONS(5109), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCite] = ACTIONS(5109), - [anon_sym_BSLASHnocite] = ACTIONS(5109), - [anon_sym_BSLASHcitet] = ACTIONS(5109), - [anon_sym_BSLASHcitep] = ACTIONS(5109), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteauthor] = ACTIONS(5109), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitetitle] = ACTIONS(5109), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteyear] = ACTIONS(5109), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), - [anon_sym_BSLASHcitedate] = ACTIONS(5109), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), - [anon_sym_BSLASHciteurl] = ACTIONS(5109), - [anon_sym_BSLASHfullcite] = ACTIONS(5109), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), - [anon_sym_BSLASHcitealt] = ACTIONS(5109), - [anon_sym_BSLASHcitealp] = ACTIONS(5109), - [anon_sym_BSLASHcitetext] = ACTIONS(5109), - [anon_sym_BSLASHparencite] = ACTIONS(5109), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHParencite] = ACTIONS(5109), - [anon_sym_BSLASHfootcite] = ACTIONS(5109), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), - [anon_sym_BSLASHtextcite] = ACTIONS(5109), - [anon_sym_BSLASHTextcite] = ACTIONS(5109), - [anon_sym_BSLASHsmartcite] = ACTIONS(5109), - [anon_sym_BSLASHSmartcite] = ACTIONS(5109), - [anon_sym_BSLASHsupercite] = ACTIONS(5109), - [anon_sym_BSLASHautocite] = ACTIONS(5109), - [anon_sym_BSLASHAutocite] = ACTIONS(5109), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), - [anon_sym_BSLASHvolcite] = ACTIONS(5109), - [anon_sym_BSLASHVolcite] = ACTIONS(5109), - [anon_sym_BSLASHpvolcite] = ACTIONS(5109), - [anon_sym_BSLASHPvolcite] = ACTIONS(5109), - [anon_sym_BSLASHfvolcite] = ACTIONS(5109), - [anon_sym_BSLASHftvolcite] = ACTIONS(5109), - [anon_sym_BSLASHsvolcite] = ACTIONS(5109), - [anon_sym_BSLASHSvolcite] = ACTIONS(5109), - [anon_sym_BSLASHtvolcite] = ACTIONS(5109), - [anon_sym_BSLASHTvolcite] = ACTIONS(5109), - [anon_sym_BSLASHavolcite] = ACTIONS(5109), - [anon_sym_BSLASHAvolcite] = ACTIONS(5109), - [anon_sym_BSLASHnotecite] = ACTIONS(5109), - [anon_sym_BSLASHNotecite] = ACTIONS(5109), - [anon_sym_BSLASHpnotecite] = ACTIONS(5109), - [anon_sym_BSLASHPnotecite] = ACTIONS(5109), - [anon_sym_BSLASHfnotecite] = ACTIONS(5109), - [anon_sym_BSLASHlabel] = ACTIONS(5109), - [anon_sym_BSLASHref] = ACTIONS(5109), - [anon_sym_BSLASHeqref] = ACTIONS(5109), - [anon_sym_BSLASHvref] = ACTIONS(5109), - [anon_sym_BSLASHVref] = ACTIONS(5109), - [anon_sym_BSLASHautoref] = ACTIONS(5109), - [anon_sym_BSLASHpageref] = ACTIONS(5109), - [anon_sym_BSLASHcref] = ACTIONS(5109), - [anon_sym_BSLASHCref] = ACTIONS(5109), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnameCref] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), - [anon_sym_BSLASHlabelcref] = ACTIONS(5109), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange] = ACTIONS(5109), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHCrefrange] = ACTIONS(5109), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), - [anon_sym_BSLASHnewlabel] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand] = ACTIONS(5109), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), - [anon_sym_BSLASHdef] = ACTIONS(5109), - [anon_sym_BSLASHlet] = ACTIONS(5109), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), - [anon_sym_BSLASHgls] = ACTIONS(5109), - [anon_sym_BSLASHGls] = ACTIONS(5109), - [anon_sym_BSLASHGLS] = ACTIONS(5109), - [anon_sym_BSLASHglspl] = ACTIONS(5109), - [anon_sym_BSLASHGlspl] = ACTIONS(5109), - [anon_sym_BSLASHGLSpl] = ACTIONS(5109), - [anon_sym_BSLASHglsdisp] = ACTIONS(5109), - [anon_sym_BSLASHglslink] = ACTIONS(5109), - [anon_sym_BSLASHglstext] = ACTIONS(5109), - [anon_sym_BSLASHGlstext] = ACTIONS(5109), - [anon_sym_BSLASHGLStext] = ACTIONS(5109), - [anon_sym_BSLASHglsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), - [anon_sym_BSLASHglsplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSplural] = ACTIONS(5109), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), - [anon_sym_BSLASHglsname] = ACTIONS(5109), - [anon_sym_BSLASHGlsname] = ACTIONS(5109), - [anon_sym_BSLASHGLSname] = ACTIONS(5109), - [anon_sym_BSLASHglssymbol] = ACTIONS(5109), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), - [anon_sym_BSLASHglsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), - [anon_sym_BSLASHglsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), - [anon_sym_BSLASHglsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), - [anon_sym_BSLASHglsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), - [anon_sym_BSLASHglsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), - [anon_sym_BSLASHnewacronym] = ACTIONS(5109), - [anon_sym_BSLASHacrshort] = ACTIONS(5109), - [anon_sym_BSLASHAcrshort] = ACTIONS(5109), - [anon_sym_BSLASHACRshort] = ACTIONS(5109), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), - [anon_sym_BSLASHacrlong] = ACTIONS(5109), - [anon_sym_BSLASHAcrlong] = ACTIONS(5109), - [anon_sym_BSLASHACRlong] = ACTIONS(5109), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), - [anon_sym_BSLASHacrfull] = ACTIONS(5109), - [anon_sym_BSLASHAcrfull] = ACTIONS(5109), - [anon_sym_BSLASHACRfull] = ACTIONS(5109), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), - [anon_sym_BSLASHacs] = ACTIONS(5109), - [anon_sym_BSLASHAcs] = ACTIONS(5109), - [anon_sym_BSLASHacsp] = ACTIONS(5109), - [anon_sym_BSLASHAcsp] = ACTIONS(5109), - [anon_sym_BSLASHacl] = ACTIONS(5109), - [anon_sym_BSLASHAcl] = ACTIONS(5109), - [anon_sym_BSLASHaclp] = ACTIONS(5109), - [anon_sym_BSLASHAclp] = ACTIONS(5109), - [anon_sym_BSLASHacf] = ACTIONS(5109), - [anon_sym_BSLASHAcf] = ACTIONS(5109), - [anon_sym_BSLASHacfp] = ACTIONS(5109), - [anon_sym_BSLASHAcfp] = ACTIONS(5109), - [anon_sym_BSLASHac] = ACTIONS(5109), - [anon_sym_BSLASHAc] = ACTIONS(5109), - [anon_sym_BSLASHacp] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), - [anon_sym_BSLASHcolor] = ACTIONS(5109), - [anon_sym_BSLASHcolorbox] = ACTIONS(5109), - [anon_sym_BSLASHtextcolor] = ACTIONS(5109), - [anon_sym_BSLASHpagecolor] = ACTIONS(5109), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), - }, - [1177] = { - [sym_command_name] = ACTIONS(5113), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5113), - [anon_sym_LPAREN] = ACTIONS(5111), - [anon_sym_RPAREN] = ACTIONS(5111), - [anon_sym_LBRACK] = ACTIONS(5111), - [anon_sym_RBRACK] = ACTIONS(5111), - [anon_sym_COMMA] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(5111), - [anon_sym_BSLASHpart] = ACTIONS(5113), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddpart] = ACTIONS(5113), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5111), - [anon_sym_BSLASHchapter] = ACTIONS(5113), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddchap] = ACTIONS(5113), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsection] = ACTIONS(5113), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHaddsec] = ACTIONS(5113), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5113), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5111), - [anon_sym_BSLASHparagraph] = ACTIONS(5113), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5113), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5111), - [anon_sym_BSLASHitem] = ACTIONS(5113), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5111), - [anon_sym_LBRACE] = ACTIONS(5111), - [sym_word] = ACTIONS(5113), - [sym_placeholder] = ACTIONS(5111), - [anon_sym_PLUS] = ACTIONS(5113), - [anon_sym_DASH] = ACTIONS(5113), - [anon_sym_STAR] = ACTIONS(5113), - [anon_sym_SLASH] = ACTIONS(5113), - [anon_sym_CARET] = ACTIONS(5113), - [anon_sym__] = ACTIONS(5113), - [anon_sym_LT] = ACTIONS(5113), - [anon_sym_GT] = ACTIONS(5113), - [anon_sym_BANG] = ACTIONS(5113), - [anon_sym_PIPE] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(5113), - [anon_sym_SQUOTE] = ACTIONS(5113), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5111), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5111), - [anon_sym_DOLLAR] = ACTIONS(5113), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5111), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5111), - [anon_sym_BSLASHbegin] = ACTIONS(5113), - [anon_sym_BSLASHusepackage] = ACTIONS(5113), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5113), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5113), - [anon_sym_BSLASHinclude] = ACTIONS(5113), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5113), - [anon_sym_BSLASHinput] = ACTIONS(5113), - [anon_sym_BSLASHsubfile] = ACTIONS(5113), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5113), - [anon_sym_BSLASHbibliography] = ACTIONS(5113), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5113), - [anon_sym_BSLASHincludesvg] = ACTIONS(5113), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5113), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5113), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5113), - [anon_sym_BSLASHimport] = ACTIONS(5113), - [anon_sym_BSLASHsubimport] = ACTIONS(5113), - [anon_sym_BSLASHinputfrom] = ACTIONS(5113), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5113), - [anon_sym_BSLASHincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5113), - [anon_sym_BSLASHcaption] = ACTIONS(5113), - [anon_sym_BSLASHcite] = ACTIONS(5113), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCite] = ACTIONS(5113), - [anon_sym_BSLASHnocite] = ACTIONS(5113), - [anon_sym_BSLASHcitet] = ACTIONS(5113), - [anon_sym_BSLASHcitep] = ACTIONS(5113), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteauthor] = ACTIONS(5113), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5113), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitetitle] = ACTIONS(5113), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteyear] = ACTIONS(5113), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5111), - [anon_sym_BSLASHcitedate] = ACTIONS(5113), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5111), - [anon_sym_BSLASHciteurl] = ACTIONS(5113), - [anon_sym_BSLASHfullcite] = ACTIONS(5113), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5113), - [anon_sym_BSLASHcitealt] = ACTIONS(5113), - [anon_sym_BSLASHcitealp] = ACTIONS(5113), - [anon_sym_BSLASHcitetext] = ACTIONS(5113), - [anon_sym_BSLASHparencite] = ACTIONS(5113), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHParencite] = ACTIONS(5113), - [anon_sym_BSLASHfootcite] = ACTIONS(5113), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5113), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5113), - [anon_sym_BSLASHtextcite] = ACTIONS(5113), - [anon_sym_BSLASHTextcite] = ACTIONS(5113), - [anon_sym_BSLASHsmartcite] = ACTIONS(5113), - [anon_sym_BSLASHSmartcite] = ACTIONS(5113), - [anon_sym_BSLASHsupercite] = ACTIONS(5113), - [anon_sym_BSLASHautocite] = ACTIONS(5113), - [anon_sym_BSLASHAutocite] = ACTIONS(5113), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5111), - [anon_sym_BSLASHvolcite] = ACTIONS(5113), - [anon_sym_BSLASHVolcite] = ACTIONS(5113), - [anon_sym_BSLASHpvolcite] = ACTIONS(5113), - [anon_sym_BSLASHPvolcite] = ACTIONS(5113), - [anon_sym_BSLASHfvolcite] = ACTIONS(5113), - [anon_sym_BSLASHftvolcite] = ACTIONS(5113), - [anon_sym_BSLASHsvolcite] = ACTIONS(5113), - [anon_sym_BSLASHSvolcite] = ACTIONS(5113), - [anon_sym_BSLASHtvolcite] = ACTIONS(5113), - [anon_sym_BSLASHTvolcite] = ACTIONS(5113), - [anon_sym_BSLASHavolcite] = ACTIONS(5113), - [anon_sym_BSLASHAvolcite] = ACTIONS(5113), - [anon_sym_BSLASHnotecite] = ACTIONS(5113), - [anon_sym_BSLASHNotecite] = ACTIONS(5113), - [anon_sym_BSLASHpnotecite] = ACTIONS(5113), - [anon_sym_BSLASHPnotecite] = ACTIONS(5113), - [anon_sym_BSLASHfnotecite] = ACTIONS(5113), - [anon_sym_BSLASHlabel] = ACTIONS(5113), - [anon_sym_BSLASHref] = ACTIONS(5113), - [anon_sym_BSLASHeqref] = ACTIONS(5113), - [anon_sym_BSLASHvref] = ACTIONS(5113), - [anon_sym_BSLASHVref] = ACTIONS(5113), - [anon_sym_BSLASHautoref] = ACTIONS(5113), - [anon_sym_BSLASHpageref] = ACTIONS(5113), - [anon_sym_BSLASHcref] = ACTIONS(5113), - [anon_sym_BSLASHCref] = ACTIONS(5113), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnameCref] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5113), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5113), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5113), - [anon_sym_BSLASHlabelcref] = ACTIONS(5113), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange] = ACTIONS(5113), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHCrefrange] = ACTIONS(5113), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5111), - [anon_sym_BSLASHnewlabel] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand] = ACTIONS(5113), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5113), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5113), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5111), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5113), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5111), - [anon_sym_BSLASHdef] = ACTIONS(5113), - [anon_sym_BSLASHlet] = ACTIONS(5113), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5113), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5113), - [anon_sym_BSLASHgls] = ACTIONS(5113), - [anon_sym_BSLASHGls] = ACTIONS(5113), - [anon_sym_BSLASHGLS] = ACTIONS(5113), - [anon_sym_BSLASHglspl] = ACTIONS(5113), - [anon_sym_BSLASHGlspl] = ACTIONS(5113), - [anon_sym_BSLASHGLSpl] = ACTIONS(5113), - [anon_sym_BSLASHglsdisp] = ACTIONS(5113), - [anon_sym_BSLASHglslink] = ACTIONS(5113), - [anon_sym_BSLASHglstext] = ACTIONS(5113), - [anon_sym_BSLASHGlstext] = ACTIONS(5113), - [anon_sym_BSLASHGLStext] = ACTIONS(5113), - [anon_sym_BSLASHglsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5113), - [anon_sym_BSLASHglsplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSplural] = ACTIONS(5113), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5113), - [anon_sym_BSLASHglsname] = ACTIONS(5113), - [anon_sym_BSLASHGlsname] = ACTIONS(5113), - [anon_sym_BSLASHGLSname] = ACTIONS(5113), - [anon_sym_BSLASHglssymbol] = ACTIONS(5113), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5113), - [anon_sym_BSLASHglsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5113), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5113), - [anon_sym_BSLASHglsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5113), - [anon_sym_BSLASHglsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5113), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5113), - [anon_sym_BSLASHglsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5113), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5113), - [anon_sym_BSLASHglsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5113), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5113), - [anon_sym_BSLASHnewacronym] = ACTIONS(5113), - [anon_sym_BSLASHacrshort] = ACTIONS(5113), - [anon_sym_BSLASHAcrshort] = ACTIONS(5113), - [anon_sym_BSLASHACRshort] = ACTIONS(5113), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5113), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5113), - [anon_sym_BSLASHacrlong] = ACTIONS(5113), - [anon_sym_BSLASHAcrlong] = ACTIONS(5113), - [anon_sym_BSLASHACRlong] = ACTIONS(5113), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5113), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5113), - [anon_sym_BSLASHacrfull] = ACTIONS(5113), - [anon_sym_BSLASHAcrfull] = ACTIONS(5113), - [anon_sym_BSLASHACRfull] = ACTIONS(5113), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5113), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5113), - [anon_sym_BSLASHacs] = ACTIONS(5113), - [anon_sym_BSLASHAcs] = ACTIONS(5113), - [anon_sym_BSLASHacsp] = ACTIONS(5113), - [anon_sym_BSLASHAcsp] = ACTIONS(5113), - [anon_sym_BSLASHacl] = ACTIONS(5113), - [anon_sym_BSLASHAcl] = ACTIONS(5113), - [anon_sym_BSLASHaclp] = ACTIONS(5113), - [anon_sym_BSLASHAclp] = ACTIONS(5113), - [anon_sym_BSLASHacf] = ACTIONS(5113), - [anon_sym_BSLASHAcf] = ACTIONS(5113), - [anon_sym_BSLASHacfp] = ACTIONS(5113), - [anon_sym_BSLASHAcfp] = ACTIONS(5113), - [anon_sym_BSLASHac] = ACTIONS(5113), - [anon_sym_BSLASHAc] = ACTIONS(5113), - [anon_sym_BSLASHacp] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5113), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5113), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5113), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5113), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5113), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5113), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5113), - [anon_sym_BSLASHcolor] = ACTIONS(5113), - [anon_sym_BSLASHcolorbox] = ACTIONS(5113), - [anon_sym_BSLASHtextcolor] = ACTIONS(5113), - [anon_sym_BSLASHpagecolor] = ACTIONS(5113), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5113), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5113), - }, - [1178] = { - [sym_command_name] = ACTIONS(5117), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5117), - [anon_sym_LPAREN] = ACTIONS(5115), - [anon_sym_RPAREN] = ACTIONS(5115), - [anon_sym_LBRACK] = ACTIONS(5115), - [anon_sym_RBRACK] = ACTIONS(5115), - [anon_sym_COMMA] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(5115), - [anon_sym_BSLASHpart] = ACTIONS(5117), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddpart] = ACTIONS(5117), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5115), - [anon_sym_BSLASHchapter] = ACTIONS(5117), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddchap] = ACTIONS(5117), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsection] = ACTIONS(5117), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHaddsec] = ACTIONS(5117), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5117), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5115), - [anon_sym_BSLASHparagraph] = ACTIONS(5117), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5117), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5115), - [anon_sym_BSLASHitem] = ACTIONS(5117), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5115), - [anon_sym_LBRACE] = ACTIONS(5115), - [sym_word] = ACTIONS(5117), - [sym_placeholder] = ACTIONS(5115), - [anon_sym_PLUS] = ACTIONS(5117), - [anon_sym_DASH] = ACTIONS(5117), - [anon_sym_STAR] = ACTIONS(5117), - [anon_sym_SLASH] = ACTIONS(5117), - [anon_sym_CARET] = ACTIONS(5117), - [anon_sym__] = ACTIONS(5117), - [anon_sym_LT] = ACTIONS(5117), - [anon_sym_GT] = ACTIONS(5117), - [anon_sym_BANG] = ACTIONS(5117), - [anon_sym_PIPE] = ACTIONS(5117), - [anon_sym_COLON] = ACTIONS(5117), - [anon_sym_SQUOTE] = ACTIONS(5117), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5115), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5115), - [anon_sym_DOLLAR] = ACTIONS(5117), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5115), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5115), - [anon_sym_BSLASHbegin] = ACTIONS(5117), - [anon_sym_BSLASHusepackage] = ACTIONS(5117), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5117), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5117), - [anon_sym_BSLASHinclude] = ACTIONS(5117), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5117), - [anon_sym_BSLASHinput] = ACTIONS(5117), - [anon_sym_BSLASHsubfile] = ACTIONS(5117), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5117), - [anon_sym_BSLASHbibliography] = ACTIONS(5117), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5117), - [anon_sym_BSLASHincludesvg] = ACTIONS(5117), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5117), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5117), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5117), - [anon_sym_BSLASHimport] = ACTIONS(5117), - [anon_sym_BSLASHsubimport] = ACTIONS(5117), - [anon_sym_BSLASHinputfrom] = ACTIONS(5117), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5117), - [anon_sym_BSLASHincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5117), - [anon_sym_BSLASHcaption] = ACTIONS(5117), - [anon_sym_BSLASHcite] = ACTIONS(5117), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCite] = ACTIONS(5117), - [anon_sym_BSLASHnocite] = ACTIONS(5117), - [anon_sym_BSLASHcitet] = ACTIONS(5117), - [anon_sym_BSLASHcitep] = ACTIONS(5117), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteauthor] = ACTIONS(5117), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5117), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitetitle] = ACTIONS(5117), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteyear] = ACTIONS(5117), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5115), - [anon_sym_BSLASHcitedate] = ACTIONS(5117), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5115), - [anon_sym_BSLASHciteurl] = ACTIONS(5117), - [anon_sym_BSLASHfullcite] = ACTIONS(5117), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5117), - [anon_sym_BSLASHcitealt] = ACTIONS(5117), - [anon_sym_BSLASHcitealp] = ACTIONS(5117), - [anon_sym_BSLASHcitetext] = ACTIONS(5117), - [anon_sym_BSLASHparencite] = ACTIONS(5117), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHParencite] = ACTIONS(5117), - [anon_sym_BSLASHfootcite] = ACTIONS(5117), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5117), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5117), - [anon_sym_BSLASHtextcite] = ACTIONS(5117), - [anon_sym_BSLASHTextcite] = ACTIONS(5117), - [anon_sym_BSLASHsmartcite] = ACTIONS(5117), - [anon_sym_BSLASHSmartcite] = ACTIONS(5117), - [anon_sym_BSLASHsupercite] = ACTIONS(5117), - [anon_sym_BSLASHautocite] = ACTIONS(5117), - [anon_sym_BSLASHAutocite] = ACTIONS(5117), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5115), - [anon_sym_BSLASHvolcite] = ACTIONS(5117), - [anon_sym_BSLASHVolcite] = ACTIONS(5117), - [anon_sym_BSLASHpvolcite] = ACTIONS(5117), - [anon_sym_BSLASHPvolcite] = ACTIONS(5117), - [anon_sym_BSLASHfvolcite] = ACTIONS(5117), - [anon_sym_BSLASHftvolcite] = ACTIONS(5117), - [anon_sym_BSLASHsvolcite] = ACTIONS(5117), - [anon_sym_BSLASHSvolcite] = ACTIONS(5117), - [anon_sym_BSLASHtvolcite] = ACTIONS(5117), - [anon_sym_BSLASHTvolcite] = ACTIONS(5117), - [anon_sym_BSLASHavolcite] = ACTIONS(5117), - [anon_sym_BSLASHAvolcite] = ACTIONS(5117), - [anon_sym_BSLASHnotecite] = ACTIONS(5117), - [anon_sym_BSLASHNotecite] = ACTIONS(5117), - [anon_sym_BSLASHpnotecite] = ACTIONS(5117), - [anon_sym_BSLASHPnotecite] = ACTIONS(5117), - [anon_sym_BSLASHfnotecite] = ACTIONS(5117), - [anon_sym_BSLASHlabel] = ACTIONS(5117), - [anon_sym_BSLASHref] = ACTIONS(5117), - [anon_sym_BSLASHeqref] = ACTIONS(5117), - [anon_sym_BSLASHvref] = ACTIONS(5117), - [anon_sym_BSLASHVref] = ACTIONS(5117), - [anon_sym_BSLASHautoref] = ACTIONS(5117), - [anon_sym_BSLASHpageref] = ACTIONS(5117), - [anon_sym_BSLASHcref] = ACTIONS(5117), - [anon_sym_BSLASHCref] = ACTIONS(5117), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnameCref] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5117), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5117), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5117), - [anon_sym_BSLASHlabelcref] = ACTIONS(5117), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange] = ACTIONS(5117), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHCrefrange] = ACTIONS(5117), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5115), - [anon_sym_BSLASHnewlabel] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand] = ACTIONS(5117), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5117), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5117), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5115), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5117), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5115), - [anon_sym_BSLASHdef] = ACTIONS(5117), - [anon_sym_BSLASHlet] = ACTIONS(5117), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5117), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5117), - [anon_sym_BSLASHgls] = ACTIONS(5117), - [anon_sym_BSLASHGls] = ACTIONS(5117), - [anon_sym_BSLASHGLS] = ACTIONS(5117), - [anon_sym_BSLASHglspl] = ACTIONS(5117), - [anon_sym_BSLASHGlspl] = ACTIONS(5117), - [anon_sym_BSLASHGLSpl] = ACTIONS(5117), - [anon_sym_BSLASHglsdisp] = ACTIONS(5117), - [anon_sym_BSLASHglslink] = ACTIONS(5117), - [anon_sym_BSLASHglstext] = ACTIONS(5117), - [anon_sym_BSLASHGlstext] = ACTIONS(5117), - [anon_sym_BSLASHGLStext] = ACTIONS(5117), - [anon_sym_BSLASHglsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5117), - [anon_sym_BSLASHglsplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSplural] = ACTIONS(5117), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5117), - [anon_sym_BSLASHglsname] = ACTIONS(5117), - [anon_sym_BSLASHGlsname] = ACTIONS(5117), - [anon_sym_BSLASHGLSname] = ACTIONS(5117), - [anon_sym_BSLASHglssymbol] = ACTIONS(5117), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5117), - [anon_sym_BSLASHglsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5117), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5117), - [anon_sym_BSLASHglsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5117), - [anon_sym_BSLASHglsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5117), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5117), - [anon_sym_BSLASHglsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5117), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5117), - [anon_sym_BSLASHglsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5117), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5117), - [anon_sym_BSLASHnewacronym] = ACTIONS(5117), - [anon_sym_BSLASHacrshort] = ACTIONS(5117), - [anon_sym_BSLASHAcrshort] = ACTIONS(5117), - [anon_sym_BSLASHACRshort] = ACTIONS(5117), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5117), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5117), - [anon_sym_BSLASHacrlong] = ACTIONS(5117), - [anon_sym_BSLASHAcrlong] = ACTIONS(5117), - [anon_sym_BSLASHACRlong] = ACTIONS(5117), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5117), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5117), - [anon_sym_BSLASHacrfull] = ACTIONS(5117), - [anon_sym_BSLASHAcrfull] = ACTIONS(5117), - [anon_sym_BSLASHACRfull] = ACTIONS(5117), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5117), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5117), - [anon_sym_BSLASHacs] = ACTIONS(5117), - [anon_sym_BSLASHAcs] = ACTIONS(5117), - [anon_sym_BSLASHacsp] = ACTIONS(5117), - [anon_sym_BSLASHAcsp] = ACTIONS(5117), - [anon_sym_BSLASHacl] = ACTIONS(5117), - [anon_sym_BSLASHAcl] = ACTIONS(5117), - [anon_sym_BSLASHaclp] = ACTIONS(5117), - [anon_sym_BSLASHAclp] = ACTIONS(5117), - [anon_sym_BSLASHacf] = ACTIONS(5117), - [anon_sym_BSLASHAcf] = ACTIONS(5117), - [anon_sym_BSLASHacfp] = ACTIONS(5117), - [anon_sym_BSLASHAcfp] = ACTIONS(5117), - [anon_sym_BSLASHac] = ACTIONS(5117), - [anon_sym_BSLASHAc] = ACTIONS(5117), - [anon_sym_BSLASHacp] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5117), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5117), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5117), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5117), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5117), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5117), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5117), - [anon_sym_BSLASHcolor] = ACTIONS(5117), - [anon_sym_BSLASHcolorbox] = ACTIONS(5117), - [anon_sym_BSLASHtextcolor] = ACTIONS(5117), - [anon_sym_BSLASHpagecolor] = ACTIONS(5117), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5117), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5117), - }, - [1179] = { - [sym_command_name] = ACTIONS(5147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5147), - [anon_sym_LPAREN] = ACTIONS(5145), - [anon_sym_RPAREN] = ACTIONS(5145), - [anon_sym_LBRACK] = ACTIONS(5145), - [anon_sym_RBRACK] = ACTIONS(5145), - [anon_sym_COMMA] = ACTIONS(5145), - [anon_sym_EQ] = ACTIONS(5145), - [anon_sym_BSLASHpart] = ACTIONS(5147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddpart] = ACTIONS(5147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5145), - [anon_sym_BSLASHchapter] = ACTIONS(5147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddchap] = ACTIONS(5147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsection] = ACTIONS(5147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHaddsec] = ACTIONS(5147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubsection] = ACTIONS(5147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5145), - [anon_sym_BSLASHparagraph] = ACTIONS(5147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5145), - [anon_sym_BSLASHitem] = ACTIONS(5147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5145), - [anon_sym_LBRACE] = ACTIONS(5145), - [sym_word] = ACTIONS(5147), - [sym_placeholder] = ACTIONS(5145), - [anon_sym_PLUS] = ACTIONS(5147), - [anon_sym_DASH] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5147), - [anon_sym_SLASH] = ACTIONS(5147), - [anon_sym_CARET] = ACTIONS(5147), - [anon_sym__] = ACTIONS(5147), - [anon_sym_LT] = ACTIONS(5147), - [anon_sym_GT] = ACTIONS(5147), - [anon_sym_BANG] = ACTIONS(5147), - [anon_sym_PIPE] = ACTIONS(5147), - [anon_sym_COLON] = ACTIONS(5147), - [anon_sym_SQUOTE] = ACTIONS(5147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5145), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5145), - [anon_sym_DOLLAR] = ACTIONS(5147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5145), - [anon_sym_BSLASHbegin] = ACTIONS(5147), - [anon_sym_BSLASHusepackage] = ACTIONS(5147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5147), - [anon_sym_BSLASHinclude] = ACTIONS(5147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5147), - [anon_sym_BSLASHinput] = ACTIONS(5147), - [anon_sym_BSLASHsubfile] = ACTIONS(5147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5147), - [anon_sym_BSLASHbibliography] = ACTIONS(5147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5147), - [anon_sym_BSLASHincludesvg] = ACTIONS(5147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5147), - [anon_sym_BSLASHimport] = ACTIONS(5147), - [anon_sym_BSLASHsubimport] = ACTIONS(5147), - [anon_sym_BSLASHinputfrom] = ACTIONS(5147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5147), - [anon_sym_BSLASHincludefrom] = ACTIONS(5147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5147), - [anon_sym_BSLASHcaption] = ACTIONS(5147), - [anon_sym_BSLASHcite] = ACTIONS(5147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCite] = ACTIONS(5147), - [anon_sym_BSLASHnocite] = ACTIONS(5147), - [anon_sym_BSLASHcitet] = ACTIONS(5147), - [anon_sym_BSLASHcitep] = ACTIONS(5147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteauthor] = ACTIONS(5147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitetitle] = ACTIONS(5147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteyear] = ACTIONS(5147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5145), - [anon_sym_BSLASHcitedate] = ACTIONS(5147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5145), - [anon_sym_BSLASHciteurl] = ACTIONS(5147), - [anon_sym_BSLASHfullcite] = ACTIONS(5147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5147), - [anon_sym_BSLASHcitealt] = ACTIONS(5147), - [anon_sym_BSLASHcitealp] = ACTIONS(5147), - [anon_sym_BSLASHcitetext] = ACTIONS(5147), - [anon_sym_BSLASHparencite] = ACTIONS(5147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHParencite] = ACTIONS(5147), - [anon_sym_BSLASHfootcite] = ACTIONS(5147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5147), - [anon_sym_BSLASHtextcite] = ACTIONS(5147), - [anon_sym_BSLASHTextcite] = ACTIONS(5147), - [anon_sym_BSLASHsmartcite] = ACTIONS(5147), - [anon_sym_BSLASHSmartcite] = ACTIONS(5147), - [anon_sym_BSLASHsupercite] = ACTIONS(5147), - [anon_sym_BSLASHautocite] = ACTIONS(5147), - [anon_sym_BSLASHAutocite] = ACTIONS(5147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5145), - [anon_sym_BSLASHvolcite] = ACTIONS(5147), - [anon_sym_BSLASHVolcite] = ACTIONS(5147), - [anon_sym_BSLASHpvolcite] = ACTIONS(5147), - [anon_sym_BSLASHPvolcite] = ACTIONS(5147), - [anon_sym_BSLASHfvolcite] = ACTIONS(5147), - [anon_sym_BSLASHftvolcite] = ACTIONS(5147), - [anon_sym_BSLASHsvolcite] = ACTIONS(5147), - [anon_sym_BSLASHSvolcite] = ACTIONS(5147), - [anon_sym_BSLASHtvolcite] = ACTIONS(5147), - [anon_sym_BSLASHTvolcite] = ACTIONS(5147), - [anon_sym_BSLASHavolcite] = ACTIONS(5147), - [anon_sym_BSLASHAvolcite] = ACTIONS(5147), - [anon_sym_BSLASHnotecite] = ACTIONS(5147), - [anon_sym_BSLASHNotecite] = ACTIONS(5147), - [anon_sym_BSLASHpnotecite] = ACTIONS(5147), - [anon_sym_BSLASHPnotecite] = ACTIONS(5147), - [anon_sym_BSLASHfnotecite] = ACTIONS(5147), - [anon_sym_BSLASHlabel] = ACTIONS(5147), - [anon_sym_BSLASHref] = ACTIONS(5147), - [anon_sym_BSLASHeqref] = ACTIONS(5147), - [anon_sym_BSLASHvref] = ACTIONS(5147), - [anon_sym_BSLASHVref] = ACTIONS(5147), - [anon_sym_BSLASHautoref] = ACTIONS(5147), - [anon_sym_BSLASHpageref] = ACTIONS(5147), - [anon_sym_BSLASHcref] = ACTIONS(5147), - [anon_sym_BSLASHCref] = ACTIONS(5147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5145), - [anon_sym_BSLASHnamecref] = ACTIONS(5147), - [anon_sym_BSLASHnameCref] = ACTIONS(5147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5147), - [anon_sym_BSLASHlabelcref] = ACTIONS(5147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5147), - [anon_sym_BSLASHcrefrange] = ACTIONS(5147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5145), - [anon_sym_BSLASHCrefrange] = ACTIONS(5147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5145), - [anon_sym_BSLASHnewlabel] = ACTIONS(5147), - [anon_sym_BSLASHnewcommand] = ACTIONS(5147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5145), - [anon_sym_BSLASHdef] = ACTIONS(5147), - [anon_sym_BSLASHlet] = ACTIONS(5147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5147), - [anon_sym_BSLASHgls] = ACTIONS(5147), - [anon_sym_BSLASHGls] = ACTIONS(5147), - [anon_sym_BSLASHGLS] = ACTIONS(5147), - [anon_sym_BSLASHglspl] = ACTIONS(5147), - [anon_sym_BSLASHGlspl] = ACTIONS(5147), - [anon_sym_BSLASHGLSpl] = ACTIONS(5147), - [anon_sym_BSLASHglsdisp] = ACTIONS(5147), - [anon_sym_BSLASHglslink] = ACTIONS(5147), - [anon_sym_BSLASHglstext] = ACTIONS(5147), - [anon_sym_BSLASHGlstext] = ACTIONS(5147), - [anon_sym_BSLASHGLStext] = ACTIONS(5147), - [anon_sym_BSLASHglsfirst] = ACTIONS(5147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5147), - [anon_sym_BSLASHglsplural] = ACTIONS(5147), - [anon_sym_BSLASHGlsplural] = ACTIONS(5147), - [anon_sym_BSLASHGLSplural] = ACTIONS(5147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5147), - [anon_sym_BSLASHglsname] = ACTIONS(5147), - [anon_sym_BSLASHGlsname] = ACTIONS(5147), - [anon_sym_BSLASHGLSname] = ACTIONS(5147), - [anon_sym_BSLASHglssymbol] = ACTIONS(5147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5147), - [anon_sym_BSLASHglsdesc] = ACTIONS(5147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5147), - [anon_sym_BSLASHglsuseri] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5147), - [anon_sym_BSLASHglsuserii] = ACTIONS(5147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5147), - [anon_sym_BSLASHglsuserv] = ACTIONS(5147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5147), - [anon_sym_BSLASHglsuservi] = ACTIONS(5147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5147), - [anon_sym_BSLASHnewacronym] = ACTIONS(5147), - [anon_sym_BSLASHacrshort] = ACTIONS(5147), - [anon_sym_BSLASHAcrshort] = ACTIONS(5147), - [anon_sym_BSLASHACRshort] = ACTIONS(5147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5147), - [anon_sym_BSLASHacrlong] = ACTIONS(5147), - [anon_sym_BSLASHAcrlong] = ACTIONS(5147), - [anon_sym_BSLASHACRlong] = ACTIONS(5147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5147), - [anon_sym_BSLASHacrfull] = ACTIONS(5147), - [anon_sym_BSLASHAcrfull] = ACTIONS(5147), - [anon_sym_BSLASHACRfull] = ACTIONS(5147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5147), - [anon_sym_BSLASHacs] = ACTIONS(5147), - [anon_sym_BSLASHAcs] = ACTIONS(5147), - [anon_sym_BSLASHacsp] = ACTIONS(5147), - [anon_sym_BSLASHAcsp] = ACTIONS(5147), - [anon_sym_BSLASHacl] = ACTIONS(5147), - [anon_sym_BSLASHAcl] = ACTIONS(5147), - [anon_sym_BSLASHaclp] = ACTIONS(5147), - [anon_sym_BSLASHAclp] = ACTIONS(5147), - [anon_sym_BSLASHacf] = ACTIONS(5147), - [anon_sym_BSLASHAcf] = ACTIONS(5147), - [anon_sym_BSLASHacfp] = ACTIONS(5147), - [anon_sym_BSLASHAcfp] = ACTIONS(5147), - [anon_sym_BSLASHac] = ACTIONS(5147), - [anon_sym_BSLASHAc] = ACTIONS(5147), - [anon_sym_BSLASHacp] = ACTIONS(5147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5147), - [anon_sym_BSLASHcolor] = ACTIONS(5147), - [anon_sym_BSLASHcolorbox] = ACTIONS(5147), - [anon_sym_BSLASHtextcolor] = ACTIONS(5147), - [anon_sym_BSLASHpagecolor] = ACTIONS(5147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5147), - }, - [1180] = { - [sym_command_name] = ACTIONS(5155), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5155), - [anon_sym_LPAREN] = ACTIONS(5153), - [anon_sym_RPAREN] = ACTIONS(5153), - [anon_sym_LBRACK] = ACTIONS(5153), - [anon_sym_RBRACK] = ACTIONS(5153), - [anon_sym_COMMA] = ACTIONS(5153), - [anon_sym_EQ] = ACTIONS(5153), - [anon_sym_BSLASHpart] = ACTIONS(5155), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddpart] = ACTIONS(5155), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5153), - [anon_sym_BSLASHchapter] = ACTIONS(5155), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddchap] = ACTIONS(5155), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsection] = ACTIONS(5155), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHaddsec] = ACTIONS(5155), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5155), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5153), - [anon_sym_BSLASHparagraph] = ACTIONS(5155), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5155), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5153), - [anon_sym_BSLASHitem] = ACTIONS(5155), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5153), - [anon_sym_LBRACE] = ACTIONS(5153), - [sym_word] = ACTIONS(5155), - [sym_placeholder] = ACTIONS(5153), - [anon_sym_PLUS] = ACTIONS(5155), - [anon_sym_DASH] = ACTIONS(5155), - [anon_sym_STAR] = ACTIONS(5155), - [anon_sym_SLASH] = ACTIONS(5155), - [anon_sym_CARET] = ACTIONS(5155), - [anon_sym__] = ACTIONS(5155), - [anon_sym_LT] = ACTIONS(5155), - [anon_sym_GT] = ACTIONS(5155), - [anon_sym_BANG] = ACTIONS(5155), - [anon_sym_PIPE] = ACTIONS(5155), - [anon_sym_COLON] = ACTIONS(5155), - [anon_sym_SQUOTE] = ACTIONS(5155), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5153), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5153), - [anon_sym_DOLLAR] = ACTIONS(5155), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5153), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5153), - [anon_sym_BSLASHbegin] = ACTIONS(5155), - [anon_sym_BSLASHusepackage] = ACTIONS(5155), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5155), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5155), - [anon_sym_BSLASHinclude] = ACTIONS(5155), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5155), - [anon_sym_BSLASHinput] = ACTIONS(5155), - [anon_sym_BSLASHsubfile] = ACTIONS(5155), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5155), - [anon_sym_BSLASHbibliography] = ACTIONS(5155), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5155), - [anon_sym_BSLASHincludesvg] = ACTIONS(5155), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5155), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5155), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5155), - [anon_sym_BSLASHimport] = ACTIONS(5155), - [anon_sym_BSLASHsubimport] = ACTIONS(5155), - [anon_sym_BSLASHinputfrom] = ACTIONS(5155), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5155), - [anon_sym_BSLASHincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5155), - [anon_sym_BSLASHcaption] = ACTIONS(5155), - [anon_sym_BSLASHcite] = ACTIONS(5155), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCite] = ACTIONS(5155), - [anon_sym_BSLASHnocite] = ACTIONS(5155), - [anon_sym_BSLASHcitet] = ACTIONS(5155), - [anon_sym_BSLASHcitep] = ACTIONS(5155), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteauthor] = ACTIONS(5155), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5155), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitetitle] = ACTIONS(5155), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteyear] = ACTIONS(5155), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5153), - [anon_sym_BSLASHcitedate] = ACTIONS(5155), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5153), - [anon_sym_BSLASHciteurl] = ACTIONS(5155), - [anon_sym_BSLASHfullcite] = ACTIONS(5155), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5155), - [anon_sym_BSLASHcitealt] = ACTIONS(5155), - [anon_sym_BSLASHcitealp] = ACTIONS(5155), - [anon_sym_BSLASHcitetext] = ACTIONS(5155), - [anon_sym_BSLASHparencite] = ACTIONS(5155), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHParencite] = ACTIONS(5155), - [anon_sym_BSLASHfootcite] = ACTIONS(5155), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5155), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5155), - [anon_sym_BSLASHtextcite] = ACTIONS(5155), - [anon_sym_BSLASHTextcite] = ACTIONS(5155), - [anon_sym_BSLASHsmartcite] = ACTIONS(5155), - [anon_sym_BSLASHSmartcite] = ACTIONS(5155), - [anon_sym_BSLASHsupercite] = ACTIONS(5155), - [anon_sym_BSLASHautocite] = ACTIONS(5155), - [anon_sym_BSLASHAutocite] = ACTIONS(5155), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5153), - [anon_sym_BSLASHvolcite] = ACTIONS(5155), - [anon_sym_BSLASHVolcite] = ACTIONS(5155), - [anon_sym_BSLASHpvolcite] = ACTIONS(5155), - [anon_sym_BSLASHPvolcite] = ACTIONS(5155), - [anon_sym_BSLASHfvolcite] = ACTIONS(5155), - [anon_sym_BSLASHftvolcite] = ACTIONS(5155), - [anon_sym_BSLASHsvolcite] = ACTIONS(5155), - [anon_sym_BSLASHSvolcite] = ACTIONS(5155), - [anon_sym_BSLASHtvolcite] = ACTIONS(5155), - [anon_sym_BSLASHTvolcite] = ACTIONS(5155), - [anon_sym_BSLASHavolcite] = ACTIONS(5155), - [anon_sym_BSLASHAvolcite] = ACTIONS(5155), - [anon_sym_BSLASHnotecite] = ACTIONS(5155), - [anon_sym_BSLASHNotecite] = ACTIONS(5155), - [anon_sym_BSLASHpnotecite] = ACTIONS(5155), - [anon_sym_BSLASHPnotecite] = ACTIONS(5155), - [anon_sym_BSLASHfnotecite] = ACTIONS(5155), - [anon_sym_BSLASHlabel] = ACTIONS(5155), - [anon_sym_BSLASHref] = ACTIONS(5155), - [anon_sym_BSLASHeqref] = ACTIONS(5155), - [anon_sym_BSLASHvref] = ACTIONS(5155), - [anon_sym_BSLASHVref] = ACTIONS(5155), - [anon_sym_BSLASHautoref] = ACTIONS(5155), - [anon_sym_BSLASHpageref] = ACTIONS(5155), - [anon_sym_BSLASHcref] = ACTIONS(5155), - [anon_sym_BSLASHCref] = ACTIONS(5155), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnameCref] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5155), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5155), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5155), - [anon_sym_BSLASHlabelcref] = ACTIONS(5155), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange] = ACTIONS(5155), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHCrefrange] = ACTIONS(5155), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5153), - [anon_sym_BSLASHnewlabel] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand] = ACTIONS(5155), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5155), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5155), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5153), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5155), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5153), - [anon_sym_BSLASHdef] = ACTIONS(5155), - [anon_sym_BSLASHlet] = ACTIONS(5155), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5155), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5155), - [anon_sym_BSLASHgls] = ACTIONS(5155), - [anon_sym_BSLASHGls] = ACTIONS(5155), - [anon_sym_BSLASHGLS] = ACTIONS(5155), - [anon_sym_BSLASHglspl] = ACTIONS(5155), - [anon_sym_BSLASHGlspl] = ACTIONS(5155), - [anon_sym_BSLASHGLSpl] = ACTIONS(5155), - [anon_sym_BSLASHglsdisp] = ACTIONS(5155), - [anon_sym_BSLASHglslink] = ACTIONS(5155), - [anon_sym_BSLASHglstext] = ACTIONS(5155), - [anon_sym_BSLASHGlstext] = ACTIONS(5155), - [anon_sym_BSLASHGLStext] = ACTIONS(5155), - [anon_sym_BSLASHglsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5155), - [anon_sym_BSLASHglsplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSplural] = ACTIONS(5155), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5155), - [anon_sym_BSLASHglsname] = ACTIONS(5155), - [anon_sym_BSLASHGlsname] = ACTIONS(5155), - [anon_sym_BSLASHGLSname] = ACTIONS(5155), - [anon_sym_BSLASHglssymbol] = ACTIONS(5155), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5155), - [anon_sym_BSLASHglsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5155), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5155), - [anon_sym_BSLASHglsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5155), - [anon_sym_BSLASHglsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5155), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5155), - [anon_sym_BSLASHglsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5155), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5155), - [anon_sym_BSLASHglsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5155), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5155), - [anon_sym_BSLASHnewacronym] = ACTIONS(5155), - [anon_sym_BSLASHacrshort] = ACTIONS(5155), - [anon_sym_BSLASHAcrshort] = ACTIONS(5155), - [anon_sym_BSLASHACRshort] = ACTIONS(5155), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5155), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5155), - [anon_sym_BSLASHacrlong] = ACTIONS(5155), - [anon_sym_BSLASHAcrlong] = ACTIONS(5155), - [anon_sym_BSLASHACRlong] = ACTIONS(5155), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5155), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5155), - [anon_sym_BSLASHacrfull] = ACTIONS(5155), - [anon_sym_BSLASHAcrfull] = ACTIONS(5155), - [anon_sym_BSLASHACRfull] = ACTIONS(5155), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5155), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5155), - [anon_sym_BSLASHacs] = ACTIONS(5155), - [anon_sym_BSLASHAcs] = ACTIONS(5155), - [anon_sym_BSLASHacsp] = ACTIONS(5155), - [anon_sym_BSLASHAcsp] = ACTIONS(5155), - [anon_sym_BSLASHacl] = ACTIONS(5155), - [anon_sym_BSLASHAcl] = ACTIONS(5155), - [anon_sym_BSLASHaclp] = ACTIONS(5155), - [anon_sym_BSLASHAclp] = ACTIONS(5155), - [anon_sym_BSLASHacf] = ACTIONS(5155), - [anon_sym_BSLASHAcf] = ACTIONS(5155), - [anon_sym_BSLASHacfp] = ACTIONS(5155), - [anon_sym_BSLASHAcfp] = ACTIONS(5155), - [anon_sym_BSLASHac] = ACTIONS(5155), - [anon_sym_BSLASHAc] = ACTIONS(5155), - [anon_sym_BSLASHacp] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5155), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5155), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5155), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5155), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5155), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5155), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5155), - [anon_sym_BSLASHcolor] = ACTIONS(5155), - [anon_sym_BSLASHcolorbox] = ACTIONS(5155), - [anon_sym_BSLASHtextcolor] = ACTIONS(5155), - [anon_sym_BSLASHpagecolor] = ACTIONS(5155), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5155), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5155), + [anon_sym_BSLASHiffalse] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5095), + [anon_sym_RPAREN] = ACTIONS(5095), + [anon_sym_LBRACK] = ACTIONS(5095), + [anon_sym_RBRACK] = ACTIONS(5095), + [anon_sym_COMMA] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_BSLASHpart] = ACTIONS(5097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddpart] = ACTIONS(5097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), + [anon_sym_BSLASHchapter] = ACTIONS(5097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddchap] = ACTIONS(5097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsection] = ACTIONS(5097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddsec] = ACTIONS(5097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubsection] = ACTIONS(5097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHparagraph] = ACTIONS(5097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), + [anon_sym_BSLASHitem] = ACTIONS(5097), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5095), + [sym_word] = ACTIONS(5097), + [sym_placeholder] = ACTIONS(5095), + [anon_sym_PLUS] = ACTIONS(5097), + [anon_sym_DASH] = ACTIONS(5097), + [anon_sym_STAR] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5097), + [anon_sym_CARET] = ACTIONS(5097), + [anon_sym__] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5097), + [anon_sym_GT] = ACTIONS(5097), + [anon_sym_BANG] = ACTIONS(5097), + [anon_sym_PIPE] = ACTIONS(5097), + [anon_sym_COLON] = ACTIONS(5097), + [anon_sym_SQUOTE] = ACTIONS(5097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5095), + [anon_sym_DOLLAR] = ACTIONS(5097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), + [anon_sym_BSLASHbegin] = ACTIONS(5097), + [anon_sym_BSLASHusepackage] = ACTIONS(5097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), + [anon_sym_BSLASHinclude] = ACTIONS(5097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), + [anon_sym_BSLASHinput] = ACTIONS(5097), + [anon_sym_BSLASHsubfile] = ACTIONS(5097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), + [anon_sym_BSLASHbibliography] = ACTIONS(5097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), + [anon_sym_BSLASHincludesvg] = ACTIONS(5097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), + [anon_sym_BSLASHimport] = ACTIONS(5097), + [anon_sym_BSLASHsubimport] = ACTIONS(5097), + [anon_sym_BSLASHinputfrom] = ACTIONS(5097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), + [anon_sym_BSLASHincludefrom] = ACTIONS(5097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), + [anon_sym_BSLASHcaption] = ACTIONS(5097), + [anon_sym_BSLASHcite] = ACTIONS(5097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCite] = ACTIONS(5097), + [anon_sym_BSLASHnocite] = ACTIONS(5097), + [anon_sym_BSLASHcitet] = ACTIONS(5097), + [anon_sym_BSLASHcitep] = ACTIONS(5097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteauthor] = ACTIONS(5097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitetitle] = ACTIONS(5097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteyear] = ACTIONS(5097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitedate] = ACTIONS(5097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteurl] = ACTIONS(5097), + [anon_sym_BSLASHfullcite] = ACTIONS(5097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), + [anon_sym_BSLASHcitealt] = ACTIONS(5097), + [anon_sym_BSLASHcitealp] = ACTIONS(5097), + [anon_sym_BSLASHcitetext] = ACTIONS(5097), + [anon_sym_BSLASHparencite] = ACTIONS(5097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHParencite] = ACTIONS(5097), + [anon_sym_BSLASHfootcite] = ACTIONS(5097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), + [anon_sym_BSLASHtextcite] = ACTIONS(5097), + [anon_sym_BSLASHTextcite] = ACTIONS(5097), + [anon_sym_BSLASHsmartcite] = ACTIONS(5097), + [anon_sym_BSLASHSmartcite] = ACTIONS(5097), + [anon_sym_BSLASHsupercite] = ACTIONS(5097), + [anon_sym_BSLASHautocite] = ACTIONS(5097), + [anon_sym_BSLASHAutocite] = ACTIONS(5097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHvolcite] = ACTIONS(5097), + [anon_sym_BSLASHVolcite] = ACTIONS(5097), + [anon_sym_BSLASHpvolcite] = ACTIONS(5097), + [anon_sym_BSLASHPvolcite] = ACTIONS(5097), + [anon_sym_BSLASHfvolcite] = ACTIONS(5097), + [anon_sym_BSLASHftvolcite] = ACTIONS(5097), + [anon_sym_BSLASHsvolcite] = ACTIONS(5097), + [anon_sym_BSLASHSvolcite] = ACTIONS(5097), + [anon_sym_BSLASHtvolcite] = ACTIONS(5097), + [anon_sym_BSLASHTvolcite] = ACTIONS(5097), + [anon_sym_BSLASHavolcite] = ACTIONS(5097), + [anon_sym_BSLASHAvolcite] = ACTIONS(5097), + [anon_sym_BSLASHnotecite] = ACTIONS(5097), + [anon_sym_BSLASHNotecite] = ACTIONS(5097), + [anon_sym_BSLASHpnotecite] = ACTIONS(5097), + [anon_sym_BSLASHPnotecite] = ACTIONS(5097), + [anon_sym_BSLASHfnotecite] = ACTIONS(5097), + [anon_sym_BSLASHlabel] = ACTIONS(5097), + [anon_sym_BSLASHref] = ACTIONS(5097), + [anon_sym_BSLASHeqref] = ACTIONS(5097), + [anon_sym_BSLASHvref] = ACTIONS(5097), + [anon_sym_BSLASHVref] = ACTIONS(5097), + [anon_sym_BSLASHautoref] = ACTIONS(5097), + [anon_sym_BSLASHpageref] = ACTIONS(5097), + [anon_sym_BSLASHcref] = ACTIONS(5097), + [anon_sym_BSLASHCref] = ACTIONS(5097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), + [anon_sym_BSLASHnamecref] = ACTIONS(5097), + [anon_sym_BSLASHnameCref] = ACTIONS(5097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), + [anon_sym_BSLASHlabelcref] = ACTIONS(5097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), + [anon_sym_BSLASHcrefrange] = ACTIONS(5097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCrefrange] = ACTIONS(5097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), + [anon_sym_BSLASHnewlabel] = ACTIONS(5097), + [anon_sym_BSLASHnewcommand] = ACTIONS(5097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), + [anon_sym_BSLASHdef] = ACTIONS(5097), + [anon_sym_BSLASHlet] = ACTIONS(5097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), + [anon_sym_BSLASHgls] = ACTIONS(5097), + [anon_sym_BSLASHGls] = ACTIONS(5097), + [anon_sym_BSLASHGLS] = ACTIONS(5097), + [anon_sym_BSLASHglspl] = ACTIONS(5097), + [anon_sym_BSLASHGlspl] = ACTIONS(5097), + [anon_sym_BSLASHGLSpl] = ACTIONS(5097), + [anon_sym_BSLASHglsdisp] = ACTIONS(5097), + [anon_sym_BSLASHglslink] = ACTIONS(5097), + [anon_sym_BSLASHglstext] = ACTIONS(5097), + [anon_sym_BSLASHGlstext] = ACTIONS(5097), + [anon_sym_BSLASHGLStext] = ACTIONS(5097), + [anon_sym_BSLASHglsfirst] = ACTIONS(5097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), + [anon_sym_BSLASHglsplural] = ACTIONS(5097), + [anon_sym_BSLASHGlsplural] = ACTIONS(5097), + [anon_sym_BSLASHGLSplural] = ACTIONS(5097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHglsname] = ACTIONS(5097), + [anon_sym_BSLASHGlsname] = ACTIONS(5097), + [anon_sym_BSLASHGLSname] = ACTIONS(5097), + [anon_sym_BSLASHglssymbol] = ACTIONS(5097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), + [anon_sym_BSLASHglsdesc] = ACTIONS(5097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), + [anon_sym_BSLASHglsuseri] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), + [anon_sym_BSLASHglsuserii] = ACTIONS(5097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), + [anon_sym_BSLASHglsuserv] = ACTIONS(5097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), + [anon_sym_BSLASHglsuservi] = ACTIONS(5097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), + [anon_sym_BSLASHnewacronym] = ACTIONS(5097), + [anon_sym_BSLASHacrshort] = ACTIONS(5097), + [anon_sym_BSLASHAcrshort] = ACTIONS(5097), + [anon_sym_BSLASHACRshort] = ACTIONS(5097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), + [anon_sym_BSLASHacrlong] = ACTIONS(5097), + [anon_sym_BSLASHAcrlong] = ACTIONS(5097), + [anon_sym_BSLASHACRlong] = ACTIONS(5097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), + [anon_sym_BSLASHacrfull] = ACTIONS(5097), + [anon_sym_BSLASHAcrfull] = ACTIONS(5097), + [anon_sym_BSLASHACRfull] = ACTIONS(5097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), + [anon_sym_BSLASHacs] = ACTIONS(5097), + [anon_sym_BSLASHAcs] = ACTIONS(5097), + [anon_sym_BSLASHacsp] = ACTIONS(5097), + [anon_sym_BSLASHAcsp] = ACTIONS(5097), + [anon_sym_BSLASHacl] = ACTIONS(5097), + [anon_sym_BSLASHAcl] = ACTIONS(5097), + [anon_sym_BSLASHaclp] = ACTIONS(5097), + [anon_sym_BSLASHAclp] = ACTIONS(5097), + [anon_sym_BSLASHacf] = ACTIONS(5097), + [anon_sym_BSLASHAcf] = ACTIONS(5097), + [anon_sym_BSLASHacfp] = ACTIONS(5097), + [anon_sym_BSLASHAcfp] = ACTIONS(5097), + [anon_sym_BSLASHac] = ACTIONS(5097), + [anon_sym_BSLASHAc] = ACTIONS(5097), + [anon_sym_BSLASHacp] = ACTIONS(5097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), + [anon_sym_BSLASHcolor] = ACTIONS(5097), + [anon_sym_BSLASHcolorbox] = ACTIONS(5097), + [anon_sym_BSLASHtextcolor] = ACTIONS(5097), + [anon_sym_BSLASHpagecolor] = ACTIONS(5097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), + [anon_sym_BSLASHtext] = ACTIONS(5097), + [anon_sym_BSLASHintertext] = ACTIONS(5097), + [anon_sym_shortintertext] = ACTIONS(5097), }, - [1181] = { - [sym_command_name] = ACTIONS(5021), + [1078] = { + [sym_command_name] = ACTIONS(5093), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_BSLASHpart] = ACTIONS(5021), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddpart] = ACTIONS(5021), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), - [anon_sym_BSLASHchapter] = ACTIONS(5021), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddchap] = ACTIONS(5021), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsection] = ACTIONS(5021), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHaddsec] = ACTIONS(5021), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), - [anon_sym_BSLASHparagraph] = ACTIONS(5021), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), - [anon_sym_BSLASHitem] = ACTIONS(5021), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASHbegin] = ACTIONS(5021), - [anon_sym_BSLASHend] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHiffalse] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_RBRACK] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5091), + [anon_sym_BSLASHpart] = ACTIONS(5093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddpart] = ACTIONS(5093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), + [anon_sym_BSLASHchapter] = ACTIONS(5093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddchap] = ACTIONS(5093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsection] = ACTIONS(5093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddsec] = ACTIONS(5093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubsection] = ACTIONS(5093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHparagraph] = ACTIONS(5093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), + [anon_sym_BSLASHitem] = ACTIONS(5093), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), + [anon_sym_LBRACE] = ACTIONS(5091), + [sym_word] = ACTIONS(5093), + [sym_placeholder] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(5093), + [anon_sym_STAR] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5093), + [anon_sym_CARET] = ACTIONS(5093), + [anon_sym__] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5093), + [anon_sym_GT] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(5093), + [anon_sym_PIPE] = ACTIONS(5093), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_SQUOTE] = ACTIONS(5093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5091), + [anon_sym_DOLLAR] = ACTIONS(5093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), + [anon_sym_BSLASHbegin] = ACTIONS(5093), + [anon_sym_BSLASHusepackage] = ACTIONS(5093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), + [anon_sym_BSLASHinclude] = ACTIONS(5093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), + [anon_sym_BSLASHinput] = ACTIONS(5093), + [anon_sym_BSLASHsubfile] = ACTIONS(5093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), + [anon_sym_BSLASHbibliography] = ACTIONS(5093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), + [anon_sym_BSLASHincludesvg] = ACTIONS(5093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), + [anon_sym_BSLASHimport] = ACTIONS(5093), + [anon_sym_BSLASHsubimport] = ACTIONS(5093), + [anon_sym_BSLASHinputfrom] = ACTIONS(5093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), + [anon_sym_BSLASHincludefrom] = ACTIONS(5093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), + [anon_sym_BSLASHcaption] = ACTIONS(5093), + [anon_sym_BSLASHcite] = ACTIONS(5093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCite] = ACTIONS(5093), + [anon_sym_BSLASHnocite] = ACTIONS(5093), + [anon_sym_BSLASHcitet] = ACTIONS(5093), + [anon_sym_BSLASHcitep] = ACTIONS(5093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteauthor] = ACTIONS(5093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitetitle] = ACTIONS(5093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteyear] = ACTIONS(5093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitedate] = ACTIONS(5093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteurl] = ACTIONS(5093), + [anon_sym_BSLASHfullcite] = ACTIONS(5093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), + [anon_sym_BSLASHcitealt] = ACTIONS(5093), + [anon_sym_BSLASHcitealp] = ACTIONS(5093), + [anon_sym_BSLASHcitetext] = ACTIONS(5093), + [anon_sym_BSLASHparencite] = ACTIONS(5093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHParencite] = ACTIONS(5093), + [anon_sym_BSLASHfootcite] = ACTIONS(5093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), + [anon_sym_BSLASHtextcite] = ACTIONS(5093), + [anon_sym_BSLASHTextcite] = ACTIONS(5093), + [anon_sym_BSLASHsmartcite] = ACTIONS(5093), + [anon_sym_BSLASHSmartcite] = ACTIONS(5093), + [anon_sym_BSLASHsupercite] = ACTIONS(5093), + [anon_sym_BSLASHautocite] = ACTIONS(5093), + [anon_sym_BSLASHAutocite] = ACTIONS(5093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHvolcite] = ACTIONS(5093), + [anon_sym_BSLASHVolcite] = ACTIONS(5093), + [anon_sym_BSLASHpvolcite] = ACTIONS(5093), + [anon_sym_BSLASHPvolcite] = ACTIONS(5093), + [anon_sym_BSLASHfvolcite] = ACTIONS(5093), + [anon_sym_BSLASHftvolcite] = ACTIONS(5093), + [anon_sym_BSLASHsvolcite] = ACTIONS(5093), + [anon_sym_BSLASHSvolcite] = ACTIONS(5093), + [anon_sym_BSLASHtvolcite] = ACTIONS(5093), + [anon_sym_BSLASHTvolcite] = ACTIONS(5093), + [anon_sym_BSLASHavolcite] = ACTIONS(5093), + [anon_sym_BSLASHAvolcite] = ACTIONS(5093), + [anon_sym_BSLASHnotecite] = ACTIONS(5093), + [anon_sym_BSLASHNotecite] = ACTIONS(5093), + [anon_sym_BSLASHpnotecite] = ACTIONS(5093), + [anon_sym_BSLASHPnotecite] = ACTIONS(5093), + [anon_sym_BSLASHfnotecite] = ACTIONS(5093), + [anon_sym_BSLASHlabel] = ACTIONS(5093), + [anon_sym_BSLASHref] = ACTIONS(5093), + [anon_sym_BSLASHeqref] = ACTIONS(5093), + [anon_sym_BSLASHvref] = ACTIONS(5093), + [anon_sym_BSLASHVref] = ACTIONS(5093), + [anon_sym_BSLASHautoref] = ACTIONS(5093), + [anon_sym_BSLASHpageref] = ACTIONS(5093), + [anon_sym_BSLASHcref] = ACTIONS(5093), + [anon_sym_BSLASHCref] = ACTIONS(5093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), + [anon_sym_BSLASHnamecref] = ACTIONS(5093), + [anon_sym_BSLASHnameCref] = ACTIONS(5093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), + [anon_sym_BSLASHlabelcref] = ACTIONS(5093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), + [anon_sym_BSLASHcrefrange] = ACTIONS(5093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCrefrange] = ACTIONS(5093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), + [anon_sym_BSLASHnewlabel] = ACTIONS(5093), + [anon_sym_BSLASHnewcommand] = ACTIONS(5093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), + [anon_sym_BSLASHdef] = ACTIONS(5093), + [anon_sym_BSLASHlet] = ACTIONS(5093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), + [anon_sym_BSLASHgls] = ACTIONS(5093), + [anon_sym_BSLASHGls] = ACTIONS(5093), + [anon_sym_BSLASHGLS] = ACTIONS(5093), + [anon_sym_BSLASHglspl] = ACTIONS(5093), + [anon_sym_BSLASHGlspl] = ACTIONS(5093), + [anon_sym_BSLASHGLSpl] = ACTIONS(5093), + [anon_sym_BSLASHglsdisp] = ACTIONS(5093), + [anon_sym_BSLASHglslink] = ACTIONS(5093), + [anon_sym_BSLASHglstext] = ACTIONS(5093), + [anon_sym_BSLASHGlstext] = ACTIONS(5093), + [anon_sym_BSLASHGLStext] = ACTIONS(5093), + [anon_sym_BSLASHglsfirst] = ACTIONS(5093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), + [anon_sym_BSLASHglsplural] = ACTIONS(5093), + [anon_sym_BSLASHGlsplural] = ACTIONS(5093), + [anon_sym_BSLASHGLSplural] = ACTIONS(5093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHglsname] = ACTIONS(5093), + [anon_sym_BSLASHGlsname] = ACTIONS(5093), + [anon_sym_BSLASHGLSname] = ACTIONS(5093), + [anon_sym_BSLASHglssymbol] = ACTIONS(5093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), + [anon_sym_BSLASHglsdesc] = ACTIONS(5093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), + [anon_sym_BSLASHglsuseri] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), + [anon_sym_BSLASHglsuserii] = ACTIONS(5093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), + [anon_sym_BSLASHglsuserv] = ACTIONS(5093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), + [anon_sym_BSLASHglsuservi] = ACTIONS(5093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), + [anon_sym_BSLASHnewacronym] = ACTIONS(5093), + [anon_sym_BSLASHacrshort] = ACTIONS(5093), + [anon_sym_BSLASHAcrshort] = ACTIONS(5093), + [anon_sym_BSLASHACRshort] = ACTIONS(5093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), + [anon_sym_BSLASHacrlong] = ACTIONS(5093), + [anon_sym_BSLASHAcrlong] = ACTIONS(5093), + [anon_sym_BSLASHACRlong] = ACTIONS(5093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), + [anon_sym_BSLASHacrfull] = ACTIONS(5093), + [anon_sym_BSLASHAcrfull] = ACTIONS(5093), + [anon_sym_BSLASHACRfull] = ACTIONS(5093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), + [anon_sym_BSLASHacs] = ACTIONS(5093), + [anon_sym_BSLASHAcs] = ACTIONS(5093), + [anon_sym_BSLASHacsp] = ACTIONS(5093), + [anon_sym_BSLASHAcsp] = ACTIONS(5093), + [anon_sym_BSLASHacl] = ACTIONS(5093), + [anon_sym_BSLASHAcl] = ACTIONS(5093), + [anon_sym_BSLASHaclp] = ACTIONS(5093), + [anon_sym_BSLASHAclp] = ACTIONS(5093), + [anon_sym_BSLASHacf] = ACTIONS(5093), + [anon_sym_BSLASHAcf] = ACTIONS(5093), + [anon_sym_BSLASHacfp] = ACTIONS(5093), + [anon_sym_BSLASHAcfp] = ACTIONS(5093), + [anon_sym_BSLASHac] = ACTIONS(5093), + [anon_sym_BSLASHAc] = ACTIONS(5093), + [anon_sym_BSLASHacp] = ACTIONS(5093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), + [anon_sym_BSLASHcolor] = ACTIONS(5093), + [anon_sym_BSLASHcolorbox] = ACTIONS(5093), + [anon_sym_BSLASHtextcolor] = ACTIONS(5093), + [anon_sym_BSLASHpagecolor] = ACTIONS(5093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHtext] = ACTIONS(5093), + [anon_sym_BSLASHintertext] = ACTIONS(5093), + [anon_sym_shortintertext] = ACTIONS(5093), }, - [1182] = { - [sym_command_name] = ACTIONS(5025), + [1079] = { + [sym_command_name] = ACTIONS(5089), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_BSLASHpart] = ACTIONS(5025), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddpart] = ACTIONS(5025), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), - [anon_sym_BSLASHchapter] = ACTIONS(5025), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddchap] = ACTIONS(5025), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsection] = ACTIONS(5025), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHaddsec] = ACTIONS(5025), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), - [anon_sym_BSLASHparagraph] = ACTIONS(5025), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), - [anon_sym_BSLASHitem] = ACTIONS(5025), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASHbegin] = ACTIONS(5025), - [anon_sym_BSLASHend] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), - }, - [1183] = { - [sym_command_name] = ACTIONS(5163), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5163), - [anon_sym_LPAREN] = ACTIONS(5161), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_LBRACK] = ACTIONS(5161), - [anon_sym_RBRACK] = ACTIONS(5161), - [anon_sym_COMMA] = ACTIONS(5161), - [anon_sym_EQ] = ACTIONS(5161), - [anon_sym_BSLASHpart] = ACTIONS(5163), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddpart] = ACTIONS(5163), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5161), - [anon_sym_BSLASHchapter] = ACTIONS(5163), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddchap] = ACTIONS(5163), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsection] = ACTIONS(5163), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHaddsec] = ACTIONS(5163), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5163), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5161), - [anon_sym_BSLASHparagraph] = ACTIONS(5163), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5163), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5161), - [anon_sym_BSLASHitem] = ACTIONS(5163), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5161), - [anon_sym_LBRACE] = ACTIONS(5161), - [sym_word] = ACTIONS(5163), - [sym_placeholder] = ACTIONS(5161), - [anon_sym_PLUS] = ACTIONS(5163), - [anon_sym_DASH] = ACTIONS(5163), - [anon_sym_STAR] = ACTIONS(5163), - [anon_sym_SLASH] = ACTIONS(5163), - [anon_sym_CARET] = ACTIONS(5163), - [anon_sym__] = ACTIONS(5163), - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_BANG] = ACTIONS(5163), - [anon_sym_PIPE] = ACTIONS(5163), - [anon_sym_COLON] = ACTIONS(5163), - [anon_sym_SQUOTE] = ACTIONS(5163), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5161), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5161), - [anon_sym_DOLLAR] = ACTIONS(5163), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5161), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5161), - [anon_sym_BSLASHbegin] = ACTIONS(5163), - [anon_sym_BSLASHusepackage] = ACTIONS(5163), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5163), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5163), - [anon_sym_BSLASHinclude] = ACTIONS(5163), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5163), - [anon_sym_BSLASHinput] = ACTIONS(5163), - [anon_sym_BSLASHsubfile] = ACTIONS(5163), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5163), - [anon_sym_BSLASHbibliography] = ACTIONS(5163), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5163), - [anon_sym_BSLASHincludesvg] = ACTIONS(5163), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5163), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5163), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5163), - [anon_sym_BSLASHimport] = ACTIONS(5163), - [anon_sym_BSLASHsubimport] = ACTIONS(5163), - [anon_sym_BSLASHinputfrom] = ACTIONS(5163), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5163), - [anon_sym_BSLASHincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5163), - [anon_sym_BSLASHcaption] = ACTIONS(5163), - [anon_sym_BSLASHcite] = ACTIONS(5163), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCite] = ACTIONS(5163), - [anon_sym_BSLASHnocite] = ACTIONS(5163), - [anon_sym_BSLASHcitet] = ACTIONS(5163), - [anon_sym_BSLASHcitep] = ACTIONS(5163), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteauthor] = ACTIONS(5163), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5163), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitetitle] = ACTIONS(5163), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteyear] = ACTIONS(5163), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5161), - [anon_sym_BSLASHcitedate] = ACTIONS(5163), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5161), - [anon_sym_BSLASHciteurl] = ACTIONS(5163), - [anon_sym_BSLASHfullcite] = ACTIONS(5163), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5163), - [anon_sym_BSLASHcitealt] = ACTIONS(5163), - [anon_sym_BSLASHcitealp] = ACTIONS(5163), - [anon_sym_BSLASHcitetext] = ACTIONS(5163), - [anon_sym_BSLASHparencite] = ACTIONS(5163), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHParencite] = ACTIONS(5163), - [anon_sym_BSLASHfootcite] = ACTIONS(5163), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5163), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5163), - [anon_sym_BSLASHtextcite] = ACTIONS(5163), - [anon_sym_BSLASHTextcite] = ACTIONS(5163), - [anon_sym_BSLASHsmartcite] = ACTIONS(5163), - [anon_sym_BSLASHSmartcite] = ACTIONS(5163), - [anon_sym_BSLASHsupercite] = ACTIONS(5163), - [anon_sym_BSLASHautocite] = ACTIONS(5163), - [anon_sym_BSLASHAutocite] = ACTIONS(5163), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5161), - [anon_sym_BSLASHvolcite] = ACTIONS(5163), - [anon_sym_BSLASHVolcite] = ACTIONS(5163), - [anon_sym_BSLASHpvolcite] = ACTIONS(5163), - [anon_sym_BSLASHPvolcite] = ACTIONS(5163), - [anon_sym_BSLASHfvolcite] = ACTIONS(5163), - [anon_sym_BSLASHftvolcite] = ACTIONS(5163), - [anon_sym_BSLASHsvolcite] = ACTIONS(5163), - [anon_sym_BSLASHSvolcite] = ACTIONS(5163), - [anon_sym_BSLASHtvolcite] = ACTIONS(5163), - [anon_sym_BSLASHTvolcite] = ACTIONS(5163), - [anon_sym_BSLASHavolcite] = ACTIONS(5163), - [anon_sym_BSLASHAvolcite] = ACTIONS(5163), - [anon_sym_BSLASHnotecite] = ACTIONS(5163), - [anon_sym_BSLASHNotecite] = ACTIONS(5163), - [anon_sym_BSLASHpnotecite] = ACTIONS(5163), - [anon_sym_BSLASHPnotecite] = ACTIONS(5163), - [anon_sym_BSLASHfnotecite] = ACTIONS(5163), - [anon_sym_BSLASHlabel] = ACTIONS(5163), - [anon_sym_BSLASHref] = ACTIONS(5163), - [anon_sym_BSLASHeqref] = ACTIONS(5163), - [anon_sym_BSLASHvref] = ACTIONS(5163), - [anon_sym_BSLASHVref] = ACTIONS(5163), - [anon_sym_BSLASHautoref] = ACTIONS(5163), - [anon_sym_BSLASHpageref] = ACTIONS(5163), - [anon_sym_BSLASHcref] = ACTIONS(5163), - [anon_sym_BSLASHCref] = ACTIONS(5163), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnameCref] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5163), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5163), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5163), - [anon_sym_BSLASHlabelcref] = ACTIONS(5163), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange] = ACTIONS(5163), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHCrefrange] = ACTIONS(5163), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5161), - [anon_sym_BSLASHnewlabel] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand] = ACTIONS(5163), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5163), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5163), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5161), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5163), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5161), - [anon_sym_BSLASHdef] = ACTIONS(5163), - [anon_sym_BSLASHlet] = ACTIONS(5163), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5163), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5163), - [anon_sym_BSLASHgls] = ACTIONS(5163), - [anon_sym_BSLASHGls] = ACTIONS(5163), - [anon_sym_BSLASHGLS] = ACTIONS(5163), - [anon_sym_BSLASHglspl] = ACTIONS(5163), - [anon_sym_BSLASHGlspl] = ACTIONS(5163), - [anon_sym_BSLASHGLSpl] = ACTIONS(5163), - [anon_sym_BSLASHglsdisp] = ACTIONS(5163), - [anon_sym_BSLASHglslink] = ACTIONS(5163), - [anon_sym_BSLASHglstext] = ACTIONS(5163), - [anon_sym_BSLASHGlstext] = ACTIONS(5163), - [anon_sym_BSLASHGLStext] = ACTIONS(5163), - [anon_sym_BSLASHglsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5163), - [anon_sym_BSLASHglsplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSplural] = ACTIONS(5163), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5163), - [anon_sym_BSLASHglsname] = ACTIONS(5163), - [anon_sym_BSLASHGlsname] = ACTIONS(5163), - [anon_sym_BSLASHGLSname] = ACTIONS(5163), - [anon_sym_BSLASHglssymbol] = ACTIONS(5163), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5163), - [anon_sym_BSLASHglsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5163), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5163), - [anon_sym_BSLASHglsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5163), - [anon_sym_BSLASHglsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5163), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5163), - [anon_sym_BSLASHglsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5163), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5163), - [anon_sym_BSLASHglsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5163), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5163), - [anon_sym_BSLASHnewacronym] = ACTIONS(5163), - [anon_sym_BSLASHacrshort] = ACTIONS(5163), - [anon_sym_BSLASHAcrshort] = ACTIONS(5163), - [anon_sym_BSLASHACRshort] = ACTIONS(5163), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5163), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5163), - [anon_sym_BSLASHacrlong] = ACTIONS(5163), - [anon_sym_BSLASHAcrlong] = ACTIONS(5163), - [anon_sym_BSLASHACRlong] = ACTIONS(5163), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5163), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5163), - [anon_sym_BSLASHacrfull] = ACTIONS(5163), - [anon_sym_BSLASHAcrfull] = ACTIONS(5163), - [anon_sym_BSLASHACRfull] = ACTIONS(5163), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5163), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5163), - [anon_sym_BSLASHacs] = ACTIONS(5163), - [anon_sym_BSLASHAcs] = ACTIONS(5163), - [anon_sym_BSLASHacsp] = ACTIONS(5163), - [anon_sym_BSLASHAcsp] = ACTIONS(5163), - [anon_sym_BSLASHacl] = ACTIONS(5163), - [anon_sym_BSLASHAcl] = ACTIONS(5163), - [anon_sym_BSLASHaclp] = ACTIONS(5163), - [anon_sym_BSLASHAclp] = ACTIONS(5163), - [anon_sym_BSLASHacf] = ACTIONS(5163), - [anon_sym_BSLASHAcf] = ACTIONS(5163), - [anon_sym_BSLASHacfp] = ACTIONS(5163), - [anon_sym_BSLASHAcfp] = ACTIONS(5163), - [anon_sym_BSLASHac] = ACTIONS(5163), - [anon_sym_BSLASHAc] = ACTIONS(5163), - [anon_sym_BSLASHacp] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5163), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5163), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5163), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5163), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5163), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5163), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5163), - [anon_sym_BSLASHcolor] = ACTIONS(5163), - [anon_sym_BSLASHcolorbox] = ACTIONS(5163), - [anon_sym_BSLASHtextcolor] = ACTIONS(5163), - [anon_sym_BSLASHpagecolor] = ACTIONS(5163), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5163), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5163), - }, - [1184] = { - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_BSLASHpart] = ACTIONS(147), - [anon_sym_BSLASHpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddpart] = ACTIONS(147), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(145), - [anon_sym_BSLASHchapter] = ACTIONS(147), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddchap] = ACTIONS(147), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(145), - [anon_sym_BSLASHsection] = ACTIONS(147), - [anon_sym_BSLASHsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHaddsec] = ACTIONS(147), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubsubsection] = ACTIONS(147), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(145), - [anon_sym_BSLASHparagraph] = ACTIONS(147), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHsubparagraph] = ACTIONS(147), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(145), - [anon_sym_BSLASHitem] = ACTIONS(147), - [anon_sym_BSLASHitem_STAR] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(147), - [anon_sym_BSLASHend] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), - }, - [1185] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_BSLASHpart] = ACTIONS(5171), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddpart] = ACTIONS(5171), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5169), - [anon_sym_BSLASHchapter] = ACTIONS(5171), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddchap] = ACTIONS(5171), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsection] = ACTIONS(5171), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHaddsec] = ACTIONS(5171), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5171), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5169), - [anon_sym_BSLASHparagraph] = ACTIONS(5171), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5171), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5169), - [anon_sym_BSLASHitem] = ACTIONS(5171), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASHbegin] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), - }, - [1186] = { - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_BSLASHpart] = ACTIONS(131), - [anon_sym_BSLASHpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddpart] = ACTIONS(131), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(129), - [anon_sym_BSLASHchapter] = ACTIONS(131), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddchap] = ACTIONS(131), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(129), - [anon_sym_BSLASHsection] = ACTIONS(131), - [anon_sym_BSLASHsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHaddsec] = ACTIONS(131), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubsubsection] = ACTIONS(131), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(129), - [anon_sym_BSLASHparagraph] = ACTIONS(131), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHsubparagraph] = ACTIONS(131), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(129), - [anon_sym_BSLASHitem] = ACTIONS(131), - [anon_sym_BSLASHitem_STAR] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(131), - [anon_sym_BSLASHend] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [anon_sym_BSLASHiffalse] = ACTIONS(5089), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_RPAREN] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_RBRACK] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_EQ] = ACTIONS(5087), + [anon_sym_BSLASHpart] = ACTIONS(5089), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddpart] = ACTIONS(5089), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), + [anon_sym_BSLASHchapter] = ACTIONS(5089), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddchap] = ACTIONS(5089), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsection] = ACTIONS(5089), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddsec] = ACTIONS(5089), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubsection] = ACTIONS(5089), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHparagraph] = ACTIONS(5089), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), + [anon_sym_BSLASHitem] = ACTIONS(5089), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), + [anon_sym_LBRACE] = ACTIONS(5087), + [sym_word] = ACTIONS(5089), + [sym_placeholder] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5089), + [anon_sym__] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_BANG] = ACTIONS(5089), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_COLON] = ACTIONS(5089), + [anon_sym_SQUOTE] = ACTIONS(5089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5087), + [anon_sym_DOLLAR] = ACTIONS(5089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), + [anon_sym_BSLASHbegin] = ACTIONS(5089), + [anon_sym_BSLASHusepackage] = ACTIONS(5089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), + [anon_sym_BSLASHinclude] = ACTIONS(5089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), + [anon_sym_BSLASHinput] = ACTIONS(5089), + [anon_sym_BSLASHsubfile] = ACTIONS(5089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), + [anon_sym_BSLASHbibliography] = ACTIONS(5089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), + [anon_sym_BSLASHincludesvg] = ACTIONS(5089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), + [anon_sym_BSLASHimport] = ACTIONS(5089), + [anon_sym_BSLASHsubimport] = ACTIONS(5089), + [anon_sym_BSLASHinputfrom] = ACTIONS(5089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), + [anon_sym_BSLASHincludefrom] = ACTIONS(5089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), + [anon_sym_BSLASHcaption] = ACTIONS(5089), + [anon_sym_BSLASHcite] = ACTIONS(5089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCite] = ACTIONS(5089), + [anon_sym_BSLASHnocite] = ACTIONS(5089), + [anon_sym_BSLASHcitet] = ACTIONS(5089), + [anon_sym_BSLASHcitep] = ACTIONS(5089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteauthor] = ACTIONS(5089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitetitle] = ACTIONS(5089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteyear] = ACTIONS(5089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitedate] = ACTIONS(5089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteurl] = ACTIONS(5089), + [anon_sym_BSLASHfullcite] = ACTIONS(5089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), + [anon_sym_BSLASHcitealt] = ACTIONS(5089), + [anon_sym_BSLASHcitealp] = ACTIONS(5089), + [anon_sym_BSLASHcitetext] = ACTIONS(5089), + [anon_sym_BSLASHparencite] = ACTIONS(5089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHParencite] = ACTIONS(5089), + [anon_sym_BSLASHfootcite] = ACTIONS(5089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), + [anon_sym_BSLASHtextcite] = ACTIONS(5089), + [anon_sym_BSLASHTextcite] = ACTIONS(5089), + [anon_sym_BSLASHsmartcite] = ACTIONS(5089), + [anon_sym_BSLASHSmartcite] = ACTIONS(5089), + [anon_sym_BSLASHsupercite] = ACTIONS(5089), + [anon_sym_BSLASHautocite] = ACTIONS(5089), + [anon_sym_BSLASHAutocite] = ACTIONS(5089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHvolcite] = ACTIONS(5089), + [anon_sym_BSLASHVolcite] = ACTIONS(5089), + [anon_sym_BSLASHpvolcite] = ACTIONS(5089), + [anon_sym_BSLASHPvolcite] = ACTIONS(5089), + [anon_sym_BSLASHfvolcite] = ACTIONS(5089), + [anon_sym_BSLASHftvolcite] = ACTIONS(5089), + [anon_sym_BSLASHsvolcite] = ACTIONS(5089), + [anon_sym_BSLASHSvolcite] = ACTIONS(5089), + [anon_sym_BSLASHtvolcite] = ACTIONS(5089), + [anon_sym_BSLASHTvolcite] = ACTIONS(5089), + [anon_sym_BSLASHavolcite] = ACTIONS(5089), + [anon_sym_BSLASHAvolcite] = ACTIONS(5089), + [anon_sym_BSLASHnotecite] = ACTIONS(5089), + [anon_sym_BSLASHNotecite] = ACTIONS(5089), + [anon_sym_BSLASHpnotecite] = ACTIONS(5089), + [anon_sym_BSLASHPnotecite] = ACTIONS(5089), + [anon_sym_BSLASHfnotecite] = ACTIONS(5089), + [anon_sym_BSLASHlabel] = ACTIONS(5089), + [anon_sym_BSLASHref] = ACTIONS(5089), + [anon_sym_BSLASHeqref] = ACTIONS(5089), + [anon_sym_BSLASHvref] = ACTIONS(5089), + [anon_sym_BSLASHVref] = ACTIONS(5089), + [anon_sym_BSLASHautoref] = ACTIONS(5089), + [anon_sym_BSLASHpageref] = ACTIONS(5089), + [anon_sym_BSLASHcref] = ACTIONS(5089), + [anon_sym_BSLASHCref] = ACTIONS(5089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), + [anon_sym_BSLASHnamecref] = ACTIONS(5089), + [anon_sym_BSLASHnameCref] = ACTIONS(5089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), + [anon_sym_BSLASHlabelcref] = ACTIONS(5089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), + [anon_sym_BSLASHcrefrange] = ACTIONS(5089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCrefrange] = ACTIONS(5089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), + [anon_sym_BSLASHnewlabel] = ACTIONS(5089), + [anon_sym_BSLASHnewcommand] = ACTIONS(5089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), + [anon_sym_BSLASHdef] = ACTIONS(5089), + [anon_sym_BSLASHlet] = ACTIONS(5089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), + [anon_sym_BSLASHgls] = ACTIONS(5089), + [anon_sym_BSLASHGls] = ACTIONS(5089), + [anon_sym_BSLASHGLS] = ACTIONS(5089), + [anon_sym_BSLASHglspl] = ACTIONS(5089), + [anon_sym_BSLASHGlspl] = ACTIONS(5089), + [anon_sym_BSLASHGLSpl] = ACTIONS(5089), + [anon_sym_BSLASHglsdisp] = ACTIONS(5089), + [anon_sym_BSLASHglslink] = ACTIONS(5089), + [anon_sym_BSLASHglstext] = ACTIONS(5089), + [anon_sym_BSLASHGlstext] = ACTIONS(5089), + [anon_sym_BSLASHGLStext] = ACTIONS(5089), + [anon_sym_BSLASHglsfirst] = ACTIONS(5089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), + [anon_sym_BSLASHglsplural] = ACTIONS(5089), + [anon_sym_BSLASHGlsplural] = ACTIONS(5089), + [anon_sym_BSLASHGLSplural] = ACTIONS(5089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHglsname] = ACTIONS(5089), + [anon_sym_BSLASHGlsname] = ACTIONS(5089), + [anon_sym_BSLASHGLSname] = ACTIONS(5089), + [anon_sym_BSLASHglssymbol] = ACTIONS(5089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), + [anon_sym_BSLASHglsdesc] = ACTIONS(5089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), + [anon_sym_BSLASHglsuseri] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), + [anon_sym_BSLASHglsuserii] = ACTIONS(5089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), + [anon_sym_BSLASHglsuserv] = ACTIONS(5089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), + [anon_sym_BSLASHglsuservi] = ACTIONS(5089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), + [anon_sym_BSLASHnewacronym] = ACTIONS(5089), + [anon_sym_BSLASHacrshort] = ACTIONS(5089), + [anon_sym_BSLASHAcrshort] = ACTIONS(5089), + [anon_sym_BSLASHACRshort] = ACTIONS(5089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), + [anon_sym_BSLASHacrlong] = ACTIONS(5089), + [anon_sym_BSLASHAcrlong] = ACTIONS(5089), + [anon_sym_BSLASHACRlong] = ACTIONS(5089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), + [anon_sym_BSLASHacrfull] = ACTIONS(5089), + [anon_sym_BSLASHAcrfull] = ACTIONS(5089), + [anon_sym_BSLASHACRfull] = ACTIONS(5089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), + [anon_sym_BSLASHacs] = ACTIONS(5089), + [anon_sym_BSLASHAcs] = ACTIONS(5089), + [anon_sym_BSLASHacsp] = ACTIONS(5089), + [anon_sym_BSLASHAcsp] = ACTIONS(5089), + [anon_sym_BSLASHacl] = ACTIONS(5089), + [anon_sym_BSLASHAcl] = ACTIONS(5089), + [anon_sym_BSLASHaclp] = ACTIONS(5089), + [anon_sym_BSLASHAclp] = ACTIONS(5089), + [anon_sym_BSLASHacf] = ACTIONS(5089), + [anon_sym_BSLASHAcf] = ACTIONS(5089), + [anon_sym_BSLASHacfp] = ACTIONS(5089), + [anon_sym_BSLASHAcfp] = ACTIONS(5089), + [anon_sym_BSLASHac] = ACTIONS(5089), + [anon_sym_BSLASHAc] = ACTIONS(5089), + [anon_sym_BSLASHacp] = ACTIONS(5089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), + [anon_sym_BSLASHcolor] = ACTIONS(5089), + [anon_sym_BSLASHcolorbox] = ACTIONS(5089), + [anon_sym_BSLASHtextcolor] = ACTIONS(5089), + [anon_sym_BSLASHpagecolor] = ACTIONS(5089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHtext] = ACTIONS(5089), + [anon_sym_BSLASHintertext] = ACTIONS(5089), + [anon_sym_shortintertext] = ACTIONS(5089), }, - [1187] = { - [sym_command_name] = ACTIONS(5033), + [1080] = { + [sym_command_name] = ACTIONS(5085), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_BSLASHpart] = ACTIONS(5033), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddpart] = ACTIONS(5033), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), - [anon_sym_BSLASHchapter] = ACTIONS(5033), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddchap] = ACTIONS(5033), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsection] = ACTIONS(5033), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHaddsec] = ACTIONS(5033), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), - [anon_sym_BSLASHparagraph] = ACTIONS(5033), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), - [anon_sym_BSLASHitem] = ACTIONS(5033), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASHbegin] = ACTIONS(5033), - [anon_sym_BSLASHend] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [anon_sym_BSLASHiffalse] = ACTIONS(5085), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_RPAREN] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_RBRACK] = ACTIONS(5083), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5083), + [anon_sym_BSLASHpart] = ACTIONS(5085), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddpart] = ACTIONS(5085), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), + [anon_sym_BSLASHchapter] = ACTIONS(5085), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddchap] = ACTIONS(5085), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsection] = ACTIONS(5085), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddsec] = ACTIONS(5085), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubsection] = ACTIONS(5085), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHparagraph] = ACTIONS(5085), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), + [anon_sym_BSLASHitem] = ACTIONS(5085), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), + [anon_sym_LBRACE] = ACTIONS(5083), + [sym_word] = ACTIONS(5085), + [sym_placeholder] = ACTIONS(5083), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_CARET] = ACTIONS(5085), + [anon_sym__] = ACTIONS(5085), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_PIPE] = ACTIONS(5085), + [anon_sym_COLON] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5083), + [anon_sym_DOLLAR] = ACTIONS(5085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), + [anon_sym_BSLASHbegin] = ACTIONS(5085), + [anon_sym_BSLASHusepackage] = ACTIONS(5085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), + [anon_sym_BSLASHinclude] = ACTIONS(5085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), + [anon_sym_BSLASHinput] = ACTIONS(5085), + [anon_sym_BSLASHsubfile] = ACTIONS(5085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), + [anon_sym_BSLASHbibliography] = ACTIONS(5085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), + [anon_sym_BSLASHincludesvg] = ACTIONS(5085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), + [anon_sym_BSLASHimport] = ACTIONS(5085), + [anon_sym_BSLASHsubimport] = ACTIONS(5085), + [anon_sym_BSLASHinputfrom] = ACTIONS(5085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), + [anon_sym_BSLASHincludefrom] = ACTIONS(5085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), + [anon_sym_BSLASHcaption] = ACTIONS(5085), + [anon_sym_BSLASHcite] = ACTIONS(5085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCite] = ACTIONS(5085), + [anon_sym_BSLASHnocite] = ACTIONS(5085), + [anon_sym_BSLASHcitet] = ACTIONS(5085), + [anon_sym_BSLASHcitep] = ACTIONS(5085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteauthor] = ACTIONS(5085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitetitle] = ACTIONS(5085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteyear] = ACTIONS(5085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitedate] = ACTIONS(5085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteurl] = ACTIONS(5085), + [anon_sym_BSLASHfullcite] = ACTIONS(5085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), + [anon_sym_BSLASHcitealt] = ACTIONS(5085), + [anon_sym_BSLASHcitealp] = ACTIONS(5085), + [anon_sym_BSLASHcitetext] = ACTIONS(5085), + [anon_sym_BSLASHparencite] = ACTIONS(5085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHParencite] = ACTIONS(5085), + [anon_sym_BSLASHfootcite] = ACTIONS(5085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), + [anon_sym_BSLASHtextcite] = ACTIONS(5085), + [anon_sym_BSLASHTextcite] = ACTIONS(5085), + [anon_sym_BSLASHsmartcite] = ACTIONS(5085), + [anon_sym_BSLASHSmartcite] = ACTIONS(5085), + [anon_sym_BSLASHsupercite] = ACTIONS(5085), + [anon_sym_BSLASHautocite] = ACTIONS(5085), + [anon_sym_BSLASHAutocite] = ACTIONS(5085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHvolcite] = ACTIONS(5085), + [anon_sym_BSLASHVolcite] = ACTIONS(5085), + [anon_sym_BSLASHpvolcite] = ACTIONS(5085), + [anon_sym_BSLASHPvolcite] = ACTIONS(5085), + [anon_sym_BSLASHfvolcite] = ACTIONS(5085), + [anon_sym_BSLASHftvolcite] = ACTIONS(5085), + [anon_sym_BSLASHsvolcite] = ACTIONS(5085), + [anon_sym_BSLASHSvolcite] = ACTIONS(5085), + [anon_sym_BSLASHtvolcite] = ACTIONS(5085), + [anon_sym_BSLASHTvolcite] = ACTIONS(5085), + [anon_sym_BSLASHavolcite] = ACTIONS(5085), + [anon_sym_BSLASHAvolcite] = ACTIONS(5085), + [anon_sym_BSLASHnotecite] = ACTIONS(5085), + [anon_sym_BSLASHNotecite] = ACTIONS(5085), + [anon_sym_BSLASHpnotecite] = ACTIONS(5085), + [anon_sym_BSLASHPnotecite] = ACTIONS(5085), + [anon_sym_BSLASHfnotecite] = ACTIONS(5085), + [anon_sym_BSLASHlabel] = ACTIONS(5085), + [anon_sym_BSLASHref] = ACTIONS(5085), + [anon_sym_BSLASHeqref] = ACTIONS(5085), + [anon_sym_BSLASHvref] = ACTIONS(5085), + [anon_sym_BSLASHVref] = ACTIONS(5085), + [anon_sym_BSLASHautoref] = ACTIONS(5085), + [anon_sym_BSLASHpageref] = ACTIONS(5085), + [anon_sym_BSLASHcref] = ACTIONS(5085), + [anon_sym_BSLASHCref] = ACTIONS(5085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), + [anon_sym_BSLASHnamecref] = ACTIONS(5085), + [anon_sym_BSLASHnameCref] = ACTIONS(5085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), + [anon_sym_BSLASHlabelcref] = ACTIONS(5085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), + [anon_sym_BSLASHcrefrange] = ACTIONS(5085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCrefrange] = ACTIONS(5085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), + [anon_sym_BSLASHnewlabel] = ACTIONS(5085), + [anon_sym_BSLASHnewcommand] = ACTIONS(5085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), + [anon_sym_BSLASHdef] = ACTIONS(5085), + [anon_sym_BSLASHlet] = ACTIONS(5085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), + [anon_sym_BSLASHgls] = ACTIONS(5085), + [anon_sym_BSLASHGls] = ACTIONS(5085), + [anon_sym_BSLASHGLS] = ACTIONS(5085), + [anon_sym_BSLASHglspl] = ACTIONS(5085), + [anon_sym_BSLASHGlspl] = ACTIONS(5085), + [anon_sym_BSLASHGLSpl] = ACTIONS(5085), + [anon_sym_BSLASHglsdisp] = ACTIONS(5085), + [anon_sym_BSLASHglslink] = ACTIONS(5085), + [anon_sym_BSLASHglstext] = ACTIONS(5085), + [anon_sym_BSLASHGlstext] = ACTIONS(5085), + [anon_sym_BSLASHGLStext] = ACTIONS(5085), + [anon_sym_BSLASHglsfirst] = ACTIONS(5085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), + [anon_sym_BSLASHglsplural] = ACTIONS(5085), + [anon_sym_BSLASHGlsplural] = ACTIONS(5085), + [anon_sym_BSLASHGLSplural] = ACTIONS(5085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHglsname] = ACTIONS(5085), + [anon_sym_BSLASHGlsname] = ACTIONS(5085), + [anon_sym_BSLASHGLSname] = ACTIONS(5085), + [anon_sym_BSLASHglssymbol] = ACTIONS(5085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), + [anon_sym_BSLASHglsdesc] = ACTIONS(5085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), + [anon_sym_BSLASHglsuseri] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), + [anon_sym_BSLASHglsuserii] = ACTIONS(5085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), + [anon_sym_BSLASHglsuserv] = ACTIONS(5085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), + [anon_sym_BSLASHglsuservi] = ACTIONS(5085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), + [anon_sym_BSLASHnewacronym] = ACTIONS(5085), + [anon_sym_BSLASHacrshort] = ACTIONS(5085), + [anon_sym_BSLASHAcrshort] = ACTIONS(5085), + [anon_sym_BSLASHACRshort] = ACTIONS(5085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), + [anon_sym_BSLASHacrlong] = ACTIONS(5085), + [anon_sym_BSLASHAcrlong] = ACTIONS(5085), + [anon_sym_BSLASHACRlong] = ACTIONS(5085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), + [anon_sym_BSLASHacrfull] = ACTIONS(5085), + [anon_sym_BSLASHAcrfull] = ACTIONS(5085), + [anon_sym_BSLASHACRfull] = ACTIONS(5085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), + [anon_sym_BSLASHacs] = ACTIONS(5085), + [anon_sym_BSLASHAcs] = ACTIONS(5085), + [anon_sym_BSLASHacsp] = ACTIONS(5085), + [anon_sym_BSLASHAcsp] = ACTIONS(5085), + [anon_sym_BSLASHacl] = ACTIONS(5085), + [anon_sym_BSLASHAcl] = ACTIONS(5085), + [anon_sym_BSLASHaclp] = ACTIONS(5085), + [anon_sym_BSLASHAclp] = ACTIONS(5085), + [anon_sym_BSLASHacf] = ACTIONS(5085), + [anon_sym_BSLASHAcf] = ACTIONS(5085), + [anon_sym_BSLASHacfp] = ACTIONS(5085), + [anon_sym_BSLASHAcfp] = ACTIONS(5085), + [anon_sym_BSLASHac] = ACTIONS(5085), + [anon_sym_BSLASHAc] = ACTIONS(5085), + [anon_sym_BSLASHacp] = ACTIONS(5085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), + [anon_sym_BSLASHcolor] = ACTIONS(5085), + [anon_sym_BSLASHcolorbox] = ACTIONS(5085), + [anon_sym_BSLASHtextcolor] = ACTIONS(5085), + [anon_sym_BSLASHpagecolor] = ACTIONS(5085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), + [anon_sym_BSLASHtext] = ACTIONS(5085), + [anon_sym_BSLASHintertext] = ACTIONS(5085), + [anon_sym_shortintertext] = ACTIONS(5085), }, - [1188] = { - [sym_command_name] = ACTIONS(5007), + [1081] = { + [sym_command_name] = ACTIONS(5081), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_BSLASHpart] = ACTIONS(5007), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddpart] = ACTIONS(5007), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHchapter] = ACTIONS(5007), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddchap] = ACTIONS(5007), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsection] = ACTIONS(5007), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddsec] = ACTIONS(5007), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHparagraph] = ACTIONS(5007), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHitem] = ACTIONS(5007), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASHbegin] = ACTIONS(5007), - [anon_sym_BSLASHend] = ACTIONS(5007), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), - }, - [1189] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_BSLASHpart] = ACTIONS(5311), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddpart] = ACTIONS(5311), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5309), - [anon_sym_BSLASHchapter] = ACTIONS(5311), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddchap] = ACTIONS(5311), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsection] = ACTIONS(5311), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHaddsec] = ACTIONS(5311), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5311), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5309), - [anon_sym_BSLASHparagraph] = ACTIONS(5311), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5311), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5309), - [anon_sym_BSLASHitem] = ACTIONS(5311), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASHbegin] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), + [anon_sym_BSLASHiffalse] = ACTIONS(5081), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_RPAREN] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_RBRACK] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_EQ] = ACTIONS(5079), + [anon_sym_BSLASHpart] = ACTIONS(5081), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddpart] = ACTIONS(5081), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), + [anon_sym_BSLASHchapter] = ACTIONS(5081), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddchap] = ACTIONS(5081), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsection] = ACTIONS(5081), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddsec] = ACTIONS(5081), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubsection] = ACTIONS(5081), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHparagraph] = ACTIONS(5081), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), + [anon_sym_BSLASHitem] = ACTIONS(5081), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), + [anon_sym_LBRACE] = ACTIONS(5079), + [sym_word] = ACTIONS(5081), + [sym_placeholder] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(5081), + [anon_sym_STAR] = ACTIONS(5081), + [anon_sym_SLASH] = ACTIONS(5081), + [anon_sym_CARET] = ACTIONS(5081), + [anon_sym__] = ACTIONS(5081), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_GT] = ACTIONS(5081), + [anon_sym_BANG] = ACTIONS(5081), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_COLON] = ACTIONS(5081), + [anon_sym_SQUOTE] = ACTIONS(5081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), + [anon_sym_BSLASHbegin] = ACTIONS(5081), + [anon_sym_BSLASHusepackage] = ACTIONS(5081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), + [anon_sym_BSLASHinclude] = ACTIONS(5081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), + [anon_sym_BSLASHinput] = ACTIONS(5081), + [anon_sym_BSLASHsubfile] = ACTIONS(5081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), + [anon_sym_BSLASHbibliography] = ACTIONS(5081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), + [anon_sym_BSLASHincludesvg] = ACTIONS(5081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), + [anon_sym_BSLASHimport] = ACTIONS(5081), + [anon_sym_BSLASHsubimport] = ACTIONS(5081), + [anon_sym_BSLASHinputfrom] = ACTIONS(5081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), + [anon_sym_BSLASHincludefrom] = ACTIONS(5081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), + [anon_sym_BSLASHcaption] = ACTIONS(5081), + [anon_sym_BSLASHcite] = ACTIONS(5081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCite] = ACTIONS(5081), + [anon_sym_BSLASHnocite] = ACTIONS(5081), + [anon_sym_BSLASHcitet] = ACTIONS(5081), + [anon_sym_BSLASHcitep] = ACTIONS(5081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteauthor] = ACTIONS(5081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitetitle] = ACTIONS(5081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteyear] = ACTIONS(5081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitedate] = ACTIONS(5081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteurl] = ACTIONS(5081), + [anon_sym_BSLASHfullcite] = ACTIONS(5081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), + [anon_sym_BSLASHcitealt] = ACTIONS(5081), + [anon_sym_BSLASHcitealp] = ACTIONS(5081), + [anon_sym_BSLASHcitetext] = ACTIONS(5081), + [anon_sym_BSLASHparencite] = ACTIONS(5081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHParencite] = ACTIONS(5081), + [anon_sym_BSLASHfootcite] = ACTIONS(5081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), + [anon_sym_BSLASHtextcite] = ACTIONS(5081), + [anon_sym_BSLASHTextcite] = ACTIONS(5081), + [anon_sym_BSLASHsmartcite] = ACTIONS(5081), + [anon_sym_BSLASHSmartcite] = ACTIONS(5081), + [anon_sym_BSLASHsupercite] = ACTIONS(5081), + [anon_sym_BSLASHautocite] = ACTIONS(5081), + [anon_sym_BSLASHAutocite] = ACTIONS(5081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHvolcite] = ACTIONS(5081), + [anon_sym_BSLASHVolcite] = ACTIONS(5081), + [anon_sym_BSLASHpvolcite] = ACTIONS(5081), + [anon_sym_BSLASHPvolcite] = ACTIONS(5081), + [anon_sym_BSLASHfvolcite] = ACTIONS(5081), + [anon_sym_BSLASHftvolcite] = ACTIONS(5081), + [anon_sym_BSLASHsvolcite] = ACTIONS(5081), + [anon_sym_BSLASHSvolcite] = ACTIONS(5081), + [anon_sym_BSLASHtvolcite] = ACTIONS(5081), + [anon_sym_BSLASHTvolcite] = ACTIONS(5081), + [anon_sym_BSLASHavolcite] = ACTIONS(5081), + [anon_sym_BSLASHAvolcite] = ACTIONS(5081), + [anon_sym_BSLASHnotecite] = ACTIONS(5081), + [anon_sym_BSLASHNotecite] = ACTIONS(5081), + [anon_sym_BSLASHpnotecite] = ACTIONS(5081), + [anon_sym_BSLASHPnotecite] = ACTIONS(5081), + [anon_sym_BSLASHfnotecite] = ACTIONS(5081), + [anon_sym_BSLASHlabel] = ACTIONS(5081), + [anon_sym_BSLASHref] = ACTIONS(5081), + [anon_sym_BSLASHeqref] = ACTIONS(5081), + [anon_sym_BSLASHvref] = ACTIONS(5081), + [anon_sym_BSLASHVref] = ACTIONS(5081), + [anon_sym_BSLASHautoref] = ACTIONS(5081), + [anon_sym_BSLASHpageref] = ACTIONS(5081), + [anon_sym_BSLASHcref] = ACTIONS(5081), + [anon_sym_BSLASHCref] = ACTIONS(5081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), + [anon_sym_BSLASHnamecref] = ACTIONS(5081), + [anon_sym_BSLASHnameCref] = ACTIONS(5081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), + [anon_sym_BSLASHlabelcref] = ACTIONS(5081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), + [anon_sym_BSLASHcrefrange] = ACTIONS(5081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCrefrange] = ACTIONS(5081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), + [anon_sym_BSLASHnewlabel] = ACTIONS(5081), + [anon_sym_BSLASHnewcommand] = ACTIONS(5081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), + [anon_sym_BSLASHdef] = ACTIONS(5081), + [anon_sym_BSLASHlet] = ACTIONS(5081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), + [anon_sym_BSLASHgls] = ACTIONS(5081), + [anon_sym_BSLASHGls] = ACTIONS(5081), + [anon_sym_BSLASHGLS] = ACTIONS(5081), + [anon_sym_BSLASHglspl] = ACTIONS(5081), + [anon_sym_BSLASHGlspl] = ACTIONS(5081), + [anon_sym_BSLASHGLSpl] = ACTIONS(5081), + [anon_sym_BSLASHglsdisp] = ACTIONS(5081), + [anon_sym_BSLASHglslink] = ACTIONS(5081), + [anon_sym_BSLASHglstext] = ACTIONS(5081), + [anon_sym_BSLASHGlstext] = ACTIONS(5081), + [anon_sym_BSLASHGLStext] = ACTIONS(5081), + [anon_sym_BSLASHglsfirst] = ACTIONS(5081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), + [anon_sym_BSLASHglsplural] = ACTIONS(5081), + [anon_sym_BSLASHGlsplural] = ACTIONS(5081), + [anon_sym_BSLASHGLSplural] = ACTIONS(5081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHglsname] = ACTIONS(5081), + [anon_sym_BSLASHGlsname] = ACTIONS(5081), + [anon_sym_BSLASHGLSname] = ACTIONS(5081), + [anon_sym_BSLASHglssymbol] = ACTIONS(5081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), + [anon_sym_BSLASHglsdesc] = ACTIONS(5081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), + [anon_sym_BSLASHglsuseri] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), + [anon_sym_BSLASHglsuserii] = ACTIONS(5081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), + [anon_sym_BSLASHglsuserv] = ACTIONS(5081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), + [anon_sym_BSLASHglsuservi] = ACTIONS(5081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), + [anon_sym_BSLASHnewacronym] = ACTIONS(5081), + [anon_sym_BSLASHacrshort] = ACTIONS(5081), + [anon_sym_BSLASHAcrshort] = ACTIONS(5081), + [anon_sym_BSLASHACRshort] = ACTIONS(5081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), + [anon_sym_BSLASHacrlong] = ACTIONS(5081), + [anon_sym_BSLASHAcrlong] = ACTIONS(5081), + [anon_sym_BSLASHACRlong] = ACTIONS(5081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), + [anon_sym_BSLASHacrfull] = ACTIONS(5081), + [anon_sym_BSLASHAcrfull] = ACTIONS(5081), + [anon_sym_BSLASHACRfull] = ACTIONS(5081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), + [anon_sym_BSLASHacs] = ACTIONS(5081), + [anon_sym_BSLASHAcs] = ACTIONS(5081), + [anon_sym_BSLASHacsp] = ACTIONS(5081), + [anon_sym_BSLASHAcsp] = ACTIONS(5081), + [anon_sym_BSLASHacl] = ACTIONS(5081), + [anon_sym_BSLASHAcl] = ACTIONS(5081), + [anon_sym_BSLASHaclp] = ACTIONS(5081), + [anon_sym_BSLASHAclp] = ACTIONS(5081), + [anon_sym_BSLASHacf] = ACTIONS(5081), + [anon_sym_BSLASHAcf] = ACTIONS(5081), + [anon_sym_BSLASHacfp] = ACTIONS(5081), + [anon_sym_BSLASHAcfp] = ACTIONS(5081), + [anon_sym_BSLASHac] = ACTIONS(5081), + [anon_sym_BSLASHAc] = ACTIONS(5081), + [anon_sym_BSLASHacp] = ACTIONS(5081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), + [anon_sym_BSLASHcolor] = ACTIONS(5081), + [anon_sym_BSLASHcolorbox] = ACTIONS(5081), + [anon_sym_BSLASHtextcolor] = ACTIONS(5081), + [anon_sym_BSLASHpagecolor] = ACTIONS(5081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), + [anon_sym_BSLASHtext] = ACTIONS(5081), + [anon_sym_BSLASHintertext] = ACTIONS(5081), + [anon_sym_shortintertext] = ACTIONS(5081), }, - [1190] = { - [sym_command_name] = ACTIONS(5049), + [1082] = { + [sym_command_name] = ACTIONS(5205), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_BSLASHpart] = ACTIONS(5049), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddpart] = ACTIONS(5049), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), - [anon_sym_BSLASHchapter] = ACTIONS(5049), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddchap] = ACTIONS(5049), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsection] = ACTIONS(5049), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHaddsec] = ACTIONS(5049), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), - [anon_sym_BSLASHparagraph] = ACTIONS(5049), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), - [anon_sym_BSLASHitem] = ACTIONS(5049), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASHbegin] = ACTIONS(5049), - [anon_sym_BSLASHend] = ACTIONS(5049), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [anon_sym_BSLASHiffalse] = ACTIONS(5205), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_RPAREN] = ACTIONS(5203), + [anon_sym_LBRACK] = ACTIONS(5203), + [anon_sym_RBRACK] = ACTIONS(5203), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_EQ] = ACTIONS(5203), + [anon_sym_BSLASHpart] = ACTIONS(5205), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddpart] = ACTIONS(5205), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), + [anon_sym_BSLASHchapter] = ACTIONS(5205), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddchap] = ACTIONS(5205), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsection] = ACTIONS(5205), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddsec] = ACTIONS(5205), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubsection] = ACTIONS(5205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHparagraph] = ACTIONS(5205), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), + [anon_sym_BSLASHitem] = ACTIONS(5205), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), + [anon_sym_LBRACE] = ACTIONS(5203), + [sym_word] = ACTIONS(5205), + [sym_placeholder] = ACTIONS(5203), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_CARET] = ACTIONS(5205), + [anon_sym__] = ACTIONS(5205), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_PIPE] = ACTIONS(5205), + [anon_sym_COLON] = ACTIONS(5205), + [anon_sym_SQUOTE] = ACTIONS(5205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), + [anon_sym_BSLASHbegin] = ACTIONS(5205), + [anon_sym_BSLASHend] = ACTIONS(5205), + [anon_sym_BSLASHusepackage] = ACTIONS(5205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), + [anon_sym_BSLASHinclude] = ACTIONS(5205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), + [anon_sym_BSLASHinput] = ACTIONS(5205), + [anon_sym_BSLASHsubfile] = ACTIONS(5205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), + [anon_sym_BSLASHbibliography] = ACTIONS(5205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), + [anon_sym_BSLASHincludesvg] = ACTIONS(5205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), + [anon_sym_BSLASHimport] = ACTIONS(5205), + [anon_sym_BSLASHsubimport] = ACTIONS(5205), + [anon_sym_BSLASHinputfrom] = ACTIONS(5205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), + [anon_sym_BSLASHincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHcaption] = ACTIONS(5205), + [anon_sym_BSLASHcite] = ACTIONS(5205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCite] = ACTIONS(5205), + [anon_sym_BSLASHnocite] = ACTIONS(5205), + [anon_sym_BSLASHcitet] = ACTIONS(5205), + [anon_sym_BSLASHcitep] = ACTIONS(5205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteauthor] = ACTIONS(5205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitetitle] = ACTIONS(5205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteyear] = ACTIONS(5205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitedate] = ACTIONS(5205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteurl] = ACTIONS(5205), + [anon_sym_BSLASHfullcite] = ACTIONS(5205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), + [anon_sym_BSLASHcitealt] = ACTIONS(5205), + [anon_sym_BSLASHcitealp] = ACTIONS(5205), + [anon_sym_BSLASHcitetext] = ACTIONS(5205), + [anon_sym_BSLASHparencite] = ACTIONS(5205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHParencite] = ACTIONS(5205), + [anon_sym_BSLASHfootcite] = ACTIONS(5205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), + [anon_sym_BSLASHtextcite] = ACTIONS(5205), + [anon_sym_BSLASHTextcite] = ACTIONS(5205), + [anon_sym_BSLASHsmartcite] = ACTIONS(5205), + [anon_sym_BSLASHSmartcite] = ACTIONS(5205), + [anon_sym_BSLASHsupercite] = ACTIONS(5205), + [anon_sym_BSLASHautocite] = ACTIONS(5205), + [anon_sym_BSLASHAutocite] = ACTIONS(5205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHvolcite] = ACTIONS(5205), + [anon_sym_BSLASHVolcite] = ACTIONS(5205), + [anon_sym_BSLASHpvolcite] = ACTIONS(5205), + [anon_sym_BSLASHPvolcite] = ACTIONS(5205), + [anon_sym_BSLASHfvolcite] = ACTIONS(5205), + [anon_sym_BSLASHftvolcite] = ACTIONS(5205), + [anon_sym_BSLASHsvolcite] = ACTIONS(5205), + [anon_sym_BSLASHSvolcite] = ACTIONS(5205), + [anon_sym_BSLASHtvolcite] = ACTIONS(5205), + [anon_sym_BSLASHTvolcite] = ACTIONS(5205), + [anon_sym_BSLASHavolcite] = ACTIONS(5205), + [anon_sym_BSLASHAvolcite] = ACTIONS(5205), + [anon_sym_BSLASHnotecite] = ACTIONS(5205), + [anon_sym_BSLASHNotecite] = ACTIONS(5205), + [anon_sym_BSLASHpnotecite] = ACTIONS(5205), + [anon_sym_BSLASHPnotecite] = ACTIONS(5205), + [anon_sym_BSLASHfnotecite] = ACTIONS(5205), + [anon_sym_BSLASHlabel] = ACTIONS(5205), + [anon_sym_BSLASHref] = ACTIONS(5205), + [anon_sym_BSLASHeqref] = ACTIONS(5205), + [anon_sym_BSLASHvref] = ACTIONS(5205), + [anon_sym_BSLASHVref] = ACTIONS(5205), + [anon_sym_BSLASHautoref] = ACTIONS(5205), + [anon_sym_BSLASHpageref] = ACTIONS(5205), + [anon_sym_BSLASHcref] = ACTIONS(5205), + [anon_sym_BSLASHCref] = ACTIONS(5205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnameCref] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHlabelcref] = ACTIONS(5205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCrefrange] = ACTIONS(5205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnewlabel] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), + [anon_sym_BSLASHdef] = ACTIONS(5205), + [anon_sym_BSLASHlet] = ACTIONS(5205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), + [anon_sym_BSLASHgls] = ACTIONS(5205), + [anon_sym_BSLASHGls] = ACTIONS(5205), + [anon_sym_BSLASHGLS] = ACTIONS(5205), + [anon_sym_BSLASHglspl] = ACTIONS(5205), + [anon_sym_BSLASHGlspl] = ACTIONS(5205), + [anon_sym_BSLASHGLSpl] = ACTIONS(5205), + [anon_sym_BSLASHglsdisp] = ACTIONS(5205), + [anon_sym_BSLASHglslink] = ACTIONS(5205), + [anon_sym_BSLASHglstext] = ACTIONS(5205), + [anon_sym_BSLASHGlstext] = ACTIONS(5205), + [anon_sym_BSLASHGLStext] = ACTIONS(5205), + [anon_sym_BSLASHglsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), + [anon_sym_BSLASHglsplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSplural] = ACTIONS(5205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHglsname] = ACTIONS(5205), + [anon_sym_BSLASHGlsname] = ACTIONS(5205), + [anon_sym_BSLASHGLSname] = ACTIONS(5205), + [anon_sym_BSLASHglssymbol] = ACTIONS(5205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), + [anon_sym_BSLASHglsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), + [anon_sym_BSLASHglsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), + [anon_sym_BSLASHglsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), + [anon_sym_BSLASHglsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), + [anon_sym_BSLASHglsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), + [anon_sym_BSLASHnewacronym] = ACTIONS(5205), + [anon_sym_BSLASHacrshort] = ACTIONS(5205), + [anon_sym_BSLASHAcrshort] = ACTIONS(5205), + [anon_sym_BSLASHACRshort] = ACTIONS(5205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), + [anon_sym_BSLASHacrlong] = ACTIONS(5205), + [anon_sym_BSLASHAcrlong] = ACTIONS(5205), + [anon_sym_BSLASHACRlong] = ACTIONS(5205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), + [anon_sym_BSLASHacrfull] = ACTIONS(5205), + [anon_sym_BSLASHAcrfull] = ACTIONS(5205), + [anon_sym_BSLASHACRfull] = ACTIONS(5205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), + [anon_sym_BSLASHacs] = ACTIONS(5205), + [anon_sym_BSLASHAcs] = ACTIONS(5205), + [anon_sym_BSLASHacsp] = ACTIONS(5205), + [anon_sym_BSLASHAcsp] = ACTIONS(5205), + [anon_sym_BSLASHacl] = ACTIONS(5205), + [anon_sym_BSLASHAcl] = ACTIONS(5205), + [anon_sym_BSLASHaclp] = ACTIONS(5205), + [anon_sym_BSLASHAclp] = ACTIONS(5205), + [anon_sym_BSLASHacf] = ACTIONS(5205), + [anon_sym_BSLASHAcf] = ACTIONS(5205), + [anon_sym_BSLASHacfp] = ACTIONS(5205), + [anon_sym_BSLASHAcfp] = ACTIONS(5205), + [anon_sym_BSLASHac] = ACTIONS(5205), + [anon_sym_BSLASHAc] = ACTIONS(5205), + [anon_sym_BSLASHacp] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), + [anon_sym_BSLASHcolor] = ACTIONS(5205), + [anon_sym_BSLASHcolorbox] = ACTIONS(5205), + [anon_sym_BSLASHtextcolor] = ACTIONS(5205), + [anon_sym_BSLASHpagecolor] = ACTIONS(5205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), + [anon_sym_BSLASHtext] = ACTIONS(5205), + [anon_sym_BSLASHintertext] = ACTIONS(5205), + [anon_sym_shortintertext] = ACTIONS(5205), }, - [1191] = { - [sym_command_name] = ACTIONS(5053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_BSLASHpart] = ACTIONS(5053), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddpart] = ACTIONS(5053), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), - [anon_sym_BSLASHchapter] = ACTIONS(5053), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddchap] = ACTIONS(5053), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsection] = ACTIONS(5053), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHaddsec] = ACTIONS(5053), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), - [anon_sym_BSLASHparagraph] = ACTIONS(5053), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), - [anon_sym_BSLASHitem] = ACTIONS(5053), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASHbegin] = ACTIONS(5053), - [anon_sym_BSLASHend] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [1083] = { + [sym_command_name] = ACTIONS(5145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_RPAREN] = ACTIONS(5143), + [anon_sym_LBRACK] = ACTIONS(5143), + [anon_sym_RBRACK] = ACTIONS(5143), + [anon_sym_COMMA] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_BSLASHpart] = ACTIONS(5145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddpart] = ACTIONS(5145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5143), + [anon_sym_BSLASHchapter] = ACTIONS(5145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddchap] = ACTIONS(5145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsection] = ACTIONS(5145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddsec] = ACTIONS(5145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubsection] = ACTIONS(5145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHparagraph] = ACTIONS(5145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5143), + [anon_sym_BSLASHitem] = ACTIONS(5145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5143), + [sym_word] = ACTIONS(5145), + [sym_placeholder] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym__] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5145), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), + [anon_sym_DOLLAR] = ACTIONS(5145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), + [anon_sym_BSLASHbegin] = ACTIONS(5145), + [anon_sym_BSLASHend] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5145), + [anon_sym_BSLASHinclude] = ACTIONS(5145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5145), + [anon_sym_BSLASHinput] = ACTIONS(5145), + [anon_sym_BSLASHsubfile] = ACTIONS(5145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5145), + [anon_sym_BSLASHbibliography] = ACTIONS(5145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5145), + [anon_sym_BSLASHincludesvg] = ACTIONS(5145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5145), + [anon_sym_BSLASHimport] = ACTIONS(5145), + [anon_sym_BSLASHsubimport] = ACTIONS(5145), + [anon_sym_BSLASHinputfrom] = ACTIONS(5145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5145), + [anon_sym_BSLASHincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHcaption] = ACTIONS(5145), + [anon_sym_BSLASHcite] = ACTIONS(5145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCite] = ACTIONS(5145), + [anon_sym_BSLASHnocite] = ACTIONS(5145), + [anon_sym_BSLASHcitet] = ACTIONS(5145), + [anon_sym_BSLASHcitep] = ACTIONS(5145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteauthor] = ACTIONS(5145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitetitle] = ACTIONS(5145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteyear] = ACTIONS(5145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitedate] = ACTIONS(5145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteurl] = ACTIONS(5145), + [anon_sym_BSLASHfullcite] = ACTIONS(5145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5145), + [anon_sym_BSLASHcitealt] = ACTIONS(5145), + [anon_sym_BSLASHcitealp] = ACTIONS(5145), + [anon_sym_BSLASHcitetext] = ACTIONS(5145), + [anon_sym_BSLASHparencite] = ACTIONS(5145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHParencite] = ACTIONS(5145), + [anon_sym_BSLASHfootcite] = ACTIONS(5145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5145), + [anon_sym_BSLASHtextcite] = ACTIONS(5145), + [anon_sym_BSLASHTextcite] = ACTIONS(5145), + [anon_sym_BSLASHsmartcite] = ACTIONS(5145), + [anon_sym_BSLASHSmartcite] = ACTIONS(5145), + [anon_sym_BSLASHsupercite] = ACTIONS(5145), + [anon_sym_BSLASHautocite] = ACTIONS(5145), + [anon_sym_BSLASHAutocite] = ACTIONS(5145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHvolcite] = ACTIONS(5145), + [anon_sym_BSLASHVolcite] = ACTIONS(5145), + [anon_sym_BSLASHpvolcite] = ACTIONS(5145), + [anon_sym_BSLASHPvolcite] = ACTIONS(5145), + [anon_sym_BSLASHfvolcite] = ACTIONS(5145), + [anon_sym_BSLASHftvolcite] = ACTIONS(5145), + [anon_sym_BSLASHsvolcite] = ACTIONS(5145), + [anon_sym_BSLASHSvolcite] = ACTIONS(5145), + [anon_sym_BSLASHtvolcite] = ACTIONS(5145), + [anon_sym_BSLASHTvolcite] = ACTIONS(5145), + [anon_sym_BSLASHavolcite] = ACTIONS(5145), + [anon_sym_BSLASHAvolcite] = ACTIONS(5145), + [anon_sym_BSLASHnotecite] = ACTIONS(5145), + [anon_sym_BSLASHNotecite] = ACTIONS(5145), + [anon_sym_BSLASHpnotecite] = ACTIONS(5145), + [anon_sym_BSLASHPnotecite] = ACTIONS(5145), + [anon_sym_BSLASHfnotecite] = ACTIONS(5145), + [anon_sym_BSLASHlabel] = ACTIONS(5145), + [anon_sym_BSLASHref] = ACTIONS(5145), + [anon_sym_BSLASHeqref] = ACTIONS(5145), + [anon_sym_BSLASHvref] = ACTIONS(5145), + [anon_sym_BSLASHVref] = ACTIONS(5145), + [anon_sym_BSLASHautoref] = ACTIONS(5145), + [anon_sym_BSLASHpageref] = ACTIONS(5145), + [anon_sym_BSLASHcref] = ACTIONS(5145), + [anon_sym_BSLASHCref] = ACTIONS(5145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnameCref] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHlabelcref] = ACTIONS(5145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCrefrange] = ACTIONS(5145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnewlabel] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), + [anon_sym_BSLASHdef] = ACTIONS(5145), + [anon_sym_BSLASHlet] = ACTIONS(5145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5145), + [anon_sym_BSLASHgls] = ACTIONS(5145), + [anon_sym_BSLASHGls] = ACTIONS(5145), + [anon_sym_BSLASHGLS] = ACTIONS(5145), + [anon_sym_BSLASHglspl] = ACTIONS(5145), + [anon_sym_BSLASHGlspl] = ACTIONS(5145), + [anon_sym_BSLASHGLSpl] = ACTIONS(5145), + [anon_sym_BSLASHglsdisp] = ACTIONS(5145), + [anon_sym_BSLASHglslink] = ACTIONS(5145), + [anon_sym_BSLASHglstext] = ACTIONS(5145), + [anon_sym_BSLASHGlstext] = ACTIONS(5145), + [anon_sym_BSLASHGLStext] = ACTIONS(5145), + [anon_sym_BSLASHglsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5145), + [anon_sym_BSLASHglsplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSplural] = ACTIONS(5145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHglsname] = ACTIONS(5145), + [anon_sym_BSLASHGlsname] = ACTIONS(5145), + [anon_sym_BSLASHGLSname] = ACTIONS(5145), + [anon_sym_BSLASHglssymbol] = ACTIONS(5145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5145), + [anon_sym_BSLASHglsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5145), + [anon_sym_BSLASHglsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5145), + [anon_sym_BSLASHglsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5145), + [anon_sym_BSLASHglsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5145), + [anon_sym_BSLASHglsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5145), + [anon_sym_BSLASHnewacronym] = ACTIONS(5145), + [anon_sym_BSLASHacrshort] = ACTIONS(5145), + [anon_sym_BSLASHAcrshort] = ACTIONS(5145), + [anon_sym_BSLASHACRshort] = ACTIONS(5145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5145), + [anon_sym_BSLASHacrlong] = ACTIONS(5145), + [anon_sym_BSLASHAcrlong] = ACTIONS(5145), + [anon_sym_BSLASHACRlong] = ACTIONS(5145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5145), + [anon_sym_BSLASHacrfull] = ACTIONS(5145), + [anon_sym_BSLASHAcrfull] = ACTIONS(5145), + [anon_sym_BSLASHACRfull] = ACTIONS(5145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5145), + [anon_sym_BSLASHacs] = ACTIONS(5145), + [anon_sym_BSLASHAcs] = ACTIONS(5145), + [anon_sym_BSLASHacsp] = ACTIONS(5145), + [anon_sym_BSLASHAcsp] = ACTIONS(5145), + [anon_sym_BSLASHacl] = ACTIONS(5145), + [anon_sym_BSLASHAcl] = ACTIONS(5145), + [anon_sym_BSLASHaclp] = ACTIONS(5145), + [anon_sym_BSLASHAclp] = ACTIONS(5145), + [anon_sym_BSLASHacf] = ACTIONS(5145), + [anon_sym_BSLASHAcf] = ACTIONS(5145), + [anon_sym_BSLASHacfp] = ACTIONS(5145), + [anon_sym_BSLASHAcfp] = ACTIONS(5145), + [anon_sym_BSLASHac] = ACTIONS(5145), + [anon_sym_BSLASHAc] = ACTIONS(5145), + [anon_sym_BSLASHacp] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5145), + [anon_sym_BSLASHcolor] = ACTIONS(5145), + [anon_sym_BSLASHcolorbox] = ACTIONS(5145), + [anon_sym_BSLASHtextcolor] = ACTIONS(5145), + [anon_sym_BSLASHpagecolor] = ACTIONS(5145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5145), + [anon_sym_BSLASHtext] = ACTIONS(5145), + [anon_sym_BSLASHintertext] = ACTIONS(5145), + [anon_sym_shortintertext] = ACTIONS(5145), }, - [1192] = { + [1084] = { [sym_command_name] = ACTIONS(5057), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -358793,11 +331021,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(5057), [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5055), [anon_sym_DOLLAR] = ACTIONS(5057), [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), [anon_sym_BSLASHbegin] = ACTIONS(5057), - [anon_sym_BSLASHend] = ACTIONS(5057), [anon_sym_BSLASHusepackage] = ACTIONS(5057), [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), @@ -359011,3505 +331239,4907 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(5057), [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [anon_sym_BSLASHtext] = ACTIONS(5057), + [anon_sym_BSLASHintertext] = ACTIONS(5057), + [anon_sym_shortintertext] = ACTIONS(5057), + }, + [1085] = { + [sym_command_name] = ACTIONS(5053), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_BSLASHpart] = ACTIONS(5053), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddpart] = ACTIONS(5053), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), + [anon_sym_BSLASHchapter] = ACTIONS(5053), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddchap] = ACTIONS(5053), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsection] = ACTIONS(5053), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddsec] = ACTIONS(5053), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubsection] = ACTIONS(5053), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHparagraph] = ACTIONS(5053), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), + [anon_sym_BSLASHitem] = ACTIONS(5053), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5051), + [sym_word] = ACTIONS(5053), + [sym_placeholder] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5053), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5053), + [anon_sym__] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_COLON] = ACTIONS(5053), + [anon_sym_SQUOTE] = ACTIONS(5053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5051), + [anon_sym_DOLLAR] = ACTIONS(5053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), + [anon_sym_BSLASHbegin] = ACTIONS(5053), + [anon_sym_BSLASHusepackage] = ACTIONS(5053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), + [anon_sym_BSLASHinclude] = ACTIONS(5053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), + [anon_sym_BSLASHinput] = ACTIONS(5053), + [anon_sym_BSLASHsubfile] = ACTIONS(5053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), + [anon_sym_BSLASHbibliography] = ACTIONS(5053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), + [anon_sym_BSLASHincludesvg] = ACTIONS(5053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), + [anon_sym_BSLASHimport] = ACTIONS(5053), + [anon_sym_BSLASHsubimport] = ACTIONS(5053), + [anon_sym_BSLASHinputfrom] = ACTIONS(5053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), + [anon_sym_BSLASHincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHcaption] = ACTIONS(5053), + [anon_sym_BSLASHcite] = ACTIONS(5053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCite] = ACTIONS(5053), + [anon_sym_BSLASHnocite] = ACTIONS(5053), + [anon_sym_BSLASHcitet] = ACTIONS(5053), + [anon_sym_BSLASHcitep] = ACTIONS(5053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteauthor] = ACTIONS(5053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitetitle] = ACTIONS(5053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteyear] = ACTIONS(5053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitedate] = ACTIONS(5053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteurl] = ACTIONS(5053), + [anon_sym_BSLASHfullcite] = ACTIONS(5053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), + [anon_sym_BSLASHcitealt] = ACTIONS(5053), + [anon_sym_BSLASHcitealp] = ACTIONS(5053), + [anon_sym_BSLASHcitetext] = ACTIONS(5053), + [anon_sym_BSLASHparencite] = ACTIONS(5053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHParencite] = ACTIONS(5053), + [anon_sym_BSLASHfootcite] = ACTIONS(5053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), + [anon_sym_BSLASHtextcite] = ACTIONS(5053), + [anon_sym_BSLASHTextcite] = ACTIONS(5053), + [anon_sym_BSLASHsmartcite] = ACTIONS(5053), + [anon_sym_BSLASHSmartcite] = ACTIONS(5053), + [anon_sym_BSLASHsupercite] = ACTIONS(5053), + [anon_sym_BSLASHautocite] = ACTIONS(5053), + [anon_sym_BSLASHAutocite] = ACTIONS(5053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHvolcite] = ACTIONS(5053), + [anon_sym_BSLASHVolcite] = ACTIONS(5053), + [anon_sym_BSLASHpvolcite] = ACTIONS(5053), + [anon_sym_BSLASHPvolcite] = ACTIONS(5053), + [anon_sym_BSLASHfvolcite] = ACTIONS(5053), + [anon_sym_BSLASHftvolcite] = ACTIONS(5053), + [anon_sym_BSLASHsvolcite] = ACTIONS(5053), + [anon_sym_BSLASHSvolcite] = ACTIONS(5053), + [anon_sym_BSLASHtvolcite] = ACTIONS(5053), + [anon_sym_BSLASHTvolcite] = ACTIONS(5053), + [anon_sym_BSLASHavolcite] = ACTIONS(5053), + [anon_sym_BSLASHAvolcite] = ACTIONS(5053), + [anon_sym_BSLASHnotecite] = ACTIONS(5053), + [anon_sym_BSLASHNotecite] = ACTIONS(5053), + [anon_sym_BSLASHpnotecite] = ACTIONS(5053), + [anon_sym_BSLASHPnotecite] = ACTIONS(5053), + [anon_sym_BSLASHfnotecite] = ACTIONS(5053), + [anon_sym_BSLASHlabel] = ACTIONS(5053), + [anon_sym_BSLASHref] = ACTIONS(5053), + [anon_sym_BSLASHeqref] = ACTIONS(5053), + [anon_sym_BSLASHvref] = ACTIONS(5053), + [anon_sym_BSLASHVref] = ACTIONS(5053), + [anon_sym_BSLASHautoref] = ACTIONS(5053), + [anon_sym_BSLASHpageref] = ACTIONS(5053), + [anon_sym_BSLASHcref] = ACTIONS(5053), + [anon_sym_BSLASHCref] = ACTIONS(5053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnameCref] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHlabelcref] = ACTIONS(5053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCrefrange] = ACTIONS(5053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnewlabel] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), + [anon_sym_BSLASHdef] = ACTIONS(5053), + [anon_sym_BSLASHlet] = ACTIONS(5053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), + [anon_sym_BSLASHgls] = ACTIONS(5053), + [anon_sym_BSLASHGls] = ACTIONS(5053), + [anon_sym_BSLASHGLS] = ACTIONS(5053), + [anon_sym_BSLASHglspl] = ACTIONS(5053), + [anon_sym_BSLASHGlspl] = ACTIONS(5053), + [anon_sym_BSLASHGLSpl] = ACTIONS(5053), + [anon_sym_BSLASHglsdisp] = ACTIONS(5053), + [anon_sym_BSLASHglslink] = ACTIONS(5053), + [anon_sym_BSLASHglstext] = ACTIONS(5053), + [anon_sym_BSLASHGlstext] = ACTIONS(5053), + [anon_sym_BSLASHGLStext] = ACTIONS(5053), + [anon_sym_BSLASHglsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), + [anon_sym_BSLASHglsplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSplural] = ACTIONS(5053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHglsname] = ACTIONS(5053), + [anon_sym_BSLASHGlsname] = ACTIONS(5053), + [anon_sym_BSLASHGLSname] = ACTIONS(5053), + [anon_sym_BSLASHglssymbol] = ACTIONS(5053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), + [anon_sym_BSLASHglsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), + [anon_sym_BSLASHglsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), + [anon_sym_BSLASHglsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), + [anon_sym_BSLASHglsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), + [anon_sym_BSLASHglsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), + [anon_sym_BSLASHnewacronym] = ACTIONS(5053), + [anon_sym_BSLASHacrshort] = ACTIONS(5053), + [anon_sym_BSLASHAcrshort] = ACTIONS(5053), + [anon_sym_BSLASHACRshort] = ACTIONS(5053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), + [anon_sym_BSLASHacrlong] = ACTIONS(5053), + [anon_sym_BSLASHAcrlong] = ACTIONS(5053), + [anon_sym_BSLASHACRlong] = ACTIONS(5053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), + [anon_sym_BSLASHacrfull] = ACTIONS(5053), + [anon_sym_BSLASHAcrfull] = ACTIONS(5053), + [anon_sym_BSLASHACRfull] = ACTIONS(5053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), + [anon_sym_BSLASHacs] = ACTIONS(5053), + [anon_sym_BSLASHAcs] = ACTIONS(5053), + [anon_sym_BSLASHacsp] = ACTIONS(5053), + [anon_sym_BSLASHAcsp] = ACTIONS(5053), + [anon_sym_BSLASHacl] = ACTIONS(5053), + [anon_sym_BSLASHAcl] = ACTIONS(5053), + [anon_sym_BSLASHaclp] = ACTIONS(5053), + [anon_sym_BSLASHAclp] = ACTIONS(5053), + [anon_sym_BSLASHacf] = ACTIONS(5053), + [anon_sym_BSLASHAcf] = ACTIONS(5053), + [anon_sym_BSLASHacfp] = ACTIONS(5053), + [anon_sym_BSLASHAcfp] = ACTIONS(5053), + [anon_sym_BSLASHac] = ACTIONS(5053), + [anon_sym_BSLASHAc] = ACTIONS(5053), + [anon_sym_BSLASHacp] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), + [anon_sym_BSLASHcolor] = ACTIONS(5053), + [anon_sym_BSLASHcolorbox] = ACTIONS(5053), + [anon_sym_BSLASHtextcolor] = ACTIONS(5053), + [anon_sym_BSLASHpagecolor] = ACTIONS(5053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [anon_sym_BSLASHtext] = ACTIONS(5053), + [anon_sym_BSLASHintertext] = ACTIONS(5053), + [anon_sym_shortintertext] = ACTIONS(5053), }, - [1193] = { - [sym_command_name] = ACTIONS(5061), + [1086] = { + [sym_command_name] = ACTIONS(5045), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_RBRACK] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_BSLASHpart] = ACTIONS(5045), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddpart] = ACTIONS(5045), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5043), + [anon_sym_BSLASHchapter] = ACTIONS(5045), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddchap] = ACTIONS(5045), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsection] = ACTIONS(5045), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddsec] = ACTIONS(5045), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubsection] = ACTIONS(5045), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5045), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHparagraph] = ACTIONS(5045), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5045), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5043), + [anon_sym_BSLASHitem] = ACTIONS(5045), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5043), + [sym_word] = ACTIONS(5045), + [sym_placeholder] = ACTIONS(5043), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_CARET] = ACTIONS(5045), + [anon_sym__] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_COLON] = ACTIONS(5045), + [anon_sym_SQUOTE] = ACTIONS(5045), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5043), + [anon_sym_DOLLAR] = ACTIONS(5045), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), + [anon_sym_BSLASHbegin] = ACTIONS(5045), + [anon_sym_BSLASHusepackage] = ACTIONS(5045), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), + [anon_sym_BSLASHinclude] = ACTIONS(5045), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), + [anon_sym_BSLASHinput] = ACTIONS(5045), + [anon_sym_BSLASHsubfile] = ACTIONS(5045), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), + [anon_sym_BSLASHbibliography] = ACTIONS(5045), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), + [anon_sym_BSLASHincludesvg] = ACTIONS(5045), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), + [anon_sym_BSLASHimport] = ACTIONS(5045), + [anon_sym_BSLASHsubimport] = ACTIONS(5045), + [anon_sym_BSLASHinputfrom] = ACTIONS(5045), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), + [anon_sym_BSLASHincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHcaption] = ACTIONS(5045), + [anon_sym_BSLASHcite] = ACTIONS(5045), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCite] = ACTIONS(5045), + [anon_sym_BSLASHnocite] = ACTIONS(5045), + [anon_sym_BSLASHcitet] = ACTIONS(5045), + [anon_sym_BSLASHcitep] = ACTIONS(5045), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteauthor] = ACTIONS(5045), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitetitle] = ACTIONS(5045), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteyear] = ACTIONS(5045), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitedate] = ACTIONS(5045), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteurl] = ACTIONS(5045), + [anon_sym_BSLASHfullcite] = ACTIONS(5045), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), + [anon_sym_BSLASHcitealt] = ACTIONS(5045), + [anon_sym_BSLASHcitealp] = ACTIONS(5045), + [anon_sym_BSLASHcitetext] = ACTIONS(5045), + [anon_sym_BSLASHparencite] = ACTIONS(5045), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHParencite] = ACTIONS(5045), + [anon_sym_BSLASHfootcite] = ACTIONS(5045), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), + [anon_sym_BSLASHtextcite] = ACTIONS(5045), + [anon_sym_BSLASHTextcite] = ACTIONS(5045), + [anon_sym_BSLASHsmartcite] = ACTIONS(5045), + [anon_sym_BSLASHSmartcite] = ACTIONS(5045), + [anon_sym_BSLASHsupercite] = ACTIONS(5045), + [anon_sym_BSLASHautocite] = ACTIONS(5045), + [anon_sym_BSLASHAutocite] = ACTIONS(5045), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHvolcite] = ACTIONS(5045), + [anon_sym_BSLASHVolcite] = ACTIONS(5045), + [anon_sym_BSLASHpvolcite] = ACTIONS(5045), + [anon_sym_BSLASHPvolcite] = ACTIONS(5045), + [anon_sym_BSLASHfvolcite] = ACTIONS(5045), + [anon_sym_BSLASHftvolcite] = ACTIONS(5045), + [anon_sym_BSLASHsvolcite] = ACTIONS(5045), + [anon_sym_BSLASHSvolcite] = ACTIONS(5045), + [anon_sym_BSLASHtvolcite] = ACTIONS(5045), + [anon_sym_BSLASHTvolcite] = ACTIONS(5045), + [anon_sym_BSLASHavolcite] = ACTIONS(5045), + [anon_sym_BSLASHAvolcite] = ACTIONS(5045), + [anon_sym_BSLASHnotecite] = ACTIONS(5045), + [anon_sym_BSLASHNotecite] = ACTIONS(5045), + [anon_sym_BSLASHpnotecite] = ACTIONS(5045), + [anon_sym_BSLASHPnotecite] = ACTIONS(5045), + [anon_sym_BSLASHfnotecite] = ACTIONS(5045), + [anon_sym_BSLASHlabel] = ACTIONS(5045), + [anon_sym_BSLASHref] = ACTIONS(5045), + [anon_sym_BSLASHeqref] = ACTIONS(5045), + [anon_sym_BSLASHvref] = ACTIONS(5045), + [anon_sym_BSLASHVref] = ACTIONS(5045), + [anon_sym_BSLASHautoref] = ACTIONS(5045), + [anon_sym_BSLASHpageref] = ACTIONS(5045), + [anon_sym_BSLASHcref] = ACTIONS(5045), + [anon_sym_BSLASHCref] = ACTIONS(5045), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnameCref] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHlabelcref] = ACTIONS(5045), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCrefrange] = ACTIONS(5045), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnewlabel] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), + [anon_sym_BSLASHdef] = ACTIONS(5045), + [anon_sym_BSLASHlet] = ACTIONS(5045), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), + [anon_sym_BSLASHgls] = ACTIONS(5045), + [anon_sym_BSLASHGls] = ACTIONS(5045), + [anon_sym_BSLASHGLS] = ACTIONS(5045), + [anon_sym_BSLASHglspl] = ACTIONS(5045), + [anon_sym_BSLASHGlspl] = ACTIONS(5045), + [anon_sym_BSLASHGLSpl] = ACTIONS(5045), + [anon_sym_BSLASHglsdisp] = ACTIONS(5045), + [anon_sym_BSLASHglslink] = ACTIONS(5045), + [anon_sym_BSLASHglstext] = ACTIONS(5045), + [anon_sym_BSLASHGlstext] = ACTIONS(5045), + [anon_sym_BSLASHGLStext] = ACTIONS(5045), + [anon_sym_BSLASHglsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), + [anon_sym_BSLASHglsplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSplural] = ACTIONS(5045), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHglsname] = ACTIONS(5045), + [anon_sym_BSLASHGlsname] = ACTIONS(5045), + [anon_sym_BSLASHGLSname] = ACTIONS(5045), + [anon_sym_BSLASHglssymbol] = ACTIONS(5045), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), + [anon_sym_BSLASHglsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), + [anon_sym_BSLASHglsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), + [anon_sym_BSLASHglsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), + [anon_sym_BSLASHglsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), + [anon_sym_BSLASHglsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), + [anon_sym_BSLASHnewacronym] = ACTIONS(5045), + [anon_sym_BSLASHacrshort] = ACTIONS(5045), + [anon_sym_BSLASHAcrshort] = ACTIONS(5045), + [anon_sym_BSLASHACRshort] = ACTIONS(5045), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), + [anon_sym_BSLASHacrlong] = ACTIONS(5045), + [anon_sym_BSLASHAcrlong] = ACTIONS(5045), + [anon_sym_BSLASHACRlong] = ACTIONS(5045), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), + [anon_sym_BSLASHacrfull] = ACTIONS(5045), + [anon_sym_BSLASHAcrfull] = ACTIONS(5045), + [anon_sym_BSLASHACRfull] = ACTIONS(5045), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), + [anon_sym_BSLASHacs] = ACTIONS(5045), + [anon_sym_BSLASHAcs] = ACTIONS(5045), + [anon_sym_BSLASHacsp] = ACTIONS(5045), + [anon_sym_BSLASHAcsp] = ACTIONS(5045), + [anon_sym_BSLASHacl] = ACTIONS(5045), + [anon_sym_BSLASHAcl] = ACTIONS(5045), + [anon_sym_BSLASHaclp] = ACTIONS(5045), + [anon_sym_BSLASHAclp] = ACTIONS(5045), + [anon_sym_BSLASHacf] = ACTIONS(5045), + [anon_sym_BSLASHAcf] = ACTIONS(5045), + [anon_sym_BSLASHacfp] = ACTIONS(5045), + [anon_sym_BSLASHAcfp] = ACTIONS(5045), + [anon_sym_BSLASHac] = ACTIONS(5045), + [anon_sym_BSLASHAc] = ACTIONS(5045), + [anon_sym_BSLASHacp] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), + [anon_sym_BSLASHcolor] = ACTIONS(5045), + [anon_sym_BSLASHcolorbox] = ACTIONS(5045), + [anon_sym_BSLASHtextcolor] = ACTIONS(5045), + [anon_sym_BSLASHpagecolor] = ACTIONS(5045), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), + [anon_sym_BSLASHtext] = ACTIONS(5045), + [anon_sym_BSLASHintertext] = ACTIONS(5045), + [anon_sym_shortintertext] = ACTIONS(5045), + }, + [1087] = { + [sym_command_name] = ACTIONS(5041), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_BSLASHpart] = ACTIONS(5061), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddpart] = ACTIONS(5061), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), - [anon_sym_BSLASHchapter] = ACTIONS(5061), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddchap] = ACTIONS(5061), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsection] = ACTIONS(5061), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHaddsec] = ACTIONS(5061), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), - [anon_sym_BSLASHparagraph] = ACTIONS(5061), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), - [anon_sym_BSLASHitem] = ACTIONS(5061), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASHbegin] = ACTIONS(5061), - [anon_sym_BSLASHend] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [anon_sym_BSLASHiffalse] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_RBRACK] = ACTIONS(5039), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_BSLASHpart] = ACTIONS(5041), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddpart] = ACTIONS(5041), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), + [anon_sym_BSLASHchapter] = ACTIONS(5041), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddchap] = ACTIONS(5041), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsection] = ACTIONS(5041), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddsec] = ACTIONS(5041), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubsection] = ACTIONS(5041), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHparagraph] = ACTIONS(5041), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), + [anon_sym_BSLASHitem] = ACTIONS(5041), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5039), + [sym_word] = ACTIONS(5041), + [sym_placeholder] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_SLASH] = ACTIONS(5041), + [anon_sym_CARET] = ACTIONS(5041), + [anon_sym__] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5041), + [anon_sym_PIPE] = ACTIONS(5041), + [anon_sym_COLON] = ACTIONS(5041), + [anon_sym_SQUOTE] = ACTIONS(5041), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), + [anon_sym_BSLASHbegin] = ACTIONS(5041), + [anon_sym_BSLASHusepackage] = ACTIONS(5041), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), + [anon_sym_BSLASHinclude] = ACTIONS(5041), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), + [anon_sym_BSLASHinput] = ACTIONS(5041), + [anon_sym_BSLASHsubfile] = ACTIONS(5041), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), + [anon_sym_BSLASHbibliography] = ACTIONS(5041), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), + [anon_sym_BSLASHincludesvg] = ACTIONS(5041), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), + [anon_sym_BSLASHimport] = ACTIONS(5041), + [anon_sym_BSLASHsubimport] = ACTIONS(5041), + [anon_sym_BSLASHinputfrom] = ACTIONS(5041), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), + [anon_sym_BSLASHincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHcaption] = ACTIONS(5041), + [anon_sym_BSLASHcite] = ACTIONS(5041), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCite] = ACTIONS(5041), + [anon_sym_BSLASHnocite] = ACTIONS(5041), + [anon_sym_BSLASHcitet] = ACTIONS(5041), + [anon_sym_BSLASHcitep] = ACTIONS(5041), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteauthor] = ACTIONS(5041), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitetitle] = ACTIONS(5041), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteyear] = ACTIONS(5041), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitedate] = ACTIONS(5041), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteurl] = ACTIONS(5041), + [anon_sym_BSLASHfullcite] = ACTIONS(5041), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), + [anon_sym_BSLASHcitealt] = ACTIONS(5041), + [anon_sym_BSLASHcitealp] = ACTIONS(5041), + [anon_sym_BSLASHcitetext] = ACTIONS(5041), + [anon_sym_BSLASHparencite] = ACTIONS(5041), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHParencite] = ACTIONS(5041), + [anon_sym_BSLASHfootcite] = ACTIONS(5041), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), + [anon_sym_BSLASHtextcite] = ACTIONS(5041), + [anon_sym_BSLASHTextcite] = ACTIONS(5041), + [anon_sym_BSLASHsmartcite] = ACTIONS(5041), + [anon_sym_BSLASHSmartcite] = ACTIONS(5041), + [anon_sym_BSLASHsupercite] = ACTIONS(5041), + [anon_sym_BSLASHautocite] = ACTIONS(5041), + [anon_sym_BSLASHAutocite] = ACTIONS(5041), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHvolcite] = ACTIONS(5041), + [anon_sym_BSLASHVolcite] = ACTIONS(5041), + [anon_sym_BSLASHpvolcite] = ACTIONS(5041), + [anon_sym_BSLASHPvolcite] = ACTIONS(5041), + [anon_sym_BSLASHfvolcite] = ACTIONS(5041), + [anon_sym_BSLASHftvolcite] = ACTIONS(5041), + [anon_sym_BSLASHsvolcite] = ACTIONS(5041), + [anon_sym_BSLASHSvolcite] = ACTIONS(5041), + [anon_sym_BSLASHtvolcite] = ACTIONS(5041), + [anon_sym_BSLASHTvolcite] = ACTIONS(5041), + [anon_sym_BSLASHavolcite] = ACTIONS(5041), + [anon_sym_BSLASHAvolcite] = ACTIONS(5041), + [anon_sym_BSLASHnotecite] = ACTIONS(5041), + [anon_sym_BSLASHNotecite] = ACTIONS(5041), + [anon_sym_BSLASHpnotecite] = ACTIONS(5041), + [anon_sym_BSLASHPnotecite] = ACTIONS(5041), + [anon_sym_BSLASHfnotecite] = ACTIONS(5041), + [anon_sym_BSLASHlabel] = ACTIONS(5041), + [anon_sym_BSLASHref] = ACTIONS(5041), + [anon_sym_BSLASHeqref] = ACTIONS(5041), + [anon_sym_BSLASHvref] = ACTIONS(5041), + [anon_sym_BSLASHVref] = ACTIONS(5041), + [anon_sym_BSLASHautoref] = ACTIONS(5041), + [anon_sym_BSLASHpageref] = ACTIONS(5041), + [anon_sym_BSLASHcref] = ACTIONS(5041), + [anon_sym_BSLASHCref] = ACTIONS(5041), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnameCref] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHlabelcref] = ACTIONS(5041), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCrefrange] = ACTIONS(5041), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnewlabel] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), + [anon_sym_BSLASHdef] = ACTIONS(5041), + [anon_sym_BSLASHlet] = ACTIONS(5041), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), + [anon_sym_BSLASHgls] = ACTIONS(5041), + [anon_sym_BSLASHGls] = ACTIONS(5041), + [anon_sym_BSLASHGLS] = ACTIONS(5041), + [anon_sym_BSLASHglspl] = ACTIONS(5041), + [anon_sym_BSLASHGlspl] = ACTIONS(5041), + [anon_sym_BSLASHGLSpl] = ACTIONS(5041), + [anon_sym_BSLASHglsdisp] = ACTIONS(5041), + [anon_sym_BSLASHglslink] = ACTIONS(5041), + [anon_sym_BSLASHglstext] = ACTIONS(5041), + [anon_sym_BSLASHGlstext] = ACTIONS(5041), + [anon_sym_BSLASHGLStext] = ACTIONS(5041), + [anon_sym_BSLASHglsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), + [anon_sym_BSLASHglsplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSplural] = ACTIONS(5041), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHglsname] = ACTIONS(5041), + [anon_sym_BSLASHGlsname] = ACTIONS(5041), + [anon_sym_BSLASHGLSname] = ACTIONS(5041), + [anon_sym_BSLASHglssymbol] = ACTIONS(5041), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), + [anon_sym_BSLASHglsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), + [anon_sym_BSLASHglsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), + [anon_sym_BSLASHglsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), + [anon_sym_BSLASHglsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), + [anon_sym_BSLASHglsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), + [anon_sym_BSLASHnewacronym] = ACTIONS(5041), + [anon_sym_BSLASHacrshort] = ACTIONS(5041), + [anon_sym_BSLASHAcrshort] = ACTIONS(5041), + [anon_sym_BSLASHACRshort] = ACTIONS(5041), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), + [anon_sym_BSLASHacrlong] = ACTIONS(5041), + [anon_sym_BSLASHAcrlong] = ACTIONS(5041), + [anon_sym_BSLASHACRlong] = ACTIONS(5041), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), + [anon_sym_BSLASHacrfull] = ACTIONS(5041), + [anon_sym_BSLASHAcrfull] = ACTIONS(5041), + [anon_sym_BSLASHACRfull] = ACTIONS(5041), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), + [anon_sym_BSLASHacs] = ACTIONS(5041), + [anon_sym_BSLASHAcs] = ACTIONS(5041), + [anon_sym_BSLASHacsp] = ACTIONS(5041), + [anon_sym_BSLASHAcsp] = ACTIONS(5041), + [anon_sym_BSLASHacl] = ACTIONS(5041), + [anon_sym_BSLASHAcl] = ACTIONS(5041), + [anon_sym_BSLASHaclp] = ACTIONS(5041), + [anon_sym_BSLASHAclp] = ACTIONS(5041), + [anon_sym_BSLASHacf] = ACTIONS(5041), + [anon_sym_BSLASHAcf] = ACTIONS(5041), + [anon_sym_BSLASHacfp] = ACTIONS(5041), + [anon_sym_BSLASHAcfp] = ACTIONS(5041), + [anon_sym_BSLASHac] = ACTIONS(5041), + [anon_sym_BSLASHAc] = ACTIONS(5041), + [anon_sym_BSLASHacp] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), + [anon_sym_BSLASHcolor] = ACTIONS(5041), + [anon_sym_BSLASHcolorbox] = ACTIONS(5041), + [anon_sym_BSLASHtextcolor] = ACTIONS(5041), + [anon_sym_BSLASHpagecolor] = ACTIONS(5041), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + [anon_sym_BSLASHtext] = ACTIONS(5041), + [anon_sym_BSLASHintertext] = ACTIONS(5041), + [anon_sym_shortintertext] = ACTIONS(5041), + }, + [1088] = { + [sym_command_name] = ACTIONS(5037), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5035), + [anon_sym_RPAREN] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_RBRACK] = ACTIONS(5035), + [anon_sym_COMMA] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_BSLASHpart] = ACTIONS(5037), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), + [anon_sym_BSLASHaddpart] = ACTIONS(5037), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), + [anon_sym_BSLASHchapter] = ACTIONS(5037), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), + [anon_sym_BSLASHaddchap] = ACTIONS(5037), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsection] = ACTIONS(5037), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), + [anon_sym_BSLASHaddsec] = ACTIONS(5037), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsubsection] = ACTIONS(5037), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), + [anon_sym_BSLASHparagraph] = ACTIONS(5037), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), + [anon_sym_BSLASHitem] = ACTIONS(5037), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5035), + [sym_word] = ACTIONS(5037), + [sym_placeholder] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5037), + [anon_sym_STAR] = ACTIONS(5037), + [anon_sym_SLASH] = ACTIONS(5037), + [anon_sym_CARET] = ACTIONS(5037), + [anon_sym__] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_COLON] = ACTIONS(5037), + [anon_sym_SQUOTE] = ACTIONS(5037), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5035), + [anon_sym_DOLLAR] = ACTIONS(5037), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), + [anon_sym_BSLASHbegin] = ACTIONS(5037), + [anon_sym_BSLASHusepackage] = ACTIONS(5037), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), + [anon_sym_BSLASHinclude] = ACTIONS(5037), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), + [anon_sym_BSLASHinput] = ACTIONS(5037), + [anon_sym_BSLASHsubfile] = ACTIONS(5037), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), + [anon_sym_BSLASHbibliography] = ACTIONS(5037), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), + [anon_sym_BSLASHincludesvg] = ACTIONS(5037), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), + [anon_sym_BSLASHimport] = ACTIONS(5037), + [anon_sym_BSLASHsubimport] = ACTIONS(5037), + [anon_sym_BSLASHinputfrom] = ACTIONS(5037), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), + [anon_sym_BSLASHincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHcaption] = ACTIONS(5037), + [anon_sym_BSLASHcite] = ACTIONS(5037), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCite] = ACTIONS(5037), + [anon_sym_BSLASHnocite] = ACTIONS(5037), + [anon_sym_BSLASHcitet] = ACTIONS(5037), + [anon_sym_BSLASHcitep] = ACTIONS(5037), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteauthor] = ACTIONS(5037), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitetitle] = ACTIONS(5037), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteyear] = ACTIONS(5037), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitedate] = ACTIONS(5037), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteurl] = ACTIONS(5037), + [anon_sym_BSLASHfullcite] = ACTIONS(5037), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), + [anon_sym_BSLASHcitealt] = ACTIONS(5037), + [anon_sym_BSLASHcitealp] = ACTIONS(5037), + [anon_sym_BSLASHcitetext] = ACTIONS(5037), + [anon_sym_BSLASHparencite] = ACTIONS(5037), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHParencite] = ACTIONS(5037), + [anon_sym_BSLASHfootcite] = ACTIONS(5037), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), + [anon_sym_BSLASHtextcite] = ACTIONS(5037), + [anon_sym_BSLASHTextcite] = ACTIONS(5037), + [anon_sym_BSLASHsmartcite] = ACTIONS(5037), + [anon_sym_BSLASHSmartcite] = ACTIONS(5037), + [anon_sym_BSLASHsupercite] = ACTIONS(5037), + [anon_sym_BSLASHautocite] = ACTIONS(5037), + [anon_sym_BSLASHAutocite] = ACTIONS(5037), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHvolcite] = ACTIONS(5037), + [anon_sym_BSLASHVolcite] = ACTIONS(5037), + [anon_sym_BSLASHpvolcite] = ACTIONS(5037), + [anon_sym_BSLASHPvolcite] = ACTIONS(5037), + [anon_sym_BSLASHfvolcite] = ACTIONS(5037), + [anon_sym_BSLASHftvolcite] = ACTIONS(5037), + [anon_sym_BSLASHsvolcite] = ACTIONS(5037), + [anon_sym_BSLASHSvolcite] = ACTIONS(5037), + [anon_sym_BSLASHtvolcite] = ACTIONS(5037), + [anon_sym_BSLASHTvolcite] = ACTIONS(5037), + [anon_sym_BSLASHavolcite] = ACTIONS(5037), + [anon_sym_BSLASHAvolcite] = ACTIONS(5037), + [anon_sym_BSLASHnotecite] = ACTIONS(5037), + [anon_sym_BSLASHNotecite] = ACTIONS(5037), + [anon_sym_BSLASHpnotecite] = ACTIONS(5037), + [anon_sym_BSLASHPnotecite] = ACTIONS(5037), + [anon_sym_BSLASHfnotecite] = ACTIONS(5037), + [anon_sym_BSLASHlabel] = ACTIONS(5037), + [anon_sym_BSLASHref] = ACTIONS(5037), + [anon_sym_BSLASHeqref] = ACTIONS(5037), + [anon_sym_BSLASHvref] = ACTIONS(5037), + [anon_sym_BSLASHVref] = ACTIONS(5037), + [anon_sym_BSLASHautoref] = ACTIONS(5037), + [anon_sym_BSLASHpageref] = ACTIONS(5037), + [anon_sym_BSLASHcref] = ACTIONS(5037), + [anon_sym_BSLASHCref] = ACTIONS(5037), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnameCref] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHlabelcref] = ACTIONS(5037), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCrefrange] = ACTIONS(5037), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnewlabel] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), + [anon_sym_BSLASHdef] = ACTIONS(5037), + [anon_sym_BSLASHlet] = ACTIONS(5037), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), + [anon_sym_BSLASHgls] = ACTIONS(5037), + [anon_sym_BSLASHGls] = ACTIONS(5037), + [anon_sym_BSLASHGLS] = ACTIONS(5037), + [anon_sym_BSLASHglspl] = ACTIONS(5037), + [anon_sym_BSLASHGlspl] = ACTIONS(5037), + [anon_sym_BSLASHGLSpl] = ACTIONS(5037), + [anon_sym_BSLASHglsdisp] = ACTIONS(5037), + [anon_sym_BSLASHglslink] = ACTIONS(5037), + [anon_sym_BSLASHglstext] = ACTIONS(5037), + [anon_sym_BSLASHGlstext] = ACTIONS(5037), + [anon_sym_BSLASHGLStext] = ACTIONS(5037), + [anon_sym_BSLASHglsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), + [anon_sym_BSLASHglsplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSplural] = ACTIONS(5037), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHglsname] = ACTIONS(5037), + [anon_sym_BSLASHGlsname] = ACTIONS(5037), + [anon_sym_BSLASHGLSname] = ACTIONS(5037), + [anon_sym_BSLASHglssymbol] = ACTIONS(5037), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), + [anon_sym_BSLASHglsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), + [anon_sym_BSLASHglsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), + [anon_sym_BSLASHglsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), + [anon_sym_BSLASHglsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), + [anon_sym_BSLASHglsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), + [anon_sym_BSLASHnewacronym] = ACTIONS(5037), + [anon_sym_BSLASHacrshort] = ACTIONS(5037), + [anon_sym_BSLASHAcrshort] = ACTIONS(5037), + [anon_sym_BSLASHACRshort] = ACTIONS(5037), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), + [anon_sym_BSLASHacrlong] = ACTIONS(5037), + [anon_sym_BSLASHAcrlong] = ACTIONS(5037), + [anon_sym_BSLASHACRlong] = ACTIONS(5037), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), + [anon_sym_BSLASHacrfull] = ACTIONS(5037), + [anon_sym_BSLASHAcrfull] = ACTIONS(5037), + [anon_sym_BSLASHACRfull] = ACTIONS(5037), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), + [anon_sym_BSLASHacs] = ACTIONS(5037), + [anon_sym_BSLASHAcs] = ACTIONS(5037), + [anon_sym_BSLASHacsp] = ACTIONS(5037), + [anon_sym_BSLASHAcsp] = ACTIONS(5037), + [anon_sym_BSLASHacl] = ACTIONS(5037), + [anon_sym_BSLASHAcl] = ACTIONS(5037), + [anon_sym_BSLASHaclp] = ACTIONS(5037), + [anon_sym_BSLASHAclp] = ACTIONS(5037), + [anon_sym_BSLASHacf] = ACTIONS(5037), + [anon_sym_BSLASHAcf] = ACTIONS(5037), + [anon_sym_BSLASHacfp] = ACTIONS(5037), + [anon_sym_BSLASHAcfp] = ACTIONS(5037), + [anon_sym_BSLASHac] = ACTIONS(5037), + [anon_sym_BSLASHAc] = ACTIONS(5037), + [anon_sym_BSLASHacp] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), + [anon_sym_BSLASHcolor] = ACTIONS(5037), + [anon_sym_BSLASHcolorbox] = ACTIONS(5037), + [anon_sym_BSLASHtextcolor] = ACTIONS(5037), + [anon_sym_BSLASHpagecolor] = ACTIONS(5037), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [anon_sym_BSLASHtext] = ACTIONS(5037), + [anon_sym_BSLASHintertext] = ACTIONS(5037), + [anon_sym_shortintertext] = ACTIONS(5037), }, - [1194] = { - [sym_command_name] = ACTIONS(5065), + [1089] = { + [sym_command_name] = ACTIONS(5033), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_BSLASHpart] = ACTIONS(5065), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddpart] = ACTIONS(5065), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), - [anon_sym_BSLASHchapter] = ACTIONS(5065), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddchap] = ACTIONS(5065), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsection] = ACTIONS(5065), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHaddsec] = ACTIONS(5065), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), - [anon_sym_BSLASHparagraph] = ACTIONS(5065), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), - [anon_sym_BSLASHitem] = ACTIONS(5065), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASHbegin] = ACTIONS(5065), - [anon_sym_BSLASHend] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHiffalse] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_BSLASHpart] = ACTIONS(5033), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddpart] = ACTIONS(5033), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), + [anon_sym_BSLASHchapter] = ACTIONS(5033), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddchap] = ACTIONS(5033), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsection] = ACTIONS(5033), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddsec] = ACTIONS(5033), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubsection] = ACTIONS(5033), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHparagraph] = ACTIONS(5033), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), + [anon_sym_BSLASHitem] = ACTIONS(5033), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5031), + [sym_word] = ACTIONS(5033), + [sym_placeholder] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5033), + [anon_sym_DASH] = ACTIONS(5033), + [anon_sym_STAR] = ACTIONS(5033), + [anon_sym_SLASH] = ACTIONS(5033), + [anon_sym_CARET] = ACTIONS(5033), + [anon_sym__] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5033), + [anon_sym_PIPE] = ACTIONS(5033), + [anon_sym_COLON] = ACTIONS(5033), + [anon_sym_SQUOTE] = ACTIONS(5033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5031), + [anon_sym_DOLLAR] = ACTIONS(5033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), + [anon_sym_BSLASHbegin] = ACTIONS(5033), + [anon_sym_BSLASHusepackage] = ACTIONS(5033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), + [anon_sym_BSLASHinclude] = ACTIONS(5033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), + [anon_sym_BSLASHinput] = ACTIONS(5033), + [anon_sym_BSLASHsubfile] = ACTIONS(5033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), + [anon_sym_BSLASHbibliography] = ACTIONS(5033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), + [anon_sym_BSLASHincludesvg] = ACTIONS(5033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), + [anon_sym_BSLASHimport] = ACTIONS(5033), + [anon_sym_BSLASHsubimport] = ACTIONS(5033), + [anon_sym_BSLASHinputfrom] = ACTIONS(5033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), + [anon_sym_BSLASHincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHcaption] = ACTIONS(5033), + [anon_sym_BSLASHcite] = ACTIONS(5033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCite] = ACTIONS(5033), + [anon_sym_BSLASHnocite] = ACTIONS(5033), + [anon_sym_BSLASHcitet] = ACTIONS(5033), + [anon_sym_BSLASHcitep] = ACTIONS(5033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteauthor] = ACTIONS(5033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitetitle] = ACTIONS(5033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteyear] = ACTIONS(5033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitedate] = ACTIONS(5033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteurl] = ACTIONS(5033), + [anon_sym_BSLASHfullcite] = ACTIONS(5033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), + [anon_sym_BSLASHcitealt] = ACTIONS(5033), + [anon_sym_BSLASHcitealp] = ACTIONS(5033), + [anon_sym_BSLASHcitetext] = ACTIONS(5033), + [anon_sym_BSLASHparencite] = ACTIONS(5033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHParencite] = ACTIONS(5033), + [anon_sym_BSLASHfootcite] = ACTIONS(5033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), + [anon_sym_BSLASHtextcite] = ACTIONS(5033), + [anon_sym_BSLASHTextcite] = ACTIONS(5033), + [anon_sym_BSLASHsmartcite] = ACTIONS(5033), + [anon_sym_BSLASHSmartcite] = ACTIONS(5033), + [anon_sym_BSLASHsupercite] = ACTIONS(5033), + [anon_sym_BSLASHautocite] = ACTIONS(5033), + [anon_sym_BSLASHAutocite] = ACTIONS(5033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHvolcite] = ACTIONS(5033), + [anon_sym_BSLASHVolcite] = ACTIONS(5033), + [anon_sym_BSLASHpvolcite] = ACTIONS(5033), + [anon_sym_BSLASHPvolcite] = ACTIONS(5033), + [anon_sym_BSLASHfvolcite] = ACTIONS(5033), + [anon_sym_BSLASHftvolcite] = ACTIONS(5033), + [anon_sym_BSLASHsvolcite] = ACTIONS(5033), + [anon_sym_BSLASHSvolcite] = ACTIONS(5033), + [anon_sym_BSLASHtvolcite] = ACTIONS(5033), + [anon_sym_BSLASHTvolcite] = ACTIONS(5033), + [anon_sym_BSLASHavolcite] = ACTIONS(5033), + [anon_sym_BSLASHAvolcite] = ACTIONS(5033), + [anon_sym_BSLASHnotecite] = ACTIONS(5033), + [anon_sym_BSLASHNotecite] = ACTIONS(5033), + [anon_sym_BSLASHpnotecite] = ACTIONS(5033), + [anon_sym_BSLASHPnotecite] = ACTIONS(5033), + [anon_sym_BSLASHfnotecite] = ACTIONS(5033), + [anon_sym_BSLASHlabel] = ACTIONS(5033), + [anon_sym_BSLASHref] = ACTIONS(5033), + [anon_sym_BSLASHeqref] = ACTIONS(5033), + [anon_sym_BSLASHvref] = ACTIONS(5033), + [anon_sym_BSLASHVref] = ACTIONS(5033), + [anon_sym_BSLASHautoref] = ACTIONS(5033), + [anon_sym_BSLASHpageref] = ACTIONS(5033), + [anon_sym_BSLASHcref] = ACTIONS(5033), + [anon_sym_BSLASHCref] = ACTIONS(5033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnameCref] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHlabelcref] = ACTIONS(5033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCrefrange] = ACTIONS(5033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnewlabel] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), + [anon_sym_BSLASHdef] = ACTIONS(5033), + [anon_sym_BSLASHlet] = ACTIONS(5033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), + [anon_sym_BSLASHgls] = ACTIONS(5033), + [anon_sym_BSLASHGls] = ACTIONS(5033), + [anon_sym_BSLASHGLS] = ACTIONS(5033), + [anon_sym_BSLASHglspl] = ACTIONS(5033), + [anon_sym_BSLASHGlspl] = ACTIONS(5033), + [anon_sym_BSLASHGLSpl] = ACTIONS(5033), + [anon_sym_BSLASHglsdisp] = ACTIONS(5033), + [anon_sym_BSLASHglslink] = ACTIONS(5033), + [anon_sym_BSLASHglstext] = ACTIONS(5033), + [anon_sym_BSLASHGlstext] = ACTIONS(5033), + [anon_sym_BSLASHGLStext] = ACTIONS(5033), + [anon_sym_BSLASHglsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), + [anon_sym_BSLASHglsplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSplural] = ACTIONS(5033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHglsname] = ACTIONS(5033), + [anon_sym_BSLASHGlsname] = ACTIONS(5033), + [anon_sym_BSLASHGLSname] = ACTIONS(5033), + [anon_sym_BSLASHglssymbol] = ACTIONS(5033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), + [anon_sym_BSLASHglsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), + [anon_sym_BSLASHglsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), + [anon_sym_BSLASHglsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), + [anon_sym_BSLASHglsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), + [anon_sym_BSLASHglsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), + [anon_sym_BSLASHnewacronym] = ACTIONS(5033), + [anon_sym_BSLASHacrshort] = ACTIONS(5033), + [anon_sym_BSLASHAcrshort] = ACTIONS(5033), + [anon_sym_BSLASHACRshort] = ACTIONS(5033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), + [anon_sym_BSLASHacrlong] = ACTIONS(5033), + [anon_sym_BSLASHAcrlong] = ACTIONS(5033), + [anon_sym_BSLASHACRlong] = ACTIONS(5033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), + [anon_sym_BSLASHacrfull] = ACTIONS(5033), + [anon_sym_BSLASHAcrfull] = ACTIONS(5033), + [anon_sym_BSLASHACRfull] = ACTIONS(5033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), + [anon_sym_BSLASHacs] = ACTIONS(5033), + [anon_sym_BSLASHAcs] = ACTIONS(5033), + [anon_sym_BSLASHacsp] = ACTIONS(5033), + [anon_sym_BSLASHAcsp] = ACTIONS(5033), + [anon_sym_BSLASHacl] = ACTIONS(5033), + [anon_sym_BSLASHAcl] = ACTIONS(5033), + [anon_sym_BSLASHaclp] = ACTIONS(5033), + [anon_sym_BSLASHAclp] = ACTIONS(5033), + [anon_sym_BSLASHacf] = ACTIONS(5033), + [anon_sym_BSLASHAcf] = ACTIONS(5033), + [anon_sym_BSLASHacfp] = ACTIONS(5033), + [anon_sym_BSLASHAcfp] = ACTIONS(5033), + [anon_sym_BSLASHac] = ACTIONS(5033), + [anon_sym_BSLASHAc] = ACTIONS(5033), + [anon_sym_BSLASHacp] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), + [anon_sym_BSLASHcolor] = ACTIONS(5033), + [anon_sym_BSLASHcolorbox] = ACTIONS(5033), + [anon_sym_BSLASHtextcolor] = ACTIONS(5033), + [anon_sym_BSLASHpagecolor] = ACTIONS(5033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [anon_sym_BSLASHtext] = ACTIONS(5033), + [anon_sym_BSLASHintertext] = ACTIONS(5033), + [anon_sym_shortintertext] = ACTIONS(5033), }, - [1195] = { - [sym_command_name] = ACTIONS(5069), + [1090] = { + [sym_command_name] = ACTIONS(5119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_BSLASHpart] = ACTIONS(5119), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddpart] = ACTIONS(5119), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5117), + [anon_sym_BSLASHchapter] = ACTIONS(5119), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddchap] = ACTIONS(5119), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsection] = ACTIONS(5119), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddsec] = ACTIONS(5119), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubsection] = ACTIONS(5119), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5119), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHparagraph] = ACTIONS(5119), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5119), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5117), + [anon_sym_BSLASHitem] = ACTIONS(5119), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5117), + [sym_word] = ACTIONS(5119), + [sym_placeholder] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5119), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_CARET] = ACTIONS(5119), + [anon_sym__] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_COLON] = ACTIONS(5119), + [anon_sym_SQUOTE] = ACTIONS(5119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5117), + [anon_sym_DOLLAR] = ACTIONS(5119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), + [anon_sym_BSLASHbegin] = ACTIONS(5119), + [anon_sym_BSLASHusepackage] = ACTIONS(5119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), + [anon_sym_BSLASHinclude] = ACTIONS(5119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), + [anon_sym_BSLASHinput] = ACTIONS(5119), + [anon_sym_BSLASHsubfile] = ACTIONS(5119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), + [anon_sym_BSLASHbibliography] = ACTIONS(5119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), + [anon_sym_BSLASHincludesvg] = ACTIONS(5119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), + [anon_sym_BSLASHimport] = ACTIONS(5119), + [anon_sym_BSLASHsubimport] = ACTIONS(5119), + [anon_sym_BSLASHinputfrom] = ACTIONS(5119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), + [anon_sym_BSLASHincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHcaption] = ACTIONS(5119), + [anon_sym_BSLASHcite] = ACTIONS(5119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCite] = ACTIONS(5119), + [anon_sym_BSLASHnocite] = ACTIONS(5119), + [anon_sym_BSLASHcitet] = ACTIONS(5119), + [anon_sym_BSLASHcitep] = ACTIONS(5119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteauthor] = ACTIONS(5119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitetitle] = ACTIONS(5119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteyear] = ACTIONS(5119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitedate] = ACTIONS(5119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteurl] = ACTIONS(5119), + [anon_sym_BSLASHfullcite] = ACTIONS(5119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), + [anon_sym_BSLASHcitealt] = ACTIONS(5119), + [anon_sym_BSLASHcitealp] = ACTIONS(5119), + [anon_sym_BSLASHcitetext] = ACTIONS(5119), + [anon_sym_BSLASHparencite] = ACTIONS(5119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHParencite] = ACTIONS(5119), + [anon_sym_BSLASHfootcite] = ACTIONS(5119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), + [anon_sym_BSLASHtextcite] = ACTIONS(5119), + [anon_sym_BSLASHTextcite] = ACTIONS(5119), + [anon_sym_BSLASHsmartcite] = ACTIONS(5119), + [anon_sym_BSLASHSmartcite] = ACTIONS(5119), + [anon_sym_BSLASHsupercite] = ACTIONS(5119), + [anon_sym_BSLASHautocite] = ACTIONS(5119), + [anon_sym_BSLASHAutocite] = ACTIONS(5119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHvolcite] = ACTIONS(5119), + [anon_sym_BSLASHVolcite] = ACTIONS(5119), + [anon_sym_BSLASHpvolcite] = ACTIONS(5119), + [anon_sym_BSLASHPvolcite] = ACTIONS(5119), + [anon_sym_BSLASHfvolcite] = ACTIONS(5119), + [anon_sym_BSLASHftvolcite] = ACTIONS(5119), + [anon_sym_BSLASHsvolcite] = ACTIONS(5119), + [anon_sym_BSLASHSvolcite] = ACTIONS(5119), + [anon_sym_BSLASHtvolcite] = ACTIONS(5119), + [anon_sym_BSLASHTvolcite] = ACTIONS(5119), + [anon_sym_BSLASHavolcite] = ACTIONS(5119), + [anon_sym_BSLASHAvolcite] = ACTIONS(5119), + [anon_sym_BSLASHnotecite] = ACTIONS(5119), + [anon_sym_BSLASHNotecite] = ACTIONS(5119), + [anon_sym_BSLASHpnotecite] = ACTIONS(5119), + [anon_sym_BSLASHPnotecite] = ACTIONS(5119), + [anon_sym_BSLASHfnotecite] = ACTIONS(5119), + [anon_sym_BSLASHlabel] = ACTIONS(5119), + [anon_sym_BSLASHref] = ACTIONS(5119), + [anon_sym_BSLASHeqref] = ACTIONS(5119), + [anon_sym_BSLASHvref] = ACTIONS(5119), + [anon_sym_BSLASHVref] = ACTIONS(5119), + [anon_sym_BSLASHautoref] = ACTIONS(5119), + [anon_sym_BSLASHpageref] = ACTIONS(5119), + [anon_sym_BSLASHcref] = ACTIONS(5119), + [anon_sym_BSLASHCref] = ACTIONS(5119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnameCref] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHlabelcref] = ACTIONS(5119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCrefrange] = ACTIONS(5119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnewlabel] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), + [anon_sym_BSLASHdef] = ACTIONS(5119), + [anon_sym_BSLASHlet] = ACTIONS(5119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), + [anon_sym_BSLASHgls] = ACTIONS(5119), + [anon_sym_BSLASHGls] = ACTIONS(5119), + [anon_sym_BSLASHGLS] = ACTIONS(5119), + [anon_sym_BSLASHglspl] = ACTIONS(5119), + [anon_sym_BSLASHGlspl] = ACTIONS(5119), + [anon_sym_BSLASHGLSpl] = ACTIONS(5119), + [anon_sym_BSLASHglsdisp] = ACTIONS(5119), + [anon_sym_BSLASHglslink] = ACTIONS(5119), + [anon_sym_BSLASHglstext] = ACTIONS(5119), + [anon_sym_BSLASHGlstext] = ACTIONS(5119), + [anon_sym_BSLASHGLStext] = ACTIONS(5119), + [anon_sym_BSLASHglsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), + [anon_sym_BSLASHglsplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSplural] = ACTIONS(5119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHglsname] = ACTIONS(5119), + [anon_sym_BSLASHGlsname] = ACTIONS(5119), + [anon_sym_BSLASHGLSname] = ACTIONS(5119), + [anon_sym_BSLASHglssymbol] = ACTIONS(5119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), + [anon_sym_BSLASHglsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), + [anon_sym_BSLASHglsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), + [anon_sym_BSLASHglsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), + [anon_sym_BSLASHglsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), + [anon_sym_BSLASHglsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), + [anon_sym_BSLASHnewacronym] = ACTIONS(5119), + [anon_sym_BSLASHacrshort] = ACTIONS(5119), + [anon_sym_BSLASHAcrshort] = ACTIONS(5119), + [anon_sym_BSLASHACRshort] = ACTIONS(5119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), + [anon_sym_BSLASHacrlong] = ACTIONS(5119), + [anon_sym_BSLASHAcrlong] = ACTIONS(5119), + [anon_sym_BSLASHACRlong] = ACTIONS(5119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), + [anon_sym_BSLASHacrfull] = ACTIONS(5119), + [anon_sym_BSLASHAcrfull] = ACTIONS(5119), + [anon_sym_BSLASHACRfull] = ACTIONS(5119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), + [anon_sym_BSLASHacs] = ACTIONS(5119), + [anon_sym_BSLASHAcs] = ACTIONS(5119), + [anon_sym_BSLASHacsp] = ACTIONS(5119), + [anon_sym_BSLASHAcsp] = ACTIONS(5119), + [anon_sym_BSLASHacl] = ACTIONS(5119), + [anon_sym_BSLASHAcl] = ACTIONS(5119), + [anon_sym_BSLASHaclp] = ACTIONS(5119), + [anon_sym_BSLASHAclp] = ACTIONS(5119), + [anon_sym_BSLASHacf] = ACTIONS(5119), + [anon_sym_BSLASHAcf] = ACTIONS(5119), + [anon_sym_BSLASHacfp] = ACTIONS(5119), + [anon_sym_BSLASHAcfp] = ACTIONS(5119), + [anon_sym_BSLASHac] = ACTIONS(5119), + [anon_sym_BSLASHAc] = ACTIONS(5119), + [anon_sym_BSLASHacp] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), + [anon_sym_BSLASHcolor] = ACTIONS(5119), + [anon_sym_BSLASHcolorbox] = ACTIONS(5119), + [anon_sym_BSLASHtextcolor] = ACTIONS(5119), + [anon_sym_BSLASHpagecolor] = ACTIONS(5119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), + [anon_sym_BSLASHtext] = ACTIONS(5119), + [anon_sym_BSLASHintertext] = ACTIONS(5119), + [anon_sym_shortintertext] = ACTIONS(5119), + }, + [1091] = { + [sym_command_name] = ACTIONS(5029), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_BSLASHpart] = ACTIONS(5069), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddpart] = ACTIONS(5069), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), - [anon_sym_BSLASHchapter] = ACTIONS(5069), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddchap] = ACTIONS(5069), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsection] = ACTIONS(5069), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHaddsec] = ACTIONS(5069), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), - [anon_sym_BSLASHparagraph] = ACTIONS(5069), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), - [anon_sym_BSLASHitem] = ACTIONS(5069), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), - [anon_sym_BSLASHbegin] = ACTIONS(5069), - [anon_sym_BSLASHend] = ACTIONS(5069), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), + [anon_sym_BSLASHiffalse] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_RBRACK] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_BSLASHpart] = ACTIONS(5029), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddpart] = ACTIONS(5029), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), + [anon_sym_BSLASHchapter] = ACTIONS(5029), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddchap] = ACTIONS(5029), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsection] = ACTIONS(5029), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddsec] = ACTIONS(5029), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubsection] = ACTIONS(5029), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHparagraph] = ACTIONS(5029), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), + [anon_sym_BSLASHitem] = ACTIONS(5029), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5027), + [sym_word] = ACTIONS(5029), + [sym_placeholder] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_CARET] = ACTIONS(5029), + [anon_sym__] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_COLON] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5027), + [anon_sym_DOLLAR] = ACTIONS(5029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), + [anon_sym_BSLASHbegin] = ACTIONS(5029), + [anon_sym_BSLASHusepackage] = ACTIONS(5029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), + [anon_sym_BSLASHinclude] = ACTIONS(5029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), + [anon_sym_BSLASHinput] = ACTIONS(5029), + [anon_sym_BSLASHsubfile] = ACTIONS(5029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), + [anon_sym_BSLASHbibliography] = ACTIONS(5029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), + [anon_sym_BSLASHincludesvg] = ACTIONS(5029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), + [anon_sym_BSLASHimport] = ACTIONS(5029), + [anon_sym_BSLASHsubimport] = ACTIONS(5029), + [anon_sym_BSLASHinputfrom] = ACTIONS(5029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), + [anon_sym_BSLASHincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHcaption] = ACTIONS(5029), + [anon_sym_BSLASHcite] = ACTIONS(5029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCite] = ACTIONS(5029), + [anon_sym_BSLASHnocite] = ACTIONS(5029), + [anon_sym_BSLASHcitet] = ACTIONS(5029), + [anon_sym_BSLASHcitep] = ACTIONS(5029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteauthor] = ACTIONS(5029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitetitle] = ACTIONS(5029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteyear] = ACTIONS(5029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitedate] = ACTIONS(5029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteurl] = ACTIONS(5029), + [anon_sym_BSLASHfullcite] = ACTIONS(5029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), + [anon_sym_BSLASHcitealt] = ACTIONS(5029), + [anon_sym_BSLASHcitealp] = ACTIONS(5029), + [anon_sym_BSLASHcitetext] = ACTIONS(5029), + [anon_sym_BSLASHparencite] = ACTIONS(5029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHParencite] = ACTIONS(5029), + [anon_sym_BSLASHfootcite] = ACTIONS(5029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), + [anon_sym_BSLASHtextcite] = ACTIONS(5029), + [anon_sym_BSLASHTextcite] = ACTIONS(5029), + [anon_sym_BSLASHsmartcite] = ACTIONS(5029), + [anon_sym_BSLASHSmartcite] = ACTIONS(5029), + [anon_sym_BSLASHsupercite] = ACTIONS(5029), + [anon_sym_BSLASHautocite] = ACTIONS(5029), + [anon_sym_BSLASHAutocite] = ACTIONS(5029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHvolcite] = ACTIONS(5029), + [anon_sym_BSLASHVolcite] = ACTIONS(5029), + [anon_sym_BSLASHpvolcite] = ACTIONS(5029), + [anon_sym_BSLASHPvolcite] = ACTIONS(5029), + [anon_sym_BSLASHfvolcite] = ACTIONS(5029), + [anon_sym_BSLASHftvolcite] = ACTIONS(5029), + [anon_sym_BSLASHsvolcite] = ACTIONS(5029), + [anon_sym_BSLASHSvolcite] = ACTIONS(5029), + [anon_sym_BSLASHtvolcite] = ACTIONS(5029), + [anon_sym_BSLASHTvolcite] = ACTIONS(5029), + [anon_sym_BSLASHavolcite] = ACTIONS(5029), + [anon_sym_BSLASHAvolcite] = ACTIONS(5029), + [anon_sym_BSLASHnotecite] = ACTIONS(5029), + [anon_sym_BSLASHNotecite] = ACTIONS(5029), + [anon_sym_BSLASHpnotecite] = ACTIONS(5029), + [anon_sym_BSLASHPnotecite] = ACTIONS(5029), + [anon_sym_BSLASHfnotecite] = ACTIONS(5029), + [anon_sym_BSLASHlabel] = ACTIONS(5029), + [anon_sym_BSLASHref] = ACTIONS(5029), + [anon_sym_BSLASHeqref] = ACTIONS(5029), + [anon_sym_BSLASHvref] = ACTIONS(5029), + [anon_sym_BSLASHVref] = ACTIONS(5029), + [anon_sym_BSLASHautoref] = ACTIONS(5029), + [anon_sym_BSLASHpageref] = ACTIONS(5029), + [anon_sym_BSLASHcref] = ACTIONS(5029), + [anon_sym_BSLASHCref] = ACTIONS(5029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnameCref] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHlabelcref] = ACTIONS(5029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCrefrange] = ACTIONS(5029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnewlabel] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), + [anon_sym_BSLASHdef] = ACTIONS(5029), + [anon_sym_BSLASHlet] = ACTIONS(5029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), + [anon_sym_BSLASHgls] = ACTIONS(5029), + [anon_sym_BSLASHGls] = ACTIONS(5029), + [anon_sym_BSLASHGLS] = ACTIONS(5029), + [anon_sym_BSLASHglspl] = ACTIONS(5029), + [anon_sym_BSLASHGlspl] = ACTIONS(5029), + [anon_sym_BSLASHGLSpl] = ACTIONS(5029), + [anon_sym_BSLASHglsdisp] = ACTIONS(5029), + [anon_sym_BSLASHglslink] = ACTIONS(5029), + [anon_sym_BSLASHglstext] = ACTIONS(5029), + [anon_sym_BSLASHGlstext] = ACTIONS(5029), + [anon_sym_BSLASHGLStext] = ACTIONS(5029), + [anon_sym_BSLASHglsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), + [anon_sym_BSLASHglsplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSplural] = ACTIONS(5029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHglsname] = ACTIONS(5029), + [anon_sym_BSLASHGlsname] = ACTIONS(5029), + [anon_sym_BSLASHGLSname] = ACTIONS(5029), + [anon_sym_BSLASHglssymbol] = ACTIONS(5029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), + [anon_sym_BSLASHglsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), + [anon_sym_BSLASHglsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), + [anon_sym_BSLASHglsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), + [anon_sym_BSLASHglsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), + [anon_sym_BSLASHglsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), + [anon_sym_BSLASHnewacronym] = ACTIONS(5029), + [anon_sym_BSLASHacrshort] = ACTIONS(5029), + [anon_sym_BSLASHAcrshort] = ACTIONS(5029), + [anon_sym_BSLASHACRshort] = ACTIONS(5029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), + [anon_sym_BSLASHacrlong] = ACTIONS(5029), + [anon_sym_BSLASHAcrlong] = ACTIONS(5029), + [anon_sym_BSLASHACRlong] = ACTIONS(5029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), + [anon_sym_BSLASHacrfull] = ACTIONS(5029), + [anon_sym_BSLASHAcrfull] = ACTIONS(5029), + [anon_sym_BSLASHACRfull] = ACTIONS(5029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), + [anon_sym_BSLASHacs] = ACTIONS(5029), + [anon_sym_BSLASHAcs] = ACTIONS(5029), + [anon_sym_BSLASHacsp] = ACTIONS(5029), + [anon_sym_BSLASHAcsp] = ACTIONS(5029), + [anon_sym_BSLASHacl] = ACTIONS(5029), + [anon_sym_BSLASHAcl] = ACTIONS(5029), + [anon_sym_BSLASHaclp] = ACTIONS(5029), + [anon_sym_BSLASHAclp] = ACTIONS(5029), + [anon_sym_BSLASHacf] = ACTIONS(5029), + [anon_sym_BSLASHAcf] = ACTIONS(5029), + [anon_sym_BSLASHacfp] = ACTIONS(5029), + [anon_sym_BSLASHAcfp] = ACTIONS(5029), + [anon_sym_BSLASHac] = ACTIONS(5029), + [anon_sym_BSLASHAc] = ACTIONS(5029), + [anon_sym_BSLASHacp] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), + [anon_sym_BSLASHcolor] = ACTIONS(5029), + [anon_sym_BSLASHcolorbox] = ACTIONS(5029), + [anon_sym_BSLASHtextcolor] = ACTIONS(5029), + [anon_sym_BSLASHpagecolor] = ACTIONS(5029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), + [anon_sym_BSLASHtext] = ACTIONS(5029), + [anon_sym_BSLASHintertext] = ACTIONS(5029), + [anon_sym_shortintertext] = ACTIONS(5029), }, - [1196] = { - [sym_command_name] = ACTIONS(5073), + [1092] = { + [sym_command_name] = ACTIONS(5025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_BSLASHpart] = ACTIONS(5073), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddpart] = ACTIONS(5073), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), - [anon_sym_BSLASHchapter] = ACTIONS(5073), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddchap] = ACTIONS(5073), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsection] = ACTIONS(5073), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHaddsec] = ACTIONS(5073), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), - [anon_sym_BSLASHparagraph] = ACTIONS(5073), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), - [anon_sym_BSLASHitem] = ACTIONS(5073), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASHbegin] = ACTIONS(5073), - [anon_sym_BSLASHend] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHiffalse] = ACTIONS(5025), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_RBRACK] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5023), + [anon_sym_BSLASHpart] = ACTIONS(5025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddpart] = ACTIONS(5025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), + [anon_sym_BSLASHchapter] = ACTIONS(5025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddchap] = ACTIONS(5025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsection] = ACTIONS(5025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddsec] = ACTIONS(5025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubsection] = ACTIONS(5025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHparagraph] = ACTIONS(5025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), + [anon_sym_BSLASHitem] = ACTIONS(5025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5023), + [sym_word] = ACTIONS(5025), + [sym_placeholder] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5025), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_SLASH] = ACTIONS(5025), + [anon_sym_CARET] = ACTIONS(5025), + [anon_sym__] = ACTIONS(5025), + [anon_sym_LT] = ACTIONS(5025), + [anon_sym_GT] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5025), + [anon_sym_PIPE] = ACTIONS(5025), + [anon_sym_COLON] = ACTIONS(5025), + [anon_sym_SQUOTE] = ACTIONS(5025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(5025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), + [anon_sym_BSLASHbegin] = ACTIONS(5025), + [anon_sym_BSLASHusepackage] = ACTIONS(5025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), + [anon_sym_BSLASHinclude] = ACTIONS(5025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), + [anon_sym_BSLASHinput] = ACTIONS(5025), + [anon_sym_BSLASHsubfile] = ACTIONS(5025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), + [anon_sym_BSLASHbibliography] = ACTIONS(5025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), + [anon_sym_BSLASHincludesvg] = ACTIONS(5025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), + [anon_sym_BSLASHimport] = ACTIONS(5025), + [anon_sym_BSLASHsubimport] = ACTIONS(5025), + [anon_sym_BSLASHinputfrom] = ACTIONS(5025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), + [anon_sym_BSLASHincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHcaption] = ACTIONS(5025), + [anon_sym_BSLASHcite] = ACTIONS(5025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCite] = ACTIONS(5025), + [anon_sym_BSLASHnocite] = ACTIONS(5025), + [anon_sym_BSLASHcitet] = ACTIONS(5025), + [anon_sym_BSLASHcitep] = ACTIONS(5025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteauthor] = ACTIONS(5025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitetitle] = ACTIONS(5025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteyear] = ACTIONS(5025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitedate] = ACTIONS(5025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteurl] = ACTIONS(5025), + [anon_sym_BSLASHfullcite] = ACTIONS(5025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), + [anon_sym_BSLASHcitealt] = ACTIONS(5025), + [anon_sym_BSLASHcitealp] = ACTIONS(5025), + [anon_sym_BSLASHcitetext] = ACTIONS(5025), + [anon_sym_BSLASHparencite] = ACTIONS(5025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHParencite] = ACTIONS(5025), + [anon_sym_BSLASHfootcite] = ACTIONS(5025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), + [anon_sym_BSLASHtextcite] = ACTIONS(5025), + [anon_sym_BSLASHTextcite] = ACTIONS(5025), + [anon_sym_BSLASHsmartcite] = ACTIONS(5025), + [anon_sym_BSLASHSmartcite] = ACTIONS(5025), + [anon_sym_BSLASHsupercite] = ACTIONS(5025), + [anon_sym_BSLASHautocite] = ACTIONS(5025), + [anon_sym_BSLASHAutocite] = ACTIONS(5025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHvolcite] = ACTIONS(5025), + [anon_sym_BSLASHVolcite] = ACTIONS(5025), + [anon_sym_BSLASHpvolcite] = ACTIONS(5025), + [anon_sym_BSLASHPvolcite] = ACTIONS(5025), + [anon_sym_BSLASHfvolcite] = ACTIONS(5025), + [anon_sym_BSLASHftvolcite] = ACTIONS(5025), + [anon_sym_BSLASHsvolcite] = ACTIONS(5025), + [anon_sym_BSLASHSvolcite] = ACTIONS(5025), + [anon_sym_BSLASHtvolcite] = ACTIONS(5025), + [anon_sym_BSLASHTvolcite] = ACTIONS(5025), + [anon_sym_BSLASHavolcite] = ACTIONS(5025), + [anon_sym_BSLASHAvolcite] = ACTIONS(5025), + [anon_sym_BSLASHnotecite] = ACTIONS(5025), + [anon_sym_BSLASHNotecite] = ACTIONS(5025), + [anon_sym_BSLASHpnotecite] = ACTIONS(5025), + [anon_sym_BSLASHPnotecite] = ACTIONS(5025), + [anon_sym_BSLASHfnotecite] = ACTIONS(5025), + [anon_sym_BSLASHlabel] = ACTIONS(5025), + [anon_sym_BSLASHref] = ACTIONS(5025), + [anon_sym_BSLASHeqref] = ACTIONS(5025), + [anon_sym_BSLASHvref] = ACTIONS(5025), + [anon_sym_BSLASHVref] = ACTIONS(5025), + [anon_sym_BSLASHautoref] = ACTIONS(5025), + [anon_sym_BSLASHpageref] = ACTIONS(5025), + [anon_sym_BSLASHcref] = ACTIONS(5025), + [anon_sym_BSLASHCref] = ACTIONS(5025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnameCref] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHlabelcref] = ACTIONS(5025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCrefrange] = ACTIONS(5025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnewlabel] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), + [anon_sym_BSLASHdef] = ACTIONS(5025), + [anon_sym_BSLASHlet] = ACTIONS(5025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), + [anon_sym_BSLASHgls] = ACTIONS(5025), + [anon_sym_BSLASHGls] = ACTIONS(5025), + [anon_sym_BSLASHGLS] = ACTIONS(5025), + [anon_sym_BSLASHglspl] = ACTIONS(5025), + [anon_sym_BSLASHGlspl] = ACTIONS(5025), + [anon_sym_BSLASHGLSpl] = ACTIONS(5025), + [anon_sym_BSLASHglsdisp] = ACTIONS(5025), + [anon_sym_BSLASHglslink] = ACTIONS(5025), + [anon_sym_BSLASHglstext] = ACTIONS(5025), + [anon_sym_BSLASHGlstext] = ACTIONS(5025), + [anon_sym_BSLASHGLStext] = ACTIONS(5025), + [anon_sym_BSLASHglsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), + [anon_sym_BSLASHglsplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSplural] = ACTIONS(5025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHglsname] = ACTIONS(5025), + [anon_sym_BSLASHGlsname] = ACTIONS(5025), + [anon_sym_BSLASHGLSname] = ACTIONS(5025), + [anon_sym_BSLASHglssymbol] = ACTIONS(5025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), + [anon_sym_BSLASHglsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), + [anon_sym_BSLASHglsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), + [anon_sym_BSLASHglsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), + [anon_sym_BSLASHglsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), + [anon_sym_BSLASHglsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), + [anon_sym_BSLASHnewacronym] = ACTIONS(5025), + [anon_sym_BSLASHacrshort] = ACTIONS(5025), + [anon_sym_BSLASHAcrshort] = ACTIONS(5025), + [anon_sym_BSLASHACRshort] = ACTIONS(5025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), + [anon_sym_BSLASHacrlong] = ACTIONS(5025), + [anon_sym_BSLASHAcrlong] = ACTIONS(5025), + [anon_sym_BSLASHACRlong] = ACTIONS(5025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), + [anon_sym_BSLASHacrfull] = ACTIONS(5025), + [anon_sym_BSLASHAcrfull] = ACTIONS(5025), + [anon_sym_BSLASHACRfull] = ACTIONS(5025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), + [anon_sym_BSLASHacs] = ACTIONS(5025), + [anon_sym_BSLASHAcs] = ACTIONS(5025), + [anon_sym_BSLASHacsp] = ACTIONS(5025), + [anon_sym_BSLASHAcsp] = ACTIONS(5025), + [anon_sym_BSLASHacl] = ACTIONS(5025), + [anon_sym_BSLASHAcl] = ACTIONS(5025), + [anon_sym_BSLASHaclp] = ACTIONS(5025), + [anon_sym_BSLASHAclp] = ACTIONS(5025), + [anon_sym_BSLASHacf] = ACTIONS(5025), + [anon_sym_BSLASHAcf] = ACTIONS(5025), + [anon_sym_BSLASHacfp] = ACTIONS(5025), + [anon_sym_BSLASHAcfp] = ACTIONS(5025), + [anon_sym_BSLASHac] = ACTIONS(5025), + [anon_sym_BSLASHAc] = ACTIONS(5025), + [anon_sym_BSLASHacp] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), + [anon_sym_BSLASHcolor] = ACTIONS(5025), + [anon_sym_BSLASHcolorbox] = ACTIONS(5025), + [anon_sym_BSLASHtextcolor] = ACTIONS(5025), + [anon_sym_BSLASHpagecolor] = ACTIONS(5025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [anon_sym_BSLASHtext] = ACTIONS(5025), + [anon_sym_BSLASHintertext] = ACTIONS(5025), + [anon_sym_shortintertext] = ACTIONS(5025), }, - [1197] = { - [sym_command_name] = ACTIONS(5077), + [1093] = { + [sym_command_name] = ACTIONS(5021), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_BSLASHpart] = ACTIONS(5077), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddpart] = ACTIONS(5077), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), - [anon_sym_BSLASHchapter] = ACTIONS(5077), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddchap] = ACTIONS(5077), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsection] = ACTIONS(5077), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHaddsec] = ACTIONS(5077), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), - [anon_sym_BSLASHparagraph] = ACTIONS(5077), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), - [anon_sym_BSLASHitem] = ACTIONS(5077), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5077), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), - [anon_sym_BSLASHbegin] = ACTIONS(5077), - [anon_sym_BSLASHend] = ACTIONS(5077), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), + [anon_sym_BSLASHiffalse] = ACTIONS(5021), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_BSLASHpart] = ACTIONS(5021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddpart] = ACTIONS(5021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), + [anon_sym_BSLASHchapter] = ACTIONS(5021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddchap] = ACTIONS(5021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsection] = ACTIONS(5021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddsec] = ACTIONS(5021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubsection] = ACTIONS(5021), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHparagraph] = ACTIONS(5021), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), + [anon_sym_BSLASHitem] = ACTIONS(5021), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [sym_word] = ACTIONS(5021), + [sym_placeholder] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5021), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_CARET] = ACTIONS(5021), + [anon_sym__] = ACTIONS(5021), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_COLON] = ACTIONS(5021), + [anon_sym_SQUOTE] = ACTIONS(5021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5019), + [anon_sym_DOLLAR] = ACTIONS(5021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), + [anon_sym_BSLASHbegin] = ACTIONS(5021), + [anon_sym_BSLASHusepackage] = ACTIONS(5021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), + [anon_sym_BSLASHinclude] = ACTIONS(5021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), + [anon_sym_BSLASHinput] = ACTIONS(5021), + [anon_sym_BSLASHsubfile] = ACTIONS(5021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), + [anon_sym_BSLASHbibliography] = ACTIONS(5021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), + [anon_sym_BSLASHincludesvg] = ACTIONS(5021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), + [anon_sym_BSLASHimport] = ACTIONS(5021), + [anon_sym_BSLASHsubimport] = ACTIONS(5021), + [anon_sym_BSLASHinputfrom] = ACTIONS(5021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), + [anon_sym_BSLASHincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHcaption] = ACTIONS(5021), + [anon_sym_BSLASHcite] = ACTIONS(5021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCite] = ACTIONS(5021), + [anon_sym_BSLASHnocite] = ACTIONS(5021), + [anon_sym_BSLASHcitet] = ACTIONS(5021), + [anon_sym_BSLASHcitep] = ACTIONS(5021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteauthor] = ACTIONS(5021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitetitle] = ACTIONS(5021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteyear] = ACTIONS(5021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitedate] = ACTIONS(5021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteurl] = ACTIONS(5021), + [anon_sym_BSLASHfullcite] = ACTIONS(5021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), + [anon_sym_BSLASHcitealt] = ACTIONS(5021), + [anon_sym_BSLASHcitealp] = ACTIONS(5021), + [anon_sym_BSLASHcitetext] = ACTIONS(5021), + [anon_sym_BSLASHparencite] = ACTIONS(5021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHParencite] = ACTIONS(5021), + [anon_sym_BSLASHfootcite] = ACTIONS(5021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), + [anon_sym_BSLASHtextcite] = ACTIONS(5021), + [anon_sym_BSLASHTextcite] = ACTIONS(5021), + [anon_sym_BSLASHsmartcite] = ACTIONS(5021), + [anon_sym_BSLASHSmartcite] = ACTIONS(5021), + [anon_sym_BSLASHsupercite] = ACTIONS(5021), + [anon_sym_BSLASHautocite] = ACTIONS(5021), + [anon_sym_BSLASHAutocite] = ACTIONS(5021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHvolcite] = ACTIONS(5021), + [anon_sym_BSLASHVolcite] = ACTIONS(5021), + [anon_sym_BSLASHpvolcite] = ACTIONS(5021), + [anon_sym_BSLASHPvolcite] = ACTIONS(5021), + [anon_sym_BSLASHfvolcite] = ACTIONS(5021), + [anon_sym_BSLASHftvolcite] = ACTIONS(5021), + [anon_sym_BSLASHsvolcite] = ACTIONS(5021), + [anon_sym_BSLASHSvolcite] = ACTIONS(5021), + [anon_sym_BSLASHtvolcite] = ACTIONS(5021), + [anon_sym_BSLASHTvolcite] = ACTIONS(5021), + [anon_sym_BSLASHavolcite] = ACTIONS(5021), + [anon_sym_BSLASHAvolcite] = ACTIONS(5021), + [anon_sym_BSLASHnotecite] = ACTIONS(5021), + [anon_sym_BSLASHNotecite] = ACTIONS(5021), + [anon_sym_BSLASHpnotecite] = ACTIONS(5021), + [anon_sym_BSLASHPnotecite] = ACTIONS(5021), + [anon_sym_BSLASHfnotecite] = ACTIONS(5021), + [anon_sym_BSLASHlabel] = ACTIONS(5021), + [anon_sym_BSLASHref] = ACTIONS(5021), + [anon_sym_BSLASHeqref] = ACTIONS(5021), + [anon_sym_BSLASHvref] = ACTIONS(5021), + [anon_sym_BSLASHVref] = ACTIONS(5021), + [anon_sym_BSLASHautoref] = ACTIONS(5021), + [anon_sym_BSLASHpageref] = ACTIONS(5021), + [anon_sym_BSLASHcref] = ACTIONS(5021), + [anon_sym_BSLASHCref] = ACTIONS(5021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnameCref] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHlabelcref] = ACTIONS(5021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCrefrange] = ACTIONS(5021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnewlabel] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), + [anon_sym_BSLASHdef] = ACTIONS(5021), + [anon_sym_BSLASHlet] = ACTIONS(5021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), + [anon_sym_BSLASHgls] = ACTIONS(5021), + [anon_sym_BSLASHGls] = ACTIONS(5021), + [anon_sym_BSLASHGLS] = ACTIONS(5021), + [anon_sym_BSLASHglspl] = ACTIONS(5021), + [anon_sym_BSLASHGlspl] = ACTIONS(5021), + [anon_sym_BSLASHGLSpl] = ACTIONS(5021), + [anon_sym_BSLASHglsdisp] = ACTIONS(5021), + [anon_sym_BSLASHglslink] = ACTIONS(5021), + [anon_sym_BSLASHglstext] = ACTIONS(5021), + [anon_sym_BSLASHGlstext] = ACTIONS(5021), + [anon_sym_BSLASHGLStext] = ACTIONS(5021), + [anon_sym_BSLASHglsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), + [anon_sym_BSLASHglsplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSplural] = ACTIONS(5021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHglsname] = ACTIONS(5021), + [anon_sym_BSLASHGlsname] = ACTIONS(5021), + [anon_sym_BSLASHGLSname] = ACTIONS(5021), + [anon_sym_BSLASHglssymbol] = ACTIONS(5021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), + [anon_sym_BSLASHglsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), + [anon_sym_BSLASHglsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), + [anon_sym_BSLASHglsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), + [anon_sym_BSLASHglsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), + [anon_sym_BSLASHglsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), + [anon_sym_BSLASHnewacronym] = ACTIONS(5021), + [anon_sym_BSLASHacrshort] = ACTIONS(5021), + [anon_sym_BSLASHAcrshort] = ACTIONS(5021), + [anon_sym_BSLASHACRshort] = ACTIONS(5021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), + [anon_sym_BSLASHacrlong] = ACTIONS(5021), + [anon_sym_BSLASHAcrlong] = ACTIONS(5021), + [anon_sym_BSLASHACRlong] = ACTIONS(5021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), + [anon_sym_BSLASHacrfull] = ACTIONS(5021), + [anon_sym_BSLASHAcrfull] = ACTIONS(5021), + [anon_sym_BSLASHACRfull] = ACTIONS(5021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), + [anon_sym_BSLASHacs] = ACTIONS(5021), + [anon_sym_BSLASHAcs] = ACTIONS(5021), + [anon_sym_BSLASHacsp] = ACTIONS(5021), + [anon_sym_BSLASHAcsp] = ACTIONS(5021), + [anon_sym_BSLASHacl] = ACTIONS(5021), + [anon_sym_BSLASHAcl] = ACTIONS(5021), + [anon_sym_BSLASHaclp] = ACTIONS(5021), + [anon_sym_BSLASHAclp] = ACTIONS(5021), + [anon_sym_BSLASHacf] = ACTIONS(5021), + [anon_sym_BSLASHAcf] = ACTIONS(5021), + [anon_sym_BSLASHacfp] = ACTIONS(5021), + [anon_sym_BSLASHAcfp] = ACTIONS(5021), + [anon_sym_BSLASHac] = ACTIONS(5021), + [anon_sym_BSLASHAc] = ACTIONS(5021), + [anon_sym_BSLASHacp] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), + [anon_sym_BSLASHcolor] = ACTIONS(5021), + [anon_sym_BSLASHcolorbox] = ACTIONS(5021), + [anon_sym_BSLASHtextcolor] = ACTIONS(5021), + [anon_sym_BSLASHpagecolor] = ACTIONS(5021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHtext] = ACTIONS(5021), + [anon_sym_BSLASHintertext] = ACTIONS(5021), + [anon_sym_shortintertext] = ACTIONS(5021), }, - [1198] = { - [sym_command_name] = ACTIONS(5081), + [1094] = { + [sym_command_name] = ACTIONS(4947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4947), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_RPAREN] = ACTIONS(4945), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_RBRACK] = ACTIONS(4945), + [anon_sym_COMMA] = ACTIONS(4945), + [anon_sym_EQ] = ACTIONS(4945), + [anon_sym_BSLASHpart] = ACTIONS(4947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddpart] = ACTIONS(4947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4945), + [anon_sym_BSLASHchapter] = ACTIONS(4947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddchap] = ACTIONS(4947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsection] = ACTIONS(4947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddsec] = ACTIONS(4947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubsection] = ACTIONS(4947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHparagraph] = ACTIONS(4947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4947), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4945), + [anon_sym_BSLASHitem] = ACTIONS(4947), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4945), + [anon_sym_LBRACE] = ACTIONS(4945), + [sym_word] = ACTIONS(4947), + [sym_placeholder] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(4947), + [anon_sym_DASH] = ACTIONS(4947), + [anon_sym_STAR] = ACTIONS(4947), + [anon_sym_SLASH] = ACTIONS(4947), + [anon_sym_CARET] = ACTIONS(4947), + [anon_sym__] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_BANG] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_COLON] = ACTIONS(4947), + [anon_sym_SQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4945), + [anon_sym_DOLLAR] = ACTIONS(4947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4945), + [anon_sym_BSLASHbegin] = ACTIONS(4947), + [anon_sym_BSLASHend] = ACTIONS(4947), + [anon_sym_BSLASHusepackage] = ACTIONS(4947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4947), + [anon_sym_BSLASHinclude] = ACTIONS(4947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4947), + [anon_sym_BSLASHinput] = ACTIONS(4947), + [anon_sym_BSLASHsubfile] = ACTIONS(4947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4947), + [anon_sym_BSLASHbibliography] = ACTIONS(4947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4947), + [anon_sym_BSLASHincludesvg] = ACTIONS(4947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4947), + [anon_sym_BSLASHimport] = ACTIONS(4947), + [anon_sym_BSLASHsubimport] = ACTIONS(4947), + [anon_sym_BSLASHinputfrom] = ACTIONS(4947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4947), + [anon_sym_BSLASHincludefrom] = ACTIONS(4947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4947), + [anon_sym_BSLASHcaption] = ACTIONS(4947), + [anon_sym_BSLASHcite] = ACTIONS(4947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCite] = ACTIONS(4947), + [anon_sym_BSLASHnocite] = ACTIONS(4947), + [anon_sym_BSLASHcitet] = ACTIONS(4947), + [anon_sym_BSLASHcitep] = ACTIONS(4947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteauthor] = ACTIONS(4947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitetitle] = ACTIONS(4947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteyear] = ACTIONS(4947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitedate] = ACTIONS(4947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteurl] = ACTIONS(4947), + [anon_sym_BSLASHfullcite] = ACTIONS(4947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4947), + [anon_sym_BSLASHcitealt] = ACTIONS(4947), + [anon_sym_BSLASHcitealp] = ACTIONS(4947), + [anon_sym_BSLASHcitetext] = ACTIONS(4947), + [anon_sym_BSLASHparencite] = ACTIONS(4947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHParencite] = ACTIONS(4947), + [anon_sym_BSLASHfootcite] = ACTIONS(4947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4947), + [anon_sym_BSLASHtextcite] = ACTIONS(4947), + [anon_sym_BSLASHTextcite] = ACTIONS(4947), + [anon_sym_BSLASHsmartcite] = ACTIONS(4947), + [anon_sym_BSLASHSmartcite] = ACTIONS(4947), + [anon_sym_BSLASHsupercite] = ACTIONS(4947), + [anon_sym_BSLASHautocite] = ACTIONS(4947), + [anon_sym_BSLASHAutocite] = ACTIONS(4947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHvolcite] = ACTIONS(4947), + [anon_sym_BSLASHVolcite] = ACTIONS(4947), + [anon_sym_BSLASHpvolcite] = ACTIONS(4947), + [anon_sym_BSLASHPvolcite] = ACTIONS(4947), + [anon_sym_BSLASHfvolcite] = ACTIONS(4947), + [anon_sym_BSLASHftvolcite] = ACTIONS(4947), + [anon_sym_BSLASHsvolcite] = ACTIONS(4947), + [anon_sym_BSLASHSvolcite] = ACTIONS(4947), + [anon_sym_BSLASHtvolcite] = ACTIONS(4947), + [anon_sym_BSLASHTvolcite] = ACTIONS(4947), + [anon_sym_BSLASHavolcite] = ACTIONS(4947), + [anon_sym_BSLASHAvolcite] = ACTIONS(4947), + [anon_sym_BSLASHnotecite] = ACTIONS(4947), + [anon_sym_BSLASHNotecite] = ACTIONS(4947), + [anon_sym_BSLASHpnotecite] = ACTIONS(4947), + [anon_sym_BSLASHPnotecite] = ACTIONS(4947), + [anon_sym_BSLASHfnotecite] = ACTIONS(4947), + [anon_sym_BSLASHlabel] = ACTIONS(4947), + [anon_sym_BSLASHref] = ACTIONS(4947), + [anon_sym_BSLASHeqref] = ACTIONS(4947), + [anon_sym_BSLASHvref] = ACTIONS(4947), + [anon_sym_BSLASHVref] = ACTIONS(4947), + [anon_sym_BSLASHautoref] = ACTIONS(4947), + [anon_sym_BSLASHpageref] = ACTIONS(4947), + [anon_sym_BSLASHcref] = ACTIONS(4947), + [anon_sym_BSLASHCref] = ACTIONS(4947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4945), + [anon_sym_BSLASHnamecref] = ACTIONS(4947), + [anon_sym_BSLASHnameCref] = ACTIONS(4947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4947), + [anon_sym_BSLASHlabelcref] = ACTIONS(4947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4947), + [anon_sym_BSLASHcrefrange] = ACTIONS(4947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCrefrange] = ACTIONS(4947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4945), + [anon_sym_BSLASHnewlabel] = ACTIONS(4947), + [anon_sym_BSLASHnewcommand] = ACTIONS(4947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4945), + [anon_sym_BSLASHdef] = ACTIONS(4947), + [anon_sym_BSLASHlet] = ACTIONS(4947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), + [anon_sym_BSLASHgls] = ACTIONS(4947), + [anon_sym_BSLASHGls] = ACTIONS(4947), + [anon_sym_BSLASHGLS] = ACTIONS(4947), + [anon_sym_BSLASHglspl] = ACTIONS(4947), + [anon_sym_BSLASHGlspl] = ACTIONS(4947), + [anon_sym_BSLASHGLSpl] = ACTIONS(4947), + [anon_sym_BSLASHglsdisp] = ACTIONS(4947), + [anon_sym_BSLASHglslink] = ACTIONS(4947), + [anon_sym_BSLASHglstext] = ACTIONS(4947), + [anon_sym_BSLASHGlstext] = ACTIONS(4947), + [anon_sym_BSLASHGLStext] = ACTIONS(4947), + [anon_sym_BSLASHglsfirst] = ACTIONS(4947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4947), + [anon_sym_BSLASHglsplural] = ACTIONS(4947), + [anon_sym_BSLASHGlsplural] = ACTIONS(4947), + [anon_sym_BSLASHGLSplural] = ACTIONS(4947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHglsname] = ACTIONS(4947), + [anon_sym_BSLASHGlsname] = ACTIONS(4947), + [anon_sym_BSLASHGLSname] = ACTIONS(4947), + [anon_sym_BSLASHglssymbol] = ACTIONS(4947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4947), + [anon_sym_BSLASHglsdesc] = ACTIONS(4947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4947), + [anon_sym_BSLASHglsuseri] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4947), + [anon_sym_BSLASHglsuserii] = ACTIONS(4947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4947), + [anon_sym_BSLASHglsuserv] = ACTIONS(4947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4947), + [anon_sym_BSLASHglsuservi] = ACTIONS(4947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4947), + [anon_sym_BSLASHnewacronym] = ACTIONS(4947), + [anon_sym_BSLASHacrshort] = ACTIONS(4947), + [anon_sym_BSLASHAcrshort] = ACTIONS(4947), + [anon_sym_BSLASHACRshort] = ACTIONS(4947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4947), + [anon_sym_BSLASHacrlong] = ACTIONS(4947), + [anon_sym_BSLASHAcrlong] = ACTIONS(4947), + [anon_sym_BSLASHACRlong] = ACTIONS(4947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4947), + [anon_sym_BSLASHacrfull] = ACTIONS(4947), + [anon_sym_BSLASHAcrfull] = ACTIONS(4947), + [anon_sym_BSLASHACRfull] = ACTIONS(4947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4947), + [anon_sym_BSLASHacs] = ACTIONS(4947), + [anon_sym_BSLASHAcs] = ACTIONS(4947), + [anon_sym_BSLASHacsp] = ACTIONS(4947), + [anon_sym_BSLASHAcsp] = ACTIONS(4947), + [anon_sym_BSLASHacl] = ACTIONS(4947), + [anon_sym_BSLASHAcl] = ACTIONS(4947), + [anon_sym_BSLASHaclp] = ACTIONS(4947), + [anon_sym_BSLASHAclp] = ACTIONS(4947), + [anon_sym_BSLASHacf] = ACTIONS(4947), + [anon_sym_BSLASHAcf] = ACTIONS(4947), + [anon_sym_BSLASHacfp] = ACTIONS(4947), + [anon_sym_BSLASHAcfp] = ACTIONS(4947), + [anon_sym_BSLASHac] = ACTIONS(4947), + [anon_sym_BSLASHAc] = ACTIONS(4947), + [anon_sym_BSLASHacp] = ACTIONS(4947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4947), + [anon_sym_BSLASHcolor] = ACTIONS(4947), + [anon_sym_BSLASHcolorbox] = ACTIONS(4947), + [anon_sym_BSLASHtextcolor] = ACTIONS(4947), + [anon_sym_BSLASHpagecolor] = ACTIONS(4947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4947), + [anon_sym_BSLASHtext] = ACTIONS(4947), + [anon_sym_BSLASHintertext] = ACTIONS(4947), + [anon_sym_shortintertext] = ACTIONS(4947), + }, + [1095] = { + [sym_command_name] = ACTIONS(5017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5017), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_RPAREN] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_RBRACK] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_EQ] = ACTIONS(5015), + [anon_sym_BSLASHpart] = ACTIONS(5017), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddpart] = ACTIONS(5017), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5015), + [anon_sym_BSLASHchapter] = ACTIONS(5017), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddchap] = ACTIONS(5017), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsection] = ACTIONS(5017), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddsec] = ACTIONS(5017), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubsection] = ACTIONS(5017), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5017), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHparagraph] = ACTIONS(5017), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5017), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5015), + [anon_sym_BSLASHitem] = ACTIONS(5017), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5015), + [anon_sym_LBRACE] = ACTIONS(5015), + [sym_word] = ACTIONS(5017), + [sym_placeholder] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5017), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_CARET] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5017), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_COLON] = ACTIONS(5017), + [anon_sym_SQUOTE] = ACTIONS(5017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5015), + [anon_sym_DOLLAR] = ACTIONS(5017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), + [anon_sym_BSLASHbegin] = ACTIONS(5017), + [anon_sym_BSLASHusepackage] = ACTIONS(5017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), + [anon_sym_BSLASHinclude] = ACTIONS(5017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), + [anon_sym_BSLASHinput] = ACTIONS(5017), + [anon_sym_BSLASHsubfile] = ACTIONS(5017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), + [anon_sym_BSLASHbibliography] = ACTIONS(5017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), + [anon_sym_BSLASHincludesvg] = ACTIONS(5017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), + [anon_sym_BSLASHimport] = ACTIONS(5017), + [anon_sym_BSLASHsubimport] = ACTIONS(5017), + [anon_sym_BSLASHinputfrom] = ACTIONS(5017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), + [anon_sym_BSLASHincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHcaption] = ACTIONS(5017), + [anon_sym_BSLASHcite] = ACTIONS(5017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCite] = ACTIONS(5017), + [anon_sym_BSLASHnocite] = ACTIONS(5017), + [anon_sym_BSLASHcitet] = ACTIONS(5017), + [anon_sym_BSLASHcitep] = ACTIONS(5017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteauthor] = ACTIONS(5017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitetitle] = ACTIONS(5017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteyear] = ACTIONS(5017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitedate] = ACTIONS(5017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteurl] = ACTIONS(5017), + [anon_sym_BSLASHfullcite] = ACTIONS(5017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), + [anon_sym_BSLASHcitealt] = ACTIONS(5017), + [anon_sym_BSLASHcitealp] = ACTIONS(5017), + [anon_sym_BSLASHcitetext] = ACTIONS(5017), + [anon_sym_BSLASHparencite] = ACTIONS(5017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHParencite] = ACTIONS(5017), + [anon_sym_BSLASHfootcite] = ACTIONS(5017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), + [anon_sym_BSLASHtextcite] = ACTIONS(5017), + [anon_sym_BSLASHTextcite] = ACTIONS(5017), + [anon_sym_BSLASHsmartcite] = ACTIONS(5017), + [anon_sym_BSLASHSmartcite] = ACTIONS(5017), + [anon_sym_BSLASHsupercite] = ACTIONS(5017), + [anon_sym_BSLASHautocite] = ACTIONS(5017), + [anon_sym_BSLASHAutocite] = ACTIONS(5017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHvolcite] = ACTIONS(5017), + [anon_sym_BSLASHVolcite] = ACTIONS(5017), + [anon_sym_BSLASHpvolcite] = ACTIONS(5017), + [anon_sym_BSLASHPvolcite] = ACTIONS(5017), + [anon_sym_BSLASHfvolcite] = ACTIONS(5017), + [anon_sym_BSLASHftvolcite] = ACTIONS(5017), + [anon_sym_BSLASHsvolcite] = ACTIONS(5017), + [anon_sym_BSLASHSvolcite] = ACTIONS(5017), + [anon_sym_BSLASHtvolcite] = ACTIONS(5017), + [anon_sym_BSLASHTvolcite] = ACTIONS(5017), + [anon_sym_BSLASHavolcite] = ACTIONS(5017), + [anon_sym_BSLASHAvolcite] = ACTIONS(5017), + [anon_sym_BSLASHnotecite] = ACTIONS(5017), + [anon_sym_BSLASHNotecite] = ACTIONS(5017), + [anon_sym_BSLASHpnotecite] = ACTIONS(5017), + [anon_sym_BSLASHPnotecite] = ACTIONS(5017), + [anon_sym_BSLASHfnotecite] = ACTIONS(5017), + [anon_sym_BSLASHlabel] = ACTIONS(5017), + [anon_sym_BSLASHref] = ACTIONS(5017), + [anon_sym_BSLASHeqref] = ACTIONS(5017), + [anon_sym_BSLASHvref] = ACTIONS(5017), + [anon_sym_BSLASHVref] = ACTIONS(5017), + [anon_sym_BSLASHautoref] = ACTIONS(5017), + [anon_sym_BSLASHpageref] = ACTIONS(5017), + [anon_sym_BSLASHcref] = ACTIONS(5017), + [anon_sym_BSLASHCref] = ACTIONS(5017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnameCref] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHlabelcref] = ACTIONS(5017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCrefrange] = ACTIONS(5017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnewlabel] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), + [anon_sym_BSLASHdef] = ACTIONS(5017), + [anon_sym_BSLASHlet] = ACTIONS(5017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), + [anon_sym_BSLASHgls] = ACTIONS(5017), + [anon_sym_BSLASHGls] = ACTIONS(5017), + [anon_sym_BSLASHGLS] = ACTIONS(5017), + [anon_sym_BSLASHglspl] = ACTIONS(5017), + [anon_sym_BSLASHGlspl] = ACTIONS(5017), + [anon_sym_BSLASHGLSpl] = ACTIONS(5017), + [anon_sym_BSLASHglsdisp] = ACTIONS(5017), + [anon_sym_BSLASHglslink] = ACTIONS(5017), + [anon_sym_BSLASHglstext] = ACTIONS(5017), + [anon_sym_BSLASHGlstext] = ACTIONS(5017), + [anon_sym_BSLASHGLStext] = ACTIONS(5017), + [anon_sym_BSLASHglsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), + [anon_sym_BSLASHglsplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSplural] = ACTIONS(5017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHglsname] = ACTIONS(5017), + [anon_sym_BSLASHGlsname] = ACTIONS(5017), + [anon_sym_BSLASHGLSname] = ACTIONS(5017), + [anon_sym_BSLASHglssymbol] = ACTIONS(5017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), + [anon_sym_BSLASHglsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), + [anon_sym_BSLASHglsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), + [anon_sym_BSLASHglsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), + [anon_sym_BSLASHglsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), + [anon_sym_BSLASHglsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), + [anon_sym_BSLASHnewacronym] = ACTIONS(5017), + [anon_sym_BSLASHacrshort] = ACTIONS(5017), + [anon_sym_BSLASHAcrshort] = ACTIONS(5017), + [anon_sym_BSLASHACRshort] = ACTIONS(5017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), + [anon_sym_BSLASHacrlong] = ACTIONS(5017), + [anon_sym_BSLASHAcrlong] = ACTIONS(5017), + [anon_sym_BSLASHACRlong] = ACTIONS(5017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), + [anon_sym_BSLASHacrfull] = ACTIONS(5017), + [anon_sym_BSLASHAcrfull] = ACTIONS(5017), + [anon_sym_BSLASHACRfull] = ACTIONS(5017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), + [anon_sym_BSLASHacs] = ACTIONS(5017), + [anon_sym_BSLASHAcs] = ACTIONS(5017), + [anon_sym_BSLASHacsp] = ACTIONS(5017), + [anon_sym_BSLASHAcsp] = ACTIONS(5017), + [anon_sym_BSLASHacl] = ACTIONS(5017), + [anon_sym_BSLASHAcl] = ACTIONS(5017), + [anon_sym_BSLASHaclp] = ACTIONS(5017), + [anon_sym_BSLASHAclp] = ACTIONS(5017), + [anon_sym_BSLASHacf] = ACTIONS(5017), + [anon_sym_BSLASHAcf] = ACTIONS(5017), + [anon_sym_BSLASHacfp] = ACTIONS(5017), + [anon_sym_BSLASHAcfp] = ACTIONS(5017), + [anon_sym_BSLASHac] = ACTIONS(5017), + [anon_sym_BSLASHAc] = ACTIONS(5017), + [anon_sym_BSLASHacp] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), + [anon_sym_BSLASHcolor] = ACTIONS(5017), + [anon_sym_BSLASHcolorbox] = ACTIONS(5017), + [anon_sym_BSLASHtextcolor] = ACTIONS(5017), + [anon_sym_BSLASHpagecolor] = ACTIONS(5017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), + [anon_sym_BSLASHtext] = ACTIONS(5017), + [anon_sym_BSLASHintertext] = ACTIONS(5017), + [anon_sym_shortintertext] = ACTIONS(5017), + }, + [1096] = { + [sym_command_name] = ACTIONS(5013), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5013), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_RBRACK] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_BSLASHpart] = ACTIONS(5013), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddpart] = ACTIONS(5013), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5011), + [anon_sym_BSLASHchapter] = ACTIONS(5013), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddchap] = ACTIONS(5013), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsection] = ACTIONS(5013), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddsec] = ACTIONS(5013), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubsection] = ACTIONS(5013), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5013), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHparagraph] = ACTIONS(5013), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5013), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5011), + [anon_sym_BSLASHitem] = ACTIONS(5013), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5011), + [anon_sym_LBRACE] = ACTIONS(5011), + [sym_word] = ACTIONS(5013), + [sym_placeholder] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5013), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_CARET] = ACTIONS(5013), + [anon_sym__] = ACTIONS(5013), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_PIPE] = ACTIONS(5013), + [anon_sym_COLON] = ACTIONS(5013), + [anon_sym_SQUOTE] = ACTIONS(5013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5011), + [anon_sym_DOLLAR] = ACTIONS(5013), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), + [anon_sym_BSLASHbegin] = ACTIONS(5013), + [anon_sym_BSLASHusepackage] = ACTIONS(5013), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), + [anon_sym_BSLASHinclude] = ACTIONS(5013), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), + [anon_sym_BSLASHinput] = ACTIONS(5013), + [anon_sym_BSLASHsubfile] = ACTIONS(5013), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), + [anon_sym_BSLASHbibliography] = ACTIONS(5013), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), + [anon_sym_BSLASHincludesvg] = ACTIONS(5013), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), + [anon_sym_BSLASHimport] = ACTIONS(5013), + [anon_sym_BSLASHsubimport] = ACTIONS(5013), + [anon_sym_BSLASHinputfrom] = ACTIONS(5013), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), + [anon_sym_BSLASHincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHcaption] = ACTIONS(5013), + [anon_sym_BSLASHcite] = ACTIONS(5013), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCite] = ACTIONS(5013), + [anon_sym_BSLASHnocite] = ACTIONS(5013), + [anon_sym_BSLASHcitet] = ACTIONS(5013), + [anon_sym_BSLASHcitep] = ACTIONS(5013), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteauthor] = ACTIONS(5013), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitetitle] = ACTIONS(5013), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteyear] = ACTIONS(5013), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitedate] = ACTIONS(5013), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteurl] = ACTIONS(5013), + [anon_sym_BSLASHfullcite] = ACTIONS(5013), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), + [anon_sym_BSLASHcitealt] = ACTIONS(5013), + [anon_sym_BSLASHcitealp] = ACTIONS(5013), + [anon_sym_BSLASHcitetext] = ACTIONS(5013), + [anon_sym_BSLASHparencite] = ACTIONS(5013), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHParencite] = ACTIONS(5013), + [anon_sym_BSLASHfootcite] = ACTIONS(5013), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), + [anon_sym_BSLASHtextcite] = ACTIONS(5013), + [anon_sym_BSLASHTextcite] = ACTIONS(5013), + [anon_sym_BSLASHsmartcite] = ACTIONS(5013), + [anon_sym_BSLASHSmartcite] = ACTIONS(5013), + [anon_sym_BSLASHsupercite] = ACTIONS(5013), + [anon_sym_BSLASHautocite] = ACTIONS(5013), + [anon_sym_BSLASHAutocite] = ACTIONS(5013), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHvolcite] = ACTIONS(5013), + [anon_sym_BSLASHVolcite] = ACTIONS(5013), + [anon_sym_BSLASHpvolcite] = ACTIONS(5013), + [anon_sym_BSLASHPvolcite] = ACTIONS(5013), + [anon_sym_BSLASHfvolcite] = ACTIONS(5013), + [anon_sym_BSLASHftvolcite] = ACTIONS(5013), + [anon_sym_BSLASHsvolcite] = ACTIONS(5013), + [anon_sym_BSLASHSvolcite] = ACTIONS(5013), + [anon_sym_BSLASHtvolcite] = ACTIONS(5013), + [anon_sym_BSLASHTvolcite] = ACTIONS(5013), + [anon_sym_BSLASHavolcite] = ACTIONS(5013), + [anon_sym_BSLASHAvolcite] = ACTIONS(5013), + [anon_sym_BSLASHnotecite] = ACTIONS(5013), + [anon_sym_BSLASHNotecite] = ACTIONS(5013), + [anon_sym_BSLASHpnotecite] = ACTIONS(5013), + [anon_sym_BSLASHPnotecite] = ACTIONS(5013), + [anon_sym_BSLASHfnotecite] = ACTIONS(5013), + [anon_sym_BSLASHlabel] = ACTIONS(5013), + [anon_sym_BSLASHref] = ACTIONS(5013), + [anon_sym_BSLASHeqref] = ACTIONS(5013), + [anon_sym_BSLASHvref] = ACTIONS(5013), + [anon_sym_BSLASHVref] = ACTIONS(5013), + [anon_sym_BSLASHautoref] = ACTIONS(5013), + [anon_sym_BSLASHpageref] = ACTIONS(5013), + [anon_sym_BSLASHcref] = ACTIONS(5013), + [anon_sym_BSLASHCref] = ACTIONS(5013), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnameCref] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHlabelcref] = ACTIONS(5013), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCrefrange] = ACTIONS(5013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnewlabel] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), + [anon_sym_BSLASHdef] = ACTIONS(5013), + [anon_sym_BSLASHlet] = ACTIONS(5013), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), + [anon_sym_BSLASHgls] = ACTIONS(5013), + [anon_sym_BSLASHGls] = ACTIONS(5013), + [anon_sym_BSLASHGLS] = ACTIONS(5013), + [anon_sym_BSLASHglspl] = ACTIONS(5013), + [anon_sym_BSLASHGlspl] = ACTIONS(5013), + [anon_sym_BSLASHGLSpl] = ACTIONS(5013), + [anon_sym_BSLASHglsdisp] = ACTIONS(5013), + [anon_sym_BSLASHglslink] = ACTIONS(5013), + [anon_sym_BSLASHglstext] = ACTIONS(5013), + [anon_sym_BSLASHGlstext] = ACTIONS(5013), + [anon_sym_BSLASHGLStext] = ACTIONS(5013), + [anon_sym_BSLASHglsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), + [anon_sym_BSLASHglsplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSplural] = ACTIONS(5013), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHglsname] = ACTIONS(5013), + [anon_sym_BSLASHGlsname] = ACTIONS(5013), + [anon_sym_BSLASHGLSname] = ACTIONS(5013), + [anon_sym_BSLASHglssymbol] = ACTIONS(5013), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), + [anon_sym_BSLASHglsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), + [anon_sym_BSLASHglsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), + [anon_sym_BSLASHglsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), + [anon_sym_BSLASHglsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), + [anon_sym_BSLASHglsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), + [anon_sym_BSLASHnewacronym] = ACTIONS(5013), + [anon_sym_BSLASHacrshort] = ACTIONS(5013), + [anon_sym_BSLASHAcrshort] = ACTIONS(5013), + [anon_sym_BSLASHACRshort] = ACTIONS(5013), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), + [anon_sym_BSLASHacrlong] = ACTIONS(5013), + [anon_sym_BSLASHAcrlong] = ACTIONS(5013), + [anon_sym_BSLASHACRlong] = ACTIONS(5013), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), + [anon_sym_BSLASHacrfull] = ACTIONS(5013), + [anon_sym_BSLASHAcrfull] = ACTIONS(5013), + [anon_sym_BSLASHACRfull] = ACTIONS(5013), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), + [anon_sym_BSLASHacs] = ACTIONS(5013), + [anon_sym_BSLASHAcs] = ACTIONS(5013), + [anon_sym_BSLASHacsp] = ACTIONS(5013), + [anon_sym_BSLASHAcsp] = ACTIONS(5013), + [anon_sym_BSLASHacl] = ACTIONS(5013), + [anon_sym_BSLASHAcl] = ACTIONS(5013), + [anon_sym_BSLASHaclp] = ACTIONS(5013), + [anon_sym_BSLASHAclp] = ACTIONS(5013), + [anon_sym_BSLASHacf] = ACTIONS(5013), + [anon_sym_BSLASHAcf] = ACTIONS(5013), + [anon_sym_BSLASHacfp] = ACTIONS(5013), + [anon_sym_BSLASHAcfp] = ACTIONS(5013), + [anon_sym_BSLASHac] = ACTIONS(5013), + [anon_sym_BSLASHAc] = ACTIONS(5013), + [anon_sym_BSLASHacp] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), + [anon_sym_BSLASHcolor] = ACTIONS(5013), + [anon_sym_BSLASHcolorbox] = ACTIONS(5013), + [anon_sym_BSLASHtextcolor] = ACTIONS(5013), + [anon_sym_BSLASHpagecolor] = ACTIONS(5013), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), + [anon_sym_BSLASHtext] = ACTIONS(5013), + [anon_sym_BSLASHintertext] = ACTIONS(5013), + [anon_sym_shortintertext] = ACTIONS(5013), + }, + [1097] = { + [sym_command_name] = ACTIONS(5003), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_BSLASHpart] = ACTIONS(5081), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddpart] = ACTIONS(5081), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), - [anon_sym_BSLASHchapter] = ACTIONS(5081), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddchap] = ACTIONS(5081), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsection] = ACTIONS(5081), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHaddsec] = ACTIONS(5081), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), - [anon_sym_BSLASHparagraph] = ACTIONS(5081), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), - [anon_sym_BSLASHitem] = ACTIONS(5081), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASHbegin] = ACTIONS(5081), - [anon_sym_BSLASHend] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), + [anon_sym_BSLASHiffalse] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_RBRACK] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(5001), + [anon_sym_BSLASHpart] = ACTIONS(5003), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddpart] = ACTIONS(5003), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), + [anon_sym_BSLASHchapter] = ACTIONS(5003), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddchap] = ACTIONS(5003), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsection] = ACTIONS(5003), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddsec] = ACTIONS(5003), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubsection] = ACTIONS(5003), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHparagraph] = ACTIONS(5003), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), + [anon_sym_BSLASHitem] = ACTIONS(5003), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5001), + [sym_word] = ACTIONS(5003), + [sym_placeholder] = ACTIONS(5001), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym__] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_BANG] = ACTIONS(5003), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_SQUOTE] = ACTIONS(5003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5001), + [anon_sym_DOLLAR] = ACTIONS(5003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), + [anon_sym_BSLASHbegin] = ACTIONS(5003), + [anon_sym_BSLASHusepackage] = ACTIONS(5003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), + [anon_sym_BSLASHinclude] = ACTIONS(5003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), + [anon_sym_BSLASHinput] = ACTIONS(5003), + [anon_sym_BSLASHsubfile] = ACTIONS(5003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), + [anon_sym_BSLASHbibliography] = ACTIONS(5003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), + [anon_sym_BSLASHincludesvg] = ACTIONS(5003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), + [anon_sym_BSLASHimport] = ACTIONS(5003), + [anon_sym_BSLASHsubimport] = ACTIONS(5003), + [anon_sym_BSLASHinputfrom] = ACTIONS(5003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), + [anon_sym_BSLASHincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHcaption] = ACTIONS(5003), + [anon_sym_BSLASHcite] = ACTIONS(5003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCite] = ACTIONS(5003), + [anon_sym_BSLASHnocite] = ACTIONS(5003), + [anon_sym_BSLASHcitet] = ACTIONS(5003), + [anon_sym_BSLASHcitep] = ACTIONS(5003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteauthor] = ACTIONS(5003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitetitle] = ACTIONS(5003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteyear] = ACTIONS(5003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitedate] = ACTIONS(5003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteurl] = ACTIONS(5003), + [anon_sym_BSLASHfullcite] = ACTIONS(5003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), + [anon_sym_BSLASHcitealt] = ACTIONS(5003), + [anon_sym_BSLASHcitealp] = ACTIONS(5003), + [anon_sym_BSLASHcitetext] = ACTIONS(5003), + [anon_sym_BSLASHparencite] = ACTIONS(5003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHParencite] = ACTIONS(5003), + [anon_sym_BSLASHfootcite] = ACTIONS(5003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), + [anon_sym_BSLASHtextcite] = ACTIONS(5003), + [anon_sym_BSLASHTextcite] = ACTIONS(5003), + [anon_sym_BSLASHsmartcite] = ACTIONS(5003), + [anon_sym_BSLASHSmartcite] = ACTIONS(5003), + [anon_sym_BSLASHsupercite] = ACTIONS(5003), + [anon_sym_BSLASHautocite] = ACTIONS(5003), + [anon_sym_BSLASHAutocite] = ACTIONS(5003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHvolcite] = ACTIONS(5003), + [anon_sym_BSLASHVolcite] = ACTIONS(5003), + [anon_sym_BSLASHpvolcite] = ACTIONS(5003), + [anon_sym_BSLASHPvolcite] = ACTIONS(5003), + [anon_sym_BSLASHfvolcite] = ACTIONS(5003), + [anon_sym_BSLASHftvolcite] = ACTIONS(5003), + [anon_sym_BSLASHsvolcite] = ACTIONS(5003), + [anon_sym_BSLASHSvolcite] = ACTIONS(5003), + [anon_sym_BSLASHtvolcite] = ACTIONS(5003), + [anon_sym_BSLASHTvolcite] = ACTIONS(5003), + [anon_sym_BSLASHavolcite] = ACTIONS(5003), + [anon_sym_BSLASHAvolcite] = ACTIONS(5003), + [anon_sym_BSLASHnotecite] = ACTIONS(5003), + [anon_sym_BSLASHNotecite] = ACTIONS(5003), + [anon_sym_BSLASHpnotecite] = ACTIONS(5003), + [anon_sym_BSLASHPnotecite] = ACTIONS(5003), + [anon_sym_BSLASHfnotecite] = ACTIONS(5003), + [anon_sym_BSLASHlabel] = ACTIONS(5003), + [anon_sym_BSLASHref] = ACTIONS(5003), + [anon_sym_BSLASHeqref] = ACTIONS(5003), + [anon_sym_BSLASHvref] = ACTIONS(5003), + [anon_sym_BSLASHVref] = ACTIONS(5003), + [anon_sym_BSLASHautoref] = ACTIONS(5003), + [anon_sym_BSLASHpageref] = ACTIONS(5003), + [anon_sym_BSLASHcref] = ACTIONS(5003), + [anon_sym_BSLASHCref] = ACTIONS(5003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnameCref] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHlabelcref] = ACTIONS(5003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCrefrange] = ACTIONS(5003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnewlabel] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), + [anon_sym_BSLASHdef] = ACTIONS(5003), + [anon_sym_BSLASHlet] = ACTIONS(5003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), + [anon_sym_BSLASHgls] = ACTIONS(5003), + [anon_sym_BSLASHGls] = ACTIONS(5003), + [anon_sym_BSLASHGLS] = ACTIONS(5003), + [anon_sym_BSLASHglspl] = ACTIONS(5003), + [anon_sym_BSLASHGlspl] = ACTIONS(5003), + [anon_sym_BSLASHGLSpl] = ACTIONS(5003), + [anon_sym_BSLASHglsdisp] = ACTIONS(5003), + [anon_sym_BSLASHglslink] = ACTIONS(5003), + [anon_sym_BSLASHglstext] = ACTIONS(5003), + [anon_sym_BSLASHGlstext] = ACTIONS(5003), + [anon_sym_BSLASHGLStext] = ACTIONS(5003), + [anon_sym_BSLASHglsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), + [anon_sym_BSLASHglsplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSplural] = ACTIONS(5003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHglsname] = ACTIONS(5003), + [anon_sym_BSLASHGlsname] = ACTIONS(5003), + [anon_sym_BSLASHGLSname] = ACTIONS(5003), + [anon_sym_BSLASHglssymbol] = ACTIONS(5003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), + [anon_sym_BSLASHglsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), + [anon_sym_BSLASHglsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), + [anon_sym_BSLASHglsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), + [anon_sym_BSLASHglsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), + [anon_sym_BSLASHglsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), + [anon_sym_BSLASHnewacronym] = ACTIONS(5003), + [anon_sym_BSLASHacrshort] = ACTIONS(5003), + [anon_sym_BSLASHAcrshort] = ACTIONS(5003), + [anon_sym_BSLASHACRshort] = ACTIONS(5003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), + [anon_sym_BSLASHacrlong] = ACTIONS(5003), + [anon_sym_BSLASHAcrlong] = ACTIONS(5003), + [anon_sym_BSLASHACRlong] = ACTIONS(5003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), + [anon_sym_BSLASHacrfull] = ACTIONS(5003), + [anon_sym_BSLASHAcrfull] = ACTIONS(5003), + [anon_sym_BSLASHACRfull] = ACTIONS(5003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), + [anon_sym_BSLASHacs] = ACTIONS(5003), + [anon_sym_BSLASHAcs] = ACTIONS(5003), + [anon_sym_BSLASHacsp] = ACTIONS(5003), + [anon_sym_BSLASHAcsp] = ACTIONS(5003), + [anon_sym_BSLASHacl] = ACTIONS(5003), + [anon_sym_BSLASHAcl] = ACTIONS(5003), + [anon_sym_BSLASHaclp] = ACTIONS(5003), + [anon_sym_BSLASHAclp] = ACTIONS(5003), + [anon_sym_BSLASHacf] = ACTIONS(5003), + [anon_sym_BSLASHAcf] = ACTIONS(5003), + [anon_sym_BSLASHacfp] = ACTIONS(5003), + [anon_sym_BSLASHAcfp] = ACTIONS(5003), + [anon_sym_BSLASHac] = ACTIONS(5003), + [anon_sym_BSLASHAc] = ACTIONS(5003), + [anon_sym_BSLASHacp] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), + [anon_sym_BSLASHcolor] = ACTIONS(5003), + [anon_sym_BSLASHcolorbox] = ACTIONS(5003), + [anon_sym_BSLASHtextcolor] = ACTIONS(5003), + [anon_sym_BSLASHpagecolor] = ACTIONS(5003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), + [anon_sym_BSLASHtext] = ACTIONS(5003), + [anon_sym_BSLASHintertext] = ACTIONS(5003), + [anon_sym_shortintertext] = ACTIONS(5003), }, - [1199] = { - [sym_command_name] = ACTIONS(5089), + [1098] = { + [sym_command_name] = ACTIONS(4999), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_BSLASHpart] = ACTIONS(5089), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddpart] = ACTIONS(5089), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), - [anon_sym_BSLASHchapter] = ACTIONS(5089), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddchap] = ACTIONS(5089), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsection] = ACTIONS(5089), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHaddsec] = ACTIONS(5089), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), - [anon_sym_BSLASHparagraph] = ACTIONS(5089), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), - [anon_sym_BSLASHitem] = ACTIONS(5089), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASHbegin] = ACTIONS(5089), - [anon_sym_BSLASHend] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHiffalse] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_RBRACK] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4997), + [anon_sym_BSLASHpart] = ACTIONS(4999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddpart] = ACTIONS(4999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), + [anon_sym_BSLASHchapter] = ACTIONS(4999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddchap] = ACTIONS(4999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsection] = ACTIONS(4999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddsec] = ACTIONS(4999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubsection] = ACTIONS(4999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHparagraph] = ACTIONS(4999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), + [anon_sym_BSLASHitem] = ACTIONS(4999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4997), + [sym_word] = ACTIONS(4999), + [sym_placeholder] = ACTIONS(4997), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym__] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_BANG] = ACTIONS(4999), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_SQUOTE] = ACTIONS(4999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4997), + [anon_sym_DOLLAR] = ACTIONS(4999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), + [anon_sym_BSLASHbegin] = ACTIONS(4999), + [anon_sym_BSLASHusepackage] = ACTIONS(4999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), + [anon_sym_BSLASHinclude] = ACTIONS(4999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), + [anon_sym_BSLASHinput] = ACTIONS(4999), + [anon_sym_BSLASHsubfile] = ACTIONS(4999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), + [anon_sym_BSLASHbibliography] = ACTIONS(4999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), + [anon_sym_BSLASHincludesvg] = ACTIONS(4999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), + [anon_sym_BSLASHimport] = ACTIONS(4999), + [anon_sym_BSLASHsubimport] = ACTIONS(4999), + [anon_sym_BSLASHinputfrom] = ACTIONS(4999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), + [anon_sym_BSLASHincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHcaption] = ACTIONS(4999), + [anon_sym_BSLASHcite] = ACTIONS(4999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCite] = ACTIONS(4999), + [anon_sym_BSLASHnocite] = ACTIONS(4999), + [anon_sym_BSLASHcitet] = ACTIONS(4999), + [anon_sym_BSLASHcitep] = ACTIONS(4999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteauthor] = ACTIONS(4999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitetitle] = ACTIONS(4999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteyear] = ACTIONS(4999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitedate] = ACTIONS(4999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteurl] = ACTIONS(4999), + [anon_sym_BSLASHfullcite] = ACTIONS(4999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), + [anon_sym_BSLASHcitealt] = ACTIONS(4999), + [anon_sym_BSLASHcitealp] = ACTIONS(4999), + [anon_sym_BSLASHcitetext] = ACTIONS(4999), + [anon_sym_BSLASHparencite] = ACTIONS(4999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHParencite] = ACTIONS(4999), + [anon_sym_BSLASHfootcite] = ACTIONS(4999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), + [anon_sym_BSLASHtextcite] = ACTIONS(4999), + [anon_sym_BSLASHTextcite] = ACTIONS(4999), + [anon_sym_BSLASHsmartcite] = ACTIONS(4999), + [anon_sym_BSLASHSmartcite] = ACTIONS(4999), + [anon_sym_BSLASHsupercite] = ACTIONS(4999), + [anon_sym_BSLASHautocite] = ACTIONS(4999), + [anon_sym_BSLASHAutocite] = ACTIONS(4999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHvolcite] = ACTIONS(4999), + [anon_sym_BSLASHVolcite] = ACTIONS(4999), + [anon_sym_BSLASHpvolcite] = ACTIONS(4999), + [anon_sym_BSLASHPvolcite] = ACTIONS(4999), + [anon_sym_BSLASHfvolcite] = ACTIONS(4999), + [anon_sym_BSLASHftvolcite] = ACTIONS(4999), + [anon_sym_BSLASHsvolcite] = ACTIONS(4999), + [anon_sym_BSLASHSvolcite] = ACTIONS(4999), + [anon_sym_BSLASHtvolcite] = ACTIONS(4999), + [anon_sym_BSLASHTvolcite] = ACTIONS(4999), + [anon_sym_BSLASHavolcite] = ACTIONS(4999), + [anon_sym_BSLASHAvolcite] = ACTIONS(4999), + [anon_sym_BSLASHnotecite] = ACTIONS(4999), + [anon_sym_BSLASHNotecite] = ACTIONS(4999), + [anon_sym_BSLASHpnotecite] = ACTIONS(4999), + [anon_sym_BSLASHPnotecite] = ACTIONS(4999), + [anon_sym_BSLASHfnotecite] = ACTIONS(4999), + [anon_sym_BSLASHlabel] = ACTIONS(4999), + [anon_sym_BSLASHref] = ACTIONS(4999), + [anon_sym_BSLASHeqref] = ACTIONS(4999), + [anon_sym_BSLASHvref] = ACTIONS(4999), + [anon_sym_BSLASHVref] = ACTIONS(4999), + [anon_sym_BSLASHautoref] = ACTIONS(4999), + [anon_sym_BSLASHpageref] = ACTIONS(4999), + [anon_sym_BSLASHcref] = ACTIONS(4999), + [anon_sym_BSLASHCref] = ACTIONS(4999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnameCref] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHlabelcref] = ACTIONS(4999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCrefrange] = ACTIONS(4999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnewlabel] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), + [anon_sym_BSLASHdef] = ACTIONS(4999), + [anon_sym_BSLASHlet] = ACTIONS(4999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), + [anon_sym_BSLASHgls] = ACTIONS(4999), + [anon_sym_BSLASHGls] = ACTIONS(4999), + [anon_sym_BSLASHGLS] = ACTIONS(4999), + [anon_sym_BSLASHglspl] = ACTIONS(4999), + [anon_sym_BSLASHGlspl] = ACTIONS(4999), + [anon_sym_BSLASHGLSpl] = ACTIONS(4999), + [anon_sym_BSLASHglsdisp] = ACTIONS(4999), + [anon_sym_BSLASHglslink] = ACTIONS(4999), + [anon_sym_BSLASHglstext] = ACTIONS(4999), + [anon_sym_BSLASHGlstext] = ACTIONS(4999), + [anon_sym_BSLASHGLStext] = ACTIONS(4999), + [anon_sym_BSLASHglsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), + [anon_sym_BSLASHglsplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSplural] = ACTIONS(4999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHglsname] = ACTIONS(4999), + [anon_sym_BSLASHGlsname] = ACTIONS(4999), + [anon_sym_BSLASHGLSname] = ACTIONS(4999), + [anon_sym_BSLASHglssymbol] = ACTIONS(4999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), + [anon_sym_BSLASHglsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), + [anon_sym_BSLASHglsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), + [anon_sym_BSLASHglsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), + [anon_sym_BSLASHglsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), + [anon_sym_BSLASHglsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), + [anon_sym_BSLASHnewacronym] = ACTIONS(4999), + [anon_sym_BSLASHacrshort] = ACTIONS(4999), + [anon_sym_BSLASHAcrshort] = ACTIONS(4999), + [anon_sym_BSLASHACRshort] = ACTIONS(4999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), + [anon_sym_BSLASHacrlong] = ACTIONS(4999), + [anon_sym_BSLASHAcrlong] = ACTIONS(4999), + [anon_sym_BSLASHACRlong] = ACTIONS(4999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), + [anon_sym_BSLASHacrfull] = ACTIONS(4999), + [anon_sym_BSLASHAcrfull] = ACTIONS(4999), + [anon_sym_BSLASHACRfull] = ACTIONS(4999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), + [anon_sym_BSLASHacs] = ACTIONS(4999), + [anon_sym_BSLASHAcs] = ACTIONS(4999), + [anon_sym_BSLASHacsp] = ACTIONS(4999), + [anon_sym_BSLASHAcsp] = ACTIONS(4999), + [anon_sym_BSLASHacl] = ACTIONS(4999), + [anon_sym_BSLASHAcl] = ACTIONS(4999), + [anon_sym_BSLASHaclp] = ACTIONS(4999), + [anon_sym_BSLASHAclp] = ACTIONS(4999), + [anon_sym_BSLASHacf] = ACTIONS(4999), + [anon_sym_BSLASHAcf] = ACTIONS(4999), + [anon_sym_BSLASHacfp] = ACTIONS(4999), + [anon_sym_BSLASHAcfp] = ACTIONS(4999), + [anon_sym_BSLASHac] = ACTIONS(4999), + [anon_sym_BSLASHAc] = ACTIONS(4999), + [anon_sym_BSLASHacp] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), + [anon_sym_BSLASHcolor] = ACTIONS(4999), + [anon_sym_BSLASHcolorbox] = ACTIONS(4999), + [anon_sym_BSLASHtextcolor] = ACTIONS(4999), + [anon_sym_BSLASHpagecolor] = ACTIONS(4999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), + [anon_sym_BSLASHtext] = ACTIONS(4999), + [anon_sym_BSLASHintertext] = ACTIONS(4999), + [anon_sym_shortintertext] = ACTIONS(4999), }, - [1200] = { - [sym_command_name] = ACTIONS(5093), + [1099] = { + [sym_command_name] = ACTIONS(4995), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_BSLASHpart] = ACTIONS(5093), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddpart] = ACTIONS(5093), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), - [anon_sym_BSLASHchapter] = ACTIONS(5093), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddchap] = ACTIONS(5093), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsection] = ACTIONS(5093), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHaddsec] = ACTIONS(5093), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), - [anon_sym_BSLASHparagraph] = ACTIONS(5093), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), - [anon_sym_BSLASHitem] = ACTIONS(5093), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASHbegin] = ACTIONS(5093), - [anon_sym_BSLASHend] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHiffalse] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4993), + [anon_sym_RBRACK] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_BSLASHpart] = ACTIONS(4995), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), + [anon_sym_BSLASHaddpart] = ACTIONS(4995), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), + [anon_sym_BSLASHchapter] = ACTIONS(4995), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), + [anon_sym_BSLASHaddchap] = ACTIONS(4995), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsection] = ACTIONS(4995), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), + [anon_sym_BSLASHaddsec] = ACTIONS(4995), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsubsection] = ACTIONS(4995), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), + [anon_sym_BSLASHparagraph] = ACTIONS(4995), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), + [anon_sym_BSLASHitem] = ACTIONS(4995), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4993), + [sym_word] = ACTIONS(4995), + [sym_placeholder] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym__] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_BANG] = ACTIONS(4995), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_SQUOTE] = ACTIONS(4995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4993), + [anon_sym_DOLLAR] = ACTIONS(4995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), + [anon_sym_BSLASHbegin] = ACTIONS(4995), + [anon_sym_BSLASHusepackage] = ACTIONS(4995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), + [anon_sym_BSLASHinclude] = ACTIONS(4995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), + [anon_sym_BSLASHinput] = ACTIONS(4995), + [anon_sym_BSLASHsubfile] = ACTIONS(4995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), + [anon_sym_BSLASHbibliography] = ACTIONS(4995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), + [anon_sym_BSLASHincludesvg] = ACTIONS(4995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), + [anon_sym_BSLASHimport] = ACTIONS(4995), + [anon_sym_BSLASHsubimport] = ACTIONS(4995), + [anon_sym_BSLASHinputfrom] = ACTIONS(4995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), + [anon_sym_BSLASHincludefrom] = ACTIONS(4995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), + [anon_sym_BSLASHcaption] = ACTIONS(4995), + [anon_sym_BSLASHcite] = ACTIONS(4995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCite] = ACTIONS(4995), + [anon_sym_BSLASHnocite] = ACTIONS(4995), + [anon_sym_BSLASHcitet] = ACTIONS(4995), + [anon_sym_BSLASHcitep] = ACTIONS(4995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteauthor] = ACTIONS(4995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitetitle] = ACTIONS(4995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteyear] = ACTIONS(4995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitedate] = ACTIONS(4995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteurl] = ACTIONS(4995), + [anon_sym_BSLASHfullcite] = ACTIONS(4995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), + [anon_sym_BSLASHcitealt] = ACTIONS(4995), + [anon_sym_BSLASHcitealp] = ACTIONS(4995), + [anon_sym_BSLASHcitetext] = ACTIONS(4995), + [anon_sym_BSLASHparencite] = ACTIONS(4995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHParencite] = ACTIONS(4995), + [anon_sym_BSLASHfootcite] = ACTIONS(4995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), + [anon_sym_BSLASHtextcite] = ACTIONS(4995), + [anon_sym_BSLASHTextcite] = ACTIONS(4995), + [anon_sym_BSLASHsmartcite] = ACTIONS(4995), + [anon_sym_BSLASHSmartcite] = ACTIONS(4995), + [anon_sym_BSLASHsupercite] = ACTIONS(4995), + [anon_sym_BSLASHautocite] = ACTIONS(4995), + [anon_sym_BSLASHAutocite] = ACTIONS(4995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHvolcite] = ACTIONS(4995), + [anon_sym_BSLASHVolcite] = ACTIONS(4995), + [anon_sym_BSLASHpvolcite] = ACTIONS(4995), + [anon_sym_BSLASHPvolcite] = ACTIONS(4995), + [anon_sym_BSLASHfvolcite] = ACTIONS(4995), + [anon_sym_BSLASHftvolcite] = ACTIONS(4995), + [anon_sym_BSLASHsvolcite] = ACTIONS(4995), + [anon_sym_BSLASHSvolcite] = ACTIONS(4995), + [anon_sym_BSLASHtvolcite] = ACTIONS(4995), + [anon_sym_BSLASHTvolcite] = ACTIONS(4995), + [anon_sym_BSLASHavolcite] = ACTIONS(4995), + [anon_sym_BSLASHAvolcite] = ACTIONS(4995), + [anon_sym_BSLASHnotecite] = ACTIONS(4995), + [anon_sym_BSLASHNotecite] = ACTIONS(4995), + [anon_sym_BSLASHpnotecite] = ACTIONS(4995), + [anon_sym_BSLASHPnotecite] = ACTIONS(4995), + [anon_sym_BSLASHfnotecite] = ACTIONS(4995), + [anon_sym_BSLASHlabel] = ACTIONS(4995), + [anon_sym_BSLASHref] = ACTIONS(4995), + [anon_sym_BSLASHeqref] = ACTIONS(4995), + [anon_sym_BSLASHvref] = ACTIONS(4995), + [anon_sym_BSLASHVref] = ACTIONS(4995), + [anon_sym_BSLASHautoref] = ACTIONS(4995), + [anon_sym_BSLASHpageref] = ACTIONS(4995), + [anon_sym_BSLASHcref] = ACTIONS(4995), + [anon_sym_BSLASHCref] = ACTIONS(4995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), + [anon_sym_BSLASHnamecref] = ACTIONS(4995), + [anon_sym_BSLASHnameCref] = ACTIONS(4995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), + [anon_sym_BSLASHlabelcref] = ACTIONS(4995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), + [anon_sym_BSLASHcrefrange] = ACTIONS(4995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCrefrange] = ACTIONS(4995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), + [anon_sym_BSLASHnewlabel] = ACTIONS(4995), + [anon_sym_BSLASHnewcommand] = ACTIONS(4995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), + [anon_sym_BSLASHdef] = ACTIONS(4995), + [anon_sym_BSLASHlet] = ACTIONS(4995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), + [anon_sym_BSLASHgls] = ACTIONS(4995), + [anon_sym_BSLASHGls] = ACTIONS(4995), + [anon_sym_BSLASHGLS] = ACTIONS(4995), + [anon_sym_BSLASHglspl] = ACTIONS(4995), + [anon_sym_BSLASHGlspl] = ACTIONS(4995), + [anon_sym_BSLASHGLSpl] = ACTIONS(4995), + [anon_sym_BSLASHglsdisp] = ACTIONS(4995), + [anon_sym_BSLASHglslink] = ACTIONS(4995), + [anon_sym_BSLASHglstext] = ACTIONS(4995), + [anon_sym_BSLASHGlstext] = ACTIONS(4995), + [anon_sym_BSLASHGLStext] = ACTIONS(4995), + [anon_sym_BSLASHglsfirst] = ACTIONS(4995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), + [anon_sym_BSLASHglsplural] = ACTIONS(4995), + [anon_sym_BSLASHGlsplural] = ACTIONS(4995), + [anon_sym_BSLASHGLSplural] = ACTIONS(4995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHglsname] = ACTIONS(4995), + [anon_sym_BSLASHGlsname] = ACTIONS(4995), + [anon_sym_BSLASHGLSname] = ACTIONS(4995), + [anon_sym_BSLASHglssymbol] = ACTIONS(4995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), + [anon_sym_BSLASHglsdesc] = ACTIONS(4995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), + [anon_sym_BSLASHglsuseri] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), + [anon_sym_BSLASHglsuserii] = ACTIONS(4995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), + [anon_sym_BSLASHglsuserv] = ACTIONS(4995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), + [anon_sym_BSLASHglsuservi] = ACTIONS(4995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), + [anon_sym_BSLASHnewacronym] = ACTIONS(4995), + [anon_sym_BSLASHacrshort] = ACTIONS(4995), + [anon_sym_BSLASHAcrshort] = ACTIONS(4995), + [anon_sym_BSLASHACRshort] = ACTIONS(4995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), + [anon_sym_BSLASHacrlong] = ACTIONS(4995), + [anon_sym_BSLASHAcrlong] = ACTIONS(4995), + [anon_sym_BSLASHACRlong] = ACTIONS(4995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), + [anon_sym_BSLASHacrfull] = ACTIONS(4995), + [anon_sym_BSLASHAcrfull] = ACTIONS(4995), + [anon_sym_BSLASHACRfull] = ACTIONS(4995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), + [anon_sym_BSLASHacs] = ACTIONS(4995), + [anon_sym_BSLASHAcs] = ACTIONS(4995), + [anon_sym_BSLASHacsp] = ACTIONS(4995), + [anon_sym_BSLASHAcsp] = ACTIONS(4995), + [anon_sym_BSLASHacl] = ACTIONS(4995), + [anon_sym_BSLASHAcl] = ACTIONS(4995), + [anon_sym_BSLASHaclp] = ACTIONS(4995), + [anon_sym_BSLASHAclp] = ACTIONS(4995), + [anon_sym_BSLASHacf] = ACTIONS(4995), + [anon_sym_BSLASHAcf] = ACTIONS(4995), + [anon_sym_BSLASHacfp] = ACTIONS(4995), + [anon_sym_BSLASHAcfp] = ACTIONS(4995), + [anon_sym_BSLASHac] = ACTIONS(4995), + [anon_sym_BSLASHAc] = ACTIONS(4995), + [anon_sym_BSLASHacp] = ACTIONS(4995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), + [anon_sym_BSLASHcolor] = ACTIONS(4995), + [anon_sym_BSLASHcolorbox] = ACTIONS(4995), + [anon_sym_BSLASHtextcolor] = ACTIONS(4995), + [anon_sym_BSLASHpagecolor] = ACTIONS(4995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), + [anon_sym_BSLASHtext] = ACTIONS(4995), + [anon_sym_BSLASHintertext] = ACTIONS(4995), + [anon_sym_shortintertext] = ACTIONS(4995), }, - [1201] = { - [sym_command_name] = ACTIONS(5101), + [1100] = { + [sym_command_name] = ACTIONS(4991), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_BSLASHpart] = ACTIONS(5101), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddpart] = ACTIONS(5101), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), - [anon_sym_BSLASHchapter] = ACTIONS(5101), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddchap] = ACTIONS(5101), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsection] = ACTIONS(5101), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHaddsec] = ACTIONS(5101), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), - [anon_sym_BSLASHparagraph] = ACTIONS(5101), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), - [anon_sym_BSLASHitem] = ACTIONS(5101), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASHbegin] = ACTIONS(5101), - [anon_sym_BSLASHend] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), - }, - [1202] = { - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_BSLASHpart] = ACTIONS(5121), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddpart] = ACTIONS(5121), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5119), - [anon_sym_BSLASHchapter] = ACTIONS(5121), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddchap] = ACTIONS(5121), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsection] = ACTIONS(5121), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHaddsec] = ACTIONS(5121), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5121), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5119), - [anon_sym_BSLASHparagraph] = ACTIONS(5121), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5121), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5119), - [anon_sym_BSLASHitem] = ACTIONS(5121), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASHbegin] = ACTIONS(5121), - [anon_sym_BSLASHend] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), - }, - [1203] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_BSLASHpart] = ACTIONS(5175), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddpart] = ACTIONS(5175), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5173), - [anon_sym_BSLASHchapter] = ACTIONS(5175), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddchap] = ACTIONS(5175), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsection] = ACTIONS(5175), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHaddsec] = ACTIONS(5175), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5175), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5173), - [anon_sym_BSLASHparagraph] = ACTIONS(5175), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5175), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5173), - [anon_sym_BSLASHitem] = ACTIONS(5175), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASHbegin] = ACTIONS(5175), - [anon_sym_BSLASHend] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), - }, - [1204] = { - [sym_command_name] = ACTIONS(5125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_BSLASHpart] = ACTIONS(5125), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddpart] = ACTIONS(5125), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5123), - [anon_sym_BSLASHchapter] = ACTIONS(5125), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddchap] = ACTIONS(5125), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsection] = ACTIONS(5125), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHaddsec] = ACTIONS(5125), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5125), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5123), - [anon_sym_BSLASHparagraph] = ACTIONS(5125), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5125), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5123), - [anon_sym_BSLASHitem] = ACTIONS(5125), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASHbegin] = ACTIONS(5125), - [anon_sym_BSLASHend] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), + [anon_sym_BSLASHiffalse] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4989), + [anon_sym_RPAREN] = ACTIONS(4989), + [anon_sym_LBRACK] = ACTIONS(4989), + [anon_sym_RBRACK] = ACTIONS(4989), + [anon_sym_COMMA] = ACTIONS(4989), + [anon_sym_EQ] = ACTIONS(4989), + [anon_sym_BSLASHpart] = ACTIONS(4991), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddpart] = ACTIONS(4991), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), + [anon_sym_BSLASHchapter] = ACTIONS(4991), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddchap] = ACTIONS(4991), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsection] = ACTIONS(4991), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddsec] = ACTIONS(4991), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubsection] = ACTIONS(4991), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHparagraph] = ACTIONS(4991), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), + [anon_sym_BSLASHitem] = ACTIONS(4991), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(4989), + [sym_word] = ACTIONS(4991), + [sym_placeholder] = ACTIONS(4989), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym__] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_BANG] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_SQUOTE] = ACTIONS(4991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4989), + [anon_sym_DOLLAR] = ACTIONS(4991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), + [anon_sym_BSLASHbegin] = ACTIONS(4991), + [anon_sym_BSLASHusepackage] = ACTIONS(4991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), + [anon_sym_BSLASHinclude] = ACTIONS(4991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), + [anon_sym_BSLASHinput] = ACTIONS(4991), + [anon_sym_BSLASHsubfile] = ACTIONS(4991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), + [anon_sym_BSLASHbibliography] = ACTIONS(4991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), + [anon_sym_BSLASHincludesvg] = ACTIONS(4991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), + [anon_sym_BSLASHimport] = ACTIONS(4991), + [anon_sym_BSLASHsubimport] = ACTIONS(4991), + [anon_sym_BSLASHinputfrom] = ACTIONS(4991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), + [anon_sym_BSLASHincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHcaption] = ACTIONS(4991), + [anon_sym_BSLASHcite] = ACTIONS(4991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCite] = ACTIONS(4991), + [anon_sym_BSLASHnocite] = ACTIONS(4991), + [anon_sym_BSLASHcitet] = ACTIONS(4991), + [anon_sym_BSLASHcitep] = ACTIONS(4991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteauthor] = ACTIONS(4991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitetitle] = ACTIONS(4991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteyear] = ACTIONS(4991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitedate] = ACTIONS(4991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteurl] = ACTIONS(4991), + [anon_sym_BSLASHfullcite] = ACTIONS(4991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), + [anon_sym_BSLASHcitealt] = ACTIONS(4991), + [anon_sym_BSLASHcitealp] = ACTIONS(4991), + [anon_sym_BSLASHcitetext] = ACTIONS(4991), + [anon_sym_BSLASHparencite] = ACTIONS(4991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHParencite] = ACTIONS(4991), + [anon_sym_BSLASHfootcite] = ACTIONS(4991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), + [anon_sym_BSLASHtextcite] = ACTIONS(4991), + [anon_sym_BSLASHTextcite] = ACTIONS(4991), + [anon_sym_BSLASHsmartcite] = ACTIONS(4991), + [anon_sym_BSLASHSmartcite] = ACTIONS(4991), + [anon_sym_BSLASHsupercite] = ACTIONS(4991), + [anon_sym_BSLASHautocite] = ACTIONS(4991), + [anon_sym_BSLASHAutocite] = ACTIONS(4991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHvolcite] = ACTIONS(4991), + [anon_sym_BSLASHVolcite] = ACTIONS(4991), + [anon_sym_BSLASHpvolcite] = ACTIONS(4991), + [anon_sym_BSLASHPvolcite] = ACTIONS(4991), + [anon_sym_BSLASHfvolcite] = ACTIONS(4991), + [anon_sym_BSLASHftvolcite] = ACTIONS(4991), + [anon_sym_BSLASHsvolcite] = ACTIONS(4991), + [anon_sym_BSLASHSvolcite] = ACTIONS(4991), + [anon_sym_BSLASHtvolcite] = ACTIONS(4991), + [anon_sym_BSLASHTvolcite] = ACTIONS(4991), + [anon_sym_BSLASHavolcite] = ACTIONS(4991), + [anon_sym_BSLASHAvolcite] = ACTIONS(4991), + [anon_sym_BSLASHnotecite] = ACTIONS(4991), + [anon_sym_BSLASHNotecite] = ACTIONS(4991), + [anon_sym_BSLASHpnotecite] = ACTIONS(4991), + [anon_sym_BSLASHPnotecite] = ACTIONS(4991), + [anon_sym_BSLASHfnotecite] = ACTIONS(4991), + [anon_sym_BSLASHlabel] = ACTIONS(4991), + [anon_sym_BSLASHref] = ACTIONS(4991), + [anon_sym_BSLASHeqref] = ACTIONS(4991), + [anon_sym_BSLASHvref] = ACTIONS(4991), + [anon_sym_BSLASHVref] = ACTIONS(4991), + [anon_sym_BSLASHautoref] = ACTIONS(4991), + [anon_sym_BSLASHpageref] = ACTIONS(4991), + [anon_sym_BSLASHcref] = ACTIONS(4991), + [anon_sym_BSLASHCref] = ACTIONS(4991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnameCref] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHlabelcref] = ACTIONS(4991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCrefrange] = ACTIONS(4991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnewlabel] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), + [anon_sym_BSLASHdef] = ACTIONS(4991), + [anon_sym_BSLASHlet] = ACTIONS(4991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), + [anon_sym_BSLASHgls] = ACTIONS(4991), + [anon_sym_BSLASHGls] = ACTIONS(4991), + [anon_sym_BSLASHGLS] = ACTIONS(4991), + [anon_sym_BSLASHglspl] = ACTIONS(4991), + [anon_sym_BSLASHGlspl] = ACTIONS(4991), + [anon_sym_BSLASHGLSpl] = ACTIONS(4991), + [anon_sym_BSLASHglsdisp] = ACTIONS(4991), + [anon_sym_BSLASHglslink] = ACTIONS(4991), + [anon_sym_BSLASHglstext] = ACTIONS(4991), + [anon_sym_BSLASHGlstext] = ACTIONS(4991), + [anon_sym_BSLASHGLStext] = ACTIONS(4991), + [anon_sym_BSLASHglsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), + [anon_sym_BSLASHglsplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSplural] = ACTIONS(4991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHglsname] = ACTIONS(4991), + [anon_sym_BSLASHGlsname] = ACTIONS(4991), + [anon_sym_BSLASHGLSname] = ACTIONS(4991), + [anon_sym_BSLASHglssymbol] = ACTIONS(4991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), + [anon_sym_BSLASHglsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), + [anon_sym_BSLASHglsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), + [anon_sym_BSLASHglsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), + [anon_sym_BSLASHglsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), + [anon_sym_BSLASHglsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), + [anon_sym_BSLASHnewacronym] = ACTIONS(4991), + [anon_sym_BSLASHacrshort] = ACTIONS(4991), + [anon_sym_BSLASHAcrshort] = ACTIONS(4991), + [anon_sym_BSLASHACRshort] = ACTIONS(4991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), + [anon_sym_BSLASHacrlong] = ACTIONS(4991), + [anon_sym_BSLASHAcrlong] = ACTIONS(4991), + [anon_sym_BSLASHACRlong] = ACTIONS(4991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), + [anon_sym_BSLASHacrfull] = ACTIONS(4991), + [anon_sym_BSLASHAcrfull] = ACTIONS(4991), + [anon_sym_BSLASHACRfull] = ACTIONS(4991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), + [anon_sym_BSLASHacs] = ACTIONS(4991), + [anon_sym_BSLASHAcs] = ACTIONS(4991), + [anon_sym_BSLASHacsp] = ACTIONS(4991), + [anon_sym_BSLASHAcsp] = ACTIONS(4991), + [anon_sym_BSLASHacl] = ACTIONS(4991), + [anon_sym_BSLASHAcl] = ACTIONS(4991), + [anon_sym_BSLASHaclp] = ACTIONS(4991), + [anon_sym_BSLASHAclp] = ACTIONS(4991), + [anon_sym_BSLASHacf] = ACTIONS(4991), + [anon_sym_BSLASHAcf] = ACTIONS(4991), + [anon_sym_BSLASHacfp] = ACTIONS(4991), + [anon_sym_BSLASHAcfp] = ACTIONS(4991), + [anon_sym_BSLASHac] = ACTIONS(4991), + [anon_sym_BSLASHAc] = ACTIONS(4991), + [anon_sym_BSLASHacp] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), + [anon_sym_BSLASHcolor] = ACTIONS(4991), + [anon_sym_BSLASHcolorbox] = ACTIONS(4991), + [anon_sym_BSLASHtextcolor] = ACTIONS(4991), + [anon_sym_BSLASHpagecolor] = ACTIONS(4991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHtext] = ACTIONS(4991), + [anon_sym_BSLASHintertext] = ACTIONS(4991), + [anon_sym_shortintertext] = ACTIONS(4991), }, - [1205] = { - [sym_command_name] = ACTIONS(5135), + [1101] = { + [sym_command_name] = ACTIONS(4987), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_BSLASHpart] = ACTIONS(5135), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddpart] = ACTIONS(5135), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5133), - [anon_sym_BSLASHchapter] = ACTIONS(5135), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddchap] = ACTIONS(5135), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsection] = ACTIONS(5135), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHaddsec] = ACTIONS(5135), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5135), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5133), - [anon_sym_BSLASHparagraph] = ACTIONS(5135), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5135), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5133), - [anon_sym_BSLASHitem] = ACTIONS(5135), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASHbegin] = ACTIONS(5135), - [anon_sym_BSLASHend] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [anon_sym_BSLASHiffalse] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4985), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(4985), + [anon_sym_RBRACK] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_BSLASHpart] = ACTIONS(4987), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddpart] = ACTIONS(4987), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), + [anon_sym_BSLASHchapter] = ACTIONS(4987), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddchap] = ACTIONS(4987), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsection] = ACTIONS(4987), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddsec] = ACTIONS(4987), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubsection] = ACTIONS(4987), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHparagraph] = ACTIONS(4987), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), + [anon_sym_BSLASHitem] = ACTIONS(4987), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4985), + [sym_word] = ACTIONS(4987), + [sym_placeholder] = ACTIONS(4985), + [anon_sym_PLUS] = ACTIONS(4987), + [anon_sym_DASH] = ACTIONS(4987), + [anon_sym_STAR] = ACTIONS(4987), + [anon_sym_SLASH] = ACTIONS(4987), + [anon_sym_CARET] = ACTIONS(4987), + [anon_sym__] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym_GT] = ACTIONS(4987), + [anon_sym_BANG] = ACTIONS(4987), + [anon_sym_PIPE] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_SQUOTE] = ACTIONS(4987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(4987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), + [anon_sym_BSLASHbegin] = ACTIONS(4987), + [anon_sym_BSLASHusepackage] = ACTIONS(4987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), + [anon_sym_BSLASHinclude] = ACTIONS(4987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), + [anon_sym_BSLASHinput] = ACTIONS(4987), + [anon_sym_BSLASHsubfile] = ACTIONS(4987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), + [anon_sym_BSLASHbibliography] = ACTIONS(4987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), + [anon_sym_BSLASHincludesvg] = ACTIONS(4987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), + [anon_sym_BSLASHimport] = ACTIONS(4987), + [anon_sym_BSLASHsubimport] = ACTIONS(4987), + [anon_sym_BSLASHinputfrom] = ACTIONS(4987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), + [anon_sym_BSLASHincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHcaption] = ACTIONS(4987), + [anon_sym_BSLASHcite] = ACTIONS(4987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCite] = ACTIONS(4987), + [anon_sym_BSLASHnocite] = ACTIONS(4987), + [anon_sym_BSLASHcitet] = ACTIONS(4987), + [anon_sym_BSLASHcitep] = ACTIONS(4987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteauthor] = ACTIONS(4987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitetitle] = ACTIONS(4987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteyear] = ACTIONS(4987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitedate] = ACTIONS(4987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteurl] = ACTIONS(4987), + [anon_sym_BSLASHfullcite] = ACTIONS(4987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), + [anon_sym_BSLASHcitealt] = ACTIONS(4987), + [anon_sym_BSLASHcitealp] = ACTIONS(4987), + [anon_sym_BSLASHcitetext] = ACTIONS(4987), + [anon_sym_BSLASHparencite] = ACTIONS(4987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHParencite] = ACTIONS(4987), + [anon_sym_BSLASHfootcite] = ACTIONS(4987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), + [anon_sym_BSLASHtextcite] = ACTIONS(4987), + [anon_sym_BSLASHTextcite] = ACTIONS(4987), + [anon_sym_BSLASHsmartcite] = ACTIONS(4987), + [anon_sym_BSLASHSmartcite] = ACTIONS(4987), + [anon_sym_BSLASHsupercite] = ACTIONS(4987), + [anon_sym_BSLASHautocite] = ACTIONS(4987), + [anon_sym_BSLASHAutocite] = ACTIONS(4987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHvolcite] = ACTIONS(4987), + [anon_sym_BSLASHVolcite] = ACTIONS(4987), + [anon_sym_BSLASHpvolcite] = ACTIONS(4987), + [anon_sym_BSLASHPvolcite] = ACTIONS(4987), + [anon_sym_BSLASHfvolcite] = ACTIONS(4987), + [anon_sym_BSLASHftvolcite] = ACTIONS(4987), + [anon_sym_BSLASHsvolcite] = ACTIONS(4987), + [anon_sym_BSLASHSvolcite] = ACTIONS(4987), + [anon_sym_BSLASHtvolcite] = ACTIONS(4987), + [anon_sym_BSLASHTvolcite] = ACTIONS(4987), + [anon_sym_BSLASHavolcite] = ACTIONS(4987), + [anon_sym_BSLASHAvolcite] = ACTIONS(4987), + [anon_sym_BSLASHnotecite] = ACTIONS(4987), + [anon_sym_BSLASHNotecite] = ACTIONS(4987), + [anon_sym_BSLASHpnotecite] = ACTIONS(4987), + [anon_sym_BSLASHPnotecite] = ACTIONS(4987), + [anon_sym_BSLASHfnotecite] = ACTIONS(4987), + [anon_sym_BSLASHlabel] = ACTIONS(4987), + [anon_sym_BSLASHref] = ACTIONS(4987), + [anon_sym_BSLASHeqref] = ACTIONS(4987), + [anon_sym_BSLASHvref] = ACTIONS(4987), + [anon_sym_BSLASHVref] = ACTIONS(4987), + [anon_sym_BSLASHautoref] = ACTIONS(4987), + [anon_sym_BSLASHpageref] = ACTIONS(4987), + [anon_sym_BSLASHcref] = ACTIONS(4987), + [anon_sym_BSLASHCref] = ACTIONS(4987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnameCref] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHlabelcref] = ACTIONS(4987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCrefrange] = ACTIONS(4987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnewlabel] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), + [anon_sym_BSLASHdef] = ACTIONS(4987), + [anon_sym_BSLASHlet] = ACTIONS(4987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), + [anon_sym_BSLASHgls] = ACTIONS(4987), + [anon_sym_BSLASHGls] = ACTIONS(4987), + [anon_sym_BSLASHGLS] = ACTIONS(4987), + [anon_sym_BSLASHglspl] = ACTIONS(4987), + [anon_sym_BSLASHGlspl] = ACTIONS(4987), + [anon_sym_BSLASHGLSpl] = ACTIONS(4987), + [anon_sym_BSLASHglsdisp] = ACTIONS(4987), + [anon_sym_BSLASHglslink] = ACTIONS(4987), + [anon_sym_BSLASHglstext] = ACTIONS(4987), + [anon_sym_BSLASHGlstext] = ACTIONS(4987), + [anon_sym_BSLASHGLStext] = ACTIONS(4987), + [anon_sym_BSLASHglsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), + [anon_sym_BSLASHglsplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSplural] = ACTIONS(4987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHglsname] = ACTIONS(4987), + [anon_sym_BSLASHGlsname] = ACTIONS(4987), + [anon_sym_BSLASHGLSname] = ACTIONS(4987), + [anon_sym_BSLASHglssymbol] = ACTIONS(4987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), + [anon_sym_BSLASHglsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), + [anon_sym_BSLASHglsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), + [anon_sym_BSLASHglsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), + [anon_sym_BSLASHglsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), + [anon_sym_BSLASHglsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), + [anon_sym_BSLASHnewacronym] = ACTIONS(4987), + [anon_sym_BSLASHacrshort] = ACTIONS(4987), + [anon_sym_BSLASHAcrshort] = ACTIONS(4987), + [anon_sym_BSLASHACRshort] = ACTIONS(4987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), + [anon_sym_BSLASHacrlong] = ACTIONS(4987), + [anon_sym_BSLASHAcrlong] = ACTIONS(4987), + [anon_sym_BSLASHACRlong] = ACTIONS(4987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), + [anon_sym_BSLASHacrfull] = ACTIONS(4987), + [anon_sym_BSLASHAcrfull] = ACTIONS(4987), + [anon_sym_BSLASHACRfull] = ACTIONS(4987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), + [anon_sym_BSLASHacs] = ACTIONS(4987), + [anon_sym_BSLASHAcs] = ACTIONS(4987), + [anon_sym_BSLASHacsp] = ACTIONS(4987), + [anon_sym_BSLASHAcsp] = ACTIONS(4987), + [anon_sym_BSLASHacl] = ACTIONS(4987), + [anon_sym_BSLASHAcl] = ACTIONS(4987), + [anon_sym_BSLASHaclp] = ACTIONS(4987), + [anon_sym_BSLASHAclp] = ACTIONS(4987), + [anon_sym_BSLASHacf] = ACTIONS(4987), + [anon_sym_BSLASHAcf] = ACTIONS(4987), + [anon_sym_BSLASHacfp] = ACTIONS(4987), + [anon_sym_BSLASHAcfp] = ACTIONS(4987), + [anon_sym_BSLASHac] = ACTIONS(4987), + [anon_sym_BSLASHAc] = ACTIONS(4987), + [anon_sym_BSLASHacp] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), + [anon_sym_BSLASHcolor] = ACTIONS(4987), + [anon_sym_BSLASHcolorbox] = ACTIONS(4987), + [anon_sym_BSLASHtextcolor] = ACTIONS(4987), + [anon_sym_BSLASHpagecolor] = ACTIONS(4987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), + [anon_sym_BSLASHtext] = ACTIONS(4987), + [anon_sym_BSLASHintertext] = ACTIONS(4987), + [anon_sym_shortintertext] = ACTIONS(4987), }, - [1206] = { + [1102] = { + [sym_command_name] = ACTIONS(4983), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_RBRACK] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4981), + [anon_sym_BSLASHpart] = ACTIONS(4983), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddpart] = ACTIONS(4983), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), + [anon_sym_BSLASHchapter] = ACTIONS(4983), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddchap] = ACTIONS(4983), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsection] = ACTIONS(4983), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddsec] = ACTIONS(4983), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubsection] = ACTIONS(4983), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHparagraph] = ACTIONS(4983), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), + [anon_sym_BSLASHitem] = ACTIONS(4983), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4981), + [sym_word] = ACTIONS(4983), + [sym_placeholder] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym__] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_SQUOTE] = ACTIONS(4983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4981), + [anon_sym_DOLLAR] = ACTIONS(4983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), + [anon_sym_BSLASHbegin] = ACTIONS(4983), + [anon_sym_BSLASHusepackage] = ACTIONS(4983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), + [anon_sym_BSLASHinclude] = ACTIONS(4983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), + [anon_sym_BSLASHinput] = ACTIONS(4983), + [anon_sym_BSLASHsubfile] = ACTIONS(4983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), + [anon_sym_BSLASHbibliography] = ACTIONS(4983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), + [anon_sym_BSLASHincludesvg] = ACTIONS(4983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), + [anon_sym_BSLASHimport] = ACTIONS(4983), + [anon_sym_BSLASHsubimport] = ACTIONS(4983), + [anon_sym_BSLASHinputfrom] = ACTIONS(4983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), + [anon_sym_BSLASHincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHcaption] = ACTIONS(4983), + [anon_sym_BSLASHcite] = ACTIONS(4983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCite] = ACTIONS(4983), + [anon_sym_BSLASHnocite] = ACTIONS(4983), + [anon_sym_BSLASHcitet] = ACTIONS(4983), + [anon_sym_BSLASHcitep] = ACTIONS(4983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteauthor] = ACTIONS(4983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitetitle] = ACTIONS(4983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteyear] = ACTIONS(4983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitedate] = ACTIONS(4983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteurl] = ACTIONS(4983), + [anon_sym_BSLASHfullcite] = ACTIONS(4983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), + [anon_sym_BSLASHcitealt] = ACTIONS(4983), + [anon_sym_BSLASHcitealp] = ACTIONS(4983), + [anon_sym_BSLASHcitetext] = ACTIONS(4983), + [anon_sym_BSLASHparencite] = ACTIONS(4983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHParencite] = ACTIONS(4983), + [anon_sym_BSLASHfootcite] = ACTIONS(4983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), + [anon_sym_BSLASHtextcite] = ACTIONS(4983), + [anon_sym_BSLASHTextcite] = ACTIONS(4983), + [anon_sym_BSLASHsmartcite] = ACTIONS(4983), + [anon_sym_BSLASHSmartcite] = ACTIONS(4983), + [anon_sym_BSLASHsupercite] = ACTIONS(4983), + [anon_sym_BSLASHautocite] = ACTIONS(4983), + [anon_sym_BSLASHAutocite] = ACTIONS(4983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHvolcite] = ACTIONS(4983), + [anon_sym_BSLASHVolcite] = ACTIONS(4983), + [anon_sym_BSLASHpvolcite] = ACTIONS(4983), + [anon_sym_BSLASHPvolcite] = ACTIONS(4983), + [anon_sym_BSLASHfvolcite] = ACTIONS(4983), + [anon_sym_BSLASHftvolcite] = ACTIONS(4983), + [anon_sym_BSLASHsvolcite] = ACTIONS(4983), + [anon_sym_BSLASHSvolcite] = ACTIONS(4983), + [anon_sym_BSLASHtvolcite] = ACTIONS(4983), + [anon_sym_BSLASHTvolcite] = ACTIONS(4983), + [anon_sym_BSLASHavolcite] = ACTIONS(4983), + [anon_sym_BSLASHAvolcite] = ACTIONS(4983), + [anon_sym_BSLASHnotecite] = ACTIONS(4983), + [anon_sym_BSLASHNotecite] = ACTIONS(4983), + [anon_sym_BSLASHpnotecite] = ACTIONS(4983), + [anon_sym_BSLASHPnotecite] = ACTIONS(4983), + [anon_sym_BSLASHfnotecite] = ACTIONS(4983), + [anon_sym_BSLASHlabel] = ACTIONS(4983), + [anon_sym_BSLASHref] = ACTIONS(4983), + [anon_sym_BSLASHeqref] = ACTIONS(4983), + [anon_sym_BSLASHvref] = ACTIONS(4983), + [anon_sym_BSLASHVref] = ACTIONS(4983), + [anon_sym_BSLASHautoref] = ACTIONS(4983), + [anon_sym_BSLASHpageref] = ACTIONS(4983), + [anon_sym_BSLASHcref] = ACTIONS(4983), + [anon_sym_BSLASHCref] = ACTIONS(4983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnameCref] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHlabelcref] = ACTIONS(4983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCrefrange] = ACTIONS(4983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnewlabel] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), + [anon_sym_BSLASHdef] = ACTIONS(4983), + [anon_sym_BSLASHlet] = ACTIONS(4983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), + [anon_sym_BSLASHgls] = ACTIONS(4983), + [anon_sym_BSLASHGls] = ACTIONS(4983), + [anon_sym_BSLASHGLS] = ACTIONS(4983), + [anon_sym_BSLASHglspl] = ACTIONS(4983), + [anon_sym_BSLASHGlspl] = ACTIONS(4983), + [anon_sym_BSLASHGLSpl] = ACTIONS(4983), + [anon_sym_BSLASHglsdisp] = ACTIONS(4983), + [anon_sym_BSLASHglslink] = ACTIONS(4983), + [anon_sym_BSLASHglstext] = ACTIONS(4983), + [anon_sym_BSLASHGlstext] = ACTIONS(4983), + [anon_sym_BSLASHGLStext] = ACTIONS(4983), + [anon_sym_BSLASHglsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), + [anon_sym_BSLASHglsplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSplural] = ACTIONS(4983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHglsname] = ACTIONS(4983), + [anon_sym_BSLASHGlsname] = ACTIONS(4983), + [anon_sym_BSLASHGLSname] = ACTIONS(4983), + [anon_sym_BSLASHglssymbol] = ACTIONS(4983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), + [anon_sym_BSLASHglsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), + [anon_sym_BSLASHglsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), + [anon_sym_BSLASHglsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), + [anon_sym_BSLASHglsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), + [anon_sym_BSLASHglsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), + [anon_sym_BSLASHnewacronym] = ACTIONS(4983), + [anon_sym_BSLASHacrshort] = ACTIONS(4983), + [anon_sym_BSLASHAcrshort] = ACTIONS(4983), + [anon_sym_BSLASHACRshort] = ACTIONS(4983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), + [anon_sym_BSLASHacrlong] = ACTIONS(4983), + [anon_sym_BSLASHAcrlong] = ACTIONS(4983), + [anon_sym_BSLASHACRlong] = ACTIONS(4983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), + [anon_sym_BSLASHacrfull] = ACTIONS(4983), + [anon_sym_BSLASHAcrfull] = ACTIONS(4983), + [anon_sym_BSLASHACRfull] = ACTIONS(4983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), + [anon_sym_BSLASHacs] = ACTIONS(4983), + [anon_sym_BSLASHAcs] = ACTIONS(4983), + [anon_sym_BSLASHacsp] = ACTIONS(4983), + [anon_sym_BSLASHAcsp] = ACTIONS(4983), + [anon_sym_BSLASHacl] = ACTIONS(4983), + [anon_sym_BSLASHAcl] = ACTIONS(4983), + [anon_sym_BSLASHaclp] = ACTIONS(4983), + [anon_sym_BSLASHAclp] = ACTIONS(4983), + [anon_sym_BSLASHacf] = ACTIONS(4983), + [anon_sym_BSLASHAcf] = ACTIONS(4983), + [anon_sym_BSLASHacfp] = ACTIONS(4983), + [anon_sym_BSLASHAcfp] = ACTIONS(4983), + [anon_sym_BSLASHac] = ACTIONS(4983), + [anon_sym_BSLASHAc] = ACTIONS(4983), + [anon_sym_BSLASHacp] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), + [anon_sym_BSLASHcolor] = ACTIONS(4983), + [anon_sym_BSLASHcolorbox] = ACTIONS(4983), + [anon_sym_BSLASHtextcolor] = ACTIONS(4983), + [anon_sym_BSLASHpagecolor] = ACTIONS(4983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHtext] = ACTIONS(4983), + [anon_sym_BSLASHintertext] = ACTIONS(4983), + [anon_sym_shortintertext] = ACTIONS(4983), + }, + [1103] = { [sym_command_name] = ACTIONS(5139), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -362760,32378 +336390,25868 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), - }, - [1207] = { - [sym_command_name] = ACTIONS(4941), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4939), - [anon_sym_RBRACK] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_BSLASHpart] = ACTIONS(4941), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddpart] = ACTIONS(4941), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4939), - [anon_sym_BSLASHchapter] = ACTIONS(4941), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddchap] = ACTIONS(4941), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsection] = ACTIONS(4941), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHaddsec] = ACTIONS(4941), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubsection] = ACTIONS(4941), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4941), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4939), - [anon_sym_BSLASHparagraph] = ACTIONS(4941), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4939), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4941), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4939), - [anon_sym_BSLASHitem] = ACTIONS(4941), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [sym_word] = ACTIONS(4941), - [sym_placeholder] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4941), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_STAR] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym__] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4941), - [anon_sym_BANG] = ACTIONS(4941), - [anon_sym_PIPE] = ACTIONS(4941), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4941), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4939), - [anon_sym_BSLASHbegin] = ACTIONS(4941), - [anon_sym_BSLASHend] = ACTIONS(4941), - [anon_sym_BSLASHusepackage] = ACTIONS(4941), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4941), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4941), - [anon_sym_BSLASHinclude] = ACTIONS(4941), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4941), - [anon_sym_BSLASHinput] = ACTIONS(4941), - [anon_sym_BSLASHsubfile] = ACTIONS(4941), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4941), - [anon_sym_BSLASHbibliography] = ACTIONS(4941), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4941), - [anon_sym_BSLASHincludesvg] = ACTIONS(4941), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4941), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4941), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4941), - [anon_sym_BSLASHimport] = ACTIONS(4941), - [anon_sym_BSLASHsubimport] = ACTIONS(4941), - [anon_sym_BSLASHinputfrom] = ACTIONS(4941), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4941), - [anon_sym_BSLASHincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHcaption] = ACTIONS(4941), - [anon_sym_BSLASHcite] = ACTIONS(4941), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCite] = ACTIONS(4941), - [anon_sym_BSLASHnocite] = ACTIONS(4941), - [anon_sym_BSLASHcitet] = ACTIONS(4941), - [anon_sym_BSLASHcitep] = ACTIONS(4941), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteyear] = ACTIONS(4941), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitedate] = ACTIONS(4941), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteurl] = ACTIONS(4941), - [anon_sym_BSLASHfullcite] = ACTIONS(4941), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4941), - [anon_sym_BSLASHcitealt] = ACTIONS(4941), - [anon_sym_BSLASHcitealp] = ACTIONS(4941), - [anon_sym_BSLASHcitetext] = ACTIONS(4941), - [anon_sym_BSLASHparencite] = ACTIONS(4941), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHParencite] = ACTIONS(4941), - [anon_sym_BSLASHfootcite] = ACTIONS(4941), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4941), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4941), - [anon_sym_BSLASHtextcite] = ACTIONS(4941), - [anon_sym_BSLASHTextcite] = ACTIONS(4941), - [anon_sym_BSLASHsmartcite] = ACTIONS(4941), - [anon_sym_BSLASHSmartcite] = ACTIONS(4941), - [anon_sym_BSLASHsupercite] = ACTIONS(4941), - [anon_sym_BSLASHautocite] = ACTIONS(4941), - [anon_sym_BSLASHAutocite] = ACTIONS(4941), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHvolcite] = ACTIONS(4941), - [anon_sym_BSLASHVolcite] = ACTIONS(4941), - [anon_sym_BSLASHpvolcite] = ACTIONS(4941), - [anon_sym_BSLASHPvolcite] = ACTIONS(4941), - [anon_sym_BSLASHfvolcite] = ACTIONS(4941), - [anon_sym_BSLASHftvolcite] = ACTIONS(4941), - [anon_sym_BSLASHsvolcite] = ACTIONS(4941), - [anon_sym_BSLASHSvolcite] = ACTIONS(4941), - [anon_sym_BSLASHtvolcite] = ACTIONS(4941), - [anon_sym_BSLASHTvolcite] = ACTIONS(4941), - [anon_sym_BSLASHavolcite] = ACTIONS(4941), - [anon_sym_BSLASHAvolcite] = ACTIONS(4941), - [anon_sym_BSLASHnotecite] = ACTIONS(4941), - [anon_sym_BSLASHNotecite] = ACTIONS(4941), - [anon_sym_BSLASHpnotecite] = ACTIONS(4941), - [anon_sym_BSLASHPnotecite] = ACTIONS(4941), - [anon_sym_BSLASHfnotecite] = ACTIONS(4941), - [anon_sym_BSLASHlabel] = ACTIONS(4941), - [anon_sym_BSLASHref] = ACTIONS(4941), - [anon_sym_BSLASHeqref] = ACTIONS(4941), - [anon_sym_BSLASHvref] = ACTIONS(4941), - [anon_sym_BSLASHVref] = ACTIONS(4941), - [anon_sym_BSLASHautoref] = ACTIONS(4941), - [anon_sym_BSLASHpageref] = ACTIONS(4941), - [anon_sym_BSLASHcref] = ACTIONS(4941), - [anon_sym_BSLASHCref] = ACTIONS(4941), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnameCref] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHlabelcref] = ACTIONS(4941), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnewlabel] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4939), - [anon_sym_BSLASHdef] = ACTIONS(4941), - [anon_sym_BSLASHlet] = ACTIONS(4941), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4941), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4941), - [anon_sym_BSLASHgls] = ACTIONS(4941), - [anon_sym_BSLASHGls] = ACTIONS(4941), - [anon_sym_BSLASHGLS] = ACTIONS(4941), - [anon_sym_BSLASHglspl] = ACTIONS(4941), - [anon_sym_BSLASHGlspl] = ACTIONS(4941), - [anon_sym_BSLASHGLSpl] = ACTIONS(4941), - [anon_sym_BSLASHglsdisp] = ACTIONS(4941), - [anon_sym_BSLASHglslink] = ACTIONS(4941), - [anon_sym_BSLASHglstext] = ACTIONS(4941), - [anon_sym_BSLASHGlstext] = ACTIONS(4941), - [anon_sym_BSLASHGLStext] = ACTIONS(4941), - [anon_sym_BSLASHglsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4941), - [anon_sym_BSLASHglsplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSplural] = ACTIONS(4941), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHglsname] = ACTIONS(4941), - [anon_sym_BSLASHGlsname] = ACTIONS(4941), - [anon_sym_BSLASHGLSname] = ACTIONS(4941), - [anon_sym_BSLASHglssymbol] = ACTIONS(4941), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4941), - [anon_sym_BSLASHglsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4941), - [anon_sym_BSLASHglsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4941), - [anon_sym_BSLASHglsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4941), - [anon_sym_BSLASHglsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4941), - [anon_sym_BSLASHglsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4941), - [anon_sym_BSLASHnewacronym] = ACTIONS(4941), - [anon_sym_BSLASHacrshort] = ACTIONS(4941), - [anon_sym_BSLASHAcrshort] = ACTIONS(4941), - [anon_sym_BSLASHACRshort] = ACTIONS(4941), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4941), - [anon_sym_BSLASHacrlong] = ACTIONS(4941), - [anon_sym_BSLASHAcrlong] = ACTIONS(4941), - [anon_sym_BSLASHACRlong] = ACTIONS(4941), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4941), - [anon_sym_BSLASHacrfull] = ACTIONS(4941), - [anon_sym_BSLASHAcrfull] = ACTIONS(4941), - [anon_sym_BSLASHACRfull] = ACTIONS(4941), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4941), - [anon_sym_BSLASHacs] = ACTIONS(4941), - [anon_sym_BSLASHAcs] = ACTIONS(4941), - [anon_sym_BSLASHacsp] = ACTIONS(4941), - [anon_sym_BSLASHAcsp] = ACTIONS(4941), - [anon_sym_BSLASHacl] = ACTIONS(4941), - [anon_sym_BSLASHAcl] = ACTIONS(4941), - [anon_sym_BSLASHaclp] = ACTIONS(4941), - [anon_sym_BSLASHAclp] = ACTIONS(4941), - [anon_sym_BSLASHacf] = ACTIONS(4941), - [anon_sym_BSLASHAcf] = ACTIONS(4941), - [anon_sym_BSLASHacfp] = ACTIONS(4941), - [anon_sym_BSLASHAcfp] = ACTIONS(4941), - [anon_sym_BSLASHac] = ACTIONS(4941), - [anon_sym_BSLASHAc] = ACTIONS(4941), - [anon_sym_BSLASHacp] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4941), - [anon_sym_BSLASHcolor] = ACTIONS(4941), - [anon_sym_BSLASHcolorbox] = ACTIONS(4941), - [anon_sym_BSLASHtextcolor] = ACTIONS(4941), - [anon_sym_BSLASHpagecolor] = ACTIONS(4941), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4941), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4941), - }, - [1208] = { - [sym_command_name] = ACTIONS(5317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5317), - [anon_sym_LPAREN] = ACTIONS(5315), - [anon_sym_RPAREN] = ACTIONS(5315), - [anon_sym_LBRACK] = ACTIONS(5315), - [anon_sym_RBRACK] = ACTIONS(5315), - [anon_sym_COMMA] = ACTIONS(5315), - [anon_sym_EQ] = ACTIONS(5315), - [anon_sym_BSLASHpart] = ACTIONS(5317), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddpart] = ACTIONS(5317), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5315), - [anon_sym_BSLASHchapter] = ACTIONS(5317), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddchap] = ACTIONS(5317), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsection] = ACTIONS(5317), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHaddsec] = ACTIONS(5317), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubsection] = ACTIONS(5317), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5317), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5315), - [anon_sym_BSLASHparagraph] = ACTIONS(5317), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5315), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5317), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5315), - [anon_sym_BSLASHitem] = ACTIONS(5317), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5315), - [anon_sym_LBRACE] = ACTIONS(5315), - [sym_word] = ACTIONS(5317), - [sym_placeholder] = ACTIONS(5315), - [anon_sym_PLUS] = ACTIONS(5317), - [anon_sym_DASH] = ACTIONS(5317), - [anon_sym_STAR] = ACTIONS(5317), - [anon_sym_SLASH] = ACTIONS(5317), - [anon_sym_CARET] = ACTIONS(5317), - [anon_sym__] = ACTIONS(5317), - [anon_sym_LT] = ACTIONS(5317), - [anon_sym_GT] = ACTIONS(5317), - [anon_sym_BANG] = ACTIONS(5317), - [anon_sym_PIPE] = ACTIONS(5317), - [anon_sym_COLON] = ACTIONS(5317), - [anon_sym_SQUOTE] = ACTIONS(5317), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), - [anon_sym_BSLASH_RBRACK] = ACTIONS(5315), - [anon_sym_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), - [anon_sym_BSLASHbegin] = ACTIONS(5317), - [anon_sym_BSLASHusepackage] = ACTIONS(5317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), - [anon_sym_BSLASHinclude] = ACTIONS(5317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), - [anon_sym_BSLASHinput] = ACTIONS(5317), - [anon_sym_BSLASHsubfile] = ACTIONS(5317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), - [anon_sym_BSLASHbibliography] = ACTIONS(5317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), - [anon_sym_BSLASHincludesvg] = ACTIONS(5317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), - [anon_sym_BSLASHimport] = ACTIONS(5317), - [anon_sym_BSLASHsubimport] = ACTIONS(5317), - [anon_sym_BSLASHinputfrom] = ACTIONS(5317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), - [anon_sym_BSLASHincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHcaption] = ACTIONS(5317), - [anon_sym_BSLASHcite] = ACTIONS(5317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCite] = ACTIONS(5317), - [anon_sym_BSLASHnocite] = ACTIONS(5317), - [anon_sym_BSLASHcitet] = ACTIONS(5317), - [anon_sym_BSLASHcitep] = ACTIONS(5317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteyear] = ACTIONS(5317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitedate] = ACTIONS(5317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteurl] = ACTIONS(5317), - [anon_sym_BSLASHfullcite] = ACTIONS(5317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), - [anon_sym_BSLASHcitealt] = ACTIONS(5317), - [anon_sym_BSLASHcitealp] = ACTIONS(5317), - [anon_sym_BSLASHcitetext] = ACTIONS(5317), - [anon_sym_BSLASHparencite] = ACTIONS(5317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHParencite] = ACTIONS(5317), - [anon_sym_BSLASHfootcite] = ACTIONS(5317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), - [anon_sym_BSLASHtextcite] = ACTIONS(5317), - [anon_sym_BSLASHTextcite] = ACTIONS(5317), - [anon_sym_BSLASHsmartcite] = ACTIONS(5317), - [anon_sym_BSLASHSmartcite] = ACTIONS(5317), - [anon_sym_BSLASHsupercite] = ACTIONS(5317), - [anon_sym_BSLASHautocite] = ACTIONS(5317), - [anon_sym_BSLASHAutocite] = ACTIONS(5317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHvolcite] = ACTIONS(5317), - [anon_sym_BSLASHVolcite] = ACTIONS(5317), - [anon_sym_BSLASHpvolcite] = ACTIONS(5317), - [anon_sym_BSLASHPvolcite] = ACTIONS(5317), - [anon_sym_BSLASHfvolcite] = ACTIONS(5317), - [anon_sym_BSLASHftvolcite] = ACTIONS(5317), - [anon_sym_BSLASHsvolcite] = ACTIONS(5317), - [anon_sym_BSLASHSvolcite] = ACTIONS(5317), - [anon_sym_BSLASHtvolcite] = ACTIONS(5317), - [anon_sym_BSLASHTvolcite] = ACTIONS(5317), - [anon_sym_BSLASHavolcite] = ACTIONS(5317), - [anon_sym_BSLASHAvolcite] = ACTIONS(5317), - [anon_sym_BSLASHnotecite] = ACTIONS(5317), - [anon_sym_BSLASHNotecite] = ACTIONS(5317), - [anon_sym_BSLASHpnotecite] = ACTIONS(5317), - [anon_sym_BSLASHPnotecite] = ACTIONS(5317), - [anon_sym_BSLASHfnotecite] = ACTIONS(5317), - [anon_sym_BSLASHlabel] = ACTIONS(5317), - [anon_sym_BSLASHref] = ACTIONS(5317), - [anon_sym_BSLASHeqref] = ACTIONS(5317), - [anon_sym_BSLASHvref] = ACTIONS(5317), - [anon_sym_BSLASHVref] = ACTIONS(5317), - [anon_sym_BSLASHautoref] = ACTIONS(5317), - [anon_sym_BSLASHpageref] = ACTIONS(5317), - [anon_sym_BSLASHcref] = ACTIONS(5317), - [anon_sym_BSLASHCref] = ACTIONS(5317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnameCref] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHlabelcref] = ACTIONS(5317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnewlabel] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), - [anon_sym_BSLASHdef] = ACTIONS(5317), - [anon_sym_BSLASHlet] = ACTIONS(5317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), - [anon_sym_BSLASHgls] = ACTIONS(5317), - [anon_sym_BSLASHGls] = ACTIONS(5317), - [anon_sym_BSLASHGLS] = ACTIONS(5317), - [anon_sym_BSLASHglspl] = ACTIONS(5317), - [anon_sym_BSLASHGlspl] = ACTIONS(5317), - [anon_sym_BSLASHGLSpl] = ACTIONS(5317), - [anon_sym_BSLASHglsdisp] = ACTIONS(5317), - [anon_sym_BSLASHglslink] = ACTIONS(5317), - [anon_sym_BSLASHglstext] = ACTIONS(5317), - [anon_sym_BSLASHGlstext] = ACTIONS(5317), - [anon_sym_BSLASHGLStext] = ACTIONS(5317), - [anon_sym_BSLASHglsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), - [anon_sym_BSLASHglsplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSplural] = ACTIONS(5317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHglsname] = ACTIONS(5317), - [anon_sym_BSLASHGlsname] = ACTIONS(5317), - [anon_sym_BSLASHGLSname] = ACTIONS(5317), - [anon_sym_BSLASHglssymbol] = ACTIONS(5317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), - [anon_sym_BSLASHglsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), - [anon_sym_BSLASHglsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), - [anon_sym_BSLASHglsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), - [anon_sym_BSLASHglsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), - [anon_sym_BSLASHglsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), - [anon_sym_BSLASHnewacronym] = ACTIONS(5317), - [anon_sym_BSLASHacrshort] = ACTIONS(5317), - [anon_sym_BSLASHAcrshort] = ACTIONS(5317), - [anon_sym_BSLASHACRshort] = ACTIONS(5317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), - [anon_sym_BSLASHacrlong] = ACTIONS(5317), - [anon_sym_BSLASHAcrlong] = ACTIONS(5317), - [anon_sym_BSLASHACRlong] = ACTIONS(5317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), - [anon_sym_BSLASHacrfull] = ACTIONS(5317), - [anon_sym_BSLASHAcrfull] = ACTIONS(5317), - [anon_sym_BSLASHACRfull] = ACTIONS(5317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), - [anon_sym_BSLASHacs] = ACTIONS(5317), - [anon_sym_BSLASHAcs] = ACTIONS(5317), - [anon_sym_BSLASHacsp] = ACTIONS(5317), - [anon_sym_BSLASHAcsp] = ACTIONS(5317), - [anon_sym_BSLASHacl] = ACTIONS(5317), - [anon_sym_BSLASHAcl] = ACTIONS(5317), - [anon_sym_BSLASHaclp] = ACTIONS(5317), - [anon_sym_BSLASHAclp] = ACTIONS(5317), - [anon_sym_BSLASHacf] = ACTIONS(5317), - [anon_sym_BSLASHAcf] = ACTIONS(5317), - [anon_sym_BSLASHacfp] = ACTIONS(5317), - [anon_sym_BSLASHAcfp] = ACTIONS(5317), - [anon_sym_BSLASHac] = ACTIONS(5317), - [anon_sym_BSLASHAc] = ACTIONS(5317), - [anon_sym_BSLASHacp] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), - [anon_sym_BSLASHcolor] = ACTIONS(5317), - [anon_sym_BSLASHcolorbox] = ACTIONS(5317), - [anon_sym_BSLASHtextcolor] = ACTIONS(5317), - [anon_sym_BSLASHpagecolor] = ACTIONS(5317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), - }, - [1209] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1739), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5391), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1210] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1727), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5393), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1211] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1729), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5395), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1212] = { - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_BSLASHpart] = ACTIONS(5011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddpart] = ACTIONS(5011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHchapter] = ACTIONS(5011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddchap] = ACTIONS(5011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsection] = ACTIONS(5011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddsec] = ACTIONS(5011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHparagraph] = ACTIONS(5011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHitem] = ACTIONS(5011), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5009), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASHbegin] = ACTIONS(5011), - [anon_sym_BSLASHend] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), - }, - [1213] = { - [sym_command_name] = ACTIONS(5287), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_RPAREN] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_RBRACK] = ACTIONS(5285), - [anon_sym_COMMA] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_BSLASHpart] = ACTIONS(5287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddpart] = ACTIONS(5287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHchapter] = ACTIONS(5287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddchap] = ACTIONS(5287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsection] = ACTIONS(5287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddsec] = ACTIONS(5287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHparagraph] = ACTIONS(5287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHitem] = ACTIONS(5287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(5285), - [sym_word] = ACTIONS(5287), - [sym_placeholder] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_SLASH] = ACTIONS(5287), - [anon_sym_CARET] = ACTIONS(5287), - [anon_sym__] = ACTIONS(5287), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_GT] = ACTIONS(5287), - [anon_sym_BANG] = ACTIONS(5287), - [anon_sym_PIPE] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_SQUOTE] = ACTIONS(5287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5285), - [anon_sym_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_RPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5285), - [anon_sym_BSLASHbegin] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5287), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5287), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5287), - [anon_sym_BSLASHinclude] = ACTIONS(5287), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5287), - [anon_sym_BSLASHinput] = ACTIONS(5287), - [anon_sym_BSLASHsubfile] = ACTIONS(5287), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5287), - [anon_sym_BSLASHbibliography] = ACTIONS(5287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5287), - [anon_sym_BSLASHincludesvg] = ACTIONS(5287), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5287), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5287), - [anon_sym_BSLASHimport] = ACTIONS(5287), - [anon_sym_BSLASHsubimport] = ACTIONS(5287), - [anon_sym_BSLASHinputfrom] = ACTIONS(5287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5287), - [anon_sym_BSLASHincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHcaption] = ACTIONS(5287), - [anon_sym_BSLASHcite] = ACTIONS(5287), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCite] = ACTIONS(5287), - [anon_sym_BSLASHnocite] = ACTIONS(5287), - [anon_sym_BSLASHcitet] = ACTIONS(5287), - [anon_sym_BSLASHcitep] = ACTIONS(5287), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteyear] = ACTIONS(5287), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitedate] = ACTIONS(5287), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteurl] = ACTIONS(5287), - [anon_sym_BSLASHfullcite] = ACTIONS(5287), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5287), - [anon_sym_BSLASHcitealt] = ACTIONS(5287), - [anon_sym_BSLASHcitealp] = ACTIONS(5287), - [anon_sym_BSLASHcitetext] = ACTIONS(5287), - [anon_sym_BSLASHparencite] = ACTIONS(5287), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHParencite] = ACTIONS(5287), - [anon_sym_BSLASHfootcite] = ACTIONS(5287), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5287), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5287), - [anon_sym_BSLASHtextcite] = ACTIONS(5287), - [anon_sym_BSLASHTextcite] = ACTIONS(5287), - [anon_sym_BSLASHsmartcite] = ACTIONS(5287), - [anon_sym_BSLASHSmartcite] = ACTIONS(5287), - [anon_sym_BSLASHsupercite] = ACTIONS(5287), - [anon_sym_BSLASHautocite] = ACTIONS(5287), - [anon_sym_BSLASHAutocite] = ACTIONS(5287), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHvolcite] = ACTIONS(5287), - [anon_sym_BSLASHVolcite] = ACTIONS(5287), - [anon_sym_BSLASHpvolcite] = ACTIONS(5287), - [anon_sym_BSLASHPvolcite] = ACTIONS(5287), - [anon_sym_BSLASHfvolcite] = ACTIONS(5287), - [anon_sym_BSLASHftvolcite] = ACTIONS(5287), - [anon_sym_BSLASHsvolcite] = ACTIONS(5287), - [anon_sym_BSLASHSvolcite] = ACTIONS(5287), - [anon_sym_BSLASHtvolcite] = ACTIONS(5287), - [anon_sym_BSLASHTvolcite] = ACTIONS(5287), - [anon_sym_BSLASHavolcite] = ACTIONS(5287), - [anon_sym_BSLASHAvolcite] = ACTIONS(5287), - [anon_sym_BSLASHnotecite] = ACTIONS(5287), - [anon_sym_BSLASHNotecite] = ACTIONS(5287), - [anon_sym_BSLASHpnotecite] = ACTIONS(5287), - [anon_sym_BSLASHPnotecite] = ACTIONS(5287), - [anon_sym_BSLASHfnotecite] = ACTIONS(5287), - [anon_sym_BSLASHlabel] = ACTIONS(5287), - [anon_sym_BSLASHref] = ACTIONS(5287), - [anon_sym_BSLASHeqref] = ACTIONS(5287), - [anon_sym_BSLASHvref] = ACTIONS(5287), - [anon_sym_BSLASHVref] = ACTIONS(5287), - [anon_sym_BSLASHautoref] = ACTIONS(5287), - [anon_sym_BSLASHpageref] = ACTIONS(5287), - [anon_sym_BSLASHcref] = ACTIONS(5287), - [anon_sym_BSLASHCref] = ACTIONS(5287), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnameCref] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHlabelcref] = ACTIONS(5287), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnewlabel] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdef] = ACTIONS(5287), - [anon_sym_BSLASHlet] = ACTIONS(5287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5287), - [anon_sym_BSLASHgls] = ACTIONS(5287), - [anon_sym_BSLASHGls] = ACTIONS(5287), - [anon_sym_BSLASHGLS] = ACTIONS(5287), - [anon_sym_BSLASHglspl] = ACTIONS(5287), - [anon_sym_BSLASHGlspl] = ACTIONS(5287), - [anon_sym_BSLASHGLSpl] = ACTIONS(5287), - [anon_sym_BSLASHglsdisp] = ACTIONS(5287), - [anon_sym_BSLASHglslink] = ACTIONS(5287), - [anon_sym_BSLASHglstext] = ACTIONS(5287), - [anon_sym_BSLASHGlstext] = ACTIONS(5287), - [anon_sym_BSLASHGLStext] = ACTIONS(5287), - [anon_sym_BSLASHglsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5287), - [anon_sym_BSLASHglsplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSplural] = ACTIONS(5287), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHglsname] = ACTIONS(5287), - [anon_sym_BSLASHGlsname] = ACTIONS(5287), - [anon_sym_BSLASHGLSname] = ACTIONS(5287), - [anon_sym_BSLASHglssymbol] = ACTIONS(5287), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5287), - [anon_sym_BSLASHglsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5287), - [anon_sym_BSLASHglsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5287), - [anon_sym_BSLASHglsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5287), - [anon_sym_BSLASHglsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5287), - [anon_sym_BSLASHglsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5287), - [anon_sym_BSLASHnewacronym] = ACTIONS(5287), - [anon_sym_BSLASHacrshort] = ACTIONS(5287), - [anon_sym_BSLASHAcrshort] = ACTIONS(5287), - [anon_sym_BSLASHACRshort] = ACTIONS(5287), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5287), - [anon_sym_BSLASHacrlong] = ACTIONS(5287), - [anon_sym_BSLASHAcrlong] = ACTIONS(5287), - [anon_sym_BSLASHACRlong] = ACTIONS(5287), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5287), - [anon_sym_BSLASHacrfull] = ACTIONS(5287), - [anon_sym_BSLASHAcrfull] = ACTIONS(5287), - [anon_sym_BSLASHACRfull] = ACTIONS(5287), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5287), - [anon_sym_BSLASHacs] = ACTIONS(5287), - [anon_sym_BSLASHAcs] = ACTIONS(5287), - [anon_sym_BSLASHacsp] = ACTIONS(5287), - [anon_sym_BSLASHAcsp] = ACTIONS(5287), - [anon_sym_BSLASHacl] = ACTIONS(5287), - [anon_sym_BSLASHAcl] = ACTIONS(5287), - [anon_sym_BSLASHaclp] = ACTIONS(5287), - [anon_sym_BSLASHAclp] = ACTIONS(5287), - [anon_sym_BSLASHacf] = ACTIONS(5287), - [anon_sym_BSLASHAcf] = ACTIONS(5287), - [anon_sym_BSLASHacfp] = ACTIONS(5287), - [anon_sym_BSLASHAcfp] = ACTIONS(5287), - [anon_sym_BSLASHac] = ACTIONS(5287), - [anon_sym_BSLASHAc] = ACTIONS(5287), - [anon_sym_BSLASHacp] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5287), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5287), - [anon_sym_BSLASHcolor] = ACTIONS(5287), - [anon_sym_BSLASHcolorbox] = ACTIONS(5287), - [anon_sym_BSLASHtextcolor] = ACTIONS(5287), - [anon_sym_BSLASHpagecolor] = ACTIONS(5287), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5287), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5287), - }, - [1214] = { - [sym_command_name] = ACTIONS(5397), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5397), - [anon_sym_LPAREN] = ACTIONS(5399), - [anon_sym_RPAREN] = ACTIONS(5399), - [anon_sym_LBRACK] = ACTIONS(5399), - [anon_sym_RBRACK] = ACTIONS(5399), - [anon_sym_COMMA] = ACTIONS(5399), - [anon_sym_EQ] = ACTIONS(5399), - [anon_sym_BSLASHpart] = ACTIONS(5397), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5399), - [anon_sym_BSLASHaddpart] = ACTIONS(5397), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5399), - [anon_sym_BSLASHchapter] = ACTIONS(5397), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5399), - [anon_sym_BSLASHaddchap] = ACTIONS(5397), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5399), - [anon_sym_BSLASHsection] = ACTIONS(5397), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5399), - [anon_sym_BSLASHaddsec] = ACTIONS(5397), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5399), - [anon_sym_BSLASHsubsection] = ACTIONS(5397), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5399), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5397), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5399), - [anon_sym_BSLASHparagraph] = ACTIONS(5397), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5399), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5397), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5399), - [anon_sym_BSLASHitem] = ACTIONS(5397), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5399), - [anon_sym_LBRACE] = ACTIONS(5399), - [sym_word] = ACTIONS(5397), - [sym_placeholder] = ACTIONS(5399), - [anon_sym_PLUS] = ACTIONS(5397), - [anon_sym_DASH] = ACTIONS(5397), - [anon_sym_STAR] = ACTIONS(5397), - [anon_sym_SLASH] = ACTIONS(5397), - [anon_sym_CARET] = ACTIONS(5397), - [anon_sym__] = ACTIONS(5397), - [anon_sym_LT] = ACTIONS(5397), - [anon_sym_GT] = ACTIONS(5397), - [anon_sym_BANG] = ACTIONS(5397), - [anon_sym_PIPE] = ACTIONS(5397), - [anon_sym_COLON] = ACTIONS(5397), - [anon_sym_SQUOTE] = ACTIONS(5397), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5399), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5399), - [anon_sym_DOLLAR] = ACTIONS(5397), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5399), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5399), - [anon_sym_BSLASHbegin] = ACTIONS(5397), - [anon_sym_BSLASHend] = ACTIONS(5397), - [anon_sym_BSLASHusepackage] = ACTIONS(5397), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5397), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5397), - [anon_sym_BSLASHinclude] = ACTIONS(5397), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5397), - [anon_sym_BSLASHinput] = ACTIONS(5397), - [anon_sym_BSLASHsubfile] = ACTIONS(5397), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5397), - [anon_sym_BSLASHbibliography] = ACTIONS(5397), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5397), - [anon_sym_BSLASHincludesvg] = ACTIONS(5397), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5397), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5397), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5397), - [anon_sym_BSLASHimport] = ACTIONS(5397), - [anon_sym_BSLASHsubimport] = ACTIONS(5397), - [anon_sym_BSLASHinputfrom] = ACTIONS(5397), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5397), - [anon_sym_BSLASHincludefrom] = ACTIONS(5397), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5397), - [anon_sym_BSLASHcaption] = ACTIONS(5397), - [anon_sym_BSLASHcite] = ACTIONS(5397), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5399), - [anon_sym_BSLASHCite] = ACTIONS(5397), - [anon_sym_BSLASHnocite] = ACTIONS(5397), - [anon_sym_BSLASHcitet] = ACTIONS(5397), - [anon_sym_BSLASHcitep] = ACTIONS(5397), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5399), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5399), - [anon_sym_BSLASHciteauthor] = ACTIONS(5397), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5399), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5397), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5399), - [anon_sym_BSLASHcitetitle] = ACTIONS(5397), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5399), - [anon_sym_BSLASHciteyear] = ACTIONS(5397), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5399), - [anon_sym_BSLASHcitedate] = ACTIONS(5397), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5399), - [anon_sym_BSLASHciteurl] = ACTIONS(5397), - [anon_sym_BSLASHfullcite] = ACTIONS(5397), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5397), - [anon_sym_BSLASHcitealt] = ACTIONS(5397), - [anon_sym_BSLASHcitealp] = ACTIONS(5397), - [anon_sym_BSLASHcitetext] = ACTIONS(5397), - [anon_sym_BSLASHparencite] = ACTIONS(5397), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5399), - [anon_sym_BSLASHParencite] = ACTIONS(5397), - [anon_sym_BSLASHfootcite] = ACTIONS(5397), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5397), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5397), - [anon_sym_BSLASHtextcite] = ACTIONS(5397), - [anon_sym_BSLASHTextcite] = ACTIONS(5397), - [anon_sym_BSLASHsmartcite] = ACTIONS(5397), - [anon_sym_BSLASHSmartcite] = ACTIONS(5397), - [anon_sym_BSLASHsupercite] = ACTIONS(5397), - [anon_sym_BSLASHautocite] = ACTIONS(5397), - [anon_sym_BSLASHAutocite] = ACTIONS(5397), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5399), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5399), - [anon_sym_BSLASHvolcite] = ACTIONS(5397), - [anon_sym_BSLASHVolcite] = ACTIONS(5397), - [anon_sym_BSLASHpvolcite] = ACTIONS(5397), - [anon_sym_BSLASHPvolcite] = ACTIONS(5397), - [anon_sym_BSLASHfvolcite] = ACTIONS(5397), - [anon_sym_BSLASHftvolcite] = ACTIONS(5397), - [anon_sym_BSLASHsvolcite] = ACTIONS(5397), - [anon_sym_BSLASHSvolcite] = ACTIONS(5397), - [anon_sym_BSLASHtvolcite] = ACTIONS(5397), - [anon_sym_BSLASHTvolcite] = ACTIONS(5397), - [anon_sym_BSLASHavolcite] = ACTIONS(5397), - [anon_sym_BSLASHAvolcite] = ACTIONS(5397), - [anon_sym_BSLASHnotecite] = ACTIONS(5397), - [anon_sym_BSLASHNotecite] = ACTIONS(5397), - [anon_sym_BSLASHpnotecite] = ACTIONS(5397), - [anon_sym_BSLASHPnotecite] = ACTIONS(5397), - [anon_sym_BSLASHfnotecite] = ACTIONS(5397), - [anon_sym_BSLASHlabel] = ACTIONS(5397), - [anon_sym_BSLASHref] = ACTIONS(5397), - [anon_sym_BSLASHeqref] = ACTIONS(5397), - [anon_sym_BSLASHvref] = ACTIONS(5397), - [anon_sym_BSLASHVref] = ACTIONS(5397), - [anon_sym_BSLASHautoref] = ACTIONS(5397), - [anon_sym_BSLASHpageref] = ACTIONS(5397), - [anon_sym_BSLASHcref] = ACTIONS(5397), - [anon_sym_BSLASHCref] = ACTIONS(5397), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5399), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5399), - [anon_sym_BSLASHnamecref] = ACTIONS(5397), - [anon_sym_BSLASHnameCref] = ACTIONS(5397), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5397), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5397), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5397), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5397), - [anon_sym_BSLASHlabelcref] = ACTIONS(5397), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5397), - [anon_sym_BSLASHcrefrange] = ACTIONS(5397), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5399), - [anon_sym_BSLASHCrefrange] = ACTIONS(5397), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5399), - [anon_sym_BSLASHnewlabel] = ACTIONS(5397), - [anon_sym_BSLASHnewcommand] = ACTIONS(5397), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5399), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5397), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5399), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5397), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5399), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5397), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5399), - [anon_sym_BSLASHdef] = ACTIONS(5397), - [anon_sym_BSLASHlet] = ACTIONS(5397), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5397), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5397), - [anon_sym_BSLASHgls] = ACTIONS(5397), - [anon_sym_BSLASHGls] = ACTIONS(5397), - [anon_sym_BSLASHGLS] = ACTIONS(5397), - [anon_sym_BSLASHglspl] = ACTIONS(5397), - [anon_sym_BSLASHGlspl] = ACTIONS(5397), - [anon_sym_BSLASHGLSpl] = ACTIONS(5397), - [anon_sym_BSLASHglsdisp] = ACTIONS(5397), - [anon_sym_BSLASHglslink] = ACTIONS(5397), - [anon_sym_BSLASHglstext] = ACTIONS(5397), - [anon_sym_BSLASHGlstext] = ACTIONS(5397), - [anon_sym_BSLASHGLStext] = ACTIONS(5397), - [anon_sym_BSLASHglsfirst] = ACTIONS(5397), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5397), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5397), - [anon_sym_BSLASHglsplural] = ACTIONS(5397), - [anon_sym_BSLASHGlsplural] = ACTIONS(5397), - [anon_sym_BSLASHGLSplural] = ACTIONS(5397), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5397), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5397), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5397), - [anon_sym_BSLASHglsname] = ACTIONS(5397), - [anon_sym_BSLASHGlsname] = ACTIONS(5397), - [anon_sym_BSLASHGLSname] = ACTIONS(5397), - [anon_sym_BSLASHglssymbol] = ACTIONS(5397), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5397), - [anon_sym_BSLASHglsdesc] = ACTIONS(5397), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5397), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5397), - [anon_sym_BSLASHglsuseri] = ACTIONS(5397), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5397), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5397), - [anon_sym_BSLASHglsuserii] = ACTIONS(5397), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5397), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5397), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5397), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5397), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5397), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5397), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5397), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5397), - [anon_sym_BSLASHglsuserv] = ACTIONS(5397), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5397), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5397), - [anon_sym_BSLASHglsuservi] = ACTIONS(5397), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5397), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5397), - [anon_sym_BSLASHnewacronym] = ACTIONS(5397), - [anon_sym_BSLASHacrshort] = ACTIONS(5397), - [anon_sym_BSLASHAcrshort] = ACTIONS(5397), - [anon_sym_BSLASHACRshort] = ACTIONS(5397), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5397), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5397), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5397), - [anon_sym_BSLASHacrlong] = ACTIONS(5397), - [anon_sym_BSLASHAcrlong] = ACTIONS(5397), - [anon_sym_BSLASHACRlong] = ACTIONS(5397), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5397), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5397), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5397), - [anon_sym_BSLASHacrfull] = ACTIONS(5397), - [anon_sym_BSLASHAcrfull] = ACTIONS(5397), - [anon_sym_BSLASHACRfull] = ACTIONS(5397), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5397), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5397), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5397), - [anon_sym_BSLASHacs] = ACTIONS(5397), - [anon_sym_BSLASHAcs] = ACTIONS(5397), - [anon_sym_BSLASHacsp] = ACTIONS(5397), - [anon_sym_BSLASHAcsp] = ACTIONS(5397), - [anon_sym_BSLASHacl] = ACTIONS(5397), - [anon_sym_BSLASHAcl] = ACTIONS(5397), - [anon_sym_BSLASHaclp] = ACTIONS(5397), - [anon_sym_BSLASHAclp] = ACTIONS(5397), - [anon_sym_BSLASHacf] = ACTIONS(5397), - [anon_sym_BSLASHAcf] = ACTIONS(5397), - [anon_sym_BSLASHacfp] = ACTIONS(5397), - [anon_sym_BSLASHAcfp] = ACTIONS(5397), - [anon_sym_BSLASHac] = ACTIONS(5397), - [anon_sym_BSLASHAc] = ACTIONS(5397), - [anon_sym_BSLASHacp] = ACTIONS(5397), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5397), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5397), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5397), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5397), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5397), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5397), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5397), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5397), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5397), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5397), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5397), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5397), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5397), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5397), - [anon_sym_BSLASHcolor] = ACTIONS(5397), - [anon_sym_BSLASHcolorbox] = ACTIONS(5397), - [anon_sym_BSLASHtextcolor] = ACTIONS(5397), - [anon_sym_BSLASHpagecolor] = ACTIONS(5397), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5397), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5397), - }, - [1215] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1752), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5401), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), + [anon_sym_BSLASHcolor] = ACTIONS(5139), + [anon_sym_BSLASHcolorbox] = ACTIONS(5139), + [anon_sym_BSLASHtextcolor] = ACTIONS(5139), + [anon_sym_BSLASHpagecolor] = ACTIONS(5139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHtext] = ACTIONS(5139), + [anon_sym_BSLASHintertext] = ACTIONS(5139), + [anon_sym_shortintertext] = ACTIONS(5139), }, - [1216] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1771), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5403), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), + [1104] = { + [sym_command_name] = ACTIONS(5127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_RPAREN] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_BSLASHpart] = ACTIONS(5127), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddpart] = ACTIONS(5127), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5125), + [anon_sym_BSLASHchapter] = ACTIONS(5127), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddchap] = ACTIONS(5127), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsection] = ACTIONS(5127), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddsec] = ACTIONS(5127), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubsection] = ACTIONS(5127), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5127), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHparagraph] = ACTIONS(5127), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5127), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5125), + [anon_sym_BSLASHitem] = ACTIONS(5127), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5127), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_CARET] = ACTIONS(5127), + [anon_sym__] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5127), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_COLON] = ACTIONS(5127), + [anon_sym_SQUOTE] = ACTIONS(5127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5125), + [anon_sym_DOLLAR] = ACTIONS(5127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5125), + [anon_sym_BSLASHbegin] = ACTIONS(5127), + [anon_sym_BSLASHend] = ACTIONS(5127), + [anon_sym_BSLASHusepackage] = ACTIONS(5127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5127), + [anon_sym_BSLASHinclude] = ACTIONS(5127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5127), + [anon_sym_BSLASHinput] = ACTIONS(5127), + [anon_sym_BSLASHsubfile] = ACTIONS(5127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5127), + [anon_sym_BSLASHbibliography] = ACTIONS(5127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5127), + [anon_sym_BSLASHincludesvg] = ACTIONS(5127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5127), + [anon_sym_BSLASHimport] = ACTIONS(5127), + [anon_sym_BSLASHsubimport] = ACTIONS(5127), + [anon_sym_BSLASHinputfrom] = ACTIONS(5127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5127), + [anon_sym_BSLASHincludefrom] = ACTIONS(5127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5127), + [anon_sym_BSLASHcaption] = ACTIONS(5127), + [anon_sym_BSLASHcite] = ACTIONS(5127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCite] = ACTIONS(5127), + [anon_sym_BSLASHnocite] = ACTIONS(5127), + [anon_sym_BSLASHcitet] = ACTIONS(5127), + [anon_sym_BSLASHcitep] = ACTIONS(5127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteauthor] = ACTIONS(5127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitetitle] = ACTIONS(5127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteyear] = ACTIONS(5127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitedate] = ACTIONS(5127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteurl] = ACTIONS(5127), + [anon_sym_BSLASHfullcite] = ACTIONS(5127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5127), + [anon_sym_BSLASHcitealt] = ACTIONS(5127), + [anon_sym_BSLASHcitealp] = ACTIONS(5127), + [anon_sym_BSLASHcitetext] = ACTIONS(5127), + [anon_sym_BSLASHparencite] = ACTIONS(5127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHParencite] = ACTIONS(5127), + [anon_sym_BSLASHfootcite] = ACTIONS(5127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5127), + [anon_sym_BSLASHtextcite] = ACTIONS(5127), + [anon_sym_BSLASHTextcite] = ACTIONS(5127), + [anon_sym_BSLASHsmartcite] = ACTIONS(5127), + [anon_sym_BSLASHSmartcite] = ACTIONS(5127), + [anon_sym_BSLASHsupercite] = ACTIONS(5127), + [anon_sym_BSLASHautocite] = ACTIONS(5127), + [anon_sym_BSLASHAutocite] = ACTIONS(5127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHvolcite] = ACTIONS(5127), + [anon_sym_BSLASHVolcite] = ACTIONS(5127), + [anon_sym_BSLASHpvolcite] = ACTIONS(5127), + [anon_sym_BSLASHPvolcite] = ACTIONS(5127), + [anon_sym_BSLASHfvolcite] = ACTIONS(5127), + [anon_sym_BSLASHftvolcite] = ACTIONS(5127), + [anon_sym_BSLASHsvolcite] = ACTIONS(5127), + [anon_sym_BSLASHSvolcite] = ACTIONS(5127), + [anon_sym_BSLASHtvolcite] = ACTIONS(5127), + [anon_sym_BSLASHTvolcite] = ACTIONS(5127), + [anon_sym_BSLASHavolcite] = ACTIONS(5127), + [anon_sym_BSLASHAvolcite] = ACTIONS(5127), + [anon_sym_BSLASHnotecite] = ACTIONS(5127), + [anon_sym_BSLASHNotecite] = ACTIONS(5127), + [anon_sym_BSLASHpnotecite] = ACTIONS(5127), + [anon_sym_BSLASHPnotecite] = ACTIONS(5127), + [anon_sym_BSLASHfnotecite] = ACTIONS(5127), + [anon_sym_BSLASHlabel] = ACTIONS(5127), + [anon_sym_BSLASHref] = ACTIONS(5127), + [anon_sym_BSLASHeqref] = ACTIONS(5127), + [anon_sym_BSLASHvref] = ACTIONS(5127), + [anon_sym_BSLASHVref] = ACTIONS(5127), + [anon_sym_BSLASHautoref] = ACTIONS(5127), + [anon_sym_BSLASHpageref] = ACTIONS(5127), + [anon_sym_BSLASHcref] = ACTIONS(5127), + [anon_sym_BSLASHCref] = ACTIONS(5127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5125), + [anon_sym_BSLASHnamecref] = ACTIONS(5127), + [anon_sym_BSLASHnameCref] = ACTIONS(5127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5127), + [anon_sym_BSLASHlabelcref] = ACTIONS(5127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5127), + [anon_sym_BSLASHcrefrange] = ACTIONS(5127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCrefrange] = ACTIONS(5127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5125), + [anon_sym_BSLASHnewlabel] = ACTIONS(5127), + [anon_sym_BSLASHnewcommand] = ACTIONS(5127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5125), + [anon_sym_BSLASHdef] = ACTIONS(5127), + [anon_sym_BSLASHlet] = ACTIONS(5127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5127), + [anon_sym_BSLASHgls] = ACTIONS(5127), + [anon_sym_BSLASHGls] = ACTIONS(5127), + [anon_sym_BSLASHGLS] = ACTIONS(5127), + [anon_sym_BSLASHglspl] = ACTIONS(5127), + [anon_sym_BSLASHGlspl] = ACTIONS(5127), + [anon_sym_BSLASHGLSpl] = ACTIONS(5127), + [anon_sym_BSLASHglsdisp] = ACTIONS(5127), + [anon_sym_BSLASHglslink] = ACTIONS(5127), + [anon_sym_BSLASHglstext] = ACTIONS(5127), + [anon_sym_BSLASHGlstext] = ACTIONS(5127), + [anon_sym_BSLASHGLStext] = ACTIONS(5127), + [anon_sym_BSLASHglsfirst] = ACTIONS(5127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5127), + [anon_sym_BSLASHglsplural] = ACTIONS(5127), + [anon_sym_BSLASHGlsplural] = ACTIONS(5127), + [anon_sym_BSLASHGLSplural] = ACTIONS(5127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHglsname] = ACTIONS(5127), + [anon_sym_BSLASHGlsname] = ACTIONS(5127), + [anon_sym_BSLASHGLSname] = ACTIONS(5127), + [anon_sym_BSLASHglssymbol] = ACTIONS(5127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5127), + [anon_sym_BSLASHglsdesc] = ACTIONS(5127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5127), + [anon_sym_BSLASHglsuseri] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5127), + [anon_sym_BSLASHglsuserii] = ACTIONS(5127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5127), + [anon_sym_BSLASHglsuserv] = ACTIONS(5127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5127), + [anon_sym_BSLASHglsuservi] = ACTIONS(5127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5127), + [anon_sym_BSLASHnewacronym] = ACTIONS(5127), + [anon_sym_BSLASHacrshort] = ACTIONS(5127), + [anon_sym_BSLASHAcrshort] = ACTIONS(5127), + [anon_sym_BSLASHACRshort] = ACTIONS(5127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5127), + [anon_sym_BSLASHacrlong] = ACTIONS(5127), + [anon_sym_BSLASHAcrlong] = ACTIONS(5127), + [anon_sym_BSLASHACRlong] = ACTIONS(5127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5127), + [anon_sym_BSLASHacrfull] = ACTIONS(5127), + [anon_sym_BSLASHAcrfull] = ACTIONS(5127), + [anon_sym_BSLASHACRfull] = ACTIONS(5127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5127), + [anon_sym_BSLASHacs] = ACTIONS(5127), + [anon_sym_BSLASHAcs] = ACTIONS(5127), + [anon_sym_BSLASHacsp] = ACTIONS(5127), + [anon_sym_BSLASHAcsp] = ACTIONS(5127), + [anon_sym_BSLASHacl] = ACTIONS(5127), + [anon_sym_BSLASHAcl] = ACTIONS(5127), + [anon_sym_BSLASHaclp] = ACTIONS(5127), + [anon_sym_BSLASHAclp] = ACTIONS(5127), + [anon_sym_BSLASHacf] = ACTIONS(5127), + [anon_sym_BSLASHAcf] = ACTIONS(5127), + [anon_sym_BSLASHacfp] = ACTIONS(5127), + [anon_sym_BSLASHAcfp] = ACTIONS(5127), + [anon_sym_BSLASHac] = ACTIONS(5127), + [anon_sym_BSLASHAc] = ACTIONS(5127), + [anon_sym_BSLASHacp] = ACTIONS(5127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5127), + [anon_sym_BSLASHcolor] = ACTIONS(5127), + [anon_sym_BSLASHcolorbox] = ACTIONS(5127), + [anon_sym_BSLASHtextcolor] = ACTIONS(5127), + [anon_sym_BSLASHpagecolor] = ACTIONS(5127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5127), + [anon_sym_BSLASHtext] = ACTIONS(5127), + [anon_sym_BSLASHintertext] = ACTIONS(5127), + [anon_sym_shortintertext] = ACTIONS(5127), }, - [1217] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1749), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(5405), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), + [1105] = { + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_RBRACK] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_BSLASHpart] = ACTIONS(5123), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddpart] = ACTIONS(5123), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5121), + [anon_sym_BSLASHchapter] = ACTIONS(5123), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddchap] = ACTIONS(5123), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsection] = ACTIONS(5123), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddsec] = ACTIONS(5123), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubsection] = ACTIONS(5123), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5123), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHparagraph] = ACTIONS(5123), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5123), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5121), + [anon_sym_BSLASHitem] = ACTIONS(5123), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5121), + [sym_word] = ACTIONS(5123), + [sym_placeholder] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5123), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_CARET] = ACTIONS(5123), + [anon_sym__] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5123), + [anon_sym_COLON] = ACTIONS(5123), + [anon_sym_SQUOTE] = ACTIONS(5123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5121), + [anon_sym_DOLLAR] = ACTIONS(5123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5121), + [anon_sym_BSLASHbegin] = ACTIONS(5123), + [anon_sym_BSLASHend] = ACTIONS(5123), + [anon_sym_BSLASHusepackage] = ACTIONS(5123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5123), + [anon_sym_BSLASHinclude] = ACTIONS(5123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5123), + [anon_sym_BSLASHinput] = ACTIONS(5123), + [anon_sym_BSLASHsubfile] = ACTIONS(5123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5123), + [anon_sym_BSLASHbibliography] = ACTIONS(5123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5123), + [anon_sym_BSLASHincludesvg] = ACTIONS(5123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5123), + [anon_sym_BSLASHimport] = ACTIONS(5123), + [anon_sym_BSLASHsubimport] = ACTIONS(5123), + [anon_sym_BSLASHinputfrom] = ACTIONS(5123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5123), + [anon_sym_BSLASHincludefrom] = ACTIONS(5123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5123), + [anon_sym_BSLASHcaption] = ACTIONS(5123), + [anon_sym_BSLASHcite] = ACTIONS(5123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCite] = ACTIONS(5123), + [anon_sym_BSLASHnocite] = ACTIONS(5123), + [anon_sym_BSLASHcitet] = ACTIONS(5123), + [anon_sym_BSLASHcitep] = ACTIONS(5123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteauthor] = ACTIONS(5123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitetitle] = ACTIONS(5123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteyear] = ACTIONS(5123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitedate] = ACTIONS(5123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteurl] = ACTIONS(5123), + [anon_sym_BSLASHfullcite] = ACTIONS(5123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5123), + [anon_sym_BSLASHcitealt] = ACTIONS(5123), + [anon_sym_BSLASHcitealp] = ACTIONS(5123), + [anon_sym_BSLASHcitetext] = ACTIONS(5123), + [anon_sym_BSLASHparencite] = ACTIONS(5123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHParencite] = ACTIONS(5123), + [anon_sym_BSLASHfootcite] = ACTIONS(5123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5123), + [anon_sym_BSLASHtextcite] = ACTIONS(5123), + [anon_sym_BSLASHTextcite] = ACTIONS(5123), + [anon_sym_BSLASHsmartcite] = ACTIONS(5123), + [anon_sym_BSLASHSmartcite] = ACTIONS(5123), + [anon_sym_BSLASHsupercite] = ACTIONS(5123), + [anon_sym_BSLASHautocite] = ACTIONS(5123), + [anon_sym_BSLASHAutocite] = ACTIONS(5123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHvolcite] = ACTIONS(5123), + [anon_sym_BSLASHVolcite] = ACTIONS(5123), + [anon_sym_BSLASHpvolcite] = ACTIONS(5123), + [anon_sym_BSLASHPvolcite] = ACTIONS(5123), + [anon_sym_BSLASHfvolcite] = ACTIONS(5123), + [anon_sym_BSLASHftvolcite] = ACTIONS(5123), + [anon_sym_BSLASHsvolcite] = ACTIONS(5123), + [anon_sym_BSLASHSvolcite] = ACTIONS(5123), + [anon_sym_BSLASHtvolcite] = ACTIONS(5123), + [anon_sym_BSLASHTvolcite] = ACTIONS(5123), + [anon_sym_BSLASHavolcite] = ACTIONS(5123), + [anon_sym_BSLASHAvolcite] = ACTIONS(5123), + [anon_sym_BSLASHnotecite] = ACTIONS(5123), + [anon_sym_BSLASHNotecite] = ACTIONS(5123), + [anon_sym_BSLASHpnotecite] = ACTIONS(5123), + [anon_sym_BSLASHPnotecite] = ACTIONS(5123), + [anon_sym_BSLASHfnotecite] = ACTIONS(5123), + [anon_sym_BSLASHlabel] = ACTIONS(5123), + [anon_sym_BSLASHref] = ACTIONS(5123), + [anon_sym_BSLASHeqref] = ACTIONS(5123), + [anon_sym_BSLASHvref] = ACTIONS(5123), + [anon_sym_BSLASHVref] = ACTIONS(5123), + [anon_sym_BSLASHautoref] = ACTIONS(5123), + [anon_sym_BSLASHpageref] = ACTIONS(5123), + [anon_sym_BSLASHcref] = ACTIONS(5123), + [anon_sym_BSLASHCref] = ACTIONS(5123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5121), + [anon_sym_BSLASHnamecref] = ACTIONS(5123), + [anon_sym_BSLASHnameCref] = ACTIONS(5123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5123), + [anon_sym_BSLASHlabelcref] = ACTIONS(5123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5123), + [anon_sym_BSLASHcrefrange] = ACTIONS(5123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCrefrange] = ACTIONS(5123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5121), + [anon_sym_BSLASHnewlabel] = ACTIONS(5123), + [anon_sym_BSLASHnewcommand] = ACTIONS(5123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5121), + [anon_sym_BSLASHdef] = ACTIONS(5123), + [anon_sym_BSLASHlet] = ACTIONS(5123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5123), + [anon_sym_BSLASHgls] = ACTIONS(5123), + [anon_sym_BSLASHGls] = ACTIONS(5123), + [anon_sym_BSLASHGLS] = ACTIONS(5123), + [anon_sym_BSLASHglspl] = ACTIONS(5123), + [anon_sym_BSLASHGlspl] = ACTIONS(5123), + [anon_sym_BSLASHGLSpl] = ACTIONS(5123), + [anon_sym_BSLASHglsdisp] = ACTIONS(5123), + [anon_sym_BSLASHglslink] = ACTIONS(5123), + [anon_sym_BSLASHglstext] = ACTIONS(5123), + [anon_sym_BSLASHGlstext] = ACTIONS(5123), + [anon_sym_BSLASHGLStext] = ACTIONS(5123), + [anon_sym_BSLASHglsfirst] = ACTIONS(5123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5123), + [anon_sym_BSLASHglsplural] = ACTIONS(5123), + [anon_sym_BSLASHGlsplural] = ACTIONS(5123), + [anon_sym_BSLASHGLSplural] = ACTIONS(5123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHglsname] = ACTIONS(5123), + [anon_sym_BSLASHGlsname] = ACTIONS(5123), + [anon_sym_BSLASHGLSname] = ACTIONS(5123), + [anon_sym_BSLASHglssymbol] = ACTIONS(5123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5123), + [anon_sym_BSLASHglsdesc] = ACTIONS(5123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5123), + [anon_sym_BSLASHglsuseri] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5123), + [anon_sym_BSLASHglsuserii] = ACTIONS(5123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5123), + [anon_sym_BSLASHglsuserv] = ACTIONS(5123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5123), + [anon_sym_BSLASHglsuservi] = ACTIONS(5123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5123), + [anon_sym_BSLASHnewacronym] = ACTIONS(5123), + [anon_sym_BSLASHacrshort] = ACTIONS(5123), + [anon_sym_BSLASHAcrshort] = ACTIONS(5123), + [anon_sym_BSLASHACRshort] = ACTIONS(5123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5123), + [anon_sym_BSLASHacrlong] = ACTIONS(5123), + [anon_sym_BSLASHAcrlong] = ACTIONS(5123), + [anon_sym_BSLASHACRlong] = ACTIONS(5123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5123), + [anon_sym_BSLASHacrfull] = ACTIONS(5123), + [anon_sym_BSLASHAcrfull] = ACTIONS(5123), + [anon_sym_BSLASHACRfull] = ACTIONS(5123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5123), + [anon_sym_BSLASHacs] = ACTIONS(5123), + [anon_sym_BSLASHAcs] = ACTIONS(5123), + [anon_sym_BSLASHacsp] = ACTIONS(5123), + [anon_sym_BSLASHAcsp] = ACTIONS(5123), + [anon_sym_BSLASHacl] = ACTIONS(5123), + [anon_sym_BSLASHAcl] = ACTIONS(5123), + [anon_sym_BSLASHaclp] = ACTIONS(5123), + [anon_sym_BSLASHAclp] = ACTIONS(5123), + [anon_sym_BSLASHacf] = ACTIONS(5123), + [anon_sym_BSLASHAcf] = ACTIONS(5123), + [anon_sym_BSLASHacfp] = ACTIONS(5123), + [anon_sym_BSLASHAcfp] = ACTIONS(5123), + [anon_sym_BSLASHac] = ACTIONS(5123), + [anon_sym_BSLASHAc] = ACTIONS(5123), + [anon_sym_BSLASHacp] = ACTIONS(5123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5123), + [anon_sym_BSLASHcolor] = ACTIONS(5123), + [anon_sym_BSLASHcolorbox] = ACTIONS(5123), + [anon_sym_BSLASHtextcolor] = ACTIONS(5123), + [anon_sym_BSLASHpagecolor] = ACTIONS(5123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5123), + [anon_sym_BSLASHtext] = ACTIONS(5123), + [anon_sym_BSLASHintertext] = ACTIONS(5123), + [anon_sym_shortintertext] = ACTIONS(5123), }, - [1218] = { - [sym_command_name] = ACTIONS(5407), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5407), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_RPAREN] = ACTIONS(5409), - [anon_sym_LBRACK] = ACTIONS(5409), - [anon_sym_RBRACK] = ACTIONS(5409), - [anon_sym_COMMA] = ACTIONS(5409), - [anon_sym_EQ] = ACTIONS(5409), - [anon_sym_BSLASHpart] = ACTIONS(5407), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddpart] = ACTIONS(5407), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5409), - [anon_sym_BSLASHchapter] = ACTIONS(5407), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddchap] = ACTIONS(5407), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsection] = ACTIONS(5407), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHaddsec] = ACTIONS(5407), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubsection] = ACTIONS(5407), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5407), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5409), - [anon_sym_BSLASHparagraph] = ACTIONS(5407), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5409), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5407), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5409), - [anon_sym_BSLASHitem] = ACTIONS(5407), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5409), - [anon_sym_LBRACE] = ACTIONS(5409), - [sym_word] = ACTIONS(5407), - [sym_placeholder] = ACTIONS(5409), - [anon_sym_PLUS] = ACTIONS(5407), - [anon_sym_DASH] = ACTIONS(5407), - [anon_sym_STAR] = ACTIONS(5407), - [anon_sym_SLASH] = ACTIONS(5407), - [anon_sym_CARET] = ACTIONS(5407), - [anon_sym__] = ACTIONS(5407), - [anon_sym_LT] = ACTIONS(5407), - [anon_sym_GT] = ACTIONS(5407), - [anon_sym_BANG] = ACTIONS(5407), - [anon_sym_PIPE] = ACTIONS(5407), - [anon_sym_COLON] = ACTIONS(5407), - [anon_sym_SQUOTE] = ACTIONS(5407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5407), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5409), - [anon_sym_BSLASHbegin] = ACTIONS(5407), - [anon_sym_BSLASHend] = ACTIONS(5407), - [anon_sym_BSLASHusepackage] = ACTIONS(5407), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5407), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5407), - [anon_sym_BSLASHinclude] = ACTIONS(5407), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5407), - [anon_sym_BSLASHinput] = ACTIONS(5407), - [anon_sym_BSLASHsubfile] = ACTIONS(5407), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5407), - [anon_sym_BSLASHbibliography] = ACTIONS(5407), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5407), - [anon_sym_BSLASHincludesvg] = ACTIONS(5407), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5407), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5407), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5407), - [anon_sym_BSLASHimport] = ACTIONS(5407), - [anon_sym_BSLASHsubimport] = ACTIONS(5407), - [anon_sym_BSLASHinputfrom] = ACTIONS(5407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5407), - [anon_sym_BSLASHincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHcaption] = ACTIONS(5407), - [anon_sym_BSLASHcite] = ACTIONS(5407), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCite] = ACTIONS(5407), - [anon_sym_BSLASHnocite] = ACTIONS(5407), - [anon_sym_BSLASHcitet] = ACTIONS(5407), - [anon_sym_BSLASHcitep] = ACTIONS(5407), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteauthor] = ACTIONS(5407), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5407), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitetitle] = ACTIONS(5407), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteyear] = ACTIONS(5407), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitedate] = ACTIONS(5407), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteurl] = ACTIONS(5407), - [anon_sym_BSLASHfullcite] = ACTIONS(5407), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5407), - [anon_sym_BSLASHcitealt] = ACTIONS(5407), - [anon_sym_BSLASHcitealp] = ACTIONS(5407), - [anon_sym_BSLASHcitetext] = ACTIONS(5407), - [anon_sym_BSLASHparencite] = ACTIONS(5407), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHParencite] = ACTIONS(5407), - [anon_sym_BSLASHfootcite] = ACTIONS(5407), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5407), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5407), - [anon_sym_BSLASHtextcite] = ACTIONS(5407), - [anon_sym_BSLASHTextcite] = ACTIONS(5407), - [anon_sym_BSLASHsmartcite] = ACTIONS(5407), - [anon_sym_BSLASHSmartcite] = ACTIONS(5407), - [anon_sym_BSLASHsupercite] = ACTIONS(5407), - [anon_sym_BSLASHautocite] = ACTIONS(5407), - [anon_sym_BSLASHAutocite] = ACTIONS(5407), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHvolcite] = ACTIONS(5407), - [anon_sym_BSLASHVolcite] = ACTIONS(5407), - [anon_sym_BSLASHpvolcite] = ACTIONS(5407), - [anon_sym_BSLASHPvolcite] = ACTIONS(5407), - [anon_sym_BSLASHfvolcite] = ACTIONS(5407), - [anon_sym_BSLASHftvolcite] = ACTIONS(5407), - [anon_sym_BSLASHsvolcite] = ACTIONS(5407), - [anon_sym_BSLASHSvolcite] = ACTIONS(5407), - [anon_sym_BSLASHtvolcite] = ACTIONS(5407), - [anon_sym_BSLASHTvolcite] = ACTIONS(5407), - [anon_sym_BSLASHavolcite] = ACTIONS(5407), - [anon_sym_BSLASHAvolcite] = ACTIONS(5407), - [anon_sym_BSLASHnotecite] = ACTIONS(5407), - [anon_sym_BSLASHNotecite] = ACTIONS(5407), - [anon_sym_BSLASHpnotecite] = ACTIONS(5407), - [anon_sym_BSLASHPnotecite] = ACTIONS(5407), - [anon_sym_BSLASHfnotecite] = ACTIONS(5407), - [anon_sym_BSLASHlabel] = ACTIONS(5407), - [anon_sym_BSLASHref] = ACTIONS(5407), - [anon_sym_BSLASHeqref] = ACTIONS(5407), - [anon_sym_BSLASHvref] = ACTIONS(5407), - [anon_sym_BSLASHVref] = ACTIONS(5407), - [anon_sym_BSLASHautoref] = ACTIONS(5407), - [anon_sym_BSLASHpageref] = ACTIONS(5407), - [anon_sym_BSLASHcref] = ACTIONS(5407), - [anon_sym_BSLASHCref] = ACTIONS(5407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnameCref] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHlabelcref] = ACTIONS(5407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCrefrange] = ACTIONS(5407), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnewlabel] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5407), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5407), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5407), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdef] = ACTIONS(5407), - [anon_sym_BSLASHlet] = ACTIONS(5407), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5407), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5407), - [anon_sym_BSLASHgls] = ACTIONS(5407), - [anon_sym_BSLASHGls] = ACTIONS(5407), - [anon_sym_BSLASHGLS] = ACTIONS(5407), - [anon_sym_BSLASHglspl] = ACTIONS(5407), - [anon_sym_BSLASHGlspl] = ACTIONS(5407), - [anon_sym_BSLASHGLSpl] = ACTIONS(5407), - [anon_sym_BSLASHglsdisp] = ACTIONS(5407), - [anon_sym_BSLASHglslink] = ACTIONS(5407), - [anon_sym_BSLASHglstext] = ACTIONS(5407), - [anon_sym_BSLASHGlstext] = ACTIONS(5407), - [anon_sym_BSLASHGLStext] = ACTIONS(5407), - [anon_sym_BSLASHglsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5407), - [anon_sym_BSLASHglsplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSplural] = ACTIONS(5407), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHglsname] = ACTIONS(5407), - [anon_sym_BSLASHGlsname] = ACTIONS(5407), - [anon_sym_BSLASHGLSname] = ACTIONS(5407), - [anon_sym_BSLASHglssymbol] = ACTIONS(5407), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5407), - [anon_sym_BSLASHglsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5407), - [anon_sym_BSLASHglsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5407), - [anon_sym_BSLASHglsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5407), - [anon_sym_BSLASHglsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5407), - [anon_sym_BSLASHglsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5407), - [anon_sym_BSLASHnewacronym] = ACTIONS(5407), - [anon_sym_BSLASHacrshort] = ACTIONS(5407), - [anon_sym_BSLASHAcrshort] = ACTIONS(5407), - [anon_sym_BSLASHACRshort] = ACTIONS(5407), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5407), - [anon_sym_BSLASHacrlong] = ACTIONS(5407), - [anon_sym_BSLASHAcrlong] = ACTIONS(5407), - [anon_sym_BSLASHACRlong] = ACTIONS(5407), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5407), - [anon_sym_BSLASHacrfull] = ACTIONS(5407), - [anon_sym_BSLASHAcrfull] = ACTIONS(5407), - [anon_sym_BSLASHACRfull] = ACTIONS(5407), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5407), - [anon_sym_BSLASHacs] = ACTIONS(5407), - [anon_sym_BSLASHAcs] = ACTIONS(5407), - [anon_sym_BSLASHacsp] = ACTIONS(5407), - [anon_sym_BSLASHAcsp] = ACTIONS(5407), - [anon_sym_BSLASHacl] = ACTIONS(5407), - [anon_sym_BSLASHAcl] = ACTIONS(5407), - [anon_sym_BSLASHaclp] = ACTIONS(5407), - [anon_sym_BSLASHAclp] = ACTIONS(5407), - [anon_sym_BSLASHacf] = ACTIONS(5407), - [anon_sym_BSLASHAcf] = ACTIONS(5407), - [anon_sym_BSLASHacfp] = ACTIONS(5407), - [anon_sym_BSLASHAcfp] = ACTIONS(5407), - [anon_sym_BSLASHac] = ACTIONS(5407), - [anon_sym_BSLASHAc] = ACTIONS(5407), - [anon_sym_BSLASHacp] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5407), - [anon_sym_BSLASHcolor] = ACTIONS(5407), - [anon_sym_BSLASHcolorbox] = ACTIONS(5407), - [anon_sym_BSLASHtextcolor] = ACTIONS(5407), - [anon_sym_BSLASHpagecolor] = ACTIONS(5407), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5407), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5407), + [1106] = { + [sym_command_name] = ACTIONS(5115), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5115), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_RPAREN] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_RBRACK] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_EQ] = ACTIONS(5113), + [anon_sym_BSLASHpart] = ACTIONS(5115), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddpart] = ACTIONS(5115), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5113), + [anon_sym_BSLASHchapter] = ACTIONS(5115), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddchap] = ACTIONS(5115), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsection] = ACTIONS(5115), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddsec] = ACTIONS(5115), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubsection] = ACTIONS(5115), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5115), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHparagraph] = ACTIONS(5115), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5115), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5113), + [anon_sym_BSLASHitem] = ACTIONS(5115), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(5113), + [sym_word] = ACTIONS(5115), + [sym_placeholder] = ACTIONS(5113), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_CARET] = ACTIONS(5115), + [anon_sym__] = ACTIONS(5115), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_BANG] = ACTIONS(5115), + [anon_sym_PIPE] = ACTIONS(5115), + [anon_sym_COLON] = ACTIONS(5115), + [anon_sym_SQUOTE] = ACTIONS(5115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5113), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5113), + [anon_sym_DOLLAR] = ACTIONS(5115), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5113), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5113), + [anon_sym_BSLASHbegin] = ACTIONS(5115), + [anon_sym_BSLASHend] = ACTIONS(5115), + [anon_sym_BSLASHusepackage] = ACTIONS(5115), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5115), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5115), + [anon_sym_BSLASHinclude] = ACTIONS(5115), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5115), + [anon_sym_BSLASHinput] = ACTIONS(5115), + [anon_sym_BSLASHsubfile] = ACTIONS(5115), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5115), + [anon_sym_BSLASHbibliography] = ACTIONS(5115), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5115), + [anon_sym_BSLASHincludesvg] = ACTIONS(5115), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5115), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5115), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5115), + [anon_sym_BSLASHimport] = ACTIONS(5115), + [anon_sym_BSLASHsubimport] = ACTIONS(5115), + [anon_sym_BSLASHinputfrom] = ACTIONS(5115), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5115), + [anon_sym_BSLASHincludefrom] = ACTIONS(5115), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5115), + [anon_sym_BSLASHcaption] = ACTIONS(5115), + [anon_sym_BSLASHcite] = ACTIONS(5115), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCite] = ACTIONS(5115), + [anon_sym_BSLASHnocite] = ACTIONS(5115), + [anon_sym_BSLASHcitet] = ACTIONS(5115), + [anon_sym_BSLASHcitep] = ACTIONS(5115), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteauthor] = ACTIONS(5115), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5115), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitetitle] = ACTIONS(5115), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteyear] = ACTIONS(5115), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitedate] = ACTIONS(5115), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteurl] = ACTIONS(5115), + [anon_sym_BSLASHfullcite] = ACTIONS(5115), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5115), + [anon_sym_BSLASHcitealt] = ACTIONS(5115), + [anon_sym_BSLASHcitealp] = ACTIONS(5115), + [anon_sym_BSLASHcitetext] = ACTIONS(5115), + [anon_sym_BSLASHparencite] = ACTIONS(5115), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHParencite] = ACTIONS(5115), + [anon_sym_BSLASHfootcite] = ACTIONS(5115), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5115), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5115), + [anon_sym_BSLASHtextcite] = ACTIONS(5115), + [anon_sym_BSLASHTextcite] = ACTIONS(5115), + [anon_sym_BSLASHsmartcite] = ACTIONS(5115), + [anon_sym_BSLASHSmartcite] = ACTIONS(5115), + [anon_sym_BSLASHsupercite] = ACTIONS(5115), + [anon_sym_BSLASHautocite] = ACTIONS(5115), + [anon_sym_BSLASHAutocite] = ACTIONS(5115), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHvolcite] = ACTIONS(5115), + [anon_sym_BSLASHVolcite] = ACTIONS(5115), + [anon_sym_BSLASHpvolcite] = ACTIONS(5115), + [anon_sym_BSLASHPvolcite] = ACTIONS(5115), + [anon_sym_BSLASHfvolcite] = ACTIONS(5115), + [anon_sym_BSLASHftvolcite] = ACTIONS(5115), + [anon_sym_BSLASHsvolcite] = ACTIONS(5115), + [anon_sym_BSLASHSvolcite] = ACTIONS(5115), + [anon_sym_BSLASHtvolcite] = ACTIONS(5115), + [anon_sym_BSLASHTvolcite] = ACTIONS(5115), + [anon_sym_BSLASHavolcite] = ACTIONS(5115), + [anon_sym_BSLASHAvolcite] = ACTIONS(5115), + [anon_sym_BSLASHnotecite] = ACTIONS(5115), + [anon_sym_BSLASHNotecite] = ACTIONS(5115), + [anon_sym_BSLASHpnotecite] = ACTIONS(5115), + [anon_sym_BSLASHPnotecite] = ACTIONS(5115), + [anon_sym_BSLASHfnotecite] = ACTIONS(5115), + [anon_sym_BSLASHlabel] = ACTIONS(5115), + [anon_sym_BSLASHref] = ACTIONS(5115), + [anon_sym_BSLASHeqref] = ACTIONS(5115), + [anon_sym_BSLASHvref] = ACTIONS(5115), + [anon_sym_BSLASHVref] = ACTIONS(5115), + [anon_sym_BSLASHautoref] = ACTIONS(5115), + [anon_sym_BSLASHpageref] = ACTIONS(5115), + [anon_sym_BSLASHcref] = ACTIONS(5115), + [anon_sym_BSLASHCref] = ACTIONS(5115), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5113), + [anon_sym_BSLASHnamecref] = ACTIONS(5115), + [anon_sym_BSLASHnameCref] = ACTIONS(5115), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5115), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5115), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5115), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5115), + [anon_sym_BSLASHlabelcref] = ACTIONS(5115), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5115), + [anon_sym_BSLASHcrefrange] = ACTIONS(5115), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCrefrange] = ACTIONS(5115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5113), + [anon_sym_BSLASHnewlabel] = ACTIONS(5115), + [anon_sym_BSLASHnewcommand] = ACTIONS(5115), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5115), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5115), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5115), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5113), + [anon_sym_BSLASHdef] = ACTIONS(5115), + [anon_sym_BSLASHlet] = ACTIONS(5115), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5115), + [anon_sym_BSLASHgls] = ACTIONS(5115), + [anon_sym_BSLASHGls] = ACTIONS(5115), + [anon_sym_BSLASHGLS] = ACTIONS(5115), + [anon_sym_BSLASHglspl] = ACTIONS(5115), + [anon_sym_BSLASHGlspl] = ACTIONS(5115), + [anon_sym_BSLASHGLSpl] = ACTIONS(5115), + [anon_sym_BSLASHglsdisp] = ACTIONS(5115), + [anon_sym_BSLASHglslink] = ACTIONS(5115), + [anon_sym_BSLASHglstext] = ACTIONS(5115), + [anon_sym_BSLASHGlstext] = ACTIONS(5115), + [anon_sym_BSLASHGLStext] = ACTIONS(5115), + [anon_sym_BSLASHglsfirst] = ACTIONS(5115), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5115), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5115), + [anon_sym_BSLASHglsplural] = ACTIONS(5115), + [anon_sym_BSLASHGlsplural] = ACTIONS(5115), + [anon_sym_BSLASHGLSplural] = ACTIONS(5115), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHglsname] = ACTIONS(5115), + [anon_sym_BSLASHGlsname] = ACTIONS(5115), + [anon_sym_BSLASHGLSname] = ACTIONS(5115), + [anon_sym_BSLASHglssymbol] = ACTIONS(5115), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5115), + [anon_sym_BSLASHglsdesc] = ACTIONS(5115), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5115), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5115), + [anon_sym_BSLASHglsuseri] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5115), + [anon_sym_BSLASHglsuserii] = ACTIONS(5115), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5115), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5115), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5115), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5115), + [anon_sym_BSLASHglsuserv] = ACTIONS(5115), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5115), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5115), + [anon_sym_BSLASHglsuservi] = ACTIONS(5115), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5115), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5115), + [anon_sym_BSLASHnewacronym] = ACTIONS(5115), + [anon_sym_BSLASHacrshort] = ACTIONS(5115), + [anon_sym_BSLASHAcrshort] = ACTIONS(5115), + [anon_sym_BSLASHACRshort] = ACTIONS(5115), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5115), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5115), + [anon_sym_BSLASHacrlong] = ACTIONS(5115), + [anon_sym_BSLASHAcrlong] = ACTIONS(5115), + [anon_sym_BSLASHACRlong] = ACTIONS(5115), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5115), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5115), + [anon_sym_BSLASHacrfull] = ACTIONS(5115), + [anon_sym_BSLASHAcrfull] = ACTIONS(5115), + [anon_sym_BSLASHACRfull] = ACTIONS(5115), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5115), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5115), + [anon_sym_BSLASHacs] = ACTIONS(5115), + [anon_sym_BSLASHAcs] = ACTIONS(5115), + [anon_sym_BSLASHacsp] = ACTIONS(5115), + [anon_sym_BSLASHAcsp] = ACTIONS(5115), + [anon_sym_BSLASHacl] = ACTIONS(5115), + [anon_sym_BSLASHAcl] = ACTIONS(5115), + [anon_sym_BSLASHaclp] = ACTIONS(5115), + [anon_sym_BSLASHAclp] = ACTIONS(5115), + [anon_sym_BSLASHacf] = ACTIONS(5115), + [anon_sym_BSLASHAcf] = ACTIONS(5115), + [anon_sym_BSLASHacfp] = ACTIONS(5115), + [anon_sym_BSLASHAcfp] = ACTIONS(5115), + [anon_sym_BSLASHac] = ACTIONS(5115), + [anon_sym_BSLASHAc] = ACTIONS(5115), + [anon_sym_BSLASHacp] = ACTIONS(5115), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5115), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5115), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5115), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5115), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5115), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5115), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5115), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5115), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5115), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5115), + [anon_sym_BSLASHcolor] = ACTIONS(5115), + [anon_sym_BSLASHcolorbox] = ACTIONS(5115), + [anon_sym_BSLASHtextcolor] = ACTIONS(5115), + [anon_sym_BSLASHpagecolor] = ACTIONS(5115), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5115), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5115), + [anon_sym_BSLASHtext] = ACTIONS(5115), + [anon_sym_BSLASHintertext] = ACTIONS(5115), + [anon_sym_shortintertext] = ACTIONS(5115), }, - [1219] = { - [sym_command_name] = ACTIONS(5037), + [1107] = { + [sym_command_name] = ACTIONS(5109), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_BSLASHpart] = ACTIONS(5037), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddpart] = ACTIONS(5037), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), - [anon_sym_BSLASHchapter] = ACTIONS(5037), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddchap] = ACTIONS(5037), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsection] = ACTIONS(5037), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHaddsec] = ACTIONS(5037), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), - [anon_sym_BSLASHparagraph] = ACTIONS(5037), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), - [anon_sym_BSLASHitem] = ACTIONS(5037), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASHbegin] = ACTIONS(5037), - [anon_sym_BSLASHend] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), - }, - [1220] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1744), - [sym_operator] = STATE(1509), - [sym_key_value_pair] = STATE(1776), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1221] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1733), - [sym_operator] = STATE(1509), - [sym_key_value_pair] = STATE(1776), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), + [anon_sym_BSLASHiffalse] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [anon_sym_RBRACK] = ACTIONS(5107), + [anon_sym_COMMA] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_BSLASHpart] = ACTIONS(5109), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddpart] = ACTIONS(5109), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), + [anon_sym_BSLASHchapter] = ACTIONS(5109), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddchap] = ACTIONS(5109), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsection] = ACTIONS(5109), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddsec] = ACTIONS(5109), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubsection] = ACTIONS(5109), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHparagraph] = ACTIONS(5109), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), + [anon_sym_BSLASHitem] = ACTIONS(5109), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), + [anon_sym_LBRACE] = ACTIONS(5107), + [sym_word] = ACTIONS(5109), + [sym_placeholder] = ACTIONS(5107), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_CARET] = ACTIONS(5109), + [anon_sym__] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_BANG] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5109), + [anon_sym_COLON] = ACTIONS(5109), + [anon_sym_SQUOTE] = ACTIONS(5109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), + [anon_sym_DOLLAR] = ACTIONS(5109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), + [anon_sym_BSLASHbegin] = ACTIONS(5109), + [anon_sym_BSLASHend] = ACTIONS(5109), + [anon_sym_BSLASHusepackage] = ACTIONS(5109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), + [anon_sym_BSLASHinclude] = ACTIONS(5109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), + [anon_sym_BSLASHinput] = ACTIONS(5109), + [anon_sym_BSLASHsubfile] = ACTIONS(5109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), + [anon_sym_BSLASHbibliography] = ACTIONS(5109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), + [anon_sym_BSLASHincludesvg] = ACTIONS(5109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), + [anon_sym_BSLASHimport] = ACTIONS(5109), + [anon_sym_BSLASHsubimport] = ACTIONS(5109), + [anon_sym_BSLASHinputfrom] = ACTIONS(5109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), + [anon_sym_BSLASHincludefrom] = ACTIONS(5109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), + [anon_sym_BSLASHcaption] = ACTIONS(5109), + [anon_sym_BSLASHcite] = ACTIONS(5109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCite] = ACTIONS(5109), + [anon_sym_BSLASHnocite] = ACTIONS(5109), + [anon_sym_BSLASHcitet] = ACTIONS(5109), + [anon_sym_BSLASHcitep] = ACTIONS(5109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteauthor] = ACTIONS(5109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitetitle] = ACTIONS(5109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteyear] = ACTIONS(5109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitedate] = ACTIONS(5109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteurl] = ACTIONS(5109), + [anon_sym_BSLASHfullcite] = ACTIONS(5109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), + [anon_sym_BSLASHcitealt] = ACTIONS(5109), + [anon_sym_BSLASHcitealp] = ACTIONS(5109), + [anon_sym_BSLASHcitetext] = ACTIONS(5109), + [anon_sym_BSLASHparencite] = ACTIONS(5109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHParencite] = ACTIONS(5109), + [anon_sym_BSLASHfootcite] = ACTIONS(5109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), + [anon_sym_BSLASHtextcite] = ACTIONS(5109), + [anon_sym_BSLASHTextcite] = ACTIONS(5109), + [anon_sym_BSLASHsmartcite] = ACTIONS(5109), + [anon_sym_BSLASHSmartcite] = ACTIONS(5109), + [anon_sym_BSLASHsupercite] = ACTIONS(5109), + [anon_sym_BSLASHautocite] = ACTIONS(5109), + [anon_sym_BSLASHAutocite] = ACTIONS(5109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHvolcite] = ACTIONS(5109), + [anon_sym_BSLASHVolcite] = ACTIONS(5109), + [anon_sym_BSLASHpvolcite] = ACTIONS(5109), + [anon_sym_BSLASHPvolcite] = ACTIONS(5109), + [anon_sym_BSLASHfvolcite] = ACTIONS(5109), + [anon_sym_BSLASHftvolcite] = ACTIONS(5109), + [anon_sym_BSLASHsvolcite] = ACTIONS(5109), + [anon_sym_BSLASHSvolcite] = ACTIONS(5109), + [anon_sym_BSLASHtvolcite] = ACTIONS(5109), + [anon_sym_BSLASHTvolcite] = ACTIONS(5109), + [anon_sym_BSLASHavolcite] = ACTIONS(5109), + [anon_sym_BSLASHAvolcite] = ACTIONS(5109), + [anon_sym_BSLASHnotecite] = ACTIONS(5109), + [anon_sym_BSLASHNotecite] = ACTIONS(5109), + [anon_sym_BSLASHpnotecite] = ACTIONS(5109), + [anon_sym_BSLASHPnotecite] = ACTIONS(5109), + [anon_sym_BSLASHfnotecite] = ACTIONS(5109), + [anon_sym_BSLASHlabel] = ACTIONS(5109), + [anon_sym_BSLASHref] = ACTIONS(5109), + [anon_sym_BSLASHeqref] = ACTIONS(5109), + [anon_sym_BSLASHvref] = ACTIONS(5109), + [anon_sym_BSLASHVref] = ACTIONS(5109), + [anon_sym_BSLASHautoref] = ACTIONS(5109), + [anon_sym_BSLASHpageref] = ACTIONS(5109), + [anon_sym_BSLASHcref] = ACTIONS(5109), + [anon_sym_BSLASHCref] = ACTIONS(5109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), + [anon_sym_BSLASHnamecref] = ACTIONS(5109), + [anon_sym_BSLASHnameCref] = ACTIONS(5109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), + [anon_sym_BSLASHlabelcref] = ACTIONS(5109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), + [anon_sym_BSLASHcrefrange] = ACTIONS(5109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCrefrange] = ACTIONS(5109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), + [anon_sym_BSLASHnewlabel] = ACTIONS(5109), + [anon_sym_BSLASHnewcommand] = ACTIONS(5109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), + [anon_sym_BSLASHdef] = ACTIONS(5109), + [anon_sym_BSLASHlet] = ACTIONS(5109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), + [anon_sym_BSLASHgls] = ACTIONS(5109), + [anon_sym_BSLASHGls] = ACTIONS(5109), + [anon_sym_BSLASHGLS] = ACTIONS(5109), + [anon_sym_BSLASHglspl] = ACTIONS(5109), + [anon_sym_BSLASHGlspl] = ACTIONS(5109), + [anon_sym_BSLASHGLSpl] = ACTIONS(5109), + [anon_sym_BSLASHglsdisp] = ACTIONS(5109), + [anon_sym_BSLASHglslink] = ACTIONS(5109), + [anon_sym_BSLASHglstext] = ACTIONS(5109), + [anon_sym_BSLASHGlstext] = ACTIONS(5109), + [anon_sym_BSLASHGLStext] = ACTIONS(5109), + [anon_sym_BSLASHglsfirst] = ACTIONS(5109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), + [anon_sym_BSLASHglsplural] = ACTIONS(5109), + [anon_sym_BSLASHGlsplural] = ACTIONS(5109), + [anon_sym_BSLASHGLSplural] = ACTIONS(5109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHglsname] = ACTIONS(5109), + [anon_sym_BSLASHGlsname] = ACTIONS(5109), + [anon_sym_BSLASHGLSname] = ACTIONS(5109), + [anon_sym_BSLASHglssymbol] = ACTIONS(5109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), + [anon_sym_BSLASHglsdesc] = ACTIONS(5109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), + [anon_sym_BSLASHglsuseri] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), + [anon_sym_BSLASHglsuserii] = ACTIONS(5109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), + [anon_sym_BSLASHglsuserv] = ACTIONS(5109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), + [anon_sym_BSLASHglsuservi] = ACTIONS(5109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), + [anon_sym_BSLASHnewacronym] = ACTIONS(5109), + [anon_sym_BSLASHacrshort] = ACTIONS(5109), + [anon_sym_BSLASHAcrshort] = ACTIONS(5109), + [anon_sym_BSLASHACRshort] = ACTIONS(5109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), + [anon_sym_BSLASHacrlong] = ACTIONS(5109), + [anon_sym_BSLASHAcrlong] = ACTIONS(5109), + [anon_sym_BSLASHACRlong] = ACTIONS(5109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), + [anon_sym_BSLASHacrfull] = ACTIONS(5109), + [anon_sym_BSLASHAcrfull] = ACTIONS(5109), + [anon_sym_BSLASHACRfull] = ACTIONS(5109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), + [anon_sym_BSLASHacs] = ACTIONS(5109), + [anon_sym_BSLASHAcs] = ACTIONS(5109), + [anon_sym_BSLASHacsp] = ACTIONS(5109), + [anon_sym_BSLASHAcsp] = ACTIONS(5109), + [anon_sym_BSLASHacl] = ACTIONS(5109), + [anon_sym_BSLASHAcl] = ACTIONS(5109), + [anon_sym_BSLASHaclp] = ACTIONS(5109), + [anon_sym_BSLASHAclp] = ACTIONS(5109), + [anon_sym_BSLASHacf] = ACTIONS(5109), + [anon_sym_BSLASHAcf] = ACTIONS(5109), + [anon_sym_BSLASHacfp] = ACTIONS(5109), + [anon_sym_BSLASHAcfp] = ACTIONS(5109), + [anon_sym_BSLASHac] = ACTIONS(5109), + [anon_sym_BSLASHAc] = ACTIONS(5109), + [anon_sym_BSLASHacp] = ACTIONS(5109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), + [anon_sym_BSLASHcolor] = ACTIONS(5109), + [anon_sym_BSLASHcolorbox] = ACTIONS(5109), + [anon_sym_BSLASHtextcolor] = ACTIONS(5109), + [anon_sym_BSLASHpagecolor] = ACTIONS(5109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), + [anon_sym_BSLASHtext] = ACTIONS(5109), + [anon_sym_BSLASHintertext] = ACTIONS(5109), + [anon_sym_shortintertext] = ACTIONS(5109), }, - [1222] = { - [sym_command_name] = ACTIONS(5217), + [1108] = { + [sym_command_name] = ACTIONS(5077), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_BSLASHpart] = ACTIONS(5217), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddpart] = ACTIONS(5217), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), - [anon_sym_BSLASHchapter] = ACTIONS(5217), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddchap] = ACTIONS(5217), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsection] = ACTIONS(5217), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHaddsec] = ACTIONS(5217), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), - [anon_sym_BSLASHparagraph] = ACTIONS(5217), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), - [anon_sym_BSLASHitem] = ACTIONS(5217), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASHbegin] = ACTIONS(5217), - [anon_sym_BSLASHend] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [anon_sym_BSLASHiffalse] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_RPAREN] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_RBRACK] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_EQ] = ACTIONS(5075), + [anon_sym_BSLASHpart] = ACTIONS(5077), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddpart] = ACTIONS(5077), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), + [anon_sym_BSLASHchapter] = ACTIONS(5077), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddchap] = ACTIONS(5077), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsection] = ACTIONS(5077), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddsec] = ACTIONS(5077), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubsection] = ACTIONS(5077), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHparagraph] = ACTIONS(5077), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), + [anon_sym_BSLASHitem] = ACTIONS(5077), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5075), + [sym_word] = ACTIONS(5077), + [sym_placeholder] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_CARET] = ACTIONS(5077), + [anon_sym__] = ACTIONS(5077), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_PIPE] = ACTIONS(5077), + [anon_sym_COLON] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), + [anon_sym_DOLLAR] = ACTIONS(5077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), + [anon_sym_BSLASHbegin] = ACTIONS(5077), + [anon_sym_BSLASHend] = ACTIONS(5077), + [anon_sym_BSLASHusepackage] = ACTIONS(5077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), + [anon_sym_BSLASHinclude] = ACTIONS(5077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), + [anon_sym_BSLASHinput] = ACTIONS(5077), + [anon_sym_BSLASHsubfile] = ACTIONS(5077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), + [anon_sym_BSLASHbibliography] = ACTIONS(5077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), + [anon_sym_BSLASHincludesvg] = ACTIONS(5077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), + [anon_sym_BSLASHimport] = ACTIONS(5077), + [anon_sym_BSLASHsubimport] = ACTIONS(5077), + [anon_sym_BSLASHinputfrom] = ACTIONS(5077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), + [anon_sym_BSLASHincludefrom] = ACTIONS(5077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), + [anon_sym_BSLASHcaption] = ACTIONS(5077), + [anon_sym_BSLASHcite] = ACTIONS(5077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCite] = ACTIONS(5077), + [anon_sym_BSLASHnocite] = ACTIONS(5077), + [anon_sym_BSLASHcitet] = ACTIONS(5077), + [anon_sym_BSLASHcitep] = ACTIONS(5077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteauthor] = ACTIONS(5077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitetitle] = ACTIONS(5077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteyear] = ACTIONS(5077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitedate] = ACTIONS(5077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteurl] = ACTIONS(5077), + [anon_sym_BSLASHfullcite] = ACTIONS(5077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), + [anon_sym_BSLASHcitealt] = ACTIONS(5077), + [anon_sym_BSLASHcitealp] = ACTIONS(5077), + [anon_sym_BSLASHcitetext] = ACTIONS(5077), + [anon_sym_BSLASHparencite] = ACTIONS(5077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHParencite] = ACTIONS(5077), + [anon_sym_BSLASHfootcite] = ACTIONS(5077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), + [anon_sym_BSLASHtextcite] = ACTIONS(5077), + [anon_sym_BSLASHTextcite] = ACTIONS(5077), + [anon_sym_BSLASHsmartcite] = ACTIONS(5077), + [anon_sym_BSLASHSmartcite] = ACTIONS(5077), + [anon_sym_BSLASHsupercite] = ACTIONS(5077), + [anon_sym_BSLASHautocite] = ACTIONS(5077), + [anon_sym_BSLASHAutocite] = ACTIONS(5077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHvolcite] = ACTIONS(5077), + [anon_sym_BSLASHVolcite] = ACTIONS(5077), + [anon_sym_BSLASHpvolcite] = ACTIONS(5077), + [anon_sym_BSLASHPvolcite] = ACTIONS(5077), + [anon_sym_BSLASHfvolcite] = ACTIONS(5077), + [anon_sym_BSLASHftvolcite] = ACTIONS(5077), + [anon_sym_BSLASHsvolcite] = ACTIONS(5077), + [anon_sym_BSLASHSvolcite] = ACTIONS(5077), + [anon_sym_BSLASHtvolcite] = ACTIONS(5077), + [anon_sym_BSLASHTvolcite] = ACTIONS(5077), + [anon_sym_BSLASHavolcite] = ACTIONS(5077), + [anon_sym_BSLASHAvolcite] = ACTIONS(5077), + [anon_sym_BSLASHnotecite] = ACTIONS(5077), + [anon_sym_BSLASHNotecite] = ACTIONS(5077), + [anon_sym_BSLASHpnotecite] = ACTIONS(5077), + [anon_sym_BSLASHPnotecite] = ACTIONS(5077), + [anon_sym_BSLASHfnotecite] = ACTIONS(5077), + [anon_sym_BSLASHlabel] = ACTIONS(5077), + [anon_sym_BSLASHref] = ACTIONS(5077), + [anon_sym_BSLASHeqref] = ACTIONS(5077), + [anon_sym_BSLASHvref] = ACTIONS(5077), + [anon_sym_BSLASHVref] = ACTIONS(5077), + [anon_sym_BSLASHautoref] = ACTIONS(5077), + [anon_sym_BSLASHpageref] = ACTIONS(5077), + [anon_sym_BSLASHcref] = ACTIONS(5077), + [anon_sym_BSLASHCref] = ACTIONS(5077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), + [anon_sym_BSLASHnamecref] = ACTIONS(5077), + [anon_sym_BSLASHnameCref] = ACTIONS(5077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), + [anon_sym_BSLASHlabelcref] = ACTIONS(5077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), + [anon_sym_BSLASHcrefrange] = ACTIONS(5077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCrefrange] = ACTIONS(5077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), + [anon_sym_BSLASHnewlabel] = ACTIONS(5077), + [anon_sym_BSLASHnewcommand] = ACTIONS(5077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), + [anon_sym_BSLASHdef] = ACTIONS(5077), + [anon_sym_BSLASHlet] = ACTIONS(5077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), + [anon_sym_BSLASHgls] = ACTIONS(5077), + [anon_sym_BSLASHGls] = ACTIONS(5077), + [anon_sym_BSLASHGLS] = ACTIONS(5077), + [anon_sym_BSLASHglspl] = ACTIONS(5077), + [anon_sym_BSLASHGlspl] = ACTIONS(5077), + [anon_sym_BSLASHGLSpl] = ACTIONS(5077), + [anon_sym_BSLASHglsdisp] = ACTIONS(5077), + [anon_sym_BSLASHglslink] = ACTIONS(5077), + [anon_sym_BSLASHglstext] = ACTIONS(5077), + [anon_sym_BSLASHGlstext] = ACTIONS(5077), + [anon_sym_BSLASHGLStext] = ACTIONS(5077), + [anon_sym_BSLASHglsfirst] = ACTIONS(5077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), + [anon_sym_BSLASHglsplural] = ACTIONS(5077), + [anon_sym_BSLASHGlsplural] = ACTIONS(5077), + [anon_sym_BSLASHGLSplural] = ACTIONS(5077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHglsname] = ACTIONS(5077), + [anon_sym_BSLASHGlsname] = ACTIONS(5077), + [anon_sym_BSLASHGLSname] = ACTIONS(5077), + [anon_sym_BSLASHglssymbol] = ACTIONS(5077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), + [anon_sym_BSLASHglsdesc] = ACTIONS(5077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), + [anon_sym_BSLASHglsuseri] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), + [anon_sym_BSLASHglsuserii] = ACTIONS(5077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), + [anon_sym_BSLASHglsuserv] = ACTIONS(5077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), + [anon_sym_BSLASHglsuservi] = ACTIONS(5077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), + [anon_sym_BSLASHnewacronym] = ACTIONS(5077), + [anon_sym_BSLASHacrshort] = ACTIONS(5077), + [anon_sym_BSLASHAcrshort] = ACTIONS(5077), + [anon_sym_BSLASHACRshort] = ACTIONS(5077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), + [anon_sym_BSLASHacrlong] = ACTIONS(5077), + [anon_sym_BSLASHAcrlong] = ACTIONS(5077), + [anon_sym_BSLASHACRlong] = ACTIONS(5077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), + [anon_sym_BSLASHacrfull] = ACTIONS(5077), + [anon_sym_BSLASHAcrfull] = ACTIONS(5077), + [anon_sym_BSLASHACRfull] = ACTIONS(5077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), + [anon_sym_BSLASHacs] = ACTIONS(5077), + [anon_sym_BSLASHAcs] = ACTIONS(5077), + [anon_sym_BSLASHacsp] = ACTIONS(5077), + [anon_sym_BSLASHAcsp] = ACTIONS(5077), + [anon_sym_BSLASHacl] = ACTIONS(5077), + [anon_sym_BSLASHAcl] = ACTIONS(5077), + [anon_sym_BSLASHaclp] = ACTIONS(5077), + [anon_sym_BSLASHAclp] = ACTIONS(5077), + [anon_sym_BSLASHacf] = ACTIONS(5077), + [anon_sym_BSLASHAcf] = ACTIONS(5077), + [anon_sym_BSLASHacfp] = ACTIONS(5077), + [anon_sym_BSLASHAcfp] = ACTIONS(5077), + [anon_sym_BSLASHac] = ACTIONS(5077), + [anon_sym_BSLASHAc] = ACTIONS(5077), + [anon_sym_BSLASHacp] = ACTIONS(5077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), + [anon_sym_BSLASHcolor] = ACTIONS(5077), + [anon_sym_BSLASHcolorbox] = ACTIONS(5077), + [anon_sym_BSLASHtextcolor] = ACTIONS(5077), + [anon_sym_BSLASHpagecolor] = ACTIONS(5077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), + [anon_sym_BSLASHtext] = ACTIONS(5077), + [anon_sym_BSLASHintertext] = ACTIONS(5077), + [anon_sym_shortintertext] = ACTIONS(5077), }, - [1223] = { - [sym_command_name] = ACTIONS(5221), + [1109] = { + [sym_command_name] = ACTIONS(5069), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_BSLASHpart] = ACTIONS(5221), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddpart] = ACTIONS(5221), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), - [anon_sym_BSLASHchapter] = ACTIONS(5221), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddchap] = ACTIONS(5221), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsection] = ACTIONS(5221), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHaddsec] = ACTIONS(5221), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), - [anon_sym_BSLASHparagraph] = ACTIONS(5221), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), - [anon_sym_BSLASHitem] = ACTIONS(5221), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASHbegin] = ACTIONS(5221), - [anon_sym_BSLASHend] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), - }, - [1224] = { - [sym_command_name] = ACTIONS(5231), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5231), - [anon_sym_LPAREN] = ACTIONS(5229), - [anon_sym_RPAREN] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_RBRACK] = ACTIONS(5229), - [anon_sym_COMMA] = ACTIONS(5229), - [anon_sym_EQ] = ACTIONS(5229), - [anon_sym_BSLASHpart] = ACTIONS(5231), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddpart] = ACTIONS(5231), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5229), - [anon_sym_BSLASHchapter] = ACTIONS(5231), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddchap] = ACTIONS(5231), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsection] = ACTIONS(5231), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHaddsec] = ACTIONS(5231), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubsection] = ACTIONS(5231), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5231), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5229), - [anon_sym_BSLASHparagraph] = ACTIONS(5231), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5229), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5231), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5229), - [anon_sym_BSLASHitem] = ACTIONS(5231), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5229), - [sym_word] = ACTIONS(5231), - [sym_placeholder] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_SLASH] = ACTIONS(5231), - [anon_sym_CARET] = ACTIONS(5231), - [anon_sym__] = ACTIONS(5231), - [anon_sym_LT] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5231), - [anon_sym_BANG] = ACTIONS(5231), - [anon_sym_PIPE] = ACTIONS(5231), - [anon_sym_COLON] = ACTIONS(5231), - [anon_sym_SQUOTE] = ACTIONS(5231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), - [anon_sym_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), - [anon_sym_BSLASHbegin] = ACTIONS(5231), - [anon_sym_BSLASHend] = ACTIONS(5231), - [anon_sym_BSLASHusepackage] = ACTIONS(5231), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), - [anon_sym_BSLASHinclude] = ACTIONS(5231), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), - [anon_sym_BSLASHinput] = ACTIONS(5231), - [anon_sym_BSLASHsubfile] = ACTIONS(5231), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), - [anon_sym_BSLASHbibliography] = ACTIONS(5231), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), - [anon_sym_BSLASHincludesvg] = ACTIONS(5231), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), - [anon_sym_BSLASHimport] = ACTIONS(5231), - [anon_sym_BSLASHsubimport] = ACTIONS(5231), - [anon_sym_BSLASHinputfrom] = ACTIONS(5231), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), - [anon_sym_BSLASHincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHcaption] = ACTIONS(5231), - [anon_sym_BSLASHcite] = ACTIONS(5231), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCite] = ACTIONS(5231), - [anon_sym_BSLASHnocite] = ACTIONS(5231), - [anon_sym_BSLASHcitet] = ACTIONS(5231), - [anon_sym_BSLASHcitep] = ACTIONS(5231), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteyear] = ACTIONS(5231), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitedate] = ACTIONS(5231), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteurl] = ACTIONS(5231), - [anon_sym_BSLASHfullcite] = ACTIONS(5231), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), - [anon_sym_BSLASHcitealt] = ACTIONS(5231), - [anon_sym_BSLASHcitealp] = ACTIONS(5231), - [anon_sym_BSLASHcitetext] = ACTIONS(5231), - [anon_sym_BSLASHparencite] = ACTIONS(5231), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHParencite] = ACTIONS(5231), - [anon_sym_BSLASHfootcite] = ACTIONS(5231), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), - [anon_sym_BSLASHtextcite] = ACTIONS(5231), - [anon_sym_BSLASHTextcite] = ACTIONS(5231), - [anon_sym_BSLASHsmartcite] = ACTIONS(5231), - [anon_sym_BSLASHSmartcite] = ACTIONS(5231), - [anon_sym_BSLASHsupercite] = ACTIONS(5231), - [anon_sym_BSLASHautocite] = ACTIONS(5231), - [anon_sym_BSLASHAutocite] = ACTIONS(5231), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHvolcite] = ACTIONS(5231), - [anon_sym_BSLASHVolcite] = ACTIONS(5231), - [anon_sym_BSLASHpvolcite] = ACTIONS(5231), - [anon_sym_BSLASHPvolcite] = ACTIONS(5231), - [anon_sym_BSLASHfvolcite] = ACTIONS(5231), - [anon_sym_BSLASHftvolcite] = ACTIONS(5231), - [anon_sym_BSLASHsvolcite] = ACTIONS(5231), - [anon_sym_BSLASHSvolcite] = ACTIONS(5231), - [anon_sym_BSLASHtvolcite] = ACTIONS(5231), - [anon_sym_BSLASHTvolcite] = ACTIONS(5231), - [anon_sym_BSLASHavolcite] = ACTIONS(5231), - [anon_sym_BSLASHAvolcite] = ACTIONS(5231), - [anon_sym_BSLASHnotecite] = ACTIONS(5231), - [anon_sym_BSLASHNotecite] = ACTIONS(5231), - [anon_sym_BSLASHpnotecite] = ACTIONS(5231), - [anon_sym_BSLASHPnotecite] = ACTIONS(5231), - [anon_sym_BSLASHfnotecite] = ACTIONS(5231), - [anon_sym_BSLASHlabel] = ACTIONS(5231), - [anon_sym_BSLASHref] = ACTIONS(5231), - [anon_sym_BSLASHeqref] = ACTIONS(5231), - [anon_sym_BSLASHvref] = ACTIONS(5231), - [anon_sym_BSLASHVref] = ACTIONS(5231), - [anon_sym_BSLASHautoref] = ACTIONS(5231), - [anon_sym_BSLASHpageref] = ACTIONS(5231), - [anon_sym_BSLASHcref] = ACTIONS(5231), - [anon_sym_BSLASHCref] = ACTIONS(5231), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnameCref] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHlabelcref] = ACTIONS(5231), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnewlabel] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), - [anon_sym_BSLASHdef] = ACTIONS(5231), - [anon_sym_BSLASHlet] = ACTIONS(5231), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), - [anon_sym_BSLASHgls] = ACTIONS(5231), - [anon_sym_BSLASHGls] = ACTIONS(5231), - [anon_sym_BSLASHGLS] = ACTIONS(5231), - [anon_sym_BSLASHglspl] = ACTIONS(5231), - [anon_sym_BSLASHGlspl] = ACTIONS(5231), - [anon_sym_BSLASHGLSpl] = ACTIONS(5231), - [anon_sym_BSLASHglsdisp] = ACTIONS(5231), - [anon_sym_BSLASHglslink] = ACTIONS(5231), - [anon_sym_BSLASHglstext] = ACTIONS(5231), - [anon_sym_BSLASHGlstext] = ACTIONS(5231), - [anon_sym_BSLASHGLStext] = ACTIONS(5231), - [anon_sym_BSLASHglsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), - [anon_sym_BSLASHglsplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSplural] = ACTIONS(5231), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHglsname] = ACTIONS(5231), - [anon_sym_BSLASHGlsname] = ACTIONS(5231), - [anon_sym_BSLASHGLSname] = ACTIONS(5231), - [anon_sym_BSLASHglssymbol] = ACTIONS(5231), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), - [anon_sym_BSLASHglsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), - [anon_sym_BSLASHglsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), - [anon_sym_BSLASHglsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), - [anon_sym_BSLASHglsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), - [anon_sym_BSLASHglsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), - [anon_sym_BSLASHnewacronym] = ACTIONS(5231), - [anon_sym_BSLASHacrshort] = ACTIONS(5231), - [anon_sym_BSLASHAcrshort] = ACTIONS(5231), - [anon_sym_BSLASHACRshort] = ACTIONS(5231), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), - [anon_sym_BSLASHacrlong] = ACTIONS(5231), - [anon_sym_BSLASHAcrlong] = ACTIONS(5231), - [anon_sym_BSLASHACRlong] = ACTIONS(5231), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), - [anon_sym_BSLASHacrfull] = ACTIONS(5231), - [anon_sym_BSLASHAcrfull] = ACTIONS(5231), - [anon_sym_BSLASHACRfull] = ACTIONS(5231), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), - [anon_sym_BSLASHacs] = ACTIONS(5231), - [anon_sym_BSLASHAcs] = ACTIONS(5231), - [anon_sym_BSLASHacsp] = ACTIONS(5231), - [anon_sym_BSLASHAcsp] = ACTIONS(5231), - [anon_sym_BSLASHacl] = ACTIONS(5231), - [anon_sym_BSLASHAcl] = ACTIONS(5231), - [anon_sym_BSLASHaclp] = ACTIONS(5231), - [anon_sym_BSLASHAclp] = ACTIONS(5231), - [anon_sym_BSLASHacf] = ACTIONS(5231), - [anon_sym_BSLASHAcf] = ACTIONS(5231), - [anon_sym_BSLASHacfp] = ACTIONS(5231), - [anon_sym_BSLASHAcfp] = ACTIONS(5231), - [anon_sym_BSLASHac] = ACTIONS(5231), - [anon_sym_BSLASHAc] = ACTIONS(5231), - [anon_sym_BSLASHacp] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), - [anon_sym_BSLASHcolor] = ACTIONS(5231), - [anon_sym_BSLASHcolorbox] = ACTIONS(5231), - [anon_sym_BSLASHtextcolor] = ACTIONS(5231), - [anon_sym_BSLASHpagecolor] = ACTIONS(5231), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), - }, - [1225] = { - [sym_command_name] = ACTIONS(5235), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5235), - [anon_sym_LPAREN] = ACTIONS(5233), - [anon_sym_RPAREN] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_RBRACK] = ACTIONS(5233), - [anon_sym_COMMA] = ACTIONS(5233), - [anon_sym_EQ] = ACTIONS(5233), - [anon_sym_BSLASHpart] = ACTIONS(5235), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddpart] = ACTIONS(5235), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5233), - [anon_sym_BSLASHchapter] = ACTIONS(5235), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddchap] = ACTIONS(5235), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsection] = ACTIONS(5235), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHaddsec] = ACTIONS(5235), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubsection] = ACTIONS(5235), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5235), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5233), - [anon_sym_BSLASHparagraph] = ACTIONS(5235), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5233), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5235), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5233), - [anon_sym_BSLASHitem] = ACTIONS(5235), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5233), - [sym_word] = ACTIONS(5235), - [sym_placeholder] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_CARET] = ACTIONS(5235), - [anon_sym__] = ACTIONS(5235), - [anon_sym_LT] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5235), - [anon_sym_BANG] = ACTIONS(5235), - [anon_sym_PIPE] = ACTIONS(5235), - [anon_sym_COLON] = ACTIONS(5235), - [anon_sym_SQUOTE] = ACTIONS(5235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), - [anon_sym_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), - [anon_sym_BSLASHbegin] = ACTIONS(5235), - [anon_sym_BSLASHend] = ACTIONS(5235), - [anon_sym_BSLASHusepackage] = ACTIONS(5235), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), - [anon_sym_BSLASHinclude] = ACTIONS(5235), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), - [anon_sym_BSLASHinput] = ACTIONS(5235), - [anon_sym_BSLASHsubfile] = ACTIONS(5235), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), - [anon_sym_BSLASHbibliography] = ACTIONS(5235), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), - [anon_sym_BSLASHincludesvg] = ACTIONS(5235), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), - [anon_sym_BSLASHimport] = ACTIONS(5235), - [anon_sym_BSLASHsubimport] = ACTIONS(5235), - [anon_sym_BSLASHinputfrom] = ACTIONS(5235), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), - [anon_sym_BSLASHincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHcaption] = ACTIONS(5235), - [anon_sym_BSLASHcite] = ACTIONS(5235), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCite] = ACTIONS(5235), - [anon_sym_BSLASHnocite] = ACTIONS(5235), - [anon_sym_BSLASHcitet] = ACTIONS(5235), - [anon_sym_BSLASHcitep] = ACTIONS(5235), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteyear] = ACTIONS(5235), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitedate] = ACTIONS(5235), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteurl] = ACTIONS(5235), - [anon_sym_BSLASHfullcite] = ACTIONS(5235), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), - [anon_sym_BSLASHcitealt] = ACTIONS(5235), - [anon_sym_BSLASHcitealp] = ACTIONS(5235), - [anon_sym_BSLASHcitetext] = ACTIONS(5235), - [anon_sym_BSLASHparencite] = ACTIONS(5235), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHParencite] = ACTIONS(5235), - [anon_sym_BSLASHfootcite] = ACTIONS(5235), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), - [anon_sym_BSLASHtextcite] = ACTIONS(5235), - [anon_sym_BSLASHTextcite] = ACTIONS(5235), - [anon_sym_BSLASHsmartcite] = ACTIONS(5235), - [anon_sym_BSLASHSmartcite] = ACTIONS(5235), - [anon_sym_BSLASHsupercite] = ACTIONS(5235), - [anon_sym_BSLASHautocite] = ACTIONS(5235), - [anon_sym_BSLASHAutocite] = ACTIONS(5235), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHvolcite] = ACTIONS(5235), - [anon_sym_BSLASHVolcite] = ACTIONS(5235), - [anon_sym_BSLASHpvolcite] = ACTIONS(5235), - [anon_sym_BSLASHPvolcite] = ACTIONS(5235), - [anon_sym_BSLASHfvolcite] = ACTIONS(5235), - [anon_sym_BSLASHftvolcite] = ACTIONS(5235), - [anon_sym_BSLASHsvolcite] = ACTIONS(5235), - [anon_sym_BSLASHSvolcite] = ACTIONS(5235), - [anon_sym_BSLASHtvolcite] = ACTIONS(5235), - [anon_sym_BSLASHTvolcite] = ACTIONS(5235), - [anon_sym_BSLASHavolcite] = ACTIONS(5235), - [anon_sym_BSLASHAvolcite] = ACTIONS(5235), - [anon_sym_BSLASHnotecite] = ACTIONS(5235), - [anon_sym_BSLASHNotecite] = ACTIONS(5235), - [anon_sym_BSLASHpnotecite] = ACTIONS(5235), - [anon_sym_BSLASHPnotecite] = ACTIONS(5235), - [anon_sym_BSLASHfnotecite] = ACTIONS(5235), - [anon_sym_BSLASHlabel] = ACTIONS(5235), - [anon_sym_BSLASHref] = ACTIONS(5235), - [anon_sym_BSLASHeqref] = ACTIONS(5235), - [anon_sym_BSLASHvref] = ACTIONS(5235), - [anon_sym_BSLASHVref] = ACTIONS(5235), - [anon_sym_BSLASHautoref] = ACTIONS(5235), - [anon_sym_BSLASHpageref] = ACTIONS(5235), - [anon_sym_BSLASHcref] = ACTIONS(5235), - [anon_sym_BSLASHCref] = ACTIONS(5235), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnameCref] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHlabelcref] = ACTIONS(5235), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnewlabel] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), - [anon_sym_BSLASHdef] = ACTIONS(5235), - [anon_sym_BSLASHlet] = ACTIONS(5235), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), - [anon_sym_BSLASHgls] = ACTIONS(5235), - [anon_sym_BSLASHGls] = ACTIONS(5235), - [anon_sym_BSLASHGLS] = ACTIONS(5235), - [anon_sym_BSLASHglspl] = ACTIONS(5235), - [anon_sym_BSLASHGlspl] = ACTIONS(5235), - [anon_sym_BSLASHGLSpl] = ACTIONS(5235), - [anon_sym_BSLASHglsdisp] = ACTIONS(5235), - [anon_sym_BSLASHglslink] = ACTIONS(5235), - [anon_sym_BSLASHglstext] = ACTIONS(5235), - [anon_sym_BSLASHGlstext] = ACTIONS(5235), - [anon_sym_BSLASHGLStext] = ACTIONS(5235), - [anon_sym_BSLASHglsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), - [anon_sym_BSLASHglsplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSplural] = ACTIONS(5235), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHglsname] = ACTIONS(5235), - [anon_sym_BSLASHGlsname] = ACTIONS(5235), - [anon_sym_BSLASHGLSname] = ACTIONS(5235), - [anon_sym_BSLASHglssymbol] = ACTIONS(5235), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), - [anon_sym_BSLASHglsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), - [anon_sym_BSLASHglsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), - [anon_sym_BSLASHglsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), - [anon_sym_BSLASHglsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), - [anon_sym_BSLASHglsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), - [anon_sym_BSLASHnewacronym] = ACTIONS(5235), - [anon_sym_BSLASHacrshort] = ACTIONS(5235), - [anon_sym_BSLASHAcrshort] = ACTIONS(5235), - [anon_sym_BSLASHACRshort] = ACTIONS(5235), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), - [anon_sym_BSLASHacrlong] = ACTIONS(5235), - [anon_sym_BSLASHAcrlong] = ACTIONS(5235), - [anon_sym_BSLASHACRlong] = ACTIONS(5235), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), - [anon_sym_BSLASHacrfull] = ACTIONS(5235), - [anon_sym_BSLASHAcrfull] = ACTIONS(5235), - [anon_sym_BSLASHACRfull] = ACTIONS(5235), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), - [anon_sym_BSLASHacs] = ACTIONS(5235), - [anon_sym_BSLASHAcs] = ACTIONS(5235), - [anon_sym_BSLASHacsp] = ACTIONS(5235), - [anon_sym_BSLASHAcsp] = ACTIONS(5235), - [anon_sym_BSLASHacl] = ACTIONS(5235), - [anon_sym_BSLASHAcl] = ACTIONS(5235), - [anon_sym_BSLASHaclp] = ACTIONS(5235), - [anon_sym_BSLASHAclp] = ACTIONS(5235), - [anon_sym_BSLASHacf] = ACTIONS(5235), - [anon_sym_BSLASHAcf] = ACTIONS(5235), - [anon_sym_BSLASHacfp] = ACTIONS(5235), - [anon_sym_BSLASHAcfp] = ACTIONS(5235), - [anon_sym_BSLASHac] = ACTIONS(5235), - [anon_sym_BSLASHAc] = ACTIONS(5235), - [anon_sym_BSLASHacp] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), - [anon_sym_BSLASHcolor] = ACTIONS(5235), - [anon_sym_BSLASHcolorbox] = ACTIONS(5235), - [anon_sym_BSLASHtextcolor] = ACTIONS(5235), - [anon_sym_BSLASHpagecolor] = ACTIONS(5235), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), - }, - [1226] = { - [sym_command_name] = ACTIONS(5239), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5237), - [anon_sym_RPAREN] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_RBRACK] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_EQ] = ACTIONS(5237), - [anon_sym_BSLASHpart] = ACTIONS(5239), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddpart] = ACTIONS(5239), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5237), - [anon_sym_BSLASHchapter] = ACTIONS(5239), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddchap] = ACTIONS(5239), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsection] = ACTIONS(5239), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHaddsec] = ACTIONS(5239), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubsection] = ACTIONS(5239), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5239), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5237), - [anon_sym_BSLASHparagraph] = ACTIONS(5239), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5237), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5239), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5237), - [anon_sym_BSLASHitem] = ACTIONS(5239), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5237), - [sym_word] = ACTIONS(5239), - [sym_placeholder] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym__] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_BANG] = ACTIONS(5239), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_COLON] = ACTIONS(5239), - [anon_sym_SQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), - [anon_sym_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), - [anon_sym_BSLASHbegin] = ACTIONS(5239), - [anon_sym_BSLASHend] = ACTIONS(5239), - [anon_sym_BSLASHusepackage] = ACTIONS(5239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), - [anon_sym_BSLASHinclude] = ACTIONS(5239), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), - [anon_sym_BSLASHinput] = ACTIONS(5239), - [anon_sym_BSLASHsubfile] = ACTIONS(5239), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), - [anon_sym_BSLASHbibliography] = ACTIONS(5239), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), - [anon_sym_BSLASHincludesvg] = ACTIONS(5239), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), - [anon_sym_BSLASHimport] = ACTIONS(5239), - [anon_sym_BSLASHsubimport] = ACTIONS(5239), - [anon_sym_BSLASHinputfrom] = ACTIONS(5239), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), - [anon_sym_BSLASHincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHcaption] = ACTIONS(5239), - [anon_sym_BSLASHcite] = ACTIONS(5239), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCite] = ACTIONS(5239), - [anon_sym_BSLASHnocite] = ACTIONS(5239), - [anon_sym_BSLASHcitet] = ACTIONS(5239), - [anon_sym_BSLASHcitep] = ACTIONS(5239), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteyear] = ACTIONS(5239), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitedate] = ACTIONS(5239), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteurl] = ACTIONS(5239), - [anon_sym_BSLASHfullcite] = ACTIONS(5239), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), - [anon_sym_BSLASHcitealt] = ACTIONS(5239), - [anon_sym_BSLASHcitealp] = ACTIONS(5239), - [anon_sym_BSLASHcitetext] = ACTIONS(5239), - [anon_sym_BSLASHparencite] = ACTIONS(5239), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHParencite] = ACTIONS(5239), - [anon_sym_BSLASHfootcite] = ACTIONS(5239), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), - [anon_sym_BSLASHtextcite] = ACTIONS(5239), - [anon_sym_BSLASHTextcite] = ACTIONS(5239), - [anon_sym_BSLASHsmartcite] = ACTIONS(5239), - [anon_sym_BSLASHSmartcite] = ACTIONS(5239), - [anon_sym_BSLASHsupercite] = ACTIONS(5239), - [anon_sym_BSLASHautocite] = ACTIONS(5239), - [anon_sym_BSLASHAutocite] = ACTIONS(5239), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHvolcite] = ACTIONS(5239), - [anon_sym_BSLASHVolcite] = ACTIONS(5239), - [anon_sym_BSLASHpvolcite] = ACTIONS(5239), - [anon_sym_BSLASHPvolcite] = ACTIONS(5239), - [anon_sym_BSLASHfvolcite] = ACTIONS(5239), - [anon_sym_BSLASHftvolcite] = ACTIONS(5239), - [anon_sym_BSLASHsvolcite] = ACTIONS(5239), - [anon_sym_BSLASHSvolcite] = ACTIONS(5239), - [anon_sym_BSLASHtvolcite] = ACTIONS(5239), - [anon_sym_BSLASHTvolcite] = ACTIONS(5239), - [anon_sym_BSLASHavolcite] = ACTIONS(5239), - [anon_sym_BSLASHAvolcite] = ACTIONS(5239), - [anon_sym_BSLASHnotecite] = ACTIONS(5239), - [anon_sym_BSLASHNotecite] = ACTIONS(5239), - [anon_sym_BSLASHpnotecite] = ACTIONS(5239), - [anon_sym_BSLASHPnotecite] = ACTIONS(5239), - [anon_sym_BSLASHfnotecite] = ACTIONS(5239), - [anon_sym_BSLASHlabel] = ACTIONS(5239), - [anon_sym_BSLASHref] = ACTIONS(5239), - [anon_sym_BSLASHeqref] = ACTIONS(5239), - [anon_sym_BSLASHvref] = ACTIONS(5239), - [anon_sym_BSLASHVref] = ACTIONS(5239), - [anon_sym_BSLASHautoref] = ACTIONS(5239), - [anon_sym_BSLASHpageref] = ACTIONS(5239), - [anon_sym_BSLASHcref] = ACTIONS(5239), - [anon_sym_BSLASHCref] = ACTIONS(5239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnameCref] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHlabelcref] = ACTIONS(5239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnewlabel] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), - [anon_sym_BSLASHdef] = ACTIONS(5239), - [anon_sym_BSLASHlet] = ACTIONS(5239), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), - [anon_sym_BSLASHgls] = ACTIONS(5239), - [anon_sym_BSLASHGls] = ACTIONS(5239), - [anon_sym_BSLASHGLS] = ACTIONS(5239), - [anon_sym_BSLASHglspl] = ACTIONS(5239), - [anon_sym_BSLASHGlspl] = ACTIONS(5239), - [anon_sym_BSLASHGLSpl] = ACTIONS(5239), - [anon_sym_BSLASHglsdisp] = ACTIONS(5239), - [anon_sym_BSLASHglslink] = ACTIONS(5239), - [anon_sym_BSLASHglstext] = ACTIONS(5239), - [anon_sym_BSLASHGlstext] = ACTIONS(5239), - [anon_sym_BSLASHGLStext] = ACTIONS(5239), - [anon_sym_BSLASHglsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), - [anon_sym_BSLASHglsplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSplural] = ACTIONS(5239), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHglsname] = ACTIONS(5239), - [anon_sym_BSLASHGlsname] = ACTIONS(5239), - [anon_sym_BSLASHGLSname] = ACTIONS(5239), - [anon_sym_BSLASHglssymbol] = ACTIONS(5239), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), - [anon_sym_BSLASHglsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), - [anon_sym_BSLASHglsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), - [anon_sym_BSLASHglsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), - [anon_sym_BSLASHglsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), - [anon_sym_BSLASHglsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), - [anon_sym_BSLASHnewacronym] = ACTIONS(5239), - [anon_sym_BSLASHacrshort] = ACTIONS(5239), - [anon_sym_BSLASHAcrshort] = ACTIONS(5239), - [anon_sym_BSLASHACRshort] = ACTIONS(5239), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), - [anon_sym_BSLASHacrlong] = ACTIONS(5239), - [anon_sym_BSLASHAcrlong] = ACTIONS(5239), - [anon_sym_BSLASHACRlong] = ACTIONS(5239), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), - [anon_sym_BSLASHacrfull] = ACTIONS(5239), - [anon_sym_BSLASHAcrfull] = ACTIONS(5239), - [anon_sym_BSLASHACRfull] = ACTIONS(5239), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), - [anon_sym_BSLASHacs] = ACTIONS(5239), - [anon_sym_BSLASHAcs] = ACTIONS(5239), - [anon_sym_BSLASHacsp] = ACTIONS(5239), - [anon_sym_BSLASHAcsp] = ACTIONS(5239), - [anon_sym_BSLASHacl] = ACTIONS(5239), - [anon_sym_BSLASHAcl] = ACTIONS(5239), - [anon_sym_BSLASHaclp] = ACTIONS(5239), - [anon_sym_BSLASHAclp] = ACTIONS(5239), - [anon_sym_BSLASHacf] = ACTIONS(5239), - [anon_sym_BSLASHAcf] = ACTIONS(5239), - [anon_sym_BSLASHacfp] = ACTIONS(5239), - [anon_sym_BSLASHAcfp] = ACTIONS(5239), - [anon_sym_BSLASHac] = ACTIONS(5239), - [anon_sym_BSLASHAc] = ACTIONS(5239), - [anon_sym_BSLASHacp] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), - [anon_sym_BSLASHcolor] = ACTIONS(5239), - [anon_sym_BSLASHcolorbox] = ACTIONS(5239), - [anon_sym_BSLASHtextcolor] = ACTIONS(5239), - [anon_sym_BSLASHpagecolor] = ACTIONS(5239), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), - }, - [1227] = { - [sym_command_name] = ACTIONS(5243), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5243), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_RPAREN] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_RBRACK] = ACTIONS(5241), - [anon_sym_COMMA] = ACTIONS(5241), - [anon_sym_EQ] = ACTIONS(5241), - [anon_sym_BSLASHpart] = ACTIONS(5243), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddpart] = ACTIONS(5243), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5241), - [anon_sym_BSLASHchapter] = ACTIONS(5243), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddchap] = ACTIONS(5243), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsection] = ACTIONS(5243), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHaddsec] = ACTIONS(5243), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubsection] = ACTIONS(5243), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5243), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5241), - [anon_sym_BSLASHparagraph] = ACTIONS(5243), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5241), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5243), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5241), - [anon_sym_BSLASHitem] = ACTIONS(5243), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5241), - [anon_sym_LBRACE] = ACTIONS(5241), - [sym_word] = ACTIONS(5243), - [sym_placeholder] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_STAR] = ACTIONS(5243), - [anon_sym_SLASH] = ACTIONS(5243), - [anon_sym_CARET] = ACTIONS(5243), - [anon_sym__] = ACTIONS(5243), - [anon_sym_LT] = ACTIONS(5243), - [anon_sym_GT] = ACTIONS(5243), - [anon_sym_BANG] = ACTIONS(5243), - [anon_sym_PIPE] = ACTIONS(5243), - [anon_sym_COLON] = ACTIONS(5243), - [anon_sym_SQUOTE] = ACTIONS(5243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5241), - [anon_sym_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5241), - [anon_sym_BSLASHbegin] = ACTIONS(5243), - [anon_sym_BSLASHend] = ACTIONS(5243), - [anon_sym_BSLASHusepackage] = ACTIONS(5243), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5243), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5243), - [anon_sym_BSLASHinclude] = ACTIONS(5243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5243), - [anon_sym_BSLASHinput] = ACTIONS(5243), - [anon_sym_BSLASHsubfile] = ACTIONS(5243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5243), - [anon_sym_BSLASHbibliography] = ACTIONS(5243), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5243), - [anon_sym_BSLASHincludesvg] = ACTIONS(5243), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5243), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5243), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5243), - [anon_sym_BSLASHimport] = ACTIONS(5243), - [anon_sym_BSLASHsubimport] = ACTIONS(5243), - [anon_sym_BSLASHinputfrom] = ACTIONS(5243), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5243), - [anon_sym_BSLASHincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHcaption] = ACTIONS(5243), - [anon_sym_BSLASHcite] = ACTIONS(5243), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCite] = ACTIONS(5243), - [anon_sym_BSLASHnocite] = ACTIONS(5243), - [anon_sym_BSLASHcitet] = ACTIONS(5243), - [anon_sym_BSLASHcitep] = ACTIONS(5243), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteyear] = ACTIONS(5243), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitedate] = ACTIONS(5243), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteurl] = ACTIONS(5243), - [anon_sym_BSLASHfullcite] = ACTIONS(5243), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5243), - [anon_sym_BSLASHcitealt] = ACTIONS(5243), - [anon_sym_BSLASHcitealp] = ACTIONS(5243), - [anon_sym_BSLASHcitetext] = ACTIONS(5243), - [anon_sym_BSLASHparencite] = ACTIONS(5243), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHParencite] = ACTIONS(5243), - [anon_sym_BSLASHfootcite] = ACTIONS(5243), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5243), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5243), - [anon_sym_BSLASHtextcite] = ACTIONS(5243), - [anon_sym_BSLASHTextcite] = ACTIONS(5243), - [anon_sym_BSLASHsmartcite] = ACTIONS(5243), - [anon_sym_BSLASHSmartcite] = ACTIONS(5243), - [anon_sym_BSLASHsupercite] = ACTIONS(5243), - [anon_sym_BSLASHautocite] = ACTIONS(5243), - [anon_sym_BSLASHAutocite] = ACTIONS(5243), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHvolcite] = ACTIONS(5243), - [anon_sym_BSLASHVolcite] = ACTIONS(5243), - [anon_sym_BSLASHpvolcite] = ACTIONS(5243), - [anon_sym_BSLASHPvolcite] = ACTIONS(5243), - [anon_sym_BSLASHfvolcite] = ACTIONS(5243), - [anon_sym_BSLASHftvolcite] = ACTIONS(5243), - [anon_sym_BSLASHsvolcite] = ACTIONS(5243), - [anon_sym_BSLASHSvolcite] = ACTIONS(5243), - [anon_sym_BSLASHtvolcite] = ACTIONS(5243), - [anon_sym_BSLASHTvolcite] = ACTIONS(5243), - [anon_sym_BSLASHavolcite] = ACTIONS(5243), - [anon_sym_BSLASHAvolcite] = ACTIONS(5243), - [anon_sym_BSLASHnotecite] = ACTIONS(5243), - [anon_sym_BSLASHNotecite] = ACTIONS(5243), - [anon_sym_BSLASHpnotecite] = ACTIONS(5243), - [anon_sym_BSLASHPnotecite] = ACTIONS(5243), - [anon_sym_BSLASHfnotecite] = ACTIONS(5243), - [anon_sym_BSLASHlabel] = ACTIONS(5243), - [anon_sym_BSLASHref] = ACTIONS(5243), - [anon_sym_BSLASHeqref] = ACTIONS(5243), - [anon_sym_BSLASHvref] = ACTIONS(5243), - [anon_sym_BSLASHVref] = ACTIONS(5243), - [anon_sym_BSLASHautoref] = ACTIONS(5243), - [anon_sym_BSLASHpageref] = ACTIONS(5243), - [anon_sym_BSLASHcref] = ACTIONS(5243), - [anon_sym_BSLASHCref] = ACTIONS(5243), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnameCref] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHlabelcref] = ACTIONS(5243), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnewlabel] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5241), - [anon_sym_BSLASHdef] = ACTIONS(5243), - [anon_sym_BSLASHlet] = ACTIONS(5243), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5243), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5243), - [anon_sym_BSLASHgls] = ACTIONS(5243), - [anon_sym_BSLASHGls] = ACTIONS(5243), - [anon_sym_BSLASHGLS] = ACTIONS(5243), - [anon_sym_BSLASHglspl] = ACTIONS(5243), - [anon_sym_BSLASHGlspl] = ACTIONS(5243), - [anon_sym_BSLASHGLSpl] = ACTIONS(5243), - [anon_sym_BSLASHglsdisp] = ACTIONS(5243), - [anon_sym_BSLASHglslink] = ACTIONS(5243), - [anon_sym_BSLASHglstext] = ACTIONS(5243), - [anon_sym_BSLASHGlstext] = ACTIONS(5243), - [anon_sym_BSLASHGLStext] = ACTIONS(5243), - [anon_sym_BSLASHglsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5243), - [anon_sym_BSLASHglsplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSplural] = ACTIONS(5243), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHglsname] = ACTIONS(5243), - [anon_sym_BSLASHGlsname] = ACTIONS(5243), - [anon_sym_BSLASHGLSname] = ACTIONS(5243), - [anon_sym_BSLASHglssymbol] = ACTIONS(5243), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5243), - [anon_sym_BSLASHglsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5243), - [anon_sym_BSLASHglsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5243), - [anon_sym_BSLASHglsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5243), - [anon_sym_BSLASHglsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5243), - [anon_sym_BSLASHglsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5243), - [anon_sym_BSLASHnewacronym] = ACTIONS(5243), - [anon_sym_BSLASHacrshort] = ACTIONS(5243), - [anon_sym_BSLASHAcrshort] = ACTIONS(5243), - [anon_sym_BSLASHACRshort] = ACTIONS(5243), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5243), - [anon_sym_BSLASHacrlong] = ACTIONS(5243), - [anon_sym_BSLASHAcrlong] = ACTIONS(5243), - [anon_sym_BSLASHACRlong] = ACTIONS(5243), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5243), - [anon_sym_BSLASHacrfull] = ACTIONS(5243), - [anon_sym_BSLASHAcrfull] = ACTIONS(5243), - [anon_sym_BSLASHACRfull] = ACTIONS(5243), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5243), - [anon_sym_BSLASHacs] = ACTIONS(5243), - [anon_sym_BSLASHAcs] = ACTIONS(5243), - [anon_sym_BSLASHacsp] = ACTIONS(5243), - [anon_sym_BSLASHAcsp] = ACTIONS(5243), - [anon_sym_BSLASHacl] = ACTIONS(5243), - [anon_sym_BSLASHAcl] = ACTIONS(5243), - [anon_sym_BSLASHaclp] = ACTIONS(5243), - [anon_sym_BSLASHAclp] = ACTIONS(5243), - [anon_sym_BSLASHacf] = ACTIONS(5243), - [anon_sym_BSLASHAcf] = ACTIONS(5243), - [anon_sym_BSLASHacfp] = ACTIONS(5243), - [anon_sym_BSLASHAcfp] = ACTIONS(5243), - [anon_sym_BSLASHac] = ACTIONS(5243), - [anon_sym_BSLASHAc] = ACTIONS(5243), - [anon_sym_BSLASHacp] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5243), - [anon_sym_BSLASHcolor] = ACTIONS(5243), - [anon_sym_BSLASHcolorbox] = ACTIONS(5243), - [anon_sym_BSLASHtextcolor] = ACTIONS(5243), - [anon_sym_BSLASHpagecolor] = ACTIONS(5243), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5243), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5243), - }, - [1228] = { - [sym_command_name] = ACTIONS(5247), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5247), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_RPAREN] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_RBRACK] = ACTIONS(5245), - [anon_sym_COMMA] = ACTIONS(5245), - [anon_sym_EQ] = ACTIONS(5245), - [anon_sym_BSLASHpart] = ACTIONS(5247), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddpart] = ACTIONS(5247), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5245), - [anon_sym_BSLASHchapter] = ACTIONS(5247), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddchap] = ACTIONS(5247), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsection] = ACTIONS(5247), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHaddsec] = ACTIONS(5247), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubsection] = ACTIONS(5247), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5247), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5245), - [anon_sym_BSLASHparagraph] = ACTIONS(5247), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5245), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5247), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5245), - [anon_sym_BSLASHitem] = ACTIONS(5247), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5245), - [anon_sym_LBRACE] = ACTIONS(5245), - [sym_word] = ACTIONS(5247), - [sym_placeholder] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_SLASH] = ACTIONS(5247), - [anon_sym_CARET] = ACTIONS(5247), - [anon_sym__] = ACTIONS(5247), - [anon_sym_LT] = ACTIONS(5247), - [anon_sym_GT] = ACTIONS(5247), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_PIPE] = ACTIONS(5247), - [anon_sym_COLON] = ACTIONS(5247), - [anon_sym_SQUOTE] = ACTIONS(5247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5245), - [anon_sym_DOLLAR] = ACTIONS(5247), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5245), - [anon_sym_BSLASHbegin] = ACTIONS(5247), - [anon_sym_BSLASHend] = ACTIONS(5247), - [anon_sym_BSLASHusepackage] = ACTIONS(5247), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5247), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5247), - [anon_sym_BSLASHinclude] = ACTIONS(5247), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5247), - [anon_sym_BSLASHinput] = ACTIONS(5247), - [anon_sym_BSLASHsubfile] = ACTIONS(5247), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5247), - [anon_sym_BSLASHbibliography] = ACTIONS(5247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5247), - [anon_sym_BSLASHincludesvg] = ACTIONS(5247), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5247), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5247), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5247), - [anon_sym_BSLASHimport] = ACTIONS(5247), - [anon_sym_BSLASHsubimport] = ACTIONS(5247), - [anon_sym_BSLASHinputfrom] = ACTIONS(5247), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5247), - [anon_sym_BSLASHincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHcaption] = ACTIONS(5247), - [anon_sym_BSLASHcite] = ACTIONS(5247), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCite] = ACTIONS(5247), - [anon_sym_BSLASHnocite] = ACTIONS(5247), - [anon_sym_BSLASHcitet] = ACTIONS(5247), - [anon_sym_BSLASHcitep] = ACTIONS(5247), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteyear] = ACTIONS(5247), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitedate] = ACTIONS(5247), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteurl] = ACTIONS(5247), - [anon_sym_BSLASHfullcite] = ACTIONS(5247), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5247), - [anon_sym_BSLASHcitealt] = ACTIONS(5247), - [anon_sym_BSLASHcitealp] = ACTIONS(5247), - [anon_sym_BSLASHcitetext] = ACTIONS(5247), - [anon_sym_BSLASHparencite] = ACTIONS(5247), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHParencite] = ACTIONS(5247), - [anon_sym_BSLASHfootcite] = ACTIONS(5247), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5247), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5247), - [anon_sym_BSLASHtextcite] = ACTIONS(5247), - [anon_sym_BSLASHTextcite] = ACTIONS(5247), - [anon_sym_BSLASHsmartcite] = ACTIONS(5247), - [anon_sym_BSLASHSmartcite] = ACTIONS(5247), - [anon_sym_BSLASHsupercite] = ACTIONS(5247), - [anon_sym_BSLASHautocite] = ACTIONS(5247), - [anon_sym_BSLASHAutocite] = ACTIONS(5247), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHvolcite] = ACTIONS(5247), - [anon_sym_BSLASHVolcite] = ACTIONS(5247), - [anon_sym_BSLASHpvolcite] = ACTIONS(5247), - [anon_sym_BSLASHPvolcite] = ACTIONS(5247), - [anon_sym_BSLASHfvolcite] = ACTIONS(5247), - [anon_sym_BSLASHftvolcite] = ACTIONS(5247), - [anon_sym_BSLASHsvolcite] = ACTIONS(5247), - [anon_sym_BSLASHSvolcite] = ACTIONS(5247), - [anon_sym_BSLASHtvolcite] = ACTIONS(5247), - [anon_sym_BSLASHTvolcite] = ACTIONS(5247), - [anon_sym_BSLASHavolcite] = ACTIONS(5247), - [anon_sym_BSLASHAvolcite] = ACTIONS(5247), - [anon_sym_BSLASHnotecite] = ACTIONS(5247), - [anon_sym_BSLASHNotecite] = ACTIONS(5247), - [anon_sym_BSLASHpnotecite] = ACTIONS(5247), - [anon_sym_BSLASHPnotecite] = ACTIONS(5247), - [anon_sym_BSLASHfnotecite] = ACTIONS(5247), - [anon_sym_BSLASHlabel] = ACTIONS(5247), - [anon_sym_BSLASHref] = ACTIONS(5247), - [anon_sym_BSLASHeqref] = ACTIONS(5247), - [anon_sym_BSLASHvref] = ACTIONS(5247), - [anon_sym_BSLASHVref] = ACTIONS(5247), - [anon_sym_BSLASHautoref] = ACTIONS(5247), - [anon_sym_BSLASHpageref] = ACTIONS(5247), - [anon_sym_BSLASHcref] = ACTIONS(5247), - [anon_sym_BSLASHCref] = ACTIONS(5247), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnameCref] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHlabelcref] = ACTIONS(5247), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnewlabel] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5245), - [anon_sym_BSLASHdef] = ACTIONS(5247), - [anon_sym_BSLASHlet] = ACTIONS(5247), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5247), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5247), - [anon_sym_BSLASHgls] = ACTIONS(5247), - [anon_sym_BSLASHGls] = ACTIONS(5247), - [anon_sym_BSLASHGLS] = ACTIONS(5247), - [anon_sym_BSLASHglspl] = ACTIONS(5247), - [anon_sym_BSLASHGlspl] = ACTIONS(5247), - [anon_sym_BSLASHGLSpl] = ACTIONS(5247), - [anon_sym_BSLASHglsdisp] = ACTIONS(5247), - [anon_sym_BSLASHglslink] = ACTIONS(5247), - [anon_sym_BSLASHglstext] = ACTIONS(5247), - [anon_sym_BSLASHGlstext] = ACTIONS(5247), - [anon_sym_BSLASHGLStext] = ACTIONS(5247), - [anon_sym_BSLASHglsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5247), - [anon_sym_BSLASHglsplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSplural] = ACTIONS(5247), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHglsname] = ACTIONS(5247), - [anon_sym_BSLASHGlsname] = ACTIONS(5247), - [anon_sym_BSLASHGLSname] = ACTIONS(5247), - [anon_sym_BSLASHglssymbol] = ACTIONS(5247), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5247), - [anon_sym_BSLASHglsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5247), - [anon_sym_BSLASHglsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5247), - [anon_sym_BSLASHglsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5247), - [anon_sym_BSLASHglsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5247), - [anon_sym_BSLASHglsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5247), - [anon_sym_BSLASHnewacronym] = ACTIONS(5247), - [anon_sym_BSLASHacrshort] = ACTIONS(5247), - [anon_sym_BSLASHAcrshort] = ACTIONS(5247), - [anon_sym_BSLASHACRshort] = ACTIONS(5247), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5247), - [anon_sym_BSLASHacrlong] = ACTIONS(5247), - [anon_sym_BSLASHAcrlong] = ACTIONS(5247), - [anon_sym_BSLASHACRlong] = ACTIONS(5247), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5247), - [anon_sym_BSLASHacrfull] = ACTIONS(5247), - [anon_sym_BSLASHAcrfull] = ACTIONS(5247), - [anon_sym_BSLASHACRfull] = ACTIONS(5247), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5247), - [anon_sym_BSLASHacs] = ACTIONS(5247), - [anon_sym_BSLASHAcs] = ACTIONS(5247), - [anon_sym_BSLASHacsp] = ACTIONS(5247), - [anon_sym_BSLASHAcsp] = ACTIONS(5247), - [anon_sym_BSLASHacl] = ACTIONS(5247), - [anon_sym_BSLASHAcl] = ACTIONS(5247), - [anon_sym_BSLASHaclp] = ACTIONS(5247), - [anon_sym_BSLASHAclp] = ACTIONS(5247), - [anon_sym_BSLASHacf] = ACTIONS(5247), - [anon_sym_BSLASHAcf] = ACTIONS(5247), - [anon_sym_BSLASHacfp] = ACTIONS(5247), - [anon_sym_BSLASHAcfp] = ACTIONS(5247), - [anon_sym_BSLASHac] = ACTIONS(5247), - [anon_sym_BSLASHAc] = ACTIONS(5247), - [anon_sym_BSLASHacp] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5247), - [anon_sym_BSLASHcolor] = ACTIONS(5247), - [anon_sym_BSLASHcolorbox] = ACTIONS(5247), - [anon_sym_BSLASHtextcolor] = ACTIONS(5247), - [anon_sym_BSLASHpagecolor] = ACTIONS(5247), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5247), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5247), - }, - [1229] = { - [sym_command_name] = ACTIONS(5251), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5251), - [anon_sym_LPAREN] = ACTIONS(5249), - [anon_sym_RPAREN] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5249), - [anon_sym_RBRACK] = ACTIONS(5249), - [anon_sym_COMMA] = ACTIONS(5249), - [anon_sym_EQ] = ACTIONS(5249), - [anon_sym_BSLASHpart] = ACTIONS(5251), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddpart] = ACTIONS(5251), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5249), - [anon_sym_BSLASHchapter] = ACTIONS(5251), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddchap] = ACTIONS(5251), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsection] = ACTIONS(5251), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHaddsec] = ACTIONS(5251), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubsection] = ACTIONS(5251), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5251), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5249), - [anon_sym_BSLASHparagraph] = ACTIONS(5251), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5249), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5251), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5249), - [anon_sym_BSLASHitem] = ACTIONS(5251), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5249), - [anon_sym_LBRACE] = ACTIONS(5249), - [sym_word] = ACTIONS(5251), - [sym_placeholder] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym__] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_BANG] = ACTIONS(5251), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5251), - [anon_sym_SQUOTE] = ACTIONS(5251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5249), - [anon_sym_DOLLAR] = ACTIONS(5251), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5249), - [anon_sym_BSLASHbegin] = ACTIONS(5251), - [anon_sym_BSLASHend] = ACTIONS(5251), - [anon_sym_BSLASHusepackage] = ACTIONS(5251), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5251), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5251), - [anon_sym_BSLASHinclude] = ACTIONS(5251), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5251), - [anon_sym_BSLASHinput] = ACTIONS(5251), - [anon_sym_BSLASHsubfile] = ACTIONS(5251), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5251), - [anon_sym_BSLASHbibliography] = ACTIONS(5251), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5251), - [anon_sym_BSLASHincludesvg] = ACTIONS(5251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5251), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5251), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5251), - [anon_sym_BSLASHimport] = ACTIONS(5251), - [anon_sym_BSLASHsubimport] = ACTIONS(5251), - [anon_sym_BSLASHinputfrom] = ACTIONS(5251), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5251), - [anon_sym_BSLASHincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHcaption] = ACTIONS(5251), - [anon_sym_BSLASHcite] = ACTIONS(5251), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCite] = ACTIONS(5251), - [anon_sym_BSLASHnocite] = ACTIONS(5251), - [anon_sym_BSLASHcitet] = ACTIONS(5251), - [anon_sym_BSLASHcitep] = ACTIONS(5251), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor] = ACTIONS(5251), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5251), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle] = ACTIONS(5251), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteyear] = ACTIONS(5251), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitedate] = ACTIONS(5251), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteurl] = ACTIONS(5251), - [anon_sym_BSLASHfullcite] = ACTIONS(5251), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5251), - [anon_sym_BSLASHcitealt] = ACTIONS(5251), - [anon_sym_BSLASHcitealp] = ACTIONS(5251), - [anon_sym_BSLASHcitetext] = ACTIONS(5251), - [anon_sym_BSLASHparencite] = ACTIONS(5251), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHParencite] = ACTIONS(5251), - [anon_sym_BSLASHfootcite] = ACTIONS(5251), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5251), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5251), - [anon_sym_BSLASHtextcite] = ACTIONS(5251), - [anon_sym_BSLASHTextcite] = ACTIONS(5251), - [anon_sym_BSLASHsmartcite] = ACTIONS(5251), - [anon_sym_BSLASHSmartcite] = ACTIONS(5251), - [anon_sym_BSLASHsupercite] = ACTIONS(5251), - [anon_sym_BSLASHautocite] = ACTIONS(5251), - [anon_sym_BSLASHAutocite] = ACTIONS(5251), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHvolcite] = ACTIONS(5251), - [anon_sym_BSLASHVolcite] = ACTIONS(5251), - [anon_sym_BSLASHpvolcite] = ACTIONS(5251), - [anon_sym_BSLASHPvolcite] = ACTIONS(5251), - [anon_sym_BSLASHfvolcite] = ACTIONS(5251), - [anon_sym_BSLASHftvolcite] = ACTIONS(5251), - [anon_sym_BSLASHsvolcite] = ACTIONS(5251), - [anon_sym_BSLASHSvolcite] = ACTIONS(5251), - [anon_sym_BSLASHtvolcite] = ACTIONS(5251), - [anon_sym_BSLASHTvolcite] = ACTIONS(5251), - [anon_sym_BSLASHavolcite] = ACTIONS(5251), - [anon_sym_BSLASHAvolcite] = ACTIONS(5251), - [anon_sym_BSLASHnotecite] = ACTIONS(5251), - [anon_sym_BSLASHNotecite] = ACTIONS(5251), - [anon_sym_BSLASHpnotecite] = ACTIONS(5251), - [anon_sym_BSLASHPnotecite] = ACTIONS(5251), - [anon_sym_BSLASHfnotecite] = ACTIONS(5251), - [anon_sym_BSLASHlabel] = ACTIONS(5251), - [anon_sym_BSLASHref] = ACTIONS(5251), - [anon_sym_BSLASHeqref] = ACTIONS(5251), - [anon_sym_BSLASHvref] = ACTIONS(5251), - [anon_sym_BSLASHVref] = ACTIONS(5251), - [anon_sym_BSLASHautoref] = ACTIONS(5251), - [anon_sym_BSLASHpageref] = ACTIONS(5251), - [anon_sym_BSLASHcref] = ACTIONS(5251), - [anon_sym_BSLASHCref] = ACTIONS(5251), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnameCref] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHlabelcref] = ACTIONS(5251), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange] = ACTIONS(5251), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnewlabel] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5251), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5251), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5251), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5249), - [anon_sym_BSLASHdef] = ACTIONS(5251), - [anon_sym_BSLASHlet] = ACTIONS(5251), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5251), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5251), - [anon_sym_BSLASHgls] = ACTIONS(5251), - [anon_sym_BSLASHGls] = ACTIONS(5251), - [anon_sym_BSLASHGLS] = ACTIONS(5251), - [anon_sym_BSLASHglspl] = ACTIONS(5251), - [anon_sym_BSLASHGlspl] = ACTIONS(5251), - [anon_sym_BSLASHGLSpl] = ACTIONS(5251), - [anon_sym_BSLASHglsdisp] = ACTIONS(5251), - [anon_sym_BSLASHglslink] = ACTIONS(5251), - [anon_sym_BSLASHglstext] = ACTIONS(5251), - [anon_sym_BSLASHGlstext] = ACTIONS(5251), - [anon_sym_BSLASHGLStext] = ACTIONS(5251), - [anon_sym_BSLASHglsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5251), - [anon_sym_BSLASHglsplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSplural] = ACTIONS(5251), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHglsname] = ACTIONS(5251), - [anon_sym_BSLASHGlsname] = ACTIONS(5251), - [anon_sym_BSLASHGLSname] = ACTIONS(5251), - [anon_sym_BSLASHglssymbol] = ACTIONS(5251), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5251), - [anon_sym_BSLASHglsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5251), - [anon_sym_BSLASHglsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5251), - [anon_sym_BSLASHglsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5251), - [anon_sym_BSLASHglsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5251), - [anon_sym_BSLASHglsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5251), - [anon_sym_BSLASHnewacronym] = ACTIONS(5251), - [anon_sym_BSLASHacrshort] = ACTIONS(5251), - [anon_sym_BSLASHAcrshort] = ACTIONS(5251), - [anon_sym_BSLASHACRshort] = ACTIONS(5251), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5251), - [anon_sym_BSLASHacrlong] = ACTIONS(5251), - [anon_sym_BSLASHAcrlong] = ACTIONS(5251), - [anon_sym_BSLASHACRlong] = ACTIONS(5251), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5251), - [anon_sym_BSLASHacrfull] = ACTIONS(5251), - [anon_sym_BSLASHAcrfull] = ACTIONS(5251), - [anon_sym_BSLASHACRfull] = ACTIONS(5251), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5251), - [anon_sym_BSLASHacs] = ACTIONS(5251), - [anon_sym_BSLASHAcs] = ACTIONS(5251), - [anon_sym_BSLASHacsp] = ACTIONS(5251), - [anon_sym_BSLASHAcsp] = ACTIONS(5251), - [anon_sym_BSLASHacl] = ACTIONS(5251), - [anon_sym_BSLASHAcl] = ACTIONS(5251), - [anon_sym_BSLASHaclp] = ACTIONS(5251), - [anon_sym_BSLASHAclp] = ACTIONS(5251), - [anon_sym_BSLASHacf] = ACTIONS(5251), - [anon_sym_BSLASHAcf] = ACTIONS(5251), - [anon_sym_BSLASHacfp] = ACTIONS(5251), - [anon_sym_BSLASHAcfp] = ACTIONS(5251), - [anon_sym_BSLASHac] = ACTIONS(5251), - [anon_sym_BSLASHAc] = ACTIONS(5251), - [anon_sym_BSLASHacp] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5251), - [anon_sym_BSLASHcolor] = ACTIONS(5251), - [anon_sym_BSLASHcolorbox] = ACTIONS(5251), - [anon_sym_BSLASHtextcolor] = ACTIONS(5251), - [anon_sym_BSLASHpagecolor] = ACTIONS(5251), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5251), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5251), - }, - [1230] = { - [sym_command_name] = ACTIONS(5255), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5255), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5253), - [anon_sym_BSLASHpart] = ACTIONS(5255), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddpart] = ACTIONS(5255), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5253), - [anon_sym_BSLASHchapter] = ACTIONS(5255), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddchap] = ACTIONS(5255), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsection] = ACTIONS(5255), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHaddsec] = ACTIONS(5255), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubsection] = ACTIONS(5255), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5255), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5253), - [anon_sym_BSLASHparagraph] = ACTIONS(5255), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5253), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5255), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5253), - [anon_sym_BSLASHitem] = ACTIONS(5255), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5253), - [anon_sym_LBRACE] = ACTIONS(5253), - [sym_word] = ACTIONS(5255), - [sym_placeholder] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_CARET] = ACTIONS(5255), - [anon_sym__] = ACTIONS(5255), - [anon_sym_LT] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5255), - [anon_sym_BANG] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5255), - [anon_sym_COLON] = ACTIONS(5255), - [anon_sym_SQUOTE] = ACTIONS(5255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5253), - [anon_sym_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5253), - [anon_sym_BSLASHbegin] = ACTIONS(5255), - [anon_sym_BSLASHend] = ACTIONS(5255), - [anon_sym_BSLASHusepackage] = ACTIONS(5255), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5255), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5255), - [anon_sym_BSLASHinclude] = ACTIONS(5255), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5255), - [anon_sym_BSLASHinput] = ACTIONS(5255), - [anon_sym_BSLASHsubfile] = ACTIONS(5255), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5255), - [anon_sym_BSLASHbibliography] = ACTIONS(5255), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5255), - [anon_sym_BSLASHincludesvg] = ACTIONS(5255), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5255), - [anon_sym_BSLASHimport] = ACTIONS(5255), - [anon_sym_BSLASHsubimport] = ACTIONS(5255), - [anon_sym_BSLASHinputfrom] = ACTIONS(5255), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5255), - [anon_sym_BSLASHincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHcaption] = ACTIONS(5255), - [anon_sym_BSLASHcite] = ACTIONS(5255), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCite] = ACTIONS(5255), - [anon_sym_BSLASHnocite] = ACTIONS(5255), - [anon_sym_BSLASHcitet] = ACTIONS(5255), - [anon_sym_BSLASHcitep] = ACTIONS(5255), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteauthor] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitetitle] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteyear] = ACTIONS(5255), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitedate] = ACTIONS(5255), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteurl] = ACTIONS(5255), - [anon_sym_BSLASHfullcite] = ACTIONS(5255), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5255), - [anon_sym_BSLASHcitealt] = ACTIONS(5255), - [anon_sym_BSLASHcitealp] = ACTIONS(5255), - [anon_sym_BSLASHcitetext] = ACTIONS(5255), - [anon_sym_BSLASHparencite] = ACTIONS(5255), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHParencite] = ACTIONS(5255), - [anon_sym_BSLASHfootcite] = ACTIONS(5255), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5255), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5255), - [anon_sym_BSLASHtextcite] = ACTIONS(5255), - [anon_sym_BSLASHTextcite] = ACTIONS(5255), - [anon_sym_BSLASHsmartcite] = ACTIONS(5255), - [anon_sym_BSLASHSmartcite] = ACTIONS(5255), - [anon_sym_BSLASHsupercite] = ACTIONS(5255), - [anon_sym_BSLASHautocite] = ACTIONS(5255), - [anon_sym_BSLASHAutocite] = ACTIONS(5255), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHvolcite] = ACTIONS(5255), - [anon_sym_BSLASHVolcite] = ACTIONS(5255), - [anon_sym_BSLASHpvolcite] = ACTIONS(5255), - [anon_sym_BSLASHPvolcite] = ACTIONS(5255), - [anon_sym_BSLASHfvolcite] = ACTIONS(5255), - [anon_sym_BSLASHftvolcite] = ACTIONS(5255), - [anon_sym_BSLASHsvolcite] = ACTIONS(5255), - [anon_sym_BSLASHSvolcite] = ACTIONS(5255), - [anon_sym_BSLASHtvolcite] = ACTIONS(5255), - [anon_sym_BSLASHTvolcite] = ACTIONS(5255), - [anon_sym_BSLASHavolcite] = ACTIONS(5255), - [anon_sym_BSLASHAvolcite] = ACTIONS(5255), - [anon_sym_BSLASHnotecite] = ACTIONS(5255), - [anon_sym_BSLASHNotecite] = ACTIONS(5255), - [anon_sym_BSLASHpnotecite] = ACTIONS(5255), - [anon_sym_BSLASHPnotecite] = ACTIONS(5255), - [anon_sym_BSLASHfnotecite] = ACTIONS(5255), - [anon_sym_BSLASHlabel] = ACTIONS(5255), - [anon_sym_BSLASHref] = ACTIONS(5255), - [anon_sym_BSLASHeqref] = ACTIONS(5255), - [anon_sym_BSLASHvref] = ACTIONS(5255), - [anon_sym_BSLASHVref] = ACTIONS(5255), - [anon_sym_BSLASHautoref] = ACTIONS(5255), - [anon_sym_BSLASHpageref] = ACTIONS(5255), - [anon_sym_BSLASHcref] = ACTIONS(5255), - [anon_sym_BSLASHCref] = ACTIONS(5255), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnameCref] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHlabelcref] = ACTIONS(5255), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCrefrange] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnewlabel] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5253), - [anon_sym_BSLASHdef] = ACTIONS(5255), - [anon_sym_BSLASHlet] = ACTIONS(5255), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5255), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5255), - [anon_sym_BSLASHgls] = ACTIONS(5255), - [anon_sym_BSLASHGls] = ACTIONS(5255), - [anon_sym_BSLASHGLS] = ACTIONS(5255), - [anon_sym_BSLASHglspl] = ACTIONS(5255), - [anon_sym_BSLASHGlspl] = ACTIONS(5255), - [anon_sym_BSLASHGLSpl] = ACTIONS(5255), - [anon_sym_BSLASHglsdisp] = ACTIONS(5255), - [anon_sym_BSLASHglslink] = ACTIONS(5255), - [anon_sym_BSLASHglstext] = ACTIONS(5255), - [anon_sym_BSLASHGlstext] = ACTIONS(5255), - [anon_sym_BSLASHGLStext] = ACTIONS(5255), - [anon_sym_BSLASHglsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5255), - [anon_sym_BSLASHglsplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSplural] = ACTIONS(5255), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHglsname] = ACTIONS(5255), - [anon_sym_BSLASHGlsname] = ACTIONS(5255), - [anon_sym_BSLASHGLSname] = ACTIONS(5255), - [anon_sym_BSLASHglssymbol] = ACTIONS(5255), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5255), - [anon_sym_BSLASHglsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5255), - [anon_sym_BSLASHglsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5255), - [anon_sym_BSLASHglsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5255), - [anon_sym_BSLASHglsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5255), - [anon_sym_BSLASHglsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5255), - [anon_sym_BSLASHnewacronym] = ACTIONS(5255), - [anon_sym_BSLASHacrshort] = ACTIONS(5255), - [anon_sym_BSLASHAcrshort] = ACTIONS(5255), - [anon_sym_BSLASHACRshort] = ACTIONS(5255), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5255), - [anon_sym_BSLASHacrlong] = ACTIONS(5255), - [anon_sym_BSLASHAcrlong] = ACTIONS(5255), - [anon_sym_BSLASHACRlong] = ACTIONS(5255), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5255), - [anon_sym_BSLASHacrfull] = ACTIONS(5255), - [anon_sym_BSLASHAcrfull] = ACTIONS(5255), - [anon_sym_BSLASHACRfull] = ACTIONS(5255), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5255), - [anon_sym_BSLASHacs] = ACTIONS(5255), - [anon_sym_BSLASHAcs] = ACTIONS(5255), - [anon_sym_BSLASHacsp] = ACTIONS(5255), - [anon_sym_BSLASHAcsp] = ACTIONS(5255), - [anon_sym_BSLASHacl] = ACTIONS(5255), - [anon_sym_BSLASHAcl] = ACTIONS(5255), - [anon_sym_BSLASHaclp] = ACTIONS(5255), - [anon_sym_BSLASHAclp] = ACTIONS(5255), - [anon_sym_BSLASHacf] = ACTIONS(5255), - [anon_sym_BSLASHAcf] = ACTIONS(5255), - [anon_sym_BSLASHacfp] = ACTIONS(5255), - [anon_sym_BSLASHAcfp] = ACTIONS(5255), - [anon_sym_BSLASHac] = ACTIONS(5255), - [anon_sym_BSLASHAc] = ACTIONS(5255), - [anon_sym_BSLASHacp] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5255), - [anon_sym_BSLASHcolor] = ACTIONS(5255), - [anon_sym_BSLASHcolorbox] = ACTIONS(5255), - [anon_sym_BSLASHtextcolor] = ACTIONS(5255), - [anon_sym_BSLASHpagecolor] = ACTIONS(5255), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5255), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5255), - }, - [1231] = { - [sym_command_name] = ACTIONS(5263), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5263), - [anon_sym_LPAREN] = ACTIONS(5261), - [anon_sym_RPAREN] = ACTIONS(5261), - [anon_sym_LBRACK] = ACTIONS(5261), - [anon_sym_RBRACK] = ACTIONS(5261), - [anon_sym_COMMA] = ACTIONS(5261), - [anon_sym_EQ] = ACTIONS(5261), - [anon_sym_BSLASHpart] = ACTIONS(5263), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddpart] = ACTIONS(5263), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5261), - [anon_sym_BSLASHchapter] = ACTIONS(5263), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddchap] = ACTIONS(5263), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsection] = ACTIONS(5263), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHaddsec] = ACTIONS(5263), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubsection] = ACTIONS(5263), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5263), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5261), - [anon_sym_BSLASHparagraph] = ACTIONS(5263), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5261), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5263), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5261), - [anon_sym_BSLASHitem] = ACTIONS(5263), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(5261), - [sym_word] = ACTIONS(5263), - [sym_placeholder] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_STAR] = ACTIONS(5263), - [anon_sym_SLASH] = ACTIONS(5263), - [anon_sym_CARET] = ACTIONS(5263), - [anon_sym__] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(5263), - [anon_sym_GT] = ACTIONS(5263), - [anon_sym_BANG] = ACTIONS(5263), - [anon_sym_PIPE] = ACTIONS(5263), - [anon_sym_COLON] = ACTIONS(5263), - [anon_sym_SQUOTE] = ACTIONS(5263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5261), - [anon_sym_DOLLAR] = ACTIONS(5263), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5261), - [anon_sym_BSLASHbegin] = ACTIONS(5263), - [anon_sym_BSLASHend] = ACTIONS(5263), - [anon_sym_BSLASHusepackage] = ACTIONS(5263), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), - [anon_sym_BSLASHinclude] = ACTIONS(5263), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), - [anon_sym_BSLASHinput] = ACTIONS(5263), - [anon_sym_BSLASHsubfile] = ACTIONS(5263), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), - [anon_sym_BSLASHbibliography] = ACTIONS(5263), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), - [anon_sym_BSLASHincludesvg] = ACTIONS(5263), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), - [anon_sym_BSLASHimport] = ACTIONS(5263), - [anon_sym_BSLASHsubimport] = ACTIONS(5263), - [anon_sym_BSLASHinputfrom] = ACTIONS(5263), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), - [anon_sym_BSLASHincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHcaption] = ACTIONS(5263), - [anon_sym_BSLASHcite] = ACTIONS(5263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCite] = ACTIONS(5263), - [anon_sym_BSLASHnocite] = ACTIONS(5263), - [anon_sym_BSLASHcitet] = ACTIONS(5263), - [anon_sym_BSLASHcitep] = ACTIONS(5263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteyear] = ACTIONS(5263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitedate] = ACTIONS(5263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteurl] = ACTIONS(5263), - [anon_sym_BSLASHfullcite] = ACTIONS(5263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), - [anon_sym_BSLASHcitealt] = ACTIONS(5263), - [anon_sym_BSLASHcitealp] = ACTIONS(5263), - [anon_sym_BSLASHcitetext] = ACTIONS(5263), - [anon_sym_BSLASHparencite] = ACTIONS(5263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHParencite] = ACTIONS(5263), - [anon_sym_BSLASHfootcite] = ACTIONS(5263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), - [anon_sym_BSLASHtextcite] = ACTIONS(5263), - [anon_sym_BSLASHTextcite] = ACTIONS(5263), - [anon_sym_BSLASHsmartcite] = ACTIONS(5263), - [anon_sym_BSLASHSmartcite] = ACTIONS(5263), - [anon_sym_BSLASHsupercite] = ACTIONS(5263), - [anon_sym_BSLASHautocite] = ACTIONS(5263), - [anon_sym_BSLASHAutocite] = ACTIONS(5263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHvolcite] = ACTIONS(5263), - [anon_sym_BSLASHVolcite] = ACTIONS(5263), - [anon_sym_BSLASHpvolcite] = ACTIONS(5263), - [anon_sym_BSLASHPvolcite] = ACTIONS(5263), - [anon_sym_BSLASHfvolcite] = ACTIONS(5263), - [anon_sym_BSLASHftvolcite] = ACTIONS(5263), - [anon_sym_BSLASHsvolcite] = ACTIONS(5263), - [anon_sym_BSLASHSvolcite] = ACTIONS(5263), - [anon_sym_BSLASHtvolcite] = ACTIONS(5263), - [anon_sym_BSLASHTvolcite] = ACTIONS(5263), - [anon_sym_BSLASHavolcite] = ACTIONS(5263), - [anon_sym_BSLASHAvolcite] = ACTIONS(5263), - [anon_sym_BSLASHnotecite] = ACTIONS(5263), - [anon_sym_BSLASHNotecite] = ACTIONS(5263), - [anon_sym_BSLASHpnotecite] = ACTIONS(5263), - [anon_sym_BSLASHPnotecite] = ACTIONS(5263), - [anon_sym_BSLASHfnotecite] = ACTIONS(5263), - [anon_sym_BSLASHlabel] = ACTIONS(5263), - [anon_sym_BSLASHref] = ACTIONS(5263), - [anon_sym_BSLASHeqref] = ACTIONS(5263), - [anon_sym_BSLASHvref] = ACTIONS(5263), - [anon_sym_BSLASHVref] = ACTIONS(5263), - [anon_sym_BSLASHautoref] = ACTIONS(5263), - [anon_sym_BSLASHpageref] = ACTIONS(5263), - [anon_sym_BSLASHcref] = ACTIONS(5263), - [anon_sym_BSLASHCref] = ACTIONS(5263), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnameCref] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHlabelcref] = ACTIONS(5263), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnewlabel] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), - [anon_sym_BSLASHdef] = ACTIONS(5263), - [anon_sym_BSLASHlet] = ACTIONS(5263), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), - [anon_sym_BSLASHgls] = ACTIONS(5263), - [anon_sym_BSLASHGls] = ACTIONS(5263), - [anon_sym_BSLASHGLS] = ACTIONS(5263), - [anon_sym_BSLASHglspl] = ACTIONS(5263), - [anon_sym_BSLASHGlspl] = ACTIONS(5263), - [anon_sym_BSLASHGLSpl] = ACTIONS(5263), - [anon_sym_BSLASHglsdisp] = ACTIONS(5263), - [anon_sym_BSLASHglslink] = ACTIONS(5263), - [anon_sym_BSLASHglstext] = ACTIONS(5263), - [anon_sym_BSLASHGlstext] = ACTIONS(5263), - [anon_sym_BSLASHGLStext] = ACTIONS(5263), - [anon_sym_BSLASHglsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), - [anon_sym_BSLASHglsplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSplural] = ACTIONS(5263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHglsname] = ACTIONS(5263), - [anon_sym_BSLASHGlsname] = ACTIONS(5263), - [anon_sym_BSLASHGLSname] = ACTIONS(5263), - [anon_sym_BSLASHglssymbol] = ACTIONS(5263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), - [anon_sym_BSLASHglsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), - [anon_sym_BSLASHglsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), - [anon_sym_BSLASHglsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), - [anon_sym_BSLASHglsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), - [anon_sym_BSLASHglsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), - [anon_sym_BSLASHnewacronym] = ACTIONS(5263), - [anon_sym_BSLASHacrshort] = ACTIONS(5263), - [anon_sym_BSLASHAcrshort] = ACTIONS(5263), - [anon_sym_BSLASHACRshort] = ACTIONS(5263), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), - [anon_sym_BSLASHacrlong] = ACTIONS(5263), - [anon_sym_BSLASHAcrlong] = ACTIONS(5263), - [anon_sym_BSLASHACRlong] = ACTIONS(5263), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), - [anon_sym_BSLASHacrfull] = ACTIONS(5263), - [anon_sym_BSLASHAcrfull] = ACTIONS(5263), - [anon_sym_BSLASHACRfull] = ACTIONS(5263), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), - [anon_sym_BSLASHacs] = ACTIONS(5263), - [anon_sym_BSLASHAcs] = ACTIONS(5263), - [anon_sym_BSLASHacsp] = ACTIONS(5263), - [anon_sym_BSLASHAcsp] = ACTIONS(5263), - [anon_sym_BSLASHacl] = ACTIONS(5263), - [anon_sym_BSLASHAcl] = ACTIONS(5263), - [anon_sym_BSLASHaclp] = ACTIONS(5263), - [anon_sym_BSLASHAclp] = ACTIONS(5263), - [anon_sym_BSLASHacf] = ACTIONS(5263), - [anon_sym_BSLASHAcf] = ACTIONS(5263), - [anon_sym_BSLASHacfp] = ACTIONS(5263), - [anon_sym_BSLASHAcfp] = ACTIONS(5263), - [anon_sym_BSLASHac] = ACTIONS(5263), - [anon_sym_BSLASHAc] = ACTIONS(5263), - [anon_sym_BSLASHacp] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), - [anon_sym_BSLASHcolor] = ACTIONS(5263), - [anon_sym_BSLASHcolorbox] = ACTIONS(5263), - [anon_sym_BSLASHtextcolor] = ACTIONS(5263), - [anon_sym_BSLASHpagecolor] = ACTIONS(5263), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), - }, - [1232] = { - [sym_command_name] = ACTIONS(5267), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5267), - [anon_sym_LPAREN] = ACTIONS(5265), - [anon_sym_RPAREN] = ACTIONS(5265), - [anon_sym_LBRACK] = ACTIONS(5265), - [anon_sym_RBRACK] = ACTIONS(5265), - [anon_sym_COMMA] = ACTIONS(5265), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_BSLASHpart] = ACTIONS(5267), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddpart] = ACTIONS(5267), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5265), - [anon_sym_BSLASHchapter] = ACTIONS(5267), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddchap] = ACTIONS(5267), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsection] = ACTIONS(5267), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHaddsec] = ACTIONS(5267), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubsection] = ACTIONS(5267), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5267), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5265), - [anon_sym_BSLASHparagraph] = ACTIONS(5267), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5265), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5267), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5265), - [anon_sym_BSLASHitem] = ACTIONS(5267), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(5265), - [sym_word] = ACTIONS(5267), - [sym_placeholder] = ACTIONS(5265), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(5267), - [anon_sym_SLASH] = ACTIONS(5267), - [anon_sym_CARET] = ACTIONS(5267), - [anon_sym__] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(5267), - [anon_sym_GT] = ACTIONS(5267), - [anon_sym_BANG] = ACTIONS(5267), - [anon_sym_PIPE] = ACTIONS(5267), - [anon_sym_COLON] = ACTIONS(5267), - [anon_sym_SQUOTE] = ACTIONS(5267), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5265), - [anon_sym_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5265), - [anon_sym_BSLASHbegin] = ACTIONS(5267), - [anon_sym_BSLASHend] = ACTIONS(5267), - [anon_sym_BSLASHusepackage] = ACTIONS(5267), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5267), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5267), - [anon_sym_BSLASHinclude] = ACTIONS(5267), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5267), - [anon_sym_BSLASHinput] = ACTIONS(5267), - [anon_sym_BSLASHsubfile] = ACTIONS(5267), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5267), - [anon_sym_BSLASHbibliography] = ACTIONS(5267), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5267), - [anon_sym_BSLASHincludesvg] = ACTIONS(5267), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5267), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5267), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5267), - [anon_sym_BSLASHimport] = ACTIONS(5267), - [anon_sym_BSLASHsubimport] = ACTIONS(5267), - [anon_sym_BSLASHinputfrom] = ACTIONS(5267), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5267), - [anon_sym_BSLASHincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHcaption] = ACTIONS(5267), - [anon_sym_BSLASHcite] = ACTIONS(5267), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCite] = ACTIONS(5267), - [anon_sym_BSLASHnocite] = ACTIONS(5267), - [anon_sym_BSLASHcitet] = ACTIONS(5267), - [anon_sym_BSLASHcitep] = ACTIONS(5267), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteyear] = ACTIONS(5267), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitedate] = ACTIONS(5267), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteurl] = ACTIONS(5267), - [anon_sym_BSLASHfullcite] = ACTIONS(5267), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5267), - [anon_sym_BSLASHcitealt] = ACTIONS(5267), - [anon_sym_BSLASHcitealp] = ACTIONS(5267), - [anon_sym_BSLASHcitetext] = ACTIONS(5267), - [anon_sym_BSLASHparencite] = ACTIONS(5267), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHParencite] = ACTIONS(5267), - [anon_sym_BSLASHfootcite] = ACTIONS(5267), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5267), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5267), - [anon_sym_BSLASHtextcite] = ACTIONS(5267), - [anon_sym_BSLASHTextcite] = ACTIONS(5267), - [anon_sym_BSLASHsmartcite] = ACTIONS(5267), - [anon_sym_BSLASHSmartcite] = ACTIONS(5267), - [anon_sym_BSLASHsupercite] = ACTIONS(5267), - [anon_sym_BSLASHautocite] = ACTIONS(5267), - [anon_sym_BSLASHAutocite] = ACTIONS(5267), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHvolcite] = ACTIONS(5267), - [anon_sym_BSLASHVolcite] = ACTIONS(5267), - [anon_sym_BSLASHpvolcite] = ACTIONS(5267), - [anon_sym_BSLASHPvolcite] = ACTIONS(5267), - [anon_sym_BSLASHfvolcite] = ACTIONS(5267), - [anon_sym_BSLASHftvolcite] = ACTIONS(5267), - [anon_sym_BSLASHsvolcite] = ACTIONS(5267), - [anon_sym_BSLASHSvolcite] = ACTIONS(5267), - [anon_sym_BSLASHtvolcite] = ACTIONS(5267), - [anon_sym_BSLASHTvolcite] = ACTIONS(5267), - [anon_sym_BSLASHavolcite] = ACTIONS(5267), - [anon_sym_BSLASHAvolcite] = ACTIONS(5267), - [anon_sym_BSLASHnotecite] = ACTIONS(5267), - [anon_sym_BSLASHNotecite] = ACTIONS(5267), - [anon_sym_BSLASHpnotecite] = ACTIONS(5267), - [anon_sym_BSLASHPnotecite] = ACTIONS(5267), - [anon_sym_BSLASHfnotecite] = ACTIONS(5267), - [anon_sym_BSLASHlabel] = ACTIONS(5267), - [anon_sym_BSLASHref] = ACTIONS(5267), - [anon_sym_BSLASHeqref] = ACTIONS(5267), - [anon_sym_BSLASHvref] = ACTIONS(5267), - [anon_sym_BSLASHVref] = ACTIONS(5267), - [anon_sym_BSLASHautoref] = ACTIONS(5267), - [anon_sym_BSLASHpageref] = ACTIONS(5267), - [anon_sym_BSLASHcref] = ACTIONS(5267), - [anon_sym_BSLASHCref] = ACTIONS(5267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnameCref] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHlabelcref] = ACTIONS(5267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnewlabel] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5265), - [anon_sym_BSLASHdef] = ACTIONS(5267), - [anon_sym_BSLASHlet] = ACTIONS(5267), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5267), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5267), - [anon_sym_BSLASHgls] = ACTIONS(5267), - [anon_sym_BSLASHGls] = ACTIONS(5267), - [anon_sym_BSLASHGLS] = ACTIONS(5267), - [anon_sym_BSLASHglspl] = ACTIONS(5267), - [anon_sym_BSLASHGlspl] = ACTIONS(5267), - [anon_sym_BSLASHGLSpl] = ACTIONS(5267), - [anon_sym_BSLASHglsdisp] = ACTIONS(5267), - [anon_sym_BSLASHglslink] = ACTIONS(5267), - [anon_sym_BSLASHglstext] = ACTIONS(5267), - [anon_sym_BSLASHGlstext] = ACTIONS(5267), - [anon_sym_BSLASHGLStext] = ACTIONS(5267), - [anon_sym_BSLASHglsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5267), - [anon_sym_BSLASHglsplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSplural] = ACTIONS(5267), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHglsname] = ACTIONS(5267), - [anon_sym_BSLASHGlsname] = ACTIONS(5267), - [anon_sym_BSLASHGLSname] = ACTIONS(5267), - [anon_sym_BSLASHglssymbol] = ACTIONS(5267), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5267), - [anon_sym_BSLASHglsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5267), - [anon_sym_BSLASHglsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5267), - [anon_sym_BSLASHglsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5267), - [anon_sym_BSLASHglsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5267), - [anon_sym_BSLASHglsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5267), - [anon_sym_BSLASHnewacronym] = ACTIONS(5267), - [anon_sym_BSLASHacrshort] = ACTIONS(5267), - [anon_sym_BSLASHAcrshort] = ACTIONS(5267), - [anon_sym_BSLASHACRshort] = ACTIONS(5267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5267), - [anon_sym_BSLASHacrlong] = ACTIONS(5267), - [anon_sym_BSLASHAcrlong] = ACTIONS(5267), - [anon_sym_BSLASHACRlong] = ACTIONS(5267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5267), - [anon_sym_BSLASHacrfull] = ACTIONS(5267), - [anon_sym_BSLASHAcrfull] = ACTIONS(5267), - [anon_sym_BSLASHACRfull] = ACTIONS(5267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5267), - [anon_sym_BSLASHacs] = ACTIONS(5267), - [anon_sym_BSLASHAcs] = ACTIONS(5267), - [anon_sym_BSLASHacsp] = ACTIONS(5267), - [anon_sym_BSLASHAcsp] = ACTIONS(5267), - [anon_sym_BSLASHacl] = ACTIONS(5267), - [anon_sym_BSLASHAcl] = ACTIONS(5267), - [anon_sym_BSLASHaclp] = ACTIONS(5267), - [anon_sym_BSLASHAclp] = ACTIONS(5267), - [anon_sym_BSLASHacf] = ACTIONS(5267), - [anon_sym_BSLASHAcf] = ACTIONS(5267), - [anon_sym_BSLASHacfp] = ACTIONS(5267), - [anon_sym_BSLASHAcfp] = ACTIONS(5267), - [anon_sym_BSLASHac] = ACTIONS(5267), - [anon_sym_BSLASHAc] = ACTIONS(5267), - [anon_sym_BSLASHacp] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5267), - [anon_sym_BSLASHcolor] = ACTIONS(5267), - [anon_sym_BSLASHcolorbox] = ACTIONS(5267), - [anon_sym_BSLASHtextcolor] = ACTIONS(5267), - [anon_sym_BSLASHpagecolor] = ACTIONS(5267), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5267), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5267), - }, - [1233] = { - [sym_command_name] = ACTIONS(5271), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5271), - [anon_sym_LPAREN] = ACTIONS(5269), - [anon_sym_RPAREN] = ACTIONS(5269), - [anon_sym_LBRACK] = ACTIONS(5269), - [anon_sym_RBRACK] = ACTIONS(5269), - [anon_sym_COMMA] = ACTIONS(5269), - [anon_sym_EQ] = ACTIONS(5269), - [anon_sym_BSLASHpart] = ACTIONS(5271), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddpart] = ACTIONS(5271), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5269), - [anon_sym_BSLASHchapter] = ACTIONS(5271), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddchap] = ACTIONS(5271), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsection] = ACTIONS(5271), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHaddsec] = ACTIONS(5271), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubsection] = ACTIONS(5271), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5271), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5269), - [anon_sym_BSLASHparagraph] = ACTIONS(5271), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5269), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5271), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5269), - [anon_sym_BSLASHitem] = ACTIONS(5271), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5269), - [anon_sym_LBRACE] = ACTIONS(5269), - [sym_word] = ACTIONS(5271), - [sym_placeholder] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5271), - [anon_sym_DASH] = ACTIONS(5271), - [anon_sym_STAR] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5271), - [anon_sym_CARET] = ACTIONS(5271), - [anon_sym__] = ACTIONS(5271), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_GT] = ACTIONS(5271), - [anon_sym_BANG] = ACTIONS(5271), - [anon_sym_PIPE] = ACTIONS(5271), - [anon_sym_COLON] = ACTIONS(5271), - [anon_sym_SQUOTE] = ACTIONS(5271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5269), - [anon_sym_DOLLAR] = ACTIONS(5271), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5269), - [anon_sym_BSLASHbegin] = ACTIONS(5271), - [anon_sym_BSLASHend] = ACTIONS(5271), - [anon_sym_BSLASHusepackage] = ACTIONS(5271), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5271), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5271), - [anon_sym_BSLASHinclude] = ACTIONS(5271), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5271), - [anon_sym_BSLASHinput] = ACTIONS(5271), - [anon_sym_BSLASHsubfile] = ACTIONS(5271), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5271), - [anon_sym_BSLASHbibliography] = ACTIONS(5271), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5271), - [anon_sym_BSLASHincludesvg] = ACTIONS(5271), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5271), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5271), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5271), - [anon_sym_BSLASHimport] = ACTIONS(5271), - [anon_sym_BSLASHsubimport] = ACTIONS(5271), - [anon_sym_BSLASHinputfrom] = ACTIONS(5271), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5271), - [anon_sym_BSLASHincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHcaption] = ACTIONS(5271), - [anon_sym_BSLASHcite] = ACTIONS(5271), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCite] = ACTIONS(5271), - [anon_sym_BSLASHnocite] = ACTIONS(5271), - [anon_sym_BSLASHcitet] = ACTIONS(5271), - [anon_sym_BSLASHcitep] = ACTIONS(5271), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor] = ACTIONS(5271), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5271), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle] = ACTIONS(5271), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteyear] = ACTIONS(5271), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitedate] = ACTIONS(5271), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteurl] = ACTIONS(5271), - [anon_sym_BSLASHfullcite] = ACTIONS(5271), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5271), - [anon_sym_BSLASHcitealt] = ACTIONS(5271), - [anon_sym_BSLASHcitealp] = ACTIONS(5271), - [anon_sym_BSLASHcitetext] = ACTIONS(5271), - [anon_sym_BSLASHparencite] = ACTIONS(5271), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHParencite] = ACTIONS(5271), - [anon_sym_BSLASHfootcite] = ACTIONS(5271), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5271), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5271), - [anon_sym_BSLASHtextcite] = ACTIONS(5271), - [anon_sym_BSLASHTextcite] = ACTIONS(5271), - [anon_sym_BSLASHsmartcite] = ACTIONS(5271), - [anon_sym_BSLASHSmartcite] = ACTIONS(5271), - [anon_sym_BSLASHsupercite] = ACTIONS(5271), - [anon_sym_BSLASHautocite] = ACTIONS(5271), - [anon_sym_BSLASHAutocite] = ACTIONS(5271), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHvolcite] = ACTIONS(5271), - [anon_sym_BSLASHVolcite] = ACTIONS(5271), - [anon_sym_BSLASHpvolcite] = ACTIONS(5271), - [anon_sym_BSLASHPvolcite] = ACTIONS(5271), - [anon_sym_BSLASHfvolcite] = ACTIONS(5271), - [anon_sym_BSLASHftvolcite] = ACTIONS(5271), - [anon_sym_BSLASHsvolcite] = ACTIONS(5271), - [anon_sym_BSLASHSvolcite] = ACTIONS(5271), - [anon_sym_BSLASHtvolcite] = ACTIONS(5271), - [anon_sym_BSLASHTvolcite] = ACTIONS(5271), - [anon_sym_BSLASHavolcite] = ACTIONS(5271), - [anon_sym_BSLASHAvolcite] = ACTIONS(5271), - [anon_sym_BSLASHnotecite] = ACTIONS(5271), - [anon_sym_BSLASHNotecite] = ACTIONS(5271), - [anon_sym_BSLASHpnotecite] = ACTIONS(5271), - [anon_sym_BSLASHPnotecite] = ACTIONS(5271), - [anon_sym_BSLASHfnotecite] = ACTIONS(5271), - [anon_sym_BSLASHlabel] = ACTIONS(5271), - [anon_sym_BSLASHref] = ACTIONS(5271), - [anon_sym_BSLASHeqref] = ACTIONS(5271), - [anon_sym_BSLASHvref] = ACTIONS(5271), - [anon_sym_BSLASHVref] = ACTIONS(5271), - [anon_sym_BSLASHautoref] = ACTIONS(5271), - [anon_sym_BSLASHpageref] = ACTIONS(5271), - [anon_sym_BSLASHcref] = ACTIONS(5271), - [anon_sym_BSLASHCref] = ACTIONS(5271), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnameCref] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHlabelcref] = ACTIONS(5271), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange] = ACTIONS(5271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnewlabel] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5271), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5271), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5271), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5269), - [anon_sym_BSLASHdef] = ACTIONS(5271), - [anon_sym_BSLASHlet] = ACTIONS(5271), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5271), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5271), - [anon_sym_BSLASHgls] = ACTIONS(5271), - [anon_sym_BSLASHGls] = ACTIONS(5271), - [anon_sym_BSLASHGLS] = ACTIONS(5271), - [anon_sym_BSLASHglspl] = ACTIONS(5271), - [anon_sym_BSLASHGlspl] = ACTIONS(5271), - [anon_sym_BSLASHGLSpl] = ACTIONS(5271), - [anon_sym_BSLASHglsdisp] = ACTIONS(5271), - [anon_sym_BSLASHglslink] = ACTIONS(5271), - [anon_sym_BSLASHglstext] = ACTIONS(5271), - [anon_sym_BSLASHGlstext] = ACTIONS(5271), - [anon_sym_BSLASHGLStext] = ACTIONS(5271), - [anon_sym_BSLASHglsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5271), - [anon_sym_BSLASHglsplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSplural] = ACTIONS(5271), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHglsname] = ACTIONS(5271), - [anon_sym_BSLASHGlsname] = ACTIONS(5271), - [anon_sym_BSLASHGLSname] = ACTIONS(5271), - [anon_sym_BSLASHglssymbol] = ACTIONS(5271), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5271), - [anon_sym_BSLASHglsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5271), - [anon_sym_BSLASHglsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5271), - [anon_sym_BSLASHglsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5271), - [anon_sym_BSLASHglsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5271), - [anon_sym_BSLASHglsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5271), - [anon_sym_BSLASHnewacronym] = ACTIONS(5271), - [anon_sym_BSLASHacrshort] = ACTIONS(5271), - [anon_sym_BSLASHAcrshort] = ACTIONS(5271), - [anon_sym_BSLASHACRshort] = ACTIONS(5271), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5271), - [anon_sym_BSLASHacrlong] = ACTIONS(5271), - [anon_sym_BSLASHAcrlong] = ACTIONS(5271), - [anon_sym_BSLASHACRlong] = ACTIONS(5271), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5271), - [anon_sym_BSLASHacrfull] = ACTIONS(5271), - [anon_sym_BSLASHAcrfull] = ACTIONS(5271), - [anon_sym_BSLASHACRfull] = ACTIONS(5271), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5271), - [anon_sym_BSLASHacs] = ACTIONS(5271), - [anon_sym_BSLASHAcs] = ACTIONS(5271), - [anon_sym_BSLASHacsp] = ACTIONS(5271), - [anon_sym_BSLASHAcsp] = ACTIONS(5271), - [anon_sym_BSLASHacl] = ACTIONS(5271), - [anon_sym_BSLASHAcl] = ACTIONS(5271), - [anon_sym_BSLASHaclp] = ACTIONS(5271), - [anon_sym_BSLASHAclp] = ACTIONS(5271), - [anon_sym_BSLASHacf] = ACTIONS(5271), - [anon_sym_BSLASHAcf] = ACTIONS(5271), - [anon_sym_BSLASHacfp] = ACTIONS(5271), - [anon_sym_BSLASHAcfp] = ACTIONS(5271), - [anon_sym_BSLASHac] = ACTIONS(5271), - [anon_sym_BSLASHAc] = ACTIONS(5271), - [anon_sym_BSLASHacp] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5271), - [anon_sym_BSLASHcolor] = ACTIONS(5271), - [anon_sym_BSLASHcolorbox] = ACTIONS(5271), - [anon_sym_BSLASHtextcolor] = ACTIONS(5271), - [anon_sym_BSLASHpagecolor] = ACTIONS(5271), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5271), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5271), - }, - [1234] = { - [sym_command_name] = ACTIONS(5275), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5275), - [anon_sym_LPAREN] = ACTIONS(5273), - [anon_sym_RPAREN] = ACTIONS(5273), - [anon_sym_LBRACK] = ACTIONS(5273), - [anon_sym_RBRACK] = ACTIONS(5273), - [anon_sym_COMMA] = ACTIONS(5273), - [anon_sym_EQ] = ACTIONS(5273), - [anon_sym_BSLASHpart] = ACTIONS(5275), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddpart] = ACTIONS(5275), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5273), - [anon_sym_BSLASHchapter] = ACTIONS(5275), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddchap] = ACTIONS(5275), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsection] = ACTIONS(5275), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHaddsec] = ACTIONS(5275), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubsection] = ACTIONS(5275), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5275), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5273), - [anon_sym_BSLASHparagraph] = ACTIONS(5275), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5273), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5275), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5273), - [anon_sym_BSLASHitem] = ACTIONS(5275), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5273), - [anon_sym_LBRACE] = ACTIONS(5273), - [sym_word] = ACTIONS(5275), - [sym_placeholder] = ACTIONS(5273), - [anon_sym_PLUS] = ACTIONS(5275), - [anon_sym_DASH] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(5275), - [anon_sym_SLASH] = ACTIONS(5275), - [anon_sym_CARET] = ACTIONS(5275), - [anon_sym__] = ACTIONS(5275), - [anon_sym_LT] = ACTIONS(5275), - [anon_sym_GT] = ACTIONS(5275), - [anon_sym_BANG] = ACTIONS(5275), - [anon_sym_PIPE] = ACTIONS(5275), - [anon_sym_COLON] = ACTIONS(5275), - [anon_sym_SQUOTE] = ACTIONS(5275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5273), - [anon_sym_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5273), - [anon_sym_BSLASHbegin] = ACTIONS(5275), - [anon_sym_BSLASHend] = ACTIONS(5275), - [anon_sym_BSLASHusepackage] = ACTIONS(5275), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5275), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5275), - [anon_sym_BSLASHinclude] = ACTIONS(5275), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5275), - [anon_sym_BSLASHinput] = ACTIONS(5275), - [anon_sym_BSLASHsubfile] = ACTIONS(5275), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5275), - [anon_sym_BSLASHbibliography] = ACTIONS(5275), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5275), - [anon_sym_BSLASHincludesvg] = ACTIONS(5275), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5275), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5275), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5275), - [anon_sym_BSLASHimport] = ACTIONS(5275), - [anon_sym_BSLASHsubimport] = ACTIONS(5275), - [anon_sym_BSLASHinputfrom] = ACTIONS(5275), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5275), - [anon_sym_BSLASHincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHcaption] = ACTIONS(5275), - [anon_sym_BSLASHcite] = ACTIONS(5275), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCite] = ACTIONS(5275), - [anon_sym_BSLASHnocite] = ACTIONS(5275), - [anon_sym_BSLASHcitet] = ACTIONS(5275), - [anon_sym_BSLASHcitep] = ACTIONS(5275), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteauthor] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitetitle] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteyear] = ACTIONS(5275), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitedate] = ACTIONS(5275), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteurl] = ACTIONS(5275), - [anon_sym_BSLASHfullcite] = ACTIONS(5275), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5275), - [anon_sym_BSLASHcitealt] = ACTIONS(5275), - [anon_sym_BSLASHcitealp] = ACTIONS(5275), - [anon_sym_BSLASHcitetext] = ACTIONS(5275), - [anon_sym_BSLASHparencite] = ACTIONS(5275), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHParencite] = ACTIONS(5275), - [anon_sym_BSLASHfootcite] = ACTIONS(5275), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5275), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5275), - [anon_sym_BSLASHtextcite] = ACTIONS(5275), - [anon_sym_BSLASHTextcite] = ACTIONS(5275), - [anon_sym_BSLASHsmartcite] = ACTIONS(5275), - [anon_sym_BSLASHSmartcite] = ACTIONS(5275), - [anon_sym_BSLASHsupercite] = ACTIONS(5275), - [anon_sym_BSLASHautocite] = ACTIONS(5275), - [anon_sym_BSLASHAutocite] = ACTIONS(5275), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHvolcite] = ACTIONS(5275), - [anon_sym_BSLASHVolcite] = ACTIONS(5275), - [anon_sym_BSLASHpvolcite] = ACTIONS(5275), - [anon_sym_BSLASHPvolcite] = ACTIONS(5275), - [anon_sym_BSLASHfvolcite] = ACTIONS(5275), - [anon_sym_BSLASHftvolcite] = ACTIONS(5275), - [anon_sym_BSLASHsvolcite] = ACTIONS(5275), - [anon_sym_BSLASHSvolcite] = ACTIONS(5275), - [anon_sym_BSLASHtvolcite] = ACTIONS(5275), - [anon_sym_BSLASHTvolcite] = ACTIONS(5275), - [anon_sym_BSLASHavolcite] = ACTIONS(5275), - [anon_sym_BSLASHAvolcite] = ACTIONS(5275), - [anon_sym_BSLASHnotecite] = ACTIONS(5275), - [anon_sym_BSLASHNotecite] = ACTIONS(5275), - [anon_sym_BSLASHpnotecite] = ACTIONS(5275), - [anon_sym_BSLASHPnotecite] = ACTIONS(5275), - [anon_sym_BSLASHfnotecite] = ACTIONS(5275), - [anon_sym_BSLASHlabel] = ACTIONS(5275), - [anon_sym_BSLASHref] = ACTIONS(5275), - [anon_sym_BSLASHeqref] = ACTIONS(5275), - [anon_sym_BSLASHvref] = ACTIONS(5275), - [anon_sym_BSLASHVref] = ACTIONS(5275), - [anon_sym_BSLASHautoref] = ACTIONS(5275), - [anon_sym_BSLASHpageref] = ACTIONS(5275), - [anon_sym_BSLASHcref] = ACTIONS(5275), - [anon_sym_BSLASHCref] = ACTIONS(5275), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnameCref] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHlabelcref] = ACTIONS(5275), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCrefrange] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnewlabel] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5273), - [anon_sym_BSLASHdef] = ACTIONS(5275), - [anon_sym_BSLASHlet] = ACTIONS(5275), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5275), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5275), - [anon_sym_BSLASHgls] = ACTIONS(5275), - [anon_sym_BSLASHGls] = ACTIONS(5275), - [anon_sym_BSLASHGLS] = ACTIONS(5275), - [anon_sym_BSLASHglspl] = ACTIONS(5275), - [anon_sym_BSLASHGlspl] = ACTIONS(5275), - [anon_sym_BSLASHGLSpl] = ACTIONS(5275), - [anon_sym_BSLASHglsdisp] = ACTIONS(5275), - [anon_sym_BSLASHglslink] = ACTIONS(5275), - [anon_sym_BSLASHglstext] = ACTIONS(5275), - [anon_sym_BSLASHGlstext] = ACTIONS(5275), - [anon_sym_BSLASHGLStext] = ACTIONS(5275), - [anon_sym_BSLASHglsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5275), - [anon_sym_BSLASHglsplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSplural] = ACTIONS(5275), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHglsname] = ACTIONS(5275), - [anon_sym_BSLASHGlsname] = ACTIONS(5275), - [anon_sym_BSLASHGLSname] = ACTIONS(5275), - [anon_sym_BSLASHglssymbol] = ACTIONS(5275), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5275), - [anon_sym_BSLASHglsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5275), - [anon_sym_BSLASHglsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5275), - [anon_sym_BSLASHglsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5275), - [anon_sym_BSLASHglsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5275), - [anon_sym_BSLASHglsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5275), - [anon_sym_BSLASHnewacronym] = ACTIONS(5275), - [anon_sym_BSLASHacrshort] = ACTIONS(5275), - [anon_sym_BSLASHAcrshort] = ACTIONS(5275), - [anon_sym_BSLASHACRshort] = ACTIONS(5275), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5275), - [anon_sym_BSLASHacrlong] = ACTIONS(5275), - [anon_sym_BSLASHAcrlong] = ACTIONS(5275), - [anon_sym_BSLASHACRlong] = ACTIONS(5275), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5275), - [anon_sym_BSLASHacrfull] = ACTIONS(5275), - [anon_sym_BSLASHAcrfull] = ACTIONS(5275), - [anon_sym_BSLASHACRfull] = ACTIONS(5275), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5275), - [anon_sym_BSLASHacs] = ACTIONS(5275), - [anon_sym_BSLASHAcs] = ACTIONS(5275), - [anon_sym_BSLASHacsp] = ACTIONS(5275), - [anon_sym_BSLASHAcsp] = ACTIONS(5275), - [anon_sym_BSLASHacl] = ACTIONS(5275), - [anon_sym_BSLASHAcl] = ACTIONS(5275), - [anon_sym_BSLASHaclp] = ACTIONS(5275), - [anon_sym_BSLASHAclp] = ACTIONS(5275), - [anon_sym_BSLASHacf] = ACTIONS(5275), - [anon_sym_BSLASHAcf] = ACTIONS(5275), - [anon_sym_BSLASHacfp] = ACTIONS(5275), - [anon_sym_BSLASHAcfp] = ACTIONS(5275), - [anon_sym_BSLASHac] = ACTIONS(5275), - [anon_sym_BSLASHAc] = ACTIONS(5275), - [anon_sym_BSLASHacp] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5275), - [anon_sym_BSLASHcolor] = ACTIONS(5275), - [anon_sym_BSLASHcolorbox] = ACTIONS(5275), - [anon_sym_BSLASHtextcolor] = ACTIONS(5275), - [anon_sym_BSLASHpagecolor] = ACTIONS(5275), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5275), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5275), - }, - [1235] = { - [sym_command_name] = ACTIONS(5279), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5279), - [anon_sym_LPAREN] = ACTIONS(5277), - [anon_sym_RPAREN] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(5277), - [anon_sym_RBRACK] = ACTIONS(5277), - [anon_sym_COMMA] = ACTIONS(5277), - [anon_sym_EQ] = ACTIONS(5277), - [anon_sym_BSLASHpart] = ACTIONS(5279), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddpart] = ACTIONS(5279), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5277), - [anon_sym_BSLASHchapter] = ACTIONS(5279), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddchap] = ACTIONS(5279), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsection] = ACTIONS(5279), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHaddsec] = ACTIONS(5279), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubsection] = ACTIONS(5279), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5279), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5277), - [anon_sym_BSLASHparagraph] = ACTIONS(5279), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5277), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5279), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5277), - [anon_sym_BSLASHitem] = ACTIONS(5279), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5277), - [anon_sym_LBRACE] = ACTIONS(5277), - [sym_word] = ACTIONS(5279), - [sym_placeholder] = ACTIONS(5277), - [anon_sym_PLUS] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(5279), - [anon_sym_STAR] = ACTIONS(5279), - [anon_sym_SLASH] = ACTIONS(5279), - [anon_sym_CARET] = ACTIONS(5279), - [anon_sym__] = ACTIONS(5279), - [anon_sym_LT] = ACTIONS(5279), - [anon_sym_GT] = ACTIONS(5279), - [anon_sym_BANG] = ACTIONS(5279), - [anon_sym_PIPE] = ACTIONS(5279), - [anon_sym_COLON] = ACTIONS(5279), - [anon_sym_SQUOTE] = ACTIONS(5279), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5277), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5277), - [anon_sym_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5277), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5277), - [anon_sym_BSLASHbegin] = ACTIONS(5279), - [anon_sym_BSLASHend] = ACTIONS(5279), - [anon_sym_BSLASHusepackage] = ACTIONS(5279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5279), - [anon_sym_BSLASHinclude] = ACTIONS(5279), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5279), - [anon_sym_BSLASHinput] = ACTIONS(5279), - [anon_sym_BSLASHsubfile] = ACTIONS(5279), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5279), - [anon_sym_BSLASHbibliography] = ACTIONS(5279), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5279), - [anon_sym_BSLASHincludesvg] = ACTIONS(5279), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5279), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5279), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5279), - [anon_sym_BSLASHimport] = ACTIONS(5279), - [anon_sym_BSLASHsubimport] = ACTIONS(5279), - [anon_sym_BSLASHinputfrom] = ACTIONS(5279), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5279), - [anon_sym_BSLASHincludefrom] = ACTIONS(5279), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5279), - [anon_sym_BSLASHcaption] = ACTIONS(5279), - [anon_sym_BSLASHcite] = ACTIONS(5279), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCite] = ACTIONS(5279), - [anon_sym_BSLASHnocite] = ACTIONS(5279), - [anon_sym_BSLASHcitet] = ACTIONS(5279), - [anon_sym_BSLASHcitep] = ACTIONS(5279), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteauthor] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitetitle] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteyear] = ACTIONS(5279), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitedate] = ACTIONS(5279), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteurl] = ACTIONS(5279), - [anon_sym_BSLASHfullcite] = ACTIONS(5279), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5279), - [anon_sym_BSLASHcitealt] = ACTIONS(5279), - [anon_sym_BSLASHcitealp] = ACTIONS(5279), - [anon_sym_BSLASHcitetext] = ACTIONS(5279), - [anon_sym_BSLASHparencite] = ACTIONS(5279), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHParencite] = ACTIONS(5279), - [anon_sym_BSLASHfootcite] = ACTIONS(5279), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5279), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5279), - [anon_sym_BSLASHtextcite] = ACTIONS(5279), - [anon_sym_BSLASHTextcite] = ACTIONS(5279), - [anon_sym_BSLASHsmartcite] = ACTIONS(5279), - [anon_sym_BSLASHSmartcite] = ACTIONS(5279), - [anon_sym_BSLASHsupercite] = ACTIONS(5279), - [anon_sym_BSLASHautocite] = ACTIONS(5279), - [anon_sym_BSLASHAutocite] = ACTIONS(5279), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHvolcite] = ACTIONS(5279), - [anon_sym_BSLASHVolcite] = ACTIONS(5279), - [anon_sym_BSLASHpvolcite] = ACTIONS(5279), - [anon_sym_BSLASHPvolcite] = ACTIONS(5279), - [anon_sym_BSLASHfvolcite] = ACTIONS(5279), - [anon_sym_BSLASHftvolcite] = ACTIONS(5279), - [anon_sym_BSLASHsvolcite] = ACTIONS(5279), - [anon_sym_BSLASHSvolcite] = ACTIONS(5279), - [anon_sym_BSLASHtvolcite] = ACTIONS(5279), - [anon_sym_BSLASHTvolcite] = ACTIONS(5279), - [anon_sym_BSLASHavolcite] = ACTIONS(5279), - [anon_sym_BSLASHAvolcite] = ACTIONS(5279), - [anon_sym_BSLASHnotecite] = ACTIONS(5279), - [anon_sym_BSLASHNotecite] = ACTIONS(5279), - [anon_sym_BSLASHpnotecite] = ACTIONS(5279), - [anon_sym_BSLASHPnotecite] = ACTIONS(5279), - [anon_sym_BSLASHfnotecite] = ACTIONS(5279), - [anon_sym_BSLASHlabel] = ACTIONS(5279), - [anon_sym_BSLASHref] = ACTIONS(5279), - [anon_sym_BSLASHeqref] = ACTIONS(5279), - [anon_sym_BSLASHvref] = ACTIONS(5279), - [anon_sym_BSLASHVref] = ACTIONS(5279), - [anon_sym_BSLASHautoref] = ACTIONS(5279), - [anon_sym_BSLASHpageref] = ACTIONS(5279), - [anon_sym_BSLASHcref] = ACTIONS(5279), - [anon_sym_BSLASHCref] = ACTIONS(5279), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5277), - [anon_sym_BSLASHnamecref] = ACTIONS(5279), - [anon_sym_BSLASHnameCref] = ACTIONS(5279), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5279), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5279), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5279), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5279), - [anon_sym_BSLASHlabelcref] = ACTIONS(5279), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5279), - [anon_sym_BSLASHcrefrange] = ACTIONS(5279), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCrefrange] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5277), - [anon_sym_BSLASHnewlabel] = ACTIONS(5279), - [anon_sym_BSLASHnewcommand] = ACTIONS(5279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5277), - [anon_sym_BSLASHdef] = ACTIONS(5279), - [anon_sym_BSLASHlet] = ACTIONS(5279), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5279), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5279), - [anon_sym_BSLASHgls] = ACTIONS(5279), - [anon_sym_BSLASHGls] = ACTIONS(5279), - [anon_sym_BSLASHGLS] = ACTIONS(5279), - [anon_sym_BSLASHglspl] = ACTIONS(5279), - [anon_sym_BSLASHGlspl] = ACTIONS(5279), - [anon_sym_BSLASHGLSpl] = ACTIONS(5279), - [anon_sym_BSLASHglsdisp] = ACTIONS(5279), - [anon_sym_BSLASHglslink] = ACTIONS(5279), - [anon_sym_BSLASHglstext] = ACTIONS(5279), - [anon_sym_BSLASHGlstext] = ACTIONS(5279), - [anon_sym_BSLASHGLStext] = ACTIONS(5279), - [anon_sym_BSLASHglsfirst] = ACTIONS(5279), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5279), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5279), - [anon_sym_BSLASHglsplural] = ACTIONS(5279), - [anon_sym_BSLASHGlsplural] = ACTIONS(5279), - [anon_sym_BSLASHGLSplural] = ACTIONS(5279), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHglsname] = ACTIONS(5279), - [anon_sym_BSLASHGlsname] = ACTIONS(5279), - [anon_sym_BSLASHGLSname] = ACTIONS(5279), - [anon_sym_BSLASHglssymbol] = ACTIONS(5279), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5279), - [anon_sym_BSLASHglsdesc] = ACTIONS(5279), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5279), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5279), - [anon_sym_BSLASHglsuseri] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5279), - [anon_sym_BSLASHglsuserii] = ACTIONS(5279), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5279), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5279), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5279), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5279), - [anon_sym_BSLASHglsuserv] = ACTIONS(5279), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5279), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5279), - [anon_sym_BSLASHglsuservi] = ACTIONS(5279), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5279), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5279), - [anon_sym_BSLASHnewacronym] = ACTIONS(5279), - [anon_sym_BSLASHacrshort] = ACTIONS(5279), - [anon_sym_BSLASHAcrshort] = ACTIONS(5279), - [anon_sym_BSLASHACRshort] = ACTIONS(5279), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5279), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5279), - [anon_sym_BSLASHacrlong] = ACTIONS(5279), - [anon_sym_BSLASHAcrlong] = ACTIONS(5279), - [anon_sym_BSLASHACRlong] = ACTIONS(5279), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5279), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5279), - [anon_sym_BSLASHacrfull] = ACTIONS(5279), - [anon_sym_BSLASHAcrfull] = ACTIONS(5279), - [anon_sym_BSLASHACRfull] = ACTIONS(5279), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5279), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5279), - [anon_sym_BSLASHacs] = ACTIONS(5279), - [anon_sym_BSLASHAcs] = ACTIONS(5279), - [anon_sym_BSLASHacsp] = ACTIONS(5279), - [anon_sym_BSLASHAcsp] = ACTIONS(5279), - [anon_sym_BSLASHacl] = ACTIONS(5279), - [anon_sym_BSLASHAcl] = ACTIONS(5279), - [anon_sym_BSLASHaclp] = ACTIONS(5279), - [anon_sym_BSLASHAclp] = ACTIONS(5279), - [anon_sym_BSLASHacf] = ACTIONS(5279), - [anon_sym_BSLASHAcf] = ACTIONS(5279), - [anon_sym_BSLASHacfp] = ACTIONS(5279), - [anon_sym_BSLASHAcfp] = ACTIONS(5279), - [anon_sym_BSLASHac] = ACTIONS(5279), - [anon_sym_BSLASHAc] = ACTIONS(5279), - [anon_sym_BSLASHacp] = ACTIONS(5279), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5279), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5279), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5279), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5279), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5279), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5279), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5279), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5279), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5279), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5279), - [anon_sym_BSLASHcolor] = ACTIONS(5279), - [anon_sym_BSLASHcolorbox] = ACTIONS(5279), - [anon_sym_BSLASHtextcolor] = ACTIONS(5279), - [anon_sym_BSLASHpagecolor] = ACTIONS(5279), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5279), - }, - [1236] = { - [sym_command_name] = ACTIONS(5283), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_RPAREN] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_BSLASHpart] = ACTIONS(5283), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddpart] = ACTIONS(5283), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5281), - [anon_sym_BSLASHchapter] = ACTIONS(5283), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddchap] = ACTIONS(5283), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsection] = ACTIONS(5283), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHaddsec] = ACTIONS(5283), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5283), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5281), - [anon_sym_BSLASHparagraph] = ACTIONS(5283), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5283), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5281), - [anon_sym_BSLASHitem] = ACTIONS(5283), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5281), - [anon_sym_LBRACE] = ACTIONS(5281), - [sym_word] = ACTIONS(5283), - [sym_placeholder] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_CARET] = ACTIONS(5283), - [anon_sym__] = ACTIONS(5283), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_BANG] = ACTIONS(5283), - [anon_sym_PIPE] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_SQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), - [anon_sym_BSLASHbegin] = ACTIONS(5283), - [anon_sym_BSLASHend] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5283), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), - [anon_sym_BSLASHinclude] = ACTIONS(5283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), - [anon_sym_BSLASHinput] = ACTIONS(5283), - [anon_sym_BSLASHsubfile] = ACTIONS(5283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), - [anon_sym_BSLASHbibliography] = ACTIONS(5283), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), - [anon_sym_BSLASHincludesvg] = ACTIONS(5283), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), - [anon_sym_BSLASHimport] = ACTIONS(5283), - [anon_sym_BSLASHsubimport] = ACTIONS(5283), - [anon_sym_BSLASHinputfrom] = ACTIONS(5283), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), - [anon_sym_BSLASHincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHcaption] = ACTIONS(5283), - [anon_sym_BSLASHcite] = ACTIONS(5283), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCite] = ACTIONS(5283), - [anon_sym_BSLASHnocite] = ACTIONS(5283), - [anon_sym_BSLASHcitet] = ACTIONS(5283), - [anon_sym_BSLASHcitep] = ACTIONS(5283), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteyear] = ACTIONS(5283), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitedate] = ACTIONS(5283), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteurl] = ACTIONS(5283), - [anon_sym_BSLASHfullcite] = ACTIONS(5283), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), - [anon_sym_BSLASHcitealt] = ACTIONS(5283), - [anon_sym_BSLASHcitealp] = ACTIONS(5283), - [anon_sym_BSLASHcitetext] = ACTIONS(5283), - [anon_sym_BSLASHparencite] = ACTIONS(5283), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHParencite] = ACTIONS(5283), - [anon_sym_BSLASHfootcite] = ACTIONS(5283), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), - [anon_sym_BSLASHtextcite] = ACTIONS(5283), - [anon_sym_BSLASHTextcite] = ACTIONS(5283), - [anon_sym_BSLASHsmartcite] = ACTIONS(5283), - [anon_sym_BSLASHSmartcite] = ACTIONS(5283), - [anon_sym_BSLASHsupercite] = ACTIONS(5283), - [anon_sym_BSLASHautocite] = ACTIONS(5283), - [anon_sym_BSLASHAutocite] = ACTIONS(5283), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHvolcite] = ACTIONS(5283), - [anon_sym_BSLASHVolcite] = ACTIONS(5283), - [anon_sym_BSLASHpvolcite] = ACTIONS(5283), - [anon_sym_BSLASHPvolcite] = ACTIONS(5283), - [anon_sym_BSLASHfvolcite] = ACTIONS(5283), - [anon_sym_BSLASHftvolcite] = ACTIONS(5283), - [anon_sym_BSLASHsvolcite] = ACTIONS(5283), - [anon_sym_BSLASHSvolcite] = ACTIONS(5283), - [anon_sym_BSLASHtvolcite] = ACTIONS(5283), - [anon_sym_BSLASHTvolcite] = ACTIONS(5283), - [anon_sym_BSLASHavolcite] = ACTIONS(5283), - [anon_sym_BSLASHAvolcite] = ACTIONS(5283), - [anon_sym_BSLASHnotecite] = ACTIONS(5283), - [anon_sym_BSLASHNotecite] = ACTIONS(5283), - [anon_sym_BSLASHpnotecite] = ACTIONS(5283), - [anon_sym_BSLASHPnotecite] = ACTIONS(5283), - [anon_sym_BSLASHfnotecite] = ACTIONS(5283), - [anon_sym_BSLASHlabel] = ACTIONS(5283), - [anon_sym_BSLASHref] = ACTIONS(5283), - [anon_sym_BSLASHeqref] = ACTIONS(5283), - [anon_sym_BSLASHvref] = ACTIONS(5283), - [anon_sym_BSLASHVref] = ACTIONS(5283), - [anon_sym_BSLASHautoref] = ACTIONS(5283), - [anon_sym_BSLASHpageref] = ACTIONS(5283), - [anon_sym_BSLASHcref] = ACTIONS(5283), - [anon_sym_BSLASHCref] = ACTIONS(5283), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnameCref] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHlabelcref] = ACTIONS(5283), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnewlabel] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdef] = ACTIONS(5283), - [anon_sym_BSLASHlet] = ACTIONS(5283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), - [anon_sym_BSLASHgls] = ACTIONS(5283), - [anon_sym_BSLASHGls] = ACTIONS(5283), - [anon_sym_BSLASHGLS] = ACTIONS(5283), - [anon_sym_BSLASHglspl] = ACTIONS(5283), - [anon_sym_BSLASHGlspl] = ACTIONS(5283), - [anon_sym_BSLASHGLSpl] = ACTIONS(5283), - [anon_sym_BSLASHglsdisp] = ACTIONS(5283), - [anon_sym_BSLASHglslink] = ACTIONS(5283), - [anon_sym_BSLASHglstext] = ACTIONS(5283), - [anon_sym_BSLASHGlstext] = ACTIONS(5283), - [anon_sym_BSLASHGLStext] = ACTIONS(5283), - [anon_sym_BSLASHglsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), - [anon_sym_BSLASHglsplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSplural] = ACTIONS(5283), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHglsname] = ACTIONS(5283), - [anon_sym_BSLASHGlsname] = ACTIONS(5283), - [anon_sym_BSLASHGLSname] = ACTIONS(5283), - [anon_sym_BSLASHglssymbol] = ACTIONS(5283), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), - [anon_sym_BSLASHglsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), - [anon_sym_BSLASHglsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), - [anon_sym_BSLASHglsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), - [anon_sym_BSLASHglsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), - [anon_sym_BSLASHglsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), - [anon_sym_BSLASHnewacronym] = ACTIONS(5283), - [anon_sym_BSLASHacrshort] = ACTIONS(5283), - [anon_sym_BSLASHAcrshort] = ACTIONS(5283), - [anon_sym_BSLASHACRshort] = ACTIONS(5283), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), - [anon_sym_BSLASHacrlong] = ACTIONS(5283), - [anon_sym_BSLASHAcrlong] = ACTIONS(5283), - [anon_sym_BSLASHACRlong] = ACTIONS(5283), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), - [anon_sym_BSLASHacrfull] = ACTIONS(5283), - [anon_sym_BSLASHAcrfull] = ACTIONS(5283), - [anon_sym_BSLASHACRfull] = ACTIONS(5283), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), - [anon_sym_BSLASHacs] = ACTIONS(5283), - [anon_sym_BSLASHAcs] = ACTIONS(5283), - [anon_sym_BSLASHacsp] = ACTIONS(5283), - [anon_sym_BSLASHAcsp] = ACTIONS(5283), - [anon_sym_BSLASHacl] = ACTIONS(5283), - [anon_sym_BSLASHAcl] = ACTIONS(5283), - [anon_sym_BSLASHaclp] = ACTIONS(5283), - [anon_sym_BSLASHAclp] = ACTIONS(5283), - [anon_sym_BSLASHacf] = ACTIONS(5283), - [anon_sym_BSLASHAcf] = ACTIONS(5283), - [anon_sym_BSLASHacfp] = ACTIONS(5283), - [anon_sym_BSLASHAcfp] = ACTIONS(5283), - [anon_sym_BSLASHac] = ACTIONS(5283), - [anon_sym_BSLASHAc] = ACTIONS(5283), - [anon_sym_BSLASHacp] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), - [anon_sym_BSLASHcolor] = ACTIONS(5283), - [anon_sym_BSLASHcolorbox] = ACTIONS(5283), - [anon_sym_BSLASHtextcolor] = ACTIONS(5283), - [anon_sym_BSLASHpagecolor] = ACTIONS(5283), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), + [anon_sym_BSLASHiffalse] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_RPAREN] = ACTIONS(5067), + [anon_sym_LBRACK] = ACTIONS(5067), + [anon_sym_RBRACK] = ACTIONS(5067), + [anon_sym_COMMA] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_BSLASHpart] = ACTIONS(5069), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddpart] = ACTIONS(5069), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), + [anon_sym_BSLASHchapter] = ACTIONS(5069), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddchap] = ACTIONS(5069), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsection] = ACTIONS(5069), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddsec] = ACTIONS(5069), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubsection] = ACTIONS(5069), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHparagraph] = ACTIONS(5069), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), + [anon_sym_BSLASHitem] = ACTIONS(5069), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5067), + [sym_word] = ACTIONS(5069), + [sym_placeholder] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_STAR] = ACTIONS(5069), + [anon_sym_SLASH] = ACTIONS(5069), + [anon_sym_CARET] = ACTIONS(5069), + [anon_sym__] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5069), + [anon_sym_GT] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5069), + [anon_sym_PIPE] = ACTIONS(5069), + [anon_sym_COLON] = ACTIONS(5069), + [anon_sym_SQUOTE] = ACTIONS(5069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), + [anon_sym_BSLASHbegin] = ACTIONS(5069), + [anon_sym_BSLASHend] = ACTIONS(5069), + [anon_sym_BSLASHusepackage] = ACTIONS(5069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), + [anon_sym_BSLASHinclude] = ACTIONS(5069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), + [anon_sym_BSLASHinput] = ACTIONS(5069), + [anon_sym_BSLASHsubfile] = ACTIONS(5069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), + [anon_sym_BSLASHbibliography] = ACTIONS(5069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), + [anon_sym_BSLASHincludesvg] = ACTIONS(5069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), + [anon_sym_BSLASHimport] = ACTIONS(5069), + [anon_sym_BSLASHsubimport] = ACTIONS(5069), + [anon_sym_BSLASHinputfrom] = ACTIONS(5069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), + [anon_sym_BSLASHincludefrom] = ACTIONS(5069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), + [anon_sym_BSLASHcaption] = ACTIONS(5069), + [anon_sym_BSLASHcite] = ACTIONS(5069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCite] = ACTIONS(5069), + [anon_sym_BSLASHnocite] = ACTIONS(5069), + [anon_sym_BSLASHcitet] = ACTIONS(5069), + [anon_sym_BSLASHcitep] = ACTIONS(5069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteauthor] = ACTIONS(5069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitetitle] = ACTIONS(5069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteyear] = ACTIONS(5069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitedate] = ACTIONS(5069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteurl] = ACTIONS(5069), + [anon_sym_BSLASHfullcite] = ACTIONS(5069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), + [anon_sym_BSLASHcitealt] = ACTIONS(5069), + [anon_sym_BSLASHcitealp] = ACTIONS(5069), + [anon_sym_BSLASHcitetext] = ACTIONS(5069), + [anon_sym_BSLASHparencite] = ACTIONS(5069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHParencite] = ACTIONS(5069), + [anon_sym_BSLASHfootcite] = ACTIONS(5069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), + [anon_sym_BSLASHtextcite] = ACTIONS(5069), + [anon_sym_BSLASHTextcite] = ACTIONS(5069), + [anon_sym_BSLASHsmartcite] = ACTIONS(5069), + [anon_sym_BSLASHSmartcite] = ACTIONS(5069), + [anon_sym_BSLASHsupercite] = ACTIONS(5069), + [anon_sym_BSLASHautocite] = ACTIONS(5069), + [anon_sym_BSLASHAutocite] = ACTIONS(5069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHvolcite] = ACTIONS(5069), + [anon_sym_BSLASHVolcite] = ACTIONS(5069), + [anon_sym_BSLASHpvolcite] = ACTIONS(5069), + [anon_sym_BSLASHPvolcite] = ACTIONS(5069), + [anon_sym_BSLASHfvolcite] = ACTIONS(5069), + [anon_sym_BSLASHftvolcite] = ACTIONS(5069), + [anon_sym_BSLASHsvolcite] = ACTIONS(5069), + [anon_sym_BSLASHSvolcite] = ACTIONS(5069), + [anon_sym_BSLASHtvolcite] = ACTIONS(5069), + [anon_sym_BSLASHTvolcite] = ACTIONS(5069), + [anon_sym_BSLASHavolcite] = ACTIONS(5069), + [anon_sym_BSLASHAvolcite] = ACTIONS(5069), + [anon_sym_BSLASHnotecite] = ACTIONS(5069), + [anon_sym_BSLASHNotecite] = ACTIONS(5069), + [anon_sym_BSLASHpnotecite] = ACTIONS(5069), + [anon_sym_BSLASHPnotecite] = ACTIONS(5069), + [anon_sym_BSLASHfnotecite] = ACTIONS(5069), + [anon_sym_BSLASHlabel] = ACTIONS(5069), + [anon_sym_BSLASHref] = ACTIONS(5069), + [anon_sym_BSLASHeqref] = ACTIONS(5069), + [anon_sym_BSLASHvref] = ACTIONS(5069), + [anon_sym_BSLASHVref] = ACTIONS(5069), + [anon_sym_BSLASHautoref] = ACTIONS(5069), + [anon_sym_BSLASHpageref] = ACTIONS(5069), + [anon_sym_BSLASHcref] = ACTIONS(5069), + [anon_sym_BSLASHCref] = ACTIONS(5069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), + [anon_sym_BSLASHnamecref] = ACTIONS(5069), + [anon_sym_BSLASHnameCref] = ACTIONS(5069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), + [anon_sym_BSLASHlabelcref] = ACTIONS(5069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), + [anon_sym_BSLASHcrefrange] = ACTIONS(5069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCrefrange] = ACTIONS(5069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), + [anon_sym_BSLASHnewlabel] = ACTIONS(5069), + [anon_sym_BSLASHnewcommand] = ACTIONS(5069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), + [anon_sym_BSLASHdef] = ACTIONS(5069), + [anon_sym_BSLASHlet] = ACTIONS(5069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), + [anon_sym_BSLASHgls] = ACTIONS(5069), + [anon_sym_BSLASHGls] = ACTIONS(5069), + [anon_sym_BSLASHGLS] = ACTIONS(5069), + [anon_sym_BSLASHglspl] = ACTIONS(5069), + [anon_sym_BSLASHGlspl] = ACTIONS(5069), + [anon_sym_BSLASHGLSpl] = ACTIONS(5069), + [anon_sym_BSLASHglsdisp] = ACTIONS(5069), + [anon_sym_BSLASHglslink] = ACTIONS(5069), + [anon_sym_BSLASHglstext] = ACTIONS(5069), + [anon_sym_BSLASHGlstext] = ACTIONS(5069), + [anon_sym_BSLASHGLStext] = ACTIONS(5069), + [anon_sym_BSLASHglsfirst] = ACTIONS(5069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), + [anon_sym_BSLASHglsplural] = ACTIONS(5069), + [anon_sym_BSLASHGlsplural] = ACTIONS(5069), + [anon_sym_BSLASHGLSplural] = ACTIONS(5069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHglsname] = ACTIONS(5069), + [anon_sym_BSLASHGlsname] = ACTIONS(5069), + [anon_sym_BSLASHGLSname] = ACTIONS(5069), + [anon_sym_BSLASHglssymbol] = ACTIONS(5069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), + [anon_sym_BSLASHglsdesc] = ACTIONS(5069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), + [anon_sym_BSLASHglsuseri] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), + [anon_sym_BSLASHglsuserii] = ACTIONS(5069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), + [anon_sym_BSLASHglsuserv] = ACTIONS(5069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), + [anon_sym_BSLASHglsuservi] = ACTIONS(5069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), + [anon_sym_BSLASHnewacronym] = ACTIONS(5069), + [anon_sym_BSLASHacrshort] = ACTIONS(5069), + [anon_sym_BSLASHAcrshort] = ACTIONS(5069), + [anon_sym_BSLASHACRshort] = ACTIONS(5069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), + [anon_sym_BSLASHacrlong] = ACTIONS(5069), + [anon_sym_BSLASHAcrlong] = ACTIONS(5069), + [anon_sym_BSLASHACRlong] = ACTIONS(5069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), + [anon_sym_BSLASHacrfull] = ACTIONS(5069), + [anon_sym_BSLASHAcrfull] = ACTIONS(5069), + [anon_sym_BSLASHACRfull] = ACTIONS(5069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), + [anon_sym_BSLASHacs] = ACTIONS(5069), + [anon_sym_BSLASHAcs] = ACTIONS(5069), + [anon_sym_BSLASHacsp] = ACTIONS(5069), + [anon_sym_BSLASHAcsp] = ACTIONS(5069), + [anon_sym_BSLASHacl] = ACTIONS(5069), + [anon_sym_BSLASHAcl] = ACTIONS(5069), + [anon_sym_BSLASHaclp] = ACTIONS(5069), + [anon_sym_BSLASHAclp] = ACTIONS(5069), + [anon_sym_BSLASHacf] = ACTIONS(5069), + [anon_sym_BSLASHAcf] = ACTIONS(5069), + [anon_sym_BSLASHacfp] = ACTIONS(5069), + [anon_sym_BSLASHAcfp] = ACTIONS(5069), + [anon_sym_BSLASHac] = ACTIONS(5069), + [anon_sym_BSLASHAc] = ACTIONS(5069), + [anon_sym_BSLASHacp] = ACTIONS(5069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), + [anon_sym_BSLASHcolor] = ACTIONS(5069), + [anon_sym_BSLASHcolorbox] = ACTIONS(5069), + [anon_sym_BSLASHtextcolor] = ACTIONS(5069), + [anon_sym_BSLASHpagecolor] = ACTIONS(5069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), + [anon_sym_BSLASHtext] = ACTIONS(5069), + [anon_sym_BSLASHintertext] = ACTIONS(5069), + [anon_sym_shortintertext] = ACTIONS(5069), }, - [1237] = { - [sym_command_name] = ACTIONS(5287), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_RPAREN] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_RBRACK] = ACTIONS(5285), - [anon_sym_COMMA] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_BSLASHpart] = ACTIONS(5287), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddpart] = ACTIONS(5287), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5285), - [anon_sym_BSLASHchapter] = ACTIONS(5287), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddchap] = ACTIONS(5287), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsection] = ACTIONS(5287), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHaddsec] = ACTIONS(5287), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5287), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5285), - [anon_sym_BSLASHparagraph] = ACTIONS(5287), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5287), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5285), - [anon_sym_BSLASHitem] = ACTIONS(5287), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(5285), - [sym_word] = ACTIONS(5287), - [sym_placeholder] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_SLASH] = ACTIONS(5287), - [anon_sym_CARET] = ACTIONS(5287), - [anon_sym__] = ACTIONS(5287), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_GT] = ACTIONS(5287), - [anon_sym_BANG] = ACTIONS(5287), - [anon_sym_PIPE] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_SQUOTE] = ACTIONS(5287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5285), - [anon_sym_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5285), - [anon_sym_BSLASHbegin] = ACTIONS(5287), - [anon_sym_BSLASHend] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5287), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5287), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5287), - [anon_sym_BSLASHinclude] = ACTIONS(5287), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5287), - [anon_sym_BSLASHinput] = ACTIONS(5287), - [anon_sym_BSLASHsubfile] = ACTIONS(5287), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5287), - [anon_sym_BSLASHbibliography] = ACTIONS(5287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5287), - [anon_sym_BSLASHincludesvg] = ACTIONS(5287), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5287), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5287), - [anon_sym_BSLASHimport] = ACTIONS(5287), - [anon_sym_BSLASHsubimport] = ACTIONS(5287), - [anon_sym_BSLASHinputfrom] = ACTIONS(5287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5287), - [anon_sym_BSLASHincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHcaption] = ACTIONS(5287), - [anon_sym_BSLASHcite] = ACTIONS(5287), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCite] = ACTIONS(5287), - [anon_sym_BSLASHnocite] = ACTIONS(5287), - [anon_sym_BSLASHcitet] = ACTIONS(5287), - [anon_sym_BSLASHcitep] = ACTIONS(5287), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteyear] = ACTIONS(5287), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitedate] = ACTIONS(5287), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteurl] = ACTIONS(5287), - [anon_sym_BSLASHfullcite] = ACTIONS(5287), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5287), - [anon_sym_BSLASHcitealt] = ACTIONS(5287), - [anon_sym_BSLASHcitealp] = ACTIONS(5287), - [anon_sym_BSLASHcitetext] = ACTIONS(5287), - [anon_sym_BSLASHparencite] = ACTIONS(5287), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHParencite] = ACTIONS(5287), - [anon_sym_BSLASHfootcite] = ACTIONS(5287), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5287), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5287), - [anon_sym_BSLASHtextcite] = ACTIONS(5287), - [anon_sym_BSLASHTextcite] = ACTIONS(5287), - [anon_sym_BSLASHsmartcite] = ACTIONS(5287), - [anon_sym_BSLASHSmartcite] = ACTIONS(5287), - [anon_sym_BSLASHsupercite] = ACTIONS(5287), - [anon_sym_BSLASHautocite] = ACTIONS(5287), - [anon_sym_BSLASHAutocite] = ACTIONS(5287), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHvolcite] = ACTIONS(5287), - [anon_sym_BSLASHVolcite] = ACTIONS(5287), - [anon_sym_BSLASHpvolcite] = ACTIONS(5287), - [anon_sym_BSLASHPvolcite] = ACTIONS(5287), - [anon_sym_BSLASHfvolcite] = ACTIONS(5287), - [anon_sym_BSLASHftvolcite] = ACTIONS(5287), - [anon_sym_BSLASHsvolcite] = ACTIONS(5287), - [anon_sym_BSLASHSvolcite] = ACTIONS(5287), - [anon_sym_BSLASHtvolcite] = ACTIONS(5287), - [anon_sym_BSLASHTvolcite] = ACTIONS(5287), - [anon_sym_BSLASHavolcite] = ACTIONS(5287), - [anon_sym_BSLASHAvolcite] = ACTIONS(5287), - [anon_sym_BSLASHnotecite] = ACTIONS(5287), - [anon_sym_BSLASHNotecite] = ACTIONS(5287), - [anon_sym_BSLASHpnotecite] = ACTIONS(5287), - [anon_sym_BSLASHPnotecite] = ACTIONS(5287), - [anon_sym_BSLASHfnotecite] = ACTIONS(5287), - [anon_sym_BSLASHlabel] = ACTIONS(5287), - [anon_sym_BSLASHref] = ACTIONS(5287), - [anon_sym_BSLASHeqref] = ACTIONS(5287), - [anon_sym_BSLASHvref] = ACTIONS(5287), - [anon_sym_BSLASHVref] = ACTIONS(5287), - [anon_sym_BSLASHautoref] = ACTIONS(5287), - [anon_sym_BSLASHpageref] = ACTIONS(5287), - [anon_sym_BSLASHcref] = ACTIONS(5287), - [anon_sym_BSLASHCref] = ACTIONS(5287), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnameCref] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHlabelcref] = ACTIONS(5287), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnewlabel] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdef] = ACTIONS(5287), - [anon_sym_BSLASHlet] = ACTIONS(5287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5287), - [anon_sym_BSLASHgls] = ACTIONS(5287), - [anon_sym_BSLASHGls] = ACTIONS(5287), - [anon_sym_BSLASHGLS] = ACTIONS(5287), - [anon_sym_BSLASHglspl] = ACTIONS(5287), - [anon_sym_BSLASHGlspl] = ACTIONS(5287), - [anon_sym_BSLASHGLSpl] = ACTIONS(5287), - [anon_sym_BSLASHglsdisp] = ACTIONS(5287), - [anon_sym_BSLASHglslink] = ACTIONS(5287), - [anon_sym_BSLASHglstext] = ACTIONS(5287), - [anon_sym_BSLASHGlstext] = ACTIONS(5287), - [anon_sym_BSLASHGLStext] = ACTIONS(5287), - [anon_sym_BSLASHglsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5287), - [anon_sym_BSLASHglsplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSplural] = ACTIONS(5287), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHglsname] = ACTIONS(5287), - [anon_sym_BSLASHGlsname] = ACTIONS(5287), - [anon_sym_BSLASHGLSname] = ACTIONS(5287), - [anon_sym_BSLASHglssymbol] = ACTIONS(5287), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5287), - [anon_sym_BSLASHglsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5287), - [anon_sym_BSLASHglsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5287), - [anon_sym_BSLASHglsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5287), - [anon_sym_BSLASHglsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5287), - [anon_sym_BSLASHglsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5287), - [anon_sym_BSLASHnewacronym] = ACTIONS(5287), - [anon_sym_BSLASHacrshort] = ACTIONS(5287), - [anon_sym_BSLASHAcrshort] = ACTIONS(5287), - [anon_sym_BSLASHACRshort] = ACTIONS(5287), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5287), - [anon_sym_BSLASHacrlong] = ACTIONS(5287), - [anon_sym_BSLASHAcrlong] = ACTIONS(5287), - [anon_sym_BSLASHACRlong] = ACTIONS(5287), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5287), - [anon_sym_BSLASHacrfull] = ACTIONS(5287), - [anon_sym_BSLASHAcrfull] = ACTIONS(5287), - [anon_sym_BSLASHACRfull] = ACTIONS(5287), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5287), - [anon_sym_BSLASHacs] = ACTIONS(5287), - [anon_sym_BSLASHAcs] = ACTIONS(5287), - [anon_sym_BSLASHacsp] = ACTIONS(5287), - [anon_sym_BSLASHAcsp] = ACTIONS(5287), - [anon_sym_BSLASHacl] = ACTIONS(5287), - [anon_sym_BSLASHAcl] = ACTIONS(5287), - [anon_sym_BSLASHaclp] = ACTIONS(5287), - [anon_sym_BSLASHAclp] = ACTIONS(5287), - [anon_sym_BSLASHacf] = ACTIONS(5287), - [anon_sym_BSLASHAcf] = ACTIONS(5287), - [anon_sym_BSLASHacfp] = ACTIONS(5287), - [anon_sym_BSLASHAcfp] = ACTIONS(5287), - [anon_sym_BSLASHac] = ACTIONS(5287), - [anon_sym_BSLASHAc] = ACTIONS(5287), - [anon_sym_BSLASHacp] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5287), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5287), - [anon_sym_BSLASHcolor] = ACTIONS(5287), - [anon_sym_BSLASHcolorbox] = ACTIONS(5287), - [anon_sym_BSLASHtextcolor] = ACTIONS(5287), - [anon_sym_BSLASHpagecolor] = ACTIONS(5287), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5287), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5287), + [1110] = { + [sym_command_name] = ACTIONS(4883), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4883), + [anon_sym_LPAREN] = ACTIONS(4881), + [anon_sym_RPAREN] = ACTIONS(4881), + [anon_sym_LBRACK] = ACTIONS(4881), + [anon_sym_RBRACK] = ACTIONS(4881), + [anon_sym_COMMA] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(4881), + [anon_sym_BSLASHpart] = ACTIONS(4883), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddpart] = ACTIONS(4883), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4881), + [anon_sym_BSLASHchapter] = ACTIONS(4883), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddchap] = ACTIONS(4883), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsection] = ACTIONS(4883), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddsec] = ACTIONS(4883), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubsection] = ACTIONS(4883), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4883), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHparagraph] = ACTIONS(4883), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4883), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4881), + [anon_sym_BSLASHitem] = ACTIONS(4883), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4881), + [anon_sym_LBRACE] = ACTIONS(4881), + [sym_word] = ACTIONS(4883), + [sym_placeholder] = ACTIONS(4881), + [anon_sym_PLUS] = ACTIONS(4883), + [anon_sym_DASH] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_CARET] = ACTIONS(4883), + [anon_sym__] = ACTIONS(4883), + [anon_sym_LT] = ACTIONS(4883), + [anon_sym_GT] = ACTIONS(4883), + [anon_sym_BANG] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4883), + [anon_sym_COLON] = ACTIONS(4883), + [anon_sym_SQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4881), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4881), + [anon_sym_DOLLAR] = ACTIONS(4883), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4881), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4881), + [anon_sym_BSLASHbegin] = ACTIONS(4883), + [anon_sym_BSLASHend] = ACTIONS(4883), + [anon_sym_BSLASHusepackage] = ACTIONS(4883), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4883), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4883), + [anon_sym_BSLASHinclude] = ACTIONS(4883), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4883), + [anon_sym_BSLASHinput] = ACTIONS(4883), + [anon_sym_BSLASHsubfile] = ACTIONS(4883), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4883), + [anon_sym_BSLASHbibliography] = ACTIONS(4883), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4883), + [anon_sym_BSLASHincludesvg] = ACTIONS(4883), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4883), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4883), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4883), + [anon_sym_BSLASHimport] = ACTIONS(4883), + [anon_sym_BSLASHsubimport] = ACTIONS(4883), + [anon_sym_BSLASHinputfrom] = ACTIONS(4883), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4883), + [anon_sym_BSLASHincludefrom] = ACTIONS(4883), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4883), + [anon_sym_BSLASHcaption] = ACTIONS(4883), + [anon_sym_BSLASHcite] = ACTIONS(4883), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCite] = ACTIONS(4883), + [anon_sym_BSLASHnocite] = ACTIONS(4883), + [anon_sym_BSLASHcitet] = ACTIONS(4883), + [anon_sym_BSLASHcitep] = ACTIONS(4883), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteauthor] = ACTIONS(4883), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4883), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitetitle] = ACTIONS(4883), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteyear] = ACTIONS(4883), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitedate] = ACTIONS(4883), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteurl] = ACTIONS(4883), + [anon_sym_BSLASHfullcite] = ACTIONS(4883), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4883), + [anon_sym_BSLASHcitealt] = ACTIONS(4883), + [anon_sym_BSLASHcitealp] = ACTIONS(4883), + [anon_sym_BSLASHcitetext] = ACTIONS(4883), + [anon_sym_BSLASHparencite] = ACTIONS(4883), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHParencite] = ACTIONS(4883), + [anon_sym_BSLASHfootcite] = ACTIONS(4883), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4883), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4883), + [anon_sym_BSLASHtextcite] = ACTIONS(4883), + [anon_sym_BSLASHTextcite] = ACTIONS(4883), + [anon_sym_BSLASHsmartcite] = ACTIONS(4883), + [anon_sym_BSLASHSmartcite] = ACTIONS(4883), + [anon_sym_BSLASHsupercite] = ACTIONS(4883), + [anon_sym_BSLASHautocite] = ACTIONS(4883), + [anon_sym_BSLASHAutocite] = ACTIONS(4883), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHvolcite] = ACTIONS(4883), + [anon_sym_BSLASHVolcite] = ACTIONS(4883), + [anon_sym_BSLASHpvolcite] = ACTIONS(4883), + [anon_sym_BSLASHPvolcite] = ACTIONS(4883), + [anon_sym_BSLASHfvolcite] = ACTIONS(4883), + [anon_sym_BSLASHftvolcite] = ACTIONS(4883), + [anon_sym_BSLASHsvolcite] = ACTIONS(4883), + [anon_sym_BSLASHSvolcite] = ACTIONS(4883), + [anon_sym_BSLASHtvolcite] = ACTIONS(4883), + [anon_sym_BSLASHTvolcite] = ACTIONS(4883), + [anon_sym_BSLASHavolcite] = ACTIONS(4883), + [anon_sym_BSLASHAvolcite] = ACTIONS(4883), + [anon_sym_BSLASHnotecite] = ACTIONS(4883), + [anon_sym_BSLASHNotecite] = ACTIONS(4883), + [anon_sym_BSLASHpnotecite] = ACTIONS(4883), + [anon_sym_BSLASHPnotecite] = ACTIONS(4883), + [anon_sym_BSLASHfnotecite] = ACTIONS(4883), + [anon_sym_BSLASHlabel] = ACTIONS(4883), + [anon_sym_BSLASHref] = ACTIONS(4883), + [anon_sym_BSLASHeqref] = ACTIONS(4883), + [anon_sym_BSLASHvref] = ACTIONS(4883), + [anon_sym_BSLASHVref] = ACTIONS(4883), + [anon_sym_BSLASHautoref] = ACTIONS(4883), + [anon_sym_BSLASHpageref] = ACTIONS(4883), + [anon_sym_BSLASHcref] = ACTIONS(4883), + [anon_sym_BSLASHCref] = ACTIONS(4883), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4881), + [anon_sym_BSLASHnamecref] = ACTIONS(4883), + [anon_sym_BSLASHnameCref] = ACTIONS(4883), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4883), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4883), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4883), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4883), + [anon_sym_BSLASHlabelcref] = ACTIONS(4883), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4883), + [anon_sym_BSLASHcrefrange] = ACTIONS(4883), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCrefrange] = ACTIONS(4883), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4881), + [anon_sym_BSLASHnewlabel] = ACTIONS(4883), + [anon_sym_BSLASHnewcommand] = ACTIONS(4883), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4883), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4883), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4883), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4881), + [anon_sym_BSLASHdef] = ACTIONS(4883), + [anon_sym_BSLASHlet] = ACTIONS(4883), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4883), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4883), + [anon_sym_BSLASHgls] = ACTIONS(4883), + [anon_sym_BSLASHGls] = ACTIONS(4883), + [anon_sym_BSLASHGLS] = ACTIONS(4883), + [anon_sym_BSLASHglspl] = ACTIONS(4883), + [anon_sym_BSLASHGlspl] = ACTIONS(4883), + [anon_sym_BSLASHGLSpl] = ACTIONS(4883), + [anon_sym_BSLASHglsdisp] = ACTIONS(4883), + [anon_sym_BSLASHglslink] = ACTIONS(4883), + [anon_sym_BSLASHglstext] = ACTIONS(4883), + [anon_sym_BSLASHGlstext] = ACTIONS(4883), + [anon_sym_BSLASHGLStext] = ACTIONS(4883), + [anon_sym_BSLASHglsfirst] = ACTIONS(4883), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4883), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4883), + [anon_sym_BSLASHglsplural] = ACTIONS(4883), + [anon_sym_BSLASHGlsplural] = ACTIONS(4883), + [anon_sym_BSLASHGLSplural] = ACTIONS(4883), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHglsname] = ACTIONS(4883), + [anon_sym_BSLASHGlsname] = ACTIONS(4883), + [anon_sym_BSLASHGLSname] = ACTIONS(4883), + [anon_sym_BSLASHglssymbol] = ACTIONS(4883), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4883), + [anon_sym_BSLASHglsdesc] = ACTIONS(4883), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4883), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4883), + [anon_sym_BSLASHglsuseri] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4883), + [anon_sym_BSLASHglsuserii] = ACTIONS(4883), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4883), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4883), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4883), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4883), + [anon_sym_BSLASHglsuserv] = ACTIONS(4883), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4883), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4883), + [anon_sym_BSLASHglsuservi] = ACTIONS(4883), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4883), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4883), + [anon_sym_BSLASHnewacronym] = ACTIONS(4883), + [anon_sym_BSLASHacrshort] = ACTIONS(4883), + [anon_sym_BSLASHAcrshort] = ACTIONS(4883), + [anon_sym_BSLASHACRshort] = ACTIONS(4883), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4883), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4883), + [anon_sym_BSLASHacrlong] = ACTIONS(4883), + [anon_sym_BSLASHAcrlong] = ACTIONS(4883), + [anon_sym_BSLASHACRlong] = ACTIONS(4883), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4883), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4883), + [anon_sym_BSLASHacrfull] = ACTIONS(4883), + [anon_sym_BSLASHAcrfull] = ACTIONS(4883), + [anon_sym_BSLASHACRfull] = ACTIONS(4883), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4883), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4883), + [anon_sym_BSLASHacs] = ACTIONS(4883), + [anon_sym_BSLASHAcs] = ACTIONS(4883), + [anon_sym_BSLASHacsp] = ACTIONS(4883), + [anon_sym_BSLASHAcsp] = ACTIONS(4883), + [anon_sym_BSLASHacl] = ACTIONS(4883), + [anon_sym_BSLASHAcl] = ACTIONS(4883), + [anon_sym_BSLASHaclp] = ACTIONS(4883), + [anon_sym_BSLASHAclp] = ACTIONS(4883), + [anon_sym_BSLASHacf] = ACTIONS(4883), + [anon_sym_BSLASHAcf] = ACTIONS(4883), + [anon_sym_BSLASHacfp] = ACTIONS(4883), + [anon_sym_BSLASHAcfp] = ACTIONS(4883), + [anon_sym_BSLASHac] = ACTIONS(4883), + [anon_sym_BSLASHAc] = ACTIONS(4883), + [anon_sym_BSLASHacp] = ACTIONS(4883), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4883), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4883), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4883), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4883), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4883), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4883), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4883), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4883), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4883), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4883), + [anon_sym_BSLASHcolor] = ACTIONS(4883), + [anon_sym_BSLASHcolorbox] = ACTIONS(4883), + [anon_sym_BSLASHtextcolor] = ACTIONS(4883), + [anon_sym_BSLASHpagecolor] = ACTIONS(4883), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4883), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4883), + [anon_sym_BSLASHtext] = ACTIONS(4883), + [anon_sym_BSLASHintertext] = ACTIONS(4883), + [anon_sym_shortintertext] = ACTIONS(4883), }, - [1238] = { - [sym_command_name] = ACTIONS(5411), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5411), - [anon_sym_LPAREN] = ACTIONS(5413), - [anon_sym_RPAREN] = ACTIONS(5413), - [anon_sym_LBRACK] = ACTIONS(5413), - [anon_sym_RBRACK] = ACTIONS(5413), - [anon_sym_COMMA] = ACTIONS(5413), - [anon_sym_EQ] = ACTIONS(5413), - [anon_sym_BSLASHpart] = ACTIONS(5411), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddpart] = ACTIONS(5411), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5413), - [anon_sym_BSLASHchapter] = ACTIONS(5411), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddchap] = ACTIONS(5411), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsection] = ACTIONS(5411), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHaddsec] = ACTIONS(5411), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubsection] = ACTIONS(5411), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5411), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5413), - [anon_sym_BSLASHparagraph] = ACTIONS(5411), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5413), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5411), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5413), - [anon_sym_BSLASHitem] = ACTIONS(5411), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5413), - [anon_sym_LBRACE] = ACTIONS(5413), - [sym_word] = ACTIONS(5411), - [sym_placeholder] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(5411), - [anon_sym_STAR] = ACTIONS(5411), - [anon_sym_SLASH] = ACTIONS(5411), - [anon_sym_CARET] = ACTIONS(5411), - [anon_sym__] = ACTIONS(5411), - [anon_sym_LT] = ACTIONS(5411), - [anon_sym_GT] = ACTIONS(5411), - [anon_sym_BANG] = ACTIONS(5411), - [anon_sym_PIPE] = ACTIONS(5411), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_SQUOTE] = ACTIONS(5411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5413), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5413), - [anon_sym_BSLASHbegin] = ACTIONS(5411), - [anon_sym_BSLASHend] = ACTIONS(5411), - [anon_sym_BSLASHusepackage] = ACTIONS(5411), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5411), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5411), - [anon_sym_BSLASHinclude] = ACTIONS(5411), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5411), - [anon_sym_BSLASHinput] = ACTIONS(5411), - [anon_sym_BSLASHsubfile] = ACTIONS(5411), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5411), - [anon_sym_BSLASHbibliography] = ACTIONS(5411), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5411), - [anon_sym_BSLASHincludesvg] = ACTIONS(5411), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5411), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5411), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5411), - [anon_sym_BSLASHimport] = ACTIONS(5411), - [anon_sym_BSLASHsubimport] = ACTIONS(5411), - [anon_sym_BSLASHinputfrom] = ACTIONS(5411), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5411), - [anon_sym_BSLASHincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHcaption] = ACTIONS(5411), - [anon_sym_BSLASHcite] = ACTIONS(5411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCite] = ACTIONS(5411), - [anon_sym_BSLASHnocite] = ACTIONS(5411), - [anon_sym_BSLASHcitet] = ACTIONS(5411), - [anon_sym_BSLASHcitep] = ACTIONS(5411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteauthor] = ACTIONS(5411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitetitle] = ACTIONS(5411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteyear] = ACTIONS(5411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitedate] = ACTIONS(5411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteurl] = ACTIONS(5411), - [anon_sym_BSLASHfullcite] = ACTIONS(5411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5411), - [anon_sym_BSLASHcitealt] = ACTIONS(5411), - [anon_sym_BSLASHcitealp] = ACTIONS(5411), - [anon_sym_BSLASHcitetext] = ACTIONS(5411), - [anon_sym_BSLASHparencite] = ACTIONS(5411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHParencite] = ACTIONS(5411), - [anon_sym_BSLASHfootcite] = ACTIONS(5411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5411), - [anon_sym_BSLASHtextcite] = ACTIONS(5411), - [anon_sym_BSLASHTextcite] = ACTIONS(5411), - [anon_sym_BSLASHsmartcite] = ACTIONS(5411), - [anon_sym_BSLASHSmartcite] = ACTIONS(5411), - [anon_sym_BSLASHsupercite] = ACTIONS(5411), - [anon_sym_BSLASHautocite] = ACTIONS(5411), - [anon_sym_BSLASHAutocite] = ACTIONS(5411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHvolcite] = ACTIONS(5411), - [anon_sym_BSLASHVolcite] = ACTIONS(5411), - [anon_sym_BSLASHpvolcite] = ACTIONS(5411), - [anon_sym_BSLASHPvolcite] = ACTIONS(5411), - [anon_sym_BSLASHfvolcite] = ACTIONS(5411), - [anon_sym_BSLASHftvolcite] = ACTIONS(5411), - [anon_sym_BSLASHsvolcite] = ACTIONS(5411), - [anon_sym_BSLASHSvolcite] = ACTIONS(5411), - [anon_sym_BSLASHtvolcite] = ACTIONS(5411), - [anon_sym_BSLASHTvolcite] = ACTIONS(5411), - [anon_sym_BSLASHavolcite] = ACTIONS(5411), - [anon_sym_BSLASHAvolcite] = ACTIONS(5411), - [anon_sym_BSLASHnotecite] = ACTIONS(5411), - [anon_sym_BSLASHNotecite] = ACTIONS(5411), - [anon_sym_BSLASHpnotecite] = ACTIONS(5411), - [anon_sym_BSLASHPnotecite] = ACTIONS(5411), - [anon_sym_BSLASHfnotecite] = ACTIONS(5411), - [anon_sym_BSLASHlabel] = ACTIONS(5411), - [anon_sym_BSLASHref] = ACTIONS(5411), - [anon_sym_BSLASHeqref] = ACTIONS(5411), - [anon_sym_BSLASHvref] = ACTIONS(5411), - [anon_sym_BSLASHVref] = ACTIONS(5411), - [anon_sym_BSLASHautoref] = ACTIONS(5411), - [anon_sym_BSLASHpageref] = ACTIONS(5411), - [anon_sym_BSLASHcref] = ACTIONS(5411), - [anon_sym_BSLASHCref] = ACTIONS(5411), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnameCref] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHlabelcref] = ACTIONS(5411), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCrefrange] = ACTIONS(5411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnewlabel] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5411), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5411), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5411), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdef] = ACTIONS(5411), - [anon_sym_BSLASHlet] = ACTIONS(5411), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5411), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5411), - [anon_sym_BSLASHgls] = ACTIONS(5411), - [anon_sym_BSLASHGls] = ACTIONS(5411), - [anon_sym_BSLASHGLS] = ACTIONS(5411), - [anon_sym_BSLASHglspl] = ACTIONS(5411), - [anon_sym_BSLASHGlspl] = ACTIONS(5411), - [anon_sym_BSLASHGLSpl] = ACTIONS(5411), - [anon_sym_BSLASHglsdisp] = ACTIONS(5411), - [anon_sym_BSLASHglslink] = ACTIONS(5411), - [anon_sym_BSLASHglstext] = ACTIONS(5411), - [anon_sym_BSLASHGlstext] = ACTIONS(5411), - [anon_sym_BSLASHGLStext] = ACTIONS(5411), - [anon_sym_BSLASHglsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5411), - [anon_sym_BSLASHglsplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSplural] = ACTIONS(5411), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHglsname] = ACTIONS(5411), - [anon_sym_BSLASHGlsname] = ACTIONS(5411), - [anon_sym_BSLASHGLSname] = ACTIONS(5411), - [anon_sym_BSLASHglssymbol] = ACTIONS(5411), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5411), - [anon_sym_BSLASHglsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5411), - [anon_sym_BSLASHglsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5411), - [anon_sym_BSLASHglsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5411), - [anon_sym_BSLASHglsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5411), - [anon_sym_BSLASHglsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5411), - [anon_sym_BSLASHnewacronym] = ACTIONS(5411), - [anon_sym_BSLASHacrshort] = ACTIONS(5411), - [anon_sym_BSLASHAcrshort] = ACTIONS(5411), - [anon_sym_BSLASHACRshort] = ACTIONS(5411), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5411), - [anon_sym_BSLASHacrlong] = ACTIONS(5411), - [anon_sym_BSLASHAcrlong] = ACTIONS(5411), - [anon_sym_BSLASHACRlong] = ACTIONS(5411), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5411), - [anon_sym_BSLASHacrfull] = ACTIONS(5411), - [anon_sym_BSLASHAcrfull] = ACTIONS(5411), - [anon_sym_BSLASHACRfull] = ACTIONS(5411), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5411), - [anon_sym_BSLASHacs] = ACTIONS(5411), - [anon_sym_BSLASHAcs] = ACTIONS(5411), - [anon_sym_BSLASHacsp] = ACTIONS(5411), - [anon_sym_BSLASHAcsp] = ACTIONS(5411), - [anon_sym_BSLASHacl] = ACTIONS(5411), - [anon_sym_BSLASHAcl] = ACTIONS(5411), - [anon_sym_BSLASHaclp] = ACTIONS(5411), - [anon_sym_BSLASHAclp] = ACTIONS(5411), - [anon_sym_BSLASHacf] = ACTIONS(5411), - [anon_sym_BSLASHAcf] = ACTIONS(5411), - [anon_sym_BSLASHacfp] = ACTIONS(5411), - [anon_sym_BSLASHAcfp] = ACTIONS(5411), - [anon_sym_BSLASHac] = ACTIONS(5411), - [anon_sym_BSLASHAc] = ACTIONS(5411), - [anon_sym_BSLASHacp] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5411), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5411), - [anon_sym_BSLASHcolor] = ACTIONS(5411), - [anon_sym_BSLASHcolorbox] = ACTIONS(5411), - [anon_sym_BSLASHtextcolor] = ACTIONS(5411), - [anon_sym_BSLASHpagecolor] = ACTIONS(5411), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5411), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5411), + [1111] = { + [sym_command_name] = ACTIONS(5061), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5059), + [anon_sym_RPAREN] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5059), + [anon_sym_RBRACK] = ACTIONS(5059), + [anon_sym_COMMA] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_BSLASHpart] = ACTIONS(5061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddpart] = ACTIONS(5061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), + [anon_sym_BSLASHchapter] = ACTIONS(5061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddchap] = ACTIONS(5061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsection] = ACTIONS(5061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddsec] = ACTIONS(5061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubsection] = ACTIONS(5061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHparagraph] = ACTIONS(5061), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), + [anon_sym_BSLASHitem] = ACTIONS(5061), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5059), + [sym_word] = ACTIONS(5061), + [sym_placeholder] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_STAR] = ACTIONS(5061), + [anon_sym_SLASH] = ACTIONS(5061), + [anon_sym_CARET] = ACTIONS(5061), + [anon_sym__] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5061), + [anon_sym_GT] = ACTIONS(5061), + [anon_sym_BANG] = ACTIONS(5061), + [anon_sym_PIPE] = ACTIONS(5061), + [anon_sym_COLON] = ACTIONS(5061), + [anon_sym_SQUOTE] = ACTIONS(5061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), + [anon_sym_DOLLAR] = ACTIONS(5061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), + [anon_sym_BSLASHbegin] = ACTIONS(5061), + [anon_sym_BSLASHend] = ACTIONS(5061), + [anon_sym_BSLASHusepackage] = ACTIONS(5061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), + [anon_sym_BSLASHinclude] = ACTIONS(5061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), + [anon_sym_BSLASHinput] = ACTIONS(5061), + [anon_sym_BSLASHsubfile] = ACTIONS(5061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), + [anon_sym_BSLASHbibliography] = ACTIONS(5061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), + [anon_sym_BSLASHincludesvg] = ACTIONS(5061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), + [anon_sym_BSLASHimport] = ACTIONS(5061), + [anon_sym_BSLASHsubimport] = ACTIONS(5061), + [anon_sym_BSLASHinputfrom] = ACTIONS(5061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), + [anon_sym_BSLASHincludefrom] = ACTIONS(5061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), + [anon_sym_BSLASHcaption] = ACTIONS(5061), + [anon_sym_BSLASHcite] = ACTIONS(5061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCite] = ACTIONS(5061), + [anon_sym_BSLASHnocite] = ACTIONS(5061), + [anon_sym_BSLASHcitet] = ACTIONS(5061), + [anon_sym_BSLASHcitep] = ACTIONS(5061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteauthor] = ACTIONS(5061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitetitle] = ACTIONS(5061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteyear] = ACTIONS(5061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitedate] = ACTIONS(5061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteurl] = ACTIONS(5061), + [anon_sym_BSLASHfullcite] = ACTIONS(5061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), + [anon_sym_BSLASHcitealt] = ACTIONS(5061), + [anon_sym_BSLASHcitealp] = ACTIONS(5061), + [anon_sym_BSLASHcitetext] = ACTIONS(5061), + [anon_sym_BSLASHparencite] = ACTIONS(5061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHParencite] = ACTIONS(5061), + [anon_sym_BSLASHfootcite] = ACTIONS(5061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), + [anon_sym_BSLASHtextcite] = ACTIONS(5061), + [anon_sym_BSLASHTextcite] = ACTIONS(5061), + [anon_sym_BSLASHsmartcite] = ACTIONS(5061), + [anon_sym_BSLASHSmartcite] = ACTIONS(5061), + [anon_sym_BSLASHsupercite] = ACTIONS(5061), + [anon_sym_BSLASHautocite] = ACTIONS(5061), + [anon_sym_BSLASHAutocite] = ACTIONS(5061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHvolcite] = ACTIONS(5061), + [anon_sym_BSLASHVolcite] = ACTIONS(5061), + [anon_sym_BSLASHpvolcite] = ACTIONS(5061), + [anon_sym_BSLASHPvolcite] = ACTIONS(5061), + [anon_sym_BSLASHfvolcite] = ACTIONS(5061), + [anon_sym_BSLASHftvolcite] = ACTIONS(5061), + [anon_sym_BSLASHsvolcite] = ACTIONS(5061), + [anon_sym_BSLASHSvolcite] = ACTIONS(5061), + [anon_sym_BSLASHtvolcite] = ACTIONS(5061), + [anon_sym_BSLASHTvolcite] = ACTIONS(5061), + [anon_sym_BSLASHavolcite] = ACTIONS(5061), + [anon_sym_BSLASHAvolcite] = ACTIONS(5061), + [anon_sym_BSLASHnotecite] = ACTIONS(5061), + [anon_sym_BSLASHNotecite] = ACTIONS(5061), + [anon_sym_BSLASHpnotecite] = ACTIONS(5061), + [anon_sym_BSLASHPnotecite] = ACTIONS(5061), + [anon_sym_BSLASHfnotecite] = ACTIONS(5061), + [anon_sym_BSLASHlabel] = ACTIONS(5061), + [anon_sym_BSLASHref] = ACTIONS(5061), + [anon_sym_BSLASHeqref] = ACTIONS(5061), + [anon_sym_BSLASHvref] = ACTIONS(5061), + [anon_sym_BSLASHVref] = ACTIONS(5061), + [anon_sym_BSLASHautoref] = ACTIONS(5061), + [anon_sym_BSLASHpageref] = ACTIONS(5061), + [anon_sym_BSLASHcref] = ACTIONS(5061), + [anon_sym_BSLASHCref] = ACTIONS(5061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), + [anon_sym_BSLASHnamecref] = ACTIONS(5061), + [anon_sym_BSLASHnameCref] = ACTIONS(5061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), + [anon_sym_BSLASHlabelcref] = ACTIONS(5061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), + [anon_sym_BSLASHcrefrange] = ACTIONS(5061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCrefrange] = ACTIONS(5061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), + [anon_sym_BSLASHnewlabel] = ACTIONS(5061), + [anon_sym_BSLASHnewcommand] = ACTIONS(5061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), + [anon_sym_BSLASHdef] = ACTIONS(5061), + [anon_sym_BSLASHlet] = ACTIONS(5061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), + [anon_sym_BSLASHgls] = ACTIONS(5061), + [anon_sym_BSLASHGls] = ACTIONS(5061), + [anon_sym_BSLASHGLS] = ACTIONS(5061), + [anon_sym_BSLASHglspl] = ACTIONS(5061), + [anon_sym_BSLASHGlspl] = ACTIONS(5061), + [anon_sym_BSLASHGLSpl] = ACTIONS(5061), + [anon_sym_BSLASHglsdisp] = ACTIONS(5061), + [anon_sym_BSLASHglslink] = ACTIONS(5061), + [anon_sym_BSLASHglstext] = ACTIONS(5061), + [anon_sym_BSLASHGlstext] = ACTIONS(5061), + [anon_sym_BSLASHGLStext] = ACTIONS(5061), + [anon_sym_BSLASHglsfirst] = ACTIONS(5061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), + [anon_sym_BSLASHglsplural] = ACTIONS(5061), + [anon_sym_BSLASHGlsplural] = ACTIONS(5061), + [anon_sym_BSLASHGLSplural] = ACTIONS(5061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHglsname] = ACTIONS(5061), + [anon_sym_BSLASHGlsname] = ACTIONS(5061), + [anon_sym_BSLASHGLSname] = ACTIONS(5061), + [anon_sym_BSLASHglssymbol] = ACTIONS(5061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), + [anon_sym_BSLASHglsdesc] = ACTIONS(5061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), + [anon_sym_BSLASHglsuseri] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), + [anon_sym_BSLASHglsuserii] = ACTIONS(5061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), + [anon_sym_BSLASHglsuserv] = ACTIONS(5061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), + [anon_sym_BSLASHglsuservi] = ACTIONS(5061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), + [anon_sym_BSLASHnewacronym] = ACTIONS(5061), + [anon_sym_BSLASHacrshort] = ACTIONS(5061), + [anon_sym_BSLASHAcrshort] = ACTIONS(5061), + [anon_sym_BSLASHACRshort] = ACTIONS(5061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), + [anon_sym_BSLASHacrlong] = ACTIONS(5061), + [anon_sym_BSLASHAcrlong] = ACTIONS(5061), + [anon_sym_BSLASHACRlong] = ACTIONS(5061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), + [anon_sym_BSLASHacrfull] = ACTIONS(5061), + [anon_sym_BSLASHAcrfull] = ACTIONS(5061), + [anon_sym_BSLASHACRfull] = ACTIONS(5061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), + [anon_sym_BSLASHacs] = ACTIONS(5061), + [anon_sym_BSLASHAcs] = ACTIONS(5061), + [anon_sym_BSLASHacsp] = ACTIONS(5061), + [anon_sym_BSLASHAcsp] = ACTIONS(5061), + [anon_sym_BSLASHacl] = ACTIONS(5061), + [anon_sym_BSLASHAcl] = ACTIONS(5061), + [anon_sym_BSLASHaclp] = ACTIONS(5061), + [anon_sym_BSLASHAclp] = ACTIONS(5061), + [anon_sym_BSLASHacf] = ACTIONS(5061), + [anon_sym_BSLASHAcf] = ACTIONS(5061), + [anon_sym_BSLASHacfp] = ACTIONS(5061), + [anon_sym_BSLASHAcfp] = ACTIONS(5061), + [anon_sym_BSLASHac] = ACTIONS(5061), + [anon_sym_BSLASHAc] = ACTIONS(5061), + [anon_sym_BSLASHacp] = ACTIONS(5061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), + [anon_sym_BSLASHcolor] = ACTIONS(5061), + [anon_sym_BSLASHcolorbox] = ACTIONS(5061), + [anon_sym_BSLASHtextcolor] = ACTIONS(5061), + [anon_sym_BSLASHpagecolor] = ACTIONS(5061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [anon_sym_BSLASHtext] = ACTIONS(5061), + [anon_sym_BSLASHintertext] = ACTIONS(5061), + [anon_sym_shortintertext] = ACTIONS(5061), }, - [1239] = { - [sym_command_name] = ACTIONS(5151), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5149), - [anon_sym_RPAREN] = ACTIONS(5149), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_RBRACK] = ACTIONS(5149), - [anon_sym_COMMA] = ACTIONS(5149), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_BSLASHpart] = ACTIONS(5151), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddpart] = ACTIONS(5151), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5149), - [anon_sym_BSLASHchapter] = ACTIONS(5151), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddchap] = ACTIONS(5151), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsection] = ACTIONS(5151), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHaddsec] = ACTIONS(5151), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubsection] = ACTIONS(5151), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5151), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5149), - [anon_sym_BSLASHparagraph] = ACTIONS(5151), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5149), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5151), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5149), - [anon_sym_BSLASHitem] = ACTIONS(5151), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5149), - [anon_sym_LBRACE] = ACTIONS(5149), - [sym_word] = ACTIONS(5151), - [sym_placeholder] = ACTIONS(5149), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_CARET] = ACTIONS(5151), - [anon_sym__] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5151), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5149), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5149), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5149), - [anon_sym_BSLASHbegin] = ACTIONS(5151), - [anon_sym_BSLASHend] = ACTIONS(5151), - [anon_sym_BSLASHusepackage] = ACTIONS(5151), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5151), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5151), - [anon_sym_BSLASHinclude] = ACTIONS(5151), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), - [anon_sym_BSLASHinput] = ACTIONS(5151), - [anon_sym_BSLASHsubfile] = ACTIONS(5151), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5151), - [anon_sym_BSLASHbibliography] = ACTIONS(5151), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5151), - [anon_sym_BSLASHincludesvg] = ACTIONS(5151), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5151), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5151), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5151), - [anon_sym_BSLASHimport] = ACTIONS(5151), - [anon_sym_BSLASHsubimport] = ACTIONS(5151), - [anon_sym_BSLASHinputfrom] = ACTIONS(5151), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5151), - [anon_sym_BSLASHincludefrom] = ACTIONS(5151), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5151), - [anon_sym_BSLASHcaption] = ACTIONS(5151), - [anon_sym_BSLASHcite] = ACTIONS(5151), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCite] = ACTIONS(5151), - [anon_sym_BSLASHnocite] = ACTIONS(5151), - [anon_sym_BSLASHcitet] = ACTIONS(5151), - [anon_sym_BSLASHcitep] = ACTIONS(5151), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteyear] = ACTIONS(5151), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitedate] = ACTIONS(5151), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteurl] = ACTIONS(5151), - [anon_sym_BSLASHfullcite] = ACTIONS(5151), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5151), - [anon_sym_BSLASHcitealt] = ACTIONS(5151), - [anon_sym_BSLASHcitealp] = ACTIONS(5151), - [anon_sym_BSLASHcitetext] = ACTIONS(5151), - [anon_sym_BSLASHparencite] = ACTIONS(5151), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHParencite] = ACTIONS(5151), - [anon_sym_BSLASHfootcite] = ACTIONS(5151), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5151), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5151), - [anon_sym_BSLASHtextcite] = ACTIONS(5151), - [anon_sym_BSLASHTextcite] = ACTIONS(5151), - [anon_sym_BSLASHsmartcite] = ACTIONS(5151), - [anon_sym_BSLASHSmartcite] = ACTIONS(5151), - [anon_sym_BSLASHsupercite] = ACTIONS(5151), - [anon_sym_BSLASHautocite] = ACTIONS(5151), - [anon_sym_BSLASHAutocite] = ACTIONS(5151), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHvolcite] = ACTIONS(5151), - [anon_sym_BSLASHVolcite] = ACTIONS(5151), - [anon_sym_BSLASHpvolcite] = ACTIONS(5151), - [anon_sym_BSLASHPvolcite] = ACTIONS(5151), - [anon_sym_BSLASHfvolcite] = ACTIONS(5151), - [anon_sym_BSLASHftvolcite] = ACTIONS(5151), - [anon_sym_BSLASHsvolcite] = ACTIONS(5151), - [anon_sym_BSLASHSvolcite] = ACTIONS(5151), - [anon_sym_BSLASHtvolcite] = ACTIONS(5151), - [anon_sym_BSLASHTvolcite] = ACTIONS(5151), - [anon_sym_BSLASHavolcite] = ACTIONS(5151), - [anon_sym_BSLASHAvolcite] = ACTIONS(5151), - [anon_sym_BSLASHnotecite] = ACTIONS(5151), - [anon_sym_BSLASHNotecite] = ACTIONS(5151), - [anon_sym_BSLASHpnotecite] = ACTIONS(5151), - [anon_sym_BSLASHPnotecite] = ACTIONS(5151), - [anon_sym_BSLASHfnotecite] = ACTIONS(5151), - [anon_sym_BSLASHlabel] = ACTIONS(5151), - [anon_sym_BSLASHref] = ACTIONS(5151), - [anon_sym_BSLASHeqref] = ACTIONS(5151), - [anon_sym_BSLASHvref] = ACTIONS(5151), - [anon_sym_BSLASHVref] = ACTIONS(5151), - [anon_sym_BSLASHautoref] = ACTIONS(5151), - [anon_sym_BSLASHpageref] = ACTIONS(5151), - [anon_sym_BSLASHcref] = ACTIONS(5151), - [anon_sym_BSLASHCref] = ACTIONS(5151), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5149), - [anon_sym_BSLASHnamecref] = ACTIONS(5151), - [anon_sym_BSLASHnameCref] = ACTIONS(5151), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5151), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5151), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5151), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5151), - [anon_sym_BSLASHlabelcref] = ACTIONS(5151), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5151), - [anon_sym_BSLASHcrefrange] = ACTIONS(5151), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5149), - [anon_sym_BSLASHnewlabel] = ACTIONS(5151), - [anon_sym_BSLASHnewcommand] = ACTIONS(5151), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5149), - [anon_sym_BSLASHdef] = ACTIONS(5151), - [anon_sym_BSLASHlet] = ACTIONS(5151), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5151), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5151), - [anon_sym_BSLASHgls] = ACTIONS(5151), - [anon_sym_BSLASHGls] = ACTIONS(5151), - [anon_sym_BSLASHGLS] = ACTIONS(5151), - [anon_sym_BSLASHglspl] = ACTIONS(5151), - [anon_sym_BSLASHGlspl] = ACTIONS(5151), - [anon_sym_BSLASHGLSpl] = ACTIONS(5151), - [anon_sym_BSLASHglsdisp] = ACTIONS(5151), - [anon_sym_BSLASHglslink] = ACTIONS(5151), - [anon_sym_BSLASHglstext] = ACTIONS(5151), - [anon_sym_BSLASHGlstext] = ACTIONS(5151), - [anon_sym_BSLASHGLStext] = ACTIONS(5151), - [anon_sym_BSLASHglsfirst] = ACTIONS(5151), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5151), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5151), - [anon_sym_BSLASHglsplural] = ACTIONS(5151), - [anon_sym_BSLASHGlsplural] = ACTIONS(5151), - [anon_sym_BSLASHGLSplural] = ACTIONS(5151), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHglsname] = ACTIONS(5151), - [anon_sym_BSLASHGlsname] = ACTIONS(5151), - [anon_sym_BSLASHGLSname] = ACTIONS(5151), - [anon_sym_BSLASHglssymbol] = ACTIONS(5151), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5151), - [anon_sym_BSLASHglsdesc] = ACTIONS(5151), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5151), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5151), - [anon_sym_BSLASHglsuseri] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5151), - [anon_sym_BSLASHglsuserii] = ACTIONS(5151), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5151), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5151), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5151), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5151), - [anon_sym_BSLASHglsuserv] = ACTIONS(5151), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5151), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5151), - [anon_sym_BSLASHglsuservi] = ACTIONS(5151), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5151), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5151), - [anon_sym_BSLASHnewacronym] = ACTIONS(5151), - [anon_sym_BSLASHacrshort] = ACTIONS(5151), - [anon_sym_BSLASHAcrshort] = ACTIONS(5151), - [anon_sym_BSLASHACRshort] = ACTIONS(5151), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5151), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5151), - [anon_sym_BSLASHacrlong] = ACTIONS(5151), - [anon_sym_BSLASHAcrlong] = ACTIONS(5151), - [anon_sym_BSLASHACRlong] = ACTIONS(5151), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5151), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5151), - [anon_sym_BSLASHacrfull] = ACTIONS(5151), - [anon_sym_BSLASHAcrfull] = ACTIONS(5151), - [anon_sym_BSLASHACRfull] = ACTIONS(5151), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5151), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5151), - [anon_sym_BSLASHacs] = ACTIONS(5151), - [anon_sym_BSLASHAcs] = ACTIONS(5151), - [anon_sym_BSLASHacsp] = ACTIONS(5151), - [anon_sym_BSLASHAcsp] = ACTIONS(5151), - [anon_sym_BSLASHacl] = ACTIONS(5151), - [anon_sym_BSLASHAcl] = ACTIONS(5151), - [anon_sym_BSLASHaclp] = ACTIONS(5151), - [anon_sym_BSLASHAclp] = ACTIONS(5151), - [anon_sym_BSLASHacf] = ACTIONS(5151), - [anon_sym_BSLASHAcf] = ACTIONS(5151), - [anon_sym_BSLASHacfp] = ACTIONS(5151), - [anon_sym_BSLASHAcfp] = ACTIONS(5151), - [anon_sym_BSLASHac] = ACTIONS(5151), - [anon_sym_BSLASHAc] = ACTIONS(5151), - [anon_sym_BSLASHacp] = ACTIONS(5151), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5151), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5151), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5151), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5151), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5151), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5151), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5151), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5151), - [anon_sym_BSLASHcolor] = ACTIONS(5151), - [anon_sym_BSLASHcolorbox] = ACTIONS(5151), - [anon_sym_BSLASHtextcolor] = ACTIONS(5151), - [anon_sym_BSLASHpagecolor] = ACTIONS(5151), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5151), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5151), + [1112] = { + [sym_command_name] = ACTIONS(5049), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5047), + [anon_sym_RPAREN] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_RBRACK] = ACTIONS(5047), + [anon_sym_COMMA] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_BSLASHpart] = ACTIONS(5049), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), + [anon_sym_BSLASHaddpart] = ACTIONS(5049), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), + [anon_sym_BSLASHchapter] = ACTIONS(5049), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), + [anon_sym_BSLASHaddchap] = ACTIONS(5049), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsection] = ACTIONS(5049), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), + [anon_sym_BSLASHaddsec] = ACTIONS(5049), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsubsection] = ACTIONS(5049), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), + [anon_sym_BSLASHparagraph] = ACTIONS(5049), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), + [anon_sym_BSLASHitem] = ACTIONS(5049), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5047), + [sym_word] = ACTIONS(5049), + [sym_placeholder] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5049), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_CARET] = ACTIONS(5049), + [anon_sym__] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5049), + [anon_sym_PIPE] = ACTIONS(5049), + [anon_sym_COLON] = ACTIONS(5049), + [anon_sym_SQUOTE] = ACTIONS(5049), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), + [anon_sym_DOLLAR] = ACTIONS(5049), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), + [anon_sym_BSLASHbegin] = ACTIONS(5049), + [anon_sym_BSLASHend] = ACTIONS(5049), + [anon_sym_BSLASHusepackage] = ACTIONS(5049), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), + [anon_sym_BSLASHinclude] = ACTIONS(5049), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), + [anon_sym_BSLASHinput] = ACTIONS(5049), + [anon_sym_BSLASHsubfile] = ACTIONS(5049), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), + [anon_sym_BSLASHbibliography] = ACTIONS(5049), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), + [anon_sym_BSLASHincludesvg] = ACTIONS(5049), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), + [anon_sym_BSLASHimport] = ACTIONS(5049), + [anon_sym_BSLASHsubimport] = ACTIONS(5049), + [anon_sym_BSLASHinputfrom] = ACTIONS(5049), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), + [anon_sym_BSLASHincludefrom] = ACTIONS(5049), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), + [anon_sym_BSLASHcaption] = ACTIONS(5049), + [anon_sym_BSLASHcite] = ACTIONS(5049), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCite] = ACTIONS(5049), + [anon_sym_BSLASHnocite] = ACTIONS(5049), + [anon_sym_BSLASHcitet] = ACTIONS(5049), + [anon_sym_BSLASHcitep] = ACTIONS(5049), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteauthor] = ACTIONS(5049), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitetitle] = ACTIONS(5049), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteyear] = ACTIONS(5049), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitedate] = ACTIONS(5049), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteurl] = ACTIONS(5049), + [anon_sym_BSLASHfullcite] = ACTIONS(5049), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), + [anon_sym_BSLASHcitealt] = ACTIONS(5049), + [anon_sym_BSLASHcitealp] = ACTIONS(5049), + [anon_sym_BSLASHcitetext] = ACTIONS(5049), + [anon_sym_BSLASHparencite] = ACTIONS(5049), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHParencite] = ACTIONS(5049), + [anon_sym_BSLASHfootcite] = ACTIONS(5049), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), + [anon_sym_BSLASHtextcite] = ACTIONS(5049), + [anon_sym_BSLASHTextcite] = ACTIONS(5049), + [anon_sym_BSLASHsmartcite] = ACTIONS(5049), + [anon_sym_BSLASHSmartcite] = ACTIONS(5049), + [anon_sym_BSLASHsupercite] = ACTIONS(5049), + [anon_sym_BSLASHautocite] = ACTIONS(5049), + [anon_sym_BSLASHAutocite] = ACTIONS(5049), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHvolcite] = ACTIONS(5049), + [anon_sym_BSLASHVolcite] = ACTIONS(5049), + [anon_sym_BSLASHpvolcite] = ACTIONS(5049), + [anon_sym_BSLASHPvolcite] = ACTIONS(5049), + [anon_sym_BSLASHfvolcite] = ACTIONS(5049), + [anon_sym_BSLASHftvolcite] = ACTIONS(5049), + [anon_sym_BSLASHsvolcite] = ACTIONS(5049), + [anon_sym_BSLASHSvolcite] = ACTIONS(5049), + [anon_sym_BSLASHtvolcite] = ACTIONS(5049), + [anon_sym_BSLASHTvolcite] = ACTIONS(5049), + [anon_sym_BSLASHavolcite] = ACTIONS(5049), + [anon_sym_BSLASHAvolcite] = ACTIONS(5049), + [anon_sym_BSLASHnotecite] = ACTIONS(5049), + [anon_sym_BSLASHNotecite] = ACTIONS(5049), + [anon_sym_BSLASHpnotecite] = ACTIONS(5049), + [anon_sym_BSLASHPnotecite] = ACTIONS(5049), + [anon_sym_BSLASHfnotecite] = ACTIONS(5049), + [anon_sym_BSLASHlabel] = ACTIONS(5049), + [anon_sym_BSLASHref] = ACTIONS(5049), + [anon_sym_BSLASHeqref] = ACTIONS(5049), + [anon_sym_BSLASHvref] = ACTIONS(5049), + [anon_sym_BSLASHVref] = ACTIONS(5049), + [anon_sym_BSLASHautoref] = ACTIONS(5049), + [anon_sym_BSLASHpageref] = ACTIONS(5049), + [anon_sym_BSLASHcref] = ACTIONS(5049), + [anon_sym_BSLASHCref] = ACTIONS(5049), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), + [anon_sym_BSLASHnamecref] = ACTIONS(5049), + [anon_sym_BSLASHnameCref] = ACTIONS(5049), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), + [anon_sym_BSLASHlabelcref] = ACTIONS(5049), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), + [anon_sym_BSLASHcrefrange] = ACTIONS(5049), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCrefrange] = ACTIONS(5049), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), + [anon_sym_BSLASHnewlabel] = ACTIONS(5049), + [anon_sym_BSLASHnewcommand] = ACTIONS(5049), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), + [anon_sym_BSLASHdef] = ACTIONS(5049), + [anon_sym_BSLASHlet] = ACTIONS(5049), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), + [anon_sym_BSLASHgls] = ACTIONS(5049), + [anon_sym_BSLASHGls] = ACTIONS(5049), + [anon_sym_BSLASHGLS] = ACTIONS(5049), + [anon_sym_BSLASHglspl] = ACTIONS(5049), + [anon_sym_BSLASHGlspl] = ACTIONS(5049), + [anon_sym_BSLASHGLSpl] = ACTIONS(5049), + [anon_sym_BSLASHglsdisp] = ACTIONS(5049), + [anon_sym_BSLASHglslink] = ACTIONS(5049), + [anon_sym_BSLASHglstext] = ACTIONS(5049), + [anon_sym_BSLASHGlstext] = ACTIONS(5049), + [anon_sym_BSLASHGLStext] = ACTIONS(5049), + [anon_sym_BSLASHglsfirst] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), + [anon_sym_BSLASHglsplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSplural] = ACTIONS(5049), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHglsname] = ACTIONS(5049), + [anon_sym_BSLASHGlsname] = ACTIONS(5049), + [anon_sym_BSLASHGLSname] = ACTIONS(5049), + [anon_sym_BSLASHglssymbol] = ACTIONS(5049), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), + [anon_sym_BSLASHglsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), + [anon_sym_BSLASHglsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), + [anon_sym_BSLASHglsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), + [anon_sym_BSLASHglsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), + [anon_sym_BSLASHglsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), + [anon_sym_BSLASHnewacronym] = ACTIONS(5049), + [anon_sym_BSLASHacrshort] = ACTIONS(5049), + [anon_sym_BSLASHAcrshort] = ACTIONS(5049), + [anon_sym_BSLASHACRshort] = ACTIONS(5049), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), + [anon_sym_BSLASHacrlong] = ACTIONS(5049), + [anon_sym_BSLASHAcrlong] = ACTIONS(5049), + [anon_sym_BSLASHACRlong] = ACTIONS(5049), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), + [anon_sym_BSLASHacrfull] = ACTIONS(5049), + [anon_sym_BSLASHAcrfull] = ACTIONS(5049), + [anon_sym_BSLASHACRfull] = ACTIONS(5049), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), + [anon_sym_BSLASHacs] = ACTIONS(5049), + [anon_sym_BSLASHAcs] = ACTIONS(5049), + [anon_sym_BSLASHacsp] = ACTIONS(5049), + [anon_sym_BSLASHAcsp] = ACTIONS(5049), + [anon_sym_BSLASHacl] = ACTIONS(5049), + [anon_sym_BSLASHAcl] = ACTIONS(5049), + [anon_sym_BSLASHaclp] = ACTIONS(5049), + [anon_sym_BSLASHAclp] = ACTIONS(5049), + [anon_sym_BSLASHacf] = ACTIONS(5049), + [anon_sym_BSLASHAcf] = ACTIONS(5049), + [anon_sym_BSLASHacfp] = ACTIONS(5049), + [anon_sym_BSLASHAcfp] = ACTIONS(5049), + [anon_sym_BSLASHac] = ACTIONS(5049), + [anon_sym_BSLASHAc] = ACTIONS(5049), + [anon_sym_BSLASHacp] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), + [anon_sym_BSLASHcolor] = ACTIONS(5049), + [anon_sym_BSLASHcolorbox] = ACTIONS(5049), + [anon_sym_BSLASHtextcolor] = ACTIONS(5049), + [anon_sym_BSLASHpagecolor] = ACTIONS(5049), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [anon_sym_BSLASHtext] = ACTIONS(5049), + [anon_sym_BSLASHintertext] = ACTIONS(5049), + [anon_sym_shortintertext] = ACTIONS(5049), }, - [1240] = { - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_BSLASHpart] = ACTIONS(5159), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddpart] = ACTIONS(5159), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5157), - [anon_sym_BSLASHchapter] = ACTIONS(5159), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddchap] = ACTIONS(5159), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsection] = ACTIONS(5159), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHaddsec] = ACTIONS(5159), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5159), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5157), - [anon_sym_BSLASHparagraph] = ACTIONS(5159), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5159), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5157), - [anon_sym_BSLASHitem] = ACTIONS(5159), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASHbegin] = ACTIONS(5159), - [anon_sym_BSLASHend] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), + [1113] = { + [sym_command_name] = ACTIONS(4973), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4971), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), + [anon_sym_RBRACK] = ACTIONS(4971), + [anon_sym_COMMA] = ACTIONS(4971), + [anon_sym_EQ] = ACTIONS(4971), + [anon_sym_BSLASHpart] = ACTIONS(4973), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddpart] = ACTIONS(4973), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4971), + [anon_sym_BSLASHchapter] = ACTIONS(4973), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddchap] = ACTIONS(4973), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsection] = ACTIONS(4973), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddsec] = ACTIONS(4973), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubsection] = ACTIONS(4973), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4973), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHparagraph] = ACTIONS(4973), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4973), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4971), + [anon_sym_BSLASHitem] = ACTIONS(4973), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4971), + [anon_sym_LBRACE] = ACTIONS(4971), + [sym_word] = ACTIONS(4973), + [sym_placeholder] = ACTIONS(4971), + [anon_sym_PLUS] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym__] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4973), + [anon_sym_GT] = ACTIONS(4973), + [anon_sym_BANG] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_SQUOTE] = ACTIONS(4973), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4971), + [anon_sym_DOLLAR] = ACTIONS(4973), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), + [anon_sym_BSLASHbegin] = ACTIONS(4973), + [anon_sym_BSLASHusepackage] = ACTIONS(4973), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), + [anon_sym_BSLASHinclude] = ACTIONS(4973), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), + [anon_sym_BSLASHinput] = ACTIONS(4973), + [anon_sym_BSLASHsubfile] = ACTIONS(4973), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), + [anon_sym_BSLASHbibliography] = ACTIONS(4973), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), + [anon_sym_BSLASHincludesvg] = ACTIONS(4973), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), + [anon_sym_BSLASHimport] = ACTIONS(4973), + [anon_sym_BSLASHsubimport] = ACTIONS(4973), + [anon_sym_BSLASHinputfrom] = ACTIONS(4973), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), + [anon_sym_BSLASHincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHcaption] = ACTIONS(4973), + [anon_sym_BSLASHcite] = ACTIONS(4973), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCite] = ACTIONS(4973), + [anon_sym_BSLASHnocite] = ACTIONS(4973), + [anon_sym_BSLASHcitet] = ACTIONS(4973), + [anon_sym_BSLASHcitep] = ACTIONS(4973), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteauthor] = ACTIONS(4973), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitetitle] = ACTIONS(4973), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteyear] = ACTIONS(4973), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitedate] = ACTIONS(4973), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteurl] = ACTIONS(4973), + [anon_sym_BSLASHfullcite] = ACTIONS(4973), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), + [anon_sym_BSLASHcitealt] = ACTIONS(4973), + [anon_sym_BSLASHcitealp] = ACTIONS(4973), + [anon_sym_BSLASHcitetext] = ACTIONS(4973), + [anon_sym_BSLASHparencite] = ACTIONS(4973), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHParencite] = ACTIONS(4973), + [anon_sym_BSLASHfootcite] = ACTIONS(4973), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), + [anon_sym_BSLASHtextcite] = ACTIONS(4973), + [anon_sym_BSLASHTextcite] = ACTIONS(4973), + [anon_sym_BSLASHsmartcite] = ACTIONS(4973), + [anon_sym_BSLASHSmartcite] = ACTIONS(4973), + [anon_sym_BSLASHsupercite] = ACTIONS(4973), + [anon_sym_BSLASHautocite] = ACTIONS(4973), + [anon_sym_BSLASHAutocite] = ACTIONS(4973), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHvolcite] = ACTIONS(4973), + [anon_sym_BSLASHVolcite] = ACTIONS(4973), + [anon_sym_BSLASHpvolcite] = ACTIONS(4973), + [anon_sym_BSLASHPvolcite] = ACTIONS(4973), + [anon_sym_BSLASHfvolcite] = ACTIONS(4973), + [anon_sym_BSLASHftvolcite] = ACTIONS(4973), + [anon_sym_BSLASHsvolcite] = ACTIONS(4973), + [anon_sym_BSLASHSvolcite] = ACTIONS(4973), + [anon_sym_BSLASHtvolcite] = ACTIONS(4973), + [anon_sym_BSLASHTvolcite] = ACTIONS(4973), + [anon_sym_BSLASHavolcite] = ACTIONS(4973), + [anon_sym_BSLASHAvolcite] = ACTIONS(4973), + [anon_sym_BSLASHnotecite] = ACTIONS(4973), + [anon_sym_BSLASHNotecite] = ACTIONS(4973), + [anon_sym_BSLASHpnotecite] = ACTIONS(4973), + [anon_sym_BSLASHPnotecite] = ACTIONS(4973), + [anon_sym_BSLASHfnotecite] = ACTIONS(4973), + [anon_sym_BSLASHlabel] = ACTIONS(4973), + [anon_sym_BSLASHref] = ACTIONS(4973), + [anon_sym_BSLASHeqref] = ACTIONS(4973), + [anon_sym_BSLASHvref] = ACTIONS(4973), + [anon_sym_BSLASHVref] = ACTIONS(4973), + [anon_sym_BSLASHautoref] = ACTIONS(4973), + [anon_sym_BSLASHpageref] = ACTIONS(4973), + [anon_sym_BSLASHcref] = ACTIONS(4973), + [anon_sym_BSLASHCref] = ACTIONS(4973), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnameCref] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHlabelcref] = ACTIONS(4973), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCrefrange] = ACTIONS(4973), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnewlabel] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), + [anon_sym_BSLASHdef] = ACTIONS(4973), + [anon_sym_BSLASHlet] = ACTIONS(4973), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), + [anon_sym_BSLASHgls] = ACTIONS(4973), + [anon_sym_BSLASHGls] = ACTIONS(4973), + [anon_sym_BSLASHGLS] = ACTIONS(4973), + [anon_sym_BSLASHglspl] = ACTIONS(4973), + [anon_sym_BSLASHGlspl] = ACTIONS(4973), + [anon_sym_BSLASHGLSpl] = ACTIONS(4973), + [anon_sym_BSLASHglsdisp] = ACTIONS(4973), + [anon_sym_BSLASHglslink] = ACTIONS(4973), + [anon_sym_BSLASHglstext] = ACTIONS(4973), + [anon_sym_BSLASHGlstext] = ACTIONS(4973), + [anon_sym_BSLASHGLStext] = ACTIONS(4973), + [anon_sym_BSLASHglsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), + [anon_sym_BSLASHglsplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSplural] = ACTIONS(4973), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHglsname] = ACTIONS(4973), + [anon_sym_BSLASHGlsname] = ACTIONS(4973), + [anon_sym_BSLASHGLSname] = ACTIONS(4973), + [anon_sym_BSLASHglssymbol] = ACTIONS(4973), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), + [anon_sym_BSLASHglsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), + [anon_sym_BSLASHglsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), + [anon_sym_BSLASHglsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), + [anon_sym_BSLASHglsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), + [anon_sym_BSLASHglsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), + [anon_sym_BSLASHnewacronym] = ACTIONS(4973), + [anon_sym_BSLASHacrshort] = ACTIONS(4973), + [anon_sym_BSLASHAcrshort] = ACTIONS(4973), + [anon_sym_BSLASHACRshort] = ACTIONS(4973), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), + [anon_sym_BSLASHacrlong] = ACTIONS(4973), + [anon_sym_BSLASHAcrlong] = ACTIONS(4973), + [anon_sym_BSLASHACRlong] = ACTIONS(4973), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), + [anon_sym_BSLASHacrfull] = ACTIONS(4973), + [anon_sym_BSLASHAcrfull] = ACTIONS(4973), + [anon_sym_BSLASHACRfull] = ACTIONS(4973), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), + [anon_sym_BSLASHacs] = ACTIONS(4973), + [anon_sym_BSLASHAcs] = ACTIONS(4973), + [anon_sym_BSLASHacsp] = ACTIONS(4973), + [anon_sym_BSLASHAcsp] = ACTIONS(4973), + [anon_sym_BSLASHacl] = ACTIONS(4973), + [anon_sym_BSLASHAcl] = ACTIONS(4973), + [anon_sym_BSLASHaclp] = ACTIONS(4973), + [anon_sym_BSLASHAclp] = ACTIONS(4973), + [anon_sym_BSLASHacf] = ACTIONS(4973), + [anon_sym_BSLASHAcf] = ACTIONS(4973), + [anon_sym_BSLASHacfp] = ACTIONS(4973), + [anon_sym_BSLASHAcfp] = ACTIONS(4973), + [anon_sym_BSLASHac] = ACTIONS(4973), + [anon_sym_BSLASHAc] = ACTIONS(4973), + [anon_sym_BSLASHacp] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), + [anon_sym_BSLASHcolor] = ACTIONS(4973), + [anon_sym_BSLASHcolorbox] = ACTIONS(4973), + [anon_sym_BSLASHtextcolor] = ACTIONS(4973), + [anon_sym_BSLASHpagecolor] = ACTIONS(4973), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), + [anon_sym_BSLASHtext] = ACTIONS(4973), + [anon_sym_BSLASHintertext] = ACTIONS(4973), + [anon_sym_shortintertext] = ACTIONS(4973), }, - [1241] = { - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_BSLASHpart] = ACTIONS(5167), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddpart] = ACTIONS(5167), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5165), - [anon_sym_BSLASHchapter] = ACTIONS(5167), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddchap] = ACTIONS(5167), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsection] = ACTIONS(5167), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHaddsec] = ACTIONS(5167), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5167), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5165), - [anon_sym_BSLASHparagraph] = ACTIONS(5167), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5167), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5165), - [anon_sym_BSLASHitem] = ACTIONS(5167), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASHbegin] = ACTIONS(5167), - [anon_sym_BSLASHend] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), + [1114] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(137), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHend] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, - [1242] = { - [sym_command_name] = ACTIONS(5259), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5259), - [anon_sym_LPAREN] = ACTIONS(5257), - [anon_sym_RPAREN] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(5257), - [anon_sym_RBRACK] = ACTIONS(5257), - [anon_sym_COMMA] = ACTIONS(5257), - [anon_sym_EQ] = ACTIONS(5257), - [anon_sym_BSLASHpart] = ACTIONS(5259), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddpart] = ACTIONS(5259), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5257), - [anon_sym_BSLASHchapter] = ACTIONS(5259), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddchap] = ACTIONS(5259), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsection] = ACTIONS(5259), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHaddsec] = ACTIONS(5259), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubsection] = ACTIONS(5259), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5259), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5257), - [anon_sym_BSLASHparagraph] = ACTIONS(5259), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5257), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5259), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5257), - [anon_sym_BSLASHitem] = ACTIONS(5259), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5257), - [anon_sym_LBRACE] = ACTIONS(5257), - [sym_word] = ACTIONS(5259), - [sym_placeholder] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5259), - [anon_sym_STAR] = ACTIONS(5259), - [anon_sym_SLASH] = ACTIONS(5259), - [anon_sym_CARET] = ACTIONS(5259), - [anon_sym__] = ACTIONS(5259), - [anon_sym_LT] = ACTIONS(5259), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_BANG] = ACTIONS(5259), - [anon_sym_PIPE] = ACTIONS(5259), - [anon_sym_COLON] = ACTIONS(5259), - [anon_sym_SQUOTE] = ACTIONS(5259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5257), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5257), - [anon_sym_DOLLAR] = ACTIONS(5259), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5257), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5257), - [anon_sym_BSLASHbegin] = ACTIONS(5259), - [anon_sym_BSLASHend] = ACTIONS(5259), - [anon_sym_BSLASHusepackage] = ACTIONS(5259), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5259), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5259), - [anon_sym_BSLASHinclude] = ACTIONS(5259), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5259), - [anon_sym_BSLASHinput] = ACTIONS(5259), - [anon_sym_BSLASHsubfile] = ACTIONS(5259), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5259), - [anon_sym_BSLASHbibliography] = ACTIONS(5259), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5259), - [anon_sym_BSLASHincludesvg] = ACTIONS(5259), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5259), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5259), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5259), - [anon_sym_BSLASHimport] = ACTIONS(5259), - [anon_sym_BSLASHsubimport] = ACTIONS(5259), - [anon_sym_BSLASHinputfrom] = ACTIONS(5259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5259), - [anon_sym_BSLASHincludefrom] = ACTIONS(5259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5259), - [anon_sym_BSLASHcaption] = ACTIONS(5259), - [anon_sym_BSLASHcite] = ACTIONS(5259), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCite] = ACTIONS(5259), - [anon_sym_BSLASHnocite] = ACTIONS(5259), - [anon_sym_BSLASHcitet] = ACTIONS(5259), - [anon_sym_BSLASHcitep] = ACTIONS(5259), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteauthor] = ACTIONS(5259), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5259), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitetitle] = ACTIONS(5259), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteyear] = ACTIONS(5259), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitedate] = ACTIONS(5259), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteurl] = ACTIONS(5259), - [anon_sym_BSLASHfullcite] = ACTIONS(5259), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5259), - [anon_sym_BSLASHcitealt] = ACTIONS(5259), - [anon_sym_BSLASHcitealp] = ACTIONS(5259), - [anon_sym_BSLASHcitetext] = ACTIONS(5259), - [anon_sym_BSLASHparencite] = ACTIONS(5259), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHParencite] = ACTIONS(5259), - [anon_sym_BSLASHfootcite] = ACTIONS(5259), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5259), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5259), - [anon_sym_BSLASHtextcite] = ACTIONS(5259), - [anon_sym_BSLASHTextcite] = ACTIONS(5259), - [anon_sym_BSLASHsmartcite] = ACTIONS(5259), - [anon_sym_BSLASHSmartcite] = ACTIONS(5259), - [anon_sym_BSLASHsupercite] = ACTIONS(5259), - [anon_sym_BSLASHautocite] = ACTIONS(5259), - [anon_sym_BSLASHAutocite] = ACTIONS(5259), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHvolcite] = ACTIONS(5259), - [anon_sym_BSLASHVolcite] = ACTIONS(5259), - [anon_sym_BSLASHpvolcite] = ACTIONS(5259), - [anon_sym_BSLASHPvolcite] = ACTIONS(5259), - [anon_sym_BSLASHfvolcite] = ACTIONS(5259), - [anon_sym_BSLASHftvolcite] = ACTIONS(5259), - [anon_sym_BSLASHsvolcite] = ACTIONS(5259), - [anon_sym_BSLASHSvolcite] = ACTIONS(5259), - [anon_sym_BSLASHtvolcite] = ACTIONS(5259), - [anon_sym_BSLASHTvolcite] = ACTIONS(5259), - [anon_sym_BSLASHavolcite] = ACTIONS(5259), - [anon_sym_BSLASHAvolcite] = ACTIONS(5259), - [anon_sym_BSLASHnotecite] = ACTIONS(5259), - [anon_sym_BSLASHNotecite] = ACTIONS(5259), - [anon_sym_BSLASHpnotecite] = ACTIONS(5259), - [anon_sym_BSLASHPnotecite] = ACTIONS(5259), - [anon_sym_BSLASHfnotecite] = ACTIONS(5259), - [anon_sym_BSLASHlabel] = ACTIONS(5259), - [anon_sym_BSLASHref] = ACTIONS(5259), - [anon_sym_BSLASHeqref] = ACTIONS(5259), - [anon_sym_BSLASHvref] = ACTIONS(5259), - [anon_sym_BSLASHVref] = ACTIONS(5259), - [anon_sym_BSLASHautoref] = ACTIONS(5259), - [anon_sym_BSLASHpageref] = ACTIONS(5259), - [anon_sym_BSLASHcref] = ACTIONS(5259), - [anon_sym_BSLASHCref] = ACTIONS(5259), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5257), - [anon_sym_BSLASHnamecref] = ACTIONS(5259), - [anon_sym_BSLASHnameCref] = ACTIONS(5259), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5259), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5259), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5259), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5259), - [anon_sym_BSLASHlabelcref] = ACTIONS(5259), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5259), - [anon_sym_BSLASHcrefrange] = ACTIONS(5259), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCrefrange] = ACTIONS(5259), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5257), - [anon_sym_BSLASHnewlabel] = ACTIONS(5259), - [anon_sym_BSLASHnewcommand] = ACTIONS(5259), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5259), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5259), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5259), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5257), - [anon_sym_BSLASHdef] = ACTIONS(5259), - [anon_sym_BSLASHlet] = ACTIONS(5259), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5259), - [anon_sym_BSLASHgls] = ACTIONS(5259), - [anon_sym_BSLASHGls] = ACTIONS(5259), - [anon_sym_BSLASHGLS] = ACTIONS(5259), - [anon_sym_BSLASHglspl] = ACTIONS(5259), - [anon_sym_BSLASHGlspl] = ACTIONS(5259), - [anon_sym_BSLASHGLSpl] = ACTIONS(5259), - [anon_sym_BSLASHglsdisp] = ACTIONS(5259), - [anon_sym_BSLASHglslink] = ACTIONS(5259), - [anon_sym_BSLASHglstext] = ACTIONS(5259), - [anon_sym_BSLASHGlstext] = ACTIONS(5259), - [anon_sym_BSLASHGLStext] = ACTIONS(5259), - [anon_sym_BSLASHglsfirst] = ACTIONS(5259), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5259), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5259), - [anon_sym_BSLASHglsplural] = ACTIONS(5259), - [anon_sym_BSLASHGlsplural] = ACTIONS(5259), - [anon_sym_BSLASHGLSplural] = ACTIONS(5259), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHglsname] = ACTIONS(5259), - [anon_sym_BSLASHGlsname] = ACTIONS(5259), - [anon_sym_BSLASHGLSname] = ACTIONS(5259), - [anon_sym_BSLASHglssymbol] = ACTIONS(5259), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5259), - [anon_sym_BSLASHglsdesc] = ACTIONS(5259), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5259), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5259), - [anon_sym_BSLASHglsuseri] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5259), - [anon_sym_BSLASHglsuserii] = ACTIONS(5259), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5259), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5259), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5259), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5259), - [anon_sym_BSLASHglsuserv] = ACTIONS(5259), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5259), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5259), - [anon_sym_BSLASHglsuservi] = ACTIONS(5259), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5259), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5259), - [anon_sym_BSLASHnewacronym] = ACTIONS(5259), - [anon_sym_BSLASHacrshort] = ACTIONS(5259), - [anon_sym_BSLASHAcrshort] = ACTIONS(5259), - [anon_sym_BSLASHACRshort] = ACTIONS(5259), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5259), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5259), - [anon_sym_BSLASHacrlong] = ACTIONS(5259), - [anon_sym_BSLASHAcrlong] = ACTIONS(5259), - [anon_sym_BSLASHACRlong] = ACTIONS(5259), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5259), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5259), - [anon_sym_BSLASHacrfull] = ACTIONS(5259), - [anon_sym_BSLASHAcrfull] = ACTIONS(5259), - [anon_sym_BSLASHACRfull] = ACTIONS(5259), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5259), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5259), - [anon_sym_BSLASHacs] = ACTIONS(5259), - [anon_sym_BSLASHAcs] = ACTIONS(5259), - [anon_sym_BSLASHacsp] = ACTIONS(5259), - [anon_sym_BSLASHAcsp] = ACTIONS(5259), - [anon_sym_BSLASHacl] = ACTIONS(5259), - [anon_sym_BSLASHAcl] = ACTIONS(5259), - [anon_sym_BSLASHaclp] = ACTIONS(5259), - [anon_sym_BSLASHAclp] = ACTIONS(5259), - [anon_sym_BSLASHacf] = ACTIONS(5259), - [anon_sym_BSLASHAcf] = ACTIONS(5259), - [anon_sym_BSLASHacfp] = ACTIONS(5259), - [anon_sym_BSLASHAcfp] = ACTIONS(5259), - [anon_sym_BSLASHac] = ACTIONS(5259), - [anon_sym_BSLASHAc] = ACTIONS(5259), - [anon_sym_BSLASHacp] = ACTIONS(5259), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5259), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5259), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5259), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5259), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5259), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5259), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5259), - [anon_sym_BSLASHcolor] = ACTIONS(5259), - [anon_sym_BSLASHcolorbox] = ACTIONS(5259), - [anon_sym_BSLASHtextcolor] = ACTIONS(5259), - [anon_sym_BSLASHpagecolor] = ACTIONS(5259), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5259), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5259), + [1115] = { + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_BSLASHpart] = ACTIONS(149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddpart] = ACTIONS(149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHchapter] = ACTIONS(149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddchap] = ACTIONS(149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), + [anon_sym_BSLASHsection] = ACTIONS(149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddsec] = ACTIONS(149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHparagraph] = ACTIONS(149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHitem] = ACTIONS(149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_BSLASH_RBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), }, - [1243] = { - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_BSLASHpart] = ACTIONS(5179), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddpart] = ACTIONS(5179), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5177), - [anon_sym_BSLASHchapter] = ACTIONS(5179), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddchap] = ACTIONS(5179), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsection] = ACTIONS(5179), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHaddsec] = ACTIONS(5179), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5179), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5177), - [anon_sym_BSLASHparagraph] = ACTIONS(5179), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5179), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5177), - [anon_sym_BSLASHitem] = ACTIONS(5179), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASHbegin] = ACTIONS(5179), - [anon_sym_BSLASHend] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), + [1116] = { + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHchapter] = ACTIONS(143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddchap] = ACTIONS(143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), + [anon_sym_BSLASHsection] = ACTIONS(143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddsec] = ACTIONS(143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHparagraph] = ACTIONS(143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHitem] = ACTIONS(143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(143), + [anon_sym_BSLASHend] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), }, - [1244] = { - [sym_command_name] = ACTIONS(4945), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4943), - [anon_sym_RBRACK] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_BSLASHpart] = ACTIONS(4945), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddpart] = ACTIONS(4945), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4943), - [anon_sym_BSLASHchapter] = ACTIONS(4945), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddchap] = ACTIONS(4945), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsection] = ACTIONS(4945), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHaddsec] = ACTIONS(4945), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubsection] = ACTIONS(4945), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4945), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4943), - [anon_sym_BSLASHparagraph] = ACTIONS(4945), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4943), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4945), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4943), - [anon_sym_BSLASHitem] = ACTIONS(4945), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [sym_word] = ACTIONS(4945), - [sym_placeholder] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4945), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_STAR] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym__] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4945), - [anon_sym_BANG] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(4945), - [anon_sym_COLON] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4945), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4943), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4945), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4943), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4943), - [anon_sym_BSLASHbegin] = ACTIONS(4945), - [anon_sym_BSLASHend] = ACTIONS(4945), - [anon_sym_BSLASHusepackage] = ACTIONS(4945), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4945), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4945), - [anon_sym_BSLASHinclude] = ACTIONS(4945), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4945), - [anon_sym_BSLASHinput] = ACTIONS(4945), - [anon_sym_BSLASHsubfile] = ACTIONS(4945), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4945), - [anon_sym_BSLASHbibliography] = ACTIONS(4945), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4945), - [anon_sym_BSLASHincludesvg] = ACTIONS(4945), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4945), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4945), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4945), - [anon_sym_BSLASHimport] = ACTIONS(4945), - [anon_sym_BSLASHsubimport] = ACTIONS(4945), - [anon_sym_BSLASHinputfrom] = ACTIONS(4945), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4945), - [anon_sym_BSLASHincludefrom] = ACTIONS(4945), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4945), - [anon_sym_BSLASHcaption] = ACTIONS(4945), - [anon_sym_BSLASHcite] = ACTIONS(4945), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCite] = ACTIONS(4945), - [anon_sym_BSLASHnocite] = ACTIONS(4945), - [anon_sym_BSLASHcitet] = ACTIONS(4945), - [anon_sym_BSLASHcitep] = ACTIONS(4945), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteauthor] = ACTIONS(4945), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4945), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitetitle] = ACTIONS(4945), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteyear] = ACTIONS(4945), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitedate] = ACTIONS(4945), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteurl] = ACTIONS(4945), - [anon_sym_BSLASHfullcite] = ACTIONS(4945), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4945), - [anon_sym_BSLASHcitealt] = ACTIONS(4945), - [anon_sym_BSLASHcitealp] = ACTIONS(4945), - [anon_sym_BSLASHcitetext] = ACTIONS(4945), - [anon_sym_BSLASHparencite] = ACTIONS(4945), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHParencite] = ACTIONS(4945), - [anon_sym_BSLASHfootcite] = ACTIONS(4945), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4945), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4945), - [anon_sym_BSLASHtextcite] = ACTIONS(4945), - [anon_sym_BSLASHTextcite] = ACTIONS(4945), - [anon_sym_BSLASHsmartcite] = ACTIONS(4945), - [anon_sym_BSLASHSmartcite] = ACTIONS(4945), - [anon_sym_BSLASHsupercite] = ACTIONS(4945), - [anon_sym_BSLASHautocite] = ACTIONS(4945), - [anon_sym_BSLASHAutocite] = ACTIONS(4945), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHvolcite] = ACTIONS(4945), - [anon_sym_BSLASHVolcite] = ACTIONS(4945), - [anon_sym_BSLASHpvolcite] = ACTIONS(4945), - [anon_sym_BSLASHPvolcite] = ACTIONS(4945), - [anon_sym_BSLASHfvolcite] = ACTIONS(4945), - [anon_sym_BSLASHftvolcite] = ACTIONS(4945), - [anon_sym_BSLASHsvolcite] = ACTIONS(4945), - [anon_sym_BSLASHSvolcite] = ACTIONS(4945), - [anon_sym_BSLASHtvolcite] = ACTIONS(4945), - [anon_sym_BSLASHTvolcite] = ACTIONS(4945), - [anon_sym_BSLASHavolcite] = ACTIONS(4945), - [anon_sym_BSLASHAvolcite] = ACTIONS(4945), - [anon_sym_BSLASHnotecite] = ACTIONS(4945), - [anon_sym_BSLASHNotecite] = ACTIONS(4945), - [anon_sym_BSLASHpnotecite] = ACTIONS(4945), - [anon_sym_BSLASHPnotecite] = ACTIONS(4945), - [anon_sym_BSLASHfnotecite] = ACTIONS(4945), - [anon_sym_BSLASHlabel] = ACTIONS(4945), - [anon_sym_BSLASHref] = ACTIONS(4945), - [anon_sym_BSLASHeqref] = ACTIONS(4945), - [anon_sym_BSLASHvref] = ACTIONS(4945), - [anon_sym_BSLASHVref] = ACTIONS(4945), - [anon_sym_BSLASHautoref] = ACTIONS(4945), - [anon_sym_BSLASHpageref] = ACTIONS(4945), - [anon_sym_BSLASHcref] = ACTIONS(4945), - [anon_sym_BSLASHCref] = ACTIONS(4945), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4943), - [anon_sym_BSLASHnamecref] = ACTIONS(4945), - [anon_sym_BSLASHnameCref] = ACTIONS(4945), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4945), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4945), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4945), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4945), - [anon_sym_BSLASHlabelcref] = ACTIONS(4945), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4945), - [anon_sym_BSLASHcrefrange] = ACTIONS(4945), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCrefrange] = ACTIONS(4945), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4943), - [anon_sym_BSLASHnewlabel] = ACTIONS(4945), - [anon_sym_BSLASHnewcommand] = ACTIONS(4945), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4945), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4945), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4945), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4943), - [anon_sym_BSLASHdef] = ACTIONS(4945), - [anon_sym_BSLASHlet] = ACTIONS(4945), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4945), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4945), - [anon_sym_BSLASHgls] = ACTIONS(4945), - [anon_sym_BSLASHGls] = ACTIONS(4945), - [anon_sym_BSLASHGLS] = ACTIONS(4945), - [anon_sym_BSLASHglspl] = ACTIONS(4945), - [anon_sym_BSLASHGlspl] = ACTIONS(4945), - [anon_sym_BSLASHGLSpl] = ACTIONS(4945), - [anon_sym_BSLASHglsdisp] = ACTIONS(4945), - [anon_sym_BSLASHglslink] = ACTIONS(4945), - [anon_sym_BSLASHglstext] = ACTIONS(4945), - [anon_sym_BSLASHGlstext] = ACTIONS(4945), - [anon_sym_BSLASHGLStext] = ACTIONS(4945), - [anon_sym_BSLASHglsfirst] = ACTIONS(4945), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4945), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4945), - [anon_sym_BSLASHglsplural] = ACTIONS(4945), - [anon_sym_BSLASHGlsplural] = ACTIONS(4945), - [anon_sym_BSLASHGLSplural] = ACTIONS(4945), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHglsname] = ACTIONS(4945), - [anon_sym_BSLASHGlsname] = ACTIONS(4945), - [anon_sym_BSLASHGLSname] = ACTIONS(4945), - [anon_sym_BSLASHglssymbol] = ACTIONS(4945), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4945), - [anon_sym_BSLASHglsdesc] = ACTIONS(4945), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4945), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4945), - [anon_sym_BSLASHglsuseri] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4945), - [anon_sym_BSLASHglsuserii] = ACTIONS(4945), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4945), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4945), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4945), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4945), - [anon_sym_BSLASHglsuserv] = ACTIONS(4945), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4945), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4945), - [anon_sym_BSLASHglsuservi] = ACTIONS(4945), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4945), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4945), - [anon_sym_BSLASHnewacronym] = ACTIONS(4945), - [anon_sym_BSLASHacrshort] = ACTIONS(4945), - [anon_sym_BSLASHAcrshort] = ACTIONS(4945), - [anon_sym_BSLASHACRshort] = ACTIONS(4945), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4945), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4945), - [anon_sym_BSLASHacrlong] = ACTIONS(4945), - [anon_sym_BSLASHAcrlong] = ACTIONS(4945), - [anon_sym_BSLASHACRlong] = ACTIONS(4945), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4945), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4945), - [anon_sym_BSLASHacrfull] = ACTIONS(4945), - [anon_sym_BSLASHAcrfull] = ACTIONS(4945), - [anon_sym_BSLASHACRfull] = ACTIONS(4945), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4945), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4945), - [anon_sym_BSLASHacs] = ACTIONS(4945), - [anon_sym_BSLASHAcs] = ACTIONS(4945), - [anon_sym_BSLASHacsp] = ACTIONS(4945), - [anon_sym_BSLASHAcsp] = ACTIONS(4945), - [anon_sym_BSLASHacl] = ACTIONS(4945), - [anon_sym_BSLASHAcl] = ACTIONS(4945), - [anon_sym_BSLASHaclp] = ACTIONS(4945), - [anon_sym_BSLASHAclp] = ACTIONS(4945), - [anon_sym_BSLASHacf] = ACTIONS(4945), - [anon_sym_BSLASHAcf] = ACTIONS(4945), - [anon_sym_BSLASHacfp] = ACTIONS(4945), - [anon_sym_BSLASHAcfp] = ACTIONS(4945), - [anon_sym_BSLASHac] = ACTIONS(4945), - [anon_sym_BSLASHAc] = ACTIONS(4945), - [anon_sym_BSLASHacp] = ACTIONS(4945), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4945), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4945), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4945), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4945), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4945), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4945), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4945), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4945), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4945), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4945), - [anon_sym_BSLASHcolor] = ACTIONS(4945), - [anon_sym_BSLASHcolorbox] = ACTIONS(4945), - [anon_sym_BSLASHtextcolor] = ACTIONS(4945), - [anon_sym_BSLASHpagecolor] = ACTIONS(4945), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4945), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4945), + [1117] = { + [sym_command_name] = ACTIONS(4951), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [anon_sym_RBRACK] = ACTIONS(4949), + [anon_sym_COMMA] = ACTIONS(4949), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_BSLASHpart] = ACTIONS(4951), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddpart] = ACTIONS(4951), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4949), + [anon_sym_BSLASHchapter] = ACTIONS(4951), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddchap] = ACTIONS(4951), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsection] = ACTIONS(4951), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddsec] = ACTIONS(4951), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubsection] = ACTIONS(4951), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4951), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHparagraph] = ACTIONS(4951), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4951), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4949), + [anon_sym_BSLASHitem] = ACTIONS(4951), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4949), + [sym_word] = ACTIONS(4951), + [sym_placeholder] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_STAR] = ACTIONS(4951), + [anon_sym_SLASH] = ACTIONS(4951), + [anon_sym_CARET] = ACTIONS(4951), + [anon_sym__] = ACTIONS(4951), + [anon_sym_LT] = ACTIONS(4951), + [anon_sym_GT] = ACTIONS(4951), + [anon_sym_BANG] = ACTIONS(4951), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_COLON] = ACTIONS(4951), + [anon_sym_SQUOTE] = ACTIONS(4951), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4949), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4949), + [anon_sym_DOLLAR] = ACTIONS(4951), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4949), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4949), + [anon_sym_BSLASHbegin] = ACTIONS(4951), + [anon_sym_BSLASHend] = ACTIONS(4951), + [anon_sym_BSLASHusepackage] = ACTIONS(4951), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4951), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4951), + [anon_sym_BSLASHinclude] = ACTIONS(4951), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4951), + [anon_sym_BSLASHinput] = ACTIONS(4951), + [anon_sym_BSLASHsubfile] = ACTIONS(4951), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4951), + [anon_sym_BSLASHbibliography] = ACTIONS(4951), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4951), + [anon_sym_BSLASHincludesvg] = ACTIONS(4951), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4951), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4951), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4951), + [anon_sym_BSLASHimport] = ACTIONS(4951), + [anon_sym_BSLASHsubimport] = ACTIONS(4951), + [anon_sym_BSLASHinputfrom] = ACTIONS(4951), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4951), + [anon_sym_BSLASHincludefrom] = ACTIONS(4951), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4951), + [anon_sym_BSLASHcaption] = ACTIONS(4951), + [anon_sym_BSLASHcite] = ACTIONS(4951), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCite] = ACTIONS(4951), + [anon_sym_BSLASHnocite] = ACTIONS(4951), + [anon_sym_BSLASHcitet] = ACTIONS(4951), + [anon_sym_BSLASHcitep] = ACTIONS(4951), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteauthor] = ACTIONS(4951), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4951), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitetitle] = ACTIONS(4951), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteyear] = ACTIONS(4951), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitedate] = ACTIONS(4951), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteurl] = ACTIONS(4951), + [anon_sym_BSLASHfullcite] = ACTIONS(4951), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4951), + [anon_sym_BSLASHcitealt] = ACTIONS(4951), + [anon_sym_BSLASHcitealp] = ACTIONS(4951), + [anon_sym_BSLASHcitetext] = ACTIONS(4951), + [anon_sym_BSLASHparencite] = ACTIONS(4951), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHParencite] = ACTIONS(4951), + [anon_sym_BSLASHfootcite] = ACTIONS(4951), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4951), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4951), + [anon_sym_BSLASHtextcite] = ACTIONS(4951), + [anon_sym_BSLASHTextcite] = ACTIONS(4951), + [anon_sym_BSLASHsmartcite] = ACTIONS(4951), + [anon_sym_BSLASHSmartcite] = ACTIONS(4951), + [anon_sym_BSLASHsupercite] = ACTIONS(4951), + [anon_sym_BSLASHautocite] = ACTIONS(4951), + [anon_sym_BSLASHAutocite] = ACTIONS(4951), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHvolcite] = ACTIONS(4951), + [anon_sym_BSLASHVolcite] = ACTIONS(4951), + [anon_sym_BSLASHpvolcite] = ACTIONS(4951), + [anon_sym_BSLASHPvolcite] = ACTIONS(4951), + [anon_sym_BSLASHfvolcite] = ACTIONS(4951), + [anon_sym_BSLASHftvolcite] = ACTIONS(4951), + [anon_sym_BSLASHsvolcite] = ACTIONS(4951), + [anon_sym_BSLASHSvolcite] = ACTIONS(4951), + [anon_sym_BSLASHtvolcite] = ACTIONS(4951), + [anon_sym_BSLASHTvolcite] = ACTIONS(4951), + [anon_sym_BSLASHavolcite] = ACTIONS(4951), + [anon_sym_BSLASHAvolcite] = ACTIONS(4951), + [anon_sym_BSLASHnotecite] = ACTIONS(4951), + [anon_sym_BSLASHNotecite] = ACTIONS(4951), + [anon_sym_BSLASHpnotecite] = ACTIONS(4951), + [anon_sym_BSLASHPnotecite] = ACTIONS(4951), + [anon_sym_BSLASHfnotecite] = ACTIONS(4951), + [anon_sym_BSLASHlabel] = ACTIONS(4951), + [anon_sym_BSLASHref] = ACTIONS(4951), + [anon_sym_BSLASHeqref] = ACTIONS(4951), + [anon_sym_BSLASHvref] = ACTIONS(4951), + [anon_sym_BSLASHVref] = ACTIONS(4951), + [anon_sym_BSLASHautoref] = ACTIONS(4951), + [anon_sym_BSLASHpageref] = ACTIONS(4951), + [anon_sym_BSLASHcref] = ACTIONS(4951), + [anon_sym_BSLASHCref] = ACTIONS(4951), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4949), + [anon_sym_BSLASHnamecref] = ACTIONS(4951), + [anon_sym_BSLASHnameCref] = ACTIONS(4951), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4951), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4951), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4951), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4951), + [anon_sym_BSLASHlabelcref] = ACTIONS(4951), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4951), + [anon_sym_BSLASHcrefrange] = ACTIONS(4951), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCrefrange] = ACTIONS(4951), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4949), + [anon_sym_BSLASHnewlabel] = ACTIONS(4951), + [anon_sym_BSLASHnewcommand] = ACTIONS(4951), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4951), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4951), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4951), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4949), + [anon_sym_BSLASHdef] = ACTIONS(4951), + [anon_sym_BSLASHlet] = ACTIONS(4951), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4951), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4951), + [anon_sym_BSLASHgls] = ACTIONS(4951), + [anon_sym_BSLASHGls] = ACTIONS(4951), + [anon_sym_BSLASHGLS] = ACTIONS(4951), + [anon_sym_BSLASHglspl] = ACTIONS(4951), + [anon_sym_BSLASHGlspl] = ACTIONS(4951), + [anon_sym_BSLASHGLSpl] = ACTIONS(4951), + [anon_sym_BSLASHglsdisp] = ACTIONS(4951), + [anon_sym_BSLASHglslink] = ACTIONS(4951), + [anon_sym_BSLASHglstext] = ACTIONS(4951), + [anon_sym_BSLASHGlstext] = ACTIONS(4951), + [anon_sym_BSLASHGLStext] = ACTIONS(4951), + [anon_sym_BSLASHglsfirst] = ACTIONS(4951), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4951), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4951), + [anon_sym_BSLASHglsplural] = ACTIONS(4951), + [anon_sym_BSLASHGlsplural] = ACTIONS(4951), + [anon_sym_BSLASHGLSplural] = ACTIONS(4951), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHglsname] = ACTIONS(4951), + [anon_sym_BSLASHGlsname] = ACTIONS(4951), + [anon_sym_BSLASHGLSname] = ACTIONS(4951), + [anon_sym_BSLASHglssymbol] = ACTIONS(4951), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4951), + [anon_sym_BSLASHglsdesc] = ACTIONS(4951), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4951), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4951), + [anon_sym_BSLASHglsuseri] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4951), + [anon_sym_BSLASHglsuserii] = ACTIONS(4951), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4951), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4951), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4951), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4951), + [anon_sym_BSLASHglsuserv] = ACTIONS(4951), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4951), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4951), + [anon_sym_BSLASHglsuservi] = ACTIONS(4951), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4951), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4951), + [anon_sym_BSLASHnewacronym] = ACTIONS(4951), + [anon_sym_BSLASHacrshort] = ACTIONS(4951), + [anon_sym_BSLASHAcrshort] = ACTIONS(4951), + [anon_sym_BSLASHACRshort] = ACTIONS(4951), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4951), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4951), + [anon_sym_BSLASHacrlong] = ACTIONS(4951), + [anon_sym_BSLASHAcrlong] = ACTIONS(4951), + [anon_sym_BSLASHACRlong] = ACTIONS(4951), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4951), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4951), + [anon_sym_BSLASHacrfull] = ACTIONS(4951), + [anon_sym_BSLASHAcrfull] = ACTIONS(4951), + [anon_sym_BSLASHACRfull] = ACTIONS(4951), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4951), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4951), + [anon_sym_BSLASHacs] = ACTIONS(4951), + [anon_sym_BSLASHAcs] = ACTIONS(4951), + [anon_sym_BSLASHacsp] = ACTIONS(4951), + [anon_sym_BSLASHAcsp] = ACTIONS(4951), + [anon_sym_BSLASHacl] = ACTIONS(4951), + [anon_sym_BSLASHAcl] = ACTIONS(4951), + [anon_sym_BSLASHaclp] = ACTIONS(4951), + [anon_sym_BSLASHAclp] = ACTIONS(4951), + [anon_sym_BSLASHacf] = ACTIONS(4951), + [anon_sym_BSLASHAcf] = ACTIONS(4951), + [anon_sym_BSLASHacfp] = ACTIONS(4951), + [anon_sym_BSLASHAcfp] = ACTIONS(4951), + [anon_sym_BSLASHac] = ACTIONS(4951), + [anon_sym_BSLASHAc] = ACTIONS(4951), + [anon_sym_BSLASHacp] = ACTIONS(4951), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4951), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4951), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4951), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4951), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4951), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4951), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4951), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4951), + [anon_sym_BSLASHcolor] = ACTIONS(4951), + [anon_sym_BSLASHcolorbox] = ACTIONS(4951), + [anon_sym_BSLASHtextcolor] = ACTIONS(4951), + [anon_sym_BSLASHpagecolor] = ACTIONS(4951), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4951), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4951), + [anon_sym_BSLASHtext] = ACTIONS(4951), + [anon_sym_BSLASHintertext] = ACTIONS(4951), + [anon_sym_shortintertext] = ACTIONS(4951), }, - [1245] = { - [sym_command_name] = ACTIONS(5189), + [1118] = { + [sym_command_name] = ACTIONS(4959), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_BSLASHpart] = ACTIONS(5189), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddpart] = ACTIONS(5189), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), - [anon_sym_BSLASHchapter] = ACTIONS(5189), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddchap] = ACTIONS(5189), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsection] = ACTIONS(5189), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHaddsec] = ACTIONS(5189), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), - [anon_sym_BSLASHparagraph] = ACTIONS(5189), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), - [anon_sym_BSLASHitem] = ACTIONS(5189), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASHbegin] = ACTIONS(5189), - [anon_sym_BSLASHend] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), + [anon_sym_BSLASHiffalse] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_BSLASHpart] = ACTIONS(4959), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddpart] = ACTIONS(4959), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), + [anon_sym_BSLASHchapter] = ACTIONS(4959), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddchap] = ACTIONS(4959), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsection] = ACTIONS(4959), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddsec] = ACTIONS(4959), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubsection] = ACTIONS(4959), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHparagraph] = ACTIONS(4959), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), + [anon_sym_BSLASHitem] = ACTIONS(4959), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4957), + [sym_word] = ACTIONS(4959), + [sym_placeholder] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_CARET] = ACTIONS(4959), + [anon_sym__] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_COLON] = ACTIONS(4959), + [anon_sym_SQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), + [anon_sym_DOLLAR] = ACTIONS(4959), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), + [anon_sym_BSLASHbegin] = ACTIONS(4959), + [anon_sym_BSLASHend] = ACTIONS(4959), + [anon_sym_BSLASHusepackage] = ACTIONS(4959), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), + [anon_sym_BSLASHinclude] = ACTIONS(4959), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), + [anon_sym_BSLASHinput] = ACTIONS(4959), + [anon_sym_BSLASHsubfile] = ACTIONS(4959), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), + [anon_sym_BSLASHbibliography] = ACTIONS(4959), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), + [anon_sym_BSLASHincludesvg] = ACTIONS(4959), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), + [anon_sym_BSLASHimport] = ACTIONS(4959), + [anon_sym_BSLASHsubimport] = ACTIONS(4959), + [anon_sym_BSLASHinputfrom] = ACTIONS(4959), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), + [anon_sym_BSLASHincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHcaption] = ACTIONS(4959), + [anon_sym_BSLASHcite] = ACTIONS(4959), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCite] = ACTIONS(4959), + [anon_sym_BSLASHnocite] = ACTIONS(4959), + [anon_sym_BSLASHcitet] = ACTIONS(4959), + [anon_sym_BSLASHcitep] = ACTIONS(4959), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteauthor] = ACTIONS(4959), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitetitle] = ACTIONS(4959), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteyear] = ACTIONS(4959), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitedate] = ACTIONS(4959), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteurl] = ACTIONS(4959), + [anon_sym_BSLASHfullcite] = ACTIONS(4959), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), + [anon_sym_BSLASHcitealt] = ACTIONS(4959), + [anon_sym_BSLASHcitealp] = ACTIONS(4959), + [anon_sym_BSLASHcitetext] = ACTIONS(4959), + [anon_sym_BSLASHparencite] = ACTIONS(4959), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHParencite] = ACTIONS(4959), + [anon_sym_BSLASHfootcite] = ACTIONS(4959), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), + [anon_sym_BSLASHtextcite] = ACTIONS(4959), + [anon_sym_BSLASHTextcite] = ACTIONS(4959), + [anon_sym_BSLASHsmartcite] = ACTIONS(4959), + [anon_sym_BSLASHSmartcite] = ACTIONS(4959), + [anon_sym_BSLASHsupercite] = ACTIONS(4959), + [anon_sym_BSLASHautocite] = ACTIONS(4959), + [anon_sym_BSLASHAutocite] = ACTIONS(4959), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHvolcite] = ACTIONS(4959), + [anon_sym_BSLASHVolcite] = ACTIONS(4959), + [anon_sym_BSLASHpvolcite] = ACTIONS(4959), + [anon_sym_BSLASHPvolcite] = ACTIONS(4959), + [anon_sym_BSLASHfvolcite] = ACTIONS(4959), + [anon_sym_BSLASHftvolcite] = ACTIONS(4959), + [anon_sym_BSLASHsvolcite] = ACTIONS(4959), + [anon_sym_BSLASHSvolcite] = ACTIONS(4959), + [anon_sym_BSLASHtvolcite] = ACTIONS(4959), + [anon_sym_BSLASHTvolcite] = ACTIONS(4959), + [anon_sym_BSLASHavolcite] = ACTIONS(4959), + [anon_sym_BSLASHAvolcite] = ACTIONS(4959), + [anon_sym_BSLASHnotecite] = ACTIONS(4959), + [anon_sym_BSLASHNotecite] = ACTIONS(4959), + [anon_sym_BSLASHpnotecite] = ACTIONS(4959), + [anon_sym_BSLASHPnotecite] = ACTIONS(4959), + [anon_sym_BSLASHfnotecite] = ACTIONS(4959), + [anon_sym_BSLASHlabel] = ACTIONS(4959), + [anon_sym_BSLASHref] = ACTIONS(4959), + [anon_sym_BSLASHeqref] = ACTIONS(4959), + [anon_sym_BSLASHvref] = ACTIONS(4959), + [anon_sym_BSLASHVref] = ACTIONS(4959), + [anon_sym_BSLASHautoref] = ACTIONS(4959), + [anon_sym_BSLASHpageref] = ACTIONS(4959), + [anon_sym_BSLASHcref] = ACTIONS(4959), + [anon_sym_BSLASHCref] = ACTIONS(4959), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnameCref] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHlabelcref] = ACTIONS(4959), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCrefrange] = ACTIONS(4959), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnewlabel] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), + [anon_sym_BSLASHdef] = ACTIONS(4959), + [anon_sym_BSLASHlet] = ACTIONS(4959), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), + [anon_sym_BSLASHgls] = ACTIONS(4959), + [anon_sym_BSLASHGls] = ACTIONS(4959), + [anon_sym_BSLASHGLS] = ACTIONS(4959), + [anon_sym_BSLASHglspl] = ACTIONS(4959), + [anon_sym_BSLASHGlspl] = ACTIONS(4959), + [anon_sym_BSLASHGLSpl] = ACTIONS(4959), + [anon_sym_BSLASHglsdisp] = ACTIONS(4959), + [anon_sym_BSLASHglslink] = ACTIONS(4959), + [anon_sym_BSLASHglstext] = ACTIONS(4959), + [anon_sym_BSLASHGlstext] = ACTIONS(4959), + [anon_sym_BSLASHGLStext] = ACTIONS(4959), + [anon_sym_BSLASHglsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), + [anon_sym_BSLASHglsplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSplural] = ACTIONS(4959), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHglsname] = ACTIONS(4959), + [anon_sym_BSLASHGlsname] = ACTIONS(4959), + [anon_sym_BSLASHGLSname] = ACTIONS(4959), + [anon_sym_BSLASHglssymbol] = ACTIONS(4959), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), + [anon_sym_BSLASHglsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), + [anon_sym_BSLASHglsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), + [anon_sym_BSLASHglsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), + [anon_sym_BSLASHglsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), + [anon_sym_BSLASHglsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), + [anon_sym_BSLASHnewacronym] = ACTIONS(4959), + [anon_sym_BSLASHacrshort] = ACTIONS(4959), + [anon_sym_BSLASHAcrshort] = ACTIONS(4959), + [anon_sym_BSLASHACRshort] = ACTIONS(4959), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), + [anon_sym_BSLASHacrlong] = ACTIONS(4959), + [anon_sym_BSLASHAcrlong] = ACTIONS(4959), + [anon_sym_BSLASHACRlong] = ACTIONS(4959), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), + [anon_sym_BSLASHacrfull] = ACTIONS(4959), + [anon_sym_BSLASHAcrfull] = ACTIONS(4959), + [anon_sym_BSLASHACRfull] = ACTIONS(4959), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), + [anon_sym_BSLASHacs] = ACTIONS(4959), + [anon_sym_BSLASHAcs] = ACTIONS(4959), + [anon_sym_BSLASHacsp] = ACTIONS(4959), + [anon_sym_BSLASHAcsp] = ACTIONS(4959), + [anon_sym_BSLASHacl] = ACTIONS(4959), + [anon_sym_BSLASHAcl] = ACTIONS(4959), + [anon_sym_BSLASHaclp] = ACTIONS(4959), + [anon_sym_BSLASHAclp] = ACTIONS(4959), + [anon_sym_BSLASHacf] = ACTIONS(4959), + [anon_sym_BSLASHAcf] = ACTIONS(4959), + [anon_sym_BSLASHacfp] = ACTIONS(4959), + [anon_sym_BSLASHAcfp] = ACTIONS(4959), + [anon_sym_BSLASHac] = ACTIONS(4959), + [anon_sym_BSLASHAc] = ACTIONS(4959), + [anon_sym_BSLASHacp] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), + [anon_sym_BSLASHcolor] = ACTIONS(4959), + [anon_sym_BSLASHcolorbox] = ACTIONS(4959), + [anon_sym_BSLASHtextcolor] = ACTIONS(4959), + [anon_sym_BSLASHpagecolor] = ACTIONS(4959), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHtext] = ACTIONS(4959), + [anon_sym_BSLASHintertext] = ACTIONS(4959), + [anon_sym_shortintertext] = ACTIONS(4959), }, - [1246] = { - [sym_command_name] = ACTIONS(5193), + [1119] = { + [sym_command_name] = ACTIONS(4973), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4971), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), + [anon_sym_RBRACK] = ACTIONS(4971), + [anon_sym_COMMA] = ACTIONS(4971), + [anon_sym_EQ] = ACTIONS(4971), + [anon_sym_BSLASHpart] = ACTIONS(4973), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddpart] = ACTIONS(4973), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4971), + [anon_sym_BSLASHchapter] = ACTIONS(4973), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddchap] = ACTIONS(4973), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsection] = ACTIONS(4973), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHaddsec] = ACTIONS(4973), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubsection] = ACTIONS(4973), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4973), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4971), + [anon_sym_BSLASHparagraph] = ACTIONS(4973), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4971), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4973), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4971), + [anon_sym_BSLASHitem] = ACTIONS(4973), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4971), + [anon_sym_LBRACE] = ACTIONS(4971), + [sym_word] = ACTIONS(4973), + [sym_placeholder] = ACTIONS(4971), + [anon_sym_PLUS] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym__] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4973), + [anon_sym_GT] = ACTIONS(4973), + [anon_sym_BANG] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_SQUOTE] = ACTIONS(4973), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), + [anon_sym_DOLLAR] = ACTIONS(4973), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), + [anon_sym_BSLASHbegin] = ACTIONS(4973), + [anon_sym_BSLASHend] = ACTIONS(4973), + [anon_sym_BSLASHusepackage] = ACTIONS(4973), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), + [anon_sym_BSLASHinclude] = ACTIONS(4973), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), + [anon_sym_BSLASHinput] = ACTIONS(4973), + [anon_sym_BSLASHsubfile] = ACTIONS(4973), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), + [anon_sym_BSLASHbibliography] = ACTIONS(4973), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), + [anon_sym_BSLASHincludesvg] = ACTIONS(4973), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), + [anon_sym_BSLASHimport] = ACTIONS(4973), + [anon_sym_BSLASHsubimport] = ACTIONS(4973), + [anon_sym_BSLASHinputfrom] = ACTIONS(4973), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), + [anon_sym_BSLASHincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHcaption] = ACTIONS(4973), + [anon_sym_BSLASHcite] = ACTIONS(4973), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCite] = ACTIONS(4973), + [anon_sym_BSLASHnocite] = ACTIONS(4973), + [anon_sym_BSLASHcitet] = ACTIONS(4973), + [anon_sym_BSLASHcitep] = ACTIONS(4973), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteauthor] = ACTIONS(4973), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitetitle] = ACTIONS(4973), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteyear] = ACTIONS(4973), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitedate] = ACTIONS(4973), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteurl] = ACTIONS(4973), + [anon_sym_BSLASHfullcite] = ACTIONS(4973), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), + [anon_sym_BSLASHcitealt] = ACTIONS(4973), + [anon_sym_BSLASHcitealp] = ACTIONS(4973), + [anon_sym_BSLASHcitetext] = ACTIONS(4973), + [anon_sym_BSLASHparencite] = ACTIONS(4973), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHParencite] = ACTIONS(4973), + [anon_sym_BSLASHfootcite] = ACTIONS(4973), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), + [anon_sym_BSLASHtextcite] = ACTIONS(4973), + [anon_sym_BSLASHTextcite] = ACTIONS(4973), + [anon_sym_BSLASHsmartcite] = ACTIONS(4973), + [anon_sym_BSLASHSmartcite] = ACTIONS(4973), + [anon_sym_BSLASHsupercite] = ACTIONS(4973), + [anon_sym_BSLASHautocite] = ACTIONS(4973), + [anon_sym_BSLASHAutocite] = ACTIONS(4973), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHvolcite] = ACTIONS(4973), + [anon_sym_BSLASHVolcite] = ACTIONS(4973), + [anon_sym_BSLASHpvolcite] = ACTIONS(4973), + [anon_sym_BSLASHPvolcite] = ACTIONS(4973), + [anon_sym_BSLASHfvolcite] = ACTIONS(4973), + [anon_sym_BSLASHftvolcite] = ACTIONS(4973), + [anon_sym_BSLASHsvolcite] = ACTIONS(4973), + [anon_sym_BSLASHSvolcite] = ACTIONS(4973), + [anon_sym_BSLASHtvolcite] = ACTIONS(4973), + [anon_sym_BSLASHTvolcite] = ACTIONS(4973), + [anon_sym_BSLASHavolcite] = ACTIONS(4973), + [anon_sym_BSLASHAvolcite] = ACTIONS(4973), + [anon_sym_BSLASHnotecite] = ACTIONS(4973), + [anon_sym_BSLASHNotecite] = ACTIONS(4973), + [anon_sym_BSLASHpnotecite] = ACTIONS(4973), + [anon_sym_BSLASHPnotecite] = ACTIONS(4973), + [anon_sym_BSLASHfnotecite] = ACTIONS(4973), + [anon_sym_BSLASHlabel] = ACTIONS(4973), + [anon_sym_BSLASHref] = ACTIONS(4973), + [anon_sym_BSLASHeqref] = ACTIONS(4973), + [anon_sym_BSLASHvref] = ACTIONS(4973), + [anon_sym_BSLASHVref] = ACTIONS(4973), + [anon_sym_BSLASHautoref] = ACTIONS(4973), + [anon_sym_BSLASHpageref] = ACTIONS(4973), + [anon_sym_BSLASHcref] = ACTIONS(4973), + [anon_sym_BSLASHCref] = ACTIONS(4973), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnameCref] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHlabelcref] = ACTIONS(4973), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCrefrange] = ACTIONS(4973), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnewlabel] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), + [anon_sym_BSLASHdef] = ACTIONS(4973), + [anon_sym_BSLASHlet] = ACTIONS(4973), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), + [anon_sym_BSLASHgls] = ACTIONS(4973), + [anon_sym_BSLASHGls] = ACTIONS(4973), + [anon_sym_BSLASHGLS] = ACTIONS(4973), + [anon_sym_BSLASHglspl] = ACTIONS(4973), + [anon_sym_BSLASHGlspl] = ACTIONS(4973), + [anon_sym_BSLASHGLSpl] = ACTIONS(4973), + [anon_sym_BSLASHglsdisp] = ACTIONS(4973), + [anon_sym_BSLASHglslink] = ACTIONS(4973), + [anon_sym_BSLASHglstext] = ACTIONS(4973), + [anon_sym_BSLASHGlstext] = ACTIONS(4973), + [anon_sym_BSLASHGLStext] = ACTIONS(4973), + [anon_sym_BSLASHglsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), + [anon_sym_BSLASHglsplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSplural] = ACTIONS(4973), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHglsname] = ACTIONS(4973), + [anon_sym_BSLASHGlsname] = ACTIONS(4973), + [anon_sym_BSLASHGLSname] = ACTIONS(4973), + [anon_sym_BSLASHglssymbol] = ACTIONS(4973), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), + [anon_sym_BSLASHglsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), + [anon_sym_BSLASHglsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), + [anon_sym_BSLASHglsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), + [anon_sym_BSLASHglsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), + [anon_sym_BSLASHglsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), + [anon_sym_BSLASHnewacronym] = ACTIONS(4973), + [anon_sym_BSLASHacrshort] = ACTIONS(4973), + [anon_sym_BSLASHAcrshort] = ACTIONS(4973), + [anon_sym_BSLASHACRshort] = ACTIONS(4973), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), + [anon_sym_BSLASHacrlong] = ACTIONS(4973), + [anon_sym_BSLASHAcrlong] = ACTIONS(4973), + [anon_sym_BSLASHACRlong] = ACTIONS(4973), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), + [anon_sym_BSLASHacrfull] = ACTIONS(4973), + [anon_sym_BSLASHAcrfull] = ACTIONS(4973), + [anon_sym_BSLASHACRfull] = ACTIONS(4973), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), + [anon_sym_BSLASHacs] = ACTIONS(4973), + [anon_sym_BSLASHAcs] = ACTIONS(4973), + [anon_sym_BSLASHacsp] = ACTIONS(4973), + [anon_sym_BSLASHAcsp] = ACTIONS(4973), + [anon_sym_BSLASHacl] = ACTIONS(4973), + [anon_sym_BSLASHAcl] = ACTIONS(4973), + [anon_sym_BSLASHaclp] = ACTIONS(4973), + [anon_sym_BSLASHAclp] = ACTIONS(4973), + [anon_sym_BSLASHacf] = ACTIONS(4973), + [anon_sym_BSLASHAcf] = ACTIONS(4973), + [anon_sym_BSLASHacfp] = ACTIONS(4973), + [anon_sym_BSLASHAcfp] = ACTIONS(4973), + [anon_sym_BSLASHac] = ACTIONS(4973), + [anon_sym_BSLASHAc] = ACTIONS(4973), + [anon_sym_BSLASHacp] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), + [anon_sym_BSLASHcolor] = ACTIONS(4973), + [anon_sym_BSLASHcolorbox] = ACTIONS(4973), + [anon_sym_BSLASHtextcolor] = ACTIONS(4973), + [anon_sym_BSLASHpagecolor] = ACTIONS(4973), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), + [anon_sym_BSLASHtext] = ACTIONS(4973), + [anon_sym_BSLASHintertext] = ACTIONS(4973), + [anon_sym_shortintertext] = ACTIONS(4973), + }, + [1120] = { + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHend] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), + }, + [1121] = { + [sym_command_name] = ACTIONS(4939), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4937), + [anon_sym_RPAREN] = ACTIONS(4937), + [anon_sym_LBRACK] = ACTIONS(4937), + [anon_sym_RBRACK] = ACTIONS(4937), + [anon_sym_COMMA] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_BSLASHpart] = ACTIONS(4939), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddpart] = ACTIONS(4939), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4937), + [anon_sym_BSLASHchapter] = ACTIONS(4939), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddchap] = ACTIONS(4939), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsection] = ACTIONS(4939), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddsec] = ACTIONS(4939), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubsection] = ACTIONS(4939), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4939), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHparagraph] = ACTIONS(4939), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4939), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4937), + [anon_sym_BSLASHitem] = ACTIONS(4939), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4937), + [sym_word] = ACTIONS(4939), + [sym_placeholder] = ACTIONS(4937), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_SLASH] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(4939), + [anon_sym__] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4939), + [anon_sym_GT] = ACTIONS(4939), + [anon_sym_BANG] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4939), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_SQUOTE] = ACTIONS(4939), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), + [anon_sym_DOLLAR] = ACTIONS(4939), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), + [anon_sym_BSLASHbegin] = ACTIONS(4939), + [anon_sym_BSLASHend] = ACTIONS(4939), + [anon_sym_BSLASHusepackage] = ACTIONS(4939), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), + [anon_sym_BSLASHinclude] = ACTIONS(4939), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), + [anon_sym_BSLASHinput] = ACTIONS(4939), + [anon_sym_BSLASHsubfile] = ACTIONS(4939), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), + [anon_sym_BSLASHbibliography] = ACTIONS(4939), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), + [anon_sym_BSLASHincludesvg] = ACTIONS(4939), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), + [anon_sym_BSLASHimport] = ACTIONS(4939), + [anon_sym_BSLASHsubimport] = ACTIONS(4939), + [anon_sym_BSLASHinputfrom] = ACTIONS(4939), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), + [anon_sym_BSLASHincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHcaption] = ACTIONS(4939), + [anon_sym_BSLASHcite] = ACTIONS(4939), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCite] = ACTIONS(4939), + [anon_sym_BSLASHnocite] = ACTIONS(4939), + [anon_sym_BSLASHcitet] = ACTIONS(4939), + [anon_sym_BSLASHcitep] = ACTIONS(4939), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteauthor] = ACTIONS(4939), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitetitle] = ACTIONS(4939), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteyear] = ACTIONS(4939), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitedate] = ACTIONS(4939), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteurl] = ACTIONS(4939), + [anon_sym_BSLASHfullcite] = ACTIONS(4939), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), + [anon_sym_BSLASHcitealt] = ACTIONS(4939), + [anon_sym_BSLASHcitealp] = ACTIONS(4939), + [anon_sym_BSLASHcitetext] = ACTIONS(4939), + [anon_sym_BSLASHparencite] = ACTIONS(4939), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHParencite] = ACTIONS(4939), + [anon_sym_BSLASHfootcite] = ACTIONS(4939), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), + [anon_sym_BSLASHtextcite] = ACTIONS(4939), + [anon_sym_BSLASHTextcite] = ACTIONS(4939), + [anon_sym_BSLASHsmartcite] = ACTIONS(4939), + [anon_sym_BSLASHSmartcite] = ACTIONS(4939), + [anon_sym_BSLASHsupercite] = ACTIONS(4939), + [anon_sym_BSLASHautocite] = ACTIONS(4939), + [anon_sym_BSLASHAutocite] = ACTIONS(4939), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHvolcite] = ACTIONS(4939), + [anon_sym_BSLASHVolcite] = ACTIONS(4939), + [anon_sym_BSLASHpvolcite] = ACTIONS(4939), + [anon_sym_BSLASHPvolcite] = ACTIONS(4939), + [anon_sym_BSLASHfvolcite] = ACTIONS(4939), + [anon_sym_BSLASHftvolcite] = ACTIONS(4939), + [anon_sym_BSLASHsvolcite] = ACTIONS(4939), + [anon_sym_BSLASHSvolcite] = ACTIONS(4939), + [anon_sym_BSLASHtvolcite] = ACTIONS(4939), + [anon_sym_BSLASHTvolcite] = ACTIONS(4939), + [anon_sym_BSLASHavolcite] = ACTIONS(4939), + [anon_sym_BSLASHAvolcite] = ACTIONS(4939), + [anon_sym_BSLASHnotecite] = ACTIONS(4939), + [anon_sym_BSLASHNotecite] = ACTIONS(4939), + [anon_sym_BSLASHpnotecite] = ACTIONS(4939), + [anon_sym_BSLASHPnotecite] = ACTIONS(4939), + [anon_sym_BSLASHfnotecite] = ACTIONS(4939), + [anon_sym_BSLASHlabel] = ACTIONS(4939), + [anon_sym_BSLASHref] = ACTIONS(4939), + [anon_sym_BSLASHeqref] = ACTIONS(4939), + [anon_sym_BSLASHvref] = ACTIONS(4939), + [anon_sym_BSLASHVref] = ACTIONS(4939), + [anon_sym_BSLASHautoref] = ACTIONS(4939), + [anon_sym_BSLASHpageref] = ACTIONS(4939), + [anon_sym_BSLASHcref] = ACTIONS(4939), + [anon_sym_BSLASHCref] = ACTIONS(4939), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnameCref] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHlabelcref] = ACTIONS(4939), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCrefrange] = ACTIONS(4939), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnewlabel] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), + [anon_sym_BSLASHdef] = ACTIONS(4939), + [anon_sym_BSLASHlet] = ACTIONS(4939), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), + [anon_sym_BSLASHgls] = ACTIONS(4939), + [anon_sym_BSLASHGls] = ACTIONS(4939), + [anon_sym_BSLASHGLS] = ACTIONS(4939), + [anon_sym_BSLASHglspl] = ACTIONS(4939), + [anon_sym_BSLASHGlspl] = ACTIONS(4939), + [anon_sym_BSLASHGLSpl] = ACTIONS(4939), + [anon_sym_BSLASHglsdisp] = ACTIONS(4939), + [anon_sym_BSLASHglslink] = ACTIONS(4939), + [anon_sym_BSLASHglstext] = ACTIONS(4939), + [anon_sym_BSLASHGlstext] = ACTIONS(4939), + [anon_sym_BSLASHGLStext] = ACTIONS(4939), + [anon_sym_BSLASHglsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), + [anon_sym_BSLASHglsplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSplural] = ACTIONS(4939), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHglsname] = ACTIONS(4939), + [anon_sym_BSLASHGlsname] = ACTIONS(4939), + [anon_sym_BSLASHGLSname] = ACTIONS(4939), + [anon_sym_BSLASHglssymbol] = ACTIONS(4939), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), + [anon_sym_BSLASHglsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), + [anon_sym_BSLASHglsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), + [anon_sym_BSLASHglsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), + [anon_sym_BSLASHglsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), + [anon_sym_BSLASHglsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), + [anon_sym_BSLASHnewacronym] = ACTIONS(4939), + [anon_sym_BSLASHacrshort] = ACTIONS(4939), + [anon_sym_BSLASHAcrshort] = ACTIONS(4939), + [anon_sym_BSLASHACRshort] = ACTIONS(4939), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), + [anon_sym_BSLASHacrlong] = ACTIONS(4939), + [anon_sym_BSLASHAcrlong] = ACTIONS(4939), + [anon_sym_BSLASHACRlong] = ACTIONS(4939), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), + [anon_sym_BSLASHacrfull] = ACTIONS(4939), + [anon_sym_BSLASHAcrfull] = ACTIONS(4939), + [anon_sym_BSLASHACRfull] = ACTIONS(4939), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), + [anon_sym_BSLASHacs] = ACTIONS(4939), + [anon_sym_BSLASHAcs] = ACTIONS(4939), + [anon_sym_BSLASHacsp] = ACTIONS(4939), + [anon_sym_BSLASHAcsp] = ACTIONS(4939), + [anon_sym_BSLASHacl] = ACTIONS(4939), + [anon_sym_BSLASHAcl] = ACTIONS(4939), + [anon_sym_BSLASHaclp] = ACTIONS(4939), + [anon_sym_BSLASHAclp] = ACTIONS(4939), + [anon_sym_BSLASHacf] = ACTIONS(4939), + [anon_sym_BSLASHAcf] = ACTIONS(4939), + [anon_sym_BSLASHacfp] = ACTIONS(4939), + [anon_sym_BSLASHAcfp] = ACTIONS(4939), + [anon_sym_BSLASHac] = ACTIONS(4939), + [anon_sym_BSLASHAc] = ACTIONS(4939), + [anon_sym_BSLASHacp] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), + [anon_sym_BSLASHcolor] = ACTIONS(4939), + [anon_sym_BSLASHcolorbox] = ACTIONS(4939), + [anon_sym_BSLASHtextcolor] = ACTIONS(4939), + [anon_sym_BSLASHpagecolor] = ACTIONS(4939), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), + [anon_sym_BSLASHtext] = ACTIONS(4939), + [anon_sym_BSLASHintertext] = ACTIONS(4939), + [anon_sym_shortintertext] = ACTIONS(4939), + }, + [1122] = { + [sym_command_name] = ACTIONS(4929), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_BSLASHpart] = ACTIONS(5193), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddpart] = ACTIONS(5193), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), - [anon_sym_BSLASHchapter] = ACTIONS(5193), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddchap] = ACTIONS(5193), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsection] = ACTIONS(5193), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHaddsec] = ACTIONS(5193), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), - [anon_sym_BSLASHparagraph] = ACTIONS(5193), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), - [anon_sym_BSLASHitem] = ACTIONS(5193), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASHbegin] = ACTIONS(5193), - [anon_sym_BSLASHend] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [anon_sym_BSLASHiffalse] = ACTIONS(4929), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_RBRACK] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_EQ] = ACTIONS(4927), + [anon_sym_BSLASHpart] = ACTIONS(4929), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddpart] = ACTIONS(4929), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), + [anon_sym_BSLASHchapter] = ACTIONS(4929), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddchap] = ACTIONS(4929), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsection] = ACTIONS(4929), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddsec] = ACTIONS(4929), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubsection] = ACTIONS(4929), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHparagraph] = ACTIONS(4929), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), + [anon_sym_BSLASHitem] = ACTIONS(4929), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), + [anon_sym_LBRACE] = ACTIONS(4927), + [sym_word] = ACTIONS(4929), + [sym_placeholder] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_CARET] = ACTIONS(4929), + [anon_sym__] = ACTIONS(4929), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_BANG] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4929), + [anon_sym_COLON] = ACTIONS(4929), + [anon_sym_SQUOTE] = ACTIONS(4929), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), + [anon_sym_DOLLAR] = ACTIONS(4929), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), + [anon_sym_BSLASHbegin] = ACTIONS(4929), + [anon_sym_BSLASHend] = ACTIONS(4929), + [anon_sym_BSLASHusepackage] = ACTIONS(4929), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), + [anon_sym_BSLASHinclude] = ACTIONS(4929), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), + [anon_sym_BSLASHinput] = ACTIONS(4929), + [anon_sym_BSLASHsubfile] = ACTIONS(4929), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), + [anon_sym_BSLASHbibliography] = ACTIONS(4929), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), + [anon_sym_BSLASHincludesvg] = ACTIONS(4929), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), + [anon_sym_BSLASHimport] = ACTIONS(4929), + [anon_sym_BSLASHsubimport] = ACTIONS(4929), + [anon_sym_BSLASHinputfrom] = ACTIONS(4929), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), + [anon_sym_BSLASHincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHcaption] = ACTIONS(4929), + [anon_sym_BSLASHcite] = ACTIONS(4929), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCite] = ACTIONS(4929), + [anon_sym_BSLASHnocite] = ACTIONS(4929), + [anon_sym_BSLASHcitet] = ACTIONS(4929), + [anon_sym_BSLASHcitep] = ACTIONS(4929), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteauthor] = ACTIONS(4929), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitetitle] = ACTIONS(4929), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteyear] = ACTIONS(4929), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitedate] = ACTIONS(4929), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteurl] = ACTIONS(4929), + [anon_sym_BSLASHfullcite] = ACTIONS(4929), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), + [anon_sym_BSLASHcitealt] = ACTIONS(4929), + [anon_sym_BSLASHcitealp] = ACTIONS(4929), + [anon_sym_BSLASHcitetext] = ACTIONS(4929), + [anon_sym_BSLASHparencite] = ACTIONS(4929), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHParencite] = ACTIONS(4929), + [anon_sym_BSLASHfootcite] = ACTIONS(4929), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), + [anon_sym_BSLASHtextcite] = ACTIONS(4929), + [anon_sym_BSLASHTextcite] = ACTIONS(4929), + [anon_sym_BSLASHsmartcite] = ACTIONS(4929), + [anon_sym_BSLASHSmartcite] = ACTIONS(4929), + [anon_sym_BSLASHsupercite] = ACTIONS(4929), + [anon_sym_BSLASHautocite] = ACTIONS(4929), + [anon_sym_BSLASHAutocite] = ACTIONS(4929), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHvolcite] = ACTIONS(4929), + [anon_sym_BSLASHVolcite] = ACTIONS(4929), + [anon_sym_BSLASHpvolcite] = ACTIONS(4929), + [anon_sym_BSLASHPvolcite] = ACTIONS(4929), + [anon_sym_BSLASHfvolcite] = ACTIONS(4929), + [anon_sym_BSLASHftvolcite] = ACTIONS(4929), + [anon_sym_BSLASHsvolcite] = ACTIONS(4929), + [anon_sym_BSLASHSvolcite] = ACTIONS(4929), + [anon_sym_BSLASHtvolcite] = ACTIONS(4929), + [anon_sym_BSLASHTvolcite] = ACTIONS(4929), + [anon_sym_BSLASHavolcite] = ACTIONS(4929), + [anon_sym_BSLASHAvolcite] = ACTIONS(4929), + [anon_sym_BSLASHnotecite] = ACTIONS(4929), + [anon_sym_BSLASHNotecite] = ACTIONS(4929), + [anon_sym_BSLASHpnotecite] = ACTIONS(4929), + [anon_sym_BSLASHPnotecite] = ACTIONS(4929), + [anon_sym_BSLASHfnotecite] = ACTIONS(4929), + [anon_sym_BSLASHlabel] = ACTIONS(4929), + [anon_sym_BSLASHref] = ACTIONS(4929), + [anon_sym_BSLASHeqref] = ACTIONS(4929), + [anon_sym_BSLASHvref] = ACTIONS(4929), + [anon_sym_BSLASHVref] = ACTIONS(4929), + [anon_sym_BSLASHautoref] = ACTIONS(4929), + [anon_sym_BSLASHpageref] = ACTIONS(4929), + [anon_sym_BSLASHcref] = ACTIONS(4929), + [anon_sym_BSLASHCref] = ACTIONS(4929), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnameCref] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHlabelcref] = ACTIONS(4929), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCrefrange] = ACTIONS(4929), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnewlabel] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), + [anon_sym_BSLASHdef] = ACTIONS(4929), + [anon_sym_BSLASHlet] = ACTIONS(4929), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), + [anon_sym_BSLASHgls] = ACTIONS(4929), + [anon_sym_BSLASHGls] = ACTIONS(4929), + [anon_sym_BSLASHGLS] = ACTIONS(4929), + [anon_sym_BSLASHglspl] = ACTIONS(4929), + [anon_sym_BSLASHGlspl] = ACTIONS(4929), + [anon_sym_BSLASHGLSpl] = ACTIONS(4929), + [anon_sym_BSLASHglsdisp] = ACTIONS(4929), + [anon_sym_BSLASHglslink] = ACTIONS(4929), + [anon_sym_BSLASHglstext] = ACTIONS(4929), + [anon_sym_BSLASHGlstext] = ACTIONS(4929), + [anon_sym_BSLASHGLStext] = ACTIONS(4929), + [anon_sym_BSLASHglsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), + [anon_sym_BSLASHglsplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSplural] = ACTIONS(4929), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHglsname] = ACTIONS(4929), + [anon_sym_BSLASHGlsname] = ACTIONS(4929), + [anon_sym_BSLASHGLSname] = ACTIONS(4929), + [anon_sym_BSLASHglssymbol] = ACTIONS(4929), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), + [anon_sym_BSLASHglsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), + [anon_sym_BSLASHglsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), + [anon_sym_BSLASHglsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), + [anon_sym_BSLASHglsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), + [anon_sym_BSLASHglsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), + [anon_sym_BSLASHnewacronym] = ACTIONS(4929), + [anon_sym_BSLASHacrshort] = ACTIONS(4929), + [anon_sym_BSLASHAcrshort] = ACTIONS(4929), + [anon_sym_BSLASHACRshort] = ACTIONS(4929), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), + [anon_sym_BSLASHacrlong] = ACTIONS(4929), + [anon_sym_BSLASHAcrlong] = ACTIONS(4929), + [anon_sym_BSLASHACRlong] = ACTIONS(4929), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), + [anon_sym_BSLASHacrfull] = ACTIONS(4929), + [anon_sym_BSLASHAcrfull] = ACTIONS(4929), + [anon_sym_BSLASHACRfull] = ACTIONS(4929), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), + [anon_sym_BSLASHacs] = ACTIONS(4929), + [anon_sym_BSLASHAcs] = ACTIONS(4929), + [anon_sym_BSLASHacsp] = ACTIONS(4929), + [anon_sym_BSLASHAcsp] = ACTIONS(4929), + [anon_sym_BSLASHacl] = ACTIONS(4929), + [anon_sym_BSLASHAcl] = ACTIONS(4929), + [anon_sym_BSLASHaclp] = ACTIONS(4929), + [anon_sym_BSLASHAclp] = ACTIONS(4929), + [anon_sym_BSLASHacf] = ACTIONS(4929), + [anon_sym_BSLASHAcf] = ACTIONS(4929), + [anon_sym_BSLASHacfp] = ACTIONS(4929), + [anon_sym_BSLASHAcfp] = ACTIONS(4929), + [anon_sym_BSLASHac] = ACTIONS(4929), + [anon_sym_BSLASHAc] = ACTIONS(4929), + [anon_sym_BSLASHacp] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), + [anon_sym_BSLASHcolor] = ACTIONS(4929), + [anon_sym_BSLASHcolorbox] = ACTIONS(4929), + [anon_sym_BSLASHtextcolor] = ACTIONS(4929), + [anon_sym_BSLASHpagecolor] = ACTIONS(4929), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), + [anon_sym_BSLASHtext] = ACTIONS(4929), + [anon_sym_BSLASHintertext] = ACTIONS(4929), + [anon_sym_shortintertext] = ACTIONS(4929), }, - [1247] = { - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_BSLASHpart] = ACTIONS(5015), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddpart] = ACTIONS(5015), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5013), - [anon_sym_BSLASHchapter] = ACTIONS(5015), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddchap] = ACTIONS(5015), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsection] = ACTIONS(5015), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHaddsec] = ACTIONS(5015), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5015), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5013), - [anon_sym_BSLASHparagraph] = ACTIONS(5015), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5015), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5013), - [anon_sym_BSLASHitem] = ACTIONS(5015), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5013), - [anon_sym_BSLASHbegin] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), + [1123] = { + [sym_command_name] = ACTIONS(4917), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_RPAREN] = ACTIONS(4915), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4915), + [anon_sym_BSLASHpart] = ACTIONS(4917), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddpart] = ACTIONS(4917), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4915), + [anon_sym_BSLASHchapter] = ACTIONS(4917), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddchap] = ACTIONS(4917), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsection] = ACTIONS(4917), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddsec] = ACTIONS(4917), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubsection] = ACTIONS(4917), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4917), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHparagraph] = ACTIONS(4917), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4917), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4915), + [anon_sym_BSLASHitem] = ACTIONS(4917), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4915), + [sym_word] = ACTIONS(4917), + [sym_placeholder] = ACTIONS(4915), + [anon_sym_PLUS] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4917), + [anon_sym_CARET] = ACTIONS(4917), + [anon_sym__] = ACTIONS(4917), + [anon_sym_LT] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4917), + [anon_sym_BANG] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_SQUOTE] = ACTIONS(4917), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), + [anon_sym_DOLLAR] = ACTIONS(4917), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), + [anon_sym_BSLASHbegin] = ACTIONS(4917), + [anon_sym_BSLASHend] = ACTIONS(4917), + [anon_sym_BSLASHusepackage] = ACTIONS(4917), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), + [anon_sym_BSLASHinclude] = ACTIONS(4917), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), + [anon_sym_BSLASHinput] = ACTIONS(4917), + [anon_sym_BSLASHsubfile] = ACTIONS(4917), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), + [anon_sym_BSLASHbibliography] = ACTIONS(4917), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), + [anon_sym_BSLASHincludesvg] = ACTIONS(4917), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), + [anon_sym_BSLASHimport] = ACTIONS(4917), + [anon_sym_BSLASHsubimport] = ACTIONS(4917), + [anon_sym_BSLASHinputfrom] = ACTIONS(4917), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), + [anon_sym_BSLASHincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHcaption] = ACTIONS(4917), + [anon_sym_BSLASHcite] = ACTIONS(4917), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCite] = ACTIONS(4917), + [anon_sym_BSLASHnocite] = ACTIONS(4917), + [anon_sym_BSLASHcitet] = ACTIONS(4917), + [anon_sym_BSLASHcitep] = ACTIONS(4917), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteauthor] = ACTIONS(4917), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitetitle] = ACTIONS(4917), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteyear] = ACTIONS(4917), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitedate] = ACTIONS(4917), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteurl] = ACTIONS(4917), + [anon_sym_BSLASHfullcite] = ACTIONS(4917), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), + [anon_sym_BSLASHcitealt] = ACTIONS(4917), + [anon_sym_BSLASHcitealp] = ACTIONS(4917), + [anon_sym_BSLASHcitetext] = ACTIONS(4917), + [anon_sym_BSLASHparencite] = ACTIONS(4917), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHParencite] = ACTIONS(4917), + [anon_sym_BSLASHfootcite] = ACTIONS(4917), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), + [anon_sym_BSLASHtextcite] = ACTIONS(4917), + [anon_sym_BSLASHTextcite] = ACTIONS(4917), + [anon_sym_BSLASHsmartcite] = ACTIONS(4917), + [anon_sym_BSLASHSmartcite] = ACTIONS(4917), + [anon_sym_BSLASHsupercite] = ACTIONS(4917), + [anon_sym_BSLASHautocite] = ACTIONS(4917), + [anon_sym_BSLASHAutocite] = ACTIONS(4917), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHvolcite] = ACTIONS(4917), + [anon_sym_BSLASHVolcite] = ACTIONS(4917), + [anon_sym_BSLASHpvolcite] = ACTIONS(4917), + [anon_sym_BSLASHPvolcite] = ACTIONS(4917), + [anon_sym_BSLASHfvolcite] = ACTIONS(4917), + [anon_sym_BSLASHftvolcite] = ACTIONS(4917), + [anon_sym_BSLASHsvolcite] = ACTIONS(4917), + [anon_sym_BSLASHSvolcite] = ACTIONS(4917), + [anon_sym_BSLASHtvolcite] = ACTIONS(4917), + [anon_sym_BSLASHTvolcite] = ACTIONS(4917), + [anon_sym_BSLASHavolcite] = ACTIONS(4917), + [anon_sym_BSLASHAvolcite] = ACTIONS(4917), + [anon_sym_BSLASHnotecite] = ACTIONS(4917), + [anon_sym_BSLASHNotecite] = ACTIONS(4917), + [anon_sym_BSLASHpnotecite] = ACTIONS(4917), + [anon_sym_BSLASHPnotecite] = ACTIONS(4917), + [anon_sym_BSLASHfnotecite] = ACTIONS(4917), + [anon_sym_BSLASHlabel] = ACTIONS(4917), + [anon_sym_BSLASHref] = ACTIONS(4917), + [anon_sym_BSLASHeqref] = ACTIONS(4917), + [anon_sym_BSLASHvref] = ACTIONS(4917), + [anon_sym_BSLASHVref] = ACTIONS(4917), + [anon_sym_BSLASHautoref] = ACTIONS(4917), + [anon_sym_BSLASHpageref] = ACTIONS(4917), + [anon_sym_BSLASHcref] = ACTIONS(4917), + [anon_sym_BSLASHCref] = ACTIONS(4917), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnameCref] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHlabelcref] = ACTIONS(4917), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCrefrange] = ACTIONS(4917), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnewlabel] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), + [anon_sym_BSLASHdef] = ACTIONS(4917), + [anon_sym_BSLASHlet] = ACTIONS(4917), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), + [anon_sym_BSLASHgls] = ACTIONS(4917), + [anon_sym_BSLASHGls] = ACTIONS(4917), + [anon_sym_BSLASHGLS] = ACTIONS(4917), + [anon_sym_BSLASHglspl] = ACTIONS(4917), + [anon_sym_BSLASHGlspl] = ACTIONS(4917), + [anon_sym_BSLASHGLSpl] = ACTIONS(4917), + [anon_sym_BSLASHglsdisp] = ACTIONS(4917), + [anon_sym_BSLASHglslink] = ACTIONS(4917), + [anon_sym_BSLASHglstext] = ACTIONS(4917), + [anon_sym_BSLASHGlstext] = ACTIONS(4917), + [anon_sym_BSLASHGLStext] = ACTIONS(4917), + [anon_sym_BSLASHglsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), + [anon_sym_BSLASHglsplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSplural] = ACTIONS(4917), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHglsname] = ACTIONS(4917), + [anon_sym_BSLASHGlsname] = ACTIONS(4917), + [anon_sym_BSLASHGLSname] = ACTIONS(4917), + [anon_sym_BSLASHglssymbol] = ACTIONS(4917), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), + [anon_sym_BSLASHglsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), + [anon_sym_BSLASHglsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), + [anon_sym_BSLASHglsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), + [anon_sym_BSLASHglsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), + [anon_sym_BSLASHglsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), + [anon_sym_BSLASHnewacronym] = ACTIONS(4917), + [anon_sym_BSLASHacrshort] = ACTIONS(4917), + [anon_sym_BSLASHAcrshort] = ACTIONS(4917), + [anon_sym_BSLASHACRshort] = ACTIONS(4917), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), + [anon_sym_BSLASHacrlong] = ACTIONS(4917), + [anon_sym_BSLASHAcrlong] = ACTIONS(4917), + [anon_sym_BSLASHACRlong] = ACTIONS(4917), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), + [anon_sym_BSLASHacrfull] = ACTIONS(4917), + [anon_sym_BSLASHAcrfull] = ACTIONS(4917), + [anon_sym_BSLASHACRfull] = ACTIONS(4917), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), + [anon_sym_BSLASHacs] = ACTIONS(4917), + [anon_sym_BSLASHAcs] = ACTIONS(4917), + [anon_sym_BSLASHacsp] = ACTIONS(4917), + [anon_sym_BSLASHAcsp] = ACTIONS(4917), + [anon_sym_BSLASHacl] = ACTIONS(4917), + [anon_sym_BSLASHAcl] = ACTIONS(4917), + [anon_sym_BSLASHaclp] = ACTIONS(4917), + [anon_sym_BSLASHAclp] = ACTIONS(4917), + [anon_sym_BSLASHacf] = ACTIONS(4917), + [anon_sym_BSLASHAcf] = ACTIONS(4917), + [anon_sym_BSLASHacfp] = ACTIONS(4917), + [anon_sym_BSLASHAcfp] = ACTIONS(4917), + [anon_sym_BSLASHac] = ACTIONS(4917), + [anon_sym_BSLASHAc] = ACTIONS(4917), + [anon_sym_BSLASHacp] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), + [anon_sym_BSLASHcolor] = ACTIONS(4917), + [anon_sym_BSLASHcolorbox] = ACTIONS(4917), + [anon_sym_BSLASHtextcolor] = ACTIONS(4917), + [anon_sym_BSLASHpagecolor] = ACTIONS(4917), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), + [anon_sym_BSLASHtext] = ACTIONS(4917), + [anon_sym_BSLASHintertext] = ACTIONS(4917), + [anon_sym_shortintertext] = ACTIONS(4917), }, - [1248] = { - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_BSLASHpart] = ACTIONS(5011), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddpart] = ACTIONS(5011), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5009), - [anon_sym_BSLASHchapter] = ACTIONS(5011), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddchap] = ACTIONS(5011), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsection] = ACTIONS(5011), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHaddsec] = ACTIONS(5011), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5011), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5009), - [anon_sym_BSLASHparagraph] = ACTIONS(5011), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5011), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5009), - [anon_sym_BSLASHitem] = ACTIONS(5011), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5009), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5009), - [anon_sym_BSLASHbegin] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), + [1124] = { + [sym_command_name] = ACTIONS(4913), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4913), + [anon_sym_LPAREN] = ACTIONS(4911), + [anon_sym_RPAREN] = ACTIONS(4911), + [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_RBRACK] = ACTIONS(4911), + [anon_sym_COMMA] = ACTIONS(4911), + [anon_sym_EQ] = ACTIONS(4911), + [anon_sym_BSLASHpart] = ACTIONS(4913), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddpart] = ACTIONS(4913), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4911), + [anon_sym_BSLASHchapter] = ACTIONS(4913), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddchap] = ACTIONS(4913), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsection] = ACTIONS(4913), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddsec] = ACTIONS(4913), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubsection] = ACTIONS(4913), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4913), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHparagraph] = ACTIONS(4913), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4913), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4911), + [anon_sym_BSLASHitem] = ACTIONS(4913), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4911), + [sym_word] = ACTIONS(4913), + [sym_placeholder] = ACTIONS(4911), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4913), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_CARET] = ACTIONS(4913), + [anon_sym__] = ACTIONS(4913), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_BANG] = ACTIONS(4913), + [anon_sym_PIPE] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4913), + [anon_sym_SQUOTE] = ACTIONS(4913), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), + [anon_sym_DOLLAR] = ACTIONS(4913), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), + [anon_sym_BSLASHbegin] = ACTIONS(4913), + [anon_sym_BSLASHend] = ACTIONS(4913), + [anon_sym_BSLASHusepackage] = ACTIONS(4913), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), + [anon_sym_BSLASHinclude] = ACTIONS(4913), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), + [anon_sym_BSLASHinput] = ACTIONS(4913), + [anon_sym_BSLASHsubfile] = ACTIONS(4913), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), + [anon_sym_BSLASHbibliography] = ACTIONS(4913), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), + [anon_sym_BSLASHincludesvg] = ACTIONS(4913), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), + [anon_sym_BSLASHimport] = ACTIONS(4913), + [anon_sym_BSLASHsubimport] = ACTIONS(4913), + [anon_sym_BSLASHinputfrom] = ACTIONS(4913), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), + [anon_sym_BSLASHincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHcaption] = ACTIONS(4913), + [anon_sym_BSLASHcite] = ACTIONS(4913), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCite] = ACTIONS(4913), + [anon_sym_BSLASHnocite] = ACTIONS(4913), + [anon_sym_BSLASHcitet] = ACTIONS(4913), + [anon_sym_BSLASHcitep] = ACTIONS(4913), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteauthor] = ACTIONS(4913), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitetitle] = ACTIONS(4913), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteyear] = ACTIONS(4913), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitedate] = ACTIONS(4913), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteurl] = ACTIONS(4913), + [anon_sym_BSLASHfullcite] = ACTIONS(4913), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), + [anon_sym_BSLASHcitealt] = ACTIONS(4913), + [anon_sym_BSLASHcitealp] = ACTIONS(4913), + [anon_sym_BSLASHcitetext] = ACTIONS(4913), + [anon_sym_BSLASHparencite] = ACTIONS(4913), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHParencite] = ACTIONS(4913), + [anon_sym_BSLASHfootcite] = ACTIONS(4913), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), + [anon_sym_BSLASHtextcite] = ACTIONS(4913), + [anon_sym_BSLASHTextcite] = ACTIONS(4913), + [anon_sym_BSLASHsmartcite] = ACTIONS(4913), + [anon_sym_BSLASHSmartcite] = ACTIONS(4913), + [anon_sym_BSLASHsupercite] = ACTIONS(4913), + [anon_sym_BSLASHautocite] = ACTIONS(4913), + [anon_sym_BSLASHAutocite] = ACTIONS(4913), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHvolcite] = ACTIONS(4913), + [anon_sym_BSLASHVolcite] = ACTIONS(4913), + [anon_sym_BSLASHpvolcite] = ACTIONS(4913), + [anon_sym_BSLASHPvolcite] = ACTIONS(4913), + [anon_sym_BSLASHfvolcite] = ACTIONS(4913), + [anon_sym_BSLASHftvolcite] = ACTIONS(4913), + [anon_sym_BSLASHsvolcite] = ACTIONS(4913), + [anon_sym_BSLASHSvolcite] = ACTIONS(4913), + [anon_sym_BSLASHtvolcite] = ACTIONS(4913), + [anon_sym_BSLASHTvolcite] = ACTIONS(4913), + [anon_sym_BSLASHavolcite] = ACTIONS(4913), + [anon_sym_BSLASHAvolcite] = ACTIONS(4913), + [anon_sym_BSLASHnotecite] = ACTIONS(4913), + [anon_sym_BSLASHNotecite] = ACTIONS(4913), + [anon_sym_BSLASHpnotecite] = ACTIONS(4913), + [anon_sym_BSLASHPnotecite] = ACTIONS(4913), + [anon_sym_BSLASHfnotecite] = ACTIONS(4913), + [anon_sym_BSLASHlabel] = ACTIONS(4913), + [anon_sym_BSLASHref] = ACTIONS(4913), + [anon_sym_BSLASHeqref] = ACTIONS(4913), + [anon_sym_BSLASHvref] = ACTIONS(4913), + [anon_sym_BSLASHVref] = ACTIONS(4913), + [anon_sym_BSLASHautoref] = ACTIONS(4913), + [anon_sym_BSLASHpageref] = ACTIONS(4913), + [anon_sym_BSLASHcref] = ACTIONS(4913), + [anon_sym_BSLASHCref] = ACTIONS(4913), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnameCref] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHlabelcref] = ACTIONS(4913), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCrefrange] = ACTIONS(4913), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnewlabel] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), + [anon_sym_BSLASHdef] = ACTIONS(4913), + [anon_sym_BSLASHlet] = ACTIONS(4913), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), + [anon_sym_BSLASHgls] = ACTIONS(4913), + [anon_sym_BSLASHGls] = ACTIONS(4913), + [anon_sym_BSLASHGLS] = ACTIONS(4913), + [anon_sym_BSLASHglspl] = ACTIONS(4913), + [anon_sym_BSLASHGlspl] = ACTIONS(4913), + [anon_sym_BSLASHGLSpl] = ACTIONS(4913), + [anon_sym_BSLASHglsdisp] = ACTIONS(4913), + [anon_sym_BSLASHglslink] = ACTIONS(4913), + [anon_sym_BSLASHglstext] = ACTIONS(4913), + [anon_sym_BSLASHGlstext] = ACTIONS(4913), + [anon_sym_BSLASHGLStext] = ACTIONS(4913), + [anon_sym_BSLASHglsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), + [anon_sym_BSLASHglsplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSplural] = ACTIONS(4913), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHglsname] = ACTIONS(4913), + [anon_sym_BSLASHGlsname] = ACTIONS(4913), + [anon_sym_BSLASHGLSname] = ACTIONS(4913), + [anon_sym_BSLASHglssymbol] = ACTIONS(4913), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), + [anon_sym_BSLASHglsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), + [anon_sym_BSLASHglsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), + [anon_sym_BSLASHglsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), + [anon_sym_BSLASHglsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), + [anon_sym_BSLASHglsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), + [anon_sym_BSLASHnewacronym] = ACTIONS(4913), + [anon_sym_BSLASHacrshort] = ACTIONS(4913), + [anon_sym_BSLASHAcrshort] = ACTIONS(4913), + [anon_sym_BSLASHACRshort] = ACTIONS(4913), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), + [anon_sym_BSLASHacrlong] = ACTIONS(4913), + [anon_sym_BSLASHAcrlong] = ACTIONS(4913), + [anon_sym_BSLASHACRlong] = ACTIONS(4913), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), + [anon_sym_BSLASHacrfull] = ACTIONS(4913), + [anon_sym_BSLASHAcrfull] = ACTIONS(4913), + [anon_sym_BSLASHACRfull] = ACTIONS(4913), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), + [anon_sym_BSLASHacs] = ACTIONS(4913), + [anon_sym_BSLASHAcs] = ACTIONS(4913), + [anon_sym_BSLASHacsp] = ACTIONS(4913), + [anon_sym_BSLASHAcsp] = ACTIONS(4913), + [anon_sym_BSLASHacl] = ACTIONS(4913), + [anon_sym_BSLASHAcl] = ACTIONS(4913), + [anon_sym_BSLASHaclp] = ACTIONS(4913), + [anon_sym_BSLASHAclp] = ACTIONS(4913), + [anon_sym_BSLASHacf] = ACTIONS(4913), + [anon_sym_BSLASHAcf] = ACTIONS(4913), + [anon_sym_BSLASHacfp] = ACTIONS(4913), + [anon_sym_BSLASHAcfp] = ACTIONS(4913), + [anon_sym_BSLASHac] = ACTIONS(4913), + [anon_sym_BSLASHAc] = ACTIONS(4913), + [anon_sym_BSLASHacp] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), + [anon_sym_BSLASHcolor] = ACTIONS(4913), + [anon_sym_BSLASHcolorbox] = ACTIONS(4913), + [anon_sym_BSLASHtextcolor] = ACTIONS(4913), + [anon_sym_BSLASHpagecolor] = ACTIONS(4913), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), + [anon_sym_BSLASHtext] = ACTIONS(4913), + [anon_sym_BSLASHintertext] = ACTIONS(4913), + [anon_sym_shortintertext] = ACTIONS(4913), + }, + [1125] = { + [sym_command_name] = ACTIONS(4909), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4909), + [anon_sym_LPAREN] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4907), + [anon_sym_LBRACK] = ACTIONS(4907), + [anon_sym_RBRACK] = ACTIONS(4907), + [anon_sym_COMMA] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_BSLASHpart] = ACTIONS(4909), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddpart] = ACTIONS(4909), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4907), + [anon_sym_BSLASHchapter] = ACTIONS(4909), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddchap] = ACTIONS(4909), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsection] = ACTIONS(4909), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddsec] = ACTIONS(4909), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubsection] = ACTIONS(4909), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4909), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHparagraph] = ACTIONS(4909), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4909), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4907), + [anon_sym_BSLASHitem] = ACTIONS(4909), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4907), + [anon_sym_LBRACE] = ACTIONS(4907), + [sym_word] = ACTIONS(4909), + [sym_placeholder] = ACTIONS(4907), + [anon_sym_PLUS] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_STAR] = ACTIONS(4909), + [anon_sym_SLASH] = ACTIONS(4909), + [anon_sym_CARET] = ACTIONS(4909), + [anon_sym__] = ACTIONS(4909), + [anon_sym_LT] = ACTIONS(4909), + [anon_sym_GT] = ACTIONS(4909), + [anon_sym_BANG] = ACTIONS(4909), + [anon_sym_PIPE] = ACTIONS(4909), + [anon_sym_COLON] = ACTIONS(4909), + [anon_sym_SQUOTE] = ACTIONS(4909), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), + [anon_sym_DOLLAR] = ACTIONS(4909), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), + [anon_sym_BSLASHbegin] = ACTIONS(4909), + [anon_sym_BSLASHend] = ACTIONS(4909), + [anon_sym_BSLASHusepackage] = ACTIONS(4909), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), + [anon_sym_BSLASHinclude] = ACTIONS(4909), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), + [anon_sym_BSLASHinput] = ACTIONS(4909), + [anon_sym_BSLASHsubfile] = ACTIONS(4909), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), + [anon_sym_BSLASHbibliography] = ACTIONS(4909), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), + [anon_sym_BSLASHincludesvg] = ACTIONS(4909), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), + [anon_sym_BSLASHimport] = ACTIONS(4909), + [anon_sym_BSLASHsubimport] = ACTIONS(4909), + [anon_sym_BSLASHinputfrom] = ACTIONS(4909), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), + [anon_sym_BSLASHincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHcaption] = ACTIONS(4909), + [anon_sym_BSLASHcite] = ACTIONS(4909), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCite] = ACTIONS(4909), + [anon_sym_BSLASHnocite] = ACTIONS(4909), + [anon_sym_BSLASHcitet] = ACTIONS(4909), + [anon_sym_BSLASHcitep] = ACTIONS(4909), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteauthor] = ACTIONS(4909), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitetitle] = ACTIONS(4909), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteyear] = ACTIONS(4909), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitedate] = ACTIONS(4909), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteurl] = ACTIONS(4909), + [anon_sym_BSLASHfullcite] = ACTIONS(4909), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), + [anon_sym_BSLASHcitealt] = ACTIONS(4909), + [anon_sym_BSLASHcitealp] = ACTIONS(4909), + [anon_sym_BSLASHcitetext] = ACTIONS(4909), + [anon_sym_BSLASHparencite] = ACTIONS(4909), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHParencite] = ACTIONS(4909), + [anon_sym_BSLASHfootcite] = ACTIONS(4909), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), + [anon_sym_BSLASHtextcite] = ACTIONS(4909), + [anon_sym_BSLASHTextcite] = ACTIONS(4909), + [anon_sym_BSLASHsmartcite] = ACTIONS(4909), + [anon_sym_BSLASHSmartcite] = ACTIONS(4909), + [anon_sym_BSLASHsupercite] = ACTIONS(4909), + [anon_sym_BSLASHautocite] = ACTIONS(4909), + [anon_sym_BSLASHAutocite] = ACTIONS(4909), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHvolcite] = ACTIONS(4909), + [anon_sym_BSLASHVolcite] = ACTIONS(4909), + [anon_sym_BSLASHpvolcite] = ACTIONS(4909), + [anon_sym_BSLASHPvolcite] = ACTIONS(4909), + [anon_sym_BSLASHfvolcite] = ACTIONS(4909), + [anon_sym_BSLASHftvolcite] = ACTIONS(4909), + [anon_sym_BSLASHsvolcite] = ACTIONS(4909), + [anon_sym_BSLASHSvolcite] = ACTIONS(4909), + [anon_sym_BSLASHtvolcite] = ACTIONS(4909), + [anon_sym_BSLASHTvolcite] = ACTIONS(4909), + [anon_sym_BSLASHavolcite] = ACTIONS(4909), + [anon_sym_BSLASHAvolcite] = ACTIONS(4909), + [anon_sym_BSLASHnotecite] = ACTIONS(4909), + [anon_sym_BSLASHNotecite] = ACTIONS(4909), + [anon_sym_BSLASHpnotecite] = ACTIONS(4909), + [anon_sym_BSLASHPnotecite] = ACTIONS(4909), + [anon_sym_BSLASHfnotecite] = ACTIONS(4909), + [anon_sym_BSLASHlabel] = ACTIONS(4909), + [anon_sym_BSLASHref] = ACTIONS(4909), + [anon_sym_BSLASHeqref] = ACTIONS(4909), + [anon_sym_BSLASHvref] = ACTIONS(4909), + [anon_sym_BSLASHVref] = ACTIONS(4909), + [anon_sym_BSLASHautoref] = ACTIONS(4909), + [anon_sym_BSLASHpageref] = ACTIONS(4909), + [anon_sym_BSLASHcref] = ACTIONS(4909), + [anon_sym_BSLASHCref] = ACTIONS(4909), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnameCref] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHlabelcref] = ACTIONS(4909), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCrefrange] = ACTIONS(4909), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnewlabel] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), + [anon_sym_BSLASHdef] = ACTIONS(4909), + [anon_sym_BSLASHlet] = ACTIONS(4909), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), + [anon_sym_BSLASHgls] = ACTIONS(4909), + [anon_sym_BSLASHGls] = ACTIONS(4909), + [anon_sym_BSLASHGLS] = ACTIONS(4909), + [anon_sym_BSLASHglspl] = ACTIONS(4909), + [anon_sym_BSLASHGlspl] = ACTIONS(4909), + [anon_sym_BSLASHGLSpl] = ACTIONS(4909), + [anon_sym_BSLASHglsdisp] = ACTIONS(4909), + [anon_sym_BSLASHglslink] = ACTIONS(4909), + [anon_sym_BSLASHglstext] = ACTIONS(4909), + [anon_sym_BSLASHGlstext] = ACTIONS(4909), + [anon_sym_BSLASHGLStext] = ACTIONS(4909), + [anon_sym_BSLASHglsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), + [anon_sym_BSLASHglsplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSplural] = ACTIONS(4909), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHglsname] = ACTIONS(4909), + [anon_sym_BSLASHGlsname] = ACTIONS(4909), + [anon_sym_BSLASHGLSname] = ACTIONS(4909), + [anon_sym_BSLASHglssymbol] = ACTIONS(4909), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), + [anon_sym_BSLASHglsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), + [anon_sym_BSLASHglsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), + [anon_sym_BSLASHglsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), + [anon_sym_BSLASHglsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), + [anon_sym_BSLASHglsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), + [anon_sym_BSLASHnewacronym] = ACTIONS(4909), + [anon_sym_BSLASHacrshort] = ACTIONS(4909), + [anon_sym_BSLASHAcrshort] = ACTIONS(4909), + [anon_sym_BSLASHACRshort] = ACTIONS(4909), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), + [anon_sym_BSLASHacrlong] = ACTIONS(4909), + [anon_sym_BSLASHAcrlong] = ACTIONS(4909), + [anon_sym_BSLASHACRlong] = ACTIONS(4909), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), + [anon_sym_BSLASHacrfull] = ACTIONS(4909), + [anon_sym_BSLASHAcrfull] = ACTIONS(4909), + [anon_sym_BSLASHACRfull] = ACTIONS(4909), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), + [anon_sym_BSLASHacs] = ACTIONS(4909), + [anon_sym_BSLASHAcs] = ACTIONS(4909), + [anon_sym_BSLASHacsp] = ACTIONS(4909), + [anon_sym_BSLASHAcsp] = ACTIONS(4909), + [anon_sym_BSLASHacl] = ACTIONS(4909), + [anon_sym_BSLASHAcl] = ACTIONS(4909), + [anon_sym_BSLASHaclp] = ACTIONS(4909), + [anon_sym_BSLASHAclp] = ACTIONS(4909), + [anon_sym_BSLASHacf] = ACTIONS(4909), + [anon_sym_BSLASHAcf] = ACTIONS(4909), + [anon_sym_BSLASHacfp] = ACTIONS(4909), + [anon_sym_BSLASHAcfp] = ACTIONS(4909), + [anon_sym_BSLASHac] = ACTIONS(4909), + [anon_sym_BSLASHAc] = ACTIONS(4909), + [anon_sym_BSLASHacp] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), + [anon_sym_BSLASHcolor] = ACTIONS(4909), + [anon_sym_BSLASHcolorbox] = ACTIONS(4909), + [anon_sym_BSLASHtextcolor] = ACTIONS(4909), + [anon_sym_BSLASHpagecolor] = ACTIONS(4909), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), + [anon_sym_BSLASHtext] = ACTIONS(4909), + [anon_sym_BSLASHintertext] = ACTIONS(4909), + [anon_sym_shortintertext] = ACTIONS(4909), + }, + [1126] = { + [sym_command_name] = ACTIONS(4905), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4905), + [anon_sym_LPAREN] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_LBRACK] = ACTIONS(4903), + [anon_sym_RBRACK] = ACTIONS(4903), + [anon_sym_COMMA] = ACTIONS(4903), + [anon_sym_EQ] = ACTIONS(4903), + [anon_sym_BSLASHpart] = ACTIONS(4905), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddpart] = ACTIONS(4905), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4903), + [anon_sym_BSLASHchapter] = ACTIONS(4905), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddchap] = ACTIONS(4905), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsection] = ACTIONS(4905), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddsec] = ACTIONS(4905), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubsection] = ACTIONS(4905), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4905), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHparagraph] = ACTIONS(4905), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4905), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4903), + [anon_sym_BSLASHitem] = ACTIONS(4905), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4903), + [anon_sym_LBRACE] = ACTIONS(4903), + [sym_word] = ACTIONS(4905), + [sym_placeholder] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4905), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_CARET] = ACTIONS(4905), + [anon_sym__] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4905), + [anon_sym_COLON] = ACTIONS(4905), + [anon_sym_SQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4905), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), + [anon_sym_BSLASHbegin] = ACTIONS(4905), + [anon_sym_BSLASHend] = ACTIONS(4905), + [anon_sym_BSLASHusepackage] = ACTIONS(4905), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), + [anon_sym_BSLASHinclude] = ACTIONS(4905), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), + [anon_sym_BSLASHinput] = ACTIONS(4905), + [anon_sym_BSLASHsubfile] = ACTIONS(4905), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), + [anon_sym_BSLASHbibliography] = ACTIONS(4905), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), + [anon_sym_BSLASHincludesvg] = ACTIONS(4905), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), + [anon_sym_BSLASHimport] = ACTIONS(4905), + [anon_sym_BSLASHsubimport] = ACTIONS(4905), + [anon_sym_BSLASHinputfrom] = ACTIONS(4905), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), + [anon_sym_BSLASHincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHcaption] = ACTIONS(4905), + [anon_sym_BSLASHcite] = ACTIONS(4905), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCite] = ACTIONS(4905), + [anon_sym_BSLASHnocite] = ACTIONS(4905), + [anon_sym_BSLASHcitet] = ACTIONS(4905), + [anon_sym_BSLASHcitep] = ACTIONS(4905), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteauthor] = ACTIONS(4905), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitetitle] = ACTIONS(4905), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteyear] = ACTIONS(4905), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitedate] = ACTIONS(4905), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteurl] = ACTIONS(4905), + [anon_sym_BSLASHfullcite] = ACTIONS(4905), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), + [anon_sym_BSLASHcitealt] = ACTIONS(4905), + [anon_sym_BSLASHcitealp] = ACTIONS(4905), + [anon_sym_BSLASHcitetext] = ACTIONS(4905), + [anon_sym_BSLASHparencite] = ACTIONS(4905), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHParencite] = ACTIONS(4905), + [anon_sym_BSLASHfootcite] = ACTIONS(4905), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), + [anon_sym_BSLASHtextcite] = ACTIONS(4905), + [anon_sym_BSLASHTextcite] = ACTIONS(4905), + [anon_sym_BSLASHsmartcite] = ACTIONS(4905), + [anon_sym_BSLASHSmartcite] = ACTIONS(4905), + [anon_sym_BSLASHsupercite] = ACTIONS(4905), + [anon_sym_BSLASHautocite] = ACTIONS(4905), + [anon_sym_BSLASHAutocite] = ACTIONS(4905), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHvolcite] = ACTIONS(4905), + [anon_sym_BSLASHVolcite] = ACTIONS(4905), + [anon_sym_BSLASHpvolcite] = ACTIONS(4905), + [anon_sym_BSLASHPvolcite] = ACTIONS(4905), + [anon_sym_BSLASHfvolcite] = ACTIONS(4905), + [anon_sym_BSLASHftvolcite] = ACTIONS(4905), + [anon_sym_BSLASHsvolcite] = ACTIONS(4905), + [anon_sym_BSLASHSvolcite] = ACTIONS(4905), + [anon_sym_BSLASHtvolcite] = ACTIONS(4905), + [anon_sym_BSLASHTvolcite] = ACTIONS(4905), + [anon_sym_BSLASHavolcite] = ACTIONS(4905), + [anon_sym_BSLASHAvolcite] = ACTIONS(4905), + [anon_sym_BSLASHnotecite] = ACTIONS(4905), + [anon_sym_BSLASHNotecite] = ACTIONS(4905), + [anon_sym_BSLASHpnotecite] = ACTIONS(4905), + [anon_sym_BSLASHPnotecite] = ACTIONS(4905), + [anon_sym_BSLASHfnotecite] = ACTIONS(4905), + [anon_sym_BSLASHlabel] = ACTIONS(4905), + [anon_sym_BSLASHref] = ACTIONS(4905), + [anon_sym_BSLASHeqref] = ACTIONS(4905), + [anon_sym_BSLASHvref] = ACTIONS(4905), + [anon_sym_BSLASHVref] = ACTIONS(4905), + [anon_sym_BSLASHautoref] = ACTIONS(4905), + [anon_sym_BSLASHpageref] = ACTIONS(4905), + [anon_sym_BSLASHcref] = ACTIONS(4905), + [anon_sym_BSLASHCref] = ACTIONS(4905), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnameCref] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHlabelcref] = ACTIONS(4905), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCrefrange] = ACTIONS(4905), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnewlabel] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), + [anon_sym_BSLASHdef] = ACTIONS(4905), + [anon_sym_BSLASHlet] = ACTIONS(4905), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), + [anon_sym_BSLASHgls] = ACTIONS(4905), + [anon_sym_BSLASHGls] = ACTIONS(4905), + [anon_sym_BSLASHGLS] = ACTIONS(4905), + [anon_sym_BSLASHglspl] = ACTIONS(4905), + [anon_sym_BSLASHGlspl] = ACTIONS(4905), + [anon_sym_BSLASHGLSpl] = ACTIONS(4905), + [anon_sym_BSLASHglsdisp] = ACTIONS(4905), + [anon_sym_BSLASHglslink] = ACTIONS(4905), + [anon_sym_BSLASHglstext] = ACTIONS(4905), + [anon_sym_BSLASHGlstext] = ACTIONS(4905), + [anon_sym_BSLASHGLStext] = ACTIONS(4905), + [anon_sym_BSLASHglsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), + [anon_sym_BSLASHglsplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSplural] = ACTIONS(4905), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHglsname] = ACTIONS(4905), + [anon_sym_BSLASHGlsname] = ACTIONS(4905), + [anon_sym_BSLASHGLSname] = ACTIONS(4905), + [anon_sym_BSLASHglssymbol] = ACTIONS(4905), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), + [anon_sym_BSLASHglsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), + [anon_sym_BSLASHglsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), + [anon_sym_BSLASHglsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), + [anon_sym_BSLASHglsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), + [anon_sym_BSLASHglsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), + [anon_sym_BSLASHnewacronym] = ACTIONS(4905), + [anon_sym_BSLASHacrshort] = ACTIONS(4905), + [anon_sym_BSLASHAcrshort] = ACTIONS(4905), + [anon_sym_BSLASHACRshort] = ACTIONS(4905), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), + [anon_sym_BSLASHacrlong] = ACTIONS(4905), + [anon_sym_BSLASHAcrlong] = ACTIONS(4905), + [anon_sym_BSLASHACRlong] = ACTIONS(4905), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), + [anon_sym_BSLASHacrfull] = ACTIONS(4905), + [anon_sym_BSLASHAcrfull] = ACTIONS(4905), + [anon_sym_BSLASHACRfull] = ACTIONS(4905), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), + [anon_sym_BSLASHacs] = ACTIONS(4905), + [anon_sym_BSLASHAcs] = ACTIONS(4905), + [anon_sym_BSLASHacsp] = ACTIONS(4905), + [anon_sym_BSLASHAcsp] = ACTIONS(4905), + [anon_sym_BSLASHacl] = ACTIONS(4905), + [anon_sym_BSLASHAcl] = ACTIONS(4905), + [anon_sym_BSLASHaclp] = ACTIONS(4905), + [anon_sym_BSLASHAclp] = ACTIONS(4905), + [anon_sym_BSLASHacf] = ACTIONS(4905), + [anon_sym_BSLASHAcf] = ACTIONS(4905), + [anon_sym_BSLASHacfp] = ACTIONS(4905), + [anon_sym_BSLASHAcfp] = ACTIONS(4905), + [anon_sym_BSLASHac] = ACTIONS(4905), + [anon_sym_BSLASHAc] = ACTIONS(4905), + [anon_sym_BSLASHacp] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), + [anon_sym_BSLASHcolor] = ACTIONS(4905), + [anon_sym_BSLASHcolorbox] = ACTIONS(4905), + [anon_sym_BSLASHtextcolor] = ACTIONS(4905), + [anon_sym_BSLASHpagecolor] = ACTIONS(4905), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), + [anon_sym_BSLASHtext] = ACTIONS(4905), + [anon_sym_BSLASHintertext] = ACTIONS(4905), + [anon_sym_shortintertext] = ACTIONS(4905), + }, + [1127] = { + [sym_command_name] = ACTIONS(4901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4901), + [anon_sym_LPAREN] = ACTIONS(4899), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_RBRACK] = ACTIONS(4899), + [anon_sym_COMMA] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4899), + [anon_sym_BSLASHpart] = ACTIONS(4901), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddpart] = ACTIONS(4901), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4899), + [anon_sym_BSLASHchapter] = ACTIONS(4901), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddchap] = ACTIONS(4901), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsection] = ACTIONS(4901), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddsec] = ACTIONS(4901), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubsection] = ACTIONS(4901), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4901), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHparagraph] = ACTIONS(4901), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4901), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4899), + [anon_sym_BSLASHitem] = ACTIONS(4901), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4899), + [anon_sym_LBRACE] = ACTIONS(4899), + [sym_word] = ACTIONS(4901), + [sym_placeholder] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(4901), + [anon_sym_DASH] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4901), + [anon_sym_SLASH] = ACTIONS(4901), + [anon_sym_CARET] = ACTIONS(4901), + [anon_sym__] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_BANG] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_COLON] = ACTIONS(4901), + [anon_sym_SQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), + [anon_sym_BSLASHbegin] = ACTIONS(4901), + [anon_sym_BSLASHend] = ACTIONS(4901), + [anon_sym_BSLASHusepackage] = ACTIONS(4901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), + [anon_sym_BSLASHinclude] = ACTIONS(4901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), + [anon_sym_BSLASHinput] = ACTIONS(4901), + [anon_sym_BSLASHsubfile] = ACTIONS(4901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), + [anon_sym_BSLASHbibliography] = ACTIONS(4901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), + [anon_sym_BSLASHincludesvg] = ACTIONS(4901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), + [anon_sym_BSLASHimport] = ACTIONS(4901), + [anon_sym_BSLASHsubimport] = ACTIONS(4901), + [anon_sym_BSLASHinputfrom] = ACTIONS(4901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), + [anon_sym_BSLASHincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHcaption] = ACTIONS(4901), + [anon_sym_BSLASHcite] = ACTIONS(4901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCite] = ACTIONS(4901), + [anon_sym_BSLASHnocite] = ACTIONS(4901), + [anon_sym_BSLASHcitet] = ACTIONS(4901), + [anon_sym_BSLASHcitep] = ACTIONS(4901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteauthor] = ACTIONS(4901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitetitle] = ACTIONS(4901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteyear] = ACTIONS(4901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitedate] = ACTIONS(4901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteurl] = ACTIONS(4901), + [anon_sym_BSLASHfullcite] = ACTIONS(4901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), + [anon_sym_BSLASHcitealt] = ACTIONS(4901), + [anon_sym_BSLASHcitealp] = ACTIONS(4901), + [anon_sym_BSLASHcitetext] = ACTIONS(4901), + [anon_sym_BSLASHparencite] = ACTIONS(4901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHParencite] = ACTIONS(4901), + [anon_sym_BSLASHfootcite] = ACTIONS(4901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), + [anon_sym_BSLASHtextcite] = ACTIONS(4901), + [anon_sym_BSLASHTextcite] = ACTIONS(4901), + [anon_sym_BSLASHsmartcite] = ACTIONS(4901), + [anon_sym_BSLASHSmartcite] = ACTIONS(4901), + [anon_sym_BSLASHsupercite] = ACTIONS(4901), + [anon_sym_BSLASHautocite] = ACTIONS(4901), + [anon_sym_BSLASHAutocite] = ACTIONS(4901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHvolcite] = ACTIONS(4901), + [anon_sym_BSLASHVolcite] = ACTIONS(4901), + [anon_sym_BSLASHpvolcite] = ACTIONS(4901), + [anon_sym_BSLASHPvolcite] = ACTIONS(4901), + [anon_sym_BSLASHfvolcite] = ACTIONS(4901), + [anon_sym_BSLASHftvolcite] = ACTIONS(4901), + [anon_sym_BSLASHsvolcite] = ACTIONS(4901), + [anon_sym_BSLASHSvolcite] = ACTIONS(4901), + [anon_sym_BSLASHtvolcite] = ACTIONS(4901), + [anon_sym_BSLASHTvolcite] = ACTIONS(4901), + [anon_sym_BSLASHavolcite] = ACTIONS(4901), + [anon_sym_BSLASHAvolcite] = ACTIONS(4901), + [anon_sym_BSLASHnotecite] = ACTIONS(4901), + [anon_sym_BSLASHNotecite] = ACTIONS(4901), + [anon_sym_BSLASHpnotecite] = ACTIONS(4901), + [anon_sym_BSLASHPnotecite] = ACTIONS(4901), + [anon_sym_BSLASHfnotecite] = ACTIONS(4901), + [anon_sym_BSLASHlabel] = ACTIONS(4901), + [anon_sym_BSLASHref] = ACTIONS(4901), + [anon_sym_BSLASHeqref] = ACTIONS(4901), + [anon_sym_BSLASHvref] = ACTIONS(4901), + [anon_sym_BSLASHVref] = ACTIONS(4901), + [anon_sym_BSLASHautoref] = ACTIONS(4901), + [anon_sym_BSLASHpageref] = ACTIONS(4901), + [anon_sym_BSLASHcref] = ACTIONS(4901), + [anon_sym_BSLASHCref] = ACTIONS(4901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnameCref] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHlabelcref] = ACTIONS(4901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCrefrange] = ACTIONS(4901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnewlabel] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), + [anon_sym_BSLASHdef] = ACTIONS(4901), + [anon_sym_BSLASHlet] = ACTIONS(4901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), + [anon_sym_BSLASHgls] = ACTIONS(4901), + [anon_sym_BSLASHGls] = ACTIONS(4901), + [anon_sym_BSLASHGLS] = ACTIONS(4901), + [anon_sym_BSLASHglspl] = ACTIONS(4901), + [anon_sym_BSLASHGlspl] = ACTIONS(4901), + [anon_sym_BSLASHGLSpl] = ACTIONS(4901), + [anon_sym_BSLASHglsdisp] = ACTIONS(4901), + [anon_sym_BSLASHglslink] = ACTIONS(4901), + [anon_sym_BSLASHglstext] = ACTIONS(4901), + [anon_sym_BSLASHGlstext] = ACTIONS(4901), + [anon_sym_BSLASHGLStext] = ACTIONS(4901), + [anon_sym_BSLASHglsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), + [anon_sym_BSLASHglsplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSplural] = ACTIONS(4901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHglsname] = ACTIONS(4901), + [anon_sym_BSLASHGlsname] = ACTIONS(4901), + [anon_sym_BSLASHGLSname] = ACTIONS(4901), + [anon_sym_BSLASHglssymbol] = ACTIONS(4901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), + [anon_sym_BSLASHglsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), + [anon_sym_BSLASHglsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), + [anon_sym_BSLASHglsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), + [anon_sym_BSLASHglsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), + [anon_sym_BSLASHglsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), + [anon_sym_BSLASHnewacronym] = ACTIONS(4901), + [anon_sym_BSLASHacrshort] = ACTIONS(4901), + [anon_sym_BSLASHAcrshort] = ACTIONS(4901), + [anon_sym_BSLASHACRshort] = ACTIONS(4901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), + [anon_sym_BSLASHacrlong] = ACTIONS(4901), + [anon_sym_BSLASHAcrlong] = ACTIONS(4901), + [anon_sym_BSLASHACRlong] = ACTIONS(4901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), + [anon_sym_BSLASHacrfull] = ACTIONS(4901), + [anon_sym_BSLASHAcrfull] = ACTIONS(4901), + [anon_sym_BSLASHACRfull] = ACTIONS(4901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), + [anon_sym_BSLASHacs] = ACTIONS(4901), + [anon_sym_BSLASHAcs] = ACTIONS(4901), + [anon_sym_BSLASHacsp] = ACTIONS(4901), + [anon_sym_BSLASHAcsp] = ACTIONS(4901), + [anon_sym_BSLASHacl] = ACTIONS(4901), + [anon_sym_BSLASHAcl] = ACTIONS(4901), + [anon_sym_BSLASHaclp] = ACTIONS(4901), + [anon_sym_BSLASHAclp] = ACTIONS(4901), + [anon_sym_BSLASHacf] = ACTIONS(4901), + [anon_sym_BSLASHAcf] = ACTIONS(4901), + [anon_sym_BSLASHacfp] = ACTIONS(4901), + [anon_sym_BSLASHAcfp] = ACTIONS(4901), + [anon_sym_BSLASHac] = ACTIONS(4901), + [anon_sym_BSLASHAc] = ACTIONS(4901), + [anon_sym_BSLASHacp] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), + [anon_sym_BSLASHcolor] = ACTIONS(4901), + [anon_sym_BSLASHcolorbox] = ACTIONS(4901), + [anon_sym_BSLASHtextcolor] = ACTIONS(4901), + [anon_sym_BSLASHpagecolor] = ACTIONS(4901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), + [anon_sym_BSLASHtext] = ACTIONS(4901), + [anon_sym_BSLASHintertext] = ACTIONS(4901), + [anon_sym_shortintertext] = ACTIONS(4901), + }, + [1128] = { + [sym_command_name] = ACTIONS(4897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4897), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_RBRACK] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_BSLASHpart] = ACTIONS(4897), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddpart] = ACTIONS(4897), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4895), + [anon_sym_BSLASHchapter] = ACTIONS(4897), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddchap] = ACTIONS(4897), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsection] = ACTIONS(4897), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddsec] = ACTIONS(4897), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubsection] = ACTIONS(4897), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4897), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHparagraph] = ACTIONS(4897), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4897), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4895), + [anon_sym_BSLASHitem] = ACTIONS(4897), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4895), + [anon_sym_LBRACE] = ACTIONS(4895), + [sym_word] = ACTIONS(4897), + [sym_placeholder] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_STAR] = ACTIONS(4897), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_CARET] = ACTIONS(4897), + [anon_sym__] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_BANG] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_COLON] = ACTIONS(4897), + [anon_sym_SQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(4897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), + [anon_sym_BSLASHbegin] = ACTIONS(4897), + [anon_sym_BSLASHend] = ACTIONS(4897), + [anon_sym_BSLASHusepackage] = ACTIONS(4897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), + [anon_sym_BSLASHinclude] = ACTIONS(4897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), + [anon_sym_BSLASHinput] = ACTIONS(4897), + [anon_sym_BSLASHsubfile] = ACTIONS(4897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), + [anon_sym_BSLASHbibliography] = ACTIONS(4897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), + [anon_sym_BSLASHincludesvg] = ACTIONS(4897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), + [anon_sym_BSLASHimport] = ACTIONS(4897), + [anon_sym_BSLASHsubimport] = ACTIONS(4897), + [anon_sym_BSLASHinputfrom] = ACTIONS(4897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), + [anon_sym_BSLASHincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHcaption] = ACTIONS(4897), + [anon_sym_BSLASHcite] = ACTIONS(4897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCite] = ACTIONS(4897), + [anon_sym_BSLASHnocite] = ACTIONS(4897), + [anon_sym_BSLASHcitet] = ACTIONS(4897), + [anon_sym_BSLASHcitep] = ACTIONS(4897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteauthor] = ACTIONS(4897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitetitle] = ACTIONS(4897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteyear] = ACTIONS(4897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitedate] = ACTIONS(4897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteurl] = ACTIONS(4897), + [anon_sym_BSLASHfullcite] = ACTIONS(4897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), + [anon_sym_BSLASHcitealt] = ACTIONS(4897), + [anon_sym_BSLASHcitealp] = ACTIONS(4897), + [anon_sym_BSLASHcitetext] = ACTIONS(4897), + [anon_sym_BSLASHparencite] = ACTIONS(4897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHParencite] = ACTIONS(4897), + [anon_sym_BSLASHfootcite] = ACTIONS(4897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), + [anon_sym_BSLASHtextcite] = ACTIONS(4897), + [anon_sym_BSLASHTextcite] = ACTIONS(4897), + [anon_sym_BSLASHsmartcite] = ACTIONS(4897), + [anon_sym_BSLASHSmartcite] = ACTIONS(4897), + [anon_sym_BSLASHsupercite] = ACTIONS(4897), + [anon_sym_BSLASHautocite] = ACTIONS(4897), + [anon_sym_BSLASHAutocite] = ACTIONS(4897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHvolcite] = ACTIONS(4897), + [anon_sym_BSLASHVolcite] = ACTIONS(4897), + [anon_sym_BSLASHpvolcite] = ACTIONS(4897), + [anon_sym_BSLASHPvolcite] = ACTIONS(4897), + [anon_sym_BSLASHfvolcite] = ACTIONS(4897), + [anon_sym_BSLASHftvolcite] = ACTIONS(4897), + [anon_sym_BSLASHsvolcite] = ACTIONS(4897), + [anon_sym_BSLASHSvolcite] = ACTIONS(4897), + [anon_sym_BSLASHtvolcite] = ACTIONS(4897), + [anon_sym_BSLASHTvolcite] = ACTIONS(4897), + [anon_sym_BSLASHavolcite] = ACTIONS(4897), + [anon_sym_BSLASHAvolcite] = ACTIONS(4897), + [anon_sym_BSLASHnotecite] = ACTIONS(4897), + [anon_sym_BSLASHNotecite] = ACTIONS(4897), + [anon_sym_BSLASHpnotecite] = ACTIONS(4897), + [anon_sym_BSLASHPnotecite] = ACTIONS(4897), + [anon_sym_BSLASHfnotecite] = ACTIONS(4897), + [anon_sym_BSLASHlabel] = ACTIONS(4897), + [anon_sym_BSLASHref] = ACTIONS(4897), + [anon_sym_BSLASHeqref] = ACTIONS(4897), + [anon_sym_BSLASHvref] = ACTIONS(4897), + [anon_sym_BSLASHVref] = ACTIONS(4897), + [anon_sym_BSLASHautoref] = ACTIONS(4897), + [anon_sym_BSLASHpageref] = ACTIONS(4897), + [anon_sym_BSLASHcref] = ACTIONS(4897), + [anon_sym_BSLASHCref] = ACTIONS(4897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnameCref] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHlabelcref] = ACTIONS(4897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCrefrange] = ACTIONS(4897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnewlabel] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), + [anon_sym_BSLASHdef] = ACTIONS(4897), + [anon_sym_BSLASHlet] = ACTIONS(4897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), + [anon_sym_BSLASHgls] = ACTIONS(4897), + [anon_sym_BSLASHGls] = ACTIONS(4897), + [anon_sym_BSLASHGLS] = ACTIONS(4897), + [anon_sym_BSLASHglspl] = ACTIONS(4897), + [anon_sym_BSLASHGlspl] = ACTIONS(4897), + [anon_sym_BSLASHGLSpl] = ACTIONS(4897), + [anon_sym_BSLASHglsdisp] = ACTIONS(4897), + [anon_sym_BSLASHglslink] = ACTIONS(4897), + [anon_sym_BSLASHglstext] = ACTIONS(4897), + [anon_sym_BSLASHGlstext] = ACTIONS(4897), + [anon_sym_BSLASHGLStext] = ACTIONS(4897), + [anon_sym_BSLASHglsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), + [anon_sym_BSLASHglsplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSplural] = ACTIONS(4897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHglsname] = ACTIONS(4897), + [anon_sym_BSLASHGlsname] = ACTIONS(4897), + [anon_sym_BSLASHGLSname] = ACTIONS(4897), + [anon_sym_BSLASHglssymbol] = ACTIONS(4897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), + [anon_sym_BSLASHglsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), + [anon_sym_BSLASHglsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), + [anon_sym_BSLASHglsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), + [anon_sym_BSLASHglsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), + [anon_sym_BSLASHglsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), + [anon_sym_BSLASHnewacronym] = ACTIONS(4897), + [anon_sym_BSLASHacrshort] = ACTIONS(4897), + [anon_sym_BSLASHAcrshort] = ACTIONS(4897), + [anon_sym_BSLASHACRshort] = ACTIONS(4897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), + [anon_sym_BSLASHacrlong] = ACTIONS(4897), + [anon_sym_BSLASHAcrlong] = ACTIONS(4897), + [anon_sym_BSLASHACRlong] = ACTIONS(4897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), + [anon_sym_BSLASHacrfull] = ACTIONS(4897), + [anon_sym_BSLASHAcrfull] = ACTIONS(4897), + [anon_sym_BSLASHACRfull] = ACTIONS(4897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), + [anon_sym_BSLASHacs] = ACTIONS(4897), + [anon_sym_BSLASHAcs] = ACTIONS(4897), + [anon_sym_BSLASHacsp] = ACTIONS(4897), + [anon_sym_BSLASHAcsp] = ACTIONS(4897), + [anon_sym_BSLASHacl] = ACTIONS(4897), + [anon_sym_BSLASHAcl] = ACTIONS(4897), + [anon_sym_BSLASHaclp] = ACTIONS(4897), + [anon_sym_BSLASHAclp] = ACTIONS(4897), + [anon_sym_BSLASHacf] = ACTIONS(4897), + [anon_sym_BSLASHAcf] = ACTIONS(4897), + [anon_sym_BSLASHacfp] = ACTIONS(4897), + [anon_sym_BSLASHAcfp] = ACTIONS(4897), + [anon_sym_BSLASHac] = ACTIONS(4897), + [anon_sym_BSLASHAc] = ACTIONS(4897), + [anon_sym_BSLASHacp] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), + [anon_sym_BSLASHcolor] = ACTIONS(4897), + [anon_sym_BSLASHcolorbox] = ACTIONS(4897), + [anon_sym_BSLASHtextcolor] = ACTIONS(4897), + [anon_sym_BSLASHpagecolor] = ACTIONS(4897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), + [anon_sym_BSLASHtext] = ACTIONS(4897), + [anon_sym_BSLASHintertext] = ACTIONS(4897), + [anon_sym_shortintertext] = ACTIONS(4897), + }, + [1129] = { + [sym_command_name] = ACTIONS(5221), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5219), + [anon_sym_RPAREN] = ACTIONS(5219), + [anon_sym_LBRACK] = ACTIONS(5219), + [anon_sym_RBRACK] = ACTIONS(5219), + [anon_sym_COMMA] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_BSLASHpart] = ACTIONS(5221), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddpart] = ACTIONS(5221), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), + [anon_sym_BSLASHchapter] = ACTIONS(5221), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddchap] = ACTIONS(5221), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsection] = ACTIONS(5221), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddsec] = ACTIONS(5221), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubsection] = ACTIONS(5221), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHparagraph] = ACTIONS(5221), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), + [anon_sym_BSLASHitem] = ACTIONS(5221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5219), + [sym_word] = ACTIONS(5221), + [sym_placeholder] = ACTIONS(5219), + [anon_sym_PLUS] = ACTIONS(5221), + [anon_sym_DASH] = ACTIONS(5221), + [anon_sym_STAR] = ACTIONS(5221), + [anon_sym_SLASH] = ACTIONS(5221), + [anon_sym_CARET] = ACTIONS(5221), + [anon_sym__] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5221), + [anon_sym_GT] = ACTIONS(5221), + [anon_sym_BANG] = ACTIONS(5221), + [anon_sym_PIPE] = ACTIONS(5221), + [anon_sym_COLON] = ACTIONS(5221), + [anon_sym_SQUOTE] = ACTIONS(5221), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), + [anon_sym_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), + [anon_sym_BSLASHbegin] = ACTIONS(5221), + [anon_sym_BSLASHend] = ACTIONS(5221), + [anon_sym_BSLASHusepackage] = ACTIONS(5221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), + [anon_sym_BSLASHinclude] = ACTIONS(5221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), + [anon_sym_BSLASHinput] = ACTIONS(5221), + [anon_sym_BSLASHsubfile] = ACTIONS(5221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), + [anon_sym_BSLASHbibliography] = ACTIONS(5221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), + [anon_sym_BSLASHincludesvg] = ACTIONS(5221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), + [anon_sym_BSLASHimport] = ACTIONS(5221), + [anon_sym_BSLASHsubimport] = ACTIONS(5221), + [anon_sym_BSLASHinputfrom] = ACTIONS(5221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), + [anon_sym_BSLASHincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHcaption] = ACTIONS(5221), + [anon_sym_BSLASHcite] = ACTIONS(5221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCite] = ACTIONS(5221), + [anon_sym_BSLASHnocite] = ACTIONS(5221), + [anon_sym_BSLASHcitet] = ACTIONS(5221), + [anon_sym_BSLASHcitep] = ACTIONS(5221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteyear] = ACTIONS(5221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitedate] = ACTIONS(5221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteurl] = ACTIONS(5221), + [anon_sym_BSLASHfullcite] = ACTIONS(5221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), + [anon_sym_BSLASHcitealt] = ACTIONS(5221), + [anon_sym_BSLASHcitealp] = ACTIONS(5221), + [anon_sym_BSLASHcitetext] = ACTIONS(5221), + [anon_sym_BSLASHparencite] = ACTIONS(5221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHParencite] = ACTIONS(5221), + [anon_sym_BSLASHfootcite] = ACTIONS(5221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), + [anon_sym_BSLASHtextcite] = ACTIONS(5221), + [anon_sym_BSLASHTextcite] = ACTIONS(5221), + [anon_sym_BSLASHsmartcite] = ACTIONS(5221), + [anon_sym_BSLASHSmartcite] = ACTIONS(5221), + [anon_sym_BSLASHsupercite] = ACTIONS(5221), + [anon_sym_BSLASHautocite] = ACTIONS(5221), + [anon_sym_BSLASHAutocite] = ACTIONS(5221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHvolcite] = ACTIONS(5221), + [anon_sym_BSLASHVolcite] = ACTIONS(5221), + [anon_sym_BSLASHpvolcite] = ACTIONS(5221), + [anon_sym_BSLASHPvolcite] = ACTIONS(5221), + [anon_sym_BSLASHfvolcite] = ACTIONS(5221), + [anon_sym_BSLASHftvolcite] = ACTIONS(5221), + [anon_sym_BSLASHsvolcite] = ACTIONS(5221), + [anon_sym_BSLASHSvolcite] = ACTIONS(5221), + [anon_sym_BSLASHtvolcite] = ACTIONS(5221), + [anon_sym_BSLASHTvolcite] = ACTIONS(5221), + [anon_sym_BSLASHavolcite] = ACTIONS(5221), + [anon_sym_BSLASHAvolcite] = ACTIONS(5221), + [anon_sym_BSLASHnotecite] = ACTIONS(5221), + [anon_sym_BSLASHNotecite] = ACTIONS(5221), + [anon_sym_BSLASHpnotecite] = ACTIONS(5221), + [anon_sym_BSLASHPnotecite] = ACTIONS(5221), + [anon_sym_BSLASHfnotecite] = ACTIONS(5221), + [anon_sym_BSLASHlabel] = ACTIONS(5221), + [anon_sym_BSLASHref] = ACTIONS(5221), + [anon_sym_BSLASHeqref] = ACTIONS(5221), + [anon_sym_BSLASHvref] = ACTIONS(5221), + [anon_sym_BSLASHVref] = ACTIONS(5221), + [anon_sym_BSLASHautoref] = ACTIONS(5221), + [anon_sym_BSLASHpageref] = ACTIONS(5221), + [anon_sym_BSLASHcref] = ACTIONS(5221), + [anon_sym_BSLASHCref] = ACTIONS(5221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnameCref] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHlabelcref] = ACTIONS(5221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnewlabel] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), + [anon_sym_BSLASHdef] = ACTIONS(5221), + [anon_sym_BSLASHlet] = ACTIONS(5221), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), + [anon_sym_BSLASHgls] = ACTIONS(5221), + [anon_sym_BSLASHGls] = ACTIONS(5221), + [anon_sym_BSLASHGLS] = ACTIONS(5221), + [anon_sym_BSLASHglspl] = ACTIONS(5221), + [anon_sym_BSLASHGlspl] = ACTIONS(5221), + [anon_sym_BSLASHGLSpl] = ACTIONS(5221), + [anon_sym_BSLASHglsdisp] = ACTIONS(5221), + [anon_sym_BSLASHglslink] = ACTIONS(5221), + [anon_sym_BSLASHglstext] = ACTIONS(5221), + [anon_sym_BSLASHGlstext] = ACTIONS(5221), + [anon_sym_BSLASHGLStext] = ACTIONS(5221), + [anon_sym_BSLASHglsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), + [anon_sym_BSLASHglsplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSplural] = ACTIONS(5221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHglsname] = ACTIONS(5221), + [anon_sym_BSLASHGlsname] = ACTIONS(5221), + [anon_sym_BSLASHGLSname] = ACTIONS(5221), + [anon_sym_BSLASHglssymbol] = ACTIONS(5221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), + [anon_sym_BSLASHglsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), + [anon_sym_BSLASHglsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), + [anon_sym_BSLASHglsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), + [anon_sym_BSLASHglsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), + [anon_sym_BSLASHglsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), + [anon_sym_BSLASHnewacronym] = ACTIONS(5221), + [anon_sym_BSLASHacrshort] = ACTIONS(5221), + [anon_sym_BSLASHAcrshort] = ACTIONS(5221), + [anon_sym_BSLASHACRshort] = ACTIONS(5221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), + [anon_sym_BSLASHacrlong] = ACTIONS(5221), + [anon_sym_BSLASHAcrlong] = ACTIONS(5221), + [anon_sym_BSLASHACRlong] = ACTIONS(5221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), + [anon_sym_BSLASHacrfull] = ACTIONS(5221), + [anon_sym_BSLASHAcrfull] = ACTIONS(5221), + [anon_sym_BSLASHACRfull] = ACTIONS(5221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), + [anon_sym_BSLASHacs] = ACTIONS(5221), + [anon_sym_BSLASHAcs] = ACTIONS(5221), + [anon_sym_BSLASHacsp] = ACTIONS(5221), + [anon_sym_BSLASHAcsp] = ACTIONS(5221), + [anon_sym_BSLASHacl] = ACTIONS(5221), + [anon_sym_BSLASHAcl] = ACTIONS(5221), + [anon_sym_BSLASHaclp] = ACTIONS(5221), + [anon_sym_BSLASHAclp] = ACTIONS(5221), + [anon_sym_BSLASHacf] = ACTIONS(5221), + [anon_sym_BSLASHAcf] = ACTIONS(5221), + [anon_sym_BSLASHacfp] = ACTIONS(5221), + [anon_sym_BSLASHAcfp] = ACTIONS(5221), + [anon_sym_BSLASHac] = ACTIONS(5221), + [anon_sym_BSLASHAc] = ACTIONS(5221), + [anon_sym_BSLASHacp] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), + [anon_sym_BSLASHcolor] = ACTIONS(5221), + [anon_sym_BSLASHcolorbox] = ACTIONS(5221), + [anon_sym_BSLASHtextcolor] = ACTIONS(5221), + [anon_sym_BSLASHpagecolor] = ACTIONS(5221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), + [anon_sym_BSLASHtext] = ACTIONS(5221), + [anon_sym_BSLASHintertext] = ACTIONS(5221), + [anon_sym_shortintertext] = ACTIONS(5221), }, - [1249] = { - [sym_command_name] = ACTIONS(5007), + [1130] = { + [sym_command_name] = ACTIONS(5305), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_BSLASHpart] = ACTIONS(5007), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddpart] = ACTIONS(5007), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), - [anon_sym_BSLASHchapter] = ACTIONS(5007), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddchap] = ACTIONS(5007), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsection] = ACTIONS(5007), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHaddsec] = ACTIONS(5007), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), - [anon_sym_BSLASHparagraph] = ACTIONS(5007), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), - [anon_sym_BSLASHitem] = ACTIONS(5007), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5005), - [anon_sym_BSLASHbegin] = ACTIONS(5007), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), + [anon_sym_BSLASHiffalse] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5303), + [anon_sym_RPAREN] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5303), + [anon_sym_RBRACK] = ACTIONS(5303), + [anon_sym_COMMA] = ACTIONS(5303), + [anon_sym_EQ] = ACTIONS(5303), + [anon_sym_BSLASHpart] = ACTIONS(5305), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddpart] = ACTIONS(5305), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), + [anon_sym_BSLASHchapter] = ACTIONS(5305), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddchap] = ACTIONS(5305), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsection] = ACTIONS(5305), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddsec] = ACTIONS(5305), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubsection] = ACTIONS(5305), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHparagraph] = ACTIONS(5305), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), + [anon_sym_BSLASHitem] = ACTIONS(5305), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), + [anon_sym_LBRACE] = ACTIONS(5303), + [sym_word] = ACTIONS(5305), + [sym_placeholder] = ACTIONS(5303), + [anon_sym_PLUS] = ACTIONS(5305), + [anon_sym_DASH] = ACTIONS(5305), + [anon_sym_STAR] = ACTIONS(5305), + [anon_sym_SLASH] = ACTIONS(5305), + [anon_sym_CARET] = ACTIONS(5305), + [anon_sym__] = ACTIONS(5305), + [anon_sym_LT] = ACTIONS(5305), + [anon_sym_GT] = ACTIONS(5305), + [anon_sym_BANG] = ACTIONS(5305), + [anon_sym_PIPE] = ACTIONS(5305), + [anon_sym_COLON] = ACTIONS(5305), + [anon_sym_SQUOTE] = ACTIONS(5305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), + [anon_sym_DOLLAR] = ACTIONS(5305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), + [anon_sym_BSLASHbegin] = ACTIONS(5305), + [anon_sym_BSLASHend] = ACTIONS(5305), + [anon_sym_BSLASHusepackage] = ACTIONS(5305), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), + [anon_sym_BSLASHinclude] = ACTIONS(5305), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), + [anon_sym_BSLASHinput] = ACTIONS(5305), + [anon_sym_BSLASHsubfile] = ACTIONS(5305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), + [anon_sym_BSLASHbibliography] = ACTIONS(5305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), + [anon_sym_BSLASHincludesvg] = ACTIONS(5305), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), + [anon_sym_BSLASHimport] = ACTIONS(5305), + [anon_sym_BSLASHsubimport] = ACTIONS(5305), + [anon_sym_BSLASHinputfrom] = ACTIONS(5305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), + [anon_sym_BSLASHincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHcaption] = ACTIONS(5305), + [anon_sym_BSLASHcite] = ACTIONS(5305), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCite] = ACTIONS(5305), + [anon_sym_BSLASHnocite] = ACTIONS(5305), + [anon_sym_BSLASHcitet] = ACTIONS(5305), + [anon_sym_BSLASHcitep] = ACTIONS(5305), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor] = ACTIONS(5305), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle] = ACTIONS(5305), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteyear] = ACTIONS(5305), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitedate] = ACTIONS(5305), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteurl] = ACTIONS(5305), + [anon_sym_BSLASHfullcite] = ACTIONS(5305), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), + [anon_sym_BSLASHcitealt] = ACTIONS(5305), + [anon_sym_BSLASHcitealp] = ACTIONS(5305), + [anon_sym_BSLASHcitetext] = ACTIONS(5305), + [anon_sym_BSLASHparencite] = ACTIONS(5305), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHParencite] = ACTIONS(5305), + [anon_sym_BSLASHfootcite] = ACTIONS(5305), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), + [anon_sym_BSLASHtextcite] = ACTIONS(5305), + [anon_sym_BSLASHTextcite] = ACTIONS(5305), + [anon_sym_BSLASHsmartcite] = ACTIONS(5305), + [anon_sym_BSLASHSmartcite] = ACTIONS(5305), + [anon_sym_BSLASHsupercite] = ACTIONS(5305), + [anon_sym_BSLASHautocite] = ACTIONS(5305), + [anon_sym_BSLASHAutocite] = ACTIONS(5305), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHvolcite] = ACTIONS(5305), + [anon_sym_BSLASHVolcite] = ACTIONS(5305), + [anon_sym_BSLASHpvolcite] = ACTIONS(5305), + [anon_sym_BSLASHPvolcite] = ACTIONS(5305), + [anon_sym_BSLASHfvolcite] = ACTIONS(5305), + [anon_sym_BSLASHftvolcite] = ACTIONS(5305), + [anon_sym_BSLASHsvolcite] = ACTIONS(5305), + [anon_sym_BSLASHSvolcite] = ACTIONS(5305), + [anon_sym_BSLASHtvolcite] = ACTIONS(5305), + [anon_sym_BSLASHTvolcite] = ACTIONS(5305), + [anon_sym_BSLASHavolcite] = ACTIONS(5305), + [anon_sym_BSLASHAvolcite] = ACTIONS(5305), + [anon_sym_BSLASHnotecite] = ACTIONS(5305), + [anon_sym_BSLASHNotecite] = ACTIONS(5305), + [anon_sym_BSLASHpnotecite] = ACTIONS(5305), + [anon_sym_BSLASHPnotecite] = ACTIONS(5305), + [anon_sym_BSLASHfnotecite] = ACTIONS(5305), + [anon_sym_BSLASHlabel] = ACTIONS(5305), + [anon_sym_BSLASHref] = ACTIONS(5305), + [anon_sym_BSLASHeqref] = ACTIONS(5305), + [anon_sym_BSLASHvref] = ACTIONS(5305), + [anon_sym_BSLASHVref] = ACTIONS(5305), + [anon_sym_BSLASHautoref] = ACTIONS(5305), + [anon_sym_BSLASHpageref] = ACTIONS(5305), + [anon_sym_BSLASHcref] = ACTIONS(5305), + [anon_sym_BSLASHCref] = ACTIONS(5305), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnameCref] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHlabelcref] = ACTIONS(5305), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange] = ACTIONS(5305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnewlabel] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), + [anon_sym_BSLASHdef] = ACTIONS(5305), + [anon_sym_BSLASHlet] = ACTIONS(5305), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), + [anon_sym_BSLASHgls] = ACTIONS(5305), + [anon_sym_BSLASHGls] = ACTIONS(5305), + [anon_sym_BSLASHGLS] = ACTIONS(5305), + [anon_sym_BSLASHglspl] = ACTIONS(5305), + [anon_sym_BSLASHGlspl] = ACTIONS(5305), + [anon_sym_BSLASHGLSpl] = ACTIONS(5305), + [anon_sym_BSLASHglsdisp] = ACTIONS(5305), + [anon_sym_BSLASHglslink] = ACTIONS(5305), + [anon_sym_BSLASHglstext] = ACTIONS(5305), + [anon_sym_BSLASHGlstext] = ACTIONS(5305), + [anon_sym_BSLASHGLStext] = ACTIONS(5305), + [anon_sym_BSLASHglsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), + [anon_sym_BSLASHglsplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSplural] = ACTIONS(5305), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHglsname] = ACTIONS(5305), + [anon_sym_BSLASHGlsname] = ACTIONS(5305), + [anon_sym_BSLASHGLSname] = ACTIONS(5305), + [anon_sym_BSLASHglssymbol] = ACTIONS(5305), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), + [anon_sym_BSLASHglsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), + [anon_sym_BSLASHglsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), + [anon_sym_BSLASHglsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), + [anon_sym_BSLASHglsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), + [anon_sym_BSLASHglsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), + [anon_sym_BSLASHnewacronym] = ACTIONS(5305), + [anon_sym_BSLASHacrshort] = ACTIONS(5305), + [anon_sym_BSLASHAcrshort] = ACTIONS(5305), + [anon_sym_BSLASHACRshort] = ACTIONS(5305), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), + [anon_sym_BSLASHacrlong] = ACTIONS(5305), + [anon_sym_BSLASHAcrlong] = ACTIONS(5305), + [anon_sym_BSLASHACRlong] = ACTIONS(5305), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), + [anon_sym_BSLASHacrfull] = ACTIONS(5305), + [anon_sym_BSLASHAcrfull] = ACTIONS(5305), + [anon_sym_BSLASHACRfull] = ACTIONS(5305), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), + [anon_sym_BSLASHacs] = ACTIONS(5305), + [anon_sym_BSLASHAcs] = ACTIONS(5305), + [anon_sym_BSLASHacsp] = ACTIONS(5305), + [anon_sym_BSLASHAcsp] = ACTIONS(5305), + [anon_sym_BSLASHacl] = ACTIONS(5305), + [anon_sym_BSLASHAcl] = ACTIONS(5305), + [anon_sym_BSLASHaclp] = ACTIONS(5305), + [anon_sym_BSLASHAclp] = ACTIONS(5305), + [anon_sym_BSLASHacf] = ACTIONS(5305), + [anon_sym_BSLASHAcf] = ACTIONS(5305), + [anon_sym_BSLASHacfp] = ACTIONS(5305), + [anon_sym_BSLASHAcfp] = ACTIONS(5305), + [anon_sym_BSLASHac] = ACTIONS(5305), + [anon_sym_BSLASHAc] = ACTIONS(5305), + [anon_sym_BSLASHacp] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), + [anon_sym_BSLASHcolor] = ACTIONS(5305), + [anon_sym_BSLASHcolorbox] = ACTIONS(5305), + [anon_sym_BSLASHtextcolor] = ACTIONS(5305), + [anon_sym_BSLASHpagecolor] = ACTIONS(5305), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), + [anon_sym_BSLASHtext] = ACTIONS(5305), + [anon_sym_BSLASHintertext] = ACTIONS(5305), + [anon_sym_shortintertext] = ACTIONS(5305), }, - [1250] = { - [sym_command_name] = ACTIONS(5003), + [1131] = { + [sym_command_name] = ACTIONS(4963), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5003), - [anon_sym_LPAREN] = ACTIONS(5001), - [anon_sym_RPAREN] = ACTIONS(5001), - [anon_sym_LBRACK] = ACTIONS(5001), - [anon_sym_RBRACK] = ACTIONS(5001), - [anon_sym_COMMA] = ACTIONS(5001), - [anon_sym_EQ] = ACTIONS(5001), - [anon_sym_BSLASHpart] = ACTIONS(5003), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddpart] = ACTIONS(5003), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), - [anon_sym_BSLASHchapter] = ACTIONS(5003), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddchap] = ACTIONS(5003), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsection] = ACTIONS(5003), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHaddsec] = ACTIONS(5003), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), - [anon_sym_BSLASHparagraph] = ACTIONS(5003), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), - [anon_sym_BSLASHitem] = ACTIONS(5003), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), - [anon_sym_LBRACE] = ACTIONS(5001), - [sym_word] = ACTIONS(5003), - [sym_placeholder] = ACTIONS(5001), - [anon_sym_PLUS] = ACTIONS(5003), - [anon_sym_DASH] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(5003), - [anon_sym_SLASH] = ACTIONS(5003), - [anon_sym_CARET] = ACTIONS(5003), - [anon_sym__] = ACTIONS(5003), - [anon_sym_LT] = ACTIONS(5003), - [anon_sym_GT] = ACTIONS(5003), - [anon_sym_BANG] = ACTIONS(5003), - [anon_sym_PIPE] = ACTIONS(5003), - [anon_sym_COLON] = ACTIONS(5003), - [anon_sym_SQUOTE] = ACTIONS(5003), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), - [anon_sym_DOLLAR] = ACTIONS(5003), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), - [anon_sym_BSLASH_RBRACE] = ACTIONS(5001), - [anon_sym_BSLASHbegin] = ACTIONS(5003), - [anon_sym_BSLASHusepackage] = ACTIONS(5003), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), - [anon_sym_BSLASHinclude] = ACTIONS(5003), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), - [anon_sym_BSLASHinput] = ACTIONS(5003), - [anon_sym_BSLASHsubfile] = ACTIONS(5003), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), - [anon_sym_BSLASHbibliography] = ACTIONS(5003), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), - [anon_sym_BSLASHincludesvg] = ACTIONS(5003), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), - [anon_sym_BSLASHimport] = ACTIONS(5003), - [anon_sym_BSLASHsubimport] = ACTIONS(5003), - [anon_sym_BSLASHinputfrom] = ACTIONS(5003), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), - [anon_sym_BSLASHincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), - [anon_sym_BSLASHcaption] = ACTIONS(5003), - [anon_sym_BSLASHcite] = ACTIONS(5003), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCite] = ACTIONS(5003), - [anon_sym_BSLASHnocite] = ACTIONS(5003), - [anon_sym_BSLASHcitet] = ACTIONS(5003), - [anon_sym_BSLASHcitep] = ACTIONS(5003), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteauthor] = ACTIONS(5003), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitetitle] = ACTIONS(5003), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteyear] = ACTIONS(5003), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), - [anon_sym_BSLASHcitedate] = ACTIONS(5003), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), - [anon_sym_BSLASHciteurl] = ACTIONS(5003), - [anon_sym_BSLASHfullcite] = ACTIONS(5003), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), - [anon_sym_BSLASHcitealt] = ACTIONS(5003), - [anon_sym_BSLASHcitealp] = ACTIONS(5003), - [anon_sym_BSLASHcitetext] = ACTIONS(5003), - [anon_sym_BSLASHparencite] = ACTIONS(5003), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHParencite] = ACTIONS(5003), - [anon_sym_BSLASHfootcite] = ACTIONS(5003), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), - [anon_sym_BSLASHtextcite] = ACTIONS(5003), - [anon_sym_BSLASHTextcite] = ACTIONS(5003), - [anon_sym_BSLASHsmartcite] = ACTIONS(5003), - [anon_sym_BSLASHSmartcite] = ACTIONS(5003), - [anon_sym_BSLASHsupercite] = ACTIONS(5003), - [anon_sym_BSLASHautocite] = ACTIONS(5003), - [anon_sym_BSLASHAutocite] = ACTIONS(5003), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), - [anon_sym_BSLASHvolcite] = ACTIONS(5003), - [anon_sym_BSLASHVolcite] = ACTIONS(5003), - [anon_sym_BSLASHpvolcite] = ACTIONS(5003), - [anon_sym_BSLASHPvolcite] = ACTIONS(5003), - [anon_sym_BSLASHfvolcite] = ACTIONS(5003), - [anon_sym_BSLASHftvolcite] = ACTIONS(5003), - [anon_sym_BSLASHsvolcite] = ACTIONS(5003), - [anon_sym_BSLASHSvolcite] = ACTIONS(5003), - [anon_sym_BSLASHtvolcite] = ACTIONS(5003), - [anon_sym_BSLASHTvolcite] = ACTIONS(5003), - [anon_sym_BSLASHavolcite] = ACTIONS(5003), - [anon_sym_BSLASHAvolcite] = ACTIONS(5003), - [anon_sym_BSLASHnotecite] = ACTIONS(5003), - [anon_sym_BSLASHNotecite] = ACTIONS(5003), - [anon_sym_BSLASHpnotecite] = ACTIONS(5003), - [anon_sym_BSLASHPnotecite] = ACTIONS(5003), - [anon_sym_BSLASHfnotecite] = ACTIONS(5003), - [anon_sym_BSLASHlabel] = ACTIONS(5003), - [anon_sym_BSLASHref] = ACTIONS(5003), - [anon_sym_BSLASHeqref] = ACTIONS(5003), - [anon_sym_BSLASHvref] = ACTIONS(5003), - [anon_sym_BSLASHVref] = ACTIONS(5003), - [anon_sym_BSLASHautoref] = ACTIONS(5003), - [anon_sym_BSLASHpageref] = ACTIONS(5003), - [anon_sym_BSLASHcref] = ACTIONS(5003), - [anon_sym_BSLASHCref] = ACTIONS(5003), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnameCref] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), - [anon_sym_BSLASHlabelcref] = ACTIONS(5003), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange] = ACTIONS(5003), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHCrefrange] = ACTIONS(5003), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), - [anon_sym_BSLASHnewlabel] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand] = ACTIONS(5003), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), - [anon_sym_BSLASHdef] = ACTIONS(5003), - [anon_sym_BSLASHlet] = ACTIONS(5003), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), - [anon_sym_BSLASHgls] = ACTIONS(5003), - [anon_sym_BSLASHGls] = ACTIONS(5003), - [anon_sym_BSLASHGLS] = ACTIONS(5003), - [anon_sym_BSLASHglspl] = ACTIONS(5003), - [anon_sym_BSLASHGlspl] = ACTIONS(5003), - [anon_sym_BSLASHGLSpl] = ACTIONS(5003), - [anon_sym_BSLASHglsdisp] = ACTIONS(5003), - [anon_sym_BSLASHglslink] = ACTIONS(5003), - [anon_sym_BSLASHglstext] = ACTIONS(5003), - [anon_sym_BSLASHGlstext] = ACTIONS(5003), - [anon_sym_BSLASHGLStext] = ACTIONS(5003), - [anon_sym_BSLASHglsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), - [anon_sym_BSLASHglsplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSplural] = ACTIONS(5003), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), - [anon_sym_BSLASHglsname] = ACTIONS(5003), - [anon_sym_BSLASHGlsname] = ACTIONS(5003), - [anon_sym_BSLASHGLSname] = ACTIONS(5003), - [anon_sym_BSLASHglssymbol] = ACTIONS(5003), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), - [anon_sym_BSLASHglsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), - [anon_sym_BSLASHglsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), - [anon_sym_BSLASHglsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), - [anon_sym_BSLASHglsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), - [anon_sym_BSLASHglsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), - [anon_sym_BSLASHnewacronym] = ACTIONS(5003), - [anon_sym_BSLASHacrshort] = ACTIONS(5003), - [anon_sym_BSLASHAcrshort] = ACTIONS(5003), - [anon_sym_BSLASHACRshort] = ACTIONS(5003), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), - [anon_sym_BSLASHacrlong] = ACTIONS(5003), - [anon_sym_BSLASHAcrlong] = ACTIONS(5003), - [anon_sym_BSLASHACRlong] = ACTIONS(5003), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), - [anon_sym_BSLASHacrfull] = ACTIONS(5003), - [anon_sym_BSLASHAcrfull] = ACTIONS(5003), - [anon_sym_BSLASHACRfull] = ACTIONS(5003), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), - [anon_sym_BSLASHacs] = ACTIONS(5003), - [anon_sym_BSLASHAcs] = ACTIONS(5003), - [anon_sym_BSLASHacsp] = ACTIONS(5003), - [anon_sym_BSLASHAcsp] = ACTIONS(5003), - [anon_sym_BSLASHacl] = ACTIONS(5003), - [anon_sym_BSLASHAcl] = ACTIONS(5003), - [anon_sym_BSLASHaclp] = ACTIONS(5003), - [anon_sym_BSLASHAclp] = ACTIONS(5003), - [anon_sym_BSLASHacf] = ACTIONS(5003), - [anon_sym_BSLASHAcf] = ACTIONS(5003), - [anon_sym_BSLASHacfp] = ACTIONS(5003), - [anon_sym_BSLASHAcfp] = ACTIONS(5003), - [anon_sym_BSLASHac] = ACTIONS(5003), - [anon_sym_BSLASHAc] = ACTIONS(5003), - [anon_sym_BSLASHacp] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), - [anon_sym_BSLASHcolor] = ACTIONS(5003), - [anon_sym_BSLASHcolorbox] = ACTIONS(5003), - [anon_sym_BSLASHtextcolor] = ACTIONS(5003), - [anon_sym_BSLASHpagecolor] = ACTIONS(5003), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), + [anon_sym_BSLASHiffalse] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_RBRACK] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_EQ] = ACTIONS(4961), + [anon_sym_BSLASHpart] = ACTIONS(4963), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddpart] = ACTIONS(4963), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4961), + [anon_sym_BSLASHchapter] = ACTIONS(4963), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddchap] = ACTIONS(4963), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsection] = ACTIONS(4963), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddsec] = ACTIONS(4963), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubsection] = ACTIONS(4963), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4963), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHparagraph] = ACTIONS(4963), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4963), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4961), + [anon_sym_BSLASHitem] = ACTIONS(4963), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4961), + [anon_sym_LBRACE] = ACTIONS(4961), + [sym_word] = ACTIONS(4963), + [sym_placeholder] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), + [anon_sym__] = ACTIONS(4963), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_COLON] = ACTIONS(4963), + [anon_sym_SQUOTE] = ACTIONS(4963), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), + [anon_sym_DOLLAR] = ACTIONS(4963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), + [anon_sym_BSLASHbegin] = ACTIONS(4963), + [anon_sym_BSLASHend] = ACTIONS(4963), + [anon_sym_BSLASHusepackage] = ACTIONS(4963), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), + [anon_sym_BSLASHinclude] = ACTIONS(4963), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), + [anon_sym_BSLASHinput] = ACTIONS(4963), + [anon_sym_BSLASHsubfile] = ACTIONS(4963), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), + [anon_sym_BSLASHbibliography] = ACTIONS(4963), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), + [anon_sym_BSLASHincludesvg] = ACTIONS(4963), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), + [anon_sym_BSLASHimport] = ACTIONS(4963), + [anon_sym_BSLASHsubimport] = ACTIONS(4963), + [anon_sym_BSLASHinputfrom] = ACTIONS(4963), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), + [anon_sym_BSLASHincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHcaption] = ACTIONS(4963), + [anon_sym_BSLASHcite] = ACTIONS(4963), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCite] = ACTIONS(4963), + [anon_sym_BSLASHnocite] = ACTIONS(4963), + [anon_sym_BSLASHcitet] = ACTIONS(4963), + [anon_sym_BSLASHcitep] = ACTIONS(4963), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteauthor] = ACTIONS(4963), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitetitle] = ACTIONS(4963), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteyear] = ACTIONS(4963), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitedate] = ACTIONS(4963), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteurl] = ACTIONS(4963), + [anon_sym_BSLASHfullcite] = ACTIONS(4963), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), + [anon_sym_BSLASHcitealt] = ACTIONS(4963), + [anon_sym_BSLASHcitealp] = ACTIONS(4963), + [anon_sym_BSLASHcitetext] = ACTIONS(4963), + [anon_sym_BSLASHparencite] = ACTIONS(4963), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHParencite] = ACTIONS(4963), + [anon_sym_BSLASHfootcite] = ACTIONS(4963), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), + [anon_sym_BSLASHtextcite] = ACTIONS(4963), + [anon_sym_BSLASHTextcite] = ACTIONS(4963), + [anon_sym_BSLASHsmartcite] = ACTIONS(4963), + [anon_sym_BSLASHSmartcite] = ACTIONS(4963), + [anon_sym_BSLASHsupercite] = ACTIONS(4963), + [anon_sym_BSLASHautocite] = ACTIONS(4963), + [anon_sym_BSLASHAutocite] = ACTIONS(4963), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHvolcite] = ACTIONS(4963), + [anon_sym_BSLASHVolcite] = ACTIONS(4963), + [anon_sym_BSLASHpvolcite] = ACTIONS(4963), + [anon_sym_BSLASHPvolcite] = ACTIONS(4963), + [anon_sym_BSLASHfvolcite] = ACTIONS(4963), + [anon_sym_BSLASHftvolcite] = ACTIONS(4963), + [anon_sym_BSLASHsvolcite] = ACTIONS(4963), + [anon_sym_BSLASHSvolcite] = ACTIONS(4963), + [anon_sym_BSLASHtvolcite] = ACTIONS(4963), + [anon_sym_BSLASHTvolcite] = ACTIONS(4963), + [anon_sym_BSLASHavolcite] = ACTIONS(4963), + [anon_sym_BSLASHAvolcite] = ACTIONS(4963), + [anon_sym_BSLASHnotecite] = ACTIONS(4963), + [anon_sym_BSLASHNotecite] = ACTIONS(4963), + [anon_sym_BSLASHpnotecite] = ACTIONS(4963), + [anon_sym_BSLASHPnotecite] = ACTIONS(4963), + [anon_sym_BSLASHfnotecite] = ACTIONS(4963), + [anon_sym_BSLASHlabel] = ACTIONS(4963), + [anon_sym_BSLASHref] = ACTIONS(4963), + [anon_sym_BSLASHeqref] = ACTIONS(4963), + [anon_sym_BSLASHvref] = ACTIONS(4963), + [anon_sym_BSLASHVref] = ACTIONS(4963), + [anon_sym_BSLASHautoref] = ACTIONS(4963), + [anon_sym_BSLASHpageref] = ACTIONS(4963), + [anon_sym_BSLASHcref] = ACTIONS(4963), + [anon_sym_BSLASHCref] = ACTIONS(4963), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnameCref] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHlabelcref] = ACTIONS(4963), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCrefrange] = ACTIONS(4963), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnewlabel] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), + [anon_sym_BSLASHdef] = ACTIONS(4963), + [anon_sym_BSLASHlet] = ACTIONS(4963), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), + [anon_sym_BSLASHgls] = ACTIONS(4963), + [anon_sym_BSLASHGls] = ACTIONS(4963), + [anon_sym_BSLASHGLS] = ACTIONS(4963), + [anon_sym_BSLASHglspl] = ACTIONS(4963), + [anon_sym_BSLASHGlspl] = ACTIONS(4963), + [anon_sym_BSLASHGLSpl] = ACTIONS(4963), + [anon_sym_BSLASHglsdisp] = ACTIONS(4963), + [anon_sym_BSLASHglslink] = ACTIONS(4963), + [anon_sym_BSLASHglstext] = ACTIONS(4963), + [anon_sym_BSLASHGlstext] = ACTIONS(4963), + [anon_sym_BSLASHGLStext] = ACTIONS(4963), + [anon_sym_BSLASHglsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), + [anon_sym_BSLASHglsplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSplural] = ACTIONS(4963), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHglsname] = ACTIONS(4963), + [anon_sym_BSLASHGlsname] = ACTIONS(4963), + [anon_sym_BSLASHGLSname] = ACTIONS(4963), + [anon_sym_BSLASHglssymbol] = ACTIONS(4963), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), + [anon_sym_BSLASHglsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), + [anon_sym_BSLASHglsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), + [anon_sym_BSLASHglsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), + [anon_sym_BSLASHglsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), + [anon_sym_BSLASHglsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), + [anon_sym_BSLASHnewacronym] = ACTIONS(4963), + [anon_sym_BSLASHacrshort] = ACTIONS(4963), + [anon_sym_BSLASHAcrshort] = ACTIONS(4963), + [anon_sym_BSLASHACRshort] = ACTIONS(4963), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), + [anon_sym_BSLASHacrlong] = ACTIONS(4963), + [anon_sym_BSLASHAcrlong] = ACTIONS(4963), + [anon_sym_BSLASHACRlong] = ACTIONS(4963), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), + [anon_sym_BSLASHacrfull] = ACTIONS(4963), + [anon_sym_BSLASHAcrfull] = ACTIONS(4963), + [anon_sym_BSLASHACRfull] = ACTIONS(4963), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), + [anon_sym_BSLASHacs] = ACTIONS(4963), + [anon_sym_BSLASHAcs] = ACTIONS(4963), + [anon_sym_BSLASHacsp] = ACTIONS(4963), + [anon_sym_BSLASHAcsp] = ACTIONS(4963), + [anon_sym_BSLASHacl] = ACTIONS(4963), + [anon_sym_BSLASHAcl] = ACTIONS(4963), + [anon_sym_BSLASHaclp] = ACTIONS(4963), + [anon_sym_BSLASHAclp] = ACTIONS(4963), + [anon_sym_BSLASHacf] = ACTIONS(4963), + [anon_sym_BSLASHAcf] = ACTIONS(4963), + [anon_sym_BSLASHacfp] = ACTIONS(4963), + [anon_sym_BSLASHAcfp] = ACTIONS(4963), + [anon_sym_BSLASHac] = ACTIONS(4963), + [anon_sym_BSLASHAc] = ACTIONS(4963), + [anon_sym_BSLASHacp] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), + [anon_sym_BSLASHcolor] = ACTIONS(4963), + [anon_sym_BSLASHcolorbox] = ACTIONS(4963), + [anon_sym_BSLASHtextcolor] = ACTIONS(4963), + [anon_sym_BSLASHpagecolor] = ACTIONS(4963), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), + [anon_sym_BSLASHtext] = ACTIONS(4963), + [anon_sym_BSLASHintertext] = ACTIONS(4963), + [anon_sym_shortintertext] = ACTIONS(4963), + }, + [1132] = { + [sym_command_name] = ACTIONS(5073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5071), + [anon_sym_RPAREN] = ACTIONS(5071), + [anon_sym_LBRACK] = ACTIONS(5071), + [anon_sym_RBRACK] = ACTIONS(5071), + [anon_sym_COMMA] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_BSLASHpart] = ACTIONS(5073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddpart] = ACTIONS(5073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), + [anon_sym_BSLASHchapter] = ACTIONS(5073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddchap] = ACTIONS(5073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsection] = ACTIONS(5073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddsec] = ACTIONS(5073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubsection] = ACTIONS(5073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHparagraph] = ACTIONS(5073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), + [anon_sym_BSLASHitem] = ACTIONS(5073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5071), + [sym_word] = ACTIONS(5073), + [sym_placeholder] = ACTIONS(5071), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_CARET] = ACTIONS(5073), + [anon_sym__] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_PIPE] = ACTIONS(5073), + [anon_sym_COLON] = ACTIONS(5073), + [anon_sym_SQUOTE] = ACTIONS(5073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), + [anon_sym_DOLLAR] = ACTIONS(5073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), + [anon_sym_BSLASHbegin] = ACTIONS(5073), + [anon_sym_BSLASHend] = ACTIONS(5073), + [anon_sym_BSLASHusepackage] = ACTIONS(5073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), + [anon_sym_BSLASHinclude] = ACTIONS(5073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), + [anon_sym_BSLASHinput] = ACTIONS(5073), + [anon_sym_BSLASHsubfile] = ACTIONS(5073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), + [anon_sym_BSLASHbibliography] = ACTIONS(5073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), + [anon_sym_BSLASHincludesvg] = ACTIONS(5073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), + [anon_sym_BSLASHimport] = ACTIONS(5073), + [anon_sym_BSLASHsubimport] = ACTIONS(5073), + [anon_sym_BSLASHinputfrom] = ACTIONS(5073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), + [anon_sym_BSLASHincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHcaption] = ACTIONS(5073), + [anon_sym_BSLASHcite] = ACTIONS(5073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCite] = ACTIONS(5073), + [anon_sym_BSLASHnocite] = ACTIONS(5073), + [anon_sym_BSLASHcitet] = ACTIONS(5073), + [anon_sym_BSLASHcitep] = ACTIONS(5073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteauthor] = ACTIONS(5073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitetitle] = ACTIONS(5073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteyear] = ACTIONS(5073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitedate] = ACTIONS(5073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteurl] = ACTIONS(5073), + [anon_sym_BSLASHfullcite] = ACTIONS(5073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), + [anon_sym_BSLASHcitealt] = ACTIONS(5073), + [anon_sym_BSLASHcitealp] = ACTIONS(5073), + [anon_sym_BSLASHcitetext] = ACTIONS(5073), + [anon_sym_BSLASHparencite] = ACTIONS(5073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHParencite] = ACTIONS(5073), + [anon_sym_BSLASHfootcite] = ACTIONS(5073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), + [anon_sym_BSLASHtextcite] = ACTIONS(5073), + [anon_sym_BSLASHTextcite] = ACTIONS(5073), + [anon_sym_BSLASHsmartcite] = ACTIONS(5073), + [anon_sym_BSLASHSmartcite] = ACTIONS(5073), + [anon_sym_BSLASHsupercite] = ACTIONS(5073), + [anon_sym_BSLASHautocite] = ACTIONS(5073), + [anon_sym_BSLASHAutocite] = ACTIONS(5073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHvolcite] = ACTIONS(5073), + [anon_sym_BSLASHVolcite] = ACTIONS(5073), + [anon_sym_BSLASHpvolcite] = ACTIONS(5073), + [anon_sym_BSLASHPvolcite] = ACTIONS(5073), + [anon_sym_BSLASHfvolcite] = ACTIONS(5073), + [anon_sym_BSLASHftvolcite] = ACTIONS(5073), + [anon_sym_BSLASHsvolcite] = ACTIONS(5073), + [anon_sym_BSLASHSvolcite] = ACTIONS(5073), + [anon_sym_BSLASHtvolcite] = ACTIONS(5073), + [anon_sym_BSLASHTvolcite] = ACTIONS(5073), + [anon_sym_BSLASHavolcite] = ACTIONS(5073), + [anon_sym_BSLASHAvolcite] = ACTIONS(5073), + [anon_sym_BSLASHnotecite] = ACTIONS(5073), + [anon_sym_BSLASHNotecite] = ACTIONS(5073), + [anon_sym_BSLASHpnotecite] = ACTIONS(5073), + [anon_sym_BSLASHPnotecite] = ACTIONS(5073), + [anon_sym_BSLASHfnotecite] = ACTIONS(5073), + [anon_sym_BSLASHlabel] = ACTIONS(5073), + [anon_sym_BSLASHref] = ACTIONS(5073), + [anon_sym_BSLASHeqref] = ACTIONS(5073), + [anon_sym_BSLASHvref] = ACTIONS(5073), + [anon_sym_BSLASHVref] = ACTIONS(5073), + [anon_sym_BSLASHautoref] = ACTIONS(5073), + [anon_sym_BSLASHpageref] = ACTIONS(5073), + [anon_sym_BSLASHcref] = ACTIONS(5073), + [anon_sym_BSLASHCref] = ACTIONS(5073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnameCref] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHlabelcref] = ACTIONS(5073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCrefrange] = ACTIONS(5073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnewlabel] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), + [anon_sym_BSLASHdef] = ACTIONS(5073), + [anon_sym_BSLASHlet] = ACTIONS(5073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), + [anon_sym_BSLASHgls] = ACTIONS(5073), + [anon_sym_BSLASHGls] = ACTIONS(5073), + [anon_sym_BSLASHGLS] = ACTIONS(5073), + [anon_sym_BSLASHglspl] = ACTIONS(5073), + [anon_sym_BSLASHGlspl] = ACTIONS(5073), + [anon_sym_BSLASHGLSpl] = ACTIONS(5073), + [anon_sym_BSLASHglsdisp] = ACTIONS(5073), + [anon_sym_BSLASHglslink] = ACTIONS(5073), + [anon_sym_BSLASHglstext] = ACTIONS(5073), + [anon_sym_BSLASHGlstext] = ACTIONS(5073), + [anon_sym_BSLASHGLStext] = ACTIONS(5073), + [anon_sym_BSLASHglsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), + [anon_sym_BSLASHglsplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSplural] = ACTIONS(5073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHglsname] = ACTIONS(5073), + [anon_sym_BSLASHGlsname] = ACTIONS(5073), + [anon_sym_BSLASHGLSname] = ACTIONS(5073), + [anon_sym_BSLASHglssymbol] = ACTIONS(5073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), + [anon_sym_BSLASHglsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), + [anon_sym_BSLASHglsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), + [anon_sym_BSLASHglsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), + [anon_sym_BSLASHglsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), + [anon_sym_BSLASHglsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), + [anon_sym_BSLASHnewacronym] = ACTIONS(5073), + [anon_sym_BSLASHacrshort] = ACTIONS(5073), + [anon_sym_BSLASHAcrshort] = ACTIONS(5073), + [anon_sym_BSLASHACRshort] = ACTIONS(5073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), + [anon_sym_BSLASHacrlong] = ACTIONS(5073), + [anon_sym_BSLASHAcrlong] = ACTIONS(5073), + [anon_sym_BSLASHACRlong] = ACTIONS(5073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), + [anon_sym_BSLASHacrfull] = ACTIONS(5073), + [anon_sym_BSLASHAcrfull] = ACTIONS(5073), + [anon_sym_BSLASHACRfull] = ACTIONS(5073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), + [anon_sym_BSLASHacs] = ACTIONS(5073), + [anon_sym_BSLASHAcs] = ACTIONS(5073), + [anon_sym_BSLASHacsp] = ACTIONS(5073), + [anon_sym_BSLASHAcsp] = ACTIONS(5073), + [anon_sym_BSLASHacl] = ACTIONS(5073), + [anon_sym_BSLASHAcl] = ACTIONS(5073), + [anon_sym_BSLASHaclp] = ACTIONS(5073), + [anon_sym_BSLASHAclp] = ACTIONS(5073), + [anon_sym_BSLASHacf] = ACTIONS(5073), + [anon_sym_BSLASHAcf] = ACTIONS(5073), + [anon_sym_BSLASHacfp] = ACTIONS(5073), + [anon_sym_BSLASHAcfp] = ACTIONS(5073), + [anon_sym_BSLASHac] = ACTIONS(5073), + [anon_sym_BSLASHAc] = ACTIONS(5073), + [anon_sym_BSLASHacp] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), + [anon_sym_BSLASHcolor] = ACTIONS(5073), + [anon_sym_BSLASHcolorbox] = ACTIONS(5073), + [anon_sym_BSLASHtextcolor] = ACTIONS(5073), + [anon_sym_BSLASHpagecolor] = ACTIONS(5073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHtext] = ACTIONS(5073), + [anon_sym_BSLASHintertext] = ACTIONS(5073), + [anon_sym_shortintertext] = ACTIONS(5073), }, - [1251] = { - [sym_command_name] = ACTIONS(5197), + [1133] = { + [sym_command_name] = ACTIONS(5065), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_BSLASHpart] = ACTIONS(5197), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddpart] = ACTIONS(5197), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), - [anon_sym_BSLASHchapter] = ACTIONS(5197), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddchap] = ACTIONS(5197), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsection] = ACTIONS(5197), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHaddsec] = ACTIONS(5197), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), - [anon_sym_BSLASHparagraph] = ACTIONS(5197), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), - [anon_sym_BSLASHitem] = ACTIONS(5197), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASHbegin] = ACTIONS(5197), - [anon_sym_BSLASHend] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + [anon_sym_BSLASHiffalse] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_RBRACK] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_BSLASHpart] = ACTIONS(5065), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddpart] = ACTIONS(5065), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), + [anon_sym_BSLASHchapter] = ACTIONS(5065), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddchap] = ACTIONS(5065), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsection] = ACTIONS(5065), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddsec] = ACTIONS(5065), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubsection] = ACTIONS(5065), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHparagraph] = ACTIONS(5065), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), + [anon_sym_BSLASHitem] = ACTIONS(5065), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5063), + [sym_word] = ACTIONS(5065), + [sym_placeholder] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_CARET] = ACTIONS(5065), + [anon_sym__] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_COLON] = ACTIONS(5065), + [anon_sym_SQUOTE] = ACTIONS(5065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), + [anon_sym_DOLLAR] = ACTIONS(5065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), + [anon_sym_BSLASHbegin] = ACTIONS(5065), + [anon_sym_BSLASHend] = ACTIONS(5065), + [anon_sym_BSLASHusepackage] = ACTIONS(5065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), + [anon_sym_BSLASHinclude] = ACTIONS(5065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), + [anon_sym_BSLASHinput] = ACTIONS(5065), + [anon_sym_BSLASHsubfile] = ACTIONS(5065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), + [anon_sym_BSLASHbibliography] = ACTIONS(5065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), + [anon_sym_BSLASHincludesvg] = ACTIONS(5065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), + [anon_sym_BSLASHimport] = ACTIONS(5065), + [anon_sym_BSLASHsubimport] = ACTIONS(5065), + [anon_sym_BSLASHinputfrom] = ACTIONS(5065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), + [anon_sym_BSLASHincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHcaption] = ACTIONS(5065), + [anon_sym_BSLASHcite] = ACTIONS(5065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCite] = ACTIONS(5065), + [anon_sym_BSLASHnocite] = ACTIONS(5065), + [anon_sym_BSLASHcitet] = ACTIONS(5065), + [anon_sym_BSLASHcitep] = ACTIONS(5065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteauthor] = ACTIONS(5065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitetitle] = ACTIONS(5065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteyear] = ACTIONS(5065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitedate] = ACTIONS(5065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteurl] = ACTIONS(5065), + [anon_sym_BSLASHfullcite] = ACTIONS(5065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), + [anon_sym_BSLASHcitealt] = ACTIONS(5065), + [anon_sym_BSLASHcitealp] = ACTIONS(5065), + [anon_sym_BSLASHcitetext] = ACTIONS(5065), + [anon_sym_BSLASHparencite] = ACTIONS(5065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHParencite] = ACTIONS(5065), + [anon_sym_BSLASHfootcite] = ACTIONS(5065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), + [anon_sym_BSLASHtextcite] = ACTIONS(5065), + [anon_sym_BSLASHTextcite] = ACTIONS(5065), + [anon_sym_BSLASHsmartcite] = ACTIONS(5065), + [anon_sym_BSLASHSmartcite] = ACTIONS(5065), + [anon_sym_BSLASHsupercite] = ACTIONS(5065), + [anon_sym_BSLASHautocite] = ACTIONS(5065), + [anon_sym_BSLASHAutocite] = ACTIONS(5065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHvolcite] = ACTIONS(5065), + [anon_sym_BSLASHVolcite] = ACTIONS(5065), + [anon_sym_BSLASHpvolcite] = ACTIONS(5065), + [anon_sym_BSLASHPvolcite] = ACTIONS(5065), + [anon_sym_BSLASHfvolcite] = ACTIONS(5065), + [anon_sym_BSLASHftvolcite] = ACTIONS(5065), + [anon_sym_BSLASHsvolcite] = ACTIONS(5065), + [anon_sym_BSLASHSvolcite] = ACTIONS(5065), + [anon_sym_BSLASHtvolcite] = ACTIONS(5065), + [anon_sym_BSLASHTvolcite] = ACTIONS(5065), + [anon_sym_BSLASHavolcite] = ACTIONS(5065), + [anon_sym_BSLASHAvolcite] = ACTIONS(5065), + [anon_sym_BSLASHnotecite] = ACTIONS(5065), + [anon_sym_BSLASHNotecite] = ACTIONS(5065), + [anon_sym_BSLASHpnotecite] = ACTIONS(5065), + [anon_sym_BSLASHPnotecite] = ACTIONS(5065), + [anon_sym_BSLASHfnotecite] = ACTIONS(5065), + [anon_sym_BSLASHlabel] = ACTIONS(5065), + [anon_sym_BSLASHref] = ACTIONS(5065), + [anon_sym_BSLASHeqref] = ACTIONS(5065), + [anon_sym_BSLASHvref] = ACTIONS(5065), + [anon_sym_BSLASHVref] = ACTIONS(5065), + [anon_sym_BSLASHautoref] = ACTIONS(5065), + [anon_sym_BSLASHpageref] = ACTIONS(5065), + [anon_sym_BSLASHcref] = ACTIONS(5065), + [anon_sym_BSLASHCref] = ACTIONS(5065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnameCref] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHlabelcref] = ACTIONS(5065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCrefrange] = ACTIONS(5065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnewlabel] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), + [anon_sym_BSLASHdef] = ACTIONS(5065), + [anon_sym_BSLASHlet] = ACTIONS(5065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), + [anon_sym_BSLASHgls] = ACTIONS(5065), + [anon_sym_BSLASHGls] = ACTIONS(5065), + [anon_sym_BSLASHGLS] = ACTIONS(5065), + [anon_sym_BSLASHglspl] = ACTIONS(5065), + [anon_sym_BSLASHGlspl] = ACTIONS(5065), + [anon_sym_BSLASHGLSpl] = ACTIONS(5065), + [anon_sym_BSLASHglsdisp] = ACTIONS(5065), + [anon_sym_BSLASHglslink] = ACTIONS(5065), + [anon_sym_BSLASHglstext] = ACTIONS(5065), + [anon_sym_BSLASHGlstext] = ACTIONS(5065), + [anon_sym_BSLASHGLStext] = ACTIONS(5065), + [anon_sym_BSLASHglsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), + [anon_sym_BSLASHglsplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSplural] = ACTIONS(5065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHglsname] = ACTIONS(5065), + [anon_sym_BSLASHGlsname] = ACTIONS(5065), + [anon_sym_BSLASHGLSname] = ACTIONS(5065), + [anon_sym_BSLASHglssymbol] = ACTIONS(5065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), + [anon_sym_BSLASHglsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), + [anon_sym_BSLASHglsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), + [anon_sym_BSLASHglsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), + [anon_sym_BSLASHglsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), + [anon_sym_BSLASHglsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), + [anon_sym_BSLASHnewacronym] = ACTIONS(5065), + [anon_sym_BSLASHacrshort] = ACTIONS(5065), + [anon_sym_BSLASHAcrshort] = ACTIONS(5065), + [anon_sym_BSLASHACRshort] = ACTIONS(5065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), + [anon_sym_BSLASHacrlong] = ACTIONS(5065), + [anon_sym_BSLASHAcrlong] = ACTIONS(5065), + [anon_sym_BSLASHACRlong] = ACTIONS(5065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), + [anon_sym_BSLASHacrfull] = ACTIONS(5065), + [anon_sym_BSLASHAcrfull] = ACTIONS(5065), + [anon_sym_BSLASHACRfull] = ACTIONS(5065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), + [anon_sym_BSLASHacs] = ACTIONS(5065), + [anon_sym_BSLASHAcs] = ACTIONS(5065), + [anon_sym_BSLASHacsp] = ACTIONS(5065), + [anon_sym_BSLASHAcsp] = ACTIONS(5065), + [anon_sym_BSLASHacl] = ACTIONS(5065), + [anon_sym_BSLASHAcl] = ACTIONS(5065), + [anon_sym_BSLASHaclp] = ACTIONS(5065), + [anon_sym_BSLASHAclp] = ACTIONS(5065), + [anon_sym_BSLASHacf] = ACTIONS(5065), + [anon_sym_BSLASHAcf] = ACTIONS(5065), + [anon_sym_BSLASHacfp] = ACTIONS(5065), + [anon_sym_BSLASHAcfp] = ACTIONS(5065), + [anon_sym_BSLASHac] = ACTIONS(5065), + [anon_sym_BSLASHAc] = ACTIONS(5065), + [anon_sym_BSLASHacp] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), + [anon_sym_BSLASHcolor] = ACTIONS(5065), + [anon_sym_BSLASHcolorbox] = ACTIONS(5065), + [anon_sym_BSLASHtextcolor] = ACTIONS(5065), + [anon_sym_BSLASHpagecolor] = ACTIONS(5065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHtext] = ACTIONS(5065), + [anon_sym_BSLASHintertext] = ACTIONS(5065), + [anon_sym_shortintertext] = ACTIONS(5065), }, - [1252] = { - [sym_command_name] = ACTIONS(4995), + [1134] = { + [sym_command_name] = ACTIONS(5301), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5301), + [anon_sym_LPAREN] = ACTIONS(5299), + [anon_sym_RPAREN] = ACTIONS(5299), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym_RBRACK] = ACTIONS(5299), + [anon_sym_COMMA] = ACTIONS(5299), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_BSLASHpart] = ACTIONS(5301), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddpart] = ACTIONS(5301), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5299), + [anon_sym_BSLASHchapter] = ACTIONS(5301), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddchap] = ACTIONS(5301), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsection] = ACTIONS(5301), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddsec] = ACTIONS(5301), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubsection] = ACTIONS(5301), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5301), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHparagraph] = ACTIONS(5301), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5301), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5299), + [anon_sym_BSLASHitem] = ACTIONS(5301), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5299), + [anon_sym_LBRACE] = ACTIONS(5299), + [sym_word] = ACTIONS(5301), + [sym_placeholder] = ACTIONS(5299), + [anon_sym_PLUS] = ACTIONS(5301), + [anon_sym_DASH] = ACTIONS(5301), + [anon_sym_STAR] = ACTIONS(5301), + [anon_sym_SLASH] = ACTIONS(5301), + [anon_sym_CARET] = ACTIONS(5301), + [anon_sym__] = ACTIONS(5301), + [anon_sym_LT] = ACTIONS(5301), + [anon_sym_GT] = ACTIONS(5301), + [anon_sym_BANG] = ACTIONS(5301), + [anon_sym_PIPE] = ACTIONS(5301), + [anon_sym_COLON] = ACTIONS(5301), + [anon_sym_SQUOTE] = ACTIONS(5301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), + [anon_sym_DOLLAR] = ACTIONS(5301), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), + [anon_sym_BSLASHbegin] = ACTIONS(5301), + [anon_sym_BSLASHend] = ACTIONS(5301), + [anon_sym_BSLASHusepackage] = ACTIONS(5301), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), + [anon_sym_BSLASHinclude] = ACTIONS(5301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), + [anon_sym_BSLASHinput] = ACTIONS(5301), + [anon_sym_BSLASHsubfile] = ACTIONS(5301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), + [anon_sym_BSLASHbibliography] = ACTIONS(5301), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), + [anon_sym_BSLASHincludesvg] = ACTIONS(5301), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), + [anon_sym_BSLASHimport] = ACTIONS(5301), + [anon_sym_BSLASHsubimport] = ACTIONS(5301), + [anon_sym_BSLASHinputfrom] = ACTIONS(5301), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), + [anon_sym_BSLASHincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHcaption] = ACTIONS(5301), + [anon_sym_BSLASHcite] = ACTIONS(5301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCite] = ACTIONS(5301), + [anon_sym_BSLASHnocite] = ACTIONS(5301), + [anon_sym_BSLASHcitet] = ACTIONS(5301), + [anon_sym_BSLASHcitep] = ACTIONS(5301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteauthor] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitetitle] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteyear] = ACTIONS(5301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitedate] = ACTIONS(5301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteurl] = ACTIONS(5301), + [anon_sym_BSLASHfullcite] = ACTIONS(5301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), + [anon_sym_BSLASHcitealt] = ACTIONS(5301), + [anon_sym_BSLASHcitealp] = ACTIONS(5301), + [anon_sym_BSLASHcitetext] = ACTIONS(5301), + [anon_sym_BSLASHparencite] = ACTIONS(5301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHParencite] = ACTIONS(5301), + [anon_sym_BSLASHfootcite] = ACTIONS(5301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), + [anon_sym_BSLASHtextcite] = ACTIONS(5301), + [anon_sym_BSLASHTextcite] = ACTIONS(5301), + [anon_sym_BSLASHsmartcite] = ACTIONS(5301), + [anon_sym_BSLASHSmartcite] = ACTIONS(5301), + [anon_sym_BSLASHsupercite] = ACTIONS(5301), + [anon_sym_BSLASHautocite] = ACTIONS(5301), + [anon_sym_BSLASHAutocite] = ACTIONS(5301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHvolcite] = ACTIONS(5301), + [anon_sym_BSLASHVolcite] = ACTIONS(5301), + [anon_sym_BSLASHpvolcite] = ACTIONS(5301), + [anon_sym_BSLASHPvolcite] = ACTIONS(5301), + [anon_sym_BSLASHfvolcite] = ACTIONS(5301), + [anon_sym_BSLASHftvolcite] = ACTIONS(5301), + [anon_sym_BSLASHsvolcite] = ACTIONS(5301), + [anon_sym_BSLASHSvolcite] = ACTIONS(5301), + [anon_sym_BSLASHtvolcite] = ACTIONS(5301), + [anon_sym_BSLASHTvolcite] = ACTIONS(5301), + [anon_sym_BSLASHavolcite] = ACTIONS(5301), + [anon_sym_BSLASHAvolcite] = ACTIONS(5301), + [anon_sym_BSLASHnotecite] = ACTIONS(5301), + [anon_sym_BSLASHNotecite] = ACTIONS(5301), + [anon_sym_BSLASHpnotecite] = ACTIONS(5301), + [anon_sym_BSLASHPnotecite] = ACTIONS(5301), + [anon_sym_BSLASHfnotecite] = ACTIONS(5301), + [anon_sym_BSLASHlabel] = ACTIONS(5301), + [anon_sym_BSLASHref] = ACTIONS(5301), + [anon_sym_BSLASHeqref] = ACTIONS(5301), + [anon_sym_BSLASHvref] = ACTIONS(5301), + [anon_sym_BSLASHVref] = ACTIONS(5301), + [anon_sym_BSLASHautoref] = ACTIONS(5301), + [anon_sym_BSLASHpageref] = ACTIONS(5301), + [anon_sym_BSLASHcref] = ACTIONS(5301), + [anon_sym_BSLASHCref] = ACTIONS(5301), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnameCref] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHlabelcref] = ACTIONS(5301), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCrefrange] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnewlabel] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), + [anon_sym_BSLASHdef] = ACTIONS(5301), + [anon_sym_BSLASHlet] = ACTIONS(5301), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), + [anon_sym_BSLASHgls] = ACTIONS(5301), + [anon_sym_BSLASHGls] = ACTIONS(5301), + [anon_sym_BSLASHGLS] = ACTIONS(5301), + [anon_sym_BSLASHglspl] = ACTIONS(5301), + [anon_sym_BSLASHGlspl] = ACTIONS(5301), + [anon_sym_BSLASHGLSpl] = ACTIONS(5301), + [anon_sym_BSLASHglsdisp] = ACTIONS(5301), + [anon_sym_BSLASHglslink] = ACTIONS(5301), + [anon_sym_BSLASHglstext] = ACTIONS(5301), + [anon_sym_BSLASHGlstext] = ACTIONS(5301), + [anon_sym_BSLASHGLStext] = ACTIONS(5301), + [anon_sym_BSLASHglsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), + [anon_sym_BSLASHglsplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSplural] = ACTIONS(5301), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHglsname] = ACTIONS(5301), + [anon_sym_BSLASHGlsname] = ACTIONS(5301), + [anon_sym_BSLASHGLSname] = ACTIONS(5301), + [anon_sym_BSLASHglssymbol] = ACTIONS(5301), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), + [anon_sym_BSLASHglsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), + [anon_sym_BSLASHglsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), + [anon_sym_BSLASHglsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), + [anon_sym_BSLASHglsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), + [anon_sym_BSLASHglsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), + [anon_sym_BSLASHnewacronym] = ACTIONS(5301), + [anon_sym_BSLASHacrshort] = ACTIONS(5301), + [anon_sym_BSLASHAcrshort] = ACTIONS(5301), + [anon_sym_BSLASHACRshort] = ACTIONS(5301), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), + [anon_sym_BSLASHacrlong] = ACTIONS(5301), + [anon_sym_BSLASHAcrlong] = ACTIONS(5301), + [anon_sym_BSLASHACRlong] = ACTIONS(5301), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), + [anon_sym_BSLASHacrfull] = ACTIONS(5301), + [anon_sym_BSLASHAcrfull] = ACTIONS(5301), + [anon_sym_BSLASHACRfull] = ACTIONS(5301), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), + [anon_sym_BSLASHacs] = ACTIONS(5301), + [anon_sym_BSLASHAcs] = ACTIONS(5301), + [anon_sym_BSLASHacsp] = ACTIONS(5301), + [anon_sym_BSLASHAcsp] = ACTIONS(5301), + [anon_sym_BSLASHacl] = ACTIONS(5301), + [anon_sym_BSLASHAcl] = ACTIONS(5301), + [anon_sym_BSLASHaclp] = ACTIONS(5301), + [anon_sym_BSLASHAclp] = ACTIONS(5301), + [anon_sym_BSLASHacf] = ACTIONS(5301), + [anon_sym_BSLASHAcf] = ACTIONS(5301), + [anon_sym_BSLASHacfp] = ACTIONS(5301), + [anon_sym_BSLASHAcfp] = ACTIONS(5301), + [anon_sym_BSLASHac] = ACTIONS(5301), + [anon_sym_BSLASHAc] = ACTIONS(5301), + [anon_sym_BSLASHacp] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), + [anon_sym_BSLASHcolor] = ACTIONS(5301), + [anon_sym_BSLASHcolorbox] = ACTIONS(5301), + [anon_sym_BSLASHtextcolor] = ACTIONS(5301), + [anon_sym_BSLASHpagecolor] = ACTIONS(5301), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), + [anon_sym_BSLASHtext] = ACTIONS(5301), + [anon_sym_BSLASHintertext] = ACTIONS(5301), + [anon_sym_shortintertext] = ACTIONS(5301), + }, + [1135] = { + [sym_command_name] = ACTIONS(5297), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5297), + [anon_sym_LPAREN] = ACTIONS(5295), + [anon_sym_RPAREN] = ACTIONS(5295), + [anon_sym_LBRACK] = ACTIONS(5295), + [anon_sym_RBRACK] = ACTIONS(5295), + [anon_sym_COMMA] = ACTIONS(5295), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_BSLASHpart] = ACTIONS(5297), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddpart] = ACTIONS(5297), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5295), + [anon_sym_BSLASHchapter] = ACTIONS(5297), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddchap] = ACTIONS(5297), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsection] = ACTIONS(5297), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddsec] = ACTIONS(5297), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubsection] = ACTIONS(5297), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5297), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHparagraph] = ACTIONS(5297), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5297), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5295), + [anon_sym_BSLASHitem] = ACTIONS(5297), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5295), + [anon_sym_LBRACE] = ACTIONS(5295), + [sym_word] = ACTIONS(5297), + [sym_placeholder] = ACTIONS(5295), + [anon_sym_PLUS] = ACTIONS(5297), + [anon_sym_DASH] = ACTIONS(5297), + [anon_sym_STAR] = ACTIONS(5297), + [anon_sym_SLASH] = ACTIONS(5297), + [anon_sym_CARET] = ACTIONS(5297), + [anon_sym__] = ACTIONS(5297), + [anon_sym_LT] = ACTIONS(5297), + [anon_sym_GT] = ACTIONS(5297), + [anon_sym_BANG] = ACTIONS(5297), + [anon_sym_PIPE] = ACTIONS(5297), + [anon_sym_COLON] = ACTIONS(5297), + [anon_sym_SQUOTE] = ACTIONS(5297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), + [anon_sym_DOLLAR] = ACTIONS(5297), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), + [anon_sym_BSLASHbegin] = ACTIONS(5297), + [anon_sym_BSLASHend] = ACTIONS(5297), + [anon_sym_BSLASHusepackage] = ACTIONS(5297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), + [anon_sym_BSLASHinclude] = ACTIONS(5297), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), + [anon_sym_BSLASHinput] = ACTIONS(5297), + [anon_sym_BSLASHsubfile] = ACTIONS(5297), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), + [anon_sym_BSLASHbibliography] = ACTIONS(5297), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), + [anon_sym_BSLASHincludesvg] = ACTIONS(5297), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), + [anon_sym_BSLASHimport] = ACTIONS(5297), + [anon_sym_BSLASHsubimport] = ACTIONS(5297), + [anon_sym_BSLASHinputfrom] = ACTIONS(5297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), + [anon_sym_BSLASHincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHcaption] = ACTIONS(5297), + [anon_sym_BSLASHcite] = ACTIONS(5297), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCite] = ACTIONS(5297), + [anon_sym_BSLASHnocite] = ACTIONS(5297), + [anon_sym_BSLASHcitet] = ACTIONS(5297), + [anon_sym_BSLASHcitep] = ACTIONS(5297), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteauthor] = ACTIONS(5297), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitetitle] = ACTIONS(5297), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteyear] = ACTIONS(5297), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitedate] = ACTIONS(5297), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteurl] = ACTIONS(5297), + [anon_sym_BSLASHfullcite] = ACTIONS(5297), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), + [anon_sym_BSLASHcitealt] = ACTIONS(5297), + [anon_sym_BSLASHcitealp] = ACTIONS(5297), + [anon_sym_BSLASHcitetext] = ACTIONS(5297), + [anon_sym_BSLASHparencite] = ACTIONS(5297), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHParencite] = ACTIONS(5297), + [anon_sym_BSLASHfootcite] = ACTIONS(5297), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), + [anon_sym_BSLASHtextcite] = ACTIONS(5297), + [anon_sym_BSLASHTextcite] = ACTIONS(5297), + [anon_sym_BSLASHsmartcite] = ACTIONS(5297), + [anon_sym_BSLASHSmartcite] = ACTIONS(5297), + [anon_sym_BSLASHsupercite] = ACTIONS(5297), + [anon_sym_BSLASHautocite] = ACTIONS(5297), + [anon_sym_BSLASHAutocite] = ACTIONS(5297), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHvolcite] = ACTIONS(5297), + [anon_sym_BSLASHVolcite] = ACTIONS(5297), + [anon_sym_BSLASHpvolcite] = ACTIONS(5297), + [anon_sym_BSLASHPvolcite] = ACTIONS(5297), + [anon_sym_BSLASHfvolcite] = ACTIONS(5297), + [anon_sym_BSLASHftvolcite] = ACTIONS(5297), + [anon_sym_BSLASHsvolcite] = ACTIONS(5297), + [anon_sym_BSLASHSvolcite] = ACTIONS(5297), + [anon_sym_BSLASHtvolcite] = ACTIONS(5297), + [anon_sym_BSLASHTvolcite] = ACTIONS(5297), + [anon_sym_BSLASHavolcite] = ACTIONS(5297), + [anon_sym_BSLASHAvolcite] = ACTIONS(5297), + [anon_sym_BSLASHnotecite] = ACTIONS(5297), + [anon_sym_BSLASHNotecite] = ACTIONS(5297), + [anon_sym_BSLASHpnotecite] = ACTIONS(5297), + [anon_sym_BSLASHPnotecite] = ACTIONS(5297), + [anon_sym_BSLASHfnotecite] = ACTIONS(5297), + [anon_sym_BSLASHlabel] = ACTIONS(5297), + [anon_sym_BSLASHref] = ACTIONS(5297), + [anon_sym_BSLASHeqref] = ACTIONS(5297), + [anon_sym_BSLASHvref] = ACTIONS(5297), + [anon_sym_BSLASHVref] = ACTIONS(5297), + [anon_sym_BSLASHautoref] = ACTIONS(5297), + [anon_sym_BSLASHpageref] = ACTIONS(5297), + [anon_sym_BSLASHcref] = ACTIONS(5297), + [anon_sym_BSLASHCref] = ACTIONS(5297), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnameCref] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHlabelcref] = ACTIONS(5297), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCrefrange] = ACTIONS(5297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnewlabel] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), + [anon_sym_BSLASHdef] = ACTIONS(5297), + [anon_sym_BSLASHlet] = ACTIONS(5297), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), + [anon_sym_BSLASHgls] = ACTIONS(5297), + [anon_sym_BSLASHGls] = ACTIONS(5297), + [anon_sym_BSLASHGLS] = ACTIONS(5297), + [anon_sym_BSLASHglspl] = ACTIONS(5297), + [anon_sym_BSLASHGlspl] = ACTIONS(5297), + [anon_sym_BSLASHGLSpl] = ACTIONS(5297), + [anon_sym_BSLASHglsdisp] = ACTIONS(5297), + [anon_sym_BSLASHglslink] = ACTIONS(5297), + [anon_sym_BSLASHglstext] = ACTIONS(5297), + [anon_sym_BSLASHGlstext] = ACTIONS(5297), + [anon_sym_BSLASHGLStext] = ACTIONS(5297), + [anon_sym_BSLASHglsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), + [anon_sym_BSLASHglsplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSplural] = ACTIONS(5297), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHglsname] = ACTIONS(5297), + [anon_sym_BSLASHGlsname] = ACTIONS(5297), + [anon_sym_BSLASHGLSname] = ACTIONS(5297), + [anon_sym_BSLASHglssymbol] = ACTIONS(5297), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), + [anon_sym_BSLASHglsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), + [anon_sym_BSLASHglsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), + [anon_sym_BSLASHglsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), + [anon_sym_BSLASHglsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), + [anon_sym_BSLASHglsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), + [anon_sym_BSLASHnewacronym] = ACTIONS(5297), + [anon_sym_BSLASHacrshort] = ACTIONS(5297), + [anon_sym_BSLASHAcrshort] = ACTIONS(5297), + [anon_sym_BSLASHACRshort] = ACTIONS(5297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), + [anon_sym_BSLASHacrlong] = ACTIONS(5297), + [anon_sym_BSLASHAcrlong] = ACTIONS(5297), + [anon_sym_BSLASHACRlong] = ACTIONS(5297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), + [anon_sym_BSLASHacrfull] = ACTIONS(5297), + [anon_sym_BSLASHAcrfull] = ACTIONS(5297), + [anon_sym_BSLASHACRfull] = ACTIONS(5297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), + [anon_sym_BSLASHacs] = ACTIONS(5297), + [anon_sym_BSLASHAcs] = ACTIONS(5297), + [anon_sym_BSLASHacsp] = ACTIONS(5297), + [anon_sym_BSLASHAcsp] = ACTIONS(5297), + [anon_sym_BSLASHacl] = ACTIONS(5297), + [anon_sym_BSLASHAcl] = ACTIONS(5297), + [anon_sym_BSLASHaclp] = ACTIONS(5297), + [anon_sym_BSLASHAclp] = ACTIONS(5297), + [anon_sym_BSLASHacf] = ACTIONS(5297), + [anon_sym_BSLASHAcf] = ACTIONS(5297), + [anon_sym_BSLASHacfp] = ACTIONS(5297), + [anon_sym_BSLASHAcfp] = ACTIONS(5297), + [anon_sym_BSLASHac] = ACTIONS(5297), + [anon_sym_BSLASHAc] = ACTIONS(5297), + [anon_sym_BSLASHacp] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), + [anon_sym_BSLASHcolor] = ACTIONS(5297), + [anon_sym_BSLASHcolorbox] = ACTIONS(5297), + [anon_sym_BSLASHtextcolor] = ACTIONS(5297), + [anon_sym_BSLASHpagecolor] = ACTIONS(5297), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), + [anon_sym_BSLASHtext] = ACTIONS(5297), + [anon_sym_BSLASHintertext] = ACTIONS(5297), + [anon_sym_shortintertext] = ACTIONS(5297), + }, + [1136] = { + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_BSLASHpart] = ACTIONS(133), + [anon_sym_BSLASHpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddpart] = ACTIONS(133), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHchapter] = ACTIONS(133), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddchap] = ACTIONS(133), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), + [anon_sym_BSLASHsection] = ACTIONS(133), + [anon_sym_BSLASHsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddsec] = ACTIONS(133), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHparagraph] = ACTIONS(133), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubparagraph] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHitem] = ACTIONS(133), + [anon_sym_BSLASHitem_STAR] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_BSLASH_RBRACK] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), + }, + [1137] = { + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_LPAREN] = ACTIONS(5291), + [anon_sym_RPAREN] = ACTIONS(5291), + [anon_sym_LBRACK] = ACTIONS(5291), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_BSLASHpart] = ACTIONS(5293), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddpart] = ACTIONS(5293), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5291), + [anon_sym_BSLASHchapter] = ACTIONS(5293), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddchap] = ACTIONS(5293), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsection] = ACTIONS(5293), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddsec] = ACTIONS(5293), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHparagraph] = ACTIONS(5293), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5293), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHitem] = ACTIONS(5293), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5291), + [anon_sym_DOLLAR] = ACTIONS(5293), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5291), + [anon_sym_BSLASHbegin] = ACTIONS(5293), + [anon_sym_BSLASHend] = ACTIONS(5293), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + [anon_sym_BSLASHtext] = ACTIONS(5293), + [anon_sym_BSLASHintertext] = ACTIONS(5293), + [anon_sym_shortintertext] = ACTIONS(5293), + }, + [1138] = { + [sym_command_name] = ACTIONS(5289), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5289), + [anon_sym_LPAREN] = ACTIONS(5287), + [anon_sym_RPAREN] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(5287), + [anon_sym_RBRACK] = ACTIONS(5287), + [anon_sym_COMMA] = ACTIONS(5287), + [anon_sym_EQ] = ACTIONS(5287), + [anon_sym_BSLASHpart] = ACTIONS(5289), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddpart] = ACTIONS(5289), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5287), + [anon_sym_BSLASHchapter] = ACTIONS(5289), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddchap] = ACTIONS(5289), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsection] = ACTIONS(5289), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddsec] = ACTIONS(5289), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubsection] = ACTIONS(5289), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5289), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHparagraph] = ACTIONS(5289), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5289), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5287), + [anon_sym_BSLASHitem] = ACTIONS(5289), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5287), + [anon_sym_LBRACE] = ACTIONS(5287), + [sym_word] = ACTIONS(5289), + [sym_placeholder] = ACTIONS(5287), + [anon_sym_PLUS] = ACTIONS(5289), + [anon_sym_DASH] = ACTIONS(5289), + [anon_sym_STAR] = ACTIONS(5289), + [anon_sym_SLASH] = ACTIONS(5289), + [anon_sym_CARET] = ACTIONS(5289), + [anon_sym__] = ACTIONS(5289), + [anon_sym_LT] = ACTIONS(5289), + [anon_sym_GT] = ACTIONS(5289), + [anon_sym_BANG] = ACTIONS(5289), + [anon_sym_PIPE] = ACTIONS(5289), + [anon_sym_COLON] = ACTIONS(5289), + [anon_sym_SQUOTE] = ACTIONS(5289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), + [anon_sym_DOLLAR] = ACTIONS(5289), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), + [anon_sym_BSLASHbegin] = ACTIONS(5289), + [anon_sym_BSLASHend] = ACTIONS(5289), + [anon_sym_BSLASHusepackage] = ACTIONS(5289), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), + [anon_sym_BSLASHinclude] = ACTIONS(5289), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), + [anon_sym_BSLASHinput] = ACTIONS(5289), + [anon_sym_BSLASHsubfile] = ACTIONS(5289), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), + [anon_sym_BSLASHbibliography] = ACTIONS(5289), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), + [anon_sym_BSLASHincludesvg] = ACTIONS(5289), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), + [anon_sym_BSLASHimport] = ACTIONS(5289), + [anon_sym_BSLASHsubimport] = ACTIONS(5289), + [anon_sym_BSLASHinputfrom] = ACTIONS(5289), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), + [anon_sym_BSLASHincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHcaption] = ACTIONS(5289), + [anon_sym_BSLASHcite] = ACTIONS(5289), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCite] = ACTIONS(5289), + [anon_sym_BSLASHnocite] = ACTIONS(5289), + [anon_sym_BSLASHcitet] = ACTIONS(5289), + [anon_sym_BSLASHcitep] = ACTIONS(5289), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteauthor] = ACTIONS(5289), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitetitle] = ACTIONS(5289), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteyear] = ACTIONS(5289), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitedate] = ACTIONS(5289), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteurl] = ACTIONS(5289), + [anon_sym_BSLASHfullcite] = ACTIONS(5289), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), + [anon_sym_BSLASHcitealt] = ACTIONS(5289), + [anon_sym_BSLASHcitealp] = ACTIONS(5289), + [anon_sym_BSLASHcitetext] = ACTIONS(5289), + [anon_sym_BSLASHparencite] = ACTIONS(5289), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHParencite] = ACTIONS(5289), + [anon_sym_BSLASHfootcite] = ACTIONS(5289), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), + [anon_sym_BSLASHtextcite] = ACTIONS(5289), + [anon_sym_BSLASHTextcite] = ACTIONS(5289), + [anon_sym_BSLASHsmartcite] = ACTIONS(5289), + [anon_sym_BSLASHSmartcite] = ACTIONS(5289), + [anon_sym_BSLASHsupercite] = ACTIONS(5289), + [anon_sym_BSLASHautocite] = ACTIONS(5289), + [anon_sym_BSLASHAutocite] = ACTIONS(5289), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHvolcite] = ACTIONS(5289), + [anon_sym_BSLASHVolcite] = ACTIONS(5289), + [anon_sym_BSLASHpvolcite] = ACTIONS(5289), + [anon_sym_BSLASHPvolcite] = ACTIONS(5289), + [anon_sym_BSLASHfvolcite] = ACTIONS(5289), + [anon_sym_BSLASHftvolcite] = ACTIONS(5289), + [anon_sym_BSLASHsvolcite] = ACTIONS(5289), + [anon_sym_BSLASHSvolcite] = ACTIONS(5289), + [anon_sym_BSLASHtvolcite] = ACTIONS(5289), + [anon_sym_BSLASHTvolcite] = ACTIONS(5289), + [anon_sym_BSLASHavolcite] = ACTIONS(5289), + [anon_sym_BSLASHAvolcite] = ACTIONS(5289), + [anon_sym_BSLASHnotecite] = ACTIONS(5289), + [anon_sym_BSLASHNotecite] = ACTIONS(5289), + [anon_sym_BSLASHpnotecite] = ACTIONS(5289), + [anon_sym_BSLASHPnotecite] = ACTIONS(5289), + [anon_sym_BSLASHfnotecite] = ACTIONS(5289), + [anon_sym_BSLASHlabel] = ACTIONS(5289), + [anon_sym_BSLASHref] = ACTIONS(5289), + [anon_sym_BSLASHeqref] = ACTIONS(5289), + [anon_sym_BSLASHvref] = ACTIONS(5289), + [anon_sym_BSLASHVref] = ACTIONS(5289), + [anon_sym_BSLASHautoref] = ACTIONS(5289), + [anon_sym_BSLASHpageref] = ACTIONS(5289), + [anon_sym_BSLASHcref] = ACTIONS(5289), + [anon_sym_BSLASHCref] = ACTIONS(5289), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnameCref] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHlabelcref] = ACTIONS(5289), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCrefrange] = ACTIONS(5289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnewlabel] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), + [anon_sym_BSLASHdef] = ACTIONS(5289), + [anon_sym_BSLASHlet] = ACTIONS(5289), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), + [anon_sym_BSLASHgls] = ACTIONS(5289), + [anon_sym_BSLASHGls] = ACTIONS(5289), + [anon_sym_BSLASHGLS] = ACTIONS(5289), + [anon_sym_BSLASHglspl] = ACTIONS(5289), + [anon_sym_BSLASHGlspl] = ACTIONS(5289), + [anon_sym_BSLASHGLSpl] = ACTIONS(5289), + [anon_sym_BSLASHglsdisp] = ACTIONS(5289), + [anon_sym_BSLASHglslink] = ACTIONS(5289), + [anon_sym_BSLASHglstext] = ACTIONS(5289), + [anon_sym_BSLASHGlstext] = ACTIONS(5289), + [anon_sym_BSLASHGLStext] = ACTIONS(5289), + [anon_sym_BSLASHglsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), + [anon_sym_BSLASHglsplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSplural] = ACTIONS(5289), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHglsname] = ACTIONS(5289), + [anon_sym_BSLASHGlsname] = ACTIONS(5289), + [anon_sym_BSLASHGLSname] = ACTIONS(5289), + [anon_sym_BSLASHglssymbol] = ACTIONS(5289), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), + [anon_sym_BSLASHglsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), + [anon_sym_BSLASHglsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), + [anon_sym_BSLASHglsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), + [anon_sym_BSLASHglsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), + [anon_sym_BSLASHglsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), + [anon_sym_BSLASHnewacronym] = ACTIONS(5289), + [anon_sym_BSLASHacrshort] = ACTIONS(5289), + [anon_sym_BSLASHAcrshort] = ACTIONS(5289), + [anon_sym_BSLASHACRshort] = ACTIONS(5289), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), + [anon_sym_BSLASHacrlong] = ACTIONS(5289), + [anon_sym_BSLASHAcrlong] = ACTIONS(5289), + [anon_sym_BSLASHACRlong] = ACTIONS(5289), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), + [anon_sym_BSLASHacrfull] = ACTIONS(5289), + [anon_sym_BSLASHAcrfull] = ACTIONS(5289), + [anon_sym_BSLASHACRfull] = ACTIONS(5289), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), + [anon_sym_BSLASHacs] = ACTIONS(5289), + [anon_sym_BSLASHAcs] = ACTIONS(5289), + [anon_sym_BSLASHacsp] = ACTIONS(5289), + [anon_sym_BSLASHAcsp] = ACTIONS(5289), + [anon_sym_BSLASHacl] = ACTIONS(5289), + [anon_sym_BSLASHAcl] = ACTIONS(5289), + [anon_sym_BSLASHaclp] = ACTIONS(5289), + [anon_sym_BSLASHAclp] = ACTIONS(5289), + [anon_sym_BSLASHacf] = ACTIONS(5289), + [anon_sym_BSLASHAcf] = ACTIONS(5289), + [anon_sym_BSLASHacfp] = ACTIONS(5289), + [anon_sym_BSLASHAcfp] = ACTIONS(5289), + [anon_sym_BSLASHac] = ACTIONS(5289), + [anon_sym_BSLASHAc] = ACTIONS(5289), + [anon_sym_BSLASHacp] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), + [anon_sym_BSLASHcolor] = ACTIONS(5289), + [anon_sym_BSLASHcolorbox] = ACTIONS(5289), + [anon_sym_BSLASHtextcolor] = ACTIONS(5289), + [anon_sym_BSLASHpagecolor] = ACTIONS(5289), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), + [anon_sym_BSLASHtext] = ACTIONS(5289), + [anon_sym_BSLASHintertext] = ACTIONS(5289), + [anon_sym_shortintertext] = ACTIONS(5289), + }, + [1139] = { + [sym_command_name] = ACTIONS(5285), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5285), + [anon_sym_LPAREN] = ACTIONS(5283), + [anon_sym_RPAREN] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(5283), + [anon_sym_RBRACK] = ACTIONS(5283), + [anon_sym_COMMA] = ACTIONS(5283), + [anon_sym_EQ] = ACTIONS(5283), + [anon_sym_BSLASHpart] = ACTIONS(5285), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddpart] = ACTIONS(5285), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5283), + [anon_sym_BSLASHchapter] = ACTIONS(5285), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddchap] = ACTIONS(5285), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsection] = ACTIONS(5285), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddsec] = ACTIONS(5285), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubsection] = ACTIONS(5285), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5285), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHparagraph] = ACTIONS(5285), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5285), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5283), + [anon_sym_BSLASHitem] = ACTIONS(5285), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5283), + [anon_sym_LBRACE] = ACTIONS(5283), + [sym_word] = ACTIONS(5285), + [sym_placeholder] = ACTIONS(5283), + [anon_sym_PLUS] = ACTIONS(5285), + [anon_sym_DASH] = ACTIONS(5285), + [anon_sym_STAR] = ACTIONS(5285), + [anon_sym_SLASH] = ACTIONS(5285), + [anon_sym_CARET] = ACTIONS(5285), + [anon_sym__] = ACTIONS(5285), + [anon_sym_LT] = ACTIONS(5285), + [anon_sym_GT] = ACTIONS(5285), + [anon_sym_BANG] = ACTIONS(5285), + [anon_sym_PIPE] = ACTIONS(5285), + [anon_sym_COLON] = ACTIONS(5285), + [anon_sym_SQUOTE] = ACTIONS(5285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), + [anon_sym_DOLLAR] = ACTIONS(5285), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), + [anon_sym_BSLASHbegin] = ACTIONS(5285), + [anon_sym_BSLASHend] = ACTIONS(5285), + [anon_sym_BSLASHusepackage] = ACTIONS(5285), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), + [anon_sym_BSLASHinclude] = ACTIONS(5285), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), + [anon_sym_BSLASHinput] = ACTIONS(5285), + [anon_sym_BSLASHsubfile] = ACTIONS(5285), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), + [anon_sym_BSLASHbibliography] = ACTIONS(5285), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), + [anon_sym_BSLASHincludesvg] = ACTIONS(5285), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), + [anon_sym_BSLASHimport] = ACTIONS(5285), + [anon_sym_BSLASHsubimport] = ACTIONS(5285), + [anon_sym_BSLASHinputfrom] = ACTIONS(5285), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), + [anon_sym_BSLASHincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHcaption] = ACTIONS(5285), + [anon_sym_BSLASHcite] = ACTIONS(5285), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCite] = ACTIONS(5285), + [anon_sym_BSLASHnocite] = ACTIONS(5285), + [anon_sym_BSLASHcitet] = ACTIONS(5285), + [anon_sym_BSLASHcitep] = ACTIONS(5285), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteauthor] = ACTIONS(5285), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitetitle] = ACTIONS(5285), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteyear] = ACTIONS(5285), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitedate] = ACTIONS(5285), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteurl] = ACTIONS(5285), + [anon_sym_BSLASHfullcite] = ACTIONS(5285), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), + [anon_sym_BSLASHcitealt] = ACTIONS(5285), + [anon_sym_BSLASHcitealp] = ACTIONS(5285), + [anon_sym_BSLASHcitetext] = ACTIONS(5285), + [anon_sym_BSLASHparencite] = ACTIONS(5285), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHParencite] = ACTIONS(5285), + [anon_sym_BSLASHfootcite] = ACTIONS(5285), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), + [anon_sym_BSLASHtextcite] = ACTIONS(5285), + [anon_sym_BSLASHTextcite] = ACTIONS(5285), + [anon_sym_BSLASHsmartcite] = ACTIONS(5285), + [anon_sym_BSLASHSmartcite] = ACTIONS(5285), + [anon_sym_BSLASHsupercite] = ACTIONS(5285), + [anon_sym_BSLASHautocite] = ACTIONS(5285), + [anon_sym_BSLASHAutocite] = ACTIONS(5285), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHvolcite] = ACTIONS(5285), + [anon_sym_BSLASHVolcite] = ACTIONS(5285), + [anon_sym_BSLASHpvolcite] = ACTIONS(5285), + [anon_sym_BSLASHPvolcite] = ACTIONS(5285), + [anon_sym_BSLASHfvolcite] = ACTIONS(5285), + [anon_sym_BSLASHftvolcite] = ACTIONS(5285), + [anon_sym_BSLASHsvolcite] = ACTIONS(5285), + [anon_sym_BSLASHSvolcite] = ACTIONS(5285), + [anon_sym_BSLASHtvolcite] = ACTIONS(5285), + [anon_sym_BSLASHTvolcite] = ACTIONS(5285), + [anon_sym_BSLASHavolcite] = ACTIONS(5285), + [anon_sym_BSLASHAvolcite] = ACTIONS(5285), + [anon_sym_BSLASHnotecite] = ACTIONS(5285), + [anon_sym_BSLASHNotecite] = ACTIONS(5285), + [anon_sym_BSLASHpnotecite] = ACTIONS(5285), + [anon_sym_BSLASHPnotecite] = ACTIONS(5285), + [anon_sym_BSLASHfnotecite] = ACTIONS(5285), + [anon_sym_BSLASHlabel] = ACTIONS(5285), + [anon_sym_BSLASHref] = ACTIONS(5285), + [anon_sym_BSLASHeqref] = ACTIONS(5285), + [anon_sym_BSLASHvref] = ACTIONS(5285), + [anon_sym_BSLASHVref] = ACTIONS(5285), + [anon_sym_BSLASHautoref] = ACTIONS(5285), + [anon_sym_BSLASHpageref] = ACTIONS(5285), + [anon_sym_BSLASHcref] = ACTIONS(5285), + [anon_sym_BSLASHCref] = ACTIONS(5285), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnameCref] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHlabelcref] = ACTIONS(5285), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCrefrange] = ACTIONS(5285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnewlabel] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), + [anon_sym_BSLASHdef] = ACTIONS(5285), + [anon_sym_BSLASHlet] = ACTIONS(5285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), + [anon_sym_BSLASHgls] = ACTIONS(5285), + [anon_sym_BSLASHGls] = ACTIONS(5285), + [anon_sym_BSLASHGLS] = ACTIONS(5285), + [anon_sym_BSLASHglspl] = ACTIONS(5285), + [anon_sym_BSLASHGlspl] = ACTIONS(5285), + [anon_sym_BSLASHGLSpl] = ACTIONS(5285), + [anon_sym_BSLASHglsdisp] = ACTIONS(5285), + [anon_sym_BSLASHglslink] = ACTIONS(5285), + [anon_sym_BSLASHglstext] = ACTIONS(5285), + [anon_sym_BSLASHGlstext] = ACTIONS(5285), + [anon_sym_BSLASHGLStext] = ACTIONS(5285), + [anon_sym_BSLASHglsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), + [anon_sym_BSLASHglsplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSplural] = ACTIONS(5285), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHglsname] = ACTIONS(5285), + [anon_sym_BSLASHGlsname] = ACTIONS(5285), + [anon_sym_BSLASHGLSname] = ACTIONS(5285), + [anon_sym_BSLASHglssymbol] = ACTIONS(5285), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), + [anon_sym_BSLASHglsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), + [anon_sym_BSLASHglsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), + [anon_sym_BSLASHglsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), + [anon_sym_BSLASHglsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), + [anon_sym_BSLASHglsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), + [anon_sym_BSLASHnewacronym] = ACTIONS(5285), + [anon_sym_BSLASHacrshort] = ACTIONS(5285), + [anon_sym_BSLASHAcrshort] = ACTIONS(5285), + [anon_sym_BSLASHACRshort] = ACTIONS(5285), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), + [anon_sym_BSLASHacrlong] = ACTIONS(5285), + [anon_sym_BSLASHAcrlong] = ACTIONS(5285), + [anon_sym_BSLASHACRlong] = ACTIONS(5285), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), + [anon_sym_BSLASHacrfull] = ACTIONS(5285), + [anon_sym_BSLASHAcrfull] = ACTIONS(5285), + [anon_sym_BSLASHACRfull] = ACTIONS(5285), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), + [anon_sym_BSLASHacs] = ACTIONS(5285), + [anon_sym_BSLASHAcs] = ACTIONS(5285), + [anon_sym_BSLASHacsp] = ACTIONS(5285), + [anon_sym_BSLASHAcsp] = ACTIONS(5285), + [anon_sym_BSLASHacl] = ACTIONS(5285), + [anon_sym_BSLASHAcl] = ACTIONS(5285), + [anon_sym_BSLASHaclp] = ACTIONS(5285), + [anon_sym_BSLASHAclp] = ACTIONS(5285), + [anon_sym_BSLASHacf] = ACTIONS(5285), + [anon_sym_BSLASHAcf] = ACTIONS(5285), + [anon_sym_BSLASHacfp] = ACTIONS(5285), + [anon_sym_BSLASHAcfp] = ACTIONS(5285), + [anon_sym_BSLASHac] = ACTIONS(5285), + [anon_sym_BSLASHAc] = ACTIONS(5285), + [anon_sym_BSLASHacp] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), + [anon_sym_BSLASHcolor] = ACTIONS(5285), + [anon_sym_BSLASHcolorbox] = ACTIONS(5285), + [anon_sym_BSLASHtextcolor] = ACTIONS(5285), + [anon_sym_BSLASHpagecolor] = ACTIONS(5285), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), + [anon_sym_BSLASHtext] = ACTIONS(5285), + [anon_sym_BSLASHintertext] = ACTIONS(5285), + [anon_sym_shortintertext] = ACTIONS(5285), + }, + [1140] = { + [sym_command_name] = ACTIONS(4925), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_RBRACK] = ACTIONS(4923), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_EQ] = ACTIONS(4923), + [anon_sym_BSLASHpart] = ACTIONS(4925), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddpart] = ACTIONS(4925), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4923), + [anon_sym_BSLASHchapter] = ACTIONS(4925), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddchap] = ACTIONS(4925), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsection] = ACTIONS(4925), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddsec] = ACTIONS(4925), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubsection] = ACTIONS(4925), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4925), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHparagraph] = ACTIONS(4925), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4925), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4923), + [anon_sym_BSLASHitem] = ACTIONS(4925), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4923), + [sym_word] = ACTIONS(4925), + [sym_placeholder] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym__] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_BANG] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_SQUOTE] = ACTIONS(4925), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4923), + [anon_sym_DOLLAR] = ACTIONS(4925), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), + [anon_sym_BSLASHbegin] = ACTIONS(4925), + [anon_sym_BSLASHusepackage] = ACTIONS(4925), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), + [anon_sym_BSLASHinclude] = ACTIONS(4925), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), + [anon_sym_BSLASHinput] = ACTIONS(4925), + [anon_sym_BSLASHsubfile] = ACTIONS(4925), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), + [anon_sym_BSLASHbibliography] = ACTIONS(4925), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), + [anon_sym_BSLASHincludesvg] = ACTIONS(4925), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), + [anon_sym_BSLASHimport] = ACTIONS(4925), + [anon_sym_BSLASHsubimport] = ACTIONS(4925), + [anon_sym_BSLASHinputfrom] = ACTIONS(4925), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), + [anon_sym_BSLASHincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHcaption] = ACTIONS(4925), + [anon_sym_BSLASHcite] = ACTIONS(4925), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCite] = ACTIONS(4925), + [anon_sym_BSLASHnocite] = ACTIONS(4925), + [anon_sym_BSLASHcitet] = ACTIONS(4925), + [anon_sym_BSLASHcitep] = ACTIONS(4925), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteauthor] = ACTIONS(4925), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitetitle] = ACTIONS(4925), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteyear] = ACTIONS(4925), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitedate] = ACTIONS(4925), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteurl] = ACTIONS(4925), + [anon_sym_BSLASHfullcite] = ACTIONS(4925), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4925), + [anon_sym_BSLASHcitealt] = ACTIONS(4925), + [anon_sym_BSLASHcitealp] = ACTIONS(4925), + [anon_sym_BSLASHcitetext] = ACTIONS(4925), + [anon_sym_BSLASHparencite] = ACTIONS(4925), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHParencite] = ACTIONS(4925), + [anon_sym_BSLASHfootcite] = ACTIONS(4925), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4925), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4925), + [anon_sym_BSLASHtextcite] = ACTIONS(4925), + [anon_sym_BSLASHTextcite] = ACTIONS(4925), + [anon_sym_BSLASHsmartcite] = ACTIONS(4925), + [anon_sym_BSLASHSmartcite] = ACTIONS(4925), + [anon_sym_BSLASHsupercite] = ACTIONS(4925), + [anon_sym_BSLASHautocite] = ACTIONS(4925), + [anon_sym_BSLASHAutocite] = ACTIONS(4925), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHvolcite] = ACTIONS(4925), + [anon_sym_BSLASHVolcite] = ACTIONS(4925), + [anon_sym_BSLASHpvolcite] = ACTIONS(4925), + [anon_sym_BSLASHPvolcite] = ACTIONS(4925), + [anon_sym_BSLASHfvolcite] = ACTIONS(4925), + [anon_sym_BSLASHftvolcite] = ACTIONS(4925), + [anon_sym_BSLASHsvolcite] = ACTIONS(4925), + [anon_sym_BSLASHSvolcite] = ACTIONS(4925), + [anon_sym_BSLASHtvolcite] = ACTIONS(4925), + [anon_sym_BSLASHTvolcite] = ACTIONS(4925), + [anon_sym_BSLASHavolcite] = ACTIONS(4925), + [anon_sym_BSLASHAvolcite] = ACTIONS(4925), + [anon_sym_BSLASHnotecite] = ACTIONS(4925), + [anon_sym_BSLASHNotecite] = ACTIONS(4925), + [anon_sym_BSLASHpnotecite] = ACTIONS(4925), + [anon_sym_BSLASHPnotecite] = ACTIONS(4925), + [anon_sym_BSLASHfnotecite] = ACTIONS(4925), + [anon_sym_BSLASHlabel] = ACTIONS(4925), + [anon_sym_BSLASHref] = ACTIONS(4925), + [anon_sym_BSLASHeqref] = ACTIONS(4925), + [anon_sym_BSLASHvref] = ACTIONS(4925), + [anon_sym_BSLASHVref] = ACTIONS(4925), + [anon_sym_BSLASHautoref] = ACTIONS(4925), + [anon_sym_BSLASHpageref] = ACTIONS(4925), + [anon_sym_BSLASHcref] = ACTIONS(4925), + [anon_sym_BSLASHCref] = ACTIONS(4925), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnameCref] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHlabelcref] = ACTIONS(4925), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCrefrange] = ACTIONS(4925), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnewlabel] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), + [anon_sym_BSLASHdef] = ACTIONS(4925), + [anon_sym_BSLASHlet] = ACTIONS(4925), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), + [anon_sym_BSLASHgls] = ACTIONS(4925), + [anon_sym_BSLASHGls] = ACTIONS(4925), + [anon_sym_BSLASHGLS] = ACTIONS(4925), + [anon_sym_BSLASHglspl] = ACTIONS(4925), + [anon_sym_BSLASHGlspl] = ACTIONS(4925), + [anon_sym_BSLASHGLSpl] = ACTIONS(4925), + [anon_sym_BSLASHglsdisp] = ACTIONS(4925), + [anon_sym_BSLASHglslink] = ACTIONS(4925), + [anon_sym_BSLASHglstext] = ACTIONS(4925), + [anon_sym_BSLASHGlstext] = ACTIONS(4925), + [anon_sym_BSLASHGLStext] = ACTIONS(4925), + [anon_sym_BSLASHglsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), + [anon_sym_BSLASHglsplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSplural] = ACTIONS(4925), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHglsname] = ACTIONS(4925), + [anon_sym_BSLASHGlsname] = ACTIONS(4925), + [anon_sym_BSLASHGLSname] = ACTIONS(4925), + [anon_sym_BSLASHglssymbol] = ACTIONS(4925), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), + [anon_sym_BSLASHglsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), + [anon_sym_BSLASHglsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), + [anon_sym_BSLASHglsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), + [anon_sym_BSLASHglsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), + [anon_sym_BSLASHglsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), + [anon_sym_BSLASHnewacronym] = ACTIONS(4925), + [anon_sym_BSLASHacrshort] = ACTIONS(4925), + [anon_sym_BSLASHAcrshort] = ACTIONS(4925), + [anon_sym_BSLASHACRshort] = ACTIONS(4925), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), + [anon_sym_BSLASHacrlong] = ACTIONS(4925), + [anon_sym_BSLASHAcrlong] = ACTIONS(4925), + [anon_sym_BSLASHACRlong] = ACTIONS(4925), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), + [anon_sym_BSLASHacrfull] = ACTIONS(4925), + [anon_sym_BSLASHAcrfull] = ACTIONS(4925), + [anon_sym_BSLASHACRfull] = ACTIONS(4925), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), + [anon_sym_BSLASHacs] = ACTIONS(4925), + [anon_sym_BSLASHAcs] = ACTIONS(4925), + [anon_sym_BSLASHacsp] = ACTIONS(4925), + [anon_sym_BSLASHAcsp] = ACTIONS(4925), + [anon_sym_BSLASHacl] = ACTIONS(4925), + [anon_sym_BSLASHAcl] = ACTIONS(4925), + [anon_sym_BSLASHaclp] = ACTIONS(4925), + [anon_sym_BSLASHAclp] = ACTIONS(4925), + [anon_sym_BSLASHacf] = ACTIONS(4925), + [anon_sym_BSLASHAcf] = ACTIONS(4925), + [anon_sym_BSLASHacfp] = ACTIONS(4925), + [anon_sym_BSLASHAcfp] = ACTIONS(4925), + [anon_sym_BSLASHac] = ACTIONS(4925), + [anon_sym_BSLASHAc] = ACTIONS(4925), + [anon_sym_BSLASHacp] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), + [anon_sym_BSLASHcolor] = ACTIONS(4925), + [anon_sym_BSLASHcolorbox] = ACTIONS(4925), + [anon_sym_BSLASHtextcolor] = ACTIONS(4925), + [anon_sym_BSLASHpagecolor] = ACTIONS(4925), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), + [anon_sym_BSLASHtext] = ACTIONS(4925), + [anon_sym_BSLASHintertext] = ACTIONS(4925), + [anon_sym_shortintertext] = ACTIONS(4925), + }, + [1141] = { + [sym_command_name] = ACTIONS(4921), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4921), + [anon_sym_LPAREN] = ACTIONS(4919), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_RBRACK] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4919), + [anon_sym_BSLASHpart] = ACTIONS(4921), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddpart] = ACTIONS(4921), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4919), + [anon_sym_BSLASHchapter] = ACTIONS(4921), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddchap] = ACTIONS(4921), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsection] = ACTIONS(4921), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddsec] = ACTIONS(4921), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubsection] = ACTIONS(4921), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4921), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHparagraph] = ACTIONS(4921), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4921), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4919), + [anon_sym_BSLASHitem] = ACTIONS(4921), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4919), + [anon_sym_LBRACE] = ACTIONS(4919), + [sym_word] = ACTIONS(4921), + [sym_placeholder] = ACTIONS(4919), + [anon_sym_PLUS] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4921), + [anon_sym_CARET] = ACTIONS(4921), + [anon_sym__] = ACTIONS(4921), + [anon_sym_LT] = ACTIONS(4921), + [anon_sym_GT] = ACTIONS(4921), + [anon_sym_BANG] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_COLON] = ACTIONS(4921), + [anon_sym_SQUOTE] = ACTIONS(4921), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4919), + [anon_sym_DOLLAR] = ACTIONS(4921), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), + [anon_sym_BSLASHbegin] = ACTIONS(4921), + [anon_sym_BSLASHusepackage] = ACTIONS(4921), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), + [anon_sym_BSLASHinclude] = ACTIONS(4921), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), + [anon_sym_BSLASHinput] = ACTIONS(4921), + [anon_sym_BSLASHsubfile] = ACTIONS(4921), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), + [anon_sym_BSLASHbibliography] = ACTIONS(4921), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), + [anon_sym_BSLASHincludesvg] = ACTIONS(4921), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), + [anon_sym_BSLASHimport] = ACTIONS(4921), + [anon_sym_BSLASHsubimport] = ACTIONS(4921), + [anon_sym_BSLASHinputfrom] = ACTIONS(4921), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), + [anon_sym_BSLASHincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHcaption] = ACTIONS(4921), + [anon_sym_BSLASHcite] = ACTIONS(4921), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCite] = ACTIONS(4921), + [anon_sym_BSLASHnocite] = ACTIONS(4921), + [anon_sym_BSLASHcitet] = ACTIONS(4921), + [anon_sym_BSLASHcitep] = ACTIONS(4921), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteauthor] = ACTIONS(4921), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitetitle] = ACTIONS(4921), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteyear] = ACTIONS(4921), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitedate] = ACTIONS(4921), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteurl] = ACTIONS(4921), + [anon_sym_BSLASHfullcite] = ACTIONS(4921), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), + [anon_sym_BSLASHcitealt] = ACTIONS(4921), + [anon_sym_BSLASHcitealp] = ACTIONS(4921), + [anon_sym_BSLASHcitetext] = ACTIONS(4921), + [anon_sym_BSLASHparencite] = ACTIONS(4921), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHParencite] = ACTIONS(4921), + [anon_sym_BSLASHfootcite] = ACTIONS(4921), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), + [anon_sym_BSLASHtextcite] = ACTIONS(4921), + [anon_sym_BSLASHTextcite] = ACTIONS(4921), + [anon_sym_BSLASHsmartcite] = ACTIONS(4921), + [anon_sym_BSLASHSmartcite] = ACTIONS(4921), + [anon_sym_BSLASHsupercite] = ACTIONS(4921), + [anon_sym_BSLASHautocite] = ACTIONS(4921), + [anon_sym_BSLASHAutocite] = ACTIONS(4921), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHvolcite] = ACTIONS(4921), + [anon_sym_BSLASHVolcite] = ACTIONS(4921), + [anon_sym_BSLASHpvolcite] = ACTIONS(4921), + [anon_sym_BSLASHPvolcite] = ACTIONS(4921), + [anon_sym_BSLASHfvolcite] = ACTIONS(4921), + [anon_sym_BSLASHftvolcite] = ACTIONS(4921), + [anon_sym_BSLASHsvolcite] = ACTIONS(4921), + [anon_sym_BSLASHSvolcite] = ACTIONS(4921), + [anon_sym_BSLASHtvolcite] = ACTIONS(4921), + [anon_sym_BSLASHTvolcite] = ACTIONS(4921), + [anon_sym_BSLASHavolcite] = ACTIONS(4921), + [anon_sym_BSLASHAvolcite] = ACTIONS(4921), + [anon_sym_BSLASHnotecite] = ACTIONS(4921), + [anon_sym_BSLASHNotecite] = ACTIONS(4921), + [anon_sym_BSLASHpnotecite] = ACTIONS(4921), + [anon_sym_BSLASHPnotecite] = ACTIONS(4921), + [anon_sym_BSLASHfnotecite] = ACTIONS(4921), + [anon_sym_BSLASHlabel] = ACTIONS(4921), + [anon_sym_BSLASHref] = ACTIONS(4921), + [anon_sym_BSLASHeqref] = ACTIONS(4921), + [anon_sym_BSLASHvref] = ACTIONS(4921), + [anon_sym_BSLASHVref] = ACTIONS(4921), + [anon_sym_BSLASHautoref] = ACTIONS(4921), + [anon_sym_BSLASHpageref] = ACTIONS(4921), + [anon_sym_BSLASHcref] = ACTIONS(4921), + [anon_sym_BSLASHCref] = ACTIONS(4921), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnameCref] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHlabelcref] = ACTIONS(4921), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCrefrange] = ACTIONS(4921), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnewlabel] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), + [anon_sym_BSLASHdef] = ACTIONS(4921), + [anon_sym_BSLASHlet] = ACTIONS(4921), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), + [anon_sym_BSLASHgls] = ACTIONS(4921), + [anon_sym_BSLASHGls] = ACTIONS(4921), + [anon_sym_BSLASHGLS] = ACTIONS(4921), + [anon_sym_BSLASHglspl] = ACTIONS(4921), + [anon_sym_BSLASHGlspl] = ACTIONS(4921), + [anon_sym_BSLASHGLSpl] = ACTIONS(4921), + [anon_sym_BSLASHglsdisp] = ACTIONS(4921), + [anon_sym_BSLASHglslink] = ACTIONS(4921), + [anon_sym_BSLASHglstext] = ACTIONS(4921), + [anon_sym_BSLASHGlstext] = ACTIONS(4921), + [anon_sym_BSLASHGLStext] = ACTIONS(4921), + [anon_sym_BSLASHglsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), + [anon_sym_BSLASHglsplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSplural] = ACTIONS(4921), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHglsname] = ACTIONS(4921), + [anon_sym_BSLASHGlsname] = ACTIONS(4921), + [anon_sym_BSLASHGLSname] = ACTIONS(4921), + [anon_sym_BSLASHglssymbol] = ACTIONS(4921), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), + [anon_sym_BSLASHglsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), + [anon_sym_BSLASHglsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), + [anon_sym_BSLASHglsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), + [anon_sym_BSLASHglsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), + [anon_sym_BSLASHglsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), + [anon_sym_BSLASHnewacronym] = ACTIONS(4921), + [anon_sym_BSLASHacrshort] = ACTIONS(4921), + [anon_sym_BSLASHAcrshort] = ACTIONS(4921), + [anon_sym_BSLASHACRshort] = ACTIONS(4921), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), + [anon_sym_BSLASHacrlong] = ACTIONS(4921), + [anon_sym_BSLASHAcrlong] = ACTIONS(4921), + [anon_sym_BSLASHACRlong] = ACTIONS(4921), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), + [anon_sym_BSLASHacrfull] = ACTIONS(4921), + [anon_sym_BSLASHAcrfull] = ACTIONS(4921), + [anon_sym_BSLASHACRfull] = ACTIONS(4921), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), + [anon_sym_BSLASHacs] = ACTIONS(4921), + [anon_sym_BSLASHAcs] = ACTIONS(4921), + [anon_sym_BSLASHacsp] = ACTIONS(4921), + [anon_sym_BSLASHAcsp] = ACTIONS(4921), + [anon_sym_BSLASHacl] = ACTIONS(4921), + [anon_sym_BSLASHAcl] = ACTIONS(4921), + [anon_sym_BSLASHaclp] = ACTIONS(4921), + [anon_sym_BSLASHAclp] = ACTIONS(4921), + [anon_sym_BSLASHacf] = ACTIONS(4921), + [anon_sym_BSLASHAcf] = ACTIONS(4921), + [anon_sym_BSLASHacfp] = ACTIONS(4921), + [anon_sym_BSLASHAcfp] = ACTIONS(4921), + [anon_sym_BSLASHac] = ACTIONS(4921), + [anon_sym_BSLASHAc] = ACTIONS(4921), + [anon_sym_BSLASHacp] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), + [anon_sym_BSLASHcolor] = ACTIONS(4921), + [anon_sym_BSLASHcolorbox] = ACTIONS(4921), + [anon_sym_BSLASHtextcolor] = ACTIONS(4921), + [anon_sym_BSLASHpagecolor] = ACTIONS(4921), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), + [anon_sym_BSLASHtext] = ACTIONS(4921), + [anon_sym_BSLASHintertext] = ACTIONS(4921), + [anon_sym_shortintertext] = ACTIONS(4921), + }, + [1142] = { + [sym_command_name] = ACTIONS(4891), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_LBRACK] = ACTIONS(4889), + [anon_sym_RBRACK] = ACTIONS(4889), + [anon_sym_COMMA] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4889), + [anon_sym_BSLASHpart] = ACTIONS(4891), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddpart] = ACTIONS(4891), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4889), + [anon_sym_BSLASHchapter] = ACTIONS(4891), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddchap] = ACTIONS(4891), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsection] = ACTIONS(4891), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddsec] = ACTIONS(4891), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubsection] = ACTIONS(4891), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4891), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHparagraph] = ACTIONS(4891), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4891), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4889), + [anon_sym_BSLASHitem] = ACTIONS(4891), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(4889), + [sym_word] = ACTIONS(4891), + [sym_placeholder] = ACTIONS(4889), + [anon_sym_PLUS] = ACTIONS(4891), + [anon_sym_DASH] = ACTIONS(4891), + [anon_sym_STAR] = ACTIONS(4891), + [anon_sym_SLASH] = ACTIONS(4891), + [anon_sym_CARET] = ACTIONS(4891), + [anon_sym__] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_BANG] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_SQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4889), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4889), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4889), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4889), + [anon_sym_BSLASHbegin] = ACTIONS(4891), + [anon_sym_BSLASHusepackage] = ACTIONS(4891), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4891), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4891), + [anon_sym_BSLASHinclude] = ACTIONS(4891), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4891), + [anon_sym_BSLASHinput] = ACTIONS(4891), + [anon_sym_BSLASHsubfile] = ACTIONS(4891), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4891), + [anon_sym_BSLASHbibliography] = ACTIONS(4891), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4891), + [anon_sym_BSLASHincludesvg] = ACTIONS(4891), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4891), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4891), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4891), + [anon_sym_BSLASHimport] = ACTIONS(4891), + [anon_sym_BSLASHsubimport] = ACTIONS(4891), + [anon_sym_BSLASHinputfrom] = ACTIONS(4891), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4891), + [anon_sym_BSLASHincludefrom] = ACTIONS(4891), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4891), + [anon_sym_BSLASHcaption] = ACTIONS(4891), + [anon_sym_BSLASHcite] = ACTIONS(4891), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCite] = ACTIONS(4891), + [anon_sym_BSLASHnocite] = ACTIONS(4891), + [anon_sym_BSLASHcitet] = ACTIONS(4891), + [anon_sym_BSLASHcitep] = ACTIONS(4891), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteauthor] = ACTIONS(4891), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4891), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitetitle] = ACTIONS(4891), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteyear] = ACTIONS(4891), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitedate] = ACTIONS(4891), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteurl] = ACTIONS(4891), + [anon_sym_BSLASHfullcite] = ACTIONS(4891), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4891), + [anon_sym_BSLASHcitealt] = ACTIONS(4891), + [anon_sym_BSLASHcitealp] = ACTIONS(4891), + [anon_sym_BSLASHcitetext] = ACTIONS(4891), + [anon_sym_BSLASHparencite] = ACTIONS(4891), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHParencite] = ACTIONS(4891), + [anon_sym_BSLASHfootcite] = ACTIONS(4891), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4891), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4891), + [anon_sym_BSLASHtextcite] = ACTIONS(4891), + [anon_sym_BSLASHTextcite] = ACTIONS(4891), + [anon_sym_BSLASHsmartcite] = ACTIONS(4891), + [anon_sym_BSLASHSmartcite] = ACTIONS(4891), + [anon_sym_BSLASHsupercite] = ACTIONS(4891), + [anon_sym_BSLASHautocite] = ACTIONS(4891), + [anon_sym_BSLASHAutocite] = ACTIONS(4891), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHvolcite] = ACTIONS(4891), + [anon_sym_BSLASHVolcite] = ACTIONS(4891), + [anon_sym_BSLASHpvolcite] = ACTIONS(4891), + [anon_sym_BSLASHPvolcite] = ACTIONS(4891), + [anon_sym_BSLASHfvolcite] = ACTIONS(4891), + [anon_sym_BSLASHftvolcite] = ACTIONS(4891), + [anon_sym_BSLASHsvolcite] = ACTIONS(4891), + [anon_sym_BSLASHSvolcite] = ACTIONS(4891), + [anon_sym_BSLASHtvolcite] = ACTIONS(4891), + [anon_sym_BSLASHTvolcite] = ACTIONS(4891), + [anon_sym_BSLASHavolcite] = ACTIONS(4891), + [anon_sym_BSLASHAvolcite] = ACTIONS(4891), + [anon_sym_BSLASHnotecite] = ACTIONS(4891), + [anon_sym_BSLASHNotecite] = ACTIONS(4891), + [anon_sym_BSLASHpnotecite] = ACTIONS(4891), + [anon_sym_BSLASHPnotecite] = ACTIONS(4891), + [anon_sym_BSLASHfnotecite] = ACTIONS(4891), + [anon_sym_BSLASHlabel] = ACTIONS(4891), + [anon_sym_BSLASHref] = ACTIONS(4891), + [anon_sym_BSLASHeqref] = ACTIONS(4891), + [anon_sym_BSLASHvref] = ACTIONS(4891), + [anon_sym_BSLASHVref] = ACTIONS(4891), + [anon_sym_BSLASHautoref] = ACTIONS(4891), + [anon_sym_BSLASHpageref] = ACTIONS(4891), + [anon_sym_BSLASHcref] = ACTIONS(4891), + [anon_sym_BSLASHCref] = ACTIONS(4891), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4889), + [anon_sym_BSLASHnamecref] = ACTIONS(4891), + [anon_sym_BSLASHnameCref] = ACTIONS(4891), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4891), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4891), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4891), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4891), + [anon_sym_BSLASHlabelcref] = ACTIONS(4891), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4891), + [anon_sym_BSLASHcrefrange] = ACTIONS(4891), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCrefrange] = ACTIONS(4891), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4889), + [anon_sym_BSLASHnewlabel] = ACTIONS(4891), + [anon_sym_BSLASHnewcommand] = ACTIONS(4891), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4889), + [anon_sym_BSLASHdef] = ACTIONS(4891), + [anon_sym_BSLASHlet] = ACTIONS(4891), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4891), + [anon_sym_BSLASHgls] = ACTIONS(4891), + [anon_sym_BSLASHGls] = ACTIONS(4891), + [anon_sym_BSLASHGLS] = ACTIONS(4891), + [anon_sym_BSLASHglspl] = ACTIONS(4891), + [anon_sym_BSLASHGlspl] = ACTIONS(4891), + [anon_sym_BSLASHGLSpl] = ACTIONS(4891), + [anon_sym_BSLASHglsdisp] = ACTIONS(4891), + [anon_sym_BSLASHglslink] = ACTIONS(4891), + [anon_sym_BSLASHglstext] = ACTIONS(4891), + [anon_sym_BSLASHGlstext] = ACTIONS(4891), + [anon_sym_BSLASHGLStext] = ACTIONS(4891), + [anon_sym_BSLASHglsfirst] = ACTIONS(4891), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4891), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4891), + [anon_sym_BSLASHglsplural] = ACTIONS(4891), + [anon_sym_BSLASHGlsplural] = ACTIONS(4891), + [anon_sym_BSLASHGLSplural] = ACTIONS(4891), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHglsname] = ACTIONS(4891), + [anon_sym_BSLASHGlsname] = ACTIONS(4891), + [anon_sym_BSLASHGLSname] = ACTIONS(4891), + [anon_sym_BSLASHglssymbol] = ACTIONS(4891), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4891), + [anon_sym_BSLASHglsdesc] = ACTIONS(4891), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4891), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4891), + [anon_sym_BSLASHglsuseri] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4891), + [anon_sym_BSLASHglsuserii] = ACTIONS(4891), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4891), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4891), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4891), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4891), + [anon_sym_BSLASHglsuserv] = ACTIONS(4891), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4891), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4891), + [anon_sym_BSLASHglsuservi] = ACTIONS(4891), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4891), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4891), + [anon_sym_BSLASHnewacronym] = ACTIONS(4891), + [anon_sym_BSLASHacrshort] = ACTIONS(4891), + [anon_sym_BSLASHAcrshort] = ACTIONS(4891), + [anon_sym_BSLASHACRshort] = ACTIONS(4891), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4891), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4891), + [anon_sym_BSLASHacrlong] = ACTIONS(4891), + [anon_sym_BSLASHAcrlong] = ACTIONS(4891), + [anon_sym_BSLASHACRlong] = ACTIONS(4891), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4891), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4891), + [anon_sym_BSLASHacrfull] = ACTIONS(4891), + [anon_sym_BSLASHAcrfull] = ACTIONS(4891), + [anon_sym_BSLASHACRfull] = ACTIONS(4891), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4891), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4891), + [anon_sym_BSLASHacs] = ACTIONS(4891), + [anon_sym_BSLASHAcs] = ACTIONS(4891), + [anon_sym_BSLASHacsp] = ACTIONS(4891), + [anon_sym_BSLASHAcsp] = ACTIONS(4891), + [anon_sym_BSLASHacl] = ACTIONS(4891), + [anon_sym_BSLASHAcl] = ACTIONS(4891), + [anon_sym_BSLASHaclp] = ACTIONS(4891), + [anon_sym_BSLASHAclp] = ACTIONS(4891), + [anon_sym_BSLASHacf] = ACTIONS(4891), + [anon_sym_BSLASHAcf] = ACTIONS(4891), + [anon_sym_BSLASHacfp] = ACTIONS(4891), + [anon_sym_BSLASHAcfp] = ACTIONS(4891), + [anon_sym_BSLASHac] = ACTIONS(4891), + [anon_sym_BSLASHAc] = ACTIONS(4891), + [anon_sym_BSLASHacp] = ACTIONS(4891), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4891), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4891), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4891), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4891), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4891), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4891), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4891), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4891), + [anon_sym_BSLASHcolor] = ACTIONS(4891), + [anon_sym_BSLASHcolorbox] = ACTIONS(4891), + [anon_sym_BSLASHtextcolor] = ACTIONS(4891), + [anon_sym_BSLASHpagecolor] = ACTIONS(4891), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4891), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4891), + [anon_sym_BSLASHtext] = ACTIONS(4891), + [anon_sym_BSLASHintertext] = ACTIONS(4891), + [anon_sym_shortintertext] = ACTIONS(4891), + }, + [1143] = { + [sym_command_name] = ACTIONS(5285), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5285), + [anon_sym_LPAREN] = ACTIONS(5283), + [anon_sym_RPAREN] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(5283), + [anon_sym_RBRACK] = ACTIONS(5283), + [anon_sym_COMMA] = ACTIONS(5283), + [anon_sym_EQ] = ACTIONS(5283), + [anon_sym_BSLASHpart] = ACTIONS(5285), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddpart] = ACTIONS(5285), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5283), + [anon_sym_BSLASHchapter] = ACTIONS(5285), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddchap] = ACTIONS(5285), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsection] = ACTIONS(5285), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHaddsec] = ACTIONS(5285), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubsection] = ACTIONS(5285), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5285), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5283), + [anon_sym_BSLASHparagraph] = ACTIONS(5285), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5283), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5285), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5283), + [anon_sym_BSLASHitem] = ACTIONS(5285), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5283), + [anon_sym_LBRACE] = ACTIONS(5283), + [sym_word] = ACTIONS(5285), + [sym_placeholder] = ACTIONS(5283), + [anon_sym_PLUS] = ACTIONS(5285), + [anon_sym_DASH] = ACTIONS(5285), + [anon_sym_STAR] = ACTIONS(5285), + [anon_sym_SLASH] = ACTIONS(5285), + [anon_sym_CARET] = ACTIONS(5285), + [anon_sym__] = ACTIONS(5285), + [anon_sym_LT] = ACTIONS(5285), + [anon_sym_GT] = ACTIONS(5285), + [anon_sym_BANG] = ACTIONS(5285), + [anon_sym_PIPE] = ACTIONS(5285), + [anon_sym_COLON] = ACTIONS(5285), + [anon_sym_SQUOTE] = ACTIONS(5285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5283), + [anon_sym_DOLLAR] = ACTIONS(5285), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), + [anon_sym_BSLASHbegin] = ACTIONS(5285), + [anon_sym_BSLASHusepackage] = ACTIONS(5285), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), + [anon_sym_BSLASHinclude] = ACTIONS(5285), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), + [anon_sym_BSLASHinput] = ACTIONS(5285), + [anon_sym_BSLASHsubfile] = ACTIONS(5285), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), + [anon_sym_BSLASHbibliography] = ACTIONS(5285), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), + [anon_sym_BSLASHincludesvg] = ACTIONS(5285), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), + [anon_sym_BSLASHimport] = ACTIONS(5285), + [anon_sym_BSLASHsubimport] = ACTIONS(5285), + [anon_sym_BSLASHinputfrom] = ACTIONS(5285), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), + [anon_sym_BSLASHincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHcaption] = ACTIONS(5285), + [anon_sym_BSLASHcite] = ACTIONS(5285), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCite] = ACTIONS(5285), + [anon_sym_BSLASHnocite] = ACTIONS(5285), + [anon_sym_BSLASHcitet] = ACTIONS(5285), + [anon_sym_BSLASHcitep] = ACTIONS(5285), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteauthor] = ACTIONS(5285), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitetitle] = ACTIONS(5285), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteyear] = ACTIONS(5285), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitedate] = ACTIONS(5285), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteurl] = ACTIONS(5285), + [anon_sym_BSLASHfullcite] = ACTIONS(5285), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), + [anon_sym_BSLASHcitealt] = ACTIONS(5285), + [anon_sym_BSLASHcitealp] = ACTIONS(5285), + [anon_sym_BSLASHcitetext] = ACTIONS(5285), + [anon_sym_BSLASHparencite] = ACTIONS(5285), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHParencite] = ACTIONS(5285), + [anon_sym_BSLASHfootcite] = ACTIONS(5285), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), + [anon_sym_BSLASHtextcite] = ACTIONS(5285), + [anon_sym_BSLASHTextcite] = ACTIONS(5285), + [anon_sym_BSLASHsmartcite] = ACTIONS(5285), + [anon_sym_BSLASHSmartcite] = ACTIONS(5285), + [anon_sym_BSLASHsupercite] = ACTIONS(5285), + [anon_sym_BSLASHautocite] = ACTIONS(5285), + [anon_sym_BSLASHAutocite] = ACTIONS(5285), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHvolcite] = ACTIONS(5285), + [anon_sym_BSLASHVolcite] = ACTIONS(5285), + [anon_sym_BSLASHpvolcite] = ACTIONS(5285), + [anon_sym_BSLASHPvolcite] = ACTIONS(5285), + [anon_sym_BSLASHfvolcite] = ACTIONS(5285), + [anon_sym_BSLASHftvolcite] = ACTIONS(5285), + [anon_sym_BSLASHsvolcite] = ACTIONS(5285), + [anon_sym_BSLASHSvolcite] = ACTIONS(5285), + [anon_sym_BSLASHtvolcite] = ACTIONS(5285), + [anon_sym_BSLASHTvolcite] = ACTIONS(5285), + [anon_sym_BSLASHavolcite] = ACTIONS(5285), + [anon_sym_BSLASHAvolcite] = ACTIONS(5285), + [anon_sym_BSLASHnotecite] = ACTIONS(5285), + [anon_sym_BSLASHNotecite] = ACTIONS(5285), + [anon_sym_BSLASHpnotecite] = ACTIONS(5285), + [anon_sym_BSLASHPnotecite] = ACTIONS(5285), + [anon_sym_BSLASHfnotecite] = ACTIONS(5285), + [anon_sym_BSLASHlabel] = ACTIONS(5285), + [anon_sym_BSLASHref] = ACTIONS(5285), + [anon_sym_BSLASHeqref] = ACTIONS(5285), + [anon_sym_BSLASHvref] = ACTIONS(5285), + [anon_sym_BSLASHVref] = ACTIONS(5285), + [anon_sym_BSLASHautoref] = ACTIONS(5285), + [anon_sym_BSLASHpageref] = ACTIONS(5285), + [anon_sym_BSLASHcref] = ACTIONS(5285), + [anon_sym_BSLASHCref] = ACTIONS(5285), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnameCref] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHlabelcref] = ACTIONS(5285), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCrefrange] = ACTIONS(5285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnewlabel] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), + [anon_sym_BSLASHdef] = ACTIONS(5285), + [anon_sym_BSLASHlet] = ACTIONS(5285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), + [anon_sym_BSLASHgls] = ACTIONS(5285), + [anon_sym_BSLASHGls] = ACTIONS(5285), + [anon_sym_BSLASHGLS] = ACTIONS(5285), + [anon_sym_BSLASHglspl] = ACTIONS(5285), + [anon_sym_BSLASHGlspl] = ACTIONS(5285), + [anon_sym_BSLASHGLSpl] = ACTIONS(5285), + [anon_sym_BSLASHglsdisp] = ACTIONS(5285), + [anon_sym_BSLASHglslink] = ACTIONS(5285), + [anon_sym_BSLASHglstext] = ACTIONS(5285), + [anon_sym_BSLASHGlstext] = ACTIONS(5285), + [anon_sym_BSLASHGLStext] = ACTIONS(5285), + [anon_sym_BSLASHglsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), + [anon_sym_BSLASHglsplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSplural] = ACTIONS(5285), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHglsname] = ACTIONS(5285), + [anon_sym_BSLASHGlsname] = ACTIONS(5285), + [anon_sym_BSLASHGLSname] = ACTIONS(5285), + [anon_sym_BSLASHglssymbol] = ACTIONS(5285), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), + [anon_sym_BSLASHglsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), + [anon_sym_BSLASHglsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), + [anon_sym_BSLASHglsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), + [anon_sym_BSLASHglsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), + [anon_sym_BSLASHglsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), + [anon_sym_BSLASHnewacronym] = ACTIONS(5285), + [anon_sym_BSLASHacrshort] = ACTIONS(5285), + [anon_sym_BSLASHAcrshort] = ACTIONS(5285), + [anon_sym_BSLASHACRshort] = ACTIONS(5285), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), + [anon_sym_BSLASHacrlong] = ACTIONS(5285), + [anon_sym_BSLASHAcrlong] = ACTIONS(5285), + [anon_sym_BSLASHACRlong] = ACTIONS(5285), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), + [anon_sym_BSLASHacrfull] = ACTIONS(5285), + [anon_sym_BSLASHAcrfull] = ACTIONS(5285), + [anon_sym_BSLASHACRfull] = ACTIONS(5285), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), + [anon_sym_BSLASHacs] = ACTIONS(5285), + [anon_sym_BSLASHAcs] = ACTIONS(5285), + [anon_sym_BSLASHacsp] = ACTIONS(5285), + [anon_sym_BSLASHAcsp] = ACTIONS(5285), + [anon_sym_BSLASHacl] = ACTIONS(5285), + [anon_sym_BSLASHAcl] = ACTIONS(5285), + [anon_sym_BSLASHaclp] = ACTIONS(5285), + [anon_sym_BSLASHAclp] = ACTIONS(5285), + [anon_sym_BSLASHacf] = ACTIONS(5285), + [anon_sym_BSLASHAcf] = ACTIONS(5285), + [anon_sym_BSLASHacfp] = ACTIONS(5285), + [anon_sym_BSLASHAcfp] = ACTIONS(5285), + [anon_sym_BSLASHac] = ACTIONS(5285), + [anon_sym_BSLASHAc] = ACTIONS(5285), + [anon_sym_BSLASHacp] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), + [anon_sym_BSLASHcolor] = ACTIONS(5285), + [anon_sym_BSLASHcolorbox] = ACTIONS(5285), + [anon_sym_BSLASHtextcolor] = ACTIONS(5285), + [anon_sym_BSLASHpagecolor] = ACTIONS(5285), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), + [anon_sym_BSLASHtext] = ACTIONS(5285), + [anon_sym_BSLASHintertext] = ACTIONS(5285), + [anon_sym_shortintertext] = ACTIONS(5285), + }, + [1144] = { + [sym_command_name] = ACTIONS(5289), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5289), + [anon_sym_LPAREN] = ACTIONS(5287), + [anon_sym_RPAREN] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(5287), + [anon_sym_RBRACK] = ACTIONS(5287), + [anon_sym_COMMA] = ACTIONS(5287), + [anon_sym_EQ] = ACTIONS(5287), + [anon_sym_BSLASHpart] = ACTIONS(5289), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddpart] = ACTIONS(5289), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5287), + [anon_sym_BSLASHchapter] = ACTIONS(5289), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddchap] = ACTIONS(5289), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsection] = ACTIONS(5289), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHaddsec] = ACTIONS(5289), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubsection] = ACTIONS(5289), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5289), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5287), + [anon_sym_BSLASHparagraph] = ACTIONS(5289), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5287), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5289), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5287), + [anon_sym_BSLASHitem] = ACTIONS(5289), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5287), + [anon_sym_LBRACE] = ACTIONS(5287), + [sym_word] = ACTIONS(5289), + [sym_placeholder] = ACTIONS(5287), + [anon_sym_PLUS] = ACTIONS(5289), + [anon_sym_DASH] = ACTIONS(5289), + [anon_sym_STAR] = ACTIONS(5289), + [anon_sym_SLASH] = ACTIONS(5289), + [anon_sym_CARET] = ACTIONS(5289), + [anon_sym__] = ACTIONS(5289), + [anon_sym_LT] = ACTIONS(5289), + [anon_sym_GT] = ACTIONS(5289), + [anon_sym_BANG] = ACTIONS(5289), + [anon_sym_PIPE] = ACTIONS(5289), + [anon_sym_COLON] = ACTIONS(5289), + [anon_sym_SQUOTE] = ACTIONS(5289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5287), + [anon_sym_DOLLAR] = ACTIONS(5289), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), + [anon_sym_BSLASHbegin] = ACTIONS(5289), + [anon_sym_BSLASHusepackage] = ACTIONS(5289), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), + [anon_sym_BSLASHinclude] = ACTIONS(5289), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), + [anon_sym_BSLASHinput] = ACTIONS(5289), + [anon_sym_BSLASHsubfile] = ACTIONS(5289), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), + [anon_sym_BSLASHbibliography] = ACTIONS(5289), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), + [anon_sym_BSLASHincludesvg] = ACTIONS(5289), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), + [anon_sym_BSLASHimport] = ACTIONS(5289), + [anon_sym_BSLASHsubimport] = ACTIONS(5289), + [anon_sym_BSLASHinputfrom] = ACTIONS(5289), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), + [anon_sym_BSLASHincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHcaption] = ACTIONS(5289), + [anon_sym_BSLASHcite] = ACTIONS(5289), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCite] = ACTIONS(5289), + [anon_sym_BSLASHnocite] = ACTIONS(5289), + [anon_sym_BSLASHcitet] = ACTIONS(5289), + [anon_sym_BSLASHcitep] = ACTIONS(5289), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteauthor] = ACTIONS(5289), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitetitle] = ACTIONS(5289), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteyear] = ACTIONS(5289), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitedate] = ACTIONS(5289), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteurl] = ACTIONS(5289), + [anon_sym_BSLASHfullcite] = ACTIONS(5289), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), + [anon_sym_BSLASHcitealt] = ACTIONS(5289), + [anon_sym_BSLASHcitealp] = ACTIONS(5289), + [anon_sym_BSLASHcitetext] = ACTIONS(5289), + [anon_sym_BSLASHparencite] = ACTIONS(5289), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHParencite] = ACTIONS(5289), + [anon_sym_BSLASHfootcite] = ACTIONS(5289), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), + [anon_sym_BSLASHtextcite] = ACTIONS(5289), + [anon_sym_BSLASHTextcite] = ACTIONS(5289), + [anon_sym_BSLASHsmartcite] = ACTIONS(5289), + [anon_sym_BSLASHSmartcite] = ACTIONS(5289), + [anon_sym_BSLASHsupercite] = ACTIONS(5289), + [anon_sym_BSLASHautocite] = ACTIONS(5289), + [anon_sym_BSLASHAutocite] = ACTIONS(5289), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHvolcite] = ACTIONS(5289), + [anon_sym_BSLASHVolcite] = ACTIONS(5289), + [anon_sym_BSLASHpvolcite] = ACTIONS(5289), + [anon_sym_BSLASHPvolcite] = ACTIONS(5289), + [anon_sym_BSLASHfvolcite] = ACTIONS(5289), + [anon_sym_BSLASHftvolcite] = ACTIONS(5289), + [anon_sym_BSLASHsvolcite] = ACTIONS(5289), + [anon_sym_BSLASHSvolcite] = ACTIONS(5289), + [anon_sym_BSLASHtvolcite] = ACTIONS(5289), + [anon_sym_BSLASHTvolcite] = ACTIONS(5289), + [anon_sym_BSLASHavolcite] = ACTIONS(5289), + [anon_sym_BSLASHAvolcite] = ACTIONS(5289), + [anon_sym_BSLASHnotecite] = ACTIONS(5289), + [anon_sym_BSLASHNotecite] = ACTIONS(5289), + [anon_sym_BSLASHpnotecite] = ACTIONS(5289), + [anon_sym_BSLASHPnotecite] = ACTIONS(5289), + [anon_sym_BSLASHfnotecite] = ACTIONS(5289), + [anon_sym_BSLASHlabel] = ACTIONS(5289), + [anon_sym_BSLASHref] = ACTIONS(5289), + [anon_sym_BSLASHeqref] = ACTIONS(5289), + [anon_sym_BSLASHvref] = ACTIONS(5289), + [anon_sym_BSLASHVref] = ACTIONS(5289), + [anon_sym_BSLASHautoref] = ACTIONS(5289), + [anon_sym_BSLASHpageref] = ACTIONS(5289), + [anon_sym_BSLASHcref] = ACTIONS(5289), + [anon_sym_BSLASHCref] = ACTIONS(5289), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnameCref] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHlabelcref] = ACTIONS(5289), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCrefrange] = ACTIONS(5289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnewlabel] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), + [anon_sym_BSLASHdef] = ACTIONS(5289), + [anon_sym_BSLASHlet] = ACTIONS(5289), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), + [anon_sym_BSLASHgls] = ACTIONS(5289), + [anon_sym_BSLASHGls] = ACTIONS(5289), + [anon_sym_BSLASHGLS] = ACTIONS(5289), + [anon_sym_BSLASHglspl] = ACTIONS(5289), + [anon_sym_BSLASHGlspl] = ACTIONS(5289), + [anon_sym_BSLASHGLSpl] = ACTIONS(5289), + [anon_sym_BSLASHglsdisp] = ACTIONS(5289), + [anon_sym_BSLASHglslink] = ACTIONS(5289), + [anon_sym_BSLASHglstext] = ACTIONS(5289), + [anon_sym_BSLASHGlstext] = ACTIONS(5289), + [anon_sym_BSLASHGLStext] = ACTIONS(5289), + [anon_sym_BSLASHglsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), + [anon_sym_BSLASHglsplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSplural] = ACTIONS(5289), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHglsname] = ACTIONS(5289), + [anon_sym_BSLASHGlsname] = ACTIONS(5289), + [anon_sym_BSLASHGLSname] = ACTIONS(5289), + [anon_sym_BSLASHglssymbol] = ACTIONS(5289), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), + [anon_sym_BSLASHglsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), + [anon_sym_BSLASHglsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), + [anon_sym_BSLASHglsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), + [anon_sym_BSLASHglsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), + [anon_sym_BSLASHglsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), + [anon_sym_BSLASHnewacronym] = ACTIONS(5289), + [anon_sym_BSLASHacrshort] = ACTIONS(5289), + [anon_sym_BSLASHAcrshort] = ACTIONS(5289), + [anon_sym_BSLASHACRshort] = ACTIONS(5289), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), + [anon_sym_BSLASHacrlong] = ACTIONS(5289), + [anon_sym_BSLASHAcrlong] = ACTIONS(5289), + [anon_sym_BSLASHACRlong] = ACTIONS(5289), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), + [anon_sym_BSLASHacrfull] = ACTIONS(5289), + [anon_sym_BSLASHAcrfull] = ACTIONS(5289), + [anon_sym_BSLASHACRfull] = ACTIONS(5289), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), + [anon_sym_BSLASHacs] = ACTIONS(5289), + [anon_sym_BSLASHAcs] = ACTIONS(5289), + [anon_sym_BSLASHacsp] = ACTIONS(5289), + [anon_sym_BSLASHAcsp] = ACTIONS(5289), + [anon_sym_BSLASHacl] = ACTIONS(5289), + [anon_sym_BSLASHAcl] = ACTIONS(5289), + [anon_sym_BSLASHaclp] = ACTIONS(5289), + [anon_sym_BSLASHAclp] = ACTIONS(5289), + [anon_sym_BSLASHacf] = ACTIONS(5289), + [anon_sym_BSLASHAcf] = ACTIONS(5289), + [anon_sym_BSLASHacfp] = ACTIONS(5289), + [anon_sym_BSLASHAcfp] = ACTIONS(5289), + [anon_sym_BSLASHac] = ACTIONS(5289), + [anon_sym_BSLASHAc] = ACTIONS(5289), + [anon_sym_BSLASHacp] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), + [anon_sym_BSLASHcolor] = ACTIONS(5289), + [anon_sym_BSLASHcolorbox] = ACTIONS(5289), + [anon_sym_BSLASHtextcolor] = ACTIONS(5289), + [anon_sym_BSLASHpagecolor] = ACTIONS(5289), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), + [anon_sym_BSLASHtext] = ACTIONS(5289), + [anon_sym_BSLASHintertext] = ACTIONS(5289), + [anon_sym_shortintertext] = ACTIONS(5289), + }, + [1145] = { + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_LPAREN] = ACTIONS(5291), + [anon_sym_RPAREN] = ACTIONS(5291), + [anon_sym_LBRACK] = ACTIONS(5291), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_BSLASHpart] = ACTIONS(5293), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddpart] = ACTIONS(5293), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5291), + [anon_sym_BSLASHchapter] = ACTIONS(5293), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddchap] = ACTIONS(5293), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsection] = ACTIONS(5293), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHaddsec] = ACTIONS(5293), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5293), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5291), + [anon_sym_BSLASHparagraph] = ACTIONS(5293), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5293), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5291), + [anon_sym_BSLASHitem] = ACTIONS(5293), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5291), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5291), + [anon_sym_DOLLAR] = ACTIONS(5293), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5291), + [anon_sym_BSLASHbegin] = ACTIONS(5293), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + [anon_sym_BSLASHtext] = ACTIONS(5293), + [anon_sym_BSLASHintertext] = ACTIONS(5293), + [anon_sym_shortintertext] = ACTIONS(5293), + }, + [1146] = { + [sym_command_name] = ACTIONS(5297), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5297), + [anon_sym_LPAREN] = ACTIONS(5295), + [anon_sym_RPAREN] = ACTIONS(5295), + [anon_sym_LBRACK] = ACTIONS(5295), + [anon_sym_RBRACK] = ACTIONS(5295), + [anon_sym_COMMA] = ACTIONS(5295), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_BSLASHpart] = ACTIONS(5297), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddpart] = ACTIONS(5297), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5295), + [anon_sym_BSLASHchapter] = ACTIONS(5297), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddchap] = ACTIONS(5297), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsection] = ACTIONS(5297), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHaddsec] = ACTIONS(5297), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubsection] = ACTIONS(5297), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5297), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5295), + [anon_sym_BSLASHparagraph] = ACTIONS(5297), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5295), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5297), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5295), + [anon_sym_BSLASHitem] = ACTIONS(5297), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5295), + [anon_sym_LBRACE] = ACTIONS(5295), + [sym_word] = ACTIONS(5297), + [sym_placeholder] = ACTIONS(5295), + [anon_sym_PLUS] = ACTIONS(5297), + [anon_sym_DASH] = ACTIONS(5297), + [anon_sym_STAR] = ACTIONS(5297), + [anon_sym_SLASH] = ACTIONS(5297), + [anon_sym_CARET] = ACTIONS(5297), + [anon_sym__] = ACTIONS(5297), + [anon_sym_LT] = ACTIONS(5297), + [anon_sym_GT] = ACTIONS(5297), + [anon_sym_BANG] = ACTIONS(5297), + [anon_sym_PIPE] = ACTIONS(5297), + [anon_sym_COLON] = ACTIONS(5297), + [anon_sym_SQUOTE] = ACTIONS(5297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5295), + [anon_sym_DOLLAR] = ACTIONS(5297), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), + [anon_sym_BSLASHbegin] = ACTIONS(5297), + [anon_sym_BSLASHusepackage] = ACTIONS(5297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), + [anon_sym_BSLASHinclude] = ACTIONS(5297), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), + [anon_sym_BSLASHinput] = ACTIONS(5297), + [anon_sym_BSLASHsubfile] = ACTIONS(5297), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), + [anon_sym_BSLASHbibliography] = ACTIONS(5297), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), + [anon_sym_BSLASHincludesvg] = ACTIONS(5297), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), + [anon_sym_BSLASHimport] = ACTIONS(5297), + [anon_sym_BSLASHsubimport] = ACTIONS(5297), + [anon_sym_BSLASHinputfrom] = ACTIONS(5297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), + [anon_sym_BSLASHincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHcaption] = ACTIONS(5297), + [anon_sym_BSLASHcite] = ACTIONS(5297), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCite] = ACTIONS(5297), + [anon_sym_BSLASHnocite] = ACTIONS(5297), + [anon_sym_BSLASHcitet] = ACTIONS(5297), + [anon_sym_BSLASHcitep] = ACTIONS(5297), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteauthor] = ACTIONS(5297), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitetitle] = ACTIONS(5297), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteyear] = ACTIONS(5297), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitedate] = ACTIONS(5297), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteurl] = ACTIONS(5297), + [anon_sym_BSLASHfullcite] = ACTIONS(5297), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), + [anon_sym_BSLASHcitealt] = ACTIONS(5297), + [anon_sym_BSLASHcitealp] = ACTIONS(5297), + [anon_sym_BSLASHcitetext] = ACTIONS(5297), + [anon_sym_BSLASHparencite] = ACTIONS(5297), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHParencite] = ACTIONS(5297), + [anon_sym_BSLASHfootcite] = ACTIONS(5297), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), + [anon_sym_BSLASHtextcite] = ACTIONS(5297), + [anon_sym_BSLASHTextcite] = ACTIONS(5297), + [anon_sym_BSLASHsmartcite] = ACTIONS(5297), + [anon_sym_BSLASHSmartcite] = ACTIONS(5297), + [anon_sym_BSLASHsupercite] = ACTIONS(5297), + [anon_sym_BSLASHautocite] = ACTIONS(5297), + [anon_sym_BSLASHAutocite] = ACTIONS(5297), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHvolcite] = ACTIONS(5297), + [anon_sym_BSLASHVolcite] = ACTIONS(5297), + [anon_sym_BSLASHpvolcite] = ACTIONS(5297), + [anon_sym_BSLASHPvolcite] = ACTIONS(5297), + [anon_sym_BSLASHfvolcite] = ACTIONS(5297), + [anon_sym_BSLASHftvolcite] = ACTIONS(5297), + [anon_sym_BSLASHsvolcite] = ACTIONS(5297), + [anon_sym_BSLASHSvolcite] = ACTIONS(5297), + [anon_sym_BSLASHtvolcite] = ACTIONS(5297), + [anon_sym_BSLASHTvolcite] = ACTIONS(5297), + [anon_sym_BSLASHavolcite] = ACTIONS(5297), + [anon_sym_BSLASHAvolcite] = ACTIONS(5297), + [anon_sym_BSLASHnotecite] = ACTIONS(5297), + [anon_sym_BSLASHNotecite] = ACTIONS(5297), + [anon_sym_BSLASHpnotecite] = ACTIONS(5297), + [anon_sym_BSLASHPnotecite] = ACTIONS(5297), + [anon_sym_BSLASHfnotecite] = ACTIONS(5297), + [anon_sym_BSLASHlabel] = ACTIONS(5297), + [anon_sym_BSLASHref] = ACTIONS(5297), + [anon_sym_BSLASHeqref] = ACTIONS(5297), + [anon_sym_BSLASHvref] = ACTIONS(5297), + [anon_sym_BSLASHVref] = ACTIONS(5297), + [anon_sym_BSLASHautoref] = ACTIONS(5297), + [anon_sym_BSLASHpageref] = ACTIONS(5297), + [anon_sym_BSLASHcref] = ACTIONS(5297), + [anon_sym_BSLASHCref] = ACTIONS(5297), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnameCref] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHlabelcref] = ACTIONS(5297), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCrefrange] = ACTIONS(5297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnewlabel] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), + [anon_sym_BSLASHdef] = ACTIONS(5297), + [anon_sym_BSLASHlet] = ACTIONS(5297), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), + [anon_sym_BSLASHgls] = ACTIONS(5297), + [anon_sym_BSLASHGls] = ACTIONS(5297), + [anon_sym_BSLASHGLS] = ACTIONS(5297), + [anon_sym_BSLASHglspl] = ACTIONS(5297), + [anon_sym_BSLASHGlspl] = ACTIONS(5297), + [anon_sym_BSLASHGLSpl] = ACTIONS(5297), + [anon_sym_BSLASHglsdisp] = ACTIONS(5297), + [anon_sym_BSLASHglslink] = ACTIONS(5297), + [anon_sym_BSLASHglstext] = ACTIONS(5297), + [anon_sym_BSLASHGlstext] = ACTIONS(5297), + [anon_sym_BSLASHGLStext] = ACTIONS(5297), + [anon_sym_BSLASHglsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), + [anon_sym_BSLASHglsplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSplural] = ACTIONS(5297), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHglsname] = ACTIONS(5297), + [anon_sym_BSLASHGlsname] = ACTIONS(5297), + [anon_sym_BSLASHGLSname] = ACTIONS(5297), + [anon_sym_BSLASHglssymbol] = ACTIONS(5297), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), + [anon_sym_BSLASHglsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), + [anon_sym_BSLASHglsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), + [anon_sym_BSLASHglsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), + [anon_sym_BSLASHglsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), + [anon_sym_BSLASHglsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), + [anon_sym_BSLASHnewacronym] = ACTIONS(5297), + [anon_sym_BSLASHacrshort] = ACTIONS(5297), + [anon_sym_BSLASHAcrshort] = ACTIONS(5297), + [anon_sym_BSLASHACRshort] = ACTIONS(5297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), + [anon_sym_BSLASHacrlong] = ACTIONS(5297), + [anon_sym_BSLASHAcrlong] = ACTIONS(5297), + [anon_sym_BSLASHACRlong] = ACTIONS(5297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), + [anon_sym_BSLASHacrfull] = ACTIONS(5297), + [anon_sym_BSLASHAcrfull] = ACTIONS(5297), + [anon_sym_BSLASHACRfull] = ACTIONS(5297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), + [anon_sym_BSLASHacs] = ACTIONS(5297), + [anon_sym_BSLASHAcs] = ACTIONS(5297), + [anon_sym_BSLASHacsp] = ACTIONS(5297), + [anon_sym_BSLASHAcsp] = ACTIONS(5297), + [anon_sym_BSLASHacl] = ACTIONS(5297), + [anon_sym_BSLASHAcl] = ACTIONS(5297), + [anon_sym_BSLASHaclp] = ACTIONS(5297), + [anon_sym_BSLASHAclp] = ACTIONS(5297), + [anon_sym_BSLASHacf] = ACTIONS(5297), + [anon_sym_BSLASHAcf] = ACTIONS(5297), + [anon_sym_BSLASHacfp] = ACTIONS(5297), + [anon_sym_BSLASHAcfp] = ACTIONS(5297), + [anon_sym_BSLASHac] = ACTIONS(5297), + [anon_sym_BSLASHAc] = ACTIONS(5297), + [anon_sym_BSLASHacp] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), + [anon_sym_BSLASHcolor] = ACTIONS(5297), + [anon_sym_BSLASHcolorbox] = ACTIONS(5297), + [anon_sym_BSLASHtextcolor] = ACTIONS(5297), + [anon_sym_BSLASHpagecolor] = ACTIONS(5297), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), + [anon_sym_BSLASHtext] = ACTIONS(5297), + [anon_sym_BSLASHintertext] = ACTIONS(5297), + [anon_sym_shortintertext] = ACTIONS(5297), + }, + [1147] = { + [sym_command_name] = ACTIONS(5301), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5301), + [anon_sym_LPAREN] = ACTIONS(5299), + [anon_sym_RPAREN] = ACTIONS(5299), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym_RBRACK] = ACTIONS(5299), + [anon_sym_COMMA] = ACTIONS(5299), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_BSLASHpart] = ACTIONS(5301), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddpart] = ACTIONS(5301), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5299), + [anon_sym_BSLASHchapter] = ACTIONS(5301), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddchap] = ACTIONS(5301), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsection] = ACTIONS(5301), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHaddsec] = ACTIONS(5301), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubsection] = ACTIONS(5301), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5301), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5299), + [anon_sym_BSLASHparagraph] = ACTIONS(5301), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5299), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5301), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5299), + [anon_sym_BSLASHitem] = ACTIONS(5301), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5299), + [anon_sym_LBRACE] = ACTIONS(5299), + [sym_word] = ACTIONS(5301), + [sym_placeholder] = ACTIONS(5299), + [anon_sym_PLUS] = ACTIONS(5301), + [anon_sym_DASH] = ACTIONS(5301), + [anon_sym_STAR] = ACTIONS(5301), + [anon_sym_SLASH] = ACTIONS(5301), + [anon_sym_CARET] = ACTIONS(5301), + [anon_sym__] = ACTIONS(5301), + [anon_sym_LT] = ACTIONS(5301), + [anon_sym_GT] = ACTIONS(5301), + [anon_sym_BANG] = ACTIONS(5301), + [anon_sym_PIPE] = ACTIONS(5301), + [anon_sym_COLON] = ACTIONS(5301), + [anon_sym_SQUOTE] = ACTIONS(5301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5299), + [anon_sym_DOLLAR] = ACTIONS(5301), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), + [anon_sym_BSLASHbegin] = ACTIONS(5301), + [anon_sym_BSLASHusepackage] = ACTIONS(5301), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), + [anon_sym_BSLASHinclude] = ACTIONS(5301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), + [anon_sym_BSLASHinput] = ACTIONS(5301), + [anon_sym_BSLASHsubfile] = ACTIONS(5301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), + [anon_sym_BSLASHbibliography] = ACTIONS(5301), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), + [anon_sym_BSLASHincludesvg] = ACTIONS(5301), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), + [anon_sym_BSLASHimport] = ACTIONS(5301), + [anon_sym_BSLASHsubimport] = ACTIONS(5301), + [anon_sym_BSLASHinputfrom] = ACTIONS(5301), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), + [anon_sym_BSLASHincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHcaption] = ACTIONS(5301), + [anon_sym_BSLASHcite] = ACTIONS(5301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCite] = ACTIONS(5301), + [anon_sym_BSLASHnocite] = ACTIONS(5301), + [anon_sym_BSLASHcitet] = ACTIONS(5301), + [anon_sym_BSLASHcitep] = ACTIONS(5301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteauthor] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitetitle] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteyear] = ACTIONS(5301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitedate] = ACTIONS(5301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteurl] = ACTIONS(5301), + [anon_sym_BSLASHfullcite] = ACTIONS(5301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), + [anon_sym_BSLASHcitealt] = ACTIONS(5301), + [anon_sym_BSLASHcitealp] = ACTIONS(5301), + [anon_sym_BSLASHcitetext] = ACTIONS(5301), + [anon_sym_BSLASHparencite] = ACTIONS(5301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHParencite] = ACTIONS(5301), + [anon_sym_BSLASHfootcite] = ACTIONS(5301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), + [anon_sym_BSLASHtextcite] = ACTIONS(5301), + [anon_sym_BSLASHTextcite] = ACTIONS(5301), + [anon_sym_BSLASHsmartcite] = ACTIONS(5301), + [anon_sym_BSLASHSmartcite] = ACTIONS(5301), + [anon_sym_BSLASHsupercite] = ACTIONS(5301), + [anon_sym_BSLASHautocite] = ACTIONS(5301), + [anon_sym_BSLASHAutocite] = ACTIONS(5301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHvolcite] = ACTIONS(5301), + [anon_sym_BSLASHVolcite] = ACTIONS(5301), + [anon_sym_BSLASHpvolcite] = ACTIONS(5301), + [anon_sym_BSLASHPvolcite] = ACTIONS(5301), + [anon_sym_BSLASHfvolcite] = ACTIONS(5301), + [anon_sym_BSLASHftvolcite] = ACTIONS(5301), + [anon_sym_BSLASHsvolcite] = ACTIONS(5301), + [anon_sym_BSLASHSvolcite] = ACTIONS(5301), + [anon_sym_BSLASHtvolcite] = ACTIONS(5301), + [anon_sym_BSLASHTvolcite] = ACTIONS(5301), + [anon_sym_BSLASHavolcite] = ACTIONS(5301), + [anon_sym_BSLASHAvolcite] = ACTIONS(5301), + [anon_sym_BSLASHnotecite] = ACTIONS(5301), + [anon_sym_BSLASHNotecite] = ACTIONS(5301), + [anon_sym_BSLASHpnotecite] = ACTIONS(5301), + [anon_sym_BSLASHPnotecite] = ACTIONS(5301), + [anon_sym_BSLASHfnotecite] = ACTIONS(5301), + [anon_sym_BSLASHlabel] = ACTIONS(5301), + [anon_sym_BSLASHref] = ACTIONS(5301), + [anon_sym_BSLASHeqref] = ACTIONS(5301), + [anon_sym_BSLASHvref] = ACTIONS(5301), + [anon_sym_BSLASHVref] = ACTIONS(5301), + [anon_sym_BSLASHautoref] = ACTIONS(5301), + [anon_sym_BSLASHpageref] = ACTIONS(5301), + [anon_sym_BSLASHcref] = ACTIONS(5301), + [anon_sym_BSLASHCref] = ACTIONS(5301), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnameCref] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHlabelcref] = ACTIONS(5301), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCrefrange] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnewlabel] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), + [anon_sym_BSLASHdef] = ACTIONS(5301), + [anon_sym_BSLASHlet] = ACTIONS(5301), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), + [anon_sym_BSLASHgls] = ACTIONS(5301), + [anon_sym_BSLASHGls] = ACTIONS(5301), + [anon_sym_BSLASHGLS] = ACTIONS(5301), + [anon_sym_BSLASHglspl] = ACTIONS(5301), + [anon_sym_BSLASHGlspl] = ACTIONS(5301), + [anon_sym_BSLASHGLSpl] = ACTIONS(5301), + [anon_sym_BSLASHglsdisp] = ACTIONS(5301), + [anon_sym_BSLASHglslink] = ACTIONS(5301), + [anon_sym_BSLASHglstext] = ACTIONS(5301), + [anon_sym_BSLASHGlstext] = ACTIONS(5301), + [anon_sym_BSLASHGLStext] = ACTIONS(5301), + [anon_sym_BSLASHglsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), + [anon_sym_BSLASHglsplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSplural] = ACTIONS(5301), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHglsname] = ACTIONS(5301), + [anon_sym_BSLASHGlsname] = ACTIONS(5301), + [anon_sym_BSLASHGLSname] = ACTIONS(5301), + [anon_sym_BSLASHglssymbol] = ACTIONS(5301), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), + [anon_sym_BSLASHglsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), + [anon_sym_BSLASHglsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), + [anon_sym_BSLASHglsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), + [anon_sym_BSLASHglsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), + [anon_sym_BSLASHglsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), + [anon_sym_BSLASHnewacronym] = ACTIONS(5301), + [anon_sym_BSLASHacrshort] = ACTIONS(5301), + [anon_sym_BSLASHAcrshort] = ACTIONS(5301), + [anon_sym_BSLASHACRshort] = ACTIONS(5301), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), + [anon_sym_BSLASHacrlong] = ACTIONS(5301), + [anon_sym_BSLASHAcrlong] = ACTIONS(5301), + [anon_sym_BSLASHACRlong] = ACTIONS(5301), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), + [anon_sym_BSLASHacrfull] = ACTIONS(5301), + [anon_sym_BSLASHAcrfull] = ACTIONS(5301), + [anon_sym_BSLASHACRfull] = ACTIONS(5301), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), + [anon_sym_BSLASHacs] = ACTIONS(5301), + [anon_sym_BSLASHAcs] = ACTIONS(5301), + [anon_sym_BSLASHacsp] = ACTIONS(5301), + [anon_sym_BSLASHAcsp] = ACTIONS(5301), + [anon_sym_BSLASHacl] = ACTIONS(5301), + [anon_sym_BSLASHAcl] = ACTIONS(5301), + [anon_sym_BSLASHaclp] = ACTIONS(5301), + [anon_sym_BSLASHAclp] = ACTIONS(5301), + [anon_sym_BSLASHacf] = ACTIONS(5301), + [anon_sym_BSLASHAcf] = ACTIONS(5301), + [anon_sym_BSLASHacfp] = ACTIONS(5301), + [anon_sym_BSLASHAcfp] = ACTIONS(5301), + [anon_sym_BSLASHac] = ACTIONS(5301), + [anon_sym_BSLASHAc] = ACTIONS(5301), + [anon_sym_BSLASHacp] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), + [anon_sym_BSLASHcolor] = ACTIONS(5301), + [anon_sym_BSLASHcolorbox] = ACTIONS(5301), + [anon_sym_BSLASHtextcolor] = ACTIONS(5301), + [anon_sym_BSLASHpagecolor] = ACTIONS(5301), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), + [anon_sym_BSLASHtext] = ACTIONS(5301), + [anon_sym_BSLASHintertext] = ACTIONS(5301), + [anon_sym_shortintertext] = ACTIONS(5301), + }, + [1148] = { + [sym_command_name] = ACTIONS(5065), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4995), - [anon_sym_LPAREN] = ACTIONS(4993), - [anon_sym_RPAREN] = ACTIONS(4993), - [anon_sym_LBRACK] = ACTIONS(4993), - [anon_sym_RBRACK] = ACTIONS(4993), - [anon_sym_COMMA] = ACTIONS(4993), - [anon_sym_EQ] = ACTIONS(4993), - [anon_sym_BSLASHpart] = ACTIONS(4995), - [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddpart] = ACTIONS(4995), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), - [anon_sym_BSLASHchapter] = ACTIONS(4995), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddchap] = ACTIONS(4995), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsection] = ACTIONS(4995), - [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHaddsec] = ACTIONS(4995), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), - [anon_sym_BSLASHparagraph] = ACTIONS(4995), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), - [anon_sym_BSLASHitem] = ACTIONS(4995), - [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), - [anon_sym_LBRACE] = ACTIONS(4993), - [sym_word] = ACTIONS(4995), - [sym_placeholder] = ACTIONS(4993), - [anon_sym_PLUS] = ACTIONS(4995), - [anon_sym_DASH] = ACTIONS(4995), - [anon_sym_STAR] = ACTIONS(4995), - [anon_sym_SLASH] = ACTIONS(4995), - [anon_sym_CARET] = ACTIONS(4995), - [anon_sym__] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(4995), - [anon_sym_GT] = ACTIONS(4995), - [anon_sym_BANG] = ACTIONS(4995), - [anon_sym_PIPE] = ACTIONS(4995), - [anon_sym_COLON] = ACTIONS(4995), - [anon_sym_SQUOTE] = ACTIONS(4995), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), - [anon_sym_DOLLAR] = ACTIONS(4995), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), - [anon_sym_BSLASH_RBRACE] = ACTIONS(4993), - [anon_sym_BSLASHbegin] = ACTIONS(4995), - [anon_sym_BSLASHusepackage] = ACTIONS(4995), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), - [anon_sym_BSLASHinclude] = ACTIONS(4995), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), - [anon_sym_BSLASHinput] = ACTIONS(4995), - [anon_sym_BSLASHsubfile] = ACTIONS(4995), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), - [anon_sym_BSLASHbibliography] = ACTIONS(4995), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), - [anon_sym_BSLASHincludesvg] = ACTIONS(4995), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), - [anon_sym_BSLASHimport] = ACTIONS(4995), - [anon_sym_BSLASHsubimport] = ACTIONS(4995), - [anon_sym_BSLASHinputfrom] = ACTIONS(4995), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), - [anon_sym_BSLASHincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), - [anon_sym_BSLASHcaption] = ACTIONS(4995), - [anon_sym_BSLASHcite] = ACTIONS(4995), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCite] = ACTIONS(4995), - [anon_sym_BSLASHnocite] = ACTIONS(4995), - [anon_sym_BSLASHcitet] = ACTIONS(4995), - [anon_sym_BSLASHcitep] = ACTIONS(4995), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteauthor] = ACTIONS(4995), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitetitle] = ACTIONS(4995), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteyear] = ACTIONS(4995), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), - [anon_sym_BSLASHcitedate] = ACTIONS(4995), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), - [anon_sym_BSLASHciteurl] = ACTIONS(4995), - [anon_sym_BSLASHfullcite] = ACTIONS(4995), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), - [anon_sym_BSLASHcitealt] = ACTIONS(4995), - [anon_sym_BSLASHcitealp] = ACTIONS(4995), - [anon_sym_BSLASHcitetext] = ACTIONS(4995), - [anon_sym_BSLASHparencite] = ACTIONS(4995), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHParencite] = ACTIONS(4995), - [anon_sym_BSLASHfootcite] = ACTIONS(4995), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), - [anon_sym_BSLASHtextcite] = ACTIONS(4995), - [anon_sym_BSLASHTextcite] = ACTIONS(4995), - [anon_sym_BSLASHsmartcite] = ACTIONS(4995), - [anon_sym_BSLASHSmartcite] = ACTIONS(4995), - [anon_sym_BSLASHsupercite] = ACTIONS(4995), - [anon_sym_BSLASHautocite] = ACTIONS(4995), - [anon_sym_BSLASHAutocite] = ACTIONS(4995), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), - [anon_sym_BSLASHvolcite] = ACTIONS(4995), - [anon_sym_BSLASHVolcite] = ACTIONS(4995), - [anon_sym_BSLASHpvolcite] = ACTIONS(4995), - [anon_sym_BSLASHPvolcite] = ACTIONS(4995), - [anon_sym_BSLASHfvolcite] = ACTIONS(4995), - [anon_sym_BSLASHftvolcite] = ACTIONS(4995), - [anon_sym_BSLASHsvolcite] = ACTIONS(4995), - [anon_sym_BSLASHSvolcite] = ACTIONS(4995), - [anon_sym_BSLASHtvolcite] = ACTIONS(4995), - [anon_sym_BSLASHTvolcite] = ACTIONS(4995), - [anon_sym_BSLASHavolcite] = ACTIONS(4995), - [anon_sym_BSLASHAvolcite] = ACTIONS(4995), - [anon_sym_BSLASHnotecite] = ACTIONS(4995), - [anon_sym_BSLASHNotecite] = ACTIONS(4995), - [anon_sym_BSLASHpnotecite] = ACTIONS(4995), - [anon_sym_BSLASHPnotecite] = ACTIONS(4995), - [anon_sym_BSLASHfnotecite] = ACTIONS(4995), - [anon_sym_BSLASHlabel] = ACTIONS(4995), - [anon_sym_BSLASHref] = ACTIONS(4995), - [anon_sym_BSLASHeqref] = ACTIONS(4995), - [anon_sym_BSLASHvref] = ACTIONS(4995), - [anon_sym_BSLASHVref] = ACTIONS(4995), - [anon_sym_BSLASHautoref] = ACTIONS(4995), - [anon_sym_BSLASHpageref] = ACTIONS(4995), - [anon_sym_BSLASHcref] = ACTIONS(4995), - [anon_sym_BSLASHCref] = ACTIONS(4995), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnameCref] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), - [anon_sym_BSLASHlabelcref] = ACTIONS(4995), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange] = ACTIONS(4995), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHCrefrange] = ACTIONS(4995), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), - [anon_sym_BSLASHnewlabel] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand] = ACTIONS(4995), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), - [anon_sym_BSLASHdef] = ACTIONS(4995), - [anon_sym_BSLASHlet] = ACTIONS(4995), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), - [anon_sym_BSLASHgls] = ACTIONS(4995), - [anon_sym_BSLASHGls] = ACTIONS(4995), - [anon_sym_BSLASHGLS] = ACTIONS(4995), - [anon_sym_BSLASHglspl] = ACTIONS(4995), - [anon_sym_BSLASHGlspl] = ACTIONS(4995), - [anon_sym_BSLASHGLSpl] = ACTIONS(4995), - [anon_sym_BSLASHglsdisp] = ACTIONS(4995), - [anon_sym_BSLASHglslink] = ACTIONS(4995), - [anon_sym_BSLASHglstext] = ACTIONS(4995), - [anon_sym_BSLASHGlstext] = ACTIONS(4995), - [anon_sym_BSLASHGLStext] = ACTIONS(4995), - [anon_sym_BSLASHglsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), - [anon_sym_BSLASHglsplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSplural] = ACTIONS(4995), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), - [anon_sym_BSLASHglsname] = ACTIONS(4995), - [anon_sym_BSLASHGlsname] = ACTIONS(4995), - [anon_sym_BSLASHGLSname] = ACTIONS(4995), - [anon_sym_BSLASHglssymbol] = ACTIONS(4995), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), - [anon_sym_BSLASHglsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), - [anon_sym_BSLASHglsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), - [anon_sym_BSLASHglsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), - [anon_sym_BSLASHglsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), - [anon_sym_BSLASHglsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), - [anon_sym_BSLASHnewacronym] = ACTIONS(4995), - [anon_sym_BSLASHacrshort] = ACTIONS(4995), - [anon_sym_BSLASHAcrshort] = ACTIONS(4995), - [anon_sym_BSLASHACRshort] = ACTIONS(4995), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), - [anon_sym_BSLASHacrlong] = ACTIONS(4995), - [anon_sym_BSLASHAcrlong] = ACTIONS(4995), - [anon_sym_BSLASHACRlong] = ACTIONS(4995), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), - [anon_sym_BSLASHacrfull] = ACTIONS(4995), - [anon_sym_BSLASHAcrfull] = ACTIONS(4995), - [anon_sym_BSLASHACRfull] = ACTIONS(4995), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), - [anon_sym_BSLASHacs] = ACTIONS(4995), - [anon_sym_BSLASHAcs] = ACTIONS(4995), - [anon_sym_BSLASHacsp] = ACTIONS(4995), - [anon_sym_BSLASHAcsp] = ACTIONS(4995), - [anon_sym_BSLASHacl] = ACTIONS(4995), - [anon_sym_BSLASHAcl] = ACTIONS(4995), - [anon_sym_BSLASHaclp] = ACTIONS(4995), - [anon_sym_BSLASHAclp] = ACTIONS(4995), - [anon_sym_BSLASHacf] = ACTIONS(4995), - [anon_sym_BSLASHAcf] = ACTIONS(4995), - [anon_sym_BSLASHacfp] = ACTIONS(4995), - [anon_sym_BSLASHAcfp] = ACTIONS(4995), - [anon_sym_BSLASHac] = ACTIONS(4995), - [anon_sym_BSLASHAc] = ACTIONS(4995), - [anon_sym_BSLASHacp] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), - [anon_sym_BSLASHcolor] = ACTIONS(4995), - [anon_sym_BSLASHcolorbox] = ACTIONS(4995), - [anon_sym_BSLASHtextcolor] = ACTIONS(4995), - [anon_sym_BSLASHpagecolor] = ACTIONS(4995), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), - }, - [1253] = { - [sym_command_name] = ACTIONS(5291), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5291), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_RPAREN] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_BSLASHpart] = ACTIONS(5291), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddpart] = ACTIONS(5291), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5289), - [anon_sym_BSLASHchapter] = ACTIONS(5291), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddchap] = ACTIONS(5291), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsection] = ACTIONS(5291), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHaddsec] = ACTIONS(5291), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5291), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5289), - [anon_sym_BSLASHparagraph] = ACTIONS(5291), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5291), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5289), - [anon_sym_BSLASHitem] = ACTIONS(5291), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5289), - [sym_word] = ACTIONS(5291), - [sym_placeholder] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym__] = ACTIONS(5291), - [anon_sym_LT] = ACTIONS(5291), - [anon_sym_GT] = ACTIONS(5291), - [anon_sym_BANG] = ACTIONS(5291), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5291), - [anon_sym_SQUOTE] = ACTIONS(5291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5289), - [anon_sym_BSLASHbegin] = ACTIONS(5291), - [anon_sym_BSLASHend] = ACTIONS(5291), - [anon_sym_BSLASHusepackage] = ACTIONS(5291), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5291), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5291), - [anon_sym_BSLASHinclude] = ACTIONS(5291), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5291), - [anon_sym_BSLASHinput] = ACTIONS(5291), - [anon_sym_BSLASHsubfile] = ACTIONS(5291), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5291), - [anon_sym_BSLASHbibliography] = ACTIONS(5291), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5291), - [anon_sym_BSLASHincludesvg] = ACTIONS(5291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5291), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5291), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5291), - [anon_sym_BSLASHimport] = ACTIONS(5291), - [anon_sym_BSLASHsubimport] = ACTIONS(5291), - [anon_sym_BSLASHinputfrom] = ACTIONS(5291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5291), - [anon_sym_BSLASHincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHcaption] = ACTIONS(5291), - [anon_sym_BSLASHcite] = ACTIONS(5291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCite] = ACTIONS(5291), - [anon_sym_BSLASHnocite] = ACTIONS(5291), - [anon_sym_BSLASHcitet] = ACTIONS(5291), - [anon_sym_BSLASHcitep] = ACTIONS(5291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor] = ACTIONS(5291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle] = ACTIONS(5291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteyear] = ACTIONS(5291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitedate] = ACTIONS(5291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteurl] = ACTIONS(5291), - [anon_sym_BSLASHfullcite] = ACTIONS(5291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5291), - [anon_sym_BSLASHcitealt] = ACTIONS(5291), - [anon_sym_BSLASHcitealp] = ACTIONS(5291), - [anon_sym_BSLASHcitetext] = ACTIONS(5291), - [anon_sym_BSLASHparencite] = ACTIONS(5291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHParencite] = ACTIONS(5291), - [anon_sym_BSLASHfootcite] = ACTIONS(5291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5291), - [anon_sym_BSLASHtextcite] = ACTIONS(5291), - [anon_sym_BSLASHTextcite] = ACTIONS(5291), - [anon_sym_BSLASHsmartcite] = ACTIONS(5291), - [anon_sym_BSLASHSmartcite] = ACTIONS(5291), - [anon_sym_BSLASHsupercite] = ACTIONS(5291), - [anon_sym_BSLASHautocite] = ACTIONS(5291), - [anon_sym_BSLASHAutocite] = ACTIONS(5291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHvolcite] = ACTIONS(5291), - [anon_sym_BSLASHVolcite] = ACTIONS(5291), - [anon_sym_BSLASHpvolcite] = ACTIONS(5291), - [anon_sym_BSLASHPvolcite] = ACTIONS(5291), - [anon_sym_BSLASHfvolcite] = ACTIONS(5291), - [anon_sym_BSLASHftvolcite] = ACTIONS(5291), - [anon_sym_BSLASHsvolcite] = ACTIONS(5291), - [anon_sym_BSLASHSvolcite] = ACTIONS(5291), - [anon_sym_BSLASHtvolcite] = ACTIONS(5291), - [anon_sym_BSLASHTvolcite] = ACTIONS(5291), - [anon_sym_BSLASHavolcite] = ACTIONS(5291), - [anon_sym_BSLASHAvolcite] = ACTIONS(5291), - [anon_sym_BSLASHnotecite] = ACTIONS(5291), - [anon_sym_BSLASHNotecite] = ACTIONS(5291), - [anon_sym_BSLASHpnotecite] = ACTIONS(5291), - [anon_sym_BSLASHPnotecite] = ACTIONS(5291), - [anon_sym_BSLASHfnotecite] = ACTIONS(5291), - [anon_sym_BSLASHlabel] = ACTIONS(5291), - [anon_sym_BSLASHref] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5291), - [anon_sym_BSLASHvref] = ACTIONS(5291), - [anon_sym_BSLASHVref] = ACTIONS(5291), - [anon_sym_BSLASHautoref] = ACTIONS(5291), - [anon_sym_BSLASHpageref] = ACTIONS(5291), - [anon_sym_BSLASHcref] = ACTIONS(5291), - [anon_sym_BSLASHCref] = ACTIONS(5291), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnameCref] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHlabelcref] = ACTIONS(5291), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange] = ACTIONS(5291), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnewlabel] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5291), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5291), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5291), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdef] = ACTIONS(5291), - [anon_sym_BSLASHlet] = ACTIONS(5291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5291), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5291), - [anon_sym_BSLASHgls] = ACTIONS(5291), - [anon_sym_BSLASHGls] = ACTIONS(5291), - [anon_sym_BSLASHGLS] = ACTIONS(5291), - [anon_sym_BSLASHglspl] = ACTIONS(5291), - [anon_sym_BSLASHGlspl] = ACTIONS(5291), - [anon_sym_BSLASHGLSpl] = ACTIONS(5291), - [anon_sym_BSLASHglsdisp] = ACTIONS(5291), - [anon_sym_BSLASHglslink] = ACTIONS(5291), - [anon_sym_BSLASHglstext] = ACTIONS(5291), - [anon_sym_BSLASHGlstext] = ACTIONS(5291), - [anon_sym_BSLASHGLStext] = ACTIONS(5291), - [anon_sym_BSLASHglsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5291), - [anon_sym_BSLASHglsplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSplural] = ACTIONS(5291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHglsname] = ACTIONS(5291), - [anon_sym_BSLASHGlsname] = ACTIONS(5291), - [anon_sym_BSLASHGLSname] = ACTIONS(5291), - [anon_sym_BSLASHglssymbol] = ACTIONS(5291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5291), - [anon_sym_BSLASHglsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5291), - [anon_sym_BSLASHglsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5291), - [anon_sym_BSLASHglsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5291), - [anon_sym_BSLASHglsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5291), - [anon_sym_BSLASHglsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5291), - [anon_sym_BSLASHnewacronym] = ACTIONS(5291), - [anon_sym_BSLASHacrshort] = ACTIONS(5291), - [anon_sym_BSLASHAcrshort] = ACTIONS(5291), - [anon_sym_BSLASHACRshort] = ACTIONS(5291), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5291), - [anon_sym_BSLASHacrlong] = ACTIONS(5291), - [anon_sym_BSLASHAcrlong] = ACTIONS(5291), - [anon_sym_BSLASHACRlong] = ACTIONS(5291), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5291), - [anon_sym_BSLASHacrfull] = ACTIONS(5291), - [anon_sym_BSLASHAcrfull] = ACTIONS(5291), - [anon_sym_BSLASHACRfull] = ACTIONS(5291), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5291), - [anon_sym_BSLASHacs] = ACTIONS(5291), - [anon_sym_BSLASHAcs] = ACTIONS(5291), - [anon_sym_BSLASHacsp] = ACTIONS(5291), - [anon_sym_BSLASHAcsp] = ACTIONS(5291), - [anon_sym_BSLASHacl] = ACTIONS(5291), - [anon_sym_BSLASHAcl] = ACTIONS(5291), - [anon_sym_BSLASHaclp] = ACTIONS(5291), - [anon_sym_BSLASHAclp] = ACTIONS(5291), - [anon_sym_BSLASHacf] = ACTIONS(5291), - [anon_sym_BSLASHAcf] = ACTIONS(5291), - [anon_sym_BSLASHacfp] = ACTIONS(5291), - [anon_sym_BSLASHAcfp] = ACTIONS(5291), - [anon_sym_BSLASHac] = ACTIONS(5291), - [anon_sym_BSLASHAc] = ACTIONS(5291), - [anon_sym_BSLASHacp] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5291), - [anon_sym_BSLASHcolor] = ACTIONS(5291), - [anon_sym_BSLASHcolorbox] = ACTIONS(5291), - [anon_sym_BSLASHtextcolor] = ACTIONS(5291), - [anon_sym_BSLASHpagecolor] = ACTIONS(5291), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5291), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5291), + [anon_sym_BSLASHiffalse] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_RBRACK] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_BSLASHpart] = ACTIONS(5065), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddpart] = ACTIONS(5065), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5063), + [anon_sym_BSLASHchapter] = ACTIONS(5065), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddchap] = ACTIONS(5065), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsection] = ACTIONS(5065), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHaddsec] = ACTIONS(5065), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubsection] = ACTIONS(5065), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5065), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5063), + [anon_sym_BSLASHparagraph] = ACTIONS(5065), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5063), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5065), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5063), + [anon_sym_BSLASHitem] = ACTIONS(5065), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5063), + [sym_word] = ACTIONS(5065), + [sym_placeholder] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_CARET] = ACTIONS(5065), + [anon_sym__] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_COLON] = ACTIONS(5065), + [anon_sym_SQUOTE] = ACTIONS(5065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5063), + [anon_sym_DOLLAR] = ACTIONS(5065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), + [anon_sym_BSLASHbegin] = ACTIONS(5065), + [anon_sym_BSLASHusepackage] = ACTIONS(5065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), + [anon_sym_BSLASHinclude] = ACTIONS(5065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), + [anon_sym_BSLASHinput] = ACTIONS(5065), + [anon_sym_BSLASHsubfile] = ACTIONS(5065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), + [anon_sym_BSLASHbibliography] = ACTIONS(5065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), + [anon_sym_BSLASHincludesvg] = ACTIONS(5065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), + [anon_sym_BSLASHimport] = ACTIONS(5065), + [anon_sym_BSLASHsubimport] = ACTIONS(5065), + [anon_sym_BSLASHinputfrom] = ACTIONS(5065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), + [anon_sym_BSLASHincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHcaption] = ACTIONS(5065), + [anon_sym_BSLASHcite] = ACTIONS(5065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCite] = ACTIONS(5065), + [anon_sym_BSLASHnocite] = ACTIONS(5065), + [anon_sym_BSLASHcitet] = ACTIONS(5065), + [anon_sym_BSLASHcitep] = ACTIONS(5065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteauthor] = ACTIONS(5065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitetitle] = ACTIONS(5065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteyear] = ACTIONS(5065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitedate] = ACTIONS(5065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteurl] = ACTIONS(5065), + [anon_sym_BSLASHfullcite] = ACTIONS(5065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), + [anon_sym_BSLASHcitealt] = ACTIONS(5065), + [anon_sym_BSLASHcitealp] = ACTIONS(5065), + [anon_sym_BSLASHcitetext] = ACTIONS(5065), + [anon_sym_BSLASHparencite] = ACTIONS(5065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHParencite] = ACTIONS(5065), + [anon_sym_BSLASHfootcite] = ACTIONS(5065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), + [anon_sym_BSLASHtextcite] = ACTIONS(5065), + [anon_sym_BSLASHTextcite] = ACTIONS(5065), + [anon_sym_BSLASHsmartcite] = ACTIONS(5065), + [anon_sym_BSLASHSmartcite] = ACTIONS(5065), + [anon_sym_BSLASHsupercite] = ACTIONS(5065), + [anon_sym_BSLASHautocite] = ACTIONS(5065), + [anon_sym_BSLASHAutocite] = ACTIONS(5065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHvolcite] = ACTIONS(5065), + [anon_sym_BSLASHVolcite] = ACTIONS(5065), + [anon_sym_BSLASHpvolcite] = ACTIONS(5065), + [anon_sym_BSLASHPvolcite] = ACTIONS(5065), + [anon_sym_BSLASHfvolcite] = ACTIONS(5065), + [anon_sym_BSLASHftvolcite] = ACTIONS(5065), + [anon_sym_BSLASHsvolcite] = ACTIONS(5065), + [anon_sym_BSLASHSvolcite] = ACTIONS(5065), + [anon_sym_BSLASHtvolcite] = ACTIONS(5065), + [anon_sym_BSLASHTvolcite] = ACTIONS(5065), + [anon_sym_BSLASHavolcite] = ACTIONS(5065), + [anon_sym_BSLASHAvolcite] = ACTIONS(5065), + [anon_sym_BSLASHnotecite] = ACTIONS(5065), + [anon_sym_BSLASHNotecite] = ACTIONS(5065), + [anon_sym_BSLASHpnotecite] = ACTIONS(5065), + [anon_sym_BSLASHPnotecite] = ACTIONS(5065), + [anon_sym_BSLASHfnotecite] = ACTIONS(5065), + [anon_sym_BSLASHlabel] = ACTIONS(5065), + [anon_sym_BSLASHref] = ACTIONS(5065), + [anon_sym_BSLASHeqref] = ACTIONS(5065), + [anon_sym_BSLASHvref] = ACTIONS(5065), + [anon_sym_BSLASHVref] = ACTIONS(5065), + [anon_sym_BSLASHautoref] = ACTIONS(5065), + [anon_sym_BSLASHpageref] = ACTIONS(5065), + [anon_sym_BSLASHcref] = ACTIONS(5065), + [anon_sym_BSLASHCref] = ACTIONS(5065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnameCref] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHlabelcref] = ACTIONS(5065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCrefrange] = ACTIONS(5065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnewlabel] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), + [anon_sym_BSLASHdef] = ACTIONS(5065), + [anon_sym_BSLASHlet] = ACTIONS(5065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), + [anon_sym_BSLASHgls] = ACTIONS(5065), + [anon_sym_BSLASHGls] = ACTIONS(5065), + [anon_sym_BSLASHGLS] = ACTIONS(5065), + [anon_sym_BSLASHglspl] = ACTIONS(5065), + [anon_sym_BSLASHGlspl] = ACTIONS(5065), + [anon_sym_BSLASHGLSpl] = ACTIONS(5065), + [anon_sym_BSLASHglsdisp] = ACTIONS(5065), + [anon_sym_BSLASHglslink] = ACTIONS(5065), + [anon_sym_BSLASHglstext] = ACTIONS(5065), + [anon_sym_BSLASHGlstext] = ACTIONS(5065), + [anon_sym_BSLASHGLStext] = ACTIONS(5065), + [anon_sym_BSLASHglsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), + [anon_sym_BSLASHglsplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSplural] = ACTIONS(5065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHglsname] = ACTIONS(5065), + [anon_sym_BSLASHGlsname] = ACTIONS(5065), + [anon_sym_BSLASHGLSname] = ACTIONS(5065), + [anon_sym_BSLASHglssymbol] = ACTIONS(5065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), + [anon_sym_BSLASHglsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), + [anon_sym_BSLASHglsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), + [anon_sym_BSLASHglsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), + [anon_sym_BSLASHglsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), + [anon_sym_BSLASHglsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), + [anon_sym_BSLASHnewacronym] = ACTIONS(5065), + [anon_sym_BSLASHacrshort] = ACTIONS(5065), + [anon_sym_BSLASHAcrshort] = ACTIONS(5065), + [anon_sym_BSLASHACRshort] = ACTIONS(5065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), + [anon_sym_BSLASHacrlong] = ACTIONS(5065), + [anon_sym_BSLASHAcrlong] = ACTIONS(5065), + [anon_sym_BSLASHACRlong] = ACTIONS(5065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), + [anon_sym_BSLASHacrfull] = ACTIONS(5065), + [anon_sym_BSLASHAcrfull] = ACTIONS(5065), + [anon_sym_BSLASHACRfull] = ACTIONS(5065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), + [anon_sym_BSLASHacs] = ACTIONS(5065), + [anon_sym_BSLASHAcs] = ACTIONS(5065), + [anon_sym_BSLASHacsp] = ACTIONS(5065), + [anon_sym_BSLASHAcsp] = ACTIONS(5065), + [anon_sym_BSLASHacl] = ACTIONS(5065), + [anon_sym_BSLASHAcl] = ACTIONS(5065), + [anon_sym_BSLASHaclp] = ACTIONS(5065), + [anon_sym_BSLASHAclp] = ACTIONS(5065), + [anon_sym_BSLASHacf] = ACTIONS(5065), + [anon_sym_BSLASHAcf] = ACTIONS(5065), + [anon_sym_BSLASHacfp] = ACTIONS(5065), + [anon_sym_BSLASHAcfp] = ACTIONS(5065), + [anon_sym_BSLASHac] = ACTIONS(5065), + [anon_sym_BSLASHAc] = ACTIONS(5065), + [anon_sym_BSLASHacp] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), + [anon_sym_BSLASHcolor] = ACTIONS(5065), + [anon_sym_BSLASHcolorbox] = ACTIONS(5065), + [anon_sym_BSLASHtextcolor] = ACTIONS(5065), + [anon_sym_BSLASHpagecolor] = ACTIONS(5065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHtext] = ACTIONS(5065), + [anon_sym_BSLASHintertext] = ACTIONS(5065), + [anon_sym_shortintertext] = ACTIONS(5065), }, - [1254] = { - [sym_command_name] = ACTIONS(5205), + [1149] = { + [sym_command_name] = ACTIONS(5073), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_BSLASHpart] = ACTIONS(5205), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddpart] = ACTIONS(5205), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), - [anon_sym_BSLASHchapter] = ACTIONS(5205), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddchap] = ACTIONS(5205), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsection] = ACTIONS(5205), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHaddsec] = ACTIONS(5205), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), - [anon_sym_BSLASHparagraph] = ACTIONS(5205), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), - [anon_sym_BSLASHitem] = ACTIONS(5205), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASHbegin] = ACTIONS(5205), - [anon_sym_BSLASHend] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), + [anon_sym_BSLASHiffalse] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5071), + [anon_sym_RPAREN] = ACTIONS(5071), + [anon_sym_LBRACK] = ACTIONS(5071), + [anon_sym_RBRACK] = ACTIONS(5071), + [anon_sym_COMMA] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_BSLASHpart] = ACTIONS(5073), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddpart] = ACTIONS(5073), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5071), + [anon_sym_BSLASHchapter] = ACTIONS(5073), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddchap] = ACTIONS(5073), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsection] = ACTIONS(5073), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHaddsec] = ACTIONS(5073), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubsection] = ACTIONS(5073), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5073), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5071), + [anon_sym_BSLASHparagraph] = ACTIONS(5073), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5071), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5073), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5071), + [anon_sym_BSLASHitem] = ACTIONS(5073), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5071), + [sym_word] = ACTIONS(5073), + [sym_placeholder] = ACTIONS(5071), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_CARET] = ACTIONS(5073), + [anon_sym__] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_PIPE] = ACTIONS(5073), + [anon_sym_COLON] = ACTIONS(5073), + [anon_sym_SQUOTE] = ACTIONS(5073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5071), + [anon_sym_DOLLAR] = ACTIONS(5073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), + [anon_sym_BSLASHbegin] = ACTIONS(5073), + [anon_sym_BSLASHusepackage] = ACTIONS(5073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), + [anon_sym_BSLASHinclude] = ACTIONS(5073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), + [anon_sym_BSLASHinput] = ACTIONS(5073), + [anon_sym_BSLASHsubfile] = ACTIONS(5073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), + [anon_sym_BSLASHbibliography] = ACTIONS(5073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), + [anon_sym_BSLASHincludesvg] = ACTIONS(5073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), + [anon_sym_BSLASHimport] = ACTIONS(5073), + [anon_sym_BSLASHsubimport] = ACTIONS(5073), + [anon_sym_BSLASHinputfrom] = ACTIONS(5073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), + [anon_sym_BSLASHincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHcaption] = ACTIONS(5073), + [anon_sym_BSLASHcite] = ACTIONS(5073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCite] = ACTIONS(5073), + [anon_sym_BSLASHnocite] = ACTIONS(5073), + [anon_sym_BSLASHcitet] = ACTIONS(5073), + [anon_sym_BSLASHcitep] = ACTIONS(5073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteauthor] = ACTIONS(5073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitetitle] = ACTIONS(5073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteyear] = ACTIONS(5073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitedate] = ACTIONS(5073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteurl] = ACTIONS(5073), + [anon_sym_BSLASHfullcite] = ACTIONS(5073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), + [anon_sym_BSLASHcitealt] = ACTIONS(5073), + [anon_sym_BSLASHcitealp] = ACTIONS(5073), + [anon_sym_BSLASHcitetext] = ACTIONS(5073), + [anon_sym_BSLASHparencite] = ACTIONS(5073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHParencite] = ACTIONS(5073), + [anon_sym_BSLASHfootcite] = ACTIONS(5073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), + [anon_sym_BSLASHtextcite] = ACTIONS(5073), + [anon_sym_BSLASHTextcite] = ACTIONS(5073), + [anon_sym_BSLASHsmartcite] = ACTIONS(5073), + [anon_sym_BSLASHSmartcite] = ACTIONS(5073), + [anon_sym_BSLASHsupercite] = ACTIONS(5073), + [anon_sym_BSLASHautocite] = ACTIONS(5073), + [anon_sym_BSLASHAutocite] = ACTIONS(5073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHvolcite] = ACTIONS(5073), + [anon_sym_BSLASHVolcite] = ACTIONS(5073), + [anon_sym_BSLASHpvolcite] = ACTIONS(5073), + [anon_sym_BSLASHPvolcite] = ACTIONS(5073), + [anon_sym_BSLASHfvolcite] = ACTIONS(5073), + [anon_sym_BSLASHftvolcite] = ACTIONS(5073), + [anon_sym_BSLASHsvolcite] = ACTIONS(5073), + [anon_sym_BSLASHSvolcite] = ACTIONS(5073), + [anon_sym_BSLASHtvolcite] = ACTIONS(5073), + [anon_sym_BSLASHTvolcite] = ACTIONS(5073), + [anon_sym_BSLASHavolcite] = ACTIONS(5073), + [anon_sym_BSLASHAvolcite] = ACTIONS(5073), + [anon_sym_BSLASHnotecite] = ACTIONS(5073), + [anon_sym_BSLASHNotecite] = ACTIONS(5073), + [anon_sym_BSLASHpnotecite] = ACTIONS(5073), + [anon_sym_BSLASHPnotecite] = ACTIONS(5073), + [anon_sym_BSLASHfnotecite] = ACTIONS(5073), + [anon_sym_BSLASHlabel] = ACTIONS(5073), + [anon_sym_BSLASHref] = ACTIONS(5073), + [anon_sym_BSLASHeqref] = ACTIONS(5073), + [anon_sym_BSLASHvref] = ACTIONS(5073), + [anon_sym_BSLASHVref] = ACTIONS(5073), + [anon_sym_BSLASHautoref] = ACTIONS(5073), + [anon_sym_BSLASHpageref] = ACTIONS(5073), + [anon_sym_BSLASHcref] = ACTIONS(5073), + [anon_sym_BSLASHCref] = ACTIONS(5073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnameCref] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHlabelcref] = ACTIONS(5073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCrefrange] = ACTIONS(5073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnewlabel] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), + [anon_sym_BSLASHdef] = ACTIONS(5073), + [anon_sym_BSLASHlet] = ACTIONS(5073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), + [anon_sym_BSLASHgls] = ACTIONS(5073), + [anon_sym_BSLASHGls] = ACTIONS(5073), + [anon_sym_BSLASHGLS] = ACTIONS(5073), + [anon_sym_BSLASHglspl] = ACTIONS(5073), + [anon_sym_BSLASHGlspl] = ACTIONS(5073), + [anon_sym_BSLASHGLSpl] = ACTIONS(5073), + [anon_sym_BSLASHglsdisp] = ACTIONS(5073), + [anon_sym_BSLASHglslink] = ACTIONS(5073), + [anon_sym_BSLASHglstext] = ACTIONS(5073), + [anon_sym_BSLASHGlstext] = ACTIONS(5073), + [anon_sym_BSLASHGLStext] = ACTIONS(5073), + [anon_sym_BSLASHglsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), + [anon_sym_BSLASHglsplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSplural] = ACTIONS(5073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHglsname] = ACTIONS(5073), + [anon_sym_BSLASHGlsname] = ACTIONS(5073), + [anon_sym_BSLASHGLSname] = ACTIONS(5073), + [anon_sym_BSLASHglssymbol] = ACTIONS(5073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), + [anon_sym_BSLASHglsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), + [anon_sym_BSLASHglsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), + [anon_sym_BSLASHglsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), + [anon_sym_BSLASHglsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), + [anon_sym_BSLASHglsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), + [anon_sym_BSLASHnewacronym] = ACTIONS(5073), + [anon_sym_BSLASHacrshort] = ACTIONS(5073), + [anon_sym_BSLASHAcrshort] = ACTIONS(5073), + [anon_sym_BSLASHACRshort] = ACTIONS(5073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), + [anon_sym_BSLASHacrlong] = ACTIONS(5073), + [anon_sym_BSLASHAcrlong] = ACTIONS(5073), + [anon_sym_BSLASHACRlong] = ACTIONS(5073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), + [anon_sym_BSLASHacrfull] = ACTIONS(5073), + [anon_sym_BSLASHAcrfull] = ACTIONS(5073), + [anon_sym_BSLASHACRfull] = ACTIONS(5073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), + [anon_sym_BSLASHacs] = ACTIONS(5073), + [anon_sym_BSLASHAcs] = ACTIONS(5073), + [anon_sym_BSLASHacsp] = ACTIONS(5073), + [anon_sym_BSLASHAcsp] = ACTIONS(5073), + [anon_sym_BSLASHacl] = ACTIONS(5073), + [anon_sym_BSLASHAcl] = ACTIONS(5073), + [anon_sym_BSLASHaclp] = ACTIONS(5073), + [anon_sym_BSLASHAclp] = ACTIONS(5073), + [anon_sym_BSLASHacf] = ACTIONS(5073), + [anon_sym_BSLASHAcf] = ACTIONS(5073), + [anon_sym_BSLASHacfp] = ACTIONS(5073), + [anon_sym_BSLASHAcfp] = ACTIONS(5073), + [anon_sym_BSLASHac] = ACTIONS(5073), + [anon_sym_BSLASHAc] = ACTIONS(5073), + [anon_sym_BSLASHacp] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), + [anon_sym_BSLASHcolor] = ACTIONS(5073), + [anon_sym_BSLASHcolorbox] = ACTIONS(5073), + [anon_sym_BSLASHtextcolor] = ACTIONS(5073), + [anon_sym_BSLASHpagecolor] = ACTIONS(5073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHtext] = ACTIONS(5073), + [anon_sym_BSLASHintertext] = ACTIONS(5073), + [anon_sym_shortintertext] = ACTIONS(5073), }, - [1255] = { - [sym_command_name] = ACTIONS(5209), + [1150] = { + [sym_command_name] = ACTIONS(4963), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_BSLASHpart] = ACTIONS(5209), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddpart] = ACTIONS(5209), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), - [anon_sym_BSLASHchapter] = ACTIONS(5209), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddchap] = ACTIONS(5209), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsection] = ACTIONS(5209), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHaddsec] = ACTIONS(5209), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), - [anon_sym_BSLASHparagraph] = ACTIONS(5209), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), - [anon_sym_BSLASHitem] = ACTIONS(5209), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASHbegin] = ACTIONS(5209), - [anon_sym_BSLASHend] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHiffalse] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_RBRACK] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_EQ] = ACTIONS(4961), + [anon_sym_BSLASHpart] = ACTIONS(4963), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddpart] = ACTIONS(4963), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4961), + [anon_sym_BSLASHchapter] = ACTIONS(4963), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddchap] = ACTIONS(4963), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsection] = ACTIONS(4963), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHaddsec] = ACTIONS(4963), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubsection] = ACTIONS(4963), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4963), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4961), + [anon_sym_BSLASHparagraph] = ACTIONS(4963), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4961), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4963), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4961), + [anon_sym_BSLASHitem] = ACTIONS(4963), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4961), + [anon_sym_LBRACE] = ACTIONS(4961), + [sym_word] = ACTIONS(4963), + [sym_placeholder] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), + [anon_sym__] = ACTIONS(4963), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_COLON] = ACTIONS(4963), + [anon_sym_SQUOTE] = ACTIONS(4963), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4961), + [anon_sym_DOLLAR] = ACTIONS(4963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), + [anon_sym_BSLASHbegin] = ACTIONS(4963), + [anon_sym_BSLASHusepackage] = ACTIONS(4963), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), + [anon_sym_BSLASHinclude] = ACTIONS(4963), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), + [anon_sym_BSLASHinput] = ACTIONS(4963), + [anon_sym_BSLASHsubfile] = ACTIONS(4963), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), + [anon_sym_BSLASHbibliography] = ACTIONS(4963), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), + [anon_sym_BSLASHincludesvg] = ACTIONS(4963), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), + [anon_sym_BSLASHimport] = ACTIONS(4963), + [anon_sym_BSLASHsubimport] = ACTIONS(4963), + [anon_sym_BSLASHinputfrom] = ACTIONS(4963), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), + [anon_sym_BSLASHincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHcaption] = ACTIONS(4963), + [anon_sym_BSLASHcite] = ACTIONS(4963), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCite] = ACTIONS(4963), + [anon_sym_BSLASHnocite] = ACTIONS(4963), + [anon_sym_BSLASHcitet] = ACTIONS(4963), + [anon_sym_BSLASHcitep] = ACTIONS(4963), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteauthor] = ACTIONS(4963), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitetitle] = ACTIONS(4963), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteyear] = ACTIONS(4963), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitedate] = ACTIONS(4963), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteurl] = ACTIONS(4963), + [anon_sym_BSLASHfullcite] = ACTIONS(4963), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), + [anon_sym_BSLASHcitealt] = ACTIONS(4963), + [anon_sym_BSLASHcitealp] = ACTIONS(4963), + [anon_sym_BSLASHcitetext] = ACTIONS(4963), + [anon_sym_BSLASHparencite] = ACTIONS(4963), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHParencite] = ACTIONS(4963), + [anon_sym_BSLASHfootcite] = ACTIONS(4963), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), + [anon_sym_BSLASHtextcite] = ACTIONS(4963), + [anon_sym_BSLASHTextcite] = ACTIONS(4963), + [anon_sym_BSLASHsmartcite] = ACTIONS(4963), + [anon_sym_BSLASHSmartcite] = ACTIONS(4963), + [anon_sym_BSLASHsupercite] = ACTIONS(4963), + [anon_sym_BSLASHautocite] = ACTIONS(4963), + [anon_sym_BSLASHAutocite] = ACTIONS(4963), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHvolcite] = ACTIONS(4963), + [anon_sym_BSLASHVolcite] = ACTIONS(4963), + [anon_sym_BSLASHpvolcite] = ACTIONS(4963), + [anon_sym_BSLASHPvolcite] = ACTIONS(4963), + [anon_sym_BSLASHfvolcite] = ACTIONS(4963), + [anon_sym_BSLASHftvolcite] = ACTIONS(4963), + [anon_sym_BSLASHsvolcite] = ACTIONS(4963), + [anon_sym_BSLASHSvolcite] = ACTIONS(4963), + [anon_sym_BSLASHtvolcite] = ACTIONS(4963), + [anon_sym_BSLASHTvolcite] = ACTIONS(4963), + [anon_sym_BSLASHavolcite] = ACTIONS(4963), + [anon_sym_BSLASHAvolcite] = ACTIONS(4963), + [anon_sym_BSLASHnotecite] = ACTIONS(4963), + [anon_sym_BSLASHNotecite] = ACTIONS(4963), + [anon_sym_BSLASHpnotecite] = ACTIONS(4963), + [anon_sym_BSLASHPnotecite] = ACTIONS(4963), + [anon_sym_BSLASHfnotecite] = ACTIONS(4963), + [anon_sym_BSLASHlabel] = ACTIONS(4963), + [anon_sym_BSLASHref] = ACTIONS(4963), + [anon_sym_BSLASHeqref] = ACTIONS(4963), + [anon_sym_BSLASHvref] = ACTIONS(4963), + [anon_sym_BSLASHVref] = ACTIONS(4963), + [anon_sym_BSLASHautoref] = ACTIONS(4963), + [anon_sym_BSLASHpageref] = ACTIONS(4963), + [anon_sym_BSLASHcref] = ACTIONS(4963), + [anon_sym_BSLASHCref] = ACTIONS(4963), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnameCref] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHlabelcref] = ACTIONS(4963), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCrefrange] = ACTIONS(4963), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnewlabel] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), + [anon_sym_BSLASHdef] = ACTIONS(4963), + [anon_sym_BSLASHlet] = ACTIONS(4963), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), + [anon_sym_BSLASHgls] = ACTIONS(4963), + [anon_sym_BSLASHGls] = ACTIONS(4963), + [anon_sym_BSLASHGLS] = ACTIONS(4963), + [anon_sym_BSLASHglspl] = ACTIONS(4963), + [anon_sym_BSLASHGlspl] = ACTIONS(4963), + [anon_sym_BSLASHGLSpl] = ACTIONS(4963), + [anon_sym_BSLASHglsdisp] = ACTIONS(4963), + [anon_sym_BSLASHglslink] = ACTIONS(4963), + [anon_sym_BSLASHglstext] = ACTIONS(4963), + [anon_sym_BSLASHGlstext] = ACTIONS(4963), + [anon_sym_BSLASHGLStext] = ACTIONS(4963), + [anon_sym_BSLASHglsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), + [anon_sym_BSLASHglsplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSplural] = ACTIONS(4963), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHglsname] = ACTIONS(4963), + [anon_sym_BSLASHGlsname] = ACTIONS(4963), + [anon_sym_BSLASHGLSname] = ACTIONS(4963), + [anon_sym_BSLASHglssymbol] = ACTIONS(4963), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), + [anon_sym_BSLASHglsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), + [anon_sym_BSLASHglsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), + [anon_sym_BSLASHglsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), + [anon_sym_BSLASHglsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), + [anon_sym_BSLASHglsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), + [anon_sym_BSLASHnewacronym] = ACTIONS(4963), + [anon_sym_BSLASHacrshort] = ACTIONS(4963), + [anon_sym_BSLASHAcrshort] = ACTIONS(4963), + [anon_sym_BSLASHACRshort] = ACTIONS(4963), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), + [anon_sym_BSLASHacrlong] = ACTIONS(4963), + [anon_sym_BSLASHAcrlong] = ACTIONS(4963), + [anon_sym_BSLASHACRlong] = ACTIONS(4963), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), + [anon_sym_BSLASHacrfull] = ACTIONS(4963), + [anon_sym_BSLASHAcrfull] = ACTIONS(4963), + [anon_sym_BSLASHACRfull] = ACTIONS(4963), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), + [anon_sym_BSLASHacs] = ACTIONS(4963), + [anon_sym_BSLASHAcs] = ACTIONS(4963), + [anon_sym_BSLASHacsp] = ACTIONS(4963), + [anon_sym_BSLASHAcsp] = ACTIONS(4963), + [anon_sym_BSLASHacl] = ACTIONS(4963), + [anon_sym_BSLASHAcl] = ACTIONS(4963), + [anon_sym_BSLASHaclp] = ACTIONS(4963), + [anon_sym_BSLASHAclp] = ACTIONS(4963), + [anon_sym_BSLASHacf] = ACTIONS(4963), + [anon_sym_BSLASHAcf] = ACTIONS(4963), + [anon_sym_BSLASHacfp] = ACTIONS(4963), + [anon_sym_BSLASHAcfp] = ACTIONS(4963), + [anon_sym_BSLASHac] = ACTIONS(4963), + [anon_sym_BSLASHAc] = ACTIONS(4963), + [anon_sym_BSLASHacp] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), + [anon_sym_BSLASHcolor] = ACTIONS(4963), + [anon_sym_BSLASHcolorbox] = ACTIONS(4963), + [anon_sym_BSLASHtextcolor] = ACTIONS(4963), + [anon_sym_BSLASHpagecolor] = ACTIONS(4963), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), + [anon_sym_BSLASHtext] = ACTIONS(4963), + [anon_sym_BSLASHintertext] = ACTIONS(4963), + [anon_sym_shortintertext] = ACTIONS(4963), + }, + [1151] = { + [sym_command_name] = ACTIONS(5305), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5303), + [anon_sym_RPAREN] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5303), + [anon_sym_RBRACK] = ACTIONS(5303), + [anon_sym_COMMA] = ACTIONS(5303), + [anon_sym_EQ] = ACTIONS(5303), + [anon_sym_BSLASHpart] = ACTIONS(5305), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddpart] = ACTIONS(5305), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), + [anon_sym_BSLASHchapter] = ACTIONS(5305), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddchap] = ACTIONS(5305), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsection] = ACTIONS(5305), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHaddsec] = ACTIONS(5305), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubsection] = ACTIONS(5305), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), + [anon_sym_BSLASHparagraph] = ACTIONS(5305), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), + [anon_sym_BSLASHitem] = ACTIONS(5305), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), + [anon_sym_LBRACE] = ACTIONS(5303), + [sym_word] = ACTIONS(5305), + [sym_placeholder] = ACTIONS(5303), + [anon_sym_PLUS] = ACTIONS(5305), + [anon_sym_DASH] = ACTIONS(5305), + [anon_sym_STAR] = ACTIONS(5305), + [anon_sym_SLASH] = ACTIONS(5305), + [anon_sym_CARET] = ACTIONS(5305), + [anon_sym__] = ACTIONS(5305), + [anon_sym_LT] = ACTIONS(5305), + [anon_sym_GT] = ACTIONS(5305), + [anon_sym_BANG] = ACTIONS(5305), + [anon_sym_PIPE] = ACTIONS(5305), + [anon_sym_COLON] = ACTIONS(5305), + [anon_sym_SQUOTE] = ACTIONS(5305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5303), + [anon_sym_DOLLAR] = ACTIONS(5305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), + [anon_sym_BSLASHbegin] = ACTIONS(5305), + [anon_sym_BSLASHusepackage] = ACTIONS(5305), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), + [anon_sym_BSLASHinclude] = ACTIONS(5305), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), + [anon_sym_BSLASHinput] = ACTIONS(5305), + [anon_sym_BSLASHsubfile] = ACTIONS(5305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), + [anon_sym_BSLASHbibliography] = ACTIONS(5305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), + [anon_sym_BSLASHincludesvg] = ACTIONS(5305), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), + [anon_sym_BSLASHimport] = ACTIONS(5305), + [anon_sym_BSLASHsubimport] = ACTIONS(5305), + [anon_sym_BSLASHinputfrom] = ACTIONS(5305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), + [anon_sym_BSLASHincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHcaption] = ACTIONS(5305), + [anon_sym_BSLASHcite] = ACTIONS(5305), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCite] = ACTIONS(5305), + [anon_sym_BSLASHnocite] = ACTIONS(5305), + [anon_sym_BSLASHcitet] = ACTIONS(5305), + [anon_sym_BSLASHcitep] = ACTIONS(5305), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor] = ACTIONS(5305), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle] = ACTIONS(5305), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteyear] = ACTIONS(5305), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitedate] = ACTIONS(5305), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteurl] = ACTIONS(5305), + [anon_sym_BSLASHfullcite] = ACTIONS(5305), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), + [anon_sym_BSLASHcitealt] = ACTIONS(5305), + [anon_sym_BSLASHcitealp] = ACTIONS(5305), + [anon_sym_BSLASHcitetext] = ACTIONS(5305), + [anon_sym_BSLASHparencite] = ACTIONS(5305), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHParencite] = ACTIONS(5305), + [anon_sym_BSLASHfootcite] = ACTIONS(5305), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), + [anon_sym_BSLASHtextcite] = ACTIONS(5305), + [anon_sym_BSLASHTextcite] = ACTIONS(5305), + [anon_sym_BSLASHsmartcite] = ACTIONS(5305), + [anon_sym_BSLASHSmartcite] = ACTIONS(5305), + [anon_sym_BSLASHsupercite] = ACTIONS(5305), + [anon_sym_BSLASHautocite] = ACTIONS(5305), + [anon_sym_BSLASHAutocite] = ACTIONS(5305), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHvolcite] = ACTIONS(5305), + [anon_sym_BSLASHVolcite] = ACTIONS(5305), + [anon_sym_BSLASHpvolcite] = ACTIONS(5305), + [anon_sym_BSLASHPvolcite] = ACTIONS(5305), + [anon_sym_BSLASHfvolcite] = ACTIONS(5305), + [anon_sym_BSLASHftvolcite] = ACTIONS(5305), + [anon_sym_BSLASHsvolcite] = ACTIONS(5305), + [anon_sym_BSLASHSvolcite] = ACTIONS(5305), + [anon_sym_BSLASHtvolcite] = ACTIONS(5305), + [anon_sym_BSLASHTvolcite] = ACTIONS(5305), + [anon_sym_BSLASHavolcite] = ACTIONS(5305), + [anon_sym_BSLASHAvolcite] = ACTIONS(5305), + [anon_sym_BSLASHnotecite] = ACTIONS(5305), + [anon_sym_BSLASHNotecite] = ACTIONS(5305), + [anon_sym_BSLASHpnotecite] = ACTIONS(5305), + [anon_sym_BSLASHPnotecite] = ACTIONS(5305), + [anon_sym_BSLASHfnotecite] = ACTIONS(5305), + [anon_sym_BSLASHlabel] = ACTIONS(5305), + [anon_sym_BSLASHref] = ACTIONS(5305), + [anon_sym_BSLASHeqref] = ACTIONS(5305), + [anon_sym_BSLASHvref] = ACTIONS(5305), + [anon_sym_BSLASHVref] = ACTIONS(5305), + [anon_sym_BSLASHautoref] = ACTIONS(5305), + [anon_sym_BSLASHpageref] = ACTIONS(5305), + [anon_sym_BSLASHcref] = ACTIONS(5305), + [anon_sym_BSLASHCref] = ACTIONS(5305), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnameCref] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHlabelcref] = ACTIONS(5305), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange] = ACTIONS(5305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnewlabel] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), + [anon_sym_BSLASHdef] = ACTIONS(5305), + [anon_sym_BSLASHlet] = ACTIONS(5305), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), + [anon_sym_BSLASHgls] = ACTIONS(5305), + [anon_sym_BSLASHGls] = ACTIONS(5305), + [anon_sym_BSLASHGLS] = ACTIONS(5305), + [anon_sym_BSLASHglspl] = ACTIONS(5305), + [anon_sym_BSLASHGlspl] = ACTIONS(5305), + [anon_sym_BSLASHGLSpl] = ACTIONS(5305), + [anon_sym_BSLASHglsdisp] = ACTIONS(5305), + [anon_sym_BSLASHglslink] = ACTIONS(5305), + [anon_sym_BSLASHglstext] = ACTIONS(5305), + [anon_sym_BSLASHGlstext] = ACTIONS(5305), + [anon_sym_BSLASHGLStext] = ACTIONS(5305), + [anon_sym_BSLASHglsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), + [anon_sym_BSLASHglsplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSplural] = ACTIONS(5305), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHglsname] = ACTIONS(5305), + [anon_sym_BSLASHGlsname] = ACTIONS(5305), + [anon_sym_BSLASHGLSname] = ACTIONS(5305), + [anon_sym_BSLASHglssymbol] = ACTIONS(5305), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), + [anon_sym_BSLASHglsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), + [anon_sym_BSLASHglsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), + [anon_sym_BSLASHglsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), + [anon_sym_BSLASHglsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), + [anon_sym_BSLASHglsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), + [anon_sym_BSLASHnewacronym] = ACTIONS(5305), + [anon_sym_BSLASHacrshort] = ACTIONS(5305), + [anon_sym_BSLASHAcrshort] = ACTIONS(5305), + [anon_sym_BSLASHACRshort] = ACTIONS(5305), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), + [anon_sym_BSLASHacrlong] = ACTIONS(5305), + [anon_sym_BSLASHAcrlong] = ACTIONS(5305), + [anon_sym_BSLASHACRlong] = ACTIONS(5305), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), + [anon_sym_BSLASHacrfull] = ACTIONS(5305), + [anon_sym_BSLASHAcrfull] = ACTIONS(5305), + [anon_sym_BSLASHACRfull] = ACTIONS(5305), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), + [anon_sym_BSLASHacs] = ACTIONS(5305), + [anon_sym_BSLASHAcs] = ACTIONS(5305), + [anon_sym_BSLASHacsp] = ACTIONS(5305), + [anon_sym_BSLASHAcsp] = ACTIONS(5305), + [anon_sym_BSLASHacl] = ACTIONS(5305), + [anon_sym_BSLASHAcl] = ACTIONS(5305), + [anon_sym_BSLASHaclp] = ACTIONS(5305), + [anon_sym_BSLASHAclp] = ACTIONS(5305), + [anon_sym_BSLASHacf] = ACTIONS(5305), + [anon_sym_BSLASHAcf] = ACTIONS(5305), + [anon_sym_BSLASHacfp] = ACTIONS(5305), + [anon_sym_BSLASHAcfp] = ACTIONS(5305), + [anon_sym_BSLASHac] = ACTIONS(5305), + [anon_sym_BSLASHAc] = ACTIONS(5305), + [anon_sym_BSLASHacp] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), + [anon_sym_BSLASHcolor] = ACTIONS(5305), + [anon_sym_BSLASHcolorbox] = ACTIONS(5305), + [anon_sym_BSLASHtextcolor] = ACTIONS(5305), + [anon_sym_BSLASHpagecolor] = ACTIONS(5305), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), + [anon_sym_BSLASHtext] = ACTIONS(5305), + [anon_sym_BSLASHintertext] = ACTIONS(5305), + [anon_sym_shortintertext] = ACTIONS(5305), }, - [1256] = { - [sym_command_name] = ACTIONS(5225), + [1152] = { + [sym_command_name] = ACTIONS(5221), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_BSLASHpart] = ACTIONS(5225), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddpart] = ACTIONS(5225), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), - [anon_sym_BSLASHchapter] = ACTIONS(5225), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddchap] = ACTIONS(5225), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsection] = ACTIONS(5225), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHaddsec] = ACTIONS(5225), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), - [anon_sym_BSLASHparagraph] = ACTIONS(5225), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), - [anon_sym_BSLASHitem] = ACTIONS(5225), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASHbegin] = ACTIONS(5225), - [anon_sym_BSLASHend] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), + [anon_sym_BSLASHiffalse] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5219), + [anon_sym_RPAREN] = ACTIONS(5219), + [anon_sym_LBRACK] = ACTIONS(5219), + [anon_sym_RBRACK] = ACTIONS(5219), + [anon_sym_COMMA] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_BSLASHpart] = ACTIONS(5221), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddpart] = ACTIONS(5221), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5219), + [anon_sym_BSLASHchapter] = ACTIONS(5221), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddchap] = ACTIONS(5221), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsection] = ACTIONS(5221), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHaddsec] = ACTIONS(5221), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubsection] = ACTIONS(5221), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5221), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5219), + [anon_sym_BSLASHparagraph] = ACTIONS(5221), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5219), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5221), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5219), + [anon_sym_BSLASHitem] = ACTIONS(5221), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5219), + [sym_word] = ACTIONS(5221), + [sym_placeholder] = ACTIONS(5219), + [anon_sym_PLUS] = ACTIONS(5221), + [anon_sym_DASH] = ACTIONS(5221), + [anon_sym_STAR] = ACTIONS(5221), + [anon_sym_SLASH] = ACTIONS(5221), + [anon_sym_CARET] = ACTIONS(5221), + [anon_sym__] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5221), + [anon_sym_GT] = ACTIONS(5221), + [anon_sym_BANG] = ACTIONS(5221), + [anon_sym_PIPE] = ACTIONS(5221), + [anon_sym_COLON] = ACTIONS(5221), + [anon_sym_SQUOTE] = ACTIONS(5221), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5219), + [anon_sym_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), + [anon_sym_BSLASHbegin] = ACTIONS(5221), + [anon_sym_BSLASHusepackage] = ACTIONS(5221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), + [anon_sym_BSLASHinclude] = ACTIONS(5221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), + [anon_sym_BSLASHinput] = ACTIONS(5221), + [anon_sym_BSLASHsubfile] = ACTIONS(5221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), + [anon_sym_BSLASHbibliography] = ACTIONS(5221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), + [anon_sym_BSLASHincludesvg] = ACTIONS(5221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), + [anon_sym_BSLASHimport] = ACTIONS(5221), + [anon_sym_BSLASHsubimport] = ACTIONS(5221), + [anon_sym_BSLASHinputfrom] = ACTIONS(5221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), + [anon_sym_BSLASHincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHcaption] = ACTIONS(5221), + [anon_sym_BSLASHcite] = ACTIONS(5221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCite] = ACTIONS(5221), + [anon_sym_BSLASHnocite] = ACTIONS(5221), + [anon_sym_BSLASHcitet] = ACTIONS(5221), + [anon_sym_BSLASHcitep] = ACTIONS(5221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteyear] = ACTIONS(5221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitedate] = ACTIONS(5221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteurl] = ACTIONS(5221), + [anon_sym_BSLASHfullcite] = ACTIONS(5221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), + [anon_sym_BSLASHcitealt] = ACTIONS(5221), + [anon_sym_BSLASHcitealp] = ACTIONS(5221), + [anon_sym_BSLASHcitetext] = ACTIONS(5221), + [anon_sym_BSLASHparencite] = ACTIONS(5221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHParencite] = ACTIONS(5221), + [anon_sym_BSLASHfootcite] = ACTIONS(5221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), + [anon_sym_BSLASHtextcite] = ACTIONS(5221), + [anon_sym_BSLASHTextcite] = ACTIONS(5221), + [anon_sym_BSLASHsmartcite] = ACTIONS(5221), + [anon_sym_BSLASHSmartcite] = ACTIONS(5221), + [anon_sym_BSLASHsupercite] = ACTIONS(5221), + [anon_sym_BSLASHautocite] = ACTIONS(5221), + [anon_sym_BSLASHAutocite] = ACTIONS(5221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHvolcite] = ACTIONS(5221), + [anon_sym_BSLASHVolcite] = ACTIONS(5221), + [anon_sym_BSLASHpvolcite] = ACTIONS(5221), + [anon_sym_BSLASHPvolcite] = ACTIONS(5221), + [anon_sym_BSLASHfvolcite] = ACTIONS(5221), + [anon_sym_BSLASHftvolcite] = ACTIONS(5221), + [anon_sym_BSLASHsvolcite] = ACTIONS(5221), + [anon_sym_BSLASHSvolcite] = ACTIONS(5221), + [anon_sym_BSLASHtvolcite] = ACTIONS(5221), + [anon_sym_BSLASHTvolcite] = ACTIONS(5221), + [anon_sym_BSLASHavolcite] = ACTIONS(5221), + [anon_sym_BSLASHAvolcite] = ACTIONS(5221), + [anon_sym_BSLASHnotecite] = ACTIONS(5221), + [anon_sym_BSLASHNotecite] = ACTIONS(5221), + [anon_sym_BSLASHpnotecite] = ACTIONS(5221), + [anon_sym_BSLASHPnotecite] = ACTIONS(5221), + [anon_sym_BSLASHfnotecite] = ACTIONS(5221), + [anon_sym_BSLASHlabel] = ACTIONS(5221), + [anon_sym_BSLASHref] = ACTIONS(5221), + [anon_sym_BSLASHeqref] = ACTIONS(5221), + [anon_sym_BSLASHvref] = ACTIONS(5221), + [anon_sym_BSLASHVref] = ACTIONS(5221), + [anon_sym_BSLASHautoref] = ACTIONS(5221), + [anon_sym_BSLASHpageref] = ACTIONS(5221), + [anon_sym_BSLASHcref] = ACTIONS(5221), + [anon_sym_BSLASHCref] = ACTIONS(5221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnameCref] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHlabelcref] = ACTIONS(5221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnewlabel] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), + [anon_sym_BSLASHdef] = ACTIONS(5221), + [anon_sym_BSLASHlet] = ACTIONS(5221), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), + [anon_sym_BSLASHgls] = ACTIONS(5221), + [anon_sym_BSLASHGls] = ACTIONS(5221), + [anon_sym_BSLASHGLS] = ACTIONS(5221), + [anon_sym_BSLASHglspl] = ACTIONS(5221), + [anon_sym_BSLASHGlspl] = ACTIONS(5221), + [anon_sym_BSLASHGLSpl] = ACTIONS(5221), + [anon_sym_BSLASHglsdisp] = ACTIONS(5221), + [anon_sym_BSLASHglslink] = ACTIONS(5221), + [anon_sym_BSLASHglstext] = ACTIONS(5221), + [anon_sym_BSLASHGlstext] = ACTIONS(5221), + [anon_sym_BSLASHGLStext] = ACTIONS(5221), + [anon_sym_BSLASHglsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), + [anon_sym_BSLASHglsplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSplural] = ACTIONS(5221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHglsname] = ACTIONS(5221), + [anon_sym_BSLASHGlsname] = ACTIONS(5221), + [anon_sym_BSLASHGLSname] = ACTIONS(5221), + [anon_sym_BSLASHglssymbol] = ACTIONS(5221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), + [anon_sym_BSLASHglsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), + [anon_sym_BSLASHglsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), + [anon_sym_BSLASHglsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), + [anon_sym_BSLASHglsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), + [anon_sym_BSLASHglsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), + [anon_sym_BSLASHnewacronym] = ACTIONS(5221), + [anon_sym_BSLASHacrshort] = ACTIONS(5221), + [anon_sym_BSLASHAcrshort] = ACTIONS(5221), + [anon_sym_BSLASHACRshort] = ACTIONS(5221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), + [anon_sym_BSLASHacrlong] = ACTIONS(5221), + [anon_sym_BSLASHAcrlong] = ACTIONS(5221), + [anon_sym_BSLASHACRlong] = ACTIONS(5221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), + [anon_sym_BSLASHacrfull] = ACTIONS(5221), + [anon_sym_BSLASHAcrfull] = ACTIONS(5221), + [anon_sym_BSLASHACRfull] = ACTIONS(5221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), + [anon_sym_BSLASHacs] = ACTIONS(5221), + [anon_sym_BSLASHAcs] = ACTIONS(5221), + [anon_sym_BSLASHacsp] = ACTIONS(5221), + [anon_sym_BSLASHAcsp] = ACTIONS(5221), + [anon_sym_BSLASHacl] = ACTIONS(5221), + [anon_sym_BSLASHAcl] = ACTIONS(5221), + [anon_sym_BSLASHaclp] = ACTIONS(5221), + [anon_sym_BSLASHAclp] = ACTIONS(5221), + [anon_sym_BSLASHacf] = ACTIONS(5221), + [anon_sym_BSLASHAcf] = ACTIONS(5221), + [anon_sym_BSLASHacfp] = ACTIONS(5221), + [anon_sym_BSLASHAcfp] = ACTIONS(5221), + [anon_sym_BSLASHac] = ACTIONS(5221), + [anon_sym_BSLASHAc] = ACTIONS(5221), + [anon_sym_BSLASHacp] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), + [anon_sym_BSLASHcolor] = ACTIONS(5221), + [anon_sym_BSLASHcolorbox] = ACTIONS(5221), + [anon_sym_BSLASHtextcolor] = ACTIONS(5221), + [anon_sym_BSLASHpagecolor] = ACTIONS(5221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), + [anon_sym_BSLASHtext] = ACTIONS(5221), + [anon_sym_BSLASHintertext] = ACTIONS(5221), + [anon_sym_shortintertext] = ACTIONS(5221), }, - [1257] = { - [sym_command_name] = ACTIONS(5385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5385), - [anon_sym_LPAREN] = ACTIONS(5383), - [anon_sym_RPAREN] = ACTIONS(5383), - [anon_sym_LBRACK] = ACTIONS(5383), - [anon_sym_RBRACK] = ACTIONS(5383), - [anon_sym_COMMA] = ACTIONS(5383), - [anon_sym_EQ] = ACTIONS(5383), - [anon_sym_BSLASHpart] = ACTIONS(5385), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddpart] = ACTIONS(5385), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5383), - [anon_sym_BSLASHchapter] = ACTIONS(5385), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddchap] = ACTIONS(5385), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsection] = ACTIONS(5385), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHaddsec] = ACTIONS(5385), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubsection] = ACTIONS(5385), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5385), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5383), - [anon_sym_BSLASHparagraph] = ACTIONS(5385), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5383), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5385), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5383), - [anon_sym_BSLASHitem] = ACTIONS(5385), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5383), - [anon_sym_LBRACE] = ACTIONS(5383), - [sym_word] = ACTIONS(5385), - [sym_placeholder] = ACTIONS(5383), - [anon_sym_PLUS] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5385), - [anon_sym_SLASH] = ACTIONS(5385), - [anon_sym_CARET] = ACTIONS(5385), - [anon_sym__] = ACTIONS(5385), - [anon_sym_LT] = ACTIONS(5385), - [anon_sym_GT] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_PIPE] = ACTIONS(5385), - [anon_sym_COLON] = ACTIONS(5385), - [anon_sym_SQUOTE] = ACTIONS(5385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5383), - [anon_sym_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5383), - [anon_sym_BSLASHbegin] = ACTIONS(5385), - [anon_sym_BSLASHend] = ACTIONS(5385), - [anon_sym_BSLASHusepackage] = ACTIONS(5385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5385), - [anon_sym_BSLASHinclude] = ACTIONS(5385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5385), - [anon_sym_BSLASHinput] = ACTIONS(5385), - [anon_sym_BSLASHsubfile] = ACTIONS(5385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5385), - [anon_sym_BSLASHbibliography] = ACTIONS(5385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5385), - [anon_sym_BSLASHincludesvg] = ACTIONS(5385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5385), - [anon_sym_BSLASHimport] = ACTIONS(5385), - [anon_sym_BSLASHsubimport] = ACTIONS(5385), - [anon_sym_BSLASHinputfrom] = ACTIONS(5385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5385), - [anon_sym_BSLASHincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHcaption] = ACTIONS(5385), - [anon_sym_BSLASHcite] = ACTIONS(5385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCite] = ACTIONS(5385), - [anon_sym_BSLASHnocite] = ACTIONS(5385), - [anon_sym_BSLASHcitet] = ACTIONS(5385), - [anon_sym_BSLASHcitep] = ACTIONS(5385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteyear] = ACTIONS(5385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitedate] = ACTIONS(5385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteurl] = ACTIONS(5385), - [anon_sym_BSLASHfullcite] = ACTIONS(5385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5385), - [anon_sym_BSLASHcitealt] = ACTIONS(5385), - [anon_sym_BSLASHcitealp] = ACTIONS(5385), - [anon_sym_BSLASHcitetext] = ACTIONS(5385), - [anon_sym_BSLASHparencite] = ACTIONS(5385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHParencite] = ACTIONS(5385), - [anon_sym_BSLASHfootcite] = ACTIONS(5385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5385), - [anon_sym_BSLASHtextcite] = ACTIONS(5385), - [anon_sym_BSLASHTextcite] = ACTIONS(5385), - [anon_sym_BSLASHsmartcite] = ACTIONS(5385), - [anon_sym_BSLASHSmartcite] = ACTIONS(5385), - [anon_sym_BSLASHsupercite] = ACTIONS(5385), - [anon_sym_BSLASHautocite] = ACTIONS(5385), - [anon_sym_BSLASHAutocite] = ACTIONS(5385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHvolcite] = ACTIONS(5385), - [anon_sym_BSLASHVolcite] = ACTIONS(5385), - [anon_sym_BSLASHpvolcite] = ACTIONS(5385), - [anon_sym_BSLASHPvolcite] = ACTIONS(5385), - [anon_sym_BSLASHfvolcite] = ACTIONS(5385), - [anon_sym_BSLASHftvolcite] = ACTIONS(5385), - [anon_sym_BSLASHsvolcite] = ACTIONS(5385), - [anon_sym_BSLASHSvolcite] = ACTIONS(5385), - [anon_sym_BSLASHtvolcite] = ACTIONS(5385), - [anon_sym_BSLASHTvolcite] = ACTIONS(5385), - [anon_sym_BSLASHavolcite] = ACTIONS(5385), - [anon_sym_BSLASHAvolcite] = ACTIONS(5385), - [anon_sym_BSLASHnotecite] = ACTIONS(5385), - [anon_sym_BSLASHNotecite] = ACTIONS(5385), - [anon_sym_BSLASHpnotecite] = ACTIONS(5385), - [anon_sym_BSLASHPnotecite] = ACTIONS(5385), - [anon_sym_BSLASHfnotecite] = ACTIONS(5385), - [anon_sym_BSLASHlabel] = ACTIONS(5385), - [anon_sym_BSLASHref] = ACTIONS(5385), - [anon_sym_BSLASHeqref] = ACTIONS(5385), - [anon_sym_BSLASHvref] = ACTIONS(5385), - [anon_sym_BSLASHVref] = ACTIONS(5385), - [anon_sym_BSLASHautoref] = ACTIONS(5385), - [anon_sym_BSLASHpageref] = ACTIONS(5385), - [anon_sym_BSLASHcref] = ACTIONS(5385), - [anon_sym_BSLASHCref] = ACTIONS(5385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnameCref] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHlabelcref] = ACTIONS(5385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnewlabel] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5383), - [anon_sym_BSLASHdef] = ACTIONS(5385), - [anon_sym_BSLASHlet] = ACTIONS(5385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5385), - [anon_sym_BSLASHgls] = ACTIONS(5385), - [anon_sym_BSLASHGls] = ACTIONS(5385), - [anon_sym_BSLASHGLS] = ACTIONS(5385), - [anon_sym_BSLASHglspl] = ACTIONS(5385), - [anon_sym_BSLASHGlspl] = ACTIONS(5385), - [anon_sym_BSLASHGLSpl] = ACTIONS(5385), - [anon_sym_BSLASHglsdisp] = ACTIONS(5385), - [anon_sym_BSLASHglslink] = ACTIONS(5385), - [anon_sym_BSLASHglstext] = ACTIONS(5385), - [anon_sym_BSLASHGlstext] = ACTIONS(5385), - [anon_sym_BSLASHGLStext] = ACTIONS(5385), - [anon_sym_BSLASHglsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5385), - [anon_sym_BSLASHglsplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSplural] = ACTIONS(5385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHglsname] = ACTIONS(5385), - [anon_sym_BSLASHGlsname] = ACTIONS(5385), - [anon_sym_BSLASHGLSname] = ACTIONS(5385), - [anon_sym_BSLASHglssymbol] = ACTIONS(5385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5385), - [anon_sym_BSLASHglsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5385), - [anon_sym_BSLASHglsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5385), - [anon_sym_BSLASHglsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5385), - [anon_sym_BSLASHglsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5385), - [anon_sym_BSLASHglsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5385), - [anon_sym_BSLASHnewacronym] = ACTIONS(5385), - [anon_sym_BSLASHacrshort] = ACTIONS(5385), - [anon_sym_BSLASHAcrshort] = ACTIONS(5385), - [anon_sym_BSLASHACRshort] = ACTIONS(5385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5385), - [anon_sym_BSLASHacrlong] = ACTIONS(5385), - [anon_sym_BSLASHAcrlong] = ACTIONS(5385), - [anon_sym_BSLASHACRlong] = ACTIONS(5385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5385), - [anon_sym_BSLASHacrfull] = ACTIONS(5385), - [anon_sym_BSLASHAcrfull] = ACTIONS(5385), - [anon_sym_BSLASHACRfull] = ACTIONS(5385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5385), - [anon_sym_BSLASHacs] = ACTIONS(5385), - [anon_sym_BSLASHAcs] = ACTIONS(5385), - [anon_sym_BSLASHacsp] = ACTIONS(5385), - [anon_sym_BSLASHAcsp] = ACTIONS(5385), - [anon_sym_BSLASHacl] = ACTIONS(5385), - [anon_sym_BSLASHAcl] = ACTIONS(5385), - [anon_sym_BSLASHaclp] = ACTIONS(5385), - [anon_sym_BSLASHAclp] = ACTIONS(5385), - [anon_sym_BSLASHacf] = ACTIONS(5385), - [anon_sym_BSLASHAcf] = ACTIONS(5385), - [anon_sym_BSLASHacfp] = ACTIONS(5385), - [anon_sym_BSLASHAcfp] = ACTIONS(5385), - [anon_sym_BSLASHac] = ACTIONS(5385), - [anon_sym_BSLASHAc] = ACTIONS(5385), - [anon_sym_BSLASHacp] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5385), - [anon_sym_BSLASHcolor] = ACTIONS(5385), - [anon_sym_BSLASHcolorbox] = ACTIONS(5385), - [anon_sym_BSLASHtextcolor] = ACTIONS(5385), - [anon_sym_BSLASHpagecolor] = ACTIONS(5385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5385), + [1153] = { + [sym_command_name] = ACTIONS(4897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4897), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_RBRACK] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_BSLASHpart] = ACTIONS(4897), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddpart] = ACTIONS(4897), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4895), + [anon_sym_BSLASHchapter] = ACTIONS(4897), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddchap] = ACTIONS(4897), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsection] = ACTIONS(4897), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHaddsec] = ACTIONS(4897), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubsection] = ACTIONS(4897), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4897), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4895), + [anon_sym_BSLASHparagraph] = ACTIONS(4897), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4895), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4897), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4895), + [anon_sym_BSLASHitem] = ACTIONS(4897), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4895), + [anon_sym_LBRACE] = ACTIONS(4895), + [sym_word] = ACTIONS(4897), + [sym_placeholder] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_STAR] = ACTIONS(4897), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_CARET] = ACTIONS(4897), + [anon_sym__] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_BANG] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_COLON] = ACTIONS(4897), + [anon_sym_SQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(4897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), + [anon_sym_BSLASHbegin] = ACTIONS(4897), + [anon_sym_BSLASHusepackage] = ACTIONS(4897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), + [anon_sym_BSLASHinclude] = ACTIONS(4897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), + [anon_sym_BSLASHinput] = ACTIONS(4897), + [anon_sym_BSLASHsubfile] = ACTIONS(4897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), + [anon_sym_BSLASHbibliography] = ACTIONS(4897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), + [anon_sym_BSLASHincludesvg] = ACTIONS(4897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), + [anon_sym_BSLASHimport] = ACTIONS(4897), + [anon_sym_BSLASHsubimport] = ACTIONS(4897), + [anon_sym_BSLASHinputfrom] = ACTIONS(4897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), + [anon_sym_BSLASHincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHcaption] = ACTIONS(4897), + [anon_sym_BSLASHcite] = ACTIONS(4897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCite] = ACTIONS(4897), + [anon_sym_BSLASHnocite] = ACTIONS(4897), + [anon_sym_BSLASHcitet] = ACTIONS(4897), + [anon_sym_BSLASHcitep] = ACTIONS(4897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteauthor] = ACTIONS(4897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitetitle] = ACTIONS(4897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteyear] = ACTIONS(4897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitedate] = ACTIONS(4897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteurl] = ACTIONS(4897), + [anon_sym_BSLASHfullcite] = ACTIONS(4897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), + [anon_sym_BSLASHcitealt] = ACTIONS(4897), + [anon_sym_BSLASHcitealp] = ACTIONS(4897), + [anon_sym_BSLASHcitetext] = ACTIONS(4897), + [anon_sym_BSLASHparencite] = ACTIONS(4897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHParencite] = ACTIONS(4897), + [anon_sym_BSLASHfootcite] = ACTIONS(4897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), + [anon_sym_BSLASHtextcite] = ACTIONS(4897), + [anon_sym_BSLASHTextcite] = ACTIONS(4897), + [anon_sym_BSLASHsmartcite] = ACTIONS(4897), + [anon_sym_BSLASHSmartcite] = ACTIONS(4897), + [anon_sym_BSLASHsupercite] = ACTIONS(4897), + [anon_sym_BSLASHautocite] = ACTIONS(4897), + [anon_sym_BSLASHAutocite] = ACTIONS(4897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHvolcite] = ACTIONS(4897), + [anon_sym_BSLASHVolcite] = ACTIONS(4897), + [anon_sym_BSLASHpvolcite] = ACTIONS(4897), + [anon_sym_BSLASHPvolcite] = ACTIONS(4897), + [anon_sym_BSLASHfvolcite] = ACTIONS(4897), + [anon_sym_BSLASHftvolcite] = ACTIONS(4897), + [anon_sym_BSLASHsvolcite] = ACTIONS(4897), + [anon_sym_BSLASHSvolcite] = ACTIONS(4897), + [anon_sym_BSLASHtvolcite] = ACTIONS(4897), + [anon_sym_BSLASHTvolcite] = ACTIONS(4897), + [anon_sym_BSLASHavolcite] = ACTIONS(4897), + [anon_sym_BSLASHAvolcite] = ACTIONS(4897), + [anon_sym_BSLASHnotecite] = ACTIONS(4897), + [anon_sym_BSLASHNotecite] = ACTIONS(4897), + [anon_sym_BSLASHpnotecite] = ACTIONS(4897), + [anon_sym_BSLASHPnotecite] = ACTIONS(4897), + [anon_sym_BSLASHfnotecite] = ACTIONS(4897), + [anon_sym_BSLASHlabel] = ACTIONS(4897), + [anon_sym_BSLASHref] = ACTIONS(4897), + [anon_sym_BSLASHeqref] = ACTIONS(4897), + [anon_sym_BSLASHvref] = ACTIONS(4897), + [anon_sym_BSLASHVref] = ACTIONS(4897), + [anon_sym_BSLASHautoref] = ACTIONS(4897), + [anon_sym_BSLASHpageref] = ACTIONS(4897), + [anon_sym_BSLASHcref] = ACTIONS(4897), + [anon_sym_BSLASHCref] = ACTIONS(4897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnameCref] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHlabelcref] = ACTIONS(4897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCrefrange] = ACTIONS(4897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnewlabel] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), + [anon_sym_BSLASHdef] = ACTIONS(4897), + [anon_sym_BSLASHlet] = ACTIONS(4897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), + [anon_sym_BSLASHgls] = ACTIONS(4897), + [anon_sym_BSLASHGls] = ACTIONS(4897), + [anon_sym_BSLASHGLS] = ACTIONS(4897), + [anon_sym_BSLASHglspl] = ACTIONS(4897), + [anon_sym_BSLASHGlspl] = ACTIONS(4897), + [anon_sym_BSLASHGLSpl] = ACTIONS(4897), + [anon_sym_BSLASHglsdisp] = ACTIONS(4897), + [anon_sym_BSLASHglslink] = ACTIONS(4897), + [anon_sym_BSLASHglstext] = ACTIONS(4897), + [anon_sym_BSLASHGlstext] = ACTIONS(4897), + [anon_sym_BSLASHGLStext] = ACTIONS(4897), + [anon_sym_BSLASHglsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), + [anon_sym_BSLASHglsplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSplural] = ACTIONS(4897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHglsname] = ACTIONS(4897), + [anon_sym_BSLASHGlsname] = ACTIONS(4897), + [anon_sym_BSLASHGLSname] = ACTIONS(4897), + [anon_sym_BSLASHglssymbol] = ACTIONS(4897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), + [anon_sym_BSLASHglsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), + [anon_sym_BSLASHglsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), + [anon_sym_BSLASHglsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), + [anon_sym_BSLASHglsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), + [anon_sym_BSLASHglsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), + [anon_sym_BSLASHnewacronym] = ACTIONS(4897), + [anon_sym_BSLASHacrshort] = ACTIONS(4897), + [anon_sym_BSLASHAcrshort] = ACTIONS(4897), + [anon_sym_BSLASHACRshort] = ACTIONS(4897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), + [anon_sym_BSLASHacrlong] = ACTIONS(4897), + [anon_sym_BSLASHAcrlong] = ACTIONS(4897), + [anon_sym_BSLASHACRlong] = ACTIONS(4897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), + [anon_sym_BSLASHacrfull] = ACTIONS(4897), + [anon_sym_BSLASHAcrfull] = ACTIONS(4897), + [anon_sym_BSLASHACRfull] = ACTIONS(4897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), + [anon_sym_BSLASHacs] = ACTIONS(4897), + [anon_sym_BSLASHAcs] = ACTIONS(4897), + [anon_sym_BSLASHacsp] = ACTIONS(4897), + [anon_sym_BSLASHAcsp] = ACTIONS(4897), + [anon_sym_BSLASHacl] = ACTIONS(4897), + [anon_sym_BSLASHAcl] = ACTIONS(4897), + [anon_sym_BSLASHaclp] = ACTIONS(4897), + [anon_sym_BSLASHAclp] = ACTIONS(4897), + [anon_sym_BSLASHacf] = ACTIONS(4897), + [anon_sym_BSLASHAcf] = ACTIONS(4897), + [anon_sym_BSLASHacfp] = ACTIONS(4897), + [anon_sym_BSLASHAcfp] = ACTIONS(4897), + [anon_sym_BSLASHac] = ACTIONS(4897), + [anon_sym_BSLASHAc] = ACTIONS(4897), + [anon_sym_BSLASHacp] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), + [anon_sym_BSLASHcolor] = ACTIONS(4897), + [anon_sym_BSLASHcolorbox] = ACTIONS(4897), + [anon_sym_BSLASHtextcolor] = ACTIONS(4897), + [anon_sym_BSLASHpagecolor] = ACTIONS(4897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), + [anon_sym_BSLASHtext] = ACTIONS(4897), + [anon_sym_BSLASHintertext] = ACTIONS(4897), + [anon_sym_shortintertext] = ACTIONS(4897), }, - [1258] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_BSLASHpart] = ACTIONS(5349), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddpart] = ACTIONS(5349), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5347), - [anon_sym_BSLASHchapter] = ACTIONS(5349), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddchap] = ACTIONS(5349), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsection] = ACTIONS(5349), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHaddsec] = ACTIONS(5349), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5349), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5347), - [anon_sym_BSLASHparagraph] = ACTIONS(5349), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5349), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5347), - [anon_sym_BSLASHitem] = ACTIONS(5349), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASHbegin] = ACTIONS(5349), - [anon_sym_BSLASHend] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), + [1154] = { + [sym_command_name] = ACTIONS(4901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4901), + [anon_sym_LPAREN] = ACTIONS(4899), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_RBRACK] = ACTIONS(4899), + [anon_sym_COMMA] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4899), + [anon_sym_BSLASHpart] = ACTIONS(4901), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddpart] = ACTIONS(4901), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4899), + [anon_sym_BSLASHchapter] = ACTIONS(4901), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddchap] = ACTIONS(4901), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsection] = ACTIONS(4901), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHaddsec] = ACTIONS(4901), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubsection] = ACTIONS(4901), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4901), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4899), + [anon_sym_BSLASHparagraph] = ACTIONS(4901), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4899), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4901), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4899), + [anon_sym_BSLASHitem] = ACTIONS(4901), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4899), + [anon_sym_LBRACE] = ACTIONS(4899), + [sym_word] = ACTIONS(4901), + [sym_placeholder] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(4901), + [anon_sym_DASH] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4901), + [anon_sym_SLASH] = ACTIONS(4901), + [anon_sym_CARET] = ACTIONS(4901), + [anon_sym__] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_BANG] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_COLON] = ACTIONS(4901), + [anon_sym_SQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), + [anon_sym_BSLASHbegin] = ACTIONS(4901), + [anon_sym_BSLASHusepackage] = ACTIONS(4901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), + [anon_sym_BSLASHinclude] = ACTIONS(4901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), + [anon_sym_BSLASHinput] = ACTIONS(4901), + [anon_sym_BSLASHsubfile] = ACTIONS(4901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), + [anon_sym_BSLASHbibliography] = ACTIONS(4901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), + [anon_sym_BSLASHincludesvg] = ACTIONS(4901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), + [anon_sym_BSLASHimport] = ACTIONS(4901), + [anon_sym_BSLASHsubimport] = ACTIONS(4901), + [anon_sym_BSLASHinputfrom] = ACTIONS(4901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), + [anon_sym_BSLASHincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHcaption] = ACTIONS(4901), + [anon_sym_BSLASHcite] = ACTIONS(4901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCite] = ACTIONS(4901), + [anon_sym_BSLASHnocite] = ACTIONS(4901), + [anon_sym_BSLASHcitet] = ACTIONS(4901), + [anon_sym_BSLASHcitep] = ACTIONS(4901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteauthor] = ACTIONS(4901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitetitle] = ACTIONS(4901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteyear] = ACTIONS(4901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitedate] = ACTIONS(4901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteurl] = ACTIONS(4901), + [anon_sym_BSLASHfullcite] = ACTIONS(4901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), + [anon_sym_BSLASHcitealt] = ACTIONS(4901), + [anon_sym_BSLASHcitealp] = ACTIONS(4901), + [anon_sym_BSLASHcitetext] = ACTIONS(4901), + [anon_sym_BSLASHparencite] = ACTIONS(4901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHParencite] = ACTIONS(4901), + [anon_sym_BSLASHfootcite] = ACTIONS(4901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), + [anon_sym_BSLASHtextcite] = ACTIONS(4901), + [anon_sym_BSLASHTextcite] = ACTIONS(4901), + [anon_sym_BSLASHsmartcite] = ACTIONS(4901), + [anon_sym_BSLASHSmartcite] = ACTIONS(4901), + [anon_sym_BSLASHsupercite] = ACTIONS(4901), + [anon_sym_BSLASHautocite] = ACTIONS(4901), + [anon_sym_BSLASHAutocite] = ACTIONS(4901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHvolcite] = ACTIONS(4901), + [anon_sym_BSLASHVolcite] = ACTIONS(4901), + [anon_sym_BSLASHpvolcite] = ACTIONS(4901), + [anon_sym_BSLASHPvolcite] = ACTIONS(4901), + [anon_sym_BSLASHfvolcite] = ACTIONS(4901), + [anon_sym_BSLASHftvolcite] = ACTIONS(4901), + [anon_sym_BSLASHsvolcite] = ACTIONS(4901), + [anon_sym_BSLASHSvolcite] = ACTIONS(4901), + [anon_sym_BSLASHtvolcite] = ACTIONS(4901), + [anon_sym_BSLASHTvolcite] = ACTIONS(4901), + [anon_sym_BSLASHavolcite] = ACTIONS(4901), + [anon_sym_BSLASHAvolcite] = ACTIONS(4901), + [anon_sym_BSLASHnotecite] = ACTIONS(4901), + [anon_sym_BSLASHNotecite] = ACTIONS(4901), + [anon_sym_BSLASHpnotecite] = ACTIONS(4901), + [anon_sym_BSLASHPnotecite] = ACTIONS(4901), + [anon_sym_BSLASHfnotecite] = ACTIONS(4901), + [anon_sym_BSLASHlabel] = ACTIONS(4901), + [anon_sym_BSLASHref] = ACTIONS(4901), + [anon_sym_BSLASHeqref] = ACTIONS(4901), + [anon_sym_BSLASHvref] = ACTIONS(4901), + [anon_sym_BSLASHVref] = ACTIONS(4901), + [anon_sym_BSLASHautoref] = ACTIONS(4901), + [anon_sym_BSLASHpageref] = ACTIONS(4901), + [anon_sym_BSLASHcref] = ACTIONS(4901), + [anon_sym_BSLASHCref] = ACTIONS(4901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnameCref] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHlabelcref] = ACTIONS(4901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCrefrange] = ACTIONS(4901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnewlabel] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), + [anon_sym_BSLASHdef] = ACTIONS(4901), + [anon_sym_BSLASHlet] = ACTIONS(4901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), + [anon_sym_BSLASHgls] = ACTIONS(4901), + [anon_sym_BSLASHGls] = ACTIONS(4901), + [anon_sym_BSLASHGLS] = ACTIONS(4901), + [anon_sym_BSLASHglspl] = ACTIONS(4901), + [anon_sym_BSLASHGlspl] = ACTIONS(4901), + [anon_sym_BSLASHGLSpl] = ACTIONS(4901), + [anon_sym_BSLASHglsdisp] = ACTIONS(4901), + [anon_sym_BSLASHglslink] = ACTIONS(4901), + [anon_sym_BSLASHglstext] = ACTIONS(4901), + [anon_sym_BSLASHGlstext] = ACTIONS(4901), + [anon_sym_BSLASHGLStext] = ACTIONS(4901), + [anon_sym_BSLASHglsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), + [anon_sym_BSLASHglsplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSplural] = ACTIONS(4901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHglsname] = ACTIONS(4901), + [anon_sym_BSLASHGlsname] = ACTIONS(4901), + [anon_sym_BSLASHGLSname] = ACTIONS(4901), + [anon_sym_BSLASHglssymbol] = ACTIONS(4901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), + [anon_sym_BSLASHglsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), + [anon_sym_BSLASHglsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), + [anon_sym_BSLASHglsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), + [anon_sym_BSLASHglsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), + [anon_sym_BSLASHglsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), + [anon_sym_BSLASHnewacronym] = ACTIONS(4901), + [anon_sym_BSLASHacrshort] = ACTIONS(4901), + [anon_sym_BSLASHAcrshort] = ACTIONS(4901), + [anon_sym_BSLASHACRshort] = ACTIONS(4901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), + [anon_sym_BSLASHacrlong] = ACTIONS(4901), + [anon_sym_BSLASHAcrlong] = ACTIONS(4901), + [anon_sym_BSLASHACRlong] = ACTIONS(4901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), + [anon_sym_BSLASHacrfull] = ACTIONS(4901), + [anon_sym_BSLASHAcrfull] = ACTIONS(4901), + [anon_sym_BSLASHACRfull] = ACTIONS(4901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), + [anon_sym_BSLASHacs] = ACTIONS(4901), + [anon_sym_BSLASHAcs] = ACTIONS(4901), + [anon_sym_BSLASHacsp] = ACTIONS(4901), + [anon_sym_BSLASHAcsp] = ACTIONS(4901), + [anon_sym_BSLASHacl] = ACTIONS(4901), + [anon_sym_BSLASHAcl] = ACTIONS(4901), + [anon_sym_BSLASHaclp] = ACTIONS(4901), + [anon_sym_BSLASHAclp] = ACTIONS(4901), + [anon_sym_BSLASHacf] = ACTIONS(4901), + [anon_sym_BSLASHAcf] = ACTIONS(4901), + [anon_sym_BSLASHacfp] = ACTIONS(4901), + [anon_sym_BSLASHAcfp] = ACTIONS(4901), + [anon_sym_BSLASHac] = ACTIONS(4901), + [anon_sym_BSLASHAc] = ACTIONS(4901), + [anon_sym_BSLASHacp] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), + [anon_sym_BSLASHcolor] = ACTIONS(4901), + [anon_sym_BSLASHcolorbox] = ACTIONS(4901), + [anon_sym_BSLASHtextcolor] = ACTIONS(4901), + [anon_sym_BSLASHpagecolor] = ACTIONS(4901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), + [anon_sym_BSLASHtext] = ACTIONS(4901), + [anon_sym_BSLASHintertext] = ACTIONS(4901), + [anon_sym_shortintertext] = ACTIONS(4901), }, - [1259] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_BSLASHpart] = ACTIONS(5345), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddpart] = ACTIONS(5345), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5343), - [anon_sym_BSLASHchapter] = ACTIONS(5345), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddchap] = ACTIONS(5345), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsection] = ACTIONS(5345), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHaddsec] = ACTIONS(5345), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5345), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5343), - [anon_sym_BSLASHparagraph] = ACTIONS(5345), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5345), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5343), - [anon_sym_BSLASHitem] = ACTIONS(5345), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASHbegin] = ACTIONS(5345), - [anon_sym_BSLASHend] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), + [1155] = { + [sym_command_name] = ACTIONS(4905), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4905), + [anon_sym_LPAREN] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_LBRACK] = ACTIONS(4903), + [anon_sym_RBRACK] = ACTIONS(4903), + [anon_sym_COMMA] = ACTIONS(4903), + [anon_sym_EQ] = ACTIONS(4903), + [anon_sym_BSLASHpart] = ACTIONS(4905), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddpart] = ACTIONS(4905), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4903), + [anon_sym_BSLASHchapter] = ACTIONS(4905), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddchap] = ACTIONS(4905), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsection] = ACTIONS(4905), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHaddsec] = ACTIONS(4905), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubsection] = ACTIONS(4905), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4905), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4903), + [anon_sym_BSLASHparagraph] = ACTIONS(4905), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4903), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4905), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4903), + [anon_sym_BSLASHitem] = ACTIONS(4905), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4903), + [anon_sym_LBRACE] = ACTIONS(4903), + [sym_word] = ACTIONS(4905), + [sym_placeholder] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4905), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_CARET] = ACTIONS(4905), + [anon_sym__] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4905), + [anon_sym_COLON] = ACTIONS(4905), + [anon_sym_SQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4905), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), + [anon_sym_BSLASHbegin] = ACTIONS(4905), + [anon_sym_BSLASHusepackage] = ACTIONS(4905), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), + [anon_sym_BSLASHinclude] = ACTIONS(4905), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), + [anon_sym_BSLASHinput] = ACTIONS(4905), + [anon_sym_BSLASHsubfile] = ACTIONS(4905), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), + [anon_sym_BSLASHbibliography] = ACTIONS(4905), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), + [anon_sym_BSLASHincludesvg] = ACTIONS(4905), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), + [anon_sym_BSLASHimport] = ACTIONS(4905), + [anon_sym_BSLASHsubimport] = ACTIONS(4905), + [anon_sym_BSLASHinputfrom] = ACTIONS(4905), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), + [anon_sym_BSLASHincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHcaption] = ACTIONS(4905), + [anon_sym_BSLASHcite] = ACTIONS(4905), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCite] = ACTIONS(4905), + [anon_sym_BSLASHnocite] = ACTIONS(4905), + [anon_sym_BSLASHcitet] = ACTIONS(4905), + [anon_sym_BSLASHcitep] = ACTIONS(4905), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteauthor] = ACTIONS(4905), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitetitle] = ACTIONS(4905), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteyear] = ACTIONS(4905), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitedate] = ACTIONS(4905), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteurl] = ACTIONS(4905), + [anon_sym_BSLASHfullcite] = ACTIONS(4905), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), + [anon_sym_BSLASHcitealt] = ACTIONS(4905), + [anon_sym_BSLASHcitealp] = ACTIONS(4905), + [anon_sym_BSLASHcitetext] = ACTIONS(4905), + [anon_sym_BSLASHparencite] = ACTIONS(4905), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHParencite] = ACTIONS(4905), + [anon_sym_BSLASHfootcite] = ACTIONS(4905), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), + [anon_sym_BSLASHtextcite] = ACTIONS(4905), + [anon_sym_BSLASHTextcite] = ACTIONS(4905), + [anon_sym_BSLASHsmartcite] = ACTIONS(4905), + [anon_sym_BSLASHSmartcite] = ACTIONS(4905), + [anon_sym_BSLASHsupercite] = ACTIONS(4905), + [anon_sym_BSLASHautocite] = ACTIONS(4905), + [anon_sym_BSLASHAutocite] = ACTIONS(4905), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHvolcite] = ACTIONS(4905), + [anon_sym_BSLASHVolcite] = ACTIONS(4905), + [anon_sym_BSLASHpvolcite] = ACTIONS(4905), + [anon_sym_BSLASHPvolcite] = ACTIONS(4905), + [anon_sym_BSLASHfvolcite] = ACTIONS(4905), + [anon_sym_BSLASHftvolcite] = ACTIONS(4905), + [anon_sym_BSLASHsvolcite] = ACTIONS(4905), + [anon_sym_BSLASHSvolcite] = ACTIONS(4905), + [anon_sym_BSLASHtvolcite] = ACTIONS(4905), + [anon_sym_BSLASHTvolcite] = ACTIONS(4905), + [anon_sym_BSLASHavolcite] = ACTIONS(4905), + [anon_sym_BSLASHAvolcite] = ACTIONS(4905), + [anon_sym_BSLASHnotecite] = ACTIONS(4905), + [anon_sym_BSLASHNotecite] = ACTIONS(4905), + [anon_sym_BSLASHpnotecite] = ACTIONS(4905), + [anon_sym_BSLASHPnotecite] = ACTIONS(4905), + [anon_sym_BSLASHfnotecite] = ACTIONS(4905), + [anon_sym_BSLASHlabel] = ACTIONS(4905), + [anon_sym_BSLASHref] = ACTIONS(4905), + [anon_sym_BSLASHeqref] = ACTIONS(4905), + [anon_sym_BSLASHvref] = ACTIONS(4905), + [anon_sym_BSLASHVref] = ACTIONS(4905), + [anon_sym_BSLASHautoref] = ACTIONS(4905), + [anon_sym_BSLASHpageref] = ACTIONS(4905), + [anon_sym_BSLASHcref] = ACTIONS(4905), + [anon_sym_BSLASHCref] = ACTIONS(4905), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnameCref] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHlabelcref] = ACTIONS(4905), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCrefrange] = ACTIONS(4905), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnewlabel] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), + [anon_sym_BSLASHdef] = ACTIONS(4905), + [anon_sym_BSLASHlet] = ACTIONS(4905), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), + [anon_sym_BSLASHgls] = ACTIONS(4905), + [anon_sym_BSLASHGls] = ACTIONS(4905), + [anon_sym_BSLASHGLS] = ACTIONS(4905), + [anon_sym_BSLASHglspl] = ACTIONS(4905), + [anon_sym_BSLASHGlspl] = ACTIONS(4905), + [anon_sym_BSLASHGLSpl] = ACTIONS(4905), + [anon_sym_BSLASHglsdisp] = ACTIONS(4905), + [anon_sym_BSLASHglslink] = ACTIONS(4905), + [anon_sym_BSLASHglstext] = ACTIONS(4905), + [anon_sym_BSLASHGlstext] = ACTIONS(4905), + [anon_sym_BSLASHGLStext] = ACTIONS(4905), + [anon_sym_BSLASHglsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), + [anon_sym_BSLASHglsplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSplural] = ACTIONS(4905), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHglsname] = ACTIONS(4905), + [anon_sym_BSLASHGlsname] = ACTIONS(4905), + [anon_sym_BSLASHGLSname] = ACTIONS(4905), + [anon_sym_BSLASHglssymbol] = ACTIONS(4905), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), + [anon_sym_BSLASHglsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), + [anon_sym_BSLASHglsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), + [anon_sym_BSLASHglsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), + [anon_sym_BSLASHglsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), + [anon_sym_BSLASHglsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), + [anon_sym_BSLASHnewacronym] = ACTIONS(4905), + [anon_sym_BSLASHacrshort] = ACTIONS(4905), + [anon_sym_BSLASHAcrshort] = ACTIONS(4905), + [anon_sym_BSLASHACRshort] = ACTIONS(4905), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), + [anon_sym_BSLASHacrlong] = ACTIONS(4905), + [anon_sym_BSLASHAcrlong] = ACTIONS(4905), + [anon_sym_BSLASHACRlong] = ACTIONS(4905), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), + [anon_sym_BSLASHacrfull] = ACTIONS(4905), + [anon_sym_BSLASHAcrfull] = ACTIONS(4905), + [anon_sym_BSLASHACRfull] = ACTIONS(4905), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), + [anon_sym_BSLASHacs] = ACTIONS(4905), + [anon_sym_BSLASHAcs] = ACTIONS(4905), + [anon_sym_BSLASHacsp] = ACTIONS(4905), + [anon_sym_BSLASHAcsp] = ACTIONS(4905), + [anon_sym_BSLASHacl] = ACTIONS(4905), + [anon_sym_BSLASHAcl] = ACTIONS(4905), + [anon_sym_BSLASHaclp] = ACTIONS(4905), + [anon_sym_BSLASHAclp] = ACTIONS(4905), + [anon_sym_BSLASHacf] = ACTIONS(4905), + [anon_sym_BSLASHAcf] = ACTIONS(4905), + [anon_sym_BSLASHacfp] = ACTIONS(4905), + [anon_sym_BSLASHAcfp] = ACTIONS(4905), + [anon_sym_BSLASHac] = ACTIONS(4905), + [anon_sym_BSLASHAc] = ACTIONS(4905), + [anon_sym_BSLASHacp] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), + [anon_sym_BSLASHcolor] = ACTIONS(4905), + [anon_sym_BSLASHcolorbox] = ACTIONS(4905), + [anon_sym_BSLASHtextcolor] = ACTIONS(4905), + [anon_sym_BSLASHpagecolor] = ACTIONS(4905), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), + [anon_sym_BSLASHtext] = ACTIONS(4905), + [anon_sym_BSLASHintertext] = ACTIONS(4905), + [anon_sym_shortintertext] = ACTIONS(4905), + }, + [1156] = { + [sym_command_name] = ACTIONS(4909), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4909), + [anon_sym_LPAREN] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4907), + [anon_sym_LBRACK] = ACTIONS(4907), + [anon_sym_RBRACK] = ACTIONS(4907), + [anon_sym_COMMA] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_BSLASHpart] = ACTIONS(4909), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddpart] = ACTIONS(4909), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4907), + [anon_sym_BSLASHchapter] = ACTIONS(4909), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddchap] = ACTIONS(4909), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsection] = ACTIONS(4909), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHaddsec] = ACTIONS(4909), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubsection] = ACTIONS(4909), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4909), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4907), + [anon_sym_BSLASHparagraph] = ACTIONS(4909), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4907), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4909), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4907), + [anon_sym_BSLASHitem] = ACTIONS(4909), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4907), + [anon_sym_LBRACE] = ACTIONS(4907), + [sym_word] = ACTIONS(4909), + [sym_placeholder] = ACTIONS(4907), + [anon_sym_PLUS] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_STAR] = ACTIONS(4909), + [anon_sym_SLASH] = ACTIONS(4909), + [anon_sym_CARET] = ACTIONS(4909), + [anon_sym__] = ACTIONS(4909), + [anon_sym_LT] = ACTIONS(4909), + [anon_sym_GT] = ACTIONS(4909), + [anon_sym_BANG] = ACTIONS(4909), + [anon_sym_PIPE] = ACTIONS(4909), + [anon_sym_COLON] = ACTIONS(4909), + [anon_sym_SQUOTE] = ACTIONS(4909), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4907), + [anon_sym_DOLLAR] = ACTIONS(4909), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), + [anon_sym_BSLASHbegin] = ACTIONS(4909), + [anon_sym_BSLASHusepackage] = ACTIONS(4909), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), + [anon_sym_BSLASHinclude] = ACTIONS(4909), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), + [anon_sym_BSLASHinput] = ACTIONS(4909), + [anon_sym_BSLASHsubfile] = ACTIONS(4909), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), + [anon_sym_BSLASHbibliography] = ACTIONS(4909), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), + [anon_sym_BSLASHincludesvg] = ACTIONS(4909), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), + [anon_sym_BSLASHimport] = ACTIONS(4909), + [anon_sym_BSLASHsubimport] = ACTIONS(4909), + [anon_sym_BSLASHinputfrom] = ACTIONS(4909), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), + [anon_sym_BSLASHincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHcaption] = ACTIONS(4909), + [anon_sym_BSLASHcite] = ACTIONS(4909), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCite] = ACTIONS(4909), + [anon_sym_BSLASHnocite] = ACTIONS(4909), + [anon_sym_BSLASHcitet] = ACTIONS(4909), + [anon_sym_BSLASHcitep] = ACTIONS(4909), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteauthor] = ACTIONS(4909), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitetitle] = ACTIONS(4909), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteyear] = ACTIONS(4909), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitedate] = ACTIONS(4909), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteurl] = ACTIONS(4909), + [anon_sym_BSLASHfullcite] = ACTIONS(4909), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), + [anon_sym_BSLASHcitealt] = ACTIONS(4909), + [anon_sym_BSLASHcitealp] = ACTIONS(4909), + [anon_sym_BSLASHcitetext] = ACTIONS(4909), + [anon_sym_BSLASHparencite] = ACTIONS(4909), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHParencite] = ACTIONS(4909), + [anon_sym_BSLASHfootcite] = ACTIONS(4909), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), + [anon_sym_BSLASHtextcite] = ACTIONS(4909), + [anon_sym_BSLASHTextcite] = ACTIONS(4909), + [anon_sym_BSLASHsmartcite] = ACTIONS(4909), + [anon_sym_BSLASHSmartcite] = ACTIONS(4909), + [anon_sym_BSLASHsupercite] = ACTIONS(4909), + [anon_sym_BSLASHautocite] = ACTIONS(4909), + [anon_sym_BSLASHAutocite] = ACTIONS(4909), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHvolcite] = ACTIONS(4909), + [anon_sym_BSLASHVolcite] = ACTIONS(4909), + [anon_sym_BSLASHpvolcite] = ACTIONS(4909), + [anon_sym_BSLASHPvolcite] = ACTIONS(4909), + [anon_sym_BSLASHfvolcite] = ACTIONS(4909), + [anon_sym_BSLASHftvolcite] = ACTIONS(4909), + [anon_sym_BSLASHsvolcite] = ACTIONS(4909), + [anon_sym_BSLASHSvolcite] = ACTIONS(4909), + [anon_sym_BSLASHtvolcite] = ACTIONS(4909), + [anon_sym_BSLASHTvolcite] = ACTIONS(4909), + [anon_sym_BSLASHavolcite] = ACTIONS(4909), + [anon_sym_BSLASHAvolcite] = ACTIONS(4909), + [anon_sym_BSLASHnotecite] = ACTIONS(4909), + [anon_sym_BSLASHNotecite] = ACTIONS(4909), + [anon_sym_BSLASHpnotecite] = ACTIONS(4909), + [anon_sym_BSLASHPnotecite] = ACTIONS(4909), + [anon_sym_BSLASHfnotecite] = ACTIONS(4909), + [anon_sym_BSLASHlabel] = ACTIONS(4909), + [anon_sym_BSLASHref] = ACTIONS(4909), + [anon_sym_BSLASHeqref] = ACTIONS(4909), + [anon_sym_BSLASHvref] = ACTIONS(4909), + [anon_sym_BSLASHVref] = ACTIONS(4909), + [anon_sym_BSLASHautoref] = ACTIONS(4909), + [anon_sym_BSLASHpageref] = ACTIONS(4909), + [anon_sym_BSLASHcref] = ACTIONS(4909), + [anon_sym_BSLASHCref] = ACTIONS(4909), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnameCref] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHlabelcref] = ACTIONS(4909), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCrefrange] = ACTIONS(4909), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnewlabel] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), + [anon_sym_BSLASHdef] = ACTIONS(4909), + [anon_sym_BSLASHlet] = ACTIONS(4909), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), + [anon_sym_BSLASHgls] = ACTIONS(4909), + [anon_sym_BSLASHGls] = ACTIONS(4909), + [anon_sym_BSLASHGLS] = ACTIONS(4909), + [anon_sym_BSLASHglspl] = ACTIONS(4909), + [anon_sym_BSLASHGlspl] = ACTIONS(4909), + [anon_sym_BSLASHGLSpl] = ACTIONS(4909), + [anon_sym_BSLASHglsdisp] = ACTIONS(4909), + [anon_sym_BSLASHglslink] = ACTIONS(4909), + [anon_sym_BSLASHglstext] = ACTIONS(4909), + [anon_sym_BSLASHGlstext] = ACTIONS(4909), + [anon_sym_BSLASHGLStext] = ACTIONS(4909), + [anon_sym_BSLASHglsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), + [anon_sym_BSLASHglsplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSplural] = ACTIONS(4909), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHglsname] = ACTIONS(4909), + [anon_sym_BSLASHGlsname] = ACTIONS(4909), + [anon_sym_BSLASHGLSname] = ACTIONS(4909), + [anon_sym_BSLASHglssymbol] = ACTIONS(4909), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), + [anon_sym_BSLASHglsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), + [anon_sym_BSLASHglsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), + [anon_sym_BSLASHglsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), + [anon_sym_BSLASHglsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), + [anon_sym_BSLASHglsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), + [anon_sym_BSLASHnewacronym] = ACTIONS(4909), + [anon_sym_BSLASHacrshort] = ACTIONS(4909), + [anon_sym_BSLASHAcrshort] = ACTIONS(4909), + [anon_sym_BSLASHACRshort] = ACTIONS(4909), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), + [anon_sym_BSLASHacrlong] = ACTIONS(4909), + [anon_sym_BSLASHAcrlong] = ACTIONS(4909), + [anon_sym_BSLASHACRlong] = ACTIONS(4909), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), + [anon_sym_BSLASHacrfull] = ACTIONS(4909), + [anon_sym_BSLASHAcrfull] = ACTIONS(4909), + [anon_sym_BSLASHACRfull] = ACTIONS(4909), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), + [anon_sym_BSLASHacs] = ACTIONS(4909), + [anon_sym_BSLASHAcs] = ACTIONS(4909), + [anon_sym_BSLASHacsp] = ACTIONS(4909), + [anon_sym_BSLASHAcsp] = ACTIONS(4909), + [anon_sym_BSLASHacl] = ACTIONS(4909), + [anon_sym_BSLASHAcl] = ACTIONS(4909), + [anon_sym_BSLASHaclp] = ACTIONS(4909), + [anon_sym_BSLASHAclp] = ACTIONS(4909), + [anon_sym_BSLASHacf] = ACTIONS(4909), + [anon_sym_BSLASHAcf] = ACTIONS(4909), + [anon_sym_BSLASHacfp] = ACTIONS(4909), + [anon_sym_BSLASHAcfp] = ACTIONS(4909), + [anon_sym_BSLASHac] = ACTIONS(4909), + [anon_sym_BSLASHAc] = ACTIONS(4909), + [anon_sym_BSLASHacp] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), + [anon_sym_BSLASHcolor] = ACTIONS(4909), + [anon_sym_BSLASHcolorbox] = ACTIONS(4909), + [anon_sym_BSLASHtextcolor] = ACTIONS(4909), + [anon_sym_BSLASHpagecolor] = ACTIONS(4909), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), + [anon_sym_BSLASHtext] = ACTIONS(4909), + [anon_sym_BSLASHintertext] = ACTIONS(4909), + [anon_sym_shortintertext] = ACTIONS(4909), + }, + [1157] = { + [sym_command_name] = ACTIONS(4913), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4913), + [anon_sym_LPAREN] = ACTIONS(4911), + [anon_sym_RPAREN] = ACTIONS(4911), + [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_RBRACK] = ACTIONS(4911), + [anon_sym_COMMA] = ACTIONS(4911), + [anon_sym_EQ] = ACTIONS(4911), + [anon_sym_BSLASHpart] = ACTIONS(4913), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddpart] = ACTIONS(4913), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4911), + [anon_sym_BSLASHchapter] = ACTIONS(4913), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddchap] = ACTIONS(4913), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsection] = ACTIONS(4913), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHaddsec] = ACTIONS(4913), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubsection] = ACTIONS(4913), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4913), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4911), + [anon_sym_BSLASHparagraph] = ACTIONS(4913), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4911), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4913), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4911), + [anon_sym_BSLASHitem] = ACTIONS(4913), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4911), + [sym_word] = ACTIONS(4913), + [sym_placeholder] = ACTIONS(4911), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4913), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_CARET] = ACTIONS(4913), + [anon_sym__] = ACTIONS(4913), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_BANG] = ACTIONS(4913), + [anon_sym_PIPE] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4913), + [anon_sym_SQUOTE] = ACTIONS(4913), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4911), + [anon_sym_DOLLAR] = ACTIONS(4913), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), + [anon_sym_BSLASHbegin] = ACTIONS(4913), + [anon_sym_BSLASHusepackage] = ACTIONS(4913), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), + [anon_sym_BSLASHinclude] = ACTIONS(4913), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), + [anon_sym_BSLASHinput] = ACTIONS(4913), + [anon_sym_BSLASHsubfile] = ACTIONS(4913), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), + [anon_sym_BSLASHbibliography] = ACTIONS(4913), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), + [anon_sym_BSLASHincludesvg] = ACTIONS(4913), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), + [anon_sym_BSLASHimport] = ACTIONS(4913), + [anon_sym_BSLASHsubimport] = ACTIONS(4913), + [anon_sym_BSLASHinputfrom] = ACTIONS(4913), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), + [anon_sym_BSLASHincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHcaption] = ACTIONS(4913), + [anon_sym_BSLASHcite] = ACTIONS(4913), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCite] = ACTIONS(4913), + [anon_sym_BSLASHnocite] = ACTIONS(4913), + [anon_sym_BSLASHcitet] = ACTIONS(4913), + [anon_sym_BSLASHcitep] = ACTIONS(4913), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteauthor] = ACTIONS(4913), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitetitle] = ACTIONS(4913), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteyear] = ACTIONS(4913), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitedate] = ACTIONS(4913), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteurl] = ACTIONS(4913), + [anon_sym_BSLASHfullcite] = ACTIONS(4913), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), + [anon_sym_BSLASHcitealt] = ACTIONS(4913), + [anon_sym_BSLASHcitealp] = ACTIONS(4913), + [anon_sym_BSLASHcitetext] = ACTIONS(4913), + [anon_sym_BSLASHparencite] = ACTIONS(4913), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHParencite] = ACTIONS(4913), + [anon_sym_BSLASHfootcite] = ACTIONS(4913), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), + [anon_sym_BSLASHtextcite] = ACTIONS(4913), + [anon_sym_BSLASHTextcite] = ACTIONS(4913), + [anon_sym_BSLASHsmartcite] = ACTIONS(4913), + [anon_sym_BSLASHSmartcite] = ACTIONS(4913), + [anon_sym_BSLASHsupercite] = ACTIONS(4913), + [anon_sym_BSLASHautocite] = ACTIONS(4913), + [anon_sym_BSLASHAutocite] = ACTIONS(4913), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHvolcite] = ACTIONS(4913), + [anon_sym_BSLASHVolcite] = ACTIONS(4913), + [anon_sym_BSLASHpvolcite] = ACTIONS(4913), + [anon_sym_BSLASHPvolcite] = ACTIONS(4913), + [anon_sym_BSLASHfvolcite] = ACTIONS(4913), + [anon_sym_BSLASHftvolcite] = ACTIONS(4913), + [anon_sym_BSLASHsvolcite] = ACTIONS(4913), + [anon_sym_BSLASHSvolcite] = ACTIONS(4913), + [anon_sym_BSLASHtvolcite] = ACTIONS(4913), + [anon_sym_BSLASHTvolcite] = ACTIONS(4913), + [anon_sym_BSLASHavolcite] = ACTIONS(4913), + [anon_sym_BSLASHAvolcite] = ACTIONS(4913), + [anon_sym_BSLASHnotecite] = ACTIONS(4913), + [anon_sym_BSLASHNotecite] = ACTIONS(4913), + [anon_sym_BSLASHpnotecite] = ACTIONS(4913), + [anon_sym_BSLASHPnotecite] = ACTIONS(4913), + [anon_sym_BSLASHfnotecite] = ACTIONS(4913), + [anon_sym_BSLASHlabel] = ACTIONS(4913), + [anon_sym_BSLASHref] = ACTIONS(4913), + [anon_sym_BSLASHeqref] = ACTIONS(4913), + [anon_sym_BSLASHvref] = ACTIONS(4913), + [anon_sym_BSLASHVref] = ACTIONS(4913), + [anon_sym_BSLASHautoref] = ACTIONS(4913), + [anon_sym_BSLASHpageref] = ACTIONS(4913), + [anon_sym_BSLASHcref] = ACTIONS(4913), + [anon_sym_BSLASHCref] = ACTIONS(4913), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnameCref] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHlabelcref] = ACTIONS(4913), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCrefrange] = ACTIONS(4913), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnewlabel] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), + [anon_sym_BSLASHdef] = ACTIONS(4913), + [anon_sym_BSLASHlet] = ACTIONS(4913), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), + [anon_sym_BSLASHgls] = ACTIONS(4913), + [anon_sym_BSLASHGls] = ACTIONS(4913), + [anon_sym_BSLASHGLS] = ACTIONS(4913), + [anon_sym_BSLASHglspl] = ACTIONS(4913), + [anon_sym_BSLASHGlspl] = ACTIONS(4913), + [anon_sym_BSLASHGLSpl] = ACTIONS(4913), + [anon_sym_BSLASHglsdisp] = ACTIONS(4913), + [anon_sym_BSLASHglslink] = ACTIONS(4913), + [anon_sym_BSLASHglstext] = ACTIONS(4913), + [anon_sym_BSLASHGlstext] = ACTIONS(4913), + [anon_sym_BSLASHGLStext] = ACTIONS(4913), + [anon_sym_BSLASHglsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), + [anon_sym_BSLASHglsplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSplural] = ACTIONS(4913), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHglsname] = ACTIONS(4913), + [anon_sym_BSLASHGlsname] = ACTIONS(4913), + [anon_sym_BSLASHGLSname] = ACTIONS(4913), + [anon_sym_BSLASHglssymbol] = ACTIONS(4913), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), + [anon_sym_BSLASHglsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), + [anon_sym_BSLASHglsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), + [anon_sym_BSLASHglsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), + [anon_sym_BSLASHglsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), + [anon_sym_BSLASHglsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), + [anon_sym_BSLASHnewacronym] = ACTIONS(4913), + [anon_sym_BSLASHacrshort] = ACTIONS(4913), + [anon_sym_BSLASHAcrshort] = ACTIONS(4913), + [anon_sym_BSLASHACRshort] = ACTIONS(4913), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), + [anon_sym_BSLASHacrlong] = ACTIONS(4913), + [anon_sym_BSLASHAcrlong] = ACTIONS(4913), + [anon_sym_BSLASHACRlong] = ACTIONS(4913), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), + [anon_sym_BSLASHacrfull] = ACTIONS(4913), + [anon_sym_BSLASHAcrfull] = ACTIONS(4913), + [anon_sym_BSLASHACRfull] = ACTIONS(4913), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), + [anon_sym_BSLASHacs] = ACTIONS(4913), + [anon_sym_BSLASHAcs] = ACTIONS(4913), + [anon_sym_BSLASHacsp] = ACTIONS(4913), + [anon_sym_BSLASHAcsp] = ACTIONS(4913), + [anon_sym_BSLASHacl] = ACTIONS(4913), + [anon_sym_BSLASHAcl] = ACTIONS(4913), + [anon_sym_BSLASHaclp] = ACTIONS(4913), + [anon_sym_BSLASHAclp] = ACTIONS(4913), + [anon_sym_BSLASHacf] = ACTIONS(4913), + [anon_sym_BSLASHAcf] = ACTIONS(4913), + [anon_sym_BSLASHacfp] = ACTIONS(4913), + [anon_sym_BSLASHAcfp] = ACTIONS(4913), + [anon_sym_BSLASHac] = ACTIONS(4913), + [anon_sym_BSLASHAc] = ACTIONS(4913), + [anon_sym_BSLASHacp] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), + [anon_sym_BSLASHcolor] = ACTIONS(4913), + [anon_sym_BSLASHcolorbox] = ACTIONS(4913), + [anon_sym_BSLASHtextcolor] = ACTIONS(4913), + [anon_sym_BSLASHpagecolor] = ACTIONS(4913), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), + [anon_sym_BSLASHtext] = ACTIONS(4913), + [anon_sym_BSLASHintertext] = ACTIONS(4913), + [anon_sym_shortintertext] = ACTIONS(4913), + }, + [1158] = { + [sym_command_name] = ACTIONS(4917), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_RPAREN] = ACTIONS(4915), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4915), + [anon_sym_BSLASHpart] = ACTIONS(4917), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddpart] = ACTIONS(4917), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4915), + [anon_sym_BSLASHchapter] = ACTIONS(4917), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddchap] = ACTIONS(4917), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsection] = ACTIONS(4917), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHaddsec] = ACTIONS(4917), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubsection] = ACTIONS(4917), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4917), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4915), + [anon_sym_BSLASHparagraph] = ACTIONS(4917), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4915), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4917), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4915), + [anon_sym_BSLASHitem] = ACTIONS(4917), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4915), + [sym_word] = ACTIONS(4917), + [sym_placeholder] = ACTIONS(4915), + [anon_sym_PLUS] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4917), + [anon_sym_CARET] = ACTIONS(4917), + [anon_sym__] = ACTIONS(4917), + [anon_sym_LT] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4917), + [anon_sym_BANG] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_SQUOTE] = ACTIONS(4917), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4915), + [anon_sym_DOLLAR] = ACTIONS(4917), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), + [anon_sym_BSLASHbegin] = ACTIONS(4917), + [anon_sym_BSLASHusepackage] = ACTIONS(4917), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), + [anon_sym_BSLASHinclude] = ACTIONS(4917), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), + [anon_sym_BSLASHinput] = ACTIONS(4917), + [anon_sym_BSLASHsubfile] = ACTIONS(4917), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), + [anon_sym_BSLASHbibliography] = ACTIONS(4917), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), + [anon_sym_BSLASHincludesvg] = ACTIONS(4917), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), + [anon_sym_BSLASHimport] = ACTIONS(4917), + [anon_sym_BSLASHsubimport] = ACTIONS(4917), + [anon_sym_BSLASHinputfrom] = ACTIONS(4917), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), + [anon_sym_BSLASHincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHcaption] = ACTIONS(4917), + [anon_sym_BSLASHcite] = ACTIONS(4917), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCite] = ACTIONS(4917), + [anon_sym_BSLASHnocite] = ACTIONS(4917), + [anon_sym_BSLASHcitet] = ACTIONS(4917), + [anon_sym_BSLASHcitep] = ACTIONS(4917), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteauthor] = ACTIONS(4917), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitetitle] = ACTIONS(4917), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteyear] = ACTIONS(4917), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitedate] = ACTIONS(4917), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteurl] = ACTIONS(4917), + [anon_sym_BSLASHfullcite] = ACTIONS(4917), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), + [anon_sym_BSLASHcitealt] = ACTIONS(4917), + [anon_sym_BSLASHcitealp] = ACTIONS(4917), + [anon_sym_BSLASHcitetext] = ACTIONS(4917), + [anon_sym_BSLASHparencite] = ACTIONS(4917), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHParencite] = ACTIONS(4917), + [anon_sym_BSLASHfootcite] = ACTIONS(4917), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), + [anon_sym_BSLASHtextcite] = ACTIONS(4917), + [anon_sym_BSLASHTextcite] = ACTIONS(4917), + [anon_sym_BSLASHsmartcite] = ACTIONS(4917), + [anon_sym_BSLASHSmartcite] = ACTIONS(4917), + [anon_sym_BSLASHsupercite] = ACTIONS(4917), + [anon_sym_BSLASHautocite] = ACTIONS(4917), + [anon_sym_BSLASHAutocite] = ACTIONS(4917), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHvolcite] = ACTIONS(4917), + [anon_sym_BSLASHVolcite] = ACTIONS(4917), + [anon_sym_BSLASHpvolcite] = ACTIONS(4917), + [anon_sym_BSLASHPvolcite] = ACTIONS(4917), + [anon_sym_BSLASHfvolcite] = ACTIONS(4917), + [anon_sym_BSLASHftvolcite] = ACTIONS(4917), + [anon_sym_BSLASHsvolcite] = ACTIONS(4917), + [anon_sym_BSLASHSvolcite] = ACTIONS(4917), + [anon_sym_BSLASHtvolcite] = ACTIONS(4917), + [anon_sym_BSLASHTvolcite] = ACTIONS(4917), + [anon_sym_BSLASHavolcite] = ACTIONS(4917), + [anon_sym_BSLASHAvolcite] = ACTIONS(4917), + [anon_sym_BSLASHnotecite] = ACTIONS(4917), + [anon_sym_BSLASHNotecite] = ACTIONS(4917), + [anon_sym_BSLASHpnotecite] = ACTIONS(4917), + [anon_sym_BSLASHPnotecite] = ACTIONS(4917), + [anon_sym_BSLASHfnotecite] = ACTIONS(4917), + [anon_sym_BSLASHlabel] = ACTIONS(4917), + [anon_sym_BSLASHref] = ACTIONS(4917), + [anon_sym_BSLASHeqref] = ACTIONS(4917), + [anon_sym_BSLASHvref] = ACTIONS(4917), + [anon_sym_BSLASHVref] = ACTIONS(4917), + [anon_sym_BSLASHautoref] = ACTIONS(4917), + [anon_sym_BSLASHpageref] = ACTIONS(4917), + [anon_sym_BSLASHcref] = ACTIONS(4917), + [anon_sym_BSLASHCref] = ACTIONS(4917), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnameCref] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHlabelcref] = ACTIONS(4917), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCrefrange] = ACTIONS(4917), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnewlabel] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), + [anon_sym_BSLASHdef] = ACTIONS(4917), + [anon_sym_BSLASHlet] = ACTIONS(4917), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), + [anon_sym_BSLASHgls] = ACTIONS(4917), + [anon_sym_BSLASHGls] = ACTIONS(4917), + [anon_sym_BSLASHGLS] = ACTIONS(4917), + [anon_sym_BSLASHglspl] = ACTIONS(4917), + [anon_sym_BSLASHGlspl] = ACTIONS(4917), + [anon_sym_BSLASHGLSpl] = ACTIONS(4917), + [anon_sym_BSLASHglsdisp] = ACTIONS(4917), + [anon_sym_BSLASHglslink] = ACTIONS(4917), + [anon_sym_BSLASHglstext] = ACTIONS(4917), + [anon_sym_BSLASHGlstext] = ACTIONS(4917), + [anon_sym_BSLASHGLStext] = ACTIONS(4917), + [anon_sym_BSLASHglsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), + [anon_sym_BSLASHglsplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSplural] = ACTIONS(4917), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHglsname] = ACTIONS(4917), + [anon_sym_BSLASHGlsname] = ACTIONS(4917), + [anon_sym_BSLASHGLSname] = ACTIONS(4917), + [anon_sym_BSLASHglssymbol] = ACTIONS(4917), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), + [anon_sym_BSLASHglsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), + [anon_sym_BSLASHglsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), + [anon_sym_BSLASHglsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), + [anon_sym_BSLASHglsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), + [anon_sym_BSLASHglsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), + [anon_sym_BSLASHnewacronym] = ACTIONS(4917), + [anon_sym_BSLASHacrshort] = ACTIONS(4917), + [anon_sym_BSLASHAcrshort] = ACTIONS(4917), + [anon_sym_BSLASHACRshort] = ACTIONS(4917), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), + [anon_sym_BSLASHacrlong] = ACTIONS(4917), + [anon_sym_BSLASHAcrlong] = ACTIONS(4917), + [anon_sym_BSLASHACRlong] = ACTIONS(4917), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), + [anon_sym_BSLASHacrfull] = ACTIONS(4917), + [anon_sym_BSLASHAcrfull] = ACTIONS(4917), + [anon_sym_BSLASHACRfull] = ACTIONS(4917), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), + [anon_sym_BSLASHacs] = ACTIONS(4917), + [anon_sym_BSLASHAcs] = ACTIONS(4917), + [anon_sym_BSLASHacsp] = ACTIONS(4917), + [anon_sym_BSLASHAcsp] = ACTIONS(4917), + [anon_sym_BSLASHacl] = ACTIONS(4917), + [anon_sym_BSLASHAcl] = ACTIONS(4917), + [anon_sym_BSLASHaclp] = ACTIONS(4917), + [anon_sym_BSLASHAclp] = ACTIONS(4917), + [anon_sym_BSLASHacf] = ACTIONS(4917), + [anon_sym_BSLASHAcf] = ACTIONS(4917), + [anon_sym_BSLASHacfp] = ACTIONS(4917), + [anon_sym_BSLASHAcfp] = ACTIONS(4917), + [anon_sym_BSLASHac] = ACTIONS(4917), + [anon_sym_BSLASHAc] = ACTIONS(4917), + [anon_sym_BSLASHacp] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), + [anon_sym_BSLASHcolor] = ACTIONS(4917), + [anon_sym_BSLASHcolorbox] = ACTIONS(4917), + [anon_sym_BSLASHtextcolor] = ACTIONS(4917), + [anon_sym_BSLASHpagecolor] = ACTIONS(4917), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), + [anon_sym_BSLASHtext] = ACTIONS(4917), + [anon_sym_BSLASHintertext] = ACTIONS(4917), + [anon_sym_shortintertext] = ACTIONS(4917), + }, + [1159] = { + [sym_command_name] = ACTIONS(4929), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4929), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_RBRACK] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_EQ] = ACTIONS(4927), + [anon_sym_BSLASHpart] = ACTIONS(4929), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddpart] = ACTIONS(4929), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4927), + [anon_sym_BSLASHchapter] = ACTIONS(4929), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddchap] = ACTIONS(4929), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsection] = ACTIONS(4929), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHaddsec] = ACTIONS(4929), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubsection] = ACTIONS(4929), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4929), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4927), + [anon_sym_BSLASHparagraph] = ACTIONS(4929), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4927), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4929), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4927), + [anon_sym_BSLASHitem] = ACTIONS(4929), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4927), + [anon_sym_LBRACE] = ACTIONS(4927), + [sym_word] = ACTIONS(4929), + [sym_placeholder] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_CARET] = ACTIONS(4929), + [anon_sym__] = ACTIONS(4929), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_BANG] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4929), + [anon_sym_COLON] = ACTIONS(4929), + [anon_sym_SQUOTE] = ACTIONS(4929), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4927), + [anon_sym_DOLLAR] = ACTIONS(4929), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), + [anon_sym_BSLASHbegin] = ACTIONS(4929), + [anon_sym_BSLASHusepackage] = ACTIONS(4929), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), + [anon_sym_BSLASHinclude] = ACTIONS(4929), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), + [anon_sym_BSLASHinput] = ACTIONS(4929), + [anon_sym_BSLASHsubfile] = ACTIONS(4929), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), + [anon_sym_BSLASHbibliography] = ACTIONS(4929), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), + [anon_sym_BSLASHincludesvg] = ACTIONS(4929), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), + [anon_sym_BSLASHimport] = ACTIONS(4929), + [anon_sym_BSLASHsubimport] = ACTIONS(4929), + [anon_sym_BSLASHinputfrom] = ACTIONS(4929), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), + [anon_sym_BSLASHincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHcaption] = ACTIONS(4929), + [anon_sym_BSLASHcite] = ACTIONS(4929), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCite] = ACTIONS(4929), + [anon_sym_BSLASHnocite] = ACTIONS(4929), + [anon_sym_BSLASHcitet] = ACTIONS(4929), + [anon_sym_BSLASHcitep] = ACTIONS(4929), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteauthor] = ACTIONS(4929), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitetitle] = ACTIONS(4929), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteyear] = ACTIONS(4929), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitedate] = ACTIONS(4929), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteurl] = ACTIONS(4929), + [anon_sym_BSLASHfullcite] = ACTIONS(4929), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), + [anon_sym_BSLASHcitealt] = ACTIONS(4929), + [anon_sym_BSLASHcitealp] = ACTIONS(4929), + [anon_sym_BSLASHcitetext] = ACTIONS(4929), + [anon_sym_BSLASHparencite] = ACTIONS(4929), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHParencite] = ACTIONS(4929), + [anon_sym_BSLASHfootcite] = ACTIONS(4929), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), + [anon_sym_BSLASHtextcite] = ACTIONS(4929), + [anon_sym_BSLASHTextcite] = ACTIONS(4929), + [anon_sym_BSLASHsmartcite] = ACTIONS(4929), + [anon_sym_BSLASHSmartcite] = ACTIONS(4929), + [anon_sym_BSLASHsupercite] = ACTIONS(4929), + [anon_sym_BSLASHautocite] = ACTIONS(4929), + [anon_sym_BSLASHAutocite] = ACTIONS(4929), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHvolcite] = ACTIONS(4929), + [anon_sym_BSLASHVolcite] = ACTIONS(4929), + [anon_sym_BSLASHpvolcite] = ACTIONS(4929), + [anon_sym_BSLASHPvolcite] = ACTIONS(4929), + [anon_sym_BSLASHfvolcite] = ACTIONS(4929), + [anon_sym_BSLASHftvolcite] = ACTIONS(4929), + [anon_sym_BSLASHsvolcite] = ACTIONS(4929), + [anon_sym_BSLASHSvolcite] = ACTIONS(4929), + [anon_sym_BSLASHtvolcite] = ACTIONS(4929), + [anon_sym_BSLASHTvolcite] = ACTIONS(4929), + [anon_sym_BSLASHavolcite] = ACTIONS(4929), + [anon_sym_BSLASHAvolcite] = ACTIONS(4929), + [anon_sym_BSLASHnotecite] = ACTIONS(4929), + [anon_sym_BSLASHNotecite] = ACTIONS(4929), + [anon_sym_BSLASHpnotecite] = ACTIONS(4929), + [anon_sym_BSLASHPnotecite] = ACTIONS(4929), + [anon_sym_BSLASHfnotecite] = ACTIONS(4929), + [anon_sym_BSLASHlabel] = ACTIONS(4929), + [anon_sym_BSLASHref] = ACTIONS(4929), + [anon_sym_BSLASHeqref] = ACTIONS(4929), + [anon_sym_BSLASHvref] = ACTIONS(4929), + [anon_sym_BSLASHVref] = ACTIONS(4929), + [anon_sym_BSLASHautoref] = ACTIONS(4929), + [anon_sym_BSLASHpageref] = ACTIONS(4929), + [anon_sym_BSLASHcref] = ACTIONS(4929), + [anon_sym_BSLASHCref] = ACTIONS(4929), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnameCref] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHlabelcref] = ACTIONS(4929), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCrefrange] = ACTIONS(4929), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnewlabel] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), + [anon_sym_BSLASHdef] = ACTIONS(4929), + [anon_sym_BSLASHlet] = ACTIONS(4929), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), + [anon_sym_BSLASHgls] = ACTIONS(4929), + [anon_sym_BSLASHGls] = ACTIONS(4929), + [anon_sym_BSLASHGLS] = ACTIONS(4929), + [anon_sym_BSLASHglspl] = ACTIONS(4929), + [anon_sym_BSLASHGlspl] = ACTIONS(4929), + [anon_sym_BSLASHGLSpl] = ACTIONS(4929), + [anon_sym_BSLASHglsdisp] = ACTIONS(4929), + [anon_sym_BSLASHglslink] = ACTIONS(4929), + [anon_sym_BSLASHglstext] = ACTIONS(4929), + [anon_sym_BSLASHGlstext] = ACTIONS(4929), + [anon_sym_BSLASHGLStext] = ACTIONS(4929), + [anon_sym_BSLASHglsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), + [anon_sym_BSLASHglsplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSplural] = ACTIONS(4929), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHglsname] = ACTIONS(4929), + [anon_sym_BSLASHGlsname] = ACTIONS(4929), + [anon_sym_BSLASHGLSname] = ACTIONS(4929), + [anon_sym_BSLASHglssymbol] = ACTIONS(4929), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), + [anon_sym_BSLASHglsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), + [anon_sym_BSLASHglsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), + [anon_sym_BSLASHglsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), + [anon_sym_BSLASHglsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), + [anon_sym_BSLASHglsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), + [anon_sym_BSLASHnewacronym] = ACTIONS(4929), + [anon_sym_BSLASHacrshort] = ACTIONS(4929), + [anon_sym_BSLASHAcrshort] = ACTIONS(4929), + [anon_sym_BSLASHACRshort] = ACTIONS(4929), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), + [anon_sym_BSLASHacrlong] = ACTIONS(4929), + [anon_sym_BSLASHAcrlong] = ACTIONS(4929), + [anon_sym_BSLASHACRlong] = ACTIONS(4929), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), + [anon_sym_BSLASHacrfull] = ACTIONS(4929), + [anon_sym_BSLASHAcrfull] = ACTIONS(4929), + [anon_sym_BSLASHACRfull] = ACTIONS(4929), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), + [anon_sym_BSLASHacs] = ACTIONS(4929), + [anon_sym_BSLASHAcs] = ACTIONS(4929), + [anon_sym_BSLASHacsp] = ACTIONS(4929), + [anon_sym_BSLASHAcsp] = ACTIONS(4929), + [anon_sym_BSLASHacl] = ACTIONS(4929), + [anon_sym_BSLASHAcl] = ACTIONS(4929), + [anon_sym_BSLASHaclp] = ACTIONS(4929), + [anon_sym_BSLASHAclp] = ACTIONS(4929), + [anon_sym_BSLASHacf] = ACTIONS(4929), + [anon_sym_BSLASHAcf] = ACTIONS(4929), + [anon_sym_BSLASHacfp] = ACTIONS(4929), + [anon_sym_BSLASHAcfp] = ACTIONS(4929), + [anon_sym_BSLASHac] = ACTIONS(4929), + [anon_sym_BSLASHAc] = ACTIONS(4929), + [anon_sym_BSLASHacp] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), + [anon_sym_BSLASHcolor] = ACTIONS(4929), + [anon_sym_BSLASHcolorbox] = ACTIONS(4929), + [anon_sym_BSLASHtextcolor] = ACTIONS(4929), + [anon_sym_BSLASHpagecolor] = ACTIONS(4929), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), + [anon_sym_BSLASHtext] = ACTIONS(4929), + [anon_sym_BSLASHintertext] = ACTIONS(4929), + [anon_sym_shortintertext] = ACTIONS(4929), }, - [1260] = { - [sym_command_name] = ACTIONS(5341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_BSLASHpart] = ACTIONS(5341), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddpart] = ACTIONS(5341), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5339), - [anon_sym_BSLASHchapter] = ACTIONS(5341), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddchap] = ACTIONS(5341), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsection] = ACTIONS(5341), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHaddsec] = ACTIONS(5341), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5341), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5339), - [anon_sym_BSLASHparagraph] = ACTIONS(5341), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5341), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5339), - [anon_sym_BSLASHitem] = ACTIONS(5341), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASHbegin] = ACTIONS(5341), - [anon_sym_BSLASHend] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), + [1160] = { + [sym_command_name] = ACTIONS(4939), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4937), + [anon_sym_RPAREN] = ACTIONS(4937), + [anon_sym_LBRACK] = ACTIONS(4937), + [anon_sym_RBRACK] = ACTIONS(4937), + [anon_sym_COMMA] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_BSLASHpart] = ACTIONS(4939), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddpart] = ACTIONS(4939), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4937), + [anon_sym_BSLASHchapter] = ACTIONS(4939), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddchap] = ACTIONS(4939), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsection] = ACTIONS(4939), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHaddsec] = ACTIONS(4939), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubsection] = ACTIONS(4939), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4939), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4937), + [anon_sym_BSLASHparagraph] = ACTIONS(4939), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4937), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4939), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4937), + [anon_sym_BSLASHitem] = ACTIONS(4939), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4937), + [sym_word] = ACTIONS(4939), + [sym_placeholder] = ACTIONS(4937), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_SLASH] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(4939), + [anon_sym__] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4939), + [anon_sym_GT] = ACTIONS(4939), + [anon_sym_BANG] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4939), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_SQUOTE] = ACTIONS(4939), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4937), + [anon_sym_DOLLAR] = ACTIONS(4939), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), + [anon_sym_BSLASHbegin] = ACTIONS(4939), + [anon_sym_BSLASHusepackage] = ACTIONS(4939), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), + [anon_sym_BSLASHinclude] = ACTIONS(4939), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), + [anon_sym_BSLASHinput] = ACTIONS(4939), + [anon_sym_BSLASHsubfile] = ACTIONS(4939), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), + [anon_sym_BSLASHbibliography] = ACTIONS(4939), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), + [anon_sym_BSLASHincludesvg] = ACTIONS(4939), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), + [anon_sym_BSLASHimport] = ACTIONS(4939), + [anon_sym_BSLASHsubimport] = ACTIONS(4939), + [anon_sym_BSLASHinputfrom] = ACTIONS(4939), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), + [anon_sym_BSLASHincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHcaption] = ACTIONS(4939), + [anon_sym_BSLASHcite] = ACTIONS(4939), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCite] = ACTIONS(4939), + [anon_sym_BSLASHnocite] = ACTIONS(4939), + [anon_sym_BSLASHcitet] = ACTIONS(4939), + [anon_sym_BSLASHcitep] = ACTIONS(4939), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteauthor] = ACTIONS(4939), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitetitle] = ACTIONS(4939), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteyear] = ACTIONS(4939), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitedate] = ACTIONS(4939), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteurl] = ACTIONS(4939), + [anon_sym_BSLASHfullcite] = ACTIONS(4939), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), + [anon_sym_BSLASHcitealt] = ACTIONS(4939), + [anon_sym_BSLASHcitealp] = ACTIONS(4939), + [anon_sym_BSLASHcitetext] = ACTIONS(4939), + [anon_sym_BSLASHparencite] = ACTIONS(4939), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHParencite] = ACTIONS(4939), + [anon_sym_BSLASHfootcite] = ACTIONS(4939), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), + [anon_sym_BSLASHtextcite] = ACTIONS(4939), + [anon_sym_BSLASHTextcite] = ACTIONS(4939), + [anon_sym_BSLASHsmartcite] = ACTIONS(4939), + [anon_sym_BSLASHSmartcite] = ACTIONS(4939), + [anon_sym_BSLASHsupercite] = ACTIONS(4939), + [anon_sym_BSLASHautocite] = ACTIONS(4939), + [anon_sym_BSLASHAutocite] = ACTIONS(4939), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHvolcite] = ACTIONS(4939), + [anon_sym_BSLASHVolcite] = ACTIONS(4939), + [anon_sym_BSLASHpvolcite] = ACTIONS(4939), + [anon_sym_BSLASHPvolcite] = ACTIONS(4939), + [anon_sym_BSLASHfvolcite] = ACTIONS(4939), + [anon_sym_BSLASHftvolcite] = ACTIONS(4939), + [anon_sym_BSLASHsvolcite] = ACTIONS(4939), + [anon_sym_BSLASHSvolcite] = ACTIONS(4939), + [anon_sym_BSLASHtvolcite] = ACTIONS(4939), + [anon_sym_BSLASHTvolcite] = ACTIONS(4939), + [anon_sym_BSLASHavolcite] = ACTIONS(4939), + [anon_sym_BSLASHAvolcite] = ACTIONS(4939), + [anon_sym_BSLASHnotecite] = ACTIONS(4939), + [anon_sym_BSLASHNotecite] = ACTIONS(4939), + [anon_sym_BSLASHpnotecite] = ACTIONS(4939), + [anon_sym_BSLASHPnotecite] = ACTIONS(4939), + [anon_sym_BSLASHfnotecite] = ACTIONS(4939), + [anon_sym_BSLASHlabel] = ACTIONS(4939), + [anon_sym_BSLASHref] = ACTIONS(4939), + [anon_sym_BSLASHeqref] = ACTIONS(4939), + [anon_sym_BSLASHvref] = ACTIONS(4939), + [anon_sym_BSLASHVref] = ACTIONS(4939), + [anon_sym_BSLASHautoref] = ACTIONS(4939), + [anon_sym_BSLASHpageref] = ACTIONS(4939), + [anon_sym_BSLASHcref] = ACTIONS(4939), + [anon_sym_BSLASHCref] = ACTIONS(4939), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnameCref] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHlabelcref] = ACTIONS(4939), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCrefrange] = ACTIONS(4939), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnewlabel] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), + [anon_sym_BSLASHdef] = ACTIONS(4939), + [anon_sym_BSLASHlet] = ACTIONS(4939), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), + [anon_sym_BSLASHgls] = ACTIONS(4939), + [anon_sym_BSLASHGls] = ACTIONS(4939), + [anon_sym_BSLASHGLS] = ACTIONS(4939), + [anon_sym_BSLASHglspl] = ACTIONS(4939), + [anon_sym_BSLASHGlspl] = ACTIONS(4939), + [anon_sym_BSLASHGLSpl] = ACTIONS(4939), + [anon_sym_BSLASHglsdisp] = ACTIONS(4939), + [anon_sym_BSLASHglslink] = ACTIONS(4939), + [anon_sym_BSLASHglstext] = ACTIONS(4939), + [anon_sym_BSLASHGlstext] = ACTIONS(4939), + [anon_sym_BSLASHGLStext] = ACTIONS(4939), + [anon_sym_BSLASHglsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), + [anon_sym_BSLASHglsplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSplural] = ACTIONS(4939), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHglsname] = ACTIONS(4939), + [anon_sym_BSLASHGlsname] = ACTIONS(4939), + [anon_sym_BSLASHGLSname] = ACTIONS(4939), + [anon_sym_BSLASHglssymbol] = ACTIONS(4939), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), + [anon_sym_BSLASHglsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), + [anon_sym_BSLASHglsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), + [anon_sym_BSLASHglsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), + [anon_sym_BSLASHglsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), + [anon_sym_BSLASHglsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), + [anon_sym_BSLASHnewacronym] = ACTIONS(4939), + [anon_sym_BSLASHacrshort] = ACTIONS(4939), + [anon_sym_BSLASHAcrshort] = ACTIONS(4939), + [anon_sym_BSLASHACRshort] = ACTIONS(4939), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), + [anon_sym_BSLASHacrlong] = ACTIONS(4939), + [anon_sym_BSLASHAcrlong] = ACTIONS(4939), + [anon_sym_BSLASHACRlong] = ACTIONS(4939), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), + [anon_sym_BSLASHacrfull] = ACTIONS(4939), + [anon_sym_BSLASHAcrfull] = ACTIONS(4939), + [anon_sym_BSLASHACRfull] = ACTIONS(4939), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), + [anon_sym_BSLASHacs] = ACTIONS(4939), + [anon_sym_BSLASHAcs] = ACTIONS(4939), + [anon_sym_BSLASHacsp] = ACTIONS(4939), + [anon_sym_BSLASHAcsp] = ACTIONS(4939), + [anon_sym_BSLASHacl] = ACTIONS(4939), + [anon_sym_BSLASHAcl] = ACTIONS(4939), + [anon_sym_BSLASHaclp] = ACTIONS(4939), + [anon_sym_BSLASHAclp] = ACTIONS(4939), + [anon_sym_BSLASHacf] = ACTIONS(4939), + [anon_sym_BSLASHAcf] = ACTIONS(4939), + [anon_sym_BSLASHacfp] = ACTIONS(4939), + [anon_sym_BSLASHAcfp] = ACTIONS(4939), + [anon_sym_BSLASHac] = ACTIONS(4939), + [anon_sym_BSLASHAc] = ACTIONS(4939), + [anon_sym_BSLASHacp] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), + [anon_sym_BSLASHcolor] = ACTIONS(4939), + [anon_sym_BSLASHcolorbox] = ACTIONS(4939), + [anon_sym_BSLASHtextcolor] = ACTIONS(4939), + [anon_sym_BSLASHpagecolor] = ACTIONS(4939), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), + [anon_sym_BSLASHtext] = ACTIONS(4939), + [anon_sym_BSLASHintertext] = ACTIONS(4939), + [anon_sym_shortintertext] = ACTIONS(4939), }, - [1261] = { - [sym_command_name] = ACTIONS(5337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_BSLASHpart] = ACTIONS(5337), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddpart] = ACTIONS(5337), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5335), - [anon_sym_BSLASHchapter] = ACTIONS(5337), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddchap] = ACTIONS(5337), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsection] = ACTIONS(5337), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHaddsec] = ACTIONS(5337), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5337), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5335), - [anon_sym_BSLASHparagraph] = ACTIONS(5337), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5337), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5335), - [anon_sym_BSLASHitem] = ACTIONS(5337), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASHbegin] = ACTIONS(5337), - [anon_sym_BSLASHend] = ACTIONS(5337), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), + [1161] = { + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_BSLASHpart] = ACTIONS(5313), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddpart] = ACTIONS(5313), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5311), + [anon_sym_BSLASHchapter] = ACTIONS(5313), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddchap] = ACTIONS(5313), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsection] = ACTIONS(5313), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHaddsec] = ACTIONS(5313), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5313), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5311), + [anon_sym_BSLASHparagraph] = ACTIONS(5313), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5313), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5311), + [anon_sym_BSLASHitem] = ACTIONS(5313), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1262] = { - [sym_command_name] = ACTIONS(5333), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_BSLASHpart] = ACTIONS(5333), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddpart] = ACTIONS(5333), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5331), - [anon_sym_BSLASHchapter] = ACTIONS(5333), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddchap] = ACTIONS(5333), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsection] = ACTIONS(5333), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHaddsec] = ACTIONS(5333), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5333), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5331), - [anon_sym_BSLASHparagraph] = ACTIONS(5333), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5333), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5331), - [anon_sym_BSLASHitem] = ACTIONS(5333), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASHbegin] = ACTIONS(5333), - [anon_sym_BSLASHend] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), + [1162] = { + [sym_command_name] = ACTIONS(4959), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_BSLASHpart] = ACTIONS(4959), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddpart] = ACTIONS(4959), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4957), + [anon_sym_BSLASHchapter] = ACTIONS(4959), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddchap] = ACTIONS(4959), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsection] = ACTIONS(4959), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHaddsec] = ACTIONS(4959), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubsection] = ACTIONS(4959), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4959), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4957), + [anon_sym_BSLASHparagraph] = ACTIONS(4959), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4957), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4959), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4957), + [anon_sym_BSLASHitem] = ACTIONS(4959), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4957), + [sym_word] = ACTIONS(4959), + [sym_placeholder] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_CARET] = ACTIONS(4959), + [anon_sym__] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_COLON] = ACTIONS(4959), + [anon_sym_SQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4957), + [anon_sym_DOLLAR] = ACTIONS(4959), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), + [anon_sym_BSLASHbegin] = ACTIONS(4959), + [anon_sym_BSLASHusepackage] = ACTIONS(4959), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), + [anon_sym_BSLASHinclude] = ACTIONS(4959), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), + [anon_sym_BSLASHinput] = ACTIONS(4959), + [anon_sym_BSLASHsubfile] = ACTIONS(4959), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), + [anon_sym_BSLASHbibliography] = ACTIONS(4959), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), + [anon_sym_BSLASHincludesvg] = ACTIONS(4959), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), + [anon_sym_BSLASHimport] = ACTIONS(4959), + [anon_sym_BSLASHsubimport] = ACTIONS(4959), + [anon_sym_BSLASHinputfrom] = ACTIONS(4959), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), + [anon_sym_BSLASHincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHcaption] = ACTIONS(4959), + [anon_sym_BSLASHcite] = ACTIONS(4959), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCite] = ACTIONS(4959), + [anon_sym_BSLASHnocite] = ACTIONS(4959), + [anon_sym_BSLASHcitet] = ACTIONS(4959), + [anon_sym_BSLASHcitep] = ACTIONS(4959), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteauthor] = ACTIONS(4959), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitetitle] = ACTIONS(4959), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteyear] = ACTIONS(4959), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitedate] = ACTIONS(4959), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteurl] = ACTIONS(4959), + [anon_sym_BSLASHfullcite] = ACTIONS(4959), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), + [anon_sym_BSLASHcitealt] = ACTIONS(4959), + [anon_sym_BSLASHcitealp] = ACTIONS(4959), + [anon_sym_BSLASHcitetext] = ACTIONS(4959), + [anon_sym_BSLASHparencite] = ACTIONS(4959), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHParencite] = ACTIONS(4959), + [anon_sym_BSLASHfootcite] = ACTIONS(4959), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), + [anon_sym_BSLASHtextcite] = ACTIONS(4959), + [anon_sym_BSLASHTextcite] = ACTIONS(4959), + [anon_sym_BSLASHsmartcite] = ACTIONS(4959), + [anon_sym_BSLASHSmartcite] = ACTIONS(4959), + [anon_sym_BSLASHsupercite] = ACTIONS(4959), + [anon_sym_BSLASHautocite] = ACTIONS(4959), + [anon_sym_BSLASHAutocite] = ACTIONS(4959), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHvolcite] = ACTIONS(4959), + [anon_sym_BSLASHVolcite] = ACTIONS(4959), + [anon_sym_BSLASHpvolcite] = ACTIONS(4959), + [anon_sym_BSLASHPvolcite] = ACTIONS(4959), + [anon_sym_BSLASHfvolcite] = ACTIONS(4959), + [anon_sym_BSLASHftvolcite] = ACTIONS(4959), + [anon_sym_BSLASHsvolcite] = ACTIONS(4959), + [anon_sym_BSLASHSvolcite] = ACTIONS(4959), + [anon_sym_BSLASHtvolcite] = ACTIONS(4959), + [anon_sym_BSLASHTvolcite] = ACTIONS(4959), + [anon_sym_BSLASHavolcite] = ACTIONS(4959), + [anon_sym_BSLASHAvolcite] = ACTIONS(4959), + [anon_sym_BSLASHnotecite] = ACTIONS(4959), + [anon_sym_BSLASHNotecite] = ACTIONS(4959), + [anon_sym_BSLASHpnotecite] = ACTIONS(4959), + [anon_sym_BSLASHPnotecite] = ACTIONS(4959), + [anon_sym_BSLASHfnotecite] = ACTIONS(4959), + [anon_sym_BSLASHlabel] = ACTIONS(4959), + [anon_sym_BSLASHref] = ACTIONS(4959), + [anon_sym_BSLASHeqref] = ACTIONS(4959), + [anon_sym_BSLASHvref] = ACTIONS(4959), + [anon_sym_BSLASHVref] = ACTIONS(4959), + [anon_sym_BSLASHautoref] = ACTIONS(4959), + [anon_sym_BSLASHpageref] = ACTIONS(4959), + [anon_sym_BSLASHcref] = ACTIONS(4959), + [anon_sym_BSLASHCref] = ACTIONS(4959), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnameCref] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHlabelcref] = ACTIONS(4959), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCrefrange] = ACTIONS(4959), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnewlabel] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), + [anon_sym_BSLASHdef] = ACTIONS(4959), + [anon_sym_BSLASHlet] = ACTIONS(4959), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), + [anon_sym_BSLASHgls] = ACTIONS(4959), + [anon_sym_BSLASHGls] = ACTIONS(4959), + [anon_sym_BSLASHGLS] = ACTIONS(4959), + [anon_sym_BSLASHglspl] = ACTIONS(4959), + [anon_sym_BSLASHGlspl] = ACTIONS(4959), + [anon_sym_BSLASHGLSpl] = ACTIONS(4959), + [anon_sym_BSLASHglsdisp] = ACTIONS(4959), + [anon_sym_BSLASHglslink] = ACTIONS(4959), + [anon_sym_BSLASHglstext] = ACTIONS(4959), + [anon_sym_BSLASHGlstext] = ACTIONS(4959), + [anon_sym_BSLASHGLStext] = ACTIONS(4959), + [anon_sym_BSLASHglsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), + [anon_sym_BSLASHglsplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSplural] = ACTIONS(4959), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHglsname] = ACTIONS(4959), + [anon_sym_BSLASHGlsname] = ACTIONS(4959), + [anon_sym_BSLASHGLSname] = ACTIONS(4959), + [anon_sym_BSLASHglssymbol] = ACTIONS(4959), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), + [anon_sym_BSLASHglsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), + [anon_sym_BSLASHglsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), + [anon_sym_BSLASHglsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), + [anon_sym_BSLASHglsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), + [anon_sym_BSLASHglsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), + [anon_sym_BSLASHnewacronym] = ACTIONS(4959), + [anon_sym_BSLASHacrshort] = ACTIONS(4959), + [anon_sym_BSLASHAcrshort] = ACTIONS(4959), + [anon_sym_BSLASHACRshort] = ACTIONS(4959), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), + [anon_sym_BSLASHacrlong] = ACTIONS(4959), + [anon_sym_BSLASHAcrlong] = ACTIONS(4959), + [anon_sym_BSLASHACRlong] = ACTIONS(4959), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), + [anon_sym_BSLASHacrfull] = ACTIONS(4959), + [anon_sym_BSLASHAcrfull] = ACTIONS(4959), + [anon_sym_BSLASHACRfull] = ACTIONS(4959), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), + [anon_sym_BSLASHacs] = ACTIONS(4959), + [anon_sym_BSLASHAcs] = ACTIONS(4959), + [anon_sym_BSLASHacsp] = ACTIONS(4959), + [anon_sym_BSLASHAcsp] = ACTIONS(4959), + [anon_sym_BSLASHacl] = ACTIONS(4959), + [anon_sym_BSLASHAcl] = ACTIONS(4959), + [anon_sym_BSLASHaclp] = ACTIONS(4959), + [anon_sym_BSLASHAclp] = ACTIONS(4959), + [anon_sym_BSLASHacf] = ACTIONS(4959), + [anon_sym_BSLASHAcf] = ACTIONS(4959), + [anon_sym_BSLASHacfp] = ACTIONS(4959), + [anon_sym_BSLASHAcfp] = ACTIONS(4959), + [anon_sym_BSLASHac] = ACTIONS(4959), + [anon_sym_BSLASHAc] = ACTIONS(4959), + [anon_sym_BSLASHacp] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), + [anon_sym_BSLASHcolor] = ACTIONS(4959), + [anon_sym_BSLASHcolorbox] = ACTIONS(4959), + [anon_sym_BSLASHtextcolor] = ACTIONS(4959), + [anon_sym_BSLASHpagecolor] = ACTIONS(4959), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHtext] = ACTIONS(4959), + [anon_sym_BSLASHintertext] = ACTIONS(4959), + [anon_sym_shortintertext] = ACTIONS(4959), }, - [1263] = { - [sym_command_name] = ACTIONS(5329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5329), - [anon_sym_LPAREN] = ACTIONS(5327), - [anon_sym_RPAREN] = ACTIONS(5327), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_RBRACK] = ACTIONS(5327), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5327), - [anon_sym_BSLASHpart] = ACTIONS(5329), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddpart] = ACTIONS(5329), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5327), - [anon_sym_BSLASHchapter] = ACTIONS(5329), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddchap] = ACTIONS(5329), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsection] = ACTIONS(5329), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHaddsec] = ACTIONS(5329), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubsection] = ACTIONS(5329), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5329), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5327), - [anon_sym_BSLASHparagraph] = ACTIONS(5329), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5327), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5329), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5327), - [anon_sym_BSLASHitem] = ACTIONS(5329), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5327), - [anon_sym_LBRACE] = ACTIONS(5327), - [sym_word] = ACTIONS(5329), - [sym_placeholder] = ACTIONS(5327), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_STAR] = ACTIONS(5329), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_CARET] = ACTIONS(5329), - [anon_sym__] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_BANG] = ACTIONS(5329), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_COLON] = ACTIONS(5329), - [anon_sym_SQUOTE] = ACTIONS(5329), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5327), - [anon_sym_DOLLAR] = ACTIONS(5329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5327), - [anon_sym_BSLASHbegin] = ACTIONS(5329), - [anon_sym_BSLASHend] = ACTIONS(5329), - [anon_sym_BSLASHusepackage] = ACTIONS(5329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5329), - [anon_sym_BSLASHinclude] = ACTIONS(5329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5329), - [anon_sym_BSLASHinput] = ACTIONS(5329), - [anon_sym_BSLASHsubfile] = ACTIONS(5329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5329), - [anon_sym_BSLASHbibliography] = ACTIONS(5329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5329), - [anon_sym_BSLASHincludesvg] = ACTIONS(5329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5329), - [anon_sym_BSLASHimport] = ACTIONS(5329), - [anon_sym_BSLASHsubimport] = ACTIONS(5329), - [anon_sym_BSLASHinputfrom] = ACTIONS(5329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5329), - [anon_sym_BSLASHincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHcaption] = ACTIONS(5329), - [anon_sym_BSLASHcite] = ACTIONS(5329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCite] = ACTIONS(5329), - [anon_sym_BSLASHnocite] = ACTIONS(5329), - [anon_sym_BSLASHcitet] = ACTIONS(5329), - [anon_sym_BSLASHcitep] = ACTIONS(5329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor] = ACTIONS(5329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle] = ACTIONS(5329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteyear] = ACTIONS(5329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitedate] = ACTIONS(5329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteurl] = ACTIONS(5329), - [anon_sym_BSLASHfullcite] = ACTIONS(5329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5329), - [anon_sym_BSLASHcitealt] = ACTIONS(5329), - [anon_sym_BSLASHcitealp] = ACTIONS(5329), - [anon_sym_BSLASHcitetext] = ACTIONS(5329), - [anon_sym_BSLASHparencite] = ACTIONS(5329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHParencite] = ACTIONS(5329), - [anon_sym_BSLASHfootcite] = ACTIONS(5329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5329), - [anon_sym_BSLASHtextcite] = ACTIONS(5329), - [anon_sym_BSLASHTextcite] = ACTIONS(5329), - [anon_sym_BSLASHsmartcite] = ACTIONS(5329), - [anon_sym_BSLASHSmartcite] = ACTIONS(5329), - [anon_sym_BSLASHsupercite] = ACTIONS(5329), - [anon_sym_BSLASHautocite] = ACTIONS(5329), - [anon_sym_BSLASHAutocite] = ACTIONS(5329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHvolcite] = ACTIONS(5329), - [anon_sym_BSLASHVolcite] = ACTIONS(5329), - [anon_sym_BSLASHpvolcite] = ACTIONS(5329), - [anon_sym_BSLASHPvolcite] = ACTIONS(5329), - [anon_sym_BSLASHfvolcite] = ACTIONS(5329), - [anon_sym_BSLASHftvolcite] = ACTIONS(5329), - [anon_sym_BSLASHsvolcite] = ACTIONS(5329), - [anon_sym_BSLASHSvolcite] = ACTIONS(5329), - [anon_sym_BSLASHtvolcite] = ACTIONS(5329), - [anon_sym_BSLASHTvolcite] = ACTIONS(5329), - [anon_sym_BSLASHavolcite] = ACTIONS(5329), - [anon_sym_BSLASHAvolcite] = ACTIONS(5329), - [anon_sym_BSLASHnotecite] = ACTIONS(5329), - [anon_sym_BSLASHNotecite] = ACTIONS(5329), - [anon_sym_BSLASHpnotecite] = ACTIONS(5329), - [anon_sym_BSLASHPnotecite] = ACTIONS(5329), - [anon_sym_BSLASHfnotecite] = ACTIONS(5329), - [anon_sym_BSLASHlabel] = ACTIONS(5329), - [anon_sym_BSLASHref] = ACTIONS(5329), - [anon_sym_BSLASHeqref] = ACTIONS(5329), - [anon_sym_BSLASHvref] = ACTIONS(5329), - [anon_sym_BSLASHVref] = ACTIONS(5329), - [anon_sym_BSLASHautoref] = ACTIONS(5329), - [anon_sym_BSLASHpageref] = ACTIONS(5329), - [anon_sym_BSLASHcref] = ACTIONS(5329), - [anon_sym_BSLASHCref] = ACTIONS(5329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnameCref] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHlabelcref] = ACTIONS(5329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange] = ACTIONS(5329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnewlabel] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5327), - [anon_sym_BSLASHdef] = ACTIONS(5329), - [anon_sym_BSLASHlet] = ACTIONS(5329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5329), - [anon_sym_BSLASHgls] = ACTIONS(5329), - [anon_sym_BSLASHGls] = ACTIONS(5329), - [anon_sym_BSLASHGLS] = ACTIONS(5329), - [anon_sym_BSLASHglspl] = ACTIONS(5329), - [anon_sym_BSLASHGlspl] = ACTIONS(5329), - [anon_sym_BSLASHGLSpl] = ACTIONS(5329), - [anon_sym_BSLASHglsdisp] = ACTIONS(5329), - [anon_sym_BSLASHglslink] = ACTIONS(5329), - [anon_sym_BSLASHglstext] = ACTIONS(5329), - [anon_sym_BSLASHGlstext] = ACTIONS(5329), - [anon_sym_BSLASHGLStext] = ACTIONS(5329), - [anon_sym_BSLASHglsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5329), - [anon_sym_BSLASHglsplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSplural] = ACTIONS(5329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHglsname] = ACTIONS(5329), - [anon_sym_BSLASHGlsname] = ACTIONS(5329), - [anon_sym_BSLASHGLSname] = ACTIONS(5329), - [anon_sym_BSLASHglssymbol] = ACTIONS(5329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5329), - [anon_sym_BSLASHglsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5329), - [anon_sym_BSLASHglsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5329), - [anon_sym_BSLASHglsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5329), - [anon_sym_BSLASHglsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5329), - [anon_sym_BSLASHglsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5329), - [anon_sym_BSLASHnewacronym] = ACTIONS(5329), - [anon_sym_BSLASHacrshort] = ACTIONS(5329), - [anon_sym_BSLASHAcrshort] = ACTIONS(5329), - [anon_sym_BSLASHACRshort] = ACTIONS(5329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5329), - [anon_sym_BSLASHacrlong] = ACTIONS(5329), - [anon_sym_BSLASHAcrlong] = ACTIONS(5329), - [anon_sym_BSLASHACRlong] = ACTIONS(5329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5329), - [anon_sym_BSLASHacrfull] = ACTIONS(5329), - [anon_sym_BSLASHAcrfull] = ACTIONS(5329), - [anon_sym_BSLASHACRfull] = ACTIONS(5329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5329), - [anon_sym_BSLASHacs] = ACTIONS(5329), - [anon_sym_BSLASHAcs] = ACTIONS(5329), - [anon_sym_BSLASHacsp] = ACTIONS(5329), - [anon_sym_BSLASHAcsp] = ACTIONS(5329), - [anon_sym_BSLASHacl] = ACTIONS(5329), - [anon_sym_BSLASHAcl] = ACTIONS(5329), - [anon_sym_BSLASHaclp] = ACTIONS(5329), - [anon_sym_BSLASHAclp] = ACTIONS(5329), - [anon_sym_BSLASHacf] = ACTIONS(5329), - [anon_sym_BSLASHAcf] = ACTIONS(5329), - [anon_sym_BSLASHacfp] = ACTIONS(5329), - [anon_sym_BSLASHAcfp] = ACTIONS(5329), - [anon_sym_BSLASHac] = ACTIONS(5329), - [anon_sym_BSLASHAc] = ACTIONS(5329), - [anon_sym_BSLASHacp] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5329), - [anon_sym_BSLASHcolor] = ACTIONS(5329), - [anon_sym_BSLASHcolorbox] = ACTIONS(5329), - [anon_sym_BSLASHtextcolor] = ACTIONS(5329), - [anon_sym_BSLASHpagecolor] = ACTIONS(5329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5329), + [1163] = { + [sym_command_name] = ACTIONS(5007), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_RBRACK] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_BSLASHpart] = ACTIONS(5007), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddpart] = ACTIONS(5007), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5005), + [anon_sym_BSLASHchapter] = ACTIONS(5007), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddchap] = ACTIONS(5007), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsection] = ACTIONS(5007), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHaddsec] = ACTIONS(5007), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubsection] = ACTIONS(5007), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5007), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5005), + [anon_sym_BSLASHparagraph] = ACTIONS(5007), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5005), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5007), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5005), + [anon_sym_BSLASHitem] = ACTIONS(5007), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5005), + [sym_word] = ACTIONS(5007), + [sym_placeholder] = ACTIONS(5005), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym__] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_BANG] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5007), + [anon_sym_SQUOTE] = ACTIONS(5007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5005), + [anon_sym_DOLLAR] = ACTIONS(5007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), + [anon_sym_BSLASHbegin] = ACTIONS(5007), + [anon_sym_BSLASHusepackage] = ACTIONS(5007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), + [anon_sym_BSLASHinclude] = ACTIONS(5007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), + [anon_sym_BSLASHinput] = ACTIONS(5007), + [anon_sym_BSLASHsubfile] = ACTIONS(5007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), + [anon_sym_BSLASHbibliography] = ACTIONS(5007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), + [anon_sym_BSLASHincludesvg] = ACTIONS(5007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), + [anon_sym_BSLASHimport] = ACTIONS(5007), + [anon_sym_BSLASHsubimport] = ACTIONS(5007), + [anon_sym_BSLASHinputfrom] = ACTIONS(5007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), + [anon_sym_BSLASHincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHcaption] = ACTIONS(5007), + [anon_sym_BSLASHcite] = ACTIONS(5007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCite] = ACTIONS(5007), + [anon_sym_BSLASHnocite] = ACTIONS(5007), + [anon_sym_BSLASHcitet] = ACTIONS(5007), + [anon_sym_BSLASHcitep] = ACTIONS(5007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteauthor] = ACTIONS(5007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitetitle] = ACTIONS(5007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteyear] = ACTIONS(5007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitedate] = ACTIONS(5007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteurl] = ACTIONS(5007), + [anon_sym_BSLASHfullcite] = ACTIONS(5007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), + [anon_sym_BSLASHcitealt] = ACTIONS(5007), + [anon_sym_BSLASHcitealp] = ACTIONS(5007), + [anon_sym_BSLASHcitetext] = ACTIONS(5007), + [anon_sym_BSLASHparencite] = ACTIONS(5007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHParencite] = ACTIONS(5007), + [anon_sym_BSLASHfootcite] = ACTIONS(5007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), + [anon_sym_BSLASHtextcite] = ACTIONS(5007), + [anon_sym_BSLASHTextcite] = ACTIONS(5007), + [anon_sym_BSLASHsmartcite] = ACTIONS(5007), + [anon_sym_BSLASHSmartcite] = ACTIONS(5007), + [anon_sym_BSLASHsupercite] = ACTIONS(5007), + [anon_sym_BSLASHautocite] = ACTIONS(5007), + [anon_sym_BSLASHAutocite] = ACTIONS(5007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHvolcite] = ACTIONS(5007), + [anon_sym_BSLASHVolcite] = ACTIONS(5007), + [anon_sym_BSLASHpvolcite] = ACTIONS(5007), + [anon_sym_BSLASHPvolcite] = ACTIONS(5007), + [anon_sym_BSLASHfvolcite] = ACTIONS(5007), + [anon_sym_BSLASHftvolcite] = ACTIONS(5007), + [anon_sym_BSLASHsvolcite] = ACTIONS(5007), + [anon_sym_BSLASHSvolcite] = ACTIONS(5007), + [anon_sym_BSLASHtvolcite] = ACTIONS(5007), + [anon_sym_BSLASHTvolcite] = ACTIONS(5007), + [anon_sym_BSLASHavolcite] = ACTIONS(5007), + [anon_sym_BSLASHAvolcite] = ACTIONS(5007), + [anon_sym_BSLASHnotecite] = ACTIONS(5007), + [anon_sym_BSLASHNotecite] = ACTIONS(5007), + [anon_sym_BSLASHpnotecite] = ACTIONS(5007), + [anon_sym_BSLASHPnotecite] = ACTIONS(5007), + [anon_sym_BSLASHfnotecite] = ACTIONS(5007), + [anon_sym_BSLASHlabel] = ACTIONS(5007), + [anon_sym_BSLASHref] = ACTIONS(5007), + [anon_sym_BSLASHeqref] = ACTIONS(5007), + [anon_sym_BSLASHvref] = ACTIONS(5007), + [anon_sym_BSLASHVref] = ACTIONS(5007), + [anon_sym_BSLASHautoref] = ACTIONS(5007), + [anon_sym_BSLASHpageref] = ACTIONS(5007), + [anon_sym_BSLASHcref] = ACTIONS(5007), + [anon_sym_BSLASHCref] = ACTIONS(5007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnameCref] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHlabelcref] = ACTIONS(5007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCrefrange] = ACTIONS(5007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnewlabel] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), + [anon_sym_BSLASHdef] = ACTIONS(5007), + [anon_sym_BSLASHlet] = ACTIONS(5007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), + [anon_sym_BSLASHgls] = ACTIONS(5007), + [anon_sym_BSLASHGls] = ACTIONS(5007), + [anon_sym_BSLASHGLS] = ACTIONS(5007), + [anon_sym_BSLASHglspl] = ACTIONS(5007), + [anon_sym_BSLASHGlspl] = ACTIONS(5007), + [anon_sym_BSLASHGLSpl] = ACTIONS(5007), + [anon_sym_BSLASHglsdisp] = ACTIONS(5007), + [anon_sym_BSLASHglslink] = ACTIONS(5007), + [anon_sym_BSLASHglstext] = ACTIONS(5007), + [anon_sym_BSLASHGlstext] = ACTIONS(5007), + [anon_sym_BSLASHGLStext] = ACTIONS(5007), + [anon_sym_BSLASHglsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), + [anon_sym_BSLASHglsplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSplural] = ACTIONS(5007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHglsname] = ACTIONS(5007), + [anon_sym_BSLASHGlsname] = ACTIONS(5007), + [anon_sym_BSLASHGLSname] = ACTIONS(5007), + [anon_sym_BSLASHglssymbol] = ACTIONS(5007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), + [anon_sym_BSLASHglsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), + [anon_sym_BSLASHglsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), + [anon_sym_BSLASHglsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), + [anon_sym_BSLASHglsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), + [anon_sym_BSLASHglsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), + [anon_sym_BSLASHnewacronym] = ACTIONS(5007), + [anon_sym_BSLASHacrshort] = ACTIONS(5007), + [anon_sym_BSLASHAcrshort] = ACTIONS(5007), + [anon_sym_BSLASHACRshort] = ACTIONS(5007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), + [anon_sym_BSLASHacrlong] = ACTIONS(5007), + [anon_sym_BSLASHAcrlong] = ACTIONS(5007), + [anon_sym_BSLASHACRlong] = ACTIONS(5007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), + [anon_sym_BSLASHacrfull] = ACTIONS(5007), + [anon_sym_BSLASHAcrfull] = ACTIONS(5007), + [anon_sym_BSLASHACRfull] = ACTIONS(5007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), + [anon_sym_BSLASHacs] = ACTIONS(5007), + [anon_sym_BSLASHAcs] = ACTIONS(5007), + [anon_sym_BSLASHacsp] = ACTIONS(5007), + [anon_sym_BSLASHAcsp] = ACTIONS(5007), + [anon_sym_BSLASHacl] = ACTIONS(5007), + [anon_sym_BSLASHAcl] = ACTIONS(5007), + [anon_sym_BSLASHaclp] = ACTIONS(5007), + [anon_sym_BSLASHAclp] = ACTIONS(5007), + [anon_sym_BSLASHacf] = ACTIONS(5007), + [anon_sym_BSLASHAcf] = ACTIONS(5007), + [anon_sym_BSLASHacfp] = ACTIONS(5007), + [anon_sym_BSLASHAcfp] = ACTIONS(5007), + [anon_sym_BSLASHac] = ACTIONS(5007), + [anon_sym_BSLASHAc] = ACTIONS(5007), + [anon_sym_BSLASHacp] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), + [anon_sym_BSLASHcolor] = ACTIONS(5007), + [anon_sym_BSLASHcolorbox] = ACTIONS(5007), + [anon_sym_BSLASHtextcolor] = ACTIONS(5007), + [anon_sym_BSLASHpagecolor] = ACTIONS(5007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), + [anon_sym_BSLASHtext] = ACTIONS(5007), + [anon_sym_BSLASHintertext] = ACTIONS(5007), + [anon_sym_shortintertext] = ACTIONS(5007), }, - [1264] = { - [sym_command_name] = ACTIONS(5325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5325), - [anon_sym_LPAREN] = ACTIONS(5323), - [anon_sym_RPAREN] = ACTIONS(5323), - [anon_sym_LBRACK] = ACTIONS(5323), - [anon_sym_RBRACK] = ACTIONS(5323), - [anon_sym_COMMA] = ACTIONS(5323), - [anon_sym_EQ] = ACTIONS(5323), - [anon_sym_BSLASHpart] = ACTIONS(5325), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddpart] = ACTIONS(5325), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5323), - [anon_sym_BSLASHchapter] = ACTIONS(5325), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddchap] = ACTIONS(5325), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsection] = ACTIONS(5325), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHaddsec] = ACTIONS(5325), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubsection] = ACTIONS(5325), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5325), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5323), - [anon_sym_BSLASHparagraph] = ACTIONS(5325), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5323), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5325), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5323), - [anon_sym_BSLASHitem] = ACTIONS(5325), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5323), - [anon_sym_LBRACE] = ACTIONS(5323), - [sym_word] = ACTIONS(5325), - [sym_placeholder] = ACTIONS(5323), - [anon_sym_PLUS] = ACTIONS(5325), - [anon_sym_DASH] = ACTIONS(5325), - [anon_sym_STAR] = ACTIONS(5325), - [anon_sym_SLASH] = ACTIONS(5325), - [anon_sym_CARET] = ACTIONS(5325), - [anon_sym__] = ACTIONS(5325), - [anon_sym_LT] = ACTIONS(5325), - [anon_sym_GT] = ACTIONS(5325), - [anon_sym_BANG] = ACTIONS(5325), - [anon_sym_PIPE] = ACTIONS(5325), - [anon_sym_COLON] = ACTIONS(5325), - [anon_sym_SQUOTE] = ACTIONS(5325), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5323), - [anon_sym_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5323), - [anon_sym_BSLASHbegin] = ACTIONS(5325), - [anon_sym_BSLASHend] = ACTIONS(5325), - [anon_sym_BSLASHusepackage] = ACTIONS(5325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), - [anon_sym_BSLASHinclude] = ACTIONS(5325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5325), - [anon_sym_BSLASHinput] = ACTIONS(5325), - [anon_sym_BSLASHsubfile] = ACTIONS(5325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5325), - [anon_sym_BSLASHbibliography] = ACTIONS(5325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5325), - [anon_sym_BSLASHincludesvg] = ACTIONS(5325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5325), - [anon_sym_BSLASHimport] = ACTIONS(5325), - [anon_sym_BSLASHsubimport] = ACTIONS(5325), - [anon_sym_BSLASHinputfrom] = ACTIONS(5325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5325), - [anon_sym_BSLASHincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHcaption] = ACTIONS(5325), - [anon_sym_BSLASHcite] = ACTIONS(5325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCite] = ACTIONS(5325), - [anon_sym_BSLASHnocite] = ACTIONS(5325), - [anon_sym_BSLASHcitet] = ACTIONS(5325), - [anon_sym_BSLASHcitep] = ACTIONS(5325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteyear] = ACTIONS(5325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitedate] = ACTIONS(5325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteurl] = ACTIONS(5325), - [anon_sym_BSLASHfullcite] = ACTIONS(5325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5325), - [anon_sym_BSLASHcitealt] = ACTIONS(5325), - [anon_sym_BSLASHcitealp] = ACTIONS(5325), - [anon_sym_BSLASHcitetext] = ACTIONS(5325), - [anon_sym_BSLASHparencite] = ACTIONS(5325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHParencite] = ACTIONS(5325), - [anon_sym_BSLASHfootcite] = ACTIONS(5325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5325), - [anon_sym_BSLASHtextcite] = ACTIONS(5325), - [anon_sym_BSLASHTextcite] = ACTIONS(5325), - [anon_sym_BSLASHsmartcite] = ACTIONS(5325), - [anon_sym_BSLASHSmartcite] = ACTIONS(5325), - [anon_sym_BSLASHsupercite] = ACTIONS(5325), - [anon_sym_BSLASHautocite] = ACTIONS(5325), - [anon_sym_BSLASHAutocite] = ACTIONS(5325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHvolcite] = ACTIONS(5325), - [anon_sym_BSLASHVolcite] = ACTIONS(5325), - [anon_sym_BSLASHpvolcite] = ACTIONS(5325), - [anon_sym_BSLASHPvolcite] = ACTIONS(5325), - [anon_sym_BSLASHfvolcite] = ACTIONS(5325), - [anon_sym_BSLASHftvolcite] = ACTIONS(5325), - [anon_sym_BSLASHsvolcite] = ACTIONS(5325), - [anon_sym_BSLASHSvolcite] = ACTIONS(5325), - [anon_sym_BSLASHtvolcite] = ACTIONS(5325), - [anon_sym_BSLASHTvolcite] = ACTIONS(5325), - [anon_sym_BSLASHavolcite] = ACTIONS(5325), - [anon_sym_BSLASHAvolcite] = ACTIONS(5325), - [anon_sym_BSLASHnotecite] = ACTIONS(5325), - [anon_sym_BSLASHNotecite] = ACTIONS(5325), - [anon_sym_BSLASHpnotecite] = ACTIONS(5325), - [anon_sym_BSLASHPnotecite] = ACTIONS(5325), - [anon_sym_BSLASHfnotecite] = ACTIONS(5325), - [anon_sym_BSLASHlabel] = ACTIONS(5325), - [anon_sym_BSLASHref] = ACTIONS(5325), - [anon_sym_BSLASHeqref] = ACTIONS(5325), - [anon_sym_BSLASHvref] = ACTIONS(5325), - [anon_sym_BSLASHVref] = ACTIONS(5325), - [anon_sym_BSLASHautoref] = ACTIONS(5325), - [anon_sym_BSLASHpageref] = ACTIONS(5325), - [anon_sym_BSLASHcref] = ACTIONS(5325), - [anon_sym_BSLASHCref] = ACTIONS(5325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnameCref] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHlabelcref] = ACTIONS(5325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnewlabel] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5323), - [anon_sym_BSLASHdef] = ACTIONS(5325), - [anon_sym_BSLASHlet] = ACTIONS(5325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5325), - [anon_sym_BSLASHgls] = ACTIONS(5325), - [anon_sym_BSLASHGls] = ACTIONS(5325), - [anon_sym_BSLASHGLS] = ACTIONS(5325), - [anon_sym_BSLASHglspl] = ACTIONS(5325), - [anon_sym_BSLASHGlspl] = ACTIONS(5325), - [anon_sym_BSLASHGLSpl] = ACTIONS(5325), - [anon_sym_BSLASHglsdisp] = ACTIONS(5325), - [anon_sym_BSLASHglslink] = ACTIONS(5325), - [anon_sym_BSLASHglstext] = ACTIONS(5325), - [anon_sym_BSLASHGlstext] = ACTIONS(5325), - [anon_sym_BSLASHGLStext] = ACTIONS(5325), - [anon_sym_BSLASHglsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5325), - [anon_sym_BSLASHglsplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSplural] = ACTIONS(5325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHglsname] = ACTIONS(5325), - [anon_sym_BSLASHGlsname] = ACTIONS(5325), - [anon_sym_BSLASHGLSname] = ACTIONS(5325), - [anon_sym_BSLASHglssymbol] = ACTIONS(5325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5325), - [anon_sym_BSLASHglsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5325), - [anon_sym_BSLASHglsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5325), - [anon_sym_BSLASHglsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5325), - [anon_sym_BSLASHglsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5325), - [anon_sym_BSLASHglsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5325), - [anon_sym_BSLASHnewacronym] = ACTIONS(5325), - [anon_sym_BSLASHacrshort] = ACTIONS(5325), - [anon_sym_BSLASHAcrshort] = ACTIONS(5325), - [anon_sym_BSLASHACRshort] = ACTIONS(5325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5325), - [anon_sym_BSLASHacrlong] = ACTIONS(5325), - [anon_sym_BSLASHAcrlong] = ACTIONS(5325), - [anon_sym_BSLASHACRlong] = ACTIONS(5325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5325), - [anon_sym_BSLASHacrfull] = ACTIONS(5325), - [anon_sym_BSLASHAcrfull] = ACTIONS(5325), - [anon_sym_BSLASHACRfull] = ACTIONS(5325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5325), - [anon_sym_BSLASHacs] = ACTIONS(5325), - [anon_sym_BSLASHAcs] = ACTIONS(5325), - [anon_sym_BSLASHacsp] = ACTIONS(5325), - [anon_sym_BSLASHAcsp] = ACTIONS(5325), - [anon_sym_BSLASHacl] = ACTIONS(5325), - [anon_sym_BSLASHAcl] = ACTIONS(5325), - [anon_sym_BSLASHaclp] = ACTIONS(5325), - [anon_sym_BSLASHAclp] = ACTIONS(5325), - [anon_sym_BSLASHacf] = ACTIONS(5325), - [anon_sym_BSLASHAcf] = ACTIONS(5325), - [anon_sym_BSLASHacfp] = ACTIONS(5325), - [anon_sym_BSLASHAcfp] = ACTIONS(5325), - [anon_sym_BSLASHac] = ACTIONS(5325), - [anon_sym_BSLASHAc] = ACTIONS(5325), - [anon_sym_BSLASHacp] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5325), - [anon_sym_BSLASHcolor] = ACTIONS(5325), - [anon_sym_BSLASHcolorbox] = ACTIONS(5325), - [anon_sym_BSLASHtextcolor] = ACTIONS(5325), - [anon_sym_BSLASHpagecolor] = ACTIONS(5325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5325), + [1164] = { + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_BSLASHpart] = ACTIONS(143), + [anon_sym_BSLASHpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddpart] = ACTIONS(143), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(141), + [anon_sym_BSLASHchapter] = ACTIONS(143), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddchap] = ACTIONS(143), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(141), + [anon_sym_BSLASHsection] = ACTIONS(143), + [anon_sym_BSLASHsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHaddsec] = ACTIONS(143), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubsubsection] = ACTIONS(143), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(141), + [anon_sym_BSLASHparagraph] = ACTIONS(143), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHsubparagraph] = ACTIONS(143), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(141), + [anon_sym_BSLASHitem] = ACTIONS(143), + [anon_sym_BSLASHitem_STAR] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_BSLASH_RBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), }, - [1265] = { - [sym_command_name] = ACTIONS(5321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5321), - [anon_sym_LPAREN] = ACTIONS(5319), - [anon_sym_RPAREN] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(5319), - [anon_sym_RBRACK] = ACTIONS(5319), - [anon_sym_COMMA] = ACTIONS(5319), - [anon_sym_EQ] = ACTIONS(5319), - [anon_sym_BSLASHpart] = ACTIONS(5321), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddpart] = ACTIONS(5321), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5319), - [anon_sym_BSLASHchapter] = ACTIONS(5321), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddchap] = ACTIONS(5321), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsection] = ACTIONS(5321), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHaddsec] = ACTIONS(5321), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubsection] = ACTIONS(5321), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5321), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5319), - [anon_sym_BSLASHparagraph] = ACTIONS(5321), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5319), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5321), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5319), - [anon_sym_BSLASHitem] = ACTIONS(5321), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5319), - [anon_sym_LBRACE] = ACTIONS(5319), - [sym_word] = ACTIONS(5321), - [sym_placeholder] = ACTIONS(5319), - [anon_sym_PLUS] = ACTIONS(5321), - [anon_sym_DASH] = ACTIONS(5321), - [anon_sym_STAR] = ACTIONS(5321), - [anon_sym_SLASH] = ACTIONS(5321), - [anon_sym_CARET] = ACTIONS(5321), - [anon_sym__] = ACTIONS(5321), - [anon_sym_LT] = ACTIONS(5321), - [anon_sym_GT] = ACTIONS(5321), - [anon_sym_BANG] = ACTIONS(5321), - [anon_sym_PIPE] = ACTIONS(5321), - [anon_sym_COLON] = ACTIONS(5321), - [anon_sym_SQUOTE] = ACTIONS(5321), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5319), - [anon_sym_DOLLAR] = ACTIONS(5321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5319), - [anon_sym_BSLASHbegin] = ACTIONS(5321), - [anon_sym_BSLASHend] = ACTIONS(5321), - [anon_sym_BSLASHusepackage] = ACTIONS(5321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5321), - [anon_sym_BSLASHinclude] = ACTIONS(5321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5321), - [anon_sym_BSLASHinput] = ACTIONS(5321), - [anon_sym_BSLASHsubfile] = ACTIONS(5321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5321), - [anon_sym_BSLASHbibliography] = ACTIONS(5321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5321), - [anon_sym_BSLASHincludesvg] = ACTIONS(5321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5321), - [anon_sym_BSLASHimport] = ACTIONS(5321), - [anon_sym_BSLASHsubimport] = ACTIONS(5321), - [anon_sym_BSLASHinputfrom] = ACTIONS(5321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5321), - [anon_sym_BSLASHincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHcaption] = ACTIONS(5321), - [anon_sym_BSLASHcite] = ACTIONS(5321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCite] = ACTIONS(5321), - [anon_sym_BSLASHnocite] = ACTIONS(5321), - [anon_sym_BSLASHcitet] = ACTIONS(5321), - [anon_sym_BSLASHcitep] = ACTIONS(5321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteyear] = ACTIONS(5321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitedate] = ACTIONS(5321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteurl] = ACTIONS(5321), - [anon_sym_BSLASHfullcite] = ACTIONS(5321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5321), - [anon_sym_BSLASHcitealt] = ACTIONS(5321), - [anon_sym_BSLASHcitealp] = ACTIONS(5321), - [anon_sym_BSLASHcitetext] = ACTIONS(5321), - [anon_sym_BSLASHparencite] = ACTIONS(5321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHParencite] = ACTIONS(5321), - [anon_sym_BSLASHfootcite] = ACTIONS(5321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5321), - [anon_sym_BSLASHtextcite] = ACTIONS(5321), - [anon_sym_BSLASHTextcite] = ACTIONS(5321), - [anon_sym_BSLASHsmartcite] = ACTIONS(5321), - [anon_sym_BSLASHSmartcite] = ACTIONS(5321), - [anon_sym_BSLASHsupercite] = ACTIONS(5321), - [anon_sym_BSLASHautocite] = ACTIONS(5321), - [anon_sym_BSLASHAutocite] = ACTIONS(5321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHvolcite] = ACTIONS(5321), - [anon_sym_BSLASHVolcite] = ACTIONS(5321), - [anon_sym_BSLASHpvolcite] = ACTIONS(5321), - [anon_sym_BSLASHPvolcite] = ACTIONS(5321), - [anon_sym_BSLASHfvolcite] = ACTIONS(5321), - [anon_sym_BSLASHftvolcite] = ACTIONS(5321), - [anon_sym_BSLASHsvolcite] = ACTIONS(5321), - [anon_sym_BSLASHSvolcite] = ACTIONS(5321), - [anon_sym_BSLASHtvolcite] = ACTIONS(5321), - [anon_sym_BSLASHTvolcite] = ACTIONS(5321), - [anon_sym_BSLASHavolcite] = ACTIONS(5321), - [anon_sym_BSLASHAvolcite] = ACTIONS(5321), - [anon_sym_BSLASHnotecite] = ACTIONS(5321), - [anon_sym_BSLASHNotecite] = ACTIONS(5321), - [anon_sym_BSLASHpnotecite] = ACTIONS(5321), - [anon_sym_BSLASHPnotecite] = ACTIONS(5321), - [anon_sym_BSLASHfnotecite] = ACTIONS(5321), - [anon_sym_BSLASHlabel] = ACTIONS(5321), - [anon_sym_BSLASHref] = ACTIONS(5321), - [anon_sym_BSLASHeqref] = ACTIONS(5321), - [anon_sym_BSLASHvref] = ACTIONS(5321), - [anon_sym_BSLASHVref] = ACTIONS(5321), - [anon_sym_BSLASHautoref] = ACTIONS(5321), - [anon_sym_BSLASHpageref] = ACTIONS(5321), - [anon_sym_BSLASHcref] = ACTIONS(5321), - [anon_sym_BSLASHCref] = ACTIONS(5321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnameCref] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHlabelcref] = ACTIONS(5321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnewlabel] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5319), - [anon_sym_BSLASHdef] = ACTIONS(5321), - [anon_sym_BSLASHlet] = ACTIONS(5321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5321), - [anon_sym_BSLASHgls] = ACTIONS(5321), - [anon_sym_BSLASHGls] = ACTIONS(5321), - [anon_sym_BSLASHGLS] = ACTIONS(5321), - [anon_sym_BSLASHglspl] = ACTIONS(5321), - [anon_sym_BSLASHGlspl] = ACTIONS(5321), - [anon_sym_BSLASHGLSpl] = ACTIONS(5321), - [anon_sym_BSLASHglsdisp] = ACTIONS(5321), - [anon_sym_BSLASHglslink] = ACTIONS(5321), - [anon_sym_BSLASHglstext] = ACTIONS(5321), - [anon_sym_BSLASHGlstext] = ACTIONS(5321), - [anon_sym_BSLASHGLStext] = ACTIONS(5321), - [anon_sym_BSLASHglsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5321), - [anon_sym_BSLASHglsplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSplural] = ACTIONS(5321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHglsname] = ACTIONS(5321), - [anon_sym_BSLASHGlsname] = ACTIONS(5321), - [anon_sym_BSLASHGLSname] = ACTIONS(5321), - [anon_sym_BSLASHglssymbol] = ACTIONS(5321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5321), - [anon_sym_BSLASHglsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5321), - [anon_sym_BSLASHglsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5321), - [anon_sym_BSLASHglsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5321), - [anon_sym_BSLASHglsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5321), - [anon_sym_BSLASHglsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5321), - [anon_sym_BSLASHnewacronym] = ACTIONS(5321), - [anon_sym_BSLASHacrshort] = ACTIONS(5321), - [anon_sym_BSLASHAcrshort] = ACTIONS(5321), - [anon_sym_BSLASHACRshort] = ACTIONS(5321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5321), - [anon_sym_BSLASHacrlong] = ACTIONS(5321), - [anon_sym_BSLASHAcrlong] = ACTIONS(5321), - [anon_sym_BSLASHACRlong] = ACTIONS(5321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5321), - [anon_sym_BSLASHacrfull] = ACTIONS(5321), - [anon_sym_BSLASHAcrfull] = ACTIONS(5321), - [anon_sym_BSLASHACRfull] = ACTIONS(5321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5321), - [anon_sym_BSLASHacs] = ACTIONS(5321), - [anon_sym_BSLASHAcs] = ACTIONS(5321), - [anon_sym_BSLASHacsp] = ACTIONS(5321), - [anon_sym_BSLASHAcsp] = ACTIONS(5321), - [anon_sym_BSLASHacl] = ACTIONS(5321), - [anon_sym_BSLASHAcl] = ACTIONS(5321), - [anon_sym_BSLASHaclp] = ACTIONS(5321), - [anon_sym_BSLASHAclp] = ACTIONS(5321), - [anon_sym_BSLASHacf] = ACTIONS(5321), - [anon_sym_BSLASHAcf] = ACTIONS(5321), - [anon_sym_BSLASHacfp] = ACTIONS(5321), - [anon_sym_BSLASHAcfp] = ACTIONS(5321), - [anon_sym_BSLASHac] = ACTIONS(5321), - [anon_sym_BSLASHAc] = ACTIONS(5321), - [anon_sym_BSLASHacp] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5321), - [anon_sym_BSLASHcolor] = ACTIONS(5321), - [anon_sym_BSLASHcolorbox] = ACTIONS(5321), - [anon_sym_BSLASHtextcolor] = ACTIONS(5321), - [anon_sym_BSLASHpagecolor] = ACTIONS(5321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5321), + [1165] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(137), + [anon_sym_BSLASHpart] = ACTIONS(139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddpart] = ACTIONS(139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(137), + [anon_sym_BSLASHchapter] = ACTIONS(139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddchap] = ACTIONS(139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(137), + [anon_sym_BSLASHsection] = ACTIONS(139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHaddsec] = ACTIONS(139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(137), + [anon_sym_BSLASHparagraph] = ACTIONS(139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(137), + [anon_sym_BSLASHitem] = ACTIONS(139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_BSLASH_RBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), }, - [1266] = { - [sym_command_name] = ACTIONS(5305), + [1166] = { + [sym_command_name] = ACTIONS(5049), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_BSLASHpart] = ACTIONS(5305), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddpart] = ACTIONS(5305), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5303), - [anon_sym_BSLASHchapter] = ACTIONS(5305), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddchap] = ACTIONS(5305), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsection] = ACTIONS(5305), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHaddsec] = ACTIONS(5305), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5305), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5303), - [anon_sym_BSLASHparagraph] = ACTIONS(5305), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5305), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5303), - [anon_sym_BSLASHitem] = ACTIONS(5305), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASHbegin] = ACTIONS(5305), - [anon_sym_BSLASHend] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), - }, - [1267] = { - [sym_command_name] = ACTIONS(5295), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5295), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_RPAREN] = ACTIONS(5293), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5293), - [anon_sym_COMMA] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_BSLASHpart] = ACTIONS(5295), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddpart] = ACTIONS(5295), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5293), - [anon_sym_BSLASHchapter] = ACTIONS(5295), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddchap] = ACTIONS(5295), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsection] = ACTIONS(5295), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHaddsec] = ACTIONS(5295), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5295), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5293), - [anon_sym_BSLASHparagraph] = ACTIONS(5295), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5295), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5293), - [anon_sym_BSLASHitem] = ACTIONS(5295), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(5293), - [sym_word] = ACTIONS(5295), - [sym_placeholder] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(5295), - [anon_sym_STAR] = ACTIONS(5295), - [anon_sym_SLASH] = ACTIONS(5295), - [anon_sym_CARET] = ACTIONS(5295), - [anon_sym__] = ACTIONS(5295), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(5295), - [anon_sym_BANG] = ACTIONS(5295), - [anon_sym_PIPE] = ACTIONS(5295), - [anon_sym_COLON] = ACTIONS(5295), - [anon_sym_SQUOTE] = ACTIONS(5295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5293), - [anon_sym_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5293), - [anon_sym_BSLASHbegin] = ACTIONS(5295), - [anon_sym_BSLASHend] = ACTIONS(5295), - [anon_sym_BSLASHusepackage] = ACTIONS(5295), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5295), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5295), - [anon_sym_BSLASHinclude] = ACTIONS(5295), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5295), - [anon_sym_BSLASHinput] = ACTIONS(5295), - [anon_sym_BSLASHsubfile] = ACTIONS(5295), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5295), - [anon_sym_BSLASHbibliography] = ACTIONS(5295), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5295), - [anon_sym_BSLASHincludesvg] = ACTIONS(5295), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5295), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5295), - [anon_sym_BSLASHimport] = ACTIONS(5295), - [anon_sym_BSLASHsubimport] = ACTIONS(5295), - [anon_sym_BSLASHinputfrom] = ACTIONS(5295), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5295), - [anon_sym_BSLASHincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHcaption] = ACTIONS(5295), - [anon_sym_BSLASHcite] = ACTIONS(5295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCite] = ACTIONS(5295), - [anon_sym_BSLASHnocite] = ACTIONS(5295), - [anon_sym_BSLASHcitet] = ACTIONS(5295), - [anon_sym_BSLASHcitep] = ACTIONS(5295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteauthor] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitetitle] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteyear] = ACTIONS(5295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitedate] = ACTIONS(5295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteurl] = ACTIONS(5295), - [anon_sym_BSLASHfullcite] = ACTIONS(5295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5295), - [anon_sym_BSLASHcitealt] = ACTIONS(5295), - [anon_sym_BSLASHcitealp] = ACTIONS(5295), - [anon_sym_BSLASHcitetext] = ACTIONS(5295), - [anon_sym_BSLASHparencite] = ACTIONS(5295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHParencite] = ACTIONS(5295), - [anon_sym_BSLASHfootcite] = ACTIONS(5295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5295), - [anon_sym_BSLASHtextcite] = ACTIONS(5295), - [anon_sym_BSLASHTextcite] = ACTIONS(5295), - [anon_sym_BSLASHsmartcite] = ACTIONS(5295), - [anon_sym_BSLASHSmartcite] = ACTIONS(5295), - [anon_sym_BSLASHsupercite] = ACTIONS(5295), - [anon_sym_BSLASHautocite] = ACTIONS(5295), - [anon_sym_BSLASHAutocite] = ACTIONS(5295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHvolcite] = ACTIONS(5295), - [anon_sym_BSLASHVolcite] = ACTIONS(5295), - [anon_sym_BSLASHpvolcite] = ACTIONS(5295), - [anon_sym_BSLASHPvolcite] = ACTIONS(5295), - [anon_sym_BSLASHfvolcite] = ACTIONS(5295), - [anon_sym_BSLASHftvolcite] = ACTIONS(5295), - [anon_sym_BSLASHsvolcite] = ACTIONS(5295), - [anon_sym_BSLASHSvolcite] = ACTIONS(5295), - [anon_sym_BSLASHtvolcite] = ACTIONS(5295), - [anon_sym_BSLASHTvolcite] = ACTIONS(5295), - [anon_sym_BSLASHavolcite] = ACTIONS(5295), - [anon_sym_BSLASHAvolcite] = ACTIONS(5295), - [anon_sym_BSLASHnotecite] = ACTIONS(5295), - [anon_sym_BSLASHNotecite] = ACTIONS(5295), - [anon_sym_BSLASHpnotecite] = ACTIONS(5295), - [anon_sym_BSLASHPnotecite] = ACTIONS(5295), - [anon_sym_BSLASHfnotecite] = ACTIONS(5295), - [anon_sym_BSLASHlabel] = ACTIONS(5295), - [anon_sym_BSLASHref] = ACTIONS(5295), - [anon_sym_BSLASHeqref] = ACTIONS(5295), - [anon_sym_BSLASHvref] = ACTIONS(5295), - [anon_sym_BSLASHVref] = ACTIONS(5295), - [anon_sym_BSLASHautoref] = ACTIONS(5295), - [anon_sym_BSLASHpageref] = ACTIONS(5295), - [anon_sym_BSLASHcref] = ACTIONS(5295), - [anon_sym_BSLASHCref] = ACTIONS(5295), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnameCref] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHlabelcref] = ACTIONS(5295), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCrefrange] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnewlabel] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdef] = ACTIONS(5295), - [anon_sym_BSLASHlet] = ACTIONS(5295), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5295), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5295), - [anon_sym_BSLASHgls] = ACTIONS(5295), - [anon_sym_BSLASHGls] = ACTIONS(5295), - [anon_sym_BSLASHGLS] = ACTIONS(5295), - [anon_sym_BSLASHglspl] = ACTIONS(5295), - [anon_sym_BSLASHGlspl] = ACTIONS(5295), - [anon_sym_BSLASHGLSpl] = ACTIONS(5295), - [anon_sym_BSLASHglsdisp] = ACTIONS(5295), - [anon_sym_BSLASHglslink] = ACTIONS(5295), - [anon_sym_BSLASHglstext] = ACTIONS(5295), - [anon_sym_BSLASHGlstext] = ACTIONS(5295), - [anon_sym_BSLASHGLStext] = ACTIONS(5295), - [anon_sym_BSLASHglsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5295), - [anon_sym_BSLASHglsplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSplural] = ACTIONS(5295), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHglsname] = ACTIONS(5295), - [anon_sym_BSLASHGlsname] = ACTIONS(5295), - [anon_sym_BSLASHGLSname] = ACTIONS(5295), - [anon_sym_BSLASHglssymbol] = ACTIONS(5295), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5295), - [anon_sym_BSLASHglsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5295), - [anon_sym_BSLASHglsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5295), - [anon_sym_BSLASHglsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5295), - [anon_sym_BSLASHglsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5295), - [anon_sym_BSLASHglsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5295), - [anon_sym_BSLASHnewacronym] = ACTIONS(5295), - [anon_sym_BSLASHacrshort] = ACTIONS(5295), - [anon_sym_BSLASHAcrshort] = ACTIONS(5295), - [anon_sym_BSLASHACRshort] = ACTIONS(5295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5295), - [anon_sym_BSLASHacrlong] = ACTIONS(5295), - [anon_sym_BSLASHAcrlong] = ACTIONS(5295), - [anon_sym_BSLASHACRlong] = ACTIONS(5295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5295), - [anon_sym_BSLASHacrfull] = ACTIONS(5295), - [anon_sym_BSLASHAcrfull] = ACTIONS(5295), - [anon_sym_BSLASHACRfull] = ACTIONS(5295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5295), - [anon_sym_BSLASHacs] = ACTIONS(5295), - [anon_sym_BSLASHAcs] = ACTIONS(5295), - [anon_sym_BSLASHacsp] = ACTIONS(5295), - [anon_sym_BSLASHAcsp] = ACTIONS(5295), - [anon_sym_BSLASHacl] = ACTIONS(5295), - [anon_sym_BSLASHAcl] = ACTIONS(5295), - [anon_sym_BSLASHaclp] = ACTIONS(5295), - [anon_sym_BSLASHAclp] = ACTIONS(5295), - [anon_sym_BSLASHacf] = ACTIONS(5295), - [anon_sym_BSLASHAcf] = ACTIONS(5295), - [anon_sym_BSLASHacfp] = ACTIONS(5295), - [anon_sym_BSLASHAcfp] = ACTIONS(5295), - [anon_sym_BSLASHac] = ACTIONS(5295), - [anon_sym_BSLASHAc] = ACTIONS(5295), - [anon_sym_BSLASHacp] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5295), - [anon_sym_BSLASHcolor] = ACTIONS(5295), - [anon_sym_BSLASHcolorbox] = ACTIONS(5295), - [anon_sym_BSLASHtextcolor] = ACTIONS(5295), - [anon_sym_BSLASHpagecolor] = ACTIONS(5295), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5295), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5295), - }, - [1268] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_BSLASHpart] = ACTIONS(5299), - [anon_sym_BSLASHpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddpart] = ACTIONS(5299), - [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5297), - [anon_sym_BSLASHchapter] = ACTIONS(5299), - [anon_sym_BSLASHchapter_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddchap] = ACTIONS(5299), - [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsection] = ACTIONS(5299), - [anon_sym_BSLASHsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHaddsec] = ACTIONS(5299), - [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubsubsection] = ACTIONS(5299), - [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5297), - [anon_sym_BSLASHparagraph] = ACTIONS(5299), - [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHsubparagraph] = ACTIONS(5299), - [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5297), - [anon_sym_BSLASHitem] = ACTIONS(5299), - [anon_sym_BSLASHitem_STAR] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASHbegin] = ACTIONS(5299), - [anon_sym_BSLASHend] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), - }, - [1269] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2357), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1270] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2360), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1271] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(1848), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1272] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2352), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1273] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2381), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1274] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2382), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1275] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2416), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1276] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2436), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1277] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2359), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1278] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2452), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1279] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2356), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1280] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2415), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1281] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2437), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1282] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2418), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1283] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2438), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1284] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2462), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1285] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2463), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1286] = { - [sym_block_comment] = STATE(1509), - [sym_text] = STATE(2439), - [sym_operator] = STATE(1509), - [sym__command] = STATE(1509), - [sym_generic_command] = STATE(1509), - [sym_package_include] = STATE(1509), - [sym_class_include] = STATE(1509), - [sym_latex_include] = STATE(1509), - [sym_biblatex_include] = STATE(1509), - [sym_bibtex_include] = STATE(1509), - [sym_graphics_include] = STATE(1509), - [sym_svg_include] = STATE(1509), - [sym_inkscape_include] = STATE(1509), - [sym_verbatim_include] = STATE(1509), - [sym_import_include] = STATE(1509), - [sym_caption] = STATE(1509), - [sym_citation] = STATE(1509), - [sym_label_definition] = STATE(1509), - [sym_label_reference] = STATE(1509), - [sym_label_reference_range] = STATE(1509), - [sym_label_number] = STATE(1509), - [sym_new_command_definition] = STATE(1509), - [sym_old_command_definition] = STATE(1509), - [sym_let_command_definition] = STATE(1509), - [sym_environment_definition] = STATE(1509), - [sym_glossary_entry_definition] = STATE(1509), - [sym_glossary_entry_reference] = STATE(1509), - [sym_acronym_definition] = STATE(1509), - [sym_acronym_reference] = STATE(1509), - [sym_theorem_definition] = STATE(1509), - [sym_color_definition] = STATE(1509), - [sym_color_set_definition] = STATE(1509), - [sym_color_reference] = STATE(1509), - [sym_tikz_library_import] = STATE(1509), - [aux_sym_text_repeat1] = STATE(662), - [sym_command_name] = ACTIONS(4303), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4305), - [sym_word] = ACTIONS(4307), - [sym_placeholder] = ACTIONS(4309), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(4311), - [anon_sym_CARET] = ACTIONS(4311), - [anon_sym__] = ACTIONS(4311), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(4311), - [anon_sym_BANG] = ACTIONS(4311), - [anon_sym_PIPE] = ACTIONS(4311), - [anon_sym_COLON] = ACTIONS(4311), - [anon_sym_SQUOTE] = ACTIONS(4311), - [anon_sym_BSLASHusepackage] = ACTIONS(4323), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4323), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4325), - [anon_sym_BSLASHinclude] = ACTIONS(4327), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4327), - [anon_sym_BSLASHinput] = ACTIONS(4327), - [anon_sym_BSLASHsubfile] = ACTIONS(4327), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4329), - [anon_sym_BSLASHbibliography] = ACTIONS(4331), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4333), - [anon_sym_BSLASHincludesvg] = ACTIONS(4335), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4339), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4339), - [anon_sym_BSLASHimport] = ACTIONS(4341), - [anon_sym_BSLASHsubimport] = ACTIONS(4341), - [anon_sym_BSLASHinputfrom] = ACTIONS(4341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4341), - [anon_sym_BSLASHincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4341), - [anon_sym_BSLASHcaption] = ACTIONS(4343), - [anon_sym_BSLASHcite] = ACTIONS(4345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCite] = ACTIONS(4345), - [anon_sym_BSLASHnocite] = ACTIONS(4345), - [anon_sym_BSLASHcitet] = ACTIONS(4345), - [anon_sym_BSLASHcitep] = ACTIONS(4345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteauthor] = ACTIONS(4345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitetitle] = ACTIONS(4345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteyear] = ACTIONS(4345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4347), - [anon_sym_BSLASHcitedate] = ACTIONS(4345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4347), - [anon_sym_BSLASHciteurl] = ACTIONS(4345), - [anon_sym_BSLASHfullcite] = ACTIONS(4345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4345), - [anon_sym_BSLASHcitealt] = ACTIONS(4345), - [anon_sym_BSLASHcitealp] = ACTIONS(4345), - [anon_sym_BSLASHcitetext] = ACTIONS(4345), - [anon_sym_BSLASHparencite] = ACTIONS(4345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHParencite] = ACTIONS(4345), - [anon_sym_BSLASHfootcite] = ACTIONS(4345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4345), - [anon_sym_BSLASHtextcite] = ACTIONS(4345), - [anon_sym_BSLASHTextcite] = ACTIONS(4345), - [anon_sym_BSLASHsmartcite] = ACTIONS(4345), - [anon_sym_BSLASHSmartcite] = ACTIONS(4345), - [anon_sym_BSLASHsupercite] = ACTIONS(4345), - [anon_sym_BSLASHautocite] = ACTIONS(4345), - [anon_sym_BSLASHAutocite] = ACTIONS(4345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4347), - [anon_sym_BSLASHvolcite] = ACTIONS(4345), - [anon_sym_BSLASHVolcite] = ACTIONS(4345), - [anon_sym_BSLASHpvolcite] = ACTIONS(4345), - [anon_sym_BSLASHPvolcite] = ACTIONS(4345), - [anon_sym_BSLASHfvolcite] = ACTIONS(4345), - [anon_sym_BSLASHftvolcite] = ACTIONS(4345), - [anon_sym_BSLASHsvolcite] = ACTIONS(4345), - [anon_sym_BSLASHSvolcite] = ACTIONS(4345), - [anon_sym_BSLASHtvolcite] = ACTIONS(4345), - [anon_sym_BSLASHTvolcite] = ACTIONS(4345), - [anon_sym_BSLASHavolcite] = ACTIONS(4345), - [anon_sym_BSLASHAvolcite] = ACTIONS(4345), - [anon_sym_BSLASHnotecite] = ACTIONS(4345), - [anon_sym_BSLASHNotecite] = ACTIONS(4345), - [anon_sym_BSLASHpnotecite] = ACTIONS(4345), - [anon_sym_BSLASHPnotecite] = ACTIONS(4345), - [anon_sym_BSLASHfnotecite] = ACTIONS(4345), - [anon_sym_BSLASHlabel] = ACTIONS(4349), - [anon_sym_BSLASHref] = ACTIONS(4351), - [anon_sym_BSLASHeqref] = ACTIONS(4351), - [anon_sym_BSLASHvref] = ACTIONS(4351), - [anon_sym_BSLASHVref] = ACTIONS(4351), - [anon_sym_BSLASHautoref] = ACTIONS(4351), - [anon_sym_BSLASHpageref] = ACTIONS(4351), - [anon_sym_BSLASHcref] = ACTIONS(4351), - [anon_sym_BSLASHCref] = ACTIONS(4351), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4353), - [anon_sym_BSLASHnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnameCref] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4351), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4351), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4351), - [anon_sym_BSLASHlabelcref] = ACTIONS(4351), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4351), - [anon_sym_BSLASHcrefrange] = ACTIONS(4355), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHCrefrange] = ACTIONS(4355), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4357), - [anon_sym_BSLASHnewlabel] = ACTIONS(4359), - [anon_sym_BSLASHnewcommand] = ACTIONS(4361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4363), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4363), - [anon_sym_BSLASHdef] = ACTIONS(4365), - [anon_sym_BSLASHlet] = ACTIONS(4367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4369), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4371), - [anon_sym_BSLASHgls] = ACTIONS(4373), - [anon_sym_BSLASHGls] = ACTIONS(4373), - [anon_sym_BSLASHGLS] = ACTIONS(4373), - [anon_sym_BSLASHglspl] = ACTIONS(4373), - [anon_sym_BSLASHGlspl] = ACTIONS(4373), - [anon_sym_BSLASHGLSpl] = ACTIONS(4373), - [anon_sym_BSLASHglsdisp] = ACTIONS(4373), - [anon_sym_BSLASHglslink] = ACTIONS(4373), - [anon_sym_BSLASHglstext] = ACTIONS(4373), - [anon_sym_BSLASHGlstext] = ACTIONS(4373), - [anon_sym_BSLASHGLStext] = ACTIONS(4373), - [anon_sym_BSLASHglsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4373), - [anon_sym_BSLASHglsplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSplural] = ACTIONS(4373), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4373), - [anon_sym_BSLASHglsname] = ACTIONS(4373), - [anon_sym_BSLASHGlsname] = ACTIONS(4373), - [anon_sym_BSLASHGLSname] = ACTIONS(4373), - [anon_sym_BSLASHglssymbol] = ACTIONS(4373), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4373), - [anon_sym_BSLASHglsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4373), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4373), - [anon_sym_BSLASHglsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4373), - [anon_sym_BSLASHglsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4373), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4373), - [anon_sym_BSLASHglsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4373), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4373), - [anon_sym_BSLASHglsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4373), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4373), - [anon_sym_BSLASHnewacronym] = ACTIONS(4375), - [anon_sym_BSLASHacrshort] = ACTIONS(4377), - [anon_sym_BSLASHAcrshort] = ACTIONS(4377), - [anon_sym_BSLASHACRshort] = ACTIONS(4377), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4377), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4377), - [anon_sym_BSLASHacrlong] = ACTIONS(4377), - [anon_sym_BSLASHAcrlong] = ACTIONS(4377), - [anon_sym_BSLASHACRlong] = ACTIONS(4377), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4377), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4377), - [anon_sym_BSLASHacrfull] = ACTIONS(4377), - [anon_sym_BSLASHAcrfull] = ACTIONS(4377), - [anon_sym_BSLASHACRfull] = ACTIONS(4377), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4377), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4377), - [anon_sym_BSLASHacs] = ACTIONS(4377), - [anon_sym_BSLASHAcs] = ACTIONS(4377), - [anon_sym_BSLASHacsp] = ACTIONS(4377), - [anon_sym_BSLASHAcsp] = ACTIONS(4377), - [anon_sym_BSLASHacl] = ACTIONS(4377), - [anon_sym_BSLASHAcl] = ACTIONS(4377), - [anon_sym_BSLASHaclp] = ACTIONS(4377), - [anon_sym_BSLASHAclp] = ACTIONS(4377), - [anon_sym_BSLASHacf] = ACTIONS(4377), - [anon_sym_BSLASHAcf] = ACTIONS(4377), - [anon_sym_BSLASHacfp] = ACTIONS(4377), - [anon_sym_BSLASHAcfp] = ACTIONS(4377), - [anon_sym_BSLASHac] = ACTIONS(4377), - [anon_sym_BSLASHAc] = ACTIONS(4377), - [anon_sym_BSLASHacp] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4377), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4377), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4377), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4377), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4379), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4379), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4383), - [anon_sym_BSLASHcolor] = ACTIONS(4385), - [anon_sym_BSLASHcolorbox] = ACTIONS(4385), - [anon_sym_BSLASHtextcolor] = ACTIONS(4385), - [anon_sym_BSLASHpagecolor] = ACTIONS(4385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4387), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4387), - }, - [1287] = { - [sym_curly_group] = STATE(1398), - [sym_mixed_group] = STATE(1398), - [aux_sym_generic_command_repeat1] = STATE(1288), - [sym_command_name] = ACTIONS(4449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(4447), - [anon_sym_COMMA] = ACTIONS(4447), - [anon_sym_EQ] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(4449), - [sym_placeholder] = ACTIONS(4447), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [anon_sym_SLASH] = ACTIONS(4449), - [anon_sym_CARET] = ACTIONS(4449), - [anon_sym__] = ACTIONS(4449), - [anon_sym_LT] = ACTIONS(4449), - [anon_sym_GT] = ACTIONS(4449), - [anon_sym_BANG] = ACTIONS(4449), - [anon_sym_PIPE] = ACTIONS(4449), - [anon_sym_COLON] = ACTIONS(4449), - [anon_sym_SQUOTE] = ACTIONS(4449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4447), - [anon_sym_BSLASHbegin] = ACTIONS(4449), - [anon_sym_BSLASHusepackage] = ACTIONS(4449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4449), - [anon_sym_BSLASHinclude] = ACTIONS(4449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4449), - [anon_sym_BSLASHinput] = ACTIONS(4449), - [anon_sym_BSLASHsubfile] = ACTIONS(4449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4449), - [anon_sym_BSLASHbibliography] = ACTIONS(4449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4449), - [anon_sym_BSLASHincludesvg] = ACTIONS(4449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4449), - [anon_sym_BSLASHimport] = ACTIONS(4449), - [anon_sym_BSLASHsubimport] = ACTIONS(4449), - [anon_sym_BSLASHinputfrom] = ACTIONS(4449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4449), - [anon_sym_BSLASHincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHcaption] = ACTIONS(4449), - [anon_sym_BSLASHcite] = ACTIONS(4449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCite] = ACTIONS(4449), - [anon_sym_BSLASHnocite] = ACTIONS(4449), - [anon_sym_BSLASHcitet] = ACTIONS(4449), - [anon_sym_BSLASHcitep] = ACTIONS(4449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteyear] = ACTIONS(4449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitedate] = ACTIONS(4449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteurl] = ACTIONS(4449), - [anon_sym_BSLASHfullcite] = ACTIONS(4449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4449), - [anon_sym_BSLASHcitealt] = ACTIONS(4449), - [anon_sym_BSLASHcitealp] = ACTIONS(4449), - [anon_sym_BSLASHcitetext] = ACTIONS(4449), - [anon_sym_BSLASHparencite] = ACTIONS(4449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHParencite] = ACTIONS(4449), - [anon_sym_BSLASHfootcite] = ACTIONS(4449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4449), - [anon_sym_BSLASHtextcite] = ACTIONS(4449), - [anon_sym_BSLASHTextcite] = ACTIONS(4449), - [anon_sym_BSLASHsmartcite] = ACTIONS(4449), - [anon_sym_BSLASHSmartcite] = ACTIONS(4449), - [anon_sym_BSLASHsupercite] = ACTIONS(4449), - [anon_sym_BSLASHautocite] = ACTIONS(4449), - [anon_sym_BSLASHAutocite] = ACTIONS(4449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHvolcite] = ACTIONS(4449), - [anon_sym_BSLASHVolcite] = ACTIONS(4449), - [anon_sym_BSLASHpvolcite] = ACTIONS(4449), - [anon_sym_BSLASHPvolcite] = ACTIONS(4449), - [anon_sym_BSLASHfvolcite] = ACTIONS(4449), - [anon_sym_BSLASHftvolcite] = ACTIONS(4449), - [anon_sym_BSLASHsvolcite] = ACTIONS(4449), - [anon_sym_BSLASHSvolcite] = ACTIONS(4449), - [anon_sym_BSLASHtvolcite] = ACTIONS(4449), - [anon_sym_BSLASHTvolcite] = ACTIONS(4449), - [anon_sym_BSLASHavolcite] = ACTIONS(4449), - [anon_sym_BSLASHAvolcite] = ACTIONS(4449), - [anon_sym_BSLASHnotecite] = ACTIONS(4449), - [anon_sym_BSLASHNotecite] = ACTIONS(4449), - [anon_sym_BSLASHpnotecite] = ACTIONS(4449), - [anon_sym_BSLASHPnotecite] = ACTIONS(4449), - [anon_sym_BSLASHfnotecite] = ACTIONS(4449), - [anon_sym_BSLASHlabel] = ACTIONS(4449), - [anon_sym_BSLASHref] = ACTIONS(4449), - [anon_sym_BSLASHeqref] = ACTIONS(4449), - [anon_sym_BSLASHvref] = ACTIONS(4449), - [anon_sym_BSLASHVref] = ACTIONS(4449), - [anon_sym_BSLASHautoref] = ACTIONS(4449), - [anon_sym_BSLASHpageref] = ACTIONS(4449), - [anon_sym_BSLASHcref] = ACTIONS(4449), - [anon_sym_BSLASHCref] = ACTIONS(4449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnameCref] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHlabelcref] = ACTIONS(4449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnewlabel] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4447), - [anon_sym_BSLASHdef] = ACTIONS(4449), - [anon_sym_BSLASHlet] = ACTIONS(4449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4449), - [anon_sym_BSLASHgls] = ACTIONS(4449), - [anon_sym_BSLASHGls] = ACTIONS(4449), - [anon_sym_BSLASHGLS] = ACTIONS(4449), - [anon_sym_BSLASHglspl] = ACTIONS(4449), - [anon_sym_BSLASHGlspl] = ACTIONS(4449), - [anon_sym_BSLASHGLSpl] = ACTIONS(4449), - [anon_sym_BSLASHglsdisp] = ACTIONS(4449), - [anon_sym_BSLASHglslink] = ACTIONS(4449), - [anon_sym_BSLASHglstext] = ACTIONS(4449), - [anon_sym_BSLASHGlstext] = ACTIONS(4449), - [anon_sym_BSLASHGLStext] = ACTIONS(4449), - [anon_sym_BSLASHglsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4449), - [anon_sym_BSLASHglsplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSplural] = ACTIONS(4449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHglsname] = ACTIONS(4449), - [anon_sym_BSLASHGlsname] = ACTIONS(4449), - [anon_sym_BSLASHGLSname] = ACTIONS(4449), - [anon_sym_BSLASHglssymbol] = ACTIONS(4449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4449), - [anon_sym_BSLASHglsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4449), - [anon_sym_BSLASHglsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4449), - [anon_sym_BSLASHglsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4449), - [anon_sym_BSLASHglsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4449), - [anon_sym_BSLASHglsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4449), - [anon_sym_BSLASHnewacronym] = ACTIONS(4449), - [anon_sym_BSLASHacrshort] = ACTIONS(4449), - [anon_sym_BSLASHAcrshort] = ACTIONS(4449), - [anon_sym_BSLASHACRshort] = ACTIONS(4449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4449), - [anon_sym_BSLASHacrlong] = ACTIONS(4449), - [anon_sym_BSLASHAcrlong] = ACTIONS(4449), - [anon_sym_BSLASHACRlong] = ACTIONS(4449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4449), - [anon_sym_BSLASHacrfull] = ACTIONS(4449), - [anon_sym_BSLASHAcrfull] = ACTIONS(4449), - [anon_sym_BSLASHACRfull] = ACTIONS(4449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4449), - [anon_sym_BSLASHacs] = ACTIONS(4449), - [anon_sym_BSLASHAcs] = ACTIONS(4449), - [anon_sym_BSLASHacsp] = ACTIONS(4449), - [anon_sym_BSLASHAcsp] = ACTIONS(4449), - [anon_sym_BSLASHacl] = ACTIONS(4449), - [anon_sym_BSLASHAcl] = ACTIONS(4449), - [anon_sym_BSLASHaclp] = ACTIONS(4449), - [anon_sym_BSLASHAclp] = ACTIONS(4449), - [anon_sym_BSLASHacf] = ACTIONS(4449), - [anon_sym_BSLASHAcf] = ACTIONS(4449), - [anon_sym_BSLASHacfp] = ACTIONS(4449), - [anon_sym_BSLASHAcfp] = ACTIONS(4449), - [anon_sym_BSLASHac] = ACTIONS(4449), - [anon_sym_BSLASHAc] = ACTIONS(4449), - [anon_sym_BSLASHacp] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4449), - [anon_sym_BSLASHcolor] = ACTIONS(4449), - [anon_sym_BSLASHcolorbox] = ACTIONS(4449), - [anon_sym_BSLASHtextcolor] = ACTIONS(4449), - [anon_sym_BSLASHpagecolor] = ACTIONS(4449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4449), - }, - [1288] = { - [sym_curly_group] = STATE(1398), - [sym_mixed_group] = STATE(1398), - [aux_sym_generic_command_repeat1] = STATE(1289), - [sym_command_name] = ACTIONS(4465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4465), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_RPAREN] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_EQ] = ACTIONS(4463), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(4465), - [sym_placeholder] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_CARET] = ACTIONS(4465), - [anon_sym__] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_PIPE] = ACTIONS(4465), - [anon_sym_COLON] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4465), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4463), - [anon_sym_DOLLAR] = ACTIONS(4465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4463), - [anon_sym_BSLASHbegin] = ACTIONS(4465), - [anon_sym_BSLASHusepackage] = ACTIONS(4465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4465), - [anon_sym_BSLASHinclude] = ACTIONS(4465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4465), - [anon_sym_BSLASHinput] = ACTIONS(4465), - [anon_sym_BSLASHsubfile] = ACTIONS(4465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4465), - [anon_sym_BSLASHbibliography] = ACTIONS(4465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4465), - [anon_sym_BSLASHincludesvg] = ACTIONS(4465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4465), - [anon_sym_BSLASHimport] = ACTIONS(4465), - [anon_sym_BSLASHsubimport] = ACTIONS(4465), - [anon_sym_BSLASHinputfrom] = ACTIONS(4465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4465), - [anon_sym_BSLASHincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHcaption] = ACTIONS(4465), - [anon_sym_BSLASHcite] = ACTIONS(4465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCite] = ACTIONS(4465), - [anon_sym_BSLASHnocite] = ACTIONS(4465), - [anon_sym_BSLASHcitet] = ACTIONS(4465), - [anon_sym_BSLASHcitep] = ACTIONS(4465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteauthor] = ACTIONS(4465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitetitle] = ACTIONS(4465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteyear] = ACTIONS(4465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitedate] = ACTIONS(4465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteurl] = ACTIONS(4465), - [anon_sym_BSLASHfullcite] = ACTIONS(4465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4465), - [anon_sym_BSLASHcitealt] = ACTIONS(4465), - [anon_sym_BSLASHcitealp] = ACTIONS(4465), - [anon_sym_BSLASHcitetext] = ACTIONS(4465), - [anon_sym_BSLASHparencite] = ACTIONS(4465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHParencite] = ACTIONS(4465), - [anon_sym_BSLASHfootcite] = ACTIONS(4465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4465), - [anon_sym_BSLASHtextcite] = ACTIONS(4465), - [anon_sym_BSLASHTextcite] = ACTIONS(4465), - [anon_sym_BSLASHsmartcite] = ACTIONS(4465), - [anon_sym_BSLASHSmartcite] = ACTIONS(4465), - [anon_sym_BSLASHsupercite] = ACTIONS(4465), - [anon_sym_BSLASHautocite] = ACTIONS(4465), - [anon_sym_BSLASHAutocite] = ACTIONS(4465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHvolcite] = ACTIONS(4465), - [anon_sym_BSLASHVolcite] = ACTIONS(4465), - [anon_sym_BSLASHpvolcite] = ACTIONS(4465), - [anon_sym_BSLASHPvolcite] = ACTIONS(4465), - [anon_sym_BSLASHfvolcite] = ACTIONS(4465), - [anon_sym_BSLASHftvolcite] = ACTIONS(4465), - [anon_sym_BSLASHsvolcite] = ACTIONS(4465), - [anon_sym_BSLASHSvolcite] = ACTIONS(4465), - [anon_sym_BSLASHtvolcite] = ACTIONS(4465), - [anon_sym_BSLASHTvolcite] = ACTIONS(4465), - [anon_sym_BSLASHavolcite] = ACTIONS(4465), - [anon_sym_BSLASHAvolcite] = ACTIONS(4465), - [anon_sym_BSLASHnotecite] = ACTIONS(4465), - [anon_sym_BSLASHNotecite] = ACTIONS(4465), - [anon_sym_BSLASHpnotecite] = ACTIONS(4465), - [anon_sym_BSLASHPnotecite] = ACTIONS(4465), - [anon_sym_BSLASHfnotecite] = ACTIONS(4465), - [anon_sym_BSLASHlabel] = ACTIONS(4465), - [anon_sym_BSLASHref] = ACTIONS(4465), - [anon_sym_BSLASHeqref] = ACTIONS(4465), - [anon_sym_BSLASHvref] = ACTIONS(4465), - [anon_sym_BSLASHVref] = ACTIONS(4465), - [anon_sym_BSLASHautoref] = ACTIONS(4465), - [anon_sym_BSLASHpageref] = ACTIONS(4465), - [anon_sym_BSLASHcref] = ACTIONS(4465), - [anon_sym_BSLASHCref] = ACTIONS(4465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnameCref] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHlabelcref] = ACTIONS(4465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCrefrange] = ACTIONS(4465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnewlabel] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4463), - [anon_sym_BSLASHdef] = ACTIONS(4465), - [anon_sym_BSLASHlet] = ACTIONS(4465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4465), - [anon_sym_BSLASHgls] = ACTIONS(4465), - [anon_sym_BSLASHGls] = ACTIONS(4465), - [anon_sym_BSLASHGLS] = ACTIONS(4465), - [anon_sym_BSLASHglspl] = ACTIONS(4465), - [anon_sym_BSLASHGlspl] = ACTIONS(4465), - [anon_sym_BSLASHGLSpl] = ACTIONS(4465), - [anon_sym_BSLASHglsdisp] = ACTIONS(4465), - [anon_sym_BSLASHglslink] = ACTIONS(4465), - [anon_sym_BSLASHglstext] = ACTIONS(4465), - [anon_sym_BSLASHGlstext] = ACTIONS(4465), - [anon_sym_BSLASHGLStext] = ACTIONS(4465), - [anon_sym_BSLASHglsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4465), - [anon_sym_BSLASHglsplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSplural] = ACTIONS(4465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHglsname] = ACTIONS(4465), - [anon_sym_BSLASHGlsname] = ACTIONS(4465), - [anon_sym_BSLASHGLSname] = ACTIONS(4465), - [anon_sym_BSLASHglssymbol] = ACTIONS(4465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4465), - [anon_sym_BSLASHglsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4465), - [anon_sym_BSLASHglsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4465), - [anon_sym_BSLASHglsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4465), - [anon_sym_BSLASHglsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4465), - [anon_sym_BSLASHglsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4465), - [anon_sym_BSLASHnewacronym] = ACTIONS(4465), - [anon_sym_BSLASHacrshort] = ACTIONS(4465), - [anon_sym_BSLASHAcrshort] = ACTIONS(4465), - [anon_sym_BSLASHACRshort] = ACTIONS(4465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4465), - [anon_sym_BSLASHacrlong] = ACTIONS(4465), - [anon_sym_BSLASHAcrlong] = ACTIONS(4465), - [anon_sym_BSLASHACRlong] = ACTIONS(4465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4465), - [anon_sym_BSLASHacrfull] = ACTIONS(4465), - [anon_sym_BSLASHAcrfull] = ACTIONS(4465), - [anon_sym_BSLASHACRfull] = ACTIONS(4465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4465), - [anon_sym_BSLASHacs] = ACTIONS(4465), - [anon_sym_BSLASHAcs] = ACTIONS(4465), - [anon_sym_BSLASHacsp] = ACTIONS(4465), - [anon_sym_BSLASHAcsp] = ACTIONS(4465), - [anon_sym_BSLASHacl] = ACTIONS(4465), - [anon_sym_BSLASHAcl] = ACTIONS(4465), - [anon_sym_BSLASHaclp] = ACTIONS(4465), - [anon_sym_BSLASHAclp] = ACTIONS(4465), - [anon_sym_BSLASHacf] = ACTIONS(4465), - [anon_sym_BSLASHAcf] = ACTIONS(4465), - [anon_sym_BSLASHacfp] = ACTIONS(4465), - [anon_sym_BSLASHAcfp] = ACTIONS(4465), - [anon_sym_BSLASHac] = ACTIONS(4465), - [anon_sym_BSLASHAc] = ACTIONS(4465), - [anon_sym_BSLASHacp] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4465), - [anon_sym_BSLASHcolor] = ACTIONS(4465), - [anon_sym_BSLASHcolorbox] = ACTIONS(4465), - [anon_sym_BSLASHtextcolor] = ACTIONS(4465), - [anon_sym_BSLASHpagecolor] = ACTIONS(4465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4465), - }, - [1289] = { - [sym_curly_group] = STATE(1398), - [sym_mixed_group] = STATE(1398), - [aux_sym_generic_command_repeat1] = STATE(1289), - [sym_command_name] = ACTIONS(4469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4469), - [anon_sym_LPAREN] = ACTIONS(5415), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(5415), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_EQ] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(5418), - [sym_word] = ACTIONS(4469), - [sym_placeholder] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_CARET] = ACTIONS(4469), - [anon_sym__] = ACTIONS(4469), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_PIPE] = ACTIONS(4469), - [anon_sym_COLON] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4467), - [anon_sym_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4467), - [anon_sym_BSLASHbegin] = ACTIONS(4469), - [anon_sym_BSLASHusepackage] = ACTIONS(4469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4469), - [anon_sym_BSLASHinclude] = ACTIONS(4469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4469), - [anon_sym_BSLASHinput] = ACTIONS(4469), - [anon_sym_BSLASHsubfile] = ACTIONS(4469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4469), - [anon_sym_BSLASHbibliography] = ACTIONS(4469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4469), - [anon_sym_BSLASHincludesvg] = ACTIONS(4469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4469), - [anon_sym_BSLASHimport] = ACTIONS(4469), - [anon_sym_BSLASHsubimport] = ACTIONS(4469), - [anon_sym_BSLASHinputfrom] = ACTIONS(4469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4469), - [anon_sym_BSLASHincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHcaption] = ACTIONS(4469), - [anon_sym_BSLASHcite] = ACTIONS(4469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCite] = ACTIONS(4469), - [anon_sym_BSLASHnocite] = ACTIONS(4469), - [anon_sym_BSLASHcitet] = ACTIONS(4469), - [anon_sym_BSLASHcitep] = ACTIONS(4469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteauthor] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitetitle] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteyear] = ACTIONS(4469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitedate] = ACTIONS(4469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteurl] = ACTIONS(4469), - [anon_sym_BSLASHfullcite] = ACTIONS(4469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4469), - [anon_sym_BSLASHcitealt] = ACTIONS(4469), - [anon_sym_BSLASHcitealp] = ACTIONS(4469), - [anon_sym_BSLASHcitetext] = ACTIONS(4469), - [anon_sym_BSLASHparencite] = ACTIONS(4469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHParencite] = ACTIONS(4469), - [anon_sym_BSLASHfootcite] = ACTIONS(4469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4469), - [anon_sym_BSLASHtextcite] = ACTIONS(4469), - [anon_sym_BSLASHTextcite] = ACTIONS(4469), - [anon_sym_BSLASHsmartcite] = ACTIONS(4469), - [anon_sym_BSLASHSmartcite] = ACTIONS(4469), - [anon_sym_BSLASHsupercite] = ACTIONS(4469), - [anon_sym_BSLASHautocite] = ACTIONS(4469), - [anon_sym_BSLASHAutocite] = ACTIONS(4469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHvolcite] = ACTIONS(4469), - [anon_sym_BSLASHVolcite] = ACTIONS(4469), - [anon_sym_BSLASHpvolcite] = ACTIONS(4469), - [anon_sym_BSLASHPvolcite] = ACTIONS(4469), - [anon_sym_BSLASHfvolcite] = ACTIONS(4469), - [anon_sym_BSLASHftvolcite] = ACTIONS(4469), - [anon_sym_BSLASHsvolcite] = ACTIONS(4469), - [anon_sym_BSLASHSvolcite] = ACTIONS(4469), - [anon_sym_BSLASHtvolcite] = ACTIONS(4469), - [anon_sym_BSLASHTvolcite] = ACTIONS(4469), - [anon_sym_BSLASHavolcite] = ACTIONS(4469), - [anon_sym_BSLASHAvolcite] = ACTIONS(4469), - [anon_sym_BSLASHnotecite] = ACTIONS(4469), - [anon_sym_BSLASHNotecite] = ACTIONS(4469), - [anon_sym_BSLASHpnotecite] = ACTIONS(4469), - [anon_sym_BSLASHPnotecite] = ACTIONS(4469), - [anon_sym_BSLASHfnotecite] = ACTIONS(4469), - [anon_sym_BSLASHlabel] = ACTIONS(4469), - [anon_sym_BSLASHref] = ACTIONS(4469), - [anon_sym_BSLASHeqref] = ACTIONS(4469), - [anon_sym_BSLASHvref] = ACTIONS(4469), - [anon_sym_BSLASHVref] = ACTIONS(4469), - [anon_sym_BSLASHautoref] = ACTIONS(4469), - [anon_sym_BSLASHpageref] = ACTIONS(4469), - [anon_sym_BSLASHcref] = ACTIONS(4469), - [anon_sym_BSLASHCref] = ACTIONS(4469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnameCref] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHlabelcref] = ACTIONS(4469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCrefrange] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnewlabel] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4467), - [anon_sym_BSLASHdef] = ACTIONS(4469), - [anon_sym_BSLASHlet] = ACTIONS(4469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4469), - [anon_sym_BSLASHgls] = ACTIONS(4469), - [anon_sym_BSLASHGls] = ACTIONS(4469), - [anon_sym_BSLASHGLS] = ACTIONS(4469), - [anon_sym_BSLASHglspl] = ACTIONS(4469), - [anon_sym_BSLASHGlspl] = ACTIONS(4469), - [anon_sym_BSLASHGLSpl] = ACTIONS(4469), - [anon_sym_BSLASHglsdisp] = ACTIONS(4469), - [anon_sym_BSLASHglslink] = ACTIONS(4469), - [anon_sym_BSLASHglstext] = ACTIONS(4469), - [anon_sym_BSLASHGlstext] = ACTIONS(4469), - [anon_sym_BSLASHGLStext] = ACTIONS(4469), - [anon_sym_BSLASHglsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4469), - [anon_sym_BSLASHglsplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSplural] = ACTIONS(4469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHglsname] = ACTIONS(4469), - [anon_sym_BSLASHGlsname] = ACTIONS(4469), - [anon_sym_BSLASHGLSname] = ACTIONS(4469), - [anon_sym_BSLASHglssymbol] = ACTIONS(4469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4469), - [anon_sym_BSLASHglsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4469), - [anon_sym_BSLASHglsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4469), - [anon_sym_BSLASHglsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4469), - [anon_sym_BSLASHglsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4469), - [anon_sym_BSLASHglsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4469), - [anon_sym_BSLASHnewacronym] = ACTIONS(4469), - [anon_sym_BSLASHacrshort] = ACTIONS(4469), - [anon_sym_BSLASHAcrshort] = ACTIONS(4469), - [anon_sym_BSLASHACRshort] = ACTIONS(4469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4469), - [anon_sym_BSLASHacrlong] = ACTIONS(4469), - [anon_sym_BSLASHAcrlong] = ACTIONS(4469), - [anon_sym_BSLASHACRlong] = ACTIONS(4469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4469), - [anon_sym_BSLASHacrfull] = ACTIONS(4469), - [anon_sym_BSLASHAcrfull] = ACTIONS(4469), - [anon_sym_BSLASHACRfull] = ACTIONS(4469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4469), - [anon_sym_BSLASHacs] = ACTIONS(4469), - [anon_sym_BSLASHAcs] = ACTIONS(4469), - [anon_sym_BSLASHacsp] = ACTIONS(4469), - [anon_sym_BSLASHAcsp] = ACTIONS(4469), - [anon_sym_BSLASHacl] = ACTIONS(4469), - [anon_sym_BSLASHAcl] = ACTIONS(4469), - [anon_sym_BSLASHaclp] = ACTIONS(4469), - [anon_sym_BSLASHAclp] = ACTIONS(4469), - [anon_sym_BSLASHacf] = ACTIONS(4469), - [anon_sym_BSLASHAcf] = ACTIONS(4469), - [anon_sym_BSLASHacfp] = ACTIONS(4469), - [anon_sym_BSLASHAcfp] = ACTIONS(4469), - [anon_sym_BSLASHac] = ACTIONS(4469), - [anon_sym_BSLASHAc] = ACTIONS(4469), - [anon_sym_BSLASHacp] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4469), - [anon_sym_BSLASHcolor] = ACTIONS(4469), - [anon_sym_BSLASHcolorbox] = ACTIONS(4469), - [anon_sym_BSLASHtextcolor] = ACTIONS(4469), - [anon_sym_BSLASHpagecolor] = ACTIONS(4469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4469), - }, - [1290] = { - [sym_curly_group] = STATE(1486), - [sym_mixed_group] = STATE(1486), - [aux_sym_generic_command_repeat1] = STATE(1292), - [sym_command_name] = ACTIONS(4449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(4447), - [anon_sym_LBRACK] = ACTIONS(5421), - [anon_sym_RBRACK] = ACTIONS(4447), - [anon_sym_COMMA] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4447), - [sym_word] = ACTIONS(4449), - [sym_placeholder] = ACTIONS(4447), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [anon_sym_SLASH] = ACTIONS(4449), - [anon_sym_CARET] = ACTIONS(4449), - [anon_sym__] = ACTIONS(4449), - [anon_sym_LT] = ACTIONS(4449), - [anon_sym_GT] = ACTIONS(4449), - [anon_sym_BANG] = ACTIONS(4449), - [anon_sym_PIPE] = ACTIONS(4449), - [anon_sym_COLON] = ACTIONS(4449), - [anon_sym_SQUOTE] = ACTIONS(4449), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4447), - [anon_sym_DOLLAR] = ACTIONS(4449), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4447), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4447), - [anon_sym_BSLASHusepackage] = ACTIONS(4449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4449), - [anon_sym_BSLASHinclude] = ACTIONS(4449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4449), - [anon_sym_BSLASHinput] = ACTIONS(4449), - [anon_sym_BSLASHsubfile] = ACTIONS(4449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4449), - [anon_sym_BSLASHbibliography] = ACTIONS(4449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4449), - [anon_sym_BSLASHincludesvg] = ACTIONS(4449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4449), - [anon_sym_BSLASHimport] = ACTIONS(4449), - [anon_sym_BSLASHsubimport] = ACTIONS(4449), - [anon_sym_BSLASHinputfrom] = ACTIONS(4449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4449), - [anon_sym_BSLASHincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHcaption] = ACTIONS(4449), - [anon_sym_BSLASHcite] = ACTIONS(4449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCite] = ACTIONS(4449), - [anon_sym_BSLASHnocite] = ACTIONS(4449), - [anon_sym_BSLASHcitet] = ACTIONS(4449), - [anon_sym_BSLASHcitep] = ACTIONS(4449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteyear] = ACTIONS(4449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitedate] = ACTIONS(4449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteurl] = ACTIONS(4449), - [anon_sym_BSLASHfullcite] = ACTIONS(4449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4449), - [anon_sym_BSLASHcitealt] = ACTIONS(4449), - [anon_sym_BSLASHcitealp] = ACTIONS(4449), - [anon_sym_BSLASHcitetext] = ACTIONS(4449), - [anon_sym_BSLASHparencite] = ACTIONS(4449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHParencite] = ACTIONS(4449), - [anon_sym_BSLASHfootcite] = ACTIONS(4449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4449), - [anon_sym_BSLASHtextcite] = ACTIONS(4449), - [anon_sym_BSLASHTextcite] = ACTIONS(4449), - [anon_sym_BSLASHsmartcite] = ACTIONS(4449), - [anon_sym_BSLASHSmartcite] = ACTIONS(4449), - [anon_sym_BSLASHsupercite] = ACTIONS(4449), - [anon_sym_BSLASHautocite] = ACTIONS(4449), - [anon_sym_BSLASHAutocite] = ACTIONS(4449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHvolcite] = ACTIONS(4449), - [anon_sym_BSLASHVolcite] = ACTIONS(4449), - [anon_sym_BSLASHpvolcite] = ACTIONS(4449), - [anon_sym_BSLASHPvolcite] = ACTIONS(4449), - [anon_sym_BSLASHfvolcite] = ACTIONS(4449), - [anon_sym_BSLASHftvolcite] = ACTIONS(4449), - [anon_sym_BSLASHsvolcite] = ACTIONS(4449), - [anon_sym_BSLASHSvolcite] = ACTIONS(4449), - [anon_sym_BSLASHtvolcite] = ACTIONS(4449), - [anon_sym_BSLASHTvolcite] = ACTIONS(4449), - [anon_sym_BSLASHavolcite] = ACTIONS(4449), - [anon_sym_BSLASHAvolcite] = ACTIONS(4449), - [anon_sym_BSLASHnotecite] = ACTIONS(4449), - [anon_sym_BSLASHNotecite] = ACTIONS(4449), - [anon_sym_BSLASHpnotecite] = ACTIONS(4449), - [anon_sym_BSLASHPnotecite] = ACTIONS(4449), - [anon_sym_BSLASHfnotecite] = ACTIONS(4449), - [anon_sym_BSLASHlabel] = ACTIONS(4449), - [anon_sym_BSLASHref] = ACTIONS(4449), - [anon_sym_BSLASHeqref] = ACTIONS(4449), - [anon_sym_BSLASHvref] = ACTIONS(4449), - [anon_sym_BSLASHVref] = ACTIONS(4449), - [anon_sym_BSLASHautoref] = ACTIONS(4449), - [anon_sym_BSLASHpageref] = ACTIONS(4449), - [anon_sym_BSLASHcref] = ACTIONS(4449), - [anon_sym_BSLASHCref] = ACTIONS(4449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnameCref] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHlabelcref] = ACTIONS(4449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnewlabel] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4447), - [anon_sym_BSLASHdef] = ACTIONS(4449), - [anon_sym_BSLASHlet] = ACTIONS(4449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4449), - [anon_sym_BSLASHgls] = ACTIONS(4449), - [anon_sym_BSLASHGls] = ACTIONS(4449), - [anon_sym_BSLASHGLS] = ACTIONS(4449), - [anon_sym_BSLASHglspl] = ACTIONS(4449), - [anon_sym_BSLASHGlspl] = ACTIONS(4449), - [anon_sym_BSLASHGLSpl] = ACTIONS(4449), - [anon_sym_BSLASHglsdisp] = ACTIONS(4449), - [anon_sym_BSLASHglslink] = ACTIONS(4449), - [anon_sym_BSLASHglstext] = ACTIONS(4449), - [anon_sym_BSLASHGlstext] = ACTIONS(4449), - [anon_sym_BSLASHGLStext] = ACTIONS(4449), - [anon_sym_BSLASHglsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4449), - [anon_sym_BSLASHglsplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSplural] = ACTIONS(4449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHglsname] = ACTIONS(4449), - [anon_sym_BSLASHGlsname] = ACTIONS(4449), - [anon_sym_BSLASHGLSname] = ACTIONS(4449), - [anon_sym_BSLASHglssymbol] = ACTIONS(4449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4449), - [anon_sym_BSLASHglsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4449), - [anon_sym_BSLASHglsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4449), - [anon_sym_BSLASHglsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4449), - [anon_sym_BSLASHglsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4449), - [anon_sym_BSLASHglsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4449), - [anon_sym_BSLASHnewacronym] = ACTIONS(4449), - [anon_sym_BSLASHacrshort] = ACTIONS(4449), - [anon_sym_BSLASHAcrshort] = ACTIONS(4449), - [anon_sym_BSLASHACRshort] = ACTIONS(4449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4449), - [anon_sym_BSLASHacrlong] = ACTIONS(4449), - [anon_sym_BSLASHAcrlong] = ACTIONS(4449), - [anon_sym_BSLASHACRlong] = ACTIONS(4449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4449), - [anon_sym_BSLASHacrfull] = ACTIONS(4449), - [anon_sym_BSLASHAcrfull] = ACTIONS(4449), - [anon_sym_BSLASHACRfull] = ACTIONS(4449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4449), - [anon_sym_BSLASHacs] = ACTIONS(4449), - [anon_sym_BSLASHAcs] = ACTIONS(4449), - [anon_sym_BSLASHacsp] = ACTIONS(4449), - [anon_sym_BSLASHAcsp] = ACTIONS(4449), - [anon_sym_BSLASHacl] = ACTIONS(4449), - [anon_sym_BSLASHAcl] = ACTIONS(4449), - [anon_sym_BSLASHaclp] = ACTIONS(4449), - [anon_sym_BSLASHAclp] = ACTIONS(4449), - [anon_sym_BSLASHacf] = ACTIONS(4449), - [anon_sym_BSLASHAcf] = ACTIONS(4449), - [anon_sym_BSLASHacfp] = ACTIONS(4449), - [anon_sym_BSLASHAcfp] = ACTIONS(4449), - [anon_sym_BSLASHac] = ACTIONS(4449), - [anon_sym_BSLASHAc] = ACTIONS(4449), - [anon_sym_BSLASHacp] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4449), - [anon_sym_BSLASHcolor] = ACTIONS(4449), - [anon_sym_BSLASHcolorbox] = ACTIONS(4449), - [anon_sym_BSLASHtextcolor] = ACTIONS(4449), - [anon_sym_BSLASHpagecolor] = ACTIONS(4449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4449), - }, - [1291] = { - [sym_curly_group] = STATE(1296), - [sym_brack_group_text] = STATE(2132), - [sym_command_name] = ACTIONS(4749), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(4749), - [sym_placeholder] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4749), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_CARET] = ACTIONS(4749), - [anon_sym__] = ACTIONS(4749), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_COLON] = ACTIONS(4749), - [anon_sym_SQUOTE] = ACTIONS(4749), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4747), - [anon_sym_DOLLAR] = ACTIONS(4749), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4747), - [anon_sym_BSLASHbegin] = ACTIONS(4749), - [anon_sym_BSLASHusepackage] = ACTIONS(4749), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4749), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4749), - [anon_sym_BSLASHinclude] = ACTIONS(4749), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4749), - [anon_sym_BSLASHinput] = ACTIONS(4749), - [anon_sym_BSLASHsubfile] = ACTIONS(4749), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4749), - [anon_sym_BSLASHbibliography] = ACTIONS(4749), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4749), - [anon_sym_BSLASHincludesvg] = ACTIONS(4749), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4749), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4749), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4749), - [anon_sym_BSLASHimport] = ACTIONS(4749), - [anon_sym_BSLASHsubimport] = ACTIONS(4749), - [anon_sym_BSLASHinputfrom] = ACTIONS(4749), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4749), - [anon_sym_BSLASHincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHcaption] = ACTIONS(4749), - [anon_sym_BSLASHcite] = ACTIONS(4749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCite] = ACTIONS(4749), - [anon_sym_BSLASHnocite] = ACTIONS(4749), - [anon_sym_BSLASHcitet] = ACTIONS(4749), - [anon_sym_BSLASHcitep] = ACTIONS(4749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteauthor] = ACTIONS(4749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitetitle] = ACTIONS(4749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteyear] = ACTIONS(4749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitedate] = ACTIONS(4749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteurl] = ACTIONS(4749), - [anon_sym_BSLASHfullcite] = ACTIONS(4749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4749), - [anon_sym_BSLASHcitealt] = ACTIONS(4749), - [anon_sym_BSLASHcitealp] = ACTIONS(4749), - [anon_sym_BSLASHcitetext] = ACTIONS(4749), - [anon_sym_BSLASHparencite] = ACTIONS(4749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHParencite] = ACTIONS(4749), - [anon_sym_BSLASHfootcite] = ACTIONS(4749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4749), - [anon_sym_BSLASHtextcite] = ACTIONS(4749), - [anon_sym_BSLASHTextcite] = ACTIONS(4749), - [anon_sym_BSLASHsmartcite] = ACTIONS(4749), - [anon_sym_BSLASHSmartcite] = ACTIONS(4749), - [anon_sym_BSLASHsupercite] = ACTIONS(4749), - [anon_sym_BSLASHautocite] = ACTIONS(4749), - [anon_sym_BSLASHAutocite] = ACTIONS(4749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHvolcite] = ACTIONS(4749), - [anon_sym_BSLASHVolcite] = ACTIONS(4749), - [anon_sym_BSLASHpvolcite] = ACTIONS(4749), - [anon_sym_BSLASHPvolcite] = ACTIONS(4749), - [anon_sym_BSLASHfvolcite] = ACTIONS(4749), - [anon_sym_BSLASHftvolcite] = ACTIONS(4749), - [anon_sym_BSLASHsvolcite] = ACTIONS(4749), - [anon_sym_BSLASHSvolcite] = ACTIONS(4749), - [anon_sym_BSLASHtvolcite] = ACTIONS(4749), - [anon_sym_BSLASHTvolcite] = ACTIONS(4749), - [anon_sym_BSLASHavolcite] = ACTIONS(4749), - [anon_sym_BSLASHAvolcite] = ACTIONS(4749), - [anon_sym_BSLASHnotecite] = ACTIONS(4749), - [anon_sym_BSLASHNotecite] = ACTIONS(4749), - [anon_sym_BSLASHpnotecite] = ACTIONS(4749), - [anon_sym_BSLASHPnotecite] = ACTIONS(4749), - [anon_sym_BSLASHfnotecite] = ACTIONS(4749), - [anon_sym_BSLASHlabel] = ACTIONS(4749), - [anon_sym_BSLASHref] = ACTIONS(4749), - [anon_sym_BSLASHeqref] = ACTIONS(4749), - [anon_sym_BSLASHvref] = ACTIONS(4749), - [anon_sym_BSLASHVref] = ACTIONS(4749), - [anon_sym_BSLASHautoref] = ACTIONS(4749), - [anon_sym_BSLASHpageref] = ACTIONS(4749), - [anon_sym_BSLASHcref] = ACTIONS(4749), - [anon_sym_BSLASHCref] = ACTIONS(4749), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnameCref] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHlabelcref] = ACTIONS(4749), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCrefrange] = ACTIONS(4749), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnewlabel] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4749), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4749), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4749), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4747), - [anon_sym_BSLASHdef] = ACTIONS(4749), - [anon_sym_BSLASHlet] = ACTIONS(4749), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4749), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4749), - [anon_sym_BSLASHgls] = ACTIONS(4749), - [anon_sym_BSLASHGls] = ACTIONS(4749), - [anon_sym_BSLASHGLS] = ACTIONS(4749), - [anon_sym_BSLASHglspl] = ACTIONS(4749), - [anon_sym_BSLASHGlspl] = ACTIONS(4749), - [anon_sym_BSLASHGLSpl] = ACTIONS(4749), - [anon_sym_BSLASHglsdisp] = ACTIONS(4749), - [anon_sym_BSLASHglslink] = ACTIONS(4749), - [anon_sym_BSLASHglstext] = ACTIONS(4749), - [anon_sym_BSLASHGlstext] = ACTIONS(4749), - [anon_sym_BSLASHGLStext] = ACTIONS(4749), - [anon_sym_BSLASHglsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4749), - [anon_sym_BSLASHglsplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSplural] = ACTIONS(4749), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHglsname] = ACTIONS(4749), - [anon_sym_BSLASHGlsname] = ACTIONS(4749), - [anon_sym_BSLASHGLSname] = ACTIONS(4749), - [anon_sym_BSLASHglssymbol] = ACTIONS(4749), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4749), - [anon_sym_BSLASHglsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4749), - [anon_sym_BSLASHglsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4749), - [anon_sym_BSLASHglsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4749), - [anon_sym_BSLASHglsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4749), - [anon_sym_BSLASHglsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4749), - [anon_sym_BSLASHnewacronym] = ACTIONS(4749), - [anon_sym_BSLASHacrshort] = ACTIONS(4749), - [anon_sym_BSLASHAcrshort] = ACTIONS(4749), - [anon_sym_BSLASHACRshort] = ACTIONS(4749), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4749), - [anon_sym_BSLASHacrlong] = ACTIONS(4749), - [anon_sym_BSLASHAcrlong] = ACTIONS(4749), - [anon_sym_BSLASHACRlong] = ACTIONS(4749), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4749), - [anon_sym_BSLASHacrfull] = ACTIONS(4749), - [anon_sym_BSLASHAcrfull] = ACTIONS(4749), - [anon_sym_BSLASHACRfull] = ACTIONS(4749), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4749), - [anon_sym_BSLASHacs] = ACTIONS(4749), - [anon_sym_BSLASHAcs] = ACTIONS(4749), - [anon_sym_BSLASHacsp] = ACTIONS(4749), - [anon_sym_BSLASHAcsp] = ACTIONS(4749), - [anon_sym_BSLASHacl] = ACTIONS(4749), - [anon_sym_BSLASHAcl] = ACTIONS(4749), - [anon_sym_BSLASHaclp] = ACTIONS(4749), - [anon_sym_BSLASHAclp] = ACTIONS(4749), - [anon_sym_BSLASHacf] = ACTIONS(4749), - [anon_sym_BSLASHAcf] = ACTIONS(4749), - [anon_sym_BSLASHacfp] = ACTIONS(4749), - [anon_sym_BSLASHAcfp] = ACTIONS(4749), - [anon_sym_BSLASHac] = ACTIONS(4749), - [anon_sym_BSLASHAc] = ACTIONS(4749), - [anon_sym_BSLASHacp] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4749), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4749), - [anon_sym_BSLASHcolor] = ACTIONS(4749), - [anon_sym_BSLASHcolorbox] = ACTIONS(4749), - [anon_sym_BSLASHtextcolor] = ACTIONS(4749), - [anon_sym_BSLASHpagecolor] = ACTIONS(4749), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4749), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4749), - }, - [1292] = { - [sym_curly_group] = STATE(1486), - [sym_mixed_group] = STATE(1486), - [aux_sym_generic_command_repeat1] = STATE(1295), - [sym_command_name] = ACTIONS(4465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4465), - [anon_sym_LPAREN] = ACTIONS(5421), - [anon_sym_RPAREN] = ACTIONS(4463), - [anon_sym_LBRACK] = ACTIONS(5421), - [anon_sym_RBRACK] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4463), - [sym_word] = ACTIONS(4465), - [sym_placeholder] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_CARET] = ACTIONS(4465), - [anon_sym__] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_PIPE] = ACTIONS(4465), - [anon_sym_COLON] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4465), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4463), - [anon_sym_DOLLAR] = ACTIONS(4465), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4463), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4463), - [anon_sym_BSLASHusepackage] = ACTIONS(4465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4465), - [anon_sym_BSLASHinclude] = ACTIONS(4465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4465), - [anon_sym_BSLASHinput] = ACTIONS(4465), - [anon_sym_BSLASHsubfile] = ACTIONS(4465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4465), - [anon_sym_BSLASHbibliography] = ACTIONS(4465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4465), - [anon_sym_BSLASHincludesvg] = ACTIONS(4465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4465), - [anon_sym_BSLASHimport] = ACTIONS(4465), - [anon_sym_BSLASHsubimport] = ACTIONS(4465), - [anon_sym_BSLASHinputfrom] = ACTIONS(4465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4465), - [anon_sym_BSLASHincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHcaption] = ACTIONS(4465), - [anon_sym_BSLASHcite] = ACTIONS(4465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCite] = ACTIONS(4465), - [anon_sym_BSLASHnocite] = ACTIONS(4465), - [anon_sym_BSLASHcitet] = ACTIONS(4465), - [anon_sym_BSLASHcitep] = ACTIONS(4465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteauthor] = ACTIONS(4465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitetitle] = ACTIONS(4465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteyear] = ACTIONS(4465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitedate] = ACTIONS(4465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteurl] = ACTIONS(4465), - [anon_sym_BSLASHfullcite] = ACTIONS(4465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4465), - [anon_sym_BSLASHcitealt] = ACTIONS(4465), - [anon_sym_BSLASHcitealp] = ACTIONS(4465), - [anon_sym_BSLASHcitetext] = ACTIONS(4465), - [anon_sym_BSLASHparencite] = ACTIONS(4465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHParencite] = ACTIONS(4465), - [anon_sym_BSLASHfootcite] = ACTIONS(4465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4465), - [anon_sym_BSLASHtextcite] = ACTIONS(4465), - [anon_sym_BSLASHTextcite] = ACTIONS(4465), - [anon_sym_BSLASHsmartcite] = ACTIONS(4465), - [anon_sym_BSLASHSmartcite] = ACTIONS(4465), - [anon_sym_BSLASHsupercite] = ACTIONS(4465), - [anon_sym_BSLASHautocite] = ACTIONS(4465), - [anon_sym_BSLASHAutocite] = ACTIONS(4465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHvolcite] = ACTIONS(4465), - [anon_sym_BSLASHVolcite] = ACTIONS(4465), - [anon_sym_BSLASHpvolcite] = ACTIONS(4465), - [anon_sym_BSLASHPvolcite] = ACTIONS(4465), - [anon_sym_BSLASHfvolcite] = ACTIONS(4465), - [anon_sym_BSLASHftvolcite] = ACTIONS(4465), - [anon_sym_BSLASHsvolcite] = ACTIONS(4465), - [anon_sym_BSLASHSvolcite] = ACTIONS(4465), - [anon_sym_BSLASHtvolcite] = ACTIONS(4465), - [anon_sym_BSLASHTvolcite] = ACTIONS(4465), - [anon_sym_BSLASHavolcite] = ACTIONS(4465), - [anon_sym_BSLASHAvolcite] = ACTIONS(4465), - [anon_sym_BSLASHnotecite] = ACTIONS(4465), - [anon_sym_BSLASHNotecite] = ACTIONS(4465), - [anon_sym_BSLASHpnotecite] = ACTIONS(4465), - [anon_sym_BSLASHPnotecite] = ACTIONS(4465), - [anon_sym_BSLASHfnotecite] = ACTIONS(4465), - [anon_sym_BSLASHlabel] = ACTIONS(4465), - [anon_sym_BSLASHref] = ACTIONS(4465), - [anon_sym_BSLASHeqref] = ACTIONS(4465), - [anon_sym_BSLASHvref] = ACTIONS(4465), - [anon_sym_BSLASHVref] = ACTIONS(4465), - [anon_sym_BSLASHautoref] = ACTIONS(4465), - [anon_sym_BSLASHpageref] = ACTIONS(4465), - [anon_sym_BSLASHcref] = ACTIONS(4465), - [anon_sym_BSLASHCref] = ACTIONS(4465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnameCref] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHlabelcref] = ACTIONS(4465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCrefrange] = ACTIONS(4465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnewlabel] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4463), - [anon_sym_BSLASHdef] = ACTIONS(4465), - [anon_sym_BSLASHlet] = ACTIONS(4465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4465), - [anon_sym_BSLASHgls] = ACTIONS(4465), - [anon_sym_BSLASHGls] = ACTIONS(4465), - [anon_sym_BSLASHGLS] = ACTIONS(4465), - [anon_sym_BSLASHglspl] = ACTIONS(4465), - [anon_sym_BSLASHGlspl] = ACTIONS(4465), - [anon_sym_BSLASHGLSpl] = ACTIONS(4465), - [anon_sym_BSLASHglsdisp] = ACTIONS(4465), - [anon_sym_BSLASHglslink] = ACTIONS(4465), - [anon_sym_BSLASHglstext] = ACTIONS(4465), - [anon_sym_BSLASHGlstext] = ACTIONS(4465), - [anon_sym_BSLASHGLStext] = ACTIONS(4465), - [anon_sym_BSLASHglsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4465), - [anon_sym_BSLASHglsplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSplural] = ACTIONS(4465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHglsname] = ACTIONS(4465), - [anon_sym_BSLASHGlsname] = ACTIONS(4465), - [anon_sym_BSLASHGLSname] = ACTIONS(4465), - [anon_sym_BSLASHglssymbol] = ACTIONS(4465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4465), - [anon_sym_BSLASHglsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4465), - [anon_sym_BSLASHglsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4465), - [anon_sym_BSLASHglsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4465), - [anon_sym_BSLASHglsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4465), - [anon_sym_BSLASHglsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4465), - [anon_sym_BSLASHnewacronym] = ACTIONS(4465), - [anon_sym_BSLASHacrshort] = ACTIONS(4465), - [anon_sym_BSLASHAcrshort] = ACTIONS(4465), - [anon_sym_BSLASHACRshort] = ACTIONS(4465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4465), - [anon_sym_BSLASHacrlong] = ACTIONS(4465), - [anon_sym_BSLASHAcrlong] = ACTIONS(4465), - [anon_sym_BSLASHACRlong] = ACTIONS(4465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4465), - [anon_sym_BSLASHacrfull] = ACTIONS(4465), - [anon_sym_BSLASHAcrfull] = ACTIONS(4465), - [anon_sym_BSLASHACRfull] = ACTIONS(4465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4465), - [anon_sym_BSLASHacs] = ACTIONS(4465), - [anon_sym_BSLASHAcs] = ACTIONS(4465), - [anon_sym_BSLASHacsp] = ACTIONS(4465), - [anon_sym_BSLASHAcsp] = ACTIONS(4465), - [anon_sym_BSLASHacl] = ACTIONS(4465), - [anon_sym_BSLASHAcl] = ACTIONS(4465), - [anon_sym_BSLASHaclp] = ACTIONS(4465), - [anon_sym_BSLASHAclp] = ACTIONS(4465), - [anon_sym_BSLASHacf] = ACTIONS(4465), - [anon_sym_BSLASHAcf] = ACTIONS(4465), - [anon_sym_BSLASHacfp] = ACTIONS(4465), - [anon_sym_BSLASHAcfp] = ACTIONS(4465), - [anon_sym_BSLASHac] = ACTIONS(4465), - [anon_sym_BSLASHAc] = ACTIONS(4465), - [anon_sym_BSLASHacp] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4465), - [anon_sym_BSLASHcolor] = ACTIONS(4465), - [anon_sym_BSLASHcolorbox] = ACTIONS(4465), - [anon_sym_BSLASHtextcolor] = ACTIONS(4465), - [anon_sym_BSLASHpagecolor] = ACTIONS(4465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4465), - }, - [1293] = { - [sym_curly_group] = STATE(1297), - [sym_brack_group_text] = STATE(2141), - [sym_command_name] = ACTIONS(4587), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4585), - [anon_sym_RPAREN] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4585), - [anon_sym_COMMA] = ACTIONS(4585), - [anon_sym_EQ] = ACTIONS(4585), - [anon_sym_LBRACE] = ACTIONS(3223), - [sym_word] = ACTIONS(4587), - [sym_placeholder] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_CARET] = ACTIONS(4587), - [anon_sym__] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4585), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4585), - [anon_sym_BSLASHbegin] = ACTIONS(4587), - [anon_sym_BSLASHusepackage] = ACTIONS(4587), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4587), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4587), - [anon_sym_BSLASHinclude] = ACTIONS(4587), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4587), - [anon_sym_BSLASHinput] = ACTIONS(4587), - [anon_sym_BSLASHsubfile] = ACTIONS(4587), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4587), - [anon_sym_BSLASHbibliography] = ACTIONS(4587), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4587), - [anon_sym_BSLASHincludesvg] = ACTIONS(4587), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4587), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4587), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4587), - [anon_sym_BSLASHimport] = ACTIONS(4587), - [anon_sym_BSLASHsubimport] = ACTIONS(4587), - [anon_sym_BSLASHinputfrom] = ACTIONS(4587), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4587), - [anon_sym_BSLASHincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHcaption] = ACTIONS(4587), - [anon_sym_BSLASHcite] = ACTIONS(4587), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCite] = ACTIONS(4587), - [anon_sym_BSLASHnocite] = ACTIONS(4587), - [anon_sym_BSLASHcitet] = ACTIONS(4587), - [anon_sym_BSLASHcitep] = ACTIONS(4587), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteauthor] = ACTIONS(4587), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4587), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitetitle] = ACTIONS(4587), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteyear] = ACTIONS(4587), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitedate] = ACTIONS(4587), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteurl] = ACTIONS(4587), - [anon_sym_BSLASHfullcite] = ACTIONS(4587), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4587), - [anon_sym_BSLASHcitealt] = ACTIONS(4587), - [anon_sym_BSLASHcitealp] = ACTIONS(4587), - [anon_sym_BSLASHcitetext] = ACTIONS(4587), - [anon_sym_BSLASHparencite] = ACTIONS(4587), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHParencite] = ACTIONS(4587), - [anon_sym_BSLASHfootcite] = ACTIONS(4587), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4587), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4587), - [anon_sym_BSLASHtextcite] = ACTIONS(4587), - [anon_sym_BSLASHTextcite] = ACTIONS(4587), - [anon_sym_BSLASHsmartcite] = ACTIONS(4587), - [anon_sym_BSLASHSmartcite] = ACTIONS(4587), - [anon_sym_BSLASHsupercite] = ACTIONS(4587), - [anon_sym_BSLASHautocite] = ACTIONS(4587), - [anon_sym_BSLASHAutocite] = ACTIONS(4587), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHvolcite] = ACTIONS(4587), - [anon_sym_BSLASHVolcite] = ACTIONS(4587), - [anon_sym_BSLASHpvolcite] = ACTIONS(4587), - [anon_sym_BSLASHPvolcite] = ACTIONS(4587), - [anon_sym_BSLASHfvolcite] = ACTIONS(4587), - [anon_sym_BSLASHftvolcite] = ACTIONS(4587), - [anon_sym_BSLASHsvolcite] = ACTIONS(4587), - [anon_sym_BSLASHSvolcite] = ACTIONS(4587), - [anon_sym_BSLASHtvolcite] = ACTIONS(4587), - [anon_sym_BSLASHTvolcite] = ACTIONS(4587), - [anon_sym_BSLASHavolcite] = ACTIONS(4587), - [anon_sym_BSLASHAvolcite] = ACTIONS(4587), - [anon_sym_BSLASHnotecite] = ACTIONS(4587), - [anon_sym_BSLASHNotecite] = ACTIONS(4587), - [anon_sym_BSLASHpnotecite] = ACTIONS(4587), - [anon_sym_BSLASHPnotecite] = ACTIONS(4587), - [anon_sym_BSLASHfnotecite] = ACTIONS(4587), - [anon_sym_BSLASHlabel] = ACTIONS(4587), - [anon_sym_BSLASHref] = ACTIONS(4587), - [anon_sym_BSLASHeqref] = ACTIONS(4587), - [anon_sym_BSLASHvref] = ACTIONS(4587), - [anon_sym_BSLASHVref] = ACTIONS(4587), - [anon_sym_BSLASHautoref] = ACTIONS(4587), - [anon_sym_BSLASHpageref] = ACTIONS(4587), - [anon_sym_BSLASHcref] = ACTIONS(4587), - [anon_sym_BSLASHCref] = ACTIONS(4587), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnameCref] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHlabelcref] = ACTIONS(4587), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCrefrange] = ACTIONS(4587), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnewlabel] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4587), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4587), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4587), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4585), - [anon_sym_BSLASHdef] = ACTIONS(4587), - [anon_sym_BSLASHlet] = ACTIONS(4587), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4587), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4587), - [anon_sym_BSLASHGls] = ACTIONS(4587), - [anon_sym_BSLASHGLS] = ACTIONS(4587), - [anon_sym_BSLASHglspl] = ACTIONS(4587), - [anon_sym_BSLASHGlspl] = ACTIONS(4587), - [anon_sym_BSLASHGLSpl] = ACTIONS(4587), - [anon_sym_BSLASHglsdisp] = ACTIONS(4587), - [anon_sym_BSLASHglslink] = ACTIONS(4587), - [anon_sym_BSLASHglstext] = ACTIONS(4587), - [anon_sym_BSLASHGlstext] = ACTIONS(4587), - [anon_sym_BSLASHGLStext] = ACTIONS(4587), - [anon_sym_BSLASHglsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4587), - [anon_sym_BSLASHglsplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSplural] = ACTIONS(4587), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHglsname] = ACTIONS(4587), - [anon_sym_BSLASHGlsname] = ACTIONS(4587), - [anon_sym_BSLASHGLSname] = ACTIONS(4587), - [anon_sym_BSLASHglssymbol] = ACTIONS(4587), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4587), - [anon_sym_BSLASHglsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4587), - [anon_sym_BSLASHglsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4587), - [anon_sym_BSLASHglsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4587), - [anon_sym_BSLASHglsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4587), - [anon_sym_BSLASHglsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4587), - [anon_sym_BSLASHnewacronym] = ACTIONS(4587), - [anon_sym_BSLASHacrshort] = ACTIONS(4587), - [anon_sym_BSLASHAcrshort] = ACTIONS(4587), - [anon_sym_BSLASHACRshort] = ACTIONS(4587), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4587), - [anon_sym_BSLASHacrlong] = ACTIONS(4587), - [anon_sym_BSLASHAcrlong] = ACTIONS(4587), - [anon_sym_BSLASHACRlong] = ACTIONS(4587), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4587), - [anon_sym_BSLASHacrfull] = ACTIONS(4587), - [anon_sym_BSLASHAcrfull] = ACTIONS(4587), - [anon_sym_BSLASHACRfull] = ACTIONS(4587), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4587), - [anon_sym_BSLASHacs] = ACTIONS(4587), - [anon_sym_BSLASHAcs] = ACTIONS(4587), - [anon_sym_BSLASHacsp] = ACTIONS(4587), - [anon_sym_BSLASHAcsp] = ACTIONS(4587), - [anon_sym_BSLASHacl] = ACTIONS(4587), - [anon_sym_BSLASHAcl] = ACTIONS(4587), - [anon_sym_BSLASHaclp] = ACTIONS(4587), - [anon_sym_BSLASHAclp] = ACTIONS(4587), - [anon_sym_BSLASHacf] = ACTIONS(4587), - [anon_sym_BSLASHAcf] = ACTIONS(4587), - [anon_sym_BSLASHacfp] = ACTIONS(4587), - [anon_sym_BSLASHAcfp] = ACTIONS(4587), - [anon_sym_BSLASHac] = ACTIONS(4587), - [anon_sym_BSLASHAc] = ACTIONS(4587), - [anon_sym_BSLASHacp] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4587), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4587), - [anon_sym_BSLASHcolor] = ACTIONS(4587), - [anon_sym_BSLASHcolorbox] = ACTIONS(4587), - [anon_sym_BSLASHtextcolor] = ACTIONS(4587), - [anon_sym_BSLASHpagecolor] = ACTIONS(4587), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4587), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4587), - }, - [1294] = { - [sym_command_name] = ACTIONS(4697), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4697), - [anon_sym_BSLASHfi] = ACTIONS(5423), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_RPAREN] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_RBRACK] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4695), - [sym_word] = ACTIONS(4697), - [sym_placeholder] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_CARET] = ACTIONS(4697), - [anon_sym__] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4697), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4695), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4695), - [anon_sym_BSLASHbegin] = ACTIONS(4697), - [anon_sym_BSLASHusepackage] = ACTIONS(4697), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4697), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4697), - [anon_sym_BSLASHinclude] = ACTIONS(4697), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4697), - [anon_sym_BSLASHinput] = ACTIONS(4697), - [anon_sym_BSLASHsubfile] = ACTIONS(4697), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4697), - [anon_sym_BSLASHbibliography] = ACTIONS(4697), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4697), - [anon_sym_BSLASHincludesvg] = ACTIONS(4697), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4697), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4697), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4697), - [anon_sym_BSLASHimport] = ACTIONS(4697), - [anon_sym_BSLASHsubimport] = ACTIONS(4697), - [anon_sym_BSLASHinputfrom] = ACTIONS(4697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4697), - [anon_sym_BSLASHincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHcaption] = ACTIONS(4697), - [anon_sym_BSLASHcite] = ACTIONS(4697), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCite] = ACTIONS(4697), - [anon_sym_BSLASHnocite] = ACTIONS(4697), - [anon_sym_BSLASHcitet] = ACTIONS(4697), - [anon_sym_BSLASHcitep] = ACTIONS(4697), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteyear] = ACTIONS(4697), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitedate] = ACTIONS(4697), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteurl] = ACTIONS(4697), - [anon_sym_BSLASHfullcite] = ACTIONS(4697), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4697), - [anon_sym_BSLASHcitealt] = ACTIONS(4697), - [anon_sym_BSLASHcitealp] = ACTIONS(4697), - [anon_sym_BSLASHcitetext] = ACTIONS(4697), - [anon_sym_BSLASHparencite] = ACTIONS(4697), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHParencite] = ACTIONS(4697), - [anon_sym_BSLASHfootcite] = ACTIONS(4697), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4697), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4697), - [anon_sym_BSLASHtextcite] = ACTIONS(4697), - [anon_sym_BSLASHTextcite] = ACTIONS(4697), - [anon_sym_BSLASHsmartcite] = ACTIONS(4697), - [anon_sym_BSLASHSmartcite] = ACTIONS(4697), - [anon_sym_BSLASHsupercite] = ACTIONS(4697), - [anon_sym_BSLASHautocite] = ACTIONS(4697), - [anon_sym_BSLASHAutocite] = ACTIONS(4697), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHvolcite] = ACTIONS(4697), - [anon_sym_BSLASHVolcite] = ACTIONS(4697), - [anon_sym_BSLASHpvolcite] = ACTIONS(4697), - [anon_sym_BSLASHPvolcite] = ACTIONS(4697), - [anon_sym_BSLASHfvolcite] = ACTIONS(4697), - [anon_sym_BSLASHftvolcite] = ACTIONS(4697), - [anon_sym_BSLASHsvolcite] = ACTIONS(4697), - [anon_sym_BSLASHSvolcite] = ACTIONS(4697), - [anon_sym_BSLASHtvolcite] = ACTIONS(4697), - [anon_sym_BSLASHTvolcite] = ACTIONS(4697), - [anon_sym_BSLASHavolcite] = ACTIONS(4697), - [anon_sym_BSLASHAvolcite] = ACTIONS(4697), - [anon_sym_BSLASHnotecite] = ACTIONS(4697), - [anon_sym_BSLASHNotecite] = ACTIONS(4697), - [anon_sym_BSLASHpnotecite] = ACTIONS(4697), - [anon_sym_BSLASHPnotecite] = ACTIONS(4697), - [anon_sym_BSLASHfnotecite] = ACTIONS(4697), - [anon_sym_BSLASHlabel] = ACTIONS(4697), - [anon_sym_BSLASHref] = ACTIONS(4697), - [anon_sym_BSLASHeqref] = ACTIONS(4697), - [anon_sym_BSLASHvref] = ACTIONS(4697), - [anon_sym_BSLASHVref] = ACTIONS(4697), - [anon_sym_BSLASHautoref] = ACTIONS(4697), - [anon_sym_BSLASHpageref] = ACTIONS(4697), - [anon_sym_BSLASHcref] = ACTIONS(4697), - [anon_sym_BSLASHCref] = ACTIONS(4697), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnameCref] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHlabelcref] = ACTIONS(4697), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnewlabel] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4695), - [anon_sym_BSLASHdef] = ACTIONS(4697), - [anon_sym_BSLASHlet] = ACTIONS(4697), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4697), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4697), - [anon_sym_BSLASHgls] = ACTIONS(4697), - [anon_sym_BSLASHGls] = ACTIONS(4697), - [anon_sym_BSLASHGLS] = ACTIONS(4697), - [anon_sym_BSLASHglspl] = ACTIONS(4697), - [anon_sym_BSLASHGlspl] = ACTIONS(4697), - [anon_sym_BSLASHGLSpl] = ACTIONS(4697), - [anon_sym_BSLASHglsdisp] = ACTIONS(4697), - [anon_sym_BSLASHglslink] = ACTIONS(4697), - [anon_sym_BSLASHglstext] = ACTIONS(4697), - [anon_sym_BSLASHGlstext] = ACTIONS(4697), - [anon_sym_BSLASHGLStext] = ACTIONS(4697), - [anon_sym_BSLASHglsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4697), - [anon_sym_BSLASHglsplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSplural] = ACTIONS(4697), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHglsname] = ACTIONS(4697), - [anon_sym_BSLASHGlsname] = ACTIONS(4697), - [anon_sym_BSLASHGLSname] = ACTIONS(4697), - [anon_sym_BSLASHglssymbol] = ACTIONS(4697), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4697), - [anon_sym_BSLASHglsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4697), - [anon_sym_BSLASHglsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4697), - [anon_sym_BSLASHglsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4697), - [anon_sym_BSLASHglsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4697), - [anon_sym_BSLASHglsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4697), - [anon_sym_BSLASHnewacronym] = ACTIONS(4697), - [anon_sym_BSLASHacrshort] = ACTIONS(4697), - [anon_sym_BSLASHAcrshort] = ACTIONS(4697), - [anon_sym_BSLASHACRshort] = ACTIONS(4697), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4697), - [anon_sym_BSLASHacrlong] = ACTIONS(4697), - [anon_sym_BSLASHAcrlong] = ACTIONS(4697), - [anon_sym_BSLASHACRlong] = ACTIONS(4697), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4697), - [anon_sym_BSLASHacrfull] = ACTIONS(4697), - [anon_sym_BSLASHAcrfull] = ACTIONS(4697), - [anon_sym_BSLASHACRfull] = ACTIONS(4697), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4697), - [anon_sym_BSLASHacs] = ACTIONS(4697), - [anon_sym_BSLASHAcs] = ACTIONS(4697), - [anon_sym_BSLASHacsp] = ACTIONS(4697), - [anon_sym_BSLASHAcsp] = ACTIONS(4697), - [anon_sym_BSLASHacl] = ACTIONS(4697), - [anon_sym_BSLASHAcl] = ACTIONS(4697), - [anon_sym_BSLASHaclp] = ACTIONS(4697), - [anon_sym_BSLASHAclp] = ACTIONS(4697), - [anon_sym_BSLASHacf] = ACTIONS(4697), - [anon_sym_BSLASHAcf] = ACTIONS(4697), - [anon_sym_BSLASHacfp] = ACTIONS(4697), - [anon_sym_BSLASHAcfp] = ACTIONS(4697), - [anon_sym_BSLASHac] = ACTIONS(4697), - [anon_sym_BSLASHAc] = ACTIONS(4697), - [anon_sym_BSLASHacp] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4697), - [anon_sym_BSLASHcolor] = ACTIONS(4697), - [anon_sym_BSLASHcolorbox] = ACTIONS(4697), - [anon_sym_BSLASHtextcolor] = ACTIONS(4697), - [anon_sym_BSLASHpagecolor] = ACTIONS(4697), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4697), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4697), - [sym__trivia_raw_fi] = ACTIONS(5425), - }, - [1295] = { - [sym_curly_group] = STATE(1486), - [sym_mixed_group] = STATE(1486), - [aux_sym_generic_command_repeat1] = STATE(1295), - [sym_command_name] = ACTIONS(4469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4469), - [anon_sym_LPAREN] = ACTIONS(5427), - [anon_sym_RPAREN] = ACTIONS(4467), - [anon_sym_LBRACK] = ACTIONS(5427), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(5430), - [anon_sym_RBRACE] = ACTIONS(4467), - [sym_word] = ACTIONS(4469), - [sym_placeholder] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_CARET] = ACTIONS(4469), - [anon_sym__] = ACTIONS(4469), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_PIPE] = ACTIONS(4469), - [anon_sym_COLON] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4469), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4467), - [anon_sym_DOLLAR] = ACTIONS(4469), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4467), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4467), - [anon_sym_BSLASHusepackage] = ACTIONS(4469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4469), - [anon_sym_BSLASHinclude] = ACTIONS(4469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4469), - [anon_sym_BSLASHinput] = ACTIONS(4469), - [anon_sym_BSLASHsubfile] = ACTIONS(4469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4469), - [anon_sym_BSLASHbibliography] = ACTIONS(4469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4469), - [anon_sym_BSLASHincludesvg] = ACTIONS(4469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4469), - [anon_sym_BSLASHimport] = ACTIONS(4469), - [anon_sym_BSLASHsubimport] = ACTIONS(4469), - [anon_sym_BSLASHinputfrom] = ACTIONS(4469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4469), - [anon_sym_BSLASHincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHcaption] = ACTIONS(4469), - [anon_sym_BSLASHcite] = ACTIONS(4469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCite] = ACTIONS(4469), - [anon_sym_BSLASHnocite] = ACTIONS(4469), - [anon_sym_BSLASHcitet] = ACTIONS(4469), - [anon_sym_BSLASHcitep] = ACTIONS(4469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteauthor] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitetitle] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteyear] = ACTIONS(4469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitedate] = ACTIONS(4469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteurl] = ACTIONS(4469), - [anon_sym_BSLASHfullcite] = ACTIONS(4469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4469), - [anon_sym_BSLASHcitealt] = ACTIONS(4469), - [anon_sym_BSLASHcitealp] = ACTIONS(4469), - [anon_sym_BSLASHcitetext] = ACTIONS(4469), - [anon_sym_BSLASHparencite] = ACTIONS(4469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHParencite] = ACTIONS(4469), - [anon_sym_BSLASHfootcite] = ACTIONS(4469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4469), - [anon_sym_BSLASHtextcite] = ACTIONS(4469), - [anon_sym_BSLASHTextcite] = ACTIONS(4469), - [anon_sym_BSLASHsmartcite] = ACTIONS(4469), - [anon_sym_BSLASHSmartcite] = ACTIONS(4469), - [anon_sym_BSLASHsupercite] = ACTIONS(4469), - [anon_sym_BSLASHautocite] = ACTIONS(4469), - [anon_sym_BSLASHAutocite] = ACTIONS(4469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHvolcite] = ACTIONS(4469), - [anon_sym_BSLASHVolcite] = ACTIONS(4469), - [anon_sym_BSLASHpvolcite] = ACTIONS(4469), - [anon_sym_BSLASHPvolcite] = ACTIONS(4469), - [anon_sym_BSLASHfvolcite] = ACTIONS(4469), - [anon_sym_BSLASHftvolcite] = ACTIONS(4469), - [anon_sym_BSLASHsvolcite] = ACTIONS(4469), - [anon_sym_BSLASHSvolcite] = ACTIONS(4469), - [anon_sym_BSLASHtvolcite] = ACTIONS(4469), - [anon_sym_BSLASHTvolcite] = ACTIONS(4469), - [anon_sym_BSLASHavolcite] = ACTIONS(4469), - [anon_sym_BSLASHAvolcite] = ACTIONS(4469), - [anon_sym_BSLASHnotecite] = ACTIONS(4469), - [anon_sym_BSLASHNotecite] = ACTIONS(4469), - [anon_sym_BSLASHpnotecite] = ACTIONS(4469), - [anon_sym_BSLASHPnotecite] = ACTIONS(4469), - [anon_sym_BSLASHfnotecite] = ACTIONS(4469), - [anon_sym_BSLASHlabel] = ACTIONS(4469), - [anon_sym_BSLASHref] = ACTIONS(4469), - [anon_sym_BSLASHeqref] = ACTIONS(4469), - [anon_sym_BSLASHvref] = ACTIONS(4469), - [anon_sym_BSLASHVref] = ACTIONS(4469), - [anon_sym_BSLASHautoref] = ACTIONS(4469), - [anon_sym_BSLASHpageref] = ACTIONS(4469), - [anon_sym_BSLASHcref] = ACTIONS(4469), - [anon_sym_BSLASHCref] = ACTIONS(4469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnameCref] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHlabelcref] = ACTIONS(4469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCrefrange] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnewlabel] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4467), - [anon_sym_BSLASHdef] = ACTIONS(4469), - [anon_sym_BSLASHlet] = ACTIONS(4469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4469), - [anon_sym_BSLASHgls] = ACTIONS(4469), - [anon_sym_BSLASHGls] = ACTIONS(4469), - [anon_sym_BSLASHGLS] = ACTIONS(4469), - [anon_sym_BSLASHglspl] = ACTIONS(4469), - [anon_sym_BSLASHGlspl] = ACTIONS(4469), - [anon_sym_BSLASHGLSpl] = ACTIONS(4469), - [anon_sym_BSLASHglsdisp] = ACTIONS(4469), - [anon_sym_BSLASHglslink] = ACTIONS(4469), - [anon_sym_BSLASHglstext] = ACTIONS(4469), - [anon_sym_BSLASHGlstext] = ACTIONS(4469), - [anon_sym_BSLASHGLStext] = ACTIONS(4469), - [anon_sym_BSLASHglsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4469), - [anon_sym_BSLASHglsplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSplural] = ACTIONS(4469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHglsname] = ACTIONS(4469), - [anon_sym_BSLASHGlsname] = ACTIONS(4469), - [anon_sym_BSLASHGLSname] = ACTIONS(4469), - [anon_sym_BSLASHglssymbol] = ACTIONS(4469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4469), - [anon_sym_BSLASHglsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4469), - [anon_sym_BSLASHglsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4469), - [anon_sym_BSLASHglsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4469), - [anon_sym_BSLASHglsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4469), - [anon_sym_BSLASHglsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4469), - [anon_sym_BSLASHnewacronym] = ACTIONS(4469), - [anon_sym_BSLASHacrshort] = ACTIONS(4469), - [anon_sym_BSLASHAcrshort] = ACTIONS(4469), - [anon_sym_BSLASHACRshort] = ACTIONS(4469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4469), - [anon_sym_BSLASHacrlong] = ACTIONS(4469), - [anon_sym_BSLASHAcrlong] = ACTIONS(4469), - [anon_sym_BSLASHACRlong] = ACTIONS(4469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4469), - [anon_sym_BSLASHacrfull] = ACTIONS(4469), - [anon_sym_BSLASHAcrfull] = ACTIONS(4469), - [anon_sym_BSLASHACRfull] = ACTIONS(4469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4469), - [anon_sym_BSLASHacs] = ACTIONS(4469), - [anon_sym_BSLASHAcs] = ACTIONS(4469), - [anon_sym_BSLASHacsp] = ACTIONS(4469), - [anon_sym_BSLASHAcsp] = ACTIONS(4469), - [anon_sym_BSLASHacl] = ACTIONS(4469), - [anon_sym_BSLASHAcl] = ACTIONS(4469), - [anon_sym_BSLASHaclp] = ACTIONS(4469), - [anon_sym_BSLASHAclp] = ACTIONS(4469), - [anon_sym_BSLASHacf] = ACTIONS(4469), - [anon_sym_BSLASHAcf] = ACTIONS(4469), - [anon_sym_BSLASHacfp] = ACTIONS(4469), - [anon_sym_BSLASHAcfp] = ACTIONS(4469), - [anon_sym_BSLASHac] = ACTIONS(4469), - [anon_sym_BSLASHAc] = ACTIONS(4469), - [anon_sym_BSLASHacp] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4469), - [anon_sym_BSLASHcolor] = ACTIONS(4469), - [anon_sym_BSLASHcolorbox] = ACTIONS(4469), - [anon_sym_BSLASHtextcolor] = ACTIONS(4469), - [anon_sym_BSLASHpagecolor] = ACTIONS(4469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4469), + [anon_sym_BSLASHiffalse] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5047), + [anon_sym_RPAREN] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_RBRACK] = ACTIONS(5047), + [anon_sym_COMMA] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_BSLASHpart] = ACTIONS(5049), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5047), + [anon_sym_BSLASHaddpart] = ACTIONS(5049), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5047), + [anon_sym_BSLASHchapter] = ACTIONS(5049), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5047), + [anon_sym_BSLASHaddchap] = ACTIONS(5049), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsection] = ACTIONS(5049), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5047), + [anon_sym_BSLASHaddsec] = ACTIONS(5049), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsubsection] = ACTIONS(5049), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5049), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5047), + [anon_sym_BSLASHparagraph] = ACTIONS(5049), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5047), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5049), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5047), + [anon_sym_BSLASHitem] = ACTIONS(5049), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5047), + [sym_word] = ACTIONS(5049), + [sym_placeholder] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5049), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_CARET] = ACTIONS(5049), + [anon_sym__] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5049), + [anon_sym_PIPE] = ACTIONS(5049), + [anon_sym_COLON] = ACTIONS(5049), + [anon_sym_SQUOTE] = ACTIONS(5049), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5047), + [anon_sym_DOLLAR] = ACTIONS(5049), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), + [anon_sym_BSLASHbegin] = ACTIONS(5049), + [anon_sym_BSLASHusepackage] = ACTIONS(5049), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), + [anon_sym_BSLASHinclude] = ACTIONS(5049), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), + [anon_sym_BSLASHinput] = ACTIONS(5049), + [anon_sym_BSLASHsubfile] = ACTIONS(5049), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), + [anon_sym_BSLASHbibliography] = ACTIONS(5049), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), + [anon_sym_BSLASHincludesvg] = ACTIONS(5049), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), + [anon_sym_BSLASHimport] = ACTIONS(5049), + [anon_sym_BSLASHsubimport] = ACTIONS(5049), + [anon_sym_BSLASHinputfrom] = ACTIONS(5049), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), + [anon_sym_BSLASHincludefrom] = ACTIONS(5049), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), + [anon_sym_BSLASHcaption] = ACTIONS(5049), + [anon_sym_BSLASHcite] = ACTIONS(5049), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCite] = ACTIONS(5049), + [anon_sym_BSLASHnocite] = ACTIONS(5049), + [anon_sym_BSLASHcitet] = ACTIONS(5049), + [anon_sym_BSLASHcitep] = ACTIONS(5049), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteauthor] = ACTIONS(5049), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitetitle] = ACTIONS(5049), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteyear] = ACTIONS(5049), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitedate] = ACTIONS(5049), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteurl] = ACTIONS(5049), + [anon_sym_BSLASHfullcite] = ACTIONS(5049), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), + [anon_sym_BSLASHcitealt] = ACTIONS(5049), + [anon_sym_BSLASHcitealp] = ACTIONS(5049), + [anon_sym_BSLASHcitetext] = ACTIONS(5049), + [anon_sym_BSLASHparencite] = ACTIONS(5049), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHParencite] = ACTIONS(5049), + [anon_sym_BSLASHfootcite] = ACTIONS(5049), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), + [anon_sym_BSLASHtextcite] = ACTIONS(5049), + [anon_sym_BSLASHTextcite] = ACTIONS(5049), + [anon_sym_BSLASHsmartcite] = ACTIONS(5049), + [anon_sym_BSLASHSmartcite] = ACTIONS(5049), + [anon_sym_BSLASHsupercite] = ACTIONS(5049), + [anon_sym_BSLASHautocite] = ACTIONS(5049), + [anon_sym_BSLASHAutocite] = ACTIONS(5049), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHvolcite] = ACTIONS(5049), + [anon_sym_BSLASHVolcite] = ACTIONS(5049), + [anon_sym_BSLASHpvolcite] = ACTIONS(5049), + [anon_sym_BSLASHPvolcite] = ACTIONS(5049), + [anon_sym_BSLASHfvolcite] = ACTIONS(5049), + [anon_sym_BSLASHftvolcite] = ACTIONS(5049), + [anon_sym_BSLASHsvolcite] = ACTIONS(5049), + [anon_sym_BSLASHSvolcite] = ACTIONS(5049), + [anon_sym_BSLASHtvolcite] = ACTIONS(5049), + [anon_sym_BSLASHTvolcite] = ACTIONS(5049), + [anon_sym_BSLASHavolcite] = ACTIONS(5049), + [anon_sym_BSLASHAvolcite] = ACTIONS(5049), + [anon_sym_BSLASHnotecite] = ACTIONS(5049), + [anon_sym_BSLASHNotecite] = ACTIONS(5049), + [anon_sym_BSLASHpnotecite] = ACTIONS(5049), + [anon_sym_BSLASHPnotecite] = ACTIONS(5049), + [anon_sym_BSLASHfnotecite] = ACTIONS(5049), + [anon_sym_BSLASHlabel] = ACTIONS(5049), + [anon_sym_BSLASHref] = ACTIONS(5049), + [anon_sym_BSLASHeqref] = ACTIONS(5049), + [anon_sym_BSLASHvref] = ACTIONS(5049), + [anon_sym_BSLASHVref] = ACTIONS(5049), + [anon_sym_BSLASHautoref] = ACTIONS(5049), + [anon_sym_BSLASHpageref] = ACTIONS(5049), + [anon_sym_BSLASHcref] = ACTIONS(5049), + [anon_sym_BSLASHCref] = ACTIONS(5049), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), + [anon_sym_BSLASHnamecref] = ACTIONS(5049), + [anon_sym_BSLASHnameCref] = ACTIONS(5049), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), + [anon_sym_BSLASHlabelcref] = ACTIONS(5049), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), + [anon_sym_BSLASHcrefrange] = ACTIONS(5049), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCrefrange] = ACTIONS(5049), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), + [anon_sym_BSLASHnewlabel] = ACTIONS(5049), + [anon_sym_BSLASHnewcommand] = ACTIONS(5049), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), + [anon_sym_BSLASHdef] = ACTIONS(5049), + [anon_sym_BSLASHlet] = ACTIONS(5049), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), + [anon_sym_BSLASHgls] = ACTIONS(5049), + [anon_sym_BSLASHGls] = ACTIONS(5049), + [anon_sym_BSLASHGLS] = ACTIONS(5049), + [anon_sym_BSLASHglspl] = ACTIONS(5049), + [anon_sym_BSLASHGlspl] = ACTIONS(5049), + [anon_sym_BSLASHGLSpl] = ACTIONS(5049), + [anon_sym_BSLASHglsdisp] = ACTIONS(5049), + [anon_sym_BSLASHglslink] = ACTIONS(5049), + [anon_sym_BSLASHglstext] = ACTIONS(5049), + [anon_sym_BSLASHGlstext] = ACTIONS(5049), + [anon_sym_BSLASHGLStext] = ACTIONS(5049), + [anon_sym_BSLASHglsfirst] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), + [anon_sym_BSLASHglsplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSplural] = ACTIONS(5049), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHglsname] = ACTIONS(5049), + [anon_sym_BSLASHGlsname] = ACTIONS(5049), + [anon_sym_BSLASHGLSname] = ACTIONS(5049), + [anon_sym_BSLASHglssymbol] = ACTIONS(5049), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), + [anon_sym_BSLASHglsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), + [anon_sym_BSLASHglsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), + [anon_sym_BSLASHglsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), + [anon_sym_BSLASHglsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), + [anon_sym_BSLASHglsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), + [anon_sym_BSLASHnewacronym] = ACTIONS(5049), + [anon_sym_BSLASHacrshort] = ACTIONS(5049), + [anon_sym_BSLASHAcrshort] = ACTIONS(5049), + [anon_sym_BSLASHACRshort] = ACTIONS(5049), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), + [anon_sym_BSLASHacrlong] = ACTIONS(5049), + [anon_sym_BSLASHAcrlong] = ACTIONS(5049), + [anon_sym_BSLASHACRlong] = ACTIONS(5049), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), + [anon_sym_BSLASHacrfull] = ACTIONS(5049), + [anon_sym_BSLASHAcrfull] = ACTIONS(5049), + [anon_sym_BSLASHACRfull] = ACTIONS(5049), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), + [anon_sym_BSLASHacs] = ACTIONS(5049), + [anon_sym_BSLASHAcs] = ACTIONS(5049), + [anon_sym_BSLASHacsp] = ACTIONS(5049), + [anon_sym_BSLASHAcsp] = ACTIONS(5049), + [anon_sym_BSLASHacl] = ACTIONS(5049), + [anon_sym_BSLASHAcl] = ACTIONS(5049), + [anon_sym_BSLASHaclp] = ACTIONS(5049), + [anon_sym_BSLASHAclp] = ACTIONS(5049), + [anon_sym_BSLASHacf] = ACTIONS(5049), + [anon_sym_BSLASHAcf] = ACTIONS(5049), + [anon_sym_BSLASHacfp] = ACTIONS(5049), + [anon_sym_BSLASHAcfp] = ACTIONS(5049), + [anon_sym_BSLASHac] = ACTIONS(5049), + [anon_sym_BSLASHAc] = ACTIONS(5049), + [anon_sym_BSLASHacp] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), + [anon_sym_BSLASHcolor] = ACTIONS(5049), + [anon_sym_BSLASHcolorbox] = ACTIONS(5049), + [anon_sym_BSLASHtextcolor] = ACTIONS(5049), + [anon_sym_BSLASHpagecolor] = ACTIONS(5049), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [anon_sym_BSLASHtext] = ACTIONS(5049), + [anon_sym_BSLASHintertext] = ACTIONS(5049), + [anon_sym_shortintertext] = ACTIONS(5049), }, - [1296] = { - [sym_brack_group_text] = STATE(1314), - [sym_command_name] = ACTIONS(4929), + [1167] = { + [sym_command_name] = ACTIONS(5061), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(5433), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASHbegin] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - }, - [1297] = { - [sym_brack_group_text] = STATE(1304), - [sym_command_name] = ACTIONS(4797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4795), - [anon_sym_LBRACK] = ACTIONS(5433), - [anon_sym_RBRACK] = ACTIONS(4795), - [anon_sym_COMMA] = ACTIONS(4795), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4795), - [sym_word] = ACTIONS(4797), - [sym_placeholder] = ACTIONS(4795), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_CARET] = ACTIONS(4797), - [anon_sym__] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4797), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4795), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4795), - [anon_sym_BSLASHbegin] = ACTIONS(4797), - [anon_sym_BSLASHusepackage] = ACTIONS(4797), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4797), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4797), - [anon_sym_BSLASHinclude] = ACTIONS(4797), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4797), - [anon_sym_BSLASHinput] = ACTIONS(4797), - [anon_sym_BSLASHsubfile] = ACTIONS(4797), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4797), - [anon_sym_BSLASHbibliography] = ACTIONS(4797), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4797), - [anon_sym_BSLASHincludesvg] = ACTIONS(4797), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4797), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4797), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4797), - [anon_sym_BSLASHimport] = ACTIONS(4797), - [anon_sym_BSLASHsubimport] = ACTIONS(4797), - [anon_sym_BSLASHinputfrom] = ACTIONS(4797), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4797), - [anon_sym_BSLASHincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHcaption] = ACTIONS(4797), - [anon_sym_BSLASHcite] = ACTIONS(4797), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCite] = ACTIONS(4797), - [anon_sym_BSLASHnocite] = ACTIONS(4797), - [anon_sym_BSLASHcitet] = ACTIONS(4797), - [anon_sym_BSLASHcitep] = ACTIONS(4797), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteauthor] = ACTIONS(4797), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4797), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitetitle] = ACTIONS(4797), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteyear] = ACTIONS(4797), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitedate] = ACTIONS(4797), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteurl] = ACTIONS(4797), - [anon_sym_BSLASHfullcite] = ACTIONS(4797), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4797), - [anon_sym_BSLASHcitealt] = ACTIONS(4797), - [anon_sym_BSLASHcitealp] = ACTIONS(4797), - [anon_sym_BSLASHcitetext] = ACTIONS(4797), - [anon_sym_BSLASHparencite] = ACTIONS(4797), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHParencite] = ACTIONS(4797), - [anon_sym_BSLASHfootcite] = ACTIONS(4797), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4797), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4797), - [anon_sym_BSLASHtextcite] = ACTIONS(4797), - [anon_sym_BSLASHTextcite] = ACTIONS(4797), - [anon_sym_BSLASHsmartcite] = ACTIONS(4797), - [anon_sym_BSLASHSmartcite] = ACTIONS(4797), - [anon_sym_BSLASHsupercite] = ACTIONS(4797), - [anon_sym_BSLASHautocite] = ACTIONS(4797), - [anon_sym_BSLASHAutocite] = ACTIONS(4797), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHvolcite] = ACTIONS(4797), - [anon_sym_BSLASHVolcite] = ACTIONS(4797), - [anon_sym_BSLASHpvolcite] = ACTIONS(4797), - [anon_sym_BSLASHPvolcite] = ACTIONS(4797), - [anon_sym_BSLASHfvolcite] = ACTIONS(4797), - [anon_sym_BSLASHftvolcite] = ACTIONS(4797), - [anon_sym_BSLASHsvolcite] = ACTIONS(4797), - [anon_sym_BSLASHSvolcite] = ACTIONS(4797), - [anon_sym_BSLASHtvolcite] = ACTIONS(4797), - [anon_sym_BSLASHTvolcite] = ACTIONS(4797), - [anon_sym_BSLASHavolcite] = ACTIONS(4797), - [anon_sym_BSLASHAvolcite] = ACTIONS(4797), - [anon_sym_BSLASHnotecite] = ACTIONS(4797), - [anon_sym_BSLASHNotecite] = ACTIONS(4797), - [anon_sym_BSLASHpnotecite] = ACTIONS(4797), - [anon_sym_BSLASHPnotecite] = ACTIONS(4797), - [anon_sym_BSLASHfnotecite] = ACTIONS(4797), - [anon_sym_BSLASHlabel] = ACTIONS(4797), - [anon_sym_BSLASHref] = ACTIONS(4797), - [anon_sym_BSLASHeqref] = ACTIONS(4797), - [anon_sym_BSLASHvref] = ACTIONS(4797), - [anon_sym_BSLASHVref] = ACTIONS(4797), - [anon_sym_BSLASHautoref] = ACTIONS(4797), - [anon_sym_BSLASHpageref] = ACTIONS(4797), - [anon_sym_BSLASHcref] = ACTIONS(4797), - [anon_sym_BSLASHCref] = ACTIONS(4797), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnameCref] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHlabelcref] = ACTIONS(4797), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCrefrange] = ACTIONS(4797), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnewlabel] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4797), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4797), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4797), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4795), - [anon_sym_BSLASHdef] = ACTIONS(4797), - [anon_sym_BSLASHlet] = ACTIONS(4797), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4797), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4797), - [anon_sym_BSLASHgls] = ACTIONS(4797), - [anon_sym_BSLASHGls] = ACTIONS(4797), - [anon_sym_BSLASHGLS] = ACTIONS(4797), - [anon_sym_BSLASHglspl] = ACTIONS(4797), - [anon_sym_BSLASHGlspl] = ACTIONS(4797), - [anon_sym_BSLASHGLSpl] = ACTIONS(4797), - [anon_sym_BSLASHglsdisp] = ACTIONS(4797), - [anon_sym_BSLASHglslink] = ACTIONS(4797), - [anon_sym_BSLASHglstext] = ACTIONS(4797), - [anon_sym_BSLASHGlstext] = ACTIONS(4797), - [anon_sym_BSLASHGLStext] = ACTIONS(4797), - [anon_sym_BSLASHglsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4797), - [anon_sym_BSLASHglsplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSplural] = ACTIONS(4797), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHglsname] = ACTIONS(4797), - [anon_sym_BSLASHGlsname] = ACTIONS(4797), - [anon_sym_BSLASHGLSname] = ACTIONS(4797), - [anon_sym_BSLASHglssymbol] = ACTIONS(4797), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4797), - [anon_sym_BSLASHglsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4797), - [anon_sym_BSLASHglsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4797), - [anon_sym_BSLASHglsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4797), - [anon_sym_BSLASHglsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4797), - [anon_sym_BSLASHglsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4797), - [anon_sym_BSLASHnewacronym] = ACTIONS(4797), - [anon_sym_BSLASHacrshort] = ACTIONS(4797), - [anon_sym_BSLASHAcrshort] = ACTIONS(4797), - [anon_sym_BSLASHACRshort] = ACTIONS(4797), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4797), - [anon_sym_BSLASHacrlong] = ACTIONS(4797), - [anon_sym_BSLASHAcrlong] = ACTIONS(4797), - [anon_sym_BSLASHACRlong] = ACTIONS(4797), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4797), - [anon_sym_BSLASHacrfull] = ACTIONS(4797), - [anon_sym_BSLASHAcrfull] = ACTIONS(4797), - [anon_sym_BSLASHACRfull] = ACTIONS(4797), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4797), - [anon_sym_BSLASHacs] = ACTIONS(4797), - [anon_sym_BSLASHAcs] = ACTIONS(4797), - [anon_sym_BSLASHacsp] = ACTIONS(4797), - [anon_sym_BSLASHAcsp] = ACTIONS(4797), - [anon_sym_BSLASHacl] = ACTIONS(4797), - [anon_sym_BSLASHAcl] = ACTIONS(4797), - [anon_sym_BSLASHaclp] = ACTIONS(4797), - [anon_sym_BSLASHAclp] = ACTIONS(4797), - [anon_sym_BSLASHacf] = ACTIONS(4797), - [anon_sym_BSLASHAcf] = ACTIONS(4797), - [anon_sym_BSLASHacfp] = ACTIONS(4797), - [anon_sym_BSLASHAcfp] = ACTIONS(4797), - [anon_sym_BSLASHac] = ACTIONS(4797), - [anon_sym_BSLASHAc] = ACTIONS(4797), - [anon_sym_BSLASHacp] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4797), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4797), - [anon_sym_BSLASHcolor] = ACTIONS(4797), - [anon_sym_BSLASHcolorbox] = ACTIONS(4797), - [anon_sym_BSLASHtextcolor] = ACTIONS(4797), - [anon_sym_BSLASHpagecolor] = ACTIONS(4797), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4797), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4797), - }, - [1298] = { - [sym_curly_group] = STATE(1397), - [sym_brack_group_text] = STATE(2205), - [sym_command_name] = ACTIONS(4749), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4749), - [anon_sym_LPAREN] = ACTIONS(4747), - [anon_sym_RPAREN] = ACTIONS(4747), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4747), - [sym_word] = ACTIONS(4749), - [sym_placeholder] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4749), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_CARET] = ACTIONS(4749), - [anon_sym__] = ACTIONS(4749), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_COLON] = ACTIONS(4749), - [anon_sym_SQUOTE] = ACTIONS(4749), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4747), - [anon_sym_DOLLAR] = ACTIONS(4749), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4747), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4747), - [anon_sym_BSLASHusepackage] = ACTIONS(4749), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4749), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4749), - [anon_sym_BSLASHinclude] = ACTIONS(4749), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4749), - [anon_sym_BSLASHinput] = ACTIONS(4749), - [anon_sym_BSLASHsubfile] = ACTIONS(4749), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4749), - [anon_sym_BSLASHbibliography] = ACTIONS(4749), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4749), - [anon_sym_BSLASHincludesvg] = ACTIONS(4749), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4749), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4749), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4749), - [anon_sym_BSLASHimport] = ACTIONS(4749), - [anon_sym_BSLASHsubimport] = ACTIONS(4749), - [anon_sym_BSLASHinputfrom] = ACTIONS(4749), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4749), - [anon_sym_BSLASHincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHcaption] = ACTIONS(4749), - [anon_sym_BSLASHcite] = ACTIONS(4749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCite] = ACTIONS(4749), - [anon_sym_BSLASHnocite] = ACTIONS(4749), - [anon_sym_BSLASHcitet] = ACTIONS(4749), - [anon_sym_BSLASHcitep] = ACTIONS(4749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteauthor] = ACTIONS(4749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitetitle] = ACTIONS(4749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteyear] = ACTIONS(4749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitedate] = ACTIONS(4749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteurl] = ACTIONS(4749), - [anon_sym_BSLASHfullcite] = ACTIONS(4749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4749), - [anon_sym_BSLASHcitealt] = ACTIONS(4749), - [anon_sym_BSLASHcitealp] = ACTIONS(4749), - [anon_sym_BSLASHcitetext] = ACTIONS(4749), - [anon_sym_BSLASHparencite] = ACTIONS(4749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHParencite] = ACTIONS(4749), - [anon_sym_BSLASHfootcite] = ACTIONS(4749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4749), - [anon_sym_BSLASHtextcite] = ACTIONS(4749), - [anon_sym_BSLASHTextcite] = ACTIONS(4749), - [anon_sym_BSLASHsmartcite] = ACTIONS(4749), - [anon_sym_BSLASHSmartcite] = ACTIONS(4749), - [anon_sym_BSLASHsupercite] = ACTIONS(4749), - [anon_sym_BSLASHautocite] = ACTIONS(4749), - [anon_sym_BSLASHAutocite] = ACTIONS(4749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHvolcite] = ACTIONS(4749), - [anon_sym_BSLASHVolcite] = ACTIONS(4749), - [anon_sym_BSLASHpvolcite] = ACTIONS(4749), - [anon_sym_BSLASHPvolcite] = ACTIONS(4749), - [anon_sym_BSLASHfvolcite] = ACTIONS(4749), - [anon_sym_BSLASHftvolcite] = ACTIONS(4749), - [anon_sym_BSLASHsvolcite] = ACTIONS(4749), - [anon_sym_BSLASHSvolcite] = ACTIONS(4749), - [anon_sym_BSLASHtvolcite] = ACTIONS(4749), - [anon_sym_BSLASHTvolcite] = ACTIONS(4749), - [anon_sym_BSLASHavolcite] = ACTIONS(4749), - [anon_sym_BSLASHAvolcite] = ACTIONS(4749), - [anon_sym_BSLASHnotecite] = ACTIONS(4749), - [anon_sym_BSLASHNotecite] = ACTIONS(4749), - [anon_sym_BSLASHpnotecite] = ACTIONS(4749), - [anon_sym_BSLASHPnotecite] = ACTIONS(4749), - [anon_sym_BSLASHfnotecite] = ACTIONS(4749), - [anon_sym_BSLASHlabel] = ACTIONS(4749), - [anon_sym_BSLASHref] = ACTIONS(4749), - [anon_sym_BSLASHeqref] = ACTIONS(4749), - [anon_sym_BSLASHvref] = ACTIONS(4749), - [anon_sym_BSLASHVref] = ACTIONS(4749), - [anon_sym_BSLASHautoref] = ACTIONS(4749), - [anon_sym_BSLASHpageref] = ACTIONS(4749), - [anon_sym_BSLASHcref] = ACTIONS(4749), - [anon_sym_BSLASHCref] = ACTIONS(4749), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnameCref] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHlabelcref] = ACTIONS(4749), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCrefrange] = ACTIONS(4749), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnewlabel] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4749), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4749), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4749), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4747), - [anon_sym_BSLASHdef] = ACTIONS(4749), - [anon_sym_BSLASHlet] = ACTIONS(4749), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4749), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4749), - [anon_sym_BSLASHgls] = ACTIONS(4749), - [anon_sym_BSLASHGls] = ACTIONS(4749), - [anon_sym_BSLASHGLS] = ACTIONS(4749), - [anon_sym_BSLASHglspl] = ACTIONS(4749), - [anon_sym_BSLASHGlspl] = ACTIONS(4749), - [anon_sym_BSLASHGLSpl] = ACTIONS(4749), - [anon_sym_BSLASHglsdisp] = ACTIONS(4749), - [anon_sym_BSLASHglslink] = ACTIONS(4749), - [anon_sym_BSLASHglstext] = ACTIONS(4749), - [anon_sym_BSLASHGlstext] = ACTIONS(4749), - [anon_sym_BSLASHGLStext] = ACTIONS(4749), - [anon_sym_BSLASHglsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4749), - [anon_sym_BSLASHglsplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSplural] = ACTIONS(4749), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHglsname] = ACTIONS(4749), - [anon_sym_BSLASHGlsname] = ACTIONS(4749), - [anon_sym_BSLASHGLSname] = ACTIONS(4749), - [anon_sym_BSLASHglssymbol] = ACTIONS(4749), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4749), - [anon_sym_BSLASHglsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4749), - [anon_sym_BSLASHglsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4749), - [anon_sym_BSLASHglsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4749), - [anon_sym_BSLASHglsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4749), - [anon_sym_BSLASHglsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4749), - [anon_sym_BSLASHnewacronym] = ACTIONS(4749), - [anon_sym_BSLASHacrshort] = ACTIONS(4749), - [anon_sym_BSLASHAcrshort] = ACTIONS(4749), - [anon_sym_BSLASHACRshort] = ACTIONS(4749), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4749), - [anon_sym_BSLASHacrlong] = ACTIONS(4749), - [anon_sym_BSLASHAcrlong] = ACTIONS(4749), - [anon_sym_BSLASHACRlong] = ACTIONS(4749), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4749), - [anon_sym_BSLASHacrfull] = ACTIONS(4749), - [anon_sym_BSLASHAcrfull] = ACTIONS(4749), - [anon_sym_BSLASHACRfull] = ACTIONS(4749), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4749), - [anon_sym_BSLASHacs] = ACTIONS(4749), - [anon_sym_BSLASHAcs] = ACTIONS(4749), - [anon_sym_BSLASHacsp] = ACTIONS(4749), - [anon_sym_BSLASHAcsp] = ACTIONS(4749), - [anon_sym_BSLASHacl] = ACTIONS(4749), - [anon_sym_BSLASHAcl] = ACTIONS(4749), - [anon_sym_BSLASHaclp] = ACTIONS(4749), - [anon_sym_BSLASHAclp] = ACTIONS(4749), - [anon_sym_BSLASHacf] = ACTIONS(4749), - [anon_sym_BSLASHAcf] = ACTIONS(4749), - [anon_sym_BSLASHacfp] = ACTIONS(4749), - [anon_sym_BSLASHAcfp] = ACTIONS(4749), - [anon_sym_BSLASHac] = ACTIONS(4749), - [anon_sym_BSLASHAc] = ACTIONS(4749), - [anon_sym_BSLASHacp] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4749), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4749), - [anon_sym_BSLASHcolor] = ACTIONS(4749), - [anon_sym_BSLASHcolorbox] = ACTIONS(4749), - [anon_sym_BSLASHtextcolor] = ACTIONS(4749), - [anon_sym_BSLASHpagecolor] = ACTIONS(4749), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4749), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4749), + [anon_sym_BSLASHiffalse] = ACTIONS(5061), + [anon_sym_LPAREN] = ACTIONS(5059), + [anon_sym_RPAREN] = ACTIONS(5059), + [anon_sym_LBRACK] = ACTIONS(5059), + [anon_sym_RBRACK] = ACTIONS(5059), + [anon_sym_COMMA] = ACTIONS(5059), + [anon_sym_EQ] = ACTIONS(5059), + [anon_sym_BSLASHpart] = ACTIONS(5061), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddpart] = ACTIONS(5061), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5059), + [anon_sym_BSLASHchapter] = ACTIONS(5061), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddchap] = ACTIONS(5061), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsection] = ACTIONS(5061), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHaddsec] = ACTIONS(5061), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubsection] = ACTIONS(5061), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5061), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5059), + [anon_sym_BSLASHparagraph] = ACTIONS(5061), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5059), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5061), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5059), + [anon_sym_BSLASHitem] = ACTIONS(5061), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5059), + [anon_sym_LBRACE] = ACTIONS(5059), + [sym_word] = ACTIONS(5061), + [sym_placeholder] = ACTIONS(5059), + [anon_sym_PLUS] = ACTIONS(5061), + [anon_sym_DASH] = ACTIONS(5061), + [anon_sym_STAR] = ACTIONS(5061), + [anon_sym_SLASH] = ACTIONS(5061), + [anon_sym_CARET] = ACTIONS(5061), + [anon_sym__] = ACTIONS(5061), + [anon_sym_LT] = ACTIONS(5061), + [anon_sym_GT] = ACTIONS(5061), + [anon_sym_BANG] = ACTIONS(5061), + [anon_sym_PIPE] = ACTIONS(5061), + [anon_sym_COLON] = ACTIONS(5061), + [anon_sym_SQUOTE] = ACTIONS(5061), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5059), + [anon_sym_DOLLAR] = ACTIONS(5061), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), + [anon_sym_BSLASHbegin] = ACTIONS(5061), + [anon_sym_BSLASHusepackage] = ACTIONS(5061), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), + [anon_sym_BSLASHinclude] = ACTIONS(5061), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), + [anon_sym_BSLASHinput] = ACTIONS(5061), + [anon_sym_BSLASHsubfile] = ACTIONS(5061), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), + [anon_sym_BSLASHbibliography] = ACTIONS(5061), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), + [anon_sym_BSLASHincludesvg] = ACTIONS(5061), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), + [anon_sym_BSLASHimport] = ACTIONS(5061), + [anon_sym_BSLASHsubimport] = ACTIONS(5061), + [anon_sym_BSLASHinputfrom] = ACTIONS(5061), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), + [anon_sym_BSLASHincludefrom] = ACTIONS(5061), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), + [anon_sym_BSLASHcaption] = ACTIONS(5061), + [anon_sym_BSLASHcite] = ACTIONS(5061), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCite] = ACTIONS(5061), + [anon_sym_BSLASHnocite] = ACTIONS(5061), + [anon_sym_BSLASHcitet] = ACTIONS(5061), + [anon_sym_BSLASHcitep] = ACTIONS(5061), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteauthor] = ACTIONS(5061), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitetitle] = ACTIONS(5061), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteyear] = ACTIONS(5061), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), + [anon_sym_BSLASHcitedate] = ACTIONS(5061), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), + [anon_sym_BSLASHciteurl] = ACTIONS(5061), + [anon_sym_BSLASHfullcite] = ACTIONS(5061), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), + [anon_sym_BSLASHcitealt] = ACTIONS(5061), + [anon_sym_BSLASHcitealp] = ACTIONS(5061), + [anon_sym_BSLASHcitetext] = ACTIONS(5061), + [anon_sym_BSLASHparencite] = ACTIONS(5061), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHParencite] = ACTIONS(5061), + [anon_sym_BSLASHfootcite] = ACTIONS(5061), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), + [anon_sym_BSLASHtextcite] = ACTIONS(5061), + [anon_sym_BSLASHTextcite] = ACTIONS(5061), + [anon_sym_BSLASHsmartcite] = ACTIONS(5061), + [anon_sym_BSLASHSmartcite] = ACTIONS(5061), + [anon_sym_BSLASHsupercite] = ACTIONS(5061), + [anon_sym_BSLASHautocite] = ACTIONS(5061), + [anon_sym_BSLASHAutocite] = ACTIONS(5061), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), + [anon_sym_BSLASHvolcite] = ACTIONS(5061), + [anon_sym_BSLASHVolcite] = ACTIONS(5061), + [anon_sym_BSLASHpvolcite] = ACTIONS(5061), + [anon_sym_BSLASHPvolcite] = ACTIONS(5061), + [anon_sym_BSLASHfvolcite] = ACTIONS(5061), + [anon_sym_BSLASHftvolcite] = ACTIONS(5061), + [anon_sym_BSLASHsvolcite] = ACTIONS(5061), + [anon_sym_BSLASHSvolcite] = ACTIONS(5061), + [anon_sym_BSLASHtvolcite] = ACTIONS(5061), + [anon_sym_BSLASHTvolcite] = ACTIONS(5061), + [anon_sym_BSLASHavolcite] = ACTIONS(5061), + [anon_sym_BSLASHAvolcite] = ACTIONS(5061), + [anon_sym_BSLASHnotecite] = ACTIONS(5061), + [anon_sym_BSLASHNotecite] = ACTIONS(5061), + [anon_sym_BSLASHpnotecite] = ACTIONS(5061), + [anon_sym_BSLASHPnotecite] = ACTIONS(5061), + [anon_sym_BSLASHfnotecite] = ACTIONS(5061), + [anon_sym_BSLASHlabel] = ACTIONS(5061), + [anon_sym_BSLASHref] = ACTIONS(5061), + [anon_sym_BSLASHeqref] = ACTIONS(5061), + [anon_sym_BSLASHvref] = ACTIONS(5061), + [anon_sym_BSLASHVref] = ACTIONS(5061), + [anon_sym_BSLASHautoref] = ACTIONS(5061), + [anon_sym_BSLASHpageref] = ACTIONS(5061), + [anon_sym_BSLASHcref] = ACTIONS(5061), + [anon_sym_BSLASHCref] = ACTIONS(5061), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), + [anon_sym_BSLASHnamecref] = ACTIONS(5061), + [anon_sym_BSLASHnameCref] = ACTIONS(5061), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), + [anon_sym_BSLASHlabelcref] = ACTIONS(5061), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), + [anon_sym_BSLASHcrefrange] = ACTIONS(5061), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), + [anon_sym_BSLASHCrefrange] = ACTIONS(5061), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), + [anon_sym_BSLASHnewlabel] = ACTIONS(5061), + [anon_sym_BSLASHnewcommand] = ACTIONS(5061), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), + [anon_sym_BSLASHdef] = ACTIONS(5061), + [anon_sym_BSLASHlet] = ACTIONS(5061), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), + [anon_sym_BSLASHgls] = ACTIONS(5061), + [anon_sym_BSLASHGls] = ACTIONS(5061), + [anon_sym_BSLASHGLS] = ACTIONS(5061), + [anon_sym_BSLASHglspl] = ACTIONS(5061), + [anon_sym_BSLASHGlspl] = ACTIONS(5061), + [anon_sym_BSLASHGLSpl] = ACTIONS(5061), + [anon_sym_BSLASHglsdisp] = ACTIONS(5061), + [anon_sym_BSLASHglslink] = ACTIONS(5061), + [anon_sym_BSLASHglstext] = ACTIONS(5061), + [anon_sym_BSLASHGlstext] = ACTIONS(5061), + [anon_sym_BSLASHGLStext] = ACTIONS(5061), + [anon_sym_BSLASHglsfirst] = ACTIONS(5061), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), + [anon_sym_BSLASHglsplural] = ACTIONS(5061), + [anon_sym_BSLASHGlsplural] = ACTIONS(5061), + [anon_sym_BSLASHGLSplural] = ACTIONS(5061), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), + [anon_sym_BSLASHglsname] = ACTIONS(5061), + [anon_sym_BSLASHGlsname] = ACTIONS(5061), + [anon_sym_BSLASHGLSname] = ACTIONS(5061), + [anon_sym_BSLASHglssymbol] = ACTIONS(5061), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), + [anon_sym_BSLASHglsdesc] = ACTIONS(5061), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), + [anon_sym_BSLASHglsuseri] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), + [anon_sym_BSLASHglsuserii] = ACTIONS(5061), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), + [anon_sym_BSLASHglsuserv] = ACTIONS(5061), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), + [anon_sym_BSLASHglsuservi] = ACTIONS(5061), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), + [anon_sym_BSLASHnewacronym] = ACTIONS(5061), + [anon_sym_BSLASHacrshort] = ACTIONS(5061), + [anon_sym_BSLASHAcrshort] = ACTIONS(5061), + [anon_sym_BSLASHACRshort] = ACTIONS(5061), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), + [anon_sym_BSLASHacrlong] = ACTIONS(5061), + [anon_sym_BSLASHAcrlong] = ACTIONS(5061), + [anon_sym_BSLASHACRlong] = ACTIONS(5061), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), + [anon_sym_BSLASHacrfull] = ACTIONS(5061), + [anon_sym_BSLASHAcrfull] = ACTIONS(5061), + [anon_sym_BSLASHACRfull] = ACTIONS(5061), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), + [anon_sym_BSLASHacs] = ACTIONS(5061), + [anon_sym_BSLASHAcs] = ACTIONS(5061), + [anon_sym_BSLASHacsp] = ACTIONS(5061), + [anon_sym_BSLASHAcsp] = ACTIONS(5061), + [anon_sym_BSLASHacl] = ACTIONS(5061), + [anon_sym_BSLASHAcl] = ACTIONS(5061), + [anon_sym_BSLASHaclp] = ACTIONS(5061), + [anon_sym_BSLASHAclp] = ACTIONS(5061), + [anon_sym_BSLASHacf] = ACTIONS(5061), + [anon_sym_BSLASHAcf] = ACTIONS(5061), + [anon_sym_BSLASHacfp] = ACTIONS(5061), + [anon_sym_BSLASHAcfp] = ACTIONS(5061), + [anon_sym_BSLASHac] = ACTIONS(5061), + [anon_sym_BSLASHAc] = ACTIONS(5061), + [anon_sym_BSLASHacp] = ACTIONS(5061), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), + [anon_sym_BSLASHcolor] = ACTIONS(5061), + [anon_sym_BSLASHcolorbox] = ACTIONS(5061), + [anon_sym_BSLASHtextcolor] = ACTIONS(5061), + [anon_sym_BSLASHpagecolor] = ACTIONS(5061), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [anon_sym_BSLASHtext] = ACTIONS(5061), + [anon_sym_BSLASHintertext] = ACTIONS(5061), + [anon_sym_shortintertext] = ACTIONS(5061), }, - [1299] = { - [sym_command_name] = ACTIONS(4923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4923), - [anon_sym_BSLASHfi] = ACTIONS(5435), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_RPAREN] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_RBRACK] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4921), - [anon_sym_EQ] = ACTIONS(4921), - [anon_sym_LBRACE] = ACTIONS(4921), - [sym_word] = ACTIONS(4923), - [sym_placeholder] = ACTIONS(4921), - [anon_sym_PLUS] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_STAR] = ACTIONS(4923), - [anon_sym_SLASH] = ACTIONS(4923), - [anon_sym_CARET] = ACTIONS(4923), - [anon_sym__] = ACTIONS(4923), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_BANG] = ACTIONS(4923), - [anon_sym_PIPE] = ACTIONS(4923), - [anon_sym_COLON] = ACTIONS(4923), - [anon_sym_SQUOTE] = ACTIONS(4923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4921), - [anon_sym_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4921), - [anon_sym_BSLASHbegin] = ACTIONS(4923), - [anon_sym_BSLASHusepackage] = ACTIONS(4923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4923), - [anon_sym_BSLASHinclude] = ACTIONS(4923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4923), - [anon_sym_BSLASHinput] = ACTIONS(4923), - [anon_sym_BSLASHsubfile] = ACTIONS(4923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4923), - [anon_sym_BSLASHbibliography] = ACTIONS(4923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4923), - [anon_sym_BSLASHincludesvg] = ACTIONS(4923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4923), - [anon_sym_BSLASHimport] = ACTIONS(4923), - [anon_sym_BSLASHsubimport] = ACTIONS(4923), - [anon_sym_BSLASHinputfrom] = ACTIONS(4923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4923), - [anon_sym_BSLASHincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHcaption] = ACTIONS(4923), - [anon_sym_BSLASHcite] = ACTIONS(4923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCite] = ACTIONS(4923), - [anon_sym_BSLASHnocite] = ACTIONS(4923), - [anon_sym_BSLASHcitet] = ACTIONS(4923), - [anon_sym_BSLASHcitep] = ACTIONS(4923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteyear] = ACTIONS(4923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitedate] = ACTIONS(4923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteurl] = ACTIONS(4923), - [anon_sym_BSLASHfullcite] = ACTIONS(4923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4923), - [anon_sym_BSLASHcitealt] = ACTIONS(4923), - [anon_sym_BSLASHcitealp] = ACTIONS(4923), - [anon_sym_BSLASHcitetext] = ACTIONS(4923), - [anon_sym_BSLASHparencite] = ACTIONS(4923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHParencite] = ACTIONS(4923), - [anon_sym_BSLASHfootcite] = ACTIONS(4923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4923), - [anon_sym_BSLASHtextcite] = ACTIONS(4923), - [anon_sym_BSLASHTextcite] = ACTIONS(4923), - [anon_sym_BSLASHsmartcite] = ACTIONS(4923), - [anon_sym_BSLASHSmartcite] = ACTIONS(4923), - [anon_sym_BSLASHsupercite] = ACTIONS(4923), - [anon_sym_BSLASHautocite] = ACTIONS(4923), - [anon_sym_BSLASHAutocite] = ACTIONS(4923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHvolcite] = ACTIONS(4923), - [anon_sym_BSLASHVolcite] = ACTIONS(4923), - [anon_sym_BSLASHpvolcite] = ACTIONS(4923), - [anon_sym_BSLASHPvolcite] = ACTIONS(4923), - [anon_sym_BSLASHfvolcite] = ACTIONS(4923), - [anon_sym_BSLASHftvolcite] = ACTIONS(4923), - [anon_sym_BSLASHsvolcite] = ACTIONS(4923), - [anon_sym_BSLASHSvolcite] = ACTIONS(4923), - [anon_sym_BSLASHtvolcite] = ACTIONS(4923), - [anon_sym_BSLASHTvolcite] = ACTIONS(4923), - [anon_sym_BSLASHavolcite] = ACTIONS(4923), - [anon_sym_BSLASHAvolcite] = ACTIONS(4923), - [anon_sym_BSLASHnotecite] = ACTIONS(4923), - [anon_sym_BSLASHNotecite] = ACTIONS(4923), - [anon_sym_BSLASHpnotecite] = ACTIONS(4923), - [anon_sym_BSLASHPnotecite] = ACTIONS(4923), - [anon_sym_BSLASHfnotecite] = ACTIONS(4923), - [anon_sym_BSLASHlabel] = ACTIONS(4923), - [anon_sym_BSLASHref] = ACTIONS(4923), - [anon_sym_BSLASHeqref] = ACTIONS(4923), - [anon_sym_BSLASHvref] = ACTIONS(4923), - [anon_sym_BSLASHVref] = ACTIONS(4923), - [anon_sym_BSLASHautoref] = ACTIONS(4923), - [anon_sym_BSLASHpageref] = ACTIONS(4923), - [anon_sym_BSLASHcref] = ACTIONS(4923), - [anon_sym_BSLASHCref] = ACTIONS(4923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnameCref] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHlabelcref] = ACTIONS(4923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnewlabel] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4921), - [anon_sym_BSLASHdef] = ACTIONS(4923), - [anon_sym_BSLASHlet] = ACTIONS(4923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4923), - [anon_sym_BSLASHgls] = ACTIONS(4923), - [anon_sym_BSLASHGls] = ACTIONS(4923), - [anon_sym_BSLASHGLS] = ACTIONS(4923), - [anon_sym_BSLASHglspl] = ACTIONS(4923), - [anon_sym_BSLASHGlspl] = ACTIONS(4923), - [anon_sym_BSLASHGLSpl] = ACTIONS(4923), - [anon_sym_BSLASHglsdisp] = ACTIONS(4923), - [anon_sym_BSLASHglslink] = ACTIONS(4923), - [anon_sym_BSLASHglstext] = ACTIONS(4923), - [anon_sym_BSLASHGlstext] = ACTIONS(4923), - [anon_sym_BSLASHGLStext] = ACTIONS(4923), - [anon_sym_BSLASHglsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4923), - [anon_sym_BSLASHglsplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSplural] = ACTIONS(4923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHglsname] = ACTIONS(4923), - [anon_sym_BSLASHGlsname] = ACTIONS(4923), - [anon_sym_BSLASHGLSname] = ACTIONS(4923), - [anon_sym_BSLASHglssymbol] = ACTIONS(4923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4923), - [anon_sym_BSLASHglsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4923), - [anon_sym_BSLASHglsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4923), - [anon_sym_BSLASHglsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4923), - [anon_sym_BSLASHglsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4923), - [anon_sym_BSLASHglsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4923), - [anon_sym_BSLASHnewacronym] = ACTIONS(4923), - [anon_sym_BSLASHacrshort] = ACTIONS(4923), - [anon_sym_BSLASHAcrshort] = ACTIONS(4923), - [anon_sym_BSLASHACRshort] = ACTIONS(4923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4923), - [anon_sym_BSLASHacrlong] = ACTIONS(4923), - [anon_sym_BSLASHAcrlong] = ACTIONS(4923), - [anon_sym_BSLASHACRlong] = ACTIONS(4923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4923), - [anon_sym_BSLASHacrfull] = ACTIONS(4923), - [anon_sym_BSLASHAcrfull] = ACTIONS(4923), - [anon_sym_BSLASHACRfull] = ACTIONS(4923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4923), - [anon_sym_BSLASHacs] = ACTIONS(4923), - [anon_sym_BSLASHAcs] = ACTIONS(4923), - [anon_sym_BSLASHacsp] = ACTIONS(4923), - [anon_sym_BSLASHAcsp] = ACTIONS(4923), - [anon_sym_BSLASHacl] = ACTIONS(4923), - [anon_sym_BSLASHAcl] = ACTIONS(4923), - [anon_sym_BSLASHaclp] = ACTIONS(4923), - [anon_sym_BSLASHAclp] = ACTIONS(4923), - [anon_sym_BSLASHacf] = ACTIONS(4923), - [anon_sym_BSLASHAcf] = ACTIONS(4923), - [anon_sym_BSLASHacfp] = ACTIONS(4923), - [anon_sym_BSLASHAcfp] = ACTIONS(4923), - [anon_sym_BSLASHac] = ACTIONS(4923), - [anon_sym_BSLASHAc] = ACTIONS(4923), - [anon_sym_BSLASHacp] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4923), - [anon_sym_BSLASHcolor] = ACTIONS(4923), - [anon_sym_BSLASHcolorbox] = ACTIONS(4923), - [anon_sym_BSLASHtextcolor] = ACTIONS(4923), - [anon_sym_BSLASHpagecolor] = ACTIONS(4923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4923), + [1168] = { + [sym_command_name] = ACTIONS(4883), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4883), + [anon_sym_LPAREN] = ACTIONS(4881), + [anon_sym_RPAREN] = ACTIONS(4881), + [anon_sym_LBRACK] = ACTIONS(4881), + [anon_sym_RBRACK] = ACTIONS(4881), + [anon_sym_COMMA] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(4881), + [anon_sym_BSLASHpart] = ACTIONS(4883), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddpart] = ACTIONS(4883), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4881), + [anon_sym_BSLASHchapter] = ACTIONS(4883), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddchap] = ACTIONS(4883), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsection] = ACTIONS(4883), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHaddsec] = ACTIONS(4883), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubsection] = ACTIONS(4883), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4883), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4881), + [anon_sym_BSLASHparagraph] = ACTIONS(4883), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4881), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4883), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4881), + [anon_sym_BSLASHitem] = ACTIONS(4883), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4881), + [anon_sym_LBRACE] = ACTIONS(4881), + [sym_word] = ACTIONS(4883), + [sym_placeholder] = ACTIONS(4881), + [anon_sym_PLUS] = ACTIONS(4883), + [anon_sym_DASH] = ACTIONS(4883), + [anon_sym_STAR] = ACTIONS(4883), + [anon_sym_SLASH] = ACTIONS(4883), + [anon_sym_CARET] = ACTIONS(4883), + [anon_sym__] = ACTIONS(4883), + [anon_sym_LT] = ACTIONS(4883), + [anon_sym_GT] = ACTIONS(4883), + [anon_sym_BANG] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4883), + [anon_sym_COLON] = ACTIONS(4883), + [anon_sym_SQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4881), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4881), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4881), + [anon_sym_DOLLAR] = ACTIONS(4883), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4881), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4881), + [anon_sym_BSLASHbegin] = ACTIONS(4883), + [anon_sym_BSLASHusepackage] = ACTIONS(4883), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4883), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4883), + [anon_sym_BSLASHinclude] = ACTIONS(4883), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4883), + [anon_sym_BSLASHinput] = ACTIONS(4883), + [anon_sym_BSLASHsubfile] = ACTIONS(4883), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4883), + [anon_sym_BSLASHbibliography] = ACTIONS(4883), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4883), + [anon_sym_BSLASHincludesvg] = ACTIONS(4883), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4883), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4883), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4883), + [anon_sym_BSLASHimport] = ACTIONS(4883), + [anon_sym_BSLASHsubimport] = ACTIONS(4883), + [anon_sym_BSLASHinputfrom] = ACTIONS(4883), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4883), + [anon_sym_BSLASHincludefrom] = ACTIONS(4883), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4883), + [anon_sym_BSLASHcaption] = ACTIONS(4883), + [anon_sym_BSLASHcite] = ACTIONS(4883), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCite] = ACTIONS(4883), + [anon_sym_BSLASHnocite] = ACTIONS(4883), + [anon_sym_BSLASHcitet] = ACTIONS(4883), + [anon_sym_BSLASHcitep] = ACTIONS(4883), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteauthor] = ACTIONS(4883), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4883), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitetitle] = ACTIONS(4883), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteyear] = ACTIONS(4883), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4881), + [anon_sym_BSLASHcitedate] = ACTIONS(4883), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4881), + [anon_sym_BSLASHciteurl] = ACTIONS(4883), + [anon_sym_BSLASHfullcite] = ACTIONS(4883), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4883), + [anon_sym_BSLASHcitealt] = ACTIONS(4883), + [anon_sym_BSLASHcitealp] = ACTIONS(4883), + [anon_sym_BSLASHcitetext] = ACTIONS(4883), + [anon_sym_BSLASHparencite] = ACTIONS(4883), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHParencite] = ACTIONS(4883), + [anon_sym_BSLASHfootcite] = ACTIONS(4883), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4883), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4883), + [anon_sym_BSLASHtextcite] = ACTIONS(4883), + [anon_sym_BSLASHTextcite] = ACTIONS(4883), + [anon_sym_BSLASHsmartcite] = ACTIONS(4883), + [anon_sym_BSLASHSmartcite] = ACTIONS(4883), + [anon_sym_BSLASHsupercite] = ACTIONS(4883), + [anon_sym_BSLASHautocite] = ACTIONS(4883), + [anon_sym_BSLASHAutocite] = ACTIONS(4883), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4881), + [anon_sym_BSLASHvolcite] = ACTIONS(4883), + [anon_sym_BSLASHVolcite] = ACTIONS(4883), + [anon_sym_BSLASHpvolcite] = ACTIONS(4883), + [anon_sym_BSLASHPvolcite] = ACTIONS(4883), + [anon_sym_BSLASHfvolcite] = ACTIONS(4883), + [anon_sym_BSLASHftvolcite] = ACTIONS(4883), + [anon_sym_BSLASHsvolcite] = ACTIONS(4883), + [anon_sym_BSLASHSvolcite] = ACTIONS(4883), + [anon_sym_BSLASHtvolcite] = ACTIONS(4883), + [anon_sym_BSLASHTvolcite] = ACTIONS(4883), + [anon_sym_BSLASHavolcite] = ACTIONS(4883), + [anon_sym_BSLASHAvolcite] = ACTIONS(4883), + [anon_sym_BSLASHnotecite] = ACTIONS(4883), + [anon_sym_BSLASHNotecite] = ACTIONS(4883), + [anon_sym_BSLASHpnotecite] = ACTIONS(4883), + [anon_sym_BSLASHPnotecite] = ACTIONS(4883), + [anon_sym_BSLASHfnotecite] = ACTIONS(4883), + [anon_sym_BSLASHlabel] = ACTIONS(4883), + [anon_sym_BSLASHref] = ACTIONS(4883), + [anon_sym_BSLASHeqref] = ACTIONS(4883), + [anon_sym_BSLASHvref] = ACTIONS(4883), + [anon_sym_BSLASHVref] = ACTIONS(4883), + [anon_sym_BSLASHautoref] = ACTIONS(4883), + [anon_sym_BSLASHpageref] = ACTIONS(4883), + [anon_sym_BSLASHcref] = ACTIONS(4883), + [anon_sym_BSLASHCref] = ACTIONS(4883), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4881), + [anon_sym_BSLASHnamecref] = ACTIONS(4883), + [anon_sym_BSLASHnameCref] = ACTIONS(4883), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4883), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4883), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4883), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4883), + [anon_sym_BSLASHlabelcref] = ACTIONS(4883), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4883), + [anon_sym_BSLASHcrefrange] = ACTIONS(4883), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4881), + [anon_sym_BSLASHCrefrange] = ACTIONS(4883), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4881), + [anon_sym_BSLASHnewlabel] = ACTIONS(4883), + [anon_sym_BSLASHnewcommand] = ACTIONS(4883), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4883), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4883), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4881), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4883), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4881), + [anon_sym_BSLASHdef] = ACTIONS(4883), + [anon_sym_BSLASHlet] = ACTIONS(4883), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4883), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4883), + [anon_sym_BSLASHgls] = ACTIONS(4883), + [anon_sym_BSLASHGls] = ACTIONS(4883), + [anon_sym_BSLASHGLS] = ACTIONS(4883), + [anon_sym_BSLASHglspl] = ACTIONS(4883), + [anon_sym_BSLASHGlspl] = ACTIONS(4883), + [anon_sym_BSLASHGLSpl] = ACTIONS(4883), + [anon_sym_BSLASHglsdisp] = ACTIONS(4883), + [anon_sym_BSLASHglslink] = ACTIONS(4883), + [anon_sym_BSLASHglstext] = ACTIONS(4883), + [anon_sym_BSLASHGlstext] = ACTIONS(4883), + [anon_sym_BSLASHGLStext] = ACTIONS(4883), + [anon_sym_BSLASHglsfirst] = ACTIONS(4883), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4883), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4883), + [anon_sym_BSLASHglsplural] = ACTIONS(4883), + [anon_sym_BSLASHGlsplural] = ACTIONS(4883), + [anon_sym_BSLASHGLSplural] = ACTIONS(4883), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4883), + [anon_sym_BSLASHglsname] = ACTIONS(4883), + [anon_sym_BSLASHGlsname] = ACTIONS(4883), + [anon_sym_BSLASHGLSname] = ACTIONS(4883), + [anon_sym_BSLASHglssymbol] = ACTIONS(4883), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4883), + [anon_sym_BSLASHglsdesc] = ACTIONS(4883), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4883), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4883), + [anon_sym_BSLASHglsuseri] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4883), + [anon_sym_BSLASHglsuserii] = ACTIONS(4883), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4883), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4883), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4883), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4883), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4883), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4883), + [anon_sym_BSLASHglsuserv] = ACTIONS(4883), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4883), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4883), + [anon_sym_BSLASHglsuservi] = ACTIONS(4883), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4883), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4883), + [anon_sym_BSLASHnewacronym] = ACTIONS(4883), + [anon_sym_BSLASHacrshort] = ACTIONS(4883), + [anon_sym_BSLASHAcrshort] = ACTIONS(4883), + [anon_sym_BSLASHACRshort] = ACTIONS(4883), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4883), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4883), + [anon_sym_BSLASHacrlong] = ACTIONS(4883), + [anon_sym_BSLASHAcrlong] = ACTIONS(4883), + [anon_sym_BSLASHACRlong] = ACTIONS(4883), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4883), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4883), + [anon_sym_BSLASHacrfull] = ACTIONS(4883), + [anon_sym_BSLASHAcrfull] = ACTIONS(4883), + [anon_sym_BSLASHACRfull] = ACTIONS(4883), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4883), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4883), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4883), + [anon_sym_BSLASHacs] = ACTIONS(4883), + [anon_sym_BSLASHAcs] = ACTIONS(4883), + [anon_sym_BSLASHacsp] = ACTIONS(4883), + [anon_sym_BSLASHAcsp] = ACTIONS(4883), + [anon_sym_BSLASHacl] = ACTIONS(4883), + [anon_sym_BSLASHAcl] = ACTIONS(4883), + [anon_sym_BSLASHaclp] = ACTIONS(4883), + [anon_sym_BSLASHAclp] = ACTIONS(4883), + [anon_sym_BSLASHacf] = ACTIONS(4883), + [anon_sym_BSLASHAcf] = ACTIONS(4883), + [anon_sym_BSLASHacfp] = ACTIONS(4883), + [anon_sym_BSLASHAcfp] = ACTIONS(4883), + [anon_sym_BSLASHac] = ACTIONS(4883), + [anon_sym_BSLASHAc] = ACTIONS(4883), + [anon_sym_BSLASHacp] = ACTIONS(4883), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4883), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4883), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4883), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4883), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4883), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4883), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4883), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4883), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4883), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4883), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4883), + [anon_sym_BSLASHcolor] = ACTIONS(4883), + [anon_sym_BSLASHcolorbox] = ACTIONS(4883), + [anon_sym_BSLASHtextcolor] = ACTIONS(4883), + [anon_sym_BSLASHpagecolor] = ACTIONS(4883), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4883), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4883), + [anon_sym_BSLASHtext] = ACTIONS(4883), + [anon_sym_BSLASHintertext] = ACTIONS(4883), + [anon_sym_shortintertext] = ACTIONS(4883), }, - [1300] = { - [sym_curly_group] = STATE(1375), - [sym_brack_group_text] = STATE(2214), - [sym_command_name] = ACTIONS(4587), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(4585), - [anon_sym_RPAREN] = ACTIONS(4585), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4585), - [anon_sym_COMMA] = ACTIONS(4585), - [anon_sym_LBRACE] = ACTIONS(3663), - [anon_sym_RBRACE] = ACTIONS(4585), - [sym_word] = ACTIONS(4587), - [sym_placeholder] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_CARET] = ACTIONS(4587), - [anon_sym__] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4585), - [anon_sym_DOLLAR] = ACTIONS(4587), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4585), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4585), - [anon_sym_BSLASHusepackage] = ACTIONS(4587), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4587), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4587), - [anon_sym_BSLASHinclude] = ACTIONS(4587), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4587), - [anon_sym_BSLASHinput] = ACTIONS(4587), - [anon_sym_BSLASHsubfile] = ACTIONS(4587), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4587), - [anon_sym_BSLASHbibliography] = ACTIONS(4587), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4587), - [anon_sym_BSLASHincludesvg] = ACTIONS(4587), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4587), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4587), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4587), - [anon_sym_BSLASHimport] = ACTIONS(4587), - [anon_sym_BSLASHsubimport] = ACTIONS(4587), - [anon_sym_BSLASHinputfrom] = ACTIONS(4587), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4587), - [anon_sym_BSLASHincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHcaption] = ACTIONS(4587), - [anon_sym_BSLASHcite] = ACTIONS(4587), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCite] = ACTIONS(4587), - [anon_sym_BSLASHnocite] = ACTIONS(4587), - [anon_sym_BSLASHcitet] = ACTIONS(4587), - [anon_sym_BSLASHcitep] = ACTIONS(4587), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteauthor] = ACTIONS(4587), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4587), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitetitle] = ACTIONS(4587), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteyear] = ACTIONS(4587), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitedate] = ACTIONS(4587), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteurl] = ACTIONS(4587), - [anon_sym_BSLASHfullcite] = ACTIONS(4587), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4587), - [anon_sym_BSLASHcitealt] = ACTIONS(4587), - [anon_sym_BSLASHcitealp] = ACTIONS(4587), - [anon_sym_BSLASHcitetext] = ACTIONS(4587), - [anon_sym_BSLASHparencite] = ACTIONS(4587), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHParencite] = ACTIONS(4587), - [anon_sym_BSLASHfootcite] = ACTIONS(4587), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4587), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4587), - [anon_sym_BSLASHtextcite] = ACTIONS(4587), - [anon_sym_BSLASHTextcite] = ACTIONS(4587), - [anon_sym_BSLASHsmartcite] = ACTIONS(4587), - [anon_sym_BSLASHSmartcite] = ACTIONS(4587), - [anon_sym_BSLASHsupercite] = ACTIONS(4587), - [anon_sym_BSLASHautocite] = ACTIONS(4587), - [anon_sym_BSLASHAutocite] = ACTIONS(4587), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHvolcite] = ACTIONS(4587), - [anon_sym_BSLASHVolcite] = ACTIONS(4587), - [anon_sym_BSLASHpvolcite] = ACTIONS(4587), - [anon_sym_BSLASHPvolcite] = ACTIONS(4587), - [anon_sym_BSLASHfvolcite] = ACTIONS(4587), - [anon_sym_BSLASHftvolcite] = ACTIONS(4587), - [anon_sym_BSLASHsvolcite] = ACTIONS(4587), - [anon_sym_BSLASHSvolcite] = ACTIONS(4587), - [anon_sym_BSLASHtvolcite] = ACTIONS(4587), - [anon_sym_BSLASHTvolcite] = ACTIONS(4587), - [anon_sym_BSLASHavolcite] = ACTIONS(4587), - [anon_sym_BSLASHAvolcite] = ACTIONS(4587), - [anon_sym_BSLASHnotecite] = ACTIONS(4587), - [anon_sym_BSLASHNotecite] = ACTIONS(4587), - [anon_sym_BSLASHpnotecite] = ACTIONS(4587), - [anon_sym_BSLASHPnotecite] = ACTIONS(4587), - [anon_sym_BSLASHfnotecite] = ACTIONS(4587), - [anon_sym_BSLASHlabel] = ACTIONS(4587), - [anon_sym_BSLASHref] = ACTIONS(4587), - [anon_sym_BSLASHeqref] = ACTIONS(4587), - [anon_sym_BSLASHvref] = ACTIONS(4587), - [anon_sym_BSLASHVref] = ACTIONS(4587), - [anon_sym_BSLASHautoref] = ACTIONS(4587), - [anon_sym_BSLASHpageref] = ACTIONS(4587), - [anon_sym_BSLASHcref] = ACTIONS(4587), - [anon_sym_BSLASHCref] = ACTIONS(4587), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnameCref] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHlabelcref] = ACTIONS(4587), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCrefrange] = ACTIONS(4587), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnewlabel] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4587), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4587), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4587), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4585), - [anon_sym_BSLASHdef] = ACTIONS(4587), - [anon_sym_BSLASHlet] = ACTIONS(4587), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4587), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4587), - [anon_sym_BSLASHGls] = ACTIONS(4587), - [anon_sym_BSLASHGLS] = ACTIONS(4587), - [anon_sym_BSLASHglspl] = ACTIONS(4587), - [anon_sym_BSLASHGlspl] = ACTIONS(4587), - [anon_sym_BSLASHGLSpl] = ACTIONS(4587), - [anon_sym_BSLASHglsdisp] = ACTIONS(4587), - [anon_sym_BSLASHglslink] = ACTIONS(4587), - [anon_sym_BSLASHglstext] = ACTIONS(4587), - [anon_sym_BSLASHGlstext] = ACTIONS(4587), - [anon_sym_BSLASHGLStext] = ACTIONS(4587), - [anon_sym_BSLASHglsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4587), - [anon_sym_BSLASHglsplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSplural] = ACTIONS(4587), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHglsname] = ACTIONS(4587), - [anon_sym_BSLASHGlsname] = ACTIONS(4587), - [anon_sym_BSLASHGLSname] = ACTIONS(4587), - [anon_sym_BSLASHglssymbol] = ACTIONS(4587), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4587), - [anon_sym_BSLASHglsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4587), - [anon_sym_BSLASHglsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4587), - [anon_sym_BSLASHglsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4587), - [anon_sym_BSLASHglsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4587), - [anon_sym_BSLASHglsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4587), - [anon_sym_BSLASHnewacronym] = ACTIONS(4587), - [anon_sym_BSLASHacrshort] = ACTIONS(4587), - [anon_sym_BSLASHAcrshort] = ACTIONS(4587), - [anon_sym_BSLASHACRshort] = ACTIONS(4587), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4587), - [anon_sym_BSLASHacrlong] = ACTIONS(4587), - [anon_sym_BSLASHAcrlong] = ACTIONS(4587), - [anon_sym_BSLASHACRlong] = ACTIONS(4587), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4587), - [anon_sym_BSLASHacrfull] = ACTIONS(4587), - [anon_sym_BSLASHAcrfull] = ACTIONS(4587), - [anon_sym_BSLASHACRfull] = ACTIONS(4587), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4587), - [anon_sym_BSLASHacs] = ACTIONS(4587), - [anon_sym_BSLASHAcs] = ACTIONS(4587), - [anon_sym_BSLASHacsp] = ACTIONS(4587), - [anon_sym_BSLASHAcsp] = ACTIONS(4587), - [anon_sym_BSLASHacl] = ACTIONS(4587), - [anon_sym_BSLASHAcl] = ACTIONS(4587), - [anon_sym_BSLASHaclp] = ACTIONS(4587), - [anon_sym_BSLASHAclp] = ACTIONS(4587), - [anon_sym_BSLASHacf] = ACTIONS(4587), - [anon_sym_BSLASHAcf] = ACTIONS(4587), - [anon_sym_BSLASHacfp] = ACTIONS(4587), - [anon_sym_BSLASHAcfp] = ACTIONS(4587), - [anon_sym_BSLASHac] = ACTIONS(4587), - [anon_sym_BSLASHAc] = ACTIONS(4587), - [anon_sym_BSLASHacp] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4587), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4587), - [anon_sym_BSLASHcolor] = ACTIONS(4587), - [anon_sym_BSLASHcolorbox] = ACTIONS(4587), - [anon_sym_BSLASHtextcolor] = ACTIONS(4587), - [anon_sym_BSLASHpagecolor] = ACTIONS(4587), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4587), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4587), + [1169] = { + [sym_command_name] = ACTIONS(5069), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5069), + [anon_sym_LPAREN] = ACTIONS(5067), + [anon_sym_RPAREN] = ACTIONS(5067), + [anon_sym_LBRACK] = ACTIONS(5067), + [anon_sym_RBRACK] = ACTIONS(5067), + [anon_sym_COMMA] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(5067), + [anon_sym_BSLASHpart] = ACTIONS(5069), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddpart] = ACTIONS(5069), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5067), + [anon_sym_BSLASHchapter] = ACTIONS(5069), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddchap] = ACTIONS(5069), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsection] = ACTIONS(5069), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHaddsec] = ACTIONS(5069), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubsection] = ACTIONS(5069), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5069), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5067), + [anon_sym_BSLASHparagraph] = ACTIONS(5069), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5067), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5069), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5067), + [anon_sym_BSLASHitem] = ACTIONS(5069), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5067), + [anon_sym_LBRACE] = ACTIONS(5067), + [sym_word] = ACTIONS(5069), + [sym_placeholder] = ACTIONS(5067), + [anon_sym_PLUS] = ACTIONS(5069), + [anon_sym_DASH] = ACTIONS(5069), + [anon_sym_STAR] = ACTIONS(5069), + [anon_sym_SLASH] = ACTIONS(5069), + [anon_sym_CARET] = ACTIONS(5069), + [anon_sym__] = ACTIONS(5069), + [anon_sym_LT] = ACTIONS(5069), + [anon_sym_GT] = ACTIONS(5069), + [anon_sym_BANG] = ACTIONS(5069), + [anon_sym_PIPE] = ACTIONS(5069), + [anon_sym_COLON] = ACTIONS(5069), + [anon_sym_SQUOTE] = ACTIONS(5069), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5067), + [anon_sym_DOLLAR] = ACTIONS(5069), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), + [anon_sym_BSLASHbegin] = ACTIONS(5069), + [anon_sym_BSLASHusepackage] = ACTIONS(5069), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), + [anon_sym_BSLASHinclude] = ACTIONS(5069), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), + [anon_sym_BSLASHinput] = ACTIONS(5069), + [anon_sym_BSLASHsubfile] = ACTIONS(5069), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), + [anon_sym_BSLASHbibliography] = ACTIONS(5069), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), + [anon_sym_BSLASHincludesvg] = ACTIONS(5069), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), + [anon_sym_BSLASHimport] = ACTIONS(5069), + [anon_sym_BSLASHsubimport] = ACTIONS(5069), + [anon_sym_BSLASHinputfrom] = ACTIONS(5069), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), + [anon_sym_BSLASHincludefrom] = ACTIONS(5069), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), + [anon_sym_BSLASHcaption] = ACTIONS(5069), + [anon_sym_BSLASHcite] = ACTIONS(5069), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCite] = ACTIONS(5069), + [anon_sym_BSLASHnocite] = ACTIONS(5069), + [anon_sym_BSLASHcitet] = ACTIONS(5069), + [anon_sym_BSLASHcitep] = ACTIONS(5069), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteauthor] = ACTIONS(5069), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitetitle] = ACTIONS(5069), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteyear] = ACTIONS(5069), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), + [anon_sym_BSLASHcitedate] = ACTIONS(5069), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), + [anon_sym_BSLASHciteurl] = ACTIONS(5069), + [anon_sym_BSLASHfullcite] = ACTIONS(5069), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), + [anon_sym_BSLASHcitealt] = ACTIONS(5069), + [anon_sym_BSLASHcitealp] = ACTIONS(5069), + [anon_sym_BSLASHcitetext] = ACTIONS(5069), + [anon_sym_BSLASHparencite] = ACTIONS(5069), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHParencite] = ACTIONS(5069), + [anon_sym_BSLASHfootcite] = ACTIONS(5069), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), + [anon_sym_BSLASHtextcite] = ACTIONS(5069), + [anon_sym_BSLASHTextcite] = ACTIONS(5069), + [anon_sym_BSLASHsmartcite] = ACTIONS(5069), + [anon_sym_BSLASHSmartcite] = ACTIONS(5069), + [anon_sym_BSLASHsupercite] = ACTIONS(5069), + [anon_sym_BSLASHautocite] = ACTIONS(5069), + [anon_sym_BSLASHAutocite] = ACTIONS(5069), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), + [anon_sym_BSLASHvolcite] = ACTIONS(5069), + [anon_sym_BSLASHVolcite] = ACTIONS(5069), + [anon_sym_BSLASHpvolcite] = ACTIONS(5069), + [anon_sym_BSLASHPvolcite] = ACTIONS(5069), + [anon_sym_BSLASHfvolcite] = ACTIONS(5069), + [anon_sym_BSLASHftvolcite] = ACTIONS(5069), + [anon_sym_BSLASHsvolcite] = ACTIONS(5069), + [anon_sym_BSLASHSvolcite] = ACTIONS(5069), + [anon_sym_BSLASHtvolcite] = ACTIONS(5069), + [anon_sym_BSLASHTvolcite] = ACTIONS(5069), + [anon_sym_BSLASHavolcite] = ACTIONS(5069), + [anon_sym_BSLASHAvolcite] = ACTIONS(5069), + [anon_sym_BSLASHnotecite] = ACTIONS(5069), + [anon_sym_BSLASHNotecite] = ACTIONS(5069), + [anon_sym_BSLASHpnotecite] = ACTIONS(5069), + [anon_sym_BSLASHPnotecite] = ACTIONS(5069), + [anon_sym_BSLASHfnotecite] = ACTIONS(5069), + [anon_sym_BSLASHlabel] = ACTIONS(5069), + [anon_sym_BSLASHref] = ACTIONS(5069), + [anon_sym_BSLASHeqref] = ACTIONS(5069), + [anon_sym_BSLASHvref] = ACTIONS(5069), + [anon_sym_BSLASHVref] = ACTIONS(5069), + [anon_sym_BSLASHautoref] = ACTIONS(5069), + [anon_sym_BSLASHpageref] = ACTIONS(5069), + [anon_sym_BSLASHcref] = ACTIONS(5069), + [anon_sym_BSLASHCref] = ACTIONS(5069), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), + [anon_sym_BSLASHnamecref] = ACTIONS(5069), + [anon_sym_BSLASHnameCref] = ACTIONS(5069), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), + [anon_sym_BSLASHlabelcref] = ACTIONS(5069), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), + [anon_sym_BSLASHcrefrange] = ACTIONS(5069), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), + [anon_sym_BSLASHCrefrange] = ACTIONS(5069), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), + [anon_sym_BSLASHnewlabel] = ACTIONS(5069), + [anon_sym_BSLASHnewcommand] = ACTIONS(5069), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), + [anon_sym_BSLASHdef] = ACTIONS(5069), + [anon_sym_BSLASHlet] = ACTIONS(5069), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), + [anon_sym_BSLASHgls] = ACTIONS(5069), + [anon_sym_BSLASHGls] = ACTIONS(5069), + [anon_sym_BSLASHGLS] = ACTIONS(5069), + [anon_sym_BSLASHglspl] = ACTIONS(5069), + [anon_sym_BSLASHGlspl] = ACTIONS(5069), + [anon_sym_BSLASHGLSpl] = ACTIONS(5069), + [anon_sym_BSLASHglsdisp] = ACTIONS(5069), + [anon_sym_BSLASHglslink] = ACTIONS(5069), + [anon_sym_BSLASHglstext] = ACTIONS(5069), + [anon_sym_BSLASHGlstext] = ACTIONS(5069), + [anon_sym_BSLASHGLStext] = ACTIONS(5069), + [anon_sym_BSLASHglsfirst] = ACTIONS(5069), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), + [anon_sym_BSLASHglsplural] = ACTIONS(5069), + [anon_sym_BSLASHGlsplural] = ACTIONS(5069), + [anon_sym_BSLASHGLSplural] = ACTIONS(5069), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), + [anon_sym_BSLASHglsname] = ACTIONS(5069), + [anon_sym_BSLASHGlsname] = ACTIONS(5069), + [anon_sym_BSLASHGLSname] = ACTIONS(5069), + [anon_sym_BSLASHglssymbol] = ACTIONS(5069), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), + [anon_sym_BSLASHglsdesc] = ACTIONS(5069), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), + [anon_sym_BSLASHglsuseri] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), + [anon_sym_BSLASHglsuserii] = ACTIONS(5069), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), + [anon_sym_BSLASHglsuserv] = ACTIONS(5069), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), + [anon_sym_BSLASHglsuservi] = ACTIONS(5069), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), + [anon_sym_BSLASHnewacronym] = ACTIONS(5069), + [anon_sym_BSLASHacrshort] = ACTIONS(5069), + [anon_sym_BSLASHAcrshort] = ACTIONS(5069), + [anon_sym_BSLASHACRshort] = ACTIONS(5069), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), + [anon_sym_BSLASHacrlong] = ACTIONS(5069), + [anon_sym_BSLASHAcrlong] = ACTIONS(5069), + [anon_sym_BSLASHACRlong] = ACTIONS(5069), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), + [anon_sym_BSLASHacrfull] = ACTIONS(5069), + [anon_sym_BSLASHAcrfull] = ACTIONS(5069), + [anon_sym_BSLASHACRfull] = ACTIONS(5069), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), + [anon_sym_BSLASHacs] = ACTIONS(5069), + [anon_sym_BSLASHAcs] = ACTIONS(5069), + [anon_sym_BSLASHacsp] = ACTIONS(5069), + [anon_sym_BSLASHAcsp] = ACTIONS(5069), + [anon_sym_BSLASHacl] = ACTIONS(5069), + [anon_sym_BSLASHAcl] = ACTIONS(5069), + [anon_sym_BSLASHaclp] = ACTIONS(5069), + [anon_sym_BSLASHAclp] = ACTIONS(5069), + [anon_sym_BSLASHacf] = ACTIONS(5069), + [anon_sym_BSLASHAcf] = ACTIONS(5069), + [anon_sym_BSLASHacfp] = ACTIONS(5069), + [anon_sym_BSLASHAcfp] = ACTIONS(5069), + [anon_sym_BSLASHac] = ACTIONS(5069), + [anon_sym_BSLASHAc] = ACTIONS(5069), + [anon_sym_BSLASHacp] = ACTIONS(5069), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), + [anon_sym_BSLASHcolor] = ACTIONS(5069), + [anon_sym_BSLASHcolorbox] = ACTIONS(5069), + [anon_sym_BSLASHtextcolor] = ACTIONS(5069), + [anon_sym_BSLASHpagecolor] = ACTIONS(5069), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), + [anon_sym_BSLASHtext] = ACTIONS(5069), + [anon_sym_BSLASHintertext] = ACTIONS(5069), + [anon_sym_shortintertext] = ACTIONS(5069), }, - [1301] = { - [sym_command_name] = ACTIONS(4697), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4697), - [anon_sym_BSLASHfi] = ACTIONS(5437), - [anon_sym_LPAREN] = ACTIONS(4695), - [anon_sym_RPAREN] = ACTIONS(4695), - [anon_sym_LBRACK] = ACTIONS(4695), - [anon_sym_RBRACK] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_LBRACE] = ACTIONS(4695), - [anon_sym_RBRACE] = ACTIONS(4695), - [sym_word] = ACTIONS(4697), - [sym_placeholder] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_CARET] = ACTIONS(4697), - [anon_sym__] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4697), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4695), - [anon_sym_DOLLAR] = ACTIONS(4697), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4695), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4695), - [anon_sym_BSLASHusepackage] = ACTIONS(4697), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4697), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4697), - [anon_sym_BSLASHinclude] = ACTIONS(4697), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4697), - [anon_sym_BSLASHinput] = ACTIONS(4697), - [anon_sym_BSLASHsubfile] = ACTIONS(4697), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4697), - [anon_sym_BSLASHbibliography] = ACTIONS(4697), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4697), - [anon_sym_BSLASHincludesvg] = ACTIONS(4697), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4697), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4697), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4697), - [anon_sym_BSLASHimport] = ACTIONS(4697), - [anon_sym_BSLASHsubimport] = ACTIONS(4697), - [anon_sym_BSLASHinputfrom] = ACTIONS(4697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4697), - [anon_sym_BSLASHincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHcaption] = ACTIONS(4697), - [anon_sym_BSLASHcite] = ACTIONS(4697), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCite] = ACTIONS(4697), - [anon_sym_BSLASHnocite] = ACTIONS(4697), - [anon_sym_BSLASHcitet] = ACTIONS(4697), - [anon_sym_BSLASHcitep] = ACTIONS(4697), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteyear] = ACTIONS(4697), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitedate] = ACTIONS(4697), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteurl] = ACTIONS(4697), - [anon_sym_BSLASHfullcite] = ACTIONS(4697), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4697), - [anon_sym_BSLASHcitealt] = ACTIONS(4697), - [anon_sym_BSLASHcitealp] = ACTIONS(4697), - [anon_sym_BSLASHcitetext] = ACTIONS(4697), - [anon_sym_BSLASHparencite] = ACTIONS(4697), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHParencite] = ACTIONS(4697), - [anon_sym_BSLASHfootcite] = ACTIONS(4697), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4697), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4697), - [anon_sym_BSLASHtextcite] = ACTIONS(4697), - [anon_sym_BSLASHTextcite] = ACTIONS(4697), - [anon_sym_BSLASHsmartcite] = ACTIONS(4697), - [anon_sym_BSLASHSmartcite] = ACTIONS(4697), - [anon_sym_BSLASHsupercite] = ACTIONS(4697), - [anon_sym_BSLASHautocite] = ACTIONS(4697), - [anon_sym_BSLASHAutocite] = ACTIONS(4697), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHvolcite] = ACTIONS(4697), - [anon_sym_BSLASHVolcite] = ACTIONS(4697), - [anon_sym_BSLASHpvolcite] = ACTIONS(4697), - [anon_sym_BSLASHPvolcite] = ACTIONS(4697), - [anon_sym_BSLASHfvolcite] = ACTIONS(4697), - [anon_sym_BSLASHftvolcite] = ACTIONS(4697), - [anon_sym_BSLASHsvolcite] = ACTIONS(4697), - [anon_sym_BSLASHSvolcite] = ACTIONS(4697), - [anon_sym_BSLASHtvolcite] = ACTIONS(4697), - [anon_sym_BSLASHTvolcite] = ACTIONS(4697), - [anon_sym_BSLASHavolcite] = ACTIONS(4697), - [anon_sym_BSLASHAvolcite] = ACTIONS(4697), - [anon_sym_BSLASHnotecite] = ACTIONS(4697), - [anon_sym_BSLASHNotecite] = ACTIONS(4697), - [anon_sym_BSLASHpnotecite] = ACTIONS(4697), - [anon_sym_BSLASHPnotecite] = ACTIONS(4697), - [anon_sym_BSLASHfnotecite] = ACTIONS(4697), - [anon_sym_BSLASHlabel] = ACTIONS(4697), - [anon_sym_BSLASHref] = ACTIONS(4697), - [anon_sym_BSLASHeqref] = ACTIONS(4697), - [anon_sym_BSLASHvref] = ACTIONS(4697), - [anon_sym_BSLASHVref] = ACTIONS(4697), - [anon_sym_BSLASHautoref] = ACTIONS(4697), - [anon_sym_BSLASHpageref] = ACTIONS(4697), - [anon_sym_BSLASHcref] = ACTIONS(4697), - [anon_sym_BSLASHCref] = ACTIONS(4697), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnameCref] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHlabelcref] = ACTIONS(4697), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnewlabel] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4695), - [anon_sym_BSLASHdef] = ACTIONS(4697), - [anon_sym_BSLASHlet] = ACTIONS(4697), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4697), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4697), - [anon_sym_BSLASHgls] = ACTIONS(4697), - [anon_sym_BSLASHGls] = ACTIONS(4697), - [anon_sym_BSLASHGLS] = ACTIONS(4697), - [anon_sym_BSLASHglspl] = ACTIONS(4697), - [anon_sym_BSLASHGlspl] = ACTIONS(4697), - [anon_sym_BSLASHGLSpl] = ACTIONS(4697), - [anon_sym_BSLASHglsdisp] = ACTIONS(4697), - [anon_sym_BSLASHglslink] = ACTIONS(4697), - [anon_sym_BSLASHglstext] = ACTIONS(4697), - [anon_sym_BSLASHGlstext] = ACTIONS(4697), - [anon_sym_BSLASHGLStext] = ACTIONS(4697), - [anon_sym_BSLASHglsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4697), - [anon_sym_BSLASHglsplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSplural] = ACTIONS(4697), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHglsname] = ACTIONS(4697), - [anon_sym_BSLASHGlsname] = ACTIONS(4697), - [anon_sym_BSLASHGLSname] = ACTIONS(4697), - [anon_sym_BSLASHglssymbol] = ACTIONS(4697), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4697), - [anon_sym_BSLASHglsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4697), - [anon_sym_BSLASHglsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4697), - [anon_sym_BSLASHglsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4697), - [anon_sym_BSLASHglsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4697), - [anon_sym_BSLASHglsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4697), - [anon_sym_BSLASHnewacronym] = ACTIONS(4697), - [anon_sym_BSLASHacrshort] = ACTIONS(4697), - [anon_sym_BSLASHAcrshort] = ACTIONS(4697), - [anon_sym_BSLASHACRshort] = ACTIONS(4697), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4697), - [anon_sym_BSLASHacrlong] = ACTIONS(4697), - [anon_sym_BSLASHAcrlong] = ACTIONS(4697), - [anon_sym_BSLASHACRlong] = ACTIONS(4697), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4697), - [anon_sym_BSLASHacrfull] = ACTIONS(4697), - [anon_sym_BSLASHAcrfull] = ACTIONS(4697), - [anon_sym_BSLASHACRfull] = ACTIONS(4697), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4697), - [anon_sym_BSLASHacs] = ACTIONS(4697), - [anon_sym_BSLASHAcs] = ACTIONS(4697), - [anon_sym_BSLASHacsp] = ACTIONS(4697), - [anon_sym_BSLASHAcsp] = ACTIONS(4697), - [anon_sym_BSLASHacl] = ACTIONS(4697), - [anon_sym_BSLASHAcl] = ACTIONS(4697), - [anon_sym_BSLASHaclp] = ACTIONS(4697), - [anon_sym_BSLASHAclp] = ACTIONS(4697), - [anon_sym_BSLASHacf] = ACTIONS(4697), - [anon_sym_BSLASHAcf] = ACTIONS(4697), - [anon_sym_BSLASHacfp] = ACTIONS(4697), - [anon_sym_BSLASHAcfp] = ACTIONS(4697), - [anon_sym_BSLASHac] = ACTIONS(4697), - [anon_sym_BSLASHAc] = ACTIONS(4697), - [anon_sym_BSLASHacp] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4697), - [anon_sym_BSLASHcolor] = ACTIONS(4697), - [anon_sym_BSLASHcolorbox] = ACTIONS(4697), - [anon_sym_BSLASHtextcolor] = ACTIONS(4697), - [anon_sym_BSLASHpagecolor] = ACTIONS(4697), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4697), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4697), - [sym__trivia_raw_fi] = ACTIONS(5439), + [1170] = { + [sym_command_name] = ACTIONS(5077), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5077), + [anon_sym_LPAREN] = ACTIONS(5075), + [anon_sym_RPAREN] = ACTIONS(5075), + [anon_sym_LBRACK] = ACTIONS(5075), + [anon_sym_RBRACK] = ACTIONS(5075), + [anon_sym_COMMA] = ACTIONS(5075), + [anon_sym_EQ] = ACTIONS(5075), + [anon_sym_BSLASHpart] = ACTIONS(5077), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddpart] = ACTIONS(5077), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5075), + [anon_sym_BSLASHchapter] = ACTIONS(5077), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddchap] = ACTIONS(5077), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsection] = ACTIONS(5077), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHaddsec] = ACTIONS(5077), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubsection] = ACTIONS(5077), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5077), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5075), + [anon_sym_BSLASHparagraph] = ACTIONS(5077), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5075), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5077), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5075), + [anon_sym_BSLASHitem] = ACTIONS(5077), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5075), + [anon_sym_LBRACE] = ACTIONS(5075), + [sym_word] = ACTIONS(5077), + [sym_placeholder] = ACTIONS(5075), + [anon_sym_PLUS] = ACTIONS(5077), + [anon_sym_DASH] = ACTIONS(5077), + [anon_sym_STAR] = ACTIONS(5077), + [anon_sym_SLASH] = ACTIONS(5077), + [anon_sym_CARET] = ACTIONS(5077), + [anon_sym__] = ACTIONS(5077), + [anon_sym_LT] = ACTIONS(5077), + [anon_sym_GT] = ACTIONS(5077), + [anon_sym_BANG] = ACTIONS(5077), + [anon_sym_PIPE] = ACTIONS(5077), + [anon_sym_COLON] = ACTIONS(5077), + [anon_sym_SQUOTE] = ACTIONS(5077), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5075), + [anon_sym_DOLLAR] = ACTIONS(5077), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), + [anon_sym_BSLASHbegin] = ACTIONS(5077), + [anon_sym_BSLASHusepackage] = ACTIONS(5077), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), + [anon_sym_BSLASHinclude] = ACTIONS(5077), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), + [anon_sym_BSLASHinput] = ACTIONS(5077), + [anon_sym_BSLASHsubfile] = ACTIONS(5077), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), + [anon_sym_BSLASHbibliography] = ACTIONS(5077), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), + [anon_sym_BSLASHincludesvg] = ACTIONS(5077), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), + [anon_sym_BSLASHimport] = ACTIONS(5077), + [anon_sym_BSLASHsubimport] = ACTIONS(5077), + [anon_sym_BSLASHinputfrom] = ACTIONS(5077), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), + [anon_sym_BSLASHincludefrom] = ACTIONS(5077), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), + [anon_sym_BSLASHcaption] = ACTIONS(5077), + [anon_sym_BSLASHcite] = ACTIONS(5077), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCite] = ACTIONS(5077), + [anon_sym_BSLASHnocite] = ACTIONS(5077), + [anon_sym_BSLASHcitet] = ACTIONS(5077), + [anon_sym_BSLASHcitep] = ACTIONS(5077), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteauthor] = ACTIONS(5077), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitetitle] = ACTIONS(5077), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteyear] = ACTIONS(5077), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), + [anon_sym_BSLASHcitedate] = ACTIONS(5077), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), + [anon_sym_BSLASHciteurl] = ACTIONS(5077), + [anon_sym_BSLASHfullcite] = ACTIONS(5077), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), + [anon_sym_BSLASHcitealt] = ACTIONS(5077), + [anon_sym_BSLASHcitealp] = ACTIONS(5077), + [anon_sym_BSLASHcitetext] = ACTIONS(5077), + [anon_sym_BSLASHparencite] = ACTIONS(5077), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHParencite] = ACTIONS(5077), + [anon_sym_BSLASHfootcite] = ACTIONS(5077), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), + [anon_sym_BSLASHtextcite] = ACTIONS(5077), + [anon_sym_BSLASHTextcite] = ACTIONS(5077), + [anon_sym_BSLASHsmartcite] = ACTIONS(5077), + [anon_sym_BSLASHSmartcite] = ACTIONS(5077), + [anon_sym_BSLASHsupercite] = ACTIONS(5077), + [anon_sym_BSLASHautocite] = ACTIONS(5077), + [anon_sym_BSLASHAutocite] = ACTIONS(5077), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), + [anon_sym_BSLASHvolcite] = ACTIONS(5077), + [anon_sym_BSLASHVolcite] = ACTIONS(5077), + [anon_sym_BSLASHpvolcite] = ACTIONS(5077), + [anon_sym_BSLASHPvolcite] = ACTIONS(5077), + [anon_sym_BSLASHfvolcite] = ACTIONS(5077), + [anon_sym_BSLASHftvolcite] = ACTIONS(5077), + [anon_sym_BSLASHsvolcite] = ACTIONS(5077), + [anon_sym_BSLASHSvolcite] = ACTIONS(5077), + [anon_sym_BSLASHtvolcite] = ACTIONS(5077), + [anon_sym_BSLASHTvolcite] = ACTIONS(5077), + [anon_sym_BSLASHavolcite] = ACTIONS(5077), + [anon_sym_BSLASHAvolcite] = ACTIONS(5077), + [anon_sym_BSLASHnotecite] = ACTIONS(5077), + [anon_sym_BSLASHNotecite] = ACTIONS(5077), + [anon_sym_BSLASHpnotecite] = ACTIONS(5077), + [anon_sym_BSLASHPnotecite] = ACTIONS(5077), + [anon_sym_BSLASHfnotecite] = ACTIONS(5077), + [anon_sym_BSLASHlabel] = ACTIONS(5077), + [anon_sym_BSLASHref] = ACTIONS(5077), + [anon_sym_BSLASHeqref] = ACTIONS(5077), + [anon_sym_BSLASHvref] = ACTIONS(5077), + [anon_sym_BSLASHVref] = ACTIONS(5077), + [anon_sym_BSLASHautoref] = ACTIONS(5077), + [anon_sym_BSLASHpageref] = ACTIONS(5077), + [anon_sym_BSLASHcref] = ACTIONS(5077), + [anon_sym_BSLASHCref] = ACTIONS(5077), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), + [anon_sym_BSLASHnamecref] = ACTIONS(5077), + [anon_sym_BSLASHnameCref] = ACTIONS(5077), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), + [anon_sym_BSLASHlabelcref] = ACTIONS(5077), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), + [anon_sym_BSLASHcrefrange] = ACTIONS(5077), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), + [anon_sym_BSLASHCrefrange] = ACTIONS(5077), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), + [anon_sym_BSLASHnewlabel] = ACTIONS(5077), + [anon_sym_BSLASHnewcommand] = ACTIONS(5077), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), + [anon_sym_BSLASHdef] = ACTIONS(5077), + [anon_sym_BSLASHlet] = ACTIONS(5077), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), + [anon_sym_BSLASHgls] = ACTIONS(5077), + [anon_sym_BSLASHGls] = ACTIONS(5077), + [anon_sym_BSLASHGLS] = ACTIONS(5077), + [anon_sym_BSLASHglspl] = ACTIONS(5077), + [anon_sym_BSLASHGlspl] = ACTIONS(5077), + [anon_sym_BSLASHGLSpl] = ACTIONS(5077), + [anon_sym_BSLASHglsdisp] = ACTIONS(5077), + [anon_sym_BSLASHglslink] = ACTIONS(5077), + [anon_sym_BSLASHglstext] = ACTIONS(5077), + [anon_sym_BSLASHGlstext] = ACTIONS(5077), + [anon_sym_BSLASHGLStext] = ACTIONS(5077), + [anon_sym_BSLASHglsfirst] = ACTIONS(5077), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), + [anon_sym_BSLASHglsplural] = ACTIONS(5077), + [anon_sym_BSLASHGlsplural] = ACTIONS(5077), + [anon_sym_BSLASHGLSplural] = ACTIONS(5077), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), + [anon_sym_BSLASHglsname] = ACTIONS(5077), + [anon_sym_BSLASHGlsname] = ACTIONS(5077), + [anon_sym_BSLASHGLSname] = ACTIONS(5077), + [anon_sym_BSLASHglssymbol] = ACTIONS(5077), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), + [anon_sym_BSLASHglsdesc] = ACTIONS(5077), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), + [anon_sym_BSLASHglsuseri] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), + [anon_sym_BSLASHglsuserii] = ACTIONS(5077), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), + [anon_sym_BSLASHglsuserv] = ACTIONS(5077), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), + [anon_sym_BSLASHglsuservi] = ACTIONS(5077), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), + [anon_sym_BSLASHnewacronym] = ACTIONS(5077), + [anon_sym_BSLASHacrshort] = ACTIONS(5077), + [anon_sym_BSLASHAcrshort] = ACTIONS(5077), + [anon_sym_BSLASHACRshort] = ACTIONS(5077), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), + [anon_sym_BSLASHacrlong] = ACTIONS(5077), + [anon_sym_BSLASHAcrlong] = ACTIONS(5077), + [anon_sym_BSLASHACRlong] = ACTIONS(5077), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), + [anon_sym_BSLASHacrfull] = ACTIONS(5077), + [anon_sym_BSLASHAcrfull] = ACTIONS(5077), + [anon_sym_BSLASHACRfull] = ACTIONS(5077), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), + [anon_sym_BSLASHacs] = ACTIONS(5077), + [anon_sym_BSLASHAcs] = ACTIONS(5077), + [anon_sym_BSLASHacsp] = ACTIONS(5077), + [anon_sym_BSLASHAcsp] = ACTIONS(5077), + [anon_sym_BSLASHacl] = ACTIONS(5077), + [anon_sym_BSLASHAcl] = ACTIONS(5077), + [anon_sym_BSLASHaclp] = ACTIONS(5077), + [anon_sym_BSLASHAclp] = ACTIONS(5077), + [anon_sym_BSLASHacf] = ACTIONS(5077), + [anon_sym_BSLASHAcf] = ACTIONS(5077), + [anon_sym_BSLASHacfp] = ACTIONS(5077), + [anon_sym_BSLASHAcfp] = ACTIONS(5077), + [anon_sym_BSLASHac] = ACTIONS(5077), + [anon_sym_BSLASHAc] = ACTIONS(5077), + [anon_sym_BSLASHacp] = ACTIONS(5077), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), + [anon_sym_BSLASHcolor] = ACTIONS(5077), + [anon_sym_BSLASHcolorbox] = ACTIONS(5077), + [anon_sym_BSLASHtextcolor] = ACTIONS(5077), + [anon_sym_BSLASHpagecolor] = ACTIONS(5077), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), + [anon_sym_BSLASHtext] = ACTIONS(5077), + [anon_sym_BSLASHintertext] = ACTIONS(5077), + [anon_sym_shortintertext] = ACTIONS(5077), }, - [1302] = { - [sym_command_name] = ACTIONS(5065), + [1171] = { + [sym_command_name] = ACTIONS(5109), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASHbegin] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHiffalse] = ACTIONS(5109), + [anon_sym_LPAREN] = ACTIONS(5107), + [anon_sym_RPAREN] = ACTIONS(5107), + [anon_sym_LBRACK] = ACTIONS(5107), + [anon_sym_RBRACK] = ACTIONS(5107), + [anon_sym_COMMA] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(5107), + [anon_sym_BSLASHpart] = ACTIONS(5109), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddpart] = ACTIONS(5109), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5107), + [anon_sym_BSLASHchapter] = ACTIONS(5109), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddchap] = ACTIONS(5109), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsection] = ACTIONS(5109), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHaddsec] = ACTIONS(5109), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubsection] = ACTIONS(5109), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5109), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5107), + [anon_sym_BSLASHparagraph] = ACTIONS(5109), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5107), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5109), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5107), + [anon_sym_BSLASHitem] = ACTIONS(5109), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5107), + [anon_sym_LBRACE] = ACTIONS(5107), + [sym_word] = ACTIONS(5109), + [sym_placeholder] = ACTIONS(5107), + [anon_sym_PLUS] = ACTIONS(5109), + [anon_sym_DASH] = ACTIONS(5109), + [anon_sym_STAR] = ACTIONS(5109), + [anon_sym_SLASH] = ACTIONS(5109), + [anon_sym_CARET] = ACTIONS(5109), + [anon_sym__] = ACTIONS(5109), + [anon_sym_LT] = ACTIONS(5109), + [anon_sym_GT] = ACTIONS(5109), + [anon_sym_BANG] = ACTIONS(5109), + [anon_sym_PIPE] = ACTIONS(5109), + [anon_sym_COLON] = ACTIONS(5109), + [anon_sym_SQUOTE] = ACTIONS(5109), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5107), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5107), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5107), + [anon_sym_DOLLAR] = ACTIONS(5109), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5107), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5107), + [anon_sym_BSLASHbegin] = ACTIONS(5109), + [anon_sym_BSLASHusepackage] = ACTIONS(5109), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5109), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5109), + [anon_sym_BSLASHinclude] = ACTIONS(5109), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5109), + [anon_sym_BSLASHinput] = ACTIONS(5109), + [anon_sym_BSLASHsubfile] = ACTIONS(5109), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5109), + [anon_sym_BSLASHbibliography] = ACTIONS(5109), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5109), + [anon_sym_BSLASHincludesvg] = ACTIONS(5109), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5109), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5109), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5109), + [anon_sym_BSLASHimport] = ACTIONS(5109), + [anon_sym_BSLASHsubimport] = ACTIONS(5109), + [anon_sym_BSLASHinputfrom] = ACTIONS(5109), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5109), + [anon_sym_BSLASHincludefrom] = ACTIONS(5109), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5109), + [anon_sym_BSLASHcaption] = ACTIONS(5109), + [anon_sym_BSLASHcite] = ACTIONS(5109), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCite] = ACTIONS(5109), + [anon_sym_BSLASHnocite] = ACTIONS(5109), + [anon_sym_BSLASHcitet] = ACTIONS(5109), + [anon_sym_BSLASHcitep] = ACTIONS(5109), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteauthor] = ACTIONS(5109), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5109), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitetitle] = ACTIONS(5109), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteyear] = ACTIONS(5109), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5107), + [anon_sym_BSLASHcitedate] = ACTIONS(5109), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5107), + [anon_sym_BSLASHciteurl] = ACTIONS(5109), + [anon_sym_BSLASHfullcite] = ACTIONS(5109), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5109), + [anon_sym_BSLASHcitealt] = ACTIONS(5109), + [anon_sym_BSLASHcitealp] = ACTIONS(5109), + [anon_sym_BSLASHcitetext] = ACTIONS(5109), + [anon_sym_BSLASHparencite] = ACTIONS(5109), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHParencite] = ACTIONS(5109), + [anon_sym_BSLASHfootcite] = ACTIONS(5109), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5109), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5109), + [anon_sym_BSLASHtextcite] = ACTIONS(5109), + [anon_sym_BSLASHTextcite] = ACTIONS(5109), + [anon_sym_BSLASHsmartcite] = ACTIONS(5109), + [anon_sym_BSLASHSmartcite] = ACTIONS(5109), + [anon_sym_BSLASHsupercite] = ACTIONS(5109), + [anon_sym_BSLASHautocite] = ACTIONS(5109), + [anon_sym_BSLASHAutocite] = ACTIONS(5109), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5107), + [anon_sym_BSLASHvolcite] = ACTIONS(5109), + [anon_sym_BSLASHVolcite] = ACTIONS(5109), + [anon_sym_BSLASHpvolcite] = ACTIONS(5109), + [anon_sym_BSLASHPvolcite] = ACTIONS(5109), + [anon_sym_BSLASHfvolcite] = ACTIONS(5109), + [anon_sym_BSLASHftvolcite] = ACTIONS(5109), + [anon_sym_BSLASHsvolcite] = ACTIONS(5109), + [anon_sym_BSLASHSvolcite] = ACTIONS(5109), + [anon_sym_BSLASHtvolcite] = ACTIONS(5109), + [anon_sym_BSLASHTvolcite] = ACTIONS(5109), + [anon_sym_BSLASHavolcite] = ACTIONS(5109), + [anon_sym_BSLASHAvolcite] = ACTIONS(5109), + [anon_sym_BSLASHnotecite] = ACTIONS(5109), + [anon_sym_BSLASHNotecite] = ACTIONS(5109), + [anon_sym_BSLASHpnotecite] = ACTIONS(5109), + [anon_sym_BSLASHPnotecite] = ACTIONS(5109), + [anon_sym_BSLASHfnotecite] = ACTIONS(5109), + [anon_sym_BSLASHlabel] = ACTIONS(5109), + [anon_sym_BSLASHref] = ACTIONS(5109), + [anon_sym_BSLASHeqref] = ACTIONS(5109), + [anon_sym_BSLASHvref] = ACTIONS(5109), + [anon_sym_BSLASHVref] = ACTIONS(5109), + [anon_sym_BSLASHautoref] = ACTIONS(5109), + [anon_sym_BSLASHpageref] = ACTIONS(5109), + [anon_sym_BSLASHcref] = ACTIONS(5109), + [anon_sym_BSLASHCref] = ACTIONS(5109), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5107), + [anon_sym_BSLASHnamecref] = ACTIONS(5109), + [anon_sym_BSLASHnameCref] = ACTIONS(5109), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5109), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5109), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5109), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5109), + [anon_sym_BSLASHlabelcref] = ACTIONS(5109), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5109), + [anon_sym_BSLASHcrefrange] = ACTIONS(5109), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5107), + [anon_sym_BSLASHCrefrange] = ACTIONS(5109), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5107), + [anon_sym_BSLASHnewlabel] = ACTIONS(5109), + [anon_sym_BSLASHnewcommand] = ACTIONS(5109), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5109), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5109), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5107), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5109), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5107), + [anon_sym_BSLASHdef] = ACTIONS(5109), + [anon_sym_BSLASHlet] = ACTIONS(5109), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5109), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5109), + [anon_sym_BSLASHgls] = ACTIONS(5109), + [anon_sym_BSLASHGls] = ACTIONS(5109), + [anon_sym_BSLASHGLS] = ACTIONS(5109), + [anon_sym_BSLASHglspl] = ACTIONS(5109), + [anon_sym_BSLASHGlspl] = ACTIONS(5109), + [anon_sym_BSLASHGLSpl] = ACTIONS(5109), + [anon_sym_BSLASHglsdisp] = ACTIONS(5109), + [anon_sym_BSLASHglslink] = ACTIONS(5109), + [anon_sym_BSLASHglstext] = ACTIONS(5109), + [anon_sym_BSLASHGlstext] = ACTIONS(5109), + [anon_sym_BSLASHGLStext] = ACTIONS(5109), + [anon_sym_BSLASHglsfirst] = ACTIONS(5109), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5109), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5109), + [anon_sym_BSLASHglsplural] = ACTIONS(5109), + [anon_sym_BSLASHGlsplural] = ACTIONS(5109), + [anon_sym_BSLASHGLSplural] = ACTIONS(5109), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5109), + [anon_sym_BSLASHglsname] = ACTIONS(5109), + [anon_sym_BSLASHGlsname] = ACTIONS(5109), + [anon_sym_BSLASHGLSname] = ACTIONS(5109), + [anon_sym_BSLASHglssymbol] = ACTIONS(5109), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5109), + [anon_sym_BSLASHglsdesc] = ACTIONS(5109), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5109), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5109), + [anon_sym_BSLASHglsuseri] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5109), + [anon_sym_BSLASHglsuserii] = ACTIONS(5109), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5109), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5109), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5109), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5109), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5109), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5109), + [anon_sym_BSLASHglsuserv] = ACTIONS(5109), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5109), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5109), + [anon_sym_BSLASHglsuservi] = ACTIONS(5109), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5109), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5109), + [anon_sym_BSLASHnewacronym] = ACTIONS(5109), + [anon_sym_BSLASHacrshort] = ACTIONS(5109), + [anon_sym_BSLASHAcrshort] = ACTIONS(5109), + [anon_sym_BSLASHACRshort] = ACTIONS(5109), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5109), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5109), + [anon_sym_BSLASHacrlong] = ACTIONS(5109), + [anon_sym_BSLASHAcrlong] = ACTIONS(5109), + [anon_sym_BSLASHACRlong] = ACTIONS(5109), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5109), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5109), + [anon_sym_BSLASHacrfull] = ACTIONS(5109), + [anon_sym_BSLASHAcrfull] = ACTIONS(5109), + [anon_sym_BSLASHACRfull] = ACTIONS(5109), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5109), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5109), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5109), + [anon_sym_BSLASHacs] = ACTIONS(5109), + [anon_sym_BSLASHAcs] = ACTIONS(5109), + [anon_sym_BSLASHacsp] = ACTIONS(5109), + [anon_sym_BSLASHAcsp] = ACTIONS(5109), + [anon_sym_BSLASHacl] = ACTIONS(5109), + [anon_sym_BSLASHAcl] = ACTIONS(5109), + [anon_sym_BSLASHaclp] = ACTIONS(5109), + [anon_sym_BSLASHAclp] = ACTIONS(5109), + [anon_sym_BSLASHacf] = ACTIONS(5109), + [anon_sym_BSLASHAcf] = ACTIONS(5109), + [anon_sym_BSLASHacfp] = ACTIONS(5109), + [anon_sym_BSLASHAcfp] = ACTIONS(5109), + [anon_sym_BSLASHac] = ACTIONS(5109), + [anon_sym_BSLASHAc] = ACTIONS(5109), + [anon_sym_BSLASHacp] = ACTIONS(5109), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5109), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5109), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5109), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5109), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5109), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5109), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5109), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5109), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5109), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5109), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5109), + [anon_sym_BSLASHcolor] = ACTIONS(5109), + [anon_sym_BSLASHcolorbox] = ACTIONS(5109), + [anon_sym_BSLASHtextcolor] = ACTIONS(5109), + [anon_sym_BSLASHpagecolor] = ACTIONS(5109), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5109), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5109), + [anon_sym_BSLASHtext] = ACTIONS(5109), + [anon_sym_BSLASHintertext] = ACTIONS(5109), + [anon_sym_shortintertext] = ACTIONS(5109), }, - [1303] = { - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_EQ] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASHbegin] = ACTIONS(147), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), + [1172] = { + [sym_command_name] = ACTIONS(5115), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5115), + [anon_sym_LPAREN] = ACTIONS(5113), + [anon_sym_RPAREN] = ACTIONS(5113), + [anon_sym_LBRACK] = ACTIONS(5113), + [anon_sym_RBRACK] = ACTIONS(5113), + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_EQ] = ACTIONS(5113), + [anon_sym_BSLASHpart] = ACTIONS(5115), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddpart] = ACTIONS(5115), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5113), + [anon_sym_BSLASHchapter] = ACTIONS(5115), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddchap] = ACTIONS(5115), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsection] = ACTIONS(5115), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHaddsec] = ACTIONS(5115), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubsection] = ACTIONS(5115), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5115), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5113), + [anon_sym_BSLASHparagraph] = ACTIONS(5115), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5113), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5115), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5113), + [anon_sym_BSLASHitem] = ACTIONS(5115), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5113), + [anon_sym_LBRACE] = ACTIONS(5113), + [sym_word] = ACTIONS(5115), + [sym_placeholder] = ACTIONS(5113), + [anon_sym_PLUS] = ACTIONS(5115), + [anon_sym_DASH] = ACTIONS(5115), + [anon_sym_STAR] = ACTIONS(5115), + [anon_sym_SLASH] = ACTIONS(5115), + [anon_sym_CARET] = ACTIONS(5115), + [anon_sym__] = ACTIONS(5115), + [anon_sym_LT] = ACTIONS(5115), + [anon_sym_GT] = ACTIONS(5115), + [anon_sym_BANG] = ACTIONS(5115), + [anon_sym_PIPE] = ACTIONS(5115), + [anon_sym_COLON] = ACTIONS(5115), + [anon_sym_SQUOTE] = ACTIONS(5115), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5113), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5113), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5113), + [anon_sym_DOLLAR] = ACTIONS(5115), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5113), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5113), + [anon_sym_BSLASHbegin] = ACTIONS(5115), + [anon_sym_BSLASHusepackage] = ACTIONS(5115), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5115), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5115), + [anon_sym_BSLASHinclude] = ACTIONS(5115), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5115), + [anon_sym_BSLASHinput] = ACTIONS(5115), + [anon_sym_BSLASHsubfile] = ACTIONS(5115), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5115), + [anon_sym_BSLASHbibliography] = ACTIONS(5115), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5115), + [anon_sym_BSLASHincludesvg] = ACTIONS(5115), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5115), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5115), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5115), + [anon_sym_BSLASHimport] = ACTIONS(5115), + [anon_sym_BSLASHsubimport] = ACTIONS(5115), + [anon_sym_BSLASHinputfrom] = ACTIONS(5115), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5115), + [anon_sym_BSLASHincludefrom] = ACTIONS(5115), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5115), + [anon_sym_BSLASHcaption] = ACTIONS(5115), + [anon_sym_BSLASHcite] = ACTIONS(5115), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCite] = ACTIONS(5115), + [anon_sym_BSLASHnocite] = ACTIONS(5115), + [anon_sym_BSLASHcitet] = ACTIONS(5115), + [anon_sym_BSLASHcitep] = ACTIONS(5115), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteauthor] = ACTIONS(5115), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5115), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitetitle] = ACTIONS(5115), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteyear] = ACTIONS(5115), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5113), + [anon_sym_BSLASHcitedate] = ACTIONS(5115), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5113), + [anon_sym_BSLASHciteurl] = ACTIONS(5115), + [anon_sym_BSLASHfullcite] = ACTIONS(5115), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5115), + [anon_sym_BSLASHcitealt] = ACTIONS(5115), + [anon_sym_BSLASHcitealp] = ACTIONS(5115), + [anon_sym_BSLASHcitetext] = ACTIONS(5115), + [anon_sym_BSLASHparencite] = ACTIONS(5115), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHParencite] = ACTIONS(5115), + [anon_sym_BSLASHfootcite] = ACTIONS(5115), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5115), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5115), + [anon_sym_BSLASHtextcite] = ACTIONS(5115), + [anon_sym_BSLASHTextcite] = ACTIONS(5115), + [anon_sym_BSLASHsmartcite] = ACTIONS(5115), + [anon_sym_BSLASHSmartcite] = ACTIONS(5115), + [anon_sym_BSLASHsupercite] = ACTIONS(5115), + [anon_sym_BSLASHautocite] = ACTIONS(5115), + [anon_sym_BSLASHAutocite] = ACTIONS(5115), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5113), + [anon_sym_BSLASHvolcite] = ACTIONS(5115), + [anon_sym_BSLASHVolcite] = ACTIONS(5115), + [anon_sym_BSLASHpvolcite] = ACTIONS(5115), + [anon_sym_BSLASHPvolcite] = ACTIONS(5115), + [anon_sym_BSLASHfvolcite] = ACTIONS(5115), + [anon_sym_BSLASHftvolcite] = ACTIONS(5115), + [anon_sym_BSLASHsvolcite] = ACTIONS(5115), + [anon_sym_BSLASHSvolcite] = ACTIONS(5115), + [anon_sym_BSLASHtvolcite] = ACTIONS(5115), + [anon_sym_BSLASHTvolcite] = ACTIONS(5115), + [anon_sym_BSLASHavolcite] = ACTIONS(5115), + [anon_sym_BSLASHAvolcite] = ACTIONS(5115), + [anon_sym_BSLASHnotecite] = ACTIONS(5115), + [anon_sym_BSLASHNotecite] = ACTIONS(5115), + [anon_sym_BSLASHpnotecite] = ACTIONS(5115), + [anon_sym_BSLASHPnotecite] = ACTIONS(5115), + [anon_sym_BSLASHfnotecite] = ACTIONS(5115), + [anon_sym_BSLASHlabel] = ACTIONS(5115), + [anon_sym_BSLASHref] = ACTIONS(5115), + [anon_sym_BSLASHeqref] = ACTIONS(5115), + [anon_sym_BSLASHvref] = ACTIONS(5115), + [anon_sym_BSLASHVref] = ACTIONS(5115), + [anon_sym_BSLASHautoref] = ACTIONS(5115), + [anon_sym_BSLASHpageref] = ACTIONS(5115), + [anon_sym_BSLASHcref] = ACTIONS(5115), + [anon_sym_BSLASHCref] = ACTIONS(5115), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5113), + [anon_sym_BSLASHnamecref] = ACTIONS(5115), + [anon_sym_BSLASHnameCref] = ACTIONS(5115), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5115), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5115), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5115), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5115), + [anon_sym_BSLASHlabelcref] = ACTIONS(5115), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5115), + [anon_sym_BSLASHcrefrange] = ACTIONS(5115), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5113), + [anon_sym_BSLASHCrefrange] = ACTIONS(5115), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5113), + [anon_sym_BSLASHnewlabel] = ACTIONS(5115), + [anon_sym_BSLASHnewcommand] = ACTIONS(5115), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5115), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5115), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5113), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5115), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5113), + [anon_sym_BSLASHdef] = ACTIONS(5115), + [anon_sym_BSLASHlet] = ACTIONS(5115), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5115), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5115), + [anon_sym_BSLASHgls] = ACTIONS(5115), + [anon_sym_BSLASHGls] = ACTIONS(5115), + [anon_sym_BSLASHGLS] = ACTIONS(5115), + [anon_sym_BSLASHglspl] = ACTIONS(5115), + [anon_sym_BSLASHGlspl] = ACTIONS(5115), + [anon_sym_BSLASHGLSpl] = ACTIONS(5115), + [anon_sym_BSLASHglsdisp] = ACTIONS(5115), + [anon_sym_BSLASHglslink] = ACTIONS(5115), + [anon_sym_BSLASHglstext] = ACTIONS(5115), + [anon_sym_BSLASHGlstext] = ACTIONS(5115), + [anon_sym_BSLASHGLStext] = ACTIONS(5115), + [anon_sym_BSLASHglsfirst] = ACTIONS(5115), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5115), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5115), + [anon_sym_BSLASHglsplural] = ACTIONS(5115), + [anon_sym_BSLASHGlsplural] = ACTIONS(5115), + [anon_sym_BSLASHGLSplural] = ACTIONS(5115), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5115), + [anon_sym_BSLASHglsname] = ACTIONS(5115), + [anon_sym_BSLASHGlsname] = ACTIONS(5115), + [anon_sym_BSLASHGLSname] = ACTIONS(5115), + [anon_sym_BSLASHglssymbol] = ACTIONS(5115), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5115), + [anon_sym_BSLASHglsdesc] = ACTIONS(5115), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5115), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5115), + [anon_sym_BSLASHglsuseri] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5115), + [anon_sym_BSLASHglsuserii] = ACTIONS(5115), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5115), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5115), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5115), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5115), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5115), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5115), + [anon_sym_BSLASHglsuserv] = ACTIONS(5115), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5115), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5115), + [anon_sym_BSLASHglsuservi] = ACTIONS(5115), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5115), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5115), + [anon_sym_BSLASHnewacronym] = ACTIONS(5115), + [anon_sym_BSLASHacrshort] = ACTIONS(5115), + [anon_sym_BSLASHAcrshort] = ACTIONS(5115), + [anon_sym_BSLASHACRshort] = ACTIONS(5115), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5115), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5115), + [anon_sym_BSLASHacrlong] = ACTIONS(5115), + [anon_sym_BSLASHAcrlong] = ACTIONS(5115), + [anon_sym_BSLASHACRlong] = ACTIONS(5115), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5115), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5115), + [anon_sym_BSLASHacrfull] = ACTIONS(5115), + [anon_sym_BSLASHAcrfull] = ACTIONS(5115), + [anon_sym_BSLASHACRfull] = ACTIONS(5115), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5115), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5115), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5115), + [anon_sym_BSLASHacs] = ACTIONS(5115), + [anon_sym_BSLASHAcs] = ACTIONS(5115), + [anon_sym_BSLASHacsp] = ACTIONS(5115), + [anon_sym_BSLASHAcsp] = ACTIONS(5115), + [anon_sym_BSLASHacl] = ACTIONS(5115), + [anon_sym_BSLASHAcl] = ACTIONS(5115), + [anon_sym_BSLASHaclp] = ACTIONS(5115), + [anon_sym_BSLASHAclp] = ACTIONS(5115), + [anon_sym_BSLASHacf] = ACTIONS(5115), + [anon_sym_BSLASHAcf] = ACTIONS(5115), + [anon_sym_BSLASHacfp] = ACTIONS(5115), + [anon_sym_BSLASHAcfp] = ACTIONS(5115), + [anon_sym_BSLASHac] = ACTIONS(5115), + [anon_sym_BSLASHAc] = ACTIONS(5115), + [anon_sym_BSLASHacp] = ACTIONS(5115), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5115), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5115), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5115), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5115), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5115), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5115), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5115), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5115), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5115), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5115), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5115), + [anon_sym_BSLASHcolor] = ACTIONS(5115), + [anon_sym_BSLASHcolorbox] = ACTIONS(5115), + [anon_sym_BSLASHtextcolor] = ACTIONS(5115), + [anon_sym_BSLASHpagecolor] = ACTIONS(5115), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5115), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5115), + [anon_sym_BSLASHtext] = ACTIONS(5115), + [anon_sym_BSLASHintertext] = ACTIONS(5115), + [anon_sym_shortintertext] = ACTIONS(5115), }, - [1304] = { - [sym_command_name] = ACTIONS(5243), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5243), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_RPAREN] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_RBRACK] = ACTIONS(5241), - [anon_sym_COMMA] = ACTIONS(5241), - [anon_sym_EQ] = ACTIONS(5241), - [anon_sym_LBRACE] = ACTIONS(5241), - [sym_word] = ACTIONS(5243), - [sym_placeholder] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_STAR] = ACTIONS(5243), - [anon_sym_SLASH] = ACTIONS(5243), - [anon_sym_CARET] = ACTIONS(5243), - [anon_sym__] = ACTIONS(5243), - [anon_sym_LT] = ACTIONS(5243), - [anon_sym_GT] = ACTIONS(5243), - [anon_sym_BANG] = ACTIONS(5243), - [anon_sym_PIPE] = ACTIONS(5243), - [anon_sym_COLON] = ACTIONS(5243), - [anon_sym_SQUOTE] = ACTIONS(5243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5241), - [anon_sym_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5241), - [anon_sym_BSLASHbegin] = ACTIONS(5243), - [anon_sym_BSLASHusepackage] = ACTIONS(5243), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5243), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5243), - [anon_sym_BSLASHinclude] = ACTIONS(5243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5243), - [anon_sym_BSLASHinput] = ACTIONS(5243), - [anon_sym_BSLASHsubfile] = ACTIONS(5243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5243), - [anon_sym_BSLASHbibliography] = ACTIONS(5243), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5243), - [anon_sym_BSLASHincludesvg] = ACTIONS(5243), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5243), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5243), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5243), - [anon_sym_BSLASHimport] = ACTIONS(5243), - [anon_sym_BSLASHsubimport] = ACTIONS(5243), - [anon_sym_BSLASHinputfrom] = ACTIONS(5243), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5243), - [anon_sym_BSLASHincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHcaption] = ACTIONS(5243), - [anon_sym_BSLASHcite] = ACTIONS(5243), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCite] = ACTIONS(5243), - [anon_sym_BSLASHnocite] = ACTIONS(5243), - [anon_sym_BSLASHcitet] = ACTIONS(5243), - [anon_sym_BSLASHcitep] = ACTIONS(5243), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteyear] = ACTIONS(5243), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitedate] = ACTIONS(5243), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteurl] = ACTIONS(5243), - [anon_sym_BSLASHfullcite] = ACTIONS(5243), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5243), - [anon_sym_BSLASHcitealt] = ACTIONS(5243), - [anon_sym_BSLASHcitealp] = ACTIONS(5243), - [anon_sym_BSLASHcitetext] = ACTIONS(5243), - [anon_sym_BSLASHparencite] = ACTIONS(5243), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHParencite] = ACTIONS(5243), - [anon_sym_BSLASHfootcite] = ACTIONS(5243), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5243), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5243), - [anon_sym_BSLASHtextcite] = ACTIONS(5243), - [anon_sym_BSLASHTextcite] = ACTIONS(5243), - [anon_sym_BSLASHsmartcite] = ACTIONS(5243), - [anon_sym_BSLASHSmartcite] = ACTIONS(5243), - [anon_sym_BSLASHsupercite] = ACTIONS(5243), - [anon_sym_BSLASHautocite] = ACTIONS(5243), - [anon_sym_BSLASHAutocite] = ACTIONS(5243), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHvolcite] = ACTIONS(5243), - [anon_sym_BSLASHVolcite] = ACTIONS(5243), - [anon_sym_BSLASHpvolcite] = ACTIONS(5243), - [anon_sym_BSLASHPvolcite] = ACTIONS(5243), - [anon_sym_BSLASHfvolcite] = ACTIONS(5243), - [anon_sym_BSLASHftvolcite] = ACTIONS(5243), - [anon_sym_BSLASHsvolcite] = ACTIONS(5243), - [anon_sym_BSLASHSvolcite] = ACTIONS(5243), - [anon_sym_BSLASHtvolcite] = ACTIONS(5243), - [anon_sym_BSLASHTvolcite] = ACTIONS(5243), - [anon_sym_BSLASHavolcite] = ACTIONS(5243), - [anon_sym_BSLASHAvolcite] = ACTIONS(5243), - [anon_sym_BSLASHnotecite] = ACTIONS(5243), - [anon_sym_BSLASHNotecite] = ACTIONS(5243), - [anon_sym_BSLASHpnotecite] = ACTIONS(5243), - [anon_sym_BSLASHPnotecite] = ACTIONS(5243), - [anon_sym_BSLASHfnotecite] = ACTIONS(5243), - [anon_sym_BSLASHlabel] = ACTIONS(5243), - [anon_sym_BSLASHref] = ACTIONS(5243), - [anon_sym_BSLASHeqref] = ACTIONS(5243), - [anon_sym_BSLASHvref] = ACTIONS(5243), - [anon_sym_BSLASHVref] = ACTIONS(5243), - [anon_sym_BSLASHautoref] = ACTIONS(5243), - [anon_sym_BSLASHpageref] = ACTIONS(5243), - [anon_sym_BSLASHcref] = ACTIONS(5243), - [anon_sym_BSLASHCref] = ACTIONS(5243), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnameCref] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHlabelcref] = ACTIONS(5243), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnewlabel] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5241), - [anon_sym_BSLASHdef] = ACTIONS(5243), - [anon_sym_BSLASHlet] = ACTIONS(5243), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5243), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5243), - [anon_sym_BSLASHgls] = ACTIONS(5243), - [anon_sym_BSLASHGls] = ACTIONS(5243), - [anon_sym_BSLASHGLS] = ACTIONS(5243), - [anon_sym_BSLASHglspl] = ACTIONS(5243), - [anon_sym_BSLASHGlspl] = ACTIONS(5243), - [anon_sym_BSLASHGLSpl] = ACTIONS(5243), - [anon_sym_BSLASHglsdisp] = ACTIONS(5243), - [anon_sym_BSLASHglslink] = ACTIONS(5243), - [anon_sym_BSLASHglstext] = ACTIONS(5243), - [anon_sym_BSLASHGlstext] = ACTIONS(5243), - [anon_sym_BSLASHGLStext] = ACTIONS(5243), - [anon_sym_BSLASHglsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5243), - [anon_sym_BSLASHglsplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSplural] = ACTIONS(5243), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHglsname] = ACTIONS(5243), - [anon_sym_BSLASHGlsname] = ACTIONS(5243), - [anon_sym_BSLASHGLSname] = ACTIONS(5243), - [anon_sym_BSLASHglssymbol] = ACTIONS(5243), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5243), - [anon_sym_BSLASHglsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5243), - [anon_sym_BSLASHglsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5243), - [anon_sym_BSLASHglsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5243), - [anon_sym_BSLASHglsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5243), - [anon_sym_BSLASHglsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5243), - [anon_sym_BSLASHnewacronym] = ACTIONS(5243), - [anon_sym_BSLASHacrshort] = ACTIONS(5243), - [anon_sym_BSLASHAcrshort] = ACTIONS(5243), - [anon_sym_BSLASHACRshort] = ACTIONS(5243), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5243), - [anon_sym_BSLASHacrlong] = ACTIONS(5243), - [anon_sym_BSLASHAcrlong] = ACTIONS(5243), - [anon_sym_BSLASHACRlong] = ACTIONS(5243), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5243), - [anon_sym_BSLASHacrfull] = ACTIONS(5243), - [anon_sym_BSLASHAcrfull] = ACTIONS(5243), - [anon_sym_BSLASHACRfull] = ACTIONS(5243), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5243), - [anon_sym_BSLASHacs] = ACTIONS(5243), - [anon_sym_BSLASHAcs] = ACTIONS(5243), - [anon_sym_BSLASHacsp] = ACTIONS(5243), - [anon_sym_BSLASHAcsp] = ACTIONS(5243), - [anon_sym_BSLASHacl] = ACTIONS(5243), - [anon_sym_BSLASHAcl] = ACTIONS(5243), - [anon_sym_BSLASHaclp] = ACTIONS(5243), - [anon_sym_BSLASHAclp] = ACTIONS(5243), - [anon_sym_BSLASHacf] = ACTIONS(5243), - [anon_sym_BSLASHAcf] = ACTIONS(5243), - [anon_sym_BSLASHacfp] = ACTIONS(5243), - [anon_sym_BSLASHAcfp] = ACTIONS(5243), - [anon_sym_BSLASHac] = ACTIONS(5243), - [anon_sym_BSLASHAc] = ACTIONS(5243), - [anon_sym_BSLASHacp] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5243), - [anon_sym_BSLASHcolor] = ACTIONS(5243), - [anon_sym_BSLASHcolorbox] = ACTIONS(5243), - [anon_sym_BSLASHtextcolor] = ACTIONS(5243), - [anon_sym_BSLASHpagecolor] = ACTIONS(5243), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5243), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5243), + [1173] = { + [sym_command_name] = ACTIONS(5123), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5123), + [anon_sym_LPAREN] = ACTIONS(5121), + [anon_sym_RPAREN] = ACTIONS(5121), + [anon_sym_LBRACK] = ACTIONS(5121), + [anon_sym_RBRACK] = ACTIONS(5121), + [anon_sym_COMMA] = ACTIONS(5121), + [anon_sym_EQ] = ACTIONS(5121), + [anon_sym_BSLASHpart] = ACTIONS(5123), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddpart] = ACTIONS(5123), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5121), + [anon_sym_BSLASHchapter] = ACTIONS(5123), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddchap] = ACTIONS(5123), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsection] = ACTIONS(5123), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHaddsec] = ACTIONS(5123), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubsection] = ACTIONS(5123), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5123), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5121), + [anon_sym_BSLASHparagraph] = ACTIONS(5123), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5121), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5123), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5121), + [anon_sym_BSLASHitem] = ACTIONS(5123), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5121), + [anon_sym_LBRACE] = ACTIONS(5121), + [sym_word] = ACTIONS(5123), + [sym_placeholder] = ACTIONS(5121), + [anon_sym_PLUS] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [anon_sym_STAR] = ACTIONS(5123), + [anon_sym_SLASH] = ACTIONS(5123), + [anon_sym_CARET] = ACTIONS(5123), + [anon_sym__] = ACTIONS(5123), + [anon_sym_LT] = ACTIONS(5123), + [anon_sym_GT] = ACTIONS(5123), + [anon_sym_BANG] = ACTIONS(5123), + [anon_sym_PIPE] = ACTIONS(5123), + [anon_sym_COLON] = ACTIONS(5123), + [anon_sym_SQUOTE] = ACTIONS(5123), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5121), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5121), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5121), + [anon_sym_DOLLAR] = ACTIONS(5123), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5121), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5121), + [anon_sym_BSLASHbegin] = ACTIONS(5123), + [anon_sym_BSLASHusepackage] = ACTIONS(5123), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5123), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5123), + [anon_sym_BSLASHinclude] = ACTIONS(5123), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5123), + [anon_sym_BSLASHinput] = ACTIONS(5123), + [anon_sym_BSLASHsubfile] = ACTIONS(5123), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5123), + [anon_sym_BSLASHbibliography] = ACTIONS(5123), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5123), + [anon_sym_BSLASHincludesvg] = ACTIONS(5123), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5123), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5123), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5123), + [anon_sym_BSLASHimport] = ACTIONS(5123), + [anon_sym_BSLASHsubimport] = ACTIONS(5123), + [anon_sym_BSLASHinputfrom] = ACTIONS(5123), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5123), + [anon_sym_BSLASHincludefrom] = ACTIONS(5123), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5123), + [anon_sym_BSLASHcaption] = ACTIONS(5123), + [anon_sym_BSLASHcite] = ACTIONS(5123), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCite] = ACTIONS(5123), + [anon_sym_BSLASHnocite] = ACTIONS(5123), + [anon_sym_BSLASHcitet] = ACTIONS(5123), + [anon_sym_BSLASHcitep] = ACTIONS(5123), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteauthor] = ACTIONS(5123), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5123), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitetitle] = ACTIONS(5123), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteyear] = ACTIONS(5123), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5121), + [anon_sym_BSLASHcitedate] = ACTIONS(5123), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5121), + [anon_sym_BSLASHciteurl] = ACTIONS(5123), + [anon_sym_BSLASHfullcite] = ACTIONS(5123), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5123), + [anon_sym_BSLASHcitealt] = ACTIONS(5123), + [anon_sym_BSLASHcitealp] = ACTIONS(5123), + [anon_sym_BSLASHcitetext] = ACTIONS(5123), + [anon_sym_BSLASHparencite] = ACTIONS(5123), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHParencite] = ACTIONS(5123), + [anon_sym_BSLASHfootcite] = ACTIONS(5123), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5123), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5123), + [anon_sym_BSLASHtextcite] = ACTIONS(5123), + [anon_sym_BSLASHTextcite] = ACTIONS(5123), + [anon_sym_BSLASHsmartcite] = ACTIONS(5123), + [anon_sym_BSLASHSmartcite] = ACTIONS(5123), + [anon_sym_BSLASHsupercite] = ACTIONS(5123), + [anon_sym_BSLASHautocite] = ACTIONS(5123), + [anon_sym_BSLASHAutocite] = ACTIONS(5123), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5121), + [anon_sym_BSLASHvolcite] = ACTIONS(5123), + [anon_sym_BSLASHVolcite] = ACTIONS(5123), + [anon_sym_BSLASHpvolcite] = ACTIONS(5123), + [anon_sym_BSLASHPvolcite] = ACTIONS(5123), + [anon_sym_BSLASHfvolcite] = ACTIONS(5123), + [anon_sym_BSLASHftvolcite] = ACTIONS(5123), + [anon_sym_BSLASHsvolcite] = ACTIONS(5123), + [anon_sym_BSLASHSvolcite] = ACTIONS(5123), + [anon_sym_BSLASHtvolcite] = ACTIONS(5123), + [anon_sym_BSLASHTvolcite] = ACTIONS(5123), + [anon_sym_BSLASHavolcite] = ACTIONS(5123), + [anon_sym_BSLASHAvolcite] = ACTIONS(5123), + [anon_sym_BSLASHnotecite] = ACTIONS(5123), + [anon_sym_BSLASHNotecite] = ACTIONS(5123), + [anon_sym_BSLASHpnotecite] = ACTIONS(5123), + [anon_sym_BSLASHPnotecite] = ACTIONS(5123), + [anon_sym_BSLASHfnotecite] = ACTIONS(5123), + [anon_sym_BSLASHlabel] = ACTIONS(5123), + [anon_sym_BSLASHref] = ACTIONS(5123), + [anon_sym_BSLASHeqref] = ACTIONS(5123), + [anon_sym_BSLASHvref] = ACTIONS(5123), + [anon_sym_BSLASHVref] = ACTIONS(5123), + [anon_sym_BSLASHautoref] = ACTIONS(5123), + [anon_sym_BSLASHpageref] = ACTIONS(5123), + [anon_sym_BSLASHcref] = ACTIONS(5123), + [anon_sym_BSLASHCref] = ACTIONS(5123), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5121), + [anon_sym_BSLASHnamecref] = ACTIONS(5123), + [anon_sym_BSLASHnameCref] = ACTIONS(5123), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5123), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5123), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5123), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5123), + [anon_sym_BSLASHlabelcref] = ACTIONS(5123), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5123), + [anon_sym_BSLASHcrefrange] = ACTIONS(5123), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5121), + [anon_sym_BSLASHCrefrange] = ACTIONS(5123), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5121), + [anon_sym_BSLASHnewlabel] = ACTIONS(5123), + [anon_sym_BSLASHnewcommand] = ACTIONS(5123), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5123), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5123), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5121), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5123), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5121), + [anon_sym_BSLASHdef] = ACTIONS(5123), + [anon_sym_BSLASHlet] = ACTIONS(5123), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5123), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5123), + [anon_sym_BSLASHgls] = ACTIONS(5123), + [anon_sym_BSLASHGls] = ACTIONS(5123), + [anon_sym_BSLASHGLS] = ACTIONS(5123), + [anon_sym_BSLASHglspl] = ACTIONS(5123), + [anon_sym_BSLASHGlspl] = ACTIONS(5123), + [anon_sym_BSLASHGLSpl] = ACTIONS(5123), + [anon_sym_BSLASHglsdisp] = ACTIONS(5123), + [anon_sym_BSLASHglslink] = ACTIONS(5123), + [anon_sym_BSLASHglstext] = ACTIONS(5123), + [anon_sym_BSLASHGlstext] = ACTIONS(5123), + [anon_sym_BSLASHGLStext] = ACTIONS(5123), + [anon_sym_BSLASHglsfirst] = ACTIONS(5123), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5123), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5123), + [anon_sym_BSLASHglsplural] = ACTIONS(5123), + [anon_sym_BSLASHGlsplural] = ACTIONS(5123), + [anon_sym_BSLASHGLSplural] = ACTIONS(5123), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5123), + [anon_sym_BSLASHglsname] = ACTIONS(5123), + [anon_sym_BSLASHGlsname] = ACTIONS(5123), + [anon_sym_BSLASHGLSname] = ACTIONS(5123), + [anon_sym_BSLASHglssymbol] = ACTIONS(5123), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5123), + [anon_sym_BSLASHglsdesc] = ACTIONS(5123), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5123), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5123), + [anon_sym_BSLASHglsuseri] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5123), + [anon_sym_BSLASHglsuserii] = ACTIONS(5123), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5123), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5123), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5123), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5123), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5123), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5123), + [anon_sym_BSLASHglsuserv] = ACTIONS(5123), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5123), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5123), + [anon_sym_BSLASHglsuservi] = ACTIONS(5123), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5123), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5123), + [anon_sym_BSLASHnewacronym] = ACTIONS(5123), + [anon_sym_BSLASHacrshort] = ACTIONS(5123), + [anon_sym_BSLASHAcrshort] = ACTIONS(5123), + [anon_sym_BSLASHACRshort] = ACTIONS(5123), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5123), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5123), + [anon_sym_BSLASHacrlong] = ACTIONS(5123), + [anon_sym_BSLASHAcrlong] = ACTIONS(5123), + [anon_sym_BSLASHACRlong] = ACTIONS(5123), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5123), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5123), + [anon_sym_BSLASHacrfull] = ACTIONS(5123), + [anon_sym_BSLASHAcrfull] = ACTIONS(5123), + [anon_sym_BSLASHACRfull] = ACTIONS(5123), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5123), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5123), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5123), + [anon_sym_BSLASHacs] = ACTIONS(5123), + [anon_sym_BSLASHAcs] = ACTIONS(5123), + [anon_sym_BSLASHacsp] = ACTIONS(5123), + [anon_sym_BSLASHAcsp] = ACTIONS(5123), + [anon_sym_BSLASHacl] = ACTIONS(5123), + [anon_sym_BSLASHAcl] = ACTIONS(5123), + [anon_sym_BSLASHaclp] = ACTIONS(5123), + [anon_sym_BSLASHAclp] = ACTIONS(5123), + [anon_sym_BSLASHacf] = ACTIONS(5123), + [anon_sym_BSLASHAcf] = ACTIONS(5123), + [anon_sym_BSLASHacfp] = ACTIONS(5123), + [anon_sym_BSLASHAcfp] = ACTIONS(5123), + [anon_sym_BSLASHac] = ACTIONS(5123), + [anon_sym_BSLASHAc] = ACTIONS(5123), + [anon_sym_BSLASHacp] = ACTIONS(5123), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5123), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5123), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5123), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5123), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5123), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5123), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5123), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5123), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5123), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5123), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5123), + [anon_sym_BSLASHcolor] = ACTIONS(5123), + [anon_sym_BSLASHcolorbox] = ACTIONS(5123), + [anon_sym_BSLASHtextcolor] = ACTIONS(5123), + [anon_sym_BSLASHpagecolor] = ACTIONS(5123), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5123), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5123), + [anon_sym_BSLASHtext] = ACTIONS(5123), + [anon_sym_BSLASHintertext] = ACTIONS(5123), + [anon_sym_shortintertext] = ACTIONS(5123), }, - [1305] = { - [sym_command_name] = ACTIONS(5247), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5247), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_RPAREN] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_RBRACK] = ACTIONS(5245), - [anon_sym_COMMA] = ACTIONS(5245), - [anon_sym_EQ] = ACTIONS(5245), - [anon_sym_LBRACE] = ACTIONS(5245), - [sym_word] = ACTIONS(5247), - [sym_placeholder] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_SLASH] = ACTIONS(5247), - [anon_sym_CARET] = ACTIONS(5247), - [anon_sym__] = ACTIONS(5247), - [anon_sym_LT] = ACTIONS(5247), - [anon_sym_GT] = ACTIONS(5247), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_PIPE] = ACTIONS(5247), - [anon_sym_COLON] = ACTIONS(5247), - [anon_sym_SQUOTE] = ACTIONS(5247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5245), - [anon_sym_DOLLAR] = ACTIONS(5247), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5245), - [anon_sym_BSLASHbegin] = ACTIONS(5247), - [anon_sym_BSLASHusepackage] = ACTIONS(5247), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5247), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5247), - [anon_sym_BSLASHinclude] = ACTIONS(5247), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5247), - [anon_sym_BSLASHinput] = ACTIONS(5247), - [anon_sym_BSLASHsubfile] = ACTIONS(5247), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5247), - [anon_sym_BSLASHbibliography] = ACTIONS(5247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5247), - [anon_sym_BSLASHincludesvg] = ACTIONS(5247), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5247), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5247), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5247), - [anon_sym_BSLASHimport] = ACTIONS(5247), - [anon_sym_BSLASHsubimport] = ACTIONS(5247), - [anon_sym_BSLASHinputfrom] = ACTIONS(5247), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5247), - [anon_sym_BSLASHincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHcaption] = ACTIONS(5247), - [anon_sym_BSLASHcite] = ACTIONS(5247), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCite] = ACTIONS(5247), - [anon_sym_BSLASHnocite] = ACTIONS(5247), - [anon_sym_BSLASHcitet] = ACTIONS(5247), - [anon_sym_BSLASHcitep] = ACTIONS(5247), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteyear] = ACTIONS(5247), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitedate] = ACTIONS(5247), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteurl] = ACTIONS(5247), - [anon_sym_BSLASHfullcite] = ACTIONS(5247), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5247), - [anon_sym_BSLASHcitealt] = ACTIONS(5247), - [anon_sym_BSLASHcitealp] = ACTIONS(5247), - [anon_sym_BSLASHcitetext] = ACTIONS(5247), - [anon_sym_BSLASHparencite] = ACTIONS(5247), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHParencite] = ACTIONS(5247), - [anon_sym_BSLASHfootcite] = ACTIONS(5247), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5247), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5247), - [anon_sym_BSLASHtextcite] = ACTIONS(5247), - [anon_sym_BSLASHTextcite] = ACTIONS(5247), - [anon_sym_BSLASHsmartcite] = ACTIONS(5247), - [anon_sym_BSLASHSmartcite] = ACTIONS(5247), - [anon_sym_BSLASHsupercite] = ACTIONS(5247), - [anon_sym_BSLASHautocite] = ACTIONS(5247), - [anon_sym_BSLASHAutocite] = ACTIONS(5247), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHvolcite] = ACTIONS(5247), - [anon_sym_BSLASHVolcite] = ACTIONS(5247), - [anon_sym_BSLASHpvolcite] = ACTIONS(5247), - [anon_sym_BSLASHPvolcite] = ACTIONS(5247), - [anon_sym_BSLASHfvolcite] = ACTIONS(5247), - [anon_sym_BSLASHftvolcite] = ACTIONS(5247), - [anon_sym_BSLASHsvolcite] = ACTIONS(5247), - [anon_sym_BSLASHSvolcite] = ACTIONS(5247), - [anon_sym_BSLASHtvolcite] = ACTIONS(5247), - [anon_sym_BSLASHTvolcite] = ACTIONS(5247), - [anon_sym_BSLASHavolcite] = ACTIONS(5247), - [anon_sym_BSLASHAvolcite] = ACTIONS(5247), - [anon_sym_BSLASHnotecite] = ACTIONS(5247), - [anon_sym_BSLASHNotecite] = ACTIONS(5247), - [anon_sym_BSLASHpnotecite] = ACTIONS(5247), - [anon_sym_BSLASHPnotecite] = ACTIONS(5247), - [anon_sym_BSLASHfnotecite] = ACTIONS(5247), - [anon_sym_BSLASHlabel] = ACTIONS(5247), - [anon_sym_BSLASHref] = ACTIONS(5247), - [anon_sym_BSLASHeqref] = ACTIONS(5247), - [anon_sym_BSLASHvref] = ACTIONS(5247), - [anon_sym_BSLASHVref] = ACTIONS(5247), - [anon_sym_BSLASHautoref] = ACTIONS(5247), - [anon_sym_BSLASHpageref] = ACTIONS(5247), - [anon_sym_BSLASHcref] = ACTIONS(5247), - [anon_sym_BSLASHCref] = ACTIONS(5247), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnameCref] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHlabelcref] = ACTIONS(5247), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnewlabel] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5245), - [anon_sym_BSLASHdef] = ACTIONS(5247), - [anon_sym_BSLASHlet] = ACTIONS(5247), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5247), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5247), - [anon_sym_BSLASHgls] = ACTIONS(5247), - [anon_sym_BSLASHGls] = ACTIONS(5247), - [anon_sym_BSLASHGLS] = ACTIONS(5247), - [anon_sym_BSLASHglspl] = ACTIONS(5247), - [anon_sym_BSLASHGlspl] = ACTIONS(5247), - [anon_sym_BSLASHGLSpl] = ACTIONS(5247), - [anon_sym_BSLASHglsdisp] = ACTIONS(5247), - [anon_sym_BSLASHglslink] = ACTIONS(5247), - [anon_sym_BSLASHglstext] = ACTIONS(5247), - [anon_sym_BSLASHGlstext] = ACTIONS(5247), - [anon_sym_BSLASHGLStext] = ACTIONS(5247), - [anon_sym_BSLASHglsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5247), - [anon_sym_BSLASHglsplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSplural] = ACTIONS(5247), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHglsname] = ACTIONS(5247), - [anon_sym_BSLASHGlsname] = ACTIONS(5247), - [anon_sym_BSLASHGLSname] = ACTIONS(5247), - [anon_sym_BSLASHglssymbol] = ACTIONS(5247), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5247), - [anon_sym_BSLASHglsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5247), - [anon_sym_BSLASHglsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5247), - [anon_sym_BSLASHglsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5247), - [anon_sym_BSLASHglsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5247), - [anon_sym_BSLASHglsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5247), - [anon_sym_BSLASHnewacronym] = ACTIONS(5247), - [anon_sym_BSLASHacrshort] = ACTIONS(5247), - [anon_sym_BSLASHAcrshort] = ACTIONS(5247), - [anon_sym_BSLASHACRshort] = ACTIONS(5247), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5247), - [anon_sym_BSLASHacrlong] = ACTIONS(5247), - [anon_sym_BSLASHAcrlong] = ACTIONS(5247), - [anon_sym_BSLASHACRlong] = ACTIONS(5247), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5247), - [anon_sym_BSLASHacrfull] = ACTIONS(5247), - [anon_sym_BSLASHAcrfull] = ACTIONS(5247), - [anon_sym_BSLASHACRfull] = ACTIONS(5247), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5247), - [anon_sym_BSLASHacs] = ACTIONS(5247), - [anon_sym_BSLASHAcs] = ACTIONS(5247), - [anon_sym_BSLASHacsp] = ACTIONS(5247), - [anon_sym_BSLASHAcsp] = ACTIONS(5247), - [anon_sym_BSLASHacl] = ACTIONS(5247), - [anon_sym_BSLASHAcl] = ACTIONS(5247), - [anon_sym_BSLASHaclp] = ACTIONS(5247), - [anon_sym_BSLASHAclp] = ACTIONS(5247), - [anon_sym_BSLASHacf] = ACTIONS(5247), - [anon_sym_BSLASHAcf] = ACTIONS(5247), - [anon_sym_BSLASHacfp] = ACTIONS(5247), - [anon_sym_BSLASHAcfp] = ACTIONS(5247), - [anon_sym_BSLASHac] = ACTIONS(5247), - [anon_sym_BSLASHAc] = ACTIONS(5247), - [anon_sym_BSLASHacp] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5247), - [anon_sym_BSLASHcolor] = ACTIONS(5247), - [anon_sym_BSLASHcolorbox] = ACTIONS(5247), - [anon_sym_BSLASHtextcolor] = ACTIONS(5247), - [anon_sym_BSLASHpagecolor] = ACTIONS(5247), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5247), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5247), + [1174] = { + [sym_command_name] = ACTIONS(5127), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5127), + [anon_sym_LPAREN] = ACTIONS(5125), + [anon_sym_RPAREN] = ACTIONS(5125), + [anon_sym_LBRACK] = ACTIONS(5125), + [anon_sym_RBRACK] = ACTIONS(5125), + [anon_sym_COMMA] = ACTIONS(5125), + [anon_sym_EQ] = ACTIONS(5125), + [anon_sym_BSLASHpart] = ACTIONS(5127), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddpart] = ACTIONS(5127), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5125), + [anon_sym_BSLASHchapter] = ACTIONS(5127), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddchap] = ACTIONS(5127), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsection] = ACTIONS(5127), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHaddsec] = ACTIONS(5127), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubsection] = ACTIONS(5127), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5127), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5125), + [anon_sym_BSLASHparagraph] = ACTIONS(5127), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5125), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5127), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5125), + [anon_sym_BSLASHitem] = ACTIONS(5127), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5125), + [anon_sym_LBRACE] = ACTIONS(5125), + [sym_word] = ACTIONS(5127), + [sym_placeholder] = ACTIONS(5125), + [anon_sym_PLUS] = ACTIONS(5127), + [anon_sym_DASH] = ACTIONS(5127), + [anon_sym_STAR] = ACTIONS(5127), + [anon_sym_SLASH] = ACTIONS(5127), + [anon_sym_CARET] = ACTIONS(5127), + [anon_sym__] = ACTIONS(5127), + [anon_sym_LT] = ACTIONS(5127), + [anon_sym_GT] = ACTIONS(5127), + [anon_sym_BANG] = ACTIONS(5127), + [anon_sym_PIPE] = ACTIONS(5127), + [anon_sym_COLON] = ACTIONS(5127), + [anon_sym_SQUOTE] = ACTIONS(5127), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5125), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5125), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5125), + [anon_sym_DOLLAR] = ACTIONS(5127), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5125), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5125), + [anon_sym_BSLASHbegin] = ACTIONS(5127), + [anon_sym_BSLASHusepackage] = ACTIONS(5127), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5127), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5127), + [anon_sym_BSLASHinclude] = ACTIONS(5127), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5127), + [anon_sym_BSLASHinput] = ACTIONS(5127), + [anon_sym_BSLASHsubfile] = ACTIONS(5127), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5127), + [anon_sym_BSLASHbibliography] = ACTIONS(5127), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5127), + [anon_sym_BSLASHincludesvg] = ACTIONS(5127), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5127), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5127), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5127), + [anon_sym_BSLASHimport] = ACTIONS(5127), + [anon_sym_BSLASHsubimport] = ACTIONS(5127), + [anon_sym_BSLASHinputfrom] = ACTIONS(5127), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5127), + [anon_sym_BSLASHincludefrom] = ACTIONS(5127), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5127), + [anon_sym_BSLASHcaption] = ACTIONS(5127), + [anon_sym_BSLASHcite] = ACTIONS(5127), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCite] = ACTIONS(5127), + [anon_sym_BSLASHnocite] = ACTIONS(5127), + [anon_sym_BSLASHcitet] = ACTIONS(5127), + [anon_sym_BSLASHcitep] = ACTIONS(5127), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteauthor] = ACTIONS(5127), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5127), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitetitle] = ACTIONS(5127), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteyear] = ACTIONS(5127), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5125), + [anon_sym_BSLASHcitedate] = ACTIONS(5127), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5125), + [anon_sym_BSLASHciteurl] = ACTIONS(5127), + [anon_sym_BSLASHfullcite] = ACTIONS(5127), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5127), + [anon_sym_BSLASHcitealt] = ACTIONS(5127), + [anon_sym_BSLASHcitealp] = ACTIONS(5127), + [anon_sym_BSLASHcitetext] = ACTIONS(5127), + [anon_sym_BSLASHparencite] = ACTIONS(5127), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHParencite] = ACTIONS(5127), + [anon_sym_BSLASHfootcite] = ACTIONS(5127), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5127), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5127), + [anon_sym_BSLASHtextcite] = ACTIONS(5127), + [anon_sym_BSLASHTextcite] = ACTIONS(5127), + [anon_sym_BSLASHsmartcite] = ACTIONS(5127), + [anon_sym_BSLASHSmartcite] = ACTIONS(5127), + [anon_sym_BSLASHsupercite] = ACTIONS(5127), + [anon_sym_BSLASHautocite] = ACTIONS(5127), + [anon_sym_BSLASHAutocite] = ACTIONS(5127), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5125), + [anon_sym_BSLASHvolcite] = ACTIONS(5127), + [anon_sym_BSLASHVolcite] = ACTIONS(5127), + [anon_sym_BSLASHpvolcite] = ACTIONS(5127), + [anon_sym_BSLASHPvolcite] = ACTIONS(5127), + [anon_sym_BSLASHfvolcite] = ACTIONS(5127), + [anon_sym_BSLASHftvolcite] = ACTIONS(5127), + [anon_sym_BSLASHsvolcite] = ACTIONS(5127), + [anon_sym_BSLASHSvolcite] = ACTIONS(5127), + [anon_sym_BSLASHtvolcite] = ACTIONS(5127), + [anon_sym_BSLASHTvolcite] = ACTIONS(5127), + [anon_sym_BSLASHavolcite] = ACTIONS(5127), + [anon_sym_BSLASHAvolcite] = ACTIONS(5127), + [anon_sym_BSLASHnotecite] = ACTIONS(5127), + [anon_sym_BSLASHNotecite] = ACTIONS(5127), + [anon_sym_BSLASHpnotecite] = ACTIONS(5127), + [anon_sym_BSLASHPnotecite] = ACTIONS(5127), + [anon_sym_BSLASHfnotecite] = ACTIONS(5127), + [anon_sym_BSLASHlabel] = ACTIONS(5127), + [anon_sym_BSLASHref] = ACTIONS(5127), + [anon_sym_BSLASHeqref] = ACTIONS(5127), + [anon_sym_BSLASHvref] = ACTIONS(5127), + [anon_sym_BSLASHVref] = ACTIONS(5127), + [anon_sym_BSLASHautoref] = ACTIONS(5127), + [anon_sym_BSLASHpageref] = ACTIONS(5127), + [anon_sym_BSLASHcref] = ACTIONS(5127), + [anon_sym_BSLASHCref] = ACTIONS(5127), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5125), + [anon_sym_BSLASHnamecref] = ACTIONS(5127), + [anon_sym_BSLASHnameCref] = ACTIONS(5127), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5127), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5127), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5127), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5127), + [anon_sym_BSLASHlabelcref] = ACTIONS(5127), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5127), + [anon_sym_BSLASHcrefrange] = ACTIONS(5127), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5125), + [anon_sym_BSLASHCrefrange] = ACTIONS(5127), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5125), + [anon_sym_BSLASHnewlabel] = ACTIONS(5127), + [anon_sym_BSLASHnewcommand] = ACTIONS(5127), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5127), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5127), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5125), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5127), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5125), + [anon_sym_BSLASHdef] = ACTIONS(5127), + [anon_sym_BSLASHlet] = ACTIONS(5127), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5127), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5127), + [anon_sym_BSLASHgls] = ACTIONS(5127), + [anon_sym_BSLASHGls] = ACTIONS(5127), + [anon_sym_BSLASHGLS] = ACTIONS(5127), + [anon_sym_BSLASHglspl] = ACTIONS(5127), + [anon_sym_BSLASHGlspl] = ACTIONS(5127), + [anon_sym_BSLASHGLSpl] = ACTIONS(5127), + [anon_sym_BSLASHglsdisp] = ACTIONS(5127), + [anon_sym_BSLASHglslink] = ACTIONS(5127), + [anon_sym_BSLASHglstext] = ACTIONS(5127), + [anon_sym_BSLASHGlstext] = ACTIONS(5127), + [anon_sym_BSLASHGLStext] = ACTIONS(5127), + [anon_sym_BSLASHglsfirst] = ACTIONS(5127), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5127), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5127), + [anon_sym_BSLASHglsplural] = ACTIONS(5127), + [anon_sym_BSLASHGlsplural] = ACTIONS(5127), + [anon_sym_BSLASHGLSplural] = ACTIONS(5127), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5127), + [anon_sym_BSLASHglsname] = ACTIONS(5127), + [anon_sym_BSLASHGlsname] = ACTIONS(5127), + [anon_sym_BSLASHGLSname] = ACTIONS(5127), + [anon_sym_BSLASHglssymbol] = ACTIONS(5127), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5127), + [anon_sym_BSLASHglsdesc] = ACTIONS(5127), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5127), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5127), + [anon_sym_BSLASHglsuseri] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5127), + [anon_sym_BSLASHglsuserii] = ACTIONS(5127), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5127), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5127), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5127), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5127), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5127), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5127), + [anon_sym_BSLASHglsuserv] = ACTIONS(5127), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5127), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5127), + [anon_sym_BSLASHglsuservi] = ACTIONS(5127), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5127), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5127), + [anon_sym_BSLASHnewacronym] = ACTIONS(5127), + [anon_sym_BSLASHacrshort] = ACTIONS(5127), + [anon_sym_BSLASHAcrshort] = ACTIONS(5127), + [anon_sym_BSLASHACRshort] = ACTIONS(5127), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5127), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5127), + [anon_sym_BSLASHacrlong] = ACTIONS(5127), + [anon_sym_BSLASHAcrlong] = ACTIONS(5127), + [anon_sym_BSLASHACRlong] = ACTIONS(5127), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5127), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5127), + [anon_sym_BSLASHacrfull] = ACTIONS(5127), + [anon_sym_BSLASHAcrfull] = ACTIONS(5127), + [anon_sym_BSLASHACRfull] = ACTIONS(5127), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5127), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5127), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5127), + [anon_sym_BSLASHacs] = ACTIONS(5127), + [anon_sym_BSLASHAcs] = ACTIONS(5127), + [anon_sym_BSLASHacsp] = ACTIONS(5127), + [anon_sym_BSLASHAcsp] = ACTIONS(5127), + [anon_sym_BSLASHacl] = ACTIONS(5127), + [anon_sym_BSLASHAcl] = ACTIONS(5127), + [anon_sym_BSLASHaclp] = ACTIONS(5127), + [anon_sym_BSLASHAclp] = ACTIONS(5127), + [anon_sym_BSLASHacf] = ACTIONS(5127), + [anon_sym_BSLASHAcf] = ACTIONS(5127), + [anon_sym_BSLASHacfp] = ACTIONS(5127), + [anon_sym_BSLASHAcfp] = ACTIONS(5127), + [anon_sym_BSLASHac] = ACTIONS(5127), + [anon_sym_BSLASHAc] = ACTIONS(5127), + [anon_sym_BSLASHacp] = ACTIONS(5127), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5127), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5127), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5127), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5127), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5127), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5127), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5127), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5127), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5127), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5127), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5127), + [anon_sym_BSLASHcolor] = ACTIONS(5127), + [anon_sym_BSLASHcolorbox] = ACTIONS(5127), + [anon_sym_BSLASHtextcolor] = ACTIONS(5127), + [anon_sym_BSLASHpagecolor] = ACTIONS(5127), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5127), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5127), + [anon_sym_BSLASHtext] = ACTIONS(5127), + [anon_sym_BSLASHintertext] = ACTIONS(5127), + [anon_sym_shortintertext] = ACTIONS(5127), }, - [1306] = { - [sym_command_name] = ACTIONS(5251), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5251), - [anon_sym_LPAREN] = ACTIONS(5249), - [anon_sym_RPAREN] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5249), - [anon_sym_RBRACK] = ACTIONS(5249), - [anon_sym_COMMA] = ACTIONS(5249), - [anon_sym_EQ] = ACTIONS(5249), - [anon_sym_LBRACE] = ACTIONS(5249), - [sym_word] = ACTIONS(5251), - [sym_placeholder] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym__] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_BANG] = ACTIONS(5251), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5251), - [anon_sym_SQUOTE] = ACTIONS(5251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5249), - [anon_sym_DOLLAR] = ACTIONS(5251), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5249), - [anon_sym_BSLASHbegin] = ACTIONS(5251), - [anon_sym_BSLASHusepackage] = ACTIONS(5251), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5251), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5251), - [anon_sym_BSLASHinclude] = ACTIONS(5251), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5251), - [anon_sym_BSLASHinput] = ACTIONS(5251), - [anon_sym_BSLASHsubfile] = ACTIONS(5251), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5251), - [anon_sym_BSLASHbibliography] = ACTIONS(5251), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5251), - [anon_sym_BSLASHincludesvg] = ACTIONS(5251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5251), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5251), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5251), - [anon_sym_BSLASHimport] = ACTIONS(5251), - [anon_sym_BSLASHsubimport] = ACTIONS(5251), - [anon_sym_BSLASHinputfrom] = ACTIONS(5251), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5251), - [anon_sym_BSLASHincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHcaption] = ACTIONS(5251), - [anon_sym_BSLASHcite] = ACTIONS(5251), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCite] = ACTIONS(5251), - [anon_sym_BSLASHnocite] = ACTIONS(5251), - [anon_sym_BSLASHcitet] = ACTIONS(5251), - [anon_sym_BSLASHcitep] = ACTIONS(5251), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor] = ACTIONS(5251), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5251), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle] = ACTIONS(5251), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteyear] = ACTIONS(5251), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitedate] = ACTIONS(5251), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteurl] = ACTIONS(5251), - [anon_sym_BSLASHfullcite] = ACTIONS(5251), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5251), - [anon_sym_BSLASHcitealt] = ACTIONS(5251), - [anon_sym_BSLASHcitealp] = ACTIONS(5251), - [anon_sym_BSLASHcitetext] = ACTIONS(5251), - [anon_sym_BSLASHparencite] = ACTIONS(5251), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHParencite] = ACTIONS(5251), - [anon_sym_BSLASHfootcite] = ACTIONS(5251), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5251), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5251), - [anon_sym_BSLASHtextcite] = ACTIONS(5251), - [anon_sym_BSLASHTextcite] = ACTIONS(5251), - [anon_sym_BSLASHsmartcite] = ACTIONS(5251), - [anon_sym_BSLASHSmartcite] = ACTIONS(5251), - [anon_sym_BSLASHsupercite] = ACTIONS(5251), - [anon_sym_BSLASHautocite] = ACTIONS(5251), - [anon_sym_BSLASHAutocite] = ACTIONS(5251), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHvolcite] = ACTIONS(5251), - [anon_sym_BSLASHVolcite] = ACTIONS(5251), - [anon_sym_BSLASHpvolcite] = ACTIONS(5251), - [anon_sym_BSLASHPvolcite] = ACTIONS(5251), - [anon_sym_BSLASHfvolcite] = ACTIONS(5251), - [anon_sym_BSLASHftvolcite] = ACTIONS(5251), - [anon_sym_BSLASHsvolcite] = ACTIONS(5251), - [anon_sym_BSLASHSvolcite] = ACTIONS(5251), - [anon_sym_BSLASHtvolcite] = ACTIONS(5251), - [anon_sym_BSLASHTvolcite] = ACTIONS(5251), - [anon_sym_BSLASHavolcite] = ACTIONS(5251), - [anon_sym_BSLASHAvolcite] = ACTIONS(5251), - [anon_sym_BSLASHnotecite] = ACTIONS(5251), - [anon_sym_BSLASHNotecite] = ACTIONS(5251), - [anon_sym_BSLASHpnotecite] = ACTIONS(5251), - [anon_sym_BSLASHPnotecite] = ACTIONS(5251), - [anon_sym_BSLASHfnotecite] = ACTIONS(5251), - [anon_sym_BSLASHlabel] = ACTIONS(5251), - [anon_sym_BSLASHref] = ACTIONS(5251), - [anon_sym_BSLASHeqref] = ACTIONS(5251), - [anon_sym_BSLASHvref] = ACTIONS(5251), - [anon_sym_BSLASHVref] = ACTIONS(5251), - [anon_sym_BSLASHautoref] = ACTIONS(5251), - [anon_sym_BSLASHpageref] = ACTIONS(5251), - [anon_sym_BSLASHcref] = ACTIONS(5251), - [anon_sym_BSLASHCref] = ACTIONS(5251), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnameCref] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHlabelcref] = ACTIONS(5251), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange] = ACTIONS(5251), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnewlabel] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5251), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5251), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5251), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5249), - [anon_sym_BSLASHdef] = ACTIONS(5251), - [anon_sym_BSLASHlet] = ACTIONS(5251), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5251), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5251), - [anon_sym_BSLASHgls] = ACTIONS(5251), - [anon_sym_BSLASHGls] = ACTIONS(5251), - [anon_sym_BSLASHGLS] = ACTIONS(5251), - [anon_sym_BSLASHglspl] = ACTIONS(5251), - [anon_sym_BSLASHGlspl] = ACTIONS(5251), - [anon_sym_BSLASHGLSpl] = ACTIONS(5251), - [anon_sym_BSLASHglsdisp] = ACTIONS(5251), - [anon_sym_BSLASHglslink] = ACTIONS(5251), - [anon_sym_BSLASHglstext] = ACTIONS(5251), - [anon_sym_BSLASHGlstext] = ACTIONS(5251), - [anon_sym_BSLASHGLStext] = ACTIONS(5251), - [anon_sym_BSLASHglsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5251), - [anon_sym_BSLASHglsplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSplural] = ACTIONS(5251), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHglsname] = ACTIONS(5251), - [anon_sym_BSLASHGlsname] = ACTIONS(5251), - [anon_sym_BSLASHGLSname] = ACTIONS(5251), - [anon_sym_BSLASHglssymbol] = ACTIONS(5251), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5251), - [anon_sym_BSLASHglsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5251), - [anon_sym_BSLASHglsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5251), - [anon_sym_BSLASHglsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5251), - [anon_sym_BSLASHglsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5251), - [anon_sym_BSLASHglsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5251), - [anon_sym_BSLASHnewacronym] = ACTIONS(5251), - [anon_sym_BSLASHacrshort] = ACTIONS(5251), - [anon_sym_BSLASHAcrshort] = ACTIONS(5251), - [anon_sym_BSLASHACRshort] = ACTIONS(5251), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5251), - [anon_sym_BSLASHacrlong] = ACTIONS(5251), - [anon_sym_BSLASHAcrlong] = ACTIONS(5251), - [anon_sym_BSLASHACRlong] = ACTIONS(5251), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5251), - [anon_sym_BSLASHacrfull] = ACTIONS(5251), - [anon_sym_BSLASHAcrfull] = ACTIONS(5251), - [anon_sym_BSLASHACRfull] = ACTIONS(5251), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5251), - [anon_sym_BSLASHacs] = ACTIONS(5251), - [anon_sym_BSLASHAcs] = ACTIONS(5251), - [anon_sym_BSLASHacsp] = ACTIONS(5251), - [anon_sym_BSLASHAcsp] = ACTIONS(5251), - [anon_sym_BSLASHacl] = ACTIONS(5251), - [anon_sym_BSLASHAcl] = ACTIONS(5251), - [anon_sym_BSLASHaclp] = ACTIONS(5251), - [anon_sym_BSLASHAclp] = ACTIONS(5251), - [anon_sym_BSLASHacf] = ACTIONS(5251), - [anon_sym_BSLASHAcf] = ACTIONS(5251), - [anon_sym_BSLASHacfp] = ACTIONS(5251), - [anon_sym_BSLASHAcfp] = ACTIONS(5251), - [anon_sym_BSLASHac] = ACTIONS(5251), - [anon_sym_BSLASHAc] = ACTIONS(5251), - [anon_sym_BSLASHacp] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5251), - [anon_sym_BSLASHcolor] = ACTIONS(5251), - [anon_sym_BSLASHcolorbox] = ACTIONS(5251), - [anon_sym_BSLASHtextcolor] = ACTIONS(5251), - [anon_sym_BSLASHpagecolor] = ACTIONS(5251), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5251), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5251), + [1175] = { + [sym_command_name] = ACTIONS(5139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_RBRACK] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_BSLASHpart] = ACTIONS(5139), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5137), + [anon_sym_BSLASHaddpart] = ACTIONS(5139), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5137), + [anon_sym_BSLASHchapter] = ACTIONS(5139), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5137), + [anon_sym_BSLASHaddchap] = ACTIONS(5139), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsection] = ACTIONS(5139), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5137), + [anon_sym_BSLASHaddsec] = ACTIONS(5139), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsubsection] = ACTIONS(5139), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5139), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5137), + [anon_sym_BSLASHparagraph] = ACTIONS(5139), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5137), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5139), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5137), + [anon_sym_BSLASHitem] = ACTIONS(5139), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5137), + [sym_word] = ACTIONS(5139), + [sym_placeholder] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_CARET] = ACTIONS(5139), + [anon_sym__] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_PIPE] = ACTIONS(5139), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5137), + [anon_sym_DOLLAR] = ACTIONS(5139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), + [anon_sym_BSLASHbegin] = ACTIONS(5139), + [anon_sym_BSLASHusepackage] = ACTIONS(5139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), + [anon_sym_BSLASHinclude] = ACTIONS(5139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), + [anon_sym_BSLASHinput] = ACTIONS(5139), + [anon_sym_BSLASHsubfile] = ACTIONS(5139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), + [anon_sym_BSLASHbibliography] = ACTIONS(5139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), + [anon_sym_BSLASHincludesvg] = ACTIONS(5139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), + [anon_sym_BSLASHimport] = ACTIONS(5139), + [anon_sym_BSLASHsubimport] = ACTIONS(5139), + [anon_sym_BSLASHinputfrom] = ACTIONS(5139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), + [anon_sym_BSLASHincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHcaption] = ACTIONS(5139), + [anon_sym_BSLASHcite] = ACTIONS(5139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCite] = ACTIONS(5139), + [anon_sym_BSLASHnocite] = ACTIONS(5139), + [anon_sym_BSLASHcitet] = ACTIONS(5139), + [anon_sym_BSLASHcitep] = ACTIONS(5139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteauthor] = ACTIONS(5139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitetitle] = ACTIONS(5139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteyear] = ACTIONS(5139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitedate] = ACTIONS(5139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteurl] = ACTIONS(5139), + [anon_sym_BSLASHfullcite] = ACTIONS(5139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), + [anon_sym_BSLASHcitealt] = ACTIONS(5139), + [anon_sym_BSLASHcitealp] = ACTIONS(5139), + [anon_sym_BSLASHcitetext] = ACTIONS(5139), + [anon_sym_BSLASHparencite] = ACTIONS(5139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHParencite] = ACTIONS(5139), + [anon_sym_BSLASHfootcite] = ACTIONS(5139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), + [anon_sym_BSLASHtextcite] = ACTIONS(5139), + [anon_sym_BSLASHTextcite] = ACTIONS(5139), + [anon_sym_BSLASHsmartcite] = ACTIONS(5139), + [anon_sym_BSLASHSmartcite] = ACTIONS(5139), + [anon_sym_BSLASHsupercite] = ACTIONS(5139), + [anon_sym_BSLASHautocite] = ACTIONS(5139), + [anon_sym_BSLASHAutocite] = ACTIONS(5139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHvolcite] = ACTIONS(5139), + [anon_sym_BSLASHVolcite] = ACTIONS(5139), + [anon_sym_BSLASHpvolcite] = ACTIONS(5139), + [anon_sym_BSLASHPvolcite] = ACTIONS(5139), + [anon_sym_BSLASHfvolcite] = ACTIONS(5139), + [anon_sym_BSLASHftvolcite] = ACTIONS(5139), + [anon_sym_BSLASHsvolcite] = ACTIONS(5139), + [anon_sym_BSLASHSvolcite] = ACTIONS(5139), + [anon_sym_BSLASHtvolcite] = ACTIONS(5139), + [anon_sym_BSLASHTvolcite] = ACTIONS(5139), + [anon_sym_BSLASHavolcite] = ACTIONS(5139), + [anon_sym_BSLASHAvolcite] = ACTIONS(5139), + [anon_sym_BSLASHnotecite] = ACTIONS(5139), + [anon_sym_BSLASHNotecite] = ACTIONS(5139), + [anon_sym_BSLASHpnotecite] = ACTIONS(5139), + [anon_sym_BSLASHPnotecite] = ACTIONS(5139), + [anon_sym_BSLASHfnotecite] = ACTIONS(5139), + [anon_sym_BSLASHlabel] = ACTIONS(5139), + [anon_sym_BSLASHref] = ACTIONS(5139), + [anon_sym_BSLASHeqref] = ACTIONS(5139), + [anon_sym_BSLASHvref] = ACTIONS(5139), + [anon_sym_BSLASHVref] = ACTIONS(5139), + [anon_sym_BSLASHautoref] = ACTIONS(5139), + [anon_sym_BSLASHpageref] = ACTIONS(5139), + [anon_sym_BSLASHcref] = ACTIONS(5139), + [anon_sym_BSLASHCref] = ACTIONS(5139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnameCref] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHlabelcref] = ACTIONS(5139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCrefrange] = ACTIONS(5139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnewlabel] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), + [anon_sym_BSLASHdef] = ACTIONS(5139), + [anon_sym_BSLASHlet] = ACTIONS(5139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), + [anon_sym_BSLASHgls] = ACTIONS(5139), + [anon_sym_BSLASHGls] = ACTIONS(5139), + [anon_sym_BSLASHGLS] = ACTIONS(5139), + [anon_sym_BSLASHglspl] = ACTIONS(5139), + [anon_sym_BSLASHGlspl] = ACTIONS(5139), + [anon_sym_BSLASHGLSpl] = ACTIONS(5139), + [anon_sym_BSLASHglsdisp] = ACTIONS(5139), + [anon_sym_BSLASHglslink] = ACTIONS(5139), + [anon_sym_BSLASHglstext] = ACTIONS(5139), + [anon_sym_BSLASHGlstext] = ACTIONS(5139), + [anon_sym_BSLASHGLStext] = ACTIONS(5139), + [anon_sym_BSLASHglsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), + [anon_sym_BSLASHglsplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSplural] = ACTIONS(5139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHglsname] = ACTIONS(5139), + [anon_sym_BSLASHGlsname] = ACTIONS(5139), + [anon_sym_BSLASHGLSname] = ACTIONS(5139), + [anon_sym_BSLASHglssymbol] = ACTIONS(5139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), + [anon_sym_BSLASHglsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), + [anon_sym_BSLASHglsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), + [anon_sym_BSLASHglsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), + [anon_sym_BSLASHglsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), + [anon_sym_BSLASHglsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), + [anon_sym_BSLASHnewacronym] = ACTIONS(5139), + [anon_sym_BSLASHacrshort] = ACTIONS(5139), + [anon_sym_BSLASHAcrshort] = ACTIONS(5139), + [anon_sym_BSLASHACRshort] = ACTIONS(5139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), + [anon_sym_BSLASHacrlong] = ACTIONS(5139), + [anon_sym_BSLASHAcrlong] = ACTIONS(5139), + [anon_sym_BSLASHACRlong] = ACTIONS(5139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), + [anon_sym_BSLASHacrfull] = ACTIONS(5139), + [anon_sym_BSLASHAcrfull] = ACTIONS(5139), + [anon_sym_BSLASHACRfull] = ACTIONS(5139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), + [anon_sym_BSLASHacs] = ACTIONS(5139), + [anon_sym_BSLASHAcs] = ACTIONS(5139), + [anon_sym_BSLASHacsp] = ACTIONS(5139), + [anon_sym_BSLASHAcsp] = ACTIONS(5139), + [anon_sym_BSLASHacl] = ACTIONS(5139), + [anon_sym_BSLASHAcl] = ACTIONS(5139), + [anon_sym_BSLASHaclp] = ACTIONS(5139), + [anon_sym_BSLASHAclp] = ACTIONS(5139), + [anon_sym_BSLASHacf] = ACTIONS(5139), + [anon_sym_BSLASHAcf] = ACTIONS(5139), + [anon_sym_BSLASHacfp] = ACTIONS(5139), + [anon_sym_BSLASHAcfp] = ACTIONS(5139), + [anon_sym_BSLASHac] = ACTIONS(5139), + [anon_sym_BSLASHAc] = ACTIONS(5139), + [anon_sym_BSLASHacp] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), + [anon_sym_BSLASHcolor] = ACTIONS(5139), + [anon_sym_BSLASHcolorbox] = ACTIONS(5139), + [anon_sym_BSLASHtextcolor] = ACTIONS(5139), + [anon_sym_BSLASHpagecolor] = ACTIONS(5139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHtext] = ACTIONS(5139), + [anon_sym_BSLASHintertext] = ACTIONS(5139), + [anon_sym_shortintertext] = ACTIONS(5139), }, - [1307] = { - [sym_command_name] = ACTIONS(5255), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5255), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5253), - [anon_sym_LBRACE] = ACTIONS(5253), - [sym_word] = ACTIONS(5255), - [sym_placeholder] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_CARET] = ACTIONS(5255), - [anon_sym__] = ACTIONS(5255), - [anon_sym_LT] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5255), - [anon_sym_BANG] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5255), - [anon_sym_COLON] = ACTIONS(5255), - [anon_sym_SQUOTE] = ACTIONS(5255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5253), - [anon_sym_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5253), - [anon_sym_BSLASHbegin] = ACTIONS(5255), - [anon_sym_BSLASHusepackage] = ACTIONS(5255), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5255), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5255), - [anon_sym_BSLASHinclude] = ACTIONS(5255), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5255), - [anon_sym_BSLASHinput] = ACTIONS(5255), - [anon_sym_BSLASHsubfile] = ACTIONS(5255), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5255), - [anon_sym_BSLASHbibliography] = ACTIONS(5255), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5255), - [anon_sym_BSLASHincludesvg] = ACTIONS(5255), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5255), - [anon_sym_BSLASHimport] = ACTIONS(5255), - [anon_sym_BSLASHsubimport] = ACTIONS(5255), - [anon_sym_BSLASHinputfrom] = ACTIONS(5255), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5255), - [anon_sym_BSLASHincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHcaption] = ACTIONS(5255), - [anon_sym_BSLASHcite] = ACTIONS(5255), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCite] = ACTIONS(5255), - [anon_sym_BSLASHnocite] = ACTIONS(5255), - [anon_sym_BSLASHcitet] = ACTIONS(5255), - [anon_sym_BSLASHcitep] = ACTIONS(5255), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteauthor] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitetitle] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteyear] = ACTIONS(5255), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitedate] = ACTIONS(5255), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteurl] = ACTIONS(5255), - [anon_sym_BSLASHfullcite] = ACTIONS(5255), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5255), - [anon_sym_BSLASHcitealt] = ACTIONS(5255), - [anon_sym_BSLASHcitealp] = ACTIONS(5255), - [anon_sym_BSLASHcitetext] = ACTIONS(5255), - [anon_sym_BSLASHparencite] = ACTIONS(5255), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHParencite] = ACTIONS(5255), - [anon_sym_BSLASHfootcite] = ACTIONS(5255), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5255), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5255), - [anon_sym_BSLASHtextcite] = ACTIONS(5255), - [anon_sym_BSLASHTextcite] = ACTIONS(5255), - [anon_sym_BSLASHsmartcite] = ACTIONS(5255), - [anon_sym_BSLASHSmartcite] = ACTIONS(5255), - [anon_sym_BSLASHsupercite] = ACTIONS(5255), - [anon_sym_BSLASHautocite] = ACTIONS(5255), - [anon_sym_BSLASHAutocite] = ACTIONS(5255), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHvolcite] = ACTIONS(5255), - [anon_sym_BSLASHVolcite] = ACTIONS(5255), - [anon_sym_BSLASHpvolcite] = ACTIONS(5255), - [anon_sym_BSLASHPvolcite] = ACTIONS(5255), - [anon_sym_BSLASHfvolcite] = ACTIONS(5255), - [anon_sym_BSLASHftvolcite] = ACTIONS(5255), - [anon_sym_BSLASHsvolcite] = ACTIONS(5255), - [anon_sym_BSLASHSvolcite] = ACTIONS(5255), - [anon_sym_BSLASHtvolcite] = ACTIONS(5255), - [anon_sym_BSLASHTvolcite] = ACTIONS(5255), - [anon_sym_BSLASHavolcite] = ACTIONS(5255), - [anon_sym_BSLASHAvolcite] = ACTIONS(5255), - [anon_sym_BSLASHnotecite] = ACTIONS(5255), - [anon_sym_BSLASHNotecite] = ACTIONS(5255), - [anon_sym_BSLASHpnotecite] = ACTIONS(5255), - [anon_sym_BSLASHPnotecite] = ACTIONS(5255), - [anon_sym_BSLASHfnotecite] = ACTIONS(5255), - [anon_sym_BSLASHlabel] = ACTIONS(5255), - [anon_sym_BSLASHref] = ACTIONS(5255), - [anon_sym_BSLASHeqref] = ACTIONS(5255), - [anon_sym_BSLASHvref] = ACTIONS(5255), - [anon_sym_BSLASHVref] = ACTIONS(5255), - [anon_sym_BSLASHautoref] = ACTIONS(5255), - [anon_sym_BSLASHpageref] = ACTIONS(5255), - [anon_sym_BSLASHcref] = ACTIONS(5255), - [anon_sym_BSLASHCref] = ACTIONS(5255), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnameCref] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHlabelcref] = ACTIONS(5255), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCrefrange] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnewlabel] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5253), - [anon_sym_BSLASHdef] = ACTIONS(5255), - [anon_sym_BSLASHlet] = ACTIONS(5255), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5255), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5255), - [anon_sym_BSLASHgls] = ACTIONS(5255), - [anon_sym_BSLASHGls] = ACTIONS(5255), - [anon_sym_BSLASHGLS] = ACTIONS(5255), - [anon_sym_BSLASHglspl] = ACTIONS(5255), - [anon_sym_BSLASHGlspl] = ACTIONS(5255), - [anon_sym_BSLASHGLSpl] = ACTIONS(5255), - [anon_sym_BSLASHglsdisp] = ACTIONS(5255), - [anon_sym_BSLASHglslink] = ACTIONS(5255), - [anon_sym_BSLASHglstext] = ACTIONS(5255), - [anon_sym_BSLASHGlstext] = ACTIONS(5255), - [anon_sym_BSLASHGLStext] = ACTIONS(5255), - [anon_sym_BSLASHglsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5255), - [anon_sym_BSLASHglsplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSplural] = ACTIONS(5255), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHglsname] = ACTIONS(5255), - [anon_sym_BSLASHGlsname] = ACTIONS(5255), - [anon_sym_BSLASHGLSname] = ACTIONS(5255), - [anon_sym_BSLASHglssymbol] = ACTIONS(5255), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5255), - [anon_sym_BSLASHglsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5255), - [anon_sym_BSLASHglsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5255), - [anon_sym_BSLASHglsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5255), - [anon_sym_BSLASHglsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5255), - [anon_sym_BSLASHglsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5255), - [anon_sym_BSLASHnewacronym] = ACTIONS(5255), - [anon_sym_BSLASHacrshort] = ACTIONS(5255), - [anon_sym_BSLASHAcrshort] = ACTIONS(5255), - [anon_sym_BSLASHACRshort] = ACTIONS(5255), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5255), - [anon_sym_BSLASHacrlong] = ACTIONS(5255), - [anon_sym_BSLASHAcrlong] = ACTIONS(5255), - [anon_sym_BSLASHACRlong] = ACTIONS(5255), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5255), - [anon_sym_BSLASHacrfull] = ACTIONS(5255), - [anon_sym_BSLASHAcrfull] = ACTIONS(5255), - [anon_sym_BSLASHACRfull] = ACTIONS(5255), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5255), - [anon_sym_BSLASHacs] = ACTIONS(5255), - [anon_sym_BSLASHAcs] = ACTIONS(5255), - [anon_sym_BSLASHacsp] = ACTIONS(5255), - [anon_sym_BSLASHAcsp] = ACTIONS(5255), - [anon_sym_BSLASHacl] = ACTIONS(5255), - [anon_sym_BSLASHAcl] = ACTIONS(5255), - [anon_sym_BSLASHaclp] = ACTIONS(5255), - [anon_sym_BSLASHAclp] = ACTIONS(5255), - [anon_sym_BSLASHacf] = ACTIONS(5255), - [anon_sym_BSLASHAcf] = ACTIONS(5255), - [anon_sym_BSLASHacfp] = ACTIONS(5255), - [anon_sym_BSLASHAcfp] = ACTIONS(5255), - [anon_sym_BSLASHac] = ACTIONS(5255), - [anon_sym_BSLASHAc] = ACTIONS(5255), - [anon_sym_BSLASHacp] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5255), - [anon_sym_BSLASHcolor] = ACTIONS(5255), - [anon_sym_BSLASHcolorbox] = ACTIONS(5255), - [anon_sym_BSLASHtextcolor] = ACTIONS(5255), - [anon_sym_BSLASHpagecolor] = ACTIONS(5255), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5255), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5255), + [1176] = { + [sym_command_name] = ACTIONS(4891), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_LBRACK] = ACTIONS(4889), + [anon_sym_RBRACK] = ACTIONS(4889), + [anon_sym_COMMA] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4889), + [anon_sym_BSLASHpart] = ACTIONS(4891), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddpart] = ACTIONS(4891), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4889), + [anon_sym_BSLASHchapter] = ACTIONS(4891), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddchap] = ACTIONS(4891), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsection] = ACTIONS(4891), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHaddsec] = ACTIONS(4891), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubsection] = ACTIONS(4891), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4891), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4889), + [anon_sym_BSLASHparagraph] = ACTIONS(4891), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4889), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4891), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4889), + [anon_sym_BSLASHitem] = ACTIONS(4891), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(4889), + [sym_word] = ACTIONS(4891), + [sym_placeholder] = ACTIONS(4889), + [anon_sym_PLUS] = ACTIONS(4891), + [anon_sym_DASH] = ACTIONS(4891), + [anon_sym_STAR] = ACTIONS(4891), + [anon_sym_SLASH] = ACTIONS(4891), + [anon_sym_CARET] = ACTIONS(4891), + [anon_sym__] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_BANG] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_SQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4889), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4889), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4889), + [anon_sym_BSLASHbegin] = ACTIONS(4891), + [anon_sym_BSLASHend] = ACTIONS(4891), + [anon_sym_BSLASHusepackage] = ACTIONS(4891), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4891), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4891), + [anon_sym_BSLASHinclude] = ACTIONS(4891), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4891), + [anon_sym_BSLASHinput] = ACTIONS(4891), + [anon_sym_BSLASHsubfile] = ACTIONS(4891), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4891), + [anon_sym_BSLASHbibliography] = ACTIONS(4891), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4891), + [anon_sym_BSLASHincludesvg] = ACTIONS(4891), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4891), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4891), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4891), + [anon_sym_BSLASHimport] = ACTIONS(4891), + [anon_sym_BSLASHsubimport] = ACTIONS(4891), + [anon_sym_BSLASHinputfrom] = ACTIONS(4891), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4891), + [anon_sym_BSLASHincludefrom] = ACTIONS(4891), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4891), + [anon_sym_BSLASHcaption] = ACTIONS(4891), + [anon_sym_BSLASHcite] = ACTIONS(4891), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCite] = ACTIONS(4891), + [anon_sym_BSLASHnocite] = ACTIONS(4891), + [anon_sym_BSLASHcitet] = ACTIONS(4891), + [anon_sym_BSLASHcitep] = ACTIONS(4891), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteauthor] = ACTIONS(4891), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4891), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitetitle] = ACTIONS(4891), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteyear] = ACTIONS(4891), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitedate] = ACTIONS(4891), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteurl] = ACTIONS(4891), + [anon_sym_BSLASHfullcite] = ACTIONS(4891), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4891), + [anon_sym_BSLASHcitealt] = ACTIONS(4891), + [anon_sym_BSLASHcitealp] = ACTIONS(4891), + [anon_sym_BSLASHcitetext] = ACTIONS(4891), + [anon_sym_BSLASHparencite] = ACTIONS(4891), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHParencite] = ACTIONS(4891), + [anon_sym_BSLASHfootcite] = ACTIONS(4891), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4891), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4891), + [anon_sym_BSLASHtextcite] = ACTIONS(4891), + [anon_sym_BSLASHTextcite] = ACTIONS(4891), + [anon_sym_BSLASHsmartcite] = ACTIONS(4891), + [anon_sym_BSLASHSmartcite] = ACTIONS(4891), + [anon_sym_BSLASHsupercite] = ACTIONS(4891), + [anon_sym_BSLASHautocite] = ACTIONS(4891), + [anon_sym_BSLASHAutocite] = ACTIONS(4891), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHvolcite] = ACTIONS(4891), + [anon_sym_BSLASHVolcite] = ACTIONS(4891), + [anon_sym_BSLASHpvolcite] = ACTIONS(4891), + [anon_sym_BSLASHPvolcite] = ACTIONS(4891), + [anon_sym_BSLASHfvolcite] = ACTIONS(4891), + [anon_sym_BSLASHftvolcite] = ACTIONS(4891), + [anon_sym_BSLASHsvolcite] = ACTIONS(4891), + [anon_sym_BSLASHSvolcite] = ACTIONS(4891), + [anon_sym_BSLASHtvolcite] = ACTIONS(4891), + [anon_sym_BSLASHTvolcite] = ACTIONS(4891), + [anon_sym_BSLASHavolcite] = ACTIONS(4891), + [anon_sym_BSLASHAvolcite] = ACTIONS(4891), + [anon_sym_BSLASHnotecite] = ACTIONS(4891), + [anon_sym_BSLASHNotecite] = ACTIONS(4891), + [anon_sym_BSLASHpnotecite] = ACTIONS(4891), + [anon_sym_BSLASHPnotecite] = ACTIONS(4891), + [anon_sym_BSLASHfnotecite] = ACTIONS(4891), + [anon_sym_BSLASHlabel] = ACTIONS(4891), + [anon_sym_BSLASHref] = ACTIONS(4891), + [anon_sym_BSLASHeqref] = ACTIONS(4891), + [anon_sym_BSLASHvref] = ACTIONS(4891), + [anon_sym_BSLASHVref] = ACTIONS(4891), + [anon_sym_BSLASHautoref] = ACTIONS(4891), + [anon_sym_BSLASHpageref] = ACTIONS(4891), + [anon_sym_BSLASHcref] = ACTIONS(4891), + [anon_sym_BSLASHCref] = ACTIONS(4891), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4889), + [anon_sym_BSLASHnamecref] = ACTIONS(4891), + [anon_sym_BSLASHnameCref] = ACTIONS(4891), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4891), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4891), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4891), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4891), + [anon_sym_BSLASHlabelcref] = ACTIONS(4891), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4891), + [anon_sym_BSLASHcrefrange] = ACTIONS(4891), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCrefrange] = ACTIONS(4891), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4889), + [anon_sym_BSLASHnewlabel] = ACTIONS(4891), + [anon_sym_BSLASHnewcommand] = ACTIONS(4891), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4889), + [anon_sym_BSLASHdef] = ACTIONS(4891), + [anon_sym_BSLASHlet] = ACTIONS(4891), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4891), + [anon_sym_BSLASHgls] = ACTIONS(4891), + [anon_sym_BSLASHGls] = ACTIONS(4891), + [anon_sym_BSLASHGLS] = ACTIONS(4891), + [anon_sym_BSLASHglspl] = ACTIONS(4891), + [anon_sym_BSLASHGlspl] = ACTIONS(4891), + [anon_sym_BSLASHGLSpl] = ACTIONS(4891), + [anon_sym_BSLASHglsdisp] = ACTIONS(4891), + [anon_sym_BSLASHglslink] = ACTIONS(4891), + [anon_sym_BSLASHglstext] = ACTIONS(4891), + [anon_sym_BSLASHGlstext] = ACTIONS(4891), + [anon_sym_BSLASHGLStext] = ACTIONS(4891), + [anon_sym_BSLASHglsfirst] = ACTIONS(4891), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4891), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4891), + [anon_sym_BSLASHglsplural] = ACTIONS(4891), + [anon_sym_BSLASHGlsplural] = ACTIONS(4891), + [anon_sym_BSLASHGLSplural] = ACTIONS(4891), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHglsname] = ACTIONS(4891), + [anon_sym_BSLASHGlsname] = ACTIONS(4891), + [anon_sym_BSLASHGLSname] = ACTIONS(4891), + [anon_sym_BSLASHglssymbol] = ACTIONS(4891), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4891), + [anon_sym_BSLASHglsdesc] = ACTIONS(4891), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4891), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4891), + [anon_sym_BSLASHglsuseri] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4891), + [anon_sym_BSLASHglsuserii] = ACTIONS(4891), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4891), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4891), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4891), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4891), + [anon_sym_BSLASHglsuserv] = ACTIONS(4891), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4891), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4891), + [anon_sym_BSLASHglsuservi] = ACTIONS(4891), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4891), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4891), + [anon_sym_BSLASHnewacronym] = ACTIONS(4891), + [anon_sym_BSLASHacrshort] = ACTIONS(4891), + [anon_sym_BSLASHAcrshort] = ACTIONS(4891), + [anon_sym_BSLASHACRshort] = ACTIONS(4891), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4891), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4891), + [anon_sym_BSLASHacrlong] = ACTIONS(4891), + [anon_sym_BSLASHAcrlong] = ACTIONS(4891), + [anon_sym_BSLASHACRlong] = ACTIONS(4891), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4891), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4891), + [anon_sym_BSLASHacrfull] = ACTIONS(4891), + [anon_sym_BSLASHAcrfull] = ACTIONS(4891), + [anon_sym_BSLASHACRfull] = ACTIONS(4891), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4891), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4891), + [anon_sym_BSLASHacs] = ACTIONS(4891), + [anon_sym_BSLASHAcs] = ACTIONS(4891), + [anon_sym_BSLASHacsp] = ACTIONS(4891), + [anon_sym_BSLASHAcsp] = ACTIONS(4891), + [anon_sym_BSLASHacl] = ACTIONS(4891), + [anon_sym_BSLASHAcl] = ACTIONS(4891), + [anon_sym_BSLASHaclp] = ACTIONS(4891), + [anon_sym_BSLASHAclp] = ACTIONS(4891), + [anon_sym_BSLASHacf] = ACTIONS(4891), + [anon_sym_BSLASHAcf] = ACTIONS(4891), + [anon_sym_BSLASHacfp] = ACTIONS(4891), + [anon_sym_BSLASHAcfp] = ACTIONS(4891), + [anon_sym_BSLASHac] = ACTIONS(4891), + [anon_sym_BSLASHAc] = ACTIONS(4891), + [anon_sym_BSLASHacp] = ACTIONS(4891), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4891), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4891), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4891), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4891), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4891), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4891), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4891), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4891), + [anon_sym_BSLASHcolor] = ACTIONS(4891), + [anon_sym_BSLASHcolorbox] = ACTIONS(4891), + [anon_sym_BSLASHtextcolor] = ACTIONS(4891), + [anon_sym_BSLASHpagecolor] = ACTIONS(4891), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4891), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4891), + [anon_sym_BSLASHtext] = ACTIONS(4891), + [anon_sym_BSLASHintertext] = ACTIONS(4891), + [anon_sym_shortintertext] = ACTIONS(4891), }, - [1308] = { - [sym_command_name] = ACTIONS(5263), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5263), - [anon_sym_LPAREN] = ACTIONS(5261), - [anon_sym_RPAREN] = ACTIONS(5261), - [anon_sym_LBRACK] = ACTIONS(5261), - [anon_sym_RBRACK] = ACTIONS(5261), - [anon_sym_COMMA] = ACTIONS(5261), - [anon_sym_EQ] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(5261), - [sym_word] = ACTIONS(5263), - [sym_placeholder] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_STAR] = ACTIONS(5263), - [anon_sym_SLASH] = ACTIONS(5263), - [anon_sym_CARET] = ACTIONS(5263), - [anon_sym__] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(5263), - [anon_sym_GT] = ACTIONS(5263), - [anon_sym_BANG] = ACTIONS(5263), - [anon_sym_PIPE] = ACTIONS(5263), - [anon_sym_COLON] = ACTIONS(5263), - [anon_sym_SQUOTE] = ACTIONS(5263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5261), - [anon_sym_DOLLAR] = ACTIONS(5263), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5261), - [anon_sym_BSLASHbegin] = ACTIONS(5263), - [anon_sym_BSLASHusepackage] = ACTIONS(5263), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), - [anon_sym_BSLASHinclude] = ACTIONS(5263), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), - [anon_sym_BSLASHinput] = ACTIONS(5263), - [anon_sym_BSLASHsubfile] = ACTIONS(5263), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), - [anon_sym_BSLASHbibliography] = ACTIONS(5263), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), - [anon_sym_BSLASHincludesvg] = ACTIONS(5263), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), - [anon_sym_BSLASHimport] = ACTIONS(5263), - [anon_sym_BSLASHsubimport] = ACTIONS(5263), - [anon_sym_BSLASHinputfrom] = ACTIONS(5263), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), - [anon_sym_BSLASHincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHcaption] = ACTIONS(5263), - [anon_sym_BSLASHcite] = ACTIONS(5263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCite] = ACTIONS(5263), - [anon_sym_BSLASHnocite] = ACTIONS(5263), - [anon_sym_BSLASHcitet] = ACTIONS(5263), - [anon_sym_BSLASHcitep] = ACTIONS(5263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteyear] = ACTIONS(5263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitedate] = ACTIONS(5263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteurl] = ACTIONS(5263), - [anon_sym_BSLASHfullcite] = ACTIONS(5263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), - [anon_sym_BSLASHcitealt] = ACTIONS(5263), - [anon_sym_BSLASHcitealp] = ACTIONS(5263), - [anon_sym_BSLASHcitetext] = ACTIONS(5263), - [anon_sym_BSLASHparencite] = ACTIONS(5263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHParencite] = ACTIONS(5263), - [anon_sym_BSLASHfootcite] = ACTIONS(5263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), - [anon_sym_BSLASHtextcite] = ACTIONS(5263), - [anon_sym_BSLASHTextcite] = ACTIONS(5263), - [anon_sym_BSLASHsmartcite] = ACTIONS(5263), - [anon_sym_BSLASHSmartcite] = ACTIONS(5263), - [anon_sym_BSLASHsupercite] = ACTIONS(5263), - [anon_sym_BSLASHautocite] = ACTIONS(5263), - [anon_sym_BSLASHAutocite] = ACTIONS(5263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHvolcite] = ACTIONS(5263), - [anon_sym_BSLASHVolcite] = ACTIONS(5263), - [anon_sym_BSLASHpvolcite] = ACTIONS(5263), - [anon_sym_BSLASHPvolcite] = ACTIONS(5263), - [anon_sym_BSLASHfvolcite] = ACTIONS(5263), - [anon_sym_BSLASHftvolcite] = ACTIONS(5263), - [anon_sym_BSLASHsvolcite] = ACTIONS(5263), - [anon_sym_BSLASHSvolcite] = ACTIONS(5263), - [anon_sym_BSLASHtvolcite] = ACTIONS(5263), - [anon_sym_BSLASHTvolcite] = ACTIONS(5263), - [anon_sym_BSLASHavolcite] = ACTIONS(5263), - [anon_sym_BSLASHAvolcite] = ACTIONS(5263), - [anon_sym_BSLASHnotecite] = ACTIONS(5263), - [anon_sym_BSLASHNotecite] = ACTIONS(5263), - [anon_sym_BSLASHpnotecite] = ACTIONS(5263), - [anon_sym_BSLASHPnotecite] = ACTIONS(5263), - [anon_sym_BSLASHfnotecite] = ACTIONS(5263), - [anon_sym_BSLASHlabel] = ACTIONS(5263), - [anon_sym_BSLASHref] = ACTIONS(5263), - [anon_sym_BSLASHeqref] = ACTIONS(5263), - [anon_sym_BSLASHvref] = ACTIONS(5263), - [anon_sym_BSLASHVref] = ACTIONS(5263), - [anon_sym_BSLASHautoref] = ACTIONS(5263), - [anon_sym_BSLASHpageref] = ACTIONS(5263), - [anon_sym_BSLASHcref] = ACTIONS(5263), - [anon_sym_BSLASHCref] = ACTIONS(5263), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnameCref] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHlabelcref] = ACTIONS(5263), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnewlabel] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), - [anon_sym_BSLASHdef] = ACTIONS(5263), - [anon_sym_BSLASHlet] = ACTIONS(5263), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), - [anon_sym_BSLASHgls] = ACTIONS(5263), - [anon_sym_BSLASHGls] = ACTIONS(5263), - [anon_sym_BSLASHGLS] = ACTIONS(5263), - [anon_sym_BSLASHglspl] = ACTIONS(5263), - [anon_sym_BSLASHGlspl] = ACTIONS(5263), - [anon_sym_BSLASHGLSpl] = ACTIONS(5263), - [anon_sym_BSLASHglsdisp] = ACTIONS(5263), - [anon_sym_BSLASHglslink] = ACTIONS(5263), - [anon_sym_BSLASHglstext] = ACTIONS(5263), - [anon_sym_BSLASHGlstext] = ACTIONS(5263), - [anon_sym_BSLASHGLStext] = ACTIONS(5263), - [anon_sym_BSLASHglsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), - [anon_sym_BSLASHglsplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSplural] = ACTIONS(5263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHglsname] = ACTIONS(5263), - [anon_sym_BSLASHGlsname] = ACTIONS(5263), - [anon_sym_BSLASHGLSname] = ACTIONS(5263), - [anon_sym_BSLASHglssymbol] = ACTIONS(5263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), - [anon_sym_BSLASHglsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), - [anon_sym_BSLASHglsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), - [anon_sym_BSLASHglsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), - [anon_sym_BSLASHglsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), - [anon_sym_BSLASHglsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), - [anon_sym_BSLASHnewacronym] = ACTIONS(5263), - [anon_sym_BSLASHacrshort] = ACTIONS(5263), - [anon_sym_BSLASHAcrshort] = ACTIONS(5263), - [anon_sym_BSLASHACRshort] = ACTIONS(5263), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), - [anon_sym_BSLASHacrlong] = ACTIONS(5263), - [anon_sym_BSLASHAcrlong] = ACTIONS(5263), - [anon_sym_BSLASHACRlong] = ACTIONS(5263), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), - [anon_sym_BSLASHacrfull] = ACTIONS(5263), - [anon_sym_BSLASHAcrfull] = ACTIONS(5263), - [anon_sym_BSLASHACRfull] = ACTIONS(5263), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), - [anon_sym_BSLASHacs] = ACTIONS(5263), - [anon_sym_BSLASHAcs] = ACTIONS(5263), - [anon_sym_BSLASHacsp] = ACTIONS(5263), - [anon_sym_BSLASHAcsp] = ACTIONS(5263), - [anon_sym_BSLASHacl] = ACTIONS(5263), - [anon_sym_BSLASHAcl] = ACTIONS(5263), - [anon_sym_BSLASHaclp] = ACTIONS(5263), - [anon_sym_BSLASHAclp] = ACTIONS(5263), - [anon_sym_BSLASHacf] = ACTIONS(5263), - [anon_sym_BSLASHAcf] = ACTIONS(5263), - [anon_sym_BSLASHacfp] = ACTIONS(5263), - [anon_sym_BSLASHAcfp] = ACTIONS(5263), - [anon_sym_BSLASHac] = ACTIONS(5263), - [anon_sym_BSLASHAc] = ACTIONS(5263), - [anon_sym_BSLASHacp] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), - [anon_sym_BSLASHcolor] = ACTIONS(5263), - [anon_sym_BSLASHcolorbox] = ACTIONS(5263), - [anon_sym_BSLASHtextcolor] = ACTIONS(5263), - [anon_sym_BSLASHpagecolor] = ACTIONS(5263), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), + [1177] = { + [sym_command_name] = ACTIONS(5145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_RPAREN] = ACTIONS(5143), + [anon_sym_LBRACK] = ACTIONS(5143), + [anon_sym_RBRACK] = ACTIONS(5143), + [anon_sym_COMMA] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_BSLASHpart] = ACTIONS(5145), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddpart] = ACTIONS(5145), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5143), + [anon_sym_BSLASHchapter] = ACTIONS(5145), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddchap] = ACTIONS(5145), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsection] = ACTIONS(5145), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHaddsec] = ACTIONS(5145), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubsection] = ACTIONS(5145), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5145), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5143), + [anon_sym_BSLASHparagraph] = ACTIONS(5145), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5143), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5145), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5143), + [anon_sym_BSLASHitem] = ACTIONS(5145), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5143), + [sym_word] = ACTIONS(5145), + [sym_placeholder] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym__] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5145), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5143), + [anon_sym_DOLLAR] = ACTIONS(5145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), + [anon_sym_BSLASHbegin] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5145), + [anon_sym_BSLASHinclude] = ACTIONS(5145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5145), + [anon_sym_BSLASHinput] = ACTIONS(5145), + [anon_sym_BSLASHsubfile] = ACTIONS(5145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5145), + [anon_sym_BSLASHbibliography] = ACTIONS(5145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5145), + [anon_sym_BSLASHincludesvg] = ACTIONS(5145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5145), + [anon_sym_BSLASHimport] = ACTIONS(5145), + [anon_sym_BSLASHsubimport] = ACTIONS(5145), + [anon_sym_BSLASHinputfrom] = ACTIONS(5145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5145), + [anon_sym_BSLASHincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHcaption] = ACTIONS(5145), + [anon_sym_BSLASHcite] = ACTIONS(5145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCite] = ACTIONS(5145), + [anon_sym_BSLASHnocite] = ACTIONS(5145), + [anon_sym_BSLASHcitet] = ACTIONS(5145), + [anon_sym_BSLASHcitep] = ACTIONS(5145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteauthor] = ACTIONS(5145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitetitle] = ACTIONS(5145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteyear] = ACTIONS(5145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitedate] = ACTIONS(5145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteurl] = ACTIONS(5145), + [anon_sym_BSLASHfullcite] = ACTIONS(5145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5145), + [anon_sym_BSLASHcitealt] = ACTIONS(5145), + [anon_sym_BSLASHcitealp] = ACTIONS(5145), + [anon_sym_BSLASHcitetext] = ACTIONS(5145), + [anon_sym_BSLASHparencite] = ACTIONS(5145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHParencite] = ACTIONS(5145), + [anon_sym_BSLASHfootcite] = ACTIONS(5145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5145), + [anon_sym_BSLASHtextcite] = ACTIONS(5145), + [anon_sym_BSLASHTextcite] = ACTIONS(5145), + [anon_sym_BSLASHsmartcite] = ACTIONS(5145), + [anon_sym_BSLASHSmartcite] = ACTIONS(5145), + [anon_sym_BSLASHsupercite] = ACTIONS(5145), + [anon_sym_BSLASHautocite] = ACTIONS(5145), + [anon_sym_BSLASHAutocite] = ACTIONS(5145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHvolcite] = ACTIONS(5145), + [anon_sym_BSLASHVolcite] = ACTIONS(5145), + [anon_sym_BSLASHpvolcite] = ACTIONS(5145), + [anon_sym_BSLASHPvolcite] = ACTIONS(5145), + [anon_sym_BSLASHfvolcite] = ACTIONS(5145), + [anon_sym_BSLASHftvolcite] = ACTIONS(5145), + [anon_sym_BSLASHsvolcite] = ACTIONS(5145), + [anon_sym_BSLASHSvolcite] = ACTIONS(5145), + [anon_sym_BSLASHtvolcite] = ACTIONS(5145), + [anon_sym_BSLASHTvolcite] = ACTIONS(5145), + [anon_sym_BSLASHavolcite] = ACTIONS(5145), + [anon_sym_BSLASHAvolcite] = ACTIONS(5145), + [anon_sym_BSLASHnotecite] = ACTIONS(5145), + [anon_sym_BSLASHNotecite] = ACTIONS(5145), + [anon_sym_BSLASHpnotecite] = ACTIONS(5145), + [anon_sym_BSLASHPnotecite] = ACTIONS(5145), + [anon_sym_BSLASHfnotecite] = ACTIONS(5145), + [anon_sym_BSLASHlabel] = ACTIONS(5145), + [anon_sym_BSLASHref] = ACTIONS(5145), + [anon_sym_BSLASHeqref] = ACTIONS(5145), + [anon_sym_BSLASHvref] = ACTIONS(5145), + [anon_sym_BSLASHVref] = ACTIONS(5145), + [anon_sym_BSLASHautoref] = ACTIONS(5145), + [anon_sym_BSLASHpageref] = ACTIONS(5145), + [anon_sym_BSLASHcref] = ACTIONS(5145), + [anon_sym_BSLASHCref] = ACTIONS(5145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnameCref] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHlabelcref] = ACTIONS(5145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCrefrange] = ACTIONS(5145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnewlabel] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), + [anon_sym_BSLASHdef] = ACTIONS(5145), + [anon_sym_BSLASHlet] = ACTIONS(5145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5145), + [anon_sym_BSLASHgls] = ACTIONS(5145), + [anon_sym_BSLASHGls] = ACTIONS(5145), + [anon_sym_BSLASHGLS] = ACTIONS(5145), + [anon_sym_BSLASHglspl] = ACTIONS(5145), + [anon_sym_BSLASHGlspl] = ACTIONS(5145), + [anon_sym_BSLASHGLSpl] = ACTIONS(5145), + [anon_sym_BSLASHglsdisp] = ACTIONS(5145), + [anon_sym_BSLASHglslink] = ACTIONS(5145), + [anon_sym_BSLASHglstext] = ACTIONS(5145), + [anon_sym_BSLASHGlstext] = ACTIONS(5145), + [anon_sym_BSLASHGLStext] = ACTIONS(5145), + [anon_sym_BSLASHglsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5145), + [anon_sym_BSLASHglsplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSplural] = ACTIONS(5145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHglsname] = ACTIONS(5145), + [anon_sym_BSLASHGlsname] = ACTIONS(5145), + [anon_sym_BSLASHGLSname] = ACTIONS(5145), + [anon_sym_BSLASHglssymbol] = ACTIONS(5145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5145), + [anon_sym_BSLASHglsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5145), + [anon_sym_BSLASHglsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5145), + [anon_sym_BSLASHglsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5145), + [anon_sym_BSLASHglsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5145), + [anon_sym_BSLASHglsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5145), + [anon_sym_BSLASHnewacronym] = ACTIONS(5145), + [anon_sym_BSLASHacrshort] = ACTIONS(5145), + [anon_sym_BSLASHAcrshort] = ACTIONS(5145), + [anon_sym_BSLASHACRshort] = ACTIONS(5145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5145), + [anon_sym_BSLASHacrlong] = ACTIONS(5145), + [anon_sym_BSLASHAcrlong] = ACTIONS(5145), + [anon_sym_BSLASHACRlong] = ACTIONS(5145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5145), + [anon_sym_BSLASHacrfull] = ACTIONS(5145), + [anon_sym_BSLASHAcrfull] = ACTIONS(5145), + [anon_sym_BSLASHACRfull] = ACTIONS(5145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5145), + [anon_sym_BSLASHacs] = ACTIONS(5145), + [anon_sym_BSLASHAcs] = ACTIONS(5145), + [anon_sym_BSLASHacsp] = ACTIONS(5145), + [anon_sym_BSLASHAcsp] = ACTIONS(5145), + [anon_sym_BSLASHacl] = ACTIONS(5145), + [anon_sym_BSLASHAcl] = ACTIONS(5145), + [anon_sym_BSLASHaclp] = ACTIONS(5145), + [anon_sym_BSLASHAclp] = ACTIONS(5145), + [anon_sym_BSLASHacf] = ACTIONS(5145), + [anon_sym_BSLASHAcf] = ACTIONS(5145), + [anon_sym_BSLASHacfp] = ACTIONS(5145), + [anon_sym_BSLASHAcfp] = ACTIONS(5145), + [anon_sym_BSLASHac] = ACTIONS(5145), + [anon_sym_BSLASHAc] = ACTIONS(5145), + [anon_sym_BSLASHacp] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5145), + [anon_sym_BSLASHcolor] = ACTIONS(5145), + [anon_sym_BSLASHcolorbox] = ACTIONS(5145), + [anon_sym_BSLASHtextcolor] = ACTIONS(5145), + [anon_sym_BSLASHpagecolor] = ACTIONS(5145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5145), + [anon_sym_BSLASHtext] = ACTIONS(5145), + [anon_sym_BSLASHintertext] = ACTIONS(5145), + [anon_sym_shortintertext] = ACTIONS(5145), }, - [1309] = { - [sym_command_name] = ACTIONS(5151), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5151), - [anon_sym_LPAREN] = ACTIONS(5149), - [anon_sym_RPAREN] = ACTIONS(5149), - [anon_sym_LBRACK] = ACTIONS(5149), - [anon_sym_RBRACK] = ACTIONS(5149), - [anon_sym_COMMA] = ACTIONS(5149), - [anon_sym_EQ] = ACTIONS(5149), - [anon_sym_LBRACE] = ACTIONS(5149), - [sym_word] = ACTIONS(5151), - [sym_placeholder] = ACTIONS(5149), - [anon_sym_PLUS] = ACTIONS(5151), - [anon_sym_DASH] = ACTIONS(5151), - [anon_sym_STAR] = ACTIONS(5151), - [anon_sym_SLASH] = ACTIONS(5151), - [anon_sym_CARET] = ACTIONS(5151), - [anon_sym__] = ACTIONS(5151), - [anon_sym_LT] = ACTIONS(5151), - [anon_sym_GT] = ACTIONS(5151), - [anon_sym_BANG] = ACTIONS(5151), - [anon_sym_PIPE] = ACTIONS(5151), - [anon_sym_COLON] = ACTIONS(5151), - [anon_sym_SQUOTE] = ACTIONS(5151), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5149), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5149), - [anon_sym_DOLLAR] = ACTIONS(5151), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5149), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5149), - [anon_sym_BSLASHbegin] = ACTIONS(5151), - [anon_sym_BSLASHusepackage] = ACTIONS(5151), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5151), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5151), - [anon_sym_BSLASHinclude] = ACTIONS(5151), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5151), - [anon_sym_BSLASHinput] = ACTIONS(5151), - [anon_sym_BSLASHsubfile] = ACTIONS(5151), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5151), - [anon_sym_BSLASHbibliography] = ACTIONS(5151), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5151), - [anon_sym_BSLASHincludesvg] = ACTIONS(5151), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5151), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5151), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5151), - [anon_sym_BSLASHimport] = ACTIONS(5151), - [anon_sym_BSLASHsubimport] = ACTIONS(5151), - [anon_sym_BSLASHinputfrom] = ACTIONS(5151), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5151), - [anon_sym_BSLASHincludefrom] = ACTIONS(5151), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5151), - [anon_sym_BSLASHcaption] = ACTIONS(5151), - [anon_sym_BSLASHcite] = ACTIONS(5151), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCite] = ACTIONS(5151), - [anon_sym_BSLASHnocite] = ACTIONS(5151), - [anon_sym_BSLASHcitet] = ACTIONS(5151), - [anon_sym_BSLASHcitep] = ACTIONS(5151), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteauthor] = ACTIONS(5151), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5151), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitetitle] = ACTIONS(5151), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteyear] = ACTIONS(5151), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5149), - [anon_sym_BSLASHcitedate] = ACTIONS(5151), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5149), - [anon_sym_BSLASHciteurl] = ACTIONS(5151), - [anon_sym_BSLASHfullcite] = ACTIONS(5151), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5151), - [anon_sym_BSLASHcitealt] = ACTIONS(5151), - [anon_sym_BSLASHcitealp] = ACTIONS(5151), - [anon_sym_BSLASHcitetext] = ACTIONS(5151), - [anon_sym_BSLASHparencite] = ACTIONS(5151), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHParencite] = ACTIONS(5151), - [anon_sym_BSLASHfootcite] = ACTIONS(5151), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5151), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5151), - [anon_sym_BSLASHtextcite] = ACTIONS(5151), - [anon_sym_BSLASHTextcite] = ACTIONS(5151), - [anon_sym_BSLASHsmartcite] = ACTIONS(5151), - [anon_sym_BSLASHSmartcite] = ACTIONS(5151), - [anon_sym_BSLASHsupercite] = ACTIONS(5151), - [anon_sym_BSLASHautocite] = ACTIONS(5151), - [anon_sym_BSLASHAutocite] = ACTIONS(5151), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5149), - [anon_sym_BSLASHvolcite] = ACTIONS(5151), - [anon_sym_BSLASHVolcite] = ACTIONS(5151), - [anon_sym_BSLASHpvolcite] = ACTIONS(5151), - [anon_sym_BSLASHPvolcite] = ACTIONS(5151), - [anon_sym_BSLASHfvolcite] = ACTIONS(5151), - [anon_sym_BSLASHftvolcite] = ACTIONS(5151), - [anon_sym_BSLASHsvolcite] = ACTIONS(5151), - [anon_sym_BSLASHSvolcite] = ACTIONS(5151), - [anon_sym_BSLASHtvolcite] = ACTIONS(5151), - [anon_sym_BSLASHTvolcite] = ACTIONS(5151), - [anon_sym_BSLASHavolcite] = ACTIONS(5151), - [anon_sym_BSLASHAvolcite] = ACTIONS(5151), - [anon_sym_BSLASHnotecite] = ACTIONS(5151), - [anon_sym_BSLASHNotecite] = ACTIONS(5151), - [anon_sym_BSLASHpnotecite] = ACTIONS(5151), - [anon_sym_BSLASHPnotecite] = ACTIONS(5151), - [anon_sym_BSLASHfnotecite] = ACTIONS(5151), - [anon_sym_BSLASHlabel] = ACTIONS(5151), - [anon_sym_BSLASHref] = ACTIONS(5151), - [anon_sym_BSLASHeqref] = ACTIONS(5151), - [anon_sym_BSLASHvref] = ACTIONS(5151), - [anon_sym_BSLASHVref] = ACTIONS(5151), - [anon_sym_BSLASHautoref] = ACTIONS(5151), - [anon_sym_BSLASHpageref] = ACTIONS(5151), - [anon_sym_BSLASHcref] = ACTIONS(5151), - [anon_sym_BSLASHCref] = ACTIONS(5151), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5149), - [anon_sym_BSLASHnamecref] = ACTIONS(5151), - [anon_sym_BSLASHnameCref] = ACTIONS(5151), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5151), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5151), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5151), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5151), - [anon_sym_BSLASHlabelcref] = ACTIONS(5151), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5151), - [anon_sym_BSLASHcrefrange] = ACTIONS(5151), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5149), - [anon_sym_BSLASHCrefrange] = ACTIONS(5151), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5149), - [anon_sym_BSLASHnewlabel] = ACTIONS(5151), - [anon_sym_BSLASHnewcommand] = ACTIONS(5151), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5151), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5151), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5149), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5151), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5149), - [anon_sym_BSLASHdef] = ACTIONS(5151), - [anon_sym_BSLASHlet] = ACTIONS(5151), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5151), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5151), - [anon_sym_BSLASHgls] = ACTIONS(5151), - [anon_sym_BSLASHGls] = ACTIONS(5151), - [anon_sym_BSLASHGLS] = ACTIONS(5151), - [anon_sym_BSLASHglspl] = ACTIONS(5151), - [anon_sym_BSLASHGlspl] = ACTIONS(5151), - [anon_sym_BSLASHGLSpl] = ACTIONS(5151), - [anon_sym_BSLASHglsdisp] = ACTIONS(5151), - [anon_sym_BSLASHglslink] = ACTIONS(5151), - [anon_sym_BSLASHglstext] = ACTIONS(5151), - [anon_sym_BSLASHGlstext] = ACTIONS(5151), - [anon_sym_BSLASHGLStext] = ACTIONS(5151), - [anon_sym_BSLASHglsfirst] = ACTIONS(5151), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5151), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5151), - [anon_sym_BSLASHglsplural] = ACTIONS(5151), - [anon_sym_BSLASHGlsplural] = ACTIONS(5151), - [anon_sym_BSLASHGLSplural] = ACTIONS(5151), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5151), - [anon_sym_BSLASHglsname] = ACTIONS(5151), - [anon_sym_BSLASHGlsname] = ACTIONS(5151), - [anon_sym_BSLASHGLSname] = ACTIONS(5151), - [anon_sym_BSLASHglssymbol] = ACTIONS(5151), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5151), - [anon_sym_BSLASHglsdesc] = ACTIONS(5151), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5151), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5151), - [anon_sym_BSLASHglsuseri] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5151), - [anon_sym_BSLASHglsuserii] = ACTIONS(5151), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5151), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5151), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5151), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5151), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5151), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5151), - [anon_sym_BSLASHglsuserv] = ACTIONS(5151), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5151), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5151), - [anon_sym_BSLASHglsuservi] = ACTIONS(5151), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5151), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5151), - [anon_sym_BSLASHnewacronym] = ACTIONS(5151), - [anon_sym_BSLASHacrshort] = ACTIONS(5151), - [anon_sym_BSLASHAcrshort] = ACTIONS(5151), - [anon_sym_BSLASHACRshort] = ACTIONS(5151), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5151), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5151), - [anon_sym_BSLASHacrlong] = ACTIONS(5151), - [anon_sym_BSLASHAcrlong] = ACTIONS(5151), - [anon_sym_BSLASHACRlong] = ACTIONS(5151), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5151), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5151), - [anon_sym_BSLASHacrfull] = ACTIONS(5151), - [anon_sym_BSLASHAcrfull] = ACTIONS(5151), - [anon_sym_BSLASHACRfull] = ACTIONS(5151), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5151), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5151), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5151), - [anon_sym_BSLASHacs] = ACTIONS(5151), - [anon_sym_BSLASHAcs] = ACTIONS(5151), - [anon_sym_BSLASHacsp] = ACTIONS(5151), - [anon_sym_BSLASHAcsp] = ACTIONS(5151), - [anon_sym_BSLASHacl] = ACTIONS(5151), - [anon_sym_BSLASHAcl] = ACTIONS(5151), - [anon_sym_BSLASHaclp] = ACTIONS(5151), - [anon_sym_BSLASHAclp] = ACTIONS(5151), - [anon_sym_BSLASHacf] = ACTIONS(5151), - [anon_sym_BSLASHAcf] = ACTIONS(5151), - [anon_sym_BSLASHacfp] = ACTIONS(5151), - [anon_sym_BSLASHAcfp] = ACTIONS(5151), - [anon_sym_BSLASHac] = ACTIONS(5151), - [anon_sym_BSLASHAc] = ACTIONS(5151), - [anon_sym_BSLASHacp] = ACTIONS(5151), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5151), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5151), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5151), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5151), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5151), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5151), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5151), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5151), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5151), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5151), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5151), - [anon_sym_BSLASHcolor] = ACTIONS(5151), - [anon_sym_BSLASHcolorbox] = ACTIONS(5151), - [anon_sym_BSLASHtextcolor] = ACTIONS(5151), - [anon_sym_BSLASHpagecolor] = ACTIONS(5151), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5151), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5151), + [1178] = { + [sym_command_name] = ACTIONS(5205), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5205), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_RPAREN] = ACTIONS(5203), + [anon_sym_LBRACK] = ACTIONS(5203), + [anon_sym_RBRACK] = ACTIONS(5203), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_EQ] = ACTIONS(5203), + [anon_sym_BSLASHpart] = ACTIONS(5205), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddpart] = ACTIONS(5205), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5203), + [anon_sym_BSLASHchapter] = ACTIONS(5205), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddchap] = ACTIONS(5205), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsection] = ACTIONS(5205), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHaddsec] = ACTIONS(5205), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubsection] = ACTIONS(5205), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5205), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5203), + [anon_sym_BSLASHparagraph] = ACTIONS(5205), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5203), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5205), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5203), + [anon_sym_BSLASHitem] = ACTIONS(5205), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5203), + [anon_sym_LBRACE] = ACTIONS(5203), + [sym_word] = ACTIONS(5205), + [sym_placeholder] = ACTIONS(5203), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_CARET] = ACTIONS(5205), + [anon_sym__] = ACTIONS(5205), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_PIPE] = ACTIONS(5205), + [anon_sym_COLON] = ACTIONS(5205), + [anon_sym_SQUOTE] = ACTIONS(5205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), + [anon_sym_BSLASH_RBRACK] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), + [anon_sym_BSLASHbegin] = ACTIONS(5205), + [anon_sym_BSLASHusepackage] = ACTIONS(5205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), + [anon_sym_BSLASHinclude] = ACTIONS(5205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), + [anon_sym_BSLASHinput] = ACTIONS(5205), + [anon_sym_BSLASHsubfile] = ACTIONS(5205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), + [anon_sym_BSLASHbibliography] = ACTIONS(5205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), + [anon_sym_BSLASHincludesvg] = ACTIONS(5205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), + [anon_sym_BSLASHimport] = ACTIONS(5205), + [anon_sym_BSLASHsubimport] = ACTIONS(5205), + [anon_sym_BSLASHinputfrom] = ACTIONS(5205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), + [anon_sym_BSLASHincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHcaption] = ACTIONS(5205), + [anon_sym_BSLASHcite] = ACTIONS(5205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCite] = ACTIONS(5205), + [anon_sym_BSLASHnocite] = ACTIONS(5205), + [anon_sym_BSLASHcitet] = ACTIONS(5205), + [anon_sym_BSLASHcitep] = ACTIONS(5205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteauthor] = ACTIONS(5205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitetitle] = ACTIONS(5205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteyear] = ACTIONS(5205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitedate] = ACTIONS(5205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteurl] = ACTIONS(5205), + [anon_sym_BSLASHfullcite] = ACTIONS(5205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), + [anon_sym_BSLASHcitealt] = ACTIONS(5205), + [anon_sym_BSLASHcitealp] = ACTIONS(5205), + [anon_sym_BSLASHcitetext] = ACTIONS(5205), + [anon_sym_BSLASHparencite] = ACTIONS(5205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHParencite] = ACTIONS(5205), + [anon_sym_BSLASHfootcite] = ACTIONS(5205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), + [anon_sym_BSLASHtextcite] = ACTIONS(5205), + [anon_sym_BSLASHTextcite] = ACTIONS(5205), + [anon_sym_BSLASHsmartcite] = ACTIONS(5205), + [anon_sym_BSLASHSmartcite] = ACTIONS(5205), + [anon_sym_BSLASHsupercite] = ACTIONS(5205), + [anon_sym_BSLASHautocite] = ACTIONS(5205), + [anon_sym_BSLASHAutocite] = ACTIONS(5205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHvolcite] = ACTIONS(5205), + [anon_sym_BSLASHVolcite] = ACTIONS(5205), + [anon_sym_BSLASHpvolcite] = ACTIONS(5205), + [anon_sym_BSLASHPvolcite] = ACTIONS(5205), + [anon_sym_BSLASHfvolcite] = ACTIONS(5205), + [anon_sym_BSLASHftvolcite] = ACTIONS(5205), + [anon_sym_BSLASHsvolcite] = ACTIONS(5205), + [anon_sym_BSLASHSvolcite] = ACTIONS(5205), + [anon_sym_BSLASHtvolcite] = ACTIONS(5205), + [anon_sym_BSLASHTvolcite] = ACTIONS(5205), + [anon_sym_BSLASHavolcite] = ACTIONS(5205), + [anon_sym_BSLASHAvolcite] = ACTIONS(5205), + [anon_sym_BSLASHnotecite] = ACTIONS(5205), + [anon_sym_BSLASHNotecite] = ACTIONS(5205), + [anon_sym_BSLASHpnotecite] = ACTIONS(5205), + [anon_sym_BSLASHPnotecite] = ACTIONS(5205), + [anon_sym_BSLASHfnotecite] = ACTIONS(5205), + [anon_sym_BSLASHlabel] = ACTIONS(5205), + [anon_sym_BSLASHref] = ACTIONS(5205), + [anon_sym_BSLASHeqref] = ACTIONS(5205), + [anon_sym_BSLASHvref] = ACTIONS(5205), + [anon_sym_BSLASHVref] = ACTIONS(5205), + [anon_sym_BSLASHautoref] = ACTIONS(5205), + [anon_sym_BSLASHpageref] = ACTIONS(5205), + [anon_sym_BSLASHcref] = ACTIONS(5205), + [anon_sym_BSLASHCref] = ACTIONS(5205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnameCref] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHlabelcref] = ACTIONS(5205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCrefrange] = ACTIONS(5205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnewlabel] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), + [anon_sym_BSLASHdef] = ACTIONS(5205), + [anon_sym_BSLASHlet] = ACTIONS(5205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), + [anon_sym_BSLASHgls] = ACTIONS(5205), + [anon_sym_BSLASHGls] = ACTIONS(5205), + [anon_sym_BSLASHGLS] = ACTIONS(5205), + [anon_sym_BSLASHglspl] = ACTIONS(5205), + [anon_sym_BSLASHGlspl] = ACTIONS(5205), + [anon_sym_BSLASHGLSpl] = ACTIONS(5205), + [anon_sym_BSLASHglsdisp] = ACTIONS(5205), + [anon_sym_BSLASHglslink] = ACTIONS(5205), + [anon_sym_BSLASHglstext] = ACTIONS(5205), + [anon_sym_BSLASHGlstext] = ACTIONS(5205), + [anon_sym_BSLASHGLStext] = ACTIONS(5205), + [anon_sym_BSLASHglsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), + [anon_sym_BSLASHglsplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSplural] = ACTIONS(5205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHglsname] = ACTIONS(5205), + [anon_sym_BSLASHGlsname] = ACTIONS(5205), + [anon_sym_BSLASHGLSname] = ACTIONS(5205), + [anon_sym_BSLASHglssymbol] = ACTIONS(5205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), + [anon_sym_BSLASHglsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), + [anon_sym_BSLASHglsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), + [anon_sym_BSLASHglsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), + [anon_sym_BSLASHglsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), + [anon_sym_BSLASHglsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), + [anon_sym_BSLASHnewacronym] = ACTIONS(5205), + [anon_sym_BSLASHacrshort] = ACTIONS(5205), + [anon_sym_BSLASHAcrshort] = ACTIONS(5205), + [anon_sym_BSLASHACRshort] = ACTIONS(5205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), + [anon_sym_BSLASHacrlong] = ACTIONS(5205), + [anon_sym_BSLASHAcrlong] = ACTIONS(5205), + [anon_sym_BSLASHACRlong] = ACTIONS(5205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), + [anon_sym_BSLASHacrfull] = ACTIONS(5205), + [anon_sym_BSLASHAcrfull] = ACTIONS(5205), + [anon_sym_BSLASHACRfull] = ACTIONS(5205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), + [anon_sym_BSLASHacs] = ACTIONS(5205), + [anon_sym_BSLASHAcs] = ACTIONS(5205), + [anon_sym_BSLASHacsp] = ACTIONS(5205), + [anon_sym_BSLASHAcsp] = ACTIONS(5205), + [anon_sym_BSLASHacl] = ACTIONS(5205), + [anon_sym_BSLASHAcl] = ACTIONS(5205), + [anon_sym_BSLASHaclp] = ACTIONS(5205), + [anon_sym_BSLASHAclp] = ACTIONS(5205), + [anon_sym_BSLASHacf] = ACTIONS(5205), + [anon_sym_BSLASHAcf] = ACTIONS(5205), + [anon_sym_BSLASHacfp] = ACTIONS(5205), + [anon_sym_BSLASHAcfp] = ACTIONS(5205), + [anon_sym_BSLASHac] = ACTIONS(5205), + [anon_sym_BSLASHAc] = ACTIONS(5205), + [anon_sym_BSLASHacp] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), + [anon_sym_BSLASHcolor] = ACTIONS(5205), + [anon_sym_BSLASHcolorbox] = ACTIONS(5205), + [anon_sym_BSLASHtextcolor] = ACTIONS(5205), + [anon_sym_BSLASHpagecolor] = ACTIONS(5205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), + [anon_sym_BSLASHtext] = ACTIONS(5205), + [anon_sym_BSLASHintertext] = ACTIONS(5205), + [anon_sym_shortintertext] = ACTIONS(5205), }, - [1310] = { - [sym_command_name] = ACTIONS(5271), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5271), - [anon_sym_LPAREN] = ACTIONS(5269), - [anon_sym_RPAREN] = ACTIONS(5269), - [anon_sym_LBRACK] = ACTIONS(5269), - [anon_sym_RBRACK] = ACTIONS(5269), - [anon_sym_COMMA] = ACTIONS(5269), - [anon_sym_EQ] = ACTIONS(5269), - [anon_sym_LBRACE] = ACTIONS(5269), - [sym_word] = ACTIONS(5271), - [sym_placeholder] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5271), - [anon_sym_DASH] = ACTIONS(5271), - [anon_sym_STAR] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5271), - [anon_sym_CARET] = ACTIONS(5271), - [anon_sym__] = ACTIONS(5271), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_GT] = ACTIONS(5271), - [anon_sym_BANG] = ACTIONS(5271), - [anon_sym_PIPE] = ACTIONS(5271), - [anon_sym_COLON] = ACTIONS(5271), - [anon_sym_SQUOTE] = ACTIONS(5271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5269), - [anon_sym_DOLLAR] = ACTIONS(5271), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5269), - [anon_sym_BSLASHbegin] = ACTIONS(5271), - [anon_sym_BSLASHusepackage] = ACTIONS(5271), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5271), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5271), - [anon_sym_BSLASHinclude] = ACTIONS(5271), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5271), - [anon_sym_BSLASHinput] = ACTIONS(5271), - [anon_sym_BSLASHsubfile] = ACTIONS(5271), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5271), - [anon_sym_BSLASHbibliography] = ACTIONS(5271), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5271), - [anon_sym_BSLASHincludesvg] = ACTIONS(5271), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5271), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5271), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5271), - [anon_sym_BSLASHimport] = ACTIONS(5271), - [anon_sym_BSLASHsubimport] = ACTIONS(5271), - [anon_sym_BSLASHinputfrom] = ACTIONS(5271), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5271), - [anon_sym_BSLASHincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHcaption] = ACTIONS(5271), - [anon_sym_BSLASHcite] = ACTIONS(5271), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCite] = ACTIONS(5271), - [anon_sym_BSLASHnocite] = ACTIONS(5271), - [anon_sym_BSLASHcitet] = ACTIONS(5271), - [anon_sym_BSLASHcitep] = ACTIONS(5271), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor] = ACTIONS(5271), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5271), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle] = ACTIONS(5271), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteyear] = ACTIONS(5271), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitedate] = ACTIONS(5271), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteurl] = ACTIONS(5271), - [anon_sym_BSLASHfullcite] = ACTIONS(5271), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5271), - [anon_sym_BSLASHcitealt] = ACTIONS(5271), - [anon_sym_BSLASHcitealp] = ACTIONS(5271), - [anon_sym_BSLASHcitetext] = ACTIONS(5271), - [anon_sym_BSLASHparencite] = ACTIONS(5271), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHParencite] = ACTIONS(5271), - [anon_sym_BSLASHfootcite] = ACTIONS(5271), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5271), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5271), - [anon_sym_BSLASHtextcite] = ACTIONS(5271), - [anon_sym_BSLASHTextcite] = ACTIONS(5271), - [anon_sym_BSLASHsmartcite] = ACTIONS(5271), - [anon_sym_BSLASHSmartcite] = ACTIONS(5271), - [anon_sym_BSLASHsupercite] = ACTIONS(5271), - [anon_sym_BSLASHautocite] = ACTIONS(5271), - [anon_sym_BSLASHAutocite] = ACTIONS(5271), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHvolcite] = ACTIONS(5271), - [anon_sym_BSLASHVolcite] = ACTIONS(5271), - [anon_sym_BSLASHpvolcite] = ACTIONS(5271), - [anon_sym_BSLASHPvolcite] = ACTIONS(5271), - [anon_sym_BSLASHfvolcite] = ACTIONS(5271), - [anon_sym_BSLASHftvolcite] = ACTIONS(5271), - [anon_sym_BSLASHsvolcite] = ACTIONS(5271), - [anon_sym_BSLASHSvolcite] = ACTIONS(5271), - [anon_sym_BSLASHtvolcite] = ACTIONS(5271), - [anon_sym_BSLASHTvolcite] = ACTIONS(5271), - [anon_sym_BSLASHavolcite] = ACTIONS(5271), - [anon_sym_BSLASHAvolcite] = ACTIONS(5271), - [anon_sym_BSLASHnotecite] = ACTIONS(5271), - [anon_sym_BSLASHNotecite] = ACTIONS(5271), - [anon_sym_BSLASHpnotecite] = ACTIONS(5271), - [anon_sym_BSLASHPnotecite] = ACTIONS(5271), - [anon_sym_BSLASHfnotecite] = ACTIONS(5271), - [anon_sym_BSLASHlabel] = ACTIONS(5271), - [anon_sym_BSLASHref] = ACTIONS(5271), - [anon_sym_BSLASHeqref] = ACTIONS(5271), - [anon_sym_BSLASHvref] = ACTIONS(5271), - [anon_sym_BSLASHVref] = ACTIONS(5271), - [anon_sym_BSLASHautoref] = ACTIONS(5271), - [anon_sym_BSLASHpageref] = ACTIONS(5271), - [anon_sym_BSLASHcref] = ACTIONS(5271), - [anon_sym_BSLASHCref] = ACTIONS(5271), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnameCref] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHlabelcref] = ACTIONS(5271), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange] = ACTIONS(5271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnewlabel] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5271), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5271), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5271), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5269), - [anon_sym_BSLASHdef] = ACTIONS(5271), - [anon_sym_BSLASHlet] = ACTIONS(5271), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5271), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5271), - [anon_sym_BSLASHgls] = ACTIONS(5271), - [anon_sym_BSLASHGls] = ACTIONS(5271), - [anon_sym_BSLASHGLS] = ACTIONS(5271), - [anon_sym_BSLASHglspl] = ACTIONS(5271), - [anon_sym_BSLASHGlspl] = ACTIONS(5271), - [anon_sym_BSLASHGLSpl] = ACTIONS(5271), - [anon_sym_BSLASHglsdisp] = ACTIONS(5271), - [anon_sym_BSLASHglslink] = ACTIONS(5271), - [anon_sym_BSLASHglstext] = ACTIONS(5271), - [anon_sym_BSLASHGlstext] = ACTIONS(5271), - [anon_sym_BSLASHGLStext] = ACTIONS(5271), - [anon_sym_BSLASHglsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5271), - [anon_sym_BSLASHglsplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSplural] = ACTIONS(5271), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHglsname] = ACTIONS(5271), - [anon_sym_BSLASHGlsname] = ACTIONS(5271), - [anon_sym_BSLASHGLSname] = ACTIONS(5271), - [anon_sym_BSLASHglssymbol] = ACTIONS(5271), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5271), - [anon_sym_BSLASHglsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5271), - [anon_sym_BSLASHglsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5271), - [anon_sym_BSLASHglsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5271), - [anon_sym_BSLASHglsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5271), - [anon_sym_BSLASHglsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5271), - [anon_sym_BSLASHnewacronym] = ACTIONS(5271), - [anon_sym_BSLASHacrshort] = ACTIONS(5271), - [anon_sym_BSLASHAcrshort] = ACTIONS(5271), - [anon_sym_BSLASHACRshort] = ACTIONS(5271), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5271), - [anon_sym_BSLASHacrlong] = ACTIONS(5271), - [anon_sym_BSLASHAcrlong] = ACTIONS(5271), - [anon_sym_BSLASHACRlong] = ACTIONS(5271), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5271), - [anon_sym_BSLASHacrfull] = ACTIONS(5271), - [anon_sym_BSLASHAcrfull] = ACTIONS(5271), - [anon_sym_BSLASHACRfull] = ACTIONS(5271), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5271), - [anon_sym_BSLASHacs] = ACTIONS(5271), - [anon_sym_BSLASHAcs] = ACTIONS(5271), - [anon_sym_BSLASHacsp] = ACTIONS(5271), - [anon_sym_BSLASHAcsp] = ACTIONS(5271), - [anon_sym_BSLASHacl] = ACTIONS(5271), - [anon_sym_BSLASHAcl] = ACTIONS(5271), - [anon_sym_BSLASHaclp] = ACTIONS(5271), - [anon_sym_BSLASHAclp] = ACTIONS(5271), - [anon_sym_BSLASHacf] = ACTIONS(5271), - [anon_sym_BSLASHAcf] = ACTIONS(5271), - [anon_sym_BSLASHacfp] = ACTIONS(5271), - [anon_sym_BSLASHAcfp] = ACTIONS(5271), - [anon_sym_BSLASHac] = ACTIONS(5271), - [anon_sym_BSLASHAc] = ACTIONS(5271), - [anon_sym_BSLASHacp] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5271), - [anon_sym_BSLASHcolor] = ACTIONS(5271), - [anon_sym_BSLASHcolorbox] = ACTIONS(5271), - [anon_sym_BSLASHtextcolor] = ACTIONS(5271), - [anon_sym_BSLASHpagecolor] = ACTIONS(5271), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5271), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5271), + [1179] = { + [sym_command_name] = ACTIONS(5149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_RPAREN] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_RBRACK] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_BSLASHpart] = ACTIONS(5149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddpart] = ACTIONS(5149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5147), + [anon_sym_BSLASHchapter] = ACTIONS(5149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddchap] = ACTIONS(5149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsection] = ACTIONS(5149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHaddsec] = ACTIONS(5149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubsection] = ACTIONS(5149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5147), + [anon_sym_BSLASHparagraph] = ACTIONS(5149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5147), + [anon_sym_BSLASHitem] = ACTIONS(5149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5147), + [anon_sym_LBRACE] = ACTIONS(5147), + [sym_word] = ACTIONS(5149), + [sym_placeholder] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym__] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_COLON] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), + [anon_sym_DOLLAR] = ACTIONS(5149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), + [anon_sym_BSLASHbegin] = ACTIONS(5149), + [anon_sym_BSLASHend] = ACTIONS(5149), + [anon_sym_BSLASHusepackage] = ACTIONS(5149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), + [anon_sym_BSLASHinput] = ACTIONS(5149), + [anon_sym_BSLASHsubfile] = ACTIONS(5149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), + [anon_sym_BSLASHbibliography] = ACTIONS(5149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), + [anon_sym_BSLASHincludesvg] = ACTIONS(5149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), + [anon_sym_BSLASHimport] = ACTIONS(5149), + [anon_sym_BSLASHsubimport] = ACTIONS(5149), + [anon_sym_BSLASHinputfrom] = ACTIONS(5149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), + [anon_sym_BSLASHincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHcaption] = ACTIONS(5149), + [anon_sym_BSLASHcite] = ACTIONS(5149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCite] = ACTIONS(5149), + [anon_sym_BSLASHnocite] = ACTIONS(5149), + [anon_sym_BSLASHcitet] = ACTIONS(5149), + [anon_sym_BSLASHcitep] = ACTIONS(5149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteauthor] = ACTIONS(5149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitetitle] = ACTIONS(5149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteyear] = ACTIONS(5149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitedate] = ACTIONS(5149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteurl] = ACTIONS(5149), + [anon_sym_BSLASHfullcite] = ACTIONS(5149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), + [anon_sym_BSLASHcitealt] = ACTIONS(5149), + [anon_sym_BSLASHcitealp] = ACTIONS(5149), + [anon_sym_BSLASHcitetext] = ACTIONS(5149), + [anon_sym_BSLASHparencite] = ACTIONS(5149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHParencite] = ACTIONS(5149), + [anon_sym_BSLASHfootcite] = ACTIONS(5149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), + [anon_sym_BSLASHtextcite] = ACTIONS(5149), + [anon_sym_BSLASHTextcite] = ACTIONS(5149), + [anon_sym_BSLASHsmartcite] = ACTIONS(5149), + [anon_sym_BSLASHSmartcite] = ACTIONS(5149), + [anon_sym_BSLASHsupercite] = ACTIONS(5149), + [anon_sym_BSLASHautocite] = ACTIONS(5149), + [anon_sym_BSLASHAutocite] = ACTIONS(5149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHvolcite] = ACTIONS(5149), + [anon_sym_BSLASHVolcite] = ACTIONS(5149), + [anon_sym_BSLASHpvolcite] = ACTIONS(5149), + [anon_sym_BSLASHPvolcite] = ACTIONS(5149), + [anon_sym_BSLASHfvolcite] = ACTIONS(5149), + [anon_sym_BSLASHftvolcite] = ACTIONS(5149), + [anon_sym_BSLASHsvolcite] = ACTIONS(5149), + [anon_sym_BSLASHSvolcite] = ACTIONS(5149), + [anon_sym_BSLASHtvolcite] = ACTIONS(5149), + [anon_sym_BSLASHTvolcite] = ACTIONS(5149), + [anon_sym_BSLASHavolcite] = ACTIONS(5149), + [anon_sym_BSLASHAvolcite] = ACTIONS(5149), + [anon_sym_BSLASHnotecite] = ACTIONS(5149), + [anon_sym_BSLASHNotecite] = ACTIONS(5149), + [anon_sym_BSLASHpnotecite] = ACTIONS(5149), + [anon_sym_BSLASHPnotecite] = ACTIONS(5149), + [anon_sym_BSLASHfnotecite] = ACTIONS(5149), + [anon_sym_BSLASHlabel] = ACTIONS(5149), + [anon_sym_BSLASHref] = ACTIONS(5149), + [anon_sym_BSLASHeqref] = ACTIONS(5149), + [anon_sym_BSLASHvref] = ACTIONS(5149), + [anon_sym_BSLASHVref] = ACTIONS(5149), + [anon_sym_BSLASHautoref] = ACTIONS(5149), + [anon_sym_BSLASHpageref] = ACTIONS(5149), + [anon_sym_BSLASHcref] = ACTIONS(5149), + [anon_sym_BSLASHCref] = ACTIONS(5149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnameCref] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHlabelcref] = ACTIONS(5149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCrefrange] = ACTIONS(5149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnewlabel] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), + [anon_sym_BSLASHdef] = ACTIONS(5149), + [anon_sym_BSLASHlet] = ACTIONS(5149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), + [anon_sym_BSLASHgls] = ACTIONS(5149), + [anon_sym_BSLASHGls] = ACTIONS(5149), + [anon_sym_BSLASHGLS] = ACTIONS(5149), + [anon_sym_BSLASHglspl] = ACTIONS(5149), + [anon_sym_BSLASHGlspl] = ACTIONS(5149), + [anon_sym_BSLASHGLSpl] = ACTIONS(5149), + [anon_sym_BSLASHglsdisp] = ACTIONS(5149), + [anon_sym_BSLASHglslink] = ACTIONS(5149), + [anon_sym_BSLASHglstext] = ACTIONS(5149), + [anon_sym_BSLASHGlstext] = ACTIONS(5149), + [anon_sym_BSLASHGLStext] = ACTIONS(5149), + [anon_sym_BSLASHglsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), + [anon_sym_BSLASHglsplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSplural] = ACTIONS(5149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHglsname] = ACTIONS(5149), + [anon_sym_BSLASHGlsname] = ACTIONS(5149), + [anon_sym_BSLASHGLSname] = ACTIONS(5149), + [anon_sym_BSLASHglssymbol] = ACTIONS(5149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), + [anon_sym_BSLASHglsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), + [anon_sym_BSLASHglsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), + [anon_sym_BSLASHglsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), + [anon_sym_BSLASHglsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), + [anon_sym_BSLASHglsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), + [anon_sym_BSLASHnewacronym] = ACTIONS(5149), + [anon_sym_BSLASHacrshort] = ACTIONS(5149), + [anon_sym_BSLASHAcrshort] = ACTIONS(5149), + [anon_sym_BSLASHACRshort] = ACTIONS(5149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), + [anon_sym_BSLASHacrlong] = ACTIONS(5149), + [anon_sym_BSLASHAcrlong] = ACTIONS(5149), + [anon_sym_BSLASHACRlong] = ACTIONS(5149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), + [anon_sym_BSLASHacrfull] = ACTIONS(5149), + [anon_sym_BSLASHAcrfull] = ACTIONS(5149), + [anon_sym_BSLASHACRfull] = ACTIONS(5149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), + [anon_sym_BSLASHacs] = ACTIONS(5149), + [anon_sym_BSLASHAcs] = ACTIONS(5149), + [anon_sym_BSLASHacsp] = ACTIONS(5149), + [anon_sym_BSLASHAcsp] = ACTIONS(5149), + [anon_sym_BSLASHacl] = ACTIONS(5149), + [anon_sym_BSLASHAcl] = ACTIONS(5149), + [anon_sym_BSLASHaclp] = ACTIONS(5149), + [anon_sym_BSLASHAclp] = ACTIONS(5149), + [anon_sym_BSLASHacf] = ACTIONS(5149), + [anon_sym_BSLASHAcf] = ACTIONS(5149), + [anon_sym_BSLASHacfp] = ACTIONS(5149), + [anon_sym_BSLASHAcfp] = ACTIONS(5149), + [anon_sym_BSLASHac] = ACTIONS(5149), + [anon_sym_BSLASHAc] = ACTIONS(5149), + [anon_sym_BSLASHacp] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), + [anon_sym_BSLASHcolor] = ACTIONS(5149), + [anon_sym_BSLASHcolorbox] = ACTIONS(5149), + [anon_sym_BSLASHtextcolor] = ACTIONS(5149), + [anon_sym_BSLASHpagecolor] = ACTIONS(5149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), + [anon_sym_BSLASHtext] = ACTIONS(5149), + [anon_sym_BSLASHintertext] = ACTIONS(5149), + [anon_sym_shortintertext] = ACTIONS(5149), }, - [1311] = { - [sym_command_name] = ACTIONS(5275), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5275), - [anon_sym_LPAREN] = ACTIONS(5273), - [anon_sym_RPAREN] = ACTIONS(5273), - [anon_sym_LBRACK] = ACTIONS(5273), - [anon_sym_RBRACK] = ACTIONS(5273), - [anon_sym_COMMA] = ACTIONS(5273), - [anon_sym_EQ] = ACTIONS(5273), - [anon_sym_LBRACE] = ACTIONS(5273), - [sym_word] = ACTIONS(5275), - [sym_placeholder] = ACTIONS(5273), - [anon_sym_PLUS] = ACTIONS(5275), - [anon_sym_DASH] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(5275), - [anon_sym_SLASH] = ACTIONS(5275), - [anon_sym_CARET] = ACTIONS(5275), - [anon_sym__] = ACTIONS(5275), - [anon_sym_LT] = ACTIONS(5275), - [anon_sym_GT] = ACTIONS(5275), - [anon_sym_BANG] = ACTIONS(5275), - [anon_sym_PIPE] = ACTIONS(5275), - [anon_sym_COLON] = ACTIONS(5275), - [anon_sym_SQUOTE] = ACTIONS(5275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5273), - [anon_sym_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5273), - [anon_sym_BSLASHbegin] = ACTIONS(5275), - [anon_sym_BSLASHusepackage] = ACTIONS(5275), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5275), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5275), - [anon_sym_BSLASHinclude] = ACTIONS(5275), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5275), - [anon_sym_BSLASHinput] = ACTIONS(5275), - [anon_sym_BSLASHsubfile] = ACTIONS(5275), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5275), - [anon_sym_BSLASHbibliography] = ACTIONS(5275), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5275), - [anon_sym_BSLASHincludesvg] = ACTIONS(5275), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5275), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5275), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5275), - [anon_sym_BSLASHimport] = ACTIONS(5275), - [anon_sym_BSLASHsubimport] = ACTIONS(5275), - [anon_sym_BSLASHinputfrom] = ACTIONS(5275), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5275), - [anon_sym_BSLASHincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHcaption] = ACTIONS(5275), - [anon_sym_BSLASHcite] = ACTIONS(5275), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCite] = ACTIONS(5275), - [anon_sym_BSLASHnocite] = ACTIONS(5275), - [anon_sym_BSLASHcitet] = ACTIONS(5275), - [anon_sym_BSLASHcitep] = ACTIONS(5275), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteauthor] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitetitle] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteyear] = ACTIONS(5275), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitedate] = ACTIONS(5275), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteurl] = ACTIONS(5275), - [anon_sym_BSLASHfullcite] = ACTIONS(5275), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5275), - [anon_sym_BSLASHcitealt] = ACTIONS(5275), - [anon_sym_BSLASHcitealp] = ACTIONS(5275), - [anon_sym_BSLASHcitetext] = ACTIONS(5275), - [anon_sym_BSLASHparencite] = ACTIONS(5275), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHParencite] = ACTIONS(5275), - [anon_sym_BSLASHfootcite] = ACTIONS(5275), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5275), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5275), - [anon_sym_BSLASHtextcite] = ACTIONS(5275), - [anon_sym_BSLASHTextcite] = ACTIONS(5275), - [anon_sym_BSLASHsmartcite] = ACTIONS(5275), - [anon_sym_BSLASHSmartcite] = ACTIONS(5275), - [anon_sym_BSLASHsupercite] = ACTIONS(5275), - [anon_sym_BSLASHautocite] = ACTIONS(5275), - [anon_sym_BSLASHAutocite] = ACTIONS(5275), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHvolcite] = ACTIONS(5275), - [anon_sym_BSLASHVolcite] = ACTIONS(5275), - [anon_sym_BSLASHpvolcite] = ACTIONS(5275), - [anon_sym_BSLASHPvolcite] = ACTIONS(5275), - [anon_sym_BSLASHfvolcite] = ACTIONS(5275), - [anon_sym_BSLASHftvolcite] = ACTIONS(5275), - [anon_sym_BSLASHsvolcite] = ACTIONS(5275), - [anon_sym_BSLASHSvolcite] = ACTIONS(5275), - [anon_sym_BSLASHtvolcite] = ACTIONS(5275), - [anon_sym_BSLASHTvolcite] = ACTIONS(5275), - [anon_sym_BSLASHavolcite] = ACTIONS(5275), - [anon_sym_BSLASHAvolcite] = ACTIONS(5275), - [anon_sym_BSLASHnotecite] = ACTIONS(5275), - [anon_sym_BSLASHNotecite] = ACTIONS(5275), - [anon_sym_BSLASHpnotecite] = ACTIONS(5275), - [anon_sym_BSLASHPnotecite] = ACTIONS(5275), - [anon_sym_BSLASHfnotecite] = ACTIONS(5275), - [anon_sym_BSLASHlabel] = ACTIONS(5275), - [anon_sym_BSLASHref] = ACTIONS(5275), - [anon_sym_BSLASHeqref] = ACTIONS(5275), - [anon_sym_BSLASHvref] = ACTIONS(5275), - [anon_sym_BSLASHVref] = ACTIONS(5275), - [anon_sym_BSLASHautoref] = ACTIONS(5275), - [anon_sym_BSLASHpageref] = ACTIONS(5275), - [anon_sym_BSLASHcref] = ACTIONS(5275), - [anon_sym_BSLASHCref] = ACTIONS(5275), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnameCref] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHlabelcref] = ACTIONS(5275), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCrefrange] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnewlabel] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5273), - [anon_sym_BSLASHdef] = ACTIONS(5275), - [anon_sym_BSLASHlet] = ACTIONS(5275), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5275), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5275), - [anon_sym_BSLASHgls] = ACTIONS(5275), - [anon_sym_BSLASHGls] = ACTIONS(5275), - [anon_sym_BSLASHGLS] = ACTIONS(5275), - [anon_sym_BSLASHglspl] = ACTIONS(5275), - [anon_sym_BSLASHGlspl] = ACTIONS(5275), - [anon_sym_BSLASHGLSpl] = ACTIONS(5275), - [anon_sym_BSLASHglsdisp] = ACTIONS(5275), - [anon_sym_BSLASHglslink] = ACTIONS(5275), - [anon_sym_BSLASHglstext] = ACTIONS(5275), - [anon_sym_BSLASHGlstext] = ACTIONS(5275), - [anon_sym_BSLASHGLStext] = ACTIONS(5275), - [anon_sym_BSLASHglsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5275), - [anon_sym_BSLASHglsplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSplural] = ACTIONS(5275), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHglsname] = ACTIONS(5275), - [anon_sym_BSLASHGlsname] = ACTIONS(5275), - [anon_sym_BSLASHGLSname] = ACTIONS(5275), - [anon_sym_BSLASHglssymbol] = ACTIONS(5275), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5275), - [anon_sym_BSLASHglsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5275), - [anon_sym_BSLASHglsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5275), - [anon_sym_BSLASHglsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5275), - [anon_sym_BSLASHglsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5275), - [anon_sym_BSLASHglsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5275), - [anon_sym_BSLASHnewacronym] = ACTIONS(5275), - [anon_sym_BSLASHacrshort] = ACTIONS(5275), - [anon_sym_BSLASHAcrshort] = ACTIONS(5275), - [anon_sym_BSLASHACRshort] = ACTIONS(5275), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5275), - [anon_sym_BSLASHacrlong] = ACTIONS(5275), - [anon_sym_BSLASHAcrlong] = ACTIONS(5275), - [anon_sym_BSLASHACRlong] = ACTIONS(5275), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5275), - [anon_sym_BSLASHacrfull] = ACTIONS(5275), - [anon_sym_BSLASHAcrfull] = ACTIONS(5275), - [anon_sym_BSLASHACRfull] = ACTIONS(5275), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5275), - [anon_sym_BSLASHacs] = ACTIONS(5275), - [anon_sym_BSLASHAcs] = ACTIONS(5275), - [anon_sym_BSLASHacsp] = ACTIONS(5275), - [anon_sym_BSLASHAcsp] = ACTIONS(5275), - [anon_sym_BSLASHacl] = ACTIONS(5275), - [anon_sym_BSLASHAcl] = ACTIONS(5275), - [anon_sym_BSLASHaclp] = ACTIONS(5275), - [anon_sym_BSLASHAclp] = ACTIONS(5275), - [anon_sym_BSLASHacf] = ACTIONS(5275), - [anon_sym_BSLASHAcf] = ACTIONS(5275), - [anon_sym_BSLASHacfp] = ACTIONS(5275), - [anon_sym_BSLASHAcfp] = ACTIONS(5275), - [anon_sym_BSLASHac] = ACTIONS(5275), - [anon_sym_BSLASHAc] = ACTIONS(5275), - [anon_sym_BSLASHacp] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5275), - [anon_sym_BSLASHcolor] = ACTIONS(5275), - [anon_sym_BSLASHcolorbox] = ACTIONS(5275), - [anon_sym_BSLASHtextcolor] = ACTIONS(5275), - [anon_sym_BSLASHpagecolor] = ACTIONS(5275), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5275), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5275), + [1180] = { + [sym_command_name] = ACTIONS(5153), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_RPAREN] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_RBRACK] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(5151), + [anon_sym_BSLASHpart] = ACTIONS(5153), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddpart] = ACTIONS(5153), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5151), + [anon_sym_BSLASHchapter] = ACTIONS(5153), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddchap] = ACTIONS(5153), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsection] = ACTIONS(5153), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHaddsec] = ACTIONS(5153), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubsection] = ACTIONS(5153), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5153), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5151), + [anon_sym_BSLASHparagraph] = ACTIONS(5153), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5151), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5153), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5151), + [anon_sym_BSLASHitem] = ACTIONS(5153), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5151), + [sym_word] = ACTIONS(5153), + [sym_placeholder] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym__] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5153), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), + [anon_sym_DOLLAR] = ACTIONS(5153), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), + [anon_sym_BSLASHbegin] = ACTIONS(5153), + [anon_sym_BSLASHend] = ACTIONS(5153), + [anon_sym_BSLASHusepackage] = ACTIONS(5153), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), + [anon_sym_BSLASHinclude] = ACTIONS(5153), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), + [anon_sym_BSLASHinput] = ACTIONS(5153), + [anon_sym_BSLASHsubfile] = ACTIONS(5153), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5153), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), + [anon_sym_BSLASHincludesvg] = ACTIONS(5153), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), + [anon_sym_BSLASHimport] = ACTIONS(5153), + [anon_sym_BSLASHsubimport] = ACTIONS(5153), + [anon_sym_BSLASHinputfrom] = ACTIONS(5153), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), + [anon_sym_BSLASHincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHcaption] = ACTIONS(5153), + [anon_sym_BSLASHcite] = ACTIONS(5153), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCite] = ACTIONS(5153), + [anon_sym_BSLASHnocite] = ACTIONS(5153), + [anon_sym_BSLASHcitet] = ACTIONS(5153), + [anon_sym_BSLASHcitep] = ACTIONS(5153), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteauthor] = ACTIONS(5153), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitetitle] = ACTIONS(5153), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteyear] = ACTIONS(5153), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitedate] = ACTIONS(5153), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteurl] = ACTIONS(5153), + [anon_sym_BSLASHfullcite] = ACTIONS(5153), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), + [anon_sym_BSLASHcitealt] = ACTIONS(5153), + [anon_sym_BSLASHcitealp] = ACTIONS(5153), + [anon_sym_BSLASHcitetext] = ACTIONS(5153), + [anon_sym_BSLASHparencite] = ACTIONS(5153), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHParencite] = ACTIONS(5153), + [anon_sym_BSLASHfootcite] = ACTIONS(5153), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), + [anon_sym_BSLASHtextcite] = ACTIONS(5153), + [anon_sym_BSLASHTextcite] = ACTIONS(5153), + [anon_sym_BSLASHsmartcite] = ACTIONS(5153), + [anon_sym_BSLASHSmartcite] = ACTIONS(5153), + [anon_sym_BSLASHsupercite] = ACTIONS(5153), + [anon_sym_BSLASHautocite] = ACTIONS(5153), + [anon_sym_BSLASHAutocite] = ACTIONS(5153), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHvolcite] = ACTIONS(5153), + [anon_sym_BSLASHVolcite] = ACTIONS(5153), + [anon_sym_BSLASHpvolcite] = ACTIONS(5153), + [anon_sym_BSLASHPvolcite] = ACTIONS(5153), + [anon_sym_BSLASHfvolcite] = ACTIONS(5153), + [anon_sym_BSLASHftvolcite] = ACTIONS(5153), + [anon_sym_BSLASHsvolcite] = ACTIONS(5153), + [anon_sym_BSLASHSvolcite] = ACTIONS(5153), + [anon_sym_BSLASHtvolcite] = ACTIONS(5153), + [anon_sym_BSLASHTvolcite] = ACTIONS(5153), + [anon_sym_BSLASHavolcite] = ACTIONS(5153), + [anon_sym_BSLASHAvolcite] = ACTIONS(5153), + [anon_sym_BSLASHnotecite] = ACTIONS(5153), + [anon_sym_BSLASHNotecite] = ACTIONS(5153), + [anon_sym_BSLASHpnotecite] = ACTIONS(5153), + [anon_sym_BSLASHPnotecite] = ACTIONS(5153), + [anon_sym_BSLASHfnotecite] = ACTIONS(5153), + [anon_sym_BSLASHlabel] = ACTIONS(5153), + [anon_sym_BSLASHref] = ACTIONS(5153), + [anon_sym_BSLASHeqref] = ACTIONS(5153), + [anon_sym_BSLASHvref] = ACTIONS(5153), + [anon_sym_BSLASHVref] = ACTIONS(5153), + [anon_sym_BSLASHautoref] = ACTIONS(5153), + [anon_sym_BSLASHpageref] = ACTIONS(5153), + [anon_sym_BSLASHcref] = ACTIONS(5153), + [anon_sym_BSLASHCref] = ACTIONS(5153), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnameCref] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHlabelcref] = ACTIONS(5153), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCrefrange] = ACTIONS(5153), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnewlabel] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), + [anon_sym_BSLASHdef] = ACTIONS(5153), + [anon_sym_BSLASHlet] = ACTIONS(5153), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), + [anon_sym_BSLASHgls] = ACTIONS(5153), + [anon_sym_BSLASHGls] = ACTIONS(5153), + [anon_sym_BSLASHGLS] = ACTIONS(5153), + [anon_sym_BSLASHglspl] = ACTIONS(5153), + [anon_sym_BSLASHGlspl] = ACTIONS(5153), + [anon_sym_BSLASHGLSpl] = ACTIONS(5153), + [anon_sym_BSLASHglsdisp] = ACTIONS(5153), + [anon_sym_BSLASHglslink] = ACTIONS(5153), + [anon_sym_BSLASHglstext] = ACTIONS(5153), + [anon_sym_BSLASHGlstext] = ACTIONS(5153), + [anon_sym_BSLASHGLStext] = ACTIONS(5153), + [anon_sym_BSLASHglsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), + [anon_sym_BSLASHglsplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSplural] = ACTIONS(5153), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHglsname] = ACTIONS(5153), + [anon_sym_BSLASHGlsname] = ACTIONS(5153), + [anon_sym_BSLASHGLSname] = ACTIONS(5153), + [anon_sym_BSLASHglssymbol] = ACTIONS(5153), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), + [anon_sym_BSLASHglsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), + [anon_sym_BSLASHglsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), + [anon_sym_BSLASHglsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), + [anon_sym_BSLASHglsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), + [anon_sym_BSLASHglsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), + [anon_sym_BSLASHnewacronym] = ACTIONS(5153), + [anon_sym_BSLASHacrshort] = ACTIONS(5153), + [anon_sym_BSLASHAcrshort] = ACTIONS(5153), + [anon_sym_BSLASHACRshort] = ACTIONS(5153), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), + [anon_sym_BSLASHacrlong] = ACTIONS(5153), + [anon_sym_BSLASHAcrlong] = ACTIONS(5153), + [anon_sym_BSLASHACRlong] = ACTIONS(5153), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), + [anon_sym_BSLASHacrfull] = ACTIONS(5153), + [anon_sym_BSLASHAcrfull] = ACTIONS(5153), + [anon_sym_BSLASHACRfull] = ACTIONS(5153), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), + [anon_sym_BSLASHacs] = ACTIONS(5153), + [anon_sym_BSLASHAcs] = ACTIONS(5153), + [anon_sym_BSLASHacsp] = ACTIONS(5153), + [anon_sym_BSLASHAcsp] = ACTIONS(5153), + [anon_sym_BSLASHacl] = ACTIONS(5153), + [anon_sym_BSLASHAcl] = ACTIONS(5153), + [anon_sym_BSLASHaclp] = ACTIONS(5153), + [anon_sym_BSLASHAclp] = ACTIONS(5153), + [anon_sym_BSLASHacf] = ACTIONS(5153), + [anon_sym_BSLASHAcf] = ACTIONS(5153), + [anon_sym_BSLASHacfp] = ACTIONS(5153), + [anon_sym_BSLASHAcfp] = ACTIONS(5153), + [anon_sym_BSLASHac] = ACTIONS(5153), + [anon_sym_BSLASHAc] = ACTIONS(5153), + [anon_sym_BSLASHacp] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), + [anon_sym_BSLASHcolor] = ACTIONS(5153), + [anon_sym_BSLASHcolorbox] = ACTIONS(5153), + [anon_sym_BSLASHtextcolor] = ACTIONS(5153), + [anon_sym_BSLASHpagecolor] = ACTIONS(5153), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), + [anon_sym_BSLASHtext] = ACTIONS(5153), + [anon_sym_BSLASHintertext] = ACTIONS(5153), + [anon_sym_shortintertext] = ACTIONS(5153), }, - [1312] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASHbegin] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), + [1181] = { + [sym_command_name] = ACTIONS(5161), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_RBRACK] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_BSLASHpart] = ACTIONS(5161), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddpart] = ACTIONS(5161), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5159), + [anon_sym_BSLASHchapter] = ACTIONS(5161), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddchap] = ACTIONS(5161), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsection] = ACTIONS(5161), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHaddsec] = ACTIONS(5161), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubsection] = ACTIONS(5161), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5161), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5159), + [anon_sym_BSLASHparagraph] = ACTIONS(5161), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5159), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5161), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5159), + [anon_sym_BSLASHitem] = ACTIONS(5161), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5159), + [sym_word] = ACTIONS(5161), + [sym_placeholder] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_CARET] = ACTIONS(5161), + [anon_sym__] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_COLON] = ACTIONS(5161), + [anon_sym_SQUOTE] = ACTIONS(5161), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), + [anon_sym_DOLLAR] = ACTIONS(5161), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), + [anon_sym_BSLASHbegin] = ACTIONS(5161), + [anon_sym_BSLASHend] = ACTIONS(5161), + [anon_sym_BSLASHusepackage] = ACTIONS(5161), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), + [anon_sym_BSLASHinclude] = ACTIONS(5161), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), + [anon_sym_BSLASHinput] = ACTIONS(5161), + [anon_sym_BSLASHsubfile] = ACTIONS(5161), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), + [anon_sym_BSLASHbibliography] = ACTIONS(5161), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), + [anon_sym_BSLASHincludesvg] = ACTIONS(5161), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), + [anon_sym_BSLASHimport] = ACTIONS(5161), + [anon_sym_BSLASHsubimport] = ACTIONS(5161), + [anon_sym_BSLASHinputfrom] = ACTIONS(5161), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), + [anon_sym_BSLASHincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHcaption] = ACTIONS(5161), + [anon_sym_BSLASHcite] = ACTIONS(5161), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCite] = ACTIONS(5161), + [anon_sym_BSLASHnocite] = ACTIONS(5161), + [anon_sym_BSLASHcitet] = ACTIONS(5161), + [anon_sym_BSLASHcitep] = ACTIONS(5161), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteauthor] = ACTIONS(5161), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitetitle] = ACTIONS(5161), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteyear] = ACTIONS(5161), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitedate] = ACTIONS(5161), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteurl] = ACTIONS(5161), + [anon_sym_BSLASHfullcite] = ACTIONS(5161), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), + [anon_sym_BSLASHcitealt] = ACTIONS(5161), + [anon_sym_BSLASHcitealp] = ACTIONS(5161), + [anon_sym_BSLASHcitetext] = ACTIONS(5161), + [anon_sym_BSLASHparencite] = ACTIONS(5161), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHParencite] = ACTIONS(5161), + [anon_sym_BSLASHfootcite] = ACTIONS(5161), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), + [anon_sym_BSLASHtextcite] = ACTIONS(5161), + [anon_sym_BSLASHTextcite] = ACTIONS(5161), + [anon_sym_BSLASHsmartcite] = ACTIONS(5161), + [anon_sym_BSLASHSmartcite] = ACTIONS(5161), + [anon_sym_BSLASHsupercite] = ACTIONS(5161), + [anon_sym_BSLASHautocite] = ACTIONS(5161), + [anon_sym_BSLASHAutocite] = ACTIONS(5161), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHvolcite] = ACTIONS(5161), + [anon_sym_BSLASHVolcite] = ACTIONS(5161), + [anon_sym_BSLASHpvolcite] = ACTIONS(5161), + [anon_sym_BSLASHPvolcite] = ACTIONS(5161), + [anon_sym_BSLASHfvolcite] = ACTIONS(5161), + [anon_sym_BSLASHftvolcite] = ACTIONS(5161), + [anon_sym_BSLASHsvolcite] = ACTIONS(5161), + [anon_sym_BSLASHSvolcite] = ACTIONS(5161), + [anon_sym_BSLASHtvolcite] = ACTIONS(5161), + [anon_sym_BSLASHTvolcite] = ACTIONS(5161), + [anon_sym_BSLASHavolcite] = ACTIONS(5161), + [anon_sym_BSLASHAvolcite] = ACTIONS(5161), + [anon_sym_BSLASHnotecite] = ACTIONS(5161), + [anon_sym_BSLASHNotecite] = ACTIONS(5161), + [anon_sym_BSLASHpnotecite] = ACTIONS(5161), + [anon_sym_BSLASHPnotecite] = ACTIONS(5161), + [anon_sym_BSLASHfnotecite] = ACTIONS(5161), + [anon_sym_BSLASHlabel] = ACTIONS(5161), + [anon_sym_BSLASHref] = ACTIONS(5161), + [anon_sym_BSLASHeqref] = ACTIONS(5161), + [anon_sym_BSLASHvref] = ACTIONS(5161), + [anon_sym_BSLASHVref] = ACTIONS(5161), + [anon_sym_BSLASHautoref] = ACTIONS(5161), + [anon_sym_BSLASHpageref] = ACTIONS(5161), + [anon_sym_BSLASHcref] = ACTIONS(5161), + [anon_sym_BSLASHCref] = ACTIONS(5161), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnameCref] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHlabelcref] = ACTIONS(5161), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCrefrange] = ACTIONS(5161), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnewlabel] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), + [anon_sym_BSLASHdef] = ACTIONS(5161), + [anon_sym_BSLASHlet] = ACTIONS(5161), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), + [anon_sym_BSLASHgls] = ACTIONS(5161), + [anon_sym_BSLASHGls] = ACTIONS(5161), + [anon_sym_BSLASHGLS] = ACTIONS(5161), + [anon_sym_BSLASHglspl] = ACTIONS(5161), + [anon_sym_BSLASHGlspl] = ACTIONS(5161), + [anon_sym_BSLASHGLSpl] = ACTIONS(5161), + [anon_sym_BSLASHglsdisp] = ACTIONS(5161), + [anon_sym_BSLASHglslink] = ACTIONS(5161), + [anon_sym_BSLASHglstext] = ACTIONS(5161), + [anon_sym_BSLASHGlstext] = ACTIONS(5161), + [anon_sym_BSLASHGLStext] = ACTIONS(5161), + [anon_sym_BSLASHglsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), + [anon_sym_BSLASHglsplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSplural] = ACTIONS(5161), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHglsname] = ACTIONS(5161), + [anon_sym_BSLASHGlsname] = ACTIONS(5161), + [anon_sym_BSLASHGLSname] = ACTIONS(5161), + [anon_sym_BSLASHglssymbol] = ACTIONS(5161), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), + [anon_sym_BSLASHglsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), + [anon_sym_BSLASHglsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), + [anon_sym_BSLASHglsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), + [anon_sym_BSLASHglsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), + [anon_sym_BSLASHglsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), + [anon_sym_BSLASHnewacronym] = ACTIONS(5161), + [anon_sym_BSLASHacrshort] = ACTIONS(5161), + [anon_sym_BSLASHAcrshort] = ACTIONS(5161), + [anon_sym_BSLASHACRshort] = ACTIONS(5161), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), + [anon_sym_BSLASHacrlong] = ACTIONS(5161), + [anon_sym_BSLASHAcrlong] = ACTIONS(5161), + [anon_sym_BSLASHACRlong] = ACTIONS(5161), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), + [anon_sym_BSLASHacrfull] = ACTIONS(5161), + [anon_sym_BSLASHAcrfull] = ACTIONS(5161), + [anon_sym_BSLASHACRfull] = ACTIONS(5161), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), + [anon_sym_BSLASHacs] = ACTIONS(5161), + [anon_sym_BSLASHAcs] = ACTIONS(5161), + [anon_sym_BSLASHacsp] = ACTIONS(5161), + [anon_sym_BSLASHAcsp] = ACTIONS(5161), + [anon_sym_BSLASHacl] = ACTIONS(5161), + [anon_sym_BSLASHAcl] = ACTIONS(5161), + [anon_sym_BSLASHaclp] = ACTIONS(5161), + [anon_sym_BSLASHAclp] = ACTIONS(5161), + [anon_sym_BSLASHacf] = ACTIONS(5161), + [anon_sym_BSLASHAcf] = ACTIONS(5161), + [anon_sym_BSLASHacfp] = ACTIONS(5161), + [anon_sym_BSLASHAcfp] = ACTIONS(5161), + [anon_sym_BSLASHac] = ACTIONS(5161), + [anon_sym_BSLASHAc] = ACTIONS(5161), + [anon_sym_BSLASHacp] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), + [anon_sym_BSLASHcolor] = ACTIONS(5161), + [anon_sym_BSLASHcolorbox] = ACTIONS(5161), + [anon_sym_BSLASHtextcolor] = ACTIONS(5161), + [anon_sym_BSLASHpagecolor] = ACTIONS(5161), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), + [anon_sym_BSLASHtext] = ACTIONS(5161), + [anon_sym_BSLASHintertext] = ACTIONS(5161), + [anon_sym_shortintertext] = ACTIONS(5161), }, - [1313] = { - [sym_command_name] = ACTIONS(5305), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASHbegin] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), + [1182] = { + [sym_command_name] = ACTIONS(5165), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_BSLASHpart] = ACTIONS(5165), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddpart] = ACTIONS(5165), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5163), + [anon_sym_BSLASHchapter] = ACTIONS(5165), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddchap] = ACTIONS(5165), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsection] = ACTIONS(5165), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHaddsec] = ACTIONS(5165), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubsection] = ACTIONS(5165), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5165), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5163), + [anon_sym_BSLASHparagraph] = ACTIONS(5165), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5163), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5165), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5163), + [anon_sym_BSLASHitem] = ACTIONS(5165), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5163), + [sym_word] = ACTIONS(5165), + [sym_placeholder] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5165), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_CARET] = ACTIONS(5165), + [anon_sym__] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_COLON] = ACTIONS(5165), + [anon_sym_SQUOTE] = ACTIONS(5165), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), + [anon_sym_DOLLAR] = ACTIONS(5165), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), + [anon_sym_BSLASHbegin] = ACTIONS(5165), + [anon_sym_BSLASHend] = ACTIONS(5165), + [anon_sym_BSLASHusepackage] = ACTIONS(5165), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), + [anon_sym_BSLASHinclude] = ACTIONS(5165), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), + [anon_sym_BSLASHinput] = ACTIONS(5165), + [anon_sym_BSLASHsubfile] = ACTIONS(5165), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), + [anon_sym_BSLASHbibliography] = ACTIONS(5165), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), + [anon_sym_BSLASHincludesvg] = ACTIONS(5165), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5165), + [anon_sym_BSLASHcite] = ACTIONS(5165), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCite] = ACTIONS(5165), + [anon_sym_BSLASHnocite] = ACTIONS(5165), + [anon_sym_BSLASHcitet] = ACTIONS(5165), + [anon_sym_BSLASHcitep] = ACTIONS(5165), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteauthor] = ACTIONS(5165), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitetitle] = ACTIONS(5165), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteyear] = ACTIONS(5165), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitedate] = ACTIONS(5165), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteurl] = ACTIONS(5165), + [anon_sym_BSLASHfullcite] = ACTIONS(5165), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), + [anon_sym_BSLASHcitealt] = ACTIONS(5165), + [anon_sym_BSLASHcitealp] = ACTIONS(5165), + [anon_sym_BSLASHcitetext] = ACTIONS(5165), + [anon_sym_BSLASHparencite] = ACTIONS(5165), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHParencite] = ACTIONS(5165), + [anon_sym_BSLASHfootcite] = ACTIONS(5165), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), + [anon_sym_BSLASHtextcite] = ACTIONS(5165), + [anon_sym_BSLASHTextcite] = ACTIONS(5165), + [anon_sym_BSLASHsmartcite] = ACTIONS(5165), + [anon_sym_BSLASHSmartcite] = ACTIONS(5165), + [anon_sym_BSLASHsupercite] = ACTIONS(5165), + [anon_sym_BSLASHautocite] = ACTIONS(5165), + [anon_sym_BSLASHAutocite] = ACTIONS(5165), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHvolcite] = ACTIONS(5165), + [anon_sym_BSLASHVolcite] = ACTIONS(5165), + [anon_sym_BSLASHpvolcite] = ACTIONS(5165), + [anon_sym_BSLASHPvolcite] = ACTIONS(5165), + [anon_sym_BSLASHfvolcite] = ACTIONS(5165), + [anon_sym_BSLASHftvolcite] = ACTIONS(5165), + [anon_sym_BSLASHsvolcite] = ACTIONS(5165), + [anon_sym_BSLASHSvolcite] = ACTIONS(5165), + [anon_sym_BSLASHtvolcite] = ACTIONS(5165), + [anon_sym_BSLASHTvolcite] = ACTIONS(5165), + [anon_sym_BSLASHavolcite] = ACTIONS(5165), + [anon_sym_BSLASHAvolcite] = ACTIONS(5165), + [anon_sym_BSLASHnotecite] = ACTIONS(5165), + [anon_sym_BSLASHNotecite] = ACTIONS(5165), + [anon_sym_BSLASHpnotecite] = ACTIONS(5165), + [anon_sym_BSLASHPnotecite] = ACTIONS(5165), + [anon_sym_BSLASHfnotecite] = ACTIONS(5165), + [anon_sym_BSLASHlabel] = ACTIONS(5165), + [anon_sym_BSLASHref] = ACTIONS(5165), + [anon_sym_BSLASHeqref] = ACTIONS(5165), + [anon_sym_BSLASHvref] = ACTIONS(5165), + [anon_sym_BSLASHVref] = ACTIONS(5165), + [anon_sym_BSLASHautoref] = ACTIONS(5165), + [anon_sym_BSLASHpageref] = ACTIONS(5165), + [anon_sym_BSLASHcref] = ACTIONS(5165), + [anon_sym_BSLASHCref] = ACTIONS(5165), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnameCref] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHlabelcref] = ACTIONS(5165), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCrefrange] = ACTIONS(5165), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnewlabel] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), + [anon_sym_BSLASHdef] = ACTIONS(5165), + [anon_sym_BSLASHlet] = ACTIONS(5165), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), + [anon_sym_BSLASHgls] = ACTIONS(5165), + [anon_sym_BSLASHGls] = ACTIONS(5165), + [anon_sym_BSLASHGLS] = ACTIONS(5165), + [anon_sym_BSLASHglspl] = ACTIONS(5165), + [anon_sym_BSLASHGlspl] = ACTIONS(5165), + [anon_sym_BSLASHGLSpl] = ACTIONS(5165), + [anon_sym_BSLASHglsdisp] = ACTIONS(5165), + [anon_sym_BSLASHglslink] = ACTIONS(5165), + [anon_sym_BSLASHglstext] = ACTIONS(5165), + [anon_sym_BSLASHGlstext] = ACTIONS(5165), + [anon_sym_BSLASHGLStext] = ACTIONS(5165), + [anon_sym_BSLASHglsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), + [anon_sym_BSLASHglsplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSplural] = ACTIONS(5165), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHglsname] = ACTIONS(5165), + [anon_sym_BSLASHGlsname] = ACTIONS(5165), + [anon_sym_BSLASHGLSname] = ACTIONS(5165), + [anon_sym_BSLASHglssymbol] = ACTIONS(5165), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), + [anon_sym_BSLASHglsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), + [anon_sym_BSLASHglsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), + [anon_sym_BSLASHglsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), + [anon_sym_BSLASHglsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), + [anon_sym_BSLASHglsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), + [anon_sym_BSLASHnewacronym] = ACTIONS(5165), + [anon_sym_BSLASHacrshort] = ACTIONS(5165), + [anon_sym_BSLASHAcrshort] = ACTIONS(5165), + [anon_sym_BSLASHACRshort] = ACTIONS(5165), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), + [anon_sym_BSLASHacrlong] = ACTIONS(5165), + [anon_sym_BSLASHAcrlong] = ACTIONS(5165), + [anon_sym_BSLASHACRlong] = ACTIONS(5165), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), + [anon_sym_BSLASHacrfull] = ACTIONS(5165), + [anon_sym_BSLASHAcrfull] = ACTIONS(5165), + [anon_sym_BSLASHACRfull] = ACTIONS(5165), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), + [anon_sym_BSLASHacs] = ACTIONS(5165), + [anon_sym_BSLASHAcs] = ACTIONS(5165), + [anon_sym_BSLASHacsp] = ACTIONS(5165), + [anon_sym_BSLASHAcsp] = ACTIONS(5165), + [anon_sym_BSLASHacl] = ACTIONS(5165), + [anon_sym_BSLASHAcl] = ACTIONS(5165), + [anon_sym_BSLASHaclp] = ACTIONS(5165), + [anon_sym_BSLASHAclp] = ACTIONS(5165), + [anon_sym_BSLASHacf] = ACTIONS(5165), + [anon_sym_BSLASHAcf] = ACTIONS(5165), + [anon_sym_BSLASHacfp] = ACTIONS(5165), + [anon_sym_BSLASHAcfp] = ACTIONS(5165), + [anon_sym_BSLASHac] = ACTIONS(5165), + [anon_sym_BSLASHAc] = ACTIONS(5165), + [anon_sym_BSLASHacp] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), + [anon_sym_BSLASHcolor] = ACTIONS(5165), + [anon_sym_BSLASHcolorbox] = ACTIONS(5165), + [anon_sym_BSLASHtextcolor] = ACTIONS(5165), + [anon_sym_BSLASHpagecolor] = ACTIONS(5165), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), + [anon_sym_BSLASHtext] = ACTIONS(5165), + [anon_sym_BSLASHintertext] = ACTIONS(5165), + [anon_sym_shortintertext] = ACTIONS(5165), }, - [1314] = { - [sym_command_name] = ACTIONS(5321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5321), - [anon_sym_LPAREN] = ACTIONS(5319), - [anon_sym_RPAREN] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(5319), - [anon_sym_RBRACK] = ACTIONS(5319), - [anon_sym_COMMA] = ACTIONS(5319), - [anon_sym_EQ] = ACTIONS(5319), - [anon_sym_LBRACE] = ACTIONS(5319), - [sym_word] = ACTIONS(5321), - [sym_placeholder] = ACTIONS(5319), - [anon_sym_PLUS] = ACTIONS(5321), - [anon_sym_DASH] = ACTIONS(5321), - [anon_sym_STAR] = ACTIONS(5321), - [anon_sym_SLASH] = ACTIONS(5321), - [anon_sym_CARET] = ACTIONS(5321), - [anon_sym__] = ACTIONS(5321), - [anon_sym_LT] = ACTIONS(5321), - [anon_sym_GT] = ACTIONS(5321), - [anon_sym_BANG] = ACTIONS(5321), - [anon_sym_PIPE] = ACTIONS(5321), - [anon_sym_COLON] = ACTIONS(5321), - [anon_sym_SQUOTE] = ACTIONS(5321), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5319), - [anon_sym_DOLLAR] = ACTIONS(5321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5319), - [anon_sym_BSLASHbegin] = ACTIONS(5321), - [anon_sym_BSLASHusepackage] = ACTIONS(5321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5321), - [anon_sym_BSLASHinclude] = ACTIONS(5321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5321), - [anon_sym_BSLASHinput] = ACTIONS(5321), - [anon_sym_BSLASHsubfile] = ACTIONS(5321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5321), - [anon_sym_BSLASHbibliography] = ACTIONS(5321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5321), - [anon_sym_BSLASHincludesvg] = ACTIONS(5321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5321), - [anon_sym_BSLASHimport] = ACTIONS(5321), - [anon_sym_BSLASHsubimport] = ACTIONS(5321), - [anon_sym_BSLASHinputfrom] = ACTIONS(5321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5321), - [anon_sym_BSLASHincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHcaption] = ACTIONS(5321), - [anon_sym_BSLASHcite] = ACTIONS(5321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCite] = ACTIONS(5321), - [anon_sym_BSLASHnocite] = ACTIONS(5321), - [anon_sym_BSLASHcitet] = ACTIONS(5321), - [anon_sym_BSLASHcitep] = ACTIONS(5321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteyear] = ACTIONS(5321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitedate] = ACTIONS(5321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteurl] = ACTIONS(5321), - [anon_sym_BSLASHfullcite] = ACTIONS(5321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5321), - [anon_sym_BSLASHcitealt] = ACTIONS(5321), - [anon_sym_BSLASHcitealp] = ACTIONS(5321), - [anon_sym_BSLASHcitetext] = ACTIONS(5321), - [anon_sym_BSLASHparencite] = ACTIONS(5321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHParencite] = ACTIONS(5321), - [anon_sym_BSLASHfootcite] = ACTIONS(5321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5321), - [anon_sym_BSLASHtextcite] = ACTIONS(5321), - [anon_sym_BSLASHTextcite] = ACTIONS(5321), - [anon_sym_BSLASHsmartcite] = ACTIONS(5321), - [anon_sym_BSLASHSmartcite] = ACTIONS(5321), - [anon_sym_BSLASHsupercite] = ACTIONS(5321), - [anon_sym_BSLASHautocite] = ACTIONS(5321), - [anon_sym_BSLASHAutocite] = ACTIONS(5321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHvolcite] = ACTIONS(5321), - [anon_sym_BSLASHVolcite] = ACTIONS(5321), - [anon_sym_BSLASHpvolcite] = ACTIONS(5321), - [anon_sym_BSLASHPvolcite] = ACTIONS(5321), - [anon_sym_BSLASHfvolcite] = ACTIONS(5321), - [anon_sym_BSLASHftvolcite] = ACTIONS(5321), - [anon_sym_BSLASHsvolcite] = ACTIONS(5321), - [anon_sym_BSLASHSvolcite] = ACTIONS(5321), - [anon_sym_BSLASHtvolcite] = ACTIONS(5321), - [anon_sym_BSLASHTvolcite] = ACTIONS(5321), - [anon_sym_BSLASHavolcite] = ACTIONS(5321), - [anon_sym_BSLASHAvolcite] = ACTIONS(5321), - [anon_sym_BSLASHnotecite] = ACTIONS(5321), - [anon_sym_BSLASHNotecite] = ACTIONS(5321), - [anon_sym_BSLASHpnotecite] = ACTIONS(5321), - [anon_sym_BSLASHPnotecite] = ACTIONS(5321), - [anon_sym_BSLASHfnotecite] = ACTIONS(5321), - [anon_sym_BSLASHlabel] = ACTIONS(5321), - [anon_sym_BSLASHref] = ACTIONS(5321), - [anon_sym_BSLASHeqref] = ACTIONS(5321), - [anon_sym_BSLASHvref] = ACTIONS(5321), - [anon_sym_BSLASHVref] = ACTIONS(5321), - [anon_sym_BSLASHautoref] = ACTIONS(5321), - [anon_sym_BSLASHpageref] = ACTIONS(5321), - [anon_sym_BSLASHcref] = ACTIONS(5321), - [anon_sym_BSLASHCref] = ACTIONS(5321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnameCref] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHlabelcref] = ACTIONS(5321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnewlabel] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5319), - [anon_sym_BSLASHdef] = ACTIONS(5321), - [anon_sym_BSLASHlet] = ACTIONS(5321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5321), - [anon_sym_BSLASHgls] = ACTIONS(5321), - [anon_sym_BSLASHGls] = ACTIONS(5321), - [anon_sym_BSLASHGLS] = ACTIONS(5321), - [anon_sym_BSLASHglspl] = ACTIONS(5321), - [anon_sym_BSLASHGlspl] = ACTIONS(5321), - [anon_sym_BSLASHGLSpl] = ACTIONS(5321), - [anon_sym_BSLASHglsdisp] = ACTIONS(5321), - [anon_sym_BSLASHglslink] = ACTIONS(5321), - [anon_sym_BSLASHglstext] = ACTIONS(5321), - [anon_sym_BSLASHGlstext] = ACTIONS(5321), - [anon_sym_BSLASHGLStext] = ACTIONS(5321), - [anon_sym_BSLASHglsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5321), - [anon_sym_BSLASHglsplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSplural] = ACTIONS(5321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHglsname] = ACTIONS(5321), - [anon_sym_BSLASHGlsname] = ACTIONS(5321), - [anon_sym_BSLASHGLSname] = ACTIONS(5321), - [anon_sym_BSLASHglssymbol] = ACTIONS(5321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5321), - [anon_sym_BSLASHglsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5321), - [anon_sym_BSLASHglsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5321), - [anon_sym_BSLASHglsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5321), - [anon_sym_BSLASHglsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5321), - [anon_sym_BSLASHglsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5321), - [anon_sym_BSLASHnewacronym] = ACTIONS(5321), - [anon_sym_BSLASHacrshort] = ACTIONS(5321), - [anon_sym_BSLASHAcrshort] = ACTIONS(5321), - [anon_sym_BSLASHACRshort] = ACTIONS(5321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5321), - [anon_sym_BSLASHacrlong] = ACTIONS(5321), - [anon_sym_BSLASHAcrlong] = ACTIONS(5321), - [anon_sym_BSLASHACRlong] = ACTIONS(5321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5321), - [anon_sym_BSLASHacrfull] = ACTIONS(5321), - [anon_sym_BSLASHAcrfull] = ACTIONS(5321), - [anon_sym_BSLASHACRfull] = ACTIONS(5321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5321), - [anon_sym_BSLASHacs] = ACTIONS(5321), - [anon_sym_BSLASHAcs] = ACTIONS(5321), - [anon_sym_BSLASHacsp] = ACTIONS(5321), - [anon_sym_BSLASHAcsp] = ACTIONS(5321), - [anon_sym_BSLASHacl] = ACTIONS(5321), - [anon_sym_BSLASHAcl] = ACTIONS(5321), - [anon_sym_BSLASHaclp] = ACTIONS(5321), - [anon_sym_BSLASHAclp] = ACTIONS(5321), - [anon_sym_BSLASHacf] = ACTIONS(5321), - [anon_sym_BSLASHAcf] = ACTIONS(5321), - [anon_sym_BSLASHacfp] = ACTIONS(5321), - [anon_sym_BSLASHAcfp] = ACTIONS(5321), - [anon_sym_BSLASHac] = ACTIONS(5321), - [anon_sym_BSLASHAc] = ACTIONS(5321), - [anon_sym_BSLASHacp] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5321), - [anon_sym_BSLASHcolor] = ACTIONS(5321), - [anon_sym_BSLASHcolorbox] = ACTIONS(5321), - [anon_sym_BSLASHtextcolor] = ACTIONS(5321), - [anon_sym_BSLASHpagecolor] = ACTIONS(5321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5321), + [1183] = { + [sym_command_name] = ACTIONS(5169), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_BSLASHpart] = ACTIONS(5169), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddpart] = ACTIONS(5169), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5167), + [anon_sym_BSLASHchapter] = ACTIONS(5169), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddchap] = ACTIONS(5169), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsection] = ACTIONS(5169), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHaddsec] = ACTIONS(5169), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubsection] = ACTIONS(5169), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5169), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5167), + [anon_sym_BSLASHparagraph] = ACTIONS(5169), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5167), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5169), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5167), + [anon_sym_BSLASHitem] = ACTIONS(5169), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5167), + [sym_word] = ACTIONS(5169), + [sym_placeholder] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_CARET] = ACTIONS(5169), + [anon_sym__] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_PIPE] = ACTIONS(5169), + [anon_sym_COLON] = ACTIONS(5169), + [anon_sym_SQUOTE] = ACTIONS(5169), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), + [anon_sym_DOLLAR] = ACTIONS(5169), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), + [anon_sym_BSLASHbegin] = ACTIONS(5169), + [anon_sym_BSLASHend] = ACTIONS(5169), + [anon_sym_BSLASHusepackage] = ACTIONS(5169), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), + [anon_sym_BSLASHinclude] = ACTIONS(5169), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), + [anon_sym_BSLASHinput] = ACTIONS(5169), + [anon_sym_BSLASHsubfile] = ACTIONS(5169), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), + [anon_sym_BSLASHbibliography] = ACTIONS(5169), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), + [anon_sym_BSLASHincludesvg] = ACTIONS(5169), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), + [anon_sym_BSLASHimport] = ACTIONS(5169), + [anon_sym_BSLASHsubimport] = ACTIONS(5169), + [anon_sym_BSLASHinputfrom] = ACTIONS(5169), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), + [anon_sym_BSLASHincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHcaption] = ACTIONS(5169), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5169), + [anon_sym_BSLASHref] = ACTIONS(5169), + [anon_sym_BSLASHeqref] = ACTIONS(5169), + [anon_sym_BSLASHvref] = ACTIONS(5169), + [anon_sym_BSLASHVref] = ACTIONS(5169), + [anon_sym_BSLASHautoref] = ACTIONS(5169), + [anon_sym_BSLASHpageref] = ACTIONS(5169), + [anon_sym_BSLASHcref] = ACTIONS(5169), + [anon_sym_BSLASHCref] = ACTIONS(5169), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnameCref] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHlabelcref] = ACTIONS(5169), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCrefrange] = ACTIONS(5169), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnewlabel] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), + [anon_sym_BSLASHdef] = ACTIONS(5169), + [anon_sym_BSLASHlet] = ACTIONS(5169), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), + [anon_sym_BSLASHgls] = ACTIONS(5169), + [anon_sym_BSLASHGls] = ACTIONS(5169), + [anon_sym_BSLASHGLS] = ACTIONS(5169), + [anon_sym_BSLASHglspl] = ACTIONS(5169), + [anon_sym_BSLASHGlspl] = ACTIONS(5169), + [anon_sym_BSLASHGLSpl] = ACTIONS(5169), + [anon_sym_BSLASHglsdisp] = ACTIONS(5169), + [anon_sym_BSLASHglslink] = ACTIONS(5169), + [anon_sym_BSLASHglstext] = ACTIONS(5169), + [anon_sym_BSLASHGlstext] = ACTIONS(5169), + [anon_sym_BSLASHGLStext] = ACTIONS(5169), + [anon_sym_BSLASHglsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), + [anon_sym_BSLASHglsplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSplural] = ACTIONS(5169), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHglsname] = ACTIONS(5169), + [anon_sym_BSLASHGlsname] = ACTIONS(5169), + [anon_sym_BSLASHGLSname] = ACTIONS(5169), + [anon_sym_BSLASHglssymbol] = ACTIONS(5169), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), + [anon_sym_BSLASHglsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), + [anon_sym_BSLASHglsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), + [anon_sym_BSLASHglsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), + [anon_sym_BSLASHglsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), + [anon_sym_BSLASHglsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), + [anon_sym_BSLASHnewacronym] = ACTIONS(5169), + [anon_sym_BSLASHacrshort] = ACTIONS(5169), + [anon_sym_BSLASHAcrshort] = ACTIONS(5169), + [anon_sym_BSLASHACRshort] = ACTIONS(5169), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), + [anon_sym_BSLASHacrlong] = ACTIONS(5169), + [anon_sym_BSLASHAcrlong] = ACTIONS(5169), + [anon_sym_BSLASHACRlong] = ACTIONS(5169), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), + [anon_sym_BSLASHacrfull] = ACTIONS(5169), + [anon_sym_BSLASHAcrfull] = ACTIONS(5169), + [anon_sym_BSLASHACRfull] = ACTIONS(5169), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), + [anon_sym_BSLASHacs] = ACTIONS(5169), + [anon_sym_BSLASHAcs] = ACTIONS(5169), + [anon_sym_BSLASHacsp] = ACTIONS(5169), + [anon_sym_BSLASHAcsp] = ACTIONS(5169), + [anon_sym_BSLASHacl] = ACTIONS(5169), + [anon_sym_BSLASHAcl] = ACTIONS(5169), + [anon_sym_BSLASHaclp] = ACTIONS(5169), + [anon_sym_BSLASHAclp] = ACTIONS(5169), + [anon_sym_BSLASHacf] = ACTIONS(5169), + [anon_sym_BSLASHAcf] = ACTIONS(5169), + [anon_sym_BSLASHacfp] = ACTIONS(5169), + [anon_sym_BSLASHAcfp] = ACTIONS(5169), + [anon_sym_BSLASHac] = ACTIONS(5169), + [anon_sym_BSLASHAc] = ACTIONS(5169), + [anon_sym_BSLASHacp] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), + [anon_sym_BSLASHcolor] = ACTIONS(5169), + [anon_sym_BSLASHcolorbox] = ACTIONS(5169), + [anon_sym_BSLASHtextcolor] = ACTIONS(5169), + [anon_sym_BSLASHpagecolor] = ACTIONS(5169), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), + [anon_sym_BSLASHtext] = ACTIONS(5169), + [anon_sym_BSLASHintertext] = ACTIONS(5169), + [anon_sym_shortintertext] = ACTIONS(5169), }, - [1315] = { - [sym_command_name] = ACTIONS(5325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5325), - [anon_sym_LPAREN] = ACTIONS(5323), - [anon_sym_RPAREN] = ACTIONS(5323), - [anon_sym_LBRACK] = ACTIONS(5323), - [anon_sym_RBRACK] = ACTIONS(5323), - [anon_sym_COMMA] = ACTIONS(5323), - [anon_sym_EQ] = ACTIONS(5323), - [anon_sym_LBRACE] = ACTIONS(5323), - [sym_word] = ACTIONS(5325), - [sym_placeholder] = ACTIONS(5323), - [anon_sym_PLUS] = ACTIONS(5325), - [anon_sym_DASH] = ACTIONS(5325), - [anon_sym_STAR] = ACTIONS(5325), - [anon_sym_SLASH] = ACTIONS(5325), - [anon_sym_CARET] = ACTIONS(5325), - [anon_sym__] = ACTIONS(5325), - [anon_sym_LT] = ACTIONS(5325), - [anon_sym_GT] = ACTIONS(5325), - [anon_sym_BANG] = ACTIONS(5325), - [anon_sym_PIPE] = ACTIONS(5325), - [anon_sym_COLON] = ACTIONS(5325), - [anon_sym_SQUOTE] = ACTIONS(5325), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5323), - [anon_sym_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5323), - [anon_sym_BSLASHbegin] = ACTIONS(5325), - [anon_sym_BSLASHusepackage] = ACTIONS(5325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), - [anon_sym_BSLASHinclude] = ACTIONS(5325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5325), - [anon_sym_BSLASHinput] = ACTIONS(5325), - [anon_sym_BSLASHsubfile] = ACTIONS(5325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5325), - [anon_sym_BSLASHbibliography] = ACTIONS(5325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5325), - [anon_sym_BSLASHincludesvg] = ACTIONS(5325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5325), - [anon_sym_BSLASHimport] = ACTIONS(5325), - [anon_sym_BSLASHsubimport] = ACTIONS(5325), - [anon_sym_BSLASHinputfrom] = ACTIONS(5325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5325), - [anon_sym_BSLASHincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHcaption] = ACTIONS(5325), - [anon_sym_BSLASHcite] = ACTIONS(5325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCite] = ACTIONS(5325), - [anon_sym_BSLASHnocite] = ACTIONS(5325), - [anon_sym_BSLASHcitet] = ACTIONS(5325), - [anon_sym_BSLASHcitep] = ACTIONS(5325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteyear] = ACTIONS(5325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitedate] = ACTIONS(5325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteurl] = ACTIONS(5325), - [anon_sym_BSLASHfullcite] = ACTIONS(5325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5325), - [anon_sym_BSLASHcitealt] = ACTIONS(5325), - [anon_sym_BSLASHcitealp] = ACTIONS(5325), - [anon_sym_BSLASHcitetext] = ACTIONS(5325), - [anon_sym_BSLASHparencite] = ACTIONS(5325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHParencite] = ACTIONS(5325), - [anon_sym_BSLASHfootcite] = ACTIONS(5325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5325), - [anon_sym_BSLASHtextcite] = ACTIONS(5325), - [anon_sym_BSLASHTextcite] = ACTIONS(5325), - [anon_sym_BSLASHsmartcite] = ACTIONS(5325), - [anon_sym_BSLASHSmartcite] = ACTIONS(5325), - [anon_sym_BSLASHsupercite] = ACTIONS(5325), - [anon_sym_BSLASHautocite] = ACTIONS(5325), - [anon_sym_BSLASHAutocite] = ACTIONS(5325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHvolcite] = ACTIONS(5325), - [anon_sym_BSLASHVolcite] = ACTIONS(5325), - [anon_sym_BSLASHpvolcite] = ACTIONS(5325), - [anon_sym_BSLASHPvolcite] = ACTIONS(5325), - [anon_sym_BSLASHfvolcite] = ACTIONS(5325), - [anon_sym_BSLASHftvolcite] = ACTIONS(5325), - [anon_sym_BSLASHsvolcite] = ACTIONS(5325), - [anon_sym_BSLASHSvolcite] = ACTIONS(5325), - [anon_sym_BSLASHtvolcite] = ACTIONS(5325), - [anon_sym_BSLASHTvolcite] = ACTIONS(5325), - [anon_sym_BSLASHavolcite] = ACTIONS(5325), - [anon_sym_BSLASHAvolcite] = ACTIONS(5325), - [anon_sym_BSLASHnotecite] = ACTIONS(5325), - [anon_sym_BSLASHNotecite] = ACTIONS(5325), - [anon_sym_BSLASHpnotecite] = ACTIONS(5325), - [anon_sym_BSLASHPnotecite] = ACTIONS(5325), - [anon_sym_BSLASHfnotecite] = ACTIONS(5325), - [anon_sym_BSLASHlabel] = ACTIONS(5325), - [anon_sym_BSLASHref] = ACTIONS(5325), - [anon_sym_BSLASHeqref] = ACTIONS(5325), - [anon_sym_BSLASHvref] = ACTIONS(5325), - [anon_sym_BSLASHVref] = ACTIONS(5325), - [anon_sym_BSLASHautoref] = ACTIONS(5325), - [anon_sym_BSLASHpageref] = ACTIONS(5325), - [anon_sym_BSLASHcref] = ACTIONS(5325), - [anon_sym_BSLASHCref] = ACTIONS(5325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnameCref] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHlabelcref] = ACTIONS(5325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnewlabel] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5323), - [anon_sym_BSLASHdef] = ACTIONS(5325), - [anon_sym_BSLASHlet] = ACTIONS(5325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5325), - [anon_sym_BSLASHgls] = ACTIONS(5325), - [anon_sym_BSLASHGls] = ACTIONS(5325), - [anon_sym_BSLASHGLS] = ACTIONS(5325), - [anon_sym_BSLASHglspl] = ACTIONS(5325), - [anon_sym_BSLASHGlspl] = ACTIONS(5325), - [anon_sym_BSLASHGLSpl] = ACTIONS(5325), - [anon_sym_BSLASHglsdisp] = ACTIONS(5325), - [anon_sym_BSLASHglslink] = ACTIONS(5325), - [anon_sym_BSLASHglstext] = ACTIONS(5325), - [anon_sym_BSLASHGlstext] = ACTIONS(5325), - [anon_sym_BSLASHGLStext] = ACTIONS(5325), - [anon_sym_BSLASHglsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5325), - [anon_sym_BSLASHglsplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSplural] = ACTIONS(5325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHglsname] = ACTIONS(5325), - [anon_sym_BSLASHGlsname] = ACTIONS(5325), - [anon_sym_BSLASHGLSname] = ACTIONS(5325), - [anon_sym_BSLASHglssymbol] = ACTIONS(5325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5325), - [anon_sym_BSLASHglsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5325), - [anon_sym_BSLASHglsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5325), - [anon_sym_BSLASHglsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5325), - [anon_sym_BSLASHglsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5325), - [anon_sym_BSLASHglsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5325), - [anon_sym_BSLASHnewacronym] = ACTIONS(5325), - [anon_sym_BSLASHacrshort] = ACTIONS(5325), - [anon_sym_BSLASHAcrshort] = ACTIONS(5325), - [anon_sym_BSLASHACRshort] = ACTIONS(5325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5325), - [anon_sym_BSLASHacrlong] = ACTIONS(5325), - [anon_sym_BSLASHAcrlong] = ACTIONS(5325), - [anon_sym_BSLASHACRlong] = ACTIONS(5325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5325), - [anon_sym_BSLASHacrfull] = ACTIONS(5325), - [anon_sym_BSLASHAcrfull] = ACTIONS(5325), - [anon_sym_BSLASHACRfull] = ACTIONS(5325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5325), - [anon_sym_BSLASHacs] = ACTIONS(5325), - [anon_sym_BSLASHAcs] = ACTIONS(5325), - [anon_sym_BSLASHacsp] = ACTIONS(5325), - [anon_sym_BSLASHAcsp] = ACTIONS(5325), - [anon_sym_BSLASHacl] = ACTIONS(5325), - [anon_sym_BSLASHAcl] = ACTIONS(5325), - [anon_sym_BSLASHaclp] = ACTIONS(5325), - [anon_sym_BSLASHAclp] = ACTIONS(5325), - [anon_sym_BSLASHacf] = ACTIONS(5325), - [anon_sym_BSLASHAcf] = ACTIONS(5325), - [anon_sym_BSLASHacfp] = ACTIONS(5325), - [anon_sym_BSLASHAcfp] = ACTIONS(5325), - [anon_sym_BSLASHac] = ACTIONS(5325), - [anon_sym_BSLASHAc] = ACTIONS(5325), - [anon_sym_BSLASHacp] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5325), - [anon_sym_BSLASHcolor] = ACTIONS(5325), - [anon_sym_BSLASHcolorbox] = ACTIONS(5325), - [anon_sym_BSLASHtextcolor] = ACTIONS(5325), - [anon_sym_BSLASHpagecolor] = ACTIONS(5325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5325), + [1184] = { + [sym_command_name] = ACTIONS(5177), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5175), + [anon_sym_RPAREN] = ACTIONS(5175), + [anon_sym_LBRACK] = ACTIONS(5175), + [anon_sym_RBRACK] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_BSLASHpart] = ACTIONS(5177), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddpart] = ACTIONS(5177), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5175), + [anon_sym_BSLASHchapter] = ACTIONS(5177), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddchap] = ACTIONS(5177), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsection] = ACTIONS(5177), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHaddsec] = ACTIONS(5177), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubsection] = ACTIONS(5177), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5177), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5175), + [anon_sym_BSLASHparagraph] = ACTIONS(5177), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5175), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5177), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5175), + [anon_sym_BSLASHitem] = ACTIONS(5177), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5175), + [sym_word] = ACTIONS(5177), + [sym_placeholder] = ACTIONS(5175), + [anon_sym_PLUS] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5177), + [anon_sym_SLASH] = ACTIONS(5177), + [anon_sym_CARET] = ACTIONS(5177), + [anon_sym__] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5177), + [anon_sym_GT] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5177), + [anon_sym_PIPE] = ACTIONS(5177), + [anon_sym_COLON] = ACTIONS(5177), + [anon_sym_SQUOTE] = ACTIONS(5177), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), + [anon_sym_DOLLAR] = ACTIONS(5177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), + [anon_sym_BSLASHbegin] = ACTIONS(5177), + [anon_sym_BSLASHend] = ACTIONS(5177), + [anon_sym_BSLASHusepackage] = ACTIONS(5177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), + [anon_sym_BSLASHinclude] = ACTIONS(5177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), + [anon_sym_BSLASHinput] = ACTIONS(5177), + [anon_sym_BSLASHsubfile] = ACTIONS(5177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), + [anon_sym_BSLASHbibliography] = ACTIONS(5177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), + [anon_sym_BSLASHincludesvg] = ACTIONS(5177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), + [anon_sym_BSLASHimport] = ACTIONS(5177), + [anon_sym_BSLASHsubimport] = ACTIONS(5177), + [anon_sym_BSLASHinputfrom] = ACTIONS(5177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), + [anon_sym_BSLASHincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHcaption] = ACTIONS(5177), + [anon_sym_BSLASHcite] = ACTIONS(5177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCite] = ACTIONS(5177), + [anon_sym_BSLASHnocite] = ACTIONS(5177), + [anon_sym_BSLASHcitet] = ACTIONS(5177), + [anon_sym_BSLASHcitep] = ACTIONS(5177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteauthor] = ACTIONS(5177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitetitle] = ACTIONS(5177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteyear] = ACTIONS(5177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitedate] = ACTIONS(5177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteurl] = ACTIONS(5177), + [anon_sym_BSLASHfullcite] = ACTIONS(5177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), + [anon_sym_BSLASHcitealt] = ACTIONS(5177), + [anon_sym_BSLASHcitealp] = ACTIONS(5177), + [anon_sym_BSLASHcitetext] = ACTIONS(5177), + [anon_sym_BSLASHparencite] = ACTIONS(5177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHParencite] = ACTIONS(5177), + [anon_sym_BSLASHfootcite] = ACTIONS(5177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), + [anon_sym_BSLASHtextcite] = ACTIONS(5177), + [anon_sym_BSLASHTextcite] = ACTIONS(5177), + [anon_sym_BSLASHsmartcite] = ACTIONS(5177), + [anon_sym_BSLASHSmartcite] = ACTIONS(5177), + [anon_sym_BSLASHsupercite] = ACTIONS(5177), + [anon_sym_BSLASHautocite] = ACTIONS(5177), + [anon_sym_BSLASHAutocite] = ACTIONS(5177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHvolcite] = ACTIONS(5177), + [anon_sym_BSLASHVolcite] = ACTIONS(5177), + [anon_sym_BSLASHpvolcite] = ACTIONS(5177), + [anon_sym_BSLASHPvolcite] = ACTIONS(5177), + [anon_sym_BSLASHfvolcite] = ACTIONS(5177), + [anon_sym_BSLASHftvolcite] = ACTIONS(5177), + [anon_sym_BSLASHsvolcite] = ACTIONS(5177), + [anon_sym_BSLASHSvolcite] = ACTIONS(5177), + [anon_sym_BSLASHtvolcite] = ACTIONS(5177), + [anon_sym_BSLASHTvolcite] = ACTIONS(5177), + [anon_sym_BSLASHavolcite] = ACTIONS(5177), + [anon_sym_BSLASHAvolcite] = ACTIONS(5177), + [anon_sym_BSLASHnotecite] = ACTIONS(5177), + [anon_sym_BSLASHNotecite] = ACTIONS(5177), + [anon_sym_BSLASHpnotecite] = ACTIONS(5177), + [anon_sym_BSLASHPnotecite] = ACTIONS(5177), + [anon_sym_BSLASHfnotecite] = ACTIONS(5177), + [anon_sym_BSLASHlabel] = ACTIONS(5177), + [anon_sym_BSLASHref] = ACTIONS(5177), + [anon_sym_BSLASHeqref] = ACTIONS(5177), + [anon_sym_BSLASHvref] = ACTIONS(5177), + [anon_sym_BSLASHVref] = ACTIONS(5177), + [anon_sym_BSLASHautoref] = ACTIONS(5177), + [anon_sym_BSLASHpageref] = ACTIONS(5177), + [anon_sym_BSLASHcref] = ACTIONS(5177), + [anon_sym_BSLASHCref] = ACTIONS(5177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnameCref] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHlabelcref] = ACTIONS(5177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCrefrange] = ACTIONS(5177), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnewlabel] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), + [anon_sym_BSLASHdef] = ACTIONS(5177), + [anon_sym_BSLASHlet] = ACTIONS(5177), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), + [anon_sym_BSLASHgls] = ACTIONS(5177), + [anon_sym_BSLASHGls] = ACTIONS(5177), + [anon_sym_BSLASHGLS] = ACTIONS(5177), + [anon_sym_BSLASHglspl] = ACTIONS(5177), + [anon_sym_BSLASHGlspl] = ACTIONS(5177), + [anon_sym_BSLASHGLSpl] = ACTIONS(5177), + [anon_sym_BSLASHglsdisp] = ACTIONS(5177), + [anon_sym_BSLASHglslink] = ACTIONS(5177), + [anon_sym_BSLASHglstext] = ACTIONS(5177), + [anon_sym_BSLASHGlstext] = ACTIONS(5177), + [anon_sym_BSLASHGLStext] = ACTIONS(5177), + [anon_sym_BSLASHglsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), + [anon_sym_BSLASHglsplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSplural] = ACTIONS(5177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHglsname] = ACTIONS(5177), + [anon_sym_BSLASHGlsname] = ACTIONS(5177), + [anon_sym_BSLASHGLSname] = ACTIONS(5177), + [anon_sym_BSLASHglssymbol] = ACTIONS(5177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), + [anon_sym_BSLASHglsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), + [anon_sym_BSLASHglsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), + [anon_sym_BSLASHglsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), + [anon_sym_BSLASHglsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), + [anon_sym_BSLASHglsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), + [anon_sym_BSLASHnewacronym] = ACTIONS(5177), + [anon_sym_BSLASHacrshort] = ACTIONS(5177), + [anon_sym_BSLASHAcrshort] = ACTIONS(5177), + [anon_sym_BSLASHACRshort] = ACTIONS(5177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), + [anon_sym_BSLASHacrlong] = ACTIONS(5177), + [anon_sym_BSLASHAcrlong] = ACTIONS(5177), + [anon_sym_BSLASHACRlong] = ACTIONS(5177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), + [anon_sym_BSLASHacrfull] = ACTIONS(5177), + [anon_sym_BSLASHAcrfull] = ACTIONS(5177), + [anon_sym_BSLASHACRfull] = ACTIONS(5177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), + [anon_sym_BSLASHacs] = ACTIONS(5177), + [anon_sym_BSLASHAcs] = ACTIONS(5177), + [anon_sym_BSLASHacsp] = ACTIONS(5177), + [anon_sym_BSLASHAcsp] = ACTIONS(5177), + [anon_sym_BSLASHacl] = ACTIONS(5177), + [anon_sym_BSLASHAcl] = ACTIONS(5177), + [anon_sym_BSLASHaclp] = ACTIONS(5177), + [anon_sym_BSLASHAclp] = ACTIONS(5177), + [anon_sym_BSLASHacf] = ACTIONS(5177), + [anon_sym_BSLASHAcf] = ACTIONS(5177), + [anon_sym_BSLASHacfp] = ACTIONS(5177), + [anon_sym_BSLASHAcfp] = ACTIONS(5177), + [anon_sym_BSLASHac] = ACTIONS(5177), + [anon_sym_BSLASHAc] = ACTIONS(5177), + [anon_sym_BSLASHacp] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), + [anon_sym_BSLASHcolor] = ACTIONS(5177), + [anon_sym_BSLASHcolorbox] = ACTIONS(5177), + [anon_sym_BSLASHtextcolor] = ACTIONS(5177), + [anon_sym_BSLASHpagecolor] = ACTIONS(5177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), + [anon_sym_BSLASHtext] = ACTIONS(5177), + [anon_sym_BSLASHintertext] = ACTIONS(5177), + [anon_sym_shortintertext] = ACTIONS(5177), }, - [1316] = { - [sym_command_name] = ACTIONS(5329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5329), - [anon_sym_LPAREN] = ACTIONS(5327), - [anon_sym_RPAREN] = ACTIONS(5327), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_RBRACK] = ACTIONS(5327), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5327), - [anon_sym_LBRACE] = ACTIONS(5327), - [sym_word] = ACTIONS(5329), - [sym_placeholder] = ACTIONS(5327), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_STAR] = ACTIONS(5329), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_CARET] = ACTIONS(5329), - [anon_sym__] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_BANG] = ACTIONS(5329), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_COLON] = ACTIONS(5329), - [anon_sym_SQUOTE] = ACTIONS(5329), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5327), - [anon_sym_DOLLAR] = ACTIONS(5329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5327), - [anon_sym_BSLASHbegin] = ACTIONS(5329), - [anon_sym_BSLASHusepackage] = ACTIONS(5329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5329), - [anon_sym_BSLASHinclude] = ACTIONS(5329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5329), - [anon_sym_BSLASHinput] = ACTIONS(5329), - [anon_sym_BSLASHsubfile] = ACTIONS(5329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5329), - [anon_sym_BSLASHbibliography] = ACTIONS(5329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5329), - [anon_sym_BSLASHincludesvg] = ACTIONS(5329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5329), - [anon_sym_BSLASHimport] = ACTIONS(5329), - [anon_sym_BSLASHsubimport] = ACTIONS(5329), - [anon_sym_BSLASHinputfrom] = ACTIONS(5329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5329), - [anon_sym_BSLASHincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHcaption] = ACTIONS(5329), - [anon_sym_BSLASHcite] = ACTIONS(5329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCite] = ACTIONS(5329), - [anon_sym_BSLASHnocite] = ACTIONS(5329), - [anon_sym_BSLASHcitet] = ACTIONS(5329), - [anon_sym_BSLASHcitep] = ACTIONS(5329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor] = ACTIONS(5329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle] = ACTIONS(5329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteyear] = ACTIONS(5329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitedate] = ACTIONS(5329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteurl] = ACTIONS(5329), - [anon_sym_BSLASHfullcite] = ACTIONS(5329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5329), - [anon_sym_BSLASHcitealt] = ACTIONS(5329), - [anon_sym_BSLASHcitealp] = ACTIONS(5329), - [anon_sym_BSLASHcitetext] = ACTIONS(5329), - [anon_sym_BSLASHparencite] = ACTIONS(5329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHParencite] = ACTIONS(5329), - [anon_sym_BSLASHfootcite] = ACTIONS(5329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5329), - [anon_sym_BSLASHtextcite] = ACTIONS(5329), - [anon_sym_BSLASHTextcite] = ACTIONS(5329), - [anon_sym_BSLASHsmartcite] = ACTIONS(5329), - [anon_sym_BSLASHSmartcite] = ACTIONS(5329), - [anon_sym_BSLASHsupercite] = ACTIONS(5329), - [anon_sym_BSLASHautocite] = ACTIONS(5329), - [anon_sym_BSLASHAutocite] = ACTIONS(5329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHvolcite] = ACTIONS(5329), - [anon_sym_BSLASHVolcite] = ACTIONS(5329), - [anon_sym_BSLASHpvolcite] = ACTIONS(5329), - [anon_sym_BSLASHPvolcite] = ACTIONS(5329), - [anon_sym_BSLASHfvolcite] = ACTIONS(5329), - [anon_sym_BSLASHftvolcite] = ACTIONS(5329), - [anon_sym_BSLASHsvolcite] = ACTIONS(5329), - [anon_sym_BSLASHSvolcite] = ACTIONS(5329), - [anon_sym_BSLASHtvolcite] = ACTIONS(5329), - [anon_sym_BSLASHTvolcite] = ACTIONS(5329), - [anon_sym_BSLASHavolcite] = ACTIONS(5329), - [anon_sym_BSLASHAvolcite] = ACTIONS(5329), - [anon_sym_BSLASHnotecite] = ACTIONS(5329), - [anon_sym_BSLASHNotecite] = ACTIONS(5329), - [anon_sym_BSLASHpnotecite] = ACTIONS(5329), - [anon_sym_BSLASHPnotecite] = ACTIONS(5329), - [anon_sym_BSLASHfnotecite] = ACTIONS(5329), - [anon_sym_BSLASHlabel] = ACTIONS(5329), - [anon_sym_BSLASHref] = ACTIONS(5329), - [anon_sym_BSLASHeqref] = ACTIONS(5329), - [anon_sym_BSLASHvref] = ACTIONS(5329), - [anon_sym_BSLASHVref] = ACTIONS(5329), - [anon_sym_BSLASHautoref] = ACTIONS(5329), - [anon_sym_BSLASHpageref] = ACTIONS(5329), - [anon_sym_BSLASHcref] = ACTIONS(5329), - [anon_sym_BSLASHCref] = ACTIONS(5329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnameCref] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHlabelcref] = ACTIONS(5329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange] = ACTIONS(5329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnewlabel] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5327), - [anon_sym_BSLASHdef] = ACTIONS(5329), - [anon_sym_BSLASHlet] = ACTIONS(5329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5329), - [anon_sym_BSLASHgls] = ACTIONS(5329), - [anon_sym_BSLASHGls] = ACTIONS(5329), - [anon_sym_BSLASHGLS] = ACTIONS(5329), - [anon_sym_BSLASHglspl] = ACTIONS(5329), - [anon_sym_BSLASHGlspl] = ACTIONS(5329), - [anon_sym_BSLASHGLSpl] = ACTIONS(5329), - [anon_sym_BSLASHglsdisp] = ACTIONS(5329), - [anon_sym_BSLASHglslink] = ACTIONS(5329), - [anon_sym_BSLASHglstext] = ACTIONS(5329), - [anon_sym_BSLASHGlstext] = ACTIONS(5329), - [anon_sym_BSLASHGLStext] = ACTIONS(5329), - [anon_sym_BSLASHglsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5329), - [anon_sym_BSLASHglsplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSplural] = ACTIONS(5329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHglsname] = ACTIONS(5329), - [anon_sym_BSLASHGlsname] = ACTIONS(5329), - [anon_sym_BSLASHGLSname] = ACTIONS(5329), - [anon_sym_BSLASHglssymbol] = ACTIONS(5329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5329), - [anon_sym_BSLASHglsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5329), - [anon_sym_BSLASHglsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5329), - [anon_sym_BSLASHglsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5329), - [anon_sym_BSLASHglsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5329), - [anon_sym_BSLASHglsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5329), - [anon_sym_BSLASHnewacronym] = ACTIONS(5329), - [anon_sym_BSLASHacrshort] = ACTIONS(5329), - [anon_sym_BSLASHAcrshort] = ACTIONS(5329), - [anon_sym_BSLASHACRshort] = ACTIONS(5329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5329), - [anon_sym_BSLASHacrlong] = ACTIONS(5329), - [anon_sym_BSLASHAcrlong] = ACTIONS(5329), - [anon_sym_BSLASHACRlong] = ACTIONS(5329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5329), - [anon_sym_BSLASHacrfull] = ACTIONS(5329), - [anon_sym_BSLASHAcrfull] = ACTIONS(5329), - [anon_sym_BSLASHACRfull] = ACTIONS(5329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5329), - [anon_sym_BSLASHacs] = ACTIONS(5329), - [anon_sym_BSLASHAcs] = ACTIONS(5329), - [anon_sym_BSLASHacsp] = ACTIONS(5329), - [anon_sym_BSLASHAcsp] = ACTIONS(5329), - [anon_sym_BSLASHacl] = ACTIONS(5329), - [anon_sym_BSLASHAcl] = ACTIONS(5329), - [anon_sym_BSLASHaclp] = ACTIONS(5329), - [anon_sym_BSLASHAclp] = ACTIONS(5329), - [anon_sym_BSLASHacf] = ACTIONS(5329), - [anon_sym_BSLASHAcf] = ACTIONS(5329), - [anon_sym_BSLASHacfp] = ACTIONS(5329), - [anon_sym_BSLASHAcfp] = ACTIONS(5329), - [anon_sym_BSLASHac] = ACTIONS(5329), - [anon_sym_BSLASHAc] = ACTIONS(5329), - [anon_sym_BSLASHacp] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5329), - [anon_sym_BSLASHcolor] = ACTIONS(5329), - [anon_sym_BSLASHcolorbox] = ACTIONS(5329), - [anon_sym_BSLASHtextcolor] = ACTIONS(5329), - [anon_sym_BSLASHpagecolor] = ACTIONS(5329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5329), + [1185] = { + [sym_command_name] = ACTIONS(5181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5179), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_RBRACK] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_BSLASHpart] = ACTIONS(5181), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddpart] = ACTIONS(5181), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5179), + [anon_sym_BSLASHchapter] = ACTIONS(5181), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddchap] = ACTIONS(5181), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsection] = ACTIONS(5181), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHaddsec] = ACTIONS(5181), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubsection] = ACTIONS(5181), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5181), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5179), + [anon_sym_BSLASHparagraph] = ACTIONS(5181), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5179), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5181), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5179), + [anon_sym_BSLASHitem] = ACTIONS(5181), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5179), + [sym_word] = ACTIONS(5181), + [sym_placeholder] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5181), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_CARET] = ACTIONS(5181), + [anon_sym__] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_COLON] = ACTIONS(5181), + [anon_sym_SQUOTE] = ACTIONS(5181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), + [anon_sym_DOLLAR] = ACTIONS(5181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), + [anon_sym_BSLASHbegin] = ACTIONS(5181), + [anon_sym_BSLASHend] = ACTIONS(5181), + [anon_sym_BSLASHusepackage] = ACTIONS(5181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), + [anon_sym_BSLASHinclude] = ACTIONS(5181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), + [anon_sym_BSLASHinput] = ACTIONS(5181), + [anon_sym_BSLASHsubfile] = ACTIONS(5181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), + [anon_sym_BSLASHbibliography] = ACTIONS(5181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), + [anon_sym_BSLASHincludesvg] = ACTIONS(5181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), + [anon_sym_BSLASHimport] = ACTIONS(5181), + [anon_sym_BSLASHsubimport] = ACTIONS(5181), + [anon_sym_BSLASHinputfrom] = ACTIONS(5181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), + [anon_sym_BSLASHincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHcaption] = ACTIONS(5181), + [anon_sym_BSLASHcite] = ACTIONS(5181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCite] = ACTIONS(5181), + [anon_sym_BSLASHnocite] = ACTIONS(5181), + [anon_sym_BSLASHcitet] = ACTIONS(5181), + [anon_sym_BSLASHcitep] = ACTIONS(5181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteauthor] = ACTIONS(5181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitetitle] = ACTIONS(5181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteyear] = ACTIONS(5181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitedate] = ACTIONS(5181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteurl] = ACTIONS(5181), + [anon_sym_BSLASHfullcite] = ACTIONS(5181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), + [anon_sym_BSLASHcitealt] = ACTIONS(5181), + [anon_sym_BSLASHcitealp] = ACTIONS(5181), + [anon_sym_BSLASHcitetext] = ACTIONS(5181), + [anon_sym_BSLASHparencite] = ACTIONS(5181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHParencite] = ACTIONS(5181), + [anon_sym_BSLASHfootcite] = ACTIONS(5181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), + [anon_sym_BSLASHtextcite] = ACTIONS(5181), + [anon_sym_BSLASHTextcite] = ACTIONS(5181), + [anon_sym_BSLASHsmartcite] = ACTIONS(5181), + [anon_sym_BSLASHSmartcite] = ACTIONS(5181), + [anon_sym_BSLASHsupercite] = ACTIONS(5181), + [anon_sym_BSLASHautocite] = ACTIONS(5181), + [anon_sym_BSLASHAutocite] = ACTIONS(5181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHvolcite] = ACTIONS(5181), + [anon_sym_BSLASHVolcite] = ACTIONS(5181), + [anon_sym_BSLASHpvolcite] = ACTIONS(5181), + [anon_sym_BSLASHPvolcite] = ACTIONS(5181), + [anon_sym_BSLASHfvolcite] = ACTIONS(5181), + [anon_sym_BSLASHftvolcite] = ACTIONS(5181), + [anon_sym_BSLASHsvolcite] = ACTIONS(5181), + [anon_sym_BSLASHSvolcite] = ACTIONS(5181), + [anon_sym_BSLASHtvolcite] = ACTIONS(5181), + [anon_sym_BSLASHTvolcite] = ACTIONS(5181), + [anon_sym_BSLASHavolcite] = ACTIONS(5181), + [anon_sym_BSLASHAvolcite] = ACTIONS(5181), + [anon_sym_BSLASHnotecite] = ACTIONS(5181), + [anon_sym_BSLASHNotecite] = ACTIONS(5181), + [anon_sym_BSLASHpnotecite] = ACTIONS(5181), + [anon_sym_BSLASHPnotecite] = ACTIONS(5181), + [anon_sym_BSLASHfnotecite] = ACTIONS(5181), + [anon_sym_BSLASHlabel] = ACTIONS(5181), + [anon_sym_BSLASHref] = ACTIONS(5181), + [anon_sym_BSLASHeqref] = ACTIONS(5181), + [anon_sym_BSLASHvref] = ACTIONS(5181), + [anon_sym_BSLASHVref] = ACTIONS(5181), + [anon_sym_BSLASHautoref] = ACTIONS(5181), + [anon_sym_BSLASHpageref] = ACTIONS(5181), + [anon_sym_BSLASHcref] = ACTIONS(5181), + [anon_sym_BSLASHCref] = ACTIONS(5181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnameCref] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHlabelcref] = ACTIONS(5181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnewlabel] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), + [anon_sym_BSLASHdef] = ACTIONS(5181), + [anon_sym_BSLASHlet] = ACTIONS(5181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), + [anon_sym_BSLASHgls] = ACTIONS(5181), + [anon_sym_BSLASHGls] = ACTIONS(5181), + [anon_sym_BSLASHGLS] = ACTIONS(5181), + [anon_sym_BSLASHglspl] = ACTIONS(5181), + [anon_sym_BSLASHGlspl] = ACTIONS(5181), + [anon_sym_BSLASHGLSpl] = ACTIONS(5181), + [anon_sym_BSLASHglsdisp] = ACTIONS(5181), + [anon_sym_BSLASHglslink] = ACTIONS(5181), + [anon_sym_BSLASHglstext] = ACTIONS(5181), + [anon_sym_BSLASHGlstext] = ACTIONS(5181), + [anon_sym_BSLASHGLStext] = ACTIONS(5181), + [anon_sym_BSLASHglsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), + [anon_sym_BSLASHglsplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSplural] = ACTIONS(5181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHglsname] = ACTIONS(5181), + [anon_sym_BSLASHGlsname] = ACTIONS(5181), + [anon_sym_BSLASHGLSname] = ACTIONS(5181), + [anon_sym_BSLASHglssymbol] = ACTIONS(5181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), + [anon_sym_BSLASHglsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), + [anon_sym_BSLASHglsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), + [anon_sym_BSLASHglsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), + [anon_sym_BSLASHglsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), + [anon_sym_BSLASHglsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), + [anon_sym_BSLASHnewacronym] = ACTIONS(5181), + [anon_sym_BSLASHacrshort] = ACTIONS(5181), + [anon_sym_BSLASHAcrshort] = ACTIONS(5181), + [anon_sym_BSLASHACRshort] = ACTIONS(5181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), + [anon_sym_BSLASHacrlong] = ACTIONS(5181), + [anon_sym_BSLASHAcrlong] = ACTIONS(5181), + [anon_sym_BSLASHACRlong] = ACTIONS(5181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), + [anon_sym_BSLASHacrfull] = ACTIONS(5181), + [anon_sym_BSLASHAcrfull] = ACTIONS(5181), + [anon_sym_BSLASHACRfull] = ACTIONS(5181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), + [anon_sym_BSLASHacs] = ACTIONS(5181), + [anon_sym_BSLASHAcs] = ACTIONS(5181), + [anon_sym_BSLASHacsp] = ACTIONS(5181), + [anon_sym_BSLASHAcsp] = ACTIONS(5181), + [anon_sym_BSLASHacl] = ACTIONS(5181), + [anon_sym_BSLASHAcl] = ACTIONS(5181), + [anon_sym_BSLASHaclp] = ACTIONS(5181), + [anon_sym_BSLASHAclp] = ACTIONS(5181), + [anon_sym_BSLASHacf] = ACTIONS(5181), + [anon_sym_BSLASHAcf] = ACTIONS(5181), + [anon_sym_BSLASHacfp] = ACTIONS(5181), + [anon_sym_BSLASHAcfp] = ACTIONS(5181), + [anon_sym_BSLASHac] = ACTIONS(5181), + [anon_sym_BSLASHAc] = ACTIONS(5181), + [anon_sym_BSLASHacp] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), + [anon_sym_BSLASHcolor] = ACTIONS(5181), + [anon_sym_BSLASHcolorbox] = ACTIONS(5181), + [anon_sym_BSLASHtextcolor] = ACTIONS(5181), + [anon_sym_BSLASHpagecolor] = ACTIONS(5181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), + [anon_sym_BSLASHtext] = ACTIONS(5181), + [anon_sym_BSLASHintertext] = ACTIONS(5181), + [anon_sym_shortintertext] = ACTIONS(5181), }, - [1317] = { - [sym_command_name] = ACTIONS(5333), + [1186] = { + [sym_command_name] = ACTIONS(5185), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASHbegin] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), - }, - [1318] = { - [sym_command_name] = ACTIONS(5337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASHbegin] = ACTIONS(5337), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), - }, - [1319] = { - [sym_command_name] = ACTIONS(5341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASHbegin] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), - }, - [1320] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASHbegin] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), + [anon_sym_BSLASHiffalse] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5183), + [anon_sym_RPAREN] = ACTIONS(5183), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_RBRACK] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_BSLASHpart] = ACTIONS(5185), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddpart] = ACTIONS(5185), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5183), + [anon_sym_BSLASHchapter] = ACTIONS(5185), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddchap] = ACTIONS(5185), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsection] = ACTIONS(5185), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHaddsec] = ACTIONS(5185), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubsection] = ACTIONS(5185), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5185), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5183), + [anon_sym_BSLASHparagraph] = ACTIONS(5185), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5183), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5185), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5183), + [anon_sym_BSLASHitem] = ACTIONS(5185), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5183), + [sym_word] = ACTIONS(5185), + [sym_placeholder] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_CARET] = ACTIONS(5185), + [anon_sym__] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_COLON] = ACTIONS(5185), + [anon_sym_SQUOTE] = ACTIONS(5185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), + [anon_sym_DOLLAR] = ACTIONS(5185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), + [anon_sym_BSLASHbegin] = ACTIONS(5185), + [anon_sym_BSLASHend] = ACTIONS(5185), + [anon_sym_BSLASHusepackage] = ACTIONS(5185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), + [anon_sym_BSLASHinclude] = ACTIONS(5185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), + [anon_sym_BSLASHinput] = ACTIONS(5185), + [anon_sym_BSLASHsubfile] = ACTIONS(5185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), + [anon_sym_BSLASHbibliography] = ACTIONS(5185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), + [anon_sym_BSLASHincludesvg] = ACTIONS(5185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), + [anon_sym_BSLASHimport] = ACTIONS(5185), + [anon_sym_BSLASHsubimport] = ACTIONS(5185), + [anon_sym_BSLASHinputfrom] = ACTIONS(5185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), + [anon_sym_BSLASHincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHcaption] = ACTIONS(5185), + [anon_sym_BSLASHcite] = ACTIONS(5185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCite] = ACTIONS(5185), + [anon_sym_BSLASHnocite] = ACTIONS(5185), + [anon_sym_BSLASHcitet] = ACTIONS(5185), + [anon_sym_BSLASHcitep] = ACTIONS(5185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteauthor] = ACTIONS(5185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitetitle] = ACTIONS(5185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteyear] = ACTIONS(5185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitedate] = ACTIONS(5185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteurl] = ACTIONS(5185), + [anon_sym_BSLASHfullcite] = ACTIONS(5185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), + [anon_sym_BSLASHcitealt] = ACTIONS(5185), + [anon_sym_BSLASHcitealp] = ACTIONS(5185), + [anon_sym_BSLASHcitetext] = ACTIONS(5185), + [anon_sym_BSLASHparencite] = ACTIONS(5185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHParencite] = ACTIONS(5185), + [anon_sym_BSLASHfootcite] = ACTIONS(5185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), + [anon_sym_BSLASHtextcite] = ACTIONS(5185), + [anon_sym_BSLASHTextcite] = ACTIONS(5185), + [anon_sym_BSLASHsmartcite] = ACTIONS(5185), + [anon_sym_BSLASHSmartcite] = ACTIONS(5185), + [anon_sym_BSLASHsupercite] = ACTIONS(5185), + [anon_sym_BSLASHautocite] = ACTIONS(5185), + [anon_sym_BSLASHAutocite] = ACTIONS(5185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHvolcite] = ACTIONS(5185), + [anon_sym_BSLASHVolcite] = ACTIONS(5185), + [anon_sym_BSLASHpvolcite] = ACTIONS(5185), + [anon_sym_BSLASHPvolcite] = ACTIONS(5185), + [anon_sym_BSLASHfvolcite] = ACTIONS(5185), + [anon_sym_BSLASHftvolcite] = ACTIONS(5185), + [anon_sym_BSLASHsvolcite] = ACTIONS(5185), + [anon_sym_BSLASHSvolcite] = ACTIONS(5185), + [anon_sym_BSLASHtvolcite] = ACTIONS(5185), + [anon_sym_BSLASHTvolcite] = ACTIONS(5185), + [anon_sym_BSLASHavolcite] = ACTIONS(5185), + [anon_sym_BSLASHAvolcite] = ACTIONS(5185), + [anon_sym_BSLASHnotecite] = ACTIONS(5185), + [anon_sym_BSLASHNotecite] = ACTIONS(5185), + [anon_sym_BSLASHpnotecite] = ACTIONS(5185), + [anon_sym_BSLASHPnotecite] = ACTIONS(5185), + [anon_sym_BSLASHfnotecite] = ACTIONS(5185), + [anon_sym_BSLASHlabel] = ACTIONS(5185), + [anon_sym_BSLASHref] = ACTIONS(5185), + [anon_sym_BSLASHeqref] = ACTIONS(5185), + [anon_sym_BSLASHvref] = ACTIONS(5185), + [anon_sym_BSLASHVref] = ACTIONS(5185), + [anon_sym_BSLASHautoref] = ACTIONS(5185), + [anon_sym_BSLASHpageref] = ACTIONS(5185), + [anon_sym_BSLASHcref] = ACTIONS(5185), + [anon_sym_BSLASHCref] = ACTIONS(5185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnameCref] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHlabelcref] = ACTIONS(5185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCrefrange] = ACTIONS(5185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnewlabel] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), + [anon_sym_BSLASHdef] = ACTIONS(5185), + [anon_sym_BSLASHlet] = ACTIONS(5185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), + [anon_sym_BSLASHgls] = ACTIONS(5185), + [anon_sym_BSLASHGls] = ACTIONS(5185), + [anon_sym_BSLASHGLS] = ACTIONS(5185), + [anon_sym_BSLASHglspl] = ACTIONS(5185), + [anon_sym_BSLASHGlspl] = ACTIONS(5185), + [anon_sym_BSLASHGLSpl] = ACTIONS(5185), + [anon_sym_BSLASHglsdisp] = ACTIONS(5185), + [anon_sym_BSLASHglslink] = ACTIONS(5185), + [anon_sym_BSLASHglstext] = ACTIONS(5185), + [anon_sym_BSLASHGlstext] = ACTIONS(5185), + [anon_sym_BSLASHGLStext] = ACTIONS(5185), + [anon_sym_BSLASHglsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), + [anon_sym_BSLASHglsplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSplural] = ACTIONS(5185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHglsname] = ACTIONS(5185), + [anon_sym_BSLASHGlsname] = ACTIONS(5185), + [anon_sym_BSLASHGLSname] = ACTIONS(5185), + [anon_sym_BSLASHglssymbol] = ACTIONS(5185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), + [anon_sym_BSLASHglsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), + [anon_sym_BSLASHglsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), + [anon_sym_BSLASHglsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), + [anon_sym_BSLASHglsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), + [anon_sym_BSLASHglsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), + [anon_sym_BSLASHnewacronym] = ACTIONS(5185), + [anon_sym_BSLASHacrshort] = ACTIONS(5185), + [anon_sym_BSLASHAcrshort] = ACTIONS(5185), + [anon_sym_BSLASHACRshort] = ACTIONS(5185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), + [anon_sym_BSLASHacrlong] = ACTIONS(5185), + [anon_sym_BSLASHAcrlong] = ACTIONS(5185), + [anon_sym_BSLASHACRlong] = ACTIONS(5185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), + [anon_sym_BSLASHacrfull] = ACTIONS(5185), + [anon_sym_BSLASHAcrfull] = ACTIONS(5185), + [anon_sym_BSLASHACRfull] = ACTIONS(5185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), + [anon_sym_BSLASHacs] = ACTIONS(5185), + [anon_sym_BSLASHAcs] = ACTIONS(5185), + [anon_sym_BSLASHacsp] = ACTIONS(5185), + [anon_sym_BSLASHAcsp] = ACTIONS(5185), + [anon_sym_BSLASHacl] = ACTIONS(5185), + [anon_sym_BSLASHAcl] = ACTIONS(5185), + [anon_sym_BSLASHaclp] = ACTIONS(5185), + [anon_sym_BSLASHAclp] = ACTIONS(5185), + [anon_sym_BSLASHacf] = ACTIONS(5185), + [anon_sym_BSLASHAcf] = ACTIONS(5185), + [anon_sym_BSLASHacfp] = ACTIONS(5185), + [anon_sym_BSLASHAcfp] = ACTIONS(5185), + [anon_sym_BSLASHac] = ACTIONS(5185), + [anon_sym_BSLASHAc] = ACTIONS(5185), + [anon_sym_BSLASHacp] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), + [anon_sym_BSLASHcolor] = ACTIONS(5185), + [anon_sym_BSLASHcolorbox] = ACTIONS(5185), + [anon_sym_BSLASHtextcolor] = ACTIONS(5185), + [anon_sym_BSLASHpagecolor] = ACTIONS(5185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), + [anon_sym_BSLASHtext] = ACTIONS(5185), + [anon_sym_BSLASHintertext] = ACTIONS(5185), + [anon_sym_shortintertext] = ACTIONS(5185), }, - [1321] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASHbegin] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), + [1187] = { + [sym_command_name] = ACTIONS(4921), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4921), + [anon_sym_LPAREN] = ACTIONS(4919), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_RBRACK] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4919), + [anon_sym_BSLASHpart] = ACTIONS(4921), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddpart] = ACTIONS(4921), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4919), + [anon_sym_BSLASHchapter] = ACTIONS(4921), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddchap] = ACTIONS(4921), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsection] = ACTIONS(4921), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHaddsec] = ACTIONS(4921), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubsection] = ACTIONS(4921), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4921), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4919), + [anon_sym_BSLASHparagraph] = ACTIONS(4921), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4919), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4921), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4919), + [anon_sym_BSLASHitem] = ACTIONS(4921), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4919), + [anon_sym_LBRACE] = ACTIONS(4919), + [sym_word] = ACTIONS(4921), + [sym_placeholder] = ACTIONS(4919), + [anon_sym_PLUS] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4921), + [anon_sym_CARET] = ACTIONS(4921), + [anon_sym__] = ACTIONS(4921), + [anon_sym_LT] = ACTIONS(4921), + [anon_sym_GT] = ACTIONS(4921), + [anon_sym_BANG] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_COLON] = ACTIONS(4921), + [anon_sym_SQUOTE] = ACTIONS(4921), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), + [anon_sym_DOLLAR] = ACTIONS(4921), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), + [anon_sym_BSLASHbegin] = ACTIONS(4921), + [anon_sym_BSLASHend] = ACTIONS(4921), + [anon_sym_BSLASHusepackage] = ACTIONS(4921), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), + [anon_sym_BSLASHinclude] = ACTIONS(4921), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), + [anon_sym_BSLASHinput] = ACTIONS(4921), + [anon_sym_BSLASHsubfile] = ACTIONS(4921), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), + [anon_sym_BSLASHbibliography] = ACTIONS(4921), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), + [anon_sym_BSLASHincludesvg] = ACTIONS(4921), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), + [anon_sym_BSLASHimport] = ACTIONS(4921), + [anon_sym_BSLASHsubimport] = ACTIONS(4921), + [anon_sym_BSLASHinputfrom] = ACTIONS(4921), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), + [anon_sym_BSLASHincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHcaption] = ACTIONS(4921), + [anon_sym_BSLASHcite] = ACTIONS(4921), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCite] = ACTIONS(4921), + [anon_sym_BSLASHnocite] = ACTIONS(4921), + [anon_sym_BSLASHcitet] = ACTIONS(4921), + [anon_sym_BSLASHcitep] = ACTIONS(4921), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteauthor] = ACTIONS(4921), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitetitle] = ACTIONS(4921), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteyear] = ACTIONS(4921), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitedate] = ACTIONS(4921), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteurl] = ACTIONS(4921), + [anon_sym_BSLASHfullcite] = ACTIONS(4921), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), + [anon_sym_BSLASHcitealt] = ACTIONS(4921), + [anon_sym_BSLASHcitealp] = ACTIONS(4921), + [anon_sym_BSLASHcitetext] = ACTIONS(4921), + [anon_sym_BSLASHparencite] = ACTIONS(4921), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHParencite] = ACTIONS(4921), + [anon_sym_BSLASHfootcite] = ACTIONS(4921), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), + [anon_sym_BSLASHtextcite] = ACTIONS(4921), + [anon_sym_BSLASHTextcite] = ACTIONS(4921), + [anon_sym_BSLASHsmartcite] = ACTIONS(4921), + [anon_sym_BSLASHSmartcite] = ACTIONS(4921), + [anon_sym_BSLASHsupercite] = ACTIONS(4921), + [anon_sym_BSLASHautocite] = ACTIONS(4921), + [anon_sym_BSLASHAutocite] = ACTIONS(4921), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHvolcite] = ACTIONS(4921), + [anon_sym_BSLASHVolcite] = ACTIONS(4921), + [anon_sym_BSLASHpvolcite] = ACTIONS(4921), + [anon_sym_BSLASHPvolcite] = ACTIONS(4921), + [anon_sym_BSLASHfvolcite] = ACTIONS(4921), + [anon_sym_BSLASHftvolcite] = ACTIONS(4921), + [anon_sym_BSLASHsvolcite] = ACTIONS(4921), + [anon_sym_BSLASHSvolcite] = ACTIONS(4921), + [anon_sym_BSLASHtvolcite] = ACTIONS(4921), + [anon_sym_BSLASHTvolcite] = ACTIONS(4921), + [anon_sym_BSLASHavolcite] = ACTIONS(4921), + [anon_sym_BSLASHAvolcite] = ACTIONS(4921), + [anon_sym_BSLASHnotecite] = ACTIONS(4921), + [anon_sym_BSLASHNotecite] = ACTIONS(4921), + [anon_sym_BSLASHpnotecite] = ACTIONS(4921), + [anon_sym_BSLASHPnotecite] = ACTIONS(4921), + [anon_sym_BSLASHfnotecite] = ACTIONS(4921), + [anon_sym_BSLASHlabel] = ACTIONS(4921), + [anon_sym_BSLASHref] = ACTIONS(4921), + [anon_sym_BSLASHeqref] = ACTIONS(4921), + [anon_sym_BSLASHvref] = ACTIONS(4921), + [anon_sym_BSLASHVref] = ACTIONS(4921), + [anon_sym_BSLASHautoref] = ACTIONS(4921), + [anon_sym_BSLASHpageref] = ACTIONS(4921), + [anon_sym_BSLASHcref] = ACTIONS(4921), + [anon_sym_BSLASHCref] = ACTIONS(4921), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnameCref] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHlabelcref] = ACTIONS(4921), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCrefrange] = ACTIONS(4921), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnewlabel] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), + [anon_sym_BSLASHdef] = ACTIONS(4921), + [anon_sym_BSLASHlet] = ACTIONS(4921), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), + [anon_sym_BSLASHgls] = ACTIONS(4921), + [anon_sym_BSLASHGls] = ACTIONS(4921), + [anon_sym_BSLASHGLS] = ACTIONS(4921), + [anon_sym_BSLASHglspl] = ACTIONS(4921), + [anon_sym_BSLASHGlspl] = ACTIONS(4921), + [anon_sym_BSLASHGLSpl] = ACTIONS(4921), + [anon_sym_BSLASHglsdisp] = ACTIONS(4921), + [anon_sym_BSLASHglslink] = ACTIONS(4921), + [anon_sym_BSLASHglstext] = ACTIONS(4921), + [anon_sym_BSLASHGlstext] = ACTIONS(4921), + [anon_sym_BSLASHGLStext] = ACTIONS(4921), + [anon_sym_BSLASHglsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), + [anon_sym_BSLASHglsplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSplural] = ACTIONS(4921), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHglsname] = ACTIONS(4921), + [anon_sym_BSLASHGlsname] = ACTIONS(4921), + [anon_sym_BSLASHGLSname] = ACTIONS(4921), + [anon_sym_BSLASHglssymbol] = ACTIONS(4921), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), + [anon_sym_BSLASHglsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), + [anon_sym_BSLASHglsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), + [anon_sym_BSLASHglsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), + [anon_sym_BSLASHglsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), + [anon_sym_BSLASHglsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), + [anon_sym_BSLASHnewacronym] = ACTIONS(4921), + [anon_sym_BSLASHacrshort] = ACTIONS(4921), + [anon_sym_BSLASHAcrshort] = ACTIONS(4921), + [anon_sym_BSLASHACRshort] = ACTIONS(4921), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), + [anon_sym_BSLASHacrlong] = ACTIONS(4921), + [anon_sym_BSLASHAcrlong] = ACTIONS(4921), + [anon_sym_BSLASHACRlong] = ACTIONS(4921), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), + [anon_sym_BSLASHacrfull] = ACTIONS(4921), + [anon_sym_BSLASHAcrfull] = ACTIONS(4921), + [anon_sym_BSLASHACRfull] = ACTIONS(4921), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), + [anon_sym_BSLASHacs] = ACTIONS(4921), + [anon_sym_BSLASHAcs] = ACTIONS(4921), + [anon_sym_BSLASHacsp] = ACTIONS(4921), + [anon_sym_BSLASHAcsp] = ACTIONS(4921), + [anon_sym_BSLASHacl] = ACTIONS(4921), + [anon_sym_BSLASHAcl] = ACTIONS(4921), + [anon_sym_BSLASHaclp] = ACTIONS(4921), + [anon_sym_BSLASHAclp] = ACTIONS(4921), + [anon_sym_BSLASHacf] = ACTIONS(4921), + [anon_sym_BSLASHAcf] = ACTIONS(4921), + [anon_sym_BSLASHacfp] = ACTIONS(4921), + [anon_sym_BSLASHAcfp] = ACTIONS(4921), + [anon_sym_BSLASHac] = ACTIONS(4921), + [anon_sym_BSLASHAc] = ACTIONS(4921), + [anon_sym_BSLASHacp] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), + [anon_sym_BSLASHcolor] = ACTIONS(4921), + [anon_sym_BSLASHcolorbox] = ACTIONS(4921), + [anon_sym_BSLASHtextcolor] = ACTIONS(4921), + [anon_sym_BSLASHpagecolor] = ACTIONS(4921), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), + [anon_sym_BSLASHtext] = ACTIONS(4921), + [anon_sym_BSLASHintertext] = ACTIONS(4921), + [anon_sym_shortintertext] = ACTIONS(4921), }, - [1322] = { - [sym_command_name] = ACTIONS(5385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5385), - [anon_sym_LPAREN] = ACTIONS(5383), - [anon_sym_RPAREN] = ACTIONS(5383), - [anon_sym_LBRACK] = ACTIONS(5383), - [anon_sym_RBRACK] = ACTIONS(5383), - [anon_sym_COMMA] = ACTIONS(5383), - [anon_sym_EQ] = ACTIONS(5383), - [anon_sym_LBRACE] = ACTIONS(5383), - [sym_word] = ACTIONS(5385), - [sym_placeholder] = ACTIONS(5383), - [anon_sym_PLUS] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5385), - [anon_sym_SLASH] = ACTIONS(5385), - [anon_sym_CARET] = ACTIONS(5385), - [anon_sym__] = ACTIONS(5385), - [anon_sym_LT] = ACTIONS(5385), - [anon_sym_GT] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_PIPE] = ACTIONS(5385), - [anon_sym_COLON] = ACTIONS(5385), - [anon_sym_SQUOTE] = ACTIONS(5385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5383), - [anon_sym_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5383), - [anon_sym_BSLASHbegin] = ACTIONS(5385), - [anon_sym_BSLASHusepackage] = ACTIONS(5385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5385), - [anon_sym_BSLASHinclude] = ACTIONS(5385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5385), - [anon_sym_BSLASHinput] = ACTIONS(5385), - [anon_sym_BSLASHsubfile] = ACTIONS(5385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5385), - [anon_sym_BSLASHbibliography] = ACTIONS(5385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5385), - [anon_sym_BSLASHincludesvg] = ACTIONS(5385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5385), - [anon_sym_BSLASHimport] = ACTIONS(5385), - [anon_sym_BSLASHsubimport] = ACTIONS(5385), - [anon_sym_BSLASHinputfrom] = ACTIONS(5385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5385), - [anon_sym_BSLASHincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHcaption] = ACTIONS(5385), - [anon_sym_BSLASHcite] = ACTIONS(5385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCite] = ACTIONS(5385), - [anon_sym_BSLASHnocite] = ACTIONS(5385), - [anon_sym_BSLASHcitet] = ACTIONS(5385), - [anon_sym_BSLASHcitep] = ACTIONS(5385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteyear] = ACTIONS(5385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitedate] = ACTIONS(5385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteurl] = ACTIONS(5385), - [anon_sym_BSLASHfullcite] = ACTIONS(5385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5385), - [anon_sym_BSLASHcitealt] = ACTIONS(5385), - [anon_sym_BSLASHcitealp] = ACTIONS(5385), - [anon_sym_BSLASHcitetext] = ACTIONS(5385), - [anon_sym_BSLASHparencite] = ACTIONS(5385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHParencite] = ACTIONS(5385), - [anon_sym_BSLASHfootcite] = ACTIONS(5385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5385), - [anon_sym_BSLASHtextcite] = ACTIONS(5385), - [anon_sym_BSLASHTextcite] = ACTIONS(5385), - [anon_sym_BSLASHsmartcite] = ACTIONS(5385), - [anon_sym_BSLASHSmartcite] = ACTIONS(5385), - [anon_sym_BSLASHsupercite] = ACTIONS(5385), - [anon_sym_BSLASHautocite] = ACTIONS(5385), - [anon_sym_BSLASHAutocite] = ACTIONS(5385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHvolcite] = ACTIONS(5385), - [anon_sym_BSLASHVolcite] = ACTIONS(5385), - [anon_sym_BSLASHpvolcite] = ACTIONS(5385), - [anon_sym_BSLASHPvolcite] = ACTIONS(5385), - [anon_sym_BSLASHfvolcite] = ACTIONS(5385), - [anon_sym_BSLASHftvolcite] = ACTIONS(5385), - [anon_sym_BSLASHsvolcite] = ACTIONS(5385), - [anon_sym_BSLASHSvolcite] = ACTIONS(5385), - [anon_sym_BSLASHtvolcite] = ACTIONS(5385), - [anon_sym_BSLASHTvolcite] = ACTIONS(5385), - [anon_sym_BSLASHavolcite] = ACTIONS(5385), - [anon_sym_BSLASHAvolcite] = ACTIONS(5385), - [anon_sym_BSLASHnotecite] = ACTIONS(5385), - [anon_sym_BSLASHNotecite] = ACTIONS(5385), - [anon_sym_BSLASHpnotecite] = ACTIONS(5385), - [anon_sym_BSLASHPnotecite] = ACTIONS(5385), - [anon_sym_BSLASHfnotecite] = ACTIONS(5385), - [anon_sym_BSLASHlabel] = ACTIONS(5385), - [anon_sym_BSLASHref] = ACTIONS(5385), - [anon_sym_BSLASHeqref] = ACTIONS(5385), - [anon_sym_BSLASHvref] = ACTIONS(5385), - [anon_sym_BSLASHVref] = ACTIONS(5385), - [anon_sym_BSLASHautoref] = ACTIONS(5385), - [anon_sym_BSLASHpageref] = ACTIONS(5385), - [anon_sym_BSLASHcref] = ACTIONS(5385), - [anon_sym_BSLASHCref] = ACTIONS(5385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnameCref] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHlabelcref] = ACTIONS(5385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnewlabel] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5383), - [anon_sym_BSLASHdef] = ACTIONS(5385), - [anon_sym_BSLASHlet] = ACTIONS(5385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5385), - [anon_sym_BSLASHgls] = ACTIONS(5385), - [anon_sym_BSLASHGls] = ACTIONS(5385), - [anon_sym_BSLASHGLS] = ACTIONS(5385), - [anon_sym_BSLASHglspl] = ACTIONS(5385), - [anon_sym_BSLASHGlspl] = ACTIONS(5385), - [anon_sym_BSLASHGLSpl] = ACTIONS(5385), - [anon_sym_BSLASHglsdisp] = ACTIONS(5385), - [anon_sym_BSLASHglslink] = ACTIONS(5385), - [anon_sym_BSLASHglstext] = ACTIONS(5385), - [anon_sym_BSLASHGlstext] = ACTIONS(5385), - [anon_sym_BSLASHGLStext] = ACTIONS(5385), - [anon_sym_BSLASHglsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5385), - [anon_sym_BSLASHglsplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSplural] = ACTIONS(5385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHglsname] = ACTIONS(5385), - [anon_sym_BSLASHGlsname] = ACTIONS(5385), - [anon_sym_BSLASHGLSname] = ACTIONS(5385), - [anon_sym_BSLASHglssymbol] = ACTIONS(5385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5385), - [anon_sym_BSLASHglsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5385), - [anon_sym_BSLASHglsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5385), - [anon_sym_BSLASHglsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5385), - [anon_sym_BSLASHglsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5385), - [anon_sym_BSLASHglsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5385), - [anon_sym_BSLASHnewacronym] = ACTIONS(5385), - [anon_sym_BSLASHacrshort] = ACTIONS(5385), - [anon_sym_BSLASHAcrshort] = ACTIONS(5385), - [anon_sym_BSLASHACRshort] = ACTIONS(5385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5385), - [anon_sym_BSLASHacrlong] = ACTIONS(5385), - [anon_sym_BSLASHAcrlong] = ACTIONS(5385), - [anon_sym_BSLASHACRlong] = ACTIONS(5385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5385), - [anon_sym_BSLASHacrfull] = ACTIONS(5385), - [anon_sym_BSLASHAcrfull] = ACTIONS(5385), - [anon_sym_BSLASHACRfull] = ACTIONS(5385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5385), - [anon_sym_BSLASHacs] = ACTIONS(5385), - [anon_sym_BSLASHAcs] = ACTIONS(5385), - [anon_sym_BSLASHacsp] = ACTIONS(5385), - [anon_sym_BSLASHAcsp] = ACTIONS(5385), - [anon_sym_BSLASHacl] = ACTIONS(5385), - [anon_sym_BSLASHAcl] = ACTIONS(5385), - [anon_sym_BSLASHaclp] = ACTIONS(5385), - [anon_sym_BSLASHAclp] = ACTIONS(5385), - [anon_sym_BSLASHacf] = ACTIONS(5385), - [anon_sym_BSLASHAcf] = ACTIONS(5385), - [anon_sym_BSLASHacfp] = ACTIONS(5385), - [anon_sym_BSLASHAcfp] = ACTIONS(5385), - [anon_sym_BSLASHac] = ACTIONS(5385), - [anon_sym_BSLASHAc] = ACTIONS(5385), - [anon_sym_BSLASHacp] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5385), - [anon_sym_BSLASHcolor] = ACTIONS(5385), - [anon_sym_BSLASHcolorbox] = ACTIONS(5385), - [anon_sym_BSLASHtextcolor] = ACTIONS(5385), - [anon_sym_BSLASHpagecolor] = ACTIONS(5385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5385), + [1188] = { + [sym_command_name] = ACTIONS(4925), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_RBRACK] = ACTIONS(4923), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_EQ] = ACTIONS(4923), + [anon_sym_BSLASHpart] = ACTIONS(4925), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddpart] = ACTIONS(4925), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4923), + [anon_sym_BSLASHchapter] = ACTIONS(4925), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddchap] = ACTIONS(4925), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsection] = ACTIONS(4925), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHaddsec] = ACTIONS(4925), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubsection] = ACTIONS(4925), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4925), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4923), + [anon_sym_BSLASHparagraph] = ACTIONS(4925), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4923), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4925), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4923), + [anon_sym_BSLASHitem] = ACTIONS(4925), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4923), + [sym_word] = ACTIONS(4925), + [sym_placeholder] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym__] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_BANG] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_SQUOTE] = ACTIONS(4925), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), + [anon_sym_DOLLAR] = ACTIONS(4925), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), + [anon_sym_BSLASHbegin] = ACTIONS(4925), + [anon_sym_BSLASHend] = ACTIONS(4925), + [anon_sym_BSLASHusepackage] = ACTIONS(4925), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), + [anon_sym_BSLASHinclude] = ACTIONS(4925), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), + [anon_sym_BSLASHinput] = ACTIONS(4925), + [anon_sym_BSLASHsubfile] = ACTIONS(4925), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), + [anon_sym_BSLASHbibliography] = ACTIONS(4925), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), + [anon_sym_BSLASHincludesvg] = ACTIONS(4925), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), + [anon_sym_BSLASHimport] = ACTIONS(4925), + [anon_sym_BSLASHsubimport] = ACTIONS(4925), + [anon_sym_BSLASHinputfrom] = ACTIONS(4925), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), + [anon_sym_BSLASHincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHcaption] = ACTIONS(4925), + [anon_sym_BSLASHcite] = ACTIONS(4925), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCite] = ACTIONS(4925), + [anon_sym_BSLASHnocite] = ACTIONS(4925), + [anon_sym_BSLASHcitet] = ACTIONS(4925), + [anon_sym_BSLASHcitep] = ACTIONS(4925), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteauthor] = ACTIONS(4925), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitetitle] = ACTIONS(4925), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteyear] = ACTIONS(4925), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitedate] = ACTIONS(4925), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteurl] = ACTIONS(4925), + [anon_sym_BSLASHfullcite] = ACTIONS(4925), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4925), + [anon_sym_BSLASHcitealt] = ACTIONS(4925), + [anon_sym_BSLASHcitealp] = ACTIONS(4925), + [anon_sym_BSLASHcitetext] = ACTIONS(4925), + [anon_sym_BSLASHparencite] = ACTIONS(4925), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHParencite] = ACTIONS(4925), + [anon_sym_BSLASHfootcite] = ACTIONS(4925), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4925), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4925), + [anon_sym_BSLASHtextcite] = ACTIONS(4925), + [anon_sym_BSLASHTextcite] = ACTIONS(4925), + [anon_sym_BSLASHsmartcite] = ACTIONS(4925), + [anon_sym_BSLASHSmartcite] = ACTIONS(4925), + [anon_sym_BSLASHsupercite] = ACTIONS(4925), + [anon_sym_BSLASHautocite] = ACTIONS(4925), + [anon_sym_BSLASHAutocite] = ACTIONS(4925), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHvolcite] = ACTIONS(4925), + [anon_sym_BSLASHVolcite] = ACTIONS(4925), + [anon_sym_BSLASHpvolcite] = ACTIONS(4925), + [anon_sym_BSLASHPvolcite] = ACTIONS(4925), + [anon_sym_BSLASHfvolcite] = ACTIONS(4925), + [anon_sym_BSLASHftvolcite] = ACTIONS(4925), + [anon_sym_BSLASHsvolcite] = ACTIONS(4925), + [anon_sym_BSLASHSvolcite] = ACTIONS(4925), + [anon_sym_BSLASHtvolcite] = ACTIONS(4925), + [anon_sym_BSLASHTvolcite] = ACTIONS(4925), + [anon_sym_BSLASHavolcite] = ACTIONS(4925), + [anon_sym_BSLASHAvolcite] = ACTIONS(4925), + [anon_sym_BSLASHnotecite] = ACTIONS(4925), + [anon_sym_BSLASHNotecite] = ACTIONS(4925), + [anon_sym_BSLASHpnotecite] = ACTIONS(4925), + [anon_sym_BSLASHPnotecite] = ACTIONS(4925), + [anon_sym_BSLASHfnotecite] = ACTIONS(4925), + [anon_sym_BSLASHlabel] = ACTIONS(4925), + [anon_sym_BSLASHref] = ACTIONS(4925), + [anon_sym_BSLASHeqref] = ACTIONS(4925), + [anon_sym_BSLASHvref] = ACTIONS(4925), + [anon_sym_BSLASHVref] = ACTIONS(4925), + [anon_sym_BSLASHautoref] = ACTIONS(4925), + [anon_sym_BSLASHpageref] = ACTIONS(4925), + [anon_sym_BSLASHcref] = ACTIONS(4925), + [anon_sym_BSLASHCref] = ACTIONS(4925), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnameCref] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHlabelcref] = ACTIONS(4925), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCrefrange] = ACTIONS(4925), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnewlabel] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), + [anon_sym_BSLASHdef] = ACTIONS(4925), + [anon_sym_BSLASHlet] = ACTIONS(4925), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), + [anon_sym_BSLASHgls] = ACTIONS(4925), + [anon_sym_BSLASHGls] = ACTIONS(4925), + [anon_sym_BSLASHGLS] = ACTIONS(4925), + [anon_sym_BSLASHglspl] = ACTIONS(4925), + [anon_sym_BSLASHGlspl] = ACTIONS(4925), + [anon_sym_BSLASHGLSpl] = ACTIONS(4925), + [anon_sym_BSLASHglsdisp] = ACTIONS(4925), + [anon_sym_BSLASHglslink] = ACTIONS(4925), + [anon_sym_BSLASHglstext] = ACTIONS(4925), + [anon_sym_BSLASHGlstext] = ACTIONS(4925), + [anon_sym_BSLASHGLStext] = ACTIONS(4925), + [anon_sym_BSLASHglsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), + [anon_sym_BSLASHglsplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSplural] = ACTIONS(4925), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHglsname] = ACTIONS(4925), + [anon_sym_BSLASHGlsname] = ACTIONS(4925), + [anon_sym_BSLASHGLSname] = ACTIONS(4925), + [anon_sym_BSLASHglssymbol] = ACTIONS(4925), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), + [anon_sym_BSLASHglsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), + [anon_sym_BSLASHglsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), + [anon_sym_BSLASHglsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), + [anon_sym_BSLASHglsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), + [anon_sym_BSLASHglsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), + [anon_sym_BSLASHnewacronym] = ACTIONS(4925), + [anon_sym_BSLASHacrshort] = ACTIONS(4925), + [anon_sym_BSLASHAcrshort] = ACTIONS(4925), + [anon_sym_BSLASHACRshort] = ACTIONS(4925), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), + [anon_sym_BSLASHacrlong] = ACTIONS(4925), + [anon_sym_BSLASHAcrlong] = ACTIONS(4925), + [anon_sym_BSLASHACRlong] = ACTIONS(4925), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), + [anon_sym_BSLASHacrfull] = ACTIONS(4925), + [anon_sym_BSLASHAcrfull] = ACTIONS(4925), + [anon_sym_BSLASHACRfull] = ACTIONS(4925), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), + [anon_sym_BSLASHacs] = ACTIONS(4925), + [anon_sym_BSLASHAcs] = ACTIONS(4925), + [anon_sym_BSLASHacsp] = ACTIONS(4925), + [anon_sym_BSLASHAcsp] = ACTIONS(4925), + [anon_sym_BSLASHacl] = ACTIONS(4925), + [anon_sym_BSLASHAcl] = ACTIONS(4925), + [anon_sym_BSLASHaclp] = ACTIONS(4925), + [anon_sym_BSLASHAclp] = ACTIONS(4925), + [anon_sym_BSLASHacf] = ACTIONS(4925), + [anon_sym_BSLASHAcf] = ACTIONS(4925), + [anon_sym_BSLASHacfp] = ACTIONS(4925), + [anon_sym_BSLASHAcfp] = ACTIONS(4925), + [anon_sym_BSLASHac] = ACTIONS(4925), + [anon_sym_BSLASHAc] = ACTIONS(4925), + [anon_sym_BSLASHacp] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), + [anon_sym_BSLASHcolor] = ACTIONS(4925), + [anon_sym_BSLASHcolorbox] = ACTIONS(4925), + [anon_sym_BSLASHtextcolor] = ACTIONS(4925), + [anon_sym_BSLASHpagecolor] = ACTIONS(4925), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), + [anon_sym_BSLASHtext] = ACTIONS(4925), + [anon_sym_BSLASHintertext] = ACTIONS(4925), + [anon_sym_shortintertext] = ACTIONS(4925), }, - [1323] = { - [sym_command_name] = ACTIONS(5225), + [1189] = { + [sym_command_name] = ACTIONS(5189), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASHbegin] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), + [anon_sym_BSLASHiffalse] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_RPAREN] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_RBRACK] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_BSLASHpart] = ACTIONS(5189), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddpart] = ACTIONS(5189), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5187), + [anon_sym_BSLASHchapter] = ACTIONS(5189), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddchap] = ACTIONS(5189), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsection] = ACTIONS(5189), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHaddsec] = ACTIONS(5189), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubsection] = ACTIONS(5189), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5189), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5187), + [anon_sym_BSLASHparagraph] = ACTIONS(5189), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5187), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5189), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5187), + [anon_sym_BSLASHitem] = ACTIONS(5189), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5187), + [sym_word] = ACTIONS(5189), + [sym_placeholder] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_STAR] = ACTIONS(5189), + [anon_sym_SLASH] = ACTIONS(5189), + [anon_sym_CARET] = ACTIONS(5189), + [anon_sym__] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5189), + [anon_sym_GT] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_PIPE] = ACTIONS(5189), + [anon_sym_COLON] = ACTIONS(5189), + [anon_sym_SQUOTE] = ACTIONS(5189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), + [anon_sym_DOLLAR] = ACTIONS(5189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), + [anon_sym_BSLASHbegin] = ACTIONS(5189), + [anon_sym_BSLASHend] = ACTIONS(5189), + [anon_sym_BSLASHusepackage] = ACTIONS(5189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), + [anon_sym_BSLASHinclude] = ACTIONS(5189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), + [anon_sym_BSLASHinput] = ACTIONS(5189), + [anon_sym_BSLASHsubfile] = ACTIONS(5189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), + [anon_sym_BSLASHbibliography] = ACTIONS(5189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), + [anon_sym_BSLASHincludesvg] = ACTIONS(5189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), + [anon_sym_BSLASHimport] = ACTIONS(5189), + [anon_sym_BSLASHsubimport] = ACTIONS(5189), + [anon_sym_BSLASHinputfrom] = ACTIONS(5189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), + [anon_sym_BSLASHincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHcaption] = ACTIONS(5189), + [anon_sym_BSLASHcite] = ACTIONS(5189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCite] = ACTIONS(5189), + [anon_sym_BSLASHnocite] = ACTIONS(5189), + [anon_sym_BSLASHcitet] = ACTIONS(5189), + [anon_sym_BSLASHcitep] = ACTIONS(5189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteauthor] = ACTIONS(5189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitetitle] = ACTIONS(5189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteyear] = ACTIONS(5189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitedate] = ACTIONS(5189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteurl] = ACTIONS(5189), + [anon_sym_BSLASHfullcite] = ACTIONS(5189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), + [anon_sym_BSLASHcitealt] = ACTIONS(5189), + [anon_sym_BSLASHcitealp] = ACTIONS(5189), + [anon_sym_BSLASHcitetext] = ACTIONS(5189), + [anon_sym_BSLASHparencite] = ACTIONS(5189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHParencite] = ACTIONS(5189), + [anon_sym_BSLASHfootcite] = ACTIONS(5189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), + [anon_sym_BSLASHtextcite] = ACTIONS(5189), + [anon_sym_BSLASHTextcite] = ACTIONS(5189), + [anon_sym_BSLASHsmartcite] = ACTIONS(5189), + [anon_sym_BSLASHSmartcite] = ACTIONS(5189), + [anon_sym_BSLASHsupercite] = ACTIONS(5189), + [anon_sym_BSLASHautocite] = ACTIONS(5189), + [anon_sym_BSLASHAutocite] = ACTIONS(5189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHvolcite] = ACTIONS(5189), + [anon_sym_BSLASHVolcite] = ACTIONS(5189), + [anon_sym_BSLASHpvolcite] = ACTIONS(5189), + [anon_sym_BSLASHPvolcite] = ACTIONS(5189), + [anon_sym_BSLASHfvolcite] = ACTIONS(5189), + [anon_sym_BSLASHftvolcite] = ACTIONS(5189), + [anon_sym_BSLASHsvolcite] = ACTIONS(5189), + [anon_sym_BSLASHSvolcite] = ACTIONS(5189), + [anon_sym_BSLASHtvolcite] = ACTIONS(5189), + [anon_sym_BSLASHTvolcite] = ACTIONS(5189), + [anon_sym_BSLASHavolcite] = ACTIONS(5189), + [anon_sym_BSLASHAvolcite] = ACTIONS(5189), + [anon_sym_BSLASHnotecite] = ACTIONS(5189), + [anon_sym_BSLASHNotecite] = ACTIONS(5189), + [anon_sym_BSLASHpnotecite] = ACTIONS(5189), + [anon_sym_BSLASHPnotecite] = ACTIONS(5189), + [anon_sym_BSLASHfnotecite] = ACTIONS(5189), + [anon_sym_BSLASHlabel] = ACTIONS(5189), + [anon_sym_BSLASHref] = ACTIONS(5189), + [anon_sym_BSLASHeqref] = ACTIONS(5189), + [anon_sym_BSLASHvref] = ACTIONS(5189), + [anon_sym_BSLASHVref] = ACTIONS(5189), + [anon_sym_BSLASHautoref] = ACTIONS(5189), + [anon_sym_BSLASHpageref] = ACTIONS(5189), + [anon_sym_BSLASHcref] = ACTIONS(5189), + [anon_sym_BSLASHCref] = ACTIONS(5189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnameCref] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHlabelcref] = ACTIONS(5189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCrefrange] = ACTIONS(5189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnewlabel] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), + [anon_sym_BSLASHgls] = ACTIONS(5189), + [anon_sym_BSLASHGls] = ACTIONS(5189), + [anon_sym_BSLASHGLS] = ACTIONS(5189), + [anon_sym_BSLASHglspl] = ACTIONS(5189), + [anon_sym_BSLASHGlspl] = ACTIONS(5189), + [anon_sym_BSLASHGLSpl] = ACTIONS(5189), + [anon_sym_BSLASHglsdisp] = ACTIONS(5189), + [anon_sym_BSLASHglslink] = ACTIONS(5189), + [anon_sym_BSLASHglstext] = ACTIONS(5189), + [anon_sym_BSLASHGlstext] = ACTIONS(5189), + [anon_sym_BSLASHGLStext] = ACTIONS(5189), + [anon_sym_BSLASHglsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), + [anon_sym_BSLASHglsplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSplural] = ACTIONS(5189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHglsname] = ACTIONS(5189), + [anon_sym_BSLASHGlsname] = ACTIONS(5189), + [anon_sym_BSLASHGLSname] = ACTIONS(5189), + [anon_sym_BSLASHglssymbol] = ACTIONS(5189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), + [anon_sym_BSLASHglsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), + [anon_sym_BSLASHglsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), + [anon_sym_BSLASHglsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), + [anon_sym_BSLASHglsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), + [anon_sym_BSLASHglsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), + [anon_sym_BSLASHnewacronym] = ACTIONS(5189), + [anon_sym_BSLASHacrshort] = ACTIONS(5189), + [anon_sym_BSLASHAcrshort] = ACTIONS(5189), + [anon_sym_BSLASHACRshort] = ACTIONS(5189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), + [anon_sym_BSLASHacrlong] = ACTIONS(5189), + [anon_sym_BSLASHAcrlong] = ACTIONS(5189), + [anon_sym_BSLASHACRlong] = ACTIONS(5189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), + [anon_sym_BSLASHacrfull] = ACTIONS(5189), + [anon_sym_BSLASHAcrfull] = ACTIONS(5189), + [anon_sym_BSLASHACRfull] = ACTIONS(5189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), + [anon_sym_BSLASHacs] = ACTIONS(5189), + [anon_sym_BSLASHAcs] = ACTIONS(5189), + [anon_sym_BSLASHacsp] = ACTIONS(5189), + [anon_sym_BSLASHAcsp] = ACTIONS(5189), + [anon_sym_BSLASHacl] = ACTIONS(5189), + [anon_sym_BSLASHAcl] = ACTIONS(5189), + [anon_sym_BSLASHaclp] = ACTIONS(5189), + [anon_sym_BSLASHAclp] = ACTIONS(5189), + [anon_sym_BSLASHacf] = ACTIONS(5189), + [anon_sym_BSLASHAcf] = ACTIONS(5189), + [anon_sym_BSLASHacfp] = ACTIONS(5189), + [anon_sym_BSLASHAcfp] = ACTIONS(5189), + [anon_sym_BSLASHac] = ACTIONS(5189), + [anon_sym_BSLASHAc] = ACTIONS(5189), + [anon_sym_BSLASHacp] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), + [anon_sym_BSLASHcolor] = ACTIONS(5189), + [anon_sym_BSLASHcolorbox] = ACTIONS(5189), + [anon_sym_BSLASHtextcolor] = ACTIONS(5189), + [anon_sym_BSLASHpagecolor] = ACTIONS(5189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), + [anon_sym_BSLASHtext] = ACTIONS(5189), + [anon_sym_BSLASHintertext] = ACTIONS(5189), + [anon_sym_shortintertext] = ACTIONS(5189), }, - [1324] = { - [sym_command_name] = ACTIONS(4999), + [1190] = { + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_BSLASHpart] = ACTIONS(133), + [anon_sym_BSLASHpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddpart] = ACTIONS(133), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(131), + [anon_sym_BSLASHchapter] = ACTIONS(133), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddchap] = ACTIONS(133), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(131), + [anon_sym_BSLASHsection] = ACTIONS(133), + [anon_sym_BSLASHsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHaddsec] = ACTIONS(133), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubsubsection] = ACTIONS(133), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(131), + [anon_sym_BSLASHparagraph] = ACTIONS(133), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHsubparagraph] = ACTIONS(133), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(131), + [anon_sym_BSLASHitem] = ACTIONS(133), + [anon_sym_BSLASHitem_STAR] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(133), + [anon_sym_BSLASHend] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), + }, + [1191] = { + [sym_command_name] = ACTIONS(5193), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4999), - [anon_sym_LPAREN] = ACTIONS(4997), - [anon_sym_RPAREN] = ACTIONS(4997), - [anon_sym_LBRACK] = ACTIONS(4997), - [anon_sym_RBRACK] = ACTIONS(4997), - [anon_sym_COMMA] = ACTIONS(4997), - [anon_sym_EQ] = ACTIONS(4997), - [anon_sym_LBRACE] = ACTIONS(4997), - [sym_word] = ACTIONS(4999), - [sym_placeholder] = ACTIONS(4997), - [anon_sym_PLUS] = ACTIONS(4999), - [anon_sym_DASH] = ACTIONS(4999), - [anon_sym_STAR] = ACTIONS(4999), - [anon_sym_SLASH] = ACTIONS(4999), - [anon_sym_CARET] = ACTIONS(4999), - [anon_sym__] = ACTIONS(4999), - [anon_sym_LT] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), - [anon_sym_BANG] = ACTIONS(4999), - [anon_sym_PIPE] = ACTIONS(4999), - [anon_sym_COLON] = ACTIONS(4999), - [anon_sym_SQUOTE] = ACTIONS(4999), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), - [anon_sym_DOLLAR] = ACTIONS(4999), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), - [anon_sym_BSLASHbegin] = ACTIONS(4999), - [anon_sym_BSLASHusepackage] = ACTIONS(4999), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), - [anon_sym_BSLASHinclude] = ACTIONS(4999), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), - [anon_sym_BSLASHinput] = ACTIONS(4999), - [anon_sym_BSLASHsubfile] = ACTIONS(4999), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), - [anon_sym_BSLASHbibliography] = ACTIONS(4999), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), - [anon_sym_BSLASHincludesvg] = ACTIONS(4999), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), - [anon_sym_BSLASHimport] = ACTIONS(4999), - [anon_sym_BSLASHsubimport] = ACTIONS(4999), - [anon_sym_BSLASHinputfrom] = ACTIONS(4999), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), - [anon_sym_BSLASHincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), - [anon_sym_BSLASHcaption] = ACTIONS(4999), - [anon_sym_BSLASHcite] = ACTIONS(4999), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCite] = ACTIONS(4999), - [anon_sym_BSLASHnocite] = ACTIONS(4999), - [anon_sym_BSLASHcitet] = ACTIONS(4999), - [anon_sym_BSLASHcitep] = ACTIONS(4999), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteauthor] = ACTIONS(4999), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitetitle] = ACTIONS(4999), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteyear] = ACTIONS(4999), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), - [anon_sym_BSLASHcitedate] = ACTIONS(4999), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), - [anon_sym_BSLASHciteurl] = ACTIONS(4999), - [anon_sym_BSLASHfullcite] = ACTIONS(4999), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), - [anon_sym_BSLASHcitealt] = ACTIONS(4999), - [anon_sym_BSLASHcitealp] = ACTIONS(4999), - [anon_sym_BSLASHcitetext] = ACTIONS(4999), - [anon_sym_BSLASHparencite] = ACTIONS(4999), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHParencite] = ACTIONS(4999), - [anon_sym_BSLASHfootcite] = ACTIONS(4999), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), - [anon_sym_BSLASHtextcite] = ACTIONS(4999), - [anon_sym_BSLASHTextcite] = ACTIONS(4999), - [anon_sym_BSLASHsmartcite] = ACTIONS(4999), - [anon_sym_BSLASHSmartcite] = ACTIONS(4999), - [anon_sym_BSLASHsupercite] = ACTIONS(4999), - [anon_sym_BSLASHautocite] = ACTIONS(4999), - [anon_sym_BSLASHAutocite] = ACTIONS(4999), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), - [anon_sym_BSLASHvolcite] = ACTIONS(4999), - [anon_sym_BSLASHVolcite] = ACTIONS(4999), - [anon_sym_BSLASHpvolcite] = ACTIONS(4999), - [anon_sym_BSLASHPvolcite] = ACTIONS(4999), - [anon_sym_BSLASHfvolcite] = ACTIONS(4999), - [anon_sym_BSLASHftvolcite] = ACTIONS(4999), - [anon_sym_BSLASHsvolcite] = ACTIONS(4999), - [anon_sym_BSLASHSvolcite] = ACTIONS(4999), - [anon_sym_BSLASHtvolcite] = ACTIONS(4999), - [anon_sym_BSLASHTvolcite] = ACTIONS(4999), - [anon_sym_BSLASHavolcite] = ACTIONS(4999), - [anon_sym_BSLASHAvolcite] = ACTIONS(4999), - [anon_sym_BSLASHnotecite] = ACTIONS(4999), - [anon_sym_BSLASHNotecite] = ACTIONS(4999), - [anon_sym_BSLASHpnotecite] = ACTIONS(4999), - [anon_sym_BSLASHPnotecite] = ACTIONS(4999), - [anon_sym_BSLASHfnotecite] = ACTIONS(4999), - [anon_sym_BSLASHlabel] = ACTIONS(4999), - [anon_sym_BSLASHref] = ACTIONS(4999), - [anon_sym_BSLASHeqref] = ACTIONS(4999), - [anon_sym_BSLASHvref] = ACTIONS(4999), - [anon_sym_BSLASHVref] = ACTIONS(4999), - [anon_sym_BSLASHautoref] = ACTIONS(4999), - [anon_sym_BSLASHpageref] = ACTIONS(4999), - [anon_sym_BSLASHcref] = ACTIONS(4999), - [anon_sym_BSLASHCref] = ACTIONS(4999), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnameCref] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), - [anon_sym_BSLASHlabelcref] = ACTIONS(4999), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange] = ACTIONS(4999), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHCrefrange] = ACTIONS(4999), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), - [anon_sym_BSLASHnewlabel] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand] = ACTIONS(4999), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), - [anon_sym_BSLASHdef] = ACTIONS(4999), - [anon_sym_BSLASHlet] = ACTIONS(4999), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), - [anon_sym_BSLASHgls] = ACTIONS(4999), - [anon_sym_BSLASHGls] = ACTIONS(4999), - [anon_sym_BSLASHGLS] = ACTIONS(4999), - [anon_sym_BSLASHglspl] = ACTIONS(4999), - [anon_sym_BSLASHGlspl] = ACTIONS(4999), - [anon_sym_BSLASHGLSpl] = ACTIONS(4999), - [anon_sym_BSLASHglsdisp] = ACTIONS(4999), - [anon_sym_BSLASHglslink] = ACTIONS(4999), - [anon_sym_BSLASHglstext] = ACTIONS(4999), - [anon_sym_BSLASHGlstext] = ACTIONS(4999), - [anon_sym_BSLASHGLStext] = ACTIONS(4999), - [anon_sym_BSLASHglsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), - [anon_sym_BSLASHglsplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSplural] = ACTIONS(4999), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), - [anon_sym_BSLASHglsname] = ACTIONS(4999), - [anon_sym_BSLASHGlsname] = ACTIONS(4999), - [anon_sym_BSLASHGLSname] = ACTIONS(4999), - [anon_sym_BSLASHglssymbol] = ACTIONS(4999), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), - [anon_sym_BSLASHglsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), - [anon_sym_BSLASHglsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), - [anon_sym_BSLASHglsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), - [anon_sym_BSLASHglsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), - [anon_sym_BSLASHglsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), - [anon_sym_BSLASHnewacronym] = ACTIONS(4999), - [anon_sym_BSLASHacrshort] = ACTIONS(4999), - [anon_sym_BSLASHAcrshort] = ACTIONS(4999), - [anon_sym_BSLASHACRshort] = ACTIONS(4999), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), - [anon_sym_BSLASHacrlong] = ACTIONS(4999), - [anon_sym_BSLASHAcrlong] = ACTIONS(4999), - [anon_sym_BSLASHACRlong] = ACTIONS(4999), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), - [anon_sym_BSLASHacrfull] = ACTIONS(4999), - [anon_sym_BSLASHAcrfull] = ACTIONS(4999), - [anon_sym_BSLASHACRfull] = ACTIONS(4999), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), - [anon_sym_BSLASHacs] = ACTIONS(4999), - [anon_sym_BSLASHAcs] = ACTIONS(4999), - [anon_sym_BSLASHacsp] = ACTIONS(4999), - [anon_sym_BSLASHAcsp] = ACTIONS(4999), - [anon_sym_BSLASHacl] = ACTIONS(4999), - [anon_sym_BSLASHAcl] = ACTIONS(4999), - [anon_sym_BSLASHaclp] = ACTIONS(4999), - [anon_sym_BSLASHAclp] = ACTIONS(4999), - [anon_sym_BSLASHacf] = ACTIONS(4999), - [anon_sym_BSLASHAcf] = ACTIONS(4999), - [anon_sym_BSLASHacfp] = ACTIONS(4999), - [anon_sym_BSLASHAcfp] = ACTIONS(4999), - [anon_sym_BSLASHac] = ACTIONS(4999), - [anon_sym_BSLASHAc] = ACTIONS(4999), - [anon_sym_BSLASHacp] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), - [anon_sym_BSLASHcolor] = ACTIONS(4999), - [anon_sym_BSLASHcolorbox] = ACTIONS(4999), - [anon_sym_BSLASHtextcolor] = ACTIONS(4999), - [anon_sym_BSLASHpagecolor] = ACTIONS(4999), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), + [anon_sym_BSLASHiffalse] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5191), + [anon_sym_RPAREN] = ACTIONS(5191), + [anon_sym_LBRACK] = ACTIONS(5191), + [anon_sym_RBRACK] = ACTIONS(5191), + [anon_sym_COMMA] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_BSLASHpart] = ACTIONS(5193), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddpart] = ACTIONS(5193), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5191), + [anon_sym_BSLASHchapter] = ACTIONS(5193), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddchap] = ACTIONS(5193), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsection] = ACTIONS(5193), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHaddsec] = ACTIONS(5193), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubsection] = ACTIONS(5193), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5193), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5191), + [anon_sym_BSLASHparagraph] = ACTIONS(5193), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5191), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5193), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5191), + [anon_sym_BSLASHitem] = ACTIONS(5193), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5191), + [sym_word] = ACTIONS(5193), + [sym_placeholder] = ACTIONS(5191), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5193), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_CARET] = ACTIONS(5193), + [anon_sym__] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_PIPE] = ACTIONS(5193), + [anon_sym_COLON] = ACTIONS(5193), + [anon_sym_SQUOTE] = ACTIONS(5193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), + [anon_sym_DOLLAR] = ACTIONS(5193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), + [anon_sym_BSLASHbegin] = ACTIONS(5193), + [anon_sym_BSLASHend] = ACTIONS(5193), + [anon_sym_BSLASHusepackage] = ACTIONS(5193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), + [anon_sym_BSLASHinclude] = ACTIONS(5193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), + [anon_sym_BSLASHinput] = ACTIONS(5193), + [anon_sym_BSLASHsubfile] = ACTIONS(5193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), + [anon_sym_BSLASHbibliography] = ACTIONS(5193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), + [anon_sym_BSLASHincludesvg] = ACTIONS(5193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), + [anon_sym_BSLASHimport] = ACTIONS(5193), + [anon_sym_BSLASHsubimport] = ACTIONS(5193), + [anon_sym_BSLASHinputfrom] = ACTIONS(5193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), + [anon_sym_BSLASHincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHcaption] = ACTIONS(5193), + [anon_sym_BSLASHcite] = ACTIONS(5193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCite] = ACTIONS(5193), + [anon_sym_BSLASHnocite] = ACTIONS(5193), + [anon_sym_BSLASHcitet] = ACTIONS(5193), + [anon_sym_BSLASHcitep] = ACTIONS(5193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteauthor] = ACTIONS(5193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitetitle] = ACTIONS(5193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteyear] = ACTIONS(5193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitedate] = ACTIONS(5193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteurl] = ACTIONS(5193), + [anon_sym_BSLASHfullcite] = ACTIONS(5193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), + [anon_sym_BSLASHcitealt] = ACTIONS(5193), + [anon_sym_BSLASHcitealp] = ACTIONS(5193), + [anon_sym_BSLASHcitetext] = ACTIONS(5193), + [anon_sym_BSLASHparencite] = ACTIONS(5193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHParencite] = ACTIONS(5193), + [anon_sym_BSLASHfootcite] = ACTIONS(5193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), + [anon_sym_BSLASHtextcite] = ACTIONS(5193), + [anon_sym_BSLASHTextcite] = ACTIONS(5193), + [anon_sym_BSLASHsmartcite] = ACTIONS(5193), + [anon_sym_BSLASHSmartcite] = ACTIONS(5193), + [anon_sym_BSLASHsupercite] = ACTIONS(5193), + [anon_sym_BSLASHautocite] = ACTIONS(5193), + [anon_sym_BSLASHAutocite] = ACTIONS(5193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHvolcite] = ACTIONS(5193), + [anon_sym_BSLASHVolcite] = ACTIONS(5193), + [anon_sym_BSLASHpvolcite] = ACTIONS(5193), + [anon_sym_BSLASHPvolcite] = ACTIONS(5193), + [anon_sym_BSLASHfvolcite] = ACTIONS(5193), + [anon_sym_BSLASHftvolcite] = ACTIONS(5193), + [anon_sym_BSLASHsvolcite] = ACTIONS(5193), + [anon_sym_BSLASHSvolcite] = ACTIONS(5193), + [anon_sym_BSLASHtvolcite] = ACTIONS(5193), + [anon_sym_BSLASHTvolcite] = ACTIONS(5193), + [anon_sym_BSLASHavolcite] = ACTIONS(5193), + [anon_sym_BSLASHAvolcite] = ACTIONS(5193), + [anon_sym_BSLASHnotecite] = ACTIONS(5193), + [anon_sym_BSLASHNotecite] = ACTIONS(5193), + [anon_sym_BSLASHpnotecite] = ACTIONS(5193), + [anon_sym_BSLASHPnotecite] = ACTIONS(5193), + [anon_sym_BSLASHfnotecite] = ACTIONS(5193), + [anon_sym_BSLASHlabel] = ACTIONS(5193), + [anon_sym_BSLASHref] = ACTIONS(5193), + [anon_sym_BSLASHeqref] = ACTIONS(5193), + [anon_sym_BSLASHvref] = ACTIONS(5193), + [anon_sym_BSLASHVref] = ACTIONS(5193), + [anon_sym_BSLASHautoref] = ACTIONS(5193), + [anon_sym_BSLASHpageref] = ACTIONS(5193), + [anon_sym_BSLASHcref] = ACTIONS(5193), + [anon_sym_BSLASHCref] = ACTIONS(5193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnameCref] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHlabelcref] = ACTIONS(5193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCrefrange] = ACTIONS(5193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnewlabel] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), + [anon_sym_BSLASHdef] = ACTIONS(5193), + [anon_sym_BSLASHlet] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), + [anon_sym_BSLASHgls] = ACTIONS(5193), + [anon_sym_BSLASHGls] = ACTIONS(5193), + [anon_sym_BSLASHGLS] = ACTIONS(5193), + [anon_sym_BSLASHglspl] = ACTIONS(5193), + [anon_sym_BSLASHGlspl] = ACTIONS(5193), + [anon_sym_BSLASHGLSpl] = ACTIONS(5193), + [anon_sym_BSLASHglsdisp] = ACTIONS(5193), + [anon_sym_BSLASHglslink] = ACTIONS(5193), + [anon_sym_BSLASHglstext] = ACTIONS(5193), + [anon_sym_BSLASHGlstext] = ACTIONS(5193), + [anon_sym_BSLASHGLStext] = ACTIONS(5193), + [anon_sym_BSLASHglsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), + [anon_sym_BSLASHglsplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSplural] = ACTIONS(5193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHglsname] = ACTIONS(5193), + [anon_sym_BSLASHGlsname] = ACTIONS(5193), + [anon_sym_BSLASHGLSname] = ACTIONS(5193), + [anon_sym_BSLASHglssymbol] = ACTIONS(5193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), + [anon_sym_BSLASHglsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), + [anon_sym_BSLASHglsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), + [anon_sym_BSLASHglsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), + [anon_sym_BSLASHglsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), + [anon_sym_BSLASHglsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), + [anon_sym_BSLASHnewacronym] = ACTIONS(5193), + [anon_sym_BSLASHacrshort] = ACTIONS(5193), + [anon_sym_BSLASHAcrshort] = ACTIONS(5193), + [anon_sym_BSLASHACRshort] = ACTIONS(5193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), + [anon_sym_BSLASHacrlong] = ACTIONS(5193), + [anon_sym_BSLASHAcrlong] = ACTIONS(5193), + [anon_sym_BSLASHACRlong] = ACTIONS(5193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), + [anon_sym_BSLASHacrfull] = ACTIONS(5193), + [anon_sym_BSLASHAcrfull] = ACTIONS(5193), + [anon_sym_BSLASHACRfull] = ACTIONS(5193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), + [anon_sym_BSLASHacs] = ACTIONS(5193), + [anon_sym_BSLASHAcs] = ACTIONS(5193), + [anon_sym_BSLASHacsp] = ACTIONS(5193), + [anon_sym_BSLASHAcsp] = ACTIONS(5193), + [anon_sym_BSLASHacl] = ACTIONS(5193), + [anon_sym_BSLASHAcl] = ACTIONS(5193), + [anon_sym_BSLASHaclp] = ACTIONS(5193), + [anon_sym_BSLASHAclp] = ACTIONS(5193), + [anon_sym_BSLASHacf] = ACTIONS(5193), + [anon_sym_BSLASHAcf] = ACTIONS(5193), + [anon_sym_BSLASHacfp] = ACTIONS(5193), + [anon_sym_BSLASHAcfp] = ACTIONS(5193), + [anon_sym_BSLASHac] = ACTIONS(5193), + [anon_sym_BSLASHAc] = ACTIONS(5193), + [anon_sym_BSLASHacp] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), + [anon_sym_BSLASHcolor] = ACTIONS(5193), + [anon_sym_BSLASHcolorbox] = ACTIONS(5193), + [anon_sym_BSLASHtextcolor] = ACTIONS(5193), + [anon_sym_BSLASHpagecolor] = ACTIONS(5193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [anon_sym_BSLASHtext] = ACTIONS(5193), + [anon_sym_BSLASHintertext] = ACTIONS(5193), + [anon_sym_shortintertext] = ACTIONS(5193), }, - [1325] = { - [sym_command_name] = ACTIONS(5209), + [1192] = { + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_BSLASHpart] = ACTIONS(149), + [anon_sym_BSLASHpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddpart] = ACTIONS(149), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(147), + [anon_sym_BSLASHchapter] = ACTIONS(149), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddchap] = ACTIONS(149), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(147), + [anon_sym_BSLASHsection] = ACTIONS(149), + [anon_sym_BSLASHsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHaddsec] = ACTIONS(149), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubsubsection] = ACTIONS(149), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(147), + [anon_sym_BSLASHparagraph] = ACTIONS(149), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHsubparagraph] = ACTIONS(149), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(147), + [anon_sym_BSLASHitem] = ACTIONS(149), + [anon_sym_BSLASHitem_STAR] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(149), + [anon_sym_BSLASHend] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), + }, + [1193] = { + [sym_command_name] = ACTIONS(4969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_EQ] = ACTIONS(4967), + [anon_sym_BSLASHpart] = ACTIONS(4969), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddpart] = ACTIONS(4969), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4967), + [anon_sym_BSLASHchapter] = ACTIONS(4969), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddchap] = ACTIONS(4969), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsection] = ACTIONS(4969), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHaddsec] = ACTIONS(4969), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubsection] = ACTIONS(4969), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4969), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4967), + [anon_sym_BSLASHparagraph] = ACTIONS(4969), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4967), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4969), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4967), + [anon_sym_BSLASHitem] = ACTIONS(4969), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4967), + [sym_word] = ACTIONS(4969), + [sym_placeholder] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_CARET] = ACTIONS(4969), + [anon_sym__] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_COLON] = ACTIONS(4969), + [anon_sym_SQUOTE] = ACTIONS(4969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), + [anon_sym_BSLASHbegin] = ACTIONS(4969), + [anon_sym_BSLASHend] = ACTIONS(4969), + [anon_sym_BSLASHusepackage] = ACTIONS(4969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), + [anon_sym_BSLASHinclude] = ACTIONS(4969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), + [anon_sym_BSLASHinput] = ACTIONS(4969), + [anon_sym_BSLASHsubfile] = ACTIONS(4969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), + [anon_sym_BSLASHbibliography] = ACTIONS(4969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), + [anon_sym_BSLASHincludesvg] = ACTIONS(4969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), + [anon_sym_BSLASHimport] = ACTIONS(4969), + [anon_sym_BSLASHsubimport] = ACTIONS(4969), + [anon_sym_BSLASHinputfrom] = ACTIONS(4969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), + [anon_sym_BSLASHincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHcaption] = ACTIONS(4969), + [anon_sym_BSLASHcite] = ACTIONS(4969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCite] = ACTIONS(4969), + [anon_sym_BSLASHnocite] = ACTIONS(4969), + [anon_sym_BSLASHcitet] = ACTIONS(4969), + [anon_sym_BSLASHcitep] = ACTIONS(4969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteauthor] = ACTIONS(4969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitetitle] = ACTIONS(4969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteyear] = ACTIONS(4969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitedate] = ACTIONS(4969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteurl] = ACTIONS(4969), + [anon_sym_BSLASHfullcite] = ACTIONS(4969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), + [anon_sym_BSLASHcitealt] = ACTIONS(4969), + [anon_sym_BSLASHcitealp] = ACTIONS(4969), + [anon_sym_BSLASHcitetext] = ACTIONS(4969), + [anon_sym_BSLASHparencite] = ACTIONS(4969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHParencite] = ACTIONS(4969), + [anon_sym_BSLASHfootcite] = ACTIONS(4969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), + [anon_sym_BSLASHtextcite] = ACTIONS(4969), + [anon_sym_BSLASHTextcite] = ACTIONS(4969), + [anon_sym_BSLASHsmartcite] = ACTIONS(4969), + [anon_sym_BSLASHSmartcite] = ACTIONS(4969), + [anon_sym_BSLASHsupercite] = ACTIONS(4969), + [anon_sym_BSLASHautocite] = ACTIONS(4969), + [anon_sym_BSLASHAutocite] = ACTIONS(4969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHvolcite] = ACTIONS(4969), + [anon_sym_BSLASHVolcite] = ACTIONS(4969), + [anon_sym_BSLASHpvolcite] = ACTIONS(4969), + [anon_sym_BSLASHPvolcite] = ACTIONS(4969), + [anon_sym_BSLASHfvolcite] = ACTIONS(4969), + [anon_sym_BSLASHftvolcite] = ACTIONS(4969), + [anon_sym_BSLASHsvolcite] = ACTIONS(4969), + [anon_sym_BSLASHSvolcite] = ACTIONS(4969), + [anon_sym_BSLASHtvolcite] = ACTIONS(4969), + [anon_sym_BSLASHTvolcite] = ACTIONS(4969), + [anon_sym_BSLASHavolcite] = ACTIONS(4969), + [anon_sym_BSLASHAvolcite] = ACTIONS(4969), + [anon_sym_BSLASHnotecite] = ACTIONS(4969), + [anon_sym_BSLASHNotecite] = ACTIONS(4969), + [anon_sym_BSLASHpnotecite] = ACTIONS(4969), + [anon_sym_BSLASHPnotecite] = ACTIONS(4969), + [anon_sym_BSLASHfnotecite] = ACTIONS(4969), + [anon_sym_BSLASHlabel] = ACTIONS(4969), + [anon_sym_BSLASHref] = ACTIONS(4969), + [anon_sym_BSLASHeqref] = ACTIONS(4969), + [anon_sym_BSLASHvref] = ACTIONS(4969), + [anon_sym_BSLASHVref] = ACTIONS(4969), + [anon_sym_BSLASHautoref] = ACTIONS(4969), + [anon_sym_BSLASHpageref] = ACTIONS(4969), + [anon_sym_BSLASHcref] = ACTIONS(4969), + [anon_sym_BSLASHCref] = ACTIONS(4969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnameCref] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHlabelcref] = ACTIONS(4969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCrefrange] = ACTIONS(4969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnewlabel] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), + [anon_sym_BSLASHdef] = ACTIONS(4969), + [anon_sym_BSLASHlet] = ACTIONS(4969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), + [anon_sym_BSLASHgls] = ACTIONS(4969), + [anon_sym_BSLASHGls] = ACTIONS(4969), + [anon_sym_BSLASHGLS] = ACTIONS(4969), + [anon_sym_BSLASHglspl] = ACTIONS(4969), + [anon_sym_BSLASHGlspl] = ACTIONS(4969), + [anon_sym_BSLASHGLSpl] = ACTIONS(4969), + [anon_sym_BSLASHglsdisp] = ACTIONS(4969), + [anon_sym_BSLASHglslink] = ACTIONS(4969), + [anon_sym_BSLASHglstext] = ACTIONS(4969), + [anon_sym_BSLASHGlstext] = ACTIONS(4969), + [anon_sym_BSLASHGLStext] = ACTIONS(4969), + [anon_sym_BSLASHglsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), + [anon_sym_BSLASHglsplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSplural] = ACTIONS(4969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHglsname] = ACTIONS(4969), + [anon_sym_BSLASHGlsname] = ACTIONS(4969), + [anon_sym_BSLASHGLSname] = ACTIONS(4969), + [anon_sym_BSLASHglssymbol] = ACTIONS(4969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), + [anon_sym_BSLASHglsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), + [anon_sym_BSLASHglsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), + [anon_sym_BSLASHglsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), + [anon_sym_BSLASHglsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), + [anon_sym_BSLASHglsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), + [anon_sym_BSLASHnewacronym] = ACTIONS(4969), + [anon_sym_BSLASHacrshort] = ACTIONS(4969), + [anon_sym_BSLASHAcrshort] = ACTIONS(4969), + [anon_sym_BSLASHACRshort] = ACTIONS(4969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), + [anon_sym_BSLASHacrlong] = ACTIONS(4969), + [anon_sym_BSLASHAcrlong] = ACTIONS(4969), + [anon_sym_BSLASHACRlong] = ACTIONS(4969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), + [anon_sym_BSLASHacrfull] = ACTIONS(4969), + [anon_sym_BSLASHAcrfull] = ACTIONS(4969), + [anon_sym_BSLASHACRfull] = ACTIONS(4969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), + [anon_sym_BSLASHacs] = ACTIONS(4969), + [anon_sym_BSLASHAcs] = ACTIONS(4969), + [anon_sym_BSLASHacsp] = ACTIONS(4969), + [anon_sym_BSLASHAcsp] = ACTIONS(4969), + [anon_sym_BSLASHacl] = ACTIONS(4969), + [anon_sym_BSLASHAcl] = ACTIONS(4969), + [anon_sym_BSLASHaclp] = ACTIONS(4969), + [anon_sym_BSLASHAclp] = ACTIONS(4969), + [anon_sym_BSLASHacf] = ACTIONS(4969), + [anon_sym_BSLASHAcf] = ACTIONS(4969), + [anon_sym_BSLASHacfp] = ACTIONS(4969), + [anon_sym_BSLASHAcfp] = ACTIONS(4969), + [anon_sym_BSLASHac] = ACTIONS(4969), + [anon_sym_BSLASHAc] = ACTIONS(4969), + [anon_sym_BSLASHacp] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), + [anon_sym_BSLASHcolor] = ACTIONS(4969), + [anon_sym_BSLASHcolorbox] = ACTIONS(4969), + [anon_sym_BSLASHtextcolor] = ACTIONS(4969), + [anon_sym_BSLASHpagecolor] = ACTIONS(4969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), + [anon_sym_BSLASHtext] = ACTIONS(4969), + [anon_sym_BSLASHintertext] = ACTIONS(4969), + [anon_sym_shortintertext] = ACTIONS(4969), + }, + [1194] = { + [sym_command_name] = ACTIONS(5197), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASHbegin] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHiffalse] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_BSLASHpart] = ACTIONS(5197), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddpart] = ACTIONS(5197), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5195), + [anon_sym_BSLASHchapter] = ACTIONS(5197), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddchap] = ACTIONS(5197), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsection] = ACTIONS(5197), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHaddsec] = ACTIONS(5197), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubsection] = ACTIONS(5197), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5197), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5195), + [anon_sym_BSLASHparagraph] = ACTIONS(5197), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5195), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5197), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5195), + [anon_sym_BSLASHitem] = ACTIONS(5197), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5195), + [sym_word] = ACTIONS(5197), + [sym_placeholder] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_CARET] = ACTIONS(5197), + [anon_sym__] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_COLON] = ACTIONS(5197), + [anon_sym_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), + [anon_sym_DOLLAR] = ACTIONS(5197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), + [anon_sym_BSLASHbegin] = ACTIONS(5197), + [anon_sym_BSLASHend] = ACTIONS(5197), + [anon_sym_BSLASHusepackage] = ACTIONS(5197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), + [anon_sym_BSLASHinclude] = ACTIONS(5197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), + [anon_sym_BSLASHinput] = ACTIONS(5197), + [anon_sym_BSLASHsubfile] = ACTIONS(5197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), + [anon_sym_BSLASHbibliography] = ACTIONS(5197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), + [anon_sym_BSLASHincludesvg] = ACTIONS(5197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), + [anon_sym_BSLASHimport] = ACTIONS(5197), + [anon_sym_BSLASHsubimport] = ACTIONS(5197), + [anon_sym_BSLASHinputfrom] = ACTIONS(5197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), + [anon_sym_BSLASHincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHcaption] = ACTIONS(5197), + [anon_sym_BSLASHcite] = ACTIONS(5197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCite] = ACTIONS(5197), + [anon_sym_BSLASHnocite] = ACTIONS(5197), + [anon_sym_BSLASHcitet] = ACTIONS(5197), + [anon_sym_BSLASHcitep] = ACTIONS(5197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteauthor] = ACTIONS(5197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitetitle] = ACTIONS(5197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteyear] = ACTIONS(5197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitedate] = ACTIONS(5197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteurl] = ACTIONS(5197), + [anon_sym_BSLASHfullcite] = ACTIONS(5197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), + [anon_sym_BSLASHcitealt] = ACTIONS(5197), + [anon_sym_BSLASHcitealp] = ACTIONS(5197), + [anon_sym_BSLASHcitetext] = ACTIONS(5197), + [anon_sym_BSLASHparencite] = ACTIONS(5197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHParencite] = ACTIONS(5197), + [anon_sym_BSLASHfootcite] = ACTIONS(5197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), + [anon_sym_BSLASHtextcite] = ACTIONS(5197), + [anon_sym_BSLASHTextcite] = ACTIONS(5197), + [anon_sym_BSLASHsmartcite] = ACTIONS(5197), + [anon_sym_BSLASHSmartcite] = ACTIONS(5197), + [anon_sym_BSLASHsupercite] = ACTIONS(5197), + [anon_sym_BSLASHautocite] = ACTIONS(5197), + [anon_sym_BSLASHAutocite] = ACTIONS(5197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHvolcite] = ACTIONS(5197), + [anon_sym_BSLASHVolcite] = ACTIONS(5197), + [anon_sym_BSLASHpvolcite] = ACTIONS(5197), + [anon_sym_BSLASHPvolcite] = ACTIONS(5197), + [anon_sym_BSLASHfvolcite] = ACTIONS(5197), + [anon_sym_BSLASHftvolcite] = ACTIONS(5197), + [anon_sym_BSLASHsvolcite] = ACTIONS(5197), + [anon_sym_BSLASHSvolcite] = ACTIONS(5197), + [anon_sym_BSLASHtvolcite] = ACTIONS(5197), + [anon_sym_BSLASHTvolcite] = ACTIONS(5197), + [anon_sym_BSLASHavolcite] = ACTIONS(5197), + [anon_sym_BSLASHAvolcite] = ACTIONS(5197), + [anon_sym_BSLASHnotecite] = ACTIONS(5197), + [anon_sym_BSLASHNotecite] = ACTIONS(5197), + [anon_sym_BSLASHpnotecite] = ACTIONS(5197), + [anon_sym_BSLASHPnotecite] = ACTIONS(5197), + [anon_sym_BSLASHfnotecite] = ACTIONS(5197), + [anon_sym_BSLASHlabel] = ACTIONS(5197), + [anon_sym_BSLASHref] = ACTIONS(5197), + [anon_sym_BSLASHeqref] = ACTIONS(5197), + [anon_sym_BSLASHvref] = ACTIONS(5197), + [anon_sym_BSLASHVref] = ACTIONS(5197), + [anon_sym_BSLASHautoref] = ACTIONS(5197), + [anon_sym_BSLASHpageref] = ACTIONS(5197), + [anon_sym_BSLASHcref] = ACTIONS(5197), + [anon_sym_BSLASHCref] = ACTIONS(5197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnameCref] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHlabelcref] = ACTIONS(5197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCrefrange] = ACTIONS(5197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnewlabel] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), + [anon_sym_BSLASHdef] = ACTIONS(5197), + [anon_sym_BSLASHlet] = ACTIONS(5197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5197), + [anon_sym_BSLASHGls] = ACTIONS(5197), + [anon_sym_BSLASHGLS] = ACTIONS(5197), + [anon_sym_BSLASHglspl] = ACTIONS(5197), + [anon_sym_BSLASHGlspl] = ACTIONS(5197), + [anon_sym_BSLASHGLSpl] = ACTIONS(5197), + [anon_sym_BSLASHglsdisp] = ACTIONS(5197), + [anon_sym_BSLASHglslink] = ACTIONS(5197), + [anon_sym_BSLASHglstext] = ACTIONS(5197), + [anon_sym_BSLASHGlstext] = ACTIONS(5197), + [anon_sym_BSLASHGLStext] = ACTIONS(5197), + [anon_sym_BSLASHglsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), + [anon_sym_BSLASHglsplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSplural] = ACTIONS(5197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHglsname] = ACTIONS(5197), + [anon_sym_BSLASHGlsname] = ACTIONS(5197), + [anon_sym_BSLASHGLSname] = ACTIONS(5197), + [anon_sym_BSLASHglssymbol] = ACTIONS(5197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), + [anon_sym_BSLASHglsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), + [anon_sym_BSLASHglsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), + [anon_sym_BSLASHglsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), + [anon_sym_BSLASHglsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), + [anon_sym_BSLASHglsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), + [anon_sym_BSLASHnewacronym] = ACTIONS(5197), + [anon_sym_BSLASHacrshort] = ACTIONS(5197), + [anon_sym_BSLASHAcrshort] = ACTIONS(5197), + [anon_sym_BSLASHACRshort] = ACTIONS(5197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), + [anon_sym_BSLASHacrlong] = ACTIONS(5197), + [anon_sym_BSLASHAcrlong] = ACTIONS(5197), + [anon_sym_BSLASHACRlong] = ACTIONS(5197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), + [anon_sym_BSLASHacrfull] = ACTIONS(5197), + [anon_sym_BSLASHAcrfull] = ACTIONS(5197), + [anon_sym_BSLASHACRfull] = ACTIONS(5197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), + [anon_sym_BSLASHacs] = ACTIONS(5197), + [anon_sym_BSLASHAcs] = ACTIONS(5197), + [anon_sym_BSLASHacsp] = ACTIONS(5197), + [anon_sym_BSLASHAcsp] = ACTIONS(5197), + [anon_sym_BSLASHacl] = ACTIONS(5197), + [anon_sym_BSLASHAcl] = ACTIONS(5197), + [anon_sym_BSLASHaclp] = ACTIONS(5197), + [anon_sym_BSLASHAclp] = ACTIONS(5197), + [anon_sym_BSLASHacf] = ACTIONS(5197), + [anon_sym_BSLASHAcf] = ACTIONS(5197), + [anon_sym_BSLASHacfp] = ACTIONS(5197), + [anon_sym_BSLASHAcfp] = ACTIONS(5197), + [anon_sym_BSLASHac] = ACTIONS(5197), + [anon_sym_BSLASHAc] = ACTIONS(5197), + [anon_sym_BSLASHacp] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), + [anon_sym_BSLASHcolor] = ACTIONS(5197), + [anon_sym_BSLASHcolorbox] = ACTIONS(5197), + [anon_sym_BSLASHtextcolor] = ACTIONS(5197), + [anon_sym_BSLASHpagecolor] = ACTIONS(5197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + [anon_sym_BSLASHtext] = ACTIONS(5197), + [anon_sym_BSLASHintertext] = ACTIONS(5197), + [anon_sym_shortintertext] = ACTIONS(5197), }, - [1326] = { - [sym_command_name] = ACTIONS(5025), + [1195] = { + [sym_command_name] = ACTIONS(5201), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASHbegin] = ACTIONS(5025), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [anon_sym_BSLASHiffalse] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_BSLASHpart] = ACTIONS(5201), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddpart] = ACTIONS(5201), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5199), + [anon_sym_BSLASHchapter] = ACTIONS(5201), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddchap] = ACTIONS(5201), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsection] = ACTIONS(5201), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHaddsec] = ACTIONS(5201), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubsection] = ACTIONS(5201), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5201), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5199), + [anon_sym_BSLASHparagraph] = ACTIONS(5201), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5199), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5201), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5199), + [anon_sym_BSLASHitem] = ACTIONS(5201), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5199), + [sym_word] = ACTIONS(5201), + [sym_placeholder] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5201), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_CARET] = ACTIONS(5201), + [anon_sym__] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_SQUOTE] = ACTIONS(5201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), + [anon_sym_DOLLAR] = ACTIONS(5201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), + [anon_sym_BSLASHbegin] = ACTIONS(5201), + [anon_sym_BSLASHend] = ACTIONS(5201), + [anon_sym_BSLASHusepackage] = ACTIONS(5201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), + [anon_sym_BSLASHinclude] = ACTIONS(5201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), + [anon_sym_BSLASHinput] = ACTIONS(5201), + [anon_sym_BSLASHsubfile] = ACTIONS(5201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), + [anon_sym_BSLASHbibliography] = ACTIONS(5201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), + [anon_sym_BSLASHincludesvg] = ACTIONS(5201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), + [anon_sym_BSLASHimport] = ACTIONS(5201), + [anon_sym_BSLASHsubimport] = ACTIONS(5201), + [anon_sym_BSLASHinputfrom] = ACTIONS(5201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), + [anon_sym_BSLASHincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHcaption] = ACTIONS(5201), + [anon_sym_BSLASHcite] = ACTIONS(5201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCite] = ACTIONS(5201), + [anon_sym_BSLASHnocite] = ACTIONS(5201), + [anon_sym_BSLASHcitet] = ACTIONS(5201), + [anon_sym_BSLASHcitep] = ACTIONS(5201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteauthor] = ACTIONS(5201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitetitle] = ACTIONS(5201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteyear] = ACTIONS(5201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitedate] = ACTIONS(5201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteurl] = ACTIONS(5201), + [anon_sym_BSLASHfullcite] = ACTIONS(5201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), + [anon_sym_BSLASHcitealt] = ACTIONS(5201), + [anon_sym_BSLASHcitealp] = ACTIONS(5201), + [anon_sym_BSLASHcitetext] = ACTIONS(5201), + [anon_sym_BSLASHparencite] = ACTIONS(5201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHParencite] = ACTIONS(5201), + [anon_sym_BSLASHfootcite] = ACTIONS(5201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), + [anon_sym_BSLASHtextcite] = ACTIONS(5201), + [anon_sym_BSLASHTextcite] = ACTIONS(5201), + [anon_sym_BSLASHsmartcite] = ACTIONS(5201), + [anon_sym_BSLASHSmartcite] = ACTIONS(5201), + [anon_sym_BSLASHsupercite] = ACTIONS(5201), + [anon_sym_BSLASHautocite] = ACTIONS(5201), + [anon_sym_BSLASHAutocite] = ACTIONS(5201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHvolcite] = ACTIONS(5201), + [anon_sym_BSLASHVolcite] = ACTIONS(5201), + [anon_sym_BSLASHpvolcite] = ACTIONS(5201), + [anon_sym_BSLASHPvolcite] = ACTIONS(5201), + [anon_sym_BSLASHfvolcite] = ACTIONS(5201), + [anon_sym_BSLASHftvolcite] = ACTIONS(5201), + [anon_sym_BSLASHsvolcite] = ACTIONS(5201), + [anon_sym_BSLASHSvolcite] = ACTIONS(5201), + [anon_sym_BSLASHtvolcite] = ACTIONS(5201), + [anon_sym_BSLASHTvolcite] = ACTIONS(5201), + [anon_sym_BSLASHavolcite] = ACTIONS(5201), + [anon_sym_BSLASHAvolcite] = ACTIONS(5201), + [anon_sym_BSLASHnotecite] = ACTIONS(5201), + [anon_sym_BSLASHNotecite] = ACTIONS(5201), + [anon_sym_BSLASHpnotecite] = ACTIONS(5201), + [anon_sym_BSLASHPnotecite] = ACTIONS(5201), + [anon_sym_BSLASHfnotecite] = ACTIONS(5201), + [anon_sym_BSLASHlabel] = ACTIONS(5201), + [anon_sym_BSLASHref] = ACTIONS(5201), + [anon_sym_BSLASHeqref] = ACTIONS(5201), + [anon_sym_BSLASHvref] = ACTIONS(5201), + [anon_sym_BSLASHVref] = ACTIONS(5201), + [anon_sym_BSLASHautoref] = ACTIONS(5201), + [anon_sym_BSLASHpageref] = ACTIONS(5201), + [anon_sym_BSLASHcref] = ACTIONS(5201), + [anon_sym_BSLASHCref] = ACTIONS(5201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnameCref] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHlabelcref] = ACTIONS(5201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCrefrange] = ACTIONS(5201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnewlabel] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), + [anon_sym_BSLASHdef] = ACTIONS(5201), + [anon_sym_BSLASHlet] = ACTIONS(5201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), + [anon_sym_BSLASHgls] = ACTIONS(5201), + [anon_sym_BSLASHGls] = ACTIONS(5201), + [anon_sym_BSLASHGLS] = ACTIONS(5201), + [anon_sym_BSLASHglspl] = ACTIONS(5201), + [anon_sym_BSLASHGlspl] = ACTIONS(5201), + [anon_sym_BSLASHGLSpl] = ACTIONS(5201), + [anon_sym_BSLASHglsdisp] = ACTIONS(5201), + [anon_sym_BSLASHglslink] = ACTIONS(5201), + [anon_sym_BSLASHglstext] = ACTIONS(5201), + [anon_sym_BSLASHGlstext] = ACTIONS(5201), + [anon_sym_BSLASHGLStext] = ACTIONS(5201), + [anon_sym_BSLASHglsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), + [anon_sym_BSLASHglsplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSplural] = ACTIONS(5201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHglsname] = ACTIONS(5201), + [anon_sym_BSLASHGlsname] = ACTIONS(5201), + [anon_sym_BSLASHGLSname] = ACTIONS(5201), + [anon_sym_BSLASHglssymbol] = ACTIONS(5201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), + [anon_sym_BSLASHglsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), + [anon_sym_BSLASHglsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), + [anon_sym_BSLASHglsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), + [anon_sym_BSLASHglsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), + [anon_sym_BSLASHglsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5201), + [anon_sym_BSLASHAcrshort] = ACTIONS(5201), + [anon_sym_BSLASHACRshort] = ACTIONS(5201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), + [anon_sym_BSLASHacrlong] = ACTIONS(5201), + [anon_sym_BSLASHAcrlong] = ACTIONS(5201), + [anon_sym_BSLASHACRlong] = ACTIONS(5201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), + [anon_sym_BSLASHacrfull] = ACTIONS(5201), + [anon_sym_BSLASHAcrfull] = ACTIONS(5201), + [anon_sym_BSLASHACRfull] = ACTIONS(5201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), + [anon_sym_BSLASHacs] = ACTIONS(5201), + [anon_sym_BSLASHAcs] = ACTIONS(5201), + [anon_sym_BSLASHacsp] = ACTIONS(5201), + [anon_sym_BSLASHAcsp] = ACTIONS(5201), + [anon_sym_BSLASHacl] = ACTIONS(5201), + [anon_sym_BSLASHAcl] = ACTIONS(5201), + [anon_sym_BSLASHaclp] = ACTIONS(5201), + [anon_sym_BSLASHAclp] = ACTIONS(5201), + [anon_sym_BSLASHacf] = ACTIONS(5201), + [anon_sym_BSLASHAcf] = ACTIONS(5201), + [anon_sym_BSLASHacfp] = ACTIONS(5201), + [anon_sym_BSLASHAcfp] = ACTIONS(5201), + [anon_sym_BSLASHac] = ACTIONS(5201), + [anon_sym_BSLASHAc] = ACTIONS(5201), + [anon_sym_BSLASHacp] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), + [anon_sym_BSLASHcolor] = ACTIONS(5201), + [anon_sym_BSLASHcolorbox] = ACTIONS(5201), + [anon_sym_BSLASHtextcolor] = ACTIONS(5201), + [anon_sym_BSLASHpagecolor] = ACTIONS(5201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), + [anon_sym_BSLASHtext] = ACTIONS(5201), + [anon_sym_BSLASHintertext] = ACTIONS(5201), + [anon_sym_shortintertext] = ACTIONS(5201), }, - [1327] = { - [sym_command_name] = ACTIONS(5205), + [1196] = { + [sym_command_name] = ACTIONS(4983), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASHbegin] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), - }, - [1328] = { - [sym_command_name] = ACTIONS(5167), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5167), - [anon_sym_LPAREN] = ACTIONS(5165), - [anon_sym_RPAREN] = ACTIONS(5165), - [anon_sym_LBRACK] = ACTIONS(5165), - [anon_sym_RBRACK] = ACTIONS(5165), - [anon_sym_COMMA] = ACTIONS(5165), - [anon_sym_EQ] = ACTIONS(5165), - [anon_sym_LBRACE] = ACTIONS(5165), - [sym_word] = ACTIONS(5167), - [sym_placeholder] = ACTIONS(5165), - [anon_sym_PLUS] = ACTIONS(5167), - [anon_sym_DASH] = ACTIONS(5167), - [anon_sym_STAR] = ACTIONS(5167), - [anon_sym_SLASH] = ACTIONS(5167), - [anon_sym_CARET] = ACTIONS(5167), - [anon_sym__] = ACTIONS(5167), - [anon_sym_LT] = ACTIONS(5167), - [anon_sym_GT] = ACTIONS(5167), - [anon_sym_BANG] = ACTIONS(5167), - [anon_sym_PIPE] = ACTIONS(5167), - [anon_sym_COLON] = ACTIONS(5167), - [anon_sym_SQUOTE] = ACTIONS(5167), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5165), - [anon_sym_DOLLAR] = ACTIONS(5167), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5165), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5165), - [anon_sym_BSLASHbegin] = ACTIONS(5167), - [anon_sym_BSLASHusepackage] = ACTIONS(5167), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5167), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5167), - [anon_sym_BSLASHinclude] = ACTIONS(5167), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5167), - [anon_sym_BSLASHinput] = ACTIONS(5167), - [anon_sym_BSLASHsubfile] = ACTIONS(5167), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5167), - [anon_sym_BSLASHbibliography] = ACTIONS(5167), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5167), - [anon_sym_BSLASHincludesvg] = ACTIONS(5167), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5167), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5167), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5167), - [anon_sym_BSLASHimport] = ACTIONS(5167), - [anon_sym_BSLASHsubimport] = ACTIONS(5167), - [anon_sym_BSLASHinputfrom] = ACTIONS(5167), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5167), - [anon_sym_BSLASHincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5167), - [anon_sym_BSLASHcaption] = ACTIONS(5167), - [anon_sym_BSLASHcite] = ACTIONS(5167), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCite] = ACTIONS(5167), - [anon_sym_BSLASHnocite] = ACTIONS(5167), - [anon_sym_BSLASHcitet] = ACTIONS(5167), - [anon_sym_BSLASHcitep] = ACTIONS(5167), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteauthor] = ACTIONS(5167), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5167), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitetitle] = ACTIONS(5167), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteyear] = ACTIONS(5167), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5165), - [anon_sym_BSLASHcitedate] = ACTIONS(5167), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5165), - [anon_sym_BSLASHciteurl] = ACTIONS(5167), - [anon_sym_BSLASHfullcite] = ACTIONS(5167), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5167), - [anon_sym_BSLASHcitealt] = ACTIONS(5167), - [anon_sym_BSLASHcitealp] = ACTIONS(5167), - [anon_sym_BSLASHcitetext] = ACTIONS(5167), - [anon_sym_BSLASHparencite] = ACTIONS(5167), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHParencite] = ACTIONS(5167), - [anon_sym_BSLASHfootcite] = ACTIONS(5167), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5167), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5167), - [anon_sym_BSLASHtextcite] = ACTIONS(5167), - [anon_sym_BSLASHTextcite] = ACTIONS(5167), - [anon_sym_BSLASHsmartcite] = ACTIONS(5167), - [anon_sym_BSLASHSmartcite] = ACTIONS(5167), - [anon_sym_BSLASHsupercite] = ACTIONS(5167), - [anon_sym_BSLASHautocite] = ACTIONS(5167), - [anon_sym_BSLASHAutocite] = ACTIONS(5167), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5165), - [anon_sym_BSLASHvolcite] = ACTIONS(5167), - [anon_sym_BSLASHVolcite] = ACTIONS(5167), - [anon_sym_BSLASHpvolcite] = ACTIONS(5167), - [anon_sym_BSLASHPvolcite] = ACTIONS(5167), - [anon_sym_BSLASHfvolcite] = ACTIONS(5167), - [anon_sym_BSLASHftvolcite] = ACTIONS(5167), - [anon_sym_BSLASHsvolcite] = ACTIONS(5167), - [anon_sym_BSLASHSvolcite] = ACTIONS(5167), - [anon_sym_BSLASHtvolcite] = ACTIONS(5167), - [anon_sym_BSLASHTvolcite] = ACTIONS(5167), - [anon_sym_BSLASHavolcite] = ACTIONS(5167), - [anon_sym_BSLASHAvolcite] = ACTIONS(5167), - [anon_sym_BSLASHnotecite] = ACTIONS(5167), - [anon_sym_BSLASHNotecite] = ACTIONS(5167), - [anon_sym_BSLASHpnotecite] = ACTIONS(5167), - [anon_sym_BSLASHPnotecite] = ACTIONS(5167), - [anon_sym_BSLASHfnotecite] = ACTIONS(5167), - [anon_sym_BSLASHlabel] = ACTIONS(5167), - [anon_sym_BSLASHref] = ACTIONS(5167), - [anon_sym_BSLASHeqref] = ACTIONS(5167), - [anon_sym_BSLASHvref] = ACTIONS(5167), - [anon_sym_BSLASHVref] = ACTIONS(5167), - [anon_sym_BSLASHautoref] = ACTIONS(5167), - [anon_sym_BSLASHpageref] = ACTIONS(5167), - [anon_sym_BSLASHcref] = ACTIONS(5167), - [anon_sym_BSLASHCref] = ACTIONS(5167), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnameCref] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5167), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5167), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5167), - [anon_sym_BSLASHlabelcref] = ACTIONS(5167), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange] = ACTIONS(5167), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHCrefrange] = ACTIONS(5167), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5165), - [anon_sym_BSLASHnewlabel] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand] = ACTIONS(5167), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5167), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5167), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5165), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5167), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5165), - [anon_sym_BSLASHdef] = ACTIONS(5167), - [anon_sym_BSLASHlet] = ACTIONS(5167), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5167), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5167), - [anon_sym_BSLASHgls] = ACTIONS(5167), - [anon_sym_BSLASHGls] = ACTIONS(5167), - [anon_sym_BSLASHGLS] = ACTIONS(5167), - [anon_sym_BSLASHglspl] = ACTIONS(5167), - [anon_sym_BSLASHGlspl] = ACTIONS(5167), - [anon_sym_BSLASHGLSpl] = ACTIONS(5167), - [anon_sym_BSLASHglsdisp] = ACTIONS(5167), - [anon_sym_BSLASHglslink] = ACTIONS(5167), - [anon_sym_BSLASHglstext] = ACTIONS(5167), - [anon_sym_BSLASHGlstext] = ACTIONS(5167), - [anon_sym_BSLASHGLStext] = ACTIONS(5167), - [anon_sym_BSLASHglsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5167), - [anon_sym_BSLASHglsplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSplural] = ACTIONS(5167), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5167), - [anon_sym_BSLASHglsname] = ACTIONS(5167), - [anon_sym_BSLASHGlsname] = ACTIONS(5167), - [anon_sym_BSLASHGLSname] = ACTIONS(5167), - [anon_sym_BSLASHglssymbol] = ACTIONS(5167), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5167), - [anon_sym_BSLASHglsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5167), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5167), - [anon_sym_BSLASHglsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5167), - [anon_sym_BSLASHglsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5167), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5167), - [anon_sym_BSLASHglsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5167), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5167), - [anon_sym_BSLASHglsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5167), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5167), - [anon_sym_BSLASHnewacronym] = ACTIONS(5167), - [anon_sym_BSLASHacrshort] = ACTIONS(5167), - [anon_sym_BSLASHAcrshort] = ACTIONS(5167), - [anon_sym_BSLASHACRshort] = ACTIONS(5167), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5167), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5167), - [anon_sym_BSLASHacrlong] = ACTIONS(5167), - [anon_sym_BSLASHAcrlong] = ACTIONS(5167), - [anon_sym_BSLASHACRlong] = ACTIONS(5167), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5167), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5167), - [anon_sym_BSLASHacrfull] = ACTIONS(5167), - [anon_sym_BSLASHAcrfull] = ACTIONS(5167), - [anon_sym_BSLASHACRfull] = ACTIONS(5167), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5167), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5167), - [anon_sym_BSLASHacs] = ACTIONS(5167), - [anon_sym_BSLASHAcs] = ACTIONS(5167), - [anon_sym_BSLASHacsp] = ACTIONS(5167), - [anon_sym_BSLASHAcsp] = ACTIONS(5167), - [anon_sym_BSLASHacl] = ACTIONS(5167), - [anon_sym_BSLASHAcl] = ACTIONS(5167), - [anon_sym_BSLASHaclp] = ACTIONS(5167), - [anon_sym_BSLASHAclp] = ACTIONS(5167), - [anon_sym_BSLASHacf] = ACTIONS(5167), - [anon_sym_BSLASHAcf] = ACTIONS(5167), - [anon_sym_BSLASHacfp] = ACTIONS(5167), - [anon_sym_BSLASHAcfp] = ACTIONS(5167), - [anon_sym_BSLASHac] = ACTIONS(5167), - [anon_sym_BSLASHAc] = ACTIONS(5167), - [anon_sym_BSLASHacp] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5167), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5167), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5167), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5167), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5167), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5167), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5167), - [anon_sym_BSLASHcolor] = ACTIONS(5167), - [anon_sym_BSLASHcolorbox] = ACTIONS(5167), - [anon_sym_BSLASHtextcolor] = ACTIONS(5167), - [anon_sym_BSLASHpagecolor] = ACTIONS(5167), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5167), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5167), - }, - [1329] = { - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_EQ] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASHbegin] = ACTIONS(131), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [anon_sym_BSLASHiffalse] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_RBRACK] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4981), + [anon_sym_BSLASHpart] = ACTIONS(4983), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddpart] = ACTIONS(4983), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4981), + [anon_sym_BSLASHchapter] = ACTIONS(4983), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddchap] = ACTIONS(4983), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsection] = ACTIONS(4983), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHaddsec] = ACTIONS(4983), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubsection] = ACTIONS(4983), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4983), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4981), + [anon_sym_BSLASHparagraph] = ACTIONS(4983), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4981), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4983), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4981), + [anon_sym_BSLASHitem] = ACTIONS(4983), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4981), + [sym_word] = ACTIONS(4983), + [sym_placeholder] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym__] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_SQUOTE] = ACTIONS(4983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), + [anon_sym_DOLLAR] = ACTIONS(4983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), + [anon_sym_BSLASHbegin] = ACTIONS(4983), + [anon_sym_BSLASHend] = ACTIONS(4983), + [anon_sym_BSLASHusepackage] = ACTIONS(4983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), + [anon_sym_BSLASHinclude] = ACTIONS(4983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), + [anon_sym_BSLASHinput] = ACTIONS(4983), + [anon_sym_BSLASHsubfile] = ACTIONS(4983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), + [anon_sym_BSLASHbibliography] = ACTIONS(4983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), + [anon_sym_BSLASHincludesvg] = ACTIONS(4983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), + [anon_sym_BSLASHimport] = ACTIONS(4983), + [anon_sym_BSLASHsubimport] = ACTIONS(4983), + [anon_sym_BSLASHinputfrom] = ACTIONS(4983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), + [anon_sym_BSLASHincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHcaption] = ACTIONS(4983), + [anon_sym_BSLASHcite] = ACTIONS(4983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCite] = ACTIONS(4983), + [anon_sym_BSLASHnocite] = ACTIONS(4983), + [anon_sym_BSLASHcitet] = ACTIONS(4983), + [anon_sym_BSLASHcitep] = ACTIONS(4983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteauthor] = ACTIONS(4983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitetitle] = ACTIONS(4983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteyear] = ACTIONS(4983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitedate] = ACTIONS(4983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteurl] = ACTIONS(4983), + [anon_sym_BSLASHfullcite] = ACTIONS(4983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), + [anon_sym_BSLASHcitealt] = ACTIONS(4983), + [anon_sym_BSLASHcitealp] = ACTIONS(4983), + [anon_sym_BSLASHcitetext] = ACTIONS(4983), + [anon_sym_BSLASHparencite] = ACTIONS(4983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHParencite] = ACTIONS(4983), + [anon_sym_BSLASHfootcite] = ACTIONS(4983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), + [anon_sym_BSLASHtextcite] = ACTIONS(4983), + [anon_sym_BSLASHTextcite] = ACTIONS(4983), + [anon_sym_BSLASHsmartcite] = ACTIONS(4983), + [anon_sym_BSLASHSmartcite] = ACTIONS(4983), + [anon_sym_BSLASHsupercite] = ACTIONS(4983), + [anon_sym_BSLASHautocite] = ACTIONS(4983), + [anon_sym_BSLASHAutocite] = ACTIONS(4983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHvolcite] = ACTIONS(4983), + [anon_sym_BSLASHVolcite] = ACTIONS(4983), + [anon_sym_BSLASHpvolcite] = ACTIONS(4983), + [anon_sym_BSLASHPvolcite] = ACTIONS(4983), + [anon_sym_BSLASHfvolcite] = ACTIONS(4983), + [anon_sym_BSLASHftvolcite] = ACTIONS(4983), + [anon_sym_BSLASHsvolcite] = ACTIONS(4983), + [anon_sym_BSLASHSvolcite] = ACTIONS(4983), + [anon_sym_BSLASHtvolcite] = ACTIONS(4983), + [anon_sym_BSLASHTvolcite] = ACTIONS(4983), + [anon_sym_BSLASHavolcite] = ACTIONS(4983), + [anon_sym_BSLASHAvolcite] = ACTIONS(4983), + [anon_sym_BSLASHnotecite] = ACTIONS(4983), + [anon_sym_BSLASHNotecite] = ACTIONS(4983), + [anon_sym_BSLASHpnotecite] = ACTIONS(4983), + [anon_sym_BSLASHPnotecite] = ACTIONS(4983), + [anon_sym_BSLASHfnotecite] = ACTIONS(4983), + [anon_sym_BSLASHlabel] = ACTIONS(4983), + [anon_sym_BSLASHref] = ACTIONS(4983), + [anon_sym_BSLASHeqref] = ACTIONS(4983), + [anon_sym_BSLASHvref] = ACTIONS(4983), + [anon_sym_BSLASHVref] = ACTIONS(4983), + [anon_sym_BSLASHautoref] = ACTIONS(4983), + [anon_sym_BSLASHpageref] = ACTIONS(4983), + [anon_sym_BSLASHcref] = ACTIONS(4983), + [anon_sym_BSLASHCref] = ACTIONS(4983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnameCref] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHlabelcref] = ACTIONS(4983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCrefrange] = ACTIONS(4983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnewlabel] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), + [anon_sym_BSLASHdef] = ACTIONS(4983), + [anon_sym_BSLASHlet] = ACTIONS(4983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), + [anon_sym_BSLASHgls] = ACTIONS(4983), + [anon_sym_BSLASHGls] = ACTIONS(4983), + [anon_sym_BSLASHGLS] = ACTIONS(4983), + [anon_sym_BSLASHglspl] = ACTIONS(4983), + [anon_sym_BSLASHGlspl] = ACTIONS(4983), + [anon_sym_BSLASHGLSpl] = ACTIONS(4983), + [anon_sym_BSLASHglsdisp] = ACTIONS(4983), + [anon_sym_BSLASHglslink] = ACTIONS(4983), + [anon_sym_BSLASHglstext] = ACTIONS(4983), + [anon_sym_BSLASHGlstext] = ACTIONS(4983), + [anon_sym_BSLASHGLStext] = ACTIONS(4983), + [anon_sym_BSLASHglsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), + [anon_sym_BSLASHglsplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSplural] = ACTIONS(4983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHglsname] = ACTIONS(4983), + [anon_sym_BSLASHGlsname] = ACTIONS(4983), + [anon_sym_BSLASHGLSname] = ACTIONS(4983), + [anon_sym_BSLASHglssymbol] = ACTIONS(4983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), + [anon_sym_BSLASHglsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), + [anon_sym_BSLASHglsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), + [anon_sym_BSLASHglsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), + [anon_sym_BSLASHglsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), + [anon_sym_BSLASHglsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), + [anon_sym_BSLASHnewacronym] = ACTIONS(4983), + [anon_sym_BSLASHacrshort] = ACTIONS(4983), + [anon_sym_BSLASHAcrshort] = ACTIONS(4983), + [anon_sym_BSLASHACRshort] = ACTIONS(4983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), + [anon_sym_BSLASHacrlong] = ACTIONS(4983), + [anon_sym_BSLASHAcrlong] = ACTIONS(4983), + [anon_sym_BSLASHACRlong] = ACTIONS(4983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), + [anon_sym_BSLASHacrfull] = ACTIONS(4983), + [anon_sym_BSLASHAcrfull] = ACTIONS(4983), + [anon_sym_BSLASHACRfull] = ACTIONS(4983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), + [anon_sym_BSLASHacs] = ACTIONS(4983), + [anon_sym_BSLASHAcs] = ACTIONS(4983), + [anon_sym_BSLASHacsp] = ACTIONS(4983), + [anon_sym_BSLASHAcsp] = ACTIONS(4983), + [anon_sym_BSLASHacl] = ACTIONS(4983), + [anon_sym_BSLASHAcl] = ACTIONS(4983), + [anon_sym_BSLASHaclp] = ACTIONS(4983), + [anon_sym_BSLASHAclp] = ACTIONS(4983), + [anon_sym_BSLASHacf] = ACTIONS(4983), + [anon_sym_BSLASHAcf] = ACTIONS(4983), + [anon_sym_BSLASHacfp] = ACTIONS(4983), + [anon_sym_BSLASHAcfp] = ACTIONS(4983), + [anon_sym_BSLASHac] = ACTIONS(4983), + [anon_sym_BSLASHAc] = ACTIONS(4983), + [anon_sym_BSLASHacp] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), + [anon_sym_BSLASHcolor] = ACTIONS(4983), + [anon_sym_BSLASHcolorbox] = ACTIONS(4983), + [anon_sym_BSLASHtextcolor] = ACTIONS(4983), + [anon_sym_BSLASHpagecolor] = ACTIONS(4983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHtext] = ACTIONS(4983), + [anon_sym_BSLASHintertext] = ACTIONS(4983), + [anon_sym_shortintertext] = ACTIONS(4983), }, - [1330] = { - [sym_command_name] = ACTIONS(5033), + [1197] = { + [sym_command_name] = ACTIONS(4987), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_EQ] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASHbegin] = ACTIONS(5033), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [anon_sym_BSLASHiffalse] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4985), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(4985), + [anon_sym_RBRACK] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_BSLASHpart] = ACTIONS(4987), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddpart] = ACTIONS(4987), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4985), + [anon_sym_BSLASHchapter] = ACTIONS(4987), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddchap] = ACTIONS(4987), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsection] = ACTIONS(4987), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHaddsec] = ACTIONS(4987), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubsection] = ACTIONS(4987), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4987), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4985), + [anon_sym_BSLASHparagraph] = ACTIONS(4987), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4985), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4987), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4985), + [anon_sym_BSLASHitem] = ACTIONS(4987), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4985), + [sym_word] = ACTIONS(4987), + [sym_placeholder] = ACTIONS(4985), + [anon_sym_PLUS] = ACTIONS(4987), + [anon_sym_DASH] = ACTIONS(4987), + [anon_sym_STAR] = ACTIONS(4987), + [anon_sym_SLASH] = ACTIONS(4987), + [anon_sym_CARET] = ACTIONS(4987), + [anon_sym__] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym_GT] = ACTIONS(4987), + [anon_sym_BANG] = ACTIONS(4987), + [anon_sym_PIPE] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_SQUOTE] = ACTIONS(4987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(4987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), + [anon_sym_BSLASHbegin] = ACTIONS(4987), + [anon_sym_BSLASHend] = ACTIONS(4987), + [anon_sym_BSLASHusepackage] = ACTIONS(4987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), + [anon_sym_BSLASHinclude] = ACTIONS(4987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), + [anon_sym_BSLASHinput] = ACTIONS(4987), + [anon_sym_BSLASHsubfile] = ACTIONS(4987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), + [anon_sym_BSLASHbibliography] = ACTIONS(4987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), + [anon_sym_BSLASHincludesvg] = ACTIONS(4987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), + [anon_sym_BSLASHimport] = ACTIONS(4987), + [anon_sym_BSLASHsubimport] = ACTIONS(4987), + [anon_sym_BSLASHinputfrom] = ACTIONS(4987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), + [anon_sym_BSLASHincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHcaption] = ACTIONS(4987), + [anon_sym_BSLASHcite] = ACTIONS(4987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCite] = ACTIONS(4987), + [anon_sym_BSLASHnocite] = ACTIONS(4987), + [anon_sym_BSLASHcitet] = ACTIONS(4987), + [anon_sym_BSLASHcitep] = ACTIONS(4987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteauthor] = ACTIONS(4987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitetitle] = ACTIONS(4987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteyear] = ACTIONS(4987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitedate] = ACTIONS(4987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteurl] = ACTIONS(4987), + [anon_sym_BSLASHfullcite] = ACTIONS(4987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), + [anon_sym_BSLASHcitealt] = ACTIONS(4987), + [anon_sym_BSLASHcitealp] = ACTIONS(4987), + [anon_sym_BSLASHcitetext] = ACTIONS(4987), + [anon_sym_BSLASHparencite] = ACTIONS(4987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHParencite] = ACTIONS(4987), + [anon_sym_BSLASHfootcite] = ACTIONS(4987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), + [anon_sym_BSLASHtextcite] = ACTIONS(4987), + [anon_sym_BSLASHTextcite] = ACTIONS(4987), + [anon_sym_BSLASHsmartcite] = ACTIONS(4987), + [anon_sym_BSLASHSmartcite] = ACTIONS(4987), + [anon_sym_BSLASHsupercite] = ACTIONS(4987), + [anon_sym_BSLASHautocite] = ACTIONS(4987), + [anon_sym_BSLASHAutocite] = ACTIONS(4987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHvolcite] = ACTIONS(4987), + [anon_sym_BSLASHVolcite] = ACTIONS(4987), + [anon_sym_BSLASHpvolcite] = ACTIONS(4987), + [anon_sym_BSLASHPvolcite] = ACTIONS(4987), + [anon_sym_BSLASHfvolcite] = ACTIONS(4987), + [anon_sym_BSLASHftvolcite] = ACTIONS(4987), + [anon_sym_BSLASHsvolcite] = ACTIONS(4987), + [anon_sym_BSLASHSvolcite] = ACTIONS(4987), + [anon_sym_BSLASHtvolcite] = ACTIONS(4987), + [anon_sym_BSLASHTvolcite] = ACTIONS(4987), + [anon_sym_BSLASHavolcite] = ACTIONS(4987), + [anon_sym_BSLASHAvolcite] = ACTIONS(4987), + [anon_sym_BSLASHnotecite] = ACTIONS(4987), + [anon_sym_BSLASHNotecite] = ACTIONS(4987), + [anon_sym_BSLASHpnotecite] = ACTIONS(4987), + [anon_sym_BSLASHPnotecite] = ACTIONS(4987), + [anon_sym_BSLASHfnotecite] = ACTIONS(4987), + [anon_sym_BSLASHlabel] = ACTIONS(4987), + [anon_sym_BSLASHref] = ACTIONS(4987), + [anon_sym_BSLASHeqref] = ACTIONS(4987), + [anon_sym_BSLASHvref] = ACTIONS(4987), + [anon_sym_BSLASHVref] = ACTIONS(4987), + [anon_sym_BSLASHautoref] = ACTIONS(4987), + [anon_sym_BSLASHpageref] = ACTIONS(4987), + [anon_sym_BSLASHcref] = ACTIONS(4987), + [anon_sym_BSLASHCref] = ACTIONS(4987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnameCref] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHlabelcref] = ACTIONS(4987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCrefrange] = ACTIONS(4987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnewlabel] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), + [anon_sym_BSLASHdef] = ACTIONS(4987), + [anon_sym_BSLASHlet] = ACTIONS(4987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), + [anon_sym_BSLASHgls] = ACTIONS(4987), + [anon_sym_BSLASHGls] = ACTIONS(4987), + [anon_sym_BSLASHGLS] = ACTIONS(4987), + [anon_sym_BSLASHglspl] = ACTIONS(4987), + [anon_sym_BSLASHGlspl] = ACTIONS(4987), + [anon_sym_BSLASHGLSpl] = ACTIONS(4987), + [anon_sym_BSLASHglsdisp] = ACTIONS(4987), + [anon_sym_BSLASHglslink] = ACTIONS(4987), + [anon_sym_BSLASHglstext] = ACTIONS(4987), + [anon_sym_BSLASHGlstext] = ACTIONS(4987), + [anon_sym_BSLASHGLStext] = ACTIONS(4987), + [anon_sym_BSLASHglsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), + [anon_sym_BSLASHglsplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSplural] = ACTIONS(4987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHglsname] = ACTIONS(4987), + [anon_sym_BSLASHGlsname] = ACTIONS(4987), + [anon_sym_BSLASHGLSname] = ACTIONS(4987), + [anon_sym_BSLASHglssymbol] = ACTIONS(4987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), + [anon_sym_BSLASHglsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), + [anon_sym_BSLASHglsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), + [anon_sym_BSLASHglsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), + [anon_sym_BSLASHglsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), + [anon_sym_BSLASHglsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), + [anon_sym_BSLASHnewacronym] = ACTIONS(4987), + [anon_sym_BSLASHacrshort] = ACTIONS(4987), + [anon_sym_BSLASHAcrshort] = ACTIONS(4987), + [anon_sym_BSLASHACRshort] = ACTIONS(4987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), + [anon_sym_BSLASHacrlong] = ACTIONS(4987), + [anon_sym_BSLASHAcrlong] = ACTIONS(4987), + [anon_sym_BSLASHACRlong] = ACTIONS(4987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), + [anon_sym_BSLASHacrfull] = ACTIONS(4987), + [anon_sym_BSLASHAcrfull] = ACTIONS(4987), + [anon_sym_BSLASHACRfull] = ACTIONS(4987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), + [anon_sym_BSLASHacs] = ACTIONS(4987), + [anon_sym_BSLASHAcs] = ACTIONS(4987), + [anon_sym_BSLASHacsp] = ACTIONS(4987), + [anon_sym_BSLASHAcsp] = ACTIONS(4987), + [anon_sym_BSLASHacl] = ACTIONS(4987), + [anon_sym_BSLASHAcl] = ACTIONS(4987), + [anon_sym_BSLASHaclp] = ACTIONS(4987), + [anon_sym_BSLASHAclp] = ACTIONS(4987), + [anon_sym_BSLASHacf] = ACTIONS(4987), + [anon_sym_BSLASHAcf] = ACTIONS(4987), + [anon_sym_BSLASHacfp] = ACTIONS(4987), + [anon_sym_BSLASHAcfp] = ACTIONS(4987), + [anon_sym_BSLASHac] = ACTIONS(4987), + [anon_sym_BSLASHAc] = ACTIONS(4987), + [anon_sym_BSLASHacp] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), + [anon_sym_BSLASHcolor] = ACTIONS(4987), + [anon_sym_BSLASHcolorbox] = ACTIONS(4987), + [anon_sym_BSLASHtextcolor] = ACTIONS(4987), + [anon_sym_BSLASHpagecolor] = ACTIONS(4987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), + [anon_sym_BSLASHtext] = ACTIONS(4987), + [anon_sym_BSLASHintertext] = ACTIONS(4987), + [anon_sym_shortintertext] = ACTIONS(4987), }, - [1331] = { + [1198] = { + [sym_command_name] = ACTIONS(4991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4989), + [anon_sym_RPAREN] = ACTIONS(4989), + [anon_sym_LBRACK] = ACTIONS(4989), + [anon_sym_RBRACK] = ACTIONS(4989), + [anon_sym_COMMA] = ACTIONS(4989), + [anon_sym_EQ] = ACTIONS(4989), + [anon_sym_BSLASHpart] = ACTIONS(4991), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddpart] = ACTIONS(4991), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4989), + [anon_sym_BSLASHchapter] = ACTIONS(4991), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddchap] = ACTIONS(4991), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsection] = ACTIONS(4991), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHaddsec] = ACTIONS(4991), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubsection] = ACTIONS(4991), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4991), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4989), + [anon_sym_BSLASHparagraph] = ACTIONS(4991), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4989), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4991), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4989), + [anon_sym_BSLASHitem] = ACTIONS(4991), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(4989), + [sym_word] = ACTIONS(4991), + [sym_placeholder] = ACTIONS(4989), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym__] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_BANG] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_SQUOTE] = ACTIONS(4991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), + [anon_sym_DOLLAR] = ACTIONS(4991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), + [anon_sym_BSLASHbegin] = ACTIONS(4991), + [anon_sym_BSLASHend] = ACTIONS(4991), + [anon_sym_BSLASHusepackage] = ACTIONS(4991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), + [anon_sym_BSLASHinclude] = ACTIONS(4991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), + [anon_sym_BSLASHinput] = ACTIONS(4991), + [anon_sym_BSLASHsubfile] = ACTIONS(4991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), + [anon_sym_BSLASHbibliography] = ACTIONS(4991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), + [anon_sym_BSLASHincludesvg] = ACTIONS(4991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), + [anon_sym_BSLASHimport] = ACTIONS(4991), + [anon_sym_BSLASHsubimport] = ACTIONS(4991), + [anon_sym_BSLASHinputfrom] = ACTIONS(4991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), + [anon_sym_BSLASHincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHcaption] = ACTIONS(4991), + [anon_sym_BSLASHcite] = ACTIONS(4991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCite] = ACTIONS(4991), + [anon_sym_BSLASHnocite] = ACTIONS(4991), + [anon_sym_BSLASHcitet] = ACTIONS(4991), + [anon_sym_BSLASHcitep] = ACTIONS(4991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteauthor] = ACTIONS(4991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitetitle] = ACTIONS(4991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteyear] = ACTIONS(4991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitedate] = ACTIONS(4991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteurl] = ACTIONS(4991), + [anon_sym_BSLASHfullcite] = ACTIONS(4991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), + [anon_sym_BSLASHcitealt] = ACTIONS(4991), + [anon_sym_BSLASHcitealp] = ACTIONS(4991), + [anon_sym_BSLASHcitetext] = ACTIONS(4991), + [anon_sym_BSLASHparencite] = ACTIONS(4991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHParencite] = ACTIONS(4991), + [anon_sym_BSLASHfootcite] = ACTIONS(4991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), + [anon_sym_BSLASHtextcite] = ACTIONS(4991), + [anon_sym_BSLASHTextcite] = ACTIONS(4991), + [anon_sym_BSLASHsmartcite] = ACTIONS(4991), + [anon_sym_BSLASHSmartcite] = ACTIONS(4991), + [anon_sym_BSLASHsupercite] = ACTIONS(4991), + [anon_sym_BSLASHautocite] = ACTIONS(4991), + [anon_sym_BSLASHAutocite] = ACTIONS(4991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHvolcite] = ACTIONS(4991), + [anon_sym_BSLASHVolcite] = ACTIONS(4991), + [anon_sym_BSLASHpvolcite] = ACTIONS(4991), + [anon_sym_BSLASHPvolcite] = ACTIONS(4991), + [anon_sym_BSLASHfvolcite] = ACTIONS(4991), + [anon_sym_BSLASHftvolcite] = ACTIONS(4991), + [anon_sym_BSLASHsvolcite] = ACTIONS(4991), + [anon_sym_BSLASHSvolcite] = ACTIONS(4991), + [anon_sym_BSLASHtvolcite] = ACTIONS(4991), + [anon_sym_BSLASHTvolcite] = ACTIONS(4991), + [anon_sym_BSLASHavolcite] = ACTIONS(4991), + [anon_sym_BSLASHAvolcite] = ACTIONS(4991), + [anon_sym_BSLASHnotecite] = ACTIONS(4991), + [anon_sym_BSLASHNotecite] = ACTIONS(4991), + [anon_sym_BSLASHpnotecite] = ACTIONS(4991), + [anon_sym_BSLASHPnotecite] = ACTIONS(4991), + [anon_sym_BSLASHfnotecite] = ACTIONS(4991), + [anon_sym_BSLASHlabel] = ACTIONS(4991), + [anon_sym_BSLASHref] = ACTIONS(4991), + [anon_sym_BSLASHeqref] = ACTIONS(4991), + [anon_sym_BSLASHvref] = ACTIONS(4991), + [anon_sym_BSLASHVref] = ACTIONS(4991), + [anon_sym_BSLASHautoref] = ACTIONS(4991), + [anon_sym_BSLASHpageref] = ACTIONS(4991), + [anon_sym_BSLASHcref] = ACTIONS(4991), + [anon_sym_BSLASHCref] = ACTIONS(4991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnameCref] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHlabelcref] = ACTIONS(4991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCrefrange] = ACTIONS(4991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnewlabel] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), + [anon_sym_BSLASHdef] = ACTIONS(4991), + [anon_sym_BSLASHlet] = ACTIONS(4991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), + [anon_sym_BSLASHgls] = ACTIONS(4991), + [anon_sym_BSLASHGls] = ACTIONS(4991), + [anon_sym_BSLASHGLS] = ACTIONS(4991), + [anon_sym_BSLASHglspl] = ACTIONS(4991), + [anon_sym_BSLASHGlspl] = ACTIONS(4991), + [anon_sym_BSLASHGLSpl] = ACTIONS(4991), + [anon_sym_BSLASHglsdisp] = ACTIONS(4991), + [anon_sym_BSLASHglslink] = ACTIONS(4991), + [anon_sym_BSLASHglstext] = ACTIONS(4991), + [anon_sym_BSLASHGlstext] = ACTIONS(4991), + [anon_sym_BSLASHGLStext] = ACTIONS(4991), + [anon_sym_BSLASHglsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), + [anon_sym_BSLASHglsplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSplural] = ACTIONS(4991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHglsname] = ACTIONS(4991), + [anon_sym_BSLASHGlsname] = ACTIONS(4991), + [anon_sym_BSLASHGLSname] = ACTIONS(4991), + [anon_sym_BSLASHglssymbol] = ACTIONS(4991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), + [anon_sym_BSLASHglsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), + [anon_sym_BSLASHglsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), + [anon_sym_BSLASHglsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), + [anon_sym_BSLASHglsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), + [anon_sym_BSLASHglsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), + [anon_sym_BSLASHnewacronym] = ACTIONS(4991), + [anon_sym_BSLASHacrshort] = ACTIONS(4991), + [anon_sym_BSLASHAcrshort] = ACTIONS(4991), + [anon_sym_BSLASHACRshort] = ACTIONS(4991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), + [anon_sym_BSLASHacrlong] = ACTIONS(4991), + [anon_sym_BSLASHAcrlong] = ACTIONS(4991), + [anon_sym_BSLASHACRlong] = ACTIONS(4991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), + [anon_sym_BSLASHacrfull] = ACTIONS(4991), + [anon_sym_BSLASHAcrfull] = ACTIONS(4991), + [anon_sym_BSLASHACRfull] = ACTIONS(4991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), + [anon_sym_BSLASHacs] = ACTIONS(4991), + [anon_sym_BSLASHAcs] = ACTIONS(4991), + [anon_sym_BSLASHacsp] = ACTIONS(4991), + [anon_sym_BSLASHAcsp] = ACTIONS(4991), + [anon_sym_BSLASHacl] = ACTIONS(4991), + [anon_sym_BSLASHAcl] = ACTIONS(4991), + [anon_sym_BSLASHaclp] = ACTIONS(4991), + [anon_sym_BSLASHAclp] = ACTIONS(4991), + [anon_sym_BSLASHacf] = ACTIONS(4991), + [anon_sym_BSLASHAcf] = ACTIONS(4991), + [anon_sym_BSLASHacfp] = ACTIONS(4991), + [anon_sym_BSLASHAcfp] = ACTIONS(4991), + [anon_sym_BSLASHac] = ACTIONS(4991), + [anon_sym_BSLASHAc] = ACTIONS(4991), + [anon_sym_BSLASHacp] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), + [anon_sym_BSLASHcolor] = ACTIONS(4991), + [anon_sym_BSLASHcolorbox] = ACTIONS(4991), + [anon_sym_BSLASHtextcolor] = ACTIONS(4991), + [anon_sym_BSLASHpagecolor] = ACTIONS(4991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHtext] = ACTIONS(4991), + [anon_sym_BSLASHintertext] = ACTIONS(4991), + [anon_sym_shortintertext] = ACTIONS(4991), + }, + [1199] = { [sym_command_name] = ACTIONS(4995), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -395142,6 +362262,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(4993), [anon_sym_COMMA] = ACTIONS(4993), [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_BSLASHpart] = ACTIONS(4995), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4993), + [anon_sym_BSLASHaddpart] = ACTIONS(4995), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4993), + [anon_sym_BSLASHchapter] = ACTIONS(4995), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4993), + [anon_sym_BSLASHaddchap] = ACTIONS(4995), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsection] = ACTIONS(4995), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4993), + [anon_sym_BSLASHaddsec] = ACTIONS(4995), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsubsection] = ACTIONS(4995), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4995), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4993), + [anon_sym_BSLASHparagraph] = ACTIONS(4995), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4993), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4995), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4993), + [anon_sym_BSLASHitem] = ACTIONS(4995), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4993), [anon_sym_LBRACE] = ACTIONS(4993), [sym_word] = ACTIONS(4995), [sym_placeholder] = ACTIONS(4993), @@ -395163,6 +362305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), [anon_sym_BSLASHbegin] = ACTIONS(4995), + [anon_sym_BSLASHend] = ACTIONS(4995), [anon_sym_BSLASHusepackage] = ACTIONS(4995), [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), @@ -395376,8 +362519,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(4995), [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), + [anon_sym_BSLASHtext] = ACTIONS(4995), + [anon_sym_BSLASHintertext] = ACTIONS(4995), + [anon_sym_shortintertext] = ACTIONS(4995), + }, + [1200] = { + [sym_command_name] = ACTIONS(4999), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_RBRACK] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4997), + [anon_sym_BSLASHpart] = ACTIONS(4999), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddpart] = ACTIONS(4999), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4997), + [anon_sym_BSLASHchapter] = ACTIONS(4999), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddchap] = ACTIONS(4999), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsection] = ACTIONS(4999), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHaddsec] = ACTIONS(4999), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubsection] = ACTIONS(4999), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4999), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4997), + [anon_sym_BSLASHparagraph] = ACTIONS(4999), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4997), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4999), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4997), + [anon_sym_BSLASHitem] = ACTIONS(4999), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4997), + [sym_word] = ACTIONS(4999), + [sym_placeholder] = ACTIONS(4997), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym__] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_BANG] = ACTIONS(4999), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_SQUOTE] = ACTIONS(4999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), + [anon_sym_DOLLAR] = ACTIONS(4999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), + [anon_sym_BSLASHbegin] = ACTIONS(4999), + [anon_sym_BSLASHend] = ACTIONS(4999), + [anon_sym_BSLASHusepackage] = ACTIONS(4999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), + [anon_sym_BSLASHinclude] = ACTIONS(4999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), + [anon_sym_BSLASHinput] = ACTIONS(4999), + [anon_sym_BSLASHsubfile] = ACTIONS(4999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), + [anon_sym_BSLASHbibliography] = ACTIONS(4999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), + [anon_sym_BSLASHincludesvg] = ACTIONS(4999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), + [anon_sym_BSLASHimport] = ACTIONS(4999), + [anon_sym_BSLASHsubimport] = ACTIONS(4999), + [anon_sym_BSLASHinputfrom] = ACTIONS(4999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), + [anon_sym_BSLASHincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHcaption] = ACTIONS(4999), + [anon_sym_BSLASHcite] = ACTIONS(4999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCite] = ACTIONS(4999), + [anon_sym_BSLASHnocite] = ACTIONS(4999), + [anon_sym_BSLASHcitet] = ACTIONS(4999), + [anon_sym_BSLASHcitep] = ACTIONS(4999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteauthor] = ACTIONS(4999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitetitle] = ACTIONS(4999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteyear] = ACTIONS(4999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitedate] = ACTIONS(4999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteurl] = ACTIONS(4999), + [anon_sym_BSLASHfullcite] = ACTIONS(4999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), + [anon_sym_BSLASHcitealt] = ACTIONS(4999), + [anon_sym_BSLASHcitealp] = ACTIONS(4999), + [anon_sym_BSLASHcitetext] = ACTIONS(4999), + [anon_sym_BSLASHparencite] = ACTIONS(4999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHParencite] = ACTIONS(4999), + [anon_sym_BSLASHfootcite] = ACTIONS(4999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), + [anon_sym_BSLASHtextcite] = ACTIONS(4999), + [anon_sym_BSLASHTextcite] = ACTIONS(4999), + [anon_sym_BSLASHsmartcite] = ACTIONS(4999), + [anon_sym_BSLASHSmartcite] = ACTIONS(4999), + [anon_sym_BSLASHsupercite] = ACTIONS(4999), + [anon_sym_BSLASHautocite] = ACTIONS(4999), + [anon_sym_BSLASHAutocite] = ACTIONS(4999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHvolcite] = ACTIONS(4999), + [anon_sym_BSLASHVolcite] = ACTIONS(4999), + [anon_sym_BSLASHpvolcite] = ACTIONS(4999), + [anon_sym_BSLASHPvolcite] = ACTIONS(4999), + [anon_sym_BSLASHfvolcite] = ACTIONS(4999), + [anon_sym_BSLASHftvolcite] = ACTIONS(4999), + [anon_sym_BSLASHsvolcite] = ACTIONS(4999), + [anon_sym_BSLASHSvolcite] = ACTIONS(4999), + [anon_sym_BSLASHtvolcite] = ACTIONS(4999), + [anon_sym_BSLASHTvolcite] = ACTIONS(4999), + [anon_sym_BSLASHavolcite] = ACTIONS(4999), + [anon_sym_BSLASHAvolcite] = ACTIONS(4999), + [anon_sym_BSLASHnotecite] = ACTIONS(4999), + [anon_sym_BSLASHNotecite] = ACTIONS(4999), + [anon_sym_BSLASHpnotecite] = ACTIONS(4999), + [anon_sym_BSLASHPnotecite] = ACTIONS(4999), + [anon_sym_BSLASHfnotecite] = ACTIONS(4999), + [anon_sym_BSLASHlabel] = ACTIONS(4999), + [anon_sym_BSLASHref] = ACTIONS(4999), + [anon_sym_BSLASHeqref] = ACTIONS(4999), + [anon_sym_BSLASHvref] = ACTIONS(4999), + [anon_sym_BSLASHVref] = ACTIONS(4999), + [anon_sym_BSLASHautoref] = ACTIONS(4999), + [anon_sym_BSLASHpageref] = ACTIONS(4999), + [anon_sym_BSLASHcref] = ACTIONS(4999), + [anon_sym_BSLASHCref] = ACTIONS(4999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnameCref] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHlabelcref] = ACTIONS(4999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCrefrange] = ACTIONS(4999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnewlabel] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), + [anon_sym_BSLASHdef] = ACTIONS(4999), + [anon_sym_BSLASHlet] = ACTIONS(4999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), + [anon_sym_BSLASHgls] = ACTIONS(4999), + [anon_sym_BSLASHGls] = ACTIONS(4999), + [anon_sym_BSLASHGLS] = ACTIONS(4999), + [anon_sym_BSLASHglspl] = ACTIONS(4999), + [anon_sym_BSLASHGlspl] = ACTIONS(4999), + [anon_sym_BSLASHGLSpl] = ACTIONS(4999), + [anon_sym_BSLASHglsdisp] = ACTIONS(4999), + [anon_sym_BSLASHglslink] = ACTIONS(4999), + [anon_sym_BSLASHglstext] = ACTIONS(4999), + [anon_sym_BSLASHGlstext] = ACTIONS(4999), + [anon_sym_BSLASHGLStext] = ACTIONS(4999), + [anon_sym_BSLASHglsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), + [anon_sym_BSLASHglsplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSplural] = ACTIONS(4999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHglsname] = ACTIONS(4999), + [anon_sym_BSLASHGlsname] = ACTIONS(4999), + [anon_sym_BSLASHGLSname] = ACTIONS(4999), + [anon_sym_BSLASHglssymbol] = ACTIONS(4999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), + [anon_sym_BSLASHglsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), + [anon_sym_BSLASHglsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), + [anon_sym_BSLASHglsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), + [anon_sym_BSLASHglsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), + [anon_sym_BSLASHglsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), + [anon_sym_BSLASHnewacronym] = ACTIONS(4999), + [anon_sym_BSLASHacrshort] = ACTIONS(4999), + [anon_sym_BSLASHAcrshort] = ACTIONS(4999), + [anon_sym_BSLASHACRshort] = ACTIONS(4999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), + [anon_sym_BSLASHacrlong] = ACTIONS(4999), + [anon_sym_BSLASHAcrlong] = ACTIONS(4999), + [anon_sym_BSLASHACRlong] = ACTIONS(4999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), + [anon_sym_BSLASHacrfull] = ACTIONS(4999), + [anon_sym_BSLASHAcrfull] = ACTIONS(4999), + [anon_sym_BSLASHACRfull] = ACTIONS(4999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), + [anon_sym_BSLASHacs] = ACTIONS(4999), + [anon_sym_BSLASHAcs] = ACTIONS(4999), + [anon_sym_BSLASHacsp] = ACTIONS(4999), + [anon_sym_BSLASHAcsp] = ACTIONS(4999), + [anon_sym_BSLASHacl] = ACTIONS(4999), + [anon_sym_BSLASHAcl] = ACTIONS(4999), + [anon_sym_BSLASHaclp] = ACTIONS(4999), + [anon_sym_BSLASHAclp] = ACTIONS(4999), + [anon_sym_BSLASHacf] = ACTIONS(4999), + [anon_sym_BSLASHAcf] = ACTIONS(4999), + [anon_sym_BSLASHacfp] = ACTIONS(4999), + [anon_sym_BSLASHAcfp] = ACTIONS(4999), + [anon_sym_BSLASHac] = ACTIONS(4999), + [anon_sym_BSLASHAc] = ACTIONS(4999), + [anon_sym_BSLASHacp] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), + [anon_sym_BSLASHcolor] = ACTIONS(4999), + [anon_sym_BSLASHcolorbox] = ACTIONS(4999), + [anon_sym_BSLASHtextcolor] = ACTIONS(4999), + [anon_sym_BSLASHpagecolor] = ACTIONS(4999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), + [anon_sym_BSLASHtext] = ACTIONS(4999), + [anon_sym_BSLASHintertext] = ACTIONS(4999), + [anon_sym_shortintertext] = ACTIONS(4999), }, - [1332] = { + [1201] = { [sym_command_name] = ACTIONS(5003), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -395388,6 +362806,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(5001), [anon_sym_COMMA] = ACTIONS(5001), [anon_sym_EQ] = ACTIONS(5001), + [anon_sym_BSLASHpart] = ACTIONS(5003), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddpart] = ACTIONS(5003), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5001), + [anon_sym_BSLASHchapter] = ACTIONS(5003), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddchap] = ACTIONS(5003), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsection] = ACTIONS(5003), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHaddsec] = ACTIONS(5003), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubsection] = ACTIONS(5003), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5003), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5001), + [anon_sym_BSLASHparagraph] = ACTIONS(5003), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5001), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5003), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5001), + [anon_sym_BSLASHitem] = ACTIONS(5003), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5001), [anon_sym_LBRACE] = ACTIONS(5001), [sym_word] = ACTIONS(5003), [sym_placeholder] = ACTIONS(5001), @@ -395409,6 +362849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), [anon_sym_BSLASHbegin] = ACTIONS(5003), + [anon_sym_BSLASHend] = ACTIONS(5003), [anon_sym_BSLASHusepackage] = ACTIONS(5003), [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), @@ -395622,3452 +363063,11707 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(5003), [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), + [anon_sym_BSLASHtext] = ACTIONS(5003), + [anon_sym_BSLASHintertext] = ACTIONS(5003), + [anon_sym_shortintertext] = ACTIONS(5003), + }, + [1202] = { + [sym_command_name] = ACTIONS(5013), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5013), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_RBRACK] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_BSLASHpart] = ACTIONS(5013), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddpart] = ACTIONS(5013), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5011), + [anon_sym_BSLASHchapter] = ACTIONS(5013), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddchap] = ACTIONS(5013), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsection] = ACTIONS(5013), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHaddsec] = ACTIONS(5013), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubsection] = ACTIONS(5013), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5013), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5011), + [anon_sym_BSLASHparagraph] = ACTIONS(5013), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5011), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5013), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5011), + [anon_sym_BSLASHitem] = ACTIONS(5013), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5011), + [anon_sym_LBRACE] = ACTIONS(5011), + [sym_word] = ACTIONS(5013), + [sym_placeholder] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5013), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_CARET] = ACTIONS(5013), + [anon_sym__] = ACTIONS(5013), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_PIPE] = ACTIONS(5013), + [anon_sym_COLON] = ACTIONS(5013), + [anon_sym_SQUOTE] = ACTIONS(5013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), + [anon_sym_DOLLAR] = ACTIONS(5013), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), + [anon_sym_BSLASHbegin] = ACTIONS(5013), + [anon_sym_BSLASHend] = ACTIONS(5013), + [anon_sym_BSLASHusepackage] = ACTIONS(5013), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), + [anon_sym_BSLASHinclude] = ACTIONS(5013), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), + [anon_sym_BSLASHinput] = ACTIONS(5013), + [anon_sym_BSLASHsubfile] = ACTIONS(5013), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), + [anon_sym_BSLASHbibliography] = ACTIONS(5013), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), + [anon_sym_BSLASHincludesvg] = ACTIONS(5013), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), + [anon_sym_BSLASHimport] = ACTIONS(5013), + [anon_sym_BSLASHsubimport] = ACTIONS(5013), + [anon_sym_BSLASHinputfrom] = ACTIONS(5013), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), + [anon_sym_BSLASHincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHcaption] = ACTIONS(5013), + [anon_sym_BSLASHcite] = ACTIONS(5013), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCite] = ACTIONS(5013), + [anon_sym_BSLASHnocite] = ACTIONS(5013), + [anon_sym_BSLASHcitet] = ACTIONS(5013), + [anon_sym_BSLASHcitep] = ACTIONS(5013), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteauthor] = ACTIONS(5013), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitetitle] = ACTIONS(5013), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteyear] = ACTIONS(5013), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitedate] = ACTIONS(5013), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteurl] = ACTIONS(5013), + [anon_sym_BSLASHfullcite] = ACTIONS(5013), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), + [anon_sym_BSLASHcitealt] = ACTIONS(5013), + [anon_sym_BSLASHcitealp] = ACTIONS(5013), + [anon_sym_BSLASHcitetext] = ACTIONS(5013), + [anon_sym_BSLASHparencite] = ACTIONS(5013), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHParencite] = ACTIONS(5013), + [anon_sym_BSLASHfootcite] = ACTIONS(5013), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), + [anon_sym_BSLASHtextcite] = ACTIONS(5013), + [anon_sym_BSLASHTextcite] = ACTIONS(5013), + [anon_sym_BSLASHsmartcite] = ACTIONS(5013), + [anon_sym_BSLASHSmartcite] = ACTIONS(5013), + [anon_sym_BSLASHsupercite] = ACTIONS(5013), + [anon_sym_BSLASHautocite] = ACTIONS(5013), + [anon_sym_BSLASHAutocite] = ACTIONS(5013), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHvolcite] = ACTIONS(5013), + [anon_sym_BSLASHVolcite] = ACTIONS(5013), + [anon_sym_BSLASHpvolcite] = ACTIONS(5013), + [anon_sym_BSLASHPvolcite] = ACTIONS(5013), + [anon_sym_BSLASHfvolcite] = ACTIONS(5013), + [anon_sym_BSLASHftvolcite] = ACTIONS(5013), + [anon_sym_BSLASHsvolcite] = ACTIONS(5013), + [anon_sym_BSLASHSvolcite] = ACTIONS(5013), + [anon_sym_BSLASHtvolcite] = ACTIONS(5013), + [anon_sym_BSLASHTvolcite] = ACTIONS(5013), + [anon_sym_BSLASHavolcite] = ACTIONS(5013), + [anon_sym_BSLASHAvolcite] = ACTIONS(5013), + [anon_sym_BSLASHnotecite] = ACTIONS(5013), + [anon_sym_BSLASHNotecite] = ACTIONS(5013), + [anon_sym_BSLASHpnotecite] = ACTIONS(5013), + [anon_sym_BSLASHPnotecite] = ACTIONS(5013), + [anon_sym_BSLASHfnotecite] = ACTIONS(5013), + [anon_sym_BSLASHlabel] = ACTIONS(5013), + [anon_sym_BSLASHref] = ACTIONS(5013), + [anon_sym_BSLASHeqref] = ACTIONS(5013), + [anon_sym_BSLASHvref] = ACTIONS(5013), + [anon_sym_BSLASHVref] = ACTIONS(5013), + [anon_sym_BSLASHautoref] = ACTIONS(5013), + [anon_sym_BSLASHpageref] = ACTIONS(5013), + [anon_sym_BSLASHcref] = ACTIONS(5013), + [anon_sym_BSLASHCref] = ACTIONS(5013), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnameCref] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHlabelcref] = ACTIONS(5013), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCrefrange] = ACTIONS(5013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnewlabel] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), + [anon_sym_BSLASHdef] = ACTIONS(5013), + [anon_sym_BSLASHlet] = ACTIONS(5013), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), + [anon_sym_BSLASHgls] = ACTIONS(5013), + [anon_sym_BSLASHGls] = ACTIONS(5013), + [anon_sym_BSLASHGLS] = ACTIONS(5013), + [anon_sym_BSLASHglspl] = ACTIONS(5013), + [anon_sym_BSLASHGlspl] = ACTIONS(5013), + [anon_sym_BSLASHGLSpl] = ACTIONS(5013), + [anon_sym_BSLASHglsdisp] = ACTIONS(5013), + [anon_sym_BSLASHglslink] = ACTIONS(5013), + [anon_sym_BSLASHglstext] = ACTIONS(5013), + [anon_sym_BSLASHGlstext] = ACTIONS(5013), + [anon_sym_BSLASHGLStext] = ACTIONS(5013), + [anon_sym_BSLASHglsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), + [anon_sym_BSLASHglsplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSplural] = ACTIONS(5013), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHglsname] = ACTIONS(5013), + [anon_sym_BSLASHGlsname] = ACTIONS(5013), + [anon_sym_BSLASHGLSname] = ACTIONS(5013), + [anon_sym_BSLASHglssymbol] = ACTIONS(5013), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), + [anon_sym_BSLASHglsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), + [anon_sym_BSLASHglsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), + [anon_sym_BSLASHglsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), + [anon_sym_BSLASHglsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), + [anon_sym_BSLASHglsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), + [anon_sym_BSLASHnewacronym] = ACTIONS(5013), + [anon_sym_BSLASHacrshort] = ACTIONS(5013), + [anon_sym_BSLASHAcrshort] = ACTIONS(5013), + [anon_sym_BSLASHACRshort] = ACTIONS(5013), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), + [anon_sym_BSLASHacrlong] = ACTIONS(5013), + [anon_sym_BSLASHAcrlong] = ACTIONS(5013), + [anon_sym_BSLASHACRlong] = ACTIONS(5013), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), + [anon_sym_BSLASHacrfull] = ACTIONS(5013), + [anon_sym_BSLASHAcrfull] = ACTIONS(5013), + [anon_sym_BSLASHACRfull] = ACTIONS(5013), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), + [anon_sym_BSLASHacs] = ACTIONS(5013), + [anon_sym_BSLASHAcs] = ACTIONS(5013), + [anon_sym_BSLASHacsp] = ACTIONS(5013), + [anon_sym_BSLASHAcsp] = ACTIONS(5013), + [anon_sym_BSLASHacl] = ACTIONS(5013), + [anon_sym_BSLASHAcl] = ACTIONS(5013), + [anon_sym_BSLASHaclp] = ACTIONS(5013), + [anon_sym_BSLASHAclp] = ACTIONS(5013), + [anon_sym_BSLASHacf] = ACTIONS(5013), + [anon_sym_BSLASHAcf] = ACTIONS(5013), + [anon_sym_BSLASHacfp] = ACTIONS(5013), + [anon_sym_BSLASHAcfp] = ACTIONS(5013), + [anon_sym_BSLASHac] = ACTIONS(5013), + [anon_sym_BSLASHAc] = ACTIONS(5013), + [anon_sym_BSLASHacp] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), + [anon_sym_BSLASHcolor] = ACTIONS(5013), + [anon_sym_BSLASHcolorbox] = ACTIONS(5013), + [anon_sym_BSLASHtextcolor] = ACTIONS(5013), + [anon_sym_BSLASHpagecolor] = ACTIONS(5013), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), + [anon_sym_BSLASHtext] = ACTIONS(5013), + [anon_sym_BSLASHintertext] = ACTIONS(5013), + [anon_sym_shortintertext] = ACTIONS(5013), + }, + [1203] = { + [sym_command_name] = ACTIONS(5017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5017), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_RPAREN] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_RBRACK] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_EQ] = ACTIONS(5015), + [anon_sym_BSLASHpart] = ACTIONS(5017), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddpart] = ACTIONS(5017), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5015), + [anon_sym_BSLASHchapter] = ACTIONS(5017), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddchap] = ACTIONS(5017), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsection] = ACTIONS(5017), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHaddsec] = ACTIONS(5017), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubsection] = ACTIONS(5017), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5017), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5015), + [anon_sym_BSLASHparagraph] = ACTIONS(5017), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5015), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5017), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5015), + [anon_sym_BSLASHitem] = ACTIONS(5017), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5015), + [anon_sym_LBRACE] = ACTIONS(5015), + [sym_word] = ACTIONS(5017), + [sym_placeholder] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5017), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_CARET] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5017), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_COLON] = ACTIONS(5017), + [anon_sym_SQUOTE] = ACTIONS(5017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), + [anon_sym_DOLLAR] = ACTIONS(5017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), + [anon_sym_BSLASHbegin] = ACTIONS(5017), + [anon_sym_BSLASHend] = ACTIONS(5017), + [anon_sym_BSLASHusepackage] = ACTIONS(5017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), + [anon_sym_BSLASHinclude] = ACTIONS(5017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), + [anon_sym_BSLASHinput] = ACTIONS(5017), + [anon_sym_BSLASHsubfile] = ACTIONS(5017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), + [anon_sym_BSLASHbibliography] = ACTIONS(5017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), + [anon_sym_BSLASHincludesvg] = ACTIONS(5017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), + [anon_sym_BSLASHimport] = ACTIONS(5017), + [anon_sym_BSLASHsubimport] = ACTIONS(5017), + [anon_sym_BSLASHinputfrom] = ACTIONS(5017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), + [anon_sym_BSLASHincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHcaption] = ACTIONS(5017), + [anon_sym_BSLASHcite] = ACTIONS(5017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCite] = ACTIONS(5017), + [anon_sym_BSLASHnocite] = ACTIONS(5017), + [anon_sym_BSLASHcitet] = ACTIONS(5017), + [anon_sym_BSLASHcitep] = ACTIONS(5017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteauthor] = ACTIONS(5017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitetitle] = ACTIONS(5017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteyear] = ACTIONS(5017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitedate] = ACTIONS(5017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteurl] = ACTIONS(5017), + [anon_sym_BSLASHfullcite] = ACTIONS(5017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), + [anon_sym_BSLASHcitealt] = ACTIONS(5017), + [anon_sym_BSLASHcitealp] = ACTIONS(5017), + [anon_sym_BSLASHcitetext] = ACTIONS(5017), + [anon_sym_BSLASHparencite] = ACTIONS(5017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHParencite] = ACTIONS(5017), + [anon_sym_BSLASHfootcite] = ACTIONS(5017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), + [anon_sym_BSLASHtextcite] = ACTIONS(5017), + [anon_sym_BSLASHTextcite] = ACTIONS(5017), + [anon_sym_BSLASHsmartcite] = ACTIONS(5017), + [anon_sym_BSLASHSmartcite] = ACTIONS(5017), + [anon_sym_BSLASHsupercite] = ACTIONS(5017), + [anon_sym_BSLASHautocite] = ACTIONS(5017), + [anon_sym_BSLASHAutocite] = ACTIONS(5017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHvolcite] = ACTIONS(5017), + [anon_sym_BSLASHVolcite] = ACTIONS(5017), + [anon_sym_BSLASHpvolcite] = ACTIONS(5017), + [anon_sym_BSLASHPvolcite] = ACTIONS(5017), + [anon_sym_BSLASHfvolcite] = ACTIONS(5017), + [anon_sym_BSLASHftvolcite] = ACTIONS(5017), + [anon_sym_BSLASHsvolcite] = ACTIONS(5017), + [anon_sym_BSLASHSvolcite] = ACTIONS(5017), + [anon_sym_BSLASHtvolcite] = ACTIONS(5017), + [anon_sym_BSLASHTvolcite] = ACTIONS(5017), + [anon_sym_BSLASHavolcite] = ACTIONS(5017), + [anon_sym_BSLASHAvolcite] = ACTIONS(5017), + [anon_sym_BSLASHnotecite] = ACTIONS(5017), + [anon_sym_BSLASHNotecite] = ACTIONS(5017), + [anon_sym_BSLASHpnotecite] = ACTIONS(5017), + [anon_sym_BSLASHPnotecite] = ACTIONS(5017), + [anon_sym_BSLASHfnotecite] = ACTIONS(5017), + [anon_sym_BSLASHlabel] = ACTIONS(5017), + [anon_sym_BSLASHref] = ACTIONS(5017), + [anon_sym_BSLASHeqref] = ACTIONS(5017), + [anon_sym_BSLASHvref] = ACTIONS(5017), + [anon_sym_BSLASHVref] = ACTIONS(5017), + [anon_sym_BSLASHautoref] = ACTIONS(5017), + [anon_sym_BSLASHpageref] = ACTIONS(5017), + [anon_sym_BSLASHcref] = ACTIONS(5017), + [anon_sym_BSLASHCref] = ACTIONS(5017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnameCref] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHlabelcref] = ACTIONS(5017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCrefrange] = ACTIONS(5017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnewlabel] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), + [anon_sym_BSLASHdef] = ACTIONS(5017), + [anon_sym_BSLASHlet] = ACTIONS(5017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), + [anon_sym_BSLASHgls] = ACTIONS(5017), + [anon_sym_BSLASHGls] = ACTIONS(5017), + [anon_sym_BSLASHGLS] = ACTIONS(5017), + [anon_sym_BSLASHglspl] = ACTIONS(5017), + [anon_sym_BSLASHGlspl] = ACTIONS(5017), + [anon_sym_BSLASHGLSpl] = ACTIONS(5017), + [anon_sym_BSLASHglsdisp] = ACTIONS(5017), + [anon_sym_BSLASHglslink] = ACTIONS(5017), + [anon_sym_BSLASHglstext] = ACTIONS(5017), + [anon_sym_BSLASHGlstext] = ACTIONS(5017), + [anon_sym_BSLASHGLStext] = ACTIONS(5017), + [anon_sym_BSLASHglsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), + [anon_sym_BSLASHglsplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSplural] = ACTIONS(5017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHglsname] = ACTIONS(5017), + [anon_sym_BSLASHGlsname] = ACTIONS(5017), + [anon_sym_BSLASHGLSname] = ACTIONS(5017), + [anon_sym_BSLASHglssymbol] = ACTIONS(5017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), + [anon_sym_BSLASHglsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), + [anon_sym_BSLASHglsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), + [anon_sym_BSLASHglsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), + [anon_sym_BSLASHglsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), + [anon_sym_BSLASHglsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), + [anon_sym_BSLASHnewacronym] = ACTIONS(5017), + [anon_sym_BSLASHacrshort] = ACTIONS(5017), + [anon_sym_BSLASHAcrshort] = ACTIONS(5017), + [anon_sym_BSLASHACRshort] = ACTIONS(5017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), + [anon_sym_BSLASHacrlong] = ACTIONS(5017), + [anon_sym_BSLASHAcrlong] = ACTIONS(5017), + [anon_sym_BSLASHACRlong] = ACTIONS(5017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), + [anon_sym_BSLASHacrfull] = ACTIONS(5017), + [anon_sym_BSLASHAcrfull] = ACTIONS(5017), + [anon_sym_BSLASHACRfull] = ACTIONS(5017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), + [anon_sym_BSLASHacs] = ACTIONS(5017), + [anon_sym_BSLASHAcs] = ACTIONS(5017), + [anon_sym_BSLASHacsp] = ACTIONS(5017), + [anon_sym_BSLASHAcsp] = ACTIONS(5017), + [anon_sym_BSLASHacl] = ACTIONS(5017), + [anon_sym_BSLASHAcl] = ACTIONS(5017), + [anon_sym_BSLASHaclp] = ACTIONS(5017), + [anon_sym_BSLASHAclp] = ACTIONS(5017), + [anon_sym_BSLASHacf] = ACTIONS(5017), + [anon_sym_BSLASHAcf] = ACTIONS(5017), + [anon_sym_BSLASHacfp] = ACTIONS(5017), + [anon_sym_BSLASHAcfp] = ACTIONS(5017), + [anon_sym_BSLASHac] = ACTIONS(5017), + [anon_sym_BSLASHAc] = ACTIONS(5017), + [anon_sym_BSLASHacp] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), + [anon_sym_BSLASHcolor] = ACTIONS(5017), + [anon_sym_BSLASHcolorbox] = ACTIONS(5017), + [anon_sym_BSLASHtextcolor] = ACTIONS(5017), + [anon_sym_BSLASHpagecolor] = ACTIONS(5017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), + [anon_sym_BSLASHtext] = ACTIONS(5017), + [anon_sym_BSLASHintertext] = ACTIONS(5017), + [anon_sym_shortintertext] = ACTIONS(5017), + }, + [1204] = { + [sym_command_name] = ACTIONS(5021), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5021), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_BSLASHpart] = ACTIONS(5021), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddpart] = ACTIONS(5021), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5019), + [anon_sym_BSLASHchapter] = ACTIONS(5021), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddchap] = ACTIONS(5021), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsection] = ACTIONS(5021), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHaddsec] = ACTIONS(5021), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubsection] = ACTIONS(5021), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5021), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5019), + [anon_sym_BSLASHparagraph] = ACTIONS(5021), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5019), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5021), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5019), + [anon_sym_BSLASHitem] = ACTIONS(5021), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [sym_word] = ACTIONS(5021), + [sym_placeholder] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5021), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_CARET] = ACTIONS(5021), + [anon_sym__] = ACTIONS(5021), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_COLON] = ACTIONS(5021), + [anon_sym_SQUOTE] = ACTIONS(5021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), + [anon_sym_DOLLAR] = ACTIONS(5021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), + [anon_sym_BSLASHbegin] = ACTIONS(5021), + [anon_sym_BSLASHend] = ACTIONS(5021), + [anon_sym_BSLASHusepackage] = ACTIONS(5021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), + [anon_sym_BSLASHinclude] = ACTIONS(5021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), + [anon_sym_BSLASHinput] = ACTIONS(5021), + [anon_sym_BSLASHsubfile] = ACTIONS(5021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), + [anon_sym_BSLASHbibliography] = ACTIONS(5021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), + [anon_sym_BSLASHincludesvg] = ACTIONS(5021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), + [anon_sym_BSLASHimport] = ACTIONS(5021), + [anon_sym_BSLASHsubimport] = ACTIONS(5021), + [anon_sym_BSLASHinputfrom] = ACTIONS(5021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), + [anon_sym_BSLASHincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHcaption] = ACTIONS(5021), + [anon_sym_BSLASHcite] = ACTIONS(5021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCite] = ACTIONS(5021), + [anon_sym_BSLASHnocite] = ACTIONS(5021), + [anon_sym_BSLASHcitet] = ACTIONS(5021), + [anon_sym_BSLASHcitep] = ACTIONS(5021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteauthor] = ACTIONS(5021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitetitle] = ACTIONS(5021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteyear] = ACTIONS(5021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitedate] = ACTIONS(5021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteurl] = ACTIONS(5021), + [anon_sym_BSLASHfullcite] = ACTIONS(5021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), + [anon_sym_BSLASHcitealt] = ACTIONS(5021), + [anon_sym_BSLASHcitealp] = ACTIONS(5021), + [anon_sym_BSLASHcitetext] = ACTIONS(5021), + [anon_sym_BSLASHparencite] = ACTIONS(5021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHParencite] = ACTIONS(5021), + [anon_sym_BSLASHfootcite] = ACTIONS(5021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), + [anon_sym_BSLASHtextcite] = ACTIONS(5021), + [anon_sym_BSLASHTextcite] = ACTIONS(5021), + [anon_sym_BSLASHsmartcite] = ACTIONS(5021), + [anon_sym_BSLASHSmartcite] = ACTIONS(5021), + [anon_sym_BSLASHsupercite] = ACTIONS(5021), + [anon_sym_BSLASHautocite] = ACTIONS(5021), + [anon_sym_BSLASHAutocite] = ACTIONS(5021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHvolcite] = ACTIONS(5021), + [anon_sym_BSLASHVolcite] = ACTIONS(5021), + [anon_sym_BSLASHpvolcite] = ACTIONS(5021), + [anon_sym_BSLASHPvolcite] = ACTIONS(5021), + [anon_sym_BSLASHfvolcite] = ACTIONS(5021), + [anon_sym_BSLASHftvolcite] = ACTIONS(5021), + [anon_sym_BSLASHsvolcite] = ACTIONS(5021), + [anon_sym_BSLASHSvolcite] = ACTIONS(5021), + [anon_sym_BSLASHtvolcite] = ACTIONS(5021), + [anon_sym_BSLASHTvolcite] = ACTIONS(5021), + [anon_sym_BSLASHavolcite] = ACTIONS(5021), + [anon_sym_BSLASHAvolcite] = ACTIONS(5021), + [anon_sym_BSLASHnotecite] = ACTIONS(5021), + [anon_sym_BSLASHNotecite] = ACTIONS(5021), + [anon_sym_BSLASHpnotecite] = ACTIONS(5021), + [anon_sym_BSLASHPnotecite] = ACTIONS(5021), + [anon_sym_BSLASHfnotecite] = ACTIONS(5021), + [anon_sym_BSLASHlabel] = ACTIONS(5021), + [anon_sym_BSLASHref] = ACTIONS(5021), + [anon_sym_BSLASHeqref] = ACTIONS(5021), + [anon_sym_BSLASHvref] = ACTIONS(5021), + [anon_sym_BSLASHVref] = ACTIONS(5021), + [anon_sym_BSLASHautoref] = ACTIONS(5021), + [anon_sym_BSLASHpageref] = ACTIONS(5021), + [anon_sym_BSLASHcref] = ACTIONS(5021), + [anon_sym_BSLASHCref] = ACTIONS(5021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnameCref] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHlabelcref] = ACTIONS(5021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCrefrange] = ACTIONS(5021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnewlabel] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), + [anon_sym_BSLASHdef] = ACTIONS(5021), + [anon_sym_BSLASHlet] = ACTIONS(5021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), + [anon_sym_BSLASHgls] = ACTIONS(5021), + [anon_sym_BSLASHGls] = ACTIONS(5021), + [anon_sym_BSLASHGLS] = ACTIONS(5021), + [anon_sym_BSLASHglspl] = ACTIONS(5021), + [anon_sym_BSLASHGlspl] = ACTIONS(5021), + [anon_sym_BSLASHGLSpl] = ACTIONS(5021), + [anon_sym_BSLASHglsdisp] = ACTIONS(5021), + [anon_sym_BSLASHglslink] = ACTIONS(5021), + [anon_sym_BSLASHglstext] = ACTIONS(5021), + [anon_sym_BSLASHGlstext] = ACTIONS(5021), + [anon_sym_BSLASHGLStext] = ACTIONS(5021), + [anon_sym_BSLASHglsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), + [anon_sym_BSLASHglsplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSplural] = ACTIONS(5021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHglsname] = ACTIONS(5021), + [anon_sym_BSLASHGlsname] = ACTIONS(5021), + [anon_sym_BSLASHGLSname] = ACTIONS(5021), + [anon_sym_BSLASHglssymbol] = ACTIONS(5021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), + [anon_sym_BSLASHglsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), + [anon_sym_BSLASHglsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), + [anon_sym_BSLASHglsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), + [anon_sym_BSLASHglsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), + [anon_sym_BSLASHglsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), + [anon_sym_BSLASHnewacronym] = ACTIONS(5021), + [anon_sym_BSLASHacrshort] = ACTIONS(5021), + [anon_sym_BSLASHAcrshort] = ACTIONS(5021), + [anon_sym_BSLASHACRshort] = ACTIONS(5021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), + [anon_sym_BSLASHacrlong] = ACTIONS(5021), + [anon_sym_BSLASHAcrlong] = ACTIONS(5021), + [anon_sym_BSLASHACRlong] = ACTIONS(5021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), + [anon_sym_BSLASHacrfull] = ACTIONS(5021), + [anon_sym_BSLASHAcrfull] = ACTIONS(5021), + [anon_sym_BSLASHACRfull] = ACTIONS(5021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), + [anon_sym_BSLASHacs] = ACTIONS(5021), + [anon_sym_BSLASHAcs] = ACTIONS(5021), + [anon_sym_BSLASHacsp] = ACTIONS(5021), + [anon_sym_BSLASHAcsp] = ACTIONS(5021), + [anon_sym_BSLASHacl] = ACTIONS(5021), + [anon_sym_BSLASHAcl] = ACTIONS(5021), + [anon_sym_BSLASHaclp] = ACTIONS(5021), + [anon_sym_BSLASHAclp] = ACTIONS(5021), + [anon_sym_BSLASHacf] = ACTIONS(5021), + [anon_sym_BSLASHAcf] = ACTIONS(5021), + [anon_sym_BSLASHacfp] = ACTIONS(5021), + [anon_sym_BSLASHAcfp] = ACTIONS(5021), + [anon_sym_BSLASHac] = ACTIONS(5021), + [anon_sym_BSLASHAc] = ACTIONS(5021), + [anon_sym_BSLASHacp] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), + [anon_sym_BSLASHcolor] = ACTIONS(5021), + [anon_sym_BSLASHcolorbox] = ACTIONS(5021), + [anon_sym_BSLASHtextcolor] = ACTIONS(5021), + [anon_sym_BSLASHpagecolor] = ACTIONS(5021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHtext] = ACTIONS(5021), + [anon_sym_BSLASHintertext] = ACTIONS(5021), + [anon_sym_shortintertext] = ACTIONS(5021), }, - [1333] = { - [sym_command_name] = ACTIONS(5007), + [1205] = { + [sym_command_name] = ACTIONS(5025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5007), - [anon_sym_LPAREN] = ACTIONS(5005), - [anon_sym_RPAREN] = ACTIONS(5005), - [anon_sym_LBRACK] = ACTIONS(5005), - [anon_sym_RBRACK] = ACTIONS(5005), - [anon_sym_COMMA] = ACTIONS(5005), - [anon_sym_EQ] = ACTIONS(5005), - [anon_sym_LBRACE] = ACTIONS(5005), - [sym_word] = ACTIONS(5007), - [sym_placeholder] = ACTIONS(5005), - [anon_sym_PLUS] = ACTIONS(5007), - [anon_sym_DASH] = ACTIONS(5007), - [anon_sym_STAR] = ACTIONS(5007), - [anon_sym_SLASH] = ACTIONS(5007), - [anon_sym_CARET] = ACTIONS(5007), - [anon_sym__] = ACTIONS(5007), - [anon_sym_LT] = ACTIONS(5007), - [anon_sym_GT] = ACTIONS(5007), - [anon_sym_BANG] = ACTIONS(5007), - [anon_sym_PIPE] = ACTIONS(5007), - [anon_sym_COLON] = ACTIONS(5007), - [anon_sym_SQUOTE] = ACTIONS(5007), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), - [anon_sym_DOLLAR] = ACTIONS(5007), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), - [anon_sym_BSLASHbegin] = ACTIONS(5007), - [anon_sym_BSLASHusepackage] = ACTIONS(5007), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), - [anon_sym_BSLASHinclude] = ACTIONS(5007), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), - [anon_sym_BSLASHinput] = ACTIONS(5007), - [anon_sym_BSLASHsubfile] = ACTIONS(5007), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), - [anon_sym_BSLASHbibliography] = ACTIONS(5007), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), - [anon_sym_BSLASHincludesvg] = ACTIONS(5007), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), - [anon_sym_BSLASHimport] = ACTIONS(5007), - [anon_sym_BSLASHsubimport] = ACTIONS(5007), - [anon_sym_BSLASHinputfrom] = ACTIONS(5007), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), - [anon_sym_BSLASHincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), - [anon_sym_BSLASHcaption] = ACTIONS(5007), - [anon_sym_BSLASHcite] = ACTIONS(5007), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCite] = ACTIONS(5007), - [anon_sym_BSLASHnocite] = ACTIONS(5007), - [anon_sym_BSLASHcitet] = ACTIONS(5007), - [anon_sym_BSLASHcitep] = ACTIONS(5007), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteauthor] = ACTIONS(5007), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitetitle] = ACTIONS(5007), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteyear] = ACTIONS(5007), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), - [anon_sym_BSLASHcitedate] = ACTIONS(5007), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), - [anon_sym_BSLASHciteurl] = ACTIONS(5007), - [anon_sym_BSLASHfullcite] = ACTIONS(5007), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), - [anon_sym_BSLASHcitealt] = ACTIONS(5007), - [anon_sym_BSLASHcitealp] = ACTIONS(5007), - [anon_sym_BSLASHcitetext] = ACTIONS(5007), - [anon_sym_BSLASHparencite] = ACTIONS(5007), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHParencite] = ACTIONS(5007), - [anon_sym_BSLASHfootcite] = ACTIONS(5007), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), - [anon_sym_BSLASHtextcite] = ACTIONS(5007), - [anon_sym_BSLASHTextcite] = ACTIONS(5007), - [anon_sym_BSLASHsmartcite] = ACTIONS(5007), - [anon_sym_BSLASHSmartcite] = ACTIONS(5007), - [anon_sym_BSLASHsupercite] = ACTIONS(5007), - [anon_sym_BSLASHautocite] = ACTIONS(5007), - [anon_sym_BSLASHAutocite] = ACTIONS(5007), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), - [anon_sym_BSLASHvolcite] = ACTIONS(5007), - [anon_sym_BSLASHVolcite] = ACTIONS(5007), - [anon_sym_BSLASHpvolcite] = ACTIONS(5007), - [anon_sym_BSLASHPvolcite] = ACTIONS(5007), - [anon_sym_BSLASHfvolcite] = ACTIONS(5007), - [anon_sym_BSLASHftvolcite] = ACTIONS(5007), - [anon_sym_BSLASHsvolcite] = ACTIONS(5007), - [anon_sym_BSLASHSvolcite] = ACTIONS(5007), - [anon_sym_BSLASHtvolcite] = ACTIONS(5007), - [anon_sym_BSLASHTvolcite] = ACTIONS(5007), - [anon_sym_BSLASHavolcite] = ACTIONS(5007), - [anon_sym_BSLASHAvolcite] = ACTIONS(5007), - [anon_sym_BSLASHnotecite] = ACTIONS(5007), - [anon_sym_BSLASHNotecite] = ACTIONS(5007), - [anon_sym_BSLASHpnotecite] = ACTIONS(5007), - [anon_sym_BSLASHPnotecite] = ACTIONS(5007), - [anon_sym_BSLASHfnotecite] = ACTIONS(5007), - [anon_sym_BSLASHlabel] = ACTIONS(5007), - [anon_sym_BSLASHref] = ACTIONS(5007), - [anon_sym_BSLASHeqref] = ACTIONS(5007), - [anon_sym_BSLASHvref] = ACTIONS(5007), - [anon_sym_BSLASHVref] = ACTIONS(5007), - [anon_sym_BSLASHautoref] = ACTIONS(5007), - [anon_sym_BSLASHpageref] = ACTIONS(5007), - [anon_sym_BSLASHcref] = ACTIONS(5007), - [anon_sym_BSLASHCref] = ACTIONS(5007), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnameCref] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), - [anon_sym_BSLASHlabelcref] = ACTIONS(5007), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange] = ACTIONS(5007), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHCrefrange] = ACTIONS(5007), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), - [anon_sym_BSLASHnewlabel] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand] = ACTIONS(5007), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), - [anon_sym_BSLASHdef] = ACTIONS(5007), - [anon_sym_BSLASHlet] = ACTIONS(5007), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), - [anon_sym_BSLASHgls] = ACTIONS(5007), - [anon_sym_BSLASHGls] = ACTIONS(5007), - [anon_sym_BSLASHGLS] = ACTIONS(5007), - [anon_sym_BSLASHglspl] = ACTIONS(5007), - [anon_sym_BSLASHGlspl] = ACTIONS(5007), - [anon_sym_BSLASHGLSpl] = ACTIONS(5007), - [anon_sym_BSLASHglsdisp] = ACTIONS(5007), - [anon_sym_BSLASHglslink] = ACTIONS(5007), - [anon_sym_BSLASHglstext] = ACTIONS(5007), - [anon_sym_BSLASHGlstext] = ACTIONS(5007), - [anon_sym_BSLASHGLStext] = ACTIONS(5007), - [anon_sym_BSLASHglsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), - [anon_sym_BSLASHglsplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSplural] = ACTIONS(5007), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), - [anon_sym_BSLASHglsname] = ACTIONS(5007), - [anon_sym_BSLASHGlsname] = ACTIONS(5007), - [anon_sym_BSLASHGLSname] = ACTIONS(5007), - [anon_sym_BSLASHglssymbol] = ACTIONS(5007), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), - [anon_sym_BSLASHglsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), - [anon_sym_BSLASHglsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), - [anon_sym_BSLASHglsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), - [anon_sym_BSLASHglsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), - [anon_sym_BSLASHglsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), - [anon_sym_BSLASHnewacronym] = ACTIONS(5007), - [anon_sym_BSLASHacrshort] = ACTIONS(5007), - [anon_sym_BSLASHAcrshort] = ACTIONS(5007), - [anon_sym_BSLASHACRshort] = ACTIONS(5007), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), - [anon_sym_BSLASHacrlong] = ACTIONS(5007), - [anon_sym_BSLASHAcrlong] = ACTIONS(5007), - [anon_sym_BSLASHACRlong] = ACTIONS(5007), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), - [anon_sym_BSLASHacrfull] = ACTIONS(5007), - [anon_sym_BSLASHAcrfull] = ACTIONS(5007), - [anon_sym_BSLASHACRfull] = ACTIONS(5007), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), - [anon_sym_BSLASHacs] = ACTIONS(5007), - [anon_sym_BSLASHAcs] = ACTIONS(5007), - [anon_sym_BSLASHacsp] = ACTIONS(5007), - [anon_sym_BSLASHAcsp] = ACTIONS(5007), - [anon_sym_BSLASHacl] = ACTIONS(5007), - [anon_sym_BSLASHAcl] = ACTIONS(5007), - [anon_sym_BSLASHaclp] = ACTIONS(5007), - [anon_sym_BSLASHAclp] = ACTIONS(5007), - [anon_sym_BSLASHacf] = ACTIONS(5007), - [anon_sym_BSLASHAcf] = ACTIONS(5007), - [anon_sym_BSLASHacfp] = ACTIONS(5007), - [anon_sym_BSLASHAcfp] = ACTIONS(5007), - [anon_sym_BSLASHac] = ACTIONS(5007), - [anon_sym_BSLASHAc] = ACTIONS(5007), - [anon_sym_BSLASHacp] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), - [anon_sym_BSLASHcolor] = ACTIONS(5007), - [anon_sym_BSLASHcolorbox] = ACTIONS(5007), - [anon_sym_BSLASHtextcolor] = ACTIONS(5007), - [anon_sym_BSLASHpagecolor] = ACTIONS(5007), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), - }, - [1334] = { - [sym_command_name] = ACTIONS(5011), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5011), - [anon_sym_LPAREN] = ACTIONS(5009), - [anon_sym_RPAREN] = ACTIONS(5009), - [anon_sym_LBRACK] = ACTIONS(5009), - [anon_sym_RBRACK] = ACTIONS(5009), - [anon_sym_COMMA] = ACTIONS(5009), - [anon_sym_EQ] = ACTIONS(5009), - [anon_sym_LBRACE] = ACTIONS(5009), - [sym_word] = ACTIONS(5011), - [sym_placeholder] = ACTIONS(5009), - [anon_sym_PLUS] = ACTIONS(5011), - [anon_sym_DASH] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(5011), - [anon_sym_SLASH] = ACTIONS(5011), - [anon_sym_CARET] = ACTIONS(5011), - [anon_sym__] = ACTIONS(5011), - [anon_sym_LT] = ACTIONS(5011), - [anon_sym_GT] = ACTIONS(5011), - [anon_sym_BANG] = ACTIONS(5011), - [anon_sym_PIPE] = ACTIONS(5011), - [anon_sym_COLON] = ACTIONS(5011), - [anon_sym_SQUOTE] = ACTIONS(5011), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5009), - [anon_sym_DOLLAR] = ACTIONS(5011), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5009), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5009), - [anon_sym_BSLASHbegin] = ACTIONS(5011), - [anon_sym_BSLASHusepackage] = ACTIONS(5011), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5011), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5011), - [anon_sym_BSLASHinclude] = ACTIONS(5011), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5011), - [anon_sym_BSLASHinput] = ACTIONS(5011), - [anon_sym_BSLASHsubfile] = ACTIONS(5011), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5011), - [anon_sym_BSLASHbibliography] = ACTIONS(5011), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5011), - [anon_sym_BSLASHincludesvg] = ACTIONS(5011), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5011), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5011), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5011), - [anon_sym_BSLASHimport] = ACTIONS(5011), - [anon_sym_BSLASHsubimport] = ACTIONS(5011), - [anon_sym_BSLASHinputfrom] = ACTIONS(5011), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5011), - [anon_sym_BSLASHincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5011), - [anon_sym_BSLASHcaption] = ACTIONS(5011), - [anon_sym_BSLASHcite] = ACTIONS(5011), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCite] = ACTIONS(5011), - [anon_sym_BSLASHnocite] = ACTIONS(5011), - [anon_sym_BSLASHcitet] = ACTIONS(5011), - [anon_sym_BSLASHcitep] = ACTIONS(5011), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteauthor] = ACTIONS(5011), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5011), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitetitle] = ACTIONS(5011), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteyear] = ACTIONS(5011), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5009), - [anon_sym_BSLASHcitedate] = ACTIONS(5011), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5009), - [anon_sym_BSLASHciteurl] = ACTIONS(5011), - [anon_sym_BSLASHfullcite] = ACTIONS(5011), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5011), - [anon_sym_BSLASHcitealt] = ACTIONS(5011), - [anon_sym_BSLASHcitealp] = ACTIONS(5011), - [anon_sym_BSLASHcitetext] = ACTIONS(5011), - [anon_sym_BSLASHparencite] = ACTIONS(5011), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHParencite] = ACTIONS(5011), - [anon_sym_BSLASHfootcite] = ACTIONS(5011), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5011), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5011), - [anon_sym_BSLASHtextcite] = ACTIONS(5011), - [anon_sym_BSLASHTextcite] = ACTIONS(5011), - [anon_sym_BSLASHsmartcite] = ACTIONS(5011), - [anon_sym_BSLASHSmartcite] = ACTIONS(5011), - [anon_sym_BSLASHsupercite] = ACTIONS(5011), - [anon_sym_BSLASHautocite] = ACTIONS(5011), - [anon_sym_BSLASHAutocite] = ACTIONS(5011), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5009), - [anon_sym_BSLASHvolcite] = ACTIONS(5011), - [anon_sym_BSLASHVolcite] = ACTIONS(5011), - [anon_sym_BSLASHpvolcite] = ACTIONS(5011), - [anon_sym_BSLASHPvolcite] = ACTIONS(5011), - [anon_sym_BSLASHfvolcite] = ACTIONS(5011), - [anon_sym_BSLASHftvolcite] = ACTIONS(5011), - [anon_sym_BSLASHsvolcite] = ACTIONS(5011), - [anon_sym_BSLASHSvolcite] = ACTIONS(5011), - [anon_sym_BSLASHtvolcite] = ACTIONS(5011), - [anon_sym_BSLASHTvolcite] = ACTIONS(5011), - [anon_sym_BSLASHavolcite] = ACTIONS(5011), - [anon_sym_BSLASHAvolcite] = ACTIONS(5011), - [anon_sym_BSLASHnotecite] = ACTIONS(5011), - [anon_sym_BSLASHNotecite] = ACTIONS(5011), - [anon_sym_BSLASHpnotecite] = ACTIONS(5011), - [anon_sym_BSLASHPnotecite] = ACTIONS(5011), - [anon_sym_BSLASHfnotecite] = ACTIONS(5011), - [anon_sym_BSLASHlabel] = ACTIONS(5011), - [anon_sym_BSLASHref] = ACTIONS(5011), - [anon_sym_BSLASHeqref] = ACTIONS(5011), - [anon_sym_BSLASHvref] = ACTIONS(5011), - [anon_sym_BSLASHVref] = ACTIONS(5011), - [anon_sym_BSLASHautoref] = ACTIONS(5011), - [anon_sym_BSLASHpageref] = ACTIONS(5011), - [anon_sym_BSLASHcref] = ACTIONS(5011), - [anon_sym_BSLASHCref] = ACTIONS(5011), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnameCref] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5011), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5011), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5011), - [anon_sym_BSLASHlabelcref] = ACTIONS(5011), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange] = ACTIONS(5011), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHCrefrange] = ACTIONS(5011), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5009), - [anon_sym_BSLASHnewlabel] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand] = ACTIONS(5011), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5011), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5011), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5009), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5011), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5009), - [anon_sym_BSLASHdef] = ACTIONS(5011), - [anon_sym_BSLASHlet] = ACTIONS(5011), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5011), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5011), - [anon_sym_BSLASHgls] = ACTIONS(5011), - [anon_sym_BSLASHGls] = ACTIONS(5011), - [anon_sym_BSLASHGLS] = ACTIONS(5011), - [anon_sym_BSLASHglspl] = ACTIONS(5011), - [anon_sym_BSLASHGlspl] = ACTIONS(5011), - [anon_sym_BSLASHGLSpl] = ACTIONS(5011), - [anon_sym_BSLASHglsdisp] = ACTIONS(5011), - [anon_sym_BSLASHglslink] = ACTIONS(5011), - [anon_sym_BSLASHglstext] = ACTIONS(5011), - [anon_sym_BSLASHGlstext] = ACTIONS(5011), - [anon_sym_BSLASHGLStext] = ACTIONS(5011), - [anon_sym_BSLASHglsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5011), - [anon_sym_BSLASHglsplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSplural] = ACTIONS(5011), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5011), - [anon_sym_BSLASHglsname] = ACTIONS(5011), - [anon_sym_BSLASHGlsname] = ACTIONS(5011), - [anon_sym_BSLASHGLSname] = ACTIONS(5011), - [anon_sym_BSLASHglssymbol] = ACTIONS(5011), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5011), - [anon_sym_BSLASHglsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5011), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5011), - [anon_sym_BSLASHglsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5011), - [anon_sym_BSLASHglsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5011), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5011), - [anon_sym_BSLASHglsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5011), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5011), - [anon_sym_BSLASHglsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5011), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5011), - [anon_sym_BSLASHnewacronym] = ACTIONS(5011), - [anon_sym_BSLASHacrshort] = ACTIONS(5011), - [anon_sym_BSLASHAcrshort] = ACTIONS(5011), - [anon_sym_BSLASHACRshort] = ACTIONS(5011), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5011), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5011), - [anon_sym_BSLASHacrlong] = ACTIONS(5011), - [anon_sym_BSLASHAcrlong] = ACTIONS(5011), - [anon_sym_BSLASHACRlong] = ACTIONS(5011), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5011), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5011), - [anon_sym_BSLASHacrfull] = ACTIONS(5011), - [anon_sym_BSLASHAcrfull] = ACTIONS(5011), - [anon_sym_BSLASHACRfull] = ACTIONS(5011), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5011), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5011), - [anon_sym_BSLASHacs] = ACTIONS(5011), - [anon_sym_BSLASHAcs] = ACTIONS(5011), - [anon_sym_BSLASHacsp] = ACTIONS(5011), - [anon_sym_BSLASHAcsp] = ACTIONS(5011), - [anon_sym_BSLASHacl] = ACTIONS(5011), - [anon_sym_BSLASHAcl] = ACTIONS(5011), - [anon_sym_BSLASHaclp] = ACTIONS(5011), - [anon_sym_BSLASHAclp] = ACTIONS(5011), - [anon_sym_BSLASHacf] = ACTIONS(5011), - [anon_sym_BSLASHAcf] = ACTIONS(5011), - [anon_sym_BSLASHacfp] = ACTIONS(5011), - [anon_sym_BSLASHAcfp] = ACTIONS(5011), - [anon_sym_BSLASHac] = ACTIONS(5011), - [anon_sym_BSLASHAc] = ACTIONS(5011), - [anon_sym_BSLASHacp] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5011), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5011), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5011), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5011), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5011), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5011), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5011), - [anon_sym_BSLASHcolor] = ACTIONS(5011), - [anon_sym_BSLASHcolorbox] = ACTIONS(5011), - [anon_sym_BSLASHtextcolor] = ACTIONS(5011), - [anon_sym_BSLASHpagecolor] = ACTIONS(5011), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5011), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5011), + [anon_sym_BSLASHiffalse] = ACTIONS(5025), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_RBRACK] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5023), + [anon_sym_BSLASHpart] = ACTIONS(5025), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddpart] = ACTIONS(5025), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5023), + [anon_sym_BSLASHchapter] = ACTIONS(5025), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddchap] = ACTIONS(5025), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsection] = ACTIONS(5025), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHaddsec] = ACTIONS(5025), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubsection] = ACTIONS(5025), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5025), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5023), + [anon_sym_BSLASHparagraph] = ACTIONS(5025), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5023), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5025), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5023), + [anon_sym_BSLASHitem] = ACTIONS(5025), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5023), + [sym_word] = ACTIONS(5025), + [sym_placeholder] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5025), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_SLASH] = ACTIONS(5025), + [anon_sym_CARET] = ACTIONS(5025), + [anon_sym__] = ACTIONS(5025), + [anon_sym_LT] = ACTIONS(5025), + [anon_sym_GT] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5025), + [anon_sym_PIPE] = ACTIONS(5025), + [anon_sym_COLON] = ACTIONS(5025), + [anon_sym_SQUOTE] = ACTIONS(5025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(5025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), + [anon_sym_BSLASHbegin] = ACTIONS(5025), + [anon_sym_BSLASHend] = ACTIONS(5025), + [anon_sym_BSLASHusepackage] = ACTIONS(5025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), + [anon_sym_BSLASHinclude] = ACTIONS(5025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), + [anon_sym_BSLASHinput] = ACTIONS(5025), + [anon_sym_BSLASHsubfile] = ACTIONS(5025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), + [anon_sym_BSLASHbibliography] = ACTIONS(5025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), + [anon_sym_BSLASHincludesvg] = ACTIONS(5025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), + [anon_sym_BSLASHimport] = ACTIONS(5025), + [anon_sym_BSLASHsubimport] = ACTIONS(5025), + [anon_sym_BSLASHinputfrom] = ACTIONS(5025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), + [anon_sym_BSLASHincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHcaption] = ACTIONS(5025), + [anon_sym_BSLASHcite] = ACTIONS(5025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCite] = ACTIONS(5025), + [anon_sym_BSLASHnocite] = ACTIONS(5025), + [anon_sym_BSLASHcitet] = ACTIONS(5025), + [anon_sym_BSLASHcitep] = ACTIONS(5025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteauthor] = ACTIONS(5025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitetitle] = ACTIONS(5025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteyear] = ACTIONS(5025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitedate] = ACTIONS(5025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteurl] = ACTIONS(5025), + [anon_sym_BSLASHfullcite] = ACTIONS(5025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), + [anon_sym_BSLASHcitealt] = ACTIONS(5025), + [anon_sym_BSLASHcitealp] = ACTIONS(5025), + [anon_sym_BSLASHcitetext] = ACTIONS(5025), + [anon_sym_BSLASHparencite] = ACTIONS(5025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHParencite] = ACTIONS(5025), + [anon_sym_BSLASHfootcite] = ACTIONS(5025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), + [anon_sym_BSLASHtextcite] = ACTIONS(5025), + [anon_sym_BSLASHTextcite] = ACTIONS(5025), + [anon_sym_BSLASHsmartcite] = ACTIONS(5025), + [anon_sym_BSLASHSmartcite] = ACTIONS(5025), + [anon_sym_BSLASHsupercite] = ACTIONS(5025), + [anon_sym_BSLASHautocite] = ACTIONS(5025), + [anon_sym_BSLASHAutocite] = ACTIONS(5025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHvolcite] = ACTIONS(5025), + [anon_sym_BSLASHVolcite] = ACTIONS(5025), + [anon_sym_BSLASHpvolcite] = ACTIONS(5025), + [anon_sym_BSLASHPvolcite] = ACTIONS(5025), + [anon_sym_BSLASHfvolcite] = ACTIONS(5025), + [anon_sym_BSLASHftvolcite] = ACTIONS(5025), + [anon_sym_BSLASHsvolcite] = ACTIONS(5025), + [anon_sym_BSLASHSvolcite] = ACTIONS(5025), + [anon_sym_BSLASHtvolcite] = ACTIONS(5025), + [anon_sym_BSLASHTvolcite] = ACTIONS(5025), + [anon_sym_BSLASHavolcite] = ACTIONS(5025), + [anon_sym_BSLASHAvolcite] = ACTIONS(5025), + [anon_sym_BSLASHnotecite] = ACTIONS(5025), + [anon_sym_BSLASHNotecite] = ACTIONS(5025), + [anon_sym_BSLASHpnotecite] = ACTIONS(5025), + [anon_sym_BSLASHPnotecite] = ACTIONS(5025), + [anon_sym_BSLASHfnotecite] = ACTIONS(5025), + [anon_sym_BSLASHlabel] = ACTIONS(5025), + [anon_sym_BSLASHref] = ACTIONS(5025), + [anon_sym_BSLASHeqref] = ACTIONS(5025), + [anon_sym_BSLASHvref] = ACTIONS(5025), + [anon_sym_BSLASHVref] = ACTIONS(5025), + [anon_sym_BSLASHautoref] = ACTIONS(5025), + [anon_sym_BSLASHpageref] = ACTIONS(5025), + [anon_sym_BSLASHcref] = ACTIONS(5025), + [anon_sym_BSLASHCref] = ACTIONS(5025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnameCref] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHlabelcref] = ACTIONS(5025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCrefrange] = ACTIONS(5025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnewlabel] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), + [anon_sym_BSLASHdef] = ACTIONS(5025), + [anon_sym_BSLASHlet] = ACTIONS(5025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), + [anon_sym_BSLASHgls] = ACTIONS(5025), + [anon_sym_BSLASHGls] = ACTIONS(5025), + [anon_sym_BSLASHGLS] = ACTIONS(5025), + [anon_sym_BSLASHglspl] = ACTIONS(5025), + [anon_sym_BSLASHGlspl] = ACTIONS(5025), + [anon_sym_BSLASHGLSpl] = ACTIONS(5025), + [anon_sym_BSLASHglsdisp] = ACTIONS(5025), + [anon_sym_BSLASHglslink] = ACTIONS(5025), + [anon_sym_BSLASHglstext] = ACTIONS(5025), + [anon_sym_BSLASHGlstext] = ACTIONS(5025), + [anon_sym_BSLASHGLStext] = ACTIONS(5025), + [anon_sym_BSLASHglsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), + [anon_sym_BSLASHglsplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSplural] = ACTIONS(5025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHglsname] = ACTIONS(5025), + [anon_sym_BSLASHGlsname] = ACTIONS(5025), + [anon_sym_BSLASHGLSname] = ACTIONS(5025), + [anon_sym_BSLASHglssymbol] = ACTIONS(5025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), + [anon_sym_BSLASHglsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), + [anon_sym_BSLASHglsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), + [anon_sym_BSLASHglsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), + [anon_sym_BSLASHglsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), + [anon_sym_BSLASHglsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), + [anon_sym_BSLASHnewacronym] = ACTIONS(5025), + [anon_sym_BSLASHacrshort] = ACTIONS(5025), + [anon_sym_BSLASHAcrshort] = ACTIONS(5025), + [anon_sym_BSLASHACRshort] = ACTIONS(5025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), + [anon_sym_BSLASHacrlong] = ACTIONS(5025), + [anon_sym_BSLASHAcrlong] = ACTIONS(5025), + [anon_sym_BSLASHACRlong] = ACTIONS(5025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), + [anon_sym_BSLASHacrfull] = ACTIONS(5025), + [anon_sym_BSLASHAcrfull] = ACTIONS(5025), + [anon_sym_BSLASHACRfull] = ACTIONS(5025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), + [anon_sym_BSLASHacs] = ACTIONS(5025), + [anon_sym_BSLASHAcs] = ACTIONS(5025), + [anon_sym_BSLASHacsp] = ACTIONS(5025), + [anon_sym_BSLASHAcsp] = ACTIONS(5025), + [anon_sym_BSLASHacl] = ACTIONS(5025), + [anon_sym_BSLASHAcl] = ACTIONS(5025), + [anon_sym_BSLASHaclp] = ACTIONS(5025), + [anon_sym_BSLASHAclp] = ACTIONS(5025), + [anon_sym_BSLASHacf] = ACTIONS(5025), + [anon_sym_BSLASHAcf] = ACTIONS(5025), + [anon_sym_BSLASHacfp] = ACTIONS(5025), + [anon_sym_BSLASHAcfp] = ACTIONS(5025), + [anon_sym_BSLASHac] = ACTIONS(5025), + [anon_sym_BSLASHAc] = ACTIONS(5025), + [anon_sym_BSLASHacp] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), + [anon_sym_BSLASHcolor] = ACTIONS(5025), + [anon_sym_BSLASHcolorbox] = ACTIONS(5025), + [anon_sym_BSLASHtextcolor] = ACTIONS(5025), + [anon_sym_BSLASHpagecolor] = ACTIONS(5025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [anon_sym_BSLASHtext] = ACTIONS(5025), + [anon_sym_BSLASHintertext] = ACTIONS(5025), + [anon_sym_shortintertext] = ACTIONS(5025), }, - [1335] = { - [sym_command_name] = ACTIONS(5193), + [1206] = { + [sym_command_name] = ACTIONS(5029), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASHbegin] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [anon_sym_BSLASHiffalse] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_RBRACK] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_BSLASHpart] = ACTIONS(5029), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddpart] = ACTIONS(5029), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5027), + [anon_sym_BSLASHchapter] = ACTIONS(5029), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddchap] = ACTIONS(5029), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsection] = ACTIONS(5029), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHaddsec] = ACTIONS(5029), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubsection] = ACTIONS(5029), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5029), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5027), + [anon_sym_BSLASHparagraph] = ACTIONS(5029), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5027), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5029), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5027), + [anon_sym_BSLASHitem] = ACTIONS(5029), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5027), + [sym_word] = ACTIONS(5029), + [sym_placeholder] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_CARET] = ACTIONS(5029), + [anon_sym__] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_COLON] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), + [anon_sym_DOLLAR] = ACTIONS(5029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), + [anon_sym_BSLASHbegin] = ACTIONS(5029), + [anon_sym_BSLASHend] = ACTIONS(5029), + [anon_sym_BSLASHusepackage] = ACTIONS(5029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), + [anon_sym_BSLASHinclude] = ACTIONS(5029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), + [anon_sym_BSLASHinput] = ACTIONS(5029), + [anon_sym_BSLASHsubfile] = ACTIONS(5029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), + [anon_sym_BSLASHbibliography] = ACTIONS(5029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), + [anon_sym_BSLASHincludesvg] = ACTIONS(5029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), + [anon_sym_BSLASHimport] = ACTIONS(5029), + [anon_sym_BSLASHsubimport] = ACTIONS(5029), + [anon_sym_BSLASHinputfrom] = ACTIONS(5029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), + [anon_sym_BSLASHincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHcaption] = ACTIONS(5029), + [anon_sym_BSLASHcite] = ACTIONS(5029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCite] = ACTIONS(5029), + [anon_sym_BSLASHnocite] = ACTIONS(5029), + [anon_sym_BSLASHcitet] = ACTIONS(5029), + [anon_sym_BSLASHcitep] = ACTIONS(5029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteauthor] = ACTIONS(5029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitetitle] = ACTIONS(5029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteyear] = ACTIONS(5029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitedate] = ACTIONS(5029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteurl] = ACTIONS(5029), + [anon_sym_BSLASHfullcite] = ACTIONS(5029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), + [anon_sym_BSLASHcitealt] = ACTIONS(5029), + [anon_sym_BSLASHcitealp] = ACTIONS(5029), + [anon_sym_BSLASHcitetext] = ACTIONS(5029), + [anon_sym_BSLASHparencite] = ACTIONS(5029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHParencite] = ACTIONS(5029), + [anon_sym_BSLASHfootcite] = ACTIONS(5029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), + [anon_sym_BSLASHtextcite] = ACTIONS(5029), + [anon_sym_BSLASHTextcite] = ACTIONS(5029), + [anon_sym_BSLASHsmartcite] = ACTIONS(5029), + [anon_sym_BSLASHSmartcite] = ACTIONS(5029), + [anon_sym_BSLASHsupercite] = ACTIONS(5029), + [anon_sym_BSLASHautocite] = ACTIONS(5029), + [anon_sym_BSLASHAutocite] = ACTIONS(5029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHvolcite] = ACTIONS(5029), + [anon_sym_BSLASHVolcite] = ACTIONS(5029), + [anon_sym_BSLASHpvolcite] = ACTIONS(5029), + [anon_sym_BSLASHPvolcite] = ACTIONS(5029), + [anon_sym_BSLASHfvolcite] = ACTIONS(5029), + [anon_sym_BSLASHftvolcite] = ACTIONS(5029), + [anon_sym_BSLASHsvolcite] = ACTIONS(5029), + [anon_sym_BSLASHSvolcite] = ACTIONS(5029), + [anon_sym_BSLASHtvolcite] = ACTIONS(5029), + [anon_sym_BSLASHTvolcite] = ACTIONS(5029), + [anon_sym_BSLASHavolcite] = ACTIONS(5029), + [anon_sym_BSLASHAvolcite] = ACTIONS(5029), + [anon_sym_BSLASHnotecite] = ACTIONS(5029), + [anon_sym_BSLASHNotecite] = ACTIONS(5029), + [anon_sym_BSLASHpnotecite] = ACTIONS(5029), + [anon_sym_BSLASHPnotecite] = ACTIONS(5029), + [anon_sym_BSLASHfnotecite] = ACTIONS(5029), + [anon_sym_BSLASHlabel] = ACTIONS(5029), + [anon_sym_BSLASHref] = ACTIONS(5029), + [anon_sym_BSLASHeqref] = ACTIONS(5029), + [anon_sym_BSLASHvref] = ACTIONS(5029), + [anon_sym_BSLASHVref] = ACTIONS(5029), + [anon_sym_BSLASHautoref] = ACTIONS(5029), + [anon_sym_BSLASHpageref] = ACTIONS(5029), + [anon_sym_BSLASHcref] = ACTIONS(5029), + [anon_sym_BSLASHCref] = ACTIONS(5029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnameCref] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHlabelcref] = ACTIONS(5029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCrefrange] = ACTIONS(5029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnewlabel] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), + [anon_sym_BSLASHdef] = ACTIONS(5029), + [anon_sym_BSLASHlet] = ACTIONS(5029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), + [anon_sym_BSLASHgls] = ACTIONS(5029), + [anon_sym_BSLASHGls] = ACTIONS(5029), + [anon_sym_BSLASHGLS] = ACTIONS(5029), + [anon_sym_BSLASHglspl] = ACTIONS(5029), + [anon_sym_BSLASHGlspl] = ACTIONS(5029), + [anon_sym_BSLASHGLSpl] = ACTIONS(5029), + [anon_sym_BSLASHglsdisp] = ACTIONS(5029), + [anon_sym_BSLASHglslink] = ACTIONS(5029), + [anon_sym_BSLASHglstext] = ACTIONS(5029), + [anon_sym_BSLASHGlstext] = ACTIONS(5029), + [anon_sym_BSLASHGLStext] = ACTIONS(5029), + [anon_sym_BSLASHglsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), + [anon_sym_BSLASHglsplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSplural] = ACTIONS(5029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHglsname] = ACTIONS(5029), + [anon_sym_BSLASHGlsname] = ACTIONS(5029), + [anon_sym_BSLASHGLSname] = ACTIONS(5029), + [anon_sym_BSLASHglssymbol] = ACTIONS(5029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), + [anon_sym_BSLASHglsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), + [anon_sym_BSLASHglsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), + [anon_sym_BSLASHglsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), + [anon_sym_BSLASHglsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), + [anon_sym_BSLASHglsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), + [anon_sym_BSLASHnewacronym] = ACTIONS(5029), + [anon_sym_BSLASHacrshort] = ACTIONS(5029), + [anon_sym_BSLASHAcrshort] = ACTIONS(5029), + [anon_sym_BSLASHACRshort] = ACTIONS(5029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), + [anon_sym_BSLASHacrlong] = ACTIONS(5029), + [anon_sym_BSLASHAcrlong] = ACTIONS(5029), + [anon_sym_BSLASHACRlong] = ACTIONS(5029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), + [anon_sym_BSLASHacrfull] = ACTIONS(5029), + [anon_sym_BSLASHAcrfull] = ACTIONS(5029), + [anon_sym_BSLASHACRfull] = ACTIONS(5029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), + [anon_sym_BSLASHacs] = ACTIONS(5029), + [anon_sym_BSLASHAcs] = ACTIONS(5029), + [anon_sym_BSLASHacsp] = ACTIONS(5029), + [anon_sym_BSLASHAcsp] = ACTIONS(5029), + [anon_sym_BSLASHacl] = ACTIONS(5029), + [anon_sym_BSLASHAcl] = ACTIONS(5029), + [anon_sym_BSLASHaclp] = ACTIONS(5029), + [anon_sym_BSLASHAclp] = ACTIONS(5029), + [anon_sym_BSLASHacf] = ACTIONS(5029), + [anon_sym_BSLASHAcf] = ACTIONS(5029), + [anon_sym_BSLASHacfp] = ACTIONS(5029), + [anon_sym_BSLASHAcfp] = ACTIONS(5029), + [anon_sym_BSLASHac] = ACTIONS(5029), + [anon_sym_BSLASHAc] = ACTIONS(5029), + [anon_sym_BSLASHacp] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), + [anon_sym_BSLASHcolor] = ACTIONS(5029), + [anon_sym_BSLASHcolorbox] = ACTIONS(5029), + [anon_sym_BSLASHtextcolor] = ACTIONS(5029), + [anon_sym_BSLASHpagecolor] = ACTIONS(5029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), + [anon_sym_BSLASHtext] = ACTIONS(5029), + [anon_sym_BSLASHintertext] = ACTIONS(5029), + [anon_sym_shortintertext] = ACTIONS(5029), }, - [1336] = { - [sym_command_name] = ACTIONS(5201), + [1207] = { + [sym_command_name] = ACTIONS(5119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_BSLASHpart] = ACTIONS(5119), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddpart] = ACTIONS(5119), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5117), + [anon_sym_BSLASHchapter] = ACTIONS(5119), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddchap] = ACTIONS(5119), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsection] = ACTIONS(5119), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHaddsec] = ACTIONS(5119), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubsection] = ACTIONS(5119), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5119), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5117), + [anon_sym_BSLASHparagraph] = ACTIONS(5119), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5117), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5119), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5117), + [anon_sym_BSLASHitem] = ACTIONS(5119), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5117), + [sym_word] = ACTIONS(5119), + [sym_placeholder] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5119), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_CARET] = ACTIONS(5119), + [anon_sym__] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_COLON] = ACTIONS(5119), + [anon_sym_SQUOTE] = ACTIONS(5119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), + [anon_sym_DOLLAR] = ACTIONS(5119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), + [anon_sym_BSLASHbegin] = ACTIONS(5119), + [anon_sym_BSLASHend] = ACTIONS(5119), + [anon_sym_BSLASHusepackage] = ACTIONS(5119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), + [anon_sym_BSLASHinclude] = ACTIONS(5119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), + [anon_sym_BSLASHinput] = ACTIONS(5119), + [anon_sym_BSLASHsubfile] = ACTIONS(5119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), + [anon_sym_BSLASHbibliography] = ACTIONS(5119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), + [anon_sym_BSLASHincludesvg] = ACTIONS(5119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), + [anon_sym_BSLASHimport] = ACTIONS(5119), + [anon_sym_BSLASHsubimport] = ACTIONS(5119), + [anon_sym_BSLASHinputfrom] = ACTIONS(5119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), + [anon_sym_BSLASHincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHcaption] = ACTIONS(5119), + [anon_sym_BSLASHcite] = ACTIONS(5119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCite] = ACTIONS(5119), + [anon_sym_BSLASHnocite] = ACTIONS(5119), + [anon_sym_BSLASHcitet] = ACTIONS(5119), + [anon_sym_BSLASHcitep] = ACTIONS(5119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteauthor] = ACTIONS(5119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitetitle] = ACTIONS(5119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteyear] = ACTIONS(5119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitedate] = ACTIONS(5119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteurl] = ACTIONS(5119), + [anon_sym_BSLASHfullcite] = ACTIONS(5119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), + [anon_sym_BSLASHcitealt] = ACTIONS(5119), + [anon_sym_BSLASHcitealp] = ACTIONS(5119), + [anon_sym_BSLASHcitetext] = ACTIONS(5119), + [anon_sym_BSLASHparencite] = ACTIONS(5119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHParencite] = ACTIONS(5119), + [anon_sym_BSLASHfootcite] = ACTIONS(5119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), + [anon_sym_BSLASHtextcite] = ACTIONS(5119), + [anon_sym_BSLASHTextcite] = ACTIONS(5119), + [anon_sym_BSLASHsmartcite] = ACTIONS(5119), + [anon_sym_BSLASHSmartcite] = ACTIONS(5119), + [anon_sym_BSLASHsupercite] = ACTIONS(5119), + [anon_sym_BSLASHautocite] = ACTIONS(5119), + [anon_sym_BSLASHAutocite] = ACTIONS(5119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHvolcite] = ACTIONS(5119), + [anon_sym_BSLASHVolcite] = ACTIONS(5119), + [anon_sym_BSLASHpvolcite] = ACTIONS(5119), + [anon_sym_BSLASHPvolcite] = ACTIONS(5119), + [anon_sym_BSLASHfvolcite] = ACTIONS(5119), + [anon_sym_BSLASHftvolcite] = ACTIONS(5119), + [anon_sym_BSLASHsvolcite] = ACTIONS(5119), + [anon_sym_BSLASHSvolcite] = ACTIONS(5119), + [anon_sym_BSLASHtvolcite] = ACTIONS(5119), + [anon_sym_BSLASHTvolcite] = ACTIONS(5119), + [anon_sym_BSLASHavolcite] = ACTIONS(5119), + [anon_sym_BSLASHAvolcite] = ACTIONS(5119), + [anon_sym_BSLASHnotecite] = ACTIONS(5119), + [anon_sym_BSLASHNotecite] = ACTIONS(5119), + [anon_sym_BSLASHpnotecite] = ACTIONS(5119), + [anon_sym_BSLASHPnotecite] = ACTIONS(5119), + [anon_sym_BSLASHfnotecite] = ACTIONS(5119), + [anon_sym_BSLASHlabel] = ACTIONS(5119), + [anon_sym_BSLASHref] = ACTIONS(5119), + [anon_sym_BSLASHeqref] = ACTIONS(5119), + [anon_sym_BSLASHvref] = ACTIONS(5119), + [anon_sym_BSLASHVref] = ACTIONS(5119), + [anon_sym_BSLASHautoref] = ACTIONS(5119), + [anon_sym_BSLASHpageref] = ACTIONS(5119), + [anon_sym_BSLASHcref] = ACTIONS(5119), + [anon_sym_BSLASHCref] = ACTIONS(5119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnameCref] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHlabelcref] = ACTIONS(5119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCrefrange] = ACTIONS(5119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnewlabel] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), + [anon_sym_BSLASHdef] = ACTIONS(5119), + [anon_sym_BSLASHlet] = ACTIONS(5119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), + [anon_sym_BSLASHgls] = ACTIONS(5119), + [anon_sym_BSLASHGls] = ACTIONS(5119), + [anon_sym_BSLASHGLS] = ACTIONS(5119), + [anon_sym_BSLASHglspl] = ACTIONS(5119), + [anon_sym_BSLASHGlspl] = ACTIONS(5119), + [anon_sym_BSLASHGLSpl] = ACTIONS(5119), + [anon_sym_BSLASHglsdisp] = ACTIONS(5119), + [anon_sym_BSLASHglslink] = ACTIONS(5119), + [anon_sym_BSLASHglstext] = ACTIONS(5119), + [anon_sym_BSLASHGlstext] = ACTIONS(5119), + [anon_sym_BSLASHGLStext] = ACTIONS(5119), + [anon_sym_BSLASHglsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), + [anon_sym_BSLASHglsplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSplural] = ACTIONS(5119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHglsname] = ACTIONS(5119), + [anon_sym_BSLASHGlsname] = ACTIONS(5119), + [anon_sym_BSLASHGLSname] = ACTIONS(5119), + [anon_sym_BSLASHglssymbol] = ACTIONS(5119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), + [anon_sym_BSLASHglsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), + [anon_sym_BSLASHglsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), + [anon_sym_BSLASHglsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), + [anon_sym_BSLASHglsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), + [anon_sym_BSLASHglsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), + [anon_sym_BSLASHnewacronym] = ACTIONS(5119), + [anon_sym_BSLASHacrshort] = ACTIONS(5119), + [anon_sym_BSLASHAcrshort] = ACTIONS(5119), + [anon_sym_BSLASHACRshort] = ACTIONS(5119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), + [anon_sym_BSLASHacrlong] = ACTIONS(5119), + [anon_sym_BSLASHAcrlong] = ACTIONS(5119), + [anon_sym_BSLASHACRlong] = ACTIONS(5119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), + [anon_sym_BSLASHacrfull] = ACTIONS(5119), + [anon_sym_BSLASHAcrfull] = ACTIONS(5119), + [anon_sym_BSLASHACRfull] = ACTIONS(5119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), + [anon_sym_BSLASHacs] = ACTIONS(5119), + [anon_sym_BSLASHAcs] = ACTIONS(5119), + [anon_sym_BSLASHacsp] = ACTIONS(5119), + [anon_sym_BSLASHAcsp] = ACTIONS(5119), + [anon_sym_BSLASHacl] = ACTIONS(5119), + [anon_sym_BSLASHAcl] = ACTIONS(5119), + [anon_sym_BSLASHaclp] = ACTIONS(5119), + [anon_sym_BSLASHAclp] = ACTIONS(5119), + [anon_sym_BSLASHacf] = ACTIONS(5119), + [anon_sym_BSLASHAcf] = ACTIONS(5119), + [anon_sym_BSLASHacfp] = ACTIONS(5119), + [anon_sym_BSLASHAcfp] = ACTIONS(5119), + [anon_sym_BSLASHac] = ACTIONS(5119), + [anon_sym_BSLASHAc] = ACTIONS(5119), + [anon_sym_BSLASHacp] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), + [anon_sym_BSLASHcolor] = ACTIONS(5119), + [anon_sym_BSLASHcolorbox] = ACTIONS(5119), + [anon_sym_BSLASHtextcolor] = ACTIONS(5119), + [anon_sym_BSLASHpagecolor] = ACTIONS(5119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), + [anon_sym_BSLASHtext] = ACTIONS(5119), + [anon_sym_BSLASHintertext] = ACTIONS(5119), + [anon_sym_shortintertext] = ACTIONS(5119), + }, + [1208] = { + [sym_command_name] = ACTIONS(5033), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASHbegin] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), - }, - [1337] = { - [sym_command_name] = ACTIONS(5231), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5231), - [anon_sym_LPAREN] = ACTIONS(5229), - [anon_sym_RPAREN] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_RBRACK] = ACTIONS(5229), - [anon_sym_COMMA] = ACTIONS(5229), - [anon_sym_EQ] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5229), - [sym_word] = ACTIONS(5231), - [sym_placeholder] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_SLASH] = ACTIONS(5231), - [anon_sym_CARET] = ACTIONS(5231), - [anon_sym__] = ACTIONS(5231), - [anon_sym_LT] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5231), - [anon_sym_BANG] = ACTIONS(5231), - [anon_sym_PIPE] = ACTIONS(5231), - [anon_sym_COLON] = ACTIONS(5231), - [anon_sym_SQUOTE] = ACTIONS(5231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), - [anon_sym_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), - [anon_sym_BSLASHbegin] = ACTIONS(5231), - [anon_sym_BSLASHusepackage] = ACTIONS(5231), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), - [anon_sym_BSLASHinclude] = ACTIONS(5231), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), - [anon_sym_BSLASHinput] = ACTIONS(5231), - [anon_sym_BSLASHsubfile] = ACTIONS(5231), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), - [anon_sym_BSLASHbibliography] = ACTIONS(5231), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), - [anon_sym_BSLASHincludesvg] = ACTIONS(5231), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), - [anon_sym_BSLASHimport] = ACTIONS(5231), - [anon_sym_BSLASHsubimport] = ACTIONS(5231), - [anon_sym_BSLASHinputfrom] = ACTIONS(5231), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), - [anon_sym_BSLASHincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHcaption] = ACTIONS(5231), - [anon_sym_BSLASHcite] = ACTIONS(5231), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCite] = ACTIONS(5231), - [anon_sym_BSLASHnocite] = ACTIONS(5231), - [anon_sym_BSLASHcitet] = ACTIONS(5231), - [anon_sym_BSLASHcitep] = ACTIONS(5231), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteyear] = ACTIONS(5231), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitedate] = ACTIONS(5231), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteurl] = ACTIONS(5231), - [anon_sym_BSLASHfullcite] = ACTIONS(5231), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), - [anon_sym_BSLASHcitealt] = ACTIONS(5231), - [anon_sym_BSLASHcitealp] = ACTIONS(5231), - [anon_sym_BSLASHcitetext] = ACTIONS(5231), - [anon_sym_BSLASHparencite] = ACTIONS(5231), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHParencite] = ACTIONS(5231), - [anon_sym_BSLASHfootcite] = ACTIONS(5231), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), - [anon_sym_BSLASHtextcite] = ACTIONS(5231), - [anon_sym_BSLASHTextcite] = ACTIONS(5231), - [anon_sym_BSLASHsmartcite] = ACTIONS(5231), - [anon_sym_BSLASHSmartcite] = ACTIONS(5231), - [anon_sym_BSLASHsupercite] = ACTIONS(5231), - [anon_sym_BSLASHautocite] = ACTIONS(5231), - [anon_sym_BSLASHAutocite] = ACTIONS(5231), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHvolcite] = ACTIONS(5231), - [anon_sym_BSLASHVolcite] = ACTIONS(5231), - [anon_sym_BSLASHpvolcite] = ACTIONS(5231), - [anon_sym_BSLASHPvolcite] = ACTIONS(5231), - [anon_sym_BSLASHfvolcite] = ACTIONS(5231), - [anon_sym_BSLASHftvolcite] = ACTIONS(5231), - [anon_sym_BSLASHsvolcite] = ACTIONS(5231), - [anon_sym_BSLASHSvolcite] = ACTIONS(5231), - [anon_sym_BSLASHtvolcite] = ACTIONS(5231), - [anon_sym_BSLASHTvolcite] = ACTIONS(5231), - [anon_sym_BSLASHavolcite] = ACTIONS(5231), - [anon_sym_BSLASHAvolcite] = ACTIONS(5231), - [anon_sym_BSLASHnotecite] = ACTIONS(5231), - [anon_sym_BSLASHNotecite] = ACTIONS(5231), - [anon_sym_BSLASHpnotecite] = ACTIONS(5231), - [anon_sym_BSLASHPnotecite] = ACTIONS(5231), - [anon_sym_BSLASHfnotecite] = ACTIONS(5231), - [anon_sym_BSLASHlabel] = ACTIONS(5231), - [anon_sym_BSLASHref] = ACTIONS(5231), - [anon_sym_BSLASHeqref] = ACTIONS(5231), - [anon_sym_BSLASHvref] = ACTIONS(5231), - [anon_sym_BSLASHVref] = ACTIONS(5231), - [anon_sym_BSLASHautoref] = ACTIONS(5231), - [anon_sym_BSLASHpageref] = ACTIONS(5231), - [anon_sym_BSLASHcref] = ACTIONS(5231), - [anon_sym_BSLASHCref] = ACTIONS(5231), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnameCref] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHlabelcref] = ACTIONS(5231), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnewlabel] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), - [anon_sym_BSLASHdef] = ACTIONS(5231), - [anon_sym_BSLASHlet] = ACTIONS(5231), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), - [anon_sym_BSLASHgls] = ACTIONS(5231), - [anon_sym_BSLASHGls] = ACTIONS(5231), - [anon_sym_BSLASHGLS] = ACTIONS(5231), - [anon_sym_BSLASHglspl] = ACTIONS(5231), - [anon_sym_BSLASHGlspl] = ACTIONS(5231), - [anon_sym_BSLASHGLSpl] = ACTIONS(5231), - [anon_sym_BSLASHglsdisp] = ACTIONS(5231), - [anon_sym_BSLASHglslink] = ACTIONS(5231), - [anon_sym_BSLASHglstext] = ACTIONS(5231), - [anon_sym_BSLASHGlstext] = ACTIONS(5231), - [anon_sym_BSLASHGLStext] = ACTIONS(5231), - [anon_sym_BSLASHglsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), - [anon_sym_BSLASHglsplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSplural] = ACTIONS(5231), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHglsname] = ACTIONS(5231), - [anon_sym_BSLASHGlsname] = ACTIONS(5231), - [anon_sym_BSLASHGLSname] = ACTIONS(5231), - [anon_sym_BSLASHglssymbol] = ACTIONS(5231), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), - [anon_sym_BSLASHglsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), - [anon_sym_BSLASHglsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), - [anon_sym_BSLASHglsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), - [anon_sym_BSLASHglsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), - [anon_sym_BSLASHglsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), - [anon_sym_BSLASHnewacronym] = ACTIONS(5231), - [anon_sym_BSLASHacrshort] = ACTIONS(5231), - [anon_sym_BSLASHAcrshort] = ACTIONS(5231), - [anon_sym_BSLASHACRshort] = ACTIONS(5231), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), - [anon_sym_BSLASHacrlong] = ACTIONS(5231), - [anon_sym_BSLASHAcrlong] = ACTIONS(5231), - [anon_sym_BSLASHACRlong] = ACTIONS(5231), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), - [anon_sym_BSLASHacrfull] = ACTIONS(5231), - [anon_sym_BSLASHAcrfull] = ACTIONS(5231), - [anon_sym_BSLASHACRfull] = ACTIONS(5231), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), - [anon_sym_BSLASHacs] = ACTIONS(5231), - [anon_sym_BSLASHAcs] = ACTIONS(5231), - [anon_sym_BSLASHacsp] = ACTIONS(5231), - [anon_sym_BSLASHAcsp] = ACTIONS(5231), - [anon_sym_BSLASHacl] = ACTIONS(5231), - [anon_sym_BSLASHAcl] = ACTIONS(5231), - [anon_sym_BSLASHaclp] = ACTIONS(5231), - [anon_sym_BSLASHAclp] = ACTIONS(5231), - [anon_sym_BSLASHacf] = ACTIONS(5231), - [anon_sym_BSLASHAcf] = ACTIONS(5231), - [anon_sym_BSLASHacfp] = ACTIONS(5231), - [anon_sym_BSLASHAcfp] = ACTIONS(5231), - [anon_sym_BSLASHac] = ACTIONS(5231), - [anon_sym_BSLASHAc] = ACTIONS(5231), - [anon_sym_BSLASHacp] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), - [anon_sym_BSLASHcolor] = ACTIONS(5231), - [anon_sym_BSLASHcolorbox] = ACTIONS(5231), - [anon_sym_BSLASHtextcolor] = ACTIONS(5231), - [anon_sym_BSLASHpagecolor] = ACTIONS(5231), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), - }, - [1338] = { - [sym_command_name] = ACTIONS(4941), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4939), - [anon_sym_RBRACK] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [sym_word] = ACTIONS(4941), - [sym_placeholder] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4941), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_STAR] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym__] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4941), - [anon_sym_BANG] = ACTIONS(4941), - [anon_sym_PIPE] = ACTIONS(4941), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4941), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4939), - [anon_sym_BSLASHbegin] = ACTIONS(4941), - [anon_sym_BSLASHusepackage] = ACTIONS(4941), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4941), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4941), - [anon_sym_BSLASHinclude] = ACTIONS(4941), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4941), - [anon_sym_BSLASHinput] = ACTIONS(4941), - [anon_sym_BSLASHsubfile] = ACTIONS(4941), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4941), - [anon_sym_BSLASHbibliography] = ACTIONS(4941), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4941), - [anon_sym_BSLASHincludesvg] = ACTIONS(4941), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4941), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4941), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4941), - [anon_sym_BSLASHimport] = ACTIONS(4941), - [anon_sym_BSLASHsubimport] = ACTIONS(4941), - [anon_sym_BSLASHinputfrom] = ACTIONS(4941), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4941), - [anon_sym_BSLASHincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHcaption] = ACTIONS(4941), - [anon_sym_BSLASHcite] = ACTIONS(4941), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCite] = ACTIONS(4941), - [anon_sym_BSLASHnocite] = ACTIONS(4941), - [anon_sym_BSLASHcitet] = ACTIONS(4941), - [anon_sym_BSLASHcitep] = ACTIONS(4941), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteyear] = ACTIONS(4941), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitedate] = ACTIONS(4941), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteurl] = ACTIONS(4941), - [anon_sym_BSLASHfullcite] = ACTIONS(4941), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4941), - [anon_sym_BSLASHcitealt] = ACTIONS(4941), - [anon_sym_BSLASHcitealp] = ACTIONS(4941), - [anon_sym_BSLASHcitetext] = ACTIONS(4941), - [anon_sym_BSLASHparencite] = ACTIONS(4941), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHParencite] = ACTIONS(4941), - [anon_sym_BSLASHfootcite] = ACTIONS(4941), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4941), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4941), - [anon_sym_BSLASHtextcite] = ACTIONS(4941), - [anon_sym_BSLASHTextcite] = ACTIONS(4941), - [anon_sym_BSLASHsmartcite] = ACTIONS(4941), - [anon_sym_BSLASHSmartcite] = ACTIONS(4941), - [anon_sym_BSLASHsupercite] = ACTIONS(4941), - [anon_sym_BSLASHautocite] = ACTIONS(4941), - [anon_sym_BSLASHAutocite] = ACTIONS(4941), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHvolcite] = ACTIONS(4941), - [anon_sym_BSLASHVolcite] = ACTIONS(4941), - [anon_sym_BSLASHpvolcite] = ACTIONS(4941), - [anon_sym_BSLASHPvolcite] = ACTIONS(4941), - [anon_sym_BSLASHfvolcite] = ACTIONS(4941), - [anon_sym_BSLASHftvolcite] = ACTIONS(4941), - [anon_sym_BSLASHsvolcite] = ACTIONS(4941), - [anon_sym_BSLASHSvolcite] = ACTIONS(4941), - [anon_sym_BSLASHtvolcite] = ACTIONS(4941), - [anon_sym_BSLASHTvolcite] = ACTIONS(4941), - [anon_sym_BSLASHavolcite] = ACTIONS(4941), - [anon_sym_BSLASHAvolcite] = ACTIONS(4941), - [anon_sym_BSLASHnotecite] = ACTIONS(4941), - [anon_sym_BSLASHNotecite] = ACTIONS(4941), - [anon_sym_BSLASHpnotecite] = ACTIONS(4941), - [anon_sym_BSLASHPnotecite] = ACTIONS(4941), - [anon_sym_BSLASHfnotecite] = ACTIONS(4941), - [anon_sym_BSLASHlabel] = ACTIONS(4941), - [anon_sym_BSLASHref] = ACTIONS(4941), - [anon_sym_BSLASHeqref] = ACTIONS(4941), - [anon_sym_BSLASHvref] = ACTIONS(4941), - [anon_sym_BSLASHVref] = ACTIONS(4941), - [anon_sym_BSLASHautoref] = ACTIONS(4941), - [anon_sym_BSLASHpageref] = ACTIONS(4941), - [anon_sym_BSLASHcref] = ACTIONS(4941), - [anon_sym_BSLASHCref] = ACTIONS(4941), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnameCref] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHlabelcref] = ACTIONS(4941), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnewlabel] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4939), - [anon_sym_BSLASHdef] = ACTIONS(4941), - [anon_sym_BSLASHlet] = ACTIONS(4941), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4941), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4941), - [anon_sym_BSLASHgls] = ACTIONS(4941), - [anon_sym_BSLASHGls] = ACTIONS(4941), - [anon_sym_BSLASHGLS] = ACTIONS(4941), - [anon_sym_BSLASHglspl] = ACTIONS(4941), - [anon_sym_BSLASHGlspl] = ACTIONS(4941), - [anon_sym_BSLASHGLSpl] = ACTIONS(4941), - [anon_sym_BSLASHglsdisp] = ACTIONS(4941), - [anon_sym_BSLASHglslink] = ACTIONS(4941), - [anon_sym_BSLASHglstext] = ACTIONS(4941), - [anon_sym_BSLASHGlstext] = ACTIONS(4941), - [anon_sym_BSLASHGLStext] = ACTIONS(4941), - [anon_sym_BSLASHglsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4941), - [anon_sym_BSLASHglsplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSplural] = ACTIONS(4941), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHglsname] = ACTIONS(4941), - [anon_sym_BSLASHGlsname] = ACTIONS(4941), - [anon_sym_BSLASHGLSname] = ACTIONS(4941), - [anon_sym_BSLASHglssymbol] = ACTIONS(4941), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4941), - [anon_sym_BSLASHglsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4941), - [anon_sym_BSLASHglsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4941), - [anon_sym_BSLASHglsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4941), - [anon_sym_BSLASHglsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4941), - [anon_sym_BSLASHglsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4941), - [anon_sym_BSLASHnewacronym] = ACTIONS(4941), - [anon_sym_BSLASHacrshort] = ACTIONS(4941), - [anon_sym_BSLASHAcrshort] = ACTIONS(4941), - [anon_sym_BSLASHACRshort] = ACTIONS(4941), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4941), - [anon_sym_BSLASHacrlong] = ACTIONS(4941), - [anon_sym_BSLASHAcrlong] = ACTIONS(4941), - [anon_sym_BSLASHACRlong] = ACTIONS(4941), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4941), - [anon_sym_BSLASHacrfull] = ACTIONS(4941), - [anon_sym_BSLASHAcrfull] = ACTIONS(4941), - [anon_sym_BSLASHACRfull] = ACTIONS(4941), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4941), - [anon_sym_BSLASHacs] = ACTIONS(4941), - [anon_sym_BSLASHAcs] = ACTIONS(4941), - [anon_sym_BSLASHacsp] = ACTIONS(4941), - [anon_sym_BSLASHAcsp] = ACTIONS(4941), - [anon_sym_BSLASHacl] = ACTIONS(4941), - [anon_sym_BSLASHAcl] = ACTIONS(4941), - [anon_sym_BSLASHaclp] = ACTIONS(4941), - [anon_sym_BSLASHAclp] = ACTIONS(4941), - [anon_sym_BSLASHacf] = ACTIONS(4941), - [anon_sym_BSLASHAcf] = ACTIONS(4941), - [anon_sym_BSLASHacfp] = ACTIONS(4941), - [anon_sym_BSLASHAcfp] = ACTIONS(4941), - [anon_sym_BSLASHac] = ACTIONS(4941), - [anon_sym_BSLASHAc] = ACTIONS(4941), - [anon_sym_BSLASHacp] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4941), - [anon_sym_BSLASHcolor] = ACTIONS(4941), - [anon_sym_BSLASHcolorbox] = ACTIONS(4941), - [anon_sym_BSLASHtextcolor] = ACTIONS(4941), - [anon_sym_BSLASHpagecolor] = ACTIONS(4941), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4941), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4941), + [anon_sym_BSLASHiffalse] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_BSLASHpart] = ACTIONS(5033), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddpart] = ACTIONS(5033), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5031), + [anon_sym_BSLASHchapter] = ACTIONS(5033), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddchap] = ACTIONS(5033), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsection] = ACTIONS(5033), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHaddsec] = ACTIONS(5033), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubsection] = ACTIONS(5033), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5033), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5031), + [anon_sym_BSLASHparagraph] = ACTIONS(5033), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5031), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5033), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5031), + [anon_sym_BSLASHitem] = ACTIONS(5033), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5031), + [sym_word] = ACTIONS(5033), + [sym_placeholder] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5033), + [anon_sym_DASH] = ACTIONS(5033), + [anon_sym_STAR] = ACTIONS(5033), + [anon_sym_SLASH] = ACTIONS(5033), + [anon_sym_CARET] = ACTIONS(5033), + [anon_sym__] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5033), + [anon_sym_PIPE] = ACTIONS(5033), + [anon_sym_COLON] = ACTIONS(5033), + [anon_sym_SQUOTE] = ACTIONS(5033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), + [anon_sym_DOLLAR] = ACTIONS(5033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), + [anon_sym_BSLASHbegin] = ACTIONS(5033), + [anon_sym_BSLASHend] = ACTIONS(5033), + [anon_sym_BSLASHusepackage] = ACTIONS(5033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), + [anon_sym_BSLASHinclude] = ACTIONS(5033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), + [anon_sym_BSLASHinput] = ACTIONS(5033), + [anon_sym_BSLASHsubfile] = ACTIONS(5033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), + [anon_sym_BSLASHbibliography] = ACTIONS(5033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), + [anon_sym_BSLASHincludesvg] = ACTIONS(5033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), + [anon_sym_BSLASHimport] = ACTIONS(5033), + [anon_sym_BSLASHsubimport] = ACTIONS(5033), + [anon_sym_BSLASHinputfrom] = ACTIONS(5033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), + [anon_sym_BSLASHincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHcaption] = ACTIONS(5033), + [anon_sym_BSLASHcite] = ACTIONS(5033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCite] = ACTIONS(5033), + [anon_sym_BSLASHnocite] = ACTIONS(5033), + [anon_sym_BSLASHcitet] = ACTIONS(5033), + [anon_sym_BSLASHcitep] = ACTIONS(5033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteauthor] = ACTIONS(5033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitetitle] = ACTIONS(5033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteyear] = ACTIONS(5033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitedate] = ACTIONS(5033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteurl] = ACTIONS(5033), + [anon_sym_BSLASHfullcite] = ACTIONS(5033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), + [anon_sym_BSLASHcitealt] = ACTIONS(5033), + [anon_sym_BSLASHcitealp] = ACTIONS(5033), + [anon_sym_BSLASHcitetext] = ACTIONS(5033), + [anon_sym_BSLASHparencite] = ACTIONS(5033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHParencite] = ACTIONS(5033), + [anon_sym_BSLASHfootcite] = ACTIONS(5033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), + [anon_sym_BSLASHtextcite] = ACTIONS(5033), + [anon_sym_BSLASHTextcite] = ACTIONS(5033), + [anon_sym_BSLASHsmartcite] = ACTIONS(5033), + [anon_sym_BSLASHSmartcite] = ACTIONS(5033), + [anon_sym_BSLASHsupercite] = ACTIONS(5033), + [anon_sym_BSLASHautocite] = ACTIONS(5033), + [anon_sym_BSLASHAutocite] = ACTIONS(5033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHvolcite] = ACTIONS(5033), + [anon_sym_BSLASHVolcite] = ACTIONS(5033), + [anon_sym_BSLASHpvolcite] = ACTIONS(5033), + [anon_sym_BSLASHPvolcite] = ACTIONS(5033), + [anon_sym_BSLASHfvolcite] = ACTIONS(5033), + [anon_sym_BSLASHftvolcite] = ACTIONS(5033), + [anon_sym_BSLASHsvolcite] = ACTIONS(5033), + [anon_sym_BSLASHSvolcite] = ACTIONS(5033), + [anon_sym_BSLASHtvolcite] = ACTIONS(5033), + [anon_sym_BSLASHTvolcite] = ACTIONS(5033), + [anon_sym_BSLASHavolcite] = ACTIONS(5033), + [anon_sym_BSLASHAvolcite] = ACTIONS(5033), + [anon_sym_BSLASHnotecite] = ACTIONS(5033), + [anon_sym_BSLASHNotecite] = ACTIONS(5033), + [anon_sym_BSLASHpnotecite] = ACTIONS(5033), + [anon_sym_BSLASHPnotecite] = ACTIONS(5033), + [anon_sym_BSLASHfnotecite] = ACTIONS(5033), + [anon_sym_BSLASHlabel] = ACTIONS(5033), + [anon_sym_BSLASHref] = ACTIONS(5033), + [anon_sym_BSLASHeqref] = ACTIONS(5033), + [anon_sym_BSLASHvref] = ACTIONS(5033), + [anon_sym_BSLASHVref] = ACTIONS(5033), + [anon_sym_BSLASHautoref] = ACTIONS(5033), + [anon_sym_BSLASHpageref] = ACTIONS(5033), + [anon_sym_BSLASHcref] = ACTIONS(5033), + [anon_sym_BSLASHCref] = ACTIONS(5033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnameCref] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHlabelcref] = ACTIONS(5033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCrefrange] = ACTIONS(5033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnewlabel] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), + [anon_sym_BSLASHdef] = ACTIONS(5033), + [anon_sym_BSLASHlet] = ACTIONS(5033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), + [anon_sym_BSLASHgls] = ACTIONS(5033), + [anon_sym_BSLASHGls] = ACTIONS(5033), + [anon_sym_BSLASHGLS] = ACTIONS(5033), + [anon_sym_BSLASHglspl] = ACTIONS(5033), + [anon_sym_BSLASHGlspl] = ACTIONS(5033), + [anon_sym_BSLASHGLSpl] = ACTIONS(5033), + [anon_sym_BSLASHglsdisp] = ACTIONS(5033), + [anon_sym_BSLASHglslink] = ACTIONS(5033), + [anon_sym_BSLASHglstext] = ACTIONS(5033), + [anon_sym_BSLASHGlstext] = ACTIONS(5033), + [anon_sym_BSLASHGLStext] = ACTIONS(5033), + [anon_sym_BSLASHglsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), + [anon_sym_BSLASHglsplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSplural] = ACTIONS(5033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHglsname] = ACTIONS(5033), + [anon_sym_BSLASHGlsname] = ACTIONS(5033), + [anon_sym_BSLASHGLSname] = ACTIONS(5033), + [anon_sym_BSLASHglssymbol] = ACTIONS(5033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), + [anon_sym_BSLASHglsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), + [anon_sym_BSLASHglsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), + [anon_sym_BSLASHglsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), + [anon_sym_BSLASHglsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), + [anon_sym_BSLASHglsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), + [anon_sym_BSLASHnewacronym] = ACTIONS(5033), + [anon_sym_BSLASHacrshort] = ACTIONS(5033), + [anon_sym_BSLASHAcrshort] = ACTIONS(5033), + [anon_sym_BSLASHACRshort] = ACTIONS(5033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), + [anon_sym_BSLASHacrlong] = ACTIONS(5033), + [anon_sym_BSLASHAcrlong] = ACTIONS(5033), + [anon_sym_BSLASHACRlong] = ACTIONS(5033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), + [anon_sym_BSLASHacrfull] = ACTIONS(5033), + [anon_sym_BSLASHAcrfull] = ACTIONS(5033), + [anon_sym_BSLASHACRfull] = ACTIONS(5033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), + [anon_sym_BSLASHacs] = ACTIONS(5033), + [anon_sym_BSLASHAcs] = ACTIONS(5033), + [anon_sym_BSLASHacsp] = ACTIONS(5033), + [anon_sym_BSLASHAcsp] = ACTIONS(5033), + [anon_sym_BSLASHacl] = ACTIONS(5033), + [anon_sym_BSLASHAcl] = ACTIONS(5033), + [anon_sym_BSLASHaclp] = ACTIONS(5033), + [anon_sym_BSLASHAclp] = ACTIONS(5033), + [anon_sym_BSLASHacf] = ACTIONS(5033), + [anon_sym_BSLASHAcf] = ACTIONS(5033), + [anon_sym_BSLASHacfp] = ACTIONS(5033), + [anon_sym_BSLASHAcfp] = ACTIONS(5033), + [anon_sym_BSLASHac] = ACTIONS(5033), + [anon_sym_BSLASHAc] = ACTIONS(5033), + [anon_sym_BSLASHacp] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), + [anon_sym_BSLASHcolor] = ACTIONS(5033), + [anon_sym_BSLASHcolorbox] = ACTIONS(5033), + [anon_sym_BSLASHtextcolor] = ACTIONS(5033), + [anon_sym_BSLASHpagecolor] = ACTIONS(5033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [anon_sym_BSLASHtext] = ACTIONS(5033), + [anon_sym_BSLASHintertext] = ACTIONS(5033), + [anon_sym_shortintertext] = ACTIONS(5033), }, - [1339] = { - [sym_command_name] = ACTIONS(5139), + [1209] = { + [sym_command_name] = ACTIONS(5037), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASHbegin] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHiffalse] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5035), + [anon_sym_RPAREN] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_RBRACK] = ACTIONS(5035), + [anon_sym_COMMA] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_BSLASHpart] = ACTIONS(5037), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5035), + [anon_sym_BSLASHaddpart] = ACTIONS(5037), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5035), + [anon_sym_BSLASHchapter] = ACTIONS(5037), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5035), + [anon_sym_BSLASHaddchap] = ACTIONS(5037), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsection] = ACTIONS(5037), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5035), + [anon_sym_BSLASHaddsec] = ACTIONS(5037), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsubsection] = ACTIONS(5037), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5037), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5035), + [anon_sym_BSLASHparagraph] = ACTIONS(5037), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5035), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5037), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5035), + [anon_sym_BSLASHitem] = ACTIONS(5037), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5035), + [sym_word] = ACTIONS(5037), + [sym_placeholder] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5037), + [anon_sym_STAR] = ACTIONS(5037), + [anon_sym_SLASH] = ACTIONS(5037), + [anon_sym_CARET] = ACTIONS(5037), + [anon_sym__] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_COLON] = ACTIONS(5037), + [anon_sym_SQUOTE] = ACTIONS(5037), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), + [anon_sym_DOLLAR] = ACTIONS(5037), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), + [anon_sym_BSLASHbegin] = ACTIONS(5037), + [anon_sym_BSLASHend] = ACTIONS(5037), + [anon_sym_BSLASHusepackage] = ACTIONS(5037), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), + [anon_sym_BSLASHinclude] = ACTIONS(5037), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), + [anon_sym_BSLASHinput] = ACTIONS(5037), + [anon_sym_BSLASHsubfile] = ACTIONS(5037), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), + [anon_sym_BSLASHbibliography] = ACTIONS(5037), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), + [anon_sym_BSLASHincludesvg] = ACTIONS(5037), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), + [anon_sym_BSLASHimport] = ACTIONS(5037), + [anon_sym_BSLASHsubimport] = ACTIONS(5037), + [anon_sym_BSLASHinputfrom] = ACTIONS(5037), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), + [anon_sym_BSLASHincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHcaption] = ACTIONS(5037), + [anon_sym_BSLASHcite] = ACTIONS(5037), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCite] = ACTIONS(5037), + [anon_sym_BSLASHnocite] = ACTIONS(5037), + [anon_sym_BSLASHcitet] = ACTIONS(5037), + [anon_sym_BSLASHcitep] = ACTIONS(5037), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteauthor] = ACTIONS(5037), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitetitle] = ACTIONS(5037), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteyear] = ACTIONS(5037), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitedate] = ACTIONS(5037), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteurl] = ACTIONS(5037), + [anon_sym_BSLASHfullcite] = ACTIONS(5037), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), + [anon_sym_BSLASHcitealt] = ACTIONS(5037), + [anon_sym_BSLASHcitealp] = ACTIONS(5037), + [anon_sym_BSLASHcitetext] = ACTIONS(5037), + [anon_sym_BSLASHparencite] = ACTIONS(5037), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHParencite] = ACTIONS(5037), + [anon_sym_BSLASHfootcite] = ACTIONS(5037), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), + [anon_sym_BSLASHtextcite] = ACTIONS(5037), + [anon_sym_BSLASHTextcite] = ACTIONS(5037), + [anon_sym_BSLASHsmartcite] = ACTIONS(5037), + [anon_sym_BSLASHSmartcite] = ACTIONS(5037), + [anon_sym_BSLASHsupercite] = ACTIONS(5037), + [anon_sym_BSLASHautocite] = ACTIONS(5037), + [anon_sym_BSLASHAutocite] = ACTIONS(5037), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHvolcite] = ACTIONS(5037), + [anon_sym_BSLASHVolcite] = ACTIONS(5037), + [anon_sym_BSLASHpvolcite] = ACTIONS(5037), + [anon_sym_BSLASHPvolcite] = ACTIONS(5037), + [anon_sym_BSLASHfvolcite] = ACTIONS(5037), + [anon_sym_BSLASHftvolcite] = ACTIONS(5037), + [anon_sym_BSLASHsvolcite] = ACTIONS(5037), + [anon_sym_BSLASHSvolcite] = ACTIONS(5037), + [anon_sym_BSLASHtvolcite] = ACTIONS(5037), + [anon_sym_BSLASHTvolcite] = ACTIONS(5037), + [anon_sym_BSLASHavolcite] = ACTIONS(5037), + [anon_sym_BSLASHAvolcite] = ACTIONS(5037), + [anon_sym_BSLASHnotecite] = ACTIONS(5037), + [anon_sym_BSLASHNotecite] = ACTIONS(5037), + [anon_sym_BSLASHpnotecite] = ACTIONS(5037), + [anon_sym_BSLASHPnotecite] = ACTIONS(5037), + [anon_sym_BSLASHfnotecite] = ACTIONS(5037), + [anon_sym_BSLASHlabel] = ACTIONS(5037), + [anon_sym_BSLASHref] = ACTIONS(5037), + [anon_sym_BSLASHeqref] = ACTIONS(5037), + [anon_sym_BSLASHvref] = ACTIONS(5037), + [anon_sym_BSLASHVref] = ACTIONS(5037), + [anon_sym_BSLASHautoref] = ACTIONS(5037), + [anon_sym_BSLASHpageref] = ACTIONS(5037), + [anon_sym_BSLASHcref] = ACTIONS(5037), + [anon_sym_BSLASHCref] = ACTIONS(5037), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnameCref] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHlabelcref] = ACTIONS(5037), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCrefrange] = ACTIONS(5037), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnewlabel] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), + [anon_sym_BSLASHdef] = ACTIONS(5037), + [anon_sym_BSLASHlet] = ACTIONS(5037), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), + [anon_sym_BSLASHgls] = ACTIONS(5037), + [anon_sym_BSLASHGls] = ACTIONS(5037), + [anon_sym_BSLASHGLS] = ACTIONS(5037), + [anon_sym_BSLASHglspl] = ACTIONS(5037), + [anon_sym_BSLASHGlspl] = ACTIONS(5037), + [anon_sym_BSLASHGLSpl] = ACTIONS(5037), + [anon_sym_BSLASHglsdisp] = ACTIONS(5037), + [anon_sym_BSLASHglslink] = ACTIONS(5037), + [anon_sym_BSLASHglstext] = ACTIONS(5037), + [anon_sym_BSLASHGlstext] = ACTIONS(5037), + [anon_sym_BSLASHGLStext] = ACTIONS(5037), + [anon_sym_BSLASHglsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), + [anon_sym_BSLASHglsplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSplural] = ACTIONS(5037), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHglsname] = ACTIONS(5037), + [anon_sym_BSLASHGlsname] = ACTIONS(5037), + [anon_sym_BSLASHGLSname] = ACTIONS(5037), + [anon_sym_BSLASHglssymbol] = ACTIONS(5037), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), + [anon_sym_BSLASHglsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), + [anon_sym_BSLASHglsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), + [anon_sym_BSLASHglsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), + [anon_sym_BSLASHglsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), + [anon_sym_BSLASHglsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), + [anon_sym_BSLASHnewacronym] = ACTIONS(5037), + [anon_sym_BSLASHacrshort] = ACTIONS(5037), + [anon_sym_BSLASHAcrshort] = ACTIONS(5037), + [anon_sym_BSLASHACRshort] = ACTIONS(5037), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), + [anon_sym_BSLASHacrlong] = ACTIONS(5037), + [anon_sym_BSLASHAcrlong] = ACTIONS(5037), + [anon_sym_BSLASHACRlong] = ACTIONS(5037), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), + [anon_sym_BSLASHacrfull] = ACTIONS(5037), + [anon_sym_BSLASHAcrfull] = ACTIONS(5037), + [anon_sym_BSLASHACRfull] = ACTIONS(5037), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), + [anon_sym_BSLASHacs] = ACTIONS(5037), + [anon_sym_BSLASHAcs] = ACTIONS(5037), + [anon_sym_BSLASHacsp] = ACTIONS(5037), + [anon_sym_BSLASHAcsp] = ACTIONS(5037), + [anon_sym_BSLASHacl] = ACTIONS(5037), + [anon_sym_BSLASHAcl] = ACTIONS(5037), + [anon_sym_BSLASHaclp] = ACTIONS(5037), + [anon_sym_BSLASHAclp] = ACTIONS(5037), + [anon_sym_BSLASHacf] = ACTIONS(5037), + [anon_sym_BSLASHAcf] = ACTIONS(5037), + [anon_sym_BSLASHacfp] = ACTIONS(5037), + [anon_sym_BSLASHAcfp] = ACTIONS(5037), + [anon_sym_BSLASHac] = ACTIONS(5037), + [anon_sym_BSLASHAc] = ACTIONS(5037), + [anon_sym_BSLASHacp] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), + [anon_sym_BSLASHcolor] = ACTIONS(5037), + [anon_sym_BSLASHcolorbox] = ACTIONS(5037), + [anon_sym_BSLASHtextcolor] = ACTIONS(5037), + [anon_sym_BSLASHpagecolor] = ACTIONS(5037), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [anon_sym_BSLASHtext] = ACTIONS(5037), + [anon_sym_BSLASHintertext] = ACTIONS(5037), + [anon_sym_shortintertext] = ACTIONS(5037), }, - [1340] = { - [sym_command_name] = ACTIONS(5135), + [1210] = { + [sym_command_name] = ACTIONS(5041), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASHbegin] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [anon_sym_BSLASHiffalse] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_RBRACK] = ACTIONS(5039), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_BSLASHpart] = ACTIONS(5041), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddpart] = ACTIONS(5041), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5039), + [anon_sym_BSLASHchapter] = ACTIONS(5041), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddchap] = ACTIONS(5041), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsection] = ACTIONS(5041), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHaddsec] = ACTIONS(5041), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubsection] = ACTIONS(5041), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5041), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5039), + [anon_sym_BSLASHparagraph] = ACTIONS(5041), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5039), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5041), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5039), + [anon_sym_BSLASHitem] = ACTIONS(5041), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5039), + [sym_word] = ACTIONS(5041), + [sym_placeholder] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_SLASH] = ACTIONS(5041), + [anon_sym_CARET] = ACTIONS(5041), + [anon_sym__] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5041), + [anon_sym_PIPE] = ACTIONS(5041), + [anon_sym_COLON] = ACTIONS(5041), + [anon_sym_SQUOTE] = ACTIONS(5041), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), + [anon_sym_BSLASHbegin] = ACTIONS(5041), + [anon_sym_BSLASHend] = ACTIONS(5041), + [anon_sym_BSLASHusepackage] = ACTIONS(5041), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), + [anon_sym_BSLASHinclude] = ACTIONS(5041), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), + [anon_sym_BSLASHinput] = ACTIONS(5041), + [anon_sym_BSLASHsubfile] = ACTIONS(5041), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), + [anon_sym_BSLASHbibliography] = ACTIONS(5041), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), + [anon_sym_BSLASHincludesvg] = ACTIONS(5041), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), + [anon_sym_BSLASHimport] = ACTIONS(5041), + [anon_sym_BSLASHsubimport] = ACTIONS(5041), + [anon_sym_BSLASHinputfrom] = ACTIONS(5041), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), + [anon_sym_BSLASHincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHcaption] = ACTIONS(5041), + [anon_sym_BSLASHcite] = ACTIONS(5041), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCite] = ACTIONS(5041), + [anon_sym_BSLASHnocite] = ACTIONS(5041), + [anon_sym_BSLASHcitet] = ACTIONS(5041), + [anon_sym_BSLASHcitep] = ACTIONS(5041), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteauthor] = ACTIONS(5041), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitetitle] = ACTIONS(5041), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteyear] = ACTIONS(5041), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitedate] = ACTIONS(5041), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteurl] = ACTIONS(5041), + [anon_sym_BSLASHfullcite] = ACTIONS(5041), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), + [anon_sym_BSLASHcitealt] = ACTIONS(5041), + [anon_sym_BSLASHcitealp] = ACTIONS(5041), + [anon_sym_BSLASHcitetext] = ACTIONS(5041), + [anon_sym_BSLASHparencite] = ACTIONS(5041), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHParencite] = ACTIONS(5041), + [anon_sym_BSLASHfootcite] = ACTIONS(5041), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), + [anon_sym_BSLASHtextcite] = ACTIONS(5041), + [anon_sym_BSLASHTextcite] = ACTIONS(5041), + [anon_sym_BSLASHsmartcite] = ACTIONS(5041), + [anon_sym_BSLASHSmartcite] = ACTIONS(5041), + [anon_sym_BSLASHsupercite] = ACTIONS(5041), + [anon_sym_BSLASHautocite] = ACTIONS(5041), + [anon_sym_BSLASHAutocite] = ACTIONS(5041), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHvolcite] = ACTIONS(5041), + [anon_sym_BSLASHVolcite] = ACTIONS(5041), + [anon_sym_BSLASHpvolcite] = ACTIONS(5041), + [anon_sym_BSLASHPvolcite] = ACTIONS(5041), + [anon_sym_BSLASHfvolcite] = ACTIONS(5041), + [anon_sym_BSLASHftvolcite] = ACTIONS(5041), + [anon_sym_BSLASHsvolcite] = ACTIONS(5041), + [anon_sym_BSLASHSvolcite] = ACTIONS(5041), + [anon_sym_BSLASHtvolcite] = ACTIONS(5041), + [anon_sym_BSLASHTvolcite] = ACTIONS(5041), + [anon_sym_BSLASHavolcite] = ACTIONS(5041), + [anon_sym_BSLASHAvolcite] = ACTIONS(5041), + [anon_sym_BSLASHnotecite] = ACTIONS(5041), + [anon_sym_BSLASHNotecite] = ACTIONS(5041), + [anon_sym_BSLASHpnotecite] = ACTIONS(5041), + [anon_sym_BSLASHPnotecite] = ACTIONS(5041), + [anon_sym_BSLASHfnotecite] = ACTIONS(5041), + [anon_sym_BSLASHlabel] = ACTIONS(5041), + [anon_sym_BSLASHref] = ACTIONS(5041), + [anon_sym_BSLASHeqref] = ACTIONS(5041), + [anon_sym_BSLASHvref] = ACTIONS(5041), + [anon_sym_BSLASHVref] = ACTIONS(5041), + [anon_sym_BSLASHautoref] = ACTIONS(5041), + [anon_sym_BSLASHpageref] = ACTIONS(5041), + [anon_sym_BSLASHcref] = ACTIONS(5041), + [anon_sym_BSLASHCref] = ACTIONS(5041), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnameCref] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHlabelcref] = ACTIONS(5041), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCrefrange] = ACTIONS(5041), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnewlabel] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), + [anon_sym_BSLASHdef] = ACTIONS(5041), + [anon_sym_BSLASHlet] = ACTIONS(5041), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), + [anon_sym_BSLASHgls] = ACTIONS(5041), + [anon_sym_BSLASHGls] = ACTIONS(5041), + [anon_sym_BSLASHGLS] = ACTIONS(5041), + [anon_sym_BSLASHglspl] = ACTIONS(5041), + [anon_sym_BSLASHGlspl] = ACTIONS(5041), + [anon_sym_BSLASHGLSpl] = ACTIONS(5041), + [anon_sym_BSLASHglsdisp] = ACTIONS(5041), + [anon_sym_BSLASHglslink] = ACTIONS(5041), + [anon_sym_BSLASHglstext] = ACTIONS(5041), + [anon_sym_BSLASHGlstext] = ACTIONS(5041), + [anon_sym_BSLASHGLStext] = ACTIONS(5041), + [anon_sym_BSLASHglsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), + [anon_sym_BSLASHglsplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSplural] = ACTIONS(5041), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHglsname] = ACTIONS(5041), + [anon_sym_BSLASHGlsname] = ACTIONS(5041), + [anon_sym_BSLASHGLSname] = ACTIONS(5041), + [anon_sym_BSLASHglssymbol] = ACTIONS(5041), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), + [anon_sym_BSLASHglsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), + [anon_sym_BSLASHglsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), + [anon_sym_BSLASHglsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), + [anon_sym_BSLASHglsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), + [anon_sym_BSLASHglsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), + [anon_sym_BSLASHnewacronym] = ACTIONS(5041), + [anon_sym_BSLASHacrshort] = ACTIONS(5041), + [anon_sym_BSLASHAcrshort] = ACTIONS(5041), + [anon_sym_BSLASHACRshort] = ACTIONS(5041), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), + [anon_sym_BSLASHacrlong] = ACTIONS(5041), + [anon_sym_BSLASHAcrlong] = ACTIONS(5041), + [anon_sym_BSLASHACRlong] = ACTIONS(5041), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), + [anon_sym_BSLASHacrfull] = ACTIONS(5041), + [anon_sym_BSLASHAcrfull] = ACTIONS(5041), + [anon_sym_BSLASHACRfull] = ACTIONS(5041), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), + [anon_sym_BSLASHacs] = ACTIONS(5041), + [anon_sym_BSLASHAcs] = ACTIONS(5041), + [anon_sym_BSLASHacsp] = ACTIONS(5041), + [anon_sym_BSLASHAcsp] = ACTIONS(5041), + [anon_sym_BSLASHacl] = ACTIONS(5041), + [anon_sym_BSLASHAcl] = ACTIONS(5041), + [anon_sym_BSLASHaclp] = ACTIONS(5041), + [anon_sym_BSLASHAclp] = ACTIONS(5041), + [anon_sym_BSLASHacf] = ACTIONS(5041), + [anon_sym_BSLASHAcf] = ACTIONS(5041), + [anon_sym_BSLASHacfp] = ACTIONS(5041), + [anon_sym_BSLASHAcfp] = ACTIONS(5041), + [anon_sym_BSLASHac] = ACTIONS(5041), + [anon_sym_BSLASHAc] = ACTIONS(5041), + [anon_sym_BSLASHacp] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), + [anon_sym_BSLASHcolor] = ACTIONS(5041), + [anon_sym_BSLASHcolorbox] = ACTIONS(5041), + [anon_sym_BSLASHtextcolor] = ACTIONS(5041), + [anon_sym_BSLASHpagecolor] = ACTIONS(5041), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + [anon_sym_BSLASHtext] = ACTIONS(5041), + [anon_sym_BSLASHintertext] = ACTIONS(5041), + [anon_sym_shortintertext] = ACTIONS(5041), }, - [1341] = { - [sym_command_name] = ACTIONS(5125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASHbegin] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), + [1211] = { + [sym_command_name] = ACTIONS(5045), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_RBRACK] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_BSLASHpart] = ACTIONS(5045), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddpart] = ACTIONS(5045), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5043), + [anon_sym_BSLASHchapter] = ACTIONS(5045), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddchap] = ACTIONS(5045), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsection] = ACTIONS(5045), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHaddsec] = ACTIONS(5045), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubsection] = ACTIONS(5045), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5045), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5043), + [anon_sym_BSLASHparagraph] = ACTIONS(5045), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5043), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5045), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5043), + [anon_sym_BSLASHitem] = ACTIONS(5045), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5043), + [sym_word] = ACTIONS(5045), + [sym_placeholder] = ACTIONS(5043), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_CARET] = ACTIONS(5045), + [anon_sym__] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_COLON] = ACTIONS(5045), + [anon_sym_SQUOTE] = ACTIONS(5045), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), + [anon_sym_DOLLAR] = ACTIONS(5045), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), + [anon_sym_BSLASHbegin] = ACTIONS(5045), + [anon_sym_BSLASHend] = ACTIONS(5045), + [anon_sym_BSLASHusepackage] = ACTIONS(5045), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), + [anon_sym_BSLASHinclude] = ACTIONS(5045), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), + [anon_sym_BSLASHinput] = ACTIONS(5045), + [anon_sym_BSLASHsubfile] = ACTIONS(5045), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), + [anon_sym_BSLASHbibliography] = ACTIONS(5045), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), + [anon_sym_BSLASHincludesvg] = ACTIONS(5045), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), + [anon_sym_BSLASHimport] = ACTIONS(5045), + [anon_sym_BSLASHsubimport] = ACTIONS(5045), + [anon_sym_BSLASHinputfrom] = ACTIONS(5045), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), + [anon_sym_BSLASHincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHcaption] = ACTIONS(5045), + [anon_sym_BSLASHcite] = ACTIONS(5045), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCite] = ACTIONS(5045), + [anon_sym_BSLASHnocite] = ACTIONS(5045), + [anon_sym_BSLASHcitet] = ACTIONS(5045), + [anon_sym_BSLASHcitep] = ACTIONS(5045), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteauthor] = ACTIONS(5045), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitetitle] = ACTIONS(5045), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteyear] = ACTIONS(5045), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitedate] = ACTIONS(5045), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteurl] = ACTIONS(5045), + [anon_sym_BSLASHfullcite] = ACTIONS(5045), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), + [anon_sym_BSLASHcitealt] = ACTIONS(5045), + [anon_sym_BSLASHcitealp] = ACTIONS(5045), + [anon_sym_BSLASHcitetext] = ACTIONS(5045), + [anon_sym_BSLASHparencite] = ACTIONS(5045), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHParencite] = ACTIONS(5045), + [anon_sym_BSLASHfootcite] = ACTIONS(5045), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), + [anon_sym_BSLASHtextcite] = ACTIONS(5045), + [anon_sym_BSLASHTextcite] = ACTIONS(5045), + [anon_sym_BSLASHsmartcite] = ACTIONS(5045), + [anon_sym_BSLASHSmartcite] = ACTIONS(5045), + [anon_sym_BSLASHsupercite] = ACTIONS(5045), + [anon_sym_BSLASHautocite] = ACTIONS(5045), + [anon_sym_BSLASHAutocite] = ACTIONS(5045), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHvolcite] = ACTIONS(5045), + [anon_sym_BSLASHVolcite] = ACTIONS(5045), + [anon_sym_BSLASHpvolcite] = ACTIONS(5045), + [anon_sym_BSLASHPvolcite] = ACTIONS(5045), + [anon_sym_BSLASHfvolcite] = ACTIONS(5045), + [anon_sym_BSLASHftvolcite] = ACTIONS(5045), + [anon_sym_BSLASHsvolcite] = ACTIONS(5045), + [anon_sym_BSLASHSvolcite] = ACTIONS(5045), + [anon_sym_BSLASHtvolcite] = ACTIONS(5045), + [anon_sym_BSLASHTvolcite] = ACTIONS(5045), + [anon_sym_BSLASHavolcite] = ACTIONS(5045), + [anon_sym_BSLASHAvolcite] = ACTIONS(5045), + [anon_sym_BSLASHnotecite] = ACTIONS(5045), + [anon_sym_BSLASHNotecite] = ACTIONS(5045), + [anon_sym_BSLASHpnotecite] = ACTIONS(5045), + [anon_sym_BSLASHPnotecite] = ACTIONS(5045), + [anon_sym_BSLASHfnotecite] = ACTIONS(5045), + [anon_sym_BSLASHlabel] = ACTIONS(5045), + [anon_sym_BSLASHref] = ACTIONS(5045), + [anon_sym_BSLASHeqref] = ACTIONS(5045), + [anon_sym_BSLASHvref] = ACTIONS(5045), + [anon_sym_BSLASHVref] = ACTIONS(5045), + [anon_sym_BSLASHautoref] = ACTIONS(5045), + [anon_sym_BSLASHpageref] = ACTIONS(5045), + [anon_sym_BSLASHcref] = ACTIONS(5045), + [anon_sym_BSLASHCref] = ACTIONS(5045), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnameCref] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHlabelcref] = ACTIONS(5045), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCrefrange] = ACTIONS(5045), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnewlabel] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), + [anon_sym_BSLASHdef] = ACTIONS(5045), + [anon_sym_BSLASHlet] = ACTIONS(5045), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), + [anon_sym_BSLASHgls] = ACTIONS(5045), + [anon_sym_BSLASHGls] = ACTIONS(5045), + [anon_sym_BSLASHGLS] = ACTIONS(5045), + [anon_sym_BSLASHglspl] = ACTIONS(5045), + [anon_sym_BSLASHGlspl] = ACTIONS(5045), + [anon_sym_BSLASHGLSpl] = ACTIONS(5045), + [anon_sym_BSLASHglsdisp] = ACTIONS(5045), + [anon_sym_BSLASHglslink] = ACTIONS(5045), + [anon_sym_BSLASHglstext] = ACTIONS(5045), + [anon_sym_BSLASHGlstext] = ACTIONS(5045), + [anon_sym_BSLASHGLStext] = ACTIONS(5045), + [anon_sym_BSLASHglsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), + [anon_sym_BSLASHglsplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSplural] = ACTIONS(5045), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHglsname] = ACTIONS(5045), + [anon_sym_BSLASHGlsname] = ACTIONS(5045), + [anon_sym_BSLASHGLSname] = ACTIONS(5045), + [anon_sym_BSLASHglssymbol] = ACTIONS(5045), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), + [anon_sym_BSLASHglsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), + [anon_sym_BSLASHglsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), + [anon_sym_BSLASHglsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), + [anon_sym_BSLASHglsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), + [anon_sym_BSLASHglsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), + [anon_sym_BSLASHnewacronym] = ACTIONS(5045), + [anon_sym_BSLASHacrshort] = ACTIONS(5045), + [anon_sym_BSLASHAcrshort] = ACTIONS(5045), + [anon_sym_BSLASHACRshort] = ACTIONS(5045), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), + [anon_sym_BSLASHacrlong] = ACTIONS(5045), + [anon_sym_BSLASHAcrlong] = ACTIONS(5045), + [anon_sym_BSLASHACRlong] = ACTIONS(5045), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), + [anon_sym_BSLASHacrfull] = ACTIONS(5045), + [anon_sym_BSLASHAcrfull] = ACTIONS(5045), + [anon_sym_BSLASHACRfull] = ACTIONS(5045), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), + [anon_sym_BSLASHacs] = ACTIONS(5045), + [anon_sym_BSLASHAcs] = ACTIONS(5045), + [anon_sym_BSLASHacsp] = ACTIONS(5045), + [anon_sym_BSLASHAcsp] = ACTIONS(5045), + [anon_sym_BSLASHacl] = ACTIONS(5045), + [anon_sym_BSLASHAcl] = ACTIONS(5045), + [anon_sym_BSLASHaclp] = ACTIONS(5045), + [anon_sym_BSLASHAclp] = ACTIONS(5045), + [anon_sym_BSLASHacf] = ACTIONS(5045), + [anon_sym_BSLASHAcf] = ACTIONS(5045), + [anon_sym_BSLASHacfp] = ACTIONS(5045), + [anon_sym_BSLASHAcfp] = ACTIONS(5045), + [anon_sym_BSLASHac] = ACTIONS(5045), + [anon_sym_BSLASHAc] = ACTIONS(5045), + [anon_sym_BSLASHacp] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), + [anon_sym_BSLASHcolor] = ACTIONS(5045), + [anon_sym_BSLASHcolorbox] = ACTIONS(5045), + [anon_sym_BSLASHtextcolor] = ACTIONS(5045), + [anon_sym_BSLASHpagecolor] = ACTIONS(5045), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), + [anon_sym_BSLASHtext] = ACTIONS(5045), + [anon_sym_BSLASHintertext] = ACTIONS(5045), + [anon_sym_shortintertext] = ACTIONS(5045), }, - [1342] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASHbegin] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), + [1212] = { + [sym_command_name] = ACTIONS(5053), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_BSLASHpart] = ACTIONS(5053), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddpart] = ACTIONS(5053), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5051), + [anon_sym_BSLASHchapter] = ACTIONS(5053), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddchap] = ACTIONS(5053), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsection] = ACTIONS(5053), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHaddsec] = ACTIONS(5053), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubsection] = ACTIONS(5053), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5053), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5051), + [anon_sym_BSLASHparagraph] = ACTIONS(5053), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5051), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5053), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5051), + [anon_sym_BSLASHitem] = ACTIONS(5053), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5051), + [sym_word] = ACTIONS(5053), + [sym_placeholder] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5053), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5053), + [anon_sym__] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_COLON] = ACTIONS(5053), + [anon_sym_SQUOTE] = ACTIONS(5053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), + [anon_sym_DOLLAR] = ACTIONS(5053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), + [anon_sym_BSLASHbegin] = ACTIONS(5053), + [anon_sym_BSLASHend] = ACTIONS(5053), + [anon_sym_BSLASHusepackage] = ACTIONS(5053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), + [anon_sym_BSLASHinclude] = ACTIONS(5053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), + [anon_sym_BSLASHinput] = ACTIONS(5053), + [anon_sym_BSLASHsubfile] = ACTIONS(5053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), + [anon_sym_BSLASHbibliography] = ACTIONS(5053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), + [anon_sym_BSLASHincludesvg] = ACTIONS(5053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), + [anon_sym_BSLASHimport] = ACTIONS(5053), + [anon_sym_BSLASHsubimport] = ACTIONS(5053), + [anon_sym_BSLASHinputfrom] = ACTIONS(5053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), + [anon_sym_BSLASHincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHcaption] = ACTIONS(5053), + [anon_sym_BSLASHcite] = ACTIONS(5053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCite] = ACTIONS(5053), + [anon_sym_BSLASHnocite] = ACTIONS(5053), + [anon_sym_BSLASHcitet] = ACTIONS(5053), + [anon_sym_BSLASHcitep] = ACTIONS(5053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteauthor] = ACTIONS(5053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitetitle] = ACTIONS(5053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteyear] = ACTIONS(5053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitedate] = ACTIONS(5053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteurl] = ACTIONS(5053), + [anon_sym_BSLASHfullcite] = ACTIONS(5053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), + [anon_sym_BSLASHcitealt] = ACTIONS(5053), + [anon_sym_BSLASHcitealp] = ACTIONS(5053), + [anon_sym_BSLASHcitetext] = ACTIONS(5053), + [anon_sym_BSLASHparencite] = ACTIONS(5053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHParencite] = ACTIONS(5053), + [anon_sym_BSLASHfootcite] = ACTIONS(5053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), + [anon_sym_BSLASHtextcite] = ACTIONS(5053), + [anon_sym_BSLASHTextcite] = ACTIONS(5053), + [anon_sym_BSLASHsmartcite] = ACTIONS(5053), + [anon_sym_BSLASHSmartcite] = ACTIONS(5053), + [anon_sym_BSLASHsupercite] = ACTIONS(5053), + [anon_sym_BSLASHautocite] = ACTIONS(5053), + [anon_sym_BSLASHAutocite] = ACTIONS(5053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHvolcite] = ACTIONS(5053), + [anon_sym_BSLASHVolcite] = ACTIONS(5053), + [anon_sym_BSLASHpvolcite] = ACTIONS(5053), + [anon_sym_BSLASHPvolcite] = ACTIONS(5053), + [anon_sym_BSLASHfvolcite] = ACTIONS(5053), + [anon_sym_BSLASHftvolcite] = ACTIONS(5053), + [anon_sym_BSLASHsvolcite] = ACTIONS(5053), + [anon_sym_BSLASHSvolcite] = ACTIONS(5053), + [anon_sym_BSLASHtvolcite] = ACTIONS(5053), + [anon_sym_BSLASHTvolcite] = ACTIONS(5053), + [anon_sym_BSLASHavolcite] = ACTIONS(5053), + [anon_sym_BSLASHAvolcite] = ACTIONS(5053), + [anon_sym_BSLASHnotecite] = ACTIONS(5053), + [anon_sym_BSLASHNotecite] = ACTIONS(5053), + [anon_sym_BSLASHpnotecite] = ACTIONS(5053), + [anon_sym_BSLASHPnotecite] = ACTIONS(5053), + [anon_sym_BSLASHfnotecite] = ACTIONS(5053), + [anon_sym_BSLASHlabel] = ACTIONS(5053), + [anon_sym_BSLASHref] = ACTIONS(5053), + [anon_sym_BSLASHeqref] = ACTIONS(5053), + [anon_sym_BSLASHvref] = ACTIONS(5053), + [anon_sym_BSLASHVref] = ACTIONS(5053), + [anon_sym_BSLASHautoref] = ACTIONS(5053), + [anon_sym_BSLASHpageref] = ACTIONS(5053), + [anon_sym_BSLASHcref] = ACTIONS(5053), + [anon_sym_BSLASHCref] = ACTIONS(5053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnameCref] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHlabelcref] = ACTIONS(5053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCrefrange] = ACTIONS(5053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnewlabel] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), + [anon_sym_BSLASHdef] = ACTIONS(5053), + [anon_sym_BSLASHlet] = ACTIONS(5053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), + [anon_sym_BSLASHgls] = ACTIONS(5053), + [anon_sym_BSLASHGls] = ACTIONS(5053), + [anon_sym_BSLASHGLS] = ACTIONS(5053), + [anon_sym_BSLASHglspl] = ACTIONS(5053), + [anon_sym_BSLASHGlspl] = ACTIONS(5053), + [anon_sym_BSLASHGLSpl] = ACTIONS(5053), + [anon_sym_BSLASHglsdisp] = ACTIONS(5053), + [anon_sym_BSLASHglslink] = ACTIONS(5053), + [anon_sym_BSLASHglstext] = ACTIONS(5053), + [anon_sym_BSLASHGlstext] = ACTIONS(5053), + [anon_sym_BSLASHGLStext] = ACTIONS(5053), + [anon_sym_BSLASHglsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), + [anon_sym_BSLASHglsplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSplural] = ACTIONS(5053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHglsname] = ACTIONS(5053), + [anon_sym_BSLASHGlsname] = ACTIONS(5053), + [anon_sym_BSLASHGLSname] = ACTIONS(5053), + [anon_sym_BSLASHglssymbol] = ACTIONS(5053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), + [anon_sym_BSLASHglsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), + [anon_sym_BSLASHglsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), + [anon_sym_BSLASHglsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), + [anon_sym_BSLASHglsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), + [anon_sym_BSLASHglsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), + [anon_sym_BSLASHnewacronym] = ACTIONS(5053), + [anon_sym_BSLASHacrshort] = ACTIONS(5053), + [anon_sym_BSLASHAcrshort] = ACTIONS(5053), + [anon_sym_BSLASHACRshort] = ACTIONS(5053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), + [anon_sym_BSLASHacrlong] = ACTIONS(5053), + [anon_sym_BSLASHAcrlong] = ACTIONS(5053), + [anon_sym_BSLASHACRlong] = ACTIONS(5053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), + [anon_sym_BSLASHacrfull] = ACTIONS(5053), + [anon_sym_BSLASHAcrfull] = ACTIONS(5053), + [anon_sym_BSLASHACRfull] = ACTIONS(5053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), + [anon_sym_BSLASHacs] = ACTIONS(5053), + [anon_sym_BSLASHAcs] = ACTIONS(5053), + [anon_sym_BSLASHacsp] = ACTIONS(5053), + [anon_sym_BSLASHAcsp] = ACTIONS(5053), + [anon_sym_BSLASHacl] = ACTIONS(5053), + [anon_sym_BSLASHAcl] = ACTIONS(5053), + [anon_sym_BSLASHaclp] = ACTIONS(5053), + [anon_sym_BSLASHAclp] = ACTIONS(5053), + [anon_sym_BSLASHacf] = ACTIONS(5053), + [anon_sym_BSLASHAcf] = ACTIONS(5053), + [anon_sym_BSLASHacfp] = ACTIONS(5053), + [anon_sym_BSLASHAcfp] = ACTIONS(5053), + [anon_sym_BSLASHac] = ACTIONS(5053), + [anon_sym_BSLASHAc] = ACTIONS(5053), + [anon_sym_BSLASHacp] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), + [anon_sym_BSLASHcolor] = ACTIONS(5053), + [anon_sym_BSLASHcolorbox] = ACTIONS(5053), + [anon_sym_BSLASHtextcolor] = ACTIONS(5053), + [anon_sym_BSLASHpagecolor] = ACTIONS(5053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [anon_sym_BSLASHtext] = ACTIONS(5053), + [anon_sym_BSLASHintertext] = ACTIONS(5053), + [anon_sym_shortintertext] = ACTIONS(5053), }, - [1343] = { - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASHbegin] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), + [1213] = { + [sym_command_name] = ACTIONS(5057), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5055), + [anon_sym_RPAREN] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5055), + [anon_sym_RBRACK] = ACTIONS(5055), + [anon_sym_COMMA] = ACTIONS(5055), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_BSLASHpart] = ACTIONS(5057), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5055), + [anon_sym_BSLASHaddpart] = ACTIONS(5057), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5055), + [anon_sym_BSLASHchapter] = ACTIONS(5057), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5055), + [anon_sym_BSLASHaddchap] = ACTIONS(5057), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsection] = ACTIONS(5057), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5055), + [anon_sym_BSLASHaddsec] = ACTIONS(5057), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsubsection] = ACTIONS(5057), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5057), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5055), + [anon_sym_BSLASHparagraph] = ACTIONS(5057), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5055), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5057), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5055), + [anon_sym_BSLASHitem] = ACTIONS(5057), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5055), + [sym_word] = ACTIONS(5057), + [sym_placeholder] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_STAR] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5057), + [anon_sym_CARET] = ACTIONS(5057), + [anon_sym__] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5057), + [anon_sym_BANG] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5057), + [anon_sym_COLON] = ACTIONS(5057), + [anon_sym_SQUOTE] = ACTIONS(5057), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), + [anon_sym_DOLLAR] = ACTIONS(5057), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), + [anon_sym_BSLASHbegin] = ACTIONS(5057), + [anon_sym_BSLASHend] = ACTIONS(5057), + [anon_sym_BSLASHusepackage] = ACTIONS(5057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), + [anon_sym_BSLASHinclude] = ACTIONS(5057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), + [anon_sym_BSLASHinput] = ACTIONS(5057), + [anon_sym_BSLASHsubfile] = ACTIONS(5057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), + [anon_sym_BSLASHbibliography] = ACTIONS(5057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), + [anon_sym_BSLASHincludesvg] = ACTIONS(5057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), + [anon_sym_BSLASHimport] = ACTIONS(5057), + [anon_sym_BSLASHsubimport] = ACTIONS(5057), + [anon_sym_BSLASHinputfrom] = ACTIONS(5057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), + [anon_sym_BSLASHincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHcaption] = ACTIONS(5057), + [anon_sym_BSLASHcite] = ACTIONS(5057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCite] = ACTIONS(5057), + [anon_sym_BSLASHnocite] = ACTIONS(5057), + [anon_sym_BSLASHcitet] = ACTIONS(5057), + [anon_sym_BSLASHcitep] = ACTIONS(5057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteauthor] = ACTIONS(5057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitetitle] = ACTIONS(5057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteyear] = ACTIONS(5057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitedate] = ACTIONS(5057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteurl] = ACTIONS(5057), + [anon_sym_BSLASHfullcite] = ACTIONS(5057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), + [anon_sym_BSLASHcitealt] = ACTIONS(5057), + [anon_sym_BSLASHcitealp] = ACTIONS(5057), + [anon_sym_BSLASHcitetext] = ACTIONS(5057), + [anon_sym_BSLASHparencite] = ACTIONS(5057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHParencite] = ACTIONS(5057), + [anon_sym_BSLASHfootcite] = ACTIONS(5057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), + [anon_sym_BSLASHtextcite] = ACTIONS(5057), + [anon_sym_BSLASHTextcite] = ACTIONS(5057), + [anon_sym_BSLASHsmartcite] = ACTIONS(5057), + [anon_sym_BSLASHSmartcite] = ACTIONS(5057), + [anon_sym_BSLASHsupercite] = ACTIONS(5057), + [anon_sym_BSLASHautocite] = ACTIONS(5057), + [anon_sym_BSLASHAutocite] = ACTIONS(5057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHvolcite] = ACTIONS(5057), + [anon_sym_BSLASHVolcite] = ACTIONS(5057), + [anon_sym_BSLASHpvolcite] = ACTIONS(5057), + [anon_sym_BSLASHPvolcite] = ACTIONS(5057), + [anon_sym_BSLASHfvolcite] = ACTIONS(5057), + [anon_sym_BSLASHftvolcite] = ACTIONS(5057), + [anon_sym_BSLASHsvolcite] = ACTIONS(5057), + [anon_sym_BSLASHSvolcite] = ACTIONS(5057), + [anon_sym_BSLASHtvolcite] = ACTIONS(5057), + [anon_sym_BSLASHTvolcite] = ACTIONS(5057), + [anon_sym_BSLASHavolcite] = ACTIONS(5057), + [anon_sym_BSLASHAvolcite] = ACTIONS(5057), + [anon_sym_BSLASHnotecite] = ACTIONS(5057), + [anon_sym_BSLASHNotecite] = ACTIONS(5057), + [anon_sym_BSLASHpnotecite] = ACTIONS(5057), + [anon_sym_BSLASHPnotecite] = ACTIONS(5057), + [anon_sym_BSLASHfnotecite] = ACTIONS(5057), + [anon_sym_BSLASHlabel] = ACTIONS(5057), + [anon_sym_BSLASHref] = ACTIONS(5057), + [anon_sym_BSLASHeqref] = ACTIONS(5057), + [anon_sym_BSLASHvref] = ACTIONS(5057), + [anon_sym_BSLASHVref] = ACTIONS(5057), + [anon_sym_BSLASHautoref] = ACTIONS(5057), + [anon_sym_BSLASHpageref] = ACTIONS(5057), + [anon_sym_BSLASHcref] = ACTIONS(5057), + [anon_sym_BSLASHCref] = ACTIONS(5057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnameCref] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHlabelcref] = ACTIONS(5057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCrefrange] = ACTIONS(5057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnewlabel] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), + [anon_sym_BSLASHdef] = ACTIONS(5057), + [anon_sym_BSLASHlet] = ACTIONS(5057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), + [anon_sym_BSLASHgls] = ACTIONS(5057), + [anon_sym_BSLASHGls] = ACTIONS(5057), + [anon_sym_BSLASHGLS] = ACTIONS(5057), + [anon_sym_BSLASHglspl] = ACTIONS(5057), + [anon_sym_BSLASHGlspl] = ACTIONS(5057), + [anon_sym_BSLASHGLSpl] = ACTIONS(5057), + [anon_sym_BSLASHglsdisp] = ACTIONS(5057), + [anon_sym_BSLASHglslink] = ACTIONS(5057), + [anon_sym_BSLASHglstext] = ACTIONS(5057), + [anon_sym_BSLASHGlstext] = ACTIONS(5057), + [anon_sym_BSLASHGLStext] = ACTIONS(5057), + [anon_sym_BSLASHglsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), + [anon_sym_BSLASHglsplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSplural] = ACTIONS(5057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHglsname] = ACTIONS(5057), + [anon_sym_BSLASHGlsname] = ACTIONS(5057), + [anon_sym_BSLASHGLSname] = ACTIONS(5057), + [anon_sym_BSLASHglssymbol] = ACTIONS(5057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), + [anon_sym_BSLASHglsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), + [anon_sym_BSLASHglsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), + [anon_sym_BSLASHglsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), + [anon_sym_BSLASHglsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), + [anon_sym_BSLASHglsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), + [anon_sym_BSLASHnewacronym] = ACTIONS(5057), + [anon_sym_BSLASHacrshort] = ACTIONS(5057), + [anon_sym_BSLASHAcrshort] = ACTIONS(5057), + [anon_sym_BSLASHACRshort] = ACTIONS(5057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), + [anon_sym_BSLASHacrlong] = ACTIONS(5057), + [anon_sym_BSLASHAcrlong] = ACTIONS(5057), + [anon_sym_BSLASHACRlong] = ACTIONS(5057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), + [anon_sym_BSLASHacrfull] = ACTIONS(5057), + [anon_sym_BSLASHAcrfull] = ACTIONS(5057), + [anon_sym_BSLASHACRfull] = ACTIONS(5057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), + [anon_sym_BSLASHacs] = ACTIONS(5057), + [anon_sym_BSLASHAcs] = ACTIONS(5057), + [anon_sym_BSLASHacsp] = ACTIONS(5057), + [anon_sym_BSLASHAcsp] = ACTIONS(5057), + [anon_sym_BSLASHacl] = ACTIONS(5057), + [anon_sym_BSLASHAcl] = ACTIONS(5057), + [anon_sym_BSLASHaclp] = ACTIONS(5057), + [anon_sym_BSLASHAclp] = ACTIONS(5057), + [anon_sym_BSLASHacf] = ACTIONS(5057), + [anon_sym_BSLASHAcf] = ACTIONS(5057), + [anon_sym_BSLASHacfp] = ACTIONS(5057), + [anon_sym_BSLASHAcfp] = ACTIONS(5057), + [anon_sym_BSLASHac] = ACTIONS(5057), + [anon_sym_BSLASHAc] = ACTIONS(5057), + [anon_sym_BSLASHacp] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), + [anon_sym_BSLASHcolor] = ACTIONS(5057), + [anon_sym_BSLASHcolorbox] = ACTIONS(5057), + [anon_sym_BSLASHtextcolor] = ACTIONS(5057), + [anon_sym_BSLASHpagecolor] = ACTIONS(5057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [anon_sym_BSLASHtext] = ACTIONS(5057), + [anon_sym_BSLASHintertext] = ACTIONS(5057), + [anon_sym_shortintertext] = ACTIONS(5057), }, - [1344] = { - [sym_command_name] = ACTIONS(5101), + [1214] = { + [sym_command_name] = ACTIONS(5209), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASHbegin] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), + [anon_sym_BSLASHiffalse] = ACTIONS(5209), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_RPAREN] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_RBRACK] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_BSLASHpart] = ACTIONS(5209), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddpart] = ACTIONS(5209), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5207), + [anon_sym_BSLASHchapter] = ACTIONS(5209), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddchap] = ACTIONS(5209), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsection] = ACTIONS(5209), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHaddsec] = ACTIONS(5209), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubsection] = ACTIONS(5209), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5209), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5207), + [anon_sym_BSLASHparagraph] = ACTIONS(5209), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5207), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5209), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5207), + [anon_sym_BSLASHitem] = ACTIONS(5209), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5207), + [anon_sym_LBRACE] = ACTIONS(5207), + [sym_word] = ACTIONS(5209), + [sym_placeholder] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_CARET] = ACTIONS(5209), + [anon_sym__] = ACTIONS(5209), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_PIPE] = ACTIONS(5209), + [anon_sym_COLON] = ACTIONS(5209), + [anon_sym_SQUOTE] = ACTIONS(5209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), + [anon_sym_DOLLAR] = ACTIONS(5209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), + [anon_sym_BSLASHbegin] = ACTIONS(5209), + [anon_sym_BSLASHend] = ACTIONS(5209), + [anon_sym_BSLASHusepackage] = ACTIONS(5209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), + [anon_sym_BSLASHinclude] = ACTIONS(5209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), + [anon_sym_BSLASHinput] = ACTIONS(5209), + [anon_sym_BSLASHsubfile] = ACTIONS(5209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), + [anon_sym_BSLASHbibliography] = ACTIONS(5209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), + [anon_sym_BSLASHincludesvg] = ACTIONS(5209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), + [anon_sym_BSLASHimport] = ACTIONS(5209), + [anon_sym_BSLASHsubimport] = ACTIONS(5209), + [anon_sym_BSLASHinputfrom] = ACTIONS(5209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), + [anon_sym_BSLASHincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHcaption] = ACTIONS(5209), + [anon_sym_BSLASHcite] = ACTIONS(5209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCite] = ACTIONS(5209), + [anon_sym_BSLASHnocite] = ACTIONS(5209), + [anon_sym_BSLASHcitet] = ACTIONS(5209), + [anon_sym_BSLASHcitep] = ACTIONS(5209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteauthor] = ACTIONS(5209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitetitle] = ACTIONS(5209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteyear] = ACTIONS(5209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitedate] = ACTIONS(5209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteurl] = ACTIONS(5209), + [anon_sym_BSLASHfullcite] = ACTIONS(5209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), + [anon_sym_BSLASHcitealt] = ACTIONS(5209), + [anon_sym_BSLASHcitealp] = ACTIONS(5209), + [anon_sym_BSLASHcitetext] = ACTIONS(5209), + [anon_sym_BSLASHparencite] = ACTIONS(5209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHParencite] = ACTIONS(5209), + [anon_sym_BSLASHfootcite] = ACTIONS(5209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), + [anon_sym_BSLASHtextcite] = ACTIONS(5209), + [anon_sym_BSLASHTextcite] = ACTIONS(5209), + [anon_sym_BSLASHsmartcite] = ACTIONS(5209), + [anon_sym_BSLASHSmartcite] = ACTIONS(5209), + [anon_sym_BSLASHsupercite] = ACTIONS(5209), + [anon_sym_BSLASHautocite] = ACTIONS(5209), + [anon_sym_BSLASHAutocite] = ACTIONS(5209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHvolcite] = ACTIONS(5209), + [anon_sym_BSLASHVolcite] = ACTIONS(5209), + [anon_sym_BSLASHpvolcite] = ACTIONS(5209), + [anon_sym_BSLASHPvolcite] = ACTIONS(5209), + [anon_sym_BSLASHfvolcite] = ACTIONS(5209), + [anon_sym_BSLASHftvolcite] = ACTIONS(5209), + [anon_sym_BSLASHsvolcite] = ACTIONS(5209), + [anon_sym_BSLASHSvolcite] = ACTIONS(5209), + [anon_sym_BSLASHtvolcite] = ACTIONS(5209), + [anon_sym_BSLASHTvolcite] = ACTIONS(5209), + [anon_sym_BSLASHavolcite] = ACTIONS(5209), + [anon_sym_BSLASHAvolcite] = ACTIONS(5209), + [anon_sym_BSLASHnotecite] = ACTIONS(5209), + [anon_sym_BSLASHNotecite] = ACTIONS(5209), + [anon_sym_BSLASHpnotecite] = ACTIONS(5209), + [anon_sym_BSLASHPnotecite] = ACTIONS(5209), + [anon_sym_BSLASHfnotecite] = ACTIONS(5209), + [anon_sym_BSLASHlabel] = ACTIONS(5209), + [anon_sym_BSLASHref] = ACTIONS(5209), + [anon_sym_BSLASHeqref] = ACTIONS(5209), + [anon_sym_BSLASHvref] = ACTIONS(5209), + [anon_sym_BSLASHVref] = ACTIONS(5209), + [anon_sym_BSLASHautoref] = ACTIONS(5209), + [anon_sym_BSLASHpageref] = ACTIONS(5209), + [anon_sym_BSLASHcref] = ACTIONS(5209), + [anon_sym_BSLASHCref] = ACTIONS(5209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnameCref] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHlabelcref] = ACTIONS(5209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCrefrange] = ACTIONS(5209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnewlabel] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdef] = ACTIONS(5209), + [anon_sym_BSLASHlet] = ACTIONS(5209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), + [anon_sym_BSLASHgls] = ACTIONS(5209), + [anon_sym_BSLASHGls] = ACTIONS(5209), + [anon_sym_BSLASHGLS] = ACTIONS(5209), + [anon_sym_BSLASHglspl] = ACTIONS(5209), + [anon_sym_BSLASHGlspl] = ACTIONS(5209), + [anon_sym_BSLASHGLSpl] = ACTIONS(5209), + [anon_sym_BSLASHglsdisp] = ACTIONS(5209), + [anon_sym_BSLASHglslink] = ACTIONS(5209), + [anon_sym_BSLASHglstext] = ACTIONS(5209), + [anon_sym_BSLASHGlstext] = ACTIONS(5209), + [anon_sym_BSLASHGLStext] = ACTIONS(5209), + [anon_sym_BSLASHglsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), + [anon_sym_BSLASHglsplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSplural] = ACTIONS(5209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHglsname] = ACTIONS(5209), + [anon_sym_BSLASHGlsname] = ACTIONS(5209), + [anon_sym_BSLASHGLSname] = ACTIONS(5209), + [anon_sym_BSLASHglssymbol] = ACTIONS(5209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), + [anon_sym_BSLASHglsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), + [anon_sym_BSLASHglsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), + [anon_sym_BSLASHglsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), + [anon_sym_BSLASHglsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), + [anon_sym_BSLASHglsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), + [anon_sym_BSLASHnewacronym] = ACTIONS(5209), + [anon_sym_BSLASHacrshort] = ACTIONS(5209), + [anon_sym_BSLASHAcrshort] = ACTIONS(5209), + [anon_sym_BSLASHACRshort] = ACTIONS(5209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), + [anon_sym_BSLASHacrlong] = ACTIONS(5209), + [anon_sym_BSLASHAcrlong] = ACTIONS(5209), + [anon_sym_BSLASHACRlong] = ACTIONS(5209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), + [anon_sym_BSLASHacrfull] = ACTIONS(5209), + [anon_sym_BSLASHAcrfull] = ACTIONS(5209), + [anon_sym_BSLASHACRfull] = ACTIONS(5209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), + [anon_sym_BSLASHacs] = ACTIONS(5209), + [anon_sym_BSLASHAcs] = ACTIONS(5209), + [anon_sym_BSLASHacsp] = ACTIONS(5209), + [anon_sym_BSLASHAcsp] = ACTIONS(5209), + [anon_sym_BSLASHacl] = ACTIONS(5209), + [anon_sym_BSLASHAcl] = ACTIONS(5209), + [anon_sym_BSLASHaclp] = ACTIONS(5209), + [anon_sym_BSLASHAclp] = ACTIONS(5209), + [anon_sym_BSLASHacf] = ACTIONS(5209), + [anon_sym_BSLASHAcf] = ACTIONS(5209), + [anon_sym_BSLASHacfp] = ACTIONS(5209), + [anon_sym_BSLASHAcfp] = ACTIONS(5209), + [anon_sym_BSLASHac] = ACTIONS(5209), + [anon_sym_BSLASHAc] = ACTIONS(5209), + [anon_sym_BSLASHacp] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), + [anon_sym_BSLASHcolor] = ACTIONS(5209), + [anon_sym_BSLASHcolorbox] = ACTIONS(5209), + [anon_sym_BSLASHtextcolor] = ACTIONS(5209), + [anon_sym_BSLASHpagecolor] = ACTIONS(5209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHtext] = ACTIONS(5209), + [anon_sym_BSLASHintertext] = ACTIONS(5209), + [anon_sym_shortintertext] = ACTIONS(5209), }, - [1345] = { - [sym_command_name] = ACTIONS(5093), + [1215] = { + [sym_command_name] = ACTIONS(5315), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5315), + [anon_sym_LPAREN] = ACTIONS(5317), + [anon_sym_RPAREN] = ACTIONS(5317), + [anon_sym_LBRACK] = ACTIONS(5317), + [anon_sym_RBRACK] = ACTIONS(5317), + [anon_sym_COMMA] = ACTIONS(5317), + [anon_sym_EQ] = ACTIONS(5317), + [anon_sym_BSLASHpart] = ACTIONS(5315), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5317), + [anon_sym_BSLASHaddpart] = ACTIONS(5315), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5317), + [anon_sym_BSLASHchapter] = ACTIONS(5315), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5317), + [anon_sym_BSLASHaddchap] = ACTIONS(5315), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5317), + [anon_sym_BSLASHsection] = ACTIONS(5315), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5317), + [anon_sym_BSLASHaddsec] = ACTIONS(5315), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5317), + [anon_sym_BSLASHsubsection] = ACTIONS(5315), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5317), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5315), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5317), + [anon_sym_BSLASHparagraph] = ACTIONS(5315), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5317), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5315), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5317), + [anon_sym_BSLASHitem] = ACTIONS(5315), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5317), + [anon_sym_LBRACE] = ACTIONS(5317), + [sym_word] = ACTIONS(5315), + [sym_placeholder] = ACTIONS(5317), + [anon_sym_PLUS] = ACTIONS(5315), + [anon_sym_DASH] = ACTIONS(5315), + [anon_sym_STAR] = ACTIONS(5315), + [anon_sym_SLASH] = ACTIONS(5315), + [anon_sym_CARET] = ACTIONS(5315), + [anon_sym__] = ACTIONS(5315), + [anon_sym_LT] = ACTIONS(5315), + [anon_sym_GT] = ACTIONS(5315), + [anon_sym_BANG] = ACTIONS(5315), + [anon_sym_PIPE] = ACTIONS(5315), + [anon_sym_COLON] = ACTIONS(5315), + [anon_sym_SQUOTE] = ACTIONS(5315), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5317), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5317), + [anon_sym_DOLLAR] = ACTIONS(5315), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5317), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5317), + [anon_sym_BSLASHbegin] = ACTIONS(5315), + [anon_sym_BSLASHend] = ACTIONS(5315), + [anon_sym_BSLASHusepackage] = ACTIONS(5315), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5315), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5315), + [anon_sym_BSLASHinclude] = ACTIONS(5315), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5315), + [anon_sym_BSLASHinput] = ACTIONS(5315), + [anon_sym_BSLASHsubfile] = ACTIONS(5315), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5315), + [anon_sym_BSLASHbibliography] = ACTIONS(5315), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5315), + [anon_sym_BSLASHincludesvg] = ACTIONS(5315), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5315), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5315), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5315), + [anon_sym_BSLASHimport] = ACTIONS(5315), + [anon_sym_BSLASHsubimport] = ACTIONS(5315), + [anon_sym_BSLASHinputfrom] = ACTIONS(5315), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5315), + [anon_sym_BSLASHincludefrom] = ACTIONS(5315), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5315), + [anon_sym_BSLASHcaption] = ACTIONS(5315), + [anon_sym_BSLASHcite] = ACTIONS(5315), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5317), + [anon_sym_BSLASHCite] = ACTIONS(5315), + [anon_sym_BSLASHnocite] = ACTIONS(5315), + [anon_sym_BSLASHcitet] = ACTIONS(5315), + [anon_sym_BSLASHcitep] = ACTIONS(5315), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5317), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5317), + [anon_sym_BSLASHciteauthor] = ACTIONS(5315), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5317), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5315), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5317), + [anon_sym_BSLASHcitetitle] = ACTIONS(5315), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5317), + [anon_sym_BSLASHciteyear] = ACTIONS(5315), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5317), + [anon_sym_BSLASHcitedate] = ACTIONS(5315), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5317), + [anon_sym_BSLASHciteurl] = ACTIONS(5315), + [anon_sym_BSLASHfullcite] = ACTIONS(5315), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5315), + [anon_sym_BSLASHcitealt] = ACTIONS(5315), + [anon_sym_BSLASHcitealp] = ACTIONS(5315), + [anon_sym_BSLASHcitetext] = ACTIONS(5315), + [anon_sym_BSLASHparencite] = ACTIONS(5315), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5317), + [anon_sym_BSLASHParencite] = ACTIONS(5315), + [anon_sym_BSLASHfootcite] = ACTIONS(5315), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5315), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5315), + [anon_sym_BSLASHtextcite] = ACTIONS(5315), + [anon_sym_BSLASHTextcite] = ACTIONS(5315), + [anon_sym_BSLASHsmartcite] = ACTIONS(5315), + [anon_sym_BSLASHSmartcite] = ACTIONS(5315), + [anon_sym_BSLASHsupercite] = ACTIONS(5315), + [anon_sym_BSLASHautocite] = ACTIONS(5315), + [anon_sym_BSLASHAutocite] = ACTIONS(5315), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5317), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5317), + [anon_sym_BSLASHvolcite] = ACTIONS(5315), + [anon_sym_BSLASHVolcite] = ACTIONS(5315), + [anon_sym_BSLASHpvolcite] = ACTIONS(5315), + [anon_sym_BSLASHPvolcite] = ACTIONS(5315), + [anon_sym_BSLASHfvolcite] = ACTIONS(5315), + [anon_sym_BSLASHftvolcite] = ACTIONS(5315), + [anon_sym_BSLASHsvolcite] = ACTIONS(5315), + [anon_sym_BSLASHSvolcite] = ACTIONS(5315), + [anon_sym_BSLASHtvolcite] = ACTIONS(5315), + [anon_sym_BSLASHTvolcite] = ACTIONS(5315), + [anon_sym_BSLASHavolcite] = ACTIONS(5315), + [anon_sym_BSLASHAvolcite] = ACTIONS(5315), + [anon_sym_BSLASHnotecite] = ACTIONS(5315), + [anon_sym_BSLASHNotecite] = ACTIONS(5315), + [anon_sym_BSLASHpnotecite] = ACTIONS(5315), + [anon_sym_BSLASHPnotecite] = ACTIONS(5315), + [anon_sym_BSLASHfnotecite] = ACTIONS(5315), + [anon_sym_BSLASHlabel] = ACTIONS(5315), + [anon_sym_BSLASHref] = ACTIONS(5315), + [anon_sym_BSLASHeqref] = ACTIONS(5315), + [anon_sym_BSLASHvref] = ACTIONS(5315), + [anon_sym_BSLASHVref] = ACTIONS(5315), + [anon_sym_BSLASHautoref] = ACTIONS(5315), + [anon_sym_BSLASHpageref] = ACTIONS(5315), + [anon_sym_BSLASHcref] = ACTIONS(5315), + [anon_sym_BSLASHCref] = ACTIONS(5315), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5317), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5317), + [anon_sym_BSLASHnamecref] = ACTIONS(5315), + [anon_sym_BSLASHnameCref] = ACTIONS(5315), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5315), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5315), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5315), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5315), + [anon_sym_BSLASHlabelcref] = ACTIONS(5315), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5315), + [anon_sym_BSLASHcrefrange] = ACTIONS(5315), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5317), + [anon_sym_BSLASHCrefrange] = ACTIONS(5315), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5317), + [anon_sym_BSLASHnewlabel] = ACTIONS(5315), + [anon_sym_BSLASHnewcommand] = ACTIONS(5315), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5317), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5315), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5317), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5315), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5317), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5315), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5317), + [anon_sym_BSLASHdef] = ACTIONS(5315), + [anon_sym_BSLASHlet] = ACTIONS(5315), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5315), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5315), + [anon_sym_BSLASHgls] = ACTIONS(5315), + [anon_sym_BSLASHGls] = ACTIONS(5315), + [anon_sym_BSLASHGLS] = ACTIONS(5315), + [anon_sym_BSLASHglspl] = ACTIONS(5315), + [anon_sym_BSLASHGlspl] = ACTIONS(5315), + [anon_sym_BSLASHGLSpl] = ACTIONS(5315), + [anon_sym_BSLASHglsdisp] = ACTIONS(5315), + [anon_sym_BSLASHglslink] = ACTIONS(5315), + [anon_sym_BSLASHglstext] = ACTIONS(5315), + [anon_sym_BSLASHGlstext] = ACTIONS(5315), + [anon_sym_BSLASHGLStext] = ACTIONS(5315), + [anon_sym_BSLASHglsfirst] = ACTIONS(5315), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5315), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5315), + [anon_sym_BSLASHglsplural] = ACTIONS(5315), + [anon_sym_BSLASHGlsplural] = ACTIONS(5315), + [anon_sym_BSLASHGLSplural] = ACTIONS(5315), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5315), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5315), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5315), + [anon_sym_BSLASHglsname] = ACTIONS(5315), + [anon_sym_BSLASHGlsname] = ACTIONS(5315), + [anon_sym_BSLASHGLSname] = ACTIONS(5315), + [anon_sym_BSLASHglssymbol] = ACTIONS(5315), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5315), + [anon_sym_BSLASHglsdesc] = ACTIONS(5315), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5315), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5315), + [anon_sym_BSLASHglsuseri] = ACTIONS(5315), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5315), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5315), + [anon_sym_BSLASHglsuserii] = ACTIONS(5315), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5315), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5315), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5315), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5315), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5315), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5315), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5315), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5315), + [anon_sym_BSLASHglsuserv] = ACTIONS(5315), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5315), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5315), + [anon_sym_BSLASHglsuservi] = ACTIONS(5315), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5315), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5315), + [anon_sym_BSLASHnewacronym] = ACTIONS(5315), + [anon_sym_BSLASHacrshort] = ACTIONS(5315), + [anon_sym_BSLASHAcrshort] = ACTIONS(5315), + [anon_sym_BSLASHACRshort] = ACTIONS(5315), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5315), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5315), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5315), + [anon_sym_BSLASHacrlong] = ACTIONS(5315), + [anon_sym_BSLASHAcrlong] = ACTIONS(5315), + [anon_sym_BSLASHACRlong] = ACTIONS(5315), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5315), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5315), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5315), + [anon_sym_BSLASHacrfull] = ACTIONS(5315), + [anon_sym_BSLASHAcrfull] = ACTIONS(5315), + [anon_sym_BSLASHACRfull] = ACTIONS(5315), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5315), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5315), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5315), + [anon_sym_BSLASHacs] = ACTIONS(5315), + [anon_sym_BSLASHAcs] = ACTIONS(5315), + [anon_sym_BSLASHacsp] = ACTIONS(5315), + [anon_sym_BSLASHAcsp] = ACTIONS(5315), + [anon_sym_BSLASHacl] = ACTIONS(5315), + [anon_sym_BSLASHAcl] = ACTIONS(5315), + [anon_sym_BSLASHaclp] = ACTIONS(5315), + [anon_sym_BSLASHAclp] = ACTIONS(5315), + [anon_sym_BSLASHacf] = ACTIONS(5315), + [anon_sym_BSLASHAcf] = ACTIONS(5315), + [anon_sym_BSLASHacfp] = ACTIONS(5315), + [anon_sym_BSLASHAcfp] = ACTIONS(5315), + [anon_sym_BSLASHac] = ACTIONS(5315), + [anon_sym_BSLASHAc] = ACTIONS(5315), + [anon_sym_BSLASHacp] = ACTIONS(5315), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5315), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5315), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5315), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5315), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5315), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5315), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5315), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5315), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5315), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5315), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5315), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5315), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5315), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5315), + [anon_sym_BSLASHcolor] = ACTIONS(5315), + [anon_sym_BSLASHcolorbox] = ACTIONS(5315), + [anon_sym_BSLASHtextcolor] = ACTIONS(5315), + [anon_sym_BSLASHpagecolor] = ACTIONS(5315), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5315), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5315), + [anon_sym_BSLASHtext] = ACTIONS(5315), + [anon_sym_BSLASHintertext] = ACTIONS(5315), + [anon_sym_shortintertext] = ACTIONS(5315), + }, + [1216] = { + [sym_command_name] = ACTIONS(4943), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4941), + [anon_sym_RPAREN] = ACTIONS(4941), + [anon_sym_LBRACK] = ACTIONS(4941), + [anon_sym_RBRACK] = ACTIONS(4941), + [anon_sym_COMMA] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4941), + [anon_sym_BSLASHpart] = ACTIONS(4943), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddpart] = ACTIONS(4943), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4941), + [anon_sym_BSLASHchapter] = ACTIONS(4943), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddchap] = ACTIONS(4943), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsection] = ACTIONS(4943), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddsec] = ACTIONS(4943), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubsection] = ACTIONS(4943), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4943), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHparagraph] = ACTIONS(4943), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4943), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4941), + [anon_sym_BSLASHitem] = ACTIONS(4943), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4941), + [anon_sym_LBRACE] = ACTIONS(4941), + [sym_word] = ACTIONS(4943), + [sym_placeholder] = ACTIONS(4941), + [anon_sym_PLUS] = ACTIONS(4943), + [anon_sym_DASH] = ACTIONS(4943), + [anon_sym_STAR] = ACTIONS(4943), + [anon_sym_SLASH] = ACTIONS(4943), + [anon_sym_CARET] = ACTIONS(4943), + [anon_sym__] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4943), + [anon_sym_GT] = ACTIONS(4943), + [anon_sym_BANG] = ACTIONS(4943), + [anon_sym_PIPE] = ACTIONS(4943), + [anon_sym_COLON] = ACTIONS(4943), + [anon_sym_SQUOTE] = ACTIONS(4943), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4941), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4941), + [anon_sym_BSLASH_RBRACK] = ACTIONS(4941), + [anon_sym_DOLLAR] = ACTIONS(4943), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4941), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4941), + [anon_sym_BSLASHbegin] = ACTIONS(4943), + [anon_sym_BSLASHusepackage] = ACTIONS(4943), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4943), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4943), + [anon_sym_BSLASHinclude] = ACTIONS(4943), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4943), + [anon_sym_BSLASHinput] = ACTIONS(4943), + [anon_sym_BSLASHsubfile] = ACTIONS(4943), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), + [anon_sym_BSLASHbibliography] = ACTIONS(4943), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4943), + [anon_sym_BSLASHincludesvg] = ACTIONS(4943), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4943), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4943), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4943), + [anon_sym_BSLASHimport] = ACTIONS(4943), + [anon_sym_BSLASHsubimport] = ACTIONS(4943), + [anon_sym_BSLASHinputfrom] = ACTIONS(4943), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4943), + [anon_sym_BSLASHincludefrom] = ACTIONS(4943), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4943), + [anon_sym_BSLASHcaption] = ACTIONS(4943), + [anon_sym_BSLASHcite] = ACTIONS(4943), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCite] = ACTIONS(4943), + [anon_sym_BSLASHnocite] = ACTIONS(4943), + [anon_sym_BSLASHcitet] = ACTIONS(4943), + [anon_sym_BSLASHcitep] = ACTIONS(4943), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteauthor] = ACTIONS(4943), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4943), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitetitle] = ACTIONS(4943), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteyear] = ACTIONS(4943), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitedate] = ACTIONS(4943), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteurl] = ACTIONS(4943), + [anon_sym_BSLASHfullcite] = ACTIONS(4943), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4943), + [anon_sym_BSLASHcitealt] = ACTIONS(4943), + [anon_sym_BSLASHcitealp] = ACTIONS(4943), + [anon_sym_BSLASHcitetext] = ACTIONS(4943), + [anon_sym_BSLASHparencite] = ACTIONS(4943), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHParencite] = ACTIONS(4943), + [anon_sym_BSLASHfootcite] = ACTIONS(4943), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4943), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4943), + [anon_sym_BSLASHtextcite] = ACTIONS(4943), + [anon_sym_BSLASHTextcite] = ACTIONS(4943), + [anon_sym_BSLASHsmartcite] = ACTIONS(4943), + [anon_sym_BSLASHSmartcite] = ACTIONS(4943), + [anon_sym_BSLASHsupercite] = ACTIONS(4943), + [anon_sym_BSLASHautocite] = ACTIONS(4943), + [anon_sym_BSLASHAutocite] = ACTIONS(4943), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHvolcite] = ACTIONS(4943), + [anon_sym_BSLASHVolcite] = ACTIONS(4943), + [anon_sym_BSLASHpvolcite] = ACTIONS(4943), + [anon_sym_BSLASHPvolcite] = ACTIONS(4943), + [anon_sym_BSLASHfvolcite] = ACTIONS(4943), + [anon_sym_BSLASHftvolcite] = ACTIONS(4943), + [anon_sym_BSLASHsvolcite] = ACTIONS(4943), + [anon_sym_BSLASHSvolcite] = ACTIONS(4943), + [anon_sym_BSLASHtvolcite] = ACTIONS(4943), + [anon_sym_BSLASHTvolcite] = ACTIONS(4943), + [anon_sym_BSLASHavolcite] = ACTIONS(4943), + [anon_sym_BSLASHAvolcite] = ACTIONS(4943), + [anon_sym_BSLASHnotecite] = ACTIONS(4943), + [anon_sym_BSLASHNotecite] = ACTIONS(4943), + [anon_sym_BSLASHpnotecite] = ACTIONS(4943), + [anon_sym_BSLASHPnotecite] = ACTIONS(4943), + [anon_sym_BSLASHfnotecite] = ACTIONS(4943), + [anon_sym_BSLASHlabel] = ACTIONS(4943), + [anon_sym_BSLASHref] = ACTIONS(4943), + [anon_sym_BSLASHeqref] = ACTIONS(4943), + [anon_sym_BSLASHvref] = ACTIONS(4943), + [anon_sym_BSLASHVref] = ACTIONS(4943), + [anon_sym_BSLASHautoref] = ACTIONS(4943), + [anon_sym_BSLASHpageref] = ACTIONS(4943), + [anon_sym_BSLASHcref] = ACTIONS(4943), + [anon_sym_BSLASHCref] = ACTIONS(4943), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4941), + [anon_sym_BSLASHnamecref] = ACTIONS(4943), + [anon_sym_BSLASHnameCref] = ACTIONS(4943), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4943), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4943), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4943), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4943), + [anon_sym_BSLASHlabelcref] = ACTIONS(4943), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4943), + [anon_sym_BSLASHcrefrange] = ACTIONS(4943), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCrefrange] = ACTIONS(4943), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4941), + [anon_sym_BSLASHnewlabel] = ACTIONS(4943), + [anon_sym_BSLASHnewcommand] = ACTIONS(4943), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4943), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4943), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4943), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4941), + [anon_sym_BSLASHdef] = ACTIONS(4943), + [anon_sym_BSLASHlet] = ACTIONS(4943), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4943), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4943), + [anon_sym_BSLASHgls] = ACTIONS(4943), + [anon_sym_BSLASHGls] = ACTIONS(4943), + [anon_sym_BSLASHGLS] = ACTIONS(4943), + [anon_sym_BSLASHglspl] = ACTIONS(4943), + [anon_sym_BSLASHGlspl] = ACTIONS(4943), + [anon_sym_BSLASHGLSpl] = ACTIONS(4943), + [anon_sym_BSLASHglsdisp] = ACTIONS(4943), + [anon_sym_BSLASHglslink] = ACTIONS(4943), + [anon_sym_BSLASHglstext] = ACTIONS(4943), + [anon_sym_BSLASHGlstext] = ACTIONS(4943), + [anon_sym_BSLASHGLStext] = ACTIONS(4943), + [anon_sym_BSLASHglsfirst] = ACTIONS(4943), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4943), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4943), + [anon_sym_BSLASHglsplural] = ACTIONS(4943), + [anon_sym_BSLASHGlsplural] = ACTIONS(4943), + [anon_sym_BSLASHGLSplural] = ACTIONS(4943), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHglsname] = ACTIONS(4943), + [anon_sym_BSLASHGlsname] = ACTIONS(4943), + [anon_sym_BSLASHGLSname] = ACTIONS(4943), + [anon_sym_BSLASHglssymbol] = ACTIONS(4943), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4943), + [anon_sym_BSLASHglsdesc] = ACTIONS(4943), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4943), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4943), + [anon_sym_BSLASHglsuseri] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4943), + [anon_sym_BSLASHglsuserii] = ACTIONS(4943), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4943), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4943), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4943), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4943), + [anon_sym_BSLASHglsuserv] = ACTIONS(4943), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4943), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4943), + [anon_sym_BSLASHglsuservi] = ACTIONS(4943), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4943), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4943), + [anon_sym_BSLASHnewacronym] = ACTIONS(4943), + [anon_sym_BSLASHacrshort] = ACTIONS(4943), + [anon_sym_BSLASHAcrshort] = ACTIONS(4943), + [anon_sym_BSLASHACRshort] = ACTIONS(4943), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4943), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4943), + [anon_sym_BSLASHacrlong] = ACTIONS(4943), + [anon_sym_BSLASHAcrlong] = ACTIONS(4943), + [anon_sym_BSLASHACRlong] = ACTIONS(4943), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4943), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4943), + [anon_sym_BSLASHacrfull] = ACTIONS(4943), + [anon_sym_BSLASHAcrfull] = ACTIONS(4943), + [anon_sym_BSLASHACRfull] = ACTIONS(4943), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4943), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4943), + [anon_sym_BSLASHacs] = ACTIONS(4943), + [anon_sym_BSLASHAcs] = ACTIONS(4943), + [anon_sym_BSLASHacsp] = ACTIONS(4943), + [anon_sym_BSLASHAcsp] = ACTIONS(4943), + [anon_sym_BSLASHacl] = ACTIONS(4943), + [anon_sym_BSLASHAcl] = ACTIONS(4943), + [anon_sym_BSLASHaclp] = ACTIONS(4943), + [anon_sym_BSLASHAclp] = ACTIONS(4943), + [anon_sym_BSLASHacf] = ACTIONS(4943), + [anon_sym_BSLASHAcf] = ACTIONS(4943), + [anon_sym_BSLASHacfp] = ACTIONS(4943), + [anon_sym_BSLASHAcfp] = ACTIONS(4943), + [anon_sym_BSLASHac] = ACTIONS(4943), + [anon_sym_BSLASHAc] = ACTIONS(4943), + [anon_sym_BSLASHacp] = ACTIONS(4943), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4943), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4943), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4943), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4943), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4943), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4943), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4943), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4943), + [anon_sym_BSLASHcolor] = ACTIONS(4943), + [anon_sym_BSLASHcolorbox] = ACTIONS(4943), + [anon_sym_BSLASHtextcolor] = ACTIONS(4943), + [anon_sym_BSLASHpagecolor] = ACTIONS(4943), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4943), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4943), + [anon_sym_BSLASHtext] = ACTIONS(4943), + [anon_sym_BSLASHintertext] = ACTIONS(4943), + [anon_sym_shortintertext] = ACTIONS(4943), + }, + [1217] = { + [sym_command_name] = ACTIONS(5213), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_RPAREN] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_RBRACK] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_EQ] = ACTIONS(5211), + [anon_sym_BSLASHpart] = ACTIONS(5213), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddpart] = ACTIONS(5213), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5211), + [anon_sym_BSLASHchapter] = ACTIONS(5213), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddchap] = ACTIONS(5213), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsection] = ACTIONS(5213), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHaddsec] = ACTIONS(5213), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubsection] = ACTIONS(5213), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5213), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5211), + [anon_sym_BSLASHparagraph] = ACTIONS(5213), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5211), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5213), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5211), + [anon_sym_BSLASHitem] = ACTIONS(5213), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(5211), + [sym_word] = ACTIONS(5213), + [sym_placeholder] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_CARET] = ACTIONS(5213), + [anon_sym__] = ACTIONS(5213), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_SQUOTE] = ACTIONS(5213), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), + [anon_sym_DOLLAR] = ACTIONS(5213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), + [anon_sym_BSLASHbegin] = ACTIONS(5213), + [anon_sym_BSLASHend] = ACTIONS(5213), + [anon_sym_BSLASHusepackage] = ACTIONS(5213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), + [anon_sym_BSLASHinclude] = ACTIONS(5213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), + [anon_sym_BSLASHinput] = ACTIONS(5213), + [anon_sym_BSLASHsubfile] = ACTIONS(5213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), + [anon_sym_BSLASHbibliography] = ACTIONS(5213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), + [anon_sym_BSLASHincludesvg] = ACTIONS(5213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), + [anon_sym_BSLASHimport] = ACTIONS(5213), + [anon_sym_BSLASHsubimport] = ACTIONS(5213), + [anon_sym_BSLASHinputfrom] = ACTIONS(5213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), + [anon_sym_BSLASHincludefrom] = ACTIONS(5213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), + [anon_sym_BSLASHcaption] = ACTIONS(5213), + [anon_sym_BSLASHcite] = ACTIONS(5213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCite] = ACTIONS(5213), + [anon_sym_BSLASHnocite] = ACTIONS(5213), + [anon_sym_BSLASHcitet] = ACTIONS(5213), + [anon_sym_BSLASHcitep] = ACTIONS(5213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteauthor] = ACTIONS(5213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitetitle] = ACTIONS(5213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteyear] = ACTIONS(5213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitedate] = ACTIONS(5213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteurl] = ACTIONS(5213), + [anon_sym_BSLASHfullcite] = ACTIONS(5213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), + [anon_sym_BSLASHcitealt] = ACTIONS(5213), + [anon_sym_BSLASHcitealp] = ACTIONS(5213), + [anon_sym_BSLASHcitetext] = ACTIONS(5213), + [anon_sym_BSLASHparencite] = ACTIONS(5213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHParencite] = ACTIONS(5213), + [anon_sym_BSLASHfootcite] = ACTIONS(5213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), + [anon_sym_BSLASHtextcite] = ACTIONS(5213), + [anon_sym_BSLASHTextcite] = ACTIONS(5213), + [anon_sym_BSLASHsmartcite] = ACTIONS(5213), + [anon_sym_BSLASHSmartcite] = ACTIONS(5213), + [anon_sym_BSLASHsupercite] = ACTIONS(5213), + [anon_sym_BSLASHautocite] = ACTIONS(5213), + [anon_sym_BSLASHAutocite] = ACTIONS(5213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHvolcite] = ACTIONS(5213), + [anon_sym_BSLASHVolcite] = ACTIONS(5213), + [anon_sym_BSLASHpvolcite] = ACTIONS(5213), + [anon_sym_BSLASHPvolcite] = ACTIONS(5213), + [anon_sym_BSLASHfvolcite] = ACTIONS(5213), + [anon_sym_BSLASHftvolcite] = ACTIONS(5213), + [anon_sym_BSLASHsvolcite] = ACTIONS(5213), + [anon_sym_BSLASHSvolcite] = ACTIONS(5213), + [anon_sym_BSLASHtvolcite] = ACTIONS(5213), + [anon_sym_BSLASHTvolcite] = ACTIONS(5213), + [anon_sym_BSLASHavolcite] = ACTIONS(5213), + [anon_sym_BSLASHAvolcite] = ACTIONS(5213), + [anon_sym_BSLASHnotecite] = ACTIONS(5213), + [anon_sym_BSLASHNotecite] = ACTIONS(5213), + [anon_sym_BSLASHpnotecite] = ACTIONS(5213), + [anon_sym_BSLASHPnotecite] = ACTIONS(5213), + [anon_sym_BSLASHfnotecite] = ACTIONS(5213), + [anon_sym_BSLASHlabel] = ACTIONS(5213), + [anon_sym_BSLASHref] = ACTIONS(5213), + [anon_sym_BSLASHeqref] = ACTIONS(5213), + [anon_sym_BSLASHvref] = ACTIONS(5213), + [anon_sym_BSLASHVref] = ACTIONS(5213), + [anon_sym_BSLASHautoref] = ACTIONS(5213), + [anon_sym_BSLASHpageref] = ACTIONS(5213), + [anon_sym_BSLASHcref] = ACTIONS(5213), + [anon_sym_BSLASHCref] = ACTIONS(5213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), + [anon_sym_BSLASHnamecref] = ACTIONS(5213), + [anon_sym_BSLASHnameCref] = ACTIONS(5213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), + [anon_sym_BSLASHlabelcref] = ACTIONS(5213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), + [anon_sym_BSLASHcrefrange] = ACTIONS(5213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCrefrange] = ACTIONS(5213), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), + [anon_sym_BSLASHnewlabel] = ACTIONS(5213), + [anon_sym_BSLASHnewcommand] = ACTIONS(5213), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), + [anon_sym_BSLASHdef] = ACTIONS(5213), + [anon_sym_BSLASHlet] = ACTIONS(5213), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), + [anon_sym_BSLASHgls] = ACTIONS(5213), + [anon_sym_BSLASHGls] = ACTIONS(5213), + [anon_sym_BSLASHGLS] = ACTIONS(5213), + [anon_sym_BSLASHglspl] = ACTIONS(5213), + [anon_sym_BSLASHGlspl] = ACTIONS(5213), + [anon_sym_BSLASHGLSpl] = ACTIONS(5213), + [anon_sym_BSLASHglsdisp] = ACTIONS(5213), + [anon_sym_BSLASHglslink] = ACTIONS(5213), + [anon_sym_BSLASHglstext] = ACTIONS(5213), + [anon_sym_BSLASHGlstext] = ACTIONS(5213), + [anon_sym_BSLASHGLStext] = ACTIONS(5213), + [anon_sym_BSLASHglsfirst] = ACTIONS(5213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), + [anon_sym_BSLASHglsplural] = ACTIONS(5213), + [anon_sym_BSLASHGlsplural] = ACTIONS(5213), + [anon_sym_BSLASHGLSplural] = ACTIONS(5213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHglsname] = ACTIONS(5213), + [anon_sym_BSLASHGlsname] = ACTIONS(5213), + [anon_sym_BSLASHGLSname] = ACTIONS(5213), + [anon_sym_BSLASHglssymbol] = ACTIONS(5213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), + [anon_sym_BSLASHglsdesc] = ACTIONS(5213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), + [anon_sym_BSLASHglsuseri] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), + [anon_sym_BSLASHglsuserii] = ACTIONS(5213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), + [anon_sym_BSLASHglsuserv] = ACTIONS(5213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), + [anon_sym_BSLASHglsuservi] = ACTIONS(5213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), + [anon_sym_BSLASHnewacronym] = ACTIONS(5213), + [anon_sym_BSLASHacrshort] = ACTIONS(5213), + [anon_sym_BSLASHAcrshort] = ACTIONS(5213), + [anon_sym_BSLASHACRshort] = ACTIONS(5213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), + [anon_sym_BSLASHacrlong] = ACTIONS(5213), + [anon_sym_BSLASHAcrlong] = ACTIONS(5213), + [anon_sym_BSLASHACRlong] = ACTIONS(5213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), + [anon_sym_BSLASHacrfull] = ACTIONS(5213), + [anon_sym_BSLASHAcrfull] = ACTIONS(5213), + [anon_sym_BSLASHACRfull] = ACTIONS(5213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), + [anon_sym_BSLASHacs] = ACTIONS(5213), + [anon_sym_BSLASHAcs] = ACTIONS(5213), + [anon_sym_BSLASHacsp] = ACTIONS(5213), + [anon_sym_BSLASHAcsp] = ACTIONS(5213), + [anon_sym_BSLASHacl] = ACTIONS(5213), + [anon_sym_BSLASHAcl] = ACTIONS(5213), + [anon_sym_BSLASHaclp] = ACTIONS(5213), + [anon_sym_BSLASHAclp] = ACTIONS(5213), + [anon_sym_BSLASHacf] = ACTIONS(5213), + [anon_sym_BSLASHAcf] = ACTIONS(5213), + [anon_sym_BSLASHacfp] = ACTIONS(5213), + [anon_sym_BSLASHAcfp] = ACTIONS(5213), + [anon_sym_BSLASHac] = ACTIONS(5213), + [anon_sym_BSLASHAc] = ACTIONS(5213), + [anon_sym_BSLASHacp] = ACTIONS(5213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), + [anon_sym_BSLASHtext] = ACTIONS(5213), + [anon_sym_BSLASHintertext] = ACTIONS(5213), + [anon_sym_shortintertext] = ACTIONS(5213), + }, + [1218] = { + [sym_command_name] = ACTIONS(5217), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASHbegin] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHiffalse] = ACTIONS(5217), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_RPAREN] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_RBRACK] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_BSLASHpart] = ACTIONS(5217), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddpart] = ACTIONS(5217), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5215), + [anon_sym_BSLASHchapter] = ACTIONS(5217), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddchap] = ACTIONS(5217), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsection] = ACTIONS(5217), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHaddsec] = ACTIONS(5217), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubsection] = ACTIONS(5217), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5217), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5215), + [anon_sym_BSLASHparagraph] = ACTIONS(5217), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5215), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5217), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5215), + [anon_sym_BSLASHitem] = ACTIONS(5217), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(5215), + [sym_word] = ACTIONS(5217), + [sym_placeholder] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5217), + [anon_sym_DASH] = ACTIONS(5217), + [anon_sym_STAR] = ACTIONS(5217), + [anon_sym_SLASH] = ACTIONS(5217), + [anon_sym_CARET] = ACTIONS(5217), + [anon_sym__] = ACTIONS(5217), + [anon_sym_LT] = ACTIONS(5217), + [anon_sym_GT] = ACTIONS(5217), + [anon_sym_BANG] = ACTIONS(5217), + [anon_sym_PIPE] = ACTIONS(5217), + [anon_sym_COLON] = ACTIONS(5217), + [anon_sym_SQUOTE] = ACTIONS(5217), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), + [anon_sym_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), + [anon_sym_BSLASHbegin] = ACTIONS(5217), + [anon_sym_BSLASHend] = ACTIONS(5217), + [anon_sym_BSLASHusepackage] = ACTIONS(5217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), + [anon_sym_BSLASHinclude] = ACTIONS(5217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), + [anon_sym_BSLASHinput] = ACTIONS(5217), + [anon_sym_BSLASHsubfile] = ACTIONS(5217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), + [anon_sym_BSLASHbibliography] = ACTIONS(5217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), + [anon_sym_BSLASHincludesvg] = ACTIONS(5217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), + [anon_sym_BSLASHimport] = ACTIONS(5217), + [anon_sym_BSLASHsubimport] = ACTIONS(5217), + [anon_sym_BSLASHinputfrom] = ACTIONS(5217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), + [anon_sym_BSLASHincludefrom] = ACTIONS(5217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), + [anon_sym_BSLASHcaption] = ACTIONS(5217), + [anon_sym_BSLASHcite] = ACTIONS(5217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCite] = ACTIONS(5217), + [anon_sym_BSLASHnocite] = ACTIONS(5217), + [anon_sym_BSLASHcitet] = ACTIONS(5217), + [anon_sym_BSLASHcitep] = ACTIONS(5217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteauthor] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitetitle] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteyear] = ACTIONS(5217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitedate] = ACTIONS(5217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteurl] = ACTIONS(5217), + [anon_sym_BSLASHfullcite] = ACTIONS(5217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), + [anon_sym_BSLASHcitealt] = ACTIONS(5217), + [anon_sym_BSLASHcitealp] = ACTIONS(5217), + [anon_sym_BSLASHcitetext] = ACTIONS(5217), + [anon_sym_BSLASHparencite] = ACTIONS(5217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHParencite] = ACTIONS(5217), + [anon_sym_BSLASHfootcite] = ACTIONS(5217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), + [anon_sym_BSLASHtextcite] = ACTIONS(5217), + [anon_sym_BSLASHTextcite] = ACTIONS(5217), + [anon_sym_BSLASHsmartcite] = ACTIONS(5217), + [anon_sym_BSLASHSmartcite] = ACTIONS(5217), + [anon_sym_BSLASHsupercite] = ACTIONS(5217), + [anon_sym_BSLASHautocite] = ACTIONS(5217), + [anon_sym_BSLASHAutocite] = ACTIONS(5217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHvolcite] = ACTIONS(5217), + [anon_sym_BSLASHVolcite] = ACTIONS(5217), + [anon_sym_BSLASHpvolcite] = ACTIONS(5217), + [anon_sym_BSLASHPvolcite] = ACTIONS(5217), + [anon_sym_BSLASHfvolcite] = ACTIONS(5217), + [anon_sym_BSLASHftvolcite] = ACTIONS(5217), + [anon_sym_BSLASHsvolcite] = ACTIONS(5217), + [anon_sym_BSLASHSvolcite] = ACTIONS(5217), + [anon_sym_BSLASHtvolcite] = ACTIONS(5217), + [anon_sym_BSLASHTvolcite] = ACTIONS(5217), + [anon_sym_BSLASHavolcite] = ACTIONS(5217), + [anon_sym_BSLASHAvolcite] = ACTIONS(5217), + [anon_sym_BSLASHnotecite] = ACTIONS(5217), + [anon_sym_BSLASHNotecite] = ACTIONS(5217), + [anon_sym_BSLASHpnotecite] = ACTIONS(5217), + [anon_sym_BSLASHPnotecite] = ACTIONS(5217), + [anon_sym_BSLASHfnotecite] = ACTIONS(5217), + [anon_sym_BSLASHlabel] = ACTIONS(5217), + [anon_sym_BSLASHref] = ACTIONS(5217), + [anon_sym_BSLASHeqref] = ACTIONS(5217), + [anon_sym_BSLASHvref] = ACTIONS(5217), + [anon_sym_BSLASHVref] = ACTIONS(5217), + [anon_sym_BSLASHautoref] = ACTIONS(5217), + [anon_sym_BSLASHpageref] = ACTIONS(5217), + [anon_sym_BSLASHcref] = ACTIONS(5217), + [anon_sym_BSLASHCref] = ACTIONS(5217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), + [anon_sym_BSLASHnamecref] = ACTIONS(5217), + [anon_sym_BSLASHnameCref] = ACTIONS(5217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), + [anon_sym_BSLASHlabelcref] = ACTIONS(5217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), + [anon_sym_BSLASHcrefrange] = ACTIONS(5217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCrefrange] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), + [anon_sym_BSLASHnewlabel] = ACTIONS(5217), + [anon_sym_BSLASHnewcommand] = ACTIONS(5217), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), + [anon_sym_BSLASHdef] = ACTIONS(5217), + [anon_sym_BSLASHlet] = ACTIONS(5217), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), + [anon_sym_BSLASHgls] = ACTIONS(5217), + [anon_sym_BSLASHGls] = ACTIONS(5217), + [anon_sym_BSLASHGLS] = ACTIONS(5217), + [anon_sym_BSLASHglspl] = ACTIONS(5217), + [anon_sym_BSLASHGlspl] = ACTIONS(5217), + [anon_sym_BSLASHGLSpl] = ACTIONS(5217), + [anon_sym_BSLASHglsdisp] = ACTIONS(5217), + [anon_sym_BSLASHglslink] = ACTIONS(5217), + [anon_sym_BSLASHglstext] = ACTIONS(5217), + [anon_sym_BSLASHGlstext] = ACTIONS(5217), + [anon_sym_BSLASHGLStext] = ACTIONS(5217), + [anon_sym_BSLASHglsfirst] = ACTIONS(5217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), + [anon_sym_BSLASHglsplural] = ACTIONS(5217), + [anon_sym_BSLASHGlsplural] = ACTIONS(5217), + [anon_sym_BSLASHGLSplural] = ACTIONS(5217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHglsname] = ACTIONS(5217), + [anon_sym_BSLASHGlsname] = ACTIONS(5217), + [anon_sym_BSLASHGLSname] = ACTIONS(5217), + [anon_sym_BSLASHglssymbol] = ACTIONS(5217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), + [anon_sym_BSLASHglsdesc] = ACTIONS(5217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), + [anon_sym_BSLASHglsuseri] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), + [anon_sym_BSLASHglsuserii] = ACTIONS(5217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), + [anon_sym_BSLASHglsuserv] = ACTIONS(5217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), + [anon_sym_BSLASHglsuservi] = ACTIONS(5217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), + [anon_sym_BSLASHnewacronym] = ACTIONS(5217), + [anon_sym_BSLASHacrshort] = ACTIONS(5217), + [anon_sym_BSLASHAcrshort] = ACTIONS(5217), + [anon_sym_BSLASHACRshort] = ACTIONS(5217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), + [anon_sym_BSLASHacrlong] = ACTIONS(5217), + [anon_sym_BSLASHAcrlong] = ACTIONS(5217), + [anon_sym_BSLASHACRlong] = ACTIONS(5217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), + [anon_sym_BSLASHacrfull] = ACTIONS(5217), + [anon_sym_BSLASHAcrfull] = ACTIONS(5217), + [anon_sym_BSLASHACRfull] = ACTIONS(5217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), + [anon_sym_BSLASHacs] = ACTIONS(5217), + [anon_sym_BSLASHAcs] = ACTIONS(5217), + [anon_sym_BSLASHacsp] = ACTIONS(5217), + [anon_sym_BSLASHAcsp] = ACTIONS(5217), + [anon_sym_BSLASHacl] = ACTIONS(5217), + [anon_sym_BSLASHAcl] = ACTIONS(5217), + [anon_sym_BSLASHaclp] = ACTIONS(5217), + [anon_sym_BSLASHAclp] = ACTIONS(5217), + [anon_sym_BSLASHacf] = ACTIONS(5217), + [anon_sym_BSLASHAcf] = ACTIONS(5217), + [anon_sym_BSLASHacfp] = ACTIONS(5217), + [anon_sym_BSLASHAcfp] = ACTIONS(5217), + [anon_sym_BSLASHac] = ACTIONS(5217), + [anon_sym_BSLASHAc] = ACTIONS(5217), + [anon_sym_BSLASHacp] = ACTIONS(5217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), + [anon_sym_BSLASHcolor] = ACTIONS(5217), + [anon_sym_BSLASHcolorbox] = ACTIONS(5217), + [anon_sym_BSLASHtextcolor] = ACTIONS(5217), + [anon_sym_BSLASHpagecolor] = ACTIONS(5217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [anon_sym_BSLASHtext] = ACTIONS(5217), + [anon_sym_BSLASHintertext] = ACTIONS(5217), + [anon_sym_shortintertext] = ACTIONS(5217), }, - [1346] = { - [sym_command_name] = ACTIONS(5089), + [1219] = { + [sym_command_name] = ACTIONS(5225), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASHbegin] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHiffalse] = ACTIONS(5225), + [anon_sym_LPAREN] = ACTIONS(5223), + [anon_sym_RPAREN] = ACTIONS(5223), + [anon_sym_LBRACK] = ACTIONS(5223), + [anon_sym_RBRACK] = ACTIONS(5223), + [anon_sym_COMMA] = ACTIONS(5223), + [anon_sym_EQ] = ACTIONS(5223), + [anon_sym_BSLASHpart] = ACTIONS(5225), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddpart] = ACTIONS(5225), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5223), + [anon_sym_BSLASHchapter] = ACTIONS(5225), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddchap] = ACTIONS(5225), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsection] = ACTIONS(5225), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHaddsec] = ACTIONS(5225), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubsection] = ACTIONS(5225), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5225), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5223), + [anon_sym_BSLASHparagraph] = ACTIONS(5225), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5223), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5225), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5223), + [anon_sym_BSLASHitem] = ACTIONS(5225), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5223), + [anon_sym_LBRACE] = ACTIONS(5223), + [sym_word] = ACTIONS(5225), + [sym_placeholder] = ACTIONS(5223), + [anon_sym_PLUS] = ACTIONS(5225), + [anon_sym_DASH] = ACTIONS(5225), + [anon_sym_STAR] = ACTIONS(5225), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_CARET] = ACTIONS(5225), + [anon_sym__] = ACTIONS(5225), + [anon_sym_LT] = ACTIONS(5225), + [anon_sym_GT] = ACTIONS(5225), + [anon_sym_BANG] = ACTIONS(5225), + [anon_sym_PIPE] = ACTIONS(5225), + [anon_sym_COLON] = ACTIONS(5225), + [anon_sym_SQUOTE] = ACTIONS(5225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), + [anon_sym_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), + [anon_sym_BSLASHbegin] = ACTIONS(5225), + [anon_sym_BSLASHend] = ACTIONS(5225), + [anon_sym_BSLASHusepackage] = ACTIONS(5225), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), + [anon_sym_BSLASHinclude] = ACTIONS(5225), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), + [anon_sym_BSLASHinput] = ACTIONS(5225), + [anon_sym_BSLASHsubfile] = ACTIONS(5225), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), + [anon_sym_BSLASHbibliography] = ACTIONS(5225), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), + [anon_sym_BSLASHincludesvg] = ACTIONS(5225), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), + [anon_sym_BSLASHimport] = ACTIONS(5225), + [anon_sym_BSLASHsubimport] = ACTIONS(5225), + [anon_sym_BSLASHinputfrom] = ACTIONS(5225), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), + [anon_sym_BSLASHincludefrom] = ACTIONS(5225), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), + [anon_sym_BSLASHcaption] = ACTIONS(5225), + [anon_sym_BSLASHcite] = ACTIONS(5225), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCite] = ACTIONS(5225), + [anon_sym_BSLASHnocite] = ACTIONS(5225), + [anon_sym_BSLASHcitet] = ACTIONS(5225), + [anon_sym_BSLASHcitep] = ACTIONS(5225), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteyear] = ACTIONS(5225), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitedate] = ACTIONS(5225), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteurl] = ACTIONS(5225), + [anon_sym_BSLASHfullcite] = ACTIONS(5225), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), + [anon_sym_BSLASHcitealt] = ACTIONS(5225), + [anon_sym_BSLASHcitealp] = ACTIONS(5225), + [anon_sym_BSLASHcitetext] = ACTIONS(5225), + [anon_sym_BSLASHparencite] = ACTIONS(5225), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHParencite] = ACTIONS(5225), + [anon_sym_BSLASHfootcite] = ACTIONS(5225), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), + [anon_sym_BSLASHtextcite] = ACTIONS(5225), + [anon_sym_BSLASHTextcite] = ACTIONS(5225), + [anon_sym_BSLASHsmartcite] = ACTIONS(5225), + [anon_sym_BSLASHSmartcite] = ACTIONS(5225), + [anon_sym_BSLASHsupercite] = ACTIONS(5225), + [anon_sym_BSLASHautocite] = ACTIONS(5225), + [anon_sym_BSLASHAutocite] = ACTIONS(5225), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHvolcite] = ACTIONS(5225), + [anon_sym_BSLASHVolcite] = ACTIONS(5225), + [anon_sym_BSLASHpvolcite] = ACTIONS(5225), + [anon_sym_BSLASHPvolcite] = ACTIONS(5225), + [anon_sym_BSLASHfvolcite] = ACTIONS(5225), + [anon_sym_BSLASHftvolcite] = ACTIONS(5225), + [anon_sym_BSLASHsvolcite] = ACTIONS(5225), + [anon_sym_BSLASHSvolcite] = ACTIONS(5225), + [anon_sym_BSLASHtvolcite] = ACTIONS(5225), + [anon_sym_BSLASHTvolcite] = ACTIONS(5225), + [anon_sym_BSLASHavolcite] = ACTIONS(5225), + [anon_sym_BSLASHAvolcite] = ACTIONS(5225), + [anon_sym_BSLASHnotecite] = ACTIONS(5225), + [anon_sym_BSLASHNotecite] = ACTIONS(5225), + [anon_sym_BSLASHpnotecite] = ACTIONS(5225), + [anon_sym_BSLASHPnotecite] = ACTIONS(5225), + [anon_sym_BSLASHfnotecite] = ACTIONS(5225), + [anon_sym_BSLASHlabel] = ACTIONS(5225), + [anon_sym_BSLASHref] = ACTIONS(5225), + [anon_sym_BSLASHeqref] = ACTIONS(5225), + [anon_sym_BSLASHvref] = ACTIONS(5225), + [anon_sym_BSLASHVref] = ACTIONS(5225), + [anon_sym_BSLASHautoref] = ACTIONS(5225), + [anon_sym_BSLASHpageref] = ACTIONS(5225), + [anon_sym_BSLASHcref] = ACTIONS(5225), + [anon_sym_BSLASHCref] = ACTIONS(5225), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), + [anon_sym_BSLASHnamecref] = ACTIONS(5225), + [anon_sym_BSLASHnameCref] = ACTIONS(5225), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), + [anon_sym_BSLASHlabelcref] = ACTIONS(5225), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), + [anon_sym_BSLASHcrefrange] = ACTIONS(5225), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), + [anon_sym_BSLASHnewlabel] = ACTIONS(5225), + [anon_sym_BSLASHnewcommand] = ACTIONS(5225), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), + [anon_sym_BSLASHdef] = ACTIONS(5225), + [anon_sym_BSLASHlet] = ACTIONS(5225), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), + [anon_sym_BSLASHgls] = ACTIONS(5225), + [anon_sym_BSLASHGls] = ACTIONS(5225), + [anon_sym_BSLASHGLS] = ACTIONS(5225), + [anon_sym_BSLASHglspl] = ACTIONS(5225), + [anon_sym_BSLASHGlspl] = ACTIONS(5225), + [anon_sym_BSLASHGLSpl] = ACTIONS(5225), + [anon_sym_BSLASHglsdisp] = ACTIONS(5225), + [anon_sym_BSLASHglslink] = ACTIONS(5225), + [anon_sym_BSLASHglstext] = ACTIONS(5225), + [anon_sym_BSLASHGlstext] = ACTIONS(5225), + [anon_sym_BSLASHGLStext] = ACTIONS(5225), + [anon_sym_BSLASHglsfirst] = ACTIONS(5225), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), + [anon_sym_BSLASHglsplural] = ACTIONS(5225), + [anon_sym_BSLASHGlsplural] = ACTIONS(5225), + [anon_sym_BSLASHGLSplural] = ACTIONS(5225), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHglsname] = ACTIONS(5225), + [anon_sym_BSLASHGlsname] = ACTIONS(5225), + [anon_sym_BSLASHGLSname] = ACTIONS(5225), + [anon_sym_BSLASHglssymbol] = ACTIONS(5225), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), + [anon_sym_BSLASHglsdesc] = ACTIONS(5225), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), + [anon_sym_BSLASHglsuseri] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), + [anon_sym_BSLASHglsuserii] = ACTIONS(5225), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), + [anon_sym_BSLASHglsuserv] = ACTIONS(5225), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), + [anon_sym_BSLASHglsuservi] = ACTIONS(5225), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), + [anon_sym_BSLASHnewacronym] = ACTIONS(5225), + [anon_sym_BSLASHacrshort] = ACTIONS(5225), + [anon_sym_BSLASHAcrshort] = ACTIONS(5225), + [anon_sym_BSLASHACRshort] = ACTIONS(5225), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), + [anon_sym_BSLASHacrlong] = ACTIONS(5225), + [anon_sym_BSLASHAcrlong] = ACTIONS(5225), + [anon_sym_BSLASHACRlong] = ACTIONS(5225), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), + [anon_sym_BSLASHacrfull] = ACTIONS(5225), + [anon_sym_BSLASHAcrfull] = ACTIONS(5225), + [anon_sym_BSLASHACRfull] = ACTIONS(5225), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), + [anon_sym_BSLASHacs] = ACTIONS(5225), + [anon_sym_BSLASHAcs] = ACTIONS(5225), + [anon_sym_BSLASHacsp] = ACTIONS(5225), + [anon_sym_BSLASHAcsp] = ACTIONS(5225), + [anon_sym_BSLASHacl] = ACTIONS(5225), + [anon_sym_BSLASHAcl] = ACTIONS(5225), + [anon_sym_BSLASHaclp] = ACTIONS(5225), + [anon_sym_BSLASHAclp] = ACTIONS(5225), + [anon_sym_BSLASHacf] = ACTIONS(5225), + [anon_sym_BSLASHAcf] = ACTIONS(5225), + [anon_sym_BSLASHacfp] = ACTIONS(5225), + [anon_sym_BSLASHAcfp] = ACTIONS(5225), + [anon_sym_BSLASHac] = ACTIONS(5225), + [anon_sym_BSLASHAc] = ACTIONS(5225), + [anon_sym_BSLASHacp] = ACTIONS(5225), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), + [anon_sym_BSLASHcolor] = ACTIONS(5225), + [anon_sym_BSLASHcolorbox] = ACTIONS(5225), + [anon_sym_BSLASHtextcolor] = ACTIONS(5225), + [anon_sym_BSLASHpagecolor] = ACTIONS(5225), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), + [anon_sym_BSLASHtext] = ACTIONS(5225), + [anon_sym_BSLASHintertext] = ACTIONS(5225), + [anon_sym_shortintertext] = ACTIONS(5225), }, - [1347] = { + [1220] = { + [sym_command_name] = ACTIONS(5229), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5229), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5227), + [anon_sym_LBRACK] = ACTIONS(5227), + [anon_sym_RBRACK] = ACTIONS(5227), + [anon_sym_COMMA] = ACTIONS(5227), + [anon_sym_EQ] = ACTIONS(5227), + [anon_sym_BSLASHpart] = ACTIONS(5229), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddpart] = ACTIONS(5229), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5227), + [anon_sym_BSLASHchapter] = ACTIONS(5229), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddchap] = ACTIONS(5229), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsection] = ACTIONS(5229), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHaddsec] = ACTIONS(5229), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubsection] = ACTIONS(5229), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5229), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5227), + [anon_sym_BSLASHparagraph] = ACTIONS(5229), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5227), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5229), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5227), + [anon_sym_BSLASHitem] = ACTIONS(5229), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5227), + [anon_sym_LBRACE] = ACTIONS(5227), + [sym_word] = ACTIONS(5229), + [sym_placeholder] = ACTIONS(5227), + [anon_sym_PLUS] = ACTIONS(5229), + [anon_sym_DASH] = ACTIONS(5229), + [anon_sym_STAR] = ACTIONS(5229), + [anon_sym_SLASH] = ACTIONS(5229), + [anon_sym_CARET] = ACTIONS(5229), + [anon_sym__] = ACTIONS(5229), + [anon_sym_LT] = ACTIONS(5229), + [anon_sym_GT] = ACTIONS(5229), + [anon_sym_BANG] = ACTIONS(5229), + [anon_sym_PIPE] = ACTIONS(5229), + [anon_sym_COLON] = ACTIONS(5229), + [anon_sym_SQUOTE] = ACTIONS(5229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), + [anon_sym_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), + [anon_sym_BSLASHbegin] = ACTIONS(5229), + [anon_sym_BSLASHend] = ACTIONS(5229), + [anon_sym_BSLASHusepackage] = ACTIONS(5229), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), + [anon_sym_BSLASHinclude] = ACTIONS(5229), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), + [anon_sym_BSLASHinput] = ACTIONS(5229), + [anon_sym_BSLASHsubfile] = ACTIONS(5229), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), + [anon_sym_BSLASHbibliography] = ACTIONS(5229), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), + [anon_sym_BSLASHincludesvg] = ACTIONS(5229), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), + [anon_sym_BSLASHimport] = ACTIONS(5229), + [anon_sym_BSLASHsubimport] = ACTIONS(5229), + [anon_sym_BSLASHinputfrom] = ACTIONS(5229), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), + [anon_sym_BSLASHincludefrom] = ACTIONS(5229), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), + [anon_sym_BSLASHcaption] = ACTIONS(5229), + [anon_sym_BSLASHcite] = ACTIONS(5229), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCite] = ACTIONS(5229), + [anon_sym_BSLASHnocite] = ACTIONS(5229), + [anon_sym_BSLASHcitet] = ACTIONS(5229), + [anon_sym_BSLASHcitep] = ACTIONS(5229), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteyear] = ACTIONS(5229), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitedate] = ACTIONS(5229), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteurl] = ACTIONS(5229), + [anon_sym_BSLASHfullcite] = ACTIONS(5229), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), + [anon_sym_BSLASHcitealt] = ACTIONS(5229), + [anon_sym_BSLASHcitealp] = ACTIONS(5229), + [anon_sym_BSLASHcitetext] = ACTIONS(5229), + [anon_sym_BSLASHparencite] = ACTIONS(5229), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHParencite] = ACTIONS(5229), + [anon_sym_BSLASHfootcite] = ACTIONS(5229), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), + [anon_sym_BSLASHtextcite] = ACTIONS(5229), + [anon_sym_BSLASHTextcite] = ACTIONS(5229), + [anon_sym_BSLASHsmartcite] = ACTIONS(5229), + [anon_sym_BSLASHSmartcite] = ACTIONS(5229), + [anon_sym_BSLASHsupercite] = ACTIONS(5229), + [anon_sym_BSLASHautocite] = ACTIONS(5229), + [anon_sym_BSLASHAutocite] = ACTIONS(5229), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHvolcite] = ACTIONS(5229), + [anon_sym_BSLASHVolcite] = ACTIONS(5229), + [anon_sym_BSLASHpvolcite] = ACTIONS(5229), + [anon_sym_BSLASHPvolcite] = ACTIONS(5229), + [anon_sym_BSLASHfvolcite] = ACTIONS(5229), + [anon_sym_BSLASHftvolcite] = ACTIONS(5229), + [anon_sym_BSLASHsvolcite] = ACTIONS(5229), + [anon_sym_BSLASHSvolcite] = ACTIONS(5229), + [anon_sym_BSLASHtvolcite] = ACTIONS(5229), + [anon_sym_BSLASHTvolcite] = ACTIONS(5229), + [anon_sym_BSLASHavolcite] = ACTIONS(5229), + [anon_sym_BSLASHAvolcite] = ACTIONS(5229), + [anon_sym_BSLASHnotecite] = ACTIONS(5229), + [anon_sym_BSLASHNotecite] = ACTIONS(5229), + [anon_sym_BSLASHpnotecite] = ACTIONS(5229), + [anon_sym_BSLASHPnotecite] = ACTIONS(5229), + [anon_sym_BSLASHfnotecite] = ACTIONS(5229), + [anon_sym_BSLASHlabel] = ACTIONS(5229), + [anon_sym_BSLASHref] = ACTIONS(5229), + [anon_sym_BSLASHeqref] = ACTIONS(5229), + [anon_sym_BSLASHvref] = ACTIONS(5229), + [anon_sym_BSLASHVref] = ACTIONS(5229), + [anon_sym_BSLASHautoref] = ACTIONS(5229), + [anon_sym_BSLASHpageref] = ACTIONS(5229), + [anon_sym_BSLASHcref] = ACTIONS(5229), + [anon_sym_BSLASHCref] = ACTIONS(5229), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), + [anon_sym_BSLASHnamecref] = ACTIONS(5229), + [anon_sym_BSLASHnameCref] = ACTIONS(5229), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), + [anon_sym_BSLASHlabelcref] = ACTIONS(5229), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), + [anon_sym_BSLASHcrefrange] = ACTIONS(5229), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), + [anon_sym_BSLASHnewlabel] = ACTIONS(5229), + [anon_sym_BSLASHnewcommand] = ACTIONS(5229), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), + [anon_sym_BSLASHdef] = ACTIONS(5229), + [anon_sym_BSLASHlet] = ACTIONS(5229), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), + [anon_sym_BSLASHgls] = ACTIONS(5229), + [anon_sym_BSLASHGls] = ACTIONS(5229), + [anon_sym_BSLASHGLS] = ACTIONS(5229), + [anon_sym_BSLASHglspl] = ACTIONS(5229), + [anon_sym_BSLASHGlspl] = ACTIONS(5229), + [anon_sym_BSLASHGLSpl] = ACTIONS(5229), + [anon_sym_BSLASHglsdisp] = ACTIONS(5229), + [anon_sym_BSLASHglslink] = ACTIONS(5229), + [anon_sym_BSLASHglstext] = ACTIONS(5229), + [anon_sym_BSLASHGlstext] = ACTIONS(5229), + [anon_sym_BSLASHGLStext] = ACTIONS(5229), + [anon_sym_BSLASHglsfirst] = ACTIONS(5229), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), + [anon_sym_BSLASHglsplural] = ACTIONS(5229), + [anon_sym_BSLASHGlsplural] = ACTIONS(5229), + [anon_sym_BSLASHGLSplural] = ACTIONS(5229), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHglsname] = ACTIONS(5229), + [anon_sym_BSLASHGlsname] = ACTIONS(5229), + [anon_sym_BSLASHGLSname] = ACTIONS(5229), + [anon_sym_BSLASHglssymbol] = ACTIONS(5229), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), + [anon_sym_BSLASHglsdesc] = ACTIONS(5229), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), + [anon_sym_BSLASHglsuseri] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), + [anon_sym_BSLASHglsuserii] = ACTIONS(5229), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), + [anon_sym_BSLASHglsuserv] = ACTIONS(5229), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), + [anon_sym_BSLASHglsuservi] = ACTIONS(5229), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), + [anon_sym_BSLASHnewacronym] = ACTIONS(5229), + [anon_sym_BSLASHacrshort] = ACTIONS(5229), + [anon_sym_BSLASHAcrshort] = ACTIONS(5229), + [anon_sym_BSLASHACRshort] = ACTIONS(5229), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), + [anon_sym_BSLASHacrlong] = ACTIONS(5229), + [anon_sym_BSLASHAcrlong] = ACTIONS(5229), + [anon_sym_BSLASHACRlong] = ACTIONS(5229), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), + [anon_sym_BSLASHacrfull] = ACTIONS(5229), + [anon_sym_BSLASHAcrfull] = ACTIONS(5229), + [anon_sym_BSLASHACRfull] = ACTIONS(5229), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), + [anon_sym_BSLASHacs] = ACTIONS(5229), + [anon_sym_BSLASHAcs] = ACTIONS(5229), + [anon_sym_BSLASHacsp] = ACTIONS(5229), + [anon_sym_BSLASHAcsp] = ACTIONS(5229), + [anon_sym_BSLASHacl] = ACTIONS(5229), + [anon_sym_BSLASHAcl] = ACTIONS(5229), + [anon_sym_BSLASHaclp] = ACTIONS(5229), + [anon_sym_BSLASHAclp] = ACTIONS(5229), + [anon_sym_BSLASHacf] = ACTIONS(5229), + [anon_sym_BSLASHAcf] = ACTIONS(5229), + [anon_sym_BSLASHacfp] = ACTIONS(5229), + [anon_sym_BSLASHAcfp] = ACTIONS(5229), + [anon_sym_BSLASHac] = ACTIONS(5229), + [anon_sym_BSLASHAc] = ACTIONS(5229), + [anon_sym_BSLASHacp] = ACTIONS(5229), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), + [anon_sym_BSLASHcolor] = ACTIONS(5229), + [anon_sym_BSLASHcolorbox] = ACTIONS(5229), + [anon_sym_BSLASHtextcolor] = ACTIONS(5229), + [anon_sym_BSLASHpagecolor] = ACTIONS(5229), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), + [anon_sym_BSLASHtext] = ACTIONS(5229), + [anon_sym_BSLASHintertext] = ACTIONS(5229), + [anon_sym_shortintertext] = ACTIONS(5229), + }, + [1221] = { + [sym_command_name] = ACTIONS(5233), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5233), + [anon_sym_LPAREN] = ACTIONS(5231), + [anon_sym_RPAREN] = ACTIONS(5231), + [anon_sym_LBRACK] = ACTIONS(5231), + [anon_sym_RBRACK] = ACTIONS(5231), + [anon_sym_COMMA] = ACTIONS(5231), + [anon_sym_EQ] = ACTIONS(5231), + [anon_sym_BSLASHpart] = ACTIONS(5233), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddpart] = ACTIONS(5233), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5231), + [anon_sym_BSLASHchapter] = ACTIONS(5233), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddchap] = ACTIONS(5233), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsection] = ACTIONS(5233), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHaddsec] = ACTIONS(5233), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubsection] = ACTIONS(5233), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5233), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5231), + [anon_sym_BSLASHparagraph] = ACTIONS(5233), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5231), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5233), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5231), + [anon_sym_BSLASHitem] = ACTIONS(5233), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5231), + [anon_sym_LBRACE] = ACTIONS(5231), + [sym_word] = ACTIONS(5233), + [sym_placeholder] = ACTIONS(5231), + [anon_sym_PLUS] = ACTIONS(5233), + [anon_sym_DASH] = ACTIONS(5233), + [anon_sym_STAR] = ACTIONS(5233), + [anon_sym_SLASH] = ACTIONS(5233), + [anon_sym_CARET] = ACTIONS(5233), + [anon_sym__] = ACTIONS(5233), + [anon_sym_LT] = ACTIONS(5233), + [anon_sym_GT] = ACTIONS(5233), + [anon_sym_BANG] = ACTIONS(5233), + [anon_sym_PIPE] = ACTIONS(5233), + [anon_sym_COLON] = ACTIONS(5233), + [anon_sym_SQUOTE] = ACTIONS(5233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), + [anon_sym_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), + [anon_sym_BSLASHbegin] = ACTIONS(5233), + [anon_sym_BSLASHend] = ACTIONS(5233), + [anon_sym_BSLASHusepackage] = ACTIONS(5233), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), + [anon_sym_BSLASHinclude] = ACTIONS(5233), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), + [anon_sym_BSLASHinput] = ACTIONS(5233), + [anon_sym_BSLASHsubfile] = ACTIONS(5233), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), + [anon_sym_BSLASHbibliography] = ACTIONS(5233), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), + [anon_sym_BSLASHincludesvg] = ACTIONS(5233), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), + [anon_sym_BSLASHimport] = ACTIONS(5233), + [anon_sym_BSLASHsubimport] = ACTIONS(5233), + [anon_sym_BSLASHinputfrom] = ACTIONS(5233), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), + [anon_sym_BSLASHincludefrom] = ACTIONS(5233), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), + [anon_sym_BSLASHcaption] = ACTIONS(5233), + [anon_sym_BSLASHcite] = ACTIONS(5233), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCite] = ACTIONS(5233), + [anon_sym_BSLASHnocite] = ACTIONS(5233), + [anon_sym_BSLASHcitet] = ACTIONS(5233), + [anon_sym_BSLASHcitep] = ACTIONS(5233), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteyear] = ACTIONS(5233), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitedate] = ACTIONS(5233), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteurl] = ACTIONS(5233), + [anon_sym_BSLASHfullcite] = ACTIONS(5233), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), + [anon_sym_BSLASHcitealt] = ACTIONS(5233), + [anon_sym_BSLASHcitealp] = ACTIONS(5233), + [anon_sym_BSLASHcitetext] = ACTIONS(5233), + [anon_sym_BSLASHparencite] = ACTIONS(5233), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHParencite] = ACTIONS(5233), + [anon_sym_BSLASHfootcite] = ACTIONS(5233), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), + [anon_sym_BSLASHtextcite] = ACTIONS(5233), + [anon_sym_BSLASHTextcite] = ACTIONS(5233), + [anon_sym_BSLASHsmartcite] = ACTIONS(5233), + [anon_sym_BSLASHSmartcite] = ACTIONS(5233), + [anon_sym_BSLASHsupercite] = ACTIONS(5233), + [anon_sym_BSLASHautocite] = ACTIONS(5233), + [anon_sym_BSLASHAutocite] = ACTIONS(5233), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHvolcite] = ACTIONS(5233), + [anon_sym_BSLASHVolcite] = ACTIONS(5233), + [anon_sym_BSLASHpvolcite] = ACTIONS(5233), + [anon_sym_BSLASHPvolcite] = ACTIONS(5233), + [anon_sym_BSLASHfvolcite] = ACTIONS(5233), + [anon_sym_BSLASHftvolcite] = ACTIONS(5233), + [anon_sym_BSLASHsvolcite] = ACTIONS(5233), + [anon_sym_BSLASHSvolcite] = ACTIONS(5233), + [anon_sym_BSLASHtvolcite] = ACTIONS(5233), + [anon_sym_BSLASHTvolcite] = ACTIONS(5233), + [anon_sym_BSLASHavolcite] = ACTIONS(5233), + [anon_sym_BSLASHAvolcite] = ACTIONS(5233), + [anon_sym_BSLASHnotecite] = ACTIONS(5233), + [anon_sym_BSLASHNotecite] = ACTIONS(5233), + [anon_sym_BSLASHpnotecite] = ACTIONS(5233), + [anon_sym_BSLASHPnotecite] = ACTIONS(5233), + [anon_sym_BSLASHfnotecite] = ACTIONS(5233), + [anon_sym_BSLASHlabel] = ACTIONS(5233), + [anon_sym_BSLASHref] = ACTIONS(5233), + [anon_sym_BSLASHeqref] = ACTIONS(5233), + [anon_sym_BSLASHvref] = ACTIONS(5233), + [anon_sym_BSLASHVref] = ACTIONS(5233), + [anon_sym_BSLASHautoref] = ACTIONS(5233), + [anon_sym_BSLASHpageref] = ACTIONS(5233), + [anon_sym_BSLASHcref] = ACTIONS(5233), + [anon_sym_BSLASHCref] = ACTIONS(5233), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), + [anon_sym_BSLASHnamecref] = ACTIONS(5233), + [anon_sym_BSLASHnameCref] = ACTIONS(5233), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), + [anon_sym_BSLASHlabelcref] = ACTIONS(5233), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), + [anon_sym_BSLASHcrefrange] = ACTIONS(5233), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), + [anon_sym_BSLASHnewlabel] = ACTIONS(5233), + [anon_sym_BSLASHnewcommand] = ACTIONS(5233), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), + [anon_sym_BSLASHdef] = ACTIONS(5233), + [anon_sym_BSLASHlet] = ACTIONS(5233), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), + [anon_sym_BSLASHgls] = ACTIONS(5233), + [anon_sym_BSLASHGls] = ACTIONS(5233), + [anon_sym_BSLASHGLS] = ACTIONS(5233), + [anon_sym_BSLASHglspl] = ACTIONS(5233), + [anon_sym_BSLASHGlspl] = ACTIONS(5233), + [anon_sym_BSLASHGLSpl] = ACTIONS(5233), + [anon_sym_BSLASHglsdisp] = ACTIONS(5233), + [anon_sym_BSLASHglslink] = ACTIONS(5233), + [anon_sym_BSLASHglstext] = ACTIONS(5233), + [anon_sym_BSLASHGlstext] = ACTIONS(5233), + [anon_sym_BSLASHGLStext] = ACTIONS(5233), + [anon_sym_BSLASHglsfirst] = ACTIONS(5233), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), + [anon_sym_BSLASHglsplural] = ACTIONS(5233), + [anon_sym_BSLASHGlsplural] = ACTIONS(5233), + [anon_sym_BSLASHGLSplural] = ACTIONS(5233), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHglsname] = ACTIONS(5233), + [anon_sym_BSLASHGlsname] = ACTIONS(5233), + [anon_sym_BSLASHGLSname] = ACTIONS(5233), + [anon_sym_BSLASHglssymbol] = ACTIONS(5233), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), + [anon_sym_BSLASHglsdesc] = ACTIONS(5233), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), + [anon_sym_BSLASHglsuseri] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), + [anon_sym_BSLASHglsuserii] = ACTIONS(5233), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), + [anon_sym_BSLASHglsuserv] = ACTIONS(5233), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), + [anon_sym_BSLASHglsuservi] = ACTIONS(5233), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), + [anon_sym_BSLASHnewacronym] = ACTIONS(5233), + [anon_sym_BSLASHacrshort] = ACTIONS(5233), + [anon_sym_BSLASHAcrshort] = ACTIONS(5233), + [anon_sym_BSLASHACRshort] = ACTIONS(5233), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), + [anon_sym_BSLASHacrlong] = ACTIONS(5233), + [anon_sym_BSLASHAcrlong] = ACTIONS(5233), + [anon_sym_BSLASHACRlong] = ACTIONS(5233), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), + [anon_sym_BSLASHacrfull] = ACTIONS(5233), + [anon_sym_BSLASHAcrfull] = ACTIONS(5233), + [anon_sym_BSLASHACRfull] = ACTIONS(5233), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), + [anon_sym_BSLASHacs] = ACTIONS(5233), + [anon_sym_BSLASHAcs] = ACTIONS(5233), + [anon_sym_BSLASHacsp] = ACTIONS(5233), + [anon_sym_BSLASHAcsp] = ACTIONS(5233), + [anon_sym_BSLASHacl] = ACTIONS(5233), + [anon_sym_BSLASHAcl] = ACTIONS(5233), + [anon_sym_BSLASHaclp] = ACTIONS(5233), + [anon_sym_BSLASHAclp] = ACTIONS(5233), + [anon_sym_BSLASHacf] = ACTIONS(5233), + [anon_sym_BSLASHAcf] = ACTIONS(5233), + [anon_sym_BSLASHacfp] = ACTIONS(5233), + [anon_sym_BSLASHAcfp] = ACTIONS(5233), + [anon_sym_BSLASHac] = ACTIONS(5233), + [anon_sym_BSLASHAc] = ACTIONS(5233), + [anon_sym_BSLASHacp] = ACTIONS(5233), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), + [anon_sym_BSLASHcolor] = ACTIONS(5233), + [anon_sym_BSLASHcolorbox] = ACTIONS(5233), + [anon_sym_BSLASHtextcolor] = ACTIONS(5233), + [anon_sym_BSLASHpagecolor] = ACTIONS(5233), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), + [anon_sym_BSLASHtext] = ACTIONS(5233), + [anon_sym_BSLASHintertext] = ACTIONS(5233), + [anon_sym_shortintertext] = ACTIONS(5233), + }, + [1222] = { + [sym_command_name] = ACTIONS(5237), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5237), + [anon_sym_LPAREN] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(5235), + [anon_sym_LBRACK] = ACTIONS(5235), + [anon_sym_RBRACK] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_EQ] = ACTIONS(5235), + [anon_sym_BSLASHpart] = ACTIONS(5237), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddpart] = ACTIONS(5237), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5235), + [anon_sym_BSLASHchapter] = ACTIONS(5237), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddchap] = ACTIONS(5237), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsection] = ACTIONS(5237), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHaddsec] = ACTIONS(5237), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubsection] = ACTIONS(5237), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5237), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5235), + [anon_sym_BSLASHparagraph] = ACTIONS(5237), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5235), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5237), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5235), + [anon_sym_BSLASHitem] = ACTIONS(5237), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5235), + [anon_sym_LBRACE] = ACTIONS(5235), + [sym_word] = ACTIONS(5237), + [sym_placeholder] = ACTIONS(5235), + [anon_sym_PLUS] = ACTIONS(5237), + [anon_sym_DASH] = ACTIONS(5237), + [anon_sym_STAR] = ACTIONS(5237), + [anon_sym_SLASH] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym__] = ACTIONS(5237), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_BANG] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_COLON] = ACTIONS(5237), + [anon_sym_SQUOTE] = ACTIONS(5237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), + [anon_sym_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), + [anon_sym_BSLASHbegin] = ACTIONS(5237), + [anon_sym_BSLASHend] = ACTIONS(5237), + [anon_sym_BSLASHusepackage] = ACTIONS(5237), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), + [anon_sym_BSLASHinclude] = ACTIONS(5237), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), + [anon_sym_BSLASHinput] = ACTIONS(5237), + [anon_sym_BSLASHsubfile] = ACTIONS(5237), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), + [anon_sym_BSLASHbibliography] = ACTIONS(5237), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), + [anon_sym_BSLASHincludesvg] = ACTIONS(5237), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), + [anon_sym_BSLASHimport] = ACTIONS(5237), + [anon_sym_BSLASHsubimport] = ACTIONS(5237), + [anon_sym_BSLASHinputfrom] = ACTIONS(5237), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), + [anon_sym_BSLASHincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHcaption] = ACTIONS(5237), + [anon_sym_BSLASHcite] = ACTIONS(5237), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCite] = ACTIONS(5237), + [anon_sym_BSLASHnocite] = ACTIONS(5237), + [anon_sym_BSLASHcitet] = ACTIONS(5237), + [anon_sym_BSLASHcitep] = ACTIONS(5237), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteyear] = ACTIONS(5237), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitedate] = ACTIONS(5237), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteurl] = ACTIONS(5237), + [anon_sym_BSLASHfullcite] = ACTIONS(5237), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), + [anon_sym_BSLASHcitealt] = ACTIONS(5237), + [anon_sym_BSLASHcitealp] = ACTIONS(5237), + [anon_sym_BSLASHcitetext] = ACTIONS(5237), + [anon_sym_BSLASHparencite] = ACTIONS(5237), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHParencite] = ACTIONS(5237), + [anon_sym_BSLASHfootcite] = ACTIONS(5237), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), + [anon_sym_BSLASHtextcite] = ACTIONS(5237), + [anon_sym_BSLASHTextcite] = ACTIONS(5237), + [anon_sym_BSLASHsmartcite] = ACTIONS(5237), + [anon_sym_BSLASHSmartcite] = ACTIONS(5237), + [anon_sym_BSLASHsupercite] = ACTIONS(5237), + [anon_sym_BSLASHautocite] = ACTIONS(5237), + [anon_sym_BSLASHAutocite] = ACTIONS(5237), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHvolcite] = ACTIONS(5237), + [anon_sym_BSLASHVolcite] = ACTIONS(5237), + [anon_sym_BSLASHpvolcite] = ACTIONS(5237), + [anon_sym_BSLASHPvolcite] = ACTIONS(5237), + [anon_sym_BSLASHfvolcite] = ACTIONS(5237), + [anon_sym_BSLASHftvolcite] = ACTIONS(5237), + [anon_sym_BSLASHsvolcite] = ACTIONS(5237), + [anon_sym_BSLASHSvolcite] = ACTIONS(5237), + [anon_sym_BSLASHtvolcite] = ACTIONS(5237), + [anon_sym_BSLASHTvolcite] = ACTIONS(5237), + [anon_sym_BSLASHavolcite] = ACTIONS(5237), + [anon_sym_BSLASHAvolcite] = ACTIONS(5237), + [anon_sym_BSLASHnotecite] = ACTIONS(5237), + [anon_sym_BSLASHNotecite] = ACTIONS(5237), + [anon_sym_BSLASHpnotecite] = ACTIONS(5237), + [anon_sym_BSLASHPnotecite] = ACTIONS(5237), + [anon_sym_BSLASHfnotecite] = ACTIONS(5237), + [anon_sym_BSLASHlabel] = ACTIONS(5237), + [anon_sym_BSLASHref] = ACTIONS(5237), + [anon_sym_BSLASHeqref] = ACTIONS(5237), + [anon_sym_BSLASHvref] = ACTIONS(5237), + [anon_sym_BSLASHVref] = ACTIONS(5237), + [anon_sym_BSLASHautoref] = ACTIONS(5237), + [anon_sym_BSLASHpageref] = ACTIONS(5237), + [anon_sym_BSLASHcref] = ACTIONS(5237), + [anon_sym_BSLASHCref] = ACTIONS(5237), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnameCref] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHlabelcref] = ACTIONS(5237), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnewlabel] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), + [anon_sym_BSLASHdef] = ACTIONS(5237), + [anon_sym_BSLASHlet] = ACTIONS(5237), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), + [anon_sym_BSLASHgls] = ACTIONS(5237), + [anon_sym_BSLASHGls] = ACTIONS(5237), + [anon_sym_BSLASHGLS] = ACTIONS(5237), + [anon_sym_BSLASHglspl] = ACTIONS(5237), + [anon_sym_BSLASHGlspl] = ACTIONS(5237), + [anon_sym_BSLASHGLSpl] = ACTIONS(5237), + [anon_sym_BSLASHglsdisp] = ACTIONS(5237), + [anon_sym_BSLASHglslink] = ACTIONS(5237), + [anon_sym_BSLASHglstext] = ACTIONS(5237), + [anon_sym_BSLASHGlstext] = ACTIONS(5237), + [anon_sym_BSLASHGLStext] = ACTIONS(5237), + [anon_sym_BSLASHglsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), + [anon_sym_BSLASHglsplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSplural] = ACTIONS(5237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHglsname] = ACTIONS(5237), + [anon_sym_BSLASHGlsname] = ACTIONS(5237), + [anon_sym_BSLASHGLSname] = ACTIONS(5237), + [anon_sym_BSLASHglssymbol] = ACTIONS(5237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), + [anon_sym_BSLASHglsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), + [anon_sym_BSLASHglsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), + [anon_sym_BSLASHglsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), + [anon_sym_BSLASHglsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), + [anon_sym_BSLASHglsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), + [anon_sym_BSLASHnewacronym] = ACTIONS(5237), + [anon_sym_BSLASHacrshort] = ACTIONS(5237), + [anon_sym_BSLASHAcrshort] = ACTIONS(5237), + [anon_sym_BSLASHACRshort] = ACTIONS(5237), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), + [anon_sym_BSLASHacrlong] = ACTIONS(5237), + [anon_sym_BSLASHAcrlong] = ACTIONS(5237), + [anon_sym_BSLASHACRlong] = ACTIONS(5237), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), + [anon_sym_BSLASHacrfull] = ACTIONS(5237), + [anon_sym_BSLASHAcrfull] = ACTIONS(5237), + [anon_sym_BSLASHACRfull] = ACTIONS(5237), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), + [anon_sym_BSLASHacs] = ACTIONS(5237), + [anon_sym_BSLASHAcs] = ACTIONS(5237), + [anon_sym_BSLASHacsp] = ACTIONS(5237), + [anon_sym_BSLASHAcsp] = ACTIONS(5237), + [anon_sym_BSLASHacl] = ACTIONS(5237), + [anon_sym_BSLASHAcl] = ACTIONS(5237), + [anon_sym_BSLASHaclp] = ACTIONS(5237), + [anon_sym_BSLASHAclp] = ACTIONS(5237), + [anon_sym_BSLASHacf] = ACTIONS(5237), + [anon_sym_BSLASHAcf] = ACTIONS(5237), + [anon_sym_BSLASHacfp] = ACTIONS(5237), + [anon_sym_BSLASHAcfp] = ACTIONS(5237), + [anon_sym_BSLASHac] = ACTIONS(5237), + [anon_sym_BSLASHAc] = ACTIONS(5237), + [anon_sym_BSLASHacp] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), + [anon_sym_BSLASHcolor] = ACTIONS(5237), + [anon_sym_BSLASHcolorbox] = ACTIONS(5237), + [anon_sym_BSLASHtextcolor] = ACTIONS(5237), + [anon_sym_BSLASHpagecolor] = ACTIONS(5237), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), + [anon_sym_BSLASHtext] = ACTIONS(5237), + [anon_sym_BSLASHintertext] = ACTIONS(5237), + [anon_sym_shortintertext] = ACTIONS(5237), + }, + [1223] = { + [sym_command_name] = ACTIONS(4955), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_EQ] = ACTIONS(4953), + [anon_sym_BSLASHpart] = ACTIONS(4955), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddpart] = ACTIONS(4955), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4953), + [anon_sym_BSLASHchapter] = ACTIONS(4955), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddchap] = ACTIONS(4955), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsection] = ACTIONS(4955), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddsec] = ACTIONS(4955), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubsection] = ACTIONS(4955), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4955), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHparagraph] = ACTIONS(4955), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4955), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4953), + [anon_sym_BSLASHitem] = ACTIONS(4955), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4953), + [sym_word] = ACTIONS(4955), + [sym_placeholder] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4955), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), + [anon_sym__] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(4955), + [anon_sym_SQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), + [anon_sym_DOLLAR] = ACTIONS(4955), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), + [anon_sym_BSLASHbegin] = ACTIONS(4955), + [anon_sym_BSLASHend] = ACTIONS(4955), + [anon_sym_BSLASHusepackage] = ACTIONS(4955), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), + [anon_sym_BSLASHinclude] = ACTIONS(4955), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), + [anon_sym_BSLASHinput] = ACTIONS(4955), + [anon_sym_BSLASHsubfile] = ACTIONS(4955), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), + [anon_sym_BSLASHbibliography] = ACTIONS(4955), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), + [anon_sym_BSLASHincludesvg] = ACTIONS(4955), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), + [anon_sym_BSLASHimport] = ACTIONS(4955), + [anon_sym_BSLASHsubimport] = ACTIONS(4955), + [anon_sym_BSLASHinputfrom] = ACTIONS(4955), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), + [anon_sym_BSLASHincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHcaption] = ACTIONS(4955), + [anon_sym_BSLASHcite] = ACTIONS(4955), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCite] = ACTIONS(4955), + [anon_sym_BSLASHnocite] = ACTIONS(4955), + [anon_sym_BSLASHcitet] = ACTIONS(4955), + [anon_sym_BSLASHcitep] = ACTIONS(4955), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteauthor] = ACTIONS(4955), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitetitle] = ACTIONS(4955), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteyear] = ACTIONS(4955), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitedate] = ACTIONS(4955), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteurl] = ACTIONS(4955), + [anon_sym_BSLASHfullcite] = ACTIONS(4955), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), + [anon_sym_BSLASHcitealt] = ACTIONS(4955), + [anon_sym_BSLASHcitealp] = ACTIONS(4955), + [anon_sym_BSLASHcitetext] = ACTIONS(4955), + [anon_sym_BSLASHparencite] = ACTIONS(4955), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHParencite] = ACTIONS(4955), + [anon_sym_BSLASHfootcite] = ACTIONS(4955), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), + [anon_sym_BSLASHtextcite] = ACTIONS(4955), + [anon_sym_BSLASHTextcite] = ACTIONS(4955), + [anon_sym_BSLASHsmartcite] = ACTIONS(4955), + [anon_sym_BSLASHSmartcite] = ACTIONS(4955), + [anon_sym_BSLASHsupercite] = ACTIONS(4955), + [anon_sym_BSLASHautocite] = ACTIONS(4955), + [anon_sym_BSLASHAutocite] = ACTIONS(4955), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHvolcite] = ACTIONS(4955), + [anon_sym_BSLASHVolcite] = ACTIONS(4955), + [anon_sym_BSLASHpvolcite] = ACTIONS(4955), + [anon_sym_BSLASHPvolcite] = ACTIONS(4955), + [anon_sym_BSLASHfvolcite] = ACTIONS(4955), + [anon_sym_BSLASHftvolcite] = ACTIONS(4955), + [anon_sym_BSLASHsvolcite] = ACTIONS(4955), + [anon_sym_BSLASHSvolcite] = ACTIONS(4955), + [anon_sym_BSLASHtvolcite] = ACTIONS(4955), + [anon_sym_BSLASHTvolcite] = ACTIONS(4955), + [anon_sym_BSLASHavolcite] = ACTIONS(4955), + [anon_sym_BSLASHAvolcite] = ACTIONS(4955), + [anon_sym_BSLASHnotecite] = ACTIONS(4955), + [anon_sym_BSLASHNotecite] = ACTIONS(4955), + [anon_sym_BSLASHpnotecite] = ACTIONS(4955), + [anon_sym_BSLASHPnotecite] = ACTIONS(4955), + [anon_sym_BSLASHfnotecite] = ACTIONS(4955), + [anon_sym_BSLASHlabel] = ACTIONS(4955), + [anon_sym_BSLASHref] = ACTIONS(4955), + [anon_sym_BSLASHeqref] = ACTIONS(4955), + [anon_sym_BSLASHvref] = ACTIONS(4955), + [anon_sym_BSLASHVref] = ACTIONS(4955), + [anon_sym_BSLASHautoref] = ACTIONS(4955), + [anon_sym_BSLASHpageref] = ACTIONS(4955), + [anon_sym_BSLASHcref] = ACTIONS(4955), + [anon_sym_BSLASHCref] = ACTIONS(4955), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnameCref] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHlabelcref] = ACTIONS(4955), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCrefrange] = ACTIONS(4955), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnewlabel] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), + [anon_sym_BSLASHdef] = ACTIONS(4955), + [anon_sym_BSLASHlet] = ACTIONS(4955), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), + [anon_sym_BSLASHgls] = ACTIONS(4955), + [anon_sym_BSLASHGls] = ACTIONS(4955), + [anon_sym_BSLASHGLS] = ACTIONS(4955), + [anon_sym_BSLASHglspl] = ACTIONS(4955), + [anon_sym_BSLASHGlspl] = ACTIONS(4955), + [anon_sym_BSLASHGLSpl] = ACTIONS(4955), + [anon_sym_BSLASHglsdisp] = ACTIONS(4955), + [anon_sym_BSLASHglslink] = ACTIONS(4955), + [anon_sym_BSLASHglstext] = ACTIONS(4955), + [anon_sym_BSLASHGlstext] = ACTIONS(4955), + [anon_sym_BSLASHGLStext] = ACTIONS(4955), + [anon_sym_BSLASHglsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), + [anon_sym_BSLASHglsplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSplural] = ACTIONS(4955), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHglsname] = ACTIONS(4955), + [anon_sym_BSLASHGlsname] = ACTIONS(4955), + [anon_sym_BSLASHGLSname] = ACTIONS(4955), + [anon_sym_BSLASHglssymbol] = ACTIONS(4955), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), + [anon_sym_BSLASHglsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), + [anon_sym_BSLASHglsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), + [anon_sym_BSLASHglsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), + [anon_sym_BSLASHglsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), + [anon_sym_BSLASHglsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), + [anon_sym_BSLASHnewacronym] = ACTIONS(4955), + [anon_sym_BSLASHacrshort] = ACTIONS(4955), + [anon_sym_BSLASHAcrshort] = ACTIONS(4955), + [anon_sym_BSLASHACRshort] = ACTIONS(4955), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), + [anon_sym_BSLASHacrlong] = ACTIONS(4955), + [anon_sym_BSLASHAcrlong] = ACTIONS(4955), + [anon_sym_BSLASHACRlong] = ACTIONS(4955), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), + [anon_sym_BSLASHacrfull] = ACTIONS(4955), + [anon_sym_BSLASHAcrfull] = ACTIONS(4955), + [anon_sym_BSLASHACRfull] = ACTIONS(4955), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), + [anon_sym_BSLASHacs] = ACTIONS(4955), + [anon_sym_BSLASHAcs] = ACTIONS(4955), + [anon_sym_BSLASHacsp] = ACTIONS(4955), + [anon_sym_BSLASHAcsp] = ACTIONS(4955), + [anon_sym_BSLASHacl] = ACTIONS(4955), + [anon_sym_BSLASHAcl] = ACTIONS(4955), + [anon_sym_BSLASHaclp] = ACTIONS(4955), + [anon_sym_BSLASHAclp] = ACTIONS(4955), + [anon_sym_BSLASHacf] = ACTIONS(4955), + [anon_sym_BSLASHAcf] = ACTIONS(4955), + [anon_sym_BSLASHacfp] = ACTIONS(4955), + [anon_sym_BSLASHAcfp] = ACTIONS(4955), + [anon_sym_BSLASHac] = ACTIONS(4955), + [anon_sym_BSLASHAc] = ACTIONS(4955), + [anon_sym_BSLASHacp] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), + [anon_sym_BSLASHcolor] = ACTIONS(4955), + [anon_sym_BSLASHcolorbox] = ACTIONS(4955), + [anon_sym_BSLASHtextcolor] = ACTIONS(4955), + [anon_sym_BSLASHpagecolor] = ACTIONS(4955), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), + [anon_sym_BSLASHtext] = ACTIONS(4955), + [anon_sym_BSLASHintertext] = ACTIONS(4955), + [anon_sym_shortintertext] = ACTIONS(4955), + }, + [1224] = { + [sym_command_name] = ACTIONS(5241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5241), + [anon_sym_LPAREN] = ACTIONS(5239), + [anon_sym_RPAREN] = ACTIONS(5239), + [anon_sym_LBRACK] = ACTIONS(5239), + [anon_sym_RBRACK] = ACTIONS(5239), + [anon_sym_COMMA] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_BSLASHpart] = ACTIONS(5241), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddpart] = ACTIONS(5241), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5239), + [anon_sym_BSLASHchapter] = ACTIONS(5241), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddchap] = ACTIONS(5241), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsection] = ACTIONS(5241), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHaddsec] = ACTIONS(5241), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubsection] = ACTIONS(5241), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5241), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5239), + [anon_sym_BSLASHparagraph] = ACTIONS(5241), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5239), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5241), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5239), + [anon_sym_BSLASHitem] = ACTIONS(5241), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(5239), + [sym_word] = ACTIONS(5241), + [sym_placeholder] = ACTIONS(5239), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5241), + [anon_sym_CARET] = ACTIONS(5241), + [anon_sym__] = ACTIONS(5241), + [anon_sym_LT] = ACTIONS(5241), + [anon_sym_GT] = ACTIONS(5241), + [anon_sym_BANG] = ACTIONS(5241), + [anon_sym_PIPE] = ACTIONS(5241), + [anon_sym_COLON] = ACTIONS(5241), + [anon_sym_SQUOTE] = ACTIONS(5241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), + [anon_sym_DOLLAR] = ACTIONS(5241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), + [anon_sym_BSLASHbegin] = ACTIONS(5241), + [anon_sym_BSLASHend] = ACTIONS(5241), + [anon_sym_BSLASHusepackage] = ACTIONS(5241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), + [anon_sym_BSLASHinclude] = ACTIONS(5241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), + [anon_sym_BSLASHinput] = ACTIONS(5241), + [anon_sym_BSLASHsubfile] = ACTIONS(5241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), + [anon_sym_BSLASHbibliography] = ACTIONS(5241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), + [anon_sym_BSLASHincludesvg] = ACTIONS(5241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), + [anon_sym_BSLASHimport] = ACTIONS(5241), + [anon_sym_BSLASHsubimport] = ACTIONS(5241), + [anon_sym_BSLASHinputfrom] = ACTIONS(5241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), + [anon_sym_BSLASHincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHcaption] = ACTIONS(5241), + [anon_sym_BSLASHcite] = ACTIONS(5241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCite] = ACTIONS(5241), + [anon_sym_BSLASHnocite] = ACTIONS(5241), + [anon_sym_BSLASHcitet] = ACTIONS(5241), + [anon_sym_BSLASHcitep] = ACTIONS(5241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor] = ACTIONS(5241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle] = ACTIONS(5241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteyear] = ACTIONS(5241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitedate] = ACTIONS(5241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteurl] = ACTIONS(5241), + [anon_sym_BSLASHfullcite] = ACTIONS(5241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), + [anon_sym_BSLASHcitealt] = ACTIONS(5241), + [anon_sym_BSLASHcitealp] = ACTIONS(5241), + [anon_sym_BSLASHcitetext] = ACTIONS(5241), + [anon_sym_BSLASHparencite] = ACTIONS(5241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHParencite] = ACTIONS(5241), + [anon_sym_BSLASHfootcite] = ACTIONS(5241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), + [anon_sym_BSLASHtextcite] = ACTIONS(5241), + [anon_sym_BSLASHTextcite] = ACTIONS(5241), + [anon_sym_BSLASHsmartcite] = ACTIONS(5241), + [anon_sym_BSLASHSmartcite] = ACTIONS(5241), + [anon_sym_BSLASHsupercite] = ACTIONS(5241), + [anon_sym_BSLASHautocite] = ACTIONS(5241), + [anon_sym_BSLASHAutocite] = ACTIONS(5241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHvolcite] = ACTIONS(5241), + [anon_sym_BSLASHVolcite] = ACTIONS(5241), + [anon_sym_BSLASHpvolcite] = ACTIONS(5241), + [anon_sym_BSLASHPvolcite] = ACTIONS(5241), + [anon_sym_BSLASHfvolcite] = ACTIONS(5241), + [anon_sym_BSLASHftvolcite] = ACTIONS(5241), + [anon_sym_BSLASHsvolcite] = ACTIONS(5241), + [anon_sym_BSLASHSvolcite] = ACTIONS(5241), + [anon_sym_BSLASHtvolcite] = ACTIONS(5241), + [anon_sym_BSLASHTvolcite] = ACTIONS(5241), + [anon_sym_BSLASHavolcite] = ACTIONS(5241), + [anon_sym_BSLASHAvolcite] = ACTIONS(5241), + [anon_sym_BSLASHnotecite] = ACTIONS(5241), + [anon_sym_BSLASHNotecite] = ACTIONS(5241), + [anon_sym_BSLASHpnotecite] = ACTIONS(5241), + [anon_sym_BSLASHPnotecite] = ACTIONS(5241), + [anon_sym_BSLASHfnotecite] = ACTIONS(5241), + [anon_sym_BSLASHlabel] = ACTIONS(5241), + [anon_sym_BSLASHref] = ACTIONS(5241), + [anon_sym_BSLASHeqref] = ACTIONS(5241), + [anon_sym_BSLASHvref] = ACTIONS(5241), + [anon_sym_BSLASHVref] = ACTIONS(5241), + [anon_sym_BSLASHautoref] = ACTIONS(5241), + [anon_sym_BSLASHpageref] = ACTIONS(5241), + [anon_sym_BSLASHcref] = ACTIONS(5241), + [anon_sym_BSLASHCref] = ACTIONS(5241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnameCref] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHlabelcref] = ACTIONS(5241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange] = ACTIONS(5241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnewlabel] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), + [anon_sym_BSLASHdef] = ACTIONS(5241), + [anon_sym_BSLASHlet] = ACTIONS(5241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), + [anon_sym_BSLASHgls] = ACTIONS(5241), + [anon_sym_BSLASHGls] = ACTIONS(5241), + [anon_sym_BSLASHGLS] = ACTIONS(5241), + [anon_sym_BSLASHglspl] = ACTIONS(5241), + [anon_sym_BSLASHGlspl] = ACTIONS(5241), + [anon_sym_BSLASHGLSpl] = ACTIONS(5241), + [anon_sym_BSLASHglsdisp] = ACTIONS(5241), + [anon_sym_BSLASHglslink] = ACTIONS(5241), + [anon_sym_BSLASHglstext] = ACTIONS(5241), + [anon_sym_BSLASHGlstext] = ACTIONS(5241), + [anon_sym_BSLASHGLStext] = ACTIONS(5241), + [anon_sym_BSLASHglsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), + [anon_sym_BSLASHglsplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSplural] = ACTIONS(5241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHglsname] = ACTIONS(5241), + [anon_sym_BSLASHGlsname] = ACTIONS(5241), + [anon_sym_BSLASHGLSname] = ACTIONS(5241), + [anon_sym_BSLASHglssymbol] = ACTIONS(5241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), + [anon_sym_BSLASHglsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), + [anon_sym_BSLASHglsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), + [anon_sym_BSLASHglsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), + [anon_sym_BSLASHglsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), + [anon_sym_BSLASHglsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), + [anon_sym_BSLASHnewacronym] = ACTIONS(5241), + [anon_sym_BSLASHacrshort] = ACTIONS(5241), + [anon_sym_BSLASHAcrshort] = ACTIONS(5241), + [anon_sym_BSLASHACRshort] = ACTIONS(5241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), + [anon_sym_BSLASHacrlong] = ACTIONS(5241), + [anon_sym_BSLASHAcrlong] = ACTIONS(5241), + [anon_sym_BSLASHACRlong] = ACTIONS(5241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), + [anon_sym_BSLASHacrfull] = ACTIONS(5241), + [anon_sym_BSLASHAcrfull] = ACTIONS(5241), + [anon_sym_BSLASHACRfull] = ACTIONS(5241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), + [anon_sym_BSLASHacs] = ACTIONS(5241), + [anon_sym_BSLASHAcs] = ACTIONS(5241), + [anon_sym_BSLASHacsp] = ACTIONS(5241), + [anon_sym_BSLASHAcsp] = ACTIONS(5241), + [anon_sym_BSLASHacl] = ACTIONS(5241), + [anon_sym_BSLASHAcl] = ACTIONS(5241), + [anon_sym_BSLASHaclp] = ACTIONS(5241), + [anon_sym_BSLASHAclp] = ACTIONS(5241), + [anon_sym_BSLASHacf] = ACTIONS(5241), + [anon_sym_BSLASHAcf] = ACTIONS(5241), + [anon_sym_BSLASHacfp] = ACTIONS(5241), + [anon_sym_BSLASHAcfp] = ACTIONS(5241), + [anon_sym_BSLASHac] = ACTIONS(5241), + [anon_sym_BSLASHAc] = ACTIONS(5241), + [anon_sym_BSLASHacp] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), + [anon_sym_BSLASHcolor] = ACTIONS(5241), + [anon_sym_BSLASHcolorbox] = ACTIONS(5241), + [anon_sym_BSLASHtextcolor] = ACTIONS(5241), + [anon_sym_BSLASHpagecolor] = ACTIONS(5241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), + [anon_sym_BSLASHtext] = ACTIONS(5241), + [anon_sym_BSLASHintertext] = ACTIONS(5241), + [anon_sym_shortintertext] = ACTIONS(5241), + }, + [1225] = { + [sym_command_name] = ACTIONS(5319), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5319), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_BSLASHpart] = ACTIONS(5319), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddpart] = ACTIONS(5319), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5321), + [anon_sym_BSLASHchapter] = ACTIONS(5319), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddchap] = ACTIONS(5319), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsection] = ACTIONS(5319), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHaddsec] = ACTIONS(5319), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsection] = ACTIONS(5319), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5319), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5321), + [anon_sym_BSLASHparagraph] = ACTIONS(5319), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5319), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5321), + [anon_sym_BSLASHitem] = ACTIONS(5319), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5319), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5319), + [anon_sym_DASH] = ACTIONS(5319), + [anon_sym_STAR] = ACTIONS(5319), + [anon_sym_SLASH] = ACTIONS(5319), + [anon_sym_CARET] = ACTIONS(5319), + [anon_sym__] = ACTIONS(5319), + [anon_sym_LT] = ACTIONS(5319), + [anon_sym_GT] = ACTIONS(5319), + [anon_sym_BANG] = ACTIONS(5319), + [anon_sym_PIPE] = ACTIONS(5319), + [anon_sym_COLON] = ACTIONS(5319), + [anon_sym_SQUOTE] = ACTIONS(5319), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5319), + [anon_sym_BSLASHend] = ACTIONS(5319), + [anon_sym_BSLASHusepackage] = ACTIONS(5319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5319), + [anon_sym_BSLASHinclude] = ACTIONS(5319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5319), + [anon_sym_BSLASHinput] = ACTIONS(5319), + [anon_sym_BSLASHsubfile] = ACTIONS(5319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5319), + [anon_sym_BSLASHbibliography] = ACTIONS(5319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5319), + [anon_sym_BSLASHincludesvg] = ACTIONS(5319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5319), + [anon_sym_BSLASHimport] = ACTIONS(5319), + [anon_sym_BSLASHsubimport] = ACTIONS(5319), + [anon_sym_BSLASHinputfrom] = ACTIONS(5319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5319), + [anon_sym_BSLASHincludefrom] = ACTIONS(5319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5319), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [anon_sym_BSLASHcite] = ACTIONS(5319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5319), + [anon_sym_BSLASHnocite] = ACTIONS(5319), + [anon_sym_BSLASHcitet] = ACTIONS(5319), + [anon_sym_BSLASHcitep] = ACTIONS(5319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5319), + [anon_sym_BSLASHfullcite] = ACTIONS(5319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5319), + [anon_sym_BSLASHcitealt] = ACTIONS(5319), + [anon_sym_BSLASHcitealp] = ACTIONS(5319), + [anon_sym_BSLASHcitetext] = ACTIONS(5319), + [anon_sym_BSLASHparencite] = ACTIONS(5319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5319), + [anon_sym_BSLASHfootcite] = ACTIONS(5319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5319), + [anon_sym_BSLASHtextcite] = ACTIONS(5319), + [anon_sym_BSLASHTextcite] = ACTIONS(5319), + [anon_sym_BSLASHsmartcite] = ACTIONS(5319), + [anon_sym_BSLASHSmartcite] = ACTIONS(5319), + [anon_sym_BSLASHsupercite] = ACTIONS(5319), + [anon_sym_BSLASHautocite] = ACTIONS(5319), + [anon_sym_BSLASHAutocite] = ACTIONS(5319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5319), + [anon_sym_BSLASHVolcite] = ACTIONS(5319), + [anon_sym_BSLASHpvolcite] = ACTIONS(5319), + [anon_sym_BSLASHPvolcite] = ACTIONS(5319), + [anon_sym_BSLASHfvolcite] = ACTIONS(5319), + [anon_sym_BSLASHftvolcite] = ACTIONS(5319), + [anon_sym_BSLASHsvolcite] = ACTIONS(5319), + [anon_sym_BSLASHSvolcite] = ACTIONS(5319), + [anon_sym_BSLASHtvolcite] = ACTIONS(5319), + [anon_sym_BSLASHTvolcite] = ACTIONS(5319), + [anon_sym_BSLASHavolcite] = ACTIONS(5319), + [anon_sym_BSLASHAvolcite] = ACTIONS(5319), + [anon_sym_BSLASHnotecite] = ACTIONS(5319), + [anon_sym_BSLASHNotecite] = ACTIONS(5319), + [anon_sym_BSLASHpnotecite] = ACTIONS(5319), + [anon_sym_BSLASHPnotecite] = ACTIONS(5319), + [anon_sym_BSLASHfnotecite] = ACTIONS(5319), + [anon_sym_BSLASHlabel] = ACTIONS(5319), + [anon_sym_BSLASHref] = ACTIONS(5319), + [anon_sym_BSLASHeqref] = ACTIONS(5319), + [anon_sym_BSLASHvref] = ACTIONS(5319), + [anon_sym_BSLASHVref] = ACTIONS(5319), + [anon_sym_BSLASHautoref] = ACTIONS(5319), + [anon_sym_BSLASHpageref] = ACTIONS(5319), + [anon_sym_BSLASHcref] = ACTIONS(5319), + [anon_sym_BSLASHCref] = ACTIONS(5319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5319), + [anon_sym_BSLASHnameCref] = ACTIONS(5319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5319), + [anon_sym_BSLASHlabelcref] = ACTIONS(5319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5319), + [anon_sym_BSLASHcrefrange] = ACTIONS(5319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5319), + [anon_sym_BSLASHnewcommand] = ACTIONS(5319), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5319), + [anon_sym_BSLASHlet] = ACTIONS(5319), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5319), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5319), + [anon_sym_BSLASHgls] = ACTIONS(5319), + [anon_sym_BSLASHGls] = ACTIONS(5319), + [anon_sym_BSLASHGLS] = ACTIONS(5319), + [anon_sym_BSLASHglspl] = ACTIONS(5319), + [anon_sym_BSLASHGlspl] = ACTIONS(5319), + [anon_sym_BSLASHGLSpl] = ACTIONS(5319), + [anon_sym_BSLASHglsdisp] = ACTIONS(5319), + [anon_sym_BSLASHglslink] = ACTIONS(5319), + [anon_sym_BSLASHglstext] = ACTIONS(5319), + [anon_sym_BSLASHGlstext] = ACTIONS(5319), + [anon_sym_BSLASHGLStext] = ACTIONS(5319), + [anon_sym_BSLASHglsfirst] = ACTIONS(5319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5319), + [anon_sym_BSLASHglsplural] = ACTIONS(5319), + [anon_sym_BSLASHGlsplural] = ACTIONS(5319), + [anon_sym_BSLASHGLSplural] = ACTIONS(5319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5319), + [anon_sym_BSLASHglsname] = ACTIONS(5319), + [anon_sym_BSLASHGlsname] = ACTIONS(5319), + [anon_sym_BSLASHGLSname] = ACTIONS(5319), + [anon_sym_BSLASHglssymbol] = ACTIONS(5319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5319), + [anon_sym_BSLASHglsdesc] = ACTIONS(5319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5319), + [anon_sym_BSLASHglsuseri] = ACTIONS(5319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5319), + [anon_sym_BSLASHglsuserii] = ACTIONS(5319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5319), + [anon_sym_BSLASHglsuserv] = ACTIONS(5319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5319), + [anon_sym_BSLASHglsuservi] = ACTIONS(5319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5319), + [anon_sym_BSLASHnewacronym] = ACTIONS(5319), + [anon_sym_BSLASHacrshort] = ACTIONS(5319), + [anon_sym_BSLASHAcrshort] = ACTIONS(5319), + [anon_sym_BSLASHACRshort] = ACTIONS(5319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5319), + [anon_sym_BSLASHacrlong] = ACTIONS(5319), + [anon_sym_BSLASHAcrlong] = ACTIONS(5319), + [anon_sym_BSLASHACRlong] = ACTIONS(5319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5319), + [anon_sym_BSLASHacrfull] = ACTIONS(5319), + [anon_sym_BSLASHAcrfull] = ACTIONS(5319), + [anon_sym_BSLASHACRfull] = ACTIONS(5319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5319), + [anon_sym_BSLASHacs] = ACTIONS(5319), + [anon_sym_BSLASHAcs] = ACTIONS(5319), + [anon_sym_BSLASHacsp] = ACTIONS(5319), + [anon_sym_BSLASHAcsp] = ACTIONS(5319), + [anon_sym_BSLASHacl] = ACTIONS(5319), + [anon_sym_BSLASHAcl] = ACTIONS(5319), + [anon_sym_BSLASHaclp] = ACTIONS(5319), + [anon_sym_BSLASHAclp] = ACTIONS(5319), + [anon_sym_BSLASHacf] = ACTIONS(5319), + [anon_sym_BSLASHAcf] = ACTIONS(5319), + [anon_sym_BSLASHacfp] = ACTIONS(5319), + [anon_sym_BSLASHAcfp] = ACTIONS(5319), + [anon_sym_BSLASHac] = ACTIONS(5319), + [anon_sym_BSLASHAc] = ACTIONS(5319), + [anon_sym_BSLASHacp] = ACTIONS(5319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5319), + [anon_sym_BSLASHcolor] = ACTIONS(5319), + [anon_sym_BSLASHcolorbox] = ACTIONS(5319), + [anon_sym_BSLASHtextcolor] = ACTIONS(5319), + [anon_sym_BSLASHpagecolor] = ACTIONS(5319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5319), + [anon_sym_BSLASHtext] = ACTIONS(5319), + [anon_sym_BSLASHintertext] = ACTIONS(5319), + [anon_sym_shortintertext] = ACTIONS(5319), + }, + [1226] = { + [sym_command_name] = ACTIONS(5245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5243), + [anon_sym_RPAREN] = ACTIONS(5243), + [anon_sym_LBRACK] = ACTIONS(5243), + [anon_sym_RBRACK] = ACTIONS(5243), + [anon_sym_COMMA] = ACTIONS(5243), + [anon_sym_EQ] = ACTIONS(5243), + [anon_sym_BSLASHpart] = ACTIONS(5245), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddpart] = ACTIONS(5245), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5243), + [anon_sym_BSLASHchapter] = ACTIONS(5245), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddchap] = ACTIONS(5245), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsection] = ACTIONS(5245), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHaddsec] = ACTIONS(5245), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubsection] = ACTIONS(5245), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5245), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5243), + [anon_sym_BSLASHparagraph] = ACTIONS(5245), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5243), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5245), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5243), + [anon_sym_BSLASHitem] = ACTIONS(5245), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5243), + [anon_sym_LBRACE] = ACTIONS(5243), + [sym_word] = ACTIONS(5245), + [sym_placeholder] = ACTIONS(5243), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_STAR] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5245), + [anon_sym_CARET] = ACTIONS(5245), + [anon_sym__] = ACTIONS(5245), + [anon_sym_LT] = ACTIONS(5245), + [anon_sym_GT] = ACTIONS(5245), + [anon_sym_BANG] = ACTIONS(5245), + [anon_sym_PIPE] = ACTIONS(5245), + [anon_sym_COLON] = ACTIONS(5245), + [anon_sym_SQUOTE] = ACTIONS(5245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5243), + [anon_sym_DOLLAR] = ACTIONS(5245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5243), + [anon_sym_BSLASHbegin] = ACTIONS(5245), + [anon_sym_BSLASHend] = ACTIONS(5245), + [anon_sym_BSLASHusepackage] = ACTIONS(5245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), + [anon_sym_BSLASHinclude] = ACTIONS(5245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), + [anon_sym_BSLASHinput] = ACTIONS(5245), + [anon_sym_BSLASHsubfile] = ACTIONS(5245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), + [anon_sym_BSLASHbibliography] = ACTIONS(5245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), + [anon_sym_BSLASHincludesvg] = ACTIONS(5245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), + [anon_sym_BSLASHimport] = ACTIONS(5245), + [anon_sym_BSLASHsubimport] = ACTIONS(5245), + [anon_sym_BSLASHinputfrom] = ACTIONS(5245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), + [anon_sym_BSLASHincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHcaption] = ACTIONS(5245), + [anon_sym_BSLASHcite] = ACTIONS(5245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCite] = ACTIONS(5245), + [anon_sym_BSLASHnocite] = ACTIONS(5245), + [anon_sym_BSLASHcitet] = ACTIONS(5245), + [anon_sym_BSLASHcitep] = ACTIONS(5245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteauthor] = ACTIONS(5245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitetitle] = ACTIONS(5245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteyear] = ACTIONS(5245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitedate] = ACTIONS(5245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteurl] = ACTIONS(5245), + [anon_sym_BSLASHfullcite] = ACTIONS(5245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), + [anon_sym_BSLASHcitealt] = ACTIONS(5245), + [anon_sym_BSLASHcitealp] = ACTIONS(5245), + [anon_sym_BSLASHcitetext] = ACTIONS(5245), + [anon_sym_BSLASHparencite] = ACTIONS(5245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHParencite] = ACTIONS(5245), + [anon_sym_BSLASHfootcite] = ACTIONS(5245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), + [anon_sym_BSLASHtextcite] = ACTIONS(5245), + [anon_sym_BSLASHTextcite] = ACTIONS(5245), + [anon_sym_BSLASHsmartcite] = ACTIONS(5245), + [anon_sym_BSLASHSmartcite] = ACTIONS(5245), + [anon_sym_BSLASHsupercite] = ACTIONS(5245), + [anon_sym_BSLASHautocite] = ACTIONS(5245), + [anon_sym_BSLASHAutocite] = ACTIONS(5245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHvolcite] = ACTIONS(5245), + [anon_sym_BSLASHVolcite] = ACTIONS(5245), + [anon_sym_BSLASHpvolcite] = ACTIONS(5245), + [anon_sym_BSLASHPvolcite] = ACTIONS(5245), + [anon_sym_BSLASHfvolcite] = ACTIONS(5245), + [anon_sym_BSLASHftvolcite] = ACTIONS(5245), + [anon_sym_BSLASHsvolcite] = ACTIONS(5245), + [anon_sym_BSLASHSvolcite] = ACTIONS(5245), + [anon_sym_BSLASHtvolcite] = ACTIONS(5245), + [anon_sym_BSLASHTvolcite] = ACTIONS(5245), + [anon_sym_BSLASHavolcite] = ACTIONS(5245), + [anon_sym_BSLASHAvolcite] = ACTIONS(5245), + [anon_sym_BSLASHnotecite] = ACTIONS(5245), + [anon_sym_BSLASHNotecite] = ACTIONS(5245), + [anon_sym_BSLASHpnotecite] = ACTIONS(5245), + [anon_sym_BSLASHPnotecite] = ACTIONS(5245), + [anon_sym_BSLASHfnotecite] = ACTIONS(5245), + [anon_sym_BSLASHlabel] = ACTIONS(5245), + [anon_sym_BSLASHref] = ACTIONS(5245), + [anon_sym_BSLASHeqref] = ACTIONS(5245), + [anon_sym_BSLASHvref] = ACTIONS(5245), + [anon_sym_BSLASHVref] = ACTIONS(5245), + [anon_sym_BSLASHautoref] = ACTIONS(5245), + [anon_sym_BSLASHpageref] = ACTIONS(5245), + [anon_sym_BSLASHcref] = ACTIONS(5245), + [anon_sym_BSLASHCref] = ACTIONS(5245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnameCref] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHlabelcref] = ACTIONS(5245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCrefrange] = ACTIONS(5245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnewlabel] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), + [anon_sym_BSLASHdef] = ACTIONS(5245), + [anon_sym_BSLASHlet] = ACTIONS(5245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), + [anon_sym_BSLASHgls] = ACTIONS(5245), + [anon_sym_BSLASHGls] = ACTIONS(5245), + [anon_sym_BSLASHGLS] = ACTIONS(5245), + [anon_sym_BSLASHglspl] = ACTIONS(5245), + [anon_sym_BSLASHGlspl] = ACTIONS(5245), + [anon_sym_BSLASHGLSpl] = ACTIONS(5245), + [anon_sym_BSLASHglsdisp] = ACTIONS(5245), + [anon_sym_BSLASHglslink] = ACTIONS(5245), + [anon_sym_BSLASHglstext] = ACTIONS(5245), + [anon_sym_BSLASHGlstext] = ACTIONS(5245), + [anon_sym_BSLASHGLStext] = ACTIONS(5245), + [anon_sym_BSLASHglsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), + [anon_sym_BSLASHglsplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSplural] = ACTIONS(5245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHglsname] = ACTIONS(5245), + [anon_sym_BSLASHGlsname] = ACTIONS(5245), + [anon_sym_BSLASHGLSname] = ACTIONS(5245), + [anon_sym_BSLASHglssymbol] = ACTIONS(5245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), + [anon_sym_BSLASHglsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), + [anon_sym_BSLASHglsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), + [anon_sym_BSLASHglsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), + [anon_sym_BSLASHglsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), + [anon_sym_BSLASHglsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), + [anon_sym_BSLASHnewacronym] = ACTIONS(5245), + [anon_sym_BSLASHacrshort] = ACTIONS(5245), + [anon_sym_BSLASHAcrshort] = ACTIONS(5245), + [anon_sym_BSLASHACRshort] = ACTIONS(5245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), + [anon_sym_BSLASHacrlong] = ACTIONS(5245), + [anon_sym_BSLASHAcrlong] = ACTIONS(5245), + [anon_sym_BSLASHACRlong] = ACTIONS(5245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), + [anon_sym_BSLASHacrfull] = ACTIONS(5245), + [anon_sym_BSLASHAcrfull] = ACTIONS(5245), + [anon_sym_BSLASHACRfull] = ACTIONS(5245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), + [anon_sym_BSLASHacs] = ACTIONS(5245), + [anon_sym_BSLASHAcs] = ACTIONS(5245), + [anon_sym_BSLASHacsp] = ACTIONS(5245), + [anon_sym_BSLASHAcsp] = ACTIONS(5245), + [anon_sym_BSLASHacl] = ACTIONS(5245), + [anon_sym_BSLASHAcl] = ACTIONS(5245), + [anon_sym_BSLASHaclp] = ACTIONS(5245), + [anon_sym_BSLASHAclp] = ACTIONS(5245), + [anon_sym_BSLASHacf] = ACTIONS(5245), + [anon_sym_BSLASHAcf] = ACTIONS(5245), + [anon_sym_BSLASHacfp] = ACTIONS(5245), + [anon_sym_BSLASHAcfp] = ACTIONS(5245), + [anon_sym_BSLASHac] = ACTIONS(5245), + [anon_sym_BSLASHAc] = ACTIONS(5245), + [anon_sym_BSLASHacp] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), + [anon_sym_BSLASHcolor] = ACTIONS(5245), + [anon_sym_BSLASHcolorbox] = ACTIONS(5245), + [anon_sym_BSLASHtextcolor] = ACTIONS(5245), + [anon_sym_BSLASHpagecolor] = ACTIONS(5245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), + [anon_sym_BSLASHtext] = ACTIONS(5245), + [anon_sym_BSLASHintertext] = ACTIONS(5245), + [anon_sym_shortintertext] = ACTIONS(5245), + }, + [1227] = { + [sym_command_name] = ACTIONS(5249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5249), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5247), + [anon_sym_LBRACK] = ACTIONS(5247), + [anon_sym_RBRACK] = ACTIONS(5247), + [anon_sym_COMMA] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_BSLASHpart] = ACTIONS(5249), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddpart] = ACTIONS(5249), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5247), + [anon_sym_BSLASHchapter] = ACTIONS(5249), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddchap] = ACTIONS(5249), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsection] = ACTIONS(5249), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHaddsec] = ACTIONS(5249), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5249), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5247), + [anon_sym_BSLASHparagraph] = ACTIONS(5249), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5249), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5247), + [anon_sym_BSLASHitem] = ACTIONS(5249), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5247), + [anon_sym_LBRACE] = ACTIONS(5247), + [sym_word] = ACTIONS(5249), + [sym_placeholder] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5249), + [anon_sym_STAR] = ACTIONS(5249), + [anon_sym_SLASH] = ACTIONS(5249), + [anon_sym_CARET] = ACTIONS(5249), + [anon_sym__] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(5249), + [anon_sym_GT] = ACTIONS(5249), + [anon_sym_BANG] = ACTIONS(5249), + [anon_sym_PIPE] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_SQUOTE] = ACTIONS(5249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), + [anon_sym_DOLLAR] = ACTIONS(5249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), + [anon_sym_BSLASHbegin] = ACTIONS(5249), + [anon_sym_BSLASHend] = ACTIONS(5249), + [anon_sym_BSLASHusepackage] = ACTIONS(5249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), + [anon_sym_BSLASHinclude] = ACTIONS(5249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), + [anon_sym_BSLASHinput] = ACTIONS(5249), + [anon_sym_BSLASHsubfile] = ACTIONS(5249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), + [anon_sym_BSLASHbibliography] = ACTIONS(5249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), + [anon_sym_BSLASHincludesvg] = ACTIONS(5249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), + [anon_sym_BSLASHimport] = ACTIONS(5249), + [anon_sym_BSLASHsubimport] = ACTIONS(5249), + [anon_sym_BSLASHinputfrom] = ACTIONS(5249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), + [anon_sym_BSLASHincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHcaption] = ACTIONS(5249), + [anon_sym_BSLASHcite] = ACTIONS(5249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCite] = ACTIONS(5249), + [anon_sym_BSLASHnocite] = ACTIONS(5249), + [anon_sym_BSLASHcitet] = ACTIONS(5249), + [anon_sym_BSLASHcitep] = ACTIONS(5249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteauthor] = ACTIONS(5249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitetitle] = ACTIONS(5249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteyear] = ACTIONS(5249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitedate] = ACTIONS(5249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteurl] = ACTIONS(5249), + [anon_sym_BSLASHfullcite] = ACTIONS(5249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), + [anon_sym_BSLASHcitealt] = ACTIONS(5249), + [anon_sym_BSLASHcitealp] = ACTIONS(5249), + [anon_sym_BSLASHcitetext] = ACTIONS(5249), + [anon_sym_BSLASHparencite] = ACTIONS(5249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHParencite] = ACTIONS(5249), + [anon_sym_BSLASHfootcite] = ACTIONS(5249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), + [anon_sym_BSLASHtextcite] = ACTIONS(5249), + [anon_sym_BSLASHTextcite] = ACTIONS(5249), + [anon_sym_BSLASHsmartcite] = ACTIONS(5249), + [anon_sym_BSLASHSmartcite] = ACTIONS(5249), + [anon_sym_BSLASHsupercite] = ACTIONS(5249), + [anon_sym_BSLASHautocite] = ACTIONS(5249), + [anon_sym_BSLASHAutocite] = ACTIONS(5249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHvolcite] = ACTIONS(5249), + [anon_sym_BSLASHVolcite] = ACTIONS(5249), + [anon_sym_BSLASHpvolcite] = ACTIONS(5249), + [anon_sym_BSLASHPvolcite] = ACTIONS(5249), + [anon_sym_BSLASHfvolcite] = ACTIONS(5249), + [anon_sym_BSLASHftvolcite] = ACTIONS(5249), + [anon_sym_BSLASHsvolcite] = ACTIONS(5249), + [anon_sym_BSLASHSvolcite] = ACTIONS(5249), + [anon_sym_BSLASHtvolcite] = ACTIONS(5249), + [anon_sym_BSLASHTvolcite] = ACTIONS(5249), + [anon_sym_BSLASHavolcite] = ACTIONS(5249), + [anon_sym_BSLASHAvolcite] = ACTIONS(5249), + [anon_sym_BSLASHnotecite] = ACTIONS(5249), + [anon_sym_BSLASHNotecite] = ACTIONS(5249), + [anon_sym_BSLASHpnotecite] = ACTIONS(5249), + [anon_sym_BSLASHPnotecite] = ACTIONS(5249), + [anon_sym_BSLASHfnotecite] = ACTIONS(5249), + [anon_sym_BSLASHlabel] = ACTIONS(5249), + [anon_sym_BSLASHref] = ACTIONS(5249), + [anon_sym_BSLASHeqref] = ACTIONS(5249), + [anon_sym_BSLASHvref] = ACTIONS(5249), + [anon_sym_BSLASHVref] = ACTIONS(5249), + [anon_sym_BSLASHautoref] = ACTIONS(5249), + [anon_sym_BSLASHpageref] = ACTIONS(5249), + [anon_sym_BSLASHcref] = ACTIONS(5249), + [anon_sym_BSLASHCref] = ACTIONS(5249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnameCref] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHlabelcref] = ACTIONS(5249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + [anon_sym_BSLASHtext] = ACTIONS(5249), + [anon_sym_BSLASHintertext] = ACTIONS(5249), + [anon_sym_shortintertext] = ACTIONS(5249), + }, + [1228] = { + [sym_command_name] = ACTIONS(5253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5253), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(5251), + [anon_sym_LBRACK] = ACTIONS(5251), + [anon_sym_RBRACK] = ACTIONS(5251), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_BSLASHpart] = ACTIONS(5253), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddpart] = ACTIONS(5253), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5251), + [anon_sym_BSLASHchapter] = ACTIONS(5253), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddchap] = ACTIONS(5253), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsection] = ACTIONS(5253), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHaddsec] = ACTIONS(5253), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5253), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5251), + [anon_sym_BSLASHparagraph] = ACTIONS(5253), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5253), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5251), + [anon_sym_BSLASHitem] = ACTIONS(5253), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5251), + [sym_word] = ACTIONS(5253), + [sym_placeholder] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5253), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym__] = ACTIONS(5253), + [anon_sym_LT] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5253), + [anon_sym_BANG] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_SQUOTE] = ACTIONS(5253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), + [anon_sym_DOLLAR] = ACTIONS(5253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), + [anon_sym_BSLASHbegin] = ACTIONS(5253), + [anon_sym_BSLASHend] = ACTIONS(5253), + [anon_sym_BSLASHusepackage] = ACTIONS(5253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHinclude] = ACTIONS(5253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), + [anon_sym_BSLASHinput] = ACTIONS(5253), + [anon_sym_BSLASHsubfile] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), + [anon_sym_BSLASHbibliography] = ACTIONS(5253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), + [anon_sym_BSLASHincludesvg] = ACTIONS(5253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), + [anon_sym_BSLASHimport] = ACTIONS(5253), + [anon_sym_BSLASHsubimport] = ACTIONS(5253), + [anon_sym_BSLASHinputfrom] = ACTIONS(5253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), + [anon_sym_BSLASHincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHcaption] = ACTIONS(5253), + [anon_sym_BSLASHcite] = ACTIONS(5253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCite] = ACTIONS(5253), + [anon_sym_BSLASHnocite] = ACTIONS(5253), + [anon_sym_BSLASHcitet] = ACTIONS(5253), + [anon_sym_BSLASHcitep] = ACTIONS(5253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteauthor] = ACTIONS(5253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitetitle] = ACTIONS(5253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteyear] = ACTIONS(5253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitedate] = ACTIONS(5253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteurl] = ACTIONS(5253), + [anon_sym_BSLASHfullcite] = ACTIONS(5253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), + [anon_sym_BSLASHcitealt] = ACTIONS(5253), + [anon_sym_BSLASHcitealp] = ACTIONS(5253), + [anon_sym_BSLASHcitetext] = ACTIONS(5253), + [anon_sym_BSLASHparencite] = ACTIONS(5253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHParencite] = ACTIONS(5253), + [anon_sym_BSLASHfootcite] = ACTIONS(5253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), + [anon_sym_BSLASHtextcite] = ACTIONS(5253), + [anon_sym_BSLASHTextcite] = ACTIONS(5253), + [anon_sym_BSLASHsmartcite] = ACTIONS(5253), + [anon_sym_BSLASHSmartcite] = ACTIONS(5253), + [anon_sym_BSLASHsupercite] = ACTIONS(5253), + [anon_sym_BSLASHautocite] = ACTIONS(5253), + [anon_sym_BSLASHAutocite] = ACTIONS(5253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHvolcite] = ACTIONS(5253), + [anon_sym_BSLASHVolcite] = ACTIONS(5253), + [anon_sym_BSLASHpvolcite] = ACTIONS(5253), + [anon_sym_BSLASHPvolcite] = ACTIONS(5253), + [anon_sym_BSLASHfvolcite] = ACTIONS(5253), + [anon_sym_BSLASHftvolcite] = ACTIONS(5253), + [anon_sym_BSLASHsvolcite] = ACTIONS(5253), + [anon_sym_BSLASHSvolcite] = ACTIONS(5253), + [anon_sym_BSLASHtvolcite] = ACTIONS(5253), + [anon_sym_BSLASHTvolcite] = ACTIONS(5253), + [anon_sym_BSLASHavolcite] = ACTIONS(5253), + [anon_sym_BSLASHAvolcite] = ACTIONS(5253), + [anon_sym_BSLASHnotecite] = ACTIONS(5253), + [anon_sym_BSLASHNotecite] = ACTIONS(5253), + [anon_sym_BSLASHpnotecite] = ACTIONS(5253), + [anon_sym_BSLASHPnotecite] = ACTIONS(5253), + [anon_sym_BSLASHfnotecite] = ACTIONS(5253), + [anon_sym_BSLASHlabel] = ACTIONS(5253), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCrefrange] = ACTIONS(5253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnewlabel] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdef] = ACTIONS(5253), + [anon_sym_BSLASHlet] = ACTIONS(5253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), + [anon_sym_BSLASHgls] = ACTIONS(5253), + [anon_sym_BSLASHGls] = ACTIONS(5253), + [anon_sym_BSLASHGLS] = ACTIONS(5253), + [anon_sym_BSLASHglspl] = ACTIONS(5253), + [anon_sym_BSLASHGlspl] = ACTIONS(5253), + [anon_sym_BSLASHGLSpl] = ACTIONS(5253), + [anon_sym_BSLASHglsdisp] = ACTIONS(5253), + [anon_sym_BSLASHglslink] = ACTIONS(5253), + [anon_sym_BSLASHglstext] = ACTIONS(5253), + [anon_sym_BSLASHGlstext] = ACTIONS(5253), + [anon_sym_BSLASHGLStext] = ACTIONS(5253), + [anon_sym_BSLASHglsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), + [anon_sym_BSLASHglsplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSplural] = ACTIONS(5253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHglsname] = ACTIONS(5253), + [anon_sym_BSLASHGlsname] = ACTIONS(5253), + [anon_sym_BSLASHGLSname] = ACTIONS(5253), + [anon_sym_BSLASHglssymbol] = ACTIONS(5253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), + [anon_sym_BSLASHglsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), + [anon_sym_BSLASHglsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), + [anon_sym_BSLASHglsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), + [anon_sym_BSLASHglsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), + [anon_sym_BSLASHglsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), + [anon_sym_BSLASHnewacronym] = ACTIONS(5253), + [anon_sym_BSLASHacrshort] = ACTIONS(5253), + [anon_sym_BSLASHAcrshort] = ACTIONS(5253), + [anon_sym_BSLASHACRshort] = ACTIONS(5253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), + [anon_sym_BSLASHacrlong] = ACTIONS(5253), + [anon_sym_BSLASHAcrlong] = ACTIONS(5253), + [anon_sym_BSLASHACRlong] = ACTIONS(5253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), + [anon_sym_BSLASHacrfull] = ACTIONS(5253), + [anon_sym_BSLASHAcrfull] = ACTIONS(5253), + [anon_sym_BSLASHACRfull] = ACTIONS(5253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), + [anon_sym_BSLASHacs] = ACTIONS(5253), + [anon_sym_BSLASHAcs] = ACTIONS(5253), + [anon_sym_BSLASHacsp] = ACTIONS(5253), + [anon_sym_BSLASHAcsp] = ACTIONS(5253), + [anon_sym_BSLASHacl] = ACTIONS(5253), + [anon_sym_BSLASHAcl] = ACTIONS(5253), + [anon_sym_BSLASHaclp] = ACTIONS(5253), + [anon_sym_BSLASHAclp] = ACTIONS(5253), + [anon_sym_BSLASHacf] = ACTIONS(5253), + [anon_sym_BSLASHAcf] = ACTIONS(5253), + [anon_sym_BSLASHacfp] = ACTIONS(5253), + [anon_sym_BSLASHAcfp] = ACTIONS(5253), + [anon_sym_BSLASHac] = ACTIONS(5253), + [anon_sym_BSLASHAc] = ACTIONS(5253), + [anon_sym_BSLASHacp] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), + [anon_sym_BSLASHcolor] = ACTIONS(5253), + [anon_sym_BSLASHcolorbox] = ACTIONS(5253), + [anon_sym_BSLASHtextcolor] = ACTIONS(5253), + [anon_sym_BSLASHpagecolor] = ACTIONS(5253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), + [anon_sym_BSLASHtext] = ACTIONS(5253), + [anon_sym_BSLASHintertext] = ACTIONS(5253), + [anon_sym_shortintertext] = ACTIONS(5253), + }, + [1229] = { + [sym_command_name] = ACTIONS(5257), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5257), + [anon_sym_LPAREN] = ACTIONS(5255), + [anon_sym_RPAREN] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_RBRACK] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_BSLASHpart] = ACTIONS(5257), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddpart] = ACTIONS(5257), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5255), + [anon_sym_BSLASHchapter] = ACTIONS(5257), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddchap] = ACTIONS(5257), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsection] = ACTIONS(5257), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHaddsec] = ACTIONS(5257), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubsection] = ACTIONS(5257), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5257), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5255), + [anon_sym_BSLASHparagraph] = ACTIONS(5257), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5255), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5257), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5255), + [anon_sym_BSLASHitem] = ACTIONS(5257), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(5255), + [sym_word] = ACTIONS(5257), + [sym_placeholder] = ACTIONS(5255), + [anon_sym_PLUS] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(5257), + [anon_sym_STAR] = ACTIONS(5257), + [anon_sym_SLASH] = ACTIONS(5257), + [anon_sym_CARET] = ACTIONS(5257), + [anon_sym__] = ACTIONS(5257), + [anon_sym_LT] = ACTIONS(5257), + [anon_sym_GT] = ACTIONS(5257), + [anon_sym_BANG] = ACTIONS(5257), + [anon_sym_PIPE] = ACTIONS(5257), + [anon_sym_COLON] = ACTIONS(5257), + [anon_sym_SQUOTE] = ACTIONS(5257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), + [anon_sym_DOLLAR] = ACTIONS(5257), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), + [anon_sym_BSLASHbegin] = ACTIONS(5257), + [anon_sym_BSLASHend] = ACTIONS(5257), + [anon_sym_BSLASHusepackage] = ACTIONS(5257), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), + [anon_sym_BSLASHinclude] = ACTIONS(5257), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), + [anon_sym_BSLASHinput] = ACTIONS(5257), + [anon_sym_BSLASHsubfile] = ACTIONS(5257), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), + [anon_sym_BSLASHbibliography] = ACTIONS(5257), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), + [anon_sym_BSLASHincludesvg] = ACTIONS(5257), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), + [anon_sym_BSLASHimport] = ACTIONS(5257), + [anon_sym_BSLASHsubimport] = ACTIONS(5257), + [anon_sym_BSLASHinputfrom] = ACTIONS(5257), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), + [anon_sym_BSLASHincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHcaption] = ACTIONS(5257), + [anon_sym_BSLASHcite] = ACTIONS(5257), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCite] = ACTIONS(5257), + [anon_sym_BSLASHnocite] = ACTIONS(5257), + [anon_sym_BSLASHcitet] = ACTIONS(5257), + [anon_sym_BSLASHcitep] = ACTIONS(5257), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteauthor] = ACTIONS(5257), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitetitle] = ACTIONS(5257), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteyear] = ACTIONS(5257), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitedate] = ACTIONS(5257), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteurl] = ACTIONS(5257), + [anon_sym_BSLASHfullcite] = ACTIONS(5257), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), + [anon_sym_BSLASHcitealt] = ACTIONS(5257), + [anon_sym_BSLASHcitealp] = ACTIONS(5257), + [anon_sym_BSLASHcitetext] = ACTIONS(5257), + [anon_sym_BSLASHparencite] = ACTIONS(5257), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHParencite] = ACTIONS(5257), + [anon_sym_BSLASHfootcite] = ACTIONS(5257), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), + [anon_sym_BSLASHtextcite] = ACTIONS(5257), + [anon_sym_BSLASHTextcite] = ACTIONS(5257), + [anon_sym_BSLASHsmartcite] = ACTIONS(5257), + [anon_sym_BSLASHSmartcite] = ACTIONS(5257), + [anon_sym_BSLASHsupercite] = ACTIONS(5257), + [anon_sym_BSLASHautocite] = ACTIONS(5257), + [anon_sym_BSLASHAutocite] = ACTIONS(5257), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHvolcite] = ACTIONS(5257), + [anon_sym_BSLASHVolcite] = ACTIONS(5257), + [anon_sym_BSLASHpvolcite] = ACTIONS(5257), + [anon_sym_BSLASHPvolcite] = ACTIONS(5257), + [anon_sym_BSLASHfvolcite] = ACTIONS(5257), + [anon_sym_BSLASHftvolcite] = ACTIONS(5257), + [anon_sym_BSLASHsvolcite] = ACTIONS(5257), + [anon_sym_BSLASHSvolcite] = ACTIONS(5257), + [anon_sym_BSLASHtvolcite] = ACTIONS(5257), + [anon_sym_BSLASHTvolcite] = ACTIONS(5257), + [anon_sym_BSLASHavolcite] = ACTIONS(5257), + [anon_sym_BSLASHAvolcite] = ACTIONS(5257), + [anon_sym_BSLASHnotecite] = ACTIONS(5257), + [anon_sym_BSLASHNotecite] = ACTIONS(5257), + [anon_sym_BSLASHpnotecite] = ACTIONS(5257), + [anon_sym_BSLASHPnotecite] = ACTIONS(5257), + [anon_sym_BSLASHfnotecite] = ACTIONS(5257), + [anon_sym_BSLASHlabel] = ACTIONS(5257), + [anon_sym_BSLASHref] = ACTIONS(5257), + [anon_sym_BSLASHeqref] = ACTIONS(5257), + [anon_sym_BSLASHvref] = ACTIONS(5257), + [anon_sym_BSLASHVref] = ACTIONS(5257), + [anon_sym_BSLASHautoref] = ACTIONS(5257), + [anon_sym_BSLASHpageref] = ACTIONS(5257), + [anon_sym_BSLASHcref] = ACTIONS(5257), + [anon_sym_BSLASHCref] = ACTIONS(5257), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnameCref] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHlabelcref] = ACTIONS(5257), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCrefrange] = ACTIONS(5257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnewlabel] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), + [anon_sym_BSLASHdef] = ACTIONS(5257), + [anon_sym_BSLASHlet] = ACTIONS(5257), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), + [anon_sym_BSLASHgls] = ACTIONS(5257), + [anon_sym_BSLASHGls] = ACTIONS(5257), + [anon_sym_BSLASHGLS] = ACTIONS(5257), + [anon_sym_BSLASHglspl] = ACTIONS(5257), + [anon_sym_BSLASHGlspl] = ACTIONS(5257), + [anon_sym_BSLASHGLSpl] = ACTIONS(5257), + [anon_sym_BSLASHglsdisp] = ACTIONS(5257), + [anon_sym_BSLASHglslink] = ACTIONS(5257), + [anon_sym_BSLASHglstext] = ACTIONS(5257), + [anon_sym_BSLASHGlstext] = ACTIONS(5257), + [anon_sym_BSLASHGLStext] = ACTIONS(5257), + [anon_sym_BSLASHglsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), + [anon_sym_BSLASHglsplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSplural] = ACTIONS(5257), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHglsname] = ACTIONS(5257), + [anon_sym_BSLASHGlsname] = ACTIONS(5257), + [anon_sym_BSLASHGLSname] = ACTIONS(5257), + [anon_sym_BSLASHglssymbol] = ACTIONS(5257), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), + [anon_sym_BSLASHglsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), + [anon_sym_BSLASHglsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), + [anon_sym_BSLASHglsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), + [anon_sym_BSLASHglsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), + [anon_sym_BSLASHglsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), + [anon_sym_BSLASHnewacronym] = ACTIONS(5257), + [anon_sym_BSLASHacrshort] = ACTIONS(5257), + [anon_sym_BSLASHAcrshort] = ACTIONS(5257), + [anon_sym_BSLASHACRshort] = ACTIONS(5257), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), + [anon_sym_BSLASHacrlong] = ACTIONS(5257), + [anon_sym_BSLASHAcrlong] = ACTIONS(5257), + [anon_sym_BSLASHACRlong] = ACTIONS(5257), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), + [anon_sym_BSLASHacrfull] = ACTIONS(5257), + [anon_sym_BSLASHAcrfull] = ACTIONS(5257), + [anon_sym_BSLASHACRfull] = ACTIONS(5257), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), + [anon_sym_BSLASHacs] = ACTIONS(5257), + [anon_sym_BSLASHAcs] = ACTIONS(5257), + [anon_sym_BSLASHacsp] = ACTIONS(5257), + [anon_sym_BSLASHAcsp] = ACTIONS(5257), + [anon_sym_BSLASHacl] = ACTIONS(5257), + [anon_sym_BSLASHAcl] = ACTIONS(5257), + [anon_sym_BSLASHaclp] = ACTIONS(5257), + [anon_sym_BSLASHAclp] = ACTIONS(5257), + [anon_sym_BSLASHacf] = ACTIONS(5257), + [anon_sym_BSLASHAcf] = ACTIONS(5257), + [anon_sym_BSLASHacfp] = ACTIONS(5257), + [anon_sym_BSLASHAcfp] = ACTIONS(5257), + [anon_sym_BSLASHac] = ACTIONS(5257), + [anon_sym_BSLASHAc] = ACTIONS(5257), + [anon_sym_BSLASHacp] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), + [anon_sym_BSLASHcolor] = ACTIONS(5257), + [anon_sym_BSLASHcolorbox] = ACTIONS(5257), + [anon_sym_BSLASHtextcolor] = ACTIONS(5257), + [anon_sym_BSLASHpagecolor] = ACTIONS(5257), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), + [anon_sym_BSLASHtext] = ACTIONS(5257), + [anon_sym_BSLASHintertext] = ACTIONS(5257), + [anon_sym_shortintertext] = ACTIONS(5257), + }, + [1230] = { + [sym_command_name] = ACTIONS(5261), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5261), + [anon_sym_LPAREN] = ACTIONS(5259), + [anon_sym_RPAREN] = ACTIONS(5259), + [anon_sym_LBRACK] = ACTIONS(5259), + [anon_sym_RBRACK] = ACTIONS(5259), + [anon_sym_COMMA] = ACTIONS(5259), + [anon_sym_EQ] = ACTIONS(5259), + [anon_sym_BSLASHpart] = ACTIONS(5261), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddpart] = ACTIONS(5261), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5259), + [anon_sym_BSLASHchapter] = ACTIONS(5261), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddchap] = ACTIONS(5261), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsection] = ACTIONS(5261), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHaddsec] = ACTIONS(5261), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubsection] = ACTIONS(5261), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5261), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5259), + [anon_sym_BSLASHparagraph] = ACTIONS(5261), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5259), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5261), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5259), + [anon_sym_BSLASHitem] = ACTIONS(5261), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5259), + [anon_sym_LBRACE] = ACTIONS(5259), + [sym_word] = ACTIONS(5261), + [sym_placeholder] = ACTIONS(5259), + [anon_sym_PLUS] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(5261), + [anon_sym_STAR] = ACTIONS(5261), + [anon_sym_SLASH] = ACTIONS(5261), + [anon_sym_CARET] = ACTIONS(5261), + [anon_sym__] = ACTIONS(5261), + [anon_sym_LT] = ACTIONS(5261), + [anon_sym_GT] = ACTIONS(5261), + [anon_sym_BANG] = ACTIONS(5261), + [anon_sym_PIPE] = ACTIONS(5261), + [anon_sym_COLON] = ACTIONS(5261), + [anon_sym_SQUOTE] = ACTIONS(5261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5259), + [anon_sym_DOLLAR] = ACTIONS(5261), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5259), + [anon_sym_BSLASHbegin] = ACTIONS(5261), + [anon_sym_BSLASHend] = ACTIONS(5261), + [anon_sym_BSLASHusepackage] = ACTIONS(5261), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), + [anon_sym_BSLASHinclude] = ACTIONS(5261), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), + [anon_sym_BSLASHinput] = ACTIONS(5261), + [anon_sym_BSLASHsubfile] = ACTIONS(5261), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), + [anon_sym_BSLASHbibliography] = ACTIONS(5261), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), + [anon_sym_BSLASHincludesvg] = ACTIONS(5261), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), + [anon_sym_BSLASHimport] = ACTIONS(5261), + [anon_sym_BSLASHsubimport] = ACTIONS(5261), + [anon_sym_BSLASHinputfrom] = ACTIONS(5261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), + [anon_sym_BSLASHincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHcaption] = ACTIONS(5261), + [anon_sym_BSLASHcite] = ACTIONS(5261), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCite] = ACTIONS(5261), + [anon_sym_BSLASHnocite] = ACTIONS(5261), + [anon_sym_BSLASHcitet] = ACTIONS(5261), + [anon_sym_BSLASHcitep] = ACTIONS(5261), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteauthor] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitetitle] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteyear] = ACTIONS(5261), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitedate] = ACTIONS(5261), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteurl] = ACTIONS(5261), + [anon_sym_BSLASHfullcite] = ACTIONS(5261), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), + [anon_sym_BSLASHcitealt] = ACTIONS(5261), + [anon_sym_BSLASHcitealp] = ACTIONS(5261), + [anon_sym_BSLASHcitetext] = ACTIONS(5261), + [anon_sym_BSLASHparencite] = ACTIONS(5261), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHParencite] = ACTIONS(5261), + [anon_sym_BSLASHfootcite] = ACTIONS(5261), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), + [anon_sym_BSLASHtextcite] = ACTIONS(5261), + [anon_sym_BSLASHTextcite] = ACTIONS(5261), + [anon_sym_BSLASHsmartcite] = ACTIONS(5261), + [anon_sym_BSLASHSmartcite] = ACTIONS(5261), + [anon_sym_BSLASHsupercite] = ACTIONS(5261), + [anon_sym_BSLASHautocite] = ACTIONS(5261), + [anon_sym_BSLASHAutocite] = ACTIONS(5261), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHvolcite] = ACTIONS(5261), + [anon_sym_BSLASHVolcite] = ACTIONS(5261), + [anon_sym_BSLASHpvolcite] = ACTIONS(5261), + [anon_sym_BSLASHPvolcite] = ACTIONS(5261), + [anon_sym_BSLASHfvolcite] = ACTIONS(5261), + [anon_sym_BSLASHftvolcite] = ACTIONS(5261), + [anon_sym_BSLASHsvolcite] = ACTIONS(5261), + [anon_sym_BSLASHSvolcite] = ACTIONS(5261), + [anon_sym_BSLASHtvolcite] = ACTIONS(5261), + [anon_sym_BSLASHTvolcite] = ACTIONS(5261), + [anon_sym_BSLASHavolcite] = ACTIONS(5261), + [anon_sym_BSLASHAvolcite] = ACTIONS(5261), + [anon_sym_BSLASHnotecite] = ACTIONS(5261), + [anon_sym_BSLASHNotecite] = ACTIONS(5261), + [anon_sym_BSLASHpnotecite] = ACTIONS(5261), + [anon_sym_BSLASHPnotecite] = ACTIONS(5261), + [anon_sym_BSLASHfnotecite] = ACTIONS(5261), + [anon_sym_BSLASHlabel] = ACTIONS(5261), + [anon_sym_BSLASHref] = ACTIONS(5261), + [anon_sym_BSLASHeqref] = ACTIONS(5261), + [anon_sym_BSLASHvref] = ACTIONS(5261), + [anon_sym_BSLASHVref] = ACTIONS(5261), + [anon_sym_BSLASHautoref] = ACTIONS(5261), + [anon_sym_BSLASHpageref] = ACTIONS(5261), + [anon_sym_BSLASHcref] = ACTIONS(5261), + [anon_sym_BSLASHCref] = ACTIONS(5261), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnameCref] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHlabelcref] = ACTIONS(5261), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCrefrange] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnewlabel] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), + [anon_sym_BSLASHdef] = ACTIONS(5261), + [anon_sym_BSLASHlet] = ACTIONS(5261), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), + [anon_sym_BSLASHgls] = ACTIONS(5261), + [anon_sym_BSLASHGls] = ACTIONS(5261), + [anon_sym_BSLASHGLS] = ACTIONS(5261), + [anon_sym_BSLASHglspl] = ACTIONS(5261), + [anon_sym_BSLASHGlspl] = ACTIONS(5261), + [anon_sym_BSLASHGLSpl] = ACTIONS(5261), + [anon_sym_BSLASHglsdisp] = ACTIONS(5261), + [anon_sym_BSLASHglslink] = ACTIONS(5261), + [anon_sym_BSLASHglstext] = ACTIONS(5261), + [anon_sym_BSLASHGlstext] = ACTIONS(5261), + [anon_sym_BSLASHGLStext] = ACTIONS(5261), + [anon_sym_BSLASHglsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), + [anon_sym_BSLASHglsplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSplural] = ACTIONS(5261), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHglsname] = ACTIONS(5261), + [anon_sym_BSLASHGlsname] = ACTIONS(5261), + [anon_sym_BSLASHGLSname] = ACTIONS(5261), + [anon_sym_BSLASHglssymbol] = ACTIONS(5261), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), + [anon_sym_BSLASHglsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), + [anon_sym_BSLASHglsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), + [anon_sym_BSLASHglsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), + [anon_sym_BSLASHglsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), + [anon_sym_BSLASHglsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), + [anon_sym_BSLASHnewacronym] = ACTIONS(5261), + [anon_sym_BSLASHacrshort] = ACTIONS(5261), + [anon_sym_BSLASHAcrshort] = ACTIONS(5261), + [anon_sym_BSLASHACRshort] = ACTIONS(5261), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), + [anon_sym_BSLASHacrlong] = ACTIONS(5261), + [anon_sym_BSLASHAcrlong] = ACTIONS(5261), + [anon_sym_BSLASHACRlong] = ACTIONS(5261), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), + [anon_sym_BSLASHacrfull] = ACTIONS(5261), + [anon_sym_BSLASHAcrfull] = ACTIONS(5261), + [anon_sym_BSLASHACRfull] = ACTIONS(5261), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), + [anon_sym_BSLASHacs] = ACTIONS(5261), + [anon_sym_BSLASHAcs] = ACTIONS(5261), + [anon_sym_BSLASHacsp] = ACTIONS(5261), + [anon_sym_BSLASHAcsp] = ACTIONS(5261), + [anon_sym_BSLASHacl] = ACTIONS(5261), + [anon_sym_BSLASHAcl] = ACTIONS(5261), + [anon_sym_BSLASHaclp] = ACTIONS(5261), + [anon_sym_BSLASHAclp] = ACTIONS(5261), + [anon_sym_BSLASHacf] = ACTIONS(5261), + [anon_sym_BSLASHAcf] = ACTIONS(5261), + [anon_sym_BSLASHacfp] = ACTIONS(5261), + [anon_sym_BSLASHAcfp] = ACTIONS(5261), + [anon_sym_BSLASHac] = ACTIONS(5261), + [anon_sym_BSLASHAc] = ACTIONS(5261), + [anon_sym_BSLASHacp] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), + [anon_sym_BSLASHcolor] = ACTIONS(5261), + [anon_sym_BSLASHcolorbox] = ACTIONS(5261), + [anon_sym_BSLASHtextcolor] = ACTIONS(5261), + [anon_sym_BSLASHpagecolor] = ACTIONS(5261), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), + [anon_sym_BSLASHtext] = ACTIONS(5261), + [anon_sym_BSLASHintertext] = ACTIONS(5261), + [anon_sym_shortintertext] = ACTIONS(5261), + }, + [1231] = { + [sym_command_name] = ACTIONS(5265), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5265), + [anon_sym_LPAREN] = ACTIONS(5263), + [anon_sym_RPAREN] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(5263), + [anon_sym_RBRACK] = ACTIONS(5263), + [anon_sym_COMMA] = ACTIONS(5263), + [anon_sym_EQ] = ACTIONS(5263), + [anon_sym_BSLASHpart] = ACTIONS(5265), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddpart] = ACTIONS(5265), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5263), + [anon_sym_BSLASHchapter] = ACTIONS(5265), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddchap] = ACTIONS(5265), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsection] = ACTIONS(5265), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHaddsec] = ACTIONS(5265), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubsection] = ACTIONS(5265), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5265), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5263), + [anon_sym_BSLASHparagraph] = ACTIONS(5265), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5263), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5265), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5263), + [anon_sym_BSLASHitem] = ACTIONS(5265), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5263), + [anon_sym_LBRACE] = ACTIONS(5263), + [sym_word] = ACTIONS(5265), + [sym_placeholder] = ACTIONS(5263), + [anon_sym_PLUS] = ACTIONS(5265), + [anon_sym_DASH] = ACTIONS(5265), + [anon_sym_STAR] = ACTIONS(5265), + [anon_sym_SLASH] = ACTIONS(5265), + [anon_sym_CARET] = ACTIONS(5265), + [anon_sym__] = ACTIONS(5265), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_GT] = ACTIONS(5265), + [anon_sym_BANG] = ACTIONS(5265), + [anon_sym_PIPE] = ACTIONS(5265), + [anon_sym_COLON] = ACTIONS(5265), + [anon_sym_SQUOTE] = ACTIONS(5265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5263), + [anon_sym_DOLLAR] = ACTIONS(5265), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5263), + [anon_sym_BSLASHbegin] = ACTIONS(5265), + [anon_sym_BSLASHend] = ACTIONS(5265), + [anon_sym_BSLASHusepackage] = ACTIONS(5265), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), + [anon_sym_BSLASHinclude] = ACTIONS(5265), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), + [anon_sym_BSLASHinput] = ACTIONS(5265), + [anon_sym_BSLASHsubfile] = ACTIONS(5265), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), + [anon_sym_BSLASHbibliography] = ACTIONS(5265), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), + [anon_sym_BSLASHincludesvg] = ACTIONS(5265), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), + [anon_sym_BSLASHimport] = ACTIONS(5265), + [anon_sym_BSLASHsubimport] = ACTIONS(5265), + [anon_sym_BSLASHinputfrom] = ACTIONS(5265), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), + [anon_sym_BSLASHincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHcaption] = ACTIONS(5265), + [anon_sym_BSLASHcite] = ACTIONS(5265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCite] = ACTIONS(5265), + [anon_sym_BSLASHnocite] = ACTIONS(5265), + [anon_sym_BSLASHcitet] = ACTIONS(5265), + [anon_sym_BSLASHcitep] = ACTIONS(5265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor] = ACTIONS(5265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle] = ACTIONS(5265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteyear] = ACTIONS(5265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitedate] = ACTIONS(5265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteurl] = ACTIONS(5265), + [anon_sym_BSLASHfullcite] = ACTIONS(5265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), + [anon_sym_BSLASHcitealt] = ACTIONS(5265), + [anon_sym_BSLASHcitealp] = ACTIONS(5265), + [anon_sym_BSLASHcitetext] = ACTIONS(5265), + [anon_sym_BSLASHparencite] = ACTIONS(5265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHParencite] = ACTIONS(5265), + [anon_sym_BSLASHfootcite] = ACTIONS(5265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), + [anon_sym_BSLASHtextcite] = ACTIONS(5265), + [anon_sym_BSLASHTextcite] = ACTIONS(5265), + [anon_sym_BSLASHsmartcite] = ACTIONS(5265), + [anon_sym_BSLASHSmartcite] = ACTIONS(5265), + [anon_sym_BSLASHsupercite] = ACTIONS(5265), + [anon_sym_BSLASHautocite] = ACTIONS(5265), + [anon_sym_BSLASHAutocite] = ACTIONS(5265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHvolcite] = ACTIONS(5265), + [anon_sym_BSLASHVolcite] = ACTIONS(5265), + [anon_sym_BSLASHpvolcite] = ACTIONS(5265), + [anon_sym_BSLASHPvolcite] = ACTIONS(5265), + [anon_sym_BSLASHfvolcite] = ACTIONS(5265), + [anon_sym_BSLASHftvolcite] = ACTIONS(5265), + [anon_sym_BSLASHsvolcite] = ACTIONS(5265), + [anon_sym_BSLASHSvolcite] = ACTIONS(5265), + [anon_sym_BSLASHtvolcite] = ACTIONS(5265), + [anon_sym_BSLASHTvolcite] = ACTIONS(5265), + [anon_sym_BSLASHavolcite] = ACTIONS(5265), + [anon_sym_BSLASHAvolcite] = ACTIONS(5265), + [anon_sym_BSLASHnotecite] = ACTIONS(5265), + [anon_sym_BSLASHNotecite] = ACTIONS(5265), + [anon_sym_BSLASHpnotecite] = ACTIONS(5265), + [anon_sym_BSLASHPnotecite] = ACTIONS(5265), + [anon_sym_BSLASHfnotecite] = ACTIONS(5265), + [anon_sym_BSLASHlabel] = ACTIONS(5265), + [anon_sym_BSLASHref] = ACTIONS(5265), + [anon_sym_BSLASHeqref] = ACTIONS(5265), + [anon_sym_BSLASHvref] = ACTIONS(5265), + [anon_sym_BSLASHVref] = ACTIONS(5265), + [anon_sym_BSLASHautoref] = ACTIONS(5265), + [anon_sym_BSLASHpageref] = ACTIONS(5265), + [anon_sym_BSLASHcref] = ACTIONS(5265), + [anon_sym_BSLASHCref] = ACTIONS(5265), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnameCref] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHlabelcref] = ACTIONS(5265), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange] = ACTIONS(5265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnewlabel] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), + [anon_sym_BSLASHdef] = ACTIONS(5265), + [anon_sym_BSLASHlet] = ACTIONS(5265), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), + [anon_sym_BSLASHgls] = ACTIONS(5265), + [anon_sym_BSLASHGls] = ACTIONS(5265), + [anon_sym_BSLASHGLS] = ACTIONS(5265), + [anon_sym_BSLASHglspl] = ACTIONS(5265), + [anon_sym_BSLASHGlspl] = ACTIONS(5265), + [anon_sym_BSLASHGLSpl] = ACTIONS(5265), + [anon_sym_BSLASHglsdisp] = ACTIONS(5265), + [anon_sym_BSLASHglslink] = ACTIONS(5265), + [anon_sym_BSLASHglstext] = ACTIONS(5265), + [anon_sym_BSLASHGlstext] = ACTIONS(5265), + [anon_sym_BSLASHGLStext] = ACTIONS(5265), + [anon_sym_BSLASHglsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), + [anon_sym_BSLASHglsplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSplural] = ACTIONS(5265), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHglsname] = ACTIONS(5265), + [anon_sym_BSLASHGlsname] = ACTIONS(5265), + [anon_sym_BSLASHGLSname] = ACTIONS(5265), + [anon_sym_BSLASHglssymbol] = ACTIONS(5265), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), + [anon_sym_BSLASHglsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), + [anon_sym_BSLASHglsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), + [anon_sym_BSLASHglsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), + [anon_sym_BSLASHglsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), + [anon_sym_BSLASHglsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), + [anon_sym_BSLASHnewacronym] = ACTIONS(5265), + [anon_sym_BSLASHacrshort] = ACTIONS(5265), + [anon_sym_BSLASHAcrshort] = ACTIONS(5265), + [anon_sym_BSLASHACRshort] = ACTIONS(5265), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), + [anon_sym_BSLASHacrlong] = ACTIONS(5265), + [anon_sym_BSLASHAcrlong] = ACTIONS(5265), + [anon_sym_BSLASHACRlong] = ACTIONS(5265), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), + [anon_sym_BSLASHacrfull] = ACTIONS(5265), + [anon_sym_BSLASHAcrfull] = ACTIONS(5265), + [anon_sym_BSLASHACRfull] = ACTIONS(5265), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), + [anon_sym_BSLASHacs] = ACTIONS(5265), + [anon_sym_BSLASHAcs] = ACTIONS(5265), + [anon_sym_BSLASHacsp] = ACTIONS(5265), + [anon_sym_BSLASHAcsp] = ACTIONS(5265), + [anon_sym_BSLASHacl] = ACTIONS(5265), + [anon_sym_BSLASHAcl] = ACTIONS(5265), + [anon_sym_BSLASHaclp] = ACTIONS(5265), + [anon_sym_BSLASHAclp] = ACTIONS(5265), + [anon_sym_BSLASHacf] = ACTIONS(5265), + [anon_sym_BSLASHAcf] = ACTIONS(5265), + [anon_sym_BSLASHacfp] = ACTIONS(5265), + [anon_sym_BSLASHAcfp] = ACTIONS(5265), + [anon_sym_BSLASHac] = ACTIONS(5265), + [anon_sym_BSLASHAc] = ACTIONS(5265), + [anon_sym_BSLASHacp] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), + [anon_sym_BSLASHcolor] = ACTIONS(5265), + [anon_sym_BSLASHcolorbox] = ACTIONS(5265), + [anon_sym_BSLASHtextcolor] = ACTIONS(5265), + [anon_sym_BSLASHpagecolor] = ACTIONS(5265), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), + [anon_sym_BSLASHtext] = ACTIONS(5265), + [anon_sym_BSLASHintertext] = ACTIONS(5265), + [anon_sym_shortintertext] = ACTIONS(5265), + }, + [1232] = { + [sym_command_name] = ACTIONS(5323), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5325), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_LBRACK] = ACTIONS(5325), + [anon_sym_RBRACK] = ACTIONS(5325), + [anon_sym_COMMA] = ACTIONS(5325), + [anon_sym_EQ] = ACTIONS(5325), + [anon_sym_BSLASHpart] = ACTIONS(5323), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddpart] = ACTIONS(5323), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5325), + [anon_sym_BSLASHchapter] = ACTIONS(5323), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddchap] = ACTIONS(5323), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsection] = ACTIONS(5323), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHaddsec] = ACTIONS(5323), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5323), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5325), + [anon_sym_BSLASHparagraph] = ACTIONS(5323), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5325), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5323), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5325), + [anon_sym_BSLASHitem] = ACTIONS(5323), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5325), + [anon_sym_LBRACE] = ACTIONS(5325), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5325), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHend] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), + }, + [1233] = { + [sym_command_name] = ACTIONS(5269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5269), + [anon_sym_LPAREN] = ACTIONS(5267), + [anon_sym_RPAREN] = ACTIONS(5267), + [anon_sym_LBRACK] = ACTIONS(5267), + [anon_sym_RBRACK] = ACTIONS(5267), + [anon_sym_COMMA] = ACTIONS(5267), + [anon_sym_EQ] = ACTIONS(5267), + [anon_sym_BSLASHpart] = ACTIONS(5269), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddpart] = ACTIONS(5269), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5267), + [anon_sym_BSLASHchapter] = ACTIONS(5269), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddchap] = ACTIONS(5269), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsection] = ACTIONS(5269), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHaddsec] = ACTIONS(5269), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubsection] = ACTIONS(5269), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5269), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5267), + [anon_sym_BSLASHparagraph] = ACTIONS(5269), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5267), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5269), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5267), + [anon_sym_BSLASHitem] = ACTIONS(5269), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5267), + [anon_sym_LBRACE] = ACTIONS(5267), + [sym_word] = ACTIONS(5269), + [sym_placeholder] = ACTIONS(5267), + [anon_sym_PLUS] = ACTIONS(5269), + [anon_sym_DASH] = ACTIONS(5269), + [anon_sym_STAR] = ACTIONS(5269), + [anon_sym_SLASH] = ACTIONS(5269), + [anon_sym_CARET] = ACTIONS(5269), + [anon_sym__] = ACTIONS(5269), + [anon_sym_LT] = ACTIONS(5269), + [anon_sym_GT] = ACTIONS(5269), + [anon_sym_BANG] = ACTIONS(5269), + [anon_sym_PIPE] = ACTIONS(5269), + [anon_sym_COLON] = ACTIONS(5269), + [anon_sym_SQUOTE] = ACTIONS(5269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), + [anon_sym_DOLLAR] = ACTIONS(5269), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), + [anon_sym_BSLASHbegin] = ACTIONS(5269), + [anon_sym_BSLASHend] = ACTIONS(5269), + [anon_sym_BSLASHusepackage] = ACTIONS(5269), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), + [anon_sym_BSLASHinclude] = ACTIONS(5269), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), + [anon_sym_BSLASHinput] = ACTIONS(5269), + [anon_sym_BSLASHsubfile] = ACTIONS(5269), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), + [anon_sym_BSLASHbibliography] = ACTIONS(5269), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), + [anon_sym_BSLASHincludesvg] = ACTIONS(5269), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), + [anon_sym_BSLASHimport] = ACTIONS(5269), + [anon_sym_BSLASHsubimport] = ACTIONS(5269), + [anon_sym_BSLASHinputfrom] = ACTIONS(5269), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), + [anon_sym_BSLASHincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHcaption] = ACTIONS(5269), + [anon_sym_BSLASHcite] = ACTIONS(5269), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCite] = ACTIONS(5269), + [anon_sym_BSLASHnocite] = ACTIONS(5269), + [anon_sym_BSLASHcitet] = ACTIONS(5269), + [anon_sym_BSLASHcitep] = ACTIONS(5269), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteauthor] = ACTIONS(5269), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitetitle] = ACTIONS(5269), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteyear] = ACTIONS(5269), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitedate] = ACTIONS(5269), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteurl] = ACTIONS(5269), + [anon_sym_BSLASHfullcite] = ACTIONS(5269), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), + [anon_sym_BSLASHcitealt] = ACTIONS(5269), + [anon_sym_BSLASHcitealp] = ACTIONS(5269), + [anon_sym_BSLASHcitetext] = ACTIONS(5269), + [anon_sym_BSLASHparencite] = ACTIONS(5269), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHParencite] = ACTIONS(5269), + [anon_sym_BSLASHfootcite] = ACTIONS(5269), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), + [anon_sym_BSLASHtextcite] = ACTIONS(5269), + [anon_sym_BSLASHTextcite] = ACTIONS(5269), + [anon_sym_BSLASHsmartcite] = ACTIONS(5269), + [anon_sym_BSLASHSmartcite] = ACTIONS(5269), + [anon_sym_BSLASHsupercite] = ACTIONS(5269), + [anon_sym_BSLASHautocite] = ACTIONS(5269), + [anon_sym_BSLASHAutocite] = ACTIONS(5269), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHvolcite] = ACTIONS(5269), + [anon_sym_BSLASHVolcite] = ACTIONS(5269), + [anon_sym_BSLASHpvolcite] = ACTIONS(5269), + [anon_sym_BSLASHPvolcite] = ACTIONS(5269), + [anon_sym_BSLASHfvolcite] = ACTIONS(5269), + [anon_sym_BSLASHftvolcite] = ACTIONS(5269), + [anon_sym_BSLASHsvolcite] = ACTIONS(5269), + [anon_sym_BSLASHSvolcite] = ACTIONS(5269), + [anon_sym_BSLASHtvolcite] = ACTIONS(5269), + [anon_sym_BSLASHTvolcite] = ACTIONS(5269), + [anon_sym_BSLASHavolcite] = ACTIONS(5269), + [anon_sym_BSLASHAvolcite] = ACTIONS(5269), + [anon_sym_BSLASHnotecite] = ACTIONS(5269), + [anon_sym_BSLASHNotecite] = ACTIONS(5269), + [anon_sym_BSLASHpnotecite] = ACTIONS(5269), + [anon_sym_BSLASHPnotecite] = ACTIONS(5269), + [anon_sym_BSLASHfnotecite] = ACTIONS(5269), + [anon_sym_BSLASHlabel] = ACTIONS(5269), + [anon_sym_BSLASHref] = ACTIONS(5269), + [anon_sym_BSLASHeqref] = ACTIONS(5269), + [anon_sym_BSLASHvref] = ACTIONS(5269), + [anon_sym_BSLASHVref] = ACTIONS(5269), + [anon_sym_BSLASHautoref] = ACTIONS(5269), + [anon_sym_BSLASHpageref] = ACTIONS(5269), + [anon_sym_BSLASHcref] = ACTIONS(5269), + [anon_sym_BSLASHCref] = ACTIONS(5269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnameCref] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHlabelcref] = ACTIONS(5269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCrefrange] = ACTIONS(5269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnewlabel] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), + [anon_sym_BSLASHdef] = ACTIONS(5269), + [anon_sym_BSLASHlet] = ACTIONS(5269), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), + [anon_sym_BSLASHgls] = ACTIONS(5269), + [anon_sym_BSLASHGls] = ACTIONS(5269), + [anon_sym_BSLASHGLS] = ACTIONS(5269), + [anon_sym_BSLASHglspl] = ACTIONS(5269), + [anon_sym_BSLASHGlspl] = ACTIONS(5269), + [anon_sym_BSLASHGLSpl] = ACTIONS(5269), + [anon_sym_BSLASHglsdisp] = ACTIONS(5269), + [anon_sym_BSLASHglslink] = ACTIONS(5269), + [anon_sym_BSLASHglstext] = ACTIONS(5269), + [anon_sym_BSLASHGlstext] = ACTIONS(5269), + [anon_sym_BSLASHGLStext] = ACTIONS(5269), + [anon_sym_BSLASHglsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), + [anon_sym_BSLASHglsplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSplural] = ACTIONS(5269), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHglsname] = ACTIONS(5269), + [anon_sym_BSLASHGlsname] = ACTIONS(5269), + [anon_sym_BSLASHGLSname] = ACTIONS(5269), + [anon_sym_BSLASHglssymbol] = ACTIONS(5269), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), + [anon_sym_BSLASHglsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), + [anon_sym_BSLASHglsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), + [anon_sym_BSLASHglsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), + [anon_sym_BSLASHglsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), + [anon_sym_BSLASHglsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), + [anon_sym_BSLASHnewacronym] = ACTIONS(5269), + [anon_sym_BSLASHacrshort] = ACTIONS(5269), + [anon_sym_BSLASHAcrshort] = ACTIONS(5269), + [anon_sym_BSLASHACRshort] = ACTIONS(5269), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), + [anon_sym_BSLASHacrlong] = ACTIONS(5269), + [anon_sym_BSLASHAcrlong] = ACTIONS(5269), + [anon_sym_BSLASHACRlong] = ACTIONS(5269), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), + [anon_sym_BSLASHacrfull] = ACTIONS(5269), + [anon_sym_BSLASHAcrfull] = ACTIONS(5269), + [anon_sym_BSLASHACRfull] = ACTIONS(5269), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), + [anon_sym_BSLASHacs] = ACTIONS(5269), + [anon_sym_BSLASHAcs] = ACTIONS(5269), + [anon_sym_BSLASHacsp] = ACTIONS(5269), + [anon_sym_BSLASHAcsp] = ACTIONS(5269), + [anon_sym_BSLASHacl] = ACTIONS(5269), + [anon_sym_BSLASHAcl] = ACTIONS(5269), + [anon_sym_BSLASHaclp] = ACTIONS(5269), + [anon_sym_BSLASHAclp] = ACTIONS(5269), + [anon_sym_BSLASHacf] = ACTIONS(5269), + [anon_sym_BSLASHAcf] = ACTIONS(5269), + [anon_sym_BSLASHacfp] = ACTIONS(5269), + [anon_sym_BSLASHAcfp] = ACTIONS(5269), + [anon_sym_BSLASHac] = ACTIONS(5269), + [anon_sym_BSLASHAc] = ACTIONS(5269), + [anon_sym_BSLASHacp] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), + [anon_sym_BSLASHcolor] = ACTIONS(5269), + [anon_sym_BSLASHcolorbox] = ACTIONS(5269), + [anon_sym_BSLASHtextcolor] = ACTIONS(5269), + [anon_sym_BSLASHpagecolor] = ACTIONS(5269), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), + [anon_sym_BSLASHtext] = ACTIONS(5269), + [anon_sym_BSLASHintertext] = ACTIONS(5269), + [anon_sym_shortintertext] = ACTIONS(5269), + }, + [1234] = { + [sym_command_name] = ACTIONS(5273), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5273), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(5271), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_COMMA] = ACTIONS(5271), + [anon_sym_EQ] = ACTIONS(5271), + [anon_sym_BSLASHpart] = ACTIONS(5273), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddpart] = ACTIONS(5273), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5271), + [anon_sym_BSLASHchapter] = ACTIONS(5273), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddchap] = ACTIONS(5273), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsection] = ACTIONS(5273), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHaddsec] = ACTIONS(5273), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5273), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5271), + [anon_sym_BSLASHparagraph] = ACTIONS(5273), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5273), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5271), + [anon_sym_BSLASHitem] = ACTIONS(5273), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(5271), + [sym_word] = ACTIONS(5273), + [sym_placeholder] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5273), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5273), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym__] = ACTIONS(5273), + [anon_sym_LT] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5273), + [anon_sym_BANG] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5273), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_SQUOTE] = ACTIONS(5273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), + [anon_sym_DOLLAR] = ACTIONS(5273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), + [anon_sym_BSLASHbegin] = ACTIONS(5273), + [anon_sym_BSLASHend] = ACTIONS(5273), + [anon_sym_BSLASHusepackage] = ACTIONS(5273), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), + [anon_sym_BSLASHinclude] = ACTIONS(5273), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), + [anon_sym_BSLASHinput] = ACTIONS(5273), + [anon_sym_BSLASHsubfile] = ACTIONS(5273), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), + [anon_sym_BSLASHbibliography] = ACTIONS(5273), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), + [anon_sym_BSLASHincludesvg] = ACTIONS(5273), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), + [anon_sym_BSLASHimport] = ACTIONS(5273), + [anon_sym_BSLASHsubimport] = ACTIONS(5273), + [anon_sym_BSLASHinputfrom] = ACTIONS(5273), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), + [anon_sym_BSLASHincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHcaption] = ACTIONS(5273), + [anon_sym_BSLASHcite] = ACTIONS(5273), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCite] = ACTIONS(5273), + [anon_sym_BSLASHnocite] = ACTIONS(5273), + [anon_sym_BSLASHcitet] = ACTIONS(5273), + [anon_sym_BSLASHcitep] = ACTIONS(5273), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteauthor] = ACTIONS(5273), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitetitle] = ACTIONS(5273), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteyear] = ACTIONS(5273), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitedate] = ACTIONS(5273), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteurl] = ACTIONS(5273), + [anon_sym_BSLASHfullcite] = ACTIONS(5273), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), + [anon_sym_BSLASHcitealt] = ACTIONS(5273), + [anon_sym_BSLASHcitealp] = ACTIONS(5273), + [anon_sym_BSLASHcitetext] = ACTIONS(5273), + [anon_sym_BSLASHparencite] = ACTIONS(5273), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHParencite] = ACTIONS(5273), + [anon_sym_BSLASHfootcite] = ACTIONS(5273), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), + [anon_sym_BSLASHtextcite] = ACTIONS(5273), + [anon_sym_BSLASHTextcite] = ACTIONS(5273), + [anon_sym_BSLASHsmartcite] = ACTIONS(5273), + [anon_sym_BSLASHSmartcite] = ACTIONS(5273), + [anon_sym_BSLASHsupercite] = ACTIONS(5273), + [anon_sym_BSLASHautocite] = ACTIONS(5273), + [anon_sym_BSLASHAutocite] = ACTIONS(5273), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHvolcite] = ACTIONS(5273), + [anon_sym_BSLASHVolcite] = ACTIONS(5273), + [anon_sym_BSLASHpvolcite] = ACTIONS(5273), + [anon_sym_BSLASHPvolcite] = ACTIONS(5273), + [anon_sym_BSLASHfvolcite] = ACTIONS(5273), + [anon_sym_BSLASHftvolcite] = ACTIONS(5273), + [anon_sym_BSLASHsvolcite] = ACTIONS(5273), + [anon_sym_BSLASHSvolcite] = ACTIONS(5273), + [anon_sym_BSLASHtvolcite] = ACTIONS(5273), + [anon_sym_BSLASHTvolcite] = ACTIONS(5273), + [anon_sym_BSLASHavolcite] = ACTIONS(5273), + [anon_sym_BSLASHAvolcite] = ACTIONS(5273), + [anon_sym_BSLASHnotecite] = ACTIONS(5273), + [anon_sym_BSLASHNotecite] = ACTIONS(5273), + [anon_sym_BSLASHpnotecite] = ACTIONS(5273), + [anon_sym_BSLASHPnotecite] = ACTIONS(5273), + [anon_sym_BSLASHfnotecite] = ACTIONS(5273), + [anon_sym_BSLASHlabel] = ACTIONS(5273), + [anon_sym_BSLASHref] = ACTIONS(5273), + [anon_sym_BSLASHeqref] = ACTIONS(5273), + [anon_sym_BSLASHvref] = ACTIONS(5273), + [anon_sym_BSLASHVref] = ACTIONS(5273), + [anon_sym_BSLASHautoref] = ACTIONS(5273), + [anon_sym_BSLASHpageref] = ACTIONS(5273), + [anon_sym_BSLASHcref] = ACTIONS(5273), + [anon_sym_BSLASHCref] = ACTIONS(5273), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnameCref] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHlabelcref] = ACTIONS(5273), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCrefrange] = ACTIONS(5273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdef] = ACTIONS(5273), + [anon_sym_BSLASHlet] = ACTIONS(5273), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), + [anon_sym_BSLASHgls] = ACTIONS(5273), + [anon_sym_BSLASHGls] = ACTIONS(5273), + [anon_sym_BSLASHGLS] = ACTIONS(5273), + [anon_sym_BSLASHglspl] = ACTIONS(5273), + [anon_sym_BSLASHGlspl] = ACTIONS(5273), + [anon_sym_BSLASHGLSpl] = ACTIONS(5273), + [anon_sym_BSLASHglsdisp] = ACTIONS(5273), + [anon_sym_BSLASHglslink] = ACTIONS(5273), + [anon_sym_BSLASHglstext] = ACTIONS(5273), + [anon_sym_BSLASHGlstext] = ACTIONS(5273), + [anon_sym_BSLASHGLStext] = ACTIONS(5273), + [anon_sym_BSLASHglsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), + [anon_sym_BSLASHglsplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSplural] = ACTIONS(5273), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHglsname] = ACTIONS(5273), + [anon_sym_BSLASHGlsname] = ACTIONS(5273), + [anon_sym_BSLASHGLSname] = ACTIONS(5273), + [anon_sym_BSLASHglssymbol] = ACTIONS(5273), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), + [anon_sym_BSLASHglsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), + [anon_sym_BSLASHglsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), + [anon_sym_BSLASHglsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), + [anon_sym_BSLASHglsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), + [anon_sym_BSLASHglsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), + [anon_sym_BSLASHnewacronym] = ACTIONS(5273), + [anon_sym_BSLASHacrshort] = ACTIONS(5273), + [anon_sym_BSLASHAcrshort] = ACTIONS(5273), + [anon_sym_BSLASHACRshort] = ACTIONS(5273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), + [anon_sym_BSLASHacrlong] = ACTIONS(5273), + [anon_sym_BSLASHAcrlong] = ACTIONS(5273), + [anon_sym_BSLASHACRlong] = ACTIONS(5273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), + [anon_sym_BSLASHacrfull] = ACTIONS(5273), + [anon_sym_BSLASHAcrfull] = ACTIONS(5273), + [anon_sym_BSLASHACRfull] = ACTIONS(5273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), + [anon_sym_BSLASHacs] = ACTIONS(5273), + [anon_sym_BSLASHAcs] = ACTIONS(5273), + [anon_sym_BSLASHacsp] = ACTIONS(5273), + [anon_sym_BSLASHAcsp] = ACTIONS(5273), + [anon_sym_BSLASHacl] = ACTIONS(5273), + [anon_sym_BSLASHAcl] = ACTIONS(5273), + [anon_sym_BSLASHaclp] = ACTIONS(5273), + [anon_sym_BSLASHAclp] = ACTIONS(5273), + [anon_sym_BSLASHacf] = ACTIONS(5273), + [anon_sym_BSLASHAcf] = ACTIONS(5273), + [anon_sym_BSLASHacfp] = ACTIONS(5273), + [anon_sym_BSLASHAcfp] = ACTIONS(5273), + [anon_sym_BSLASHac] = ACTIONS(5273), + [anon_sym_BSLASHAc] = ACTIONS(5273), + [anon_sym_BSLASHacp] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), + [anon_sym_BSLASHcolor] = ACTIONS(5273), + [anon_sym_BSLASHcolorbox] = ACTIONS(5273), + [anon_sym_BSLASHtextcolor] = ACTIONS(5273), + [anon_sym_BSLASHpagecolor] = ACTIONS(5273), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), + [anon_sym_BSLASHtext] = ACTIONS(5273), + [anon_sym_BSLASHintertext] = ACTIONS(5273), + [anon_sym_shortintertext] = ACTIONS(5273), + }, + [1235] = { + [sym_command_name] = ACTIONS(5277), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5277), + [anon_sym_LPAREN] = ACTIONS(5275), + [anon_sym_RPAREN] = ACTIONS(5275), + [anon_sym_LBRACK] = ACTIONS(5275), + [anon_sym_RBRACK] = ACTIONS(5275), + [anon_sym_COMMA] = ACTIONS(5275), + [anon_sym_EQ] = ACTIONS(5275), + [anon_sym_BSLASHpart] = ACTIONS(5277), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddpart] = ACTIONS(5277), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5275), + [anon_sym_BSLASHchapter] = ACTIONS(5277), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddchap] = ACTIONS(5277), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsection] = ACTIONS(5277), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHaddsec] = ACTIONS(5277), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubsection] = ACTIONS(5277), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5277), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5275), + [anon_sym_BSLASHparagraph] = ACTIONS(5277), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5275), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5277), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5275), + [anon_sym_BSLASHitem] = ACTIONS(5277), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5275), + [anon_sym_LBRACE] = ACTIONS(5275), + [sym_word] = ACTIONS(5277), + [sym_placeholder] = ACTIONS(5275), + [anon_sym_PLUS] = ACTIONS(5277), + [anon_sym_DASH] = ACTIONS(5277), + [anon_sym_STAR] = ACTIONS(5277), + [anon_sym_SLASH] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5277), + [anon_sym__] = ACTIONS(5277), + [anon_sym_LT] = ACTIONS(5277), + [anon_sym_GT] = ACTIONS(5277), + [anon_sym_BANG] = ACTIONS(5277), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_COLON] = ACTIONS(5277), + [anon_sym_SQUOTE] = ACTIONS(5277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), + [anon_sym_DOLLAR] = ACTIONS(5277), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), + [anon_sym_BSLASHbegin] = ACTIONS(5277), + [anon_sym_BSLASHend] = ACTIONS(5277), + [anon_sym_BSLASHusepackage] = ACTIONS(5277), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), + [anon_sym_BSLASHinclude] = ACTIONS(5277), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), + [anon_sym_BSLASHinput] = ACTIONS(5277), + [anon_sym_BSLASHsubfile] = ACTIONS(5277), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), + [anon_sym_BSLASHbibliography] = ACTIONS(5277), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), + [anon_sym_BSLASHincludesvg] = ACTIONS(5277), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), + [anon_sym_BSLASHimport] = ACTIONS(5277), + [anon_sym_BSLASHsubimport] = ACTIONS(5277), + [anon_sym_BSLASHinputfrom] = ACTIONS(5277), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), + [anon_sym_BSLASHincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHcaption] = ACTIONS(5277), + [anon_sym_BSLASHcite] = ACTIONS(5277), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCite] = ACTIONS(5277), + [anon_sym_BSLASHnocite] = ACTIONS(5277), + [anon_sym_BSLASHcitet] = ACTIONS(5277), + [anon_sym_BSLASHcitep] = ACTIONS(5277), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteauthor] = ACTIONS(5277), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitetitle] = ACTIONS(5277), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteyear] = ACTIONS(5277), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitedate] = ACTIONS(5277), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteurl] = ACTIONS(5277), + [anon_sym_BSLASHfullcite] = ACTIONS(5277), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), + [anon_sym_BSLASHcitealt] = ACTIONS(5277), + [anon_sym_BSLASHcitealp] = ACTIONS(5277), + [anon_sym_BSLASHcitetext] = ACTIONS(5277), + [anon_sym_BSLASHparencite] = ACTIONS(5277), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHParencite] = ACTIONS(5277), + [anon_sym_BSLASHfootcite] = ACTIONS(5277), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), + [anon_sym_BSLASHtextcite] = ACTIONS(5277), + [anon_sym_BSLASHTextcite] = ACTIONS(5277), + [anon_sym_BSLASHsmartcite] = ACTIONS(5277), + [anon_sym_BSLASHSmartcite] = ACTIONS(5277), + [anon_sym_BSLASHsupercite] = ACTIONS(5277), + [anon_sym_BSLASHautocite] = ACTIONS(5277), + [anon_sym_BSLASHAutocite] = ACTIONS(5277), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHvolcite] = ACTIONS(5277), + [anon_sym_BSLASHVolcite] = ACTIONS(5277), + [anon_sym_BSLASHpvolcite] = ACTIONS(5277), + [anon_sym_BSLASHPvolcite] = ACTIONS(5277), + [anon_sym_BSLASHfvolcite] = ACTIONS(5277), + [anon_sym_BSLASHftvolcite] = ACTIONS(5277), + [anon_sym_BSLASHsvolcite] = ACTIONS(5277), + [anon_sym_BSLASHSvolcite] = ACTIONS(5277), + [anon_sym_BSLASHtvolcite] = ACTIONS(5277), + [anon_sym_BSLASHTvolcite] = ACTIONS(5277), + [anon_sym_BSLASHavolcite] = ACTIONS(5277), + [anon_sym_BSLASHAvolcite] = ACTIONS(5277), + [anon_sym_BSLASHnotecite] = ACTIONS(5277), + [anon_sym_BSLASHNotecite] = ACTIONS(5277), + [anon_sym_BSLASHpnotecite] = ACTIONS(5277), + [anon_sym_BSLASHPnotecite] = ACTIONS(5277), + [anon_sym_BSLASHfnotecite] = ACTIONS(5277), + [anon_sym_BSLASHlabel] = ACTIONS(5277), + [anon_sym_BSLASHref] = ACTIONS(5277), + [anon_sym_BSLASHeqref] = ACTIONS(5277), + [anon_sym_BSLASHvref] = ACTIONS(5277), + [anon_sym_BSLASHVref] = ACTIONS(5277), + [anon_sym_BSLASHautoref] = ACTIONS(5277), + [anon_sym_BSLASHpageref] = ACTIONS(5277), + [anon_sym_BSLASHcref] = ACTIONS(5277), + [anon_sym_BSLASHCref] = ACTIONS(5277), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnameCref] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHlabelcref] = ACTIONS(5277), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCrefrange] = ACTIONS(5277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnewlabel] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), + [anon_sym_BSLASHdef] = ACTIONS(5277), + [anon_sym_BSLASHlet] = ACTIONS(5277), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), + [anon_sym_BSLASHgls] = ACTIONS(5277), + [anon_sym_BSLASHGls] = ACTIONS(5277), + [anon_sym_BSLASHGLS] = ACTIONS(5277), + [anon_sym_BSLASHglspl] = ACTIONS(5277), + [anon_sym_BSLASHGlspl] = ACTIONS(5277), + [anon_sym_BSLASHGLSpl] = ACTIONS(5277), + [anon_sym_BSLASHglsdisp] = ACTIONS(5277), + [anon_sym_BSLASHglslink] = ACTIONS(5277), + [anon_sym_BSLASHglstext] = ACTIONS(5277), + [anon_sym_BSLASHGlstext] = ACTIONS(5277), + [anon_sym_BSLASHGLStext] = ACTIONS(5277), + [anon_sym_BSLASHglsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), + [anon_sym_BSLASHglsplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSplural] = ACTIONS(5277), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHglsname] = ACTIONS(5277), + [anon_sym_BSLASHGlsname] = ACTIONS(5277), + [anon_sym_BSLASHGLSname] = ACTIONS(5277), + [anon_sym_BSLASHglssymbol] = ACTIONS(5277), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), + [anon_sym_BSLASHglsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), + [anon_sym_BSLASHglsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), + [anon_sym_BSLASHglsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), + [anon_sym_BSLASHglsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), + [anon_sym_BSLASHglsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), + [anon_sym_BSLASHnewacronym] = ACTIONS(5277), + [anon_sym_BSLASHacrshort] = ACTIONS(5277), + [anon_sym_BSLASHAcrshort] = ACTIONS(5277), + [anon_sym_BSLASHACRshort] = ACTIONS(5277), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), + [anon_sym_BSLASHacrlong] = ACTIONS(5277), + [anon_sym_BSLASHAcrlong] = ACTIONS(5277), + [anon_sym_BSLASHACRlong] = ACTIONS(5277), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), + [anon_sym_BSLASHacrfull] = ACTIONS(5277), + [anon_sym_BSLASHAcrfull] = ACTIONS(5277), + [anon_sym_BSLASHACRfull] = ACTIONS(5277), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), + [anon_sym_BSLASHacs] = ACTIONS(5277), + [anon_sym_BSLASHAcs] = ACTIONS(5277), + [anon_sym_BSLASHacsp] = ACTIONS(5277), + [anon_sym_BSLASHAcsp] = ACTIONS(5277), + [anon_sym_BSLASHacl] = ACTIONS(5277), + [anon_sym_BSLASHAcl] = ACTIONS(5277), + [anon_sym_BSLASHaclp] = ACTIONS(5277), + [anon_sym_BSLASHAclp] = ACTIONS(5277), + [anon_sym_BSLASHacf] = ACTIONS(5277), + [anon_sym_BSLASHAcf] = ACTIONS(5277), + [anon_sym_BSLASHacfp] = ACTIONS(5277), + [anon_sym_BSLASHAcfp] = ACTIONS(5277), + [anon_sym_BSLASHac] = ACTIONS(5277), + [anon_sym_BSLASHAc] = ACTIONS(5277), + [anon_sym_BSLASHacp] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), + [anon_sym_BSLASHcolor] = ACTIONS(5277), + [anon_sym_BSLASHcolorbox] = ACTIONS(5277), + [anon_sym_BSLASHtextcolor] = ACTIONS(5277), + [anon_sym_BSLASHpagecolor] = ACTIONS(5277), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), + [anon_sym_BSLASHtext] = ACTIONS(5277), + [anon_sym_BSLASHintertext] = ACTIONS(5277), + [anon_sym_shortintertext] = ACTIONS(5277), + }, + [1236] = { + [sym_command_name] = ACTIONS(5281), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5281), + [anon_sym_LPAREN] = ACTIONS(5279), + [anon_sym_RPAREN] = ACTIONS(5279), + [anon_sym_LBRACK] = ACTIONS(5279), + [anon_sym_RBRACK] = ACTIONS(5279), + [anon_sym_COMMA] = ACTIONS(5279), + [anon_sym_EQ] = ACTIONS(5279), + [anon_sym_BSLASHpart] = ACTIONS(5281), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddpart] = ACTIONS(5281), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5279), + [anon_sym_BSLASHchapter] = ACTIONS(5281), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddchap] = ACTIONS(5281), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsection] = ACTIONS(5281), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHaddsec] = ACTIONS(5281), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubsection] = ACTIONS(5281), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5281), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5279), + [anon_sym_BSLASHparagraph] = ACTIONS(5281), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5279), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5281), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5279), + [anon_sym_BSLASHitem] = ACTIONS(5281), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5279), + [anon_sym_LBRACE] = ACTIONS(5279), + [sym_word] = ACTIONS(5281), + [sym_placeholder] = ACTIONS(5279), + [anon_sym_PLUS] = ACTIONS(5281), + [anon_sym_DASH] = ACTIONS(5281), + [anon_sym_STAR] = ACTIONS(5281), + [anon_sym_SLASH] = ACTIONS(5281), + [anon_sym_CARET] = ACTIONS(5281), + [anon_sym__] = ACTIONS(5281), + [anon_sym_LT] = ACTIONS(5281), + [anon_sym_GT] = ACTIONS(5281), + [anon_sym_BANG] = ACTIONS(5281), + [anon_sym_PIPE] = ACTIONS(5281), + [anon_sym_COLON] = ACTIONS(5281), + [anon_sym_SQUOTE] = ACTIONS(5281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), + [anon_sym_DOLLAR] = ACTIONS(5281), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), + [anon_sym_BSLASHbegin] = ACTIONS(5281), + [anon_sym_BSLASHend] = ACTIONS(5281), + [anon_sym_BSLASHusepackage] = ACTIONS(5281), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), + [anon_sym_BSLASHinclude] = ACTIONS(5281), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), + [anon_sym_BSLASHinput] = ACTIONS(5281), + [anon_sym_BSLASHsubfile] = ACTIONS(5281), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), + [anon_sym_BSLASHbibliography] = ACTIONS(5281), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), + [anon_sym_BSLASHincludesvg] = ACTIONS(5281), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), + [anon_sym_BSLASHimport] = ACTIONS(5281), + [anon_sym_BSLASHsubimport] = ACTIONS(5281), + [anon_sym_BSLASHinputfrom] = ACTIONS(5281), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), + [anon_sym_BSLASHincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHcaption] = ACTIONS(5281), + [anon_sym_BSLASHcite] = ACTIONS(5281), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCite] = ACTIONS(5281), + [anon_sym_BSLASHnocite] = ACTIONS(5281), + [anon_sym_BSLASHcitet] = ACTIONS(5281), + [anon_sym_BSLASHcitep] = ACTIONS(5281), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteauthor] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitetitle] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteyear] = ACTIONS(5281), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitedate] = ACTIONS(5281), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteurl] = ACTIONS(5281), + [anon_sym_BSLASHfullcite] = ACTIONS(5281), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), + [anon_sym_BSLASHcitealt] = ACTIONS(5281), + [anon_sym_BSLASHcitealp] = ACTIONS(5281), + [anon_sym_BSLASHcitetext] = ACTIONS(5281), + [anon_sym_BSLASHparencite] = ACTIONS(5281), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHParencite] = ACTIONS(5281), + [anon_sym_BSLASHfootcite] = ACTIONS(5281), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), + [anon_sym_BSLASHtextcite] = ACTIONS(5281), + [anon_sym_BSLASHTextcite] = ACTIONS(5281), + [anon_sym_BSLASHsmartcite] = ACTIONS(5281), + [anon_sym_BSLASHSmartcite] = ACTIONS(5281), + [anon_sym_BSLASHsupercite] = ACTIONS(5281), + [anon_sym_BSLASHautocite] = ACTIONS(5281), + [anon_sym_BSLASHAutocite] = ACTIONS(5281), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHvolcite] = ACTIONS(5281), + [anon_sym_BSLASHVolcite] = ACTIONS(5281), + [anon_sym_BSLASHpvolcite] = ACTIONS(5281), + [anon_sym_BSLASHPvolcite] = ACTIONS(5281), + [anon_sym_BSLASHfvolcite] = ACTIONS(5281), + [anon_sym_BSLASHftvolcite] = ACTIONS(5281), + [anon_sym_BSLASHsvolcite] = ACTIONS(5281), + [anon_sym_BSLASHSvolcite] = ACTIONS(5281), + [anon_sym_BSLASHtvolcite] = ACTIONS(5281), + [anon_sym_BSLASHTvolcite] = ACTIONS(5281), + [anon_sym_BSLASHavolcite] = ACTIONS(5281), + [anon_sym_BSLASHAvolcite] = ACTIONS(5281), + [anon_sym_BSLASHnotecite] = ACTIONS(5281), + [anon_sym_BSLASHNotecite] = ACTIONS(5281), + [anon_sym_BSLASHpnotecite] = ACTIONS(5281), + [anon_sym_BSLASHPnotecite] = ACTIONS(5281), + [anon_sym_BSLASHfnotecite] = ACTIONS(5281), + [anon_sym_BSLASHlabel] = ACTIONS(5281), + [anon_sym_BSLASHref] = ACTIONS(5281), + [anon_sym_BSLASHeqref] = ACTIONS(5281), + [anon_sym_BSLASHvref] = ACTIONS(5281), + [anon_sym_BSLASHVref] = ACTIONS(5281), + [anon_sym_BSLASHautoref] = ACTIONS(5281), + [anon_sym_BSLASHpageref] = ACTIONS(5281), + [anon_sym_BSLASHcref] = ACTIONS(5281), + [anon_sym_BSLASHCref] = ACTIONS(5281), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnameCref] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHlabelcref] = ACTIONS(5281), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCrefrange] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnewlabel] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), + [anon_sym_BSLASHdef] = ACTIONS(5281), + [anon_sym_BSLASHlet] = ACTIONS(5281), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), + [anon_sym_BSLASHgls] = ACTIONS(5281), + [anon_sym_BSLASHGls] = ACTIONS(5281), + [anon_sym_BSLASHGLS] = ACTIONS(5281), + [anon_sym_BSLASHglspl] = ACTIONS(5281), + [anon_sym_BSLASHGlspl] = ACTIONS(5281), + [anon_sym_BSLASHGLSpl] = ACTIONS(5281), + [anon_sym_BSLASHglsdisp] = ACTIONS(5281), + [anon_sym_BSLASHglslink] = ACTIONS(5281), + [anon_sym_BSLASHglstext] = ACTIONS(5281), + [anon_sym_BSLASHGlstext] = ACTIONS(5281), + [anon_sym_BSLASHGLStext] = ACTIONS(5281), + [anon_sym_BSLASHglsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), + [anon_sym_BSLASHglsplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSplural] = ACTIONS(5281), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHglsname] = ACTIONS(5281), + [anon_sym_BSLASHGlsname] = ACTIONS(5281), + [anon_sym_BSLASHGLSname] = ACTIONS(5281), + [anon_sym_BSLASHglssymbol] = ACTIONS(5281), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), + [anon_sym_BSLASHglsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), + [anon_sym_BSLASHglsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), + [anon_sym_BSLASHglsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), + [anon_sym_BSLASHglsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), + [anon_sym_BSLASHglsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), + [anon_sym_BSLASHnewacronym] = ACTIONS(5281), + [anon_sym_BSLASHacrshort] = ACTIONS(5281), + [anon_sym_BSLASHAcrshort] = ACTIONS(5281), + [anon_sym_BSLASHACRshort] = ACTIONS(5281), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), + [anon_sym_BSLASHacrlong] = ACTIONS(5281), + [anon_sym_BSLASHAcrlong] = ACTIONS(5281), + [anon_sym_BSLASHACRlong] = ACTIONS(5281), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), + [anon_sym_BSLASHacrfull] = ACTIONS(5281), + [anon_sym_BSLASHAcrfull] = ACTIONS(5281), + [anon_sym_BSLASHACRfull] = ACTIONS(5281), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), + [anon_sym_BSLASHacs] = ACTIONS(5281), + [anon_sym_BSLASHAcs] = ACTIONS(5281), + [anon_sym_BSLASHacsp] = ACTIONS(5281), + [anon_sym_BSLASHAcsp] = ACTIONS(5281), + [anon_sym_BSLASHacl] = ACTIONS(5281), + [anon_sym_BSLASHAcl] = ACTIONS(5281), + [anon_sym_BSLASHaclp] = ACTIONS(5281), + [anon_sym_BSLASHAclp] = ACTIONS(5281), + [anon_sym_BSLASHacf] = ACTIONS(5281), + [anon_sym_BSLASHAcf] = ACTIONS(5281), + [anon_sym_BSLASHacfp] = ACTIONS(5281), + [anon_sym_BSLASHAcfp] = ACTIONS(5281), + [anon_sym_BSLASHac] = ACTIONS(5281), + [anon_sym_BSLASHAc] = ACTIONS(5281), + [anon_sym_BSLASHacp] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), + [anon_sym_BSLASHcolor] = ACTIONS(5281), + [anon_sym_BSLASHcolorbox] = ACTIONS(5281), + [anon_sym_BSLASHtextcolor] = ACTIONS(5281), + [anon_sym_BSLASHpagecolor] = ACTIONS(5281), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), + [anon_sym_BSLASHtext] = ACTIONS(5281), + [anon_sym_BSLASHintertext] = ACTIONS(5281), + [anon_sym_shortintertext] = ACTIONS(5281), + }, + [1237] = { + [sym_command_name] = ACTIONS(5309), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5309), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_RPAREN] = ACTIONS(5307), + [anon_sym_LBRACK] = ACTIONS(5307), + [anon_sym_RBRACK] = ACTIONS(5307), + [anon_sym_COMMA] = ACTIONS(5307), + [anon_sym_EQ] = ACTIONS(5307), + [anon_sym_BSLASHpart] = ACTIONS(5309), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddpart] = ACTIONS(5309), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5307), + [anon_sym_BSLASHchapter] = ACTIONS(5309), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddchap] = ACTIONS(5309), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsection] = ACTIONS(5309), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHaddsec] = ACTIONS(5309), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubsection] = ACTIONS(5309), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5309), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5307), + [anon_sym_BSLASHparagraph] = ACTIONS(5309), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5307), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5309), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5307), + [anon_sym_BSLASHitem] = ACTIONS(5309), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5307), + [anon_sym_LBRACE] = ACTIONS(5307), + [sym_word] = ACTIONS(5309), + [sym_placeholder] = ACTIONS(5307), + [anon_sym_PLUS] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5309), + [anon_sym_STAR] = ACTIONS(5309), + [anon_sym_SLASH] = ACTIONS(5309), + [anon_sym_CARET] = ACTIONS(5309), + [anon_sym__] = ACTIONS(5309), + [anon_sym_LT] = ACTIONS(5309), + [anon_sym_GT] = ACTIONS(5309), + [anon_sym_BANG] = ACTIONS(5309), + [anon_sym_PIPE] = ACTIONS(5309), + [anon_sym_COLON] = ACTIONS(5309), + [anon_sym_SQUOTE] = ACTIONS(5309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), + [anon_sym_BSLASHbegin] = ACTIONS(5309), + [anon_sym_BSLASHend] = ACTIONS(5309), + [anon_sym_BSLASHusepackage] = ACTIONS(5309), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), + [anon_sym_BSLASHinclude] = ACTIONS(5309), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), + [anon_sym_BSLASHinput] = ACTIONS(5309), + [anon_sym_BSLASHsubfile] = ACTIONS(5309), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), + [anon_sym_BSLASHbibliography] = ACTIONS(5309), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), + [anon_sym_BSLASHincludesvg] = ACTIONS(5309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), + [anon_sym_BSLASHimport] = ACTIONS(5309), + [anon_sym_BSLASHsubimport] = ACTIONS(5309), + [anon_sym_BSLASHinputfrom] = ACTIONS(5309), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), + [anon_sym_BSLASHincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHcaption] = ACTIONS(5309), + [anon_sym_BSLASHcite] = ACTIONS(5309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCite] = ACTIONS(5309), + [anon_sym_BSLASHnocite] = ACTIONS(5309), + [anon_sym_BSLASHcitet] = ACTIONS(5309), + [anon_sym_BSLASHcitep] = ACTIONS(5309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteauthor] = ACTIONS(5309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitetitle] = ACTIONS(5309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteyear] = ACTIONS(5309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitedate] = ACTIONS(5309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteurl] = ACTIONS(5309), + [anon_sym_BSLASHfullcite] = ACTIONS(5309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), + [anon_sym_BSLASHcitealt] = ACTIONS(5309), + [anon_sym_BSLASHcitealp] = ACTIONS(5309), + [anon_sym_BSLASHcitetext] = ACTIONS(5309), + [anon_sym_BSLASHparencite] = ACTIONS(5309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHParencite] = ACTIONS(5309), + [anon_sym_BSLASHfootcite] = ACTIONS(5309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), + [anon_sym_BSLASHtextcite] = ACTIONS(5309), + [anon_sym_BSLASHTextcite] = ACTIONS(5309), + [anon_sym_BSLASHsmartcite] = ACTIONS(5309), + [anon_sym_BSLASHSmartcite] = ACTIONS(5309), + [anon_sym_BSLASHsupercite] = ACTIONS(5309), + [anon_sym_BSLASHautocite] = ACTIONS(5309), + [anon_sym_BSLASHAutocite] = ACTIONS(5309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHvolcite] = ACTIONS(5309), + [anon_sym_BSLASHVolcite] = ACTIONS(5309), + [anon_sym_BSLASHpvolcite] = ACTIONS(5309), + [anon_sym_BSLASHPvolcite] = ACTIONS(5309), + [anon_sym_BSLASHfvolcite] = ACTIONS(5309), + [anon_sym_BSLASHftvolcite] = ACTIONS(5309), + [anon_sym_BSLASHsvolcite] = ACTIONS(5309), + [anon_sym_BSLASHSvolcite] = ACTIONS(5309), + [anon_sym_BSLASHtvolcite] = ACTIONS(5309), + [anon_sym_BSLASHTvolcite] = ACTIONS(5309), + [anon_sym_BSLASHavolcite] = ACTIONS(5309), + [anon_sym_BSLASHAvolcite] = ACTIONS(5309), + [anon_sym_BSLASHnotecite] = ACTIONS(5309), + [anon_sym_BSLASHNotecite] = ACTIONS(5309), + [anon_sym_BSLASHpnotecite] = ACTIONS(5309), + [anon_sym_BSLASHPnotecite] = ACTIONS(5309), + [anon_sym_BSLASHfnotecite] = ACTIONS(5309), + [anon_sym_BSLASHlabel] = ACTIONS(5309), + [anon_sym_BSLASHref] = ACTIONS(5309), + [anon_sym_BSLASHeqref] = ACTIONS(5309), + [anon_sym_BSLASHvref] = ACTIONS(5309), + [anon_sym_BSLASHVref] = ACTIONS(5309), + [anon_sym_BSLASHautoref] = ACTIONS(5309), + [anon_sym_BSLASHpageref] = ACTIONS(5309), + [anon_sym_BSLASHcref] = ACTIONS(5309), + [anon_sym_BSLASHCref] = ACTIONS(5309), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnameCref] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHlabelcref] = ACTIONS(5309), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCrefrange] = ACTIONS(5309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnewlabel] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), + [anon_sym_BSLASHdef] = ACTIONS(5309), + [anon_sym_BSLASHlet] = ACTIONS(5309), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), + [anon_sym_BSLASHgls] = ACTIONS(5309), + [anon_sym_BSLASHGls] = ACTIONS(5309), + [anon_sym_BSLASHGLS] = ACTIONS(5309), + [anon_sym_BSLASHglspl] = ACTIONS(5309), + [anon_sym_BSLASHGlspl] = ACTIONS(5309), + [anon_sym_BSLASHGLSpl] = ACTIONS(5309), + [anon_sym_BSLASHglsdisp] = ACTIONS(5309), + [anon_sym_BSLASHglslink] = ACTIONS(5309), + [anon_sym_BSLASHglstext] = ACTIONS(5309), + [anon_sym_BSLASHGlstext] = ACTIONS(5309), + [anon_sym_BSLASHGLStext] = ACTIONS(5309), + [anon_sym_BSLASHglsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), + [anon_sym_BSLASHglsplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSplural] = ACTIONS(5309), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHglsname] = ACTIONS(5309), + [anon_sym_BSLASHGlsname] = ACTIONS(5309), + [anon_sym_BSLASHGLSname] = ACTIONS(5309), + [anon_sym_BSLASHglssymbol] = ACTIONS(5309), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), + [anon_sym_BSLASHglsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), + [anon_sym_BSLASHglsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), + [anon_sym_BSLASHglsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), + [anon_sym_BSLASHglsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), + [anon_sym_BSLASHglsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), + [anon_sym_BSLASHnewacronym] = ACTIONS(5309), + [anon_sym_BSLASHacrshort] = ACTIONS(5309), + [anon_sym_BSLASHAcrshort] = ACTIONS(5309), + [anon_sym_BSLASHACRshort] = ACTIONS(5309), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), + [anon_sym_BSLASHacrlong] = ACTIONS(5309), + [anon_sym_BSLASHAcrlong] = ACTIONS(5309), + [anon_sym_BSLASHACRlong] = ACTIONS(5309), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), + [anon_sym_BSLASHacrfull] = ACTIONS(5309), + [anon_sym_BSLASHAcrfull] = ACTIONS(5309), + [anon_sym_BSLASHACRfull] = ACTIONS(5309), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), + [anon_sym_BSLASHacs] = ACTIONS(5309), + [anon_sym_BSLASHAcs] = ACTIONS(5309), + [anon_sym_BSLASHacsp] = ACTIONS(5309), + [anon_sym_BSLASHAcsp] = ACTIONS(5309), + [anon_sym_BSLASHacl] = ACTIONS(5309), + [anon_sym_BSLASHAcl] = ACTIONS(5309), + [anon_sym_BSLASHaclp] = ACTIONS(5309), + [anon_sym_BSLASHAclp] = ACTIONS(5309), + [anon_sym_BSLASHacf] = ACTIONS(5309), + [anon_sym_BSLASHAcf] = ACTIONS(5309), + [anon_sym_BSLASHacfp] = ACTIONS(5309), + [anon_sym_BSLASHAcfp] = ACTIONS(5309), + [anon_sym_BSLASHac] = ACTIONS(5309), + [anon_sym_BSLASHAc] = ACTIONS(5309), + [anon_sym_BSLASHacp] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), + [anon_sym_BSLASHcolor] = ACTIONS(5309), + [anon_sym_BSLASHcolorbox] = ACTIONS(5309), + [anon_sym_BSLASHtextcolor] = ACTIONS(5309), + [anon_sym_BSLASHpagecolor] = ACTIONS(5309), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), + [anon_sym_BSLASHtext] = ACTIONS(5309), + [anon_sym_BSLASHintertext] = ACTIONS(5309), + [anon_sym_shortintertext] = ACTIONS(5309), + }, + [1238] = { + [sym_command_name] = ACTIONS(5157), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5157), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RBRACK] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_EQ] = ACTIONS(5155), + [anon_sym_BSLASHpart] = ACTIONS(5157), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddpart] = ACTIONS(5157), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5155), + [anon_sym_BSLASHchapter] = ACTIONS(5157), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddchap] = ACTIONS(5157), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsection] = ACTIONS(5157), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHaddsec] = ACTIONS(5157), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubsection] = ACTIONS(5157), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5157), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5155), + [anon_sym_BSLASHparagraph] = ACTIONS(5157), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5155), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5157), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5155), + [anon_sym_BSLASHitem] = ACTIONS(5157), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5155), + [anon_sym_LBRACE] = ACTIONS(5155), + [sym_word] = ACTIONS(5157), + [sym_placeholder] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(5157), + [anon_sym_STAR] = ACTIONS(5157), + [anon_sym_SLASH] = ACTIONS(5157), + [anon_sym_CARET] = ACTIONS(5157), + [anon_sym__] = ACTIONS(5157), + [anon_sym_LT] = ACTIONS(5157), + [anon_sym_GT] = ACTIONS(5157), + [anon_sym_BANG] = ACTIONS(5157), + [anon_sym_PIPE] = ACTIONS(5157), + [anon_sym_COLON] = ACTIONS(5157), + [anon_sym_SQUOTE] = ACTIONS(5157), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), + [anon_sym_DOLLAR] = ACTIONS(5157), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), + [anon_sym_BSLASHbegin] = ACTIONS(5157), + [anon_sym_BSLASHend] = ACTIONS(5157), + [anon_sym_BSLASHusepackage] = ACTIONS(5157), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), + [anon_sym_BSLASHinclude] = ACTIONS(5157), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), + [anon_sym_BSLASHinput] = ACTIONS(5157), + [anon_sym_BSLASHsubfile] = ACTIONS(5157), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), + [anon_sym_BSLASHbibliography] = ACTIONS(5157), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5157), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), + [anon_sym_BSLASHimport] = ACTIONS(5157), + [anon_sym_BSLASHsubimport] = ACTIONS(5157), + [anon_sym_BSLASHinputfrom] = ACTIONS(5157), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), + [anon_sym_BSLASHincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHcaption] = ACTIONS(5157), + [anon_sym_BSLASHcite] = ACTIONS(5157), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCite] = ACTIONS(5157), + [anon_sym_BSLASHnocite] = ACTIONS(5157), + [anon_sym_BSLASHcitet] = ACTIONS(5157), + [anon_sym_BSLASHcitep] = ACTIONS(5157), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteauthor] = ACTIONS(5157), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitetitle] = ACTIONS(5157), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteyear] = ACTIONS(5157), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitedate] = ACTIONS(5157), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteurl] = ACTIONS(5157), + [anon_sym_BSLASHfullcite] = ACTIONS(5157), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), + [anon_sym_BSLASHcitealt] = ACTIONS(5157), + [anon_sym_BSLASHcitealp] = ACTIONS(5157), + [anon_sym_BSLASHcitetext] = ACTIONS(5157), + [anon_sym_BSLASHparencite] = ACTIONS(5157), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHParencite] = ACTIONS(5157), + [anon_sym_BSLASHfootcite] = ACTIONS(5157), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), + [anon_sym_BSLASHtextcite] = ACTIONS(5157), + [anon_sym_BSLASHTextcite] = ACTIONS(5157), + [anon_sym_BSLASHsmartcite] = ACTIONS(5157), + [anon_sym_BSLASHSmartcite] = ACTIONS(5157), + [anon_sym_BSLASHsupercite] = ACTIONS(5157), + [anon_sym_BSLASHautocite] = ACTIONS(5157), + [anon_sym_BSLASHAutocite] = ACTIONS(5157), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHvolcite] = ACTIONS(5157), + [anon_sym_BSLASHVolcite] = ACTIONS(5157), + [anon_sym_BSLASHpvolcite] = ACTIONS(5157), + [anon_sym_BSLASHPvolcite] = ACTIONS(5157), + [anon_sym_BSLASHfvolcite] = ACTIONS(5157), + [anon_sym_BSLASHftvolcite] = ACTIONS(5157), + [anon_sym_BSLASHsvolcite] = ACTIONS(5157), + [anon_sym_BSLASHSvolcite] = ACTIONS(5157), + [anon_sym_BSLASHtvolcite] = ACTIONS(5157), + [anon_sym_BSLASHTvolcite] = ACTIONS(5157), + [anon_sym_BSLASHavolcite] = ACTIONS(5157), + [anon_sym_BSLASHAvolcite] = ACTIONS(5157), + [anon_sym_BSLASHnotecite] = ACTIONS(5157), + [anon_sym_BSLASHNotecite] = ACTIONS(5157), + [anon_sym_BSLASHpnotecite] = ACTIONS(5157), + [anon_sym_BSLASHPnotecite] = ACTIONS(5157), + [anon_sym_BSLASHfnotecite] = ACTIONS(5157), + [anon_sym_BSLASHlabel] = ACTIONS(5157), + [anon_sym_BSLASHref] = ACTIONS(5157), + [anon_sym_BSLASHeqref] = ACTIONS(5157), + [anon_sym_BSLASHvref] = ACTIONS(5157), + [anon_sym_BSLASHVref] = ACTIONS(5157), + [anon_sym_BSLASHautoref] = ACTIONS(5157), + [anon_sym_BSLASHpageref] = ACTIONS(5157), + [anon_sym_BSLASHcref] = ACTIONS(5157), + [anon_sym_BSLASHCref] = ACTIONS(5157), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnameCref] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHlabelcref] = ACTIONS(5157), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCrefrange] = ACTIONS(5157), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnewlabel] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), + [anon_sym_BSLASHdef] = ACTIONS(5157), + [anon_sym_BSLASHlet] = ACTIONS(5157), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), + [anon_sym_BSLASHgls] = ACTIONS(5157), + [anon_sym_BSLASHGls] = ACTIONS(5157), + [anon_sym_BSLASHGLS] = ACTIONS(5157), + [anon_sym_BSLASHglspl] = ACTIONS(5157), + [anon_sym_BSLASHGlspl] = ACTIONS(5157), + [anon_sym_BSLASHGLSpl] = ACTIONS(5157), + [anon_sym_BSLASHglsdisp] = ACTIONS(5157), + [anon_sym_BSLASHglslink] = ACTIONS(5157), + [anon_sym_BSLASHglstext] = ACTIONS(5157), + [anon_sym_BSLASHGlstext] = ACTIONS(5157), + [anon_sym_BSLASHGLStext] = ACTIONS(5157), + [anon_sym_BSLASHglsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), + [anon_sym_BSLASHglsplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSplural] = ACTIONS(5157), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHglsname] = ACTIONS(5157), + [anon_sym_BSLASHGlsname] = ACTIONS(5157), + [anon_sym_BSLASHGLSname] = ACTIONS(5157), + [anon_sym_BSLASHglssymbol] = ACTIONS(5157), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), + [anon_sym_BSLASHglsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), + [anon_sym_BSLASHglsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), + [anon_sym_BSLASHglsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), + [anon_sym_BSLASHglsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), + [anon_sym_BSLASHglsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), + [anon_sym_BSLASHnewacronym] = ACTIONS(5157), + [anon_sym_BSLASHacrshort] = ACTIONS(5157), + [anon_sym_BSLASHAcrshort] = ACTIONS(5157), + [anon_sym_BSLASHACRshort] = ACTIONS(5157), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), + [anon_sym_BSLASHacrlong] = ACTIONS(5157), + [anon_sym_BSLASHAcrlong] = ACTIONS(5157), + [anon_sym_BSLASHACRlong] = ACTIONS(5157), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), + [anon_sym_BSLASHacrfull] = ACTIONS(5157), + [anon_sym_BSLASHAcrfull] = ACTIONS(5157), + [anon_sym_BSLASHACRfull] = ACTIONS(5157), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), + [anon_sym_BSLASHacs] = ACTIONS(5157), + [anon_sym_BSLASHAcs] = ACTIONS(5157), + [anon_sym_BSLASHacsp] = ACTIONS(5157), + [anon_sym_BSLASHAcsp] = ACTIONS(5157), + [anon_sym_BSLASHacl] = ACTIONS(5157), + [anon_sym_BSLASHAcl] = ACTIONS(5157), + [anon_sym_BSLASHaclp] = ACTIONS(5157), + [anon_sym_BSLASHAclp] = ACTIONS(5157), + [anon_sym_BSLASHacf] = ACTIONS(5157), + [anon_sym_BSLASHAcf] = ACTIONS(5157), + [anon_sym_BSLASHacfp] = ACTIONS(5157), + [anon_sym_BSLASHAcfp] = ACTIONS(5157), + [anon_sym_BSLASHac] = ACTIONS(5157), + [anon_sym_BSLASHAc] = ACTIONS(5157), + [anon_sym_BSLASHacp] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), + [anon_sym_BSLASHcolor] = ACTIONS(5157), + [anon_sym_BSLASHcolorbox] = ACTIONS(5157), + [anon_sym_BSLASHtextcolor] = ACTIONS(5157), + [anon_sym_BSLASHpagecolor] = ACTIONS(5157), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), + [anon_sym_BSLASHtext] = ACTIONS(5157), + [anon_sym_BSLASHintertext] = ACTIONS(5157), + [anon_sym_shortintertext] = ACTIONS(5157), + }, + [1239] = { + [sym_command_name] = ACTIONS(4935), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4935), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_RPAREN] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_RBRACK] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_EQ] = ACTIONS(4933), + [anon_sym_BSLASHpart] = ACTIONS(4935), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddpart] = ACTIONS(4935), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4933), + [anon_sym_BSLASHchapter] = ACTIONS(4935), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddchap] = ACTIONS(4935), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsection] = ACTIONS(4935), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHaddsec] = ACTIONS(4935), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubsection] = ACTIONS(4935), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4935), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4933), + [anon_sym_BSLASHparagraph] = ACTIONS(4935), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4933), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4935), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4933), + [anon_sym_BSLASHitem] = ACTIONS(4935), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4933), + [sym_word] = ACTIONS(4935), + [sym_placeholder] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4935), + [anon_sym_DASH] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4935), + [anon_sym_SLASH] = ACTIONS(4935), + [anon_sym_CARET] = ACTIONS(4935), + [anon_sym__] = ACTIONS(4935), + [anon_sym_LT] = ACTIONS(4935), + [anon_sym_GT] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4935), + [anon_sym_PIPE] = ACTIONS(4935), + [anon_sym_COLON] = ACTIONS(4935), + [anon_sym_SQUOTE] = ACTIONS(4935), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4933), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4933), + [anon_sym_DOLLAR] = ACTIONS(4935), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4933), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4933), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4933), + [anon_sym_BSLASHbegin] = ACTIONS(4935), + [anon_sym_BSLASHusepackage] = ACTIONS(4935), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4935), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4935), + [anon_sym_BSLASHinclude] = ACTIONS(4935), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4935), + [anon_sym_BSLASHinput] = ACTIONS(4935), + [anon_sym_BSLASHsubfile] = ACTIONS(4935), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4935), + [anon_sym_BSLASHbibliography] = ACTIONS(4935), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4935), + [anon_sym_BSLASHincludesvg] = ACTIONS(4935), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4935), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4935), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4935), + [anon_sym_BSLASHimport] = ACTIONS(4935), + [anon_sym_BSLASHsubimport] = ACTIONS(4935), + [anon_sym_BSLASHinputfrom] = ACTIONS(4935), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4935), + [anon_sym_BSLASHincludefrom] = ACTIONS(4935), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4935), + [anon_sym_BSLASHcaption] = ACTIONS(4935), + [anon_sym_BSLASHcite] = ACTIONS(4935), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCite] = ACTIONS(4935), + [anon_sym_BSLASHnocite] = ACTIONS(4935), + [anon_sym_BSLASHcitet] = ACTIONS(4935), + [anon_sym_BSLASHcitep] = ACTIONS(4935), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteauthor] = ACTIONS(4935), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4935), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitetitle] = ACTIONS(4935), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteyear] = ACTIONS(4935), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitedate] = ACTIONS(4935), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteurl] = ACTIONS(4935), + [anon_sym_BSLASHfullcite] = ACTIONS(4935), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4935), + [anon_sym_BSLASHcitealt] = ACTIONS(4935), + [anon_sym_BSLASHcitealp] = ACTIONS(4935), + [anon_sym_BSLASHcitetext] = ACTIONS(4935), + [anon_sym_BSLASHparencite] = ACTIONS(4935), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHParencite] = ACTIONS(4935), + [anon_sym_BSLASHfootcite] = ACTIONS(4935), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4935), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4935), + [anon_sym_BSLASHtextcite] = ACTIONS(4935), + [anon_sym_BSLASHTextcite] = ACTIONS(4935), + [anon_sym_BSLASHsmartcite] = ACTIONS(4935), + [anon_sym_BSLASHSmartcite] = ACTIONS(4935), + [anon_sym_BSLASHsupercite] = ACTIONS(4935), + [anon_sym_BSLASHautocite] = ACTIONS(4935), + [anon_sym_BSLASHAutocite] = ACTIONS(4935), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHvolcite] = ACTIONS(4935), + [anon_sym_BSLASHVolcite] = ACTIONS(4935), + [anon_sym_BSLASHpvolcite] = ACTIONS(4935), + [anon_sym_BSLASHPvolcite] = ACTIONS(4935), + [anon_sym_BSLASHfvolcite] = ACTIONS(4935), + [anon_sym_BSLASHftvolcite] = ACTIONS(4935), + [anon_sym_BSLASHsvolcite] = ACTIONS(4935), + [anon_sym_BSLASHSvolcite] = ACTIONS(4935), + [anon_sym_BSLASHtvolcite] = ACTIONS(4935), + [anon_sym_BSLASHTvolcite] = ACTIONS(4935), + [anon_sym_BSLASHavolcite] = ACTIONS(4935), + [anon_sym_BSLASHAvolcite] = ACTIONS(4935), + [anon_sym_BSLASHnotecite] = ACTIONS(4935), + [anon_sym_BSLASHNotecite] = ACTIONS(4935), + [anon_sym_BSLASHpnotecite] = ACTIONS(4935), + [anon_sym_BSLASHPnotecite] = ACTIONS(4935), + [anon_sym_BSLASHfnotecite] = ACTIONS(4935), + [anon_sym_BSLASHlabel] = ACTIONS(4935), + [anon_sym_BSLASHref] = ACTIONS(4935), + [anon_sym_BSLASHeqref] = ACTIONS(4935), + [anon_sym_BSLASHvref] = ACTIONS(4935), + [anon_sym_BSLASHVref] = ACTIONS(4935), + [anon_sym_BSLASHautoref] = ACTIONS(4935), + [anon_sym_BSLASHpageref] = ACTIONS(4935), + [anon_sym_BSLASHcref] = ACTIONS(4935), + [anon_sym_BSLASHCref] = ACTIONS(4935), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4933), + [anon_sym_BSLASHnamecref] = ACTIONS(4935), + [anon_sym_BSLASHnameCref] = ACTIONS(4935), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4935), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4935), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4935), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4935), + [anon_sym_BSLASHlabelcref] = ACTIONS(4935), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4935), + [anon_sym_BSLASHcrefrange] = ACTIONS(4935), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCrefrange] = ACTIONS(4935), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4933), + [anon_sym_BSLASHnewlabel] = ACTIONS(4935), + [anon_sym_BSLASHnewcommand] = ACTIONS(4935), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4935), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4935), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4935), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4933), + [anon_sym_BSLASHdef] = ACTIONS(4935), + [anon_sym_BSLASHlet] = ACTIONS(4935), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4935), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4935), + [anon_sym_BSLASHgls] = ACTIONS(4935), + [anon_sym_BSLASHGls] = ACTIONS(4935), + [anon_sym_BSLASHGLS] = ACTIONS(4935), + [anon_sym_BSLASHglspl] = ACTIONS(4935), + [anon_sym_BSLASHGlspl] = ACTIONS(4935), + [anon_sym_BSLASHGLSpl] = ACTIONS(4935), + [anon_sym_BSLASHglsdisp] = ACTIONS(4935), + [anon_sym_BSLASHglslink] = ACTIONS(4935), + [anon_sym_BSLASHglstext] = ACTIONS(4935), + [anon_sym_BSLASHGlstext] = ACTIONS(4935), + [anon_sym_BSLASHGLStext] = ACTIONS(4935), + [anon_sym_BSLASHglsfirst] = ACTIONS(4935), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4935), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4935), + [anon_sym_BSLASHglsplural] = ACTIONS(4935), + [anon_sym_BSLASHGlsplural] = ACTIONS(4935), + [anon_sym_BSLASHGLSplural] = ACTIONS(4935), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHglsname] = ACTIONS(4935), + [anon_sym_BSLASHGlsname] = ACTIONS(4935), + [anon_sym_BSLASHGLSname] = ACTIONS(4935), + [anon_sym_BSLASHglssymbol] = ACTIONS(4935), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4935), + [anon_sym_BSLASHglsdesc] = ACTIONS(4935), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4935), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4935), + [anon_sym_BSLASHglsuseri] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4935), + [anon_sym_BSLASHglsuserii] = ACTIONS(4935), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4935), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4935), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4935), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4935), + [anon_sym_BSLASHglsuserv] = ACTIONS(4935), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4935), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4935), + [anon_sym_BSLASHglsuservi] = ACTIONS(4935), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4935), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4935), + [anon_sym_BSLASHnewacronym] = ACTIONS(4935), + [anon_sym_BSLASHacrshort] = ACTIONS(4935), + [anon_sym_BSLASHAcrshort] = ACTIONS(4935), + [anon_sym_BSLASHACRshort] = ACTIONS(4935), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4935), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4935), + [anon_sym_BSLASHacrlong] = ACTIONS(4935), + [anon_sym_BSLASHAcrlong] = ACTIONS(4935), + [anon_sym_BSLASHACRlong] = ACTIONS(4935), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4935), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4935), + [anon_sym_BSLASHacrfull] = ACTIONS(4935), + [anon_sym_BSLASHAcrfull] = ACTIONS(4935), + [anon_sym_BSLASHACRfull] = ACTIONS(4935), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4935), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4935), + [anon_sym_BSLASHacs] = ACTIONS(4935), + [anon_sym_BSLASHAcs] = ACTIONS(4935), + [anon_sym_BSLASHacsp] = ACTIONS(4935), + [anon_sym_BSLASHAcsp] = ACTIONS(4935), + [anon_sym_BSLASHacl] = ACTIONS(4935), + [anon_sym_BSLASHAcl] = ACTIONS(4935), + [anon_sym_BSLASHaclp] = ACTIONS(4935), + [anon_sym_BSLASHAclp] = ACTIONS(4935), + [anon_sym_BSLASHacf] = ACTIONS(4935), + [anon_sym_BSLASHAcf] = ACTIONS(4935), + [anon_sym_BSLASHacfp] = ACTIONS(4935), + [anon_sym_BSLASHAcfp] = ACTIONS(4935), + [anon_sym_BSLASHac] = ACTIONS(4935), + [anon_sym_BSLASHAc] = ACTIONS(4935), + [anon_sym_BSLASHacp] = ACTIONS(4935), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4935), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4935), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4935), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4935), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4935), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4935), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4935), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4935), + [anon_sym_BSLASHcolor] = ACTIONS(4935), + [anon_sym_BSLASHcolorbox] = ACTIONS(4935), + [anon_sym_BSLASHtextcolor] = ACTIONS(4935), + [anon_sym_BSLASHpagecolor] = ACTIONS(4935), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4935), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), + [anon_sym_BSLASHtext] = ACTIONS(4935), + [anon_sym_BSLASHintertext] = ACTIONS(4935), + [anon_sym_shortintertext] = ACTIONS(4935), + }, + [1240] = { + [sym_command_name] = ACTIONS(5131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_BSLASHpart] = ACTIONS(5131), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddpart] = ACTIONS(5131), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5129), + [anon_sym_BSLASHchapter] = ACTIONS(5131), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddchap] = ACTIONS(5131), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsection] = ACTIONS(5131), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHaddsec] = ACTIONS(5131), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubsection] = ACTIONS(5131), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5131), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5129), + [anon_sym_BSLASHparagraph] = ACTIONS(5131), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5129), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5131), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5129), + [anon_sym_BSLASHitem] = ACTIONS(5131), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5129), + [sym_word] = ACTIONS(5131), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5129), + [anon_sym_DOLLAR] = ACTIONS(5131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5129), + [anon_sym_BSLASHbegin] = ACTIONS(5131), + [anon_sym_BSLASHend] = ACTIONS(5131), + [anon_sym_BSLASHusepackage] = ACTIONS(5131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5131), + [anon_sym_BSLASHinclude] = ACTIONS(5131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5131), + [anon_sym_BSLASHinput] = ACTIONS(5131), + [anon_sym_BSLASHsubfile] = ACTIONS(5131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5131), + [anon_sym_BSLASHbibliography] = ACTIONS(5131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5131), + [anon_sym_BSLASHincludesvg] = ACTIONS(5131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5131), + [anon_sym_BSLASHimport] = ACTIONS(5131), + [anon_sym_BSLASHsubimport] = ACTIONS(5131), + [anon_sym_BSLASHinputfrom] = ACTIONS(5131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5131), + [anon_sym_BSLASHincludefrom] = ACTIONS(5131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5131), + [anon_sym_BSLASHcaption] = ACTIONS(5131), + [anon_sym_BSLASHcite] = ACTIONS(5131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCite] = ACTIONS(5131), + [anon_sym_BSLASHnocite] = ACTIONS(5131), + [anon_sym_BSLASHcitet] = ACTIONS(5131), + [anon_sym_BSLASHcitep] = ACTIONS(5131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteauthor] = ACTIONS(5131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitetitle] = ACTIONS(5131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteyear] = ACTIONS(5131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitedate] = ACTIONS(5131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteurl] = ACTIONS(5131), + [anon_sym_BSLASHfullcite] = ACTIONS(5131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5131), + [anon_sym_BSLASHcitealt] = ACTIONS(5131), + [anon_sym_BSLASHcitealp] = ACTIONS(5131), + [anon_sym_BSLASHcitetext] = ACTIONS(5131), + [anon_sym_BSLASHparencite] = ACTIONS(5131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHParencite] = ACTIONS(5131), + [anon_sym_BSLASHfootcite] = ACTIONS(5131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5131), + [anon_sym_BSLASHtextcite] = ACTIONS(5131), + [anon_sym_BSLASHTextcite] = ACTIONS(5131), + [anon_sym_BSLASHsmartcite] = ACTIONS(5131), + [anon_sym_BSLASHSmartcite] = ACTIONS(5131), + [anon_sym_BSLASHsupercite] = ACTIONS(5131), + [anon_sym_BSLASHautocite] = ACTIONS(5131), + [anon_sym_BSLASHAutocite] = ACTIONS(5131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHvolcite] = ACTIONS(5131), + [anon_sym_BSLASHVolcite] = ACTIONS(5131), + [anon_sym_BSLASHpvolcite] = ACTIONS(5131), + [anon_sym_BSLASHPvolcite] = ACTIONS(5131), + [anon_sym_BSLASHfvolcite] = ACTIONS(5131), + [anon_sym_BSLASHftvolcite] = ACTIONS(5131), + [anon_sym_BSLASHsvolcite] = ACTIONS(5131), + [anon_sym_BSLASHSvolcite] = ACTIONS(5131), + [anon_sym_BSLASHtvolcite] = ACTIONS(5131), + [anon_sym_BSLASHTvolcite] = ACTIONS(5131), + [anon_sym_BSLASHavolcite] = ACTIONS(5131), + [anon_sym_BSLASHAvolcite] = ACTIONS(5131), + [anon_sym_BSLASHnotecite] = ACTIONS(5131), + [anon_sym_BSLASHNotecite] = ACTIONS(5131), + [anon_sym_BSLASHpnotecite] = ACTIONS(5131), + [anon_sym_BSLASHPnotecite] = ACTIONS(5131), + [anon_sym_BSLASHfnotecite] = ACTIONS(5131), + [anon_sym_BSLASHlabel] = ACTIONS(5131), + [anon_sym_BSLASHref] = ACTIONS(5131), + [anon_sym_BSLASHeqref] = ACTIONS(5131), + [anon_sym_BSLASHvref] = ACTIONS(5131), + [anon_sym_BSLASHVref] = ACTIONS(5131), + [anon_sym_BSLASHautoref] = ACTIONS(5131), + [anon_sym_BSLASHpageref] = ACTIONS(5131), + [anon_sym_BSLASHcref] = ACTIONS(5131), + [anon_sym_BSLASHCref] = ACTIONS(5131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5129), + [anon_sym_BSLASHnamecref] = ACTIONS(5131), + [anon_sym_BSLASHnameCref] = ACTIONS(5131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5131), + [anon_sym_BSLASHlabelcref] = ACTIONS(5131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5131), + [anon_sym_BSLASHcrefrange] = ACTIONS(5131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCrefrange] = ACTIONS(5131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5129), + [anon_sym_BSLASHnewlabel] = ACTIONS(5131), + [anon_sym_BSLASHnewcommand] = ACTIONS(5131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5129), + [anon_sym_BSLASHdef] = ACTIONS(5131), + [anon_sym_BSLASHlet] = ACTIONS(5131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5131), + [anon_sym_BSLASHgls] = ACTIONS(5131), + [anon_sym_BSLASHGls] = ACTIONS(5131), + [anon_sym_BSLASHGLS] = ACTIONS(5131), + [anon_sym_BSLASHglspl] = ACTIONS(5131), + [anon_sym_BSLASHGlspl] = ACTIONS(5131), + [anon_sym_BSLASHGLSpl] = ACTIONS(5131), + [anon_sym_BSLASHglsdisp] = ACTIONS(5131), + [anon_sym_BSLASHglslink] = ACTIONS(5131), + [anon_sym_BSLASHglstext] = ACTIONS(5131), + [anon_sym_BSLASHGlstext] = ACTIONS(5131), + [anon_sym_BSLASHGLStext] = ACTIONS(5131), + [anon_sym_BSLASHglsfirst] = ACTIONS(5131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5131), + [anon_sym_BSLASHglsplural] = ACTIONS(5131), + [anon_sym_BSLASHGlsplural] = ACTIONS(5131), + [anon_sym_BSLASHGLSplural] = ACTIONS(5131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHglsname] = ACTIONS(5131), + [anon_sym_BSLASHGlsname] = ACTIONS(5131), + [anon_sym_BSLASHGLSname] = ACTIONS(5131), + [anon_sym_BSLASHglssymbol] = ACTIONS(5131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5131), + [anon_sym_BSLASHglsdesc] = ACTIONS(5131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5131), + [anon_sym_BSLASHglsuseri] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5131), + [anon_sym_BSLASHglsuserii] = ACTIONS(5131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5131), + [anon_sym_BSLASHglsuserv] = ACTIONS(5131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5131), + [anon_sym_BSLASHglsuservi] = ACTIONS(5131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5131), + [anon_sym_BSLASHnewacronym] = ACTIONS(5131), + [anon_sym_BSLASHacrshort] = ACTIONS(5131), + [anon_sym_BSLASHAcrshort] = ACTIONS(5131), + [anon_sym_BSLASHACRshort] = ACTIONS(5131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5131), + [anon_sym_BSLASHacrlong] = ACTIONS(5131), + [anon_sym_BSLASHAcrlong] = ACTIONS(5131), + [anon_sym_BSLASHACRlong] = ACTIONS(5131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5131), + [anon_sym_BSLASHacrfull] = ACTIONS(5131), + [anon_sym_BSLASHAcrfull] = ACTIONS(5131), + [anon_sym_BSLASHACRfull] = ACTIONS(5131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5131), + [anon_sym_BSLASHacs] = ACTIONS(5131), + [anon_sym_BSLASHAcs] = ACTIONS(5131), + [anon_sym_BSLASHacsp] = ACTIONS(5131), + [anon_sym_BSLASHAcsp] = ACTIONS(5131), + [anon_sym_BSLASHacl] = ACTIONS(5131), + [anon_sym_BSLASHAcl] = ACTIONS(5131), + [anon_sym_BSLASHaclp] = ACTIONS(5131), + [anon_sym_BSLASHAclp] = ACTIONS(5131), + [anon_sym_BSLASHacf] = ACTIONS(5131), + [anon_sym_BSLASHAcf] = ACTIONS(5131), + [anon_sym_BSLASHacfp] = ACTIONS(5131), + [anon_sym_BSLASHAcfp] = ACTIONS(5131), + [anon_sym_BSLASHac] = ACTIONS(5131), + [anon_sym_BSLASHAc] = ACTIONS(5131), + [anon_sym_BSLASHacp] = ACTIONS(5131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5131), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5131), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5131), + [anon_sym_BSLASHcolor] = ACTIONS(5131), + [anon_sym_BSLASHcolorbox] = ACTIONS(5131), + [anon_sym_BSLASHtextcolor] = ACTIONS(5131), + [anon_sym_BSLASHpagecolor] = ACTIONS(5131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5131), + [anon_sym_BSLASHtext] = ACTIONS(5131), + [anon_sym_BSLASHintertext] = ACTIONS(5131), + [anon_sym_shortintertext] = ACTIONS(5131), + }, + [1241] = { + [sym_command_name] = ACTIONS(4943), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4941), + [anon_sym_RPAREN] = ACTIONS(4941), + [anon_sym_LBRACK] = ACTIONS(4941), + [anon_sym_RBRACK] = ACTIONS(4941), + [anon_sym_COMMA] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4941), + [anon_sym_BSLASHpart] = ACTIONS(4943), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddpart] = ACTIONS(4943), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4941), + [anon_sym_BSLASHchapter] = ACTIONS(4943), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddchap] = ACTIONS(4943), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsection] = ACTIONS(4943), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHaddsec] = ACTIONS(4943), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubsection] = ACTIONS(4943), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4943), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4941), + [anon_sym_BSLASHparagraph] = ACTIONS(4943), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4941), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4943), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4941), + [anon_sym_BSLASHitem] = ACTIONS(4943), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4941), + [anon_sym_LBRACE] = ACTIONS(4941), + [sym_word] = ACTIONS(4943), + [sym_placeholder] = ACTIONS(4941), + [anon_sym_PLUS] = ACTIONS(4943), + [anon_sym_DASH] = ACTIONS(4943), + [anon_sym_STAR] = ACTIONS(4943), + [anon_sym_SLASH] = ACTIONS(4943), + [anon_sym_CARET] = ACTIONS(4943), + [anon_sym__] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4943), + [anon_sym_GT] = ACTIONS(4943), + [anon_sym_BANG] = ACTIONS(4943), + [anon_sym_PIPE] = ACTIONS(4943), + [anon_sym_COLON] = ACTIONS(4943), + [anon_sym_SQUOTE] = ACTIONS(4943), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4941), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4941), + [anon_sym_DOLLAR] = ACTIONS(4943), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4941), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4941), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4941), + [anon_sym_BSLASHbegin] = ACTIONS(4943), + [anon_sym_BSLASHusepackage] = ACTIONS(4943), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4943), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4943), + [anon_sym_BSLASHinclude] = ACTIONS(4943), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4943), + [anon_sym_BSLASHinput] = ACTIONS(4943), + [anon_sym_BSLASHsubfile] = ACTIONS(4943), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), + [anon_sym_BSLASHbibliography] = ACTIONS(4943), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4943), + [anon_sym_BSLASHincludesvg] = ACTIONS(4943), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4943), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4943), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4943), + [anon_sym_BSLASHimport] = ACTIONS(4943), + [anon_sym_BSLASHsubimport] = ACTIONS(4943), + [anon_sym_BSLASHinputfrom] = ACTIONS(4943), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4943), + [anon_sym_BSLASHincludefrom] = ACTIONS(4943), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4943), + [anon_sym_BSLASHcaption] = ACTIONS(4943), + [anon_sym_BSLASHcite] = ACTIONS(4943), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCite] = ACTIONS(4943), + [anon_sym_BSLASHnocite] = ACTIONS(4943), + [anon_sym_BSLASHcitet] = ACTIONS(4943), + [anon_sym_BSLASHcitep] = ACTIONS(4943), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteauthor] = ACTIONS(4943), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4943), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitetitle] = ACTIONS(4943), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteyear] = ACTIONS(4943), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitedate] = ACTIONS(4943), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteurl] = ACTIONS(4943), + [anon_sym_BSLASHfullcite] = ACTIONS(4943), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4943), + [anon_sym_BSLASHcitealt] = ACTIONS(4943), + [anon_sym_BSLASHcitealp] = ACTIONS(4943), + [anon_sym_BSLASHcitetext] = ACTIONS(4943), + [anon_sym_BSLASHparencite] = ACTIONS(4943), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHParencite] = ACTIONS(4943), + [anon_sym_BSLASHfootcite] = ACTIONS(4943), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4943), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4943), + [anon_sym_BSLASHtextcite] = ACTIONS(4943), + [anon_sym_BSLASHTextcite] = ACTIONS(4943), + [anon_sym_BSLASHsmartcite] = ACTIONS(4943), + [anon_sym_BSLASHSmartcite] = ACTIONS(4943), + [anon_sym_BSLASHsupercite] = ACTIONS(4943), + [anon_sym_BSLASHautocite] = ACTIONS(4943), + [anon_sym_BSLASHAutocite] = ACTIONS(4943), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHvolcite] = ACTIONS(4943), + [anon_sym_BSLASHVolcite] = ACTIONS(4943), + [anon_sym_BSLASHpvolcite] = ACTIONS(4943), + [anon_sym_BSLASHPvolcite] = ACTIONS(4943), + [anon_sym_BSLASHfvolcite] = ACTIONS(4943), + [anon_sym_BSLASHftvolcite] = ACTIONS(4943), + [anon_sym_BSLASHsvolcite] = ACTIONS(4943), + [anon_sym_BSLASHSvolcite] = ACTIONS(4943), + [anon_sym_BSLASHtvolcite] = ACTIONS(4943), + [anon_sym_BSLASHTvolcite] = ACTIONS(4943), + [anon_sym_BSLASHavolcite] = ACTIONS(4943), + [anon_sym_BSLASHAvolcite] = ACTIONS(4943), + [anon_sym_BSLASHnotecite] = ACTIONS(4943), + [anon_sym_BSLASHNotecite] = ACTIONS(4943), + [anon_sym_BSLASHpnotecite] = ACTIONS(4943), + [anon_sym_BSLASHPnotecite] = ACTIONS(4943), + [anon_sym_BSLASHfnotecite] = ACTIONS(4943), + [anon_sym_BSLASHlabel] = ACTIONS(4943), + [anon_sym_BSLASHref] = ACTIONS(4943), + [anon_sym_BSLASHeqref] = ACTIONS(4943), + [anon_sym_BSLASHvref] = ACTIONS(4943), + [anon_sym_BSLASHVref] = ACTIONS(4943), + [anon_sym_BSLASHautoref] = ACTIONS(4943), + [anon_sym_BSLASHpageref] = ACTIONS(4943), + [anon_sym_BSLASHcref] = ACTIONS(4943), + [anon_sym_BSLASHCref] = ACTIONS(4943), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4941), + [anon_sym_BSLASHnamecref] = ACTIONS(4943), + [anon_sym_BSLASHnameCref] = ACTIONS(4943), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4943), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4943), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4943), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4943), + [anon_sym_BSLASHlabelcref] = ACTIONS(4943), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4943), + [anon_sym_BSLASHcrefrange] = ACTIONS(4943), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCrefrange] = ACTIONS(4943), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4941), + [anon_sym_BSLASHnewlabel] = ACTIONS(4943), + [anon_sym_BSLASHnewcommand] = ACTIONS(4943), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4943), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4943), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4943), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4941), + [anon_sym_BSLASHdef] = ACTIONS(4943), + [anon_sym_BSLASHlet] = ACTIONS(4943), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4943), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4943), + [anon_sym_BSLASHgls] = ACTIONS(4943), + [anon_sym_BSLASHGls] = ACTIONS(4943), + [anon_sym_BSLASHGLS] = ACTIONS(4943), + [anon_sym_BSLASHglspl] = ACTIONS(4943), + [anon_sym_BSLASHGlspl] = ACTIONS(4943), + [anon_sym_BSLASHGLSpl] = ACTIONS(4943), + [anon_sym_BSLASHglsdisp] = ACTIONS(4943), + [anon_sym_BSLASHglslink] = ACTIONS(4943), + [anon_sym_BSLASHglstext] = ACTIONS(4943), + [anon_sym_BSLASHGlstext] = ACTIONS(4943), + [anon_sym_BSLASHGLStext] = ACTIONS(4943), + [anon_sym_BSLASHglsfirst] = ACTIONS(4943), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4943), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4943), + [anon_sym_BSLASHglsplural] = ACTIONS(4943), + [anon_sym_BSLASHGlsplural] = ACTIONS(4943), + [anon_sym_BSLASHGLSplural] = ACTIONS(4943), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHglsname] = ACTIONS(4943), + [anon_sym_BSLASHGlsname] = ACTIONS(4943), + [anon_sym_BSLASHGLSname] = ACTIONS(4943), + [anon_sym_BSLASHglssymbol] = ACTIONS(4943), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4943), + [anon_sym_BSLASHglsdesc] = ACTIONS(4943), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4943), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4943), + [anon_sym_BSLASHglsuseri] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4943), + [anon_sym_BSLASHglsuserii] = ACTIONS(4943), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4943), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4943), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4943), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4943), + [anon_sym_BSLASHglsuserv] = ACTIONS(4943), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4943), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4943), + [anon_sym_BSLASHglsuservi] = ACTIONS(4943), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4943), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4943), + [anon_sym_BSLASHnewacronym] = ACTIONS(4943), + [anon_sym_BSLASHacrshort] = ACTIONS(4943), + [anon_sym_BSLASHAcrshort] = ACTIONS(4943), + [anon_sym_BSLASHACRshort] = ACTIONS(4943), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4943), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4943), + [anon_sym_BSLASHacrlong] = ACTIONS(4943), + [anon_sym_BSLASHAcrlong] = ACTIONS(4943), + [anon_sym_BSLASHACRlong] = ACTIONS(4943), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4943), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4943), + [anon_sym_BSLASHacrfull] = ACTIONS(4943), + [anon_sym_BSLASHAcrfull] = ACTIONS(4943), + [anon_sym_BSLASHACRfull] = ACTIONS(4943), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4943), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4943), + [anon_sym_BSLASHacs] = ACTIONS(4943), + [anon_sym_BSLASHAcs] = ACTIONS(4943), + [anon_sym_BSLASHacsp] = ACTIONS(4943), + [anon_sym_BSLASHAcsp] = ACTIONS(4943), + [anon_sym_BSLASHacl] = ACTIONS(4943), + [anon_sym_BSLASHAcl] = ACTIONS(4943), + [anon_sym_BSLASHaclp] = ACTIONS(4943), + [anon_sym_BSLASHAclp] = ACTIONS(4943), + [anon_sym_BSLASHacf] = ACTIONS(4943), + [anon_sym_BSLASHAcf] = ACTIONS(4943), + [anon_sym_BSLASHacfp] = ACTIONS(4943), + [anon_sym_BSLASHAcfp] = ACTIONS(4943), + [anon_sym_BSLASHac] = ACTIONS(4943), + [anon_sym_BSLASHAc] = ACTIONS(4943), + [anon_sym_BSLASHacp] = ACTIONS(4943), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4943), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4943), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4943), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4943), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4943), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4943), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4943), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4943), + [anon_sym_BSLASHcolor] = ACTIONS(4943), + [anon_sym_BSLASHcolorbox] = ACTIONS(4943), + [anon_sym_BSLASHtextcolor] = ACTIONS(4943), + [anon_sym_BSLASHpagecolor] = ACTIONS(4943), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4943), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4943), + [anon_sym_BSLASHtext] = ACTIONS(4943), + [anon_sym_BSLASHintertext] = ACTIONS(4943), + [anon_sym_shortintertext] = ACTIONS(4943), + }, + [1242] = { + [sym_command_name] = ACTIONS(4947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4947), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_RPAREN] = ACTIONS(4945), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_RBRACK] = ACTIONS(4945), + [anon_sym_COMMA] = ACTIONS(4945), + [anon_sym_EQ] = ACTIONS(4945), + [anon_sym_BSLASHpart] = ACTIONS(4947), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddpart] = ACTIONS(4947), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4945), + [anon_sym_BSLASHchapter] = ACTIONS(4947), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddchap] = ACTIONS(4947), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsection] = ACTIONS(4947), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHaddsec] = ACTIONS(4947), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubsection] = ACTIONS(4947), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4947), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4945), + [anon_sym_BSLASHparagraph] = ACTIONS(4947), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4945), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4947), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4945), + [anon_sym_BSLASHitem] = ACTIONS(4947), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4945), + [anon_sym_LBRACE] = ACTIONS(4945), + [sym_word] = ACTIONS(4947), + [sym_placeholder] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(4947), + [anon_sym_DASH] = ACTIONS(4947), + [anon_sym_STAR] = ACTIONS(4947), + [anon_sym_SLASH] = ACTIONS(4947), + [anon_sym_CARET] = ACTIONS(4947), + [anon_sym__] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_BANG] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_COLON] = ACTIONS(4947), + [anon_sym_SQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4945), + [anon_sym_DOLLAR] = ACTIONS(4947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4945), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4945), + [anon_sym_BSLASHbegin] = ACTIONS(4947), + [anon_sym_BSLASHusepackage] = ACTIONS(4947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4947), + [anon_sym_BSLASHinclude] = ACTIONS(4947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4947), + [anon_sym_BSLASHinput] = ACTIONS(4947), + [anon_sym_BSLASHsubfile] = ACTIONS(4947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4947), + [anon_sym_BSLASHbibliography] = ACTIONS(4947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4947), + [anon_sym_BSLASHincludesvg] = ACTIONS(4947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4947), + [anon_sym_BSLASHimport] = ACTIONS(4947), + [anon_sym_BSLASHsubimport] = ACTIONS(4947), + [anon_sym_BSLASHinputfrom] = ACTIONS(4947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4947), + [anon_sym_BSLASHincludefrom] = ACTIONS(4947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4947), + [anon_sym_BSLASHcaption] = ACTIONS(4947), + [anon_sym_BSLASHcite] = ACTIONS(4947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCite] = ACTIONS(4947), + [anon_sym_BSLASHnocite] = ACTIONS(4947), + [anon_sym_BSLASHcitet] = ACTIONS(4947), + [anon_sym_BSLASHcitep] = ACTIONS(4947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteauthor] = ACTIONS(4947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitetitle] = ACTIONS(4947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteyear] = ACTIONS(4947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitedate] = ACTIONS(4947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteurl] = ACTIONS(4947), + [anon_sym_BSLASHfullcite] = ACTIONS(4947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4947), + [anon_sym_BSLASHcitealt] = ACTIONS(4947), + [anon_sym_BSLASHcitealp] = ACTIONS(4947), + [anon_sym_BSLASHcitetext] = ACTIONS(4947), + [anon_sym_BSLASHparencite] = ACTIONS(4947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHParencite] = ACTIONS(4947), + [anon_sym_BSLASHfootcite] = ACTIONS(4947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4947), + [anon_sym_BSLASHtextcite] = ACTIONS(4947), + [anon_sym_BSLASHTextcite] = ACTIONS(4947), + [anon_sym_BSLASHsmartcite] = ACTIONS(4947), + [anon_sym_BSLASHSmartcite] = ACTIONS(4947), + [anon_sym_BSLASHsupercite] = ACTIONS(4947), + [anon_sym_BSLASHautocite] = ACTIONS(4947), + [anon_sym_BSLASHAutocite] = ACTIONS(4947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHvolcite] = ACTIONS(4947), + [anon_sym_BSLASHVolcite] = ACTIONS(4947), + [anon_sym_BSLASHpvolcite] = ACTIONS(4947), + [anon_sym_BSLASHPvolcite] = ACTIONS(4947), + [anon_sym_BSLASHfvolcite] = ACTIONS(4947), + [anon_sym_BSLASHftvolcite] = ACTIONS(4947), + [anon_sym_BSLASHsvolcite] = ACTIONS(4947), + [anon_sym_BSLASHSvolcite] = ACTIONS(4947), + [anon_sym_BSLASHtvolcite] = ACTIONS(4947), + [anon_sym_BSLASHTvolcite] = ACTIONS(4947), + [anon_sym_BSLASHavolcite] = ACTIONS(4947), + [anon_sym_BSLASHAvolcite] = ACTIONS(4947), + [anon_sym_BSLASHnotecite] = ACTIONS(4947), + [anon_sym_BSLASHNotecite] = ACTIONS(4947), + [anon_sym_BSLASHpnotecite] = ACTIONS(4947), + [anon_sym_BSLASHPnotecite] = ACTIONS(4947), + [anon_sym_BSLASHfnotecite] = ACTIONS(4947), + [anon_sym_BSLASHlabel] = ACTIONS(4947), + [anon_sym_BSLASHref] = ACTIONS(4947), + [anon_sym_BSLASHeqref] = ACTIONS(4947), + [anon_sym_BSLASHvref] = ACTIONS(4947), + [anon_sym_BSLASHVref] = ACTIONS(4947), + [anon_sym_BSLASHautoref] = ACTIONS(4947), + [anon_sym_BSLASHpageref] = ACTIONS(4947), + [anon_sym_BSLASHcref] = ACTIONS(4947), + [anon_sym_BSLASHCref] = ACTIONS(4947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4945), + [anon_sym_BSLASHnamecref] = ACTIONS(4947), + [anon_sym_BSLASHnameCref] = ACTIONS(4947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4947), + [anon_sym_BSLASHlabelcref] = ACTIONS(4947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4947), + [anon_sym_BSLASHcrefrange] = ACTIONS(4947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCrefrange] = ACTIONS(4947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4945), + [anon_sym_BSLASHnewlabel] = ACTIONS(4947), + [anon_sym_BSLASHnewcommand] = ACTIONS(4947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4945), + [anon_sym_BSLASHdef] = ACTIONS(4947), + [anon_sym_BSLASHlet] = ACTIONS(4947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), + [anon_sym_BSLASHgls] = ACTIONS(4947), + [anon_sym_BSLASHGls] = ACTIONS(4947), + [anon_sym_BSLASHGLS] = ACTIONS(4947), + [anon_sym_BSLASHglspl] = ACTIONS(4947), + [anon_sym_BSLASHGlspl] = ACTIONS(4947), + [anon_sym_BSLASHGLSpl] = ACTIONS(4947), + [anon_sym_BSLASHglsdisp] = ACTIONS(4947), + [anon_sym_BSLASHglslink] = ACTIONS(4947), + [anon_sym_BSLASHglstext] = ACTIONS(4947), + [anon_sym_BSLASHGlstext] = ACTIONS(4947), + [anon_sym_BSLASHGLStext] = ACTIONS(4947), + [anon_sym_BSLASHglsfirst] = ACTIONS(4947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4947), + [anon_sym_BSLASHglsplural] = ACTIONS(4947), + [anon_sym_BSLASHGlsplural] = ACTIONS(4947), + [anon_sym_BSLASHGLSplural] = ACTIONS(4947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHglsname] = ACTIONS(4947), + [anon_sym_BSLASHGlsname] = ACTIONS(4947), + [anon_sym_BSLASHGLSname] = ACTIONS(4947), + [anon_sym_BSLASHglssymbol] = ACTIONS(4947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4947), + [anon_sym_BSLASHglsdesc] = ACTIONS(4947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4947), + [anon_sym_BSLASHglsuseri] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4947), + [anon_sym_BSLASHglsuserii] = ACTIONS(4947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4947), + [anon_sym_BSLASHglsuserv] = ACTIONS(4947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4947), + [anon_sym_BSLASHglsuservi] = ACTIONS(4947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4947), + [anon_sym_BSLASHnewacronym] = ACTIONS(4947), + [anon_sym_BSLASHacrshort] = ACTIONS(4947), + [anon_sym_BSLASHAcrshort] = ACTIONS(4947), + [anon_sym_BSLASHACRshort] = ACTIONS(4947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4947), + [anon_sym_BSLASHacrlong] = ACTIONS(4947), + [anon_sym_BSLASHAcrlong] = ACTIONS(4947), + [anon_sym_BSLASHACRlong] = ACTIONS(4947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4947), + [anon_sym_BSLASHacrfull] = ACTIONS(4947), + [anon_sym_BSLASHAcrfull] = ACTIONS(4947), + [anon_sym_BSLASHACRfull] = ACTIONS(4947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4947), + [anon_sym_BSLASHacs] = ACTIONS(4947), + [anon_sym_BSLASHAcs] = ACTIONS(4947), + [anon_sym_BSLASHacsp] = ACTIONS(4947), + [anon_sym_BSLASHAcsp] = ACTIONS(4947), + [anon_sym_BSLASHacl] = ACTIONS(4947), + [anon_sym_BSLASHAcl] = ACTIONS(4947), + [anon_sym_BSLASHaclp] = ACTIONS(4947), + [anon_sym_BSLASHAclp] = ACTIONS(4947), + [anon_sym_BSLASHacf] = ACTIONS(4947), + [anon_sym_BSLASHAcf] = ACTIONS(4947), + [anon_sym_BSLASHacfp] = ACTIONS(4947), + [anon_sym_BSLASHAcfp] = ACTIONS(4947), + [anon_sym_BSLASHac] = ACTIONS(4947), + [anon_sym_BSLASHAc] = ACTIONS(4947), + [anon_sym_BSLASHacp] = ACTIONS(4947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4947), + [anon_sym_BSLASHcolor] = ACTIONS(4947), + [anon_sym_BSLASHcolorbox] = ACTIONS(4947), + [anon_sym_BSLASHtextcolor] = ACTIONS(4947), + [anon_sym_BSLASHpagecolor] = ACTIONS(4947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4947), + [anon_sym_BSLASHtext] = ACTIONS(4947), + [anon_sym_BSLASHintertext] = ACTIONS(4947), + [anon_sym_shortintertext] = ACTIONS(4947), + }, + [1243] = { + [sym_command_name] = ACTIONS(4951), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [anon_sym_RBRACK] = ACTIONS(4949), + [anon_sym_COMMA] = ACTIONS(4949), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_BSLASHpart] = ACTIONS(4951), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddpart] = ACTIONS(4951), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4949), + [anon_sym_BSLASHchapter] = ACTIONS(4951), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddchap] = ACTIONS(4951), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsection] = ACTIONS(4951), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHaddsec] = ACTIONS(4951), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubsection] = ACTIONS(4951), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4951), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4949), + [anon_sym_BSLASHparagraph] = ACTIONS(4951), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4949), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4951), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4949), + [anon_sym_BSLASHitem] = ACTIONS(4951), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4949), + [sym_word] = ACTIONS(4951), + [sym_placeholder] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_STAR] = ACTIONS(4951), + [anon_sym_SLASH] = ACTIONS(4951), + [anon_sym_CARET] = ACTIONS(4951), + [anon_sym__] = ACTIONS(4951), + [anon_sym_LT] = ACTIONS(4951), + [anon_sym_GT] = ACTIONS(4951), + [anon_sym_BANG] = ACTIONS(4951), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_COLON] = ACTIONS(4951), + [anon_sym_SQUOTE] = ACTIONS(4951), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4949), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4949), + [anon_sym_DOLLAR] = ACTIONS(4951), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4949), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4949), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4949), + [anon_sym_BSLASHbegin] = ACTIONS(4951), + [anon_sym_BSLASHusepackage] = ACTIONS(4951), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4951), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4951), + [anon_sym_BSLASHinclude] = ACTIONS(4951), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4951), + [anon_sym_BSLASHinput] = ACTIONS(4951), + [anon_sym_BSLASHsubfile] = ACTIONS(4951), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4951), + [anon_sym_BSLASHbibliography] = ACTIONS(4951), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4951), + [anon_sym_BSLASHincludesvg] = ACTIONS(4951), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4951), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4951), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4951), + [anon_sym_BSLASHimport] = ACTIONS(4951), + [anon_sym_BSLASHsubimport] = ACTIONS(4951), + [anon_sym_BSLASHinputfrom] = ACTIONS(4951), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4951), + [anon_sym_BSLASHincludefrom] = ACTIONS(4951), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4951), + [anon_sym_BSLASHcaption] = ACTIONS(4951), + [anon_sym_BSLASHcite] = ACTIONS(4951), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCite] = ACTIONS(4951), + [anon_sym_BSLASHnocite] = ACTIONS(4951), + [anon_sym_BSLASHcitet] = ACTIONS(4951), + [anon_sym_BSLASHcitep] = ACTIONS(4951), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteauthor] = ACTIONS(4951), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4951), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitetitle] = ACTIONS(4951), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteyear] = ACTIONS(4951), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitedate] = ACTIONS(4951), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteurl] = ACTIONS(4951), + [anon_sym_BSLASHfullcite] = ACTIONS(4951), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4951), + [anon_sym_BSLASHcitealt] = ACTIONS(4951), + [anon_sym_BSLASHcitealp] = ACTIONS(4951), + [anon_sym_BSLASHcitetext] = ACTIONS(4951), + [anon_sym_BSLASHparencite] = ACTIONS(4951), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHParencite] = ACTIONS(4951), + [anon_sym_BSLASHfootcite] = ACTIONS(4951), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4951), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4951), + [anon_sym_BSLASHtextcite] = ACTIONS(4951), + [anon_sym_BSLASHTextcite] = ACTIONS(4951), + [anon_sym_BSLASHsmartcite] = ACTIONS(4951), + [anon_sym_BSLASHSmartcite] = ACTIONS(4951), + [anon_sym_BSLASHsupercite] = ACTIONS(4951), + [anon_sym_BSLASHautocite] = ACTIONS(4951), + [anon_sym_BSLASHAutocite] = ACTIONS(4951), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHvolcite] = ACTIONS(4951), + [anon_sym_BSLASHVolcite] = ACTIONS(4951), + [anon_sym_BSLASHpvolcite] = ACTIONS(4951), + [anon_sym_BSLASHPvolcite] = ACTIONS(4951), + [anon_sym_BSLASHfvolcite] = ACTIONS(4951), + [anon_sym_BSLASHftvolcite] = ACTIONS(4951), + [anon_sym_BSLASHsvolcite] = ACTIONS(4951), + [anon_sym_BSLASHSvolcite] = ACTIONS(4951), + [anon_sym_BSLASHtvolcite] = ACTIONS(4951), + [anon_sym_BSLASHTvolcite] = ACTIONS(4951), + [anon_sym_BSLASHavolcite] = ACTIONS(4951), + [anon_sym_BSLASHAvolcite] = ACTIONS(4951), + [anon_sym_BSLASHnotecite] = ACTIONS(4951), + [anon_sym_BSLASHNotecite] = ACTIONS(4951), + [anon_sym_BSLASHpnotecite] = ACTIONS(4951), + [anon_sym_BSLASHPnotecite] = ACTIONS(4951), + [anon_sym_BSLASHfnotecite] = ACTIONS(4951), + [anon_sym_BSLASHlabel] = ACTIONS(4951), + [anon_sym_BSLASHref] = ACTIONS(4951), + [anon_sym_BSLASHeqref] = ACTIONS(4951), + [anon_sym_BSLASHvref] = ACTIONS(4951), + [anon_sym_BSLASHVref] = ACTIONS(4951), + [anon_sym_BSLASHautoref] = ACTIONS(4951), + [anon_sym_BSLASHpageref] = ACTIONS(4951), + [anon_sym_BSLASHcref] = ACTIONS(4951), + [anon_sym_BSLASHCref] = ACTIONS(4951), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4949), + [anon_sym_BSLASHnamecref] = ACTIONS(4951), + [anon_sym_BSLASHnameCref] = ACTIONS(4951), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4951), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4951), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4951), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4951), + [anon_sym_BSLASHlabelcref] = ACTIONS(4951), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4951), + [anon_sym_BSLASHcrefrange] = ACTIONS(4951), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCrefrange] = ACTIONS(4951), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4949), + [anon_sym_BSLASHnewlabel] = ACTIONS(4951), + [anon_sym_BSLASHnewcommand] = ACTIONS(4951), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4951), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4951), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4951), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4949), + [anon_sym_BSLASHdef] = ACTIONS(4951), + [anon_sym_BSLASHlet] = ACTIONS(4951), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4951), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4951), + [anon_sym_BSLASHgls] = ACTIONS(4951), + [anon_sym_BSLASHGls] = ACTIONS(4951), + [anon_sym_BSLASHGLS] = ACTIONS(4951), + [anon_sym_BSLASHglspl] = ACTIONS(4951), + [anon_sym_BSLASHGlspl] = ACTIONS(4951), + [anon_sym_BSLASHGLSpl] = ACTIONS(4951), + [anon_sym_BSLASHglsdisp] = ACTIONS(4951), + [anon_sym_BSLASHglslink] = ACTIONS(4951), + [anon_sym_BSLASHglstext] = ACTIONS(4951), + [anon_sym_BSLASHGlstext] = ACTIONS(4951), + [anon_sym_BSLASHGLStext] = ACTIONS(4951), + [anon_sym_BSLASHglsfirst] = ACTIONS(4951), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4951), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4951), + [anon_sym_BSLASHglsplural] = ACTIONS(4951), + [anon_sym_BSLASHGlsplural] = ACTIONS(4951), + [anon_sym_BSLASHGLSplural] = ACTIONS(4951), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHglsname] = ACTIONS(4951), + [anon_sym_BSLASHGlsname] = ACTIONS(4951), + [anon_sym_BSLASHGLSname] = ACTIONS(4951), + [anon_sym_BSLASHglssymbol] = ACTIONS(4951), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4951), + [anon_sym_BSLASHglsdesc] = ACTIONS(4951), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4951), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4951), + [anon_sym_BSLASHglsuseri] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4951), + [anon_sym_BSLASHglsuserii] = ACTIONS(4951), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4951), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4951), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4951), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4951), + [anon_sym_BSLASHglsuserv] = ACTIONS(4951), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4951), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4951), + [anon_sym_BSLASHglsuservi] = ACTIONS(4951), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4951), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4951), + [anon_sym_BSLASHnewacronym] = ACTIONS(4951), + [anon_sym_BSLASHacrshort] = ACTIONS(4951), + [anon_sym_BSLASHAcrshort] = ACTIONS(4951), + [anon_sym_BSLASHACRshort] = ACTIONS(4951), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4951), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4951), + [anon_sym_BSLASHacrlong] = ACTIONS(4951), + [anon_sym_BSLASHAcrlong] = ACTIONS(4951), + [anon_sym_BSLASHACRlong] = ACTIONS(4951), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4951), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4951), + [anon_sym_BSLASHacrfull] = ACTIONS(4951), + [anon_sym_BSLASHAcrfull] = ACTIONS(4951), + [anon_sym_BSLASHACRfull] = ACTIONS(4951), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4951), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4951), + [anon_sym_BSLASHacs] = ACTIONS(4951), + [anon_sym_BSLASHAcs] = ACTIONS(4951), + [anon_sym_BSLASHacsp] = ACTIONS(4951), + [anon_sym_BSLASHAcsp] = ACTIONS(4951), + [anon_sym_BSLASHacl] = ACTIONS(4951), + [anon_sym_BSLASHAcl] = ACTIONS(4951), + [anon_sym_BSLASHaclp] = ACTIONS(4951), + [anon_sym_BSLASHAclp] = ACTIONS(4951), + [anon_sym_BSLASHacf] = ACTIONS(4951), + [anon_sym_BSLASHAcf] = ACTIONS(4951), + [anon_sym_BSLASHacfp] = ACTIONS(4951), + [anon_sym_BSLASHAcfp] = ACTIONS(4951), + [anon_sym_BSLASHac] = ACTIONS(4951), + [anon_sym_BSLASHAc] = ACTIONS(4951), + [anon_sym_BSLASHacp] = ACTIONS(4951), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4951), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4951), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4951), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4951), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4951), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4951), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4951), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4951), + [anon_sym_BSLASHcolor] = ACTIONS(4951), + [anon_sym_BSLASHcolorbox] = ACTIONS(4951), + [anon_sym_BSLASHtextcolor] = ACTIONS(4951), + [anon_sym_BSLASHpagecolor] = ACTIONS(4951), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4951), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4951), + [anon_sym_BSLASHtext] = ACTIONS(4951), + [anon_sym_BSLASHintertext] = ACTIONS(4951), + [anon_sym_shortintertext] = ACTIONS(4951), + }, + [1244] = { + [sym_command_name] = ACTIONS(4955), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_EQ] = ACTIONS(4953), + [anon_sym_BSLASHpart] = ACTIONS(4955), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddpart] = ACTIONS(4955), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4953), + [anon_sym_BSLASHchapter] = ACTIONS(4955), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddchap] = ACTIONS(4955), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsection] = ACTIONS(4955), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHaddsec] = ACTIONS(4955), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubsection] = ACTIONS(4955), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4955), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4953), + [anon_sym_BSLASHparagraph] = ACTIONS(4955), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4953), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4955), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4953), + [anon_sym_BSLASHitem] = ACTIONS(4955), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4953), + [sym_word] = ACTIONS(4955), + [sym_placeholder] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4955), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), + [anon_sym__] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(4955), + [anon_sym_SQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), + [anon_sym_DOLLAR] = ACTIONS(4955), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), + [anon_sym_BSLASH_RBRACE] = ACTIONS(4953), + [anon_sym_BSLASHbegin] = ACTIONS(4955), + [anon_sym_BSLASHusepackage] = ACTIONS(4955), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), + [anon_sym_BSLASHinclude] = ACTIONS(4955), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), + [anon_sym_BSLASHinput] = ACTIONS(4955), + [anon_sym_BSLASHsubfile] = ACTIONS(4955), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), + [anon_sym_BSLASHbibliography] = ACTIONS(4955), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), + [anon_sym_BSLASHincludesvg] = ACTIONS(4955), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), + [anon_sym_BSLASHimport] = ACTIONS(4955), + [anon_sym_BSLASHsubimport] = ACTIONS(4955), + [anon_sym_BSLASHinputfrom] = ACTIONS(4955), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), + [anon_sym_BSLASHincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHcaption] = ACTIONS(4955), + [anon_sym_BSLASHcite] = ACTIONS(4955), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCite] = ACTIONS(4955), + [anon_sym_BSLASHnocite] = ACTIONS(4955), + [anon_sym_BSLASHcitet] = ACTIONS(4955), + [anon_sym_BSLASHcitep] = ACTIONS(4955), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteauthor] = ACTIONS(4955), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitetitle] = ACTIONS(4955), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteyear] = ACTIONS(4955), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitedate] = ACTIONS(4955), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteurl] = ACTIONS(4955), + [anon_sym_BSLASHfullcite] = ACTIONS(4955), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), + [anon_sym_BSLASHcitealt] = ACTIONS(4955), + [anon_sym_BSLASHcitealp] = ACTIONS(4955), + [anon_sym_BSLASHcitetext] = ACTIONS(4955), + [anon_sym_BSLASHparencite] = ACTIONS(4955), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHParencite] = ACTIONS(4955), + [anon_sym_BSLASHfootcite] = ACTIONS(4955), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), + [anon_sym_BSLASHtextcite] = ACTIONS(4955), + [anon_sym_BSLASHTextcite] = ACTIONS(4955), + [anon_sym_BSLASHsmartcite] = ACTIONS(4955), + [anon_sym_BSLASHSmartcite] = ACTIONS(4955), + [anon_sym_BSLASHsupercite] = ACTIONS(4955), + [anon_sym_BSLASHautocite] = ACTIONS(4955), + [anon_sym_BSLASHAutocite] = ACTIONS(4955), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHvolcite] = ACTIONS(4955), + [anon_sym_BSLASHVolcite] = ACTIONS(4955), + [anon_sym_BSLASHpvolcite] = ACTIONS(4955), + [anon_sym_BSLASHPvolcite] = ACTIONS(4955), + [anon_sym_BSLASHfvolcite] = ACTIONS(4955), + [anon_sym_BSLASHftvolcite] = ACTIONS(4955), + [anon_sym_BSLASHsvolcite] = ACTIONS(4955), + [anon_sym_BSLASHSvolcite] = ACTIONS(4955), + [anon_sym_BSLASHtvolcite] = ACTIONS(4955), + [anon_sym_BSLASHTvolcite] = ACTIONS(4955), + [anon_sym_BSLASHavolcite] = ACTIONS(4955), + [anon_sym_BSLASHAvolcite] = ACTIONS(4955), + [anon_sym_BSLASHnotecite] = ACTIONS(4955), + [anon_sym_BSLASHNotecite] = ACTIONS(4955), + [anon_sym_BSLASHpnotecite] = ACTIONS(4955), + [anon_sym_BSLASHPnotecite] = ACTIONS(4955), + [anon_sym_BSLASHfnotecite] = ACTIONS(4955), + [anon_sym_BSLASHlabel] = ACTIONS(4955), + [anon_sym_BSLASHref] = ACTIONS(4955), + [anon_sym_BSLASHeqref] = ACTIONS(4955), + [anon_sym_BSLASHvref] = ACTIONS(4955), + [anon_sym_BSLASHVref] = ACTIONS(4955), + [anon_sym_BSLASHautoref] = ACTIONS(4955), + [anon_sym_BSLASHpageref] = ACTIONS(4955), + [anon_sym_BSLASHcref] = ACTIONS(4955), + [anon_sym_BSLASHCref] = ACTIONS(4955), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnameCref] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHlabelcref] = ACTIONS(4955), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCrefrange] = ACTIONS(4955), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnewlabel] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), + [anon_sym_BSLASHdef] = ACTIONS(4955), + [anon_sym_BSLASHlet] = ACTIONS(4955), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), + [anon_sym_BSLASHgls] = ACTIONS(4955), + [anon_sym_BSLASHGls] = ACTIONS(4955), + [anon_sym_BSLASHGLS] = ACTIONS(4955), + [anon_sym_BSLASHglspl] = ACTIONS(4955), + [anon_sym_BSLASHGlspl] = ACTIONS(4955), + [anon_sym_BSLASHGLSpl] = ACTIONS(4955), + [anon_sym_BSLASHglsdisp] = ACTIONS(4955), + [anon_sym_BSLASHglslink] = ACTIONS(4955), + [anon_sym_BSLASHglstext] = ACTIONS(4955), + [anon_sym_BSLASHGlstext] = ACTIONS(4955), + [anon_sym_BSLASHGLStext] = ACTIONS(4955), + [anon_sym_BSLASHglsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), + [anon_sym_BSLASHglsplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSplural] = ACTIONS(4955), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHglsname] = ACTIONS(4955), + [anon_sym_BSLASHGlsname] = ACTIONS(4955), + [anon_sym_BSLASHGLSname] = ACTIONS(4955), + [anon_sym_BSLASHglssymbol] = ACTIONS(4955), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), + [anon_sym_BSLASHglsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), + [anon_sym_BSLASHglsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), + [anon_sym_BSLASHglsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), + [anon_sym_BSLASHglsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), + [anon_sym_BSLASHglsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), + [anon_sym_BSLASHnewacronym] = ACTIONS(4955), + [anon_sym_BSLASHacrshort] = ACTIONS(4955), + [anon_sym_BSLASHAcrshort] = ACTIONS(4955), + [anon_sym_BSLASHACRshort] = ACTIONS(4955), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), + [anon_sym_BSLASHacrlong] = ACTIONS(4955), + [anon_sym_BSLASHAcrlong] = ACTIONS(4955), + [anon_sym_BSLASHACRlong] = ACTIONS(4955), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), + [anon_sym_BSLASHacrfull] = ACTIONS(4955), + [anon_sym_BSLASHAcrfull] = ACTIONS(4955), + [anon_sym_BSLASHACRfull] = ACTIONS(4955), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), + [anon_sym_BSLASHacs] = ACTIONS(4955), + [anon_sym_BSLASHAcs] = ACTIONS(4955), + [anon_sym_BSLASHacsp] = ACTIONS(4955), + [anon_sym_BSLASHAcsp] = ACTIONS(4955), + [anon_sym_BSLASHacl] = ACTIONS(4955), + [anon_sym_BSLASHAcl] = ACTIONS(4955), + [anon_sym_BSLASHaclp] = ACTIONS(4955), + [anon_sym_BSLASHAclp] = ACTIONS(4955), + [anon_sym_BSLASHacf] = ACTIONS(4955), + [anon_sym_BSLASHAcf] = ACTIONS(4955), + [anon_sym_BSLASHacfp] = ACTIONS(4955), + [anon_sym_BSLASHAcfp] = ACTIONS(4955), + [anon_sym_BSLASHac] = ACTIONS(4955), + [anon_sym_BSLASHAc] = ACTIONS(4955), + [anon_sym_BSLASHacp] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), + [anon_sym_BSLASHcolor] = ACTIONS(4955), + [anon_sym_BSLASHcolorbox] = ACTIONS(4955), + [anon_sym_BSLASHtextcolor] = ACTIONS(4955), + [anon_sym_BSLASHpagecolor] = ACTIONS(4955), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), + [anon_sym_BSLASHtext] = ACTIONS(4955), + [anon_sym_BSLASHintertext] = ACTIONS(4955), + [anon_sym_shortintertext] = ACTIONS(4955), + }, + [1245] = { [sym_command_name] = ACTIONS(5081), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -399078,6 +374774,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(5079), [anon_sym_COMMA] = ACTIONS(5079), [anon_sym_EQ] = ACTIONS(5079), + [anon_sym_BSLASHpart] = ACTIONS(5081), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddpart] = ACTIONS(5081), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5079), + [anon_sym_BSLASHchapter] = ACTIONS(5081), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddchap] = ACTIONS(5081), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsection] = ACTIONS(5081), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHaddsec] = ACTIONS(5081), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubsection] = ACTIONS(5081), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5081), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5079), + [anon_sym_BSLASHparagraph] = ACTIONS(5081), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5079), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5081), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5079), + [anon_sym_BSLASHitem] = ACTIONS(5081), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5079), [anon_sym_LBRACE] = ACTIONS(5079), [sym_word] = ACTIONS(5081), [sym_placeholder] = ACTIONS(5079), @@ -399099,6 +374817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), [anon_sym_BSLASHbegin] = ACTIONS(5081), + [anon_sym_BSLASHend] = ACTIONS(5081), [anon_sym_BSLASHusepackage] = ACTIONS(5081), [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), @@ -399312,6158 +375031,16412 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(5081), [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), + [anon_sym_BSLASHtext] = ACTIONS(5081), + [anon_sym_BSLASHintertext] = ACTIONS(5081), + [anon_sym_shortintertext] = ACTIONS(5081), }, - [1348] = { - [sym_command_name] = ACTIONS(5077), + [1246] = { + [sym_command_name] = ACTIONS(5085), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5077), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), - [anon_sym_BSLASHbegin] = ACTIONS(5077), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), + [anon_sym_BSLASHiffalse] = ACTIONS(5085), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_RPAREN] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_RBRACK] = ACTIONS(5083), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5083), + [anon_sym_BSLASHpart] = ACTIONS(5085), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddpart] = ACTIONS(5085), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5083), + [anon_sym_BSLASHchapter] = ACTIONS(5085), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddchap] = ACTIONS(5085), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsection] = ACTIONS(5085), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHaddsec] = ACTIONS(5085), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubsection] = ACTIONS(5085), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5085), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5083), + [anon_sym_BSLASHparagraph] = ACTIONS(5085), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5083), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5085), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5083), + [anon_sym_BSLASHitem] = ACTIONS(5085), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5083), + [anon_sym_LBRACE] = ACTIONS(5083), + [sym_word] = ACTIONS(5085), + [sym_placeholder] = ACTIONS(5083), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_CARET] = ACTIONS(5085), + [anon_sym__] = ACTIONS(5085), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_PIPE] = ACTIONS(5085), + [anon_sym_COLON] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), + [anon_sym_DOLLAR] = ACTIONS(5085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), + [anon_sym_BSLASHbegin] = ACTIONS(5085), + [anon_sym_BSLASHend] = ACTIONS(5085), + [anon_sym_BSLASHusepackage] = ACTIONS(5085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), + [anon_sym_BSLASHinclude] = ACTIONS(5085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), + [anon_sym_BSLASHinput] = ACTIONS(5085), + [anon_sym_BSLASHsubfile] = ACTIONS(5085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), + [anon_sym_BSLASHbibliography] = ACTIONS(5085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), + [anon_sym_BSLASHincludesvg] = ACTIONS(5085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), + [anon_sym_BSLASHimport] = ACTIONS(5085), + [anon_sym_BSLASHsubimport] = ACTIONS(5085), + [anon_sym_BSLASHinputfrom] = ACTIONS(5085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), + [anon_sym_BSLASHincludefrom] = ACTIONS(5085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), + [anon_sym_BSLASHcaption] = ACTIONS(5085), + [anon_sym_BSLASHcite] = ACTIONS(5085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCite] = ACTIONS(5085), + [anon_sym_BSLASHnocite] = ACTIONS(5085), + [anon_sym_BSLASHcitet] = ACTIONS(5085), + [anon_sym_BSLASHcitep] = ACTIONS(5085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteauthor] = ACTIONS(5085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitetitle] = ACTIONS(5085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteyear] = ACTIONS(5085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitedate] = ACTIONS(5085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteurl] = ACTIONS(5085), + [anon_sym_BSLASHfullcite] = ACTIONS(5085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), + [anon_sym_BSLASHcitealt] = ACTIONS(5085), + [anon_sym_BSLASHcitealp] = ACTIONS(5085), + [anon_sym_BSLASHcitetext] = ACTIONS(5085), + [anon_sym_BSLASHparencite] = ACTIONS(5085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHParencite] = ACTIONS(5085), + [anon_sym_BSLASHfootcite] = ACTIONS(5085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), + [anon_sym_BSLASHtextcite] = ACTIONS(5085), + [anon_sym_BSLASHTextcite] = ACTIONS(5085), + [anon_sym_BSLASHsmartcite] = ACTIONS(5085), + [anon_sym_BSLASHSmartcite] = ACTIONS(5085), + [anon_sym_BSLASHsupercite] = ACTIONS(5085), + [anon_sym_BSLASHautocite] = ACTIONS(5085), + [anon_sym_BSLASHAutocite] = ACTIONS(5085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHvolcite] = ACTIONS(5085), + [anon_sym_BSLASHVolcite] = ACTIONS(5085), + [anon_sym_BSLASHpvolcite] = ACTIONS(5085), + [anon_sym_BSLASHPvolcite] = ACTIONS(5085), + [anon_sym_BSLASHfvolcite] = ACTIONS(5085), + [anon_sym_BSLASHftvolcite] = ACTIONS(5085), + [anon_sym_BSLASHsvolcite] = ACTIONS(5085), + [anon_sym_BSLASHSvolcite] = ACTIONS(5085), + [anon_sym_BSLASHtvolcite] = ACTIONS(5085), + [anon_sym_BSLASHTvolcite] = ACTIONS(5085), + [anon_sym_BSLASHavolcite] = ACTIONS(5085), + [anon_sym_BSLASHAvolcite] = ACTIONS(5085), + [anon_sym_BSLASHnotecite] = ACTIONS(5085), + [anon_sym_BSLASHNotecite] = ACTIONS(5085), + [anon_sym_BSLASHpnotecite] = ACTIONS(5085), + [anon_sym_BSLASHPnotecite] = ACTIONS(5085), + [anon_sym_BSLASHfnotecite] = ACTIONS(5085), + [anon_sym_BSLASHlabel] = ACTIONS(5085), + [anon_sym_BSLASHref] = ACTIONS(5085), + [anon_sym_BSLASHeqref] = ACTIONS(5085), + [anon_sym_BSLASHvref] = ACTIONS(5085), + [anon_sym_BSLASHVref] = ACTIONS(5085), + [anon_sym_BSLASHautoref] = ACTIONS(5085), + [anon_sym_BSLASHpageref] = ACTIONS(5085), + [anon_sym_BSLASHcref] = ACTIONS(5085), + [anon_sym_BSLASHCref] = ACTIONS(5085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), + [anon_sym_BSLASHnamecref] = ACTIONS(5085), + [anon_sym_BSLASHnameCref] = ACTIONS(5085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), + [anon_sym_BSLASHlabelcref] = ACTIONS(5085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), + [anon_sym_BSLASHcrefrange] = ACTIONS(5085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCrefrange] = ACTIONS(5085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), + [anon_sym_BSLASHnewlabel] = ACTIONS(5085), + [anon_sym_BSLASHnewcommand] = ACTIONS(5085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), + [anon_sym_BSLASHdef] = ACTIONS(5085), + [anon_sym_BSLASHlet] = ACTIONS(5085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), + [anon_sym_BSLASHgls] = ACTIONS(5085), + [anon_sym_BSLASHGls] = ACTIONS(5085), + [anon_sym_BSLASHGLS] = ACTIONS(5085), + [anon_sym_BSLASHglspl] = ACTIONS(5085), + [anon_sym_BSLASHGlspl] = ACTIONS(5085), + [anon_sym_BSLASHGLSpl] = ACTIONS(5085), + [anon_sym_BSLASHglsdisp] = ACTIONS(5085), + [anon_sym_BSLASHglslink] = ACTIONS(5085), + [anon_sym_BSLASHglstext] = ACTIONS(5085), + [anon_sym_BSLASHGlstext] = ACTIONS(5085), + [anon_sym_BSLASHGLStext] = ACTIONS(5085), + [anon_sym_BSLASHglsfirst] = ACTIONS(5085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), + [anon_sym_BSLASHglsplural] = ACTIONS(5085), + [anon_sym_BSLASHGlsplural] = ACTIONS(5085), + [anon_sym_BSLASHGLSplural] = ACTIONS(5085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHglsname] = ACTIONS(5085), + [anon_sym_BSLASHGlsname] = ACTIONS(5085), + [anon_sym_BSLASHGLSname] = ACTIONS(5085), + [anon_sym_BSLASHglssymbol] = ACTIONS(5085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), + [anon_sym_BSLASHglsdesc] = ACTIONS(5085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), + [anon_sym_BSLASHglsuseri] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), + [anon_sym_BSLASHglsuserii] = ACTIONS(5085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), + [anon_sym_BSLASHglsuserv] = ACTIONS(5085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), + [anon_sym_BSLASHglsuservi] = ACTIONS(5085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), + [anon_sym_BSLASHnewacronym] = ACTIONS(5085), + [anon_sym_BSLASHacrshort] = ACTIONS(5085), + [anon_sym_BSLASHAcrshort] = ACTIONS(5085), + [anon_sym_BSLASHACRshort] = ACTIONS(5085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), + [anon_sym_BSLASHacrlong] = ACTIONS(5085), + [anon_sym_BSLASHAcrlong] = ACTIONS(5085), + [anon_sym_BSLASHACRlong] = ACTIONS(5085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), + [anon_sym_BSLASHacrfull] = ACTIONS(5085), + [anon_sym_BSLASHAcrfull] = ACTIONS(5085), + [anon_sym_BSLASHACRfull] = ACTIONS(5085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), + [anon_sym_BSLASHacs] = ACTIONS(5085), + [anon_sym_BSLASHAcs] = ACTIONS(5085), + [anon_sym_BSLASHacsp] = ACTIONS(5085), + [anon_sym_BSLASHAcsp] = ACTIONS(5085), + [anon_sym_BSLASHacl] = ACTIONS(5085), + [anon_sym_BSLASHAcl] = ACTIONS(5085), + [anon_sym_BSLASHaclp] = ACTIONS(5085), + [anon_sym_BSLASHAclp] = ACTIONS(5085), + [anon_sym_BSLASHacf] = ACTIONS(5085), + [anon_sym_BSLASHAcf] = ACTIONS(5085), + [anon_sym_BSLASHacfp] = ACTIONS(5085), + [anon_sym_BSLASHAcfp] = ACTIONS(5085), + [anon_sym_BSLASHac] = ACTIONS(5085), + [anon_sym_BSLASHAc] = ACTIONS(5085), + [anon_sym_BSLASHacp] = ACTIONS(5085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), + [anon_sym_BSLASHcolor] = ACTIONS(5085), + [anon_sym_BSLASHcolorbox] = ACTIONS(5085), + [anon_sym_BSLASHtextcolor] = ACTIONS(5085), + [anon_sym_BSLASHpagecolor] = ACTIONS(5085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), + [anon_sym_BSLASHtext] = ACTIONS(5085), + [anon_sym_BSLASHintertext] = ACTIONS(5085), + [anon_sym_shortintertext] = ACTIONS(5085), }, - [1349] = { - [sym_command_name] = ACTIONS(5073), + [1247] = { + [sym_command_name] = ACTIONS(5089), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_LPAREN] = ACTIONS(5071), - [anon_sym_RPAREN] = ACTIONS(5071), - [anon_sym_LBRACK] = ACTIONS(5071), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_LBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), - [anon_sym_DOLLAR] = ACTIONS(5073), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), - [anon_sym_BSLASHbegin] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHiffalse] = ACTIONS(5089), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_RPAREN] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_RBRACK] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_EQ] = ACTIONS(5087), + [anon_sym_BSLASHpart] = ACTIONS(5089), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddpart] = ACTIONS(5089), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5087), + [anon_sym_BSLASHchapter] = ACTIONS(5089), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddchap] = ACTIONS(5089), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsection] = ACTIONS(5089), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHaddsec] = ACTIONS(5089), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubsection] = ACTIONS(5089), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5089), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5087), + [anon_sym_BSLASHparagraph] = ACTIONS(5089), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5087), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5089), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5087), + [anon_sym_BSLASHitem] = ACTIONS(5089), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5087), + [anon_sym_LBRACE] = ACTIONS(5087), + [sym_word] = ACTIONS(5089), + [sym_placeholder] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5089), + [anon_sym__] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_BANG] = ACTIONS(5089), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_COLON] = ACTIONS(5089), + [anon_sym_SQUOTE] = ACTIONS(5089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), + [anon_sym_DOLLAR] = ACTIONS(5089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), + [anon_sym_BSLASHbegin] = ACTIONS(5089), + [anon_sym_BSLASHend] = ACTIONS(5089), + [anon_sym_BSLASHusepackage] = ACTIONS(5089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), + [anon_sym_BSLASHinclude] = ACTIONS(5089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), + [anon_sym_BSLASHinput] = ACTIONS(5089), + [anon_sym_BSLASHsubfile] = ACTIONS(5089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), + [anon_sym_BSLASHbibliography] = ACTIONS(5089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), + [anon_sym_BSLASHincludesvg] = ACTIONS(5089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), + [anon_sym_BSLASHimport] = ACTIONS(5089), + [anon_sym_BSLASHsubimport] = ACTIONS(5089), + [anon_sym_BSLASHinputfrom] = ACTIONS(5089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), + [anon_sym_BSLASHincludefrom] = ACTIONS(5089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), + [anon_sym_BSLASHcaption] = ACTIONS(5089), + [anon_sym_BSLASHcite] = ACTIONS(5089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCite] = ACTIONS(5089), + [anon_sym_BSLASHnocite] = ACTIONS(5089), + [anon_sym_BSLASHcitet] = ACTIONS(5089), + [anon_sym_BSLASHcitep] = ACTIONS(5089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteauthor] = ACTIONS(5089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitetitle] = ACTIONS(5089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteyear] = ACTIONS(5089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitedate] = ACTIONS(5089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteurl] = ACTIONS(5089), + [anon_sym_BSLASHfullcite] = ACTIONS(5089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), + [anon_sym_BSLASHcitealt] = ACTIONS(5089), + [anon_sym_BSLASHcitealp] = ACTIONS(5089), + [anon_sym_BSLASHcitetext] = ACTIONS(5089), + [anon_sym_BSLASHparencite] = ACTIONS(5089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHParencite] = ACTIONS(5089), + [anon_sym_BSLASHfootcite] = ACTIONS(5089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), + [anon_sym_BSLASHtextcite] = ACTIONS(5089), + [anon_sym_BSLASHTextcite] = ACTIONS(5089), + [anon_sym_BSLASHsmartcite] = ACTIONS(5089), + [anon_sym_BSLASHSmartcite] = ACTIONS(5089), + [anon_sym_BSLASHsupercite] = ACTIONS(5089), + [anon_sym_BSLASHautocite] = ACTIONS(5089), + [anon_sym_BSLASHAutocite] = ACTIONS(5089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHvolcite] = ACTIONS(5089), + [anon_sym_BSLASHVolcite] = ACTIONS(5089), + [anon_sym_BSLASHpvolcite] = ACTIONS(5089), + [anon_sym_BSLASHPvolcite] = ACTIONS(5089), + [anon_sym_BSLASHfvolcite] = ACTIONS(5089), + [anon_sym_BSLASHftvolcite] = ACTIONS(5089), + [anon_sym_BSLASHsvolcite] = ACTIONS(5089), + [anon_sym_BSLASHSvolcite] = ACTIONS(5089), + [anon_sym_BSLASHtvolcite] = ACTIONS(5089), + [anon_sym_BSLASHTvolcite] = ACTIONS(5089), + [anon_sym_BSLASHavolcite] = ACTIONS(5089), + [anon_sym_BSLASHAvolcite] = ACTIONS(5089), + [anon_sym_BSLASHnotecite] = ACTIONS(5089), + [anon_sym_BSLASHNotecite] = ACTIONS(5089), + [anon_sym_BSLASHpnotecite] = ACTIONS(5089), + [anon_sym_BSLASHPnotecite] = ACTIONS(5089), + [anon_sym_BSLASHfnotecite] = ACTIONS(5089), + [anon_sym_BSLASHlabel] = ACTIONS(5089), + [anon_sym_BSLASHref] = ACTIONS(5089), + [anon_sym_BSLASHeqref] = ACTIONS(5089), + [anon_sym_BSLASHvref] = ACTIONS(5089), + [anon_sym_BSLASHVref] = ACTIONS(5089), + [anon_sym_BSLASHautoref] = ACTIONS(5089), + [anon_sym_BSLASHpageref] = ACTIONS(5089), + [anon_sym_BSLASHcref] = ACTIONS(5089), + [anon_sym_BSLASHCref] = ACTIONS(5089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), + [anon_sym_BSLASHnamecref] = ACTIONS(5089), + [anon_sym_BSLASHnameCref] = ACTIONS(5089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), + [anon_sym_BSLASHlabelcref] = ACTIONS(5089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), + [anon_sym_BSLASHcrefrange] = ACTIONS(5089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCrefrange] = ACTIONS(5089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), + [anon_sym_BSLASHnewlabel] = ACTIONS(5089), + [anon_sym_BSLASHnewcommand] = ACTIONS(5089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), + [anon_sym_BSLASHdef] = ACTIONS(5089), + [anon_sym_BSLASHlet] = ACTIONS(5089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), + [anon_sym_BSLASHgls] = ACTIONS(5089), + [anon_sym_BSLASHGls] = ACTIONS(5089), + [anon_sym_BSLASHGLS] = ACTIONS(5089), + [anon_sym_BSLASHglspl] = ACTIONS(5089), + [anon_sym_BSLASHGlspl] = ACTIONS(5089), + [anon_sym_BSLASHGLSpl] = ACTIONS(5089), + [anon_sym_BSLASHglsdisp] = ACTIONS(5089), + [anon_sym_BSLASHglslink] = ACTIONS(5089), + [anon_sym_BSLASHglstext] = ACTIONS(5089), + [anon_sym_BSLASHGlstext] = ACTIONS(5089), + [anon_sym_BSLASHGLStext] = ACTIONS(5089), + [anon_sym_BSLASHglsfirst] = ACTIONS(5089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), + [anon_sym_BSLASHglsplural] = ACTIONS(5089), + [anon_sym_BSLASHGlsplural] = ACTIONS(5089), + [anon_sym_BSLASHGLSplural] = ACTIONS(5089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHglsname] = ACTIONS(5089), + [anon_sym_BSLASHGlsname] = ACTIONS(5089), + [anon_sym_BSLASHGLSname] = ACTIONS(5089), + [anon_sym_BSLASHglssymbol] = ACTIONS(5089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), + [anon_sym_BSLASHglsdesc] = ACTIONS(5089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), + [anon_sym_BSLASHglsuseri] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), + [anon_sym_BSLASHglsuserii] = ACTIONS(5089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), + [anon_sym_BSLASHglsuserv] = ACTIONS(5089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), + [anon_sym_BSLASHglsuservi] = ACTIONS(5089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), + [anon_sym_BSLASHnewacronym] = ACTIONS(5089), + [anon_sym_BSLASHacrshort] = ACTIONS(5089), + [anon_sym_BSLASHAcrshort] = ACTIONS(5089), + [anon_sym_BSLASHACRshort] = ACTIONS(5089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), + [anon_sym_BSLASHacrlong] = ACTIONS(5089), + [anon_sym_BSLASHAcrlong] = ACTIONS(5089), + [anon_sym_BSLASHACRlong] = ACTIONS(5089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), + [anon_sym_BSLASHacrfull] = ACTIONS(5089), + [anon_sym_BSLASHAcrfull] = ACTIONS(5089), + [anon_sym_BSLASHACRfull] = ACTIONS(5089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), + [anon_sym_BSLASHacs] = ACTIONS(5089), + [anon_sym_BSLASHAcs] = ACTIONS(5089), + [anon_sym_BSLASHacsp] = ACTIONS(5089), + [anon_sym_BSLASHAcsp] = ACTIONS(5089), + [anon_sym_BSLASHacl] = ACTIONS(5089), + [anon_sym_BSLASHAcl] = ACTIONS(5089), + [anon_sym_BSLASHaclp] = ACTIONS(5089), + [anon_sym_BSLASHAclp] = ACTIONS(5089), + [anon_sym_BSLASHacf] = ACTIONS(5089), + [anon_sym_BSLASHAcf] = ACTIONS(5089), + [anon_sym_BSLASHacfp] = ACTIONS(5089), + [anon_sym_BSLASHAcfp] = ACTIONS(5089), + [anon_sym_BSLASHac] = ACTIONS(5089), + [anon_sym_BSLASHAc] = ACTIONS(5089), + [anon_sym_BSLASHacp] = ACTIONS(5089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), + [anon_sym_BSLASHcolor] = ACTIONS(5089), + [anon_sym_BSLASHcolorbox] = ACTIONS(5089), + [anon_sym_BSLASHtextcolor] = ACTIONS(5089), + [anon_sym_BSLASHpagecolor] = ACTIONS(5089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHtext] = ACTIONS(5089), + [anon_sym_BSLASHintertext] = ACTIONS(5089), + [anon_sym_shortintertext] = ACTIONS(5089), }, - [1350] = { - [sym_command_name] = ACTIONS(5069), + [1248] = { + [sym_command_name] = ACTIONS(5093), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), - [anon_sym_BSLASHbegin] = ACTIONS(5069), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), + [anon_sym_BSLASHiffalse] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_RBRACK] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5091), + [anon_sym_BSLASHpart] = ACTIONS(5093), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddpart] = ACTIONS(5093), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5091), + [anon_sym_BSLASHchapter] = ACTIONS(5093), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddchap] = ACTIONS(5093), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsection] = ACTIONS(5093), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHaddsec] = ACTIONS(5093), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubsection] = ACTIONS(5093), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5093), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5091), + [anon_sym_BSLASHparagraph] = ACTIONS(5093), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5091), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5093), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5091), + [anon_sym_BSLASHitem] = ACTIONS(5093), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5091), + [anon_sym_LBRACE] = ACTIONS(5091), + [sym_word] = ACTIONS(5093), + [sym_placeholder] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(5093), + [anon_sym_STAR] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5093), + [anon_sym_CARET] = ACTIONS(5093), + [anon_sym__] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5093), + [anon_sym_GT] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(5093), + [anon_sym_PIPE] = ACTIONS(5093), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_SQUOTE] = ACTIONS(5093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), + [anon_sym_DOLLAR] = ACTIONS(5093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), + [anon_sym_BSLASHbegin] = ACTIONS(5093), + [anon_sym_BSLASHend] = ACTIONS(5093), + [anon_sym_BSLASHusepackage] = ACTIONS(5093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), + [anon_sym_BSLASHinclude] = ACTIONS(5093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), + [anon_sym_BSLASHinput] = ACTIONS(5093), + [anon_sym_BSLASHsubfile] = ACTIONS(5093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), + [anon_sym_BSLASHbibliography] = ACTIONS(5093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), + [anon_sym_BSLASHincludesvg] = ACTIONS(5093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), + [anon_sym_BSLASHimport] = ACTIONS(5093), + [anon_sym_BSLASHsubimport] = ACTIONS(5093), + [anon_sym_BSLASHinputfrom] = ACTIONS(5093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), + [anon_sym_BSLASHincludefrom] = ACTIONS(5093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), + [anon_sym_BSLASHcaption] = ACTIONS(5093), + [anon_sym_BSLASHcite] = ACTIONS(5093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCite] = ACTIONS(5093), + [anon_sym_BSLASHnocite] = ACTIONS(5093), + [anon_sym_BSLASHcitet] = ACTIONS(5093), + [anon_sym_BSLASHcitep] = ACTIONS(5093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteauthor] = ACTIONS(5093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitetitle] = ACTIONS(5093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteyear] = ACTIONS(5093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitedate] = ACTIONS(5093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteurl] = ACTIONS(5093), + [anon_sym_BSLASHfullcite] = ACTIONS(5093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), + [anon_sym_BSLASHcitealt] = ACTIONS(5093), + [anon_sym_BSLASHcitealp] = ACTIONS(5093), + [anon_sym_BSLASHcitetext] = ACTIONS(5093), + [anon_sym_BSLASHparencite] = ACTIONS(5093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHParencite] = ACTIONS(5093), + [anon_sym_BSLASHfootcite] = ACTIONS(5093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), + [anon_sym_BSLASHtextcite] = ACTIONS(5093), + [anon_sym_BSLASHTextcite] = ACTIONS(5093), + [anon_sym_BSLASHsmartcite] = ACTIONS(5093), + [anon_sym_BSLASHSmartcite] = ACTIONS(5093), + [anon_sym_BSLASHsupercite] = ACTIONS(5093), + [anon_sym_BSLASHautocite] = ACTIONS(5093), + [anon_sym_BSLASHAutocite] = ACTIONS(5093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHvolcite] = ACTIONS(5093), + [anon_sym_BSLASHVolcite] = ACTIONS(5093), + [anon_sym_BSLASHpvolcite] = ACTIONS(5093), + [anon_sym_BSLASHPvolcite] = ACTIONS(5093), + [anon_sym_BSLASHfvolcite] = ACTIONS(5093), + [anon_sym_BSLASHftvolcite] = ACTIONS(5093), + [anon_sym_BSLASHsvolcite] = ACTIONS(5093), + [anon_sym_BSLASHSvolcite] = ACTIONS(5093), + [anon_sym_BSLASHtvolcite] = ACTIONS(5093), + [anon_sym_BSLASHTvolcite] = ACTIONS(5093), + [anon_sym_BSLASHavolcite] = ACTIONS(5093), + [anon_sym_BSLASHAvolcite] = ACTIONS(5093), + [anon_sym_BSLASHnotecite] = ACTIONS(5093), + [anon_sym_BSLASHNotecite] = ACTIONS(5093), + [anon_sym_BSLASHpnotecite] = ACTIONS(5093), + [anon_sym_BSLASHPnotecite] = ACTIONS(5093), + [anon_sym_BSLASHfnotecite] = ACTIONS(5093), + [anon_sym_BSLASHlabel] = ACTIONS(5093), + [anon_sym_BSLASHref] = ACTIONS(5093), + [anon_sym_BSLASHeqref] = ACTIONS(5093), + [anon_sym_BSLASHvref] = ACTIONS(5093), + [anon_sym_BSLASHVref] = ACTIONS(5093), + [anon_sym_BSLASHautoref] = ACTIONS(5093), + [anon_sym_BSLASHpageref] = ACTIONS(5093), + [anon_sym_BSLASHcref] = ACTIONS(5093), + [anon_sym_BSLASHCref] = ACTIONS(5093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), + [anon_sym_BSLASHnamecref] = ACTIONS(5093), + [anon_sym_BSLASHnameCref] = ACTIONS(5093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), + [anon_sym_BSLASHlabelcref] = ACTIONS(5093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), + [anon_sym_BSLASHcrefrange] = ACTIONS(5093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCrefrange] = ACTIONS(5093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), + [anon_sym_BSLASHnewlabel] = ACTIONS(5093), + [anon_sym_BSLASHnewcommand] = ACTIONS(5093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), + [anon_sym_BSLASHdef] = ACTIONS(5093), + [anon_sym_BSLASHlet] = ACTIONS(5093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), + [anon_sym_BSLASHgls] = ACTIONS(5093), + [anon_sym_BSLASHGls] = ACTIONS(5093), + [anon_sym_BSLASHGLS] = ACTIONS(5093), + [anon_sym_BSLASHglspl] = ACTIONS(5093), + [anon_sym_BSLASHGlspl] = ACTIONS(5093), + [anon_sym_BSLASHGLSpl] = ACTIONS(5093), + [anon_sym_BSLASHglsdisp] = ACTIONS(5093), + [anon_sym_BSLASHglslink] = ACTIONS(5093), + [anon_sym_BSLASHglstext] = ACTIONS(5093), + [anon_sym_BSLASHGlstext] = ACTIONS(5093), + [anon_sym_BSLASHGLStext] = ACTIONS(5093), + [anon_sym_BSLASHglsfirst] = ACTIONS(5093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), + [anon_sym_BSLASHglsplural] = ACTIONS(5093), + [anon_sym_BSLASHGlsplural] = ACTIONS(5093), + [anon_sym_BSLASHGLSplural] = ACTIONS(5093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHglsname] = ACTIONS(5093), + [anon_sym_BSLASHGlsname] = ACTIONS(5093), + [anon_sym_BSLASHGLSname] = ACTIONS(5093), + [anon_sym_BSLASHglssymbol] = ACTIONS(5093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), + [anon_sym_BSLASHglsdesc] = ACTIONS(5093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), + [anon_sym_BSLASHglsuseri] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), + [anon_sym_BSLASHglsuserii] = ACTIONS(5093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), + [anon_sym_BSLASHglsuserv] = ACTIONS(5093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), + [anon_sym_BSLASHglsuservi] = ACTIONS(5093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), + [anon_sym_BSLASHnewacronym] = ACTIONS(5093), + [anon_sym_BSLASHacrshort] = ACTIONS(5093), + [anon_sym_BSLASHAcrshort] = ACTIONS(5093), + [anon_sym_BSLASHACRshort] = ACTIONS(5093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), + [anon_sym_BSLASHacrlong] = ACTIONS(5093), + [anon_sym_BSLASHAcrlong] = ACTIONS(5093), + [anon_sym_BSLASHACRlong] = ACTIONS(5093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), + [anon_sym_BSLASHacrfull] = ACTIONS(5093), + [anon_sym_BSLASHAcrfull] = ACTIONS(5093), + [anon_sym_BSLASHACRfull] = ACTIONS(5093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), + [anon_sym_BSLASHacs] = ACTIONS(5093), + [anon_sym_BSLASHAcs] = ACTIONS(5093), + [anon_sym_BSLASHacsp] = ACTIONS(5093), + [anon_sym_BSLASHAcsp] = ACTIONS(5093), + [anon_sym_BSLASHacl] = ACTIONS(5093), + [anon_sym_BSLASHAcl] = ACTIONS(5093), + [anon_sym_BSLASHaclp] = ACTIONS(5093), + [anon_sym_BSLASHAclp] = ACTIONS(5093), + [anon_sym_BSLASHacf] = ACTIONS(5093), + [anon_sym_BSLASHAcf] = ACTIONS(5093), + [anon_sym_BSLASHacfp] = ACTIONS(5093), + [anon_sym_BSLASHAcfp] = ACTIONS(5093), + [anon_sym_BSLASHac] = ACTIONS(5093), + [anon_sym_BSLASHAc] = ACTIONS(5093), + [anon_sym_BSLASHacp] = ACTIONS(5093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), + [anon_sym_BSLASHcolor] = ACTIONS(5093), + [anon_sym_BSLASHcolorbox] = ACTIONS(5093), + [anon_sym_BSLASHtextcolor] = ACTIONS(5093), + [anon_sym_BSLASHpagecolor] = ACTIONS(5093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHtext] = ACTIONS(5093), + [anon_sym_BSLASHintertext] = ACTIONS(5093), + [anon_sym_shortintertext] = ACTIONS(5093), }, - [1351] = { - [sym_command_name] = ACTIONS(5085), + [1249] = { + [sym_command_name] = ACTIONS(5097), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASHbegin] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), - }, - [1352] = { - [sym_command_name] = ACTIONS(5267), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5267), - [anon_sym_LPAREN] = ACTIONS(5265), - [anon_sym_RPAREN] = ACTIONS(5265), - [anon_sym_LBRACK] = ACTIONS(5265), - [anon_sym_RBRACK] = ACTIONS(5265), - [anon_sym_COMMA] = ACTIONS(5265), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(5265), - [sym_word] = ACTIONS(5267), - [sym_placeholder] = ACTIONS(5265), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(5267), - [anon_sym_SLASH] = ACTIONS(5267), - [anon_sym_CARET] = ACTIONS(5267), - [anon_sym__] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(5267), - [anon_sym_GT] = ACTIONS(5267), - [anon_sym_BANG] = ACTIONS(5267), - [anon_sym_PIPE] = ACTIONS(5267), - [anon_sym_COLON] = ACTIONS(5267), - [anon_sym_SQUOTE] = ACTIONS(5267), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5265), - [anon_sym_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5265), - [anon_sym_BSLASHbegin] = ACTIONS(5267), - [anon_sym_BSLASHusepackage] = ACTIONS(5267), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5267), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5267), - [anon_sym_BSLASHinclude] = ACTIONS(5267), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5267), - [anon_sym_BSLASHinput] = ACTIONS(5267), - [anon_sym_BSLASHsubfile] = ACTIONS(5267), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5267), - [anon_sym_BSLASHbibliography] = ACTIONS(5267), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5267), - [anon_sym_BSLASHincludesvg] = ACTIONS(5267), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5267), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5267), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5267), - [anon_sym_BSLASHimport] = ACTIONS(5267), - [anon_sym_BSLASHsubimport] = ACTIONS(5267), - [anon_sym_BSLASHinputfrom] = ACTIONS(5267), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5267), - [anon_sym_BSLASHincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHcaption] = ACTIONS(5267), - [anon_sym_BSLASHcite] = ACTIONS(5267), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCite] = ACTIONS(5267), - [anon_sym_BSLASHnocite] = ACTIONS(5267), - [anon_sym_BSLASHcitet] = ACTIONS(5267), - [anon_sym_BSLASHcitep] = ACTIONS(5267), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteyear] = ACTIONS(5267), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitedate] = ACTIONS(5267), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteurl] = ACTIONS(5267), - [anon_sym_BSLASHfullcite] = ACTIONS(5267), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5267), - [anon_sym_BSLASHcitealt] = ACTIONS(5267), - [anon_sym_BSLASHcitealp] = ACTIONS(5267), - [anon_sym_BSLASHcitetext] = ACTIONS(5267), - [anon_sym_BSLASHparencite] = ACTIONS(5267), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHParencite] = ACTIONS(5267), - [anon_sym_BSLASHfootcite] = ACTIONS(5267), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5267), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5267), - [anon_sym_BSLASHtextcite] = ACTIONS(5267), - [anon_sym_BSLASHTextcite] = ACTIONS(5267), - [anon_sym_BSLASHsmartcite] = ACTIONS(5267), - [anon_sym_BSLASHSmartcite] = ACTIONS(5267), - [anon_sym_BSLASHsupercite] = ACTIONS(5267), - [anon_sym_BSLASHautocite] = ACTIONS(5267), - [anon_sym_BSLASHAutocite] = ACTIONS(5267), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHvolcite] = ACTIONS(5267), - [anon_sym_BSLASHVolcite] = ACTIONS(5267), - [anon_sym_BSLASHpvolcite] = ACTIONS(5267), - [anon_sym_BSLASHPvolcite] = ACTIONS(5267), - [anon_sym_BSLASHfvolcite] = ACTIONS(5267), - [anon_sym_BSLASHftvolcite] = ACTIONS(5267), - [anon_sym_BSLASHsvolcite] = ACTIONS(5267), - [anon_sym_BSLASHSvolcite] = ACTIONS(5267), - [anon_sym_BSLASHtvolcite] = ACTIONS(5267), - [anon_sym_BSLASHTvolcite] = ACTIONS(5267), - [anon_sym_BSLASHavolcite] = ACTIONS(5267), - [anon_sym_BSLASHAvolcite] = ACTIONS(5267), - [anon_sym_BSLASHnotecite] = ACTIONS(5267), - [anon_sym_BSLASHNotecite] = ACTIONS(5267), - [anon_sym_BSLASHpnotecite] = ACTIONS(5267), - [anon_sym_BSLASHPnotecite] = ACTIONS(5267), - [anon_sym_BSLASHfnotecite] = ACTIONS(5267), - [anon_sym_BSLASHlabel] = ACTIONS(5267), - [anon_sym_BSLASHref] = ACTIONS(5267), - [anon_sym_BSLASHeqref] = ACTIONS(5267), - [anon_sym_BSLASHvref] = ACTIONS(5267), - [anon_sym_BSLASHVref] = ACTIONS(5267), - [anon_sym_BSLASHautoref] = ACTIONS(5267), - [anon_sym_BSLASHpageref] = ACTIONS(5267), - [anon_sym_BSLASHcref] = ACTIONS(5267), - [anon_sym_BSLASHCref] = ACTIONS(5267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnameCref] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHlabelcref] = ACTIONS(5267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnewlabel] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5265), - [anon_sym_BSLASHdef] = ACTIONS(5267), - [anon_sym_BSLASHlet] = ACTIONS(5267), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5267), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5267), - [anon_sym_BSLASHgls] = ACTIONS(5267), - [anon_sym_BSLASHGls] = ACTIONS(5267), - [anon_sym_BSLASHGLS] = ACTIONS(5267), - [anon_sym_BSLASHglspl] = ACTIONS(5267), - [anon_sym_BSLASHGlspl] = ACTIONS(5267), - [anon_sym_BSLASHGLSpl] = ACTIONS(5267), - [anon_sym_BSLASHglsdisp] = ACTIONS(5267), - [anon_sym_BSLASHglslink] = ACTIONS(5267), - [anon_sym_BSLASHglstext] = ACTIONS(5267), - [anon_sym_BSLASHGlstext] = ACTIONS(5267), - [anon_sym_BSLASHGLStext] = ACTIONS(5267), - [anon_sym_BSLASHglsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5267), - [anon_sym_BSLASHglsplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSplural] = ACTIONS(5267), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHglsname] = ACTIONS(5267), - [anon_sym_BSLASHGlsname] = ACTIONS(5267), - [anon_sym_BSLASHGLSname] = ACTIONS(5267), - [anon_sym_BSLASHglssymbol] = ACTIONS(5267), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5267), - [anon_sym_BSLASHglsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5267), - [anon_sym_BSLASHglsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5267), - [anon_sym_BSLASHglsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5267), - [anon_sym_BSLASHglsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5267), - [anon_sym_BSLASHglsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5267), - [anon_sym_BSLASHnewacronym] = ACTIONS(5267), - [anon_sym_BSLASHacrshort] = ACTIONS(5267), - [anon_sym_BSLASHAcrshort] = ACTIONS(5267), - [anon_sym_BSLASHACRshort] = ACTIONS(5267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5267), - [anon_sym_BSLASHacrlong] = ACTIONS(5267), - [anon_sym_BSLASHAcrlong] = ACTIONS(5267), - [anon_sym_BSLASHACRlong] = ACTIONS(5267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5267), - [anon_sym_BSLASHacrfull] = ACTIONS(5267), - [anon_sym_BSLASHAcrfull] = ACTIONS(5267), - [anon_sym_BSLASHACRfull] = ACTIONS(5267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5267), - [anon_sym_BSLASHacs] = ACTIONS(5267), - [anon_sym_BSLASHAcs] = ACTIONS(5267), - [anon_sym_BSLASHacsp] = ACTIONS(5267), - [anon_sym_BSLASHAcsp] = ACTIONS(5267), - [anon_sym_BSLASHacl] = ACTIONS(5267), - [anon_sym_BSLASHAcl] = ACTIONS(5267), - [anon_sym_BSLASHaclp] = ACTIONS(5267), - [anon_sym_BSLASHAclp] = ACTIONS(5267), - [anon_sym_BSLASHacf] = ACTIONS(5267), - [anon_sym_BSLASHAcf] = ACTIONS(5267), - [anon_sym_BSLASHacfp] = ACTIONS(5267), - [anon_sym_BSLASHAcfp] = ACTIONS(5267), - [anon_sym_BSLASHac] = ACTIONS(5267), - [anon_sym_BSLASHAc] = ACTIONS(5267), - [anon_sym_BSLASHacp] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5267), - [anon_sym_BSLASHcolor] = ACTIONS(5267), - [anon_sym_BSLASHcolorbox] = ACTIONS(5267), - [anon_sym_BSLASHtextcolor] = ACTIONS(5267), - [anon_sym_BSLASHpagecolor] = ACTIONS(5267), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5267), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5267), + [anon_sym_BSLASHiffalse] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5095), + [anon_sym_RPAREN] = ACTIONS(5095), + [anon_sym_LBRACK] = ACTIONS(5095), + [anon_sym_RBRACK] = ACTIONS(5095), + [anon_sym_COMMA] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_BSLASHpart] = ACTIONS(5097), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddpart] = ACTIONS(5097), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5095), + [anon_sym_BSLASHchapter] = ACTIONS(5097), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddchap] = ACTIONS(5097), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsection] = ACTIONS(5097), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHaddsec] = ACTIONS(5097), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubsection] = ACTIONS(5097), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5097), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5095), + [anon_sym_BSLASHparagraph] = ACTIONS(5097), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5095), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5097), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5095), + [anon_sym_BSLASHitem] = ACTIONS(5097), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5095), + [sym_word] = ACTIONS(5097), + [sym_placeholder] = ACTIONS(5095), + [anon_sym_PLUS] = ACTIONS(5097), + [anon_sym_DASH] = ACTIONS(5097), + [anon_sym_STAR] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5097), + [anon_sym_CARET] = ACTIONS(5097), + [anon_sym__] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5097), + [anon_sym_GT] = ACTIONS(5097), + [anon_sym_BANG] = ACTIONS(5097), + [anon_sym_PIPE] = ACTIONS(5097), + [anon_sym_COLON] = ACTIONS(5097), + [anon_sym_SQUOTE] = ACTIONS(5097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), + [anon_sym_DOLLAR] = ACTIONS(5097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), + [anon_sym_BSLASHbegin] = ACTIONS(5097), + [anon_sym_BSLASHend] = ACTIONS(5097), + [anon_sym_BSLASHusepackage] = ACTIONS(5097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), + [anon_sym_BSLASHinclude] = ACTIONS(5097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), + [anon_sym_BSLASHinput] = ACTIONS(5097), + [anon_sym_BSLASHsubfile] = ACTIONS(5097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), + [anon_sym_BSLASHbibliography] = ACTIONS(5097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), + [anon_sym_BSLASHincludesvg] = ACTIONS(5097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), + [anon_sym_BSLASHimport] = ACTIONS(5097), + [anon_sym_BSLASHsubimport] = ACTIONS(5097), + [anon_sym_BSLASHinputfrom] = ACTIONS(5097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), + [anon_sym_BSLASHincludefrom] = ACTIONS(5097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), + [anon_sym_BSLASHcaption] = ACTIONS(5097), + [anon_sym_BSLASHcite] = ACTIONS(5097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCite] = ACTIONS(5097), + [anon_sym_BSLASHnocite] = ACTIONS(5097), + [anon_sym_BSLASHcitet] = ACTIONS(5097), + [anon_sym_BSLASHcitep] = ACTIONS(5097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteauthor] = ACTIONS(5097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitetitle] = ACTIONS(5097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteyear] = ACTIONS(5097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitedate] = ACTIONS(5097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteurl] = ACTIONS(5097), + [anon_sym_BSLASHfullcite] = ACTIONS(5097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), + [anon_sym_BSLASHcitealt] = ACTIONS(5097), + [anon_sym_BSLASHcitealp] = ACTIONS(5097), + [anon_sym_BSLASHcitetext] = ACTIONS(5097), + [anon_sym_BSLASHparencite] = ACTIONS(5097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHParencite] = ACTIONS(5097), + [anon_sym_BSLASHfootcite] = ACTIONS(5097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), + [anon_sym_BSLASHtextcite] = ACTIONS(5097), + [anon_sym_BSLASHTextcite] = ACTIONS(5097), + [anon_sym_BSLASHsmartcite] = ACTIONS(5097), + [anon_sym_BSLASHSmartcite] = ACTIONS(5097), + [anon_sym_BSLASHsupercite] = ACTIONS(5097), + [anon_sym_BSLASHautocite] = ACTIONS(5097), + [anon_sym_BSLASHAutocite] = ACTIONS(5097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHvolcite] = ACTIONS(5097), + [anon_sym_BSLASHVolcite] = ACTIONS(5097), + [anon_sym_BSLASHpvolcite] = ACTIONS(5097), + [anon_sym_BSLASHPvolcite] = ACTIONS(5097), + [anon_sym_BSLASHfvolcite] = ACTIONS(5097), + [anon_sym_BSLASHftvolcite] = ACTIONS(5097), + [anon_sym_BSLASHsvolcite] = ACTIONS(5097), + [anon_sym_BSLASHSvolcite] = ACTIONS(5097), + [anon_sym_BSLASHtvolcite] = ACTIONS(5097), + [anon_sym_BSLASHTvolcite] = ACTIONS(5097), + [anon_sym_BSLASHavolcite] = ACTIONS(5097), + [anon_sym_BSLASHAvolcite] = ACTIONS(5097), + [anon_sym_BSLASHnotecite] = ACTIONS(5097), + [anon_sym_BSLASHNotecite] = ACTIONS(5097), + [anon_sym_BSLASHpnotecite] = ACTIONS(5097), + [anon_sym_BSLASHPnotecite] = ACTIONS(5097), + [anon_sym_BSLASHfnotecite] = ACTIONS(5097), + [anon_sym_BSLASHlabel] = ACTIONS(5097), + [anon_sym_BSLASHref] = ACTIONS(5097), + [anon_sym_BSLASHeqref] = ACTIONS(5097), + [anon_sym_BSLASHvref] = ACTIONS(5097), + [anon_sym_BSLASHVref] = ACTIONS(5097), + [anon_sym_BSLASHautoref] = ACTIONS(5097), + [anon_sym_BSLASHpageref] = ACTIONS(5097), + [anon_sym_BSLASHcref] = ACTIONS(5097), + [anon_sym_BSLASHCref] = ACTIONS(5097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), + [anon_sym_BSLASHnamecref] = ACTIONS(5097), + [anon_sym_BSLASHnameCref] = ACTIONS(5097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), + [anon_sym_BSLASHlabelcref] = ACTIONS(5097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), + [anon_sym_BSLASHcrefrange] = ACTIONS(5097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCrefrange] = ACTIONS(5097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), + [anon_sym_BSLASHnewlabel] = ACTIONS(5097), + [anon_sym_BSLASHnewcommand] = ACTIONS(5097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), + [anon_sym_BSLASHdef] = ACTIONS(5097), + [anon_sym_BSLASHlet] = ACTIONS(5097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), + [anon_sym_BSLASHgls] = ACTIONS(5097), + [anon_sym_BSLASHGls] = ACTIONS(5097), + [anon_sym_BSLASHGLS] = ACTIONS(5097), + [anon_sym_BSLASHglspl] = ACTIONS(5097), + [anon_sym_BSLASHGlspl] = ACTIONS(5097), + [anon_sym_BSLASHGLSpl] = ACTIONS(5097), + [anon_sym_BSLASHglsdisp] = ACTIONS(5097), + [anon_sym_BSLASHglslink] = ACTIONS(5097), + [anon_sym_BSLASHglstext] = ACTIONS(5097), + [anon_sym_BSLASHGlstext] = ACTIONS(5097), + [anon_sym_BSLASHGLStext] = ACTIONS(5097), + [anon_sym_BSLASHglsfirst] = ACTIONS(5097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), + [anon_sym_BSLASHglsplural] = ACTIONS(5097), + [anon_sym_BSLASHGlsplural] = ACTIONS(5097), + [anon_sym_BSLASHGLSplural] = ACTIONS(5097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHglsname] = ACTIONS(5097), + [anon_sym_BSLASHGlsname] = ACTIONS(5097), + [anon_sym_BSLASHGLSname] = ACTIONS(5097), + [anon_sym_BSLASHglssymbol] = ACTIONS(5097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), + [anon_sym_BSLASHglsdesc] = ACTIONS(5097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), + [anon_sym_BSLASHglsuseri] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), + [anon_sym_BSLASHglsuserii] = ACTIONS(5097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), + [anon_sym_BSLASHglsuserv] = ACTIONS(5097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), + [anon_sym_BSLASHglsuservi] = ACTIONS(5097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), + [anon_sym_BSLASHnewacronym] = ACTIONS(5097), + [anon_sym_BSLASHacrshort] = ACTIONS(5097), + [anon_sym_BSLASHAcrshort] = ACTIONS(5097), + [anon_sym_BSLASHACRshort] = ACTIONS(5097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), + [anon_sym_BSLASHacrlong] = ACTIONS(5097), + [anon_sym_BSLASHAcrlong] = ACTIONS(5097), + [anon_sym_BSLASHACRlong] = ACTIONS(5097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), + [anon_sym_BSLASHacrfull] = ACTIONS(5097), + [anon_sym_BSLASHAcrfull] = ACTIONS(5097), + [anon_sym_BSLASHACRfull] = ACTIONS(5097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), + [anon_sym_BSLASHacs] = ACTIONS(5097), + [anon_sym_BSLASHAcs] = ACTIONS(5097), + [anon_sym_BSLASHacsp] = ACTIONS(5097), + [anon_sym_BSLASHAcsp] = ACTIONS(5097), + [anon_sym_BSLASHacl] = ACTIONS(5097), + [anon_sym_BSLASHAcl] = ACTIONS(5097), + [anon_sym_BSLASHaclp] = ACTIONS(5097), + [anon_sym_BSLASHAclp] = ACTIONS(5097), + [anon_sym_BSLASHacf] = ACTIONS(5097), + [anon_sym_BSLASHAcf] = ACTIONS(5097), + [anon_sym_BSLASHacfp] = ACTIONS(5097), + [anon_sym_BSLASHAcfp] = ACTIONS(5097), + [anon_sym_BSLASHac] = ACTIONS(5097), + [anon_sym_BSLASHAc] = ACTIONS(5097), + [anon_sym_BSLASHacp] = ACTIONS(5097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), + [anon_sym_BSLASHcolor] = ACTIONS(5097), + [anon_sym_BSLASHcolorbox] = ACTIONS(5097), + [anon_sym_BSLASHtextcolor] = ACTIONS(5097), + [anon_sym_BSLASHpagecolor] = ACTIONS(5097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), + [anon_sym_BSLASHtext] = ACTIONS(5097), + [anon_sym_BSLASHintertext] = ACTIONS(5097), + [anon_sym_shortintertext] = ACTIONS(5097), }, - [1353] = { - [sym_command_name] = ACTIONS(5041), + [1250] = { + [sym_command_name] = ACTIONS(5101), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_EQ] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASHbegin] = ACTIONS(5041), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), - }, - [1354] = { - [sym_command_name] = ACTIONS(5159), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5159), - [anon_sym_LPAREN] = ACTIONS(5157), - [anon_sym_RPAREN] = ACTIONS(5157), - [anon_sym_LBRACK] = ACTIONS(5157), - [anon_sym_RBRACK] = ACTIONS(5157), - [anon_sym_COMMA] = ACTIONS(5157), - [anon_sym_EQ] = ACTIONS(5157), - [anon_sym_LBRACE] = ACTIONS(5157), - [sym_word] = ACTIONS(5159), - [sym_placeholder] = ACTIONS(5157), - [anon_sym_PLUS] = ACTIONS(5159), - [anon_sym_DASH] = ACTIONS(5159), - [anon_sym_STAR] = ACTIONS(5159), - [anon_sym_SLASH] = ACTIONS(5159), - [anon_sym_CARET] = ACTIONS(5159), - [anon_sym__] = ACTIONS(5159), - [anon_sym_LT] = ACTIONS(5159), - [anon_sym_GT] = ACTIONS(5159), - [anon_sym_BANG] = ACTIONS(5159), - [anon_sym_PIPE] = ACTIONS(5159), - [anon_sym_COLON] = ACTIONS(5159), - [anon_sym_SQUOTE] = ACTIONS(5159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5157), - [anon_sym_DOLLAR] = ACTIONS(5159), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5157), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5157), - [anon_sym_BSLASHbegin] = ACTIONS(5159), - [anon_sym_BSLASHusepackage] = ACTIONS(5159), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5159), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5159), - [anon_sym_BSLASHinclude] = ACTIONS(5159), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5159), - [anon_sym_BSLASHinput] = ACTIONS(5159), - [anon_sym_BSLASHsubfile] = ACTIONS(5159), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5159), - [anon_sym_BSLASHbibliography] = ACTIONS(5159), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5159), - [anon_sym_BSLASHincludesvg] = ACTIONS(5159), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5159), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5159), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5159), - [anon_sym_BSLASHimport] = ACTIONS(5159), - [anon_sym_BSLASHsubimport] = ACTIONS(5159), - [anon_sym_BSLASHinputfrom] = ACTIONS(5159), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5159), - [anon_sym_BSLASHincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5159), - [anon_sym_BSLASHcaption] = ACTIONS(5159), - [anon_sym_BSLASHcite] = ACTIONS(5159), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCite] = ACTIONS(5159), - [anon_sym_BSLASHnocite] = ACTIONS(5159), - [anon_sym_BSLASHcitet] = ACTIONS(5159), - [anon_sym_BSLASHcitep] = ACTIONS(5159), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteauthor] = ACTIONS(5159), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5159), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitetitle] = ACTIONS(5159), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteyear] = ACTIONS(5159), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5157), - [anon_sym_BSLASHcitedate] = ACTIONS(5159), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5157), - [anon_sym_BSLASHciteurl] = ACTIONS(5159), - [anon_sym_BSLASHfullcite] = ACTIONS(5159), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5159), - [anon_sym_BSLASHcitealt] = ACTIONS(5159), - [anon_sym_BSLASHcitealp] = ACTIONS(5159), - [anon_sym_BSLASHcitetext] = ACTIONS(5159), - [anon_sym_BSLASHparencite] = ACTIONS(5159), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHParencite] = ACTIONS(5159), - [anon_sym_BSLASHfootcite] = ACTIONS(5159), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5159), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5159), - [anon_sym_BSLASHtextcite] = ACTIONS(5159), - [anon_sym_BSLASHTextcite] = ACTIONS(5159), - [anon_sym_BSLASHsmartcite] = ACTIONS(5159), - [anon_sym_BSLASHSmartcite] = ACTIONS(5159), - [anon_sym_BSLASHsupercite] = ACTIONS(5159), - [anon_sym_BSLASHautocite] = ACTIONS(5159), - [anon_sym_BSLASHAutocite] = ACTIONS(5159), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5157), - [anon_sym_BSLASHvolcite] = ACTIONS(5159), - [anon_sym_BSLASHVolcite] = ACTIONS(5159), - [anon_sym_BSLASHpvolcite] = ACTIONS(5159), - [anon_sym_BSLASHPvolcite] = ACTIONS(5159), - [anon_sym_BSLASHfvolcite] = ACTIONS(5159), - [anon_sym_BSLASHftvolcite] = ACTIONS(5159), - [anon_sym_BSLASHsvolcite] = ACTIONS(5159), - [anon_sym_BSLASHSvolcite] = ACTIONS(5159), - [anon_sym_BSLASHtvolcite] = ACTIONS(5159), - [anon_sym_BSLASHTvolcite] = ACTIONS(5159), - [anon_sym_BSLASHavolcite] = ACTIONS(5159), - [anon_sym_BSLASHAvolcite] = ACTIONS(5159), - [anon_sym_BSLASHnotecite] = ACTIONS(5159), - [anon_sym_BSLASHNotecite] = ACTIONS(5159), - [anon_sym_BSLASHpnotecite] = ACTIONS(5159), - [anon_sym_BSLASHPnotecite] = ACTIONS(5159), - [anon_sym_BSLASHfnotecite] = ACTIONS(5159), - [anon_sym_BSLASHlabel] = ACTIONS(5159), - [anon_sym_BSLASHref] = ACTIONS(5159), - [anon_sym_BSLASHeqref] = ACTIONS(5159), - [anon_sym_BSLASHvref] = ACTIONS(5159), - [anon_sym_BSLASHVref] = ACTIONS(5159), - [anon_sym_BSLASHautoref] = ACTIONS(5159), - [anon_sym_BSLASHpageref] = ACTIONS(5159), - [anon_sym_BSLASHcref] = ACTIONS(5159), - [anon_sym_BSLASHCref] = ACTIONS(5159), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnameCref] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5159), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5159), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5159), - [anon_sym_BSLASHlabelcref] = ACTIONS(5159), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange] = ACTIONS(5159), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHCrefrange] = ACTIONS(5159), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5157), - [anon_sym_BSLASHnewlabel] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand] = ACTIONS(5159), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5159), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5159), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5157), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5159), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5157), - [anon_sym_BSLASHdef] = ACTIONS(5159), - [anon_sym_BSLASHlet] = ACTIONS(5159), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5159), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5159), - [anon_sym_BSLASHgls] = ACTIONS(5159), - [anon_sym_BSLASHGls] = ACTIONS(5159), - [anon_sym_BSLASHGLS] = ACTIONS(5159), - [anon_sym_BSLASHglspl] = ACTIONS(5159), - [anon_sym_BSLASHGlspl] = ACTIONS(5159), - [anon_sym_BSLASHGLSpl] = ACTIONS(5159), - [anon_sym_BSLASHglsdisp] = ACTIONS(5159), - [anon_sym_BSLASHglslink] = ACTIONS(5159), - [anon_sym_BSLASHglstext] = ACTIONS(5159), - [anon_sym_BSLASHGlstext] = ACTIONS(5159), - [anon_sym_BSLASHGLStext] = ACTIONS(5159), - [anon_sym_BSLASHglsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5159), - [anon_sym_BSLASHglsplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSplural] = ACTIONS(5159), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5159), - [anon_sym_BSLASHglsname] = ACTIONS(5159), - [anon_sym_BSLASHGlsname] = ACTIONS(5159), - [anon_sym_BSLASHGLSname] = ACTIONS(5159), - [anon_sym_BSLASHglssymbol] = ACTIONS(5159), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5159), - [anon_sym_BSLASHglsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5159), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5159), - [anon_sym_BSLASHglsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5159), - [anon_sym_BSLASHglsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5159), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5159), - [anon_sym_BSLASHglsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5159), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5159), - [anon_sym_BSLASHglsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5159), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5159), - [anon_sym_BSLASHnewacronym] = ACTIONS(5159), - [anon_sym_BSLASHacrshort] = ACTIONS(5159), - [anon_sym_BSLASHAcrshort] = ACTIONS(5159), - [anon_sym_BSLASHACRshort] = ACTIONS(5159), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5159), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5159), - [anon_sym_BSLASHacrlong] = ACTIONS(5159), - [anon_sym_BSLASHAcrlong] = ACTIONS(5159), - [anon_sym_BSLASHACRlong] = ACTIONS(5159), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5159), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5159), - [anon_sym_BSLASHacrfull] = ACTIONS(5159), - [anon_sym_BSLASHAcrfull] = ACTIONS(5159), - [anon_sym_BSLASHACRfull] = ACTIONS(5159), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5159), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5159), - [anon_sym_BSLASHacs] = ACTIONS(5159), - [anon_sym_BSLASHAcs] = ACTIONS(5159), - [anon_sym_BSLASHacsp] = ACTIONS(5159), - [anon_sym_BSLASHAcsp] = ACTIONS(5159), - [anon_sym_BSLASHacl] = ACTIONS(5159), - [anon_sym_BSLASHAcl] = ACTIONS(5159), - [anon_sym_BSLASHaclp] = ACTIONS(5159), - [anon_sym_BSLASHAclp] = ACTIONS(5159), - [anon_sym_BSLASHacf] = ACTIONS(5159), - [anon_sym_BSLASHAcf] = ACTIONS(5159), - [anon_sym_BSLASHacfp] = ACTIONS(5159), - [anon_sym_BSLASHAcfp] = ACTIONS(5159), - [anon_sym_BSLASHac] = ACTIONS(5159), - [anon_sym_BSLASHAc] = ACTIONS(5159), - [anon_sym_BSLASHacp] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5159), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5159), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5159), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5159), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5159), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5159), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5159), - [anon_sym_BSLASHcolor] = ACTIONS(5159), - [anon_sym_BSLASHcolorbox] = ACTIONS(5159), - [anon_sym_BSLASHtextcolor] = ACTIONS(5159), - [anon_sym_BSLASHpagecolor] = ACTIONS(5159), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5159), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5159), - }, - [1355] = { - [sym_command_name] = ACTIONS(5259), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5259), - [anon_sym_LPAREN] = ACTIONS(5257), - [anon_sym_RPAREN] = ACTIONS(5257), - [anon_sym_LBRACK] = ACTIONS(5257), - [anon_sym_RBRACK] = ACTIONS(5257), - [anon_sym_COMMA] = ACTIONS(5257), - [anon_sym_EQ] = ACTIONS(5257), - [anon_sym_LBRACE] = ACTIONS(5257), - [sym_word] = ACTIONS(5259), - [sym_placeholder] = ACTIONS(5257), - [anon_sym_PLUS] = ACTIONS(5259), - [anon_sym_DASH] = ACTIONS(5259), - [anon_sym_STAR] = ACTIONS(5259), - [anon_sym_SLASH] = ACTIONS(5259), - [anon_sym_CARET] = ACTIONS(5259), - [anon_sym__] = ACTIONS(5259), - [anon_sym_LT] = ACTIONS(5259), - [anon_sym_GT] = ACTIONS(5259), - [anon_sym_BANG] = ACTIONS(5259), - [anon_sym_PIPE] = ACTIONS(5259), - [anon_sym_COLON] = ACTIONS(5259), - [anon_sym_SQUOTE] = ACTIONS(5259), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5257), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5257), - [anon_sym_DOLLAR] = ACTIONS(5259), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5257), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5257), - [anon_sym_BSLASHbegin] = ACTIONS(5259), - [anon_sym_BSLASHusepackage] = ACTIONS(5259), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5259), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5259), - [anon_sym_BSLASHinclude] = ACTIONS(5259), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5259), - [anon_sym_BSLASHinput] = ACTIONS(5259), - [anon_sym_BSLASHsubfile] = ACTIONS(5259), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5259), - [anon_sym_BSLASHbibliography] = ACTIONS(5259), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5259), - [anon_sym_BSLASHincludesvg] = ACTIONS(5259), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5259), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5259), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5259), - [anon_sym_BSLASHimport] = ACTIONS(5259), - [anon_sym_BSLASHsubimport] = ACTIONS(5259), - [anon_sym_BSLASHinputfrom] = ACTIONS(5259), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5259), - [anon_sym_BSLASHincludefrom] = ACTIONS(5259), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5259), - [anon_sym_BSLASHcaption] = ACTIONS(5259), - [anon_sym_BSLASHcite] = ACTIONS(5259), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCite] = ACTIONS(5259), - [anon_sym_BSLASHnocite] = ACTIONS(5259), - [anon_sym_BSLASHcitet] = ACTIONS(5259), - [anon_sym_BSLASHcitep] = ACTIONS(5259), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteauthor] = ACTIONS(5259), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5259), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitetitle] = ACTIONS(5259), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteyear] = ACTIONS(5259), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5257), - [anon_sym_BSLASHcitedate] = ACTIONS(5259), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5257), - [anon_sym_BSLASHciteurl] = ACTIONS(5259), - [anon_sym_BSLASHfullcite] = ACTIONS(5259), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5259), - [anon_sym_BSLASHcitealt] = ACTIONS(5259), - [anon_sym_BSLASHcitealp] = ACTIONS(5259), - [anon_sym_BSLASHcitetext] = ACTIONS(5259), - [anon_sym_BSLASHparencite] = ACTIONS(5259), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHParencite] = ACTIONS(5259), - [anon_sym_BSLASHfootcite] = ACTIONS(5259), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5259), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5259), - [anon_sym_BSLASHtextcite] = ACTIONS(5259), - [anon_sym_BSLASHTextcite] = ACTIONS(5259), - [anon_sym_BSLASHsmartcite] = ACTIONS(5259), - [anon_sym_BSLASHSmartcite] = ACTIONS(5259), - [anon_sym_BSLASHsupercite] = ACTIONS(5259), - [anon_sym_BSLASHautocite] = ACTIONS(5259), - [anon_sym_BSLASHAutocite] = ACTIONS(5259), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5257), - [anon_sym_BSLASHvolcite] = ACTIONS(5259), - [anon_sym_BSLASHVolcite] = ACTIONS(5259), - [anon_sym_BSLASHpvolcite] = ACTIONS(5259), - [anon_sym_BSLASHPvolcite] = ACTIONS(5259), - [anon_sym_BSLASHfvolcite] = ACTIONS(5259), - [anon_sym_BSLASHftvolcite] = ACTIONS(5259), - [anon_sym_BSLASHsvolcite] = ACTIONS(5259), - [anon_sym_BSLASHSvolcite] = ACTIONS(5259), - [anon_sym_BSLASHtvolcite] = ACTIONS(5259), - [anon_sym_BSLASHTvolcite] = ACTIONS(5259), - [anon_sym_BSLASHavolcite] = ACTIONS(5259), - [anon_sym_BSLASHAvolcite] = ACTIONS(5259), - [anon_sym_BSLASHnotecite] = ACTIONS(5259), - [anon_sym_BSLASHNotecite] = ACTIONS(5259), - [anon_sym_BSLASHpnotecite] = ACTIONS(5259), - [anon_sym_BSLASHPnotecite] = ACTIONS(5259), - [anon_sym_BSLASHfnotecite] = ACTIONS(5259), - [anon_sym_BSLASHlabel] = ACTIONS(5259), - [anon_sym_BSLASHref] = ACTIONS(5259), - [anon_sym_BSLASHeqref] = ACTIONS(5259), - [anon_sym_BSLASHvref] = ACTIONS(5259), - [anon_sym_BSLASHVref] = ACTIONS(5259), - [anon_sym_BSLASHautoref] = ACTIONS(5259), - [anon_sym_BSLASHpageref] = ACTIONS(5259), - [anon_sym_BSLASHcref] = ACTIONS(5259), - [anon_sym_BSLASHCref] = ACTIONS(5259), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5257), - [anon_sym_BSLASHnamecref] = ACTIONS(5259), - [anon_sym_BSLASHnameCref] = ACTIONS(5259), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5259), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5259), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5259), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5259), - [anon_sym_BSLASHlabelcref] = ACTIONS(5259), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5259), - [anon_sym_BSLASHcrefrange] = ACTIONS(5259), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5257), - [anon_sym_BSLASHCrefrange] = ACTIONS(5259), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5257), - [anon_sym_BSLASHnewlabel] = ACTIONS(5259), - [anon_sym_BSLASHnewcommand] = ACTIONS(5259), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5259), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5259), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5257), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5259), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5257), - [anon_sym_BSLASHdef] = ACTIONS(5259), - [anon_sym_BSLASHlet] = ACTIONS(5259), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5259), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5259), - [anon_sym_BSLASHgls] = ACTIONS(5259), - [anon_sym_BSLASHGls] = ACTIONS(5259), - [anon_sym_BSLASHGLS] = ACTIONS(5259), - [anon_sym_BSLASHglspl] = ACTIONS(5259), - [anon_sym_BSLASHGlspl] = ACTIONS(5259), - [anon_sym_BSLASHGLSpl] = ACTIONS(5259), - [anon_sym_BSLASHglsdisp] = ACTIONS(5259), - [anon_sym_BSLASHglslink] = ACTIONS(5259), - [anon_sym_BSLASHglstext] = ACTIONS(5259), - [anon_sym_BSLASHGlstext] = ACTIONS(5259), - [anon_sym_BSLASHGLStext] = ACTIONS(5259), - [anon_sym_BSLASHglsfirst] = ACTIONS(5259), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5259), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5259), - [anon_sym_BSLASHglsplural] = ACTIONS(5259), - [anon_sym_BSLASHGlsplural] = ACTIONS(5259), - [anon_sym_BSLASHGLSplural] = ACTIONS(5259), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5259), - [anon_sym_BSLASHglsname] = ACTIONS(5259), - [anon_sym_BSLASHGlsname] = ACTIONS(5259), - [anon_sym_BSLASHGLSname] = ACTIONS(5259), - [anon_sym_BSLASHglssymbol] = ACTIONS(5259), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5259), - [anon_sym_BSLASHglsdesc] = ACTIONS(5259), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5259), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5259), - [anon_sym_BSLASHglsuseri] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5259), - [anon_sym_BSLASHglsuserii] = ACTIONS(5259), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5259), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5259), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5259), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5259), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5259), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5259), - [anon_sym_BSLASHglsuserv] = ACTIONS(5259), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5259), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5259), - [anon_sym_BSLASHglsuservi] = ACTIONS(5259), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5259), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5259), - [anon_sym_BSLASHnewacronym] = ACTIONS(5259), - [anon_sym_BSLASHacrshort] = ACTIONS(5259), - [anon_sym_BSLASHAcrshort] = ACTIONS(5259), - [anon_sym_BSLASHACRshort] = ACTIONS(5259), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5259), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5259), - [anon_sym_BSLASHacrlong] = ACTIONS(5259), - [anon_sym_BSLASHAcrlong] = ACTIONS(5259), - [anon_sym_BSLASHACRlong] = ACTIONS(5259), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5259), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5259), - [anon_sym_BSLASHacrfull] = ACTIONS(5259), - [anon_sym_BSLASHAcrfull] = ACTIONS(5259), - [anon_sym_BSLASHACRfull] = ACTIONS(5259), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5259), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5259), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5259), - [anon_sym_BSLASHacs] = ACTIONS(5259), - [anon_sym_BSLASHAcs] = ACTIONS(5259), - [anon_sym_BSLASHacsp] = ACTIONS(5259), - [anon_sym_BSLASHAcsp] = ACTIONS(5259), - [anon_sym_BSLASHacl] = ACTIONS(5259), - [anon_sym_BSLASHAcl] = ACTIONS(5259), - [anon_sym_BSLASHaclp] = ACTIONS(5259), - [anon_sym_BSLASHAclp] = ACTIONS(5259), - [anon_sym_BSLASHacf] = ACTIONS(5259), - [anon_sym_BSLASHAcf] = ACTIONS(5259), - [anon_sym_BSLASHacfp] = ACTIONS(5259), - [anon_sym_BSLASHAcfp] = ACTIONS(5259), - [anon_sym_BSLASHac] = ACTIONS(5259), - [anon_sym_BSLASHAc] = ACTIONS(5259), - [anon_sym_BSLASHacp] = ACTIONS(5259), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5259), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5259), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5259), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5259), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5259), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5259), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5259), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5259), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5259), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5259), - [anon_sym_BSLASHcolor] = ACTIONS(5259), - [anon_sym_BSLASHcolorbox] = ACTIONS(5259), - [anon_sym_BSLASHtextcolor] = ACTIONS(5259), - [anon_sym_BSLASHpagecolor] = ACTIONS(5259), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5259), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5259), - }, - [1356] = { - [sym_command_name] = ACTIONS(5179), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5179), - [anon_sym_LPAREN] = ACTIONS(5177), - [anon_sym_RPAREN] = ACTIONS(5177), - [anon_sym_LBRACK] = ACTIONS(5177), - [anon_sym_RBRACK] = ACTIONS(5177), - [anon_sym_COMMA] = ACTIONS(5177), - [anon_sym_EQ] = ACTIONS(5177), - [anon_sym_LBRACE] = ACTIONS(5177), - [sym_word] = ACTIONS(5179), - [sym_placeholder] = ACTIONS(5177), - [anon_sym_PLUS] = ACTIONS(5179), - [anon_sym_DASH] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(5179), - [anon_sym_SLASH] = ACTIONS(5179), - [anon_sym_CARET] = ACTIONS(5179), - [anon_sym__] = ACTIONS(5179), - [anon_sym_LT] = ACTIONS(5179), - [anon_sym_GT] = ACTIONS(5179), - [anon_sym_BANG] = ACTIONS(5179), - [anon_sym_PIPE] = ACTIONS(5179), - [anon_sym_COLON] = ACTIONS(5179), - [anon_sym_SQUOTE] = ACTIONS(5179), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5177), - [anon_sym_DOLLAR] = ACTIONS(5179), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5177), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5177), - [anon_sym_BSLASHbegin] = ACTIONS(5179), - [anon_sym_BSLASHusepackage] = ACTIONS(5179), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5179), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5179), - [anon_sym_BSLASHinclude] = ACTIONS(5179), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5179), - [anon_sym_BSLASHinput] = ACTIONS(5179), - [anon_sym_BSLASHsubfile] = ACTIONS(5179), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5179), - [anon_sym_BSLASHbibliography] = ACTIONS(5179), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5179), - [anon_sym_BSLASHincludesvg] = ACTIONS(5179), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5179), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5179), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5179), - [anon_sym_BSLASHimport] = ACTIONS(5179), - [anon_sym_BSLASHsubimport] = ACTIONS(5179), - [anon_sym_BSLASHinputfrom] = ACTIONS(5179), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5179), - [anon_sym_BSLASHincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5179), - [anon_sym_BSLASHcaption] = ACTIONS(5179), - [anon_sym_BSLASHcite] = ACTIONS(5179), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCite] = ACTIONS(5179), - [anon_sym_BSLASHnocite] = ACTIONS(5179), - [anon_sym_BSLASHcitet] = ACTIONS(5179), - [anon_sym_BSLASHcitep] = ACTIONS(5179), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteauthor] = ACTIONS(5179), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5179), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitetitle] = ACTIONS(5179), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteyear] = ACTIONS(5179), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5177), - [anon_sym_BSLASHcitedate] = ACTIONS(5179), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5177), - [anon_sym_BSLASHciteurl] = ACTIONS(5179), - [anon_sym_BSLASHfullcite] = ACTIONS(5179), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5179), - [anon_sym_BSLASHcitealt] = ACTIONS(5179), - [anon_sym_BSLASHcitealp] = ACTIONS(5179), - [anon_sym_BSLASHcitetext] = ACTIONS(5179), - [anon_sym_BSLASHparencite] = ACTIONS(5179), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHParencite] = ACTIONS(5179), - [anon_sym_BSLASHfootcite] = ACTIONS(5179), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5179), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5179), - [anon_sym_BSLASHtextcite] = ACTIONS(5179), - [anon_sym_BSLASHTextcite] = ACTIONS(5179), - [anon_sym_BSLASHsmartcite] = ACTIONS(5179), - [anon_sym_BSLASHSmartcite] = ACTIONS(5179), - [anon_sym_BSLASHsupercite] = ACTIONS(5179), - [anon_sym_BSLASHautocite] = ACTIONS(5179), - [anon_sym_BSLASHAutocite] = ACTIONS(5179), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5177), - [anon_sym_BSLASHvolcite] = ACTIONS(5179), - [anon_sym_BSLASHVolcite] = ACTIONS(5179), - [anon_sym_BSLASHpvolcite] = ACTIONS(5179), - [anon_sym_BSLASHPvolcite] = ACTIONS(5179), - [anon_sym_BSLASHfvolcite] = ACTIONS(5179), - [anon_sym_BSLASHftvolcite] = ACTIONS(5179), - [anon_sym_BSLASHsvolcite] = ACTIONS(5179), - [anon_sym_BSLASHSvolcite] = ACTIONS(5179), - [anon_sym_BSLASHtvolcite] = ACTIONS(5179), - [anon_sym_BSLASHTvolcite] = ACTIONS(5179), - [anon_sym_BSLASHavolcite] = ACTIONS(5179), - [anon_sym_BSLASHAvolcite] = ACTIONS(5179), - [anon_sym_BSLASHnotecite] = ACTIONS(5179), - [anon_sym_BSLASHNotecite] = ACTIONS(5179), - [anon_sym_BSLASHpnotecite] = ACTIONS(5179), - [anon_sym_BSLASHPnotecite] = ACTIONS(5179), - [anon_sym_BSLASHfnotecite] = ACTIONS(5179), - [anon_sym_BSLASHlabel] = ACTIONS(5179), - [anon_sym_BSLASHref] = ACTIONS(5179), - [anon_sym_BSLASHeqref] = ACTIONS(5179), - [anon_sym_BSLASHvref] = ACTIONS(5179), - [anon_sym_BSLASHVref] = ACTIONS(5179), - [anon_sym_BSLASHautoref] = ACTIONS(5179), - [anon_sym_BSLASHpageref] = ACTIONS(5179), - [anon_sym_BSLASHcref] = ACTIONS(5179), - [anon_sym_BSLASHCref] = ACTIONS(5179), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnameCref] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5179), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5179), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5179), - [anon_sym_BSLASHlabelcref] = ACTIONS(5179), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange] = ACTIONS(5179), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHCrefrange] = ACTIONS(5179), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5177), - [anon_sym_BSLASHnewlabel] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand] = ACTIONS(5179), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5179), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5179), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5177), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5179), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5177), - [anon_sym_BSLASHdef] = ACTIONS(5179), - [anon_sym_BSLASHlet] = ACTIONS(5179), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5179), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5179), - [anon_sym_BSLASHgls] = ACTIONS(5179), - [anon_sym_BSLASHGls] = ACTIONS(5179), - [anon_sym_BSLASHGLS] = ACTIONS(5179), - [anon_sym_BSLASHglspl] = ACTIONS(5179), - [anon_sym_BSLASHGlspl] = ACTIONS(5179), - [anon_sym_BSLASHGLSpl] = ACTIONS(5179), - [anon_sym_BSLASHglsdisp] = ACTIONS(5179), - [anon_sym_BSLASHglslink] = ACTIONS(5179), - [anon_sym_BSLASHglstext] = ACTIONS(5179), - [anon_sym_BSLASHGlstext] = ACTIONS(5179), - [anon_sym_BSLASHGLStext] = ACTIONS(5179), - [anon_sym_BSLASHglsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5179), - [anon_sym_BSLASHglsplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSplural] = ACTIONS(5179), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5179), - [anon_sym_BSLASHglsname] = ACTIONS(5179), - [anon_sym_BSLASHGlsname] = ACTIONS(5179), - [anon_sym_BSLASHGLSname] = ACTIONS(5179), - [anon_sym_BSLASHglssymbol] = ACTIONS(5179), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5179), - [anon_sym_BSLASHglsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5179), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5179), - [anon_sym_BSLASHglsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5179), - [anon_sym_BSLASHglsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5179), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5179), - [anon_sym_BSLASHglsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5179), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5179), - [anon_sym_BSLASHglsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5179), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5179), - [anon_sym_BSLASHnewacronym] = ACTIONS(5179), - [anon_sym_BSLASHacrshort] = ACTIONS(5179), - [anon_sym_BSLASHAcrshort] = ACTIONS(5179), - [anon_sym_BSLASHACRshort] = ACTIONS(5179), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5179), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5179), - [anon_sym_BSLASHacrlong] = ACTIONS(5179), - [anon_sym_BSLASHAcrlong] = ACTIONS(5179), - [anon_sym_BSLASHACRlong] = ACTIONS(5179), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5179), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5179), - [anon_sym_BSLASHacrfull] = ACTIONS(5179), - [anon_sym_BSLASHAcrfull] = ACTIONS(5179), - [anon_sym_BSLASHACRfull] = ACTIONS(5179), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5179), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5179), - [anon_sym_BSLASHacs] = ACTIONS(5179), - [anon_sym_BSLASHAcs] = ACTIONS(5179), - [anon_sym_BSLASHacsp] = ACTIONS(5179), - [anon_sym_BSLASHAcsp] = ACTIONS(5179), - [anon_sym_BSLASHacl] = ACTIONS(5179), - [anon_sym_BSLASHAcl] = ACTIONS(5179), - [anon_sym_BSLASHaclp] = ACTIONS(5179), - [anon_sym_BSLASHAclp] = ACTIONS(5179), - [anon_sym_BSLASHacf] = ACTIONS(5179), - [anon_sym_BSLASHAcf] = ACTIONS(5179), - [anon_sym_BSLASHacfp] = ACTIONS(5179), - [anon_sym_BSLASHAcfp] = ACTIONS(5179), - [anon_sym_BSLASHac] = ACTIONS(5179), - [anon_sym_BSLASHAc] = ACTIONS(5179), - [anon_sym_BSLASHacp] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5179), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5179), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5179), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5179), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5179), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5179), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5179), - [anon_sym_BSLASHcolor] = ACTIONS(5179), - [anon_sym_BSLASHcolorbox] = ACTIONS(5179), - [anon_sym_BSLASHtextcolor] = ACTIONS(5179), - [anon_sym_BSLASHpagecolor] = ACTIONS(5179), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5179), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5179), - }, - [1357] = { - [sym_command_name] = ACTIONS(4945), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4945), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4943), - [anon_sym_RBRACK] = ACTIONS(4943), - [anon_sym_COMMA] = ACTIONS(4943), - [anon_sym_EQ] = ACTIONS(4943), - [anon_sym_LBRACE] = ACTIONS(4943), - [sym_word] = ACTIONS(4945), - [sym_placeholder] = ACTIONS(4943), - [anon_sym_PLUS] = ACTIONS(4945), - [anon_sym_DASH] = ACTIONS(4945), - [anon_sym_STAR] = ACTIONS(4945), - [anon_sym_SLASH] = ACTIONS(4945), - [anon_sym_CARET] = ACTIONS(4945), - [anon_sym__] = ACTIONS(4945), - [anon_sym_LT] = ACTIONS(4945), - [anon_sym_GT] = ACTIONS(4945), - [anon_sym_BANG] = ACTIONS(4945), - [anon_sym_PIPE] = ACTIONS(4945), - [anon_sym_COLON] = ACTIONS(4945), - [anon_sym_SQUOTE] = ACTIONS(4945), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4943), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4945), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4943), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4943), - [anon_sym_BSLASHbegin] = ACTIONS(4945), - [anon_sym_BSLASHusepackage] = ACTIONS(4945), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4945), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4945), - [anon_sym_BSLASHinclude] = ACTIONS(4945), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4945), - [anon_sym_BSLASHinput] = ACTIONS(4945), - [anon_sym_BSLASHsubfile] = ACTIONS(4945), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4945), - [anon_sym_BSLASHbibliography] = ACTIONS(4945), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4945), - [anon_sym_BSLASHincludesvg] = ACTIONS(4945), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4945), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4945), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4945), - [anon_sym_BSLASHimport] = ACTIONS(4945), - [anon_sym_BSLASHsubimport] = ACTIONS(4945), - [anon_sym_BSLASHinputfrom] = ACTIONS(4945), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4945), - [anon_sym_BSLASHincludefrom] = ACTIONS(4945), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4945), - [anon_sym_BSLASHcaption] = ACTIONS(4945), - [anon_sym_BSLASHcite] = ACTIONS(4945), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCite] = ACTIONS(4945), - [anon_sym_BSLASHnocite] = ACTIONS(4945), - [anon_sym_BSLASHcitet] = ACTIONS(4945), - [anon_sym_BSLASHcitep] = ACTIONS(4945), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteauthor] = ACTIONS(4945), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4945), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitetitle] = ACTIONS(4945), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteyear] = ACTIONS(4945), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4943), - [anon_sym_BSLASHcitedate] = ACTIONS(4945), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4943), - [anon_sym_BSLASHciteurl] = ACTIONS(4945), - [anon_sym_BSLASHfullcite] = ACTIONS(4945), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4945), - [anon_sym_BSLASHcitealt] = ACTIONS(4945), - [anon_sym_BSLASHcitealp] = ACTIONS(4945), - [anon_sym_BSLASHcitetext] = ACTIONS(4945), - [anon_sym_BSLASHparencite] = ACTIONS(4945), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHParencite] = ACTIONS(4945), - [anon_sym_BSLASHfootcite] = ACTIONS(4945), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4945), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4945), - [anon_sym_BSLASHtextcite] = ACTIONS(4945), - [anon_sym_BSLASHTextcite] = ACTIONS(4945), - [anon_sym_BSLASHsmartcite] = ACTIONS(4945), - [anon_sym_BSLASHSmartcite] = ACTIONS(4945), - [anon_sym_BSLASHsupercite] = ACTIONS(4945), - [anon_sym_BSLASHautocite] = ACTIONS(4945), - [anon_sym_BSLASHAutocite] = ACTIONS(4945), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4943), - [anon_sym_BSLASHvolcite] = ACTIONS(4945), - [anon_sym_BSLASHVolcite] = ACTIONS(4945), - [anon_sym_BSLASHpvolcite] = ACTIONS(4945), - [anon_sym_BSLASHPvolcite] = ACTIONS(4945), - [anon_sym_BSLASHfvolcite] = ACTIONS(4945), - [anon_sym_BSLASHftvolcite] = ACTIONS(4945), - [anon_sym_BSLASHsvolcite] = ACTIONS(4945), - [anon_sym_BSLASHSvolcite] = ACTIONS(4945), - [anon_sym_BSLASHtvolcite] = ACTIONS(4945), - [anon_sym_BSLASHTvolcite] = ACTIONS(4945), - [anon_sym_BSLASHavolcite] = ACTIONS(4945), - [anon_sym_BSLASHAvolcite] = ACTIONS(4945), - [anon_sym_BSLASHnotecite] = ACTIONS(4945), - [anon_sym_BSLASHNotecite] = ACTIONS(4945), - [anon_sym_BSLASHpnotecite] = ACTIONS(4945), - [anon_sym_BSLASHPnotecite] = ACTIONS(4945), - [anon_sym_BSLASHfnotecite] = ACTIONS(4945), - [anon_sym_BSLASHlabel] = ACTIONS(4945), - [anon_sym_BSLASHref] = ACTIONS(4945), - [anon_sym_BSLASHeqref] = ACTIONS(4945), - [anon_sym_BSLASHvref] = ACTIONS(4945), - [anon_sym_BSLASHVref] = ACTIONS(4945), - [anon_sym_BSLASHautoref] = ACTIONS(4945), - [anon_sym_BSLASHpageref] = ACTIONS(4945), - [anon_sym_BSLASHcref] = ACTIONS(4945), - [anon_sym_BSLASHCref] = ACTIONS(4945), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4943), - [anon_sym_BSLASHnamecref] = ACTIONS(4945), - [anon_sym_BSLASHnameCref] = ACTIONS(4945), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4945), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4945), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4945), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4945), - [anon_sym_BSLASHlabelcref] = ACTIONS(4945), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4945), - [anon_sym_BSLASHcrefrange] = ACTIONS(4945), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4943), - [anon_sym_BSLASHCrefrange] = ACTIONS(4945), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4943), - [anon_sym_BSLASHnewlabel] = ACTIONS(4945), - [anon_sym_BSLASHnewcommand] = ACTIONS(4945), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4945), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4945), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4943), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4945), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4943), - [anon_sym_BSLASHdef] = ACTIONS(4945), - [anon_sym_BSLASHlet] = ACTIONS(4945), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4945), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4945), - [anon_sym_BSLASHgls] = ACTIONS(4945), - [anon_sym_BSLASHGls] = ACTIONS(4945), - [anon_sym_BSLASHGLS] = ACTIONS(4945), - [anon_sym_BSLASHglspl] = ACTIONS(4945), - [anon_sym_BSLASHGlspl] = ACTIONS(4945), - [anon_sym_BSLASHGLSpl] = ACTIONS(4945), - [anon_sym_BSLASHglsdisp] = ACTIONS(4945), - [anon_sym_BSLASHglslink] = ACTIONS(4945), - [anon_sym_BSLASHglstext] = ACTIONS(4945), - [anon_sym_BSLASHGlstext] = ACTIONS(4945), - [anon_sym_BSLASHGLStext] = ACTIONS(4945), - [anon_sym_BSLASHglsfirst] = ACTIONS(4945), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4945), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4945), - [anon_sym_BSLASHglsplural] = ACTIONS(4945), - [anon_sym_BSLASHGlsplural] = ACTIONS(4945), - [anon_sym_BSLASHGLSplural] = ACTIONS(4945), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4945), - [anon_sym_BSLASHglsname] = ACTIONS(4945), - [anon_sym_BSLASHGlsname] = ACTIONS(4945), - [anon_sym_BSLASHGLSname] = ACTIONS(4945), - [anon_sym_BSLASHglssymbol] = ACTIONS(4945), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4945), - [anon_sym_BSLASHglsdesc] = ACTIONS(4945), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4945), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4945), - [anon_sym_BSLASHglsuseri] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4945), - [anon_sym_BSLASHglsuserii] = ACTIONS(4945), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4945), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4945), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4945), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4945), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4945), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4945), - [anon_sym_BSLASHglsuserv] = ACTIONS(4945), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4945), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4945), - [anon_sym_BSLASHglsuservi] = ACTIONS(4945), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4945), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4945), - [anon_sym_BSLASHnewacronym] = ACTIONS(4945), - [anon_sym_BSLASHacrshort] = ACTIONS(4945), - [anon_sym_BSLASHAcrshort] = ACTIONS(4945), - [anon_sym_BSLASHACRshort] = ACTIONS(4945), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4945), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4945), - [anon_sym_BSLASHacrlong] = ACTIONS(4945), - [anon_sym_BSLASHAcrlong] = ACTIONS(4945), - [anon_sym_BSLASHACRlong] = ACTIONS(4945), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4945), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4945), - [anon_sym_BSLASHacrfull] = ACTIONS(4945), - [anon_sym_BSLASHAcrfull] = ACTIONS(4945), - [anon_sym_BSLASHACRfull] = ACTIONS(4945), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4945), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4945), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4945), - [anon_sym_BSLASHacs] = ACTIONS(4945), - [anon_sym_BSLASHAcs] = ACTIONS(4945), - [anon_sym_BSLASHacsp] = ACTIONS(4945), - [anon_sym_BSLASHAcsp] = ACTIONS(4945), - [anon_sym_BSLASHacl] = ACTIONS(4945), - [anon_sym_BSLASHAcl] = ACTIONS(4945), - [anon_sym_BSLASHaclp] = ACTIONS(4945), - [anon_sym_BSLASHAclp] = ACTIONS(4945), - [anon_sym_BSLASHacf] = ACTIONS(4945), - [anon_sym_BSLASHAcf] = ACTIONS(4945), - [anon_sym_BSLASHacfp] = ACTIONS(4945), - [anon_sym_BSLASHAcfp] = ACTIONS(4945), - [anon_sym_BSLASHac] = ACTIONS(4945), - [anon_sym_BSLASHAc] = ACTIONS(4945), - [anon_sym_BSLASHacp] = ACTIONS(4945), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4945), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4945), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4945), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4945), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4945), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4945), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4945), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4945), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4945), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4945), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4945), - [anon_sym_BSLASHcolor] = ACTIONS(4945), - [anon_sym_BSLASHcolorbox] = ACTIONS(4945), - [anon_sym_BSLASHtextcolor] = ACTIONS(4945), - [anon_sym_BSLASHpagecolor] = ACTIONS(4945), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4945), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4945), + [anon_sym_BSLASHiffalse] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5099), + [anon_sym_RPAREN] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [anon_sym_RBRACK] = ACTIONS(5099), + [anon_sym_COMMA] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_BSLASHpart] = ACTIONS(5101), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddpart] = ACTIONS(5101), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5099), + [anon_sym_BSLASHchapter] = ACTIONS(5101), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddchap] = ACTIONS(5101), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsection] = ACTIONS(5101), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHaddsec] = ACTIONS(5101), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubsection] = ACTIONS(5101), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5101), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5099), + [anon_sym_BSLASHparagraph] = ACTIONS(5101), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5099), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5101), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5099), + [anon_sym_BSLASHitem] = ACTIONS(5101), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5099), + [sym_word] = ACTIONS(5101), + [sym_placeholder] = ACTIONS(5099), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_CARET] = ACTIONS(5101), + [anon_sym__] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_BANG] = ACTIONS(5101), + [anon_sym_PIPE] = ACTIONS(5101), + [anon_sym_COLON] = ACTIONS(5101), + [anon_sym_SQUOTE] = ACTIONS(5101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), + [anon_sym_DOLLAR] = ACTIONS(5101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), + [anon_sym_BSLASHbegin] = ACTIONS(5101), + [anon_sym_BSLASHend] = ACTIONS(5101), + [anon_sym_BSLASHusepackage] = ACTIONS(5101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), + [anon_sym_BSLASHinclude] = ACTIONS(5101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), + [anon_sym_BSLASHinput] = ACTIONS(5101), + [anon_sym_BSLASHsubfile] = ACTIONS(5101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), + [anon_sym_BSLASHbibliography] = ACTIONS(5101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), + [anon_sym_BSLASHincludesvg] = ACTIONS(5101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), + [anon_sym_BSLASHimport] = ACTIONS(5101), + [anon_sym_BSLASHsubimport] = ACTIONS(5101), + [anon_sym_BSLASHinputfrom] = ACTIONS(5101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), + [anon_sym_BSLASHincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHcaption] = ACTIONS(5101), + [anon_sym_BSLASHcite] = ACTIONS(5101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCite] = ACTIONS(5101), + [anon_sym_BSLASHnocite] = ACTIONS(5101), + [anon_sym_BSLASHcitet] = ACTIONS(5101), + [anon_sym_BSLASHcitep] = ACTIONS(5101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteauthor] = ACTIONS(5101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitetitle] = ACTIONS(5101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteyear] = ACTIONS(5101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitedate] = ACTIONS(5101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteurl] = ACTIONS(5101), + [anon_sym_BSLASHfullcite] = ACTIONS(5101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), + [anon_sym_BSLASHcitealt] = ACTIONS(5101), + [anon_sym_BSLASHcitealp] = ACTIONS(5101), + [anon_sym_BSLASHcitetext] = ACTIONS(5101), + [anon_sym_BSLASHparencite] = ACTIONS(5101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHParencite] = ACTIONS(5101), + [anon_sym_BSLASHfootcite] = ACTIONS(5101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), + [anon_sym_BSLASHtextcite] = ACTIONS(5101), + [anon_sym_BSLASHTextcite] = ACTIONS(5101), + [anon_sym_BSLASHsmartcite] = ACTIONS(5101), + [anon_sym_BSLASHSmartcite] = ACTIONS(5101), + [anon_sym_BSLASHsupercite] = ACTIONS(5101), + [anon_sym_BSLASHautocite] = ACTIONS(5101), + [anon_sym_BSLASHAutocite] = ACTIONS(5101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHvolcite] = ACTIONS(5101), + [anon_sym_BSLASHVolcite] = ACTIONS(5101), + [anon_sym_BSLASHpvolcite] = ACTIONS(5101), + [anon_sym_BSLASHPvolcite] = ACTIONS(5101), + [anon_sym_BSLASHfvolcite] = ACTIONS(5101), + [anon_sym_BSLASHftvolcite] = ACTIONS(5101), + [anon_sym_BSLASHsvolcite] = ACTIONS(5101), + [anon_sym_BSLASHSvolcite] = ACTIONS(5101), + [anon_sym_BSLASHtvolcite] = ACTIONS(5101), + [anon_sym_BSLASHTvolcite] = ACTIONS(5101), + [anon_sym_BSLASHavolcite] = ACTIONS(5101), + [anon_sym_BSLASHAvolcite] = ACTIONS(5101), + [anon_sym_BSLASHnotecite] = ACTIONS(5101), + [anon_sym_BSLASHNotecite] = ACTIONS(5101), + [anon_sym_BSLASHpnotecite] = ACTIONS(5101), + [anon_sym_BSLASHPnotecite] = ACTIONS(5101), + [anon_sym_BSLASHfnotecite] = ACTIONS(5101), + [anon_sym_BSLASHlabel] = ACTIONS(5101), + [anon_sym_BSLASHref] = ACTIONS(5101), + [anon_sym_BSLASHeqref] = ACTIONS(5101), + [anon_sym_BSLASHvref] = ACTIONS(5101), + [anon_sym_BSLASHVref] = ACTIONS(5101), + [anon_sym_BSLASHautoref] = ACTIONS(5101), + [anon_sym_BSLASHpageref] = ACTIONS(5101), + [anon_sym_BSLASHcref] = ACTIONS(5101), + [anon_sym_BSLASHCref] = ACTIONS(5101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), + [anon_sym_BSLASHnamecref] = ACTIONS(5101), + [anon_sym_BSLASHnameCref] = ACTIONS(5101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), + [anon_sym_BSLASHlabelcref] = ACTIONS(5101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), + [anon_sym_BSLASHcrefrange] = ACTIONS(5101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCrefrange] = ACTIONS(5101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), + [anon_sym_BSLASHnewlabel] = ACTIONS(5101), + [anon_sym_BSLASHnewcommand] = ACTIONS(5101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), + [anon_sym_BSLASHdef] = ACTIONS(5101), + [anon_sym_BSLASHlet] = ACTIONS(5101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), + [anon_sym_BSLASHgls] = ACTIONS(5101), + [anon_sym_BSLASHGls] = ACTIONS(5101), + [anon_sym_BSLASHGLS] = ACTIONS(5101), + [anon_sym_BSLASHglspl] = ACTIONS(5101), + [anon_sym_BSLASHGlspl] = ACTIONS(5101), + [anon_sym_BSLASHGLSpl] = ACTIONS(5101), + [anon_sym_BSLASHglsdisp] = ACTIONS(5101), + [anon_sym_BSLASHglslink] = ACTIONS(5101), + [anon_sym_BSLASHglstext] = ACTIONS(5101), + [anon_sym_BSLASHGlstext] = ACTIONS(5101), + [anon_sym_BSLASHGLStext] = ACTIONS(5101), + [anon_sym_BSLASHglsfirst] = ACTIONS(5101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), + [anon_sym_BSLASHglsplural] = ACTIONS(5101), + [anon_sym_BSLASHGlsplural] = ACTIONS(5101), + [anon_sym_BSLASHGLSplural] = ACTIONS(5101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHglsname] = ACTIONS(5101), + [anon_sym_BSLASHGlsname] = ACTIONS(5101), + [anon_sym_BSLASHGLSname] = ACTIONS(5101), + [anon_sym_BSLASHglssymbol] = ACTIONS(5101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), + [anon_sym_BSLASHglsdesc] = ACTIONS(5101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), + [anon_sym_BSLASHglsuseri] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), + [anon_sym_BSLASHglsuserii] = ACTIONS(5101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), + [anon_sym_BSLASHglsuserv] = ACTIONS(5101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), + [anon_sym_BSLASHglsuservi] = ACTIONS(5101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), + [anon_sym_BSLASHnewacronym] = ACTIONS(5101), + [anon_sym_BSLASHacrshort] = ACTIONS(5101), + [anon_sym_BSLASHAcrshort] = ACTIONS(5101), + [anon_sym_BSLASHACRshort] = ACTIONS(5101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), + [anon_sym_BSLASHacrlong] = ACTIONS(5101), + [anon_sym_BSLASHAcrlong] = ACTIONS(5101), + [anon_sym_BSLASHACRlong] = ACTIONS(5101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), + [anon_sym_BSLASHacrfull] = ACTIONS(5101), + [anon_sym_BSLASHAcrfull] = ACTIONS(5101), + [anon_sym_BSLASHACRfull] = ACTIONS(5101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), + [anon_sym_BSLASHacs] = ACTIONS(5101), + [anon_sym_BSLASHAcs] = ACTIONS(5101), + [anon_sym_BSLASHacsp] = ACTIONS(5101), + [anon_sym_BSLASHAcsp] = ACTIONS(5101), + [anon_sym_BSLASHacl] = ACTIONS(5101), + [anon_sym_BSLASHAcl] = ACTIONS(5101), + [anon_sym_BSLASHaclp] = ACTIONS(5101), + [anon_sym_BSLASHAclp] = ACTIONS(5101), + [anon_sym_BSLASHacf] = ACTIONS(5101), + [anon_sym_BSLASHAcf] = ACTIONS(5101), + [anon_sym_BSLASHacfp] = ACTIONS(5101), + [anon_sym_BSLASHAcfp] = ACTIONS(5101), + [anon_sym_BSLASHac] = ACTIONS(5101), + [anon_sym_BSLASHAc] = ACTIONS(5101), + [anon_sym_BSLASHacp] = ACTIONS(5101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), + [anon_sym_BSLASHcolor] = ACTIONS(5101), + [anon_sym_BSLASHcolorbox] = ACTIONS(5101), + [anon_sym_BSLASHtextcolor] = ACTIONS(5101), + [anon_sym_BSLASHpagecolor] = ACTIONS(5101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), + [anon_sym_BSLASHtext] = ACTIONS(5101), + [anon_sym_BSLASHintertext] = ACTIONS(5101), + [anon_sym_shortintertext] = ACTIONS(5101), }, - [1358] = { - [sym_command_name] = ACTIONS(5189), + [1251] = { + [sym_command_name] = ACTIONS(5105), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5189), - [anon_sym_LPAREN] = ACTIONS(5187), - [anon_sym_RPAREN] = ACTIONS(5187), - [anon_sym_LBRACK] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5187), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_EQ] = ACTIONS(5187), - [anon_sym_LBRACE] = ACTIONS(5187), - [sym_word] = ACTIONS(5189), - [sym_placeholder] = ACTIONS(5187), - [anon_sym_PLUS] = ACTIONS(5189), - [anon_sym_DASH] = ACTIONS(5189), - [anon_sym_STAR] = ACTIONS(5189), - [anon_sym_SLASH] = ACTIONS(5189), - [anon_sym_CARET] = ACTIONS(5189), - [anon_sym__] = ACTIONS(5189), - [anon_sym_LT] = ACTIONS(5189), - [anon_sym_GT] = ACTIONS(5189), - [anon_sym_BANG] = ACTIONS(5189), - [anon_sym_PIPE] = ACTIONS(5189), - [anon_sym_COLON] = ACTIONS(5189), - [anon_sym_SQUOTE] = ACTIONS(5189), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), - [anon_sym_DOLLAR] = ACTIONS(5189), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), - [anon_sym_BSLASHbegin] = ACTIONS(5189), - [anon_sym_BSLASHusepackage] = ACTIONS(5189), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), - [anon_sym_BSLASHinclude] = ACTIONS(5189), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), - [anon_sym_BSLASHinput] = ACTIONS(5189), - [anon_sym_BSLASHsubfile] = ACTIONS(5189), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), - [anon_sym_BSLASHbibliography] = ACTIONS(5189), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), - [anon_sym_BSLASHincludesvg] = ACTIONS(5189), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), - [anon_sym_BSLASHimport] = ACTIONS(5189), - [anon_sym_BSLASHsubimport] = ACTIONS(5189), - [anon_sym_BSLASHinputfrom] = ACTIONS(5189), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), - [anon_sym_BSLASHincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), - [anon_sym_BSLASHcaption] = ACTIONS(5189), - [anon_sym_BSLASHcite] = ACTIONS(5189), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCite] = ACTIONS(5189), - [anon_sym_BSLASHnocite] = ACTIONS(5189), - [anon_sym_BSLASHcitet] = ACTIONS(5189), - [anon_sym_BSLASHcitep] = ACTIONS(5189), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteauthor] = ACTIONS(5189), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitetitle] = ACTIONS(5189), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteyear] = ACTIONS(5189), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), - [anon_sym_BSLASHcitedate] = ACTIONS(5189), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), - [anon_sym_BSLASHciteurl] = ACTIONS(5189), - [anon_sym_BSLASHfullcite] = ACTIONS(5189), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), - [anon_sym_BSLASHcitealt] = ACTIONS(5189), - [anon_sym_BSLASHcitealp] = ACTIONS(5189), - [anon_sym_BSLASHcitetext] = ACTIONS(5189), - [anon_sym_BSLASHparencite] = ACTIONS(5189), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHParencite] = ACTIONS(5189), - [anon_sym_BSLASHfootcite] = ACTIONS(5189), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), - [anon_sym_BSLASHtextcite] = ACTIONS(5189), - [anon_sym_BSLASHTextcite] = ACTIONS(5189), - [anon_sym_BSLASHsmartcite] = ACTIONS(5189), - [anon_sym_BSLASHSmartcite] = ACTIONS(5189), - [anon_sym_BSLASHsupercite] = ACTIONS(5189), - [anon_sym_BSLASHautocite] = ACTIONS(5189), - [anon_sym_BSLASHAutocite] = ACTIONS(5189), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), - [anon_sym_BSLASHvolcite] = ACTIONS(5189), - [anon_sym_BSLASHVolcite] = ACTIONS(5189), - [anon_sym_BSLASHpvolcite] = ACTIONS(5189), - [anon_sym_BSLASHPvolcite] = ACTIONS(5189), - [anon_sym_BSLASHfvolcite] = ACTIONS(5189), - [anon_sym_BSLASHftvolcite] = ACTIONS(5189), - [anon_sym_BSLASHsvolcite] = ACTIONS(5189), - [anon_sym_BSLASHSvolcite] = ACTIONS(5189), - [anon_sym_BSLASHtvolcite] = ACTIONS(5189), - [anon_sym_BSLASHTvolcite] = ACTIONS(5189), - [anon_sym_BSLASHavolcite] = ACTIONS(5189), - [anon_sym_BSLASHAvolcite] = ACTIONS(5189), - [anon_sym_BSLASHnotecite] = ACTIONS(5189), - [anon_sym_BSLASHNotecite] = ACTIONS(5189), - [anon_sym_BSLASHpnotecite] = ACTIONS(5189), - [anon_sym_BSLASHPnotecite] = ACTIONS(5189), - [anon_sym_BSLASHfnotecite] = ACTIONS(5189), - [anon_sym_BSLASHlabel] = ACTIONS(5189), - [anon_sym_BSLASHref] = ACTIONS(5189), - [anon_sym_BSLASHeqref] = ACTIONS(5189), - [anon_sym_BSLASHvref] = ACTIONS(5189), - [anon_sym_BSLASHVref] = ACTIONS(5189), - [anon_sym_BSLASHautoref] = ACTIONS(5189), - [anon_sym_BSLASHpageref] = ACTIONS(5189), - [anon_sym_BSLASHcref] = ACTIONS(5189), - [anon_sym_BSLASHCref] = ACTIONS(5189), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnameCref] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), - [anon_sym_BSLASHlabelcref] = ACTIONS(5189), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange] = ACTIONS(5189), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHCrefrange] = ACTIONS(5189), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), - [anon_sym_BSLASHnewlabel] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand] = ACTIONS(5189), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), - [anon_sym_BSLASHdef] = ACTIONS(5189), - [anon_sym_BSLASHlet] = ACTIONS(5189), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), - [anon_sym_BSLASHgls] = ACTIONS(5189), - [anon_sym_BSLASHGls] = ACTIONS(5189), - [anon_sym_BSLASHGLS] = ACTIONS(5189), - [anon_sym_BSLASHglspl] = ACTIONS(5189), - [anon_sym_BSLASHGlspl] = ACTIONS(5189), - [anon_sym_BSLASHGLSpl] = ACTIONS(5189), - [anon_sym_BSLASHglsdisp] = ACTIONS(5189), - [anon_sym_BSLASHglslink] = ACTIONS(5189), - [anon_sym_BSLASHglstext] = ACTIONS(5189), - [anon_sym_BSLASHGlstext] = ACTIONS(5189), - [anon_sym_BSLASHGLStext] = ACTIONS(5189), - [anon_sym_BSLASHglsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), - [anon_sym_BSLASHglsplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSplural] = ACTIONS(5189), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), - [anon_sym_BSLASHglsname] = ACTIONS(5189), - [anon_sym_BSLASHGlsname] = ACTIONS(5189), - [anon_sym_BSLASHGLSname] = ACTIONS(5189), - [anon_sym_BSLASHglssymbol] = ACTIONS(5189), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), - [anon_sym_BSLASHglsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), - [anon_sym_BSLASHglsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), - [anon_sym_BSLASHglsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), - [anon_sym_BSLASHglsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), - [anon_sym_BSLASHglsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), - [anon_sym_BSLASHnewacronym] = ACTIONS(5189), - [anon_sym_BSLASHacrshort] = ACTIONS(5189), - [anon_sym_BSLASHAcrshort] = ACTIONS(5189), - [anon_sym_BSLASHACRshort] = ACTIONS(5189), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), - [anon_sym_BSLASHacrlong] = ACTIONS(5189), - [anon_sym_BSLASHAcrlong] = ACTIONS(5189), - [anon_sym_BSLASHACRlong] = ACTIONS(5189), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), - [anon_sym_BSLASHacrfull] = ACTIONS(5189), - [anon_sym_BSLASHAcrfull] = ACTIONS(5189), - [anon_sym_BSLASHACRfull] = ACTIONS(5189), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), - [anon_sym_BSLASHacs] = ACTIONS(5189), - [anon_sym_BSLASHAcs] = ACTIONS(5189), - [anon_sym_BSLASHacsp] = ACTIONS(5189), - [anon_sym_BSLASHAcsp] = ACTIONS(5189), - [anon_sym_BSLASHacl] = ACTIONS(5189), - [anon_sym_BSLASHAcl] = ACTIONS(5189), - [anon_sym_BSLASHaclp] = ACTIONS(5189), - [anon_sym_BSLASHAclp] = ACTIONS(5189), - [anon_sym_BSLASHacf] = ACTIONS(5189), - [anon_sym_BSLASHAcf] = ACTIONS(5189), - [anon_sym_BSLASHacfp] = ACTIONS(5189), - [anon_sym_BSLASHAcfp] = ACTIONS(5189), - [anon_sym_BSLASHac] = ACTIONS(5189), - [anon_sym_BSLASHAc] = ACTIONS(5189), - [anon_sym_BSLASHacp] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), - [anon_sym_BSLASHcolor] = ACTIONS(5189), - [anon_sym_BSLASHcolorbox] = ACTIONS(5189), - [anon_sym_BSLASHtextcolor] = ACTIONS(5189), - [anon_sym_BSLASHpagecolor] = ACTIONS(5189), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), + [anon_sym_BSLASHiffalse] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_RPAREN] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_RBRACK] = ACTIONS(5103), + [anon_sym_COMMA] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_BSLASHpart] = ACTIONS(5105), + [anon_sym_BSLASHpart_STAR] = ACTIONS(5103), + [anon_sym_BSLASHaddpart] = ACTIONS(5105), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(5103), + [anon_sym_BSLASHchapter] = ACTIONS(5105), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(5103), + [anon_sym_BSLASHaddchap] = ACTIONS(5105), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsection] = ACTIONS(5105), + [anon_sym_BSLASHsection_STAR] = ACTIONS(5103), + [anon_sym_BSLASHaddsec] = ACTIONS(5105), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsubsection] = ACTIONS(5105), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsubsubsection] = ACTIONS(5105), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(5103), + [anon_sym_BSLASHparagraph] = ACTIONS(5105), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(5103), + [anon_sym_BSLASHsubparagraph] = ACTIONS(5105), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(5103), + [anon_sym_BSLASHitem] = ACTIONS(5105), + [anon_sym_BSLASHitem_STAR] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5103), + [sym_word] = ACTIONS(5105), + [sym_placeholder] = ACTIONS(5103), + [anon_sym_PLUS] = ACTIONS(5105), + [anon_sym_DASH] = ACTIONS(5105), + [anon_sym_STAR] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5105), + [anon_sym_CARET] = ACTIONS(5105), + [anon_sym__] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5105), + [anon_sym_GT] = ACTIONS(5105), + [anon_sym_BANG] = ACTIONS(5105), + [anon_sym_PIPE] = ACTIONS(5105), + [anon_sym_COLON] = ACTIONS(5105), + [anon_sym_SQUOTE] = ACTIONS(5105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), + [anon_sym_DOLLAR] = ACTIONS(5105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), + [anon_sym_BSLASHbegin] = ACTIONS(5105), + [anon_sym_BSLASHend] = ACTIONS(5105), + [anon_sym_BSLASHusepackage] = ACTIONS(5105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), + [anon_sym_BSLASHinclude] = ACTIONS(5105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), + [anon_sym_BSLASHinput] = ACTIONS(5105), + [anon_sym_BSLASHsubfile] = ACTIONS(5105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), + [anon_sym_BSLASHbibliography] = ACTIONS(5105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), + [anon_sym_BSLASHincludesvg] = ACTIONS(5105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), + [anon_sym_BSLASHimport] = ACTIONS(5105), + [anon_sym_BSLASHsubimport] = ACTIONS(5105), + [anon_sym_BSLASHinputfrom] = ACTIONS(5105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), + [anon_sym_BSLASHincludefrom] = ACTIONS(5105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), + [anon_sym_BSLASHcaption] = ACTIONS(5105), + [anon_sym_BSLASHcite] = ACTIONS(5105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCite] = ACTIONS(5105), + [anon_sym_BSLASHnocite] = ACTIONS(5105), + [anon_sym_BSLASHcitet] = ACTIONS(5105), + [anon_sym_BSLASHcitep] = ACTIONS(5105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteauthor] = ACTIONS(5105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitetitle] = ACTIONS(5105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteyear] = ACTIONS(5105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitedate] = ACTIONS(5105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteurl] = ACTIONS(5105), + [anon_sym_BSLASHfullcite] = ACTIONS(5105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), + [anon_sym_BSLASHcitealt] = ACTIONS(5105), + [anon_sym_BSLASHcitealp] = ACTIONS(5105), + [anon_sym_BSLASHcitetext] = ACTIONS(5105), + [anon_sym_BSLASHparencite] = ACTIONS(5105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHParencite] = ACTIONS(5105), + [anon_sym_BSLASHfootcite] = ACTIONS(5105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), + [anon_sym_BSLASHtextcite] = ACTIONS(5105), + [anon_sym_BSLASHTextcite] = ACTIONS(5105), + [anon_sym_BSLASHsmartcite] = ACTIONS(5105), + [anon_sym_BSLASHSmartcite] = ACTIONS(5105), + [anon_sym_BSLASHsupercite] = ACTIONS(5105), + [anon_sym_BSLASHautocite] = ACTIONS(5105), + [anon_sym_BSLASHAutocite] = ACTIONS(5105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHvolcite] = ACTIONS(5105), + [anon_sym_BSLASHVolcite] = ACTIONS(5105), + [anon_sym_BSLASHpvolcite] = ACTIONS(5105), + [anon_sym_BSLASHPvolcite] = ACTIONS(5105), + [anon_sym_BSLASHfvolcite] = ACTIONS(5105), + [anon_sym_BSLASHftvolcite] = ACTIONS(5105), + [anon_sym_BSLASHsvolcite] = ACTIONS(5105), + [anon_sym_BSLASHSvolcite] = ACTIONS(5105), + [anon_sym_BSLASHtvolcite] = ACTIONS(5105), + [anon_sym_BSLASHTvolcite] = ACTIONS(5105), + [anon_sym_BSLASHavolcite] = ACTIONS(5105), + [anon_sym_BSLASHAvolcite] = ACTIONS(5105), + [anon_sym_BSLASHnotecite] = ACTIONS(5105), + [anon_sym_BSLASHNotecite] = ACTIONS(5105), + [anon_sym_BSLASHpnotecite] = ACTIONS(5105), + [anon_sym_BSLASHPnotecite] = ACTIONS(5105), + [anon_sym_BSLASHfnotecite] = ACTIONS(5105), + [anon_sym_BSLASHlabel] = ACTIONS(5105), + [anon_sym_BSLASHref] = ACTIONS(5105), + [anon_sym_BSLASHeqref] = ACTIONS(5105), + [anon_sym_BSLASHvref] = ACTIONS(5105), + [anon_sym_BSLASHVref] = ACTIONS(5105), + [anon_sym_BSLASHautoref] = ACTIONS(5105), + [anon_sym_BSLASHpageref] = ACTIONS(5105), + [anon_sym_BSLASHcref] = ACTIONS(5105), + [anon_sym_BSLASHCref] = ACTIONS(5105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), + [anon_sym_BSLASHnamecref] = ACTIONS(5105), + [anon_sym_BSLASHnameCref] = ACTIONS(5105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), + [anon_sym_BSLASHlabelcref] = ACTIONS(5105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), + [anon_sym_BSLASHcrefrange] = ACTIONS(5105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCrefrange] = ACTIONS(5105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), + [anon_sym_BSLASHnewlabel] = ACTIONS(5105), + [anon_sym_BSLASHnewcommand] = ACTIONS(5105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), + [anon_sym_BSLASHdef] = ACTIONS(5105), + [anon_sym_BSLASHlet] = ACTIONS(5105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), + [anon_sym_BSLASHgls] = ACTIONS(5105), + [anon_sym_BSLASHGls] = ACTIONS(5105), + [anon_sym_BSLASHGLS] = ACTIONS(5105), + [anon_sym_BSLASHglspl] = ACTIONS(5105), + [anon_sym_BSLASHGlspl] = ACTIONS(5105), + [anon_sym_BSLASHGLSpl] = ACTIONS(5105), + [anon_sym_BSLASHglsdisp] = ACTIONS(5105), + [anon_sym_BSLASHglslink] = ACTIONS(5105), + [anon_sym_BSLASHglstext] = ACTIONS(5105), + [anon_sym_BSLASHGlstext] = ACTIONS(5105), + [anon_sym_BSLASHGLStext] = ACTIONS(5105), + [anon_sym_BSLASHglsfirst] = ACTIONS(5105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), + [anon_sym_BSLASHglsplural] = ACTIONS(5105), + [anon_sym_BSLASHGlsplural] = ACTIONS(5105), + [anon_sym_BSLASHGLSplural] = ACTIONS(5105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHglsname] = ACTIONS(5105), + [anon_sym_BSLASHGlsname] = ACTIONS(5105), + [anon_sym_BSLASHGLSname] = ACTIONS(5105), + [anon_sym_BSLASHglssymbol] = ACTIONS(5105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), + [anon_sym_BSLASHglsdesc] = ACTIONS(5105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), + [anon_sym_BSLASHglsuseri] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), + [anon_sym_BSLASHglsuserii] = ACTIONS(5105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), + [anon_sym_BSLASHglsuserv] = ACTIONS(5105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), + [anon_sym_BSLASHglsuservi] = ACTIONS(5105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), + [anon_sym_BSLASHnewacronym] = ACTIONS(5105), + [anon_sym_BSLASHacrshort] = ACTIONS(5105), + [anon_sym_BSLASHAcrshort] = ACTIONS(5105), + [anon_sym_BSLASHACRshort] = ACTIONS(5105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), + [anon_sym_BSLASHacrlong] = ACTIONS(5105), + [anon_sym_BSLASHAcrlong] = ACTIONS(5105), + [anon_sym_BSLASHACRlong] = ACTIONS(5105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), + [anon_sym_BSLASHacrfull] = ACTIONS(5105), + [anon_sym_BSLASHAcrfull] = ACTIONS(5105), + [anon_sym_BSLASHACRfull] = ACTIONS(5105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), + [anon_sym_BSLASHacs] = ACTIONS(5105), + [anon_sym_BSLASHAcs] = ACTIONS(5105), + [anon_sym_BSLASHacsp] = ACTIONS(5105), + [anon_sym_BSLASHAcsp] = ACTIONS(5105), + [anon_sym_BSLASHacl] = ACTIONS(5105), + [anon_sym_BSLASHAcl] = ACTIONS(5105), + [anon_sym_BSLASHaclp] = ACTIONS(5105), + [anon_sym_BSLASHAclp] = ACTIONS(5105), + [anon_sym_BSLASHacf] = ACTIONS(5105), + [anon_sym_BSLASHAcf] = ACTIONS(5105), + [anon_sym_BSLASHacfp] = ACTIONS(5105), + [anon_sym_BSLASHAcfp] = ACTIONS(5105), + [anon_sym_BSLASHac] = ACTIONS(5105), + [anon_sym_BSLASHAc] = ACTIONS(5105), + [anon_sym_BSLASHacp] = ACTIONS(5105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), + [anon_sym_BSLASHcolor] = ACTIONS(5105), + [anon_sym_BSLASHcolorbox] = ACTIONS(5105), + [anon_sym_BSLASHtextcolor] = ACTIONS(5105), + [anon_sym_BSLASHpagecolor] = ACTIONS(5105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), + [anon_sym_BSLASHtext] = ACTIONS(5105), + [anon_sym_BSLASHintertext] = ACTIONS(5105), + [anon_sym_shortintertext] = ACTIONS(5105), }, - [1359] = { - [sym_command_name] = ACTIONS(5061), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASHbegin] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [1252] = { + [sym_command_name] = ACTIONS(4887), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_LBRACK] = ACTIONS(4885), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_BSLASHpart] = ACTIONS(4887), + [anon_sym_BSLASHpart_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddpart] = ACTIONS(4887), + [anon_sym_BSLASHaddpart_STAR] = ACTIONS(4885), + [anon_sym_BSLASHchapter] = ACTIONS(4887), + [anon_sym_BSLASHchapter_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddchap] = ACTIONS(4887), + [anon_sym_BSLASHaddchap_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsection] = ACTIONS(4887), + [anon_sym_BSLASHsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHaddsec] = ACTIONS(4887), + [anon_sym_BSLASHaddsec_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubsection] = ACTIONS(4887), + [anon_sym_BSLASHsubsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubsubsection] = ACTIONS(4887), + [anon_sym_BSLASHsubsubsection_STAR] = ACTIONS(4885), + [anon_sym_BSLASHparagraph] = ACTIONS(4887), + [anon_sym_BSLASHparagraph_STAR] = ACTIONS(4885), + [anon_sym_BSLASHsubparagraph] = ACTIONS(4887), + [anon_sym_BSLASHsubparagraph_STAR] = ACTIONS(4885), + [anon_sym_BSLASHitem] = ACTIONS(4887), + [anon_sym_BSLASHitem_STAR] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4885), + [sym_word] = ACTIONS(4887), + [sym_placeholder] = ACTIONS(4885), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym__] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_COLON] = ACTIONS(4887), + [anon_sym_SQUOTE] = ACTIONS(4887), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), + [anon_sym_BSLASHbegin] = ACTIONS(4887), + [anon_sym_BSLASHend] = ACTIONS(4887), + [anon_sym_BSLASHusepackage] = ACTIONS(4887), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), + [anon_sym_BSLASHinclude] = ACTIONS(4887), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), + [anon_sym_BSLASHinput] = ACTIONS(4887), + [anon_sym_BSLASHsubfile] = ACTIONS(4887), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), + [anon_sym_BSLASHbibliography] = ACTIONS(4887), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), + [anon_sym_BSLASHincludesvg] = ACTIONS(4887), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), + [anon_sym_BSLASHimport] = ACTIONS(4887), + [anon_sym_BSLASHsubimport] = ACTIONS(4887), + [anon_sym_BSLASHinputfrom] = ACTIONS(4887), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), + [anon_sym_BSLASHincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHcaption] = ACTIONS(4887), + [anon_sym_BSLASHcite] = ACTIONS(4887), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCite] = ACTIONS(4887), + [anon_sym_BSLASHnocite] = ACTIONS(4887), + [anon_sym_BSLASHcitet] = ACTIONS(4887), + [anon_sym_BSLASHcitep] = ACTIONS(4887), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteauthor] = ACTIONS(4887), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitetitle] = ACTIONS(4887), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteyear] = ACTIONS(4887), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitedate] = ACTIONS(4887), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteurl] = ACTIONS(4887), + [anon_sym_BSLASHfullcite] = ACTIONS(4887), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), + [anon_sym_BSLASHcitealt] = ACTIONS(4887), + [anon_sym_BSLASHcitealp] = ACTIONS(4887), + [anon_sym_BSLASHcitetext] = ACTIONS(4887), + [anon_sym_BSLASHparencite] = ACTIONS(4887), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHParencite] = ACTIONS(4887), + [anon_sym_BSLASHfootcite] = ACTIONS(4887), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), + [anon_sym_BSLASHtextcite] = ACTIONS(4887), + [anon_sym_BSLASHTextcite] = ACTIONS(4887), + [anon_sym_BSLASHsmartcite] = ACTIONS(4887), + [anon_sym_BSLASHSmartcite] = ACTIONS(4887), + [anon_sym_BSLASHsupercite] = ACTIONS(4887), + [anon_sym_BSLASHautocite] = ACTIONS(4887), + [anon_sym_BSLASHAutocite] = ACTIONS(4887), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHvolcite] = ACTIONS(4887), + [anon_sym_BSLASHVolcite] = ACTIONS(4887), + [anon_sym_BSLASHpvolcite] = ACTIONS(4887), + [anon_sym_BSLASHPvolcite] = ACTIONS(4887), + [anon_sym_BSLASHfvolcite] = ACTIONS(4887), + [anon_sym_BSLASHftvolcite] = ACTIONS(4887), + [anon_sym_BSLASHsvolcite] = ACTIONS(4887), + [anon_sym_BSLASHSvolcite] = ACTIONS(4887), + [anon_sym_BSLASHtvolcite] = ACTIONS(4887), + [anon_sym_BSLASHTvolcite] = ACTIONS(4887), + [anon_sym_BSLASHavolcite] = ACTIONS(4887), + [anon_sym_BSLASHAvolcite] = ACTIONS(4887), + [anon_sym_BSLASHnotecite] = ACTIONS(4887), + [anon_sym_BSLASHNotecite] = ACTIONS(4887), + [anon_sym_BSLASHpnotecite] = ACTIONS(4887), + [anon_sym_BSLASHPnotecite] = ACTIONS(4887), + [anon_sym_BSLASHfnotecite] = ACTIONS(4887), + [anon_sym_BSLASHlabel] = ACTIONS(4887), + [anon_sym_BSLASHref] = ACTIONS(4887), + [anon_sym_BSLASHeqref] = ACTIONS(4887), + [anon_sym_BSLASHvref] = ACTIONS(4887), + [anon_sym_BSLASHVref] = ACTIONS(4887), + [anon_sym_BSLASHautoref] = ACTIONS(4887), + [anon_sym_BSLASHpageref] = ACTIONS(4887), + [anon_sym_BSLASHcref] = ACTIONS(4887), + [anon_sym_BSLASHCref] = ACTIONS(4887), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnameCref] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHlabelcref] = ACTIONS(4887), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCrefrange] = ACTIONS(4887), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnewlabel] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), + [anon_sym_BSLASHdef] = ACTIONS(4887), + [anon_sym_BSLASHlet] = ACTIONS(4887), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), + [anon_sym_BSLASHgls] = ACTIONS(4887), + [anon_sym_BSLASHGls] = ACTIONS(4887), + [anon_sym_BSLASHGLS] = ACTIONS(4887), + [anon_sym_BSLASHglspl] = ACTIONS(4887), + [anon_sym_BSLASHGlspl] = ACTIONS(4887), + [anon_sym_BSLASHGLSpl] = ACTIONS(4887), + [anon_sym_BSLASHglsdisp] = ACTIONS(4887), + [anon_sym_BSLASHglslink] = ACTIONS(4887), + [anon_sym_BSLASHglstext] = ACTIONS(4887), + [anon_sym_BSLASHGlstext] = ACTIONS(4887), + [anon_sym_BSLASHGLStext] = ACTIONS(4887), + [anon_sym_BSLASHglsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), + [anon_sym_BSLASHglsplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSplural] = ACTIONS(4887), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHglsname] = ACTIONS(4887), + [anon_sym_BSLASHGlsname] = ACTIONS(4887), + [anon_sym_BSLASHGLSname] = ACTIONS(4887), + [anon_sym_BSLASHglssymbol] = ACTIONS(4887), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), + [anon_sym_BSLASHglsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), + [anon_sym_BSLASHglsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), + [anon_sym_BSLASHglsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), + [anon_sym_BSLASHglsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), + [anon_sym_BSLASHglsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), + [anon_sym_BSLASHnewacronym] = ACTIONS(4887), + [anon_sym_BSLASHacrshort] = ACTIONS(4887), + [anon_sym_BSLASHAcrshort] = ACTIONS(4887), + [anon_sym_BSLASHACRshort] = ACTIONS(4887), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), + [anon_sym_BSLASHacrlong] = ACTIONS(4887), + [anon_sym_BSLASHAcrlong] = ACTIONS(4887), + [anon_sym_BSLASHACRlong] = ACTIONS(4887), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), + [anon_sym_BSLASHacrfull] = ACTIONS(4887), + [anon_sym_BSLASHAcrfull] = ACTIONS(4887), + [anon_sym_BSLASHACRfull] = ACTIONS(4887), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), + [anon_sym_BSLASHacs] = ACTIONS(4887), + [anon_sym_BSLASHAcs] = ACTIONS(4887), + [anon_sym_BSLASHacsp] = ACTIONS(4887), + [anon_sym_BSLASHAcsp] = ACTIONS(4887), + [anon_sym_BSLASHacl] = ACTIONS(4887), + [anon_sym_BSLASHAcl] = ACTIONS(4887), + [anon_sym_BSLASHaclp] = ACTIONS(4887), + [anon_sym_BSLASHAclp] = ACTIONS(4887), + [anon_sym_BSLASHacf] = ACTIONS(4887), + [anon_sym_BSLASHAcf] = ACTIONS(4887), + [anon_sym_BSLASHacfp] = ACTIONS(4887), + [anon_sym_BSLASHAcfp] = ACTIONS(4887), + [anon_sym_BSLASHac] = ACTIONS(4887), + [anon_sym_BSLASHAc] = ACTIONS(4887), + [anon_sym_BSLASHacp] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), + [anon_sym_BSLASHcolor] = ACTIONS(4887), + [anon_sym_BSLASHcolorbox] = ACTIONS(4887), + [anon_sym_BSLASHtextcolor] = ACTIONS(4887), + [anon_sym_BSLASHpagecolor] = ACTIONS(4887), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), + [anon_sym_BSLASHtext] = ACTIONS(4887), + [anon_sym_BSLASHintertext] = ACTIONS(4887), + [anon_sym_shortintertext] = ACTIONS(4887), + }, + [1253] = { + [sym_block_comment] = STATE(1560), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1253), + [sym_command_name] = ACTIONS(5327), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5330), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_COMMA] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [sym_word] = ACTIONS(5333), + [sym_placeholder] = ACTIONS(5336), + [anon_sym_PLUS] = ACTIONS(5339), + [anon_sym_DASH] = ACTIONS(5339), + [anon_sym_STAR] = ACTIONS(5339), + [anon_sym_SLASH] = ACTIONS(5339), + [anon_sym_CARET] = ACTIONS(5339), + [anon_sym__] = ACTIONS(5339), + [anon_sym_LT] = ACTIONS(5339), + [anon_sym_GT] = ACTIONS(5339), + [anon_sym_BANG] = ACTIONS(5339), + [anon_sym_PIPE] = ACTIONS(5339), + [anon_sym_COLON] = ACTIONS(5339), + [anon_sym_SQUOTE] = ACTIONS(5339), + [anon_sym_BSLASHusepackage] = ACTIONS(5342), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5342), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), + [anon_sym_BSLASHinclude] = ACTIONS(5348), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5348), + [anon_sym_BSLASHinput] = ACTIONS(5348), + [anon_sym_BSLASHsubfile] = ACTIONS(5348), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5351), + [anon_sym_BSLASHbibliography] = ACTIONS(5354), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), + [anon_sym_BSLASHincludesvg] = ACTIONS(5360), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5363), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5366), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5366), + [anon_sym_BSLASHimport] = ACTIONS(5369), + [anon_sym_BSLASHsubimport] = ACTIONS(5369), + [anon_sym_BSLASHinputfrom] = ACTIONS(5369), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5369), + [anon_sym_BSLASHincludefrom] = ACTIONS(5369), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5369), + [anon_sym_BSLASHcaption] = ACTIONS(5372), + [anon_sym_BSLASHcite] = ACTIONS(5375), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCite] = ACTIONS(5375), + [anon_sym_BSLASHnocite] = ACTIONS(5375), + [anon_sym_BSLASHcitet] = ACTIONS(5375), + [anon_sym_BSLASHcitep] = ACTIONS(5375), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteauthor] = ACTIONS(5375), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5375), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitetitle] = ACTIONS(5375), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteyear] = ACTIONS(5375), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5378), + [anon_sym_BSLASHcitedate] = ACTIONS(5375), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5378), + [anon_sym_BSLASHciteurl] = ACTIONS(5375), + [anon_sym_BSLASHfullcite] = ACTIONS(5375), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5375), + [anon_sym_BSLASHcitealt] = ACTIONS(5375), + [anon_sym_BSLASHcitealp] = ACTIONS(5375), + [anon_sym_BSLASHcitetext] = ACTIONS(5375), + [anon_sym_BSLASHparencite] = ACTIONS(5375), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHParencite] = ACTIONS(5375), + [anon_sym_BSLASHfootcite] = ACTIONS(5375), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5375), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5375), + [anon_sym_BSLASHtextcite] = ACTIONS(5375), + [anon_sym_BSLASHTextcite] = ACTIONS(5375), + [anon_sym_BSLASHsmartcite] = ACTIONS(5375), + [anon_sym_BSLASHSmartcite] = ACTIONS(5375), + [anon_sym_BSLASHsupercite] = ACTIONS(5375), + [anon_sym_BSLASHautocite] = ACTIONS(5375), + [anon_sym_BSLASHAutocite] = ACTIONS(5375), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5378), + [anon_sym_BSLASHvolcite] = ACTIONS(5375), + [anon_sym_BSLASHVolcite] = ACTIONS(5375), + [anon_sym_BSLASHpvolcite] = ACTIONS(5375), + [anon_sym_BSLASHPvolcite] = ACTIONS(5375), + [anon_sym_BSLASHfvolcite] = ACTIONS(5375), + [anon_sym_BSLASHftvolcite] = ACTIONS(5375), + [anon_sym_BSLASHsvolcite] = ACTIONS(5375), + [anon_sym_BSLASHSvolcite] = ACTIONS(5375), + [anon_sym_BSLASHtvolcite] = ACTIONS(5375), + [anon_sym_BSLASHTvolcite] = ACTIONS(5375), + [anon_sym_BSLASHavolcite] = ACTIONS(5375), + [anon_sym_BSLASHAvolcite] = ACTIONS(5375), + [anon_sym_BSLASHnotecite] = ACTIONS(5375), + [anon_sym_BSLASHNotecite] = ACTIONS(5375), + [anon_sym_BSLASHpnotecite] = ACTIONS(5375), + [anon_sym_BSLASHPnotecite] = ACTIONS(5375), + [anon_sym_BSLASHfnotecite] = ACTIONS(5375), + [anon_sym_BSLASHlabel] = ACTIONS(5381), + [anon_sym_BSLASHref] = ACTIONS(5384), + [anon_sym_BSLASHeqref] = ACTIONS(5384), + [anon_sym_BSLASHvref] = ACTIONS(5384), + [anon_sym_BSLASHVref] = ACTIONS(5384), + [anon_sym_BSLASHautoref] = ACTIONS(5384), + [anon_sym_BSLASHpageref] = ACTIONS(5384), + [anon_sym_BSLASHcref] = ACTIONS(5384), + [anon_sym_BSLASHCref] = ACTIONS(5384), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5387), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5387), + [anon_sym_BSLASHnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnameCref] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5384), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5384), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5384), + [anon_sym_BSLASHlabelcref] = ACTIONS(5384), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5384), + [anon_sym_BSLASHcrefrange] = ACTIONS(5390), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5393), + [anon_sym_BSLASHCrefrange] = ACTIONS(5390), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5393), + [anon_sym_BSLASHnewlabel] = ACTIONS(5396), + [anon_sym_BSLASHnewcommand] = ACTIONS(5399), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5402), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5399), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5402), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5399), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5402), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5399), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5402), + [anon_sym_BSLASHdef] = ACTIONS(5405), + [anon_sym_BSLASHlet] = ACTIONS(5408), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5411), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5414), + [anon_sym_BSLASHgls] = ACTIONS(5417), + [anon_sym_BSLASHGls] = ACTIONS(5417), + [anon_sym_BSLASHGLS] = ACTIONS(5417), + [anon_sym_BSLASHglspl] = ACTIONS(5417), + [anon_sym_BSLASHGlspl] = ACTIONS(5417), + [anon_sym_BSLASHGLSpl] = ACTIONS(5417), + [anon_sym_BSLASHglsdisp] = ACTIONS(5417), + [anon_sym_BSLASHglslink] = ACTIONS(5417), + [anon_sym_BSLASHglstext] = ACTIONS(5417), + [anon_sym_BSLASHGlstext] = ACTIONS(5417), + [anon_sym_BSLASHGLStext] = ACTIONS(5417), + [anon_sym_BSLASHglsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5417), + [anon_sym_BSLASHglsplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSplural] = ACTIONS(5417), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5417), + [anon_sym_BSLASHglsname] = ACTIONS(5417), + [anon_sym_BSLASHGlsname] = ACTIONS(5417), + [anon_sym_BSLASHGLSname] = ACTIONS(5417), + [anon_sym_BSLASHglssymbol] = ACTIONS(5417), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5417), + [anon_sym_BSLASHglsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5417), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5417), + [anon_sym_BSLASHglsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5417), + [anon_sym_BSLASHglsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5417), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5417), + [anon_sym_BSLASHglsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5417), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5417), + [anon_sym_BSLASHglsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5417), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5417), + [anon_sym_BSLASHnewacronym] = ACTIONS(5420), + [anon_sym_BSLASHacrshort] = ACTIONS(5423), + [anon_sym_BSLASHAcrshort] = ACTIONS(5423), + [anon_sym_BSLASHACRshort] = ACTIONS(5423), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5423), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5423), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5423), + [anon_sym_BSLASHacrlong] = ACTIONS(5423), + [anon_sym_BSLASHAcrlong] = ACTIONS(5423), + [anon_sym_BSLASHACRlong] = ACTIONS(5423), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5423), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5423), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5423), + [anon_sym_BSLASHacrfull] = ACTIONS(5423), + [anon_sym_BSLASHAcrfull] = ACTIONS(5423), + [anon_sym_BSLASHACRfull] = ACTIONS(5423), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5423), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5423), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5423), + [anon_sym_BSLASHacs] = ACTIONS(5423), + [anon_sym_BSLASHAcs] = ACTIONS(5423), + [anon_sym_BSLASHacsp] = ACTIONS(5423), + [anon_sym_BSLASHAcsp] = ACTIONS(5423), + [anon_sym_BSLASHacl] = ACTIONS(5423), + [anon_sym_BSLASHAcl] = ACTIONS(5423), + [anon_sym_BSLASHaclp] = ACTIONS(5423), + [anon_sym_BSLASHAclp] = ACTIONS(5423), + [anon_sym_BSLASHacf] = ACTIONS(5423), + [anon_sym_BSLASHAcf] = ACTIONS(5423), + [anon_sym_BSLASHacfp] = ACTIONS(5423), + [anon_sym_BSLASHAcfp] = ACTIONS(5423), + [anon_sym_BSLASHac] = ACTIONS(5423), + [anon_sym_BSLASHAc] = ACTIONS(5423), + [anon_sym_BSLASHacp] = ACTIONS(5423), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5423), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5423), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5423), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5423), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5423), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5423), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5423), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5423), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5423), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5423), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5426), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5426), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5429), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5432), + [anon_sym_BSLASHcolor] = ACTIONS(5435), + [anon_sym_BSLASHcolorbox] = ACTIONS(5435), + [anon_sym_BSLASHtextcolor] = ACTIONS(5435), + [anon_sym_BSLASHpagecolor] = ACTIONS(5435), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5438), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5438), + }, + [1254] = { + [sym_block_comment] = STATE(1560), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1253), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(2675), + [anon_sym_COMMA] = ACTIONS(2675), + [anon_sym_EQ] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1255] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1786), + [sym_operator] = STATE(1560), + [sym_key_value_pair] = STATE(1779), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5441), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1256] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1786), + [sym_operator] = STATE(1560), + [sym_key_value_pair] = STATE(1787), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5443), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [1360] = { - [sym_command_name] = ACTIONS(5057), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASHbegin] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [1257] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1786), + [sym_operator] = STATE(1560), + [sym_key_value_pair] = STATE(1785), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5445), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1258] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1786), + [sym_operator] = STATE(1560), + [sym_key_value_pair] = STATE(1734), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5447), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1259] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1786), + [sym_operator] = STATE(1560), + [sym_key_value_pair] = STATE(1763), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5449), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1260] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1781), + [sym_operator] = STATE(1560), + [sym_key_value_pair] = STATE(1791), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACK] = ACTIONS(5451), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1261] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1786), + [sym_operator] = STATE(1560), + [sym_key_value_pair] = STATE(1748), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5453), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [1361] = { - [sym_command_name] = ACTIONS(5221), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASHbegin] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), + [1262] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1786), + [sym_operator] = STATE(1560), + [sym_key_value_pair] = STATE(1752), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5455), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1263] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1786), + [sym_operator] = STATE(1560), + [sym_key_value_pair] = STATE(1764), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5457), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1264] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1788), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5459), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1265] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1758), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5461), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1266] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1771), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5463), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [1362] = { - [sym_command_name] = ACTIONS(5037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASHbegin] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [1267] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1781), + [sym_operator] = STATE(1560), + [sym_key_value_pair] = STATE(1755), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1268] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1743), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5465), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1269] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1767), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5467), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1270] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1786), + [sym_operator] = STATE(1560), + [sym_key_value_pair] = STATE(1755), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [1363] = { - [sym_command_name] = ACTIONS(5407), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5407), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_RPAREN] = ACTIONS(5409), - [anon_sym_LBRACK] = ACTIONS(5409), - [anon_sym_RBRACK] = ACTIONS(5409), - [anon_sym_COMMA] = ACTIONS(5409), - [anon_sym_EQ] = ACTIONS(5409), - [anon_sym_LBRACE] = ACTIONS(5409), - [sym_word] = ACTIONS(5407), - [sym_placeholder] = ACTIONS(5409), - [anon_sym_PLUS] = ACTIONS(5407), - [anon_sym_DASH] = ACTIONS(5407), - [anon_sym_STAR] = ACTIONS(5407), - [anon_sym_SLASH] = ACTIONS(5407), - [anon_sym_CARET] = ACTIONS(5407), - [anon_sym__] = ACTIONS(5407), - [anon_sym_LT] = ACTIONS(5407), - [anon_sym_GT] = ACTIONS(5407), - [anon_sym_BANG] = ACTIONS(5407), - [anon_sym_PIPE] = ACTIONS(5407), - [anon_sym_COLON] = ACTIONS(5407), - [anon_sym_SQUOTE] = ACTIONS(5407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5407), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5409), - [anon_sym_BSLASHbegin] = ACTIONS(5407), - [anon_sym_BSLASHusepackage] = ACTIONS(5407), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5407), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5407), - [anon_sym_BSLASHinclude] = ACTIONS(5407), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5407), - [anon_sym_BSLASHinput] = ACTIONS(5407), - [anon_sym_BSLASHsubfile] = ACTIONS(5407), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5407), - [anon_sym_BSLASHbibliography] = ACTIONS(5407), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5407), - [anon_sym_BSLASHincludesvg] = ACTIONS(5407), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5407), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5407), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5407), - [anon_sym_BSLASHimport] = ACTIONS(5407), - [anon_sym_BSLASHsubimport] = ACTIONS(5407), - [anon_sym_BSLASHinputfrom] = ACTIONS(5407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5407), - [anon_sym_BSLASHincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHcaption] = ACTIONS(5407), - [anon_sym_BSLASHcite] = ACTIONS(5407), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCite] = ACTIONS(5407), - [anon_sym_BSLASHnocite] = ACTIONS(5407), - [anon_sym_BSLASHcitet] = ACTIONS(5407), - [anon_sym_BSLASHcitep] = ACTIONS(5407), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteauthor] = ACTIONS(5407), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5407), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitetitle] = ACTIONS(5407), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteyear] = ACTIONS(5407), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitedate] = ACTIONS(5407), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteurl] = ACTIONS(5407), - [anon_sym_BSLASHfullcite] = ACTIONS(5407), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5407), - [anon_sym_BSLASHcitealt] = ACTIONS(5407), - [anon_sym_BSLASHcitealp] = ACTIONS(5407), - [anon_sym_BSLASHcitetext] = ACTIONS(5407), - [anon_sym_BSLASHparencite] = ACTIONS(5407), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHParencite] = ACTIONS(5407), - [anon_sym_BSLASHfootcite] = ACTIONS(5407), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5407), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5407), - [anon_sym_BSLASHtextcite] = ACTIONS(5407), - [anon_sym_BSLASHTextcite] = ACTIONS(5407), - [anon_sym_BSLASHsmartcite] = ACTIONS(5407), - [anon_sym_BSLASHSmartcite] = ACTIONS(5407), - [anon_sym_BSLASHsupercite] = ACTIONS(5407), - [anon_sym_BSLASHautocite] = ACTIONS(5407), - [anon_sym_BSLASHAutocite] = ACTIONS(5407), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHvolcite] = ACTIONS(5407), - [anon_sym_BSLASHVolcite] = ACTIONS(5407), - [anon_sym_BSLASHpvolcite] = ACTIONS(5407), - [anon_sym_BSLASHPvolcite] = ACTIONS(5407), - [anon_sym_BSLASHfvolcite] = ACTIONS(5407), - [anon_sym_BSLASHftvolcite] = ACTIONS(5407), - [anon_sym_BSLASHsvolcite] = ACTIONS(5407), - [anon_sym_BSLASHSvolcite] = ACTIONS(5407), - [anon_sym_BSLASHtvolcite] = ACTIONS(5407), - [anon_sym_BSLASHTvolcite] = ACTIONS(5407), - [anon_sym_BSLASHavolcite] = ACTIONS(5407), - [anon_sym_BSLASHAvolcite] = ACTIONS(5407), - [anon_sym_BSLASHnotecite] = ACTIONS(5407), - [anon_sym_BSLASHNotecite] = ACTIONS(5407), - [anon_sym_BSLASHpnotecite] = ACTIONS(5407), - [anon_sym_BSLASHPnotecite] = ACTIONS(5407), - [anon_sym_BSLASHfnotecite] = ACTIONS(5407), - [anon_sym_BSLASHlabel] = ACTIONS(5407), - [anon_sym_BSLASHref] = ACTIONS(5407), - [anon_sym_BSLASHeqref] = ACTIONS(5407), - [anon_sym_BSLASHvref] = ACTIONS(5407), - [anon_sym_BSLASHVref] = ACTIONS(5407), - [anon_sym_BSLASHautoref] = ACTIONS(5407), - [anon_sym_BSLASHpageref] = ACTIONS(5407), - [anon_sym_BSLASHcref] = ACTIONS(5407), - [anon_sym_BSLASHCref] = ACTIONS(5407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnameCref] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHlabelcref] = ACTIONS(5407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCrefrange] = ACTIONS(5407), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnewlabel] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5407), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5407), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5407), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdef] = ACTIONS(5407), - [anon_sym_BSLASHlet] = ACTIONS(5407), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5407), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5407), - [anon_sym_BSLASHgls] = ACTIONS(5407), - [anon_sym_BSLASHGls] = ACTIONS(5407), - [anon_sym_BSLASHGLS] = ACTIONS(5407), - [anon_sym_BSLASHglspl] = ACTIONS(5407), - [anon_sym_BSLASHGlspl] = ACTIONS(5407), - [anon_sym_BSLASHGLSpl] = ACTIONS(5407), - [anon_sym_BSLASHglsdisp] = ACTIONS(5407), - [anon_sym_BSLASHglslink] = ACTIONS(5407), - [anon_sym_BSLASHglstext] = ACTIONS(5407), - [anon_sym_BSLASHGlstext] = ACTIONS(5407), - [anon_sym_BSLASHGLStext] = ACTIONS(5407), - [anon_sym_BSLASHglsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5407), - [anon_sym_BSLASHglsplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSplural] = ACTIONS(5407), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHglsname] = ACTIONS(5407), - [anon_sym_BSLASHGlsname] = ACTIONS(5407), - [anon_sym_BSLASHGLSname] = ACTIONS(5407), - [anon_sym_BSLASHglssymbol] = ACTIONS(5407), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5407), - [anon_sym_BSLASHglsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5407), - [anon_sym_BSLASHglsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5407), - [anon_sym_BSLASHglsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5407), - [anon_sym_BSLASHglsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5407), - [anon_sym_BSLASHglsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5407), - [anon_sym_BSLASHnewacronym] = ACTIONS(5407), - [anon_sym_BSLASHacrshort] = ACTIONS(5407), - [anon_sym_BSLASHAcrshort] = ACTIONS(5407), - [anon_sym_BSLASHACRshort] = ACTIONS(5407), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5407), - [anon_sym_BSLASHacrlong] = ACTIONS(5407), - [anon_sym_BSLASHAcrlong] = ACTIONS(5407), - [anon_sym_BSLASHACRlong] = ACTIONS(5407), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5407), - [anon_sym_BSLASHacrfull] = ACTIONS(5407), - [anon_sym_BSLASHAcrfull] = ACTIONS(5407), - [anon_sym_BSLASHACRfull] = ACTIONS(5407), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5407), - [anon_sym_BSLASHacs] = ACTIONS(5407), - [anon_sym_BSLASHAcs] = ACTIONS(5407), - [anon_sym_BSLASHacsp] = ACTIONS(5407), - [anon_sym_BSLASHAcsp] = ACTIONS(5407), - [anon_sym_BSLASHacl] = ACTIONS(5407), - [anon_sym_BSLASHAcl] = ACTIONS(5407), - [anon_sym_BSLASHaclp] = ACTIONS(5407), - [anon_sym_BSLASHAclp] = ACTIONS(5407), - [anon_sym_BSLASHacf] = ACTIONS(5407), - [anon_sym_BSLASHAcf] = ACTIONS(5407), - [anon_sym_BSLASHacfp] = ACTIONS(5407), - [anon_sym_BSLASHAcfp] = ACTIONS(5407), - [anon_sym_BSLASHac] = ACTIONS(5407), - [anon_sym_BSLASHAc] = ACTIONS(5407), - [anon_sym_BSLASHacp] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5407), - [anon_sym_BSLASHcolor] = ACTIONS(5407), - [anon_sym_BSLASHcolorbox] = ACTIONS(5407), - [anon_sym_BSLASHtextcolor] = ACTIONS(5407), - [anon_sym_BSLASHpagecolor] = ACTIONS(5407), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5407), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5407), + [1271] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1742), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5469), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [1364] = { - [sym_command_name] = ACTIONS(5197), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5197), - [anon_sym_LPAREN] = ACTIONS(5195), - [anon_sym_RPAREN] = ACTIONS(5195), - [anon_sym_LBRACK] = ACTIONS(5195), - [anon_sym_RBRACK] = ACTIONS(5195), - [anon_sym_COMMA] = ACTIONS(5195), - [anon_sym_EQ] = ACTIONS(5195), - [anon_sym_LBRACE] = ACTIONS(5195), - [sym_word] = ACTIONS(5197), - [sym_placeholder] = ACTIONS(5195), - [anon_sym_PLUS] = ACTIONS(5197), - [anon_sym_DASH] = ACTIONS(5197), - [anon_sym_STAR] = ACTIONS(5197), - [anon_sym_SLASH] = ACTIONS(5197), - [anon_sym_CARET] = ACTIONS(5197), - [anon_sym__] = ACTIONS(5197), - [anon_sym_LT] = ACTIONS(5197), - [anon_sym_GT] = ACTIONS(5197), - [anon_sym_BANG] = ACTIONS(5197), - [anon_sym_PIPE] = ACTIONS(5197), - [anon_sym_COLON] = ACTIONS(5197), - [anon_sym_SQUOTE] = ACTIONS(5197), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), - [anon_sym_DOLLAR] = ACTIONS(5197), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), - [anon_sym_BSLASHbegin] = ACTIONS(5197), - [anon_sym_BSLASHusepackage] = ACTIONS(5197), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), - [anon_sym_BSLASHinclude] = ACTIONS(5197), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), - [anon_sym_BSLASHinput] = ACTIONS(5197), - [anon_sym_BSLASHsubfile] = ACTIONS(5197), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), - [anon_sym_BSLASHbibliography] = ACTIONS(5197), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), - [anon_sym_BSLASHincludesvg] = ACTIONS(5197), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), - [anon_sym_BSLASHimport] = ACTIONS(5197), - [anon_sym_BSLASHsubimport] = ACTIONS(5197), - [anon_sym_BSLASHinputfrom] = ACTIONS(5197), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), - [anon_sym_BSLASHincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), - [anon_sym_BSLASHcaption] = ACTIONS(5197), - [anon_sym_BSLASHcite] = ACTIONS(5197), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCite] = ACTIONS(5197), - [anon_sym_BSLASHnocite] = ACTIONS(5197), - [anon_sym_BSLASHcitet] = ACTIONS(5197), - [anon_sym_BSLASHcitep] = ACTIONS(5197), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteauthor] = ACTIONS(5197), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitetitle] = ACTIONS(5197), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteyear] = ACTIONS(5197), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), - [anon_sym_BSLASHcitedate] = ACTIONS(5197), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), - [anon_sym_BSLASHciteurl] = ACTIONS(5197), - [anon_sym_BSLASHfullcite] = ACTIONS(5197), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), - [anon_sym_BSLASHcitealt] = ACTIONS(5197), - [anon_sym_BSLASHcitealp] = ACTIONS(5197), - [anon_sym_BSLASHcitetext] = ACTIONS(5197), - [anon_sym_BSLASHparencite] = ACTIONS(5197), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHParencite] = ACTIONS(5197), - [anon_sym_BSLASHfootcite] = ACTIONS(5197), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), - [anon_sym_BSLASHtextcite] = ACTIONS(5197), - [anon_sym_BSLASHTextcite] = ACTIONS(5197), - [anon_sym_BSLASHsmartcite] = ACTIONS(5197), - [anon_sym_BSLASHSmartcite] = ACTIONS(5197), - [anon_sym_BSLASHsupercite] = ACTIONS(5197), - [anon_sym_BSLASHautocite] = ACTIONS(5197), - [anon_sym_BSLASHAutocite] = ACTIONS(5197), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), - [anon_sym_BSLASHvolcite] = ACTIONS(5197), - [anon_sym_BSLASHVolcite] = ACTIONS(5197), - [anon_sym_BSLASHpvolcite] = ACTIONS(5197), - [anon_sym_BSLASHPvolcite] = ACTIONS(5197), - [anon_sym_BSLASHfvolcite] = ACTIONS(5197), - [anon_sym_BSLASHftvolcite] = ACTIONS(5197), - [anon_sym_BSLASHsvolcite] = ACTIONS(5197), - [anon_sym_BSLASHSvolcite] = ACTIONS(5197), - [anon_sym_BSLASHtvolcite] = ACTIONS(5197), - [anon_sym_BSLASHTvolcite] = ACTIONS(5197), - [anon_sym_BSLASHavolcite] = ACTIONS(5197), - [anon_sym_BSLASHAvolcite] = ACTIONS(5197), - [anon_sym_BSLASHnotecite] = ACTIONS(5197), - [anon_sym_BSLASHNotecite] = ACTIONS(5197), - [anon_sym_BSLASHpnotecite] = ACTIONS(5197), - [anon_sym_BSLASHPnotecite] = ACTIONS(5197), - [anon_sym_BSLASHfnotecite] = ACTIONS(5197), - [anon_sym_BSLASHlabel] = ACTIONS(5197), - [anon_sym_BSLASHref] = ACTIONS(5197), - [anon_sym_BSLASHeqref] = ACTIONS(5197), - [anon_sym_BSLASHvref] = ACTIONS(5197), - [anon_sym_BSLASHVref] = ACTIONS(5197), - [anon_sym_BSLASHautoref] = ACTIONS(5197), - [anon_sym_BSLASHpageref] = ACTIONS(5197), - [anon_sym_BSLASHcref] = ACTIONS(5197), - [anon_sym_BSLASHCref] = ACTIONS(5197), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnameCref] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), - [anon_sym_BSLASHlabelcref] = ACTIONS(5197), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange] = ACTIONS(5197), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHCrefrange] = ACTIONS(5197), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), - [anon_sym_BSLASHnewlabel] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand] = ACTIONS(5197), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), - [anon_sym_BSLASHdef] = ACTIONS(5197), - [anon_sym_BSLASHlet] = ACTIONS(5197), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), - [anon_sym_BSLASHgls] = ACTIONS(5197), - [anon_sym_BSLASHGls] = ACTIONS(5197), - [anon_sym_BSLASHGLS] = ACTIONS(5197), - [anon_sym_BSLASHglspl] = ACTIONS(5197), - [anon_sym_BSLASHGlspl] = ACTIONS(5197), - [anon_sym_BSLASHGLSpl] = ACTIONS(5197), - [anon_sym_BSLASHglsdisp] = ACTIONS(5197), - [anon_sym_BSLASHglslink] = ACTIONS(5197), - [anon_sym_BSLASHglstext] = ACTIONS(5197), - [anon_sym_BSLASHGlstext] = ACTIONS(5197), - [anon_sym_BSLASHGLStext] = ACTIONS(5197), - [anon_sym_BSLASHglsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), - [anon_sym_BSLASHglsplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSplural] = ACTIONS(5197), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), - [anon_sym_BSLASHglsname] = ACTIONS(5197), - [anon_sym_BSLASHGlsname] = ACTIONS(5197), - [anon_sym_BSLASHGLSname] = ACTIONS(5197), - [anon_sym_BSLASHglssymbol] = ACTIONS(5197), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), - [anon_sym_BSLASHglsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), - [anon_sym_BSLASHglsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), - [anon_sym_BSLASHglsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), - [anon_sym_BSLASHglsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), - [anon_sym_BSLASHglsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), - [anon_sym_BSLASHnewacronym] = ACTIONS(5197), - [anon_sym_BSLASHacrshort] = ACTIONS(5197), - [anon_sym_BSLASHAcrshort] = ACTIONS(5197), - [anon_sym_BSLASHACRshort] = ACTIONS(5197), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), - [anon_sym_BSLASHacrlong] = ACTIONS(5197), - [anon_sym_BSLASHAcrlong] = ACTIONS(5197), - [anon_sym_BSLASHACRlong] = ACTIONS(5197), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), - [anon_sym_BSLASHacrfull] = ACTIONS(5197), - [anon_sym_BSLASHAcrfull] = ACTIONS(5197), - [anon_sym_BSLASHACRfull] = ACTIONS(5197), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), - [anon_sym_BSLASHacs] = ACTIONS(5197), - [anon_sym_BSLASHAcs] = ACTIONS(5197), - [anon_sym_BSLASHacsp] = ACTIONS(5197), - [anon_sym_BSLASHAcsp] = ACTIONS(5197), - [anon_sym_BSLASHacl] = ACTIONS(5197), - [anon_sym_BSLASHAcl] = ACTIONS(5197), - [anon_sym_BSLASHaclp] = ACTIONS(5197), - [anon_sym_BSLASHAclp] = ACTIONS(5197), - [anon_sym_BSLASHacf] = ACTIONS(5197), - [anon_sym_BSLASHAcf] = ACTIONS(5197), - [anon_sym_BSLASHacfp] = ACTIONS(5197), - [anon_sym_BSLASHAcfp] = ACTIONS(5197), - [anon_sym_BSLASHac] = ACTIONS(5197), - [anon_sym_BSLASHAc] = ACTIONS(5197), - [anon_sym_BSLASHacp] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), - [anon_sym_BSLASHcolor] = ACTIONS(5197), - [anon_sym_BSLASHcolorbox] = ACTIONS(5197), - [anon_sym_BSLASHtextcolor] = ACTIONS(5197), - [anon_sym_BSLASHpagecolor] = ACTIONS(5197), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + [1272] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1757), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5471), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1273] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1775), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [anon_sym_RBRACE] = ACTIONS(5473), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1274] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2455), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1275] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2456), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [1365] = { - [sym_command_name] = ACTIONS(4949), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4947), - [anon_sym_RBRACK] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [sym_word] = ACTIONS(4949), - [sym_placeholder] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4949), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym__] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4949), - [anon_sym_BANG] = ACTIONS(4949), - [anon_sym_PIPE] = ACTIONS(4949), - [anon_sym_COLON] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4949), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4947), - [anon_sym_BSLASHbegin] = ACTIONS(4949), - [anon_sym_BSLASHusepackage] = ACTIONS(4949), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4949), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4949), - [anon_sym_BSLASHinclude] = ACTIONS(4949), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4949), - [anon_sym_BSLASHinput] = ACTIONS(4949), - [anon_sym_BSLASHsubfile] = ACTIONS(4949), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4949), - [anon_sym_BSLASHbibliography] = ACTIONS(4949), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4949), - [anon_sym_BSLASHincludesvg] = ACTIONS(4949), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4949), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4949), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4949), - [anon_sym_BSLASHimport] = ACTIONS(4949), - [anon_sym_BSLASHsubimport] = ACTIONS(4949), - [anon_sym_BSLASHinputfrom] = ACTIONS(4949), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4949), - [anon_sym_BSLASHincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHcaption] = ACTIONS(4949), - [anon_sym_BSLASHcite] = ACTIONS(4949), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCite] = ACTIONS(4949), - [anon_sym_BSLASHnocite] = ACTIONS(4949), - [anon_sym_BSLASHcitet] = ACTIONS(4949), - [anon_sym_BSLASHcitep] = ACTIONS(4949), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteyear] = ACTIONS(4949), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitedate] = ACTIONS(4949), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteurl] = ACTIONS(4949), - [anon_sym_BSLASHfullcite] = ACTIONS(4949), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4949), - [anon_sym_BSLASHcitealt] = ACTIONS(4949), - [anon_sym_BSLASHcitealp] = ACTIONS(4949), - [anon_sym_BSLASHcitetext] = ACTIONS(4949), - [anon_sym_BSLASHparencite] = ACTIONS(4949), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHParencite] = ACTIONS(4949), - [anon_sym_BSLASHfootcite] = ACTIONS(4949), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4949), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4949), - [anon_sym_BSLASHtextcite] = ACTIONS(4949), - [anon_sym_BSLASHTextcite] = ACTIONS(4949), - [anon_sym_BSLASHsmartcite] = ACTIONS(4949), - [anon_sym_BSLASHSmartcite] = ACTIONS(4949), - [anon_sym_BSLASHsupercite] = ACTIONS(4949), - [anon_sym_BSLASHautocite] = ACTIONS(4949), - [anon_sym_BSLASHAutocite] = ACTIONS(4949), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHvolcite] = ACTIONS(4949), - [anon_sym_BSLASHVolcite] = ACTIONS(4949), - [anon_sym_BSLASHpvolcite] = ACTIONS(4949), - [anon_sym_BSLASHPvolcite] = ACTIONS(4949), - [anon_sym_BSLASHfvolcite] = ACTIONS(4949), - [anon_sym_BSLASHftvolcite] = ACTIONS(4949), - [anon_sym_BSLASHsvolcite] = ACTIONS(4949), - [anon_sym_BSLASHSvolcite] = ACTIONS(4949), - [anon_sym_BSLASHtvolcite] = ACTIONS(4949), - [anon_sym_BSLASHTvolcite] = ACTIONS(4949), - [anon_sym_BSLASHavolcite] = ACTIONS(4949), - [anon_sym_BSLASHAvolcite] = ACTIONS(4949), - [anon_sym_BSLASHnotecite] = ACTIONS(4949), - [anon_sym_BSLASHNotecite] = ACTIONS(4949), - [anon_sym_BSLASHpnotecite] = ACTIONS(4949), - [anon_sym_BSLASHPnotecite] = ACTIONS(4949), - [anon_sym_BSLASHfnotecite] = ACTIONS(4949), - [anon_sym_BSLASHlabel] = ACTIONS(4949), - [anon_sym_BSLASHref] = ACTIONS(4949), - [anon_sym_BSLASHeqref] = ACTIONS(4949), - [anon_sym_BSLASHvref] = ACTIONS(4949), - [anon_sym_BSLASHVref] = ACTIONS(4949), - [anon_sym_BSLASHautoref] = ACTIONS(4949), - [anon_sym_BSLASHpageref] = ACTIONS(4949), - [anon_sym_BSLASHcref] = ACTIONS(4949), - [anon_sym_BSLASHCref] = ACTIONS(4949), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnameCref] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHlabelcref] = ACTIONS(4949), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnewlabel] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4947), - [anon_sym_BSLASHdef] = ACTIONS(4949), - [anon_sym_BSLASHlet] = ACTIONS(4949), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4949), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4949), - [anon_sym_BSLASHgls] = ACTIONS(4949), - [anon_sym_BSLASHGls] = ACTIONS(4949), - [anon_sym_BSLASHGLS] = ACTIONS(4949), - [anon_sym_BSLASHglspl] = ACTIONS(4949), - [anon_sym_BSLASHGlspl] = ACTIONS(4949), - [anon_sym_BSLASHGLSpl] = ACTIONS(4949), - [anon_sym_BSLASHglsdisp] = ACTIONS(4949), - [anon_sym_BSLASHglslink] = ACTIONS(4949), - [anon_sym_BSLASHglstext] = ACTIONS(4949), - [anon_sym_BSLASHGlstext] = ACTIONS(4949), - [anon_sym_BSLASHGLStext] = ACTIONS(4949), - [anon_sym_BSLASHglsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4949), - [anon_sym_BSLASHglsplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSplural] = ACTIONS(4949), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHglsname] = ACTIONS(4949), - [anon_sym_BSLASHGlsname] = ACTIONS(4949), - [anon_sym_BSLASHGLSname] = ACTIONS(4949), - [anon_sym_BSLASHglssymbol] = ACTIONS(4949), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4949), - [anon_sym_BSLASHglsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4949), - [anon_sym_BSLASHglsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4949), - [anon_sym_BSLASHglsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4949), - [anon_sym_BSLASHglsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4949), - [anon_sym_BSLASHglsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4949), - [anon_sym_BSLASHnewacronym] = ACTIONS(4949), - [anon_sym_BSLASHacrshort] = ACTIONS(4949), - [anon_sym_BSLASHAcrshort] = ACTIONS(4949), - [anon_sym_BSLASHACRshort] = ACTIONS(4949), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4949), - [anon_sym_BSLASHacrlong] = ACTIONS(4949), - [anon_sym_BSLASHAcrlong] = ACTIONS(4949), - [anon_sym_BSLASHACRlong] = ACTIONS(4949), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4949), - [anon_sym_BSLASHacrfull] = ACTIONS(4949), - [anon_sym_BSLASHAcrfull] = ACTIONS(4949), - [anon_sym_BSLASHACRfull] = ACTIONS(4949), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4949), - [anon_sym_BSLASHacs] = ACTIONS(4949), - [anon_sym_BSLASHAcs] = ACTIONS(4949), - [anon_sym_BSLASHacsp] = ACTIONS(4949), - [anon_sym_BSLASHAcsp] = ACTIONS(4949), - [anon_sym_BSLASHacl] = ACTIONS(4949), - [anon_sym_BSLASHAcl] = ACTIONS(4949), - [anon_sym_BSLASHaclp] = ACTIONS(4949), - [anon_sym_BSLASHAclp] = ACTIONS(4949), - [anon_sym_BSLASHacf] = ACTIONS(4949), - [anon_sym_BSLASHAcf] = ACTIONS(4949), - [anon_sym_BSLASHacfp] = ACTIONS(4949), - [anon_sym_BSLASHAcfp] = ACTIONS(4949), - [anon_sym_BSLASHac] = ACTIONS(4949), - [anon_sym_BSLASHAc] = ACTIONS(4949), - [anon_sym_BSLASHacp] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4949), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4949), - [anon_sym_BSLASHcolor] = ACTIONS(4949), - [anon_sym_BSLASHcolorbox] = ACTIONS(4949), - [anon_sym_BSLASHtextcolor] = ACTIONS(4949), - [anon_sym_BSLASHpagecolor] = ACTIONS(4949), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4949), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4949), + [1276] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2453), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [1366] = { - [sym_command_name] = ACTIONS(5411), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5411), - [anon_sym_LPAREN] = ACTIONS(5413), - [anon_sym_RPAREN] = ACTIONS(5413), - [anon_sym_LBRACK] = ACTIONS(5413), - [anon_sym_RBRACK] = ACTIONS(5413), - [anon_sym_COMMA] = ACTIONS(5413), - [anon_sym_EQ] = ACTIONS(5413), - [anon_sym_LBRACE] = ACTIONS(5413), - [sym_word] = ACTIONS(5411), - [sym_placeholder] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(5411), - [anon_sym_STAR] = ACTIONS(5411), - [anon_sym_SLASH] = ACTIONS(5411), - [anon_sym_CARET] = ACTIONS(5411), - [anon_sym__] = ACTIONS(5411), - [anon_sym_LT] = ACTIONS(5411), - [anon_sym_GT] = ACTIONS(5411), - [anon_sym_BANG] = ACTIONS(5411), - [anon_sym_PIPE] = ACTIONS(5411), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_SQUOTE] = ACTIONS(5411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5413), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5413), - [anon_sym_BSLASHbegin] = ACTIONS(5411), - [anon_sym_BSLASHusepackage] = ACTIONS(5411), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5411), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5411), - [anon_sym_BSLASHinclude] = ACTIONS(5411), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5411), - [anon_sym_BSLASHinput] = ACTIONS(5411), - [anon_sym_BSLASHsubfile] = ACTIONS(5411), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5411), - [anon_sym_BSLASHbibliography] = ACTIONS(5411), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5411), - [anon_sym_BSLASHincludesvg] = ACTIONS(5411), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5411), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5411), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5411), - [anon_sym_BSLASHimport] = ACTIONS(5411), - [anon_sym_BSLASHsubimport] = ACTIONS(5411), - [anon_sym_BSLASHinputfrom] = ACTIONS(5411), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5411), - [anon_sym_BSLASHincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHcaption] = ACTIONS(5411), - [anon_sym_BSLASHcite] = ACTIONS(5411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCite] = ACTIONS(5411), - [anon_sym_BSLASHnocite] = ACTIONS(5411), - [anon_sym_BSLASHcitet] = ACTIONS(5411), - [anon_sym_BSLASHcitep] = ACTIONS(5411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteauthor] = ACTIONS(5411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitetitle] = ACTIONS(5411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteyear] = ACTIONS(5411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitedate] = ACTIONS(5411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteurl] = ACTIONS(5411), - [anon_sym_BSLASHfullcite] = ACTIONS(5411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5411), - [anon_sym_BSLASHcitealt] = ACTIONS(5411), - [anon_sym_BSLASHcitealp] = ACTIONS(5411), - [anon_sym_BSLASHcitetext] = ACTIONS(5411), - [anon_sym_BSLASHparencite] = ACTIONS(5411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHParencite] = ACTIONS(5411), - [anon_sym_BSLASHfootcite] = ACTIONS(5411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5411), - [anon_sym_BSLASHtextcite] = ACTIONS(5411), - [anon_sym_BSLASHTextcite] = ACTIONS(5411), - [anon_sym_BSLASHsmartcite] = ACTIONS(5411), - [anon_sym_BSLASHSmartcite] = ACTIONS(5411), - [anon_sym_BSLASHsupercite] = ACTIONS(5411), - [anon_sym_BSLASHautocite] = ACTIONS(5411), - [anon_sym_BSLASHAutocite] = ACTIONS(5411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHvolcite] = ACTIONS(5411), - [anon_sym_BSLASHVolcite] = ACTIONS(5411), - [anon_sym_BSLASHpvolcite] = ACTIONS(5411), - [anon_sym_BSLASHPvolcite] = ACTIONS(5411), - [anon_sym_BSLASHfvolcite] = ACTIONS(5411), - [anon_sym_BSLASHftvolcite] = ACTIONS(5411), - [anon_sym_BSLASHsvolcite] = ACTIONS(5411), - [anon_sym_BSLASHSvolcite] = ACTIONS(5411), - [anon_sym_BSLASHtvolcite] = ACTIONS(5411), - [anon_sym_BSLASHTvolcite] = ACTIONS(5411), - [anon_sym_BSLASHavolcite] = ACTIONS(5411), - [anon_sym_BSLASHAvolcite] = ACTIONS(5411), - [anon_sym_BSLASHnotecite] = ACTIONS(5411), - [anon_sym_BSLASHNotecite] = ACTIONS(5411), - [anon_sym_BSLASHpnotecite] = ACTIONS(5411), - [anon_sym_BSLASHPnotecite] = ACTIONS(5411), - [anon_sym_BSLASHfnotecite] = ACTIONS(5411), - [anon_sym_BSLASHlabel] = ACTIONS(5411), - [anon_sym_BSLASHref] = ACTIONS(5411), - [anon_sym_BSLASHeqref] = ACTIONS(5411), - [anon_sym_BSLASHvref] = ACTIONS(5411), - [anon_sym_BSLASHVref] = ACTIONS(5411), - [anon_sym_BSLASHautoref] = ACTIONS(5411), - [anon_sym_BSLASHpageref] = ACTIONS(5411), - [anon_sym_BSLASHcref] = ACTIONS(5411), - [anon_sym_BSLASHCref] = ACTIONS(5411), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnameCref] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHlabelcref] = ACTIONS(5411), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCrefrange] = ACTIONS(5411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnewlabel] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5411), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5411), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5411), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdef] = ACTIONS(5411), - [anon_sym_BSLASHlet] = ACTIONS(5411), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5411), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5411), - [anon_sym_BSLASHgls] = ACTIONS(5411), - [anon_sym_BSLASHGls] = ACTIONS(5411), - [anon_sym_BSLASHGLS] = ACTIONS(5411), - [anon_sym_BSLASHglspl] = ACTIONS(5411), - [anon_sym_BSLASHGlspl] = ACTIONS(5411), - [anon_sym_BSLASHGLSpl] = ACTIONS(5411), - [anon_sym_BSLASHglsdisp] = ACTIONS(5411), - [anon_sym_BSLASHglslink] = ACTIONS(5411), - [anon_sym_BSLASHglstext] = ACTIONS(5411), - [anon_sym_BSLASHGlstext] = ACTIONS(5411), - [anon_sym_BSLASHGLStext] = ACTIONS(5411), - [anon_sym_BSLASHglsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5411), - [anon_sym_BSLASHglsplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSplural] = ACTIONS(5411), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHglsname] = ACTIONS(5411), - [anon_sym_BSLASHGlsname] = ACTIONS(5411), - [anon_sym_BSLASHGLSname] = ACTIONS(5411), - [anon_sym_BSLASHglssymbol] = ACTIONS(5411), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5411), - [anon_sym_BSLASHglsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5411), - [anon_sym_BSLASHglsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5411), - [anon_sym_BSLASHglsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5411), - [anon_sym_BSLASHglsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5411), - [anon_sym_BSLASHglsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5411), - [anon_sym_BSLASHnewacronym] = ACTIONS(5411), - [anon_sym_BSLASHacrshort] = ACTIONS(5411), - [anon_sym_BSLASHAcrshort] = ACTIONS(5411), - [anon_sym_BSLASHACRshort] = ACTIONS(5411), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5411), - [anon_sym_BSLASHacrlong] = ACTIONS(5411), - [anon_sym_BSLASHAcrlong] = ACTIONS(5411), - [anon_sym_BSLASHACRlong] = ACTIONS(5411), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5411), - [anon_sym_BSLASHacrfull] = ACTIONS(5411), - [anon_sym_BSLASHAcrfull] = ACTIONS(5411), - [anon_sym_BSLASHACRfull] = ACTIONS(5411), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5411), - [anon_sym_BSLASHacs] = ACTIONS(5411), - [anon_sym_BSLASHAcs] = ACTIONS(5411), - [anon_sym_BSLASHacsp] = ACTIONS(5411), - [anon_sym_BSLASHAcsp] = ACTIONS(5411), - [anon_sym_BSLASHacl] = ACTIONS(5411), - [anon_sym_BSLASHAcl] = ACTIONS(5411), - [anon_sym_BSLASHaclp] = ACTIONS(5411), - [anon_sym_BSLASHAclp] = ACTIONS(5411), - [anon_sym_BSLASHacf] = ACTIONS(5411), - [anon_sym_BSLASHAcf] = ACTIONS(5411), - [anon_sym_BSLASHacfp] = ACTIONS(5411), - [anon_sym_BSLASHAcfp] = ACTIONS(5411), - [anon_sym_BSLASHac] = ACTIONS(5411), - [anon_sym_BSLASHAc] = ACTIONS(5411), - [anon_sym_BSLASHacp] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5411), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5411), - [anon_sym_BSLASHcolor] = ACTIONS(5411), - [anon_sym_BSLASHcolorbox] = ACTIONS(5411), - [anon_sym_BSLASHtextcolor] = ACTIONS(5411), - [anon_sym_BSLASHpagecolor] = ACTIONS(5411), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5411), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5411), + [1277] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2407), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [1367] = { - [sym_command_name] = ACTIONS(5053), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASHbegin] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [1278] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2378), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1279] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2369), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1280] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2408), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [1368] = { - [sym_command_name] = ACTIONS(5049), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASHbegin] = ACTIONS(5049), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [1281] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2351), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1282] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2476), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1283] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2475), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1284] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2438), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1285] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2375), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [1369] = { - [sym_command_name] = ACTIONS(5217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASHbegin] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [1286] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2403), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1287] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(1853), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1288] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2379), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1289] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2404), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), + }, + [1290] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2427), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [1370] = { - [sym_command_name] = ACTIONS(5235), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5235), - [anon_sym_LPAREN] = ACTIONS(5233), - [anon_sym_RPAREN] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_RBRACK] = ACTIONS(5233), - [anon_sym_COMMA] = ACTIONS(5233), - [anon_sym_EQ] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5233), - [sym_word] = ACTIONS(5235), - [sym_placeholder] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_CARET] = ACTIONS(5235), - [anon_sym__] = ACTIONS(5235), - [anon_sym_LT] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5235), - [anon_sym_BANG] = ACTIONS(5235), - [anon_sym_PIPE] = ACTIONS(5235), - [anon_sym_COLON] = ACTIONS(5235), - [anon_sym_SQUOTE] = ACTIONS(5235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), - [anon_sym_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), - [anon_sym_BSLASHbegin] = ACTIONS(5235), - [anon_sym_BSLASHusepackage] = ACTIONS(5235), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), - [anon_sym_BSLASHinclude] = ACTIONS(5235), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), - [anon_sym_BSLASHinput] = ACTIONS(5235), - [anon_sym_BSLASHsubfile] = ACTIONS(5235), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), - [anon_sym_BSLASHbibliography] = ACTIONS(5235), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), - [anon_sym_BSLASHincludesvg] = ACTIONS(5235), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), - [anon_sym_BSLASHimport] = ACTIONS(5235), - [anon_sym_BSLASHsubimport] = ACTIONS(5235), - [anon_sym_BSLASHinputfrom] = ACTIONS(5235), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), - [anon_sym_BSLASHincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHcaption] = ACTIONS(5235), - [anon_sym_BSLASHcite] = ACTIONS(5235), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCite] = ACTIONS(5235), - [anon_sym_BSLASHnocite] = ACTIONS(5235), - [anon_sym_BSLASHcitet] = ACTIONS(5235), - [anon_sym_BSLASHcitep] = ACTIONS(5235), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteyear] = ACTIONS(5235), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitedate] = ACTIONS(5235), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteurl] = ACTIONS(5235), - [anon_sym_BSLASHfullcite] = ACTIONS(5235), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), - [anon_sym_BSLASHcitealt] = ACTIONS(5235), - [anon_sym_BSLASHcitealp] = ACTIONS(5235), - [anon_sym_BSLASHcitetext] = ACTIONS(5235), - [anon_sym_BSLASHparencite] = ACTIONS(5235), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHParencite] = ACTIONS(5235), - [anon_sym_BSLASHfootcite] = ACTIONS(5235), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), - [anon_sym_BSLASHtextcite] = ACTIONS(5235), - [anon_sym_BSLASHTextcite] = ACTIONS(5235), - [anon_sym_BSLASHsmartcite] = ACTIONS(5235), - [anon_sym_BSLASHSmartcite] = ACTIONS(5235), - [anon_sym_BSLASHsupercite] = ACTIONS(5235), - [anon_sym_BSLASHautocite] = ACTIONS(5235), - [anon_sym_BSLASHAutocite] = ACTIONS(5235), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHvolcite] = ACTIONS(5235), - [anon_sym_BSLASHVolcite] = ACTIONS(5235), - [anon_sym_BSLASHpvolcite] = ACTIONS(5235), - [anon_sym_BSLASHPvolcite] = ACTIONS(5235), - [anon_sym_BSLASHfvolcite] = ACTIONS(5235), - [anon_sym_BSLASHftvolcite] = ACTIONS(5235), - [anon_sym_BSLASHsvolcite] = ACTIONS(5235), - [anon_sym_BSLASHSvolcite] = ACTIONS(5235), - [anon_sym_BSLASHtvolcite] = ACTIONS(5235), - [anon_sym_BSLASHTvolcite] = ACTIONS(5235), - [anon_sym_BSLASHavolcite] = ACTIONS(5235), - [anon_sym_BSLASHAvolcite] = ACTIONS(5235), - [anon_sym_BSLASHnotecite] = ACTIONS(5235), - [anon_sym_BSLASHNotecite] = ACTIONS(5235), - [anon_sym_BSLASHpnotecite] = ACTIONS(5235), - [anon_sym_BSLASHPnotecite] = ACTIONS(5235), - [anon_sym_BSLASHfnotecite] = ACTIONS(5235), - [anon_sym_BSLASHlabel] = ACTIONS(5235), - [anon_sym_BSLASHref] = ACTIONS(5235), - [anon_sym_BSLASHeqref] = ACTIONS(5235), - [anon_sym_BSLASHvref] = ACTIONS(5235), - [anon_sym_BSLASHVref] = ACTIONS(5235), - [anon_sym_BSLASHautoref] = ACTIONS(5235), - [anon_sym_BSLASHpageref] = ACTIONS(5235), - [anon_sym_BSLASHcref] = ACTIONS(5235), - [anon_sym_BSLASHCref] = ACTIONS(5235), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnameCref] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHlabelcref] = ACTIONS(5235), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnewlabel] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), - [anon_sym_BSLASHdef] = ACTIONS(5235), - [anon_sym_BSLASHlet] = ACTIONS(5235), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), - [anon_sym_BSLASHgls] = ACTIONS(5235), - [anon_sym_BSLASHGls] = ACTIONS(5235), - [anon_sym_BSLASHGLS] = ACTIONS(5235), - [anon_sym_BSLASHglspl] = ACTIONS(5235), - [anon_sym_BSLASHGlspl] = ACTIONS(5235), - [anon_sym_BSLASHGLSpl] = ACTIONS(5235), - [anon_sym_BSLASHglsdisp] = ACTIONS(5235), - [anon_sym_BSLASHglslink] = ACTIONS(5235), - [anon_sym_BSLASHglstext] = ACTIONS(5235), - [anon_sym_BSLASHGlstext] = ACTIONS(5235), - [anon_sym_BSLASHGLStext] = ACTIONS(5235), - [anon_sym_BSLASHglsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), - [anon_sym_BSLASHglsplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSplural] = ACTIONS(5235), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHglsname] = ACTIONS(5235), - [anon_sym_BSLASHGlsname] = ACTIONS(5235), - [anon_sym_BSLASHGLSname] = ACTIONS(5235), - [anon_sym_BSLASHglssymbol] = ACTIONS(5235), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), - [anon_sym_BSLASHglsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), - [anon_sym_BSLASHglsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), - [anon_sym_BSLASHglsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), - [anon_sym_BSLASHglsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), - [anon_sym_BSLASHglsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), - [anon_sym_BSLASHnewacronym] = ACTIONS(5235), - [anon_sym_BSLASHacrshort] = ACTIONS(5235), - [anon_sym_BSLASHAcrshort] = ACTIONS(5235), - [anon_sym_BSLASHACRshort] = ACTIONS(5235), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), - [anon_sym_BSLASHacrlong] = ACTIONS(5235), - [anon_sym_BSLASHAcrlong] = ACTIONS(5235), - [anon_sym_BSLASHACRlong] = ACTIONS(5235), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), - [anon_sym_BSLASHacrfull] = ACTIONS(5235), - [anon_sym_BSLASHAcrfull] = ACTIONS(5235), - [anon_sym_BSLASHACRfull] = ACTIONS(5235), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), - [anon_sym_BSLASHacs] = ACTIONS(5235), - [anon_sym_BSLASHAcs] = ACTIONS(5235), - [anon_sym_BSLASHacsp] = ACTIONS(5235), - [anon_sym_BSLASHAcsp] = ACTIONS(5235), - [anon_sym_BSLASHacl] = ACTIONS(5235), - [anon_sym_BSLASHAcl] = ACTIONS(5235), - [anon_sym_BSLASHaclp] = ACTIONS(5235), - [anon_sym_BSLASHAclp] = ACTIONS(5235), - [anon_sym_BSLASHacf] = ACTIONS(5235), - [anon_sym_BSLASHAcf] = ACTIONS(5235), - [anon_sym_BSLASHacfp] = ACTIONS(5235), - [anon_sym_BSLASHAcfp] = ACTIONS(5235), - [anon_sym_BSLASHac] = ACTIONS(5235), - [anon_sym_BSLASHAc] = ACTIONS(5235), - [anon_sym_BSLASHacp] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), - [anon_sym_BSLASHcolor] = ACTIONS(5235), - [anon_sym_BSLASHcolorbox] = ACTIONS(5235), - [anon_sym_BSLASHtextcolor] = ACTIONS(5235), - [anon_sym_BSLASHpagecolor] = ACTIONS(5235), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), + [1291] = { + [sym_block_comment] = STATE(1560), + [sym_text] = STATE(2428), + [sym_operator] = STATE(1560), + [sym__command] = STATE(1560), + [sym_generic_command] = STATE(1560), + [sym_package_include] = STATE(1560), + [sym_class_include] = STATE(1560), + [sym_latex_include] = STATE(1560), + [sym_biblatex_include] = STATE(1560), + [sym_bibtex_include] = STATE(1560), + [sym_graphics_include] = STATE(1560), + [sym_svg_include] = STATE(1560), + [sym_inkscape_include] = STATE(1560), + [sym_verbatim_include] = STATE(1560), + [sym_import_include] = STATE(1560), + [sym_caption] = STATE(1560), + [sym_citation] = STATE(1560), + [sym_label_definition] = STATE(1560), + [sym_label_reference] = STATE(1560), + [sym_label_reference_range] = STATE(1560), + [sym_label_number] = STATE(1560), + [sym_new_command_definition] = STATE(1560), + [sym_old_command_definition] = STATE(1560), + [sym_let_command_definition] = STATE(1560), + [sym_environment_definition] = STATE(1560), + [sym_glossary_entry_definition] = STATE(1560), + [sym_glossary_entry_reference] = STATE(1560), + [sym_acronym_definition] = STATE(1560), + [sym_acronym_reference] = STATE(1560), + [sym_theorem_definition] = STATE(1560), + [sym_color_definition] = STATE(1560), + [sym_color_set_definition] = STATE(1560), + [sym_color_reference] = STATE(1560), + [sym_tikz_library_import] = STATE(1560), + [aux_sym_text_repeat1] = STATE(1254), + [sym_command_name] = ACTIONS(4359), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4361), + [sym_word] = ACTIONS(4363), + [sym_placeholder] = ACTIONS(4365), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4367), + [anon_sym_SLASH] = ACTIONS(4367), + [anon_sym_CARET] = ACTIONS(4367), + [anon_sym__] = ACTIONS(4367), + [anon_sym_LT] = ACTIONS(4367), + [anon_sym_GT] = ACTIONS(4367), + [anon_sym_BANG] = ACTIONS(4367), + [anon_sym_PIPE] = ACTIONS(4367), + [anon_sym_COLON] = ACTIONS(4367), + [anon_sym_SQUOTE] = ACTIONS(4367), + [anon_sym_BSLASHusepackage] = ACTIONS(4379), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4379), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4381), + [anon_sym_BSLASHinclude] = ACTIONS(4383), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4383), + [anon_sym_BSLASHinput] = ACTIONS(4383), + [anon_sym_BSLASHsubfile] = ACTIONS(4383), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4385), + [anon_sym_BSLASHbibliography] = ACTIONS(4387), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4389), + [anon_sym_BSLASHincludesvg] = ACTIONS(4391), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4393), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4395), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4395), + [anon_sym_BSLASHimport] = ACTIONS(4397), + [anon_sym_BSLASHsubimport] = ACTIONS(4397), + [anon_sym_BSLASHinputfrom] = ACTIONS(4397), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4397), + [anon_sym_BSLASHincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4397), + [anon_sym_BSLASHcaption] = ACTIONS(4399), + [anon_sym_BSLASHcite] = ACTIONS(4401), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCite] = ACTIONS(4401), + [anon_sym_BSLASHnocite] = ACTIONS(4401), + [anon_sym_BSLASHcitet] = ACTIONS(4401), + [anon_sym_BSLASHcitep] = ACTIONS(4401), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteauthor] = ACTIONS(4401), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4401), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitetitle] = ACTIONS(4401), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteyear] = ACTIONS(4401), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4403), + [anon_sym_BSLASHcitedate] = ACTIONS(4401), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4403), + [anon_sym_BSLASHciteurl] = ACTIONS(4401), + [anon_sym_BSLASHfullcite] = ACTIONS(4401), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4401), + [anon_sym_BSLASHcitealt] = ACTIONS(4401), + [anon_sym_BSLASHcitealp] = ACTIONS(4401), + [anon_sym_BSLASHcitetext] = ACTIONS(4401), + [anon_sym_BSLASHparencite] = ACTIONS(4401), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHParencite] = ACTIONS(4401), + [anon_sym_BSLASHfootcite] = ACTIONS(4401), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4401), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4401), + [anon_sym_BSLASHtextcite] = ACTIONS(4401), + [anon_sym_BSLASHTextcite] = ACTIONS(4401), + [anon_sym_BSLASHsmartcite] = ACTIONS(4401), + [anon_sym_BSLASHSmartcite] = ACTIONS(4401), + [anon_sym_BSLASHsupercite] = ACTIONS(4401), + [anon_sym_BSLASHautocite] = ACTIONS(4401), + [anon_sym_BSLASHAutocite] = ACTIONS(4401), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4403), + [anon_sym_BSLASHvolcite] = ACTIONS(4401), + [anon_sym_BSLASHVolcite] = ACTIONS(4401), + [anon_sym_BSLASHpvolcite] = ACTIONS(4401), + [anon_sym_BSLASHPvolcite] = ACTIONS(4401), + [anon_sym_BSLASHfvolcite] = ACTIONS(4401), + [anon_sym_BSLASHftvolcite] = ACTIONS(4401), + [anon_sym_BSLASHsvolcite] = ACTIONS(4401), + [anon_sym_BSLASHSvolcite] = ACTIONS(4401), + [anon_sym_BSLASHtvolcite] = ACTIONS(4401), + [anon_sym_BSLASHTvolcite] = ACTIONS(4401), + [anon_sym_BSLASHavolcite] = ACTIONS(4401), + [anon_sym_BSLASHAvolcite] = ACTIONS(4401), + [anon_sym_BSLASHnotecite] = ACTIONS(4401), + [anon_sym_BSLASHNotecite] = ACTIONS(4401), + [anon_sym_BSLASHpnotecite] = ACTIONS(4401), + [anon_sym_BSLASHPnotecite] = ACTIONS(4401), + [anon_sym_BSLASHfnotecite] = ACTIONS(4401), + [anon_sym_BSLASHlabel] = ACTIONS(4405), + [anon_sym_BSLASHref] = ACTIONS(4407), + [anon_sym_BSLASHeqref] = ACTIONS(4407), + [anon_sym_BSLASHvref] = ACTIONS(4407), + [anon_sym_BSLASHVref] = ACTIONS(4407), + [anon_sym_BSLASHautoref] = ACTIONS(4407), + [anon_sym_BSLASHpageref] = ACTIONS(4407), + [anon_sym_BSLASHcref] = ACTIONS(4407), + [anon_sym_BSLASHCref] = ACTIONS(4407), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4409), + [anon_sym_BSLASHnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnameCref] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4407), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4407), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4407), + [anon_sym_BSLASHlabelcref] = ACTIONS(4407), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4407), + [anon_sym_BSLASHcrefrange] = ACTIONS(4411), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHCrefrange] = ACTIONS(4411), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4413), + [anon_sym_BSLASHnewlabel] = ACTIONS(4415), + [anon_sym_BSLASHnewcommand] = ACTIONS(4417), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4417), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4417), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4419), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4417), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4419), + [anon_sym_BSLASHdef] = ACTIONS(4421), + [anon_sym_BSLASHlet] = ACTIONS(4423), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4425), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4427), + [anon_sym_BSLASHgls] = ACTIONS(4429), + [anon_sym_BSLASHGls] = ACTIONS(4429), + [anon_sym_BSLASHGLS] = ACTIONS(4429), + [anon_sym_BSLASHglspl] = ACTIONS(4429), + [anon_sym_BSLASHGlspl] = ACTIONS(4429), + [anon_sym_BSLASHGLSpl] = ACTIONS(4429), + [anon_sym_BSLASHglsdisp] = ACTIONS(4429), + [anon_sym_BSLASHglslink] = ACTIONS(4429), + [anon_sym_BSLASHglstext] = ACTIONS(4429), + [anon_sym_BSLASHGlstext] = ACTIONS(4429), + [anon_sym_BSLASHGLStext] = ACTIONS(4429), + [anon_sym_BSLASHglsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4429), + [anon_sym_BSLASHglsplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSplural] = ACTIONS(4429), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4429), + [anon_sym_BSLASHglsname] = ACTIONS(4429), + [anon_sym_BSLASHGlsname] = ACTIONS(4429), + [anon_sym_BSLASHGLSname] = ACTIONS(4429), + [anon_sym_BSLASHglssymbol] = ACTIONS(4429), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4429), + [anon_sym_BSLASHglsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4429), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4429), + [anon_sym_BSLASHglsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4429), + [anon_sym_BSLASHglsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4429), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4429), + [anon_sym_BSLASHglsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4429), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4429), + [anon_sym_BSLASHglsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4429), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4429), + [anon_sym_BSLASHnewacronym] = ACTIONS(4431), + [anon_sym_BSLASHacrshort] = ACTIONS(4433), + [anon_sym_BSLASHAcrshort] = ACTIONS(4433), + [anon_sym_BSLASHACRshort] = ACTIONS(4433), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4433), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4433), + [anon_sym_BSLASHacrlong] = ACTIONS(4433), + [anon_sym_BSLASHAcrlong] = ACTIONS(4433), + [anon_sym_BSLASHACRlong] = ACTIONS(4433), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4433), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4433), + [anon_sym_BSLASHacrfull] = ACTIONS(4433), + [anon_sym_BSLASHAcrfull] = ACTIONS(4433), + [anon_sym_BSLASHACRfull] = ACTIONS(4433), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4433), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4433), + [anon_sym_BSLASHacs] = ACTIONS(4433), + [anon_sym_BSLASHAcs] = ACTIONS(4433), + [anon_sym_BSLASHacsp] = ACTIONS(4433), + [anon_sym_BSLASHAcsp] = ACTIONS(4433), + [anon_sym_BSLASHacl] = ACTIONS(4433), + [anon_sym_BSLASHAcl] = ACTIONS(4433), + [anon_sym_BSLASHaclp] = ACTIONS(4433), + [anon_sym_BSLASHAclp] = ACTIONS(4433), + [anon_sym_BSLASHacf] = ACTIONS(4433), + [anon_sym_BSLASHAcf] = ACTIONS(4433), + [anon_sym_BSLASHacfp] = ACTIONS(4433), + [anon_sym_BSLASHAcfp] = ACTIONS(4433), + [anon_sym_BSLASHac] = ACTIONS(4433), + [anon_sym_BSLASHAc] = ACTIONS(4433), + [anon_sym_BSLASHacp] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4433), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4433), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4433), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4433), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4435), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4435), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4437), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4439), + [anon_sym_BSLASHcolor] = ACTIONS(4441), + [anon_sym_BSLASHcolorbox] = ACTIONS(4441), + [anon_sym_BSLASHtextcolor] = ACTIONS(4441), + [anon_sym_BSLASHpagecolor] = ACTIONS(4441), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4443), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4443), }, - [1371] = { - [sym_command_name] = ACTIONS(4923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4923), - [anon_sym_BSLASHfi] = ACTIONS(5441), - [anon_sym_LPAREN] = ACTIONS(4921), - [anon_sym_RPAREN] = ACTIONS(4921), - [anon_sym_LBRACK] = ACTIONS(4921), - [anon_sym_RBRACK] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4921), - [anon_sym_LBRACE] = ACTIONS(4921), - [anon_sym_RBRACE] = ACTIONS(4921), - [sym_word] = ACTIONS(4923), - [sym_placeholder] = ACTIONS(4921), - [anon_sym_PLUS] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_STAR] = ACTIONS(4923), - [anon_sym_SLASH] = ACTIONS(4923), - [anon_sym_CARET] = ACTIONS(4923), - [anon_sym__] = ACTIONS(4923), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_BANG] = ACTIONS(4923), - [anon_sym_PIPE] = ACTIONS(4923), - [anon_sym_COLON] = ACTIONS(4923), - [anon_sym_SQUOTE] = ACTIONS(4923), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4921), - [anon_sym_DOLLAR] = ACTIONS(4923), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4921), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4921), - [anon_sym_BSLASHusepackage] = ACTIONS(4923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4923), - [anon_sym_BSLASHinclude] = ACTIONS(4923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4923), - [anon_sym_BSLASHinput] = ACTIONS(4923), - [anon_sym_BSLASHsubfile] = ACTIONS(4923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4923), - [anon_sym_BSLASHbibliography] = ACTIONS(4923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4923), - [anon_sym_BSLASHincludesvg] = ACTIONS(4923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4923), - [anon_sym_BSLASHimport] = ACTIONS(4923), - [anon_sym_BSLASHsubimport] = ACTIONS(4923), - [anon_sym_BSLASHinputfrom] = ACTIONS(4923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4923), - [anon_sym_BSLASHincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHcaption] = ACTIONS(4923), - [anon_sym_BSLASHcite] = ACTIONS(4923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCite] = ACTIONS(4923), - [anon_sym_BSLASHnocite] = ACTIONS(4923), - [anon_sym_BSLASHcitet] = ACTIONS(4923), - [anon_sym_BSLASHcitep] = ACTIONS(4923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteyear] = ACTIONS(4923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitedate] = ACTIONS(4923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteurl] = ACTIONS(4923), - [anon_sym_BSLASHfullcite] = ACTIONS(4923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4923), - [anon_sym_BSLASHcitealt] = ACTIONS(4923), - [anon_sym_BSLASHcitealp] = ACTIONS(4923), - [anon_sym_BSLASHcitetext] = ACTIONS(4923), - [anon_sym_BSLASHparencite] = ACTIONS(4923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHParencite] = ACTIONS(4923), - [anon_sym_BSLASHfootcite] = ACTIONS(4923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4923), - [anon_sym_BSLASHtextcite] = ACTIONS(4923), - [anon_sym_BSLASHTextcite] = ACTIONS(4923), - [anon_sym_BSLASHsmartcite] = ACTIONS(4923), - [anon_sym_BSLASHSmartcite] = ACTIONS(4923), - [anon_sym_BSLASHsupercite] = ACTIONS(4923), - [anon_sym_BSLASHautocite] = ACTIONS(4923), - [anon_sym_BSLASHAutocite] = ACTIONS(4923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHvolcite] = ACTIONS(4923), - [anon_sym_BSLASHVolcite] = ACTIONS(4923), - [anon_sym_BSLASHpvolcite] = ACTIONS(4923), - [anon_sym_BSLASHPvolcite] = ACTIONS(4923), - [anon_sym_BSLASHfvolcite] = ACTIONS(4923), - [anon_sym_BSLASHftvolcite] = ACTIONS(4923), - [anon_sym_BSLASHsvolcite] = ACTIONS(4923), - [anon_sym_BSLASHSvolcite] = ACTIONS(4923), - [anon_sym_BSLASHtvolcite] = ACTIONS(4923), - [anon_sym_BSLASHTvolcite] = ACTIONS(4923), - [anon_sym_BSLASHavolcite] = ACTIONS(4923), - [anon_sym_BSLASHAvolcite] = ACTIONS(4923), - [anon_sym_BSLASHnotecite] = ACTIONS(4923), - [anon_sym_BSLASHNotecite] = ACTIONS(4923), - [anon_sym_BSLASHpnotecite] = ACTIONS(4923), - [anon_sym_BSLASHPnotecite] = ACTIONS(4923), - [anon_sym_BSLASHfnotecite] = ACTIONS(4923), - [anon_sym_BSLASHlabel] = ACTIONS(4923), - [anon_sym_BSLASHref] = ACTIONS(4923), - [anon_sym_BSLASHeqref] = ACTIONS(4923), - [anon_sym_BSLASHvref] = ACTIONS(4923), - [anon_sym_BSLASHVref] = ACTIONS(4923), - [anon_sym_BSLASHautoref] = ACTIONS(4923), - [anon_sym_BSLASHpageref] = ACTIONS(4923), - [anon_sym_BSLASHcref] = ACTIONS(4923), - [anon_sym_BSLASHCref] = ACTIONS(4923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnameCref] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHlabelcref] = ACTIONS(4923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnewlabel] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4921), - [anon_sym_BSLASHdef] = ACTIONS(4923), - [anon_sym_BSLASHlet] = ACTIONS(4923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4923), - [anon_sym_BSLASHgls] = ACTIONS(4923), - [anon_sym_BSLASHGls] = ACTIONS(4923), - [anon_sym_BSLASHGLS] = ACTIONS(4923), - [anon_sym_BSLASHglspl] = ACTIONS(4923), - [anon_sym_BSLASHGlspl] = ACTIONS(4923), - [anon_sym_BSLASHGLSpl] = ACTIONS(4923), - [anon_sym_BSLASHglsdisp] = ACTIONS(4923), - [anon_sym_BSLASHglslink] = ACTIONS(4923), - [anon_sym_BSLASHglstext] = ACTIONS(4923), - [anon_sym_BSLASHGlstext] = ACTIONS(4923), - [anon_sym_BSLASHGLStext] = ACTIONS(4923), - [anon_sym_BSLASHglsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4923), - [anon_sym_BSLASHglsplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSplural] = ACTIONS(4923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHglsname] = ACTIONS(4923), - [anon_sym_BSLASHGlsname] = ACTIONS(4923), - [anon_sym_BSLASHGLSname] = ACTIONS(4923), - [anon_sym_BSLASHglssymbol] = ACTIONS(4923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4923), - [anon_sym_BSLASHglsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4923), - [anon_sym_BSLASHglsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4923), - [anon_sym_BSLASHglsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4923), - [anon_sym_BSLASHglsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4923), - [anon_sym_BSLASHglsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4923), - [anon_sym_BSLASHnewacronym] = ACTIONS(4923), - [anon_sym_BSLASHacrshort] = ACTIONS(4923), - [anon_sym_BSLASHAcrshort] = ACTIONS(4923), - [anon_sym_BSLASHACRshort] = ACTIONS(4923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4923), - [anon_sym_BSLASHacrlong] = ACTIONS(4923), - [anon_sym_BSLASHAcrlong] = ACTIONS(4923), - [anon_sym_BSLASHACRlong] = ACTIONS(4923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4923), - [anon_sym_BSLASHacrfull] = ACTIONS(4923), - [anon_sym_BSLASHAcrfull] = ACTIONS(4923), - [anon_sym_BSLASHACRfull] = ACTIONS(4923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4923), - [anon_sym_BSLASHacs] = ACTIONS(4923), - [anon_sym_BSLASHAcs] = ACTIONS(4923), - [anon_sym_BSLASHacsp] = ACTIONS(4923), - [anon_sym_BSLASHAcsp] = ACTIONS(4923), - [anon_sym_BSLASHacl] = ACTIONS(4923), - [anon_sym_BSLASHAcl] = ACTIONS(4923), - [anon_sym_BSLASHaclp] = ACTIONS(4923), - [anon_sym_BSLASHAclp] = ACTIONS(4923), - [anon_sym_BSLASHacf] = ACTIONS(4923), - [anon_sym_BSLASHAcf] = ACTIONS(4923), - [anon_sym_BSLASHacfp] = ACTIONS(4923), - [anon_sym_BSLASHAcfp] = ACTIONS(4923), - [anon_sym_BSLASHac] = ACTIONS(4923), - [anon_sym_BSLASHAc] = ACTIONS(4923), - [anon_sym_BSLASHacp] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4923), - [anon_sym_BSLASHcolor] = ACTIONS(4923), - [anon_sym_BSLASHcolorbox] = ACTIONS(4923), - [anon_sym_BSLASHtextcolor] = ACTIONS(4923), - [anon_sym_BSLASHpagecolor] = ACTIONS(4923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4923), + [1292] = { + [sym_curly_group] = STATE(1402), + [sym_mixed_group] = STATE(1402), + [aux_sym_generic_command_repeat1] = STATE(1292), + [sym_command_name] = ACTIONS(4461), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(5475), + [anon_sym_RPAREN] = ACTIONS(4459), + [anon_sym_LBRACK] = ACTIONS(5475), + [anon_sym_RBRACK] = ACTIONS(4459), + [anon_sym_COMMA] = ACTIONS(4459), + [anon_sym_EQ] = ACTIONS(4459), + [anon_sym_LBRACE] = ACTIONS(5478), + [sym_word] = ACTIONS(4461), + [sym_placeholder] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_STAR] = ACTIONS(4461), + [anon_sym_SLASH] = ACTIONS(4461), + [anon_sym_CARET] = ACTIONS(4461), + [anon_sym__] = ACTIONS(4461), + [anon_sym_LT] = ACTIONS(4461), + [anon_sym_GT] = ACTIONS(4461), + [anon_sym_BANG] = ACTIONS(4461), + [anon_sym_PIPE] = ACTIONS(4461), + [anon_sym_COLON] = ACTIONS(4461), + [anon_sym_SQUOTE] = ACTIONS(4461), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), + [anon_sym_DOLLAR] = ACTIONS(4461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), + [anon_sym_BSLASHbegin] = ACTIONS(4461), + [anon_sym_BSLASHusepackage] = ACTIONS(4461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), + [anon_sym_BSLASHinclude] = ACTIONS(4461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), + [anon_sym_BSLASHinput] = ACTIONS(4461), + [anon_sym_BSLASHsubfile] = ACTIONS(4461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), + [anon_sym_BSLASHbibliography] = ACTIONS(4461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), + [anon_sym_BSLASHincludesvg] = ACTIONS(4461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), + [anon_sym_BSLASHimport] = ACTIONS(4461), + [anon_sym_BSLASHsubimport] = ACTIONS(4461), + [anon_sym_BSLASHinputfrom] = ACTIONS(4461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), + [anon_sym_BSLASHincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHcaption] = ACTIONS(4461), + [anon_sym_BSLASHcite] = ACTIONS(4461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCite] = ACTIONS(4461), + [anon_sym_BSLASHnocite] = ACTIONS(4461), + [anon_sym_BSLASHcitet] = ACTIONS(4461), + [anon_sym_BSLASHcitep] = ACTIONS(4461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteauthor] = ACTIONS(4461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitetitle] = ACTIONS(4461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteyear] = ACTIONS(4461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitedate] = ACTIONS(4461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteurl] = ACTIONS(4461), + [anon_sym_BSLASHfullcite] = ACTIONS(4461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), + [anon_sym_BSLASHcitealt] = ACTIONS(4461), + [anon_sym_BSLASHcitealp] = ACTIONS(4461), + [anon_sym_BSLASHcitetext] = ACTIONS(4461), + [anon_sym_BSLASHparencite] = ACTIONS(4461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHParencite] = ACTIONS(4461), + [anon_sym_BSLASHfootcite] = ACTIONS(4461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), + [anon_sym_BSLASHtextcite] = ACTIONS(4461), + [anon_sym_BSLASHTextcite] = ACTIONS(4461), + [anon_sym_BSLASHsmartcite] = ACTIONS(4461), + [anon_sym_BSLASHSmartcite] = ACTIONS(4461), + [anon_sym_BSLASHsupercite] = ACTIONS(4461), + [anon_sym_BSLASHautocite] = ACTIONS(4461), + [anon_sym_BSLASHAutocite] = ACTIONS(4461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHvolcite] = ACTIONS(4461), + [anon_sym_BSLASHVolcite] = ACTIONS(4461), + [anon_sym_BSLASHpvolcite] = ACTIONS(4461), + [anon_sym_BSLASHPvolcite] = ACTIONS(4461), + [anon_sym_BSLASHfvolcite] = ACTIONS(4461), + [anon_sym_BSLASHftvolcite] = ACTIONS(4461), + [anon_sym_BSLASHsvolcite] = ACTIONS(4461), + [anon_sym_BSLASHSvolcite] = ACTIONS(4461), + [anon_sym_BSLASHtvolcite] = ACTIONS(4461), + [anon_sym_BSLASHTvolcite] = ACTIONS(4461), + [anon_sym_BSLASHavolcite] = ACTIONS(4461), + [anon_sym_BSLASHAvolcite] = ACTIONS(4461), + [anon_sym_BSLASHnotecite] = ACTIONS(4461), + [anon_sym_BSLASHNotecite] = ACTIONS(4461), + [anon_sym_BSLASHpnotecite] = ACTIONS(4461), + [anon_sym_BSLASHPnotecite] = ACTIONS(4461), + [anon_sym_BSLASHfnotecite] = ACTIONS(4461), + [anon_sym_BSLASHlabel] = ACTIONS(4461), + [anon_sym_BSLASHref] = ACTIONS(4461), + [anon_sym_BSLASHeqref] = ACTIONS(4461), + [anon_sym_BSLASHvref] = ACTIONS(4461), + [anon_sym_BSLASHVref] = ACTIONS(4461), + [anon_sym_BSLASHautoref] = ACTIONS(4461), + [anon_sym_BSLASHpageref] = ACTIONS(4461), + [anon_sym_BSLASHcref] = ACTIONS(4461), + [anon_sym_BSLASHCref] = ACTIONS(4461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnameCref] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHlabelcref] = ACTIONS(4461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCrefrange] = ACTIONS(4461), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnewlabel] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), + [anon_sym_BSLASHdef] = ACTIONS(4461), + [anon_sym_BSLASHlet] = ACTIONS(4461), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), + [anon_sym_BSLASHgls] = ACTIONS(4461), + [anon_sym_BSLASHGls] = ACTIONS(4461), + [anon_sym_BSLASHGLS] = ACTIONS(4461), + [anon_sym_BSLASHglspl] = ACTIONS(4461), + [anon_sym_BSLASHGlspl] = ACTIONS(4461), + [anon_sym_BSLASHGLSpl] = ACTIONS(4461), + [anon_sym_BSLASHglsdisp] = ACTIONS(4461), + [anon_sym_BSLASHglslink] = ACTIONS(4461), + [anon_sym_BSLASHglstext] = ACTIONS(4461), + [anon_sym_BSLASHGlstext] = ACTIONS(4461), + [anon_sym_BSLASHGLStext] = ACTIONS(4461), + [anon_sym_BSLASHglsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), + [anon_sym_BSLASHglsplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSplural] = ACTIONS(4461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHglsname] = ACTIONS(4461), + [anon_sym_BSLASHGlsname] = ACTIONS(4461), + [anon_sym_BSLASHGLSname] = ACTIONS(4461), + [anon_sym_BSLASHglssymbol] = ACTIONS(4461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), + [anon_sym_BSLASHglsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), + [anon_sym_BSLASHglsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), + [anon_sym_BSLASHglsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), + [anon_sym_BSLASHglsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), + [anon_sym_BSLASHglsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), + [anon_sym_BSLASHnewacronym] = ACTIONS(4461), + [anon_sym_BSLASHacrshort] = ACTIONS(4461), + [anon_sym_BSLASHAcrshort] = ACTIONS(4461), + [anon_sym_BSLASHACRshort] = ACTIONS(4461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), + [anon_sym_BSLASHacrlong] = ACTIONS(4461), + [anon_sym_BSLASHAcrlong] = ACTIONS(4461), + [anon_sym_BSLASHACRlong] = ACTIONS(4461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), + [anon_sym_BSLASHacrfull] = ACTIONS(4461), + [anon_sym_BSLASHAcrfull] = ACTIONS(4461), + [anon_sym_BSLASHACRfull] = ACTIONS(4461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), + [anon_sym_BSLASHacs] = ACTIONS(4461), + [anon_sym_BSLASHAcs] = ACTIONS(4461), + [anon_sym_BSLASHacsp] = ACTIONS(4461), + [anon_sym_BSLASHAcsp] = ACTIONS(4461), + [anon_sym_BSLASHacl] = ACTIONS(4461), + [anon_sym_BSLASHAcl] = ACTIONS(4461), + [anon_sym_BSLASHaclp] = ACTIONS(4461), + [anon_sym_BSLASHAclp] = ACTIONS(4461), + [anon_sym_BSLASHacf] = ACTIONS(4461), + [anon_sym_BSLASHAcf] = ACTIONS(4461), + [anon_sym_BSLASHacfp] = ACTIONS(4461), + [anon_sym_BSLASHAcfp] = ACTIONS(4461), + [anon_sym_BSLASHac] = ACTIONS(4461), + [anon_sym_BSLASHAc] = ACTIONS(4461), + [anon_sym_BSLASHacp] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), + [anon_sym_BSLASHcolor] = ACTIONS(4461), + [anon_sym_BSLASHcolorbox] = ACTIONS(4461), + [anon_sym_BSLASHtextcolor] = ACTIONS(4461), + [anon_sym_BSLASHpagecolor] = ACTIONS(4461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), + [anon_sym_BSLASHtext] = ACTIONS(4461), + [anon_sym_BSLASHintertext] = ACTIONS(4461), + [anon_sym_shortintertext] = ACTIONS(4461), }, - [1372] = { - [sym_command_name] = ACTIONS(5021), + [1293] = { + [sym_curly_group] = STATE(1402), + [sym_mixed_group] = STATE(1402), + [aux_sym_generic_command_repeat1] = STATE(1292), + [sym_command_name] = ACTIONS(4451), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(4451), + [sym_placeholder] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(4451), + [anon_sym__] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_PIPE] = ACTIONS(4451), + [anon_sym_COLON] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), + [anon_sym_DOLLAR] = ACTIONS(4451), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), + [anon_sym_BSLASHbegin] = ACTIONS(4451), + [anon_sym_BSLASHusepackage] = ACTIONS(4451), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), + [anon_sym_BSLASHinclude] = ACTIONS(4451), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), + [anon_sym_BSLASHinput] = ACTIONS(4451), + [anon_sym_BSLASHsubfile] = ACTIONS(4451), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), + [anon_sym_BSLASHbibliography] = ACTIONS(4451), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), + [anon_sym_BSLASHincludesvg] = ACTIONS(4451), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), + [anon_sym_BSLASHimport] = ACTIONS(4451), + [anon_sym_BSLASHsubimport] = ACTIONS(4451), + [anon_sym_BSLASHinputfrom] = ACTIONS(4451), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), + [anon_sym_BSLASHincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHcaption] = ACTIONS(4451), + [anon_sym_BSLASHcite] = ACTIONS(4451), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCite] = ACTIONS(4451), + [anon_sym_BSLASHnocite] = ACTIONS(4451), + [anon_sym_BSLASHcitet] = ACTIONS(4451), + [anon_sym_BSLASHcitep] = ACTIONS(4451), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteauthor] = ACTIONS(4451), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitetitle] = ACTIONS(4451), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteyear] = ACTIONS(4451), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitedate] = ACTIONS(4451), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteurl] = ACTIONS(4451), + [anon_sym_BSLASHfullcite] = ACTIONS(4451), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), + [anon_sym_BSLASHcitealt] = ACTIONS(4451), + [anon_sym_BSLASHcitealp] = ACTIONS(4451), + [anon_sym_BSLASHcitetext] = ACTIONS(4451), + [anon_sym_BSLASHparencite] = ACTIONS(4451), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHParencite] = ACTIONS(4451), + [anon_sym_BSLASHfootcite] = ACTIONS(4451), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), + [anon_sym_BSLASHtextcite] = ACTIONS(4451), + [anon_sym_BSLASHTextcite] = ACTIONS(4451), + [anon_sym_BSLASHsmartcite] = ACTIONS(4451), + [anon_sym_BSLASHSmartcite] = ACTIONS(4451), + [anon_sym_BSLASHsupercite] = ACTIONS(4451), + [anon_sym_BSLASHautocite] = ACTIONS(4451), + [anon_sym_BSLASHAutocite] = ACTIONS(4451), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHvolcite] = ACTIONS(4451), + [anon_sym_BSLASHVolcite] = ACTIONS(4451), + [anon_sym_BSLASHpvolcite] = ACTIONS(4451), + [anon_sym_BSLASHPvolcite] = ACTIONS(4451), + [anon_sym_BSLASHfvolcite] = ACTIONS(4451), + [anon_sym_BSLASHftvolcite] = ACTIONS(4451), + [anon_sym_BSLASHsvolcite] = ACTIONS(4451), + [anon_sym_BSLASHSvolcite] = ACTIONS(4451), + [anon_sym_BSLASHtvolcite] = ACTIONS(4451), + [anon_sym_BSLASHTvolcite] = ACTIONS(4451), + [anon_sym_BSLASHavolcite] = ACTIONS(4451), + [anon_sym_BSLASHAvolcite] = ACTIONS(4451), + [anon_sym_BSLASHnotecite] = ACTIONS(4451), + [anon_sym_BSLASHNotecite] = ACTIONS(4451), + [anon_sym_BSLASHpnotecite] = ACTIONS(4451), + [anon_sym_BSLASHPnotecite] = ACTIONS(4451), + [anon_sym_BSLASHfnotecite] = ACTIONS(4451), + [anon_sym_BSLASHlabel] = ACTIONS(4451), + [anon_sym_BSLASHref] = ACTIONS(4451), + [anon_sym_BSLASHeqref] = ACTIONS(4451), + [anon_sym_BSLASHvref] = ACTIONS(4451), + [anon_sym_BSLASHVref] = ACTIONS(4451), + [anon_sym_BSLASHautoref] = ACTIONS(4451), + [anon_sym_BSLASHpageref] = ACTIONS(4451), + [anon_sym_BSLASHcref] = ACTIONS(4451), + [anon_sym_BSLASHCref] = ACTIONS(4451), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnameCref] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHlabelcref] = ACTIONS(4451), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCrefrange] = ACTIONS(4451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnewlabel] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), + [anon_sym_BSLASHdef] = ACTIONS(4451), + [anon_sym_BSLASHlet] = ACTIONS(4451), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), + [anon_sym_BSLASHgls] = ACTIONS(4451), + [anon_sym_BSLASHGls] = ACTIONS(4451), + [anon_sym_BSLASHGLS] = ACTIONS(4451), + [anon_sym_BSLASHglspl] = ACTIONS(4451), + [anon_sym_BSLASHGlspl] = ACTIONS(4451), + [anon_sym_BSLASHGLSpl] = ACTIONS(4451), + [anon_sym_BSLASHglsdisp] = ACTIONS(4451), + [anon_sym_BSLASHglslink] = ACTIONS(4451), + [anon_sym_BSLASHglstext] = ACTIONS(4451), + [anon_sym_BSLASHGlstext] = ACTIONS(4451), + [anon_sym_BSLASHGLStext] = ACTIONS(4451), + [anon_sym_BSLASHglsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), + [anon_sym_BSLASHglsplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSplural] = ACTIONS(4451), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHglsname] = ACTIONS(4451), + [anon_sym_BSLASHGlsname] = ACTIONS(4451), + [anon_sym_BSLASHGLSname] = ACTIONS(4451), + [anon_sym_BSLASHglssymbol] = ACTIONS(4451), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), + [anon_sym_BSLASHglsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), + [anon_sym_BSLASHglsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), + [anon_sym_BSLASHglsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), + [anon_sym_BSLASHglsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), + [anon_sym_BSLASHglsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), + [anon_sym_BSLASHnewacronym] = ACTIONS(4451), + [anon_sym_BSLASHacrshort] = ACTIONS(4451), + [anon_sym_BSLASHAcrshort] = ACTIONS(4451), + [anon_sym_BSLASHACRshort] = ACTIONS(4451), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), + [anon_sym_BSLASHacrlong] = ACTIONS(4451), + [anon_sym_BSLASHAcrlong] = ACTIONS(4451), + [anon_sym_BSLASHACRlong] = ACTIONS(4451), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), + [anon_sym_BSLASHacrfull] = ACTIONS(4451), + [anon_sym_BSLASHAcrfull] = ACTIONS(4451), + [anon_sym_BSLASHACRfull] = ACTIONS(4451), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), + [anon_sym_BSLASHacs] = ACTIONS(4451), + [anon_sym_BSLASHAcs] = ACTIONS(4451), + [anon_sym_BSLASHacsp] = ACTIONS(4451), + [anon_sym_BSLASHAcsp] = ACTIONS(4451), + [anon_sym_BSLASHacl] = ACTIONS(4451), + [anon_sym_BSLASHAcl] = ACTIONS(4451), + [anon_sym_BSLASHaclp] = ACTIONS(4451), + [anon_sym_BSLASHAclp] = ACTIONS(4451), + [anon_sym_BSLASHacf] = ACTIONS(4451), + [anon_sym_BSLASHAcf] = ACTIONS(4451), + [anon_sym_BSLASHacfp] = ACTIONS(4451), + [anon_sym_BSLASHAcfp] = ACTIONS(4451), + [anon_sym_BSLASHac] = ACTIONS(4451), + [anon_sym_BSLASHAc] = ACTIONS(4451), + [anon_sym_BSLASHacp] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), + [anon_sym_BSLASHcolor] = ACTIONS(4451), + [anon_sym_BSLASHcolorbox] = ACTIONS(4451), + [anon_sym_BSLASHtextcolor] = ACTIONS(4451), + [anon_sym_BSLASHpagecolor] = ACTIONS(4451), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), + [anon_sym_BSLASHtext] = ACTIONS(4451), + [anon_sym_BSLASHintertext] = ACTIONS(4451), + [anon_sym_shortintertext] = ACTIONS(4451), + }, + [1294] = { + [sym_curly_group] = STATE(1402), + [sym_mixed_group] = STATE(1402), + [aux_sym_generic_command_repeat1] = STATE(1293), + [sym_command_name] = ACTIONS(4565), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_RBRACK] = ACTIONS(4563), + [anon_sym_COMMA] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(4565), + [sym_placeholder] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4565), + [anon_sym_DASH] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_SLASH] = ACTIONS(4565), + [anon_sym_CARET] = ACTIONS(4565), + [anon_sym__] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4565), + [anon_sym_GT] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_PIPE] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4565), + [anon_sym_SQUOTE] = ACTIONS(4565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), + [anon_sym_DOLLAR] = ACTIONS(4565), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), + [anon_sym_BSLASHbegin] = ACTIONS(4565), + [anon_sym_BSLASHusepackage] = ACTIONS(4565), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), + [anon_sym_BSLASHinclude] = ACTIONS(4565), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), + [anon_sym_BSLASHinput] = ACTIONS(4565), + [anon_sym_BSLASHsubfile] = ACTIONS(4565), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), + [anon_sym_BSLASHbibliography] = ACTIONS(4565), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), + [anon_sym_BSLASHincludesvg] = ACTIONS(4565), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), + [anon_sym_BSLASHimport] = ACTIONS(4565), + [anon_sym_BSLASHsubimport] = ACTIONS(4565), + [anon_sym_BSLASHinputfrom] = ACTIONS(4565), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), + [anon_sym_BSLASHincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHcaption] = ACTIONS(4565), + [anon_sym_BSLASHcite] = ACTIONS(4565), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCite] = ACTIONS(4565), + [anon_sym_BSLASHnocite] = ACTIONS(4565), + [anon_sym_BSLASHcitet] = ACTIONS(4565), + [anon_sym_BSLASHcitep] = ACTIONS(4565), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteauthor] = ACTIONS(4565), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitetitle] = ACTIONS(4565), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteyear] = ACTIONS(4565), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitedate] = ACTIONS(4565), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteurl] = ACTIONS(4565), + [anon_sym_BSLASHfullcite] = ACTIONS(4565), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), + [anon_sym_BSLASHcitealt] = ACTIONS(4565), + [anon_sym_BSLASHcitealp] = ACTIONS(4565), + [anon_sym_BSLASHcitetext] = ACTIONS(4565), + [anon_sym_BSLASHparencite] = ACTIONS(4565), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHParencite] = ACTIONS(4565), + [anon_sym_BSLASHfootcite] = ACTIONS(4565), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), + [anon_sym_BSLASHtextcite] = ACTIONS(4565), + [anon_sym_BSLASHTextcite] = ACTIONS(4565), + [anon_sym_BSLASHsmartcite] = ACTIONS(4565), + [anon_sym_BSLASHSmartcite] = ACTIONS(4565), + [anon_sym_BSLASHsupercite] = ACTIONS(4565), + [anon_sym_BSLASHautocite] = ACTIONS(4565), + [anon_sym_BSLASHAutocite] = ACTIONS(4565), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHvolcite] = ACTIONS(4565), + [anon_sym_BSLASHVolcite] = ACTIONS(4565), + [anon_sym_BSLASHpvolcite] = ACTIONS(4565), + [anon_sym_BSLASHPvolcite] = ACTIONS(4565), + [anon_sym_BSLASHfvolcite] = ACTIONS(4565), + [anon_sym_BSLASHftvolcite] = ACTIONS(4565), + [anon_sym_BSLASHsvolcite] = ACTIONS(4565), + [anon_sym_BSLASHSvolcite] = ACTIONS(4565), + [anon_sym_BSLASHtvolcite] = ACTIONS(4565), + [anon_sym_BSLASHTvolcite] = ACTIONS(4565), + [anon_sym_BSLASHavolcite] = ACTIONS(4565), + [anon_sym_BSLASHAvolcite] = ACTIONS(4565), + [anon_sym_BSLASHnotecite] = ACTIONS(4565), + [anon_sym_BSLASHNotecite] = ACTIONS(4565), + [anon_sym_BSLASHpnotecite] = ACTIONS(4565), + [anon_sym_BSLASHPnotecite] = ACTIONS(4565), + [anon_sym_BSLASHfnotecite] = ACTIONS(4565), + [anon_sym_BSLASHlabel] = ACTIONS(4565), + [anon_sym_BSLASHref] = ACTIONS(4565), + [anon_sym_BSLASHeqref] = ACTIONS(4565), + [anon_sym_BSLASHvref] = ACTIONS(4565), + [anon_sym_BSLASHVref] = ACTIONS(4565), + [anon_sym_BSLASHautoref] = ACTIONS(4565), + [anon_sym_BSLASHpageref] = ACTIONS(4565), + [anon_sym_BSLASHcref] = ACTIONS(4565), + [anon_sym_BSLASHCref] = ACTIONS(4565), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnameCref] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHlabelcref] = ACTIONS(4565), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCrefrange] = ACTIONS(4565), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnewlabel] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), + [anon_sym_BSLASHdef] = ACTIONS(4565), + [anon_sym_BSLASHlet] = ACTIONS(4565), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), + [anon_sym_BSLASHgls] = ACTIONS(4565), + [anon_sym_BSLASHGls] = ACTIONS(4565), + [anon_sym_BSLASHGLS] = ACTIONS(4565), + [anon_sym_BSLASHglspl] = ACTIONS(4565), + [anon_sym_BSLASHGlspl] = ACTIONS(4565), + [anon_sym_BSLASHGLSpl] = ACTIONS(4565), + [anon_sym_BSLASHglsdisp] = ACTIONS(4565), + [anon_sym_BSLASHglslink] = ACTIONS(4565), + [anon_sym_BSLASHglstext] = ACTIONS(4565), + [anon_sym_BSLASHGlstext] = ACTIONS(4565), + [anon_sym_BSLASHGLStext] = ACTIONS(4565), + [anon_sym_BSLASHglsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), + [anon_sym_BSLASHglsplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSplural] = ACTIONS(4565), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHglsname] = ACTIONS(4565), + [anon_sym_BSLASHGlsname] = ACTIONS(4565), + [anon_sym_BSLASHGLSname] = ACTIONS(4565), + [anon_sym_BSLASHglssymbol] = ACTIONS(4565), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), + [anon_sym_BSLASHglsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), + [anon_sym_BSLASHglsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), + [anon_sym_BSLASHglsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), + [anon_sym_BSLASHglsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), + [anon_sym_BSLASHglsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), + [anon_sym_BSLASHnewacronym] = ACTIONS(4565), + [anon_sym_BSLASHacrshort] = ACTIONS(4565), + [anon_sym_BSLASHAcrshort] = ACTIONS(4565), + [anon_sym_BSLASHACRshort] = ACTIONS(4565), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), + [anon_sym_BSLASHacrlong] = ACTIONS(4565), + [anon_sym_BSLASHAcrlong] = ACTIONS(4565), + [anon_sym_BSLASHACRlong] = ACTIONS(4565), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), + [anon_sym_BSLASHacrfull] = ACTIONS(4565), + [anon_sym_BSLASHAcrfull] = ACTIONS(4565), + [anon_sym_BSLASHACRfull] = ACTIONS(4565), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), + [anon_sym_BSLASHacs] = ACTIONS(4565), + [anon_sym_BSLASHAcs] = ACTIONS(4565), + [anon_sym_BSLASHacsp] = ACTIONS(4565), + [anon_sym_BSLASHAcsp] = ACTIONS(4565), + [anon_sym_BSLASHacl] = ACTIONS(4565), + [anon_sym_BSLASHAcl] = ACTIONS(4565), + [anon_sym_BSLASHaclp] = ACTIONS(4565), + [anon_sym_BSLASHAclp] = ACTIONS(4565), + [anon_sym_BSLASHacf] = ACTIONS(4565), + [anon_sym_BSLASHAcf] = ACTIONS(4565), + [anon_sym_BSLASHacfp] = ACTIONS(4565), + [anon_sym_BSLASHAcfp] = ACTIONS(4565), + [anon_sym_BSLASHac] = ACTIONS(4565), + [anon_sym_BSLASHAc] = ACTIONS(4565), + [anon_sym_BSLASHacp] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), + [anon_sym_BSLASHcolor] = ACTIONS(4565), + [anon_sym_BSLASHcolorbox] = ACTIONS(4565), + [anon_sym_BSLASHtextcolor] = ACTIONS(4565), + [anon_sym_BSLASHpagecolor] = ACTIONS(4565), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), + [anon_sym_BSLASHtext] = ACTIONS(4565), + [anon_sym_BSLASHintertext] = ACTIONS(4565), + [anon_sym_shortintertext] = ACTIONS(4565), + }, + [1295] = { + [sym_curly_group] = STATE(1492), + [sym_mixed_group] = STATE(1492), + [aux_sym_generic_command_repeat1] = STATE(1295), + [sym_command_name] = ACTIONS(4461), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(5481), + [anon_sym_RPAREN] = ACTIONS(4459), + [anon_sym_LBRACK] = ACTIONS(5481), + [anon_sym_RBRACK] = ACTIONS(4459), + [anon_sym_COMMA] = ACTIONS(4459), + [anon_sym_LBRACE] = ACTIONS(5484), + [anon_sym_RBRACE] = ACTIONS(4459), + [sym_word] = ACTIONS(4461), + [sym_placeholder] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_STAR] = ACTIONS(4461), + [anon_sym_SLASH] = ACTIONS(4461), + [anon_sym_CARET] = ACTIONS(4461), + [anon_sym__] = ACTIONS(4461), + [anon_sym_LT] = ACTIONS(4461), + [anon_sym_GT] = ACTIONS(4461), + [anon_sym_BANG] = ACTIONS(4461), + [anon_sym_PIPE] = ACTIONS(4461), + [anon_sym_COLON] = ACTIONS(4461), + [anon_sym_SQUOTE] = ACTIONS(4461), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4459), + [anon_sym_DOLLAR] = ACTIONS(4461), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4459), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4459), + [anon_sym_BSLASHusepackage] = ACTIONS(4461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), + [anon_sym_BSLASHinclude] = ACTIONS(4461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), + [anon_sym_BSLASHinput] = ACTIONS(4461), + [anon_sym_BSLASHsubfile] = ACTIONS(4461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), + [anon_sym_BSLASHbibliography] = ACTIONS(4461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), + [anon_sym_BSLASHincludesvg] = ACTIONS(4461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), + [anon_sym_BSLASHimport] = ACTIONS(4461), + [anon_sym_BSLASHsubimport] = ACTIONS(4461), + [anon_sym_BSLASHinputfrom] = ACTIONS(4461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), + [anon_sym_BSLASHincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHcaption] = ACTIONS(4461), + [anon_sym_BSLASHcite] = ACTIONS(4461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCite] = ACTIONS(4461), + [anon_sym_BSLASHnocite] = ACTIONS(4461), + [anon_sym_BSLASHcitet] = ACTIONS(4461), + [anon_sym_BSLASHcitep] = ACTIONS(4461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteauthor] = ACTIONS(4461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitetitle] = ACTIONS(4461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteyear] = ACTIONS(4461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitedate] = ACTIONS(4461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteurl] = ACTIONS(4461), + [anon_sym_BSLASHfullcite] = ACTIONS(4461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), + [anon_sym_BSLASHcitealt] = ACTIONS(4461), + [anon_sym_BSLASHcitealp] = ACTIONS(4461), + [anon_sym_BSLASHcitetext] = ACTIONS(4461), + [anon_sym_BSLASHparencite] = ACTIONS(4461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHParencite] = ACTIONS(4461), + [anon_sym_BSLASHfootcite] = ACTIONS(4461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), + [anon_sym_BSLASHtextcite] = ACTIONS(4461), + [anon_sym_BSLASHTextcite] = ACTIONS(4461), + [anon_sym_BSLASHsmartcite] = ACTIONS(4461), + [anon_sym_BSLASHSmartcite] = ACTIONS(4461), + [anon_sym_BSLASHsupercite] = ACTIONS(4461), + [anon_sym_BSLASHautocite] = ACTIONS(4461), + [anon_sym_BSLASHAutocite] = ACTIONS(4461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHvolcite] = ACTIONS(4461), + [anon_sym_BSLASHVolcite] = ACTIONS(4461), + [anon_sym_BSLASHpvolcite] = ACTIONS(4461), + [anon_sym_BSLASHPvolcite] = ACTIONS(4461), + [anon_sym_BSLASHfvolcite] = ACTIONS(4461), + [anon_sym_BSLASHftvolcite] = ACTIONS(4461), + [anon_sym_BSLASHsvolcite] = ACTIONS(4461), + [anon_sym_BSLASHSvolcite] = ACTIONS(4461), + [anon_sym_BSLASHtvolcite] = ACTIONS(4461), + [anon_sym_BSLASHTvolcite] = ACTIONS(4461), + [anon_sym_BSLASHavolcite] = ACTIONS(4461), + [anon_sym_BSLASHAvolcite] = ACTIONS(4461), + [anon_sym_BSLASHnotecite] = ACTIONS(4461), + [anon_sym_BSLASHNotecite] = ACTIONS(4461), + [anon_sym_BSLASHpnotecite] = ACTIONS(4461), + [anon_sym_BSLASHPnotecite] = ACTIONS(4461), + [anon_sym_BSLASHfnotecite] = ACTIONS(4461), + [anon_sym_BSLASHlabel] = ACTIONS(4461), + [anon_sym_BSLASHref] = ACTIONS(4461), + [anon_sym_BSLASHeqref] = ACTIONS(4461), + [anon_sym_BSLASHvref] = ACTIONS(4461), + [anon_sym_BSLASHVref] = ACTIONS(4461), + [anon_sym_BSLASHautoref] = ACTIONS(4461), + [anon_sym_BSLASHpageref] = ACTIONS(4461), + [anon_sym_BSLASHcref] = ACTIONS(4461), + [anon_sym_BSLASHCref] = ACTIONS(4461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnameCref] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHlabelcref] = ACTIONS(4461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCrefrange] = ACTIONS(4461), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnewlabel] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), + [anon_sym_BSLASHdef] = ACTIONS(4461), + [anon_sym_BSLASHlet] = ACTIONS(4461), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), + [anon_sym_BSLASHgls] = ACTIONS(4461), + [anon_sym_BSLASHGls] = ACTIONS(4461), + [anon_sym_BSLASHGLS] = ACTIONS(4461), + [anon_sym_BSLASHglspl] = ACTIONS(4461), + [anon_sym_BSLASHGlspl] = ACTIONS(4461), + [anon_sym_BSLASHGLSpl] = ACTIONS(4461), + [anon_sym_BSLASHglsdisp] = ACTIONS(4461), + [anon_sym_BSLASHglslink] = ACTIONS(4461), + [anon_sym_BSLASHglstext] = ACTIONS(4461), + [anon_sym_BSLASHGlstext] = ACTIONS(4461), + [anon_sym_BSLASHGLStext] = ACTIONS(4461), + [anon_sym_BSLASHglsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), + [anon_sym_BSLASHglsplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSplural] = ACTIONS(4461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHglsname] = ACTIONS(4461), + [anon_sym_BSLASHGlsname] = ACTIONS(4461), + [anon_sym_BSLASHGLSname] = ACTIONS(4461), + [anon_sym_BSLASHglssymbol] = ACTIONS(4461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), + [anon_sym_BSLASHglsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), + [anon_sym_BSLASHglsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), + [anon_sym_BSLASHglsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), + [anon_sym_BSLASHglsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), + [anon_sym_BSLASHglsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), + [anon_sym_BSLASHnewacronym] = ACTIONS(4461), + [anon_sym_BSLASHacrshort] = ACTIONS(4461), + [anon_sym_BSLASHAcrshort] = ACTIONS(4461), + [anon_sym_BSLASHACRshort] = ACTIONS(4461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), + [anon_sym_BSLASHacrlong] = ACTIONS(4461), + [anon_sym_BSLASHAcrlong] = ACTIONS(4461), + [anon_sym_BSLASHACRlong] = ACTIONS(4461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), + [anon_sym_BSLASHacrfull] = ACTIONS(4461), + [anon_sym_BSLASHAcrfull] = ACTIONS(4461), + [anon_sym_BSLASHACRfull] = ACTIONS(4461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), + [anon_sym_BSLASHacs] = ACTIONS(4461), + [anon_sym_BSLASHAcs] = ACTIONS(4461), + [anon_sym_BSLASHacsp] = ACTIONS(4461), + [anon_sym_BSLASHAcsp] = ACTIONS(4461), + [anon_sym_BSLASHacl] = ACTIONS(4461), + [anon_sym_BSLASHAcl] = ACTIONS(4461), + [anon_sym_BSLASHaclp] = ACTIONS(4461), + [anon_sym_BSLASHAclp] = ACTIONS(4461), + [anon_sym_BSLASHacf] = ACTIONS(4461), + [anon_sym_BSLASHAcf] = ACTIONS(4461), + [anon_sym_BSLASHacfp] = ACTIONS(4461), + [anon_sym_BSLASHAcfp] = ACTIONS(4461), + [anon_sym_BSLASHac] = ACTIONS(4461), + [anon_sym_BSLASHAc] = ACTIONS(4461), + [anon_sym_BSLASHacp] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), + [anon_sym_BSLASHcolor] = ACTIONS(4461), + [anon_sym_BSLASHcolorbox] = ACTIONS(4461), + [anon_sym_BSLASHtextcolor] = ACTIONS(4461), + [anon_sym_BSLASHpagecolor] = ACTIONS(4461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), + [anon_sym_BSLASHtext] = ACTIONS(4461), + [anon_sym_BSLASHintertext] = ACTIONS(4461), + [anon_sym_shortintertext] = ACTIONS(4461), + }, + [1296] = { + [sym_curly_group] = STATE(1304), + [sym_brack_group_text] = STATE(2146), + [sym_command_name] = ACTIONS(4817), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASHbegin] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHiffalse] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4815), + [anon_sym_COMMA] = ACTIONS(4815), + [anon_sym_EQ] = ACTIONS(4815), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(4817), + [sym_placeholder] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym__] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_BANG] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_SQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(4817), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), + [anon_sym_BSLASHbegin] = ACTIONS(4817), + [anon_sym_BSLASHusepackage] = ACTIONS(4817), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), + [anon_sym_BSLASHinclude] = ACTIONS(4817), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), + [anon_sym_BSLASHinput] = ACTIONS(4817), + [anon_sym_BSLASHsubfile] = ACTIONS(4817), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), + [anon_sym_BSLASHbibliography] = ACTIONS(4817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), + [anon_sym_BSLASHincludesvg] = ACTIONS(4817), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), + [anon_sym_BSLASHimport] = ACTIONS(4817), + [anon_sym_BSLASHsubimport] = ACTIONS(4817), + [anon_sym_BSLASHinputfrom] = ACTIONS(4817), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), + [anon_sym_BSLASHincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHcaption] = ACTIONS(4817), + [anon_sym_BSLASHcite] = ACTIONS(4817), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCite] = ACTIONS(4817), + [anon_sym_BSLASHnocite] = ACTIONS(4817), + [anon_sym_BSLASHcitet] = ACTIONS(4817), + [anon_sym_BSLASHcitep] = ACTIONS(4817), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteauthor] = ACTIONS(4817), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitetitle] = ACTIONS(4817), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteyear] = ACTIONS(4817), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitedate] = ACTIONS(4817), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteurl] = ACTIONS(4817), + [anon_sym_BSLASHfullcite] = ACTIONS(4817), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), + [anon_sym_BSLASHcitealt] = ACTIONS(4817), + [anon_sym_BSLASHcitealp] = ACTIONS(4817), + [anon_sym_BSLASHcitetext] = ACTIONS(4817), + [anon_sym_BSLASHparencite] = ACTIONS(4817), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHParencite] = ACTIONS(4817), + [anon_sym_BSLASHfootcite] = ACTIONS(4817), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), + [anon_sym_BSLASHtextcite] = ACTIONS(4817), + [anon_sym_BSLASHTextcite] = ACTIONS(4817), + [anon_sym_BSLASHsmartcite] = ACTIONS(4817), + [anon_sym_BSLASHSmartcite] = ACTIONS(4817), + [anon_sym_BSLASHsupercite] = ACTIONS(4817), + [anon_sym_BSLASHautocite] = ACTIONS(4817), + [anon_sym_BSLASHAutocite] = ACTIONS(4817), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHvolcite] = ACTIONS(4817), + [anon_sym_BSLASHVolcite] = ACTIONS(4817), + [anon_sym_BSLASHpvolcite] = ACTIONS(4817), + [anon_sym_BSLASHPvolcite] = ACTIONS(4817), + [anon_sym_BSLASHfvolcite] = ACTIONS(4817), + [anon_sym_BSLASHftvolcite] = ACTIONS(4817), + [anon_sym_BSLASHsvolcite] = ACTIONS(4817), + [anon_sym_BSLASHSvolcite] = ACTIONS(4817), + [anon_sym_BSLASHtvolcite] = ACTIONS(4817), + [anon_sym_BSLASHTvolcite] = ACTIONS(4817), + [anon_sym_BSLASHavolcite] = ACTIONS(4817), + [anon_sym_BSLASHAvolcite] = ACTIONS(4817), + [anon_sym_BSLASHnotecite] = ACTIONS(4817), + [anon_sym_BSLASHNotecite] = ACTIONS(4817), + [anon_sym_BSLASHpnotecite] = ACTIONS(4817), + [anon_sym_BSLASHPnotecite] = ACTIONS(4817), + [anon_sym_BSLASHfnotecite] = ACTIONS(4817), + [anon_sym_BSLASHlabel] = ACTIONS(4817), + [anon_sym_BSLASHref] = ACTIONS(4817), + [anon_sym_BSLASHeqref] = ACTIONS(4817), + [anon_sym_BSLASHvref] = ACTIONS(4817), + [anon_sym_BSLASHVref] = ACTIONS(4817), + [anon_sym_BSLASHautoref] = ACTIONS(4817), + [anon_sym_BSLASHpageref] = ACTIONS(4817), + [anon_sym_BSLASHcref] = ACTIONS(4817), + [anon_sym_BSLASHCref] = ACTIONS(4817), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnameCref] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHlabelcref] = ACTIONS(4817), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCrefrange] = ACTIONS(4817), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnewlabel] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), + [anon_sym_BSLASHdef] = ACTIONS(4817), + [anon_sym_BSLASHlet] = ACTIONS(4817), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), + [anon_sym_BSLASHgls] = ACTIONS(4817), + [anon_sym_BSLASHGls] = ACTIONS(4817), + [anon_sym_BSLASHGLS] = ACTIONS(4817), + [anon_sym_BSLASHglspl] = ACTIONS(4817), + [anon_sym_BSLASHGlspl] = ACTIONS(4817), + [anon_sym_BSLASHGLSpl] = ACTIONS(4817), + [anon_sym_BSLASHglsdisp] = ACTIONS(4817), + [anon_sym_BSLASHglslink] = ACTIONS(4817), + [anon_sym_BSLASHglstext] = ACTIONS(4817), + [anon_sym_BSLASHGlstext] = ACTIONS(4817), + [anon_sym_BSLASHGLStext] = ACTIONS(4817), + [anon_sym_BSLASHglsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), + [anon_sym_BSLASHglsplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSplural] = ACTIONS(4817), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHglsname] = ACTIONS(4817), + [anon_sym_BSLASHGlsname] = ACTIONS(4817), + [anon_sym_BSLASHGLSname] = ACTIONS(4817), + [anon_sym_BSLASHglssymbol] = ACTIONS(4817), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), + [anon_sym_BSLASHglsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), + [anon_sym_BSLASHglsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), + [anon_sym_BSLASHglsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), + [anon_sym_BSLASHglsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), + [anon_sym_BSLASHglsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), + [anon_sym_BSLASHnewacronym] = ACTIONS(4817), + [anon_sym_BSLASHacrshort] = ACTIONS(4817), + [anon_sym_BSLASHAcrshort] = ACTIONS(4817), + [anon_sym_BSLASHACRshort] = ACTIONS(4817), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), + [anon_sym_BSLASHacrlong] = ACTIONS(4817), + [anon_sym_BSLASHAcrlong] = ACTIONS(4817), + [anon_sym_BSLASHACRlong] = ACTIONS(4817), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), + [anon_sym_BSLASHacrfull] = ACTIONS(4817), + [anon_sym_BSLASHAcrfull] = ACTIONS(4817), + [anon_sym_BSLASHACRfull] = ACTIONS(4817), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), + [anon_sym_BSLASHacs] = ACTIONS(4817), + [anon_sym_BSLASHAcs] = ACTIONS(4817), + [anon_sym_BSLASHacsp] = ACTIONS(4817), + [anon_sym_BSLASHAcsp] = ACTIONS(4817), + [anon_sym_BSLASHacl] = ACTIONS(4817), + [anon_sym_BSLASHAcl] = ACTIONS(4817), + [anon_sym_BSLASHaclp] = ACTIONS(4817), + [anon_sym_BSLASHAclp] = ACTIONS(4817), + [anon_sym_BSLASHacf] = ACTIONS(4817), + [anon_sym_BSLASHAcf] = ACTIONS(4817), + [anon_sym_BSLASHacfp] = ACTIONS(4817), + [anon_sym_BSLASHAcfp] = ACTIONS(4817), + [anon_sym_BSLASHac] = ACTIONS(4817), + [anon_sym_BSLASHAc] = ACTIONS(4817), + [anon_sym_BSLASHacp] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), + [anon_sym_BSLASHcolor] = ACTIONS(4817), + [anon_sym_BSLASHcolorbox] = ACTIONS(4817), + [anon_sym_BSLASHtextcolor] = ACTIONS(4817), + [anon_sym_BSLASHpagecolor] = ACTIONS(4817), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), + [anon_sym_BSLASHtext] = ACTIONS(4817), + [anon_sym_BSLASHintertext] = ACTIONS(4817), + [anon_sym_shortintertext] = ACTIONS(4817), }, - [1373] = { + [1297] = { + [sym_curly_group] = STATE(1492), + [sym_mixed_group] = STATE(1492), + [aux_sym_generic_command_repeat1] = STATE(1295), + [sym_command_name] = ACTIONS(4451), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_RPAREN] = ACTIONS(4449), + [anon_sym_LBRACK] = ACTIONS(5487), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(4449), + [sym_word] = ACTIONS(4451), + [sym_placeholder] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(4451), + [anon_sym__] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_PIPE] = ACTIONS(4451), + [anon_sym_COLON] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4451), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4449), + [anon_sym_DOLLAR] = ACTIONS(4451), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4449), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4449), + [anon_sym_BSLASHusepackage] = ACTIONS(4451), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), + [anon_sym_BSLASHinclude] = ACTIONS(4451), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), + [anon_sym_BSLASHinput] = ACTIONS(4451), + [anon_sym_BSLASHsubfile] = ACTIONS(4451), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), + [anon_sym_BSLASHbibliography] = ACTIONS(4451), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), + [anon_sym_BSLASHincludesvg] = ACTIONS(4451), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), + [anon_sym_BSLASHimport] = ACTIONS(4451), + [anon_sym_BSLASHsubimport] = ACTIONS(4451), + [anon_sym_BSLASHinputfrom] = ACTIONS(4451), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), + [anon_sym_BSLASHincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHcaption] = ACTIONS(4451), + [anon_sym_BSLASHcite] = ACTIONS(4451), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCite] = ACTIONS(4451), + [anon_sym_BSLASHnocite] = ACTIONS(4451), + [anon_sym_BSLASHcitet] = ACTIONS(4451), + [anon_sym_BSLASHcitep] = ACTIONS(4451), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteauthor] = ACTIONS(4451), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitetitle] = ACTIONS(4451), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteyear] = ACTIONS(4451), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitedate] = ACTIONS(4451), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteurl] = ACTIONS(4451), + [anon_sym_BSLASHfullcite] = ACTIONS(4451), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), + [anon_sym_BSLASHcitealt] = ACTIONS(4451), + [anon_sym_BSLASHcitealp] = ACTIONS(4451), + [anon_sym_BSLASHcitetext] = ACTIONS(4451), + [anon_sym_BSLASHparencite] = ACTIONS(4451), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHParencite] = ACTIONS(4451), + [anon_sym_BSLASHfootcite] = ACTIONS(4451), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), + [anon_sym_BSLASHtextcite] = ACTIONS(4451), + [anon_sym_BSLASHTextcite] = ACTIONS(4451), + [anon_sym_BSLASHsmartcite] = ACTIONS(4451), + [anon_sym_BSLASHSmartcite] = ACTIONS(4451), + [anon_sym_BSLASHsupercite] = ACTIONS(4451), + [anon_sym_BSLASHautocite] = ACTIONS(4451), + [anon_sym_BSLASHAutocite] = ACTIONS(4451), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHvolcite] = ACTIONS(4451), + [anon_sym_BSLASHVolcite] = ACTIONS(4451), + [anon_sym_BSLASHpvolcite] = ACTIONS(4451), + [anon_sym_BSLASHPvolcite] = ACTIONS(4451), + [anon_sym_BSLASHfvolcite] = ACTIONS(4451), + [anon_sym_BSLASHftvolcite] = ACTIONS(4451), + [anon_sym_BSLASHsvolcite] = ACTIONS(4451), + [anon_sym_BSLASHSvolcite] = ACTIONS(4451), + [anon_sym_BSLASHtvolcite] = ACTIONS(4451), + [anon_sym_BSLASHTvolcite] = ACTIONS(4451), + [anon_sym_BSLASHavolcite] = ACTIONS(4451), + [anon_sym_BSLASHAvolcite] = ACTIONS(4451), + [anon_sym_BSLASHnotecite] = ACTIONS(4451), + [anon_sym_BSLASHNotecite] = ACTIONS(4451), + [anon_sym_BSLASHpnotecite] = ACTIONS(4451), + [anon_sym_BSLASHPnotecite] = ACTIONS(4451), + [anon_sym_BSLASHfnotecite] = ACTIONS(4451), + [anon_sym_BSLASHlabel] = ACTIONS(4451), + [anon_sym_BSLASHref] = ACTIONS(4451), + [anon_sym_BSLASHeqref] = ACTIONS(4451), + [anon_sym_BSLASHvref] = ACTIONS(4451), + [anon_sym_BSLASHVref] = ACTIONS(4451), + [anon_sym_BSLASHautoref] = ACTIONS(4451), + [anon_sym_BSLASHpageref] = ACTIONS(4451), + [anon_sym_BSLASHcref] = ACTIONS(4451), + [anon_sym_BSLASHCref] = ACTIONS(4451), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnameCref] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHlabelcref] = ACTIONS(4451), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCrefrange] = ACTIONS(4451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnewlabel] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), + [anon_sym_BSLASHdef] = ACTIONS(4451), + [anon_sym_BSLASHlet] = ACTIONS(4451), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), + [anon_sym_BSLASHgls] = ACTIONS(4451), + [anon_sym_BSLASHGls] = ACTIONS(4451), + [anon_sym_BSLASHGLS] = ACTIONS(4451), + [anon_sym_BSLASHglspl] = ACTIONS(4451), + [anon_sym_BSLASHGlspl] = ACTIONS(4451), + [anon_sym_BSLASHGLSpl] = ACTIONS(4451), + [anon_sym_BSLASHglsdisp] = ACTIONS(4451), + [anon_sym_BSLASHglslink] = ACTIONS(4451), + [anon_sym_BSLASHglstext] = ACTIONS(4451), + [anon_sym_BSLASHGlstext] = ACTIONS(4451), + [anon_sym_BSLASHGLStext] = ACTIONS(4451), + [anon_sym_BSLASHglsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), + [anon_sym_BSLASHglsplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSplural] = ACTIONS(4451), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHglsname] = ACTIONS(4451), + [anon_sym_BSLASHGlsname] = ACTIONS(4451), + [anon_sym_BSLASHGLSname] = ACTIONS(4451), + [anon_sym_BSLASHglssymbol] = ACTIONS(4451), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), + [anon_sym_BSLASHglsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), + [anon_sym_BSLASHglsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), + [anon_sym_BSLASHglsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), + [anon_sym_BSLASHglsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), + [anon_sym_BSLASHglsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), + [anon_sym_BSLASHnewacronym] = ACTIONS(4451), + [anon_sym_BSLASHacrshort] = ACTIONS(4451), + [anon_sym_BSLASHAcrshort] = ACTIONS(4451), + [anon_sym_BSLASHACRshort] = ACTIONS(4451), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), + [anon_sym_BSLASHacrlong] = ACTIONS(4451), + [anon_sym_BSLASHAcrlong] = ACTIONS(4451), + [anon_sym_BSLASHACRlong] = ACTIONS(4451), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), + [anon_sym_BSLASHacrfull] = ACTIONS(4451), + [anon_sym_BSLASHAcrfull] = ACTIONS(4451), + [anon_sym_BSLASHACRfull] = ACTIONS(4451), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), + [anon_sym_BSLASHacs] = ACTIONS(4451), + [anon_sym_BSLASHAcs] = ACTIONS(4451), + [anon_sym_BSLASHacsp] = ACTIONS(4451), + [anon_sym_BSLASHAcsp] = ACTIONS(4451), + [anon_sym_BSLASHacl] = ACTIONS(4451), + [anon_sym_BSLASHAcl] = ACTIONS(4451), + [anon_sym_BSLASHaclp] = ACTIONS(4451), + [anon_sym_BSLASHAclp] = ACTIONS(4451), + [anon_sym_BSLASHacf] = ACTIONS(4451), + [anon_sym_BSLASHAcf] = ACTIONS(4451), + [anon_sym_BSLASHacfp] = ACTIONS(4451), + [anon_sym_BSLASHAcfp] = ACTIONS(4451), + [anon_sym_BSLASHac] = ACTIONS(4451), + [anon_sym_BSLASHAc] = ACTIONS(4451), + [anon_sym_BSLASHacp] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), + [anon_sym_BSLASHcolor] = ACTIONS(4451), + [anon_sym_BSLASHcolorbox] = ACTIONS(4451), + [anon_sym_BSLASHtextcolor] = ACTIONS(4451), + [anon_sym_BSLASHpagecolor] = ACTIONS(4451), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), + [anon_sym_BSLASHtext] = ACTIONS(4451), + [anon_sym_BSLASHintertext] = ACTIONS(4451), + [anon_sym_shortintertext] = ACTIONS(4451), + }, + [1298] = { + [sym_curly_group] = STATE(1302), + [sym_brack_group_text] = STATE(2155), + [sym_command_name] = ACTIONS(4691), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4691), + [anon_sym_LPAREN] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4689), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4689), + [anon_sym_COMMA] = ACTIONS(4689), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(3263), + [sym_word] = ACTIONS(4691), + [sym_placeholder] = ACTIONS(4689), + [anon_sym_PLUS] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(4691), + [anon_sym_STAR] = ACTIONS(4691), + [anon_sym_SLASH] = ACTIONS(4691), + [anon_sym_CARET] = ACTIONS(4691), + [anon_sym__] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4691), + [anon_sym_GT] = ACTIONS(4691), + [anon_sym_BANG] = ACTIONS(4691), + [anon_sym_PIPE] = ACTIONS(4691), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_SQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), + [anon_sym_DOLLAR] = ACTIONS(4691), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), + [anon_sym_BSLASHbegin] = ACTIONS(4691), + [anon_sym_BSLASHusepackage] = ACTIONS(4691), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), + [anon_sym_BSLASHinclude] = ACTIONS(4691), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), + [anon_sym_BSLASHinput] = ACTIONS(4691), + [anon_sym_BSLASHsubfile] = ACTIONS(4691), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), + [anon_sym_BSLASHbibliography] = ACTIONS(4691), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), + [anon_sym_BSLASHincludesvg] = ACTIONS(4691), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), + [anon_sym_BSLASHimport] = ACTIONS(4691), + [anon_sym_BSLASHsubimport] = ACTIONS(4691), + [anon_sym_BSLASHinputfrom] = ACTIONS(4691), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), + [anon_sym_BSLASHincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHcaption] = ACTIONS(4691), + [anon_sym_BSLASHcite] = ACTIONS(4691), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCite] = ACTIONS(4691), + [anon_sym_BSLASHnocite] = ACTIONS(4691), + [anon_sym_BSLASHcitet] = ACTIONS(4691), + [anon_sym_BSLASHcitep] = ACTIONS(4691), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteauthor] = ACTIONS(4691), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitetitle] = ACTIONS(4691), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteyear] = ACTIONS(4691), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitedate] = ACTIONS(4691), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteurl] = ACTIONS(4691), + [anon_sym_BSLASHfullcite] = ACTIONS(4691), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), + [anon_sym_BSLASHcitealt] = ACTIONS(4691), + [anon_sym_BSLASHcitealp] = ACTIONS(4691), + [anon_sym_BSLASHcitetext] = ACTIONS(4691), + [anon_sym_BSLASHparencite] = ACTIONS(4691), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHParencite] = ACTIONS(4691), + [anon_sym_BSLASHfootcite] = ACTIONS(4691), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), + [anon_sym_BSLASHtextcite] = ACTIONS(4691), + [anon_sym_BSLASHTextcite] = ACTIONS(4691), + [anon_sym_BSLASHsmartcite] = ACTIONS(4691), + [anon_sym_BSLASHSmartcite] = ACTIONS(4691), + [anon_sym_BSLASHsupercite] = ACTIONS(4691), + [anon_sym_BSLASHautocite] = ACTIONS(4691), + [anon_sym_BSLASHAutocite] = ACTIONS(4691), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHvolcite] = ACTIONS(4691), + [anon_sym_BSLASHVolcite] = ACTIONS(4691), + [anon_sym_BSLASHpvolcite] = ACTIONS(4691), + [anon_sym_BSLASHPvolcite] = ACTIONS(4691), + [anon_sym_BSLASHfvolcite] = ACTIONS(4691), + [anon_sym_BSLASHftvolcite] = ACTIONS(4691), + [anon_sym_BSLASHsvolcite] = ACTIONS(4691), + [anon_sym_BSLASHSvolcite] = ACTIONS(4691), + [anon_sym_BSLASHtvolcite] = ACTIONS(4691), + [anon_sym_BSLASHTvolcite] = ACTIONS(4691), + [anon_sym_BSLASHavolcite] = ACTIONS(4691), + [anon_sym_BSLASHAvolcite] = ACTIONS(4691), + [anon_sym_BSLASHnotecite] = ACTIONS(4691), + [anon_sym_BSLASHNotecite] = ACTIONS(4691), + [anon_sym_BSLASHpnotecite] = ACTIONS(4691), + [anon_sym_BSLASHPnotecite] = ACTIONS(4691), + [anon_sym_BSLASHfnotecite] = ACTIONS(4691), + [anon_sym_BSLASHlabel] = ACTIONS(4691), + [anon_sym_BSLASHref] = ACTIONS(4691), + [anon_sym_BSLASHeqref] = ACTIONS(4691), + [anon_sym_BSLASHvref] = ACTIONS(4691), + [anon_sym_BSLASHVref] = ACTIONS(4691), + [anon_sym_BSLASHautoref] = ACTIONS(4691), + [anon_sym_BSLASHpageref] = ACTIONS(4691), + [anon_sym_BSLASHcref] = ACTIONS(4691), + [anon_sym_BSLASHCref] = ACTIONS(4691), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnameCref] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHlabelcref] = ACTIONS(4691), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCrefrange] = ACTIONS(4691), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnewlabel] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), + [anon_sym_BSLASHdef] = ACTIONS(4691), + [anon_sym_BSLASHlet] = ACTIONS(4691), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), + [anon_sym_BSLASHgls] = ACTIONS(4691), + [anon_sym_BSLASHGls] = ACTIONS(4691), + [anon_sym_BSLASHGLS] = ACTIONS(4691), + [anon_sym_BSLASHglspl] = ACTIONS(4691), + [anon_sym_BSLASHGlspl] = ACTIONS(4691), + [anon_sym_BSLASHGLSpl] = ACTIONS(4691), + [anon_sym_BSLASHglsdisp] = ACTIONS(4691), + [anon_sym_BSLASHglslink] = ACTIONS(4691), + [anon_sym_BSLASHglstext] = ACTIONS(4691), + [anon_sym_BSLASHGlstext] = ACTIONS(4691), + [anon_sym_BSLASHGLStext] = ACTIONS(4691), + [anon_sym_BSLASHglsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), + [anon_sym_BSLASHglsplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSplural] = ACTIONS(4691), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHglsname] = ACTIONS(4691), + [anon_sym_BSLASHGlsname] = ACTIONS(4691), + [anon_sym_BSLASHGLSname] = ACTIONS(4691), + [anon_sym_BSLASHglssymbol] = ACTIONS(4691), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), + [anon_sym_BSLASHglsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), + [anon_sym_BSLASHglsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), + [anon_sym_BSLASHglsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), + [anon_sym_BSLASHglsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), + [anon_sym_BSLASHglsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), + [anon_sym_BSLASHnewacronym] = ACTIONS(4691), + [anon_sym_BSLASHacrshort] = ACTIONS(4691), + [anon_sym_BSLASHAcrshort] = ACTIONS(4691), + [anon_sym_BSLASHACRshort] = ACTIONS(4691), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), + [anon_sym_BSLASHacrlong] = ACTIONS(4691), + [anon_sym_BSLASHAcrlong] = ACTIONS(4691), + [anon_sym_BSLASHACRlong] = ACTIONS(4691), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), + [anon_sym_BSLASHacrfull] = ACTIONS(4691), + [anon_sym_BSLASHAcrfull] = ACTIONS(4691), + [anon_sym_BSLASHACRfull] = ACTIONS(4691), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), + [anon_sym_BSLASHacs] = ACTIONS(4691), + [anon_sym_BSLASHAcs] = ACTIONS(4691), + [anon_sym_BSLASHacsp] = ACTIONS(4691), + [anon_sym_BSLASHAcsp] = ACTIONS(4691), + [anon_sym_BSLASHacl] = ACTIONS(4691), + [anon_sym_BSLASHAcl] = ACTIONS(4691), + [anon_sym_BSLASHaclp] = ACTIONS(4691), + [anon_sym_BSLASHAclp] = ACTIONS(4691), + [anon_sym_BSLASHacf] = ACTIONS(4691), + [anon_sym_BSLASHAcf] = ACTIONS(4691), + [anon_sym_BSLASHacfp] = ACTIONS(4691), + [anon_sym_BSLASHAcfp] = ACTIONS(4691), + [anon_sym_BSLASHac] = ACTIONS(4691), + [anon_sym_BSLASHAc] = ACTIONS(4691), + [anon_sym_BSLASHacp] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), + [anon_sym_BSLASHcolor] = ACTIONS(4691), + [anon_sym_BSLASHcolorbox] = ACTIONS(4691), + [anon_sym_BSLASHtextcolor] = ACTIONS(4691), + [anon_sym_BSLASHpagecolor] = ACTIONS(4691), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), + [anon_sym_BSLASHtext] = ACTIONS(4691), + [anon_sym_BSLASHintertext] = ACTIONS(4691), + [anon_sym_shortintertext] = ACTIONS(4691), + }, + [1299] = { + [sym_command_name] = ACTIONS(4753), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4753), + [anon_sym_BSLASHfi] = ACTIONS(5489), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4751), + [sym_word] = ACTIONS(4753), + [sym_placeholder] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_STAR] = ACTIONS(4753), + [anon_sym_SLASH] = ACTIONS(4753), + [anon_sym_CARET] = ACTIONS(4753), + [anon_sym__] = ACTIONS(4753), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_COLON] = ACTIONS(4753), + [anon_sym_SQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), + [anon_sym_BSLASHbegin] = ACTIONS(4753), + [anon_sym_BSLASHusepackage] = ACTIONS(4753), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), + [anon_sym_BSLASHinclude] = ACTIONS(4753), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), + [anon_sym_BSLASHinput] = ACTIONS(4753), + [anon_sym_BSLASHsubfile] = ACTIONS(4753), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), + [anon_sym_BSLASHbibliography] = ACTIONS(4753), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), + [anon_sym_BSLASHincludesvg] = ACTIONS(4753), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), + [anon_sym_BSLASHimport] = ACTIONS(4753), + [anon_sym_BSLASHsubimport] = ACTIONS(4753), + [anon_sym_BSLASHinputfrom] = ACTIONS(4753), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), + [anon_sym_BSLASHincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHcaption] = ACTIONS(4753), + [anon_sym_BSLASHcite] = ACTIONS(4753), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCite] = ACTIONS(4753), + [anon_sym_BSLASHnocite] = ACTIONS(4753), + [anon_sym_BSLASHcitet] = ACTIONS(4753), + [anon_sym_BSLASHcitep] = ACTIONS(4753), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteauthor] = ACTIONS(4753), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitetitle] = ACTIONS(4753), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteyear] = ACTIONS(4753), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitedate] = ACTIONS(4753), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteurl] = ACTIONS(4753), + [anon_sym_BSLASHfullcite] = ACTIONS(4753), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), + [anon_sym_BSLASHcitealt] = ACTIONS(4753), + [anon_sym_BSLASHcitealp] = ACTIONS(4753), + [anon_sym_BSLASHcitetext] = ACTIONS(4753), + [anon_sym_BSLASHparencite] = ACTIONS(4753), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHParencite] = ACTIONS(4753), + [anon_sym_BSLASHfootcite] = ACTIONS(4753), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), + [anon_sym_BSLASHtextcite] = ACTIONS(4753), + [anon_sym_BSLASHTextcite] = ACTIONS(4753), + [anon_sym_BSLASHsmartcite] = ACTIONS(4753), + [anon_sym_BSLASHSmartcite] = ACTIONS(4753), + [anon_sym_BSLASHsupercite] = ACTIONS(4753), + [anon_sym_BSLASHautocite] = ACTIONS(4753), + [anon_sym_BSLASHAutocite] = ACTIONS(4753), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHvolcite] = ACTIONS(4753), + [anon_sym_BSLASHVolcite] = ACTIONS(4753), + [anon_sym_BSLASHpvolcite] = ACTIONS(4753), + [anon_sym_BSLASHPvolcite] = ACTIONS(4753), + [anon_sym_BSLASHfvolcite] = ACTIONS(4753), + [anon_sym_BSLASHftvolcite] = ACTIONS(4753), + [anon_sym_BSLASHsvolcite] = ACTIONS(4753), + [anon_sym_BSLASHSvolcite] = ACTIONS(4753), + [anon_sym_BSLASHtvolcite] = ACTIONS(4753), + [anon_sym_BSLASHTvolcite] = ACTIONS(4753), + [anon_sym_BSLASHavolcite] = ACTIONS(4753), + [anon_sym_BSLASHAvolcite] = ACTIONS(4753), + [anon_sym_BSLASHnotecite] = ACTIONS(4753), + [anon_sym_BSLASHNotecite] = ACTIONS(4753), + [anon_sym_BSLASHpnotecite] = ACTIONS(4753), + [anon_sym_BSLASHPnotecite] = ACTIONS(4753), + [anon_sym_BSLASHfnotecite] = ACTIONS(4753), + [anon_sym_BSLASHlabel] = ACTIONS(4753), + [anon_sym_BSLASHref] = ACTIONS(4753), + [anon_sym_BSLASHeqref] = ACTIONS(4753), + [anon_sym_BSLASHvref] = ACTIONS(4753), + [anon_sym_BSLASHVref] = ACTIONS(4753), + [anon_sym_BSLASHautoref] = ACTIONS(4753), + [anon_sym_BSLASHpageref] = ACTIONS(4753), + [anon_sym_BSLASHcref] = ACTIONS(4753), + [anon_sym_BSLASHCref] = ACTIONS(4753), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnameCref] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHlabelcref] = ACTIONS(4753), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCrefrange] = ACTIONS(4753), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnewlabel] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), + [anon_sym_BSLASHdef] = ACTIONS(4753), + [anon_sym_BSLASHlet] = ACTIONS(4753), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), + [anon_sym_BSLASHgls] = ACTIONS(4753), + [anon_sym_BSLASHGls] = ACTIONS(4753), + [anon_sym_BSLASHGLS] = ACTIONS(4753), + [anon_sym_BSLASHglspl] = ACTIONS(4753), + [anon_sym_BSLASHGlspl] = ACTIONS(4753), + [anon_sym_BSLASHGLSpl] = ACTIONS(4753), + [anon_sym_BSLASHglsdisp] = ACTIONS(4753), + [anon_sym_BSLASHglslink] = ACTIONS(4753), + [anon_sym_BSLASHglstext] = ACTIONS(4753), + [anon_sym_BSLASHGlstext] = ACTIONS(4753), + [anon_sym_BSLASHGLStext] = ACTIONS(4753), + [anon_sym_BSLASHglsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), + [anon_sym_BSLASHglsplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSplural] = ACTIONS(4753), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHglsname] = ACTIONS(4753), + [anon_sym_BSLASHGlsname] = ACTIONS(4753), + [anon_sym_BSLASHGLSname] = ACTIONS(4753), + [anon_sym_BSLASHglssymbol] = ACTIONS(4753), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), + [anon_sym_BSLASHglsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), + [anon_sym_BSLASHglsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), + [anon_sym_BSLASHglsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), + [anon_sym_BSLASHglsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), + [anon_sym_BSLASHglsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), + [anon_sym_BSLASHnewacronym] = ACTIONS(4753), + [anon_sym_BSLASHacrshort] = ACTIONS(4753), + [anon_sym_BSLASHAcrshort] = ACTIONS(4753), + [anon_sym_BSLASHACRshort] = ACTIONS(4753), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), + [anon_sym_BSLASHacrlong] = ACTIONS(4753), + [anon_sym_BSLASHAcrlong] = ACTIONS(4753), + [anon_sym_BSLASHACRlong] = ACTIONS(4753), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), + [anon_sym_BSLASHacrfull] = ACTIONS(4753), + [anon_sym_BSLASHAcrfull] = ACTIONS(4753), + [anon_sym_BSLASHACRfull] = ACTIONS(4753), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), + [anon_sym_BSLASHacs] = ACTIONS(4753), + [anon_sym_BSLASHAcs] = ACTIONS(4753), + [anon_sym_BSLASHacsp] = ACTIONS(4753), + [anon_sym_BSLASHAcsp] = ACTIONS(4753), + [anon_sym_BSLASHacl] = ACTIONS(4753), + [anon_sym_BSLASHAcl] = ACTIONS(4753), + [anon_sym_BSLASHaclp] = ACTIONS(4753), + [anon_sym_BSLASHAclp] = ACTIONS(4753), + [anon_sym_BSLASHacf] = ACTIONS(4753), + [anon_sym_BSLASHAcf] = ACTIONS(4753), + [anon_sym_BSLASHacfp] = ACTIONS(4753), + [anon_sym_BSLASHAcfp] = ACTIONS(4753), + [anon_sym_BSLASHac] = ACTIONS(4753), + [anon_sym_BSLASHAc] = ACTIONS(4753), + [anon_sym_BSLASHacp] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), + [anon_sym_BSLASHcolor] = ACTIONS(4753), + [anon_sym_BSLASHcolorbox] = ACTIONS(4753), + [anon_sym_BSLASHtextcolor] = ACTIONS(4753), + [anon_sym_BSLASHpagecolor] = ACTIONS(4753), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), + [anon_sym_BSLASHtext] = ACTIONS(4753), + [anon_sym_BSLASHintertext] = ACTIONS(4753), + [anon_sym_shortintertext] = ACTIONS(4753), + [sym__trivia_raw_fi] = ACTIONS(5491), + }, + [1300] = { + [sym_curly_group] = STATE(1492), + [sym_mixed_group] = STATE(1492), + [aux_sym_generic_command_repeat1] = STATE(1297), + [sym_command_name] = ACTIONS(4565), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(5487), + [anon_sym_RPAREN] = ACTIONS(4563), + [anon_sym_LBRACK] = ACTIONS(5487), + [anon_sym_RBRACK] = ACTIONS(4563), + [anon_sym_COMMA] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(4563), + [sym_word] = ACTIONS(4565), + [sym_placeholder] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4565), + [anon_sym_DASH] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_SLASH] = ACTIONS(4565), + [anon_sym_CARET] = ACTIONS(4565), + [anon_sym__] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4565), + [anon_sym_GT] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_PIPE] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4565), + [anon_sym_SQUOTE] = ACTIONS(4565), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4563), + [anon_sym_DOLLAR] = ACTIONS(4565), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4563), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4563), + [anon_sym_BSLASHusepackage] = ACTIONS(4565), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), + [anon_sym_BSLASHinclude] = ACTIONS(4565), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), + [anon_sym_BSLASHinput] = ACTIONS(4565), + [anon_sym_BSLASHsubfile] = ACTIONS(4565), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), + [anon_sym_BSLASHbibliography] = ACTIONS(4565), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), + [anon_sym_BSLASHincludesvg] = ACTIONS(4565), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), + [anon_sym_BSLASHimport] = ACTIONS(4565), + [anon_sym_BSLASHsubimport] = ACTIONS(4565), + [anon_sym_BSLASHinputfrom] = ACTIONS(4565), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), + [anon_sym_BSLASHincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHcaption] = ACTIONS(4565), + [anon_sym_BSLASHcite] = ACTIONS(4565), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCite] = ACTIONS(4565), + [anon_sym_BSLASHnocite] = ACTIONS(4565), + [anon_sym_BSLASHcitet] = ACTIONS(4565), + [anon_sym_BSLASHcitep] = ACTIONS(4565), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteauthor] = ACTIONS(4565), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitetitle] = ACTIONS(4565), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteyear] = ACTIONS(4565), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitedate] = ACTIONS(4565), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteurl] = ACTIONS(4565), + [anon_sym_BSLASHfullcite] = ACTIONS(4565), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), + [anon_sym_BSLASHcitealt] = ACTIONS(4565), + [anon_sym_BSLASHcitealp] = ACTIONS(4565), + [anon_sym_BSLASHcitetext] = ACTIONS(4565), + [anon_sym_BSLASHparencite] = ACTIONS(4565), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHParencite] = ACTIONS(4565), + [anon_sym_BSLASHfootcite] = ACTIONS(4565), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), + [anon_sym_BSLASHtextcite] = ACTIONS(4565), + [anon_sym_BSLASHTextcite] = ACTIONS(4565), + [anon_sym_BSLASHsmartcite] = ACTIONS(4565), + [anon_sym_BSLASHSmartcite] = ACTIONS(4565), + [anon_sym_BSLASHsupercite] = ACTIONS(4565), + [anon_sym_BSLASHautocite] = ACTIONS(4565), + [anon_sym_BSLASHAutocite] = ACTIONS(4565), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHvolcite] = ACTIONS(4565), + [anon_sym_BSLASHVolcite] = ACTIONS(4565), + [anon_sym_BSLASHpvolcite] = ACTIONS(4565), + [anon_sym_BSLASHPvolcite] = ACTIONS(4565), + [anon_sym_BSLASHfvolcite] = ACTIONS(4565), + [anon_sym_BSLASHftvolcite] = ACTIONS(4565), + [anon_sym_BSLASHsvolcite] = ACTIONS(4565), + [anon_sym_BSLASHSvolcite] = ACTIONS(4565), + [anon_sym_BSLASHtvolcite] = ACTIONS(4565), + [anon_sym_BSLASHTvolcite] = ACTIONS(4565), + [anon_sym_BSLASHavolcite] = ACTIONS(4565), + [anon_sym_BSLASHAvolcite] = ACTIONS(4565), + [anon_sym_BSLASHnotecite] = ACTIONS(4565), + [anon_sym_BSLASHNotecite] = ACTIONS(4565), + [anon_sym_BSLASHpnotecite] = ACTIONS(4565), + [anon_sym_BSLASHPnotecite] = ACTIONS(4565), + [anon_sym_BSLASHfnotecite] = ACTIONS(4565), + [anon_sym_BSLASHlabel] = ACTIONS(4565), + [anon_sym_BSLASHref] = ACTIONS(4565), + [anon_sym_BSLASHeqref] = ACTIONS(4565), + [anon_sym_BSLASHvref] = ACTIONS(4565), + [anon_sym_BSLASHVref] = ACTIONS(4565), + [anon_sym_BSLASHautoref] = ACTIONS(4565), + [anon_sym_BSLASHpageref] = ACTIONS(4565), + [anon_sym_BSLASHcref] = ACTIONS(4565), + [anon_sym_BSLASHCref] = ACTIONS(4565), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnameCref] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHlabelcref] = ACTIONS(4565), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCrefrange] = ACTIONS(4565), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnewlabel] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), + [anon_sym_BSLASHdef] = ACTIONS(4565), + [anon_sym_BSLASHlet] = ACTIONS(4565), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), + [anon_sym_BSLASHgls] = ACTIONS(4565), + [anon_sym_BSLASHGls] = ACTIONS(4565), + [anon_sym_BSLASHGLS] = ACTIONS(4565), + [anon_sym_BSLASHglspl] = ACTIONS(4565), + [anon_sym_BSLASHGlspl] = ACTIONS(4565), + [anon_sym_BSLASHGLSpl] = ACTIONS(4565), + [anon_sym_BSLASHglsdisp] = ACTIONS(4565), + [anon_sym_BSLASHglslink] = ACTIONS(4565), + [anon_sym_BSLASHglstext] = ACTIONS(4565), + [anon_sym_BSLASHGlstext] = ACTIONS(4565), + [anon_sym_BSLASHGLStext] = ACTIONS(4565), + [anon_sym_BSLASHglsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), + [anon_sym_BSLASHglsplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSplural] = ACTIONS(4565), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHglsname] = ACTIONS(4565), + [anon_sym_BSLASHGlsname] = ACTIONS(4565), + [anon_sym_BSLASHGLSname] = ACTIONS(4565), + [anon_sym_BSLASHglssymbol] = ACTIONS(4565), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), + [anon_sym_BSLASHglsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), + [anon_sym_BSLASHglsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), + [anon_sym_BSLASHglsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), + [anon_sym_BSLASHglsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), + [anon_sym_BSLASHglsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), + [anon_sym_BSLASHnewacronym] = ACTIONS(4565), + [anon_sym_BSLASHacrshort] = ACTIONS(4565), + [anon_sym_BSLASHAcrshort] = ACTIONS(4565), + [anon_sym_BSLASHACRshort] = ACTIONS(4565), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), + [anon_sym_BSLASHacrlong] = ACTIONS(4565), + [anon_sym_BSLASHAcrlong] = ACTIONS(4565), + [anon_sym_BSLASHACRlong] = ACTIONS(4565), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), + [anon_sym_BSLASHacrfull] = ACTIONS(4565), + [anon_sym_BSLASHAcrfull] = ACTIONS(4565), + [anon_sym_BSLASHACRfull] = ACTIONS(4565), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), + [anon_sym_BSLASHacs] = ACTIONS(4565), + [anon_sym_BSLASHAcs] = ACTIONS(4565), + [anon_sym_BSLASHacsp] = ACTIONS(4565), + [anon_sym_BSLASHAcsp] = ACTIONS(4565), + [anon_sym_BSLASHacl] = ACTIONS(4565), + [anon_sym_BSLASHAcl] = ACTIONS(4565), + [anon_sym_BSLASHaclp] = ACTIONS(4565), + [anon_sym_BSLASHAclp] = ACTIONS(4565), + [anon_sym_BSLASHacf] = ACTIONS(4565), + [anon_sym_BSLASHAcf] = ACTIONS(4565), + [anon_sym_BSLASHacfp] = ACTIONS(4565), + [anon_sym_BSLASHAcfp] = ACTIONS(4565), + [anon_sym_BSLASHac] = ACTIONS(4565), + [anon_sym_BSLASHAc] = ACTIONS(4565), + [anon_sym_BSLASHacp] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), + [anon_sym_BSLASHcolor] = ACTIONS(4565), + [anon_sym_BSLASHcolorbox] = ACTIONS(4565), + [anon_sym_BSLASHtextcolor] = ACTIONS(4565), + [anon_sym_BSLASHpagecolor] = ACTIONS(4565), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), + [anon_sym_BSLASHtext] = ACTIONS(4565), + [anon_sym_BSLASHintertext] = ACTIONS(4565), + [anon_sym_shortintertext] = ACTIONS(4565), + }, + [1301] = { + [sym_command_name] = ACTIONS(4865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4865), + [anon_sym_BSLASHfi] = ACTIONS(5493), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_RBRACK] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4863), + [sym_word] = ACTIONS(4865), + [sym_placeholder] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_CARET] = ACTIONS(4865), + [anon_sym__] = ACTIONS(4865), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_COLON] = ACTIONS(4865), + [anon_sym_SQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), + [anon_sym_BSLASHbegin] = ACTIONS(4865), + [anon_sym_BSLASHusepackage] = ACTIONS(4865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), + [anon_sym_BSLASHinclude] = ACTIONS(4865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), + [anon_sym_BSLASHinput] = ACTIONS(4865), + [anon_sym_BSLASHsubfile] = ACTIONS(4865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), + [anon_sym_BSLASHbibliography] = ACTIONS(4865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), + [anon_sym_BSLASHincludesvg] = ACTIONS(4865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), + [anon_sym_BSLASHimport] = ACTIONS(4865), + [anon_sym_BSLASHsubimport] = ACTIONS(4865), + [anon_sym_BSLASHinputfrom] = ACTIONS(4865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), + [anon_sym_BSLASHincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHcaption] = ACTIONS(4865), + [anon_sym_BSLASHcite] = ACTIONS(4865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCite] = ACTIONS(4865), + [anon_sym_BSLASHnocite] = ACTIONS(4865), + [anon_sym_BSLASHcitet] = ACTIONS(4865), + [anon_sym_BSLASHcitep] = ACTIONS(4865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteauthor] = ACTIONS(4865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitetitle] = ACTIONS(4865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteyear] = ACTIONS(4865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitedate] = ACTIONS(4865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteurl] = ACTIONS(4865), + [anon_sym_BSLASHfullcite] = ACTIONS(4865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), + [anon_sym_BSLASHcitealt] = ACTIONS(4865), + [anon_sym_BSLASHcitealp] = ACTIONS(4865), + [anon_sym_BSLASHcitetext] = ACTIONS(4865), + [anon_sym_BSLASHparencite] = ACTIONS(4865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHParencite] = ACTIONS(4865), + [anon_sym_BSLASHfootcite] = ACTIONS(4865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), + [anon_sym_BSLASHtextcite] = ACTIONS(4865), + [anon_sym_BSLASHTextcite] = ACTIONS(4865), + [anon_sym_BSLASHsmartcite] = ACTIONS(4865), + [anon_sym_BSLASHSmartcite] = ACTIONS(4865), + [anon_sym_BSLASHsupercite] = ACTIONS(4865), + [anon_sym_BSLASHautocite] = ACTIONS(4865), + [anon_sym_BSLASHAutocite] = ACTIONS(4865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHvolcite] = ACTIONS(4865), + [anon_sym_BSLASHVolcite] = ACTIONS(4865), + [anon_sym_BSLASHpvolcite] = ACTIONS(4865), + [anon_sym_BSLASHPvolcite] = ACTIONS(4865), + [anon_sym_BSLASHfvolcite] = ACTIONS(4865), + [anon_sym_BSLASHftvolcite] = ACTIONS(4865), + [anon_sym_BSLASHsvolcite] = ACTIONS(4865), + [anon_sym_BSLASHSvolcite] = ACTIONS(4865), + [anon_sym_BSLASHtvolcite] = ACTIONS(4865), + [anon_sym_BSLASHTvolcite] = ACTIONS(4865), + [anon_sym_BSLASHavolcite] = ACTIONS(4865), + [anon_sym_BSLASHAvolcite] = ACTIONS(4865), + [anon_sym_BSLASHnotecite] = ACTIONS(4865), + [anon_sym_BSLASHNotecite] = ACTIONS(4865), + [anon_sym_BSLASHpnotecite] = ACTIONS(4865), + [anon_sym_BSLASHPnotecite] = ACTIONS(4865), + [anon_sym_BSLASHfnotecite] = ACTIONS(4865), + [anon_sym_BSLASHlabel] = ACTIONS(4865), + [anon_sym_BSLASHref] = ACTIONS(4865), + [anon_sym_BSLASHeqref] = ACTIONS(4865), + [anon_sym_BSLASHvref] = ACTIONS(4865), + [anon_sym_BSLASHVref] = ACTIONS(4865), + [anon_sym_BSLASHautoref] = ACTIONS(4865), + [anon_sym_BSLASHpageref] = ACTIONS(4865), + [anon_sym_BSLASHcref] = ACTIONS(4865), + [anon_sym_BSLASHCref] = ACTIONS(4865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnameCref] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHlabelcref] = ACTIONS(4865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCrefrange] = ACTIONS(4865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnewlabel] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), + [anon_sym_BSLASHdef] = ACTIONS(4865), + [anon_sym_BSLASHlet] = ACTIONS(4865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), + [anon_sym_BSLASHgls] = ACTIONS(4865), + [anon_sym_BSLASHGls] = ACTIONS(4865), + [anon_sym_BSLASHGLS] = ACTIONS(4865), + [anon_sym_BSLASHglspl] = ACTIONS(4865), + [anon_sym_BSLASHGlspl] = ACTIONS(4865), + [anon_sym_BSLASHGLSpl] = ACTIONS(4865), + [anon_sym_BSLASHglsdisp] = ACTIONS(4865), + [anon_sym_BSLASHglslink] = ACTIONS(4865), + [anon_sym_BSLASHglstext] = ACTIONS(4865), + [anon_sym_BSLASHGlstext] = ACTIONS(4865), + [anon_sym_BSLASHGLStext] = ACTIONS(4865), + [anon_sym_BSLASHglsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), + [anon_sym_BSLASHglsplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSplural] = ACTIONS(4865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHglsname] = ACTIONS(4865), + [anon_sym_BSLASHGlsname] = ACTIONS(4865), + [anon_sym_BSLASHGLSname] = ACTIONS(4865), + [anon_sym_BSLASHglssymbol] = ACTIONS(4865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), + [anon_sym_BSLASHglsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), + [anon_sym_BSLASHglsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), + [anon_sym_BSLASHglsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), + [anon_sym_BSLASHglsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), + [anon_sym_BSLASHglsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), + [anon_sym_BSLASHnewacronym] = ACTIONS(4865), + [anon_sym_BSLASHacrshort] = ACTIONS(4865), + [anon_sym_BSLASHAcrshort] = ACTIONS(4865), + [anon_sym_BSLASHACRshort] = ACTIONS(4865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), + [anon_sym_BSLASHacrlong] = ACTIONS(4865), + [anon_sym_BSLASHAcrlong] = ACTIONS(4865), + [anon_sym_BSLASHACRlong] = ACTIONS(4865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), + [anon_sym_BSLASHacrfull] = ACTIONS(4865), + [anon_sym_BSLASHAcrfull] = ACTIONS(4865), + [anon_sym_BSLASHACRfull] = ACTIONS(4865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), + [anon_sym_BSLASHacs] = ACTIONS(4865), + [anon_sym_BSLASHAcs] = ACTIONS(4865), + [anon_sym_BSLASHacsp] = ACTIONS(4865), + [anon_sym_BSLASHAcsp] = ACTIONS(4865), + [anon_sym_BSLASHacl] = ACTIONS(4865), + [anon_sym_BSLASHAcl] = ACTIONS(4865), + [anon_sym_BSLASHaclp] = ACTIONS(4865), + [anon_sym_BSLASHAclp] = ACTIONS(4865), + [anon_sym_BSLASHacf] = ACTIONS(4865), + [anon_sym_BSLASHAcf] = ACTIONS(4865), + [anon_sym_BSLASHacfp] = ACTIONS(4865), + [anon_sym_BSLASHAcfp] = ACTIONS(4865), + [anon_sym_BSLASHac] = ACTIONS(4865), + [anon_sym_BSLASHAc] = ACTIONS(4865), + [anon_sym_BSLASHacp] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), + [anon_sym_BSLASHcolor] = ACTIONS(4865), + [anon_sym_BSLASHcolorbox] = ACTIONS(4865), + [anon_sym_BSLASHtextcolor] = ACTIONS(4865), + [anon_sym_BSLASHpagecolor] = ACTIONS(4865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), + [anon_sym_BSLASHtext] = ACTIONS(4865), + [anon_sym_BSLASHintertext] = ACTIONS(4865), + [anon_sym_shortintertext] = ACTIONS(4865), + }, + [1302] = { + [sym_brack_group_text] = STATE(1372), + [sym_command_name] = ACTIONS(4857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4857), + [anon_sym_LPAREN] = ACTIONS(4855), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_LBRACK] = ACTIONS(5495), + [anon_sym_RBRACK] = ACTIONS(4855), + [anon_sym_COMMA] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4855), + [anon_sym_LBRACE] = ACTIONS(4855), + [sym_word] = ACTIONS(4857), + [sym_placeholder] = ACTIONS(4855), + [anon_sym_PLUS] = ACTIONS(4857), + [anon_sym_DASH] = ACTIONS(4857), + [anon_sym_STAR] = ACTIONS(4857), + [anon_sym_SLASH] = ACTIONS(4857), + [anon_sym_CARET] = ACTIONS(4857), + [anon_sym__] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_BANG] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_COLON] = ACTIONS(4857), + [anon_sym_SQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), + [anon_sym_BSLASHbegin] = ACTIONS(4857), + [anon_sym_BSLASHusepackage] = ACTIONS(4857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), + [anon_sym_BSLASHinclude] = ACTIONS(4857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), + [anon_sym_BSLASHinput] = ACTIONS(4857), + [anon_sym_BSLASHsubfile] = ACTIONS(4857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), + [anon_sym_BSLASHbibliography] = ACTIONS(4857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), + [anon_sym_BSLASHincludesvg] = ACTIONS(4857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), + [anon_sym_BSLASHimport] = ACTIONS(4857), + [anon_sym_BSLASHsubimport] = ACTIONS(4857), + [anon_sym_BSLASHinputfrom] = ACTIONS(4857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), + [anon_sym_BSLASHincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHcaption] = ACTIONS(4857), + [anon_sym_BSLASHcite] = ACTIONS(4857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCite] = ACTIONS(4857), + [anon_sym_BSLASHnocite] = ACTIONS(4857), + [anon_sym_BSLASHcitet] = ACTIONS(4857), + [anon_sym_BSLASHcitep] = ACTIONS(4857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteauthor] = ACTIONS(4857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitetitle] = ACTIONS(4857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteyear] = ACTIONS(4857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitedate] = ACTIONS(4857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteurl] = ACTIONS(4857), + [anon_sym_BSLASHfullcite] = ACTIONS(4857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), + [anon_sym_BSLASHcitealt] = ACTIONS(4857), + [anon_sym_BSLASHcitealp] = ACTIONS(4857), + [anon_sym_BSLASHcitetext] = ACTIONS(4857), + [anon_sym_BSLASHparencite] = ACTIONS(4857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHParencite] = ACTIONS(4857), + [anon_sym_BSLASHfootcite] = ACTIONS(4857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), + [anon_sym_BSLASHtextcite] = ACTIONS(4857), + [anon_sym_BSLASHTextcite] = ACTIONS(4857), + [anon_sym_BSLASHsmartcite] = ACTIONS(4857), + [anon_sym_BSLASHSmartcite] = ACTIONS(4857), + [anon_sym_BSLASHsupercite] = ACTIONS(4857), + [anon_sym_BSLASHautocite] = ACTIONS(4857), + [anon_sym_BSLASHAutocite] = ACTIONS(4857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHvolcite] = ACTIONS(4857), + [anon_sym_BSLASHVolcite] = ACTIONS(4857), + [anon_sym_BSLASHpvolcite] = ACTIONS(4857), + [anon_sym_BSLASHPvolcite] = ACTIONS(4857), + [anon_sym_BSLASHfvolcite] = ACTIONS(4857), + [anon_sym_BSLASHftvolcite] = ACTIONS(4857), + [anon_sym_BSLASHsvolcite] = ACTIONS(4857), + [anon_sym_BSLASHSvolcite] = ACTIONS(4857), + [anon_sym_BSLASHtvolcite] = ACTIONS(4857), + [anon_sym_BSLASHTvolcite] = ACTIONS(4857), + [anon_sym_BSLASHavolcite] = ACTIONS(4857), + [anon_sym_BSLASHAvolcite] = ACTIONS(4857), + [anon_sym_BSLASHnotecite] = ACTIONS(4857), + [anon_sym_BSLASHNotecite] = ACTIONS(4857), + [anon_sym_BSLASHpnotecite] = ACTIONS(4857), + [anon_sym_BSLASHPnotecite] = ACTIONS(4857), + [anon_sym_BSLASHfnotecite] = ACTIONS(4857), + [anon_sym_BSLASHlabel] = ACTIONS(4857), + [anon_sym_BSLASHref] = ACTIONS(4857), + [anon_sym_BSLASHeqref] = ACTIONS(4857), + [anon_sym_BSLASHvref] = ACTIONS(4857), + [anon_sym_BSLASHVref] = ACTIONS(4857), + [anon_sym_BSLASHautoref] = ACTIONS(4857), + [anon_sym_BSLASHpageref] = ACTIONS(4857), + [anon_sym_BSLASHcref] = ACTIONS(4857), + [anon_sym_BSLASHCref] = ACTIONS(4857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnameCref] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHlabelcref] = ACTIONS(4857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCrefrange] = ACTIONS(4857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnewlabel] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), + [anon_sym_BSLASHdef] = ACTIONS(4857), + [anon_sym_BSLASHlet] = ACTIONS(4857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), + [anon_sym_BSLASHgls] = ACTIONS(4857), + [anon_sym_BSLASHGls] = ACTIONS(4857), + [anon_sym_BSLASHGLS] = ACTIONS(4857), + [anon_sym_BSLASHglspl] = ACTIONS(4857), + [anon_sym_BSLASHGlspl] = ACTIONS(4857), + [anon_sym_BSLASHGLSpl] = ACTIONS(4857), + [anon_sym_BSLASHglsdisp] = ACTIONS(4857), + [anon_sym_BSLASHglslink] = ACTIONS(4857), + [anon_sym_BSLASHglstext] = ACTIONS(4857), + [anon_sym_BSLASHGlstext] = ACTIONS(4857), + [anon_sym_BSLASHGLStext] = ACTIONS(4857), + [anon_sym_BSLASHglsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), + [anon_sym_BSLASHglsplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSplural] = ACTIONS(4857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHglsname] = ACTIONS(4857), + [anon_sym_BSLASHGlsname] = ACTIONS(4857), + [anon_sym_BSLASHGLSname] = ACTIONS(4857), + [anon_sym_BSLASHglssymbol] = ACTIONS(4857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), + [anon_sym_BSLASHglsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), + [anon_sym_BSLASHglsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), + [anon_sym_BSLASHglsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), + [anon_sym_BSLASHglsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), + [anon_sym_BSLASHglsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), + [anon_sym_BSLASHnewacronym] = ACTIONS(4857), + [anon_sym_BSLASHacrshort] = ACTIONS(4857), + [anon_sym_BSLASHAcrshort] = ACTIONS(4857), + [anon_sym_BSLASHACRshort] = ACTIONS(4857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), + [anon_sym_BSLASHacrlong] = ACTIONS(4857), + [anon_sym_BSLASHAcrlong] = ACTIONS(4857), + [anon_sym_BSLASHACRlong] = ACTIONS(4857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), + [anon_sym_BSLASHacrfull] = ACTIONS(4857), + [anon_sym_BSLASHAcrfull] = ACTIONS(4857), + [anon_sym_BSLASHACRfull] = ACTIONS(4857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), + [anon_sym_BSLASHacs] = ACTIONS(4857), + [anon_sym_BSLASHAcs] = ACTIONS(4857), + [anon_sym_BSLASHacsp] = ACTIONS(4857), + [anon_sym_BSLASHAcsp] = ACTIONS(4857), + [anon_sym_BSLASHacl] = ACTIONS(4857), + [anon_sym_BSLASHAcl] = ACTIONS(4857), + [anon_sym_BSLASHaclp] = ACTIONS(4857), + [anon_sym_BSLASHAclp] = ACTIONS(4857), + [anon_sym_BSLASHacf] = ACTIONS(4857), + [anon_sym_BSLASHAcf] = ACTIONS(4857), + [anon_sym_BSLASHacfp] = ACTIONS(4857), + [anon_sym_BSLASHAcfp] = ACTIONS(4857), + [anon_sym_BSLASHac] = ACTIONS(4857), + [anon_sym_BSLASHAc] = ACTIONS(4857), + [anon_sym_BSLASHacp] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), + [anon_sym_BSLASHcolor] = ACTIONS(4857), + [anon_sym_BSLASHcolorbox] = ACTIONS(4857), + [anon_sym_BSLASHtextcolor] = ACTIONS(4857), + [anon_sym_BSLASHpagecolor] = ACTIONS(4857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), + [anon_sym_BSLASHtext] = ACTIONS(4857), + [anon_sym_BSLASHintertext] = ACTIONS(4857), + [anon_sym_shortintertext] = ACTIONS(4857), + }, + [1303] = { + [sym_curly_group] = STATE(1398), + [sym_brack_group_text] = STATE(2228), + [sym_command_name] = ACTIONS(4691), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4691), + [anon_sym_LPAREN] = ACTIONS(4689), + [anon_sym_RPAREN] = ACTIONS(4689), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4689), + [anon_sym_COMMA] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(4689), + [sym_word] = ACTIONS(4691), + [sym_placeholder] = ACTIONS(4689), + [anon_sym_PLUS] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(4691), + [anon_sym_STAR] = ACTIONS(4691), + [anon_sym_SLASH] = ACTIONS(4691), + [anon_sym_CARET] = ACTIONS(4691), + [anon_sym__] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4691), + [anon_sym_GT] = ACTIONS(4691), + [anon_sym_BANG] = ACTIONS(4691), + [anon_sym_PIPE] = ACTIONS(4691), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_SQUOTE] = ACTIONS(4691), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4689), + [anon_sym_DOLLAR] = ACTIONS(4691), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4689), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4689), + [anon_sym_BSLASHusepackage] = ACTIONS(4691), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), + [anon_sym_BSLASHinclude] = ACTIONS(4691), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), + [anon_sym_BSLASHinput] = ACTIONS(4691), + [anon_sym_BSLASHsubfile] = ACTIONS(4691), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), + [anon_sym_BSLASHbibliography] = ACTIONS(4691), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), + [anon_sym_BSLASHincludesvg] = ACTIONS(4691), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), + [anon_sym_BSLASHimport] = ACTIONS(4691), + [anon_sym_BSLASHsubimport] = ACTIONS(4691), + [anon_sym_BSLASHinputfrom] = ACTIONS(4691), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), + [anon_sym_BSLASHincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHcaption] = ACTIONS(4691), + [anon_sym_BSLASHcite] = ACTIONS(4691), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCite] = ACTIONS(4691), + [anon_sym_BSLASHnocite] = ACTIONS(4691), + [anon_sym_BSLASHcitet] = ACTIONS(4691), + [anon_sym_BSLASHcitep] = ACTIONS(4691), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteauthor] = ACTIONS(4691), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitetitle] = ACTIONS(4691), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteyear] = ACTIONS(4691), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitedate] = ACTIONS(4691), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteurl] = ACTIONS(4691), + [anon_sym_BSLASHfullcite] = ACTIONS(4691), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), + [anon_sym_BSLASHcitealt] = ACTIONS(4691), + [anon_sym_BSLASHcitealp] = ACTIONS(4691), + [anon_sym_BSLASHcitetext] = ACTIONS(4691), + [anon_sym_BSLASHparencite] = ACTIONS(4691), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHParencite] = ACTIONS(4691), + [anon_sym_BSLASHfootcite] = ACTIONS(4691), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), + [anon_sym_BSLASHtextcite] = ACTIONS(4691), + [anon_sym_BSLASHTextcite] = ACTIONS(4691), + [anon_sym_BSLASHsmartcite] = ACTIONS(4691), + [anon_sym_BSLASHSmartcite] = ACTIONS(4691), + [anon_sym_BSLASHsupercite] = ACTIONS(4691), + [anon_sym_BSLASHautocite] = ACTIONS(4691), + [anon_sym_BSLASHAutocite] = ACTIONS(4691), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHvolcite] = ACTIONS(4691), + [anon_sym_BSLASHVolcite] = ACTIONS(4691), + [anon_sym_BSLASHpvolcite] = ACTIONS(4691), + [anon_sym_BSLASHPvolcite] = ACTIONS(4691), + [anon_sym_BSLASHfvolcite] = ACTIONS(4691), + [anon_sym_BSLASHftvolcite] = ACTIONS(4691), + [anon_sym_BSLASHsvolcite] = ACTIONS(4691), + [anon_sym_BSLASHSvolcite] = ACTIONS(4691), + [anon_sym_BSLASHtvolcite] = ACTIONS(4691), + [anon_sym_BSLASHTvolcite] = ACTIONS(4691), + [anon_sym_BSLASHavolcite] = ACTIONS(4691), + [anon_sym_BSLASHAvolcite] = ACTIONS(4691), + [anon_sym_BSLASHnotecite] = ACTIONS(4691), + [anon_sym_BSLASHNotecite] = ACTIONS(4691), + [anon_sym_BSLASHpnotecite] = ACTIONS(4691), + [anon_sym_BSLASHPnotecite] = ACTIONS(4691), + [anon_sym_BSLASHfnotecite] = ACTIONS(4691), + [anon_sym_BSLASHlabel] = ACTIONS(4691), + [anon_sym_BSLASHref] = ACTIONS(4691), + [anon_sym_BSLASHeqref] = ACTIONS(4691), + [anon_sym_BSLASHvref] = ACTIONS(4691), + [anon_sym_BSLASHVref] = ACTIONS(4691), + [anon_sym_BSLASHautoref] = ACTIONS(4691), + [anon_sym_BSLASHpageref] = ACTIONS(4691), + [anon_sym_BSLASHcref] = ACTIONS(4691), + [anon_sym_BSLASHCref] = ACTIONS(4691), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnameCref] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHlabelcref] = ACTIONS(4691), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCrefrange] = ACTIONS(4691), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnewlabel] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), + [anon_sym_BSLASHdef] = ACTIONS(4691), + [anon_sym_BSLASHlet] = ACTIONS(4691), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), + [anon_sym_BSLASHgls] = ACTIONS(4691), + [anon_sym_BSLASHGls] = ACTIONS(4691), + [anon_sym_BSLASHGLS] = ACTIONS(4691), + [anon_sym_BSLASHglspl] = ACTIONS(4691), + [anon_sym_BSLASHGlspl] = ACTIONS(4691), + [anon_sym_BSLASHGLSpl] = ACTIONS(4691), + [anon_sym_BSLASHglsdisp] = ACTIONS(4691), + [anon_sym_BSLASHglslink] = ACTIONS(4691), + [anon_sym_BSLASHglstext] = ACTIONS(4691), + [anon_sym_BSLASHGlstext] = ACTIONS(4691), + [anon_sym_BSLASHGLStext] = ACTIONS(4691), + [anon_sym_BSLASHglsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), + [anon_sym_BSLASHglsplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSplural] = ACTIONS(4691), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHglsname] = ACTIONS(4691), + [anon_sym_BSLASHGlsname] = ACTIONS(4691), + [anon_sym_BSLASHGLSname] = ACTIONS(4691), + [anon_sym_BSLASHglssymbol] = ACTIONS(4691), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), + [anon_sym_BSLASHglsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), + [anon_sym_BSLASHglsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), + [anon_sym_BSLASHglsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), + [anon_sym_BSLASHglsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), + [anon_sym_BSLASHglsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), + [anon_sym_BSLASHnewacronym] = ACTIONS(4691), + [anon_sym_BSLASHacrshort] = ACTIONS(4691), + [anon_sym_BSLASHAcrshort] = ACTIONS(4691), + [anon_sym_BSLASHACRshort] = ACTIONS(4691), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), + [anon_sym_BSLASHacrlong] = ACTIONS(4691), + [anon_sym_BSLASHAcrlong] = ACTIONS(4691), + [anon_sym_BSLASHACRlong] = ACTIONS(4691), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), + [anon_sym_BSLASHacrfull] = ACTIONS(4691), + [anon_sym_BSLASHAcrfull] = ACTIONS(4691), + [anon_sym_BSLASHACRfull] = ACTIONS(4691), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), + [anon_sym_BSLASHacs] = ACTIONS(4691), + [anon_sym_BSLASHAcs] = ACTIONS(4691), + [anon_sym_BSLASHacsp] = ACTIONS(4691), + [anon_sym_BSLASHAcsp] = ACTIONS(4691), + [anon_sym_BSLASHacl] = ACTIONS(4691), + [anon_sym_BSLASHAcl] = ACTIONS(4691), + [anon_sym_BSLASHaclp] = ACTIONS(4691), + [anon_sym_BSLASHAclp] = ACTIONS(4691), + [anon_sym_BSLASHacf] = ACTIONS(4691), + [anon_sym_BSLASHAcf] = ACTIONS(4691), + [anon_sym_BSLASHacfp] = ACTIONS(4691), + [anon_sym_BSLASHAcfp] = ACTIONS(4691), + [anon_sym_BSLASHac] = ACTIONS(4691), + [anon_sym_BSLASHAc] = ACTIONS(4691), + [anon_sym_BSLASHacp] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), + [anon_sym_BSLASHcolor] = ACTIONS(4691), + [anon_sym_BSLASHcolorbox] = ACTIONS(4691), + [anon_sym_BSLASHtextcolor] = ACTIONS(4691), + [anon_sym_BSLASHpagecolor] = ACTIONS(4691), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), + [anon_sym_BSLASHtext] = ACTIONS(4691), + [anon_sym_BSLASHintertext] = ACTIONS(4691), + [anon_sym_shortintertext] = ACTIONS(4691), + }, + [1304] = { + [sym_brack_group_text] = STATE(1316), + [sym_command_name] = ACTIONS(4879), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4877), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(5495), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_COMMA] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4877), + [sym_word] = ACTIONS(4879), + [sym_placeholder] = ACTIONS(4877), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4879), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_CARET] = ACTIONS(4879), + [anon_sym__] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_COLON] = ACTIONS(4879), + [anon_sym_SQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(4879), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), + [anon_sym_BSLASHbegin] = ACTIONS(4879), + [anon_sym_BSLASHusepackage] = ACTIONS(4879), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), + [anon_sym_BSLASHinclude] = ACTIONS(4879), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), + [anon_sym_BSLASHinput] = ACTIONS(4879), + [anon_sym_BSLASHsubfile] = ACTIONS(4879), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), + [anon_sym_BSLASHbibliography] = ACTIONS(4879), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), + [anon_sym_BSLASHincludesvg] = ACTIONS(4879), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), + [anon_sym_BSLASHimport] = ACTIONS(4879), + [anon_sym_BSLASHsubimport] = ACTIONS(4879), + [anon_sym_BSLASHinputfrom] = ACTIONS(4879), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), + [anon_sym_BSLASHincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHcaption] = ACTIONS(4879), + [anon_sym_BSLASHcite] = ACTIONS(4879), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCite] = ACTIONS(4879), + [anon_sym_BSLASHnocite] = ACTIONS(4879), + [anon_sym_BSLASHcitet] = ACTIONS(4879), + [anon_sym_BSLASHcitep] = ACTIONS(4879), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteauthor] = ACTIONS(4879), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitetitle] = ACTIONS(4879), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteyear] = ACTIONS(4879), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitedate] = ACTIONS(4879), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteurl] = ACTIONS(4879), + [anon_sym_BSLASHfullcite] = ACTIONS(4879), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), + [anon_sym_BSLASHcitealt] = ACTIONS(4879), + [anon_sym_BSLASHcitealp] = ACTIONS(4879), + [anon_sym_BSLASHcitetext] = ACTIONS(4879), + [anon_sym_BSLASHparencite] = ACTIONS(4879), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHParencite] = ACTIONS(4879), + [anon_sym_BSLASHfootcite] = ACTIONS(4879), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), + [anon_sym_BSLASHtextcite] = ACTIONS(4879), + [anon_sym_BSLASHTextcite] = ACTIONS(4879), + [anon_sym_BSLASHsmartcite] = ACTIONS(4879), + [anon_sym_BSLASHSmartcite] = ACTIONS(4879), + [anon_sym_BSLASHsupercite] = ACTIONS(4879), + [anon_sym_BSLASHautocite] = ACTIONS(4879), + [anon_sym_BSLASHAutocite] = ACTIONS(4879), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHvolcite] = ACTIONS(4879), + [anon_sym_BSLASHVolcite] = ACTIONS(4879), + [anon_sym_BSLASHpvolcite] = ACTIONS(4879), + [anon_sym_BSLASHPvolcite] = ACTIONS(4879), + [anon_sym_BSLASHfvolcite] = ACTIONS(4879), + [anon_sym_BSLASHftvolcite] = ACTIONS(4879), + [anon_sym_BSLASHsvolcite] = ACTIONS(4879), + [anon_sym_BSLASHSvolcite] = ACTIONS(4879), + [anon_sym_BSLASHtvolcite] = ACTIONS(4879), + [anon_sym_BSLASHTvolcite] = ACTIONS(4879), + [anon_sym_BSLASHavolcite] = ACTIONS(4879), + [anon_sym_BSLASHAvolcite] = ACTIONS(4879), + [anon_sym_BSLASHnotecite] = ACTIONS(4879), + [anon_sym_BSLASHNotecite] = ACTIONS(4879), + [anon_sym_BSLASHpnotecite] = ACTIONS(4879), + [anon_sym_BSLASHPnotecite] = ACTIONS(4879), + [anon_sym_BSLASHfnotecite] = ACTIONS(4879), + [anon_sym_BSLASHlabel] = ACTIONS(4879), + [anon_sym_BSLASHref] = ACTIONS(4879), + [anon_sym_BSLASHeqref] = ACTIONS(4879), + [anon_sym_BSLASHvref] = ACTIONS(4879), + [anon_sym_BSLASHVref] = ACTIONS(4879), + [anon_sym_BSLASHautoref] = ACTIONS(4879), + [anon_sym_BSLASHpageref] = ACTIONS(4879), + [anon_sym_BSLASHcref] = ACTIONS(4879), + [anon_sym_BSLASHCref] = ACTIONS(4879), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnameCref] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHlabelcref] = ACTIONS(4879), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCrefrange] = ACTIONS(4879), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnewlabel] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), + [anon_sym_BSLASHdef] = ACTIONS(4879), + [anon_sym_BSLASHlet] = ACTIONS(4879), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), + [anon_sym_BSLASHgls] = ACTIONS(4879), + [anon_sym_BSLASHGls] = ACTIONS(4879), + [anon_sym_BSLASHGLS] = ACTIONS(4879), + [anon_sym_BSLASHglspl] = ACTIONS(4879), + [anon_sym_BSLASHGlspl] = ACTIONS(4879), + [anon_sym_BSLASHGLSpl] = ACTIONS(4879), + [anon_sym_BSLASHglsdisp] = ACTIONS(4879), + [anon_sym_BSLASHglslink] = ACTIONS(4879), + [anon_sym_BSLASHglstext] = ACTIONS(4879), + [anon_sym_BSLASHGlstext] = ACTIONS(4879), + [anon_sym_BSLASHGLStext] = ACTIONS(4879), + [anon_sym_BSLASHglsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), + [anon_sym_BSLASHglsplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSplural] = ACTIONS(4879), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHglsname] = ACTIONS(4879), + [anon_sym_BSLASHGlsname] = ACTIONS(4879), + [anon_sym_BSLASHGLSname] = ACTIONS(4879), + [anon_sym_BSLASHglssymbol] = ACTIONS(4879), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), + [anon_sym_BSLASHglsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), + [anon_sym_BSLASHglsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), + [anon_sym_BSLASHglsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), + [anon_sym_BSLASHglsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), + [anon_sym_BSLASHglsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), + [anon_sym_BSLASHnewacronym] = ACTIONS(4879), + [anon_sym_BSLASHacrshort] = ACTIONS(4879), + [anon_sym_BSLASHAcrshort] = ACTIONS(4879), + [anon_sym_BSLASHACRshort] = ACTIONS(4879), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), + [anon_sym_BSLASHacrlong] = ACTIONS(4879), + [anon_sym_BSLASHAcrlong] = ACTIONS(4879), + [anon_sym_BSLASHACRlong] = ACTIONS(4879), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), + [anon_sym_BSLASHacrfull] = ACTIONS(4879), + [anon_sym_BSLASHAcrfull] = ACTIONS(4879), + [anon_sym_BSLASHACRfull] = ACTIONS(4879), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), + [anon_sym_BSLASHacs] = ACTIONS(4879), + [anon_sym_BSLASHAcs] = ACTIONS(4879), + [anon_sym_BSLASHacsp] = ACTIONS(4879), + [anon_sym_BSLASHAcsp] = ACTIONS(4879), + [anon_sym_BSLASHacl] = ACTIONS(4879), + [anon_sym_BSLASHAcl] = ACTIONS(4879), + [anon_sym_BSLASHaclp] = ACTIONS(4879), + [anon_sym_BSLASHAclp] = ACTIONS(4879), + [anon_sym_BSLASHacf] = ACTIONS(4879), + [anon_sym_BSLASHAcf] = ACTIONS(4879), + [anon_sym_BSLASHacfp] = ACTIONS(4879), + [anon_sym_BSLASHAcfp] = ACTIONS(4879), + [anon_sym_BSLASHac] = ACTIONS(4879), + [anon_sym_BSLASHAc] = ACTIONS(4879), + [anon_sym_BSLASHacp] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), + [anon_sym_BSLASHcolor] = ACTIONS(4879), + [anon_sym_BSLASHcolorbox] = ACTIONS(4879), + [anon_sym_BSLASHtextcolor] = ACTIONS(4879), + [anon_sym_BSLASHpagecolor] = ACTIONS(4879), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), + [anon_sym_BSLASHtext] = ACTIONS(4879), + [anon_sym_BSLASHintertext] = ACTIONS(4879), + [anon_sym_shortintertext] = ACTIONS(4879), + }, + [1305] = { + [sym_curly_group] = STATE(1401), + [sym_brack_group_text] = STATE(2219), + [sym_command_name] = ACTIONS(4817), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4817), + [anon_sym_LPAREN] = ACTIONS(4815), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4815), + [anon_sym_COMMA] = ACTIONS(4815), + [anon_sym_LBRACE] = ACTIONS(3711), + [anon_sym_RBRACE] = ACTIONS(4815), + [sym_word] = ACTIONS(4817), + [sym_placeholder] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym__] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_BANG] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_SQUOTE] = ACTIONS(4817), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(4817), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4815), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4815), + [anon_sym_BSLASHusepackage] = ACTIONS(4817), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), + [anon_sym_BSLASHinclude] = ACTIONS(4817), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), + [anon_sym_BSLASHinput] = ACTIONS(4817), + [anon_sym_BSLASHsubfile] = ACTIONS(4817), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), + [anon_sym_BSLASHbibliography] = ACTIONS(4817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), + [anon_sym_BSLASHincludesvg] = ACTIONS(4817), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), + [anon_sym_BSLASHimport] = ACTIONS(4817), + [anon_sym_BSLASHsubimport] = ACTIONS(4817), + [anon_sym_BSLASHinputfrom] = ACTIONS(4817), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), + [anon_sym_BSLASHincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHcaption] = ACTIONS(4817), + [anon_sym_BSLASHcite] = ACTIONS(4817), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCite] = ACTIONS(4817), + [anon_sym_BSLASHnocite] = ACTIONS(4817), + [anon_sym_BSLASHcitet] = ACTIONS(4817), + [anon_sym_BSLASHcitep] = ACTIONS(4817), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteauthor] = ACTIONS(4817), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitetitle] = ACTIONS(4817), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteyear] = ACTIONS(4817), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitedate] = ACTIONS(4817), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteurl] = ACTIONS(4817), + [anon_sym_BSLASHfullcite] = ACTIONS(4817), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), + [anon_sym_BSLASHcitealt] = ACTIONS(4817), + [anon_sym_BSLASHcitealp] = ACTIONS(4817), + [anon_sym_BSLASHcitetext] = ACTIONS(4817), + [anon_sym_BSLASHparencite] = ACTIONS(4817), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHParencite] = ACTIONS(4817), + [anon_sym_BSLASHfootcite] = ACTIONS(4817), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), + [anon_sym_BSLASHtextcite] = ACTIONS(4817), + [anon_sym_BSLASHTextcite] = ACTIONS(4817), + [anon_sym_BSLASHsmartcite] = ACTIONS(4817), + [anon_sym_BSLASHSmartcite] = ACTIONS(4817), + [anon_sym_BSLASHsupercite] = ACTIONS(4817), + [anon_sym_BSLASHautocite] = ACTIONS(4817), + [anon_sym_BSLASHAutocite] = ACTIONS(4817), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHvolcite] = ACTIONS(4817), + [anon_sym_BSLASHVolcite] = ACTIONS(4817), + [anon_sym_BSLASHpvolcite] = ACTIONS(4817), + [anon_sym_BSLASHPvolcite] = ACTIONS(4817), + [anon_sym_BSLASHfvolcite] = ACTIONS(4817), + [anon_sym_BSLASHftvolcite] = ACTIONS(4817), + [anon_sym_BSLASHsvolcite] = ACTIONS(4817), + [anon_sym_BSLASHSvolcite] = ACTIONS(4817), + [anon_sym_BSLASHtvolcite] = ACTIONS(4817), + [anon_sym_BSLASHTvolcite] = ACTIONS(4817), + [anon_sym_BSLASHavolcite] = ACTIONS(4817), + [anon_sym_BSLASHAvolcite] = ACTIONS(4817), + [anon_sym_BSLASHnotecite] = ACTIONS(4817), + [anon_sym_BSLASHNotecite] = ACTIONS(4817), + [anon_sym_BSLASHpnotecite] = ACTIONS(4817), + [anon_sym_BSLASHPnotecite] = ACTIONS(4817), + [anon_sym_BSLASHfnotecite] = ACTIONS(4817), + [anon_sym_BSLASHlabel] = ACTIONS(4817), + [anon_sym_BSLASHref] = ACTIONS(4817), + [anon_sym_BSLASHeqref] = ACTIONS(4817), + [anon_sym_BSLASHvref] = ACTIONS(4817), + [anon_sym_BSLASHVref] = ACTIONS(4817), + [anon_sym_BSLASHautoref] = ACTIONS(4817), + [anon_sym_BSLASHpageref] = ACTIONS(4817), + [anon_sym_BSLASHcref] = ACTIONS(4817), + [anon_sym_BSLASHCref] = ACTIONS(4817), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnameCref] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHlabelcref] = ACTIONS(4817), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCrefrange] = ACTIONS(4817), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnewlabel] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), + [anon_sym_BSLASHdef] = ACTIONS(4817), + [anon_sym_BSLASHlet] = ACTIONS(4817), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), + [anon_sym_BSLASHgls] = ACTIONS(4817), + [anon_sym_BSLASHGls] = ACTIONS(4817), + [anon_sym_BSLASHGLS] = ACTIONS(4817), + [anon_sym_BSLASHglspl] = ACTIONS(4817), + [anon_sym_BSLASHGlspl] = ACTIONS(4817), + [anon_sym_BSLASHGLSpl] = ACTIONS(4817), + [anon_sym_BSLASHglsdisp] = ACTIONS(4817), + [anon_sym_BSLASHglslink] = ACTIONS(4817), + [anon_sym_BSLASHglstext] = ACTIONS(4817), + [anon_sym_BSLASHGlstext] = ACTIONS(4817), + [anon_sym_BSLASHGLStext] = ACTIONS(4817), + [anon_sym_BSLASHglsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), + [anon_sym_BSLASHglsplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSplural] = ACTIONS(4817), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHglsname] = ACTIONS(4817), + [anon_sym_BSLASHGlsname] = ACTIONS(4817), + [anon_sym_BSLASHGLSname] = ACTIONS(4817), + [anon_sym_BSLASHglssymbol] = ACTIONS(4817), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), + [anon_sym_BSLASHglsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), + [anon_sym_BSLASHglsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), + [anon_sym_BSLASHglsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), + [anon_sym_BSLASHglsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), + [anon_sym_BSLASHglsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), + [anon_sym_BSLASHnewacronym] = ACTIONS(4817), + [anon_sym_BSLASHacrshort] = ACTIONS(4817), + [anon_sym_BSLASHAcrshort] = ACTIONS(4817), + [anon_sym_BSLASHACRshort] = ACTIONS(4817), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), + [anon_sym_BSLASHacrlong] = ACTIONS(4817), + [anon_sym_BSLASHAcrlong] = ACTIONS(4817), + [anon_sym_BSLASHACRlong] = ACTIONS(4817), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), + [anon_sym_BSLASHacrfull] = ACTIONS(4817), + [anon_sym_BSLASHAcrfull] = ACTIONS(4817), + [anon_sym_BSLASHACRfull] = ACTIONS(4817), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), + [anon_sym_BSLASHacs] = ACTIONS(4817), + [anon_sym_BSLASHAcs] = ACTIONS(4817), + [anon_sym_BSLASHacsp] = ACTIONS(4817), + [anon_sym_BSLASHAcsp] = ACTIONS(4817), + [anon_sym_BSLASHacl] = ACTIONS(4817), + [anon_sym_BSLASHAcl] = ACTIONS(4817), + [anon_sym_BSLASHaclp] = ACTIONS(4817), + [anon_sym_BSLASHAclp] = ACTIONS(4817), + [anon_sym_BSLASHacf] = ACTIONS(4817), + [anon_sym_BSLASHAcf] = ACTIONS(4817), + [anon_sym_BSLASHacfp] = ACTIONS(4817), + [anon_sym_BSLASHAcfp] = ACTIONS(4817), + [anon_sym_BSLASHac] = ACTIONS(4817), + [anon_sym_BSLASHAc] = ACTIONS(4817), + [anon_sym_BSLASHacp] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), + [anon_sym_BSLASHcolor] = ACTIONS(4817), + [anon_sym_BSLASHcolorbox] = ACTIONS(4817), + [anon_sym_BSLASHtextcolor] = ACTIONS(4817), + [anon_sym_BSLASHpagecolor] = ACTIONS(4817), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), + [anon_sym_BSLASHtext] = ACTIONS(4817), + [anon_sym_BSLASHintertext] = ACTIONS(4817), + [anon_sym_shortintertext] = ACTIONS(4817), + }, + [1306] = { + [sym_command_name] = ACTIONS(4753), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4753), + [anon_sym_BSLASHfi] = ACTIONS(5497), + [anon_sym_LPAREN] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), + [anon_sym_LBRACK] = ACTIONS(4751), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_LBRACE] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [sym_word] = ACTIONS(4753), + [sym_placeholder] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_STAR] = ACTIONS(4753), + [anon_sym_SLASH] = ACTIONS(4753), + [anon_sym_CARET] = ACTIONS(4753), + [anon_sym__] = ACTIONS(4753), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_COLON] = ACTIONS(4753), + [anon_sym_SQUOTE] = ACTIONS(4753), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4751), + [anon_sym_DOLLAR] = ACTIONS(4753), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4751), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4751), + [anon_sym_BSLASHusepackage] = ACTIONS(4753), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), + [anon_sym_BSLASHinclude] = ACTIONS(4753), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), + [anon_sym_BSLASHinput] = ACTIONS(4753), + [anon_sym_BSLASHsubfile] = ACTIONS(4753), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), + [anon_sym_BSLASHbibliography] = ACTIONS(4753), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), + [anon_sym_BSLASHincludesvg] = ACTIONS(4753), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), + [anon_sym_BSLASHimport] = ACTIONS(4753), + [anon_sym_BSLASHsubimport] = ACTIONS(4753), + [anon_sym_BSLASHinputfrom] = ACTIONS(4753), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), + [anon_sym_BSLASHincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHcaption] = ACTIONS(4753), + [anon_sym_BSLASHcite] = ACTIONS(4753), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCite] = ACTIONS(4753), + [anon_sym_BSLASHnocite] = ACTIONS(4753), + [anon_sym_BSLASHcitet] = ACTIONS(4753), + [anon_sym_BSLASHcitep] = ACTIONS(4753), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteauthor] = ACTIONS(4753), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitetitle] = ACTIONS(4753), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteyear] = ACTIONS(4753), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitedate] = ACTIONS(4753), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteurl] = ACTIONS(4753), + [anon_sym_BSLASHfullcite] = ACTIONS(4753), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), + [anon_sym_BSLASHcitealt] = ACTIONS(4753), + [anon_sym_BSLASHcitealp] = ACTIONS(4753), + [anon_sym_BSLASHcitetext] = ACTIONS(4753), + [anon_sym_BSLASHparencite] = ACTIONS(4753), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHParencite] = ACTIONS(4753), + [anon_sym_BSLASHfootcite] = ACTIONS(4753), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), + [anon_sym_BSLASHtextcite] = ACTIONS(4753), + [anon_sym_BSLASHTextcite] = ACTIONS(4753), + [anon_sym_BSLASHsmartcite] = ACTIONS(4753), + [anon_sym_BSLASHSmartcite] = ACTIONS(4753), + [anon_sym_BSLASHsupercite] = ACTIONS(4753), + [anon_sym_BSLASHautocite] = ACTIONS(4753), + [anon_sym_BSLASHAutocite] = ACTIONS(4753), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHvolcite] = ACTIONS(4753), + [anon_sym_BSLASHVolcite] = ACTIONS(4753), + [anon_sym_BSLASHpvolcite] = ACTIONS(4753), + [anon_sym_BSLASHPvolcite] = ACTIONS(4753), + [anon_sym_BSLASHfvolcite] = ACTIONS(4753), + [anon_sym_BSLASHftvolcite] = ACTIONS(4753), + [anon_sym_BSLASHsvolcite] = ACTIONS(4753), + [anon_sym_BSLASHSvolcite] = ACTIONS(4753), + [anon_sym_BSLASHtvolcite] = ACTIONS(4753), + [anon_sym_BSLASHTvolcite] = ACTIONS(4753), + [anon_sym_BSLASHavolcite] = ACTIONS(4753), + [anon_sym_BSLASHAvolcite] = ACTIONS(4753), + [anon_sym_BSLASHnotecite] = ACTIONS(4753), + [anon_sym_BSLASHNotecite] = ACTIONS(4753), + [anon_sym_BSLASHpnotecite] = ACTIONS(4753), + [anon_sym_BSLASHPnotecite] = ACTIONS(4753), + [anon_sym_BSLASHfnotecite] = ACTIONS(4753), + [anon_sym_BSLASHlabel] = ACTIONS(4753), + [anon_sym_BSLASHref] = ACTIONS(4753), + [anon_sym_BSLASHeqref] = ACTIONS(4753), + [anon_sym_BSLASHvref] = ACTIONS(4753), + [anon_sym_BSLASHVref] = ACTIONS(4753), + [anon_sym_BSLASHautoref] = ACTIONS(4753), + [anon_sym_BSLASHpageref] = ACTIONS(4753), + [anon_sym_BSLASHcref] = ACTIONS(4753), + [anon_sym_BSLASHCref] = ACTIONS(4753), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnameCref] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHlabelcref] = ACTIONS(4753), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCrefrange] = ACTIONS(4753), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnewlabel] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), + [anon_sym_BSLASHdef] = ACTIONS(4753), + [anon_sym_BSLASHlet] = ACTIONS(4753), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), + [anon_sym_BSLASHgls] = ACTIONS(4753), + [anon_sym_BSLASHGls] = ACTIONS(4753), + [anon_sym_BSLASHGLS] = ACTIONS(4753), + [anon_sym_BSLASHglspl] = ACTIONS(4753), + [anon_sym_BSLASHGlspl] = ACTIONS(4753), + [anon_sym_BSLASHGLSpl] = ACTIONS(4753), + [anon_sym_BSLASHglsdisp] = ACTIONS(4753), + [anon_sym_BSLASHglslink] = ACTIONS(4753), + [anon_sym_BSLASHglstext] = ACTIONS(4753), + [anon_sym_BSLASHGlstext] = ACTIONS(4753), + [anon_sym_BSLASHGLStext] = ACTIONS(4753), + [anon_sym_BSLASHglsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), + [anon_sym_BSLASHglsplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSplural] = ACTIONS(4753), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHglsname] = ACTIONS(4753), + [anon_sym_BSLASHGlsname] = ACTIONS(4753), + [anon_sym_BSLASHGLSname] = ACTIONS(4753), + [anon_sym_BSLASHglssymbol] = ACTIONS(4753), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), + [anon_sym_BSLASHglsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), + [anon_sym_BSLASHglsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), + [anon_sym_BSLASHglsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), + [anon_sym_BSLASHglsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), + [anon_sym_BSLASHglsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), + [anon_sym_BSLASHnewacronym] = ACTIONS(4753), + [anon_sym_BSLASHacrshort] = ACTIONS(4753), + [anon_sym_BSLASHAcrshort] = ACTIONS(4753), + [anon_sym_BSLASHACRshort] = ACTIONS(4753), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), + [anon_sym_BSLASHacrlong] = ACTIONS(4753), + [anon_sym_BSLASHAcrlong] = ACTIONS(4753), + [anon_sym_BSLASHACRlong] = ACTIONS(4753), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), + [anon_sym_BSLASHacrfull] = ACTIONS(4753), + [anon_sym_BSLASHAcrfull] = ACTIONS(4753), + [anon_sym_BSLASHACRfull] = ACTIONS(4753), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), + [anon_sym_BSLASHacs] = ACTIONS(4753), + [anon_sym_BSLASHAcs] = ACTIONS(4753), + [anon_sym_BSLASHacsp] = ACTIONS(4753), + [anon_sym_BSLASHAcsp] = ACTIONS(4753), + [anon_sym_BSLASHacl] = ACTIONS(4753), + [anon_sym_BSLASHAcl] = ACTIONS(4753), + [anon_sym_BSLASHaclp] = ACTIONS(4753), + [anon_sym_BSLASHAclp] = ACTIONS(4753), + [anon_sym_BSLASHacf] = ACTIONS(4753), + [anon_sym_BSLASHAcf] = ACTIONS(4753), + [anon_sym_BSLASHacfp] = ACTIONS(4753), + [anon_sym_BSLASHAcfp] = ACTIONS(4753), + [anon_sym_BSLASHac] = ACTIONS(4753), + [anon_sym_BSLASHAc] = ACTIONS(4753), + [anon_sym_BSLASHacp] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), + [anon_sym_BSLASHcolor] = ACTIONS(4753), + [anon_sym_BSLASHcolorbox] = ACTIONS(4753), + [anon_sym_BSLASHtextcolor] = ACTIONS(4753), + [anon_sym_BSLASHpagecolor] = ACTIONS(4753), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), + [anon_sym_BSLASHtext] = ACTIONS(4753), + [anon_sym_BSLASHintertext] = ACTIONS(4753), + [anon_sym_shortintertext] = ACTIONS(4753), + [sym__trivia_raw_fi] = ACTIONS(5499), + }, + [1307] = { + [sym_command_name] = ACTIONS(4935), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4935), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_RPAREN] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), + [anon_sym_RBRACK] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_EQ] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4933), + [sym_word] = ACTIONS(4935), + [sym_placeholder] = ACTIONS(4933), + [anon_sym_PLUS] = ACTIONS(4935), + [anon_sym_DASH] = ACTIONS(4935), + [anon_sym_STAR] = ACTIONS(4935), + [anon_sym_SLASH] = ACTIONS(4935), + [anon_sym_CARET] = ACTIONS(4935), + [anon_sym__] = ACTIONS(4935), + [anon_sym_LT] = ACTIONS(4935), + [anon_sym_GT] = ACTIONS(4935), + [anon_sym_BANG] = ACTIONS(4935), + [anon_sym_PIPE] = ACTIONS(4935), + [anon_sym_COLON] = ACTIONS(4935), + [anon_sym_SQUOTE] = ACTIONS(4935), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4933), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4933), + [anon_sym_DOLLAR] = ACTIONS(4935), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4933), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4933), + [anon_sym_BSLASHbegin] = ACTIONS(4935), + [anon_sym_BSLASHusepackage] = ACTIONS(4935), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4935), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4935), + [anon_sym_BSLASHinclude] = ACTIONS(4935), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4935), + [anon_sym_BSLASHinput] = ACTIONS(4935), + [anon_sym_BSLASHsubfile] = ACTIONS(4935), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4935), + [anon_sym_BSLASHbibliography] = ACTIONS(4935), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4935), + [anon_sym_BSLASHincludesvg] = ACTIONS(4935), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4935), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4935), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4935), + [anon_sym_BSLASHimport] = ACTIONS(4935), + [anon_sym_BSLASHsubimport] = ACTIONS(4935), + [anon_sym_BSLASHinputfrom] = ACTIONS(4935), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4935), + [anon_sym_BSLASHincludefrom] = ACTIONS(4935), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4935), + [anon_sym_BSLASHcaption] = ACTIONS(4935), + [anon_sym_BSLASHcite] = ACTIONS(4935), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCite] = ACTIONS(4935), + [anon_sym_BSLASHnocite] = ACTIONS(4935), + [anon_sym_BSLASHcitet] = ACTIONS(4935), + [anon_sym_BSLASHcitep] = ACTIONS(4935), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteauthor] = ACTIONS(4935), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4935), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitetitle] = ACTIONS(4935), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteyear] = ACTIONS(4935), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4933), + [anon_sym_BSLASHcitedate] = ACTIONS(4935), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4933), + [anon_sym_BSLASHciteurl] = ACTIONS(4935), + [anon_sym_BSLASHfullcite] = ACTIONS(4935), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4935), + [anon_sym_BSLASHcitealt] = ACTIONS(4935), + [anon_sym_BSLASHcitealp] = ACTIONS(4935), + [anon_sym_BSLASHcitetext] = ACTIONS(4935), + [anon_sym_BSLASHparencite] = ACTIONS(4935), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHParencite] = ACTIONS(4935), + [anon_sym_BSLASHfootcite] = ACTIONS(4935), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4935), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4935), + [anon_sym_BSLASHtextcite] = ACTIONS(4935), + [anon_sym_BSLASHTextcite] = ACTIONS(4935), + [anon_sym_BSLASHsmartcite] = ACTIONS(4935), + [anon_sym_BSLASHSmartcite] = ACTIONS(4935), + [anon_sym_BSLASHsupercite] = ACTIONS(4935), + [anon_sym_BSLASHautocite] = ACTIONS(4935), + [anon_sym_BSLASHAutocite] = ACTIONS(4935), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4933), + [anon_sym_BSLASHvolcite] = ACTIONS(4935), + [anon_sym_BSLASHVolcite] = ACTIONS(4935), + [anon_sym_BSLASHpvolcite] = ACTIONS(4935), + [anon_sym_BSLASHPvolcite] = ACTIONS(4935), + [anon_sym_BSLASHfvolcite] = ACTIONS(4935), + [anon_sym_BSLASHftvolcite] = ACTIONS(4935), + [anon_sym_BSLASHsvolcite] = ACTIONS(4935), + [anon_sym_BSLASHSvolcite] = ACTIONS(4935), + [anon_sym_BSLASHtvolcite] = ACTIONS(4935), + [anon_sym_BSLASHTvolcite] = ACTIONS(4935), + [anon_sym_BSLASHavolcite] = ACTIONS(4935), + [anon_sym_BSLASHAvolcite] = ACTIONS(4935), + [anon_sym_BSLASHnotecite] = ACTIONS(4935), + [anon_sym_BSLASHNotecite] = ACTIONS(4935), + [anon_sym_BSLASHpnotecite] = ACTIONS(4935), + [anon_sym_BSLASHPnotecite] = ACTIONS(4935), + [anon_sym_BSLASHfnotecite] = ACTIONS(4935), + [anon_sym_BSLASHlabel] = ACTIONS(4935), + [anon_sym_BSLASHref] = ACTIONS(4935), + [anon_sym_BSLASHeqref] = ACTIONS(4935), + [anon_sym_BSLASHvref] = ACTIONS(4935), + [anon_sym_BSLASHVref] = ACTIONS(4935), + [anon_sym_BSLASHautoref] = ACTIONS(4935), + [anon_sym_BSLASHpageref] = ACTIONS(4935), + [anon_sym_BSLASHcref] = ACTIONS(4935), + [anon_sym_BSLASHCref] = ACTIONS(4935), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4933), + [anon_sym_BSLASHnamecref] = ACTIONS(4935), + [anon_sym_BSLASHnameCref] = ACTIONS(4935), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4935), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4935), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4935), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4935), + [anon_sym_BSLASHlabelcref] = ACTIONS(4935), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4935), + [anon_sym_BSLASHcrefrange] = ACTIONS(4935), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4933), + [anon_sym_BSLASHCrefrange] = ACTIONS(4935), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4933), + [anon_sym_BSLASHnewlabel] = ACTIONS(4935), + [anon_sym_BSLASHnewcommand] = ACTIONS(4935), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4935), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4935), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4933), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4935), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4933), + [anon_sym_BSLASHdef] = ACTIONS(4935), + [anon_sym_BSLASHlet] = ACTIONS(4935), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4935), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4935), + [anon_sym_BSLASHgls] = ACTIONS(4935), + [anon_sym_BSLASHGls] = ACTIONS(4935), + [anon_sym_BSLASHGLS] = ACTIONS(4935), + [anon_sym_BSLASHglspl] = ACTIONS(4935), + [anon_sym_BSLASHGlspl] = ACTIONS(4935), + [anon_sym_BSLASHGLSpl] = ACTIONS(4935), + [anon_sym_BSLASHglsdisp] = ACTIONS(4935), + [anon_sym_BSLASHglslink] = ACTIONS(4935), + [anon_sym_BSLASHglstext] = ACTIONS(4935), + [anon_sym_BSLASHGlstext] = ACTIONS(4935), + [anon_sym_BSLASHGLStext] = ACTIONS(4935), + [anon_sym_BSLASHglsfirst] = ACTIONS(4935), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4935), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4935), + [anon_sym_BSLASHglsplural] = ACTIONS(4935), + [anon_sym_BSLASHGlsplural] = ACTIONS(4935), + [anon_sym_BSLASHGLSplural] = ACTIONS(4935), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4935), + [anon_sym_BSLASHglsname] = ACTIONS(4935), + [anon_sym_BSLASHGlsname] = ACTIONS(4935), + [anon_sym_BSLASHGLSname] = ACTIONS(4935), + [anon_sym_BSLASHglssymbol] = ACTIONS(4935), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4935), + [anon_sym_BSLASHglsdesc] = ACTIONS(4935), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4935), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4935), + [anon_sym_BSLASHglsuseri] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4935), + [anon_sym_BSLASHglsuserii] = ACTIONS(4935), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4935), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4935), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4935), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4935), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4935), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4935), + [anon_sym_BSLASHglsuserv] = ACTIONS(4935), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4935), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4935), + [anon_sym_BSLASHglsuservi] = ACTIONS(4935), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4935), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4935), + [anon_sym_BSLASHnewacronym] = ACTIONS(4935), + [anon_sym_BSLASHacrshort] = ACTIONS(4935), + [anon_sym_BSLASHAcrshort] = ACTIONS(4935), + [anon_sym_BSLASHACRshort] = ACTIONS(4935), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4935), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4935), + [anon_sym_BSLASHacrlong] = ACTIONS(4935), + [anon_sym_BSLASHAcrlong] = ACTIONS(4935), + [anon_sym_BSLASHACRlong] = ACTIONS(4935), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4935), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4935), + [anon_sym_BSLASHacrfull] = ACTIONS(4935), + [anon_sym_BSLASHAcrfull] = ACTIONS(4935), + [anon_sym_BSLASHACRfull] = ACTIONS(4935), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4935), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4935), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4935), + [anon_sym_BSLASHacs] = ACTIONS(4935), + [anon_sym_BSLASHAcs] = ACTIONS(4935), + [anon_sym_BSLASHacsp] = ACTIONS(4935), + [anon_sym_BSLASHAcsp] = ACTIONS(4935), + [anon_sym_BSLASHacl] = ACTIONS(4935), + [anon_sym_BSLASHAcl] = ACTIONS(4935), + [anon_sym_BSLASHaclp] = ACTIONS(4935), + [anon_sym_BSLASHAclp] = ACTIONS(4935), + [anon_sym_BSLASHacf] = ACTIONS(4935), + [anon_sym_BSLASHAcf] = ACTIONS(4935), + [anon_sym_BSLASHacfp] = ACTIONS(4935), + [anon_sym_BSLASHAcfp] = ACTIONS(4935), + [anon_sym_BSLASHac] = ACTIONS(4935), + [anon_sym_BSLASHAc] = ACTIONS(4935), + [anon_sym_BSLASHacp] = ACTIONS(4935), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4935), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4935), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4935), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4935), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4935), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4935), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4935), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4935), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4935), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4935), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4935), + [anon_sym_BSLASHcolor] = ACTIONS(4935), + [anon_sym_BSLASHcolorbox] = ACTIONS(4935), + [anon_sym_BSLASHtextcolor] = ACTIONS(4935), + [anon_sym_BSLASHpagecolor] = ACTIONS(4935), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4935), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4935), + [anon_sym_BSLASHtext] = ACTIONS(4935), + [anon_sym_BSLASHintertext] = ACTIONS(4935), + [anon_sym_shortintertext] = ACTIONS(4935), + }, + [1308] = { [sym_command_name] = ACTIONS(4991), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -405708,19149 +391681,18935 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(4991), [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHtext] = ACTIONS(4991), + [anon_sym_BSLASHintertext] = ACTIONS(4991), + [anon_sym_shortintertext] = ACTIONS(4991), + }, + [1309] = { + [sym_command_name] = ACTIONS(5189), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_RPAREN] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_RBRACK] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5187), + [sym_word] = ACTIONS(5189), + [sym_placeholder] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_STAR] = ACTIONS(5189), + [anon_sym_SLASH] = ACTIONS(5189), + [anon_sym_CARET] = ACTIONS(5189), + [anon_sym__] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5189), + [anon_sym_GT] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_PIPE] = ACTIONS(5189), + [anon_sym_COLON] = ACTIONS(5189), + [anon_sym_SQUOTE] = ACTIONS(5189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), + [anon_sym_DOLLAR] = ACTIONS(5189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), + [anon_sym_BSLASHbegin] = ACTIONS(5189), + [anon_sym_BSLASHusepackage] = ACTIONS(5189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), + [anon_sym_BSLASHinclude] = ACTIONS(5189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), + [anon_sym_BSLASHinput] = ACTIONS(5189), + [anon_sym_BSLASHsubfile] = ACTIONS(5189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), + [anon_sym_BSLASHbibliography] = ACTIONS(5189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), + [anon_sym_BSLASHincludesvg] = ACTIONS(5189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), + [anon_sym_BSLASHimport] = ACTIONS(5189), + [anon_sym_BSLASHsubimport] = ACTIONS(5189), + [anon_sym_BSLASHinputfrom] = ACTIONS(5189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), + [anon_sym_BSLASHincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHcaption] = ACTIONS(5189), + [anon_sym_BSLASHcite] = ACTIONS(5189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCite] = ACTIONS(5189), + [anon_sym_BSLASHnocite] = ACTIONS(5189), + [anon_sym_BSLASHcitet] = ACTIONS(5189), + [anon_sym_BSLASHcitep] = ACTIONS(5189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteauthor] = ACTIONS(5189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitetitle] = ACTIONS(5189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteyear] = ACTIONS(5189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitedate] = ACTIONS(5189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteurl] = ACTIONS(5189), + [anon_sym_BSLASHfullcite] = ACTIONS(5189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), + [anon_sym_BSLASHcitealt] = ACTIONS(5189), + [anon_sym_BSLASHcitealp] = ACTIONS(5189), + [anon_sym_BSLASHcitetext] = ACTIONS(5189), + [anon_sym_BSLASHparencite] = ACTIONS(5189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHParencite] = ACTIONS(5189), + [anon_sym_BSLASHfootcite] = ACTIONS(5189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), + [anon_sym_BSLASHtextcite] = ACTIONS(5189), + [anon_sym_BSLASHTextcite] = ACTIONS(5189), + [anon_sym_BSLASHsmartcite] = ACTIONS(5189), + [anon_sym_BSLASHSmartcite] = ACTIONS(5189), + [anon_sym_BSLASHsupercite] = ACTIONS(5189), + [anon_sym_BSLASHautocite] = ACTIONS(5189), + [anon_sym_BSLASHAutocite] = ACTIONS(5189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHvolcite] = ACTIONS(5189), + [anon_sym_BSLASHVolcite] = ACTIONS(5189), + [anon_sym_BSLASHpvolcite] = ACTIONS(5189), + [anon_sym_BSLASHPvolcite] = ACTIONS(5189), + [anon_sym_BSLASHfvolcite] = ACTIONS(5189), + [anon_sym_BSLASHftvolcite] = ACTIONS(5189), + [anon_sym_BSLASHsvolcite] = ACTIONS(5189), + [anon_sym_BSLASHSvolcite] = ACTIONS(5189), + [anon_sym_BSLASHtvolcite] = ACTIONS(5189), + [anon_sym_BSLASHTvolcite] = ACTIONS(5189), + [anon_sym_BSLASHavolcite] = ACTIONS(5189), + [anon_sym_BSLASHAvolcite] = ACTIONS(5189), + [anon_sym_BSLASHnotecite] = ACTIONS(5189), + [anon_sym_BSLASHNotecite] = ACTIONS(5189), + [anon_sym_BSLASHpnotecite] = ACTIONS(5189), + [anon_sym_BSLASHPnotecite] = ACTIONS(5189), + [anon_sym_BSLASHfnotecite] = ACTIONS(5189), + [anon_sym_BSLASHlabel] = ACTIONS(5189), + [anon_sym_BSLASHref] = ACTIONS(5189), + [anon_sym_BSLASHeqref] = ACTIONS(5189), + [anon_sym_BSLASHvref] = ACTIONS(5189), + [anon_sym_BSLASHVref] = ACTIONS(5189), + [anon_sym_BSLASHautoref] = ACTIONS(5189), + [anon_sym_BSLASHpageref] = ACTIONS(5189), + [anon_sym_BSLASHcref] = ACTIONS(5189), + [anon_sym_BSLASHCref] = ACTIONS(5189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnameCref] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHlabelcref] = ACTIONS(5189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCrefrange] = ACTIONS(5189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnewlabel] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), + [anon_sym_BSLASHgls] = ACTIONS(5189), + [anon_sym_BSLASHGls] = ACTIONS(5189), + [anon_sym_BSLASHGLS] = ACTIONS(5189), + [anon_sym_BSLASHglspl] = ACTIONS(5189), + [anon_sym_BSLASHGlspl] = ACTIONS(5189), + [anon_sym_BSLASHGLSpl] = ACTIONS(5189), + [anon_sym_BSLASHglsdisp] = ACTIONS(5189), + [anon_sym_BSLASHglslink] = ACTIONS(5189), + [anon_sym_BSLASHglstext] = ACTIONS(5189), + [anon_sym_BSLASHGlstext] = ACTIONS(5189), + [anon_sym_BSLASHGLStext] = ACTIONS(5189), + [anon_sym_BSLASHglsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), + [anon_sym_BSLASHglsplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSplural] = ACTIONS(5189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHglsname] = ACTIONS(5189), + [anon_sym_BSLASHGlsname] = ACTIONS(5189), + [anon_sym_BSLASHGLSname] = ACTIONS(5189), + [anon_sym_BSLASHglssymbol] = ACTIONS(5189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), + [anon_sym_BSLASHglsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), + [anon_sym_BSLASHglsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), + [anon_sym_BSLASHglsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), + [anon_sym_BSLASHglsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), + [anon_sym_BSLASHglsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), + [anon_sym_BSLASHnewacronym] = ACTIONS(5189), + [anon_sym_BSLASHacrshort] = ACTIONS(5189), + [anon_sym_BSLASHAcrshort] = ACTIONS(5189), + [anon_sym_BSLASHACRshort] = ACTIONS(5189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), + [anon_sym_BSLASHacrlong] = ACTIONS(5189), + [anon_sym_BSLASHAcrlong] = ACTIONS(5189), + [anon_sym_BSLASHACRlong] = ACTIONS(5189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), + [anon_sym_BSLASHacrfull] = ACTIONS(5189), + [anon_sym_BSLASHAcrfull] = ACTIONS(5189), + [anon_sym_BSLASHACRfull] = ACTIONS(5189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), + [anon_sym_BSLASHacs] = ACTIONS(5189), + [anon_sym_BSLASHAcs] = ACTIONS(5189), + [anon_sym_BSLASHacsp] = ACTIONS(5189), + [anon_sym_BSLASHAcsp] = ACTIONS(5189), + [anon_sym_BSLASHacl] = ACTIONS(5189), + [anon_sym_BSLASHAcl] = ACTIONS(5189), + [anon_sym_BSLASHaclp] = ACTIONS(5189), + [anon_sym_BSLASHAclp] = ACTIONS(5189), + [anon_sym_BSLASHacf] = ACTIONS(5189), + [anon_sym_BSLASHAcf] = ACTIONS(5189), + [anon_sym_BSLASHacfp] = ACTIONS(5189), + [anon_sym_BSLASHAcfp] = ACTIONS(5189), + [anon_sym_BSLASHac] = ACTIONS(5189), + [anon_sym_BSLASHAc] = ACTIONS(5189), + [anon_sym_BSLASHacp] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), + [anon_sym_BSLASHcolor] = ACTIONS(5189), + [anon_sym_BSLASHcolorbox] = ACTIONS(5189), + [anon_sym_BSLASHtextcolor] = ACTIONS(5189), + [anon_sym_BSLASHpagecolor] = ACTIONS(5189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), + [anon_sym_BSLASHtext] = ACTIONS(5189), + [anon_sym_BSLASHintertext] = ACTIONS(5189), + [anon_sym_shortintertext] = ACTIONS(5189), }, - [1374] = { - [sym_command_name] = ACTIONS(4987), + [1310] = { + [sym_command_name] = ACTIONS(5193), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_EQ] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(4985), - [sym_word] = ACTIONS(4987), - [sym_placeholder] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym__] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), - [anon_sym_BSLASHbegin] = ACTIONS(4987), - [anon_sym_BSLASHusepackage] = ACTIONS(4987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), - [anon_sym_BSLASHinclude] = ACTIONS(4987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), - [anon_sym_BSLASHinput] = ACTIONS(4987), - [anon_sym_BSLASHsubfile] = ACTIONS(4987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), - [anon_sym_BSLASHbibliography] = ACTIONS(4987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), - [anon_sym_BSLASHincludesvg] = ACTIONS(4987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), - [anon_sym_BSLASHimport] = ACTIONS(4987), - [anon_sym_BSLASHsubimport] = ACTIONS(4987), - [anon_sym_BSLASHinputfrom] = ACTIONS(4987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), - [anon_sym_BSLASHincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHcaption] = ACTIONS(4987), - [anon_sym_BSLASHcite] = ACTIONS(4987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCite] = ACTIONS(4987), - [anon_sym_BSLASHnocite] = ACTIONS(4987), - [anon_sym_BSLASHcitet] = ACTIONS(4987), - [anon_sym_BSLASHcitep] = ACTIONS(4987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteauthor] = ACTIONS(4987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitetitle] = ACTIONS(4987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteyear] = ACTIONS(4987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitedate] = ACTIONS(4987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteurl] = ACTIONS(4987), - [anon_sym_BSLASHfullcite] = ACTIONS(4987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), - [anon_sym_BSLASHcitealt] = ACTIONS(4987), - [anon_sym_BSLASHcitealp] = ACTIONS(4987), - [anon_sym_BSLASHcitetext] = ACTIONS(4987), - [anon_sym_BSLASHparencite] = ACTIONS(4987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHParencite] = ACTIONS(4987), - [anon_sym_BSLASHfootcite] = ACTIONS(4987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), - [anon_sym_BSLASHtextcite] = ACTIONS(4987), - [anon_sym_BSLASHTextcite] = ACTIONS(4987), - [anon_sym_BSLASHsmartcite] = ACTIONS(4987), - [anon_sym_BSLASHSmartcite] = ACTIONS(4987), - [anon_sym_BSLASHsupercite] = ACTIONS(4987), - [anon_sym_BSLASHautocite] = ACTIONS(4987), - [anon_sym_BSLASHAutocite] = ACTIONS(4987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHvolcite] = ACTIONS(4987), - [anon_sym_BSLASHVolcite] = ACTIONS(4987), - [anon_sym_BSLASHpvolcite] = ACTIONS(4987), - [anon_sym_BSLASHPvolcite] = ACTIONS(4987), - [anon_sym_BSLASHfvolcite] = ACTIONS(4987), - [anon_sym_BSLASHftvolcite] = ACTIONS(4987), - [anon_sym_BSLASHsvolcite] = ACTIONS(4987), - [anon_sym_BSLASHSvolcite] = ACTIONS(4987), - [anon_sym_BSLASHtvolcite] = ACTIONS(4987), - [anon_sym_BSLASHTvolcite] = ACTIONS(4987), - [anon_sym_BSLASHavolcite] = ACTIONS(4987), - [anon_sym_BSLASHAvolcite] = ACTIONS(4987), - [anon_sym_BSLASHnotecite] = ACTIONS(4987), - [anon_sym_BSLASHNotecite] = ACTIONS(4987), - [anon_sym_BSLASHpnotecite] = ACTIONS(4987), - [anon_sym_BSLASHPnotecite] = ACTIONS(4987), - [anon_sym_BSLASHfnotecite] = ACTIONS(4987), - [anon_sym_BSLASHlabel] = ACTIONS(4987), - [anon_sym_BSLASHref] = ACTIONS(4987), - [anon_sym_BSLASHeqref] = ACTIONS(4987), - [anon_sym_BSLASHvref] = ACTIONS(4987), - [anon_sym_BSLASHVref] = ACTIONS(4987), - [anon_sym_BSLASHautoref] = ACTIONS(4987), - [anon_sym_BSLASHpageref] = ACTIONS(4987), - [anon_sym_BSLASHcref] = ACTIONS(4987), - [anon_sym_BSLASHCref] = ACTIONS(4987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnameCref] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHlabelcref] = ACTIONS(4987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCrefrange] = ACTIONS(4987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnewlabel] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdef] = ACTIONS(4987), - [anon_sym_BSLASHlet] = ACTIONS(4987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), - [anon_sym_BSLASHgls] = ACTIONS(4987), - [anon_sym_BSLASHGls] = ACTIONS(4987), - [anon_sym_BSLASHGLS] = ACTIONS(4987), - [anon_sym_BSLASHglspl] = ACTIONS(4987), - [anon_sym_BSLASHGlspl] = ACTIONS(4987), - [anon_sym_BSLASHGLSpl] = ACTIONS(4987), - [anon_sym_BSLASHglsdisp] = ACTIONS(4987), - [anon_sym_BSLASHglslink] = ACTIONS(4987), - [anon_sym_BSLASHglstext] = ACTIONS(4987), - [anon_sym_BSLASHGlstext] = ACTIONS(4987), - [anon_sym_BSLASHGLStext] = ACTIONS(4987), - [anon_sym_BSLASHglsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), - [anon_sym_BSLASHglsplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSplural] = ACTIONS(4987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHglsname] = ACTIONS(4987), - [anon_sym_BSLASHGlsname] = ACTIONS(4987), - [anon_sym_BSLASHGLSname] = ACTIONS(4987), - [anon_sym_BSLASHglssymbol] = ACTIONS(4987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), - [anon_sym_BSLASHglsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), - [anon_sym_BSLASHglsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), - [anon_sym_BSLASHglsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), - [anon_sym_BSLASHglsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), - [anon_sym_BSLASHglsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), - [anon_sym_BSLASHnewacronym] = ACTIONS(4987), - [anon_sym_BSLASHacrshort] = ACTIONS(4987), - [anon_sym_BSLASHAcrshort] = ACTIONS(4987), - [anon_sym_BSLASHACRshort] = ACTIONS(4987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), - [anon_sym_BSLASHacrlong] = ACTIONS(4987), - [anon_sym_BSLASHAcrlong] = ACTIONS(4987), - [anon_sym_BSLASHACRlong] = ACTIONS(4987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), - [anon_sym_BSLASHacrfull] = ACTIONS(4987), - [anon_sym_BSLASHAcrfull] = ACTIONS(4987), - [anon_sym_BSLASHACRfull] = ACTIONS(4987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), - [anon_sym_BSLASHacs] = ACTIONS(4987), - [anon_sym_BSLASHAcs] = ACTIONS(4987), - [anon_sym_BSLASHacsp] = ACTIONS(4987), - [anon_sym_BSLASHAcsp] = ACTIONS(4987), - [anon_sym_BSLASHacl] = ACTIONS(4987), - [anon_sym_BSLASHAcl] = ACTIONS(4987), - [anon_sym_BSLASHaclp] = ACTIONS(4987), - [anon_sym_BSLASHAclp] = ACTIONS(4987), - [anon_sym_BSLASHacf] = ACTIONS(4987), - [anon_sym_BSLASHAcf] = ACTIONS(4987), - [anon_sym_BSLASHacfp] = ACTIONS(4987), - [anon_sym_BSLASHAcfp] = ACTIONS(4987), - [anon_sym_BSLASHac] = ACTIONS(4987), - [anon_sym_BSLASHAc] = ACTIONS(4987), - [anon_sym_BSLASHacp] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), - [anon_sym_BSLASHcolor] = ACTIONS(4987), - [anon_sym_BSLASHcolorbox] = ACTIONS(4987), - [anon_sym_BSLASHtextcolor] = ACTIONS(4987), - [anon_sym_BSLASHpagecolor] = ACTIONS(4987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), - }, - [1375] = { - [sym_brack_group_text] = STATE(1413), - [sym_command_name] = ACTIONS(4797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4797), - [anon_sym_LPAREN] = ACTIONS(4795), - [anon_sym_RPAREN] = ACTIONS(4795), - [anon_sym_LBRACK] = ACTIONS(5443), - [anon_sym_RBRACK] = ACTIONS(4795), - [anon_sym_COMMA] = ACTIONS(4795), - [anon_sym_LBRACE] = ACTIONS(4795), - [anon_sym_RBRACE] = ACTIONS(4795), - [sym_word] = ACTIONS(4797), - [sym_placeholder] = ACTIONS(4795), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_CARET] = ACTIONS(4797), - [anon_sym__] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4797), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4795), - [anon_sym_DOLLAR] = ACTIONS(4797), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4795), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4795), - [anon_sym_BSLASHusepackage] = ACTIONS(4797), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4797), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4797), - [anon_sym_BSLASHinclude] = ACTIONS(4797), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4797), - [anon_sym_BSLASHinput] = ACTIONS(4797), - [anon_sym_BSLASHsubfile] = ACTIONS(4797), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4797), - [anon_sym_BSLASHbibliography] = ACTIONS(4797), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4797), - [anon_sym_BSLASHincludesvg] = ACTIONS(4797), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4797), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4797), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4797), - [anon_sym_BSLASHimport] = ACTIONS(4797), - [anon_sym_BSLASHsubimport] = ACTIONS(4797), - [anon_sym_BSLASHinputfrom] = ACTIONS(4797), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4797), - [anon_sym_BSLASHincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHcaption] = ACTIONS(4797), - [anon_sym_BSLASHcite] = ACTIONS(4797), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCite] = ACTIONS(4797), - [anon_sym_BSLASHnocite] = ACTIONS(4797), - [anon_sym_BSLASHcitet] = ACTIONS(4797), - [anon_sym_BSLASHcitep] = ACTIONS(4797), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteauthor] = ACTIONS(4797), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4797), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitetitle] = ACTIONS(4797), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteyear] = ACTIONS(4797), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitedate] = ACTIONS(4797), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteurl] = ACTIONS(4797), - [anon_sym_BSLASHfullcite] = ACTIONS(4797), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4797), - [anon_sym_BSLASHcitealt] = ACTIONS(4797), - [anon_sym_BSLASHcitealp] = ACTIONS(4797), - [anon_sym_BSLASHcitetext] = ACTIONS(4797), - [anon_sym_BSLASHparencite] = ACTIONS(4797), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHParencite] = ACTIONS(4797), - [anon_sym_BSLASHfootcite] = ACTIONS(4797), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4797), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4797), - [anon_sym_BSLASHtextcite] = ACTIONS(4797), - [anon_sym_BSLASHTextcite] = ACTIONS(4797), - [anon_sym_BSLASHsmartcite] = ACTIONS(4797), - [anon_sym_BSLASHSmartcite] = ACTIONS(4797), - [anon_sym_BSLASHsupercite] = ACTIONS(4797), - [anon_sym_BSLASHautocite] = ACTIONS(4797), - [anon_sym_BSLASHAutocite] = ACTIONS(4797), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHvolcite] = ACTIONS(4797), - [anon_sym_BSLASHVolcite] = ACTIONS(4797), - [anon_sym_BSLASHpvolcite] = ACTIONS(4797), - [anon_sym_BSLASHPvolcite] = ACTIONS(4797), - [anon_sym_BSLASHfvolcite] = ACTIONS(4797), - [anon_sym_BSLASHftvolcite] = ACTIONS(4797), - [anon_sym_BSLASHsvolcite] = ACTIONS(4797), - [anon_sym_BSLASHSvolcite] = ACTIONS(4797), - [anon_sym_BSLASHtvolcite] = ACTIONS(4797), - [anon_sym_BSLASHTvolcite] = ACTIONS(4797), - [anon_sym_BSLASHavolcite] = ACTIONS(4797), - [anon_sym_BSLASHAvolcite] = ACTIONS(4797), - [anon_sym_BSLASHnotecite] = ACTIONS(4797), - [anon_sym_BSLASHNotecite] = ACTIONS(4797), - [anon_sym_BSLASHpnotecite] = ACTIONS(4797), - [anon_sym_BSLASHPnotecite] = ACTIONS(4797), - [anon_sym_BSLASHfnotecite] = ACTIONS(4797), - [anon_sym_BSLASHlabel] = ACTIONS(4797), - [anon_sym_BSLASHref] = ACTIONS(4797), - [anon_sym_BSLASHeqref] = ACTIONS(4797), - [anon_sym_BSLASHvref] = ACTIONS(4797), - [anon_sym_BSLASHVref] = ACTIONS(4797), - [anon_sym_BSLASHautoref] = ACTIONS(4797), - [anon_sym_BSLASHpageref] = ACTIONS(4797), - [anon_sym_BSLASHcref] = ACTIONS(4797), - [anon_sym_BSLASHCref] = ACTIONS(4797), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnameCref] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHlabelcref] = ACTIONS(4797), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCrefrange] = ACTIONS(4797), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnewlabel] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4797), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4797), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4797), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4795), - [anon_sym_BSLASHdef] = ACTIONS(4797), - [anon_sym_BSLASHlet] = ACTIONS(4797), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4797), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4797), - [anon_sym_BSLASHgls] = ACTIONS(4797), - [anon_sym_BSLASHGls] = ACTIONS(4797), - [anon_sym_BSLASHGLS] = ACTIONS(4797), - [anon_sym_BSLASHglspl] = ACTIONS(4797), - [anon_sym_BSLASHGlspl] = ACTIONS(4797), - [anon_sym_BSLASHGLSpl] = ACTIONS(4797), - [anon_sym_BSLASHglsdisp] = ACTIONS(4797), - [anon_sym_BSLASHglslink] = ACTIONS(4797), - [anon_sym_BSLASHglstext] = ACTIONS(4797), - [anon_sym_BSLASHGlstext] = ACTIONS(4797), - [anon_sym_BSLASHGLStext] = ACTIONS(4797), - [anon_sym_BSLASHglsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4797), - [anon_sym_BSLASHglsplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSplural] = ACTIONS(4797), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHglsname] = ACTIONS(4797), - [anon_sym_BSLASHGlsname] = ACTIONS(4797), - [anon_sym_BSLASHGLSname] = ACTIONS(4797), - [anon_sym_BSLASHglssymbol] = ACTIONS(4797), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4797), - [anon_sym_BSLASHglsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4797), - [anon_sym_BSLASHglsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4797), - [anon_sym_BSLASHglsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4797), - [anon_sym_BSLASHglsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4797), - [anon_sym_BSLASHglsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4797), - [anon_sym_BSLASHnewacronym] = ACTIONS(4797), - [anon_sym_BSLASHacrshort] = ACTIONS(4797), - [anon_sym_BSLASHAcrshort] = ACTIONS(4797), - [anon_sym_BSLASHACRshort] = ACTIONS(4797), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4797), - [anon_sym_BSLASHacrlong] = ACTIONS(4797), - [anon_sym_BSLASHAcrlong] = ACTIONS(4797), - [anon_sym_BSLASHACRlong] = ACTIONS(4797), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4797), - [anon_sym_BSLASHacrfull] = ACTIONS(4797), - [anon_sym_BSLASHAcrfull] = ACTIONS(4797), - [anon_sym_BSLASHACRfull] = ACTIONS(4797), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4797), - [anon_sym_BSLASHacs] = ACTIONS(4797), - [anon_sym_BSLASHAcs] = ACTIONS(4797), - [anon_sym_BSLASHacsp] = ACTIONS(4797), - [anon_sym_BSLASHAcsp] = ACTIONS(4797), - [anon_sym_BSLASHacl] = ACTIONS(4797), - [anon_sym_BSLASHAcl] = ACTIONS(4797), - [anon_sym_BSLASHaclp] = ACTIONS(4797), - [anon_sym_BSLASHAclp] = ACTIONS(4797), - [anon_sym_BSLASHacf] = ACTIONS(4797), - [anon_sym_BSLASHAcf] = ACTIONS(4797), - [anon_sym_BSLASHacfp] = ACTIONS(4797), - [anon_sym_BSLASHAcfp] = ACTIONS(4797), - [anon_sym_BSLASHac] = ACTIONS(4797), - [anon_sym_BSLASHAc] = ACTIONS(4797), - [anon_sym_BSLASHacp] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4797), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4797), - [anon_sym_BSLASHcolor] = ACTIONS(4797), - [anon_sym_BSLASHcolorbox] = ACTIONS(4797), - [anon_sym_BSLASHtextcolor] = ACTIONS(4797), - [anon_sym_BSLASHpagecolor] = ACTIONS(4797), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4797), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4797), - }, - [1376] = { - [sym_command_name] = ACTIONS(5357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASHbegin] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), - }, - [1377] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASHbegin] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), - }, - [1378] = { - [sym_command_name] = ACTIONS(5367), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5367), - [anon_sym_LPAREN] = ACTIONS(5365), - [anon_sym_RPAREN] = ACTIONS(5365), - [anon_sym_LBRACK] = ACTIONS(5365), - [anon_sym_RBRACK] = ACTIONS(5365), - [anon_sym_COMMA] = ACTIONS(5365), - [anon_sym_EQ] = ACTIONS(5365), - [anon_sym_LBRACE] = ACTIONS(5365), - [sym_word] = ACTIONS(5367), - [sym_placeholder] = ACTIONS(5365), - [anon_sym_PLUS] = ACTIONS(5367), - [anon_sym_DASH] = ACTIONS(5367), - [anon_sym_STAR] = ACTIONS(5367), - [anon_sym_SLASH] = ACTIONS(5367), - [anon_sym_CARET] = ACTIONS(5367), - [anon_sym__] = ACTIONS(5367), - [anon_sym_LT] = ACTIONS(5367), - [anon_sym_GT] = ACTIONS(5367), - [anon_sym_BANG] = ACTIONS(5367), - [anon_sym_PIPE] = ACTIONS(5367), - [anon_sym_COLON] = ACTIONS(5367), - [anon_sym_SQUOTE] = ACTIONS(5367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5365), - [anon_sym_DOLLAR] = ACTIONS(5367), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5365), - [anon_sym_BSLASHbegin] = ACTIONS(5367), - [anon_sym_BSLASHusepackage] = ACTIONS(5367), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5367), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5367), - [anon_sym_BSLASHinclude] = ACTIONS(5367), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5367), - [anon_sym_BSLASHinput] = ACTIONS(5367), - [anon_sym_BSLASHsubfile] = ACTIONS(5367), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5367), - [anon_sym_BSLASHbibliography] = ACTIONS(5367), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5367), - [anon_sym_BSLASHincludesvg] = ACTIONS(5367), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5367), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5367), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5367), - [anon_sym_BSLASHimport] = ACTIONS(5367), - [anon_sym_BSLASHsubimport] = ACTIONS(5367), - [anon_sym_BSLASHinputfrom] = ACTIONS(5367), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5367), - [anon_sym_BSLASHincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHcaption] = ACTIONS(5367), - [anon_sym_BSLASHcite] = ACTIONS(5367), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCite] = ACTIONS(5367), - [anon_sym_BSLASHnocite] = ACTIONS(5367), - [anon_sym_BSLASHcitet] = ACTIONS(5367), - [anon_sym_BSLASHcitep] = ACTIONS(5367), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor] = ACTIONS(5367), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5367), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle] = ACTIONS(5367), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteyear] = ACTIONS(5367), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitedate] = ACTIONS(5367), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteurl] = ACTIONS(5367), - [anon_sym_BSLASHfullcite] = ACTIONS(5367), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5367), - [anon_sym_BSLASHcitealt] = ACTIONS(5367), - [anon_sym_BSLASHcitealp] = ACTIONS(5367), - [anon_sym_BSLASHcitetext] = ACTIONS(5367), - [anon_sym_BSLASHparencite] = ACTIONS(5367), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHParencite] = ACTIONS(5367), - [anon_sym_BSLASHfootcite] = ACTIONS(5367), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5367), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5367), - [anon_sym_BSLASHtextcite] = ACTIONS(5367), - [anon_sym_BSLASHTextcite] = ACTIONS(5367), - [anon_sym_BSLASHsmartcite] = ACTIONS(5367), - [anon_sym_BSLASHSmartcite] = ACTIONS(5367), - [anon_sym_BSLASHsupercite] = ACTIONS(5367), - [anon_sym_BSLASHautocite] = ACTIONS(5367), - [anon_sym_BSLASHAutocite] = ACTIONS(5367), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHvolcite] = ACTIONS(5367), - [anon_sym_BSLASHVolcite] = ACTIONS(5367), - [anon_sym_BSLASHpvolcite] = ACTIONS(5367), - [anon_sym_BSLASHPvolcite] = ACTIONS(5367), - [anon_sym_BSLASHfvolcite] = ACTIONS(5367), - [anon_sym_BSLASHftvolcite] = ACTIONS(5367), - [anon_sym_BSLASHsvolcite] = ACTIONS(5367), - [anon_sym_BSLASHSvolcite] = ACTIONS(5367), - [anon_sym_BSLASHtvolcite] = ACTIONS(5367), - [anon_sym_BSLASHTvolcite] = ACTIONS(5367), - [anon_sym_BSLASHavolcite] = ACTIONS(5367), - [anon_sym_BSLASHAvolcite] = ACTIONS(5367), - [anon_sym_BSLASHnotecite] = ACTIONS(5367), - [anon_sym_BSLASHNotecite] = ACTIONS(5367), - [anon_sym_BSLASHpnotecite] = ACTIONS(5367), - [anon_sym_BSLASHPnotecite] = ACTIONS(5367), - [anon_sym_BSLASHfnotecite] = ACTIONS(5367), - [anon_sym_BSLASHlabel] = ACTIONS(5367), - [anon_sym_BSLASHref] = ACTIONS(5367), - [anon_sym_BSLASHeqref] = ACTIONS(5367), - [anon_sym_BSLASHvref] = ACTIONS(5367), - [anon_sym_BSLASHVref] = ACTIONS(5367), - [anon_sym_BSLASHautoref] = ACTIONS(5367), - [anon_sym_BSLASHpageref] = ACTIONS(5367), - [anon_sym_BSLASHcref] = ACTIONS(5367), - [anon_sym_BSLASHCref] = ACTIONS(5367), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnameCref] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHlabelcref] = ACTIONS(5367), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange] = ACTIONS(5367), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnewlabel] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5367), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5367), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5367), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5365), - [anon_sym_BSLASHdef] = ACTIONS(5367), - [anon_sym_BSLASHlet] = ACTIONS(5367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5367), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5367), - [anon_sym_BSLASHgls] = ACTIONS(5367), - [anon_sym_BSLASHGls] = ACTIONS(5367), - [anon_sym_BSLASHGLS] = ACTIONS(5367), - [anon_sym_BSLASHglspl] = ACTIONS(5367), - [anon_sym_BSLASHGlspl] = ACTIONS(5367), - [anon_sym_BSLASHGLSpl] = ACTIONS(5367), - [anon_sym_BSLASHglsdisp] = ACTIONS(5367), - [anon_sym_BSLASHglslink] = ACTIONS(5367), - [anon_sym_BSLASHglstext] = ACTIONS(5367), - [anon_sym_BSLASHGlstext] = ACTIONS(5367), - [anon_sym_BSLASHGLStext] = ACTIONS(5367), - [anon_sym_BSLASHglsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5367), - [anon_sym_BSLASHglsplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSplural] = ACTIONS(5367), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHglsname] = ACTIONS(5367), - [anon_sym_BSLASHGlsname] = ACTIONS(5367), - [anon_sym_BSLASHGLSname] = ACTIONS(5367), - [anon_sym_BSLASHglssymbol] = ACTIONS(5367), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5367), - [anon_sym_BSLASHglsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5367), - [anon_sym_BSLASHglsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5367), - [anon_sym_BSLASHglsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5367), - [anon_sym_BSLASHglsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5367), - [anon_sym_BSLASHglsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5367), - [anon_sym_BSLASHnewacronym] = ACTIONS(5367), - [anon_sym_BSLASHacrshort] = ACTIONS(5367), - [anon_sym_BSLASHAcrshort] = ACTIONS(5367), - [anon_sym_BSLASHACRshort] = ACTIONS(5367), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5367), - [anon_sym_BSLASHacrlong] = ACTIONS(5367), - [anon_sym_BSLASHAcrlong] = ACTIONS(5367), - [anon_sym_BSLASHACRlong] = ACTIONS(5367), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5367), - [anon_sym_BSLASHacrfull] = ACTIONS(5367), - [anon_sym_BSLASHAcrfull] = ACTIONS(5367), - [anon_sym_BSLASHACRfull] = ACTIONS(5367), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5367), - [anon_sym_BSLASHacs] = ACTIONS(5367), - [anon_sym_BSLASHAcs] = ACTIONS(5367), - [anon_sym_BSLASHacsp] = ACTIONS(5367), - [anon_sym_BSLASHAcsp] = ACTIONS(5367), - [anon_sym_BSLASHacl] = ACTIONS(5367), - [anon_sym_BSLASHAcl] = ACTIONS(5367), - [anon_sym_BSLASHaclp] = ACTIONS(5367), - [anon_sym_BSLASHAclp] = ACTIONS(5367), - [anon_sym_BSLASHacf] = ACTIONS(5367), - [anon_sym_BSLASHAcf] = ACTIONS(5367), - [anon_sym_BSLASHacfp] = ACTIONS(5367), - [anon_sym_BSLASHAcfp] = ACTIONS(5367), - [anon_sym_BSLASHac] = ACTIONS(5367), - [anon_sym_BSLASHAc] = ACTIONS(5367), - [anon_sym_BSLASHacp] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5367), - [anon_sym_BSLASHcolor] = ACTIONS(5367), - [anon_sym_BSLASHcolorbox] = ACTIONS(5367), - [anon_sym_BSLASHtextcolor] = ACTIONS(5367), - [anon_sym_BSLASHpagecolor] = ACTIONS(5367), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5367), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5367), - }, - [1379] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASHbegin] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), + [anon_sym_BSLASHiffalse] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5191), + [anon_sym_RPAREN] = ACTIONS(5191), + [anon_sym_LBRACK] = ACTIONS(5191), + [anon_sym_RBRACK] = ACTIONS(5191), + [anon_sym_COMMA] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5191), + [sym_word] = ACTIONS(5193), + [sym_placeholder] = ACTIONS(5191), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5193), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_CARET] = ACTIONS(5193), + [anon_sym__] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_PIPE] = ACTIONS(5193), + [anon_sym_COLON] = ACTIONS(5193), + [anon_sym_SQUOTE] = ACTIONS(5193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), + [anon_sym_DOLLAR] = ACTIONS(5193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), + [anon_sym_BSLASHbegin] = ACTIONS(5193), + [anon_sym_BSLASHusepackage] = ACTIONS(5193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), + [anon_sym_BSLASHinclude] = ACTIONS(5193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), + [anon_sym_BSLASHinput] = ACTIONS(5193), + [anon_sym_BSLASHsubfile] = ACTIONS(5193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), + [anon_sym_BSLASHbibliography] = ACTIONS(5193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), + [anon_sym_BSLASHincludesvg] = ACTIONS(5193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), + [anon_sym_BSLASHimport] = ACTIONS(5193), + [anon_sym_BSLASHsubimport] = ACTIONS(5193), + [anon_sym_BSLASHinputfrom] = ACTIONS(5193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), + [anon_sym_BSLASHincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHcaption] = ACTIONS(5193), + [anon_sym_BSLASHcite] = ACTIONS(5193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCite] = ACTIONS(5193), + [anon_sym_BSLASHnocite] = ACTIONS(5193), + [anon_sym_BSLASHcitet] = ACTIONS(5193), + [anon_sym_BSLASHcitep] = ACTIONS(5193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteauthor] = ACTIONS(5193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitetitle] = ACTIONS(5193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteyear] = ACTIONS(5193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitedate] = ACTIONS(5193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteurl] = ACTIONS(5193), + [anon_sym_BSLASHfullcite] = ACTIONS(5193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), + [anon_sym_BSLASHcitealt] = ACTIONS(5193), + [anon_sym_BSLASHcitealp] = ACTIONS(5193), + [anon_sym_BSLASHcitetext] = ACTIONS(5193), + [anon_sym_BSLASHparencite] = ACTIONS(5193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHParencite] = ACTIONS(5193), + [anon_sym_BSLASHfootcite] = ACTIONS(5193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), + [anon_sym_BSLASHtextcite] = ACTIONS(5193), + [anon_sym_BSLASHTextcite] = ACTIONS(5193), + [anon_sym_BSLASHsmartcite] = ACTIONS(5193), + [anon_sym_BSLASHSmartcite] = ACTIONS(5193), + [anon_sym_BSLASHsupercite] = ACTIONS(5193), + [anon_sym_BSLASHautocite] = ACTIONS(5193), + [anon_sym_BSLASHAutocite] = ACTIONS(5193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHvolcite] = ACTIONS(5193), + [anon_sym_BSLASHVolcite] = ACTIONS(5193), + [anon_sym_BSLASHpvolcite] = ACTIONS(5193), + [anon_sym_BSLASHPvolcite] = ACTIONS(5193), + [anon_sym_BSLASHfvolcite] = ACTIONS(5193), + [anon_sym_BSLASHftvolcite] = ACTIONS(5193), + [anon_sym_BSLASHsvolcite] = ACTIONS(5193), + [anon_sym_BSLASHSvolcite] = ACTIONS(5193), + [anon_sym_BSLASHtvolcite] = ACTIONS(5193), + [anon_sym_BSLASHTvolcite] = ACTIONS(5193), + [anon_sym_BSLASHavolcite] = ACTIONS(5193), + [anon_sym_BSLASHAvolcite] = ACTIONS(5193), + [anon_sym_BSLASHnotecite] = ACTIONS(5193), + [anon_sym_BSLASHNotecite] = ACTIONS(5193), + [anon_sym_BSLASHpnotecite] = ACTIONS(5193), + [anon_sym_BSLASHPnotecite] = ACTIONS(5193), + [anon_sym_BSLASHfnotecite] = ACTIONS(5193), + [anon_sym_BSLASHlabel] = ACTIONS(5193), + [anon_sym_BSLASHref] = ACTIONS(5193), + [anon_sym_BSLASHeqref] = ACTIONS(5193), + [anon_sym_BSLASHvref] = ACTIONS(5193), + [anon_sym_BSLASHVref] = ACTIONS(5193), + [anon_sym_BSLASHautoref] = ACTIONS(5193), + [anon_sym_BSLASHpageref] = ACTIONS(5193), + [anon_sym_BSLASHcref] = ACTIONS(5193), + [anon_sym_BSLASHCref] = ACTIONS(5193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnameCref] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHlabelcref] = ACTIONS(5193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCrefrange] = ACTIONS(5193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnewlabel] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), + [anon_sym_BSLASHdef] = ACTIONS(5193), + [anon_sym_BSLASHlet] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), + [anon_sym_BSLASHgls] = ACTIONS(5193), + [anon_sym_BSLASHGls] = ACTIONS(5193), + [anon_sym_BSLASHGLS] = ACTIONS(5193), + [anon_sym_BSLASHglspl] = ACTIONS(5193), + [anon_sym_BSLASHGlspl] = ACTIONS(5193), + [anon_sym_BSLASHGLSpl] = ACTIONS(5193), + [anon_sym_BSLASHglsdisp] = ACTIONS(5193), + [anon_sym_BSLASHglslink] = ACTIONS(5193), + [anon_sym_BSLASHglstext] = ACTIONS(5193), + [anon_sym_BSLASHGlstext] = ACTIONS(5193), + [anon_sym_BSLASHGLStext] = ACTIONS(5193), + [anon_sym_BSLASHglsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), + [anon_sym_BSLASHglsplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSplural] = ACTIONS(5193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHglsname] = ACTIONS(5193), + [anon_sym_BSLASHGlsname] = ACTIONS(5193), + [anon_sym_BSLASHGLSname] = ACTIONS(5193), + [anon_sym_BSLASHglssymbol] = ACTIONS(5193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), + [anon_sym_BSLASHglsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), + [anon_sym_BSLASHglsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), + [anon_sym_BSLASHglsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), + [anon_sym_BSLASHglsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), + [anon_sym_BSLASHglsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), + [anon_sym_BSLASHnewacronym] = ACTIONS(5193), + [anon_sym_BSLASHacrshort] = ACTIONS(5193), + [anon_sym_BSLASHAcrshort] = ACTIONS(5193), + [anon_sym_BSLASHACRshort] = ACTIONS(5193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), + [anon_sym_BSLASHacrlong] = ACTIONS(5193), + [anon_sym_BSLASHAcrlong] = ACTIONS(5193), + [anon_sym_BSLASHACRlong] = ACTIONS(5193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), + [anon_sym_BSLASHacrfull] = ACTIONS(5193), + [anon_sym_BSLASHAcrfull] = ACTIONS(5193), + [anon_sym_BSLASHACRfull] = ACTIONS(5193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), + [anon_sym_BSLASHacs] = ACTIONS(5193), + [anon_sym_BSLASHAcs] = ACTIONS(5193), + [anon_sym_BSLASHacsp] = ACTIONS(5193), + [anon_sym_BSLASHAcsp] = ACTIONS(5193), + [anon_sym_BSLASHacl] = ACTIONS(5193), + [anon_sym_BSLASHAcl] = ACTIONS(5193), + [anon_sym_BSLASHaclp] = ACTIONS(5193), + [anon_sym_BSLASHAclp] = ACTIONS(5193), + [anon_sym_BSLASHacf] = ACTIONS(5193), + [anon_sym_BSLASHAcf] = ACTIONS(5193), + [anon_sym_BSLASHacfp] = ACTIONS(5193), + [anon_sym_BSLASHAcfp] = ACTIONS(5193), + [anon_sym_BSLASHac] = ACTIONS(5193), + [anon_sym_BSLASHAc] = ACTIONS(5193), + [anon_sym_BSLASHacp] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), + [anon_sym_BSLASHcolor] = ACTIONS(5193), + [anon_sym_BSLASHcolorbox] = ACTIONS(5193), + [anon_sym_BSLASHtextcolor] = ACTIONS(5193), + [anon_sym_BSLASHpagecolor] = ACTIONS(5193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [anon_sym_BSLASHtext] = ACTIONS(5193), + [anon_sym_BSLASHintertext] = ACTIONS(5193), + [anon_sym_shortintertext] = ACTIONS(5193), }, - [1380] = { - [sym_command_name] = ACTIONS(5029), + [1311] = { + [sym_command_name] = ACTIONS(5197), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASHbegin] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - }, - [1381] = { - [sym_command_name] = ACTIONS(5381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5381), - [anon_sym_LPAREN] = ACTIONS(5379), - [anon_sym_RPAREN] = ACTIONS(5379), - [anon_sym_LBRACK] = ACTIONS(5379), - [anon_sym_RBRACK] = ACTIONS(5379), - [anon_sym_COMMA] = ACTIONS(5379), - [anon_sym_EQ] = ACTIONS(5379), - [anon_sym_LBRACE] = ACTIONS(5379), - [sym_word] = ACTIONS(5381), - [sym_placeholder] = ACTIONS(5379), - [anon_sym_PLUS] = ACTIONS(5381), - [anon_sym_DASH] = ACTIONS(5381), - [anon_sym_STAR] = ACTIONS(5381), - [anon_sym_SLASH] = ACTIONS(5381), - [anon_sym_CARET] = ACTIONS(5381), - [anon_sym__] = ACTIONS(5381), - [anon_sym_LT] = ACTIONS(5381), - [anon_sym_GT] = ACTIONS(5381), - [anon_sym_BANG] = ACTIONS(5381), - [anon_sym_PIPE] = ACTIONS(5381), - [anon_sym_COLON] = ACTIONS(5381), - [anon_sym_SQUOTE] = ACTIONS(5381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5379), - [anon_sym_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5379), - [anon_sym_BSLASHbegin] = ACTIONS(5381), - [anon_sym_BSLASHusepackage] = ACTIONS(5381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5381), - [anon_sym_BSLASHinclude] = ACTIONS(5381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5381), - [anon_sym_BSLASHinput] = ACTIONS(5381), - [anon_sym_BSLASHsubfile] = ACTIONS(5381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5381), - [anon_sym_BSLASHbibliography] = ACTIONS(5381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5381), - [anon_sym_BSLASHincludesvg] = ACTIONS(5381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5381), - [anon_sym_BSLASHimport] = ACTIONS(5381), - [anon_sym_BSLASHsubimport] = ACTIONS(5381), - [anon_sym_BSLASHinputfrom] = ACTIONS(5381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5381), - [anon_sym_BSLASHincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHcaption] = ACTIONS(5381), - [anon_sym_BSLASHcite] = ACTIONS(5381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCite] = ACTIONS(5381), - [anon_sym_BSLASHnocite] = ACTIONS(5381), - [anon_sym_BSLASHcitet] = ACTIONS(5381), - [anon_sym_BSLASHcitep] = ACTIONS(5381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteyear] = ACTIONS(5381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitedate] = ACTIONS(5381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteurl] = ACTIONS(5381), - [anon_sym_BSLASHfullcite] = ACTIONS(5381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5381), - [anon_sym_BSLASHcitealt] = ACTIONS(5381), - [anon_sym_BSLASHcitealp] = ACTIONS(5381), - [anon_sym_BSLASHcitetext] = ACTIONS(5381), - [anon_sym_BSLASHparencite] = ACTIONS(5381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHParencite] = ACTIONS(5381), - [anon_sym_BSLASHfootcite] = ACTIONS(5381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5381), - [anon_sym_BSLASHtextcite] = ACTIONS(5381), - [anon_sym_BSLASHTextcite] = ACTIONS(5381), - [anon_sym_BSLASHsmartcite] = ACTIONS(5381), - [anon_sym_BSLASHSmartcite] = ACTIONS(5381), - [anon_sym_BSLASHsupercite] = ACTIONS(5381), - [anon_sym_BSLASHautocite] = ACTIONS(5381), - [anon_sym_BSLASHAutocite] = ACTIONS(5381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHvolcite] = ACTIONS(5381), - [anon_sym_BSLASHVolcite] = ACTIONS(5381), - [anon_sym_BSLASHpvolcite] = ACTIONS(5381), - [anon_sym_BSLASHPvolcite] = ACTIONS(5381), - [anon_sym_BSLASHfvolcite] = ACTIONS(5381), - [anon_sym_BSLASHftvolcite] = ACTIONS(5381), - [anon_sym_BSLASHsvolcite] = ACTIONS(5381), - [anon_sym_BSLASHSvolcite] = ACTIONS(5381), - [anon_sym_BSLASHtvolcite] = ACTIONS(5381), - [anon_sym_BSLASHTvolcite] = ACTIONS(5381), - [anon_sym_BSLASHavolcite] = ACTIONS(5381), - [anon_sym_BSLASHAvolcite] = ACTIONS(5381), - [anon_sym_BSLASHnotecite] = ACTIONS(5381), - [anon_sym_BSLASHNotecite] = ACTIONS(5381), - [anon_sym_BSLASHpnotecite] = ACTIONS(5381), - [anon_sym_BSLASHPnotecite] = ACTIONS(5381), - [anon_sym_BSLASHfnotecite] = ACTIONS(5381), - [anon_sym_BSLASHlabel] = ACTIONS(5381), - [anon_sym_BSLASHref] = ACTIONS(5381), - [anon_sym_BSLASHeqref] = ACTIONS(5381), - [anon_sym_BSLASHvref] = ACTIONS(5381), - [anon_sym_BSLASHVref] = ACTIONS(5381), - [anon_sym_BSLASHautoref] = ACTIONS(5381), - [anon_sym_BSLASHpageref] = ACTIONS(5381), - [anon_sym_BSLASHcref] = ACTIONS(5381), - [anon_sym_BSLASHCref] = ACTIONS(5381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnameCref] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHlabelcref] = ACTIONS(5381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnewlabel] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5379), - [anon_sym_BSLASHdef] = ACTIONS(5381), - [anon_sym_BSLASHlet] = ACTIONS(5381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5381), - [anon_sym_BSLASHgls] = ACTIONS(5381), - [anon_sym_BSLASHGls] = ACTIONS(5381), - [anon_sym_BSLASHGLS] = ACTIONS(5381), - [anon_sym_BSLASHglspl] = ACTIONS(5381), - [anon_sym_BSLASHGlspl] = ACTIONS(5381), - [anon_sym_BSLASHGLSpl] = ACTIONS(5381), - [anon_sym_BSLASHglsdisp] = ACTIONS(5381), - [anon_sym_BSLASHglslink] = ACTIONS(5381), - [anon_sym_BSLASHglstext] = ACTIONS(5381), - [anon_sym_BSLASHGlstext] = ACTIONS(5381), - [anon_sym_BSLASHGLStext] = ACTIONS(5381), - [anon_sym_BSLASHglsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5381), - [anon_sym_BSLASHglsplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSplural] = ACTIONS(5381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHglsname] = ACTIONS(5381), - [anon_sym_BSLASHGlsname] = ACTIONS(5381), - [anon_sym_BSLASHGLSname] = ACTIONS(5381), - [anon_sym_BSLASHglssymbol] = ACTIONS(5381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5381), - [anon_sym_BSLASHglsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5381), - [anon_sym_BSLASHglsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5381), - [anon_sym_BSLASHglsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5381), - [anon_sym_BSLASHglsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5381), - [anon_sym_BSLASHglsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5381), - [anon_sym_BSLASHnewacronym] = ACTIONS(5381), - [anon_sym_BSLASHacrshort] = ACTIONS(5381), - [anon_sym_BSLASHAcrshort] = ACTIONS(5381), - [anon_sym_BSLASHACRshort] = ACTIONS(5381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5381), - [anon_sym_BSLASHacrlong] = ACTIONS(5381), - [anon_sym_BSLASHAcrlong] = ACTIONS(5381), - [anon_sym_BSLASHACRlong] = ACTIONS(5381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5381), - [anon_sym_BSLASHacrfull] = ACTIONS(5381), - [anon_sym_BSLASHAcrfull] = ACTIONS(5381), - [anon_sym_BSLASHACRfull] = ACTIONS(5381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5381), - [anon_sym_BSLASHacs] = ACTIONS(5381), - [anon_sym_BSLASHAcs] = ACTIONS(5381), - [anon_sym_BSLASHacsp] = ACTIONS(5381), - [anon_sym_BSLASHAcsp] = ACTIONS(5381), - [anon_sym_BSLASHacl] = ACTIONS(5381), - [anon_sym_BSLASHAcl] = ACTIONS(5381), - [anon_sym_BSLASHaclp] = ACTIONS(5381), - [anon_sym_BSLASHAclp] = ACTIONS(5381), - [anon_sym_BSLASHacf] = ACTIONS(5381), - [anon_sym_BSLASHAcf] = ACTIONS(5381), - [anon_sym_BSLASHacfp] = ACTIONS(5381), - [anon_sym_BSLASHAcfp] = ACTIONS(5381), - [anon_sym_BSLASHac] = ACTIONS(5381), - [anon_sym_BSLASHAc] = ACTIONS(5381), - [anon_sym_BSLASHacp] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5381), - [anon_sym_BSLASHcolor] = ACTIONS(5381), - [anon_sym_BSLASHcolorbox] = ACTIONS(5381), - [anon_sym_BSLASHtextcolor] = ACTIONS(5381), - [anon_sym_BSLASHpagecolor] = ACTIONS(5381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5381), - }, - [1382] = { - [sym_command_name] = ACTIONS(5295), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5295), - [anon_sym_LPAREN] = ACTIONS(5293), - [anon_sym_RPAREN] = ACTIONS(5293), - [anon_sym_LBRACK] = ACTIONS(5293), - [anon_sym_RBRACK] = ACTIONS(5293), - [anon_sym_COMMA] = ACTIONS(5293), - [anon_sym_EQ] = ACTIONS(5293), - [anon_sym_LBRACE] = ACTIONS(5293), - [sym_word] = ACTIONS(5295), - [sym_placeholder] = ACTIONS(5293), - [anon_sym_PLUS] = ACTIONS(5295), - [anon_sym_DASH] = ACTIONS(5295), - [anon_sym_STAR] = ACTIONS(5295), - [anon_sym_SLASH] = ACTIONS(5295), - [anon_sym_CARET] = ACTIONS(5295), - [anon_sym__] = ACTIONS(5295), - [anon_sym_LT] = ACTIONS(5295), - [anon_sym_GT] = ACTIONS(5295), - [anon_sym_BANG] = ACTIONS(5295), - [anon_sym_PIPE] = ACTIONS(5295), - [anon_sym_COLON] = ACTIONS(5295), - [anon_sym_SQUOTE] = ACTIONS(5295), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5293), - [anon_sym_DOLLAR] = ACTIONS(5295), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5293), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5293), - [anon_sym_BSLASHbegin] = ACTIONS(5295), - [anon_sym_BSLASHusepackage] = ACTIONS(5295), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5295), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5295), - [anon_sym_BSLASHinclude] = ACTIONS(5295), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5295), - [anon_sym_BSLASHinput] = ACTIONS(5295), - [anon_sym_BSLASHsubfile] = ACTIONS(5295), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5295), - [anon_sym_BSLASHbibliography] = ACTIONS(5295), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5295), - [anon_sym_BSLASHincludesvg] = ACTIONS(5295), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5295), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5295), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5295), - [anon_sym_BSLASHimport] = ACTIONS(5295), - [anon_sym_BSLASHsubimport] = ACTIONS(5295), - [anon_sym_BSLASHinputfrom] = ACTIONS(5295), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5295), - [anon_sym_BSLASHincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5295), - [anon_sym_BSLASHcaption] = ACTIONS(5295), - [anon_sym_BSLASHcite] = ACTIONS(5295), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCite] = ACTIONS(5295), - [anon_sym_BSLASHnocite] = ACTIONS(5295), - [anon_sym_BSLASHcitet] = ACTIONS(5295), - [anon_sym_BSLASHcitep] = ACTIONS(5295), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteauthor] = ACTIONS(5295), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5295), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitetitle] = ACTIONS(5295), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteyear] = ACTIONS(5295), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5293), - [anon_sym_BSLASHcitedate] = ACTIONS(5295), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5293), - [anon_sym_BSLASHciteurl] = ACTIONS(5295), - [anon_sym_BSLASHfullcite] = ACTIONS(5295), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5295), - [anon_sym_BSLASHcitealt] = ACTIONS(5295), - [anon_sym_BSLASHcitealp] = ACTIONS(5295), - [anon_sym_BSLASHcitetext] = ACTIONS(5295), - [anon_sym_BSLASHparencite] = ACTIONS(5295), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHParencite] = ACTIONS(5295), - [anon_sym_BSLASHfootcite] = ACTIONS(5295), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5295), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5295), - [anon_sym_BSLASHtextcite] = ACTIONS(5295), - [anon_sym_BSLASHTextcite] = ACTIONS(5295), - [anon_sym_BSLASHsmartcite] = ACTIONS(5295), - [anon_sym_BSLASHSmartcite] = ACTIONS(5295), - [anon_sym_BSLASHsupercite] = ACTIONS(5295), - [anon_sym_BSLASHautocite] = ACTIONS(5295), - [anon_sym_BSLASHAutocite] = ACTIONS(5295), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5293), - [anon_sym_BSLASHvolcite] = ACTIONS(5295), - [anon_sym_BSLASHVolcite] = ACTIONS(5295), - [anon_sym_BSLASHpvolcite] = ACTIONS(5295), - [anon_sym_BSLASHPvolcite] = ACTIONS(5295), - [anon_sym_BSLASHfvolcite] = ACTIONS(5295), - [anon_sym_BSLASHftvolcite] = ACTIONS(5295), - [anon_sym_BSLASHsvolcite] = ACTIONS(5295), - [anon_sym_BSLASHSvolcite] = ACTIONS(5295), - [anon_sym_BSLASHtvolcite] = ACTIONS(5295), - [anon_sym_BSLASHTvolcite] = ACTIONS(5295), - [anon_sym_BSLASHavolcite] = ACTIONS(5295), - [anon_sym_BSLASHAvolcite] = ACTIONS(5295), - [anon_sym_BSLASHnotecite] = ACTIONS(5295), - [anon_sym_BSLASHNotecite] = ACTIONS(5295), - [anon_sym_BSLASHpnotecite] = ACTIONS(5295), - [anon_sym_BSLASHPnotecite] = ACTIONS(5295), - [anon_sym_BSLASHfnotecite] = ACTIONS(5295), - [anon_sym_BSLASHlabel] = ACTIONS(5295), - [anon_sym_BSLASHref] = ACTIONS(5295), - [anon_sym_BSLASHeqref] = ACTIONS(5295), - [anon_sym_BSLASHvref] = ACTIONS(5295), - [anon_sym_BSLASHVref] = ACTIONS(5295), - [anon_sym_BSLASHautoref] = ACTIONS(5295), - [anon_sym_BSLASHpageref] = ACTIONS(5295), - [anon_sym_BSLASHcref] = ACTIONS(5295), - [anon_sym_BSLASHCref] = ACTIONS(5295), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnameCref] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5295), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5295), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5295), - [anon_sym_BSLASHlabelcref] = ACTIONS(5295), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange] = ACTIONS(5295), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHCrefrange] = ACTIONS(5295), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5293), - [anon_sym_BSLASHnewlabel] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand] = ACTIONS(5295), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5295), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5295), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5293), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5295), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5293), - [anon_sym_BSLASHdef] = ACTIONS(5295), - [anon_sym_BSLASHlet] = ACTIONS(5295), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5295), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5295), - [anon_sym_BSLASHgls] = ACTIONS(5295), - [anon_sym_BSLASHGls] = ACTIONS(5295), - [anon_sym_BSLASHGLS] = ACTIONS(5295), - [anon_sym_BSLASHglspl] = ACTIONS(5295), - [anon_sym_BSLASHGlspl] = ACTIONS(5295), - [anon_sym_BSLASHGLSpl] = ACTIONS(5295), - [anon_sym_BSLASHglsdisp] = ACTIONS(5295), - [anon_sym_BSLASHglslink] = ACTIONS(5295), - [anon_sym_BSLASHglstext] = ACTIONS(5295), - [anon_sym_BSLASHGlstext] = ACTIONS(5295), - [anon_sym_BSLASHGLStext] = ACTIONS(5295), - [anon_sym_BSLASHglsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5295), - [anon_sym_BSLASHglsplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSplural] = ACTIONS(5295), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5295), - [anon_sym_BSLASHglsname] = ACTIONS(5295), - [anon_sym_BSLASHGlsname] = ACTIONS(5295), - [anon_sym_BSLASHGLSname] = ACTIONS(5295), - [anon_sym_BSLASHglssymbol] = ACTIONS(5295), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5295), - [anon_sym_BSLASHglsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5295), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5295), - [anon_sym_BSLASHglsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5295), - [anon_sym_BSLASHglsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5295), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5295), - [anon_sym_BSLASHglsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5295), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5295), - [anon_sym_BSLASHglsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5295), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5295), - [anon_sym_BSLASHnewacronym] = ACTIONS(5295), - [anon_sym_BSLASHacrshort] = ACTIONS(5295), - [anon_sym_BSLASHAcrshort] = ACTIONS(5295), - [anon_sym_BSLASHACRshort] = ACTIONS(5295), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5295), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5295), - [anon_sym_BSLASHacrlong] = ACTIONS(5295), - [anon_sym_BSLASHAcrlong] = ACTIONS(5295), - [anon_sym_BSLASHACRlong] = ACTIONS(5295), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5295), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5295), - [anon_sym_BSLASHacrfull] = ACTIONS(5295), - [anon_sym_BSLASHAcrfull] = ACTIONS(5295), - [anon_sym_BSLASHACRfull] = ACTIONS(5295), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5295), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5295), - [anon_sym_BSLASHacs] = ACTIONS(5295), - [anon_sym_BSLASHAcs] = ACTIONS(5295), - [anon_sym_BSLASHacsp] = ACTIONS(5295), - [anon_sym_BSLASHAcsp] = ACTIONS(5295), - [anon_sym_BSLASHacl] = ACTIONS(5295), - [anon_sym_BSLASHAcl] = ACTIONS(5295), - [anon_sym_BSLASHaclp] = ACTIONS(5295), - [anon_sym_BSLASHAclp] = ACTIONS(5295), - [anon_sym_BSLASHacf] = ACTIONS(5295), - [anon_sym_BSLASHAcf] = ACTIONS(5295), - [anon_sym_BSLASHacfp] = ACTIONS(5295), - [anon_sym_BSLASHAcfp] = ACTIONS(5295), - [anon_sym_BSLASHac] = ACTIONS(5295), - [anon_sym_BSLASHAc] = ACTIONS(5295), - [anon_sym_BSLASHacp] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5295), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5295), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5295), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5295), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5295), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5295), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5295), - [anon_sym_BSLASHcolor] = ACTIONS(5295), - [anon_sym_BSLASHcolorbox] = ACTIONS(5295), - [anon_sym_BSLASHtextcolor] = ACTIONS(5295), - [anon_sym_BSLASHpagecolor] = ACTIONS(5295), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5295), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5295), - }, - [1383] = { - [sym_command_name] = ACTIONS(5291), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5291), - [anon_sym_LPAREN] = ACTIONS(5289), - [anon_sym_RPAREN] = ACTIONS(5289), - [anon_sym_LBRACK] = ACTIONS(5289), - [anon_sym_RBRACK] = ACTIONS(5289), - [anon_sym_COMMA] = ACTIONS(5289), - [anon_sym_EQ] = ACTIONS(5289), - [anon_sym_LBRACE] = ACTIONS(5289), - [sym_word] = ACTIONS(5291), - [sym_placeholder] = ACTIONS(5289), - [anon_sym_PLUS] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_SLASH] = ACTIONS(5291), - [anon_sym_CARET] = ACTIONS(5291), - [anon_sym__] = ACTIONS(5291), - [anon_sym_LT] = ACTIONS(5291), - [anon_sym_GT] = ACTIONS(5291), - [anon_sym_BANG] = ACTIONS(5291), - [anon_sym_PIPE] = ACTIONS(5291), - [anon_sym_COLON] = ACTIONS(5291), - [anon_sym_SQUOTE] = ACTIONS(5291), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5289), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5289), - [anon_sym_BSLASHbegin] = ACTIONS(5291), - [anon_sym_BSLASHusepackage] = ACTIONS(5291), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5291), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5291), - [anon_sym_BSLASHinclude] = ACTIONS(5291), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5291), - [anon_sym_BSLASHinput] = ACTIONS(5291), - [anon_sym_BSLASHsubfile] = ACTIONS(5291), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5291), - [anon_sym_BSLASHbibliography] = ACTIONS(5291), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5291), - [anon_sym_BSLASHincludesvg] = ACTIONS(5291), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5291), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5291), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5291), - [anon_sym_BSLASHimport] = ACTIONS(5291), - [anon_sym_BSLASHsubimport] = ACTIONS(5291), - [anon_sym_BSLASHinputfrom] = ACTIONS(5291), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5291), - [anon_sym_BSLASHincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5291), - [anon_sym_BSLASHcaption] = ACTIONS(5291), - [anon_sym_BSLASHcite] = ACTIONS(5291), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCite] = ACTIONS(5291), - [anon_sym_BSLASHnocite] = ACTIONS(5291), - [anon_sym_BSLASHcitet] = ACTIONS(5291), - [anon_sym_BSLASHcitep] = ACTIONS(5291), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteauthor] = ACTIONS(5291), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5291), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitetitle] = ACTIONS(5291), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteyear] = ACTIONS(5291), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5289), - [anon_sym_BSLASHcitedate] = ACTIONS(5291), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5289), - [anon_sym_BSLASHciteurl] = ACTIONS(5291), - [anon_sym_BSLASHfullcite] = ACTIONS(5291), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5291), - [anon_sym_BSLASHcitealt] = ACTIONS(5291), - [anon_sym_BSLASHcitealp] = ACTIONS(5291), - [anon_sym_BSLASHcitetext] = ACTIONS(5291), - [anon_sym_BSLASHparencite] = ACTIONS(5291), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHParencite] = ACTIONS(5291), - [anon_sym_BSLASHfootcite] = ACTIONS(5291), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5291), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5291), - [anon_sym_BSLASHtextcite] = ACTIONS(5291), - [anon_sym_BSLASHTextcite] = ACTIONS(5291), - [anon_sym_BSLASHsmartcite] = ACTIONS(5291), - [anon_sym_BSLASHSmartcite] = ACTIONS(5291), - [anon_sym_BSLASHsupercite] = ACTIONS(5291), - [anon_sym_BSLASHautocite] = ACTIONS(5291), - [anon_sym_BSLASHAutocite] = ACTIONS(5291), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5289), - [anon_sym_BSLASHvolcite] = ACTIONS(5291), - [anon_sym_BSLASHVolcite] = ACTIONS(5291), - [anon_sym_BSLASHpvolcite] = ACTIONS(5291), - [anon_sym_BSLASHPvolcite] = ACTIONS(5291), - [anon_sym_BSLASHfvolcite] = ACTIONS(5291), - [anon_sym_BSLASHftvolcite] = ACTIONS(5291), - [anon_sym_BSLASHsvolcite] = ACTIONS(5291), - [anon_sym_BSLASHSvolcite] = ACTIONS(5291), - [anon_sym_BSLASHtvolcite] = ACTIONS(5291), - [anon_sym_BSLASHTvolcite] = ACTIONS(5291), - [anon_sym_BSLASHavolcite] = ACTIONS(5291), - [anon_sym_BSLASHAvolcite] = ACTIONS(5291), - [anon_sym_BSLASHnotecite] = ACTIONS(5291), - [anon_sym_BSLASHNotecite] = ACTIONS(5291), - [anon_sym_BSLASHpnotecite] = ACTIONS(5291), - [anon_sym_BSLASHPnotecite] = ACTIONS(5291), - [anon_sym_BSLASHfnotecite] = ACTIONS(5291), - [anon_sym_BSLASHlabel] = ACTIONS(5291), - [anon_sym_BSLASHref] = ACTIONS(5291), - [anon_sym_BSLASHeqref] = ACTIONS(5291), - [anon_sym_BSLASHvref] = ACTIONS(5291), - [anon_sym_BSLASHVref] = ACTIONS(5291), - [anon_sym_BSLASHautoref] = ACTIONS(5291), - [anon_sym_BSLASHpageref] = ACTIONS(5291), - [anon_sym_BSLASHcref] = ACTIONS(5291), - [anon_sym_BSLASHCref] = ACTIONS(5291), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnameCref] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5291), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5291), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5291), - [anon_sym_BSLASHlabelcref] = ACTIONS(5291), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange] = ACTIONS(5291), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHCrefrange] = ACTIONS(5291), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5289), - [anon_sym_BSLASHnewlabel] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand] = ACTIONS(5291), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5291), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5291), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5289), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5291), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5289), - [anon_sym_BSLASHdef] = ACTIONS(5291), - [anon_sym_BSLASHlet] = ACTIONS(5291), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5291), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5291), - [anon_sym_BSLASHgls] = ACTIONS(5291), - [anon_sym_BSLASHGls] = ACTIONS(5291), - [anon_sym_BSLASHGLS] = ACTIONS(5291), - [anon_sym_BSLASHglspl] = ACTIONS(5291), - [anon_sym_BSLASHGlspl] = ACTIONS(5291), - [anon_sym_BSLASHGLSpl] = ACTIONS(5291), - [anon_sym_BSLASHglsdisp] = ACTIONS(5291), - [anon_sym_BSLASHglslink] = ACTIONS(5291), - [anon_sym_BSLASHglstext] = ACTIONS(5291), - [anon_sym_BSLASHGlstext] = ACTIONS(5291), - [anon_sym_BSLASHGLStext] = ACTIONS(5291), - [anon_sym_BSLASHglsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5291), - [anon_sym_BSLASHglsplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSplural] = ACTIONS(5291), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5291), - [anon_sym_BSLASHglsname] = ACTIONS(5291), - [anon_sym_BSLASHGlsname] = ACTIONS(5291), - [anon_sym_BSLASHGLSname] = ACTIONS(5291), - [anon_sym_BSLASHglssymbol] = ACTIONS(5291), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5291), - [anon_sym_BSLASHglsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5291), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5291), - [anon_sym_BSLASHglsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5291), - [anon_sym_BSLASHglsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5291), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5291), - [anon_sym_BSLASHglsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5291), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5291), - [anon_sym_BSLASHglsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5291), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5291), - [anon_sym_BSLASHnewacronym] = ACTIONS(5291), - [anon_sym_BSLASHacrshort] = ACTIONS(5291), - [anon_sym_BSLASHAcrshort] = ACTIONS(5291), - [anon_sym_BSLASHACRshort] = ACTIONS(5291), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5291), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5291), - [anon_sym_BSLASHacrlong] = ACTIONS(5291), - [anon_sym_BSLASHAcrlong] = ACTIONS(5291), - [anon_sym_BSLASHACRlong] = ACTIONS(5291), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5291), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5291), - [anon_sym_BSLASHacrfull] = ACTIONS(5291), - [anon_sym_BSLASHAcrfull] = ACTIONS(5291), - [anon_sym_BSLASHACRfull] = ACTIONS(5291), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5291), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5291), - [anon_sym_BSLASHacs] = ACTIONS(5291), - [anon_sym_BSLASHAcs] = ACTIONS(5291), - [anon_sym_BSLASHacsp] = ACTIONS(5291), - [anon_sym_BSLASHAcsp] = ACTIONS(5291), - [anon_sym_BSLASHacl] = ACTIONS(5291), - [anon_sym_BSLASHAcl] = ACTIONS(5291), - [anon_sym_BSLASHaclp] = ACTIONS(5291), - [anon_sym_BSLASHAclp] = ACTIONS(5291), - [anon_sym_BSLASHacf] = ACTIONS(5291), - [anon_sym_BSLASHAcf] = ACTIONS(5291), - [anon_sym_BSLASHacfp] = ACTIONS(5291), - [anon_sym_BSLASHAcfp] = ACTIONS(5291), - [anon_sym_BSLASHac] = ACTIONS(5291), - [anon_sym_BSLASHAc] = ACTIONS(5291), - [anon_sym_BSLASHacp] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5291), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5291), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5291), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5291), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5291), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5291), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5291), - [anon_sym_BSLASHcolor] = ACTIONS(5291), - [anon_sym_BSLASHcolorbox] = ACTIONS(5291), - [anon_sym_BSLASHtextcolor] = ACTIONS(5291), - [anon_sym_BSLASHpagecolor] = ACTIONS(5291), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5291), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5291), - }, - [1384] = { - [sym_command_name] = ACTIONS(5287), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5287), - [anon_sym_LPAREN] = ACTIONS(5285), - [anon_sym_RPAREN] = ACTIONS(5285), - [anon_sym_LBRACK] = ACTIONS(5285), - [anon_sym_RBRACK] = ACTIONS(5285), - [anon_sym_COMMA] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(5285), - [anon_sym_LBRACE] = ACTIONS(5285), - [sym_word] = ACTIONS(5287), - [sym_placeholder] = ACTIONS(5285), - [anon_sym_PLUS] = ACTIONS(5287), - [anon_sym_DASH] = ACTIONS(5287), - [anon_sym_STAR] = ACTIONS(5287), - [anon_sym_SLASH] = ACTIONS(5287), - [anon_sym_CARET] = ACTIONS(5287), - [anon_sym__] = ACTIONS(5287), - [anon_sym_LT] = ACTIONS(5287), - [anon_sym_GT] = ACTIONS(5287), - [anon_sym_BANG] = ACTIONS(5287), - [anon_sym_PIPE] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(5287), - [anon_sym_SQUOTE] = ACTIONS(5287), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5285), - [anon_sym_DOLLAR] = ACTIONS(5287), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5285), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5285), - [anon_sym_BSLASHbegin] = ACTIONS(5287), - [anon_sym_BSLASHusepackage] = ACTIONS(5287), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5287), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5287), - [anon_sym_BSLASHinclude] = ACTIONS(5287), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5287), - [anon_sym_BSLASHinput] = ACTIONS(5287), - [anon_sym_BSLASHsubfile] = ACTIONS(5287), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5287), - [anon_sym_BSLASHbibliography] = ACTIONS(5287), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5287), - [anon_sym_BSLASHincludesvg] = ACTIONS(5287), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5287), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5287), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5287), - [anon_sym_BSLASHimport] = ACTIONS(5287), - [anon_sym_BSLASHsubimport] = ACTIONS(5287), - [anon_sym_BSLASHinputfrom] = ACTIONS(5287), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5287), - [anon_sym_BSLASHincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5287), - [anon_sym_BSLASHcaption] = ACTIONS(5287), - [anon_sym_BSLASHcite] = ACTIONS(5287), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCite] = ACTIONS(5287), - [anon_sym_BSLASHnocite] = ACTIONS(5287), - [anon_sym_BSLASHcitet] = ACTIONS(5287), - [anon_sym_BSLASHcitep] = ACTIONS(5287), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteauthor] = ACTIONS(5287), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5287), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitetitle] = ACTIONS(5287), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteyear] = ACTIONS(5287), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5285), - [anon_sym_BSLASHcitedate] = ACTIONS(5287), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5285), - [anon_sym_BSLASHciteurl] = ACTIONS(5287), - [anon_sym_BSLASHfullcite] = ACTIONS(5287), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5287), - [anon_sym_BSLASHcitealt] = ACTIONS(5287), - [anon_sym_BSLASHcitealp] = ACTIONS(5287), - [anon_sym_BSLASHcitetext] = ACTIONS(5287), - [anon_sym_BSLASHparencite] = ACTIONS(5287), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHParencite] = ACTIONS(5287), - [anon_sym_BSLASHfootcite] = ACTIONS(5287), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5287), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5287), - [anon_sym_BSLASHtextcite] = ACTIONS(5287), - [anon_sym_BSLASHTextcite] = ACTIONS(5287), - [anon_sym_BSLASHsmartcite] = ACTIONS(5287), - [anon_sym_BSLASHSmartcite] = ACTIONS(5287), - [anon_sym_BSLASHsupercite] = ACTIONS(5287), - [anon_sym_BSLASHautocite] = ACTIONS(5287), - [anon_sym_BSLASHAutocite] = ACTIONS(5287), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5285), - [anon_sym_BSLASHvolcite] = ACTIONS(5287), - [anon_sym_BSLASHVolcite] = ACTIONS(5287), - [anon_sym_BSLASHpvolcite] = ACTIONS(5287), - [anon_sym_BSLASHPvolcite] = ACTIONS(5287), - [anon_sym_BSLASHfvolcite] = ACTIONS(5287), - [anon_sym_BSLASHftvolcite] = ACTIONS(5287), - [anon_sym_BSLASHsvolcite] = ACTIONS(5287), - [anon_sym_BSLASHSvolcite] = ACTIONS(5287), - [anon_sym_BSLASHtvolcite] = ACTIONS(5287), - [anon_sym_BSLASHTvolcite] = ACTIONS(5287), - [anon_sym_BSLASHavolcite] = ACTIONS(5287), - [anon_sym_BSLASHAvolcite] = ACTIONS(5287), - [anon_sym_BSLASHnotecite] = ACTIONS(5287), - [anon_sym_BSLASHNotecite] = ACTIONS(5287), - [anon_sym_BSLASHpnotecite] = ACTIONS(5287), - [anon_sym_BSLASHPnotecite] = ACTIONS(5287), - [anon_sym_BSLASHfnotecite] = ACTIONS(5287), - [anon_sym_BSLASHlabel] = ACTIONS(5287), - [anon_sym_BSLASHref] = ACTIONS(5287), - [anon_sym_BSLASHeqref] = ACTIONS(5287), - [anon_sym_BSLASHvref] = ACTIONS(5287), - [anon_sym_BSLASHVref] = ACTIONS(5287), - [anon_sym_BSLASHautoref] = ACTIONS(5287), - [anon_sym_BSLASHpageref] = ACTIONS(5287), - [anon_sym_BSLASHcref] = ACTIONS(5287), - [anon_sym_BSLASHCref] = ACTIONS(5287), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnameCref] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5287), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5287), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5287), - [anon_sym_BSLASHlabelcref] = ACTIONS(5287), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange] = ACTIONS(5287), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHCrefrange] = ACTIONS(5287), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5285), - [anon_sym_BSLASHnewlabel] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand] = ACTIONS(5287), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5287), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5287), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5285), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5287), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5285), - [anon_sym_BSLASHdef] = ACTIONS(5287), - [anon_sym_BSLASHlet] = ACTIONS(5287), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5287), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5287), - [anon_sym_BSLASHgls] = ACTIONS(5287), - [anon_sym_BSLASHGls] = ACTIONS(5287), - [anon_sym_BSLASHGLS] = ACTIONS(5287), - [anon_sym_BSLASHglspl] = ACTIONS(5287), - [anon_sym_BSLASHGlspl] = ACTIONS(5287), - [anon_sym_BSLASHGLSpl] = ACTIONS(5287), - [anon_sym_BSLASHglsdisp] = ACTIONS(5287), - [anon_sym_BSLASHglslink] = ACTIONS(5287), - [anon_sym_BSLASHglstext] = ACTIONS(5287), - [anon_sym_BSLASHGlstext] = ACTIONS(5287), - [anon_sym_BSLASHGLStext] = ACTIONS(5287), - [anon_sym_BSLASHglsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5287), - [anon_sym_BSLASHglsplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSplural] = ACTIONS(5287), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5287), - [anon_sym_BSLASHglsname] = ACTIONS(5287), - [anon_sym_BSLASHGlsname] = ACTIONS(5287), - [anon_sym_BSLASHGLSname] = ACTIONS(5287), - [anon_sym_BSLASHglssymbol] = ACTIONS(5287), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5287), - [anon_sym_BSLASHglsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5287), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5287), - [anon_sym_BSLASHglsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5287), - [anon_sym_BSLASHglsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5287), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5287), - [anon_sym_BSLASHglsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5287), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5287), - [anon_sym_BSLASHglsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5287), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5287), - [anon_sym_BSLASHnewacronym] = ACTIONS(5287), - [anon_sym_BSLASHacrshort] = ACTIONS(5287), - [anon_sym_BSLASHAcrshort] = ACTIONS(5287), - [anon_sym_BSLASHACRshort] = ACTIONS(5287), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5287), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5287), - [anon_sym_BSLASHacrlong] = ACTIONS(5287), - [anon_sym_BSLASHAcrlong] = ACTIONS(5287), - [anon_sym_BSLASHACRlong] = ACTIONS(5287), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5287), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5287), - [anon_sym_BSLASHacrfull] = ACTIONS(5287), - [anon_sym_BSLASHAcrfull] = ACTIONS(5287), - [anon_sym_BSLASHACRfull] = ACTIONS(5287), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5287), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5287), - [anon_sym_BSLASHacs] = ACTIONS(5287), - [anon_sym_BSLASHAcs] = ACTIONS(5287), - [anon_sym_BSLASHacsp] = ACTIONS(5287), - [anon_sym_BSLASHAcsp] = ACTIONS(5287), - [anon_sym_BSLASHacl] = ACTIONS(5287), - [anon_sym_BSLASHAcl] = ACTIONS(5287), - [anon_sym_BSLASHaclp] = ACTIONS(5287), - [anon_sym_BSLASHAclp] = ACTIONS(5287), - [anon_sym_BSLASHacf] = ACTIONS(5287), - [anon_sym_BSLASHAcf] = ACTIONS(5287), - [anon_sym_BSLASHacfp] = ACTIONS(5287), - [anon_sym_BSLASHAcfp] = ACTIONS(5287), - [anon_sym_BSLASHac] = ACTIONS(5287), - [anon_sym_BSLASHAc] = ACTIONS(5287), - [anon_sym_BSLASHacp] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5287), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5287), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5287), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5287), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5287), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5287), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5287), - [anon_sym_BSLASHcolor] = ACTIONS(5287), - [anon_sym_BSLASHcolorbox] = ACTIONS(5287), - [anon_sym_BSLASHtextcolor] = ACTIONS(5287), - [anon_sym_BSLASHpagecolor] = ACTIONS(5287), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5287), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5287), - }, - [1385] = { - [sym_command_name] = ACTIONS(5283), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5283), - [anon_sym_LPAREN] = ACTIONS(5281), - [anon_sym_RPAREN] = ACTIONS(5281), - [anon_sym_LBRACK] = ACTIONS(5281), - [anon_sym_RBRACK] = ACTIONS(5281), - [anon_sym_COMMA] = ACTIONS(5281), - [anon_sym_EQ] = ACTIONS(5281), - [anon_sym_LBRACE] = ACTIONS(5281), - [sym_word] = ACTIONS(5283), - [sym_placeholder] = ACTIONS(5281), - [anon_sym_PLUS] = ACTIONS(5283), - [anon_sym_DASH] = ACTIONS(5283), - [anon_sym_STAR] = ACTIONS(5283), - [anon_sym_SLASH] = ACTIONS(5283), - [anon_sym_CARET] = ACTIONS(5283), - [anon_sym__] = ACTIONS(5283), - [anon_sym_LT] = ACTIONS(5283), - [anon_sym_GT] = ACTIONS(5283), - [anon_sym_BANG] = ACTIONS(5283), - [anon_sym_PIPE] = ACTIONS(5283), - [anon_sym_COLON] = ACTIONS(5283), - [anon_sym_SQUOTE] = ACTIONS(5283), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(5283), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5281), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5281), - [anon_sym_BSLASHbegin] = ACTIONS(5283), - [anon_sym_BSLASHusepackage] = ACTIONS(5283), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5283), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5283), - [anon_sym_BSLASHinclude] = ACTIONS(5283), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5283), - [anon_sym_BSLASHinput] = ACTIONS(5283), - [anon_sym_BSLASHsubfile] = ACTIONS(5283), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5283), - [anon_sym_BSLASHbibliography] = ACTIONS(5283), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5283), - [anon_sym_BSLASHincludesvg] = ACTIONS(5283), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5283), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5283), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5283), - [anon_sym_BSLASHimport] = ACTIONS(5283), - [anon_sym_BSLASHsubimport] = ACTIONS(5283), - [anon_sym_BSLASHinputfrom] = ACTIONS(5283), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5283), - [anon_sym_BSLASHincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5283), - [anon_sym_BSLASHcaption] = ACTIONS(5283), - [anon_sym_BSLASHcite] = ACTIONS(5283), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCite] = ACTIONS(5283), - [anon_sym_BSLASHnocite] = ACTIONS(5283), - [anon_sym_BSLASHcitet] = ACTIONS(5283), - [anon_sym_BSLASHcitep] = ACTIONS(5283), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteauthor] = ACTIONS(5283), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5283), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitetitle] = ACTIONS(5283), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteyear] = ACTIONS(5283), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5281), - [anon_sym_BSLASHcitedate] = ACTIONS(5283), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5281), - [anon_sym_BSLASHciteurl] = ACTIONS(5283), - [anon_sym_BSLASHfullcite] = ACTIONS(5283), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5283), - [anon_sym_BSLASHcitealt] = ACTIONS(5283), - [anon_sym_BSLASHcitealp] = ACTIONS(5283), - [anon_sym_BSLASHcitetext] = ACTIONS(5283), - [anon_sym_BSLASHparencite] = ACTIONS(5283), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHParencite] = ACTIONS(5283), - [anon_sym_BSLASHfootcite] = ACTIONS(5283), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5283), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5283), - [anon_sym_BSLASHtextcite] = ACTIONS(5283), - [anon_sym_BSLASHTextcite] = ACTIONS(5283), - [anon_sym_BSLASHsmartcite] = ACTIONS(5283), - [anon_sym_BSLASHSmartcite] = ACTIONS(5283), - [anon_sym_BSLASHsupercite] = ACTIONS(5283), - [anon_sym_BSLASHautocite] = ACTIONS(5283), - [anon_sym_BSLASHAutocite] = ACTIONS(5283), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5281), - [anon_sym_BSLASHvolcite] = ACTIONS(5283), - [anon_sym_BSLASHVolcite] = ACTIONS(5283), - [anon_sym_BSLASHpvolcite] = ACTIONS(5283), - [anon_sym_BSLASHPvolcite] = ACTIONS(5283), - [anon_sym_BSLASHfvolcite] = ACTIONS(5283), - [anon_sym_BSLASHftvolcite] = ACTIONS(5283), - [anon_sym_BSLASHsvolcite] = ACTIONS(5283), - [anon_sym_BSLASHSvolcite] = ACTIONS(5283), - [anon_sym_BSLASHtvolcite] = ACTIONS(5283), - [anon_sym_BSLASHTvolcite] = ACTIONS(5283), - [anon_sym_BSLASHavolcite] = ACTIONS(5283), - [anon_sym_BSLASHAvolcite] = ACTIONS(5283), - [anon_sym_BSLASHnotecite] = ACTIONS(5283), - [anon_sym_BSLASHNotecite] = ACTIONS(5283), - [anon_sym_BSLASHpnotecite] = ACTIONS(5283), - [anon_sym_BSLASHPnotecite] = ACTIONS(5283), - [anon_sym_BSLASHfnotecite] = ACTIONS(5283), - [anon_sym_BSLASHlabel] = ACTIONS(5283), - [anon_sym_BSLASHref] = ACTIONS(5283), - [anon_sym_BSLASHeqref] = ACTIONS(5283), - [anon_sym_BSLASHvref] = ACTIONS(5283), - [anon_sym_BSLASHVref] = ACTIONS(5283), - [anon_sym_BSLASHautoref] = ACTIONS(5283), - [anon_sym_BSLASHpageref] = ACTIONS(5283), - [anon_sym_BSLASHcref] = ACTIONS(5283), - [anon_sym_BSLASHCref] = ACTIONS(5283), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnameCref] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5283), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5283), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5283), - [anon_sym_BSLASHlabelcref] = ACTIONS(5283), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange] = ACTIONS(5283), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHCrefrange] = ACTIONS(5283), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5281), - [anon_sym_BSLASHnewlabel] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand] = ACTIONS(5283), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5283), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5283), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5281), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5283), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5281), - [anon_sym_BSLASHdef] = ACTIONS(5283), - [anon_sym_BSLASHlet] = ACTIONS(5283), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5283), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5283), - [anon_sym_BSLASHgls] = ACTIONS(5283), - [anon_sym_BSLASHGls] = ACTIONS(5283), - [anon_sym_BSLASHGLS] = ACTIONS(5283), - [anon_sym_BSLASHglspl] = ACTIONS(5283), - [anon_sym_BSLASHGlspl] = ACTIONS(5283), - [anon_sym_BSLASHGLSpl] = ACTIONS(5283), - [anon_sym_BSLASHglsdisp] = ACTIONS(5283), - [anon_sym_BSLASHglslink] = ACTIONS(5283), - [anon_sym_BSLASHglstext] = ACTIONS(5283), - [anon_sym_BSLASHGlstext] = ACTIONS(5283), - [anon_sym_BSLASHGLStext] = ACTIONS(5283), - [anon_sym_BSLASHglsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5283), - [anon_sym_BSLASHglsplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSplural] = ACTIONS(5283), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5283), - [anon_sym_BSLASHglsname] = ACTIONS(5283), - [anon_sym_BSLASHGlsname] = ACTIONS(5283), - [anon_sym_BSLASHGLSname] = ACTIONS(5283), - [anon_sym_BSLASHglssymbol] = ACTIONS(5283), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5283), - [anon_sym_BSLASHglsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5283), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5283), - [anon_sym_BSLASHglsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5283), - [anon_sym_BSLASHglsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5283), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5283), - [anon_sym_BSLASHglsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5283), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5283), - [anon_sym_BSLASHglsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5283), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5283), - [anon_sym_BSLASHnewacronym] = ACTIONS(5283), - [anon_sym_BSLASHacrshort] = ACTIONS(5283), - [anon_sym_BSLASHAcrshort] = ACTIONS(5283), - [anon_sym_BSLASHACRshort] = ACTIONS(5283), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5283), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5283), - [anon_sym_BSLASHacrlong] = ACTIONS(5283), - [anon_sym_BSLASHAcrlong] = ACTIONS(5283), - [anon_sym_BSLASHACRlong] = ACTIONS(5283), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5283), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5283), - [anon_sym_BSLASHacrfull] = ACTIONS(5283), - [anon_sym_BSLASHAcrfull] = ACTIONS(5283), - [anon_sym_BSLASHACRfull] = ACTIONS(5283), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5283), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5283), - [anon_sym_BSLASHacs] = ACTIONS(5283), - [anon_sym_BSLASHAcs] = ACTIONS(5283), - [anon_sym_BSLASHacsp] = ACTIONS(5283), - [anon_sym_BSLASHAcsp] = ACTIONS(5283), - [anon_sym_BSLASHacl] = ACTIONS(5283), - [anon_sym_BSLASHAcl] = ACTIONS(5283), - [anon_sym_BSLASHaclp] = ACTIONS(5283), - [anon_sym_BSLASHAclp] = ACTIONS(5283), - [anon_sym_BSLASHacf] = ACTIONS(5283), - [anon_sym_BSLASHAcf] = ACTIONS(5283), - [anon_sym_BSLASHacfp] = ACTIONS(5283), - [anon_sym_BSLASHAcfp] = ACTIONS(5283), - [anon_sym_BSLASHac] = ACTIONS(5283), - [anon_sym_BSLASHAc] = ACTIONS(5283), - [anon_sym_BSLASHacp] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5283), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5283), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5283), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5283), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5283), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5283), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5283), - [anon_sym_BSLASHcolor] = ACTIONS(5283), - [anon_sym_BSLASHcolorbox] = ACTIONS(5283), - [anon_sym_BSLASHtextcolor] = ACTIONS(5283), - [anon_sym_BSLASHpagecolor] = ACTIONS(5283), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5283), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5283), - }, - [1386] = { - [sym_command_name] = ACTIONS(5279), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5279), - [anon_sym_LPAREN] = ACTIONS(5277), - [anon_sym_RPAREN] = ACTIONS(5277), - [anon_sym_LBRACK] = ACTIONS(5277), - [anon_sym_RBRACK] = ACTIONS(5277), - [anon_sym_COMMA] = ACTIONS(5277), - [anon_sym_EQ] = ACTIONS(5277), - [anon_sym_LBRACE] = ACTIONS(5277), - [sym_word] = ACTIONS(5279), - [sym_placeholder] = ACTIONS(5277), - [anon_sym_PLUS] = ACTIONS(5279), - [anon_sym_DASH] = ACTIONS(5279), - [anon_sym_STAR] = ACTIONS(5279), - [anon_sym_SLASH] = ACTIONS(5279), - [anon_sym_CARET] = ACTIONS(5279), - [anon_sym__] = ACTIONS(5279), - [anon_sym_LT] = ACTIONS(5279), - [anon_sym_GT] = ACTIONS(5279), - [anon_sym_BANG] = ACTIONS(5279), - [anon_sym_PIPE] = ACTIONS(5279), - [anon_sym_COLON] = ACTIONS(5279), - [anon_sym_SQUOTE] = ACTIONS(5279), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5277), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5277), - [anon_sym_DOLLAR] = ACTIONS(5279), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5277), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5277), - [anon_sym_BSLASHbegin] = ACTIONS(5279), - [anon_sym_BSLASHusepackage] = ACTIONS(5279), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5279), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5279), - [anon_sym_BSLASHinclude] = ACTIONS(5279), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5279), - [anon_sym_BSLASHinput] = ACTIONS(5279), - [anon_sym_BSLASHsubfile] = ACTIONS(5279), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5279), - [anon_sym_BSLASHbibliography] = ACTIONS(5279), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5279), - [anon_sym_BSLASHincludesvg] = ACTIONS(5279), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5279), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5279), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5279), - [anon_sym_BSLASHimport] = ACTIONS(5279), - [anon_sym_BSLASHsubimport] = ACTIONS(5279), - [anon_sym_BSLASHinputfrom] = ACTIONS(5279), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5279), - [anon_sym_BSLASHincludefrom] = ACTIONS(5279), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5279), - [anon_sym_BSLASHcaption] = ACTIONS(5279), - [anon_sym_BSLASHcite] = ACTIONS(5279), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCite] = ACTIONS(5279), - [anon_sym_BSLASHnocite] = ACTIONS(5279), - [anon_sym_BSLASHcitet] = ACTIONS(5279), - [anon_sym_BSLASHcitep] = ACTIONS(5279), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteauthor] = ACTIONS(5279), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5279), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitetitle] = ACTIONS(5279), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteyear] = ACTIONS(5279), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5277), - [anon_sym_BSLASHcitedate] = ACTIONS(5279), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5277), - [anon_sym_BSLASHciteurl] = ACTIONS(5279), - [anon_sym_BSLASHfullcite] = ACTIONS(5279), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5279), - [anon_sym_BSLASHcitealt] = ACTIONS(5279), - [anon_sym_BSLASHcitealp] = ACTIONS(5279), - [anon_sym_BSLASHcitetext] = ACTIONS(5279), - [anon_sym_BSLASHparencite] = ACTIONS(5279), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHParencite] = ACTIONS(5279), - [anon_sym_BSLASHfootcite] = ACTIONS(5279), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5279), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5279), - [anon_sym_BSLASHtextcite] = ACTIONS(5279), - [anon_sym_BSLASHTextcite] = ACTIONS(5279), - [anon_sym_BSLASHsmartcite] = ACTIONS(5279), - [anon_sym_BSLASHSmartcite] = ACTIONS(5279), - [anon_sym_BSLASHsupercite] = ACTIONS(5279), - [anon_sym_BSLASHautocite] = ACTIONS(5279), - [anon_sym_BSLASHAutocite] = ACTIONS(5279), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5277), - [anon_sym_BSLASHvolcite] = ACTIONS(5279), - [anon_sym_BSLASHVolcite] = ACTIONS(5279), - [anon_sym_BSLASHpvolcite] = ACTIONS(5279), - [anon_sym_BSLASHPvolcite] = ACTIONS(5279), - [anon_sym_BSLASHfvolcite] = ACTIONS(5279), - [anon_sym_BSLASHftvolcite] = ACTIONS(5279), - [anon_sym_BSLASHsvolcite] = ACTIONS(5279), - [anon_sym_BSLASHSvolcite] = ACTIONS(5279), - [anon_sym_BSLASHtvolcite] = ACTIONS(5279), - [anon_sym_BSLASHTvolcite] = ACTIONS(5279), - [anon_sym_BSLASHavolcite] = ACTIONS(5279), - [anon_sym_BSLASHAvolcite] = ACTIONS(5279), - [anon_sym_BSLASHnotecite] = ACTIONS(5279), - [anon_sym_BSLASHNotecite] = ACTIONS(5279), - [anon_sym_BSLASHpnotecite] = ACTIONS(5279), - [anon_sym_BSLASHPnotecite] = ACTIONS(5279), - [anon_sym_BSLASHfnotecite] = ACTIONS(5279), - [anon_sym_BSLASHlabel] = ACTIONS(5279), - [anon_sym_BSLASHref] = ACTIONS(5279), - [anon_sym_BSLASHeqref] = ACTIONS(5279), - [anon_sym_BSLASHvref] = ACTIONS(5279), - [anon_sym_BSLASHVref] = ACTIONS(5279), - [anon_sym_BSLASHautoref] = ACTIONS(5279), - [anon_sym_BSLASHpageref] = ACTIONS(5279), - [anon_sym_BSLASHcref] = ACTIONS(5279), - [anon_sym_BSLASHCref] = ACTIONS(5279), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5277), - [anon_sym_BSLASHnamecref] = ACTIONS(5279), - [anon_sym_BSLASHnameCref] = ACTIONS(5279), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5279), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5279), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5279), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5279), - [anon_sym_BSLASHlabelcref] = ACTIONS(5279), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5279), - [anon_sym_BSLASHcrefrange] = ACTIONS(5279), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5277), - [anon_sym_BSLASHCrefrange] = ACTIONS(5279), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5277), - [anon_sym_BSLASHnewlabel] = ACTIONS(5279), - [anon_sym_BSLASHnewcommand] = ACTIONS(5279), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5279), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5279), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5277), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5279), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5277), - [anon_sym_BSLASHdef] = ACTIONS(5279), - [anon_sym_BSLASHlet] = ACTIONS(5279), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5279), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5279), - [anon_sym_BSLASHgls] = ACTIONS(5279), - [anon_sym_BSLASHGls] = ACTIONS(5279), - [anon_sym_BSLASHGLS] = ACTIONS(5279), - [anon_sym_BSLASHglspl] = ACTIONS(5279), - [anon_sym_BSLASHGlspl] = ACTIONS(5279), - [anon_sym_BSLASHGLSpl] = ACTIONS(5279), - [anon_sym_BSLASHglsdisp] = ACTIONS(5279), - [anon_sym_BSLASHglslink] = ACTIONS(5279), - [anon_sym_BSLASHglstext] = ACTIONS(5279), - [anon_sym_BSLASHGlstext] = ACTIONS(5279), - [anon_sym_BSLASHGLStext] = ACTIONS(5279), - [anon_sym_BSLASHglsfirst] = ACTIONS(5279), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5279), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5279), - [anon_sym_BSLASHglsplural] = ACTIONS(5279), - [anon_sym_BSLASHGlsplural] = ACTIONS(5279), - [anon_sym_BSLASHGLSplural] = ACTIONS(5279), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5279), - [anon_sym_BSLASHglsname] = ACTIONS(5279), - [anon_sym_BSLASHGlsname] = ACTIONS(5279), - [anon_sym_BSLASHGLSname] = ACTIONS(5279), - [anon_sym_BSLASHglssymbol] = ACTIONS(5279), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5279), - [anon_sym_BSLASHglsdesc] = ACTIONS(5279), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5279), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5279), - [anon_sym_BSLASHglsuseri] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5279), - [anon_sym_BSLASHglsuserii] = ACTIONS(5279), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5279), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5279), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5279), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5279), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5279), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5279), - [anon_sym_BSLASHglsuserv] = ACTIONS(5279), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5279), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5279), - [anon_sym_BSLASHglsuservi] = ACTIONS(5279), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5279), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5279), - [anon_sym_BSLASHnewacronym] = ACTIONS(5279), - [anon_sym_BSLASHacrshort] = ACTIONS(5279), - [anon_sym_BSLASHAcrshort] = ACTIONS(5279), - [anon_sym_BSLASHACRshort] = ACTIONS(5279), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5279), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5279), - [anon_sym_BSLASHacrlong] = ACTIONS(5279), - [anon_sym_BSLASHAcrlong] = ACTIONS(5279), - [anon_sym_BSLASHACRlong] = ACTIONS(5279), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5279), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5279), - [anon_sym_BSLASHacrfull] = ACTIONS(5279), - [anon_sym_BSLASHAcrfull] = ACTIONS(5279), - [anon_sym_BSLASHACRfull] = ACTIONS(5279), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5279), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5279), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5279), - [anon_sym_BSLASHacs] = ACTIONS(5279), - [anon_sym_BSLASHAcs] = ACTIONS(5279), - [anon_sym_BSLASHacsp] = ACTIONS(5279), - [anon_sym_BSLASHAcsp] = ACTIONS(5279), - [anon_sym_BSLASHacl] = ACTIONS(5279), - [anon_sym_BSLASHAcl] = ACTIONS(5279), - [anon_sym_BSLASHaclp] = ACTIONS(5279), - [anon_sym_BSLASHAclp] = ACTIONS(5279), - [anon_sym_BSLASHacf] = ACTIONS(5279), - [anon_sym_BSLASHAcf] = ACTIONS(5279), - [anon_sym_BSLASHacfp] = ACTIONS(5279), - [anon_sym_BSLASHAcfp] = ACTIONS(5279), - [anon_sym_BSLASHac] = ACTIONS(5279), - [anon_sym_BSLASHAc] = ACTIONS(5279), - [anon_sym_BSLASHacp] = ACTIONS(5279), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5279), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5279), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5279), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5279), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5279), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5279), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5279), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5279), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5279), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5279), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5279), - [anon_sym_BSLASHcolor] = ACTIONS(5279), - [anon_sym_BSLASHcolorbox] = ACTIONS(5279), - [anon_sym_BSLASHtextcolor] = ACTIONS(5279), - [anon_sym_BSLASHpagecolor] = ACTIONS(5279), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5279), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5279), - }, - [1387] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASHbegin] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), - }, - [1388] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASHbegin] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), - }, - [1389] = { - [sym_command_name] = ACTIONS(5353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASHbegin] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [anon_sym_BSLASHiffalse] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5195), + [sym_word] = ACTIONS(5197), + [sym_placeholder] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_CARET] = ACTIONS(5197), + [anon_sym__] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_COLON] = ACTIONS(5197), + [anon_sym_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), + [anon_sym_DOLLAR] = ACTIONS(5197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), + [anon_sym_BSLASHbegin] = ACTIONS(5197), + [anon_sym_BSLASHusepackage] = ACTIONS(5197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), + [anon_sym_BSLASHinclude] = ACTIONS(5197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), + [anon_sym_BSLASHinput] = ACTIONS(5197), + [anon_sym_BSLASHsubfile] = ACTIONS(5197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), + [anon_sym_BSLASHbibliography] = ACTIONS(5197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), + [anon_sym_BSLASHincludesvg] = ACTIONS(5197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), + [anon_sym_BSLASHimport] = ACTIONS(5197), + [anon_sym_BSLASHsubimport] = ACTIONS(5197), + [anon_sym_BSLASHinputfrom] = ACTIONS(5197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), + [anon_sym_BSLASHincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHcaption] = ACTIONS(5197), + [anon_sym_BSLASHcite] = ACTIONS(5197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCite] = ACTIONS(5197), + [anon_sym_BSLASHnocite] = ACTIONS(5197), + [anon_sym_BSLASHcitet] = ACTIONS(5197), + [anon_sym_BSLASHcitep] = ACTIONS(5197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteauthor] = ACTIONS(5197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitetitle] = ACTIONS(5197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteyear] = ACTIONS(5197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitedate] = ACTIONS(5197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteurl] = ACTIONS(5197), + [anon_sym_BSLASHfullcite] = ACTIONS(5197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), + [anon_sym_BSLASHcitealt] = ACTIONS(5197), + [anon_sym_BSLASHcitealp] = ACTIONS(5197), + [anon_sym_BSLASHcitetext] = ACTIONS(5197), + [anon_sym_BSLASHparencite] = ACTIONS(5197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHParencite] = ACTIONS(5197), + [anon_sym_BSLASHfootcite] = ACTIONS(5197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), + [anon_sym_BSLASHtextcite] = ACTIONS(5197), + [anon_sym_BSLASHTextcite] = ACTIONS(5197), + [anon_sym_BSLASHsmartcite] = ACTIONS(5197), + [anon_sym_BSLASHSmartcite] = ACTIONS(5197), + [anon_sym_BSLASHsupercite] = ACTIONS(5197), + [anon_sym_BSLASHautocite] = ACTIONS(5197), + [anon_sym_BSLASHAutocite] = ACTIONS(5197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHvolcite] = ACTIONS(5197), + [anon_sym_BSLASHVolcite] = ACTIONS(5197), + [anon_sym_BSLASHpvolcite] = ACTIONS(5197), + [anon_sym_BSLASHPvolcite] = ACTIONS(5197), + [anon_sym_BSLASHfvolcite] = ACTIONS(5197), + [anon_sym_BSLASHftvolcite] = ACTIONS(5197), + [anon_sym_BSLASHsvolcite] = ACTIONS(5197), + [anon_sym_BSLASHSvolcite] = ACTIONS(5197), + [anon_sym_BSLASHtvolcite] = ACTIONS(5197), + [anon_sym_BSLASHTvolcite] = ACTIONS(5197), + [anon_sym_BSLASHavolcite] = ACTIONS(5197), + [anon_sym_BSLASHAvolcite] = ACTIONS(5197), + [anon_sym_BSLASHnotecite] = ACTIONS(5197), + [anon_sym_BSLASHNotecite] = ACTIONS(5197), + [anon_sym_BSLASHpnotecite] = ACTIONS(5197), + [anon_sym_BSLASHPnotecite] = ACTIONS(5197), + [anon_sym_BSLASHfnotecite] = ACTIONS(5197), + [anon_sym_BSLASHlabel] = ACTIONS(5197), + [anon_sym_BSLASHref] = ACTIONS(5197), + [anon_sym_BSLASHeqref] = ACTIONS(5197), + [anon_sym_BSLASHvref] = ACTIONS(5197), + [anon_sym_BSLASHVref] = ACTIONS(5197), + [anon_sym_BSLASHautoref] = ACTIONS(5197), + [anon_sym_BSLASHpageref] = ACTIONS(5197), + [anon_sym_BSLASHcref] = ACTIONS(5197), + [anon_sym_BSLASHCref] = ACTIONS(5197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnameCref] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHlabelcref] = ACTIONS(5197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCrefrange] = ACTIONS(5197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnewlabel] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), + [anon_sym_BSLASHdef] = ACTIONS(5197), + [anon_sym_BSLASHlet] = ACTIONS(5197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5197), + [anon_sym_BSLASHGls] = ACTIONS(5197), + [anon_sym_BSLASHGLS] = ACTIONS(5197), + [anon_sym_BSLASHglspl] = ACTIONS(5197), + [anon_sym_BSLASHGlspl] = ACTIONS(5197), + [anon_sym_BSLASHGLSpl] = ACTIONS(5197), + [anon_sym_BSLASHglsdisp] = ACTIONS(5197), + [anon_sym_BSLASHglslink] = ACTIONS(5197), + [anon_sym_BSLASHglstext] = ACTIONS(5197), + [anon_sym_BSLASHGlstext] = ACTIONS(5197), + [anon_sym_BSLASHGLStext] = ACTIONS(5197), + [anon_sym_BSLASHglsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), + [anon_sym_BSLASHglsplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSplural] = ACTIONS(5197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHglsname] = ACTIONS(5197), + [anon_sym_BSLASHGlsname] = ACTIONS(5197), + [anon_sym_BSLASHGLSname] = ACTIONS(5197), + [anon_sym_BSLASHglssymbol] = ACTIONS(5197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), + [anon_sym_BSLASHglsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), + [anon_sym_BSLASHglsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), + [anon_sym_BSLASHglsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), + [anon_sym_BSLASHglsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), + [anon_sym_BSLASHglsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), + [anon_sym_BSLASHnewacronym] = ACTIONS(5197), + [anon_sym_BSLASHacrshort] = ACTIONS(5197), + [anon_sym_BSLASHAcrshort] = ACTIONS(5197), + [anon_sym_BSLASHACRshort] = ACTIONS(5197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), + [anon_sym_BSLASHacrlong] = ACTIONS(5197), + [anon_sym_BSLASHAcrlong] = ACTIONS(5197), + [anon_sym_BSLASHACRlong] = ACTIONS(5197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), + [anon_sym_BSLASHacrfull] = ACTIONS(5197), + [anon_sym_BSLASHAcrfull] = ACTIONS(5197), + [anon_sym_BSLASHACRfull] = ACTIONS(5197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), + [anon_sym_BSLASHacs] = ACTIONS(5197), + [anon_sym_BSLASHAcs] = ACTIONS(5197), + [anon_sym_BSLASHacsp] = ACTIONS(5197), + [anon_sym_BSLASHAcsp] = ACTIONS(5197), + [anon_sym_BSLASHacl] = ACTIONS(5197), + [anon_sym_BSLASHAcl] = ACTIONS(5197), + [anon_sym_BSLASHaclp] = ACTIONS(5197), + [anon_sym_BSLASHAclp] = ACTIONS(5197), + [anon_sym_BSLASHacf] = ACTIONS(5197), + [anon_sym_BSLASHAcf] = ACTIONS(5197), + [anon_sym_BSLASHacfp] = ACTIONS(5197), + [anon_sym_BSLASHAcfp] = ACTIONS(5197), + [anon_sym_BSLASHac] = ACTIONS(5197), + [anon_sym_BSLASHAc] = ACTIONS(5197), + [anon_sym_BSLASHacp] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), + [anon_sym_BSLASHcolor] = ACTIONS(5197), + [anon_sym_BSLASHcolorbox] = ACTIONS(5197), + [anon_sym_BSLASHtextcolor] = ACTIONS(5197), + [anon_sym_BSLASHpagecolor] = ACTIONS(5197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + [anon_sym_BSLASHtext] = ACTIONS(5197), + [anon_sym_BSLASHintertext] = ACTIONS(5197), + [anon_sym_shortintertext] = ACTIONS(5197), }, - [1390] = { - [sym_command_name] = ACTIONS(5185), + [1312] = { + [sym_command_name] = ACTIONS(5201), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASHbegin] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - }, - [1391] = { - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASHbegin] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), - }, - [1392] = { - [sym_command_name] = ACTIONS(5317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5317), - [anon_sym_LPAREN] = ACTIONS(5315), - [anon_sym_RPAREN] = ACTIONS(5315), - [anon_sym_LBRACK] = ACTIONS(5315), - [anon_sym_RBRACK] = ACTIONS(5315), - [anon_sym_COMMA] = ACTIONS(5315), - [anon_sym_EQ] = ACTIONS(5315), - [anon_sym_LBRACE] = ACTIONS(5315), - [sym_word] = ACTIONS(5317), - [sym_placeholder] = ACTIONS(5315), - [anon_sym_PLUS] = ACTIONS(5317), - [anon_sym_DASH] = ACTIONS(5317), - [anon_sym_STAR] = ACTIONS(5317), - [anon_sym_SLASH] = ACTIONS(5317), - [anon_sym_CARET] = ACTIONS(5317), - [anon_sym__] = ACTIONS(5317), - [anon_sym_LT] = ACTIONS(5317), - [anon_sym_GT] = ACTIONS(5317), - [anon_sym_BANG] = ACTIONS(5317), - [anon_sym_PIPE] = ACTIONS(5317), - [anon_sym_COLON] = ACTIONS(5317), - [anon_sym_SQUOTE] = ACTIONS(5317), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), - [anon_sym_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), - [anon_sym_BSLASHbegin] = ACTIONS(5317), - [anon_sym_BSLASHusepackage] = ACTIONS(5317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), - [anon_sym_BSLASHinclude] = ACTIONS(5317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), - [anon_sym_BSLASHinput] = ACTIONS(5317), - [anon_sym_BSLASHsubfile] = ACTIONS(5317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), - [anon_sym_BSLASHbibliography] = ACTIONS(5317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), - [anon_sym_BSLASHincludesvg] = ACTIONS(5317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), - [anon_sym_BSLASHimport] = ACTIONS(5317), - [anon_sym_BSLASHsubimport] = ACTIONS(5317), - [anon_sym_BSLASHinputfrom] = ACTIONS(5317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), - [anon_sym_BSLASHincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHcaption] = ACTIONS(5317), - [anon_sym_BSLASHcite] = ACTIONS(5317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCite] = ACTIONS(5317), - [anon_sym_BSLASHnocite] = ACTIONS(5317), - [anon_sym_BSLASHcitet] = ACTIONS(5317), - [anon_sym_BSLASHcitep] = ACTIONS(5317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteyear] = ACTIONS(5317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitedate] = ACTIONS(5317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteurl] = ACTIONS(5317), - [anon_sym_BSLASHfullcite] = ACTIONS(5317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), - [anon_sym_BSLASHcitealt] = ACTIONS(5317), - [anon_sym_BSLASHcitealp] = ACTIONS(5317), - [anon_sym_BSLASHcitetext] = ACTIONS(5317), - [anon_sym_BSLASHparencite] = ACTIONS(5317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHParencite] = ACTIONS(5317), - [anon_sym_BSLASHfootcite] = ACTIONS(5317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), - [anon_sym_BSLASHtextcite] = ACTIONS(5317), - [anon_sym_BSLASHTextcite] = ACTIONS(5317), - [anon_sym_BSLASHsmartcite] = ACTIONS(5317), - [anon_sym_BSLASHSmartcite] = ACTIONS(5317), - [anon_sym_BSLASHsupercite] = ACTIONS(5317), - [anon_sym_BSLASHautocite] = ACTIONS(5317), - [anon_sym_BSLASHAutocite] = ACTIONS(5317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHvolcite] = ACTIONS(5317), - [anon_sym_BSLASHVolcite] = ACTIONS(5317), - [anon_sym_BSLASHpvolcite] = ACTIONS(5317), - [anon_sym_BSLASHPvolcite] = ACTIONS(5317), - [anon_sym_BSLASHfvolcite] = ACTIONS(5317), - [anon_sym_BSLASHftvolcite] = ACTIONS(5317), - [anon_sym_BSLASHsvolcite] = ACTIONS(5317), - [anon_sym_BSLASHSvolcite] = ACTIONS(5317), - [anon_sym_BSLASHtvolcite] = ACTIONS(5317), - [anon_sym_BSLASHTvolcite] = ACTIONS(5317), - [anon_sym_BSLASHavolcite] = ACTIONS(5317), - [anon_sym_BSLASHAvolcite] = ACTIONS(5317), - [anon_sym_BSLASHnotecite] = ACTIONS(5317), - [anon_sym_BSLASHNotecite] = ACTIONS(5317), - [anon_sym_BSLASHpnotecite] = ACTIONS(5317), - [anon_sym_BSLASHPnotecite] = ACTIONS(5317), - [anon_sym_BSLASHfnotecite] = ACTIONS(5317), - [anon_sym_BSLASHlabel] = ACTIONS(5317), - [anon_sym_BSLASHref] = ACTIONS(5317), - [anon_sym_BSLASHeqref] = ACTIONS(5317), - [anon_sym_BSLASHvref] = ACTIONS(5317), - [anon_sym_BSLASHVref] = ACTIONS(5317), - [anon_sym_BSLASHautoref] = ACTIONS(5317), - [anon_sym_BSLASHpageref] = ACTIONS(5317), - [anon_sym_BSLASHcref] = ACTIONS(5317), - [anon_sym_BSLASHCref] = ACTIONS(5317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnameCref] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHlabelcref] = ACTIONS(5317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnewlabel] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), - [anon_sym_BSLASHdef] = ACTIONS(5317), - [anon_sym_BSLASHlet] = ACTIONS(5317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), - [anon_sym_BSLASHgls] = ACTIONS(5317), - [anon_sym_BSLASHGls] = ACTIONS(5317), - [anon_sym_BSLASHGLS] = ACTIONS(5317), - [anon_sym_BSLASHglspl] = ACTIONS(5317), - [anon_sym_BSLASHGlspl] = ACTIONS(5317), - [anon_sym_BSLASHGLSpl] = ACTIONS(5317), - [anon_sym_BSLASHglsdisp] = ACTIONS(5317), - [anon_sym_BSLASHglslink] = ACTIONS(5317), - [anon_sym_BSLASHglstext] = ACTIONS(5317), - [anon_sym_BSLASHGlstext] = ACTIONS(5317), - [anon_sym_BSLASHGLStext] = ACTIONS(5317), - [anon_sym_BSLASHglsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), - [anon_sym_BSLASHglsplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSplural] = ACTIONS(5317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHglsname] = ACTIONS(5317), - [anon_sym_BSLASHGlsname] = ACTIONS(5317), - [anon_sym_BSLASHGLSname] = ACTIONS(5317), - [anon_sym_BSLASHglssymbol] = ACTIONS(5317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), - [anon_sym_BSLASHglsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), - [anon_sym_BSLASHglsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), - [anon_sym_BSLASHglsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), - [anon_sym_BSLASHglsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), - [anon_sym_BSLASHglsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), - [anon_sym_BSLASHnewacronym] = ACTIONS(5317), - [anon_sym_BSLASHacrshort] = ACTIONS(5317), - [anon_sym_BSLASHAcrshort] = ACTIONS(5317), - [anon_sym_BSLASHACRshort] = ACTIONS(5317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), - [anon_sym_BSLASHacrlong] = ACTIONS(5317), - [anon_sym_BSLASHAcrlong] = ACTIONS(5317), - [anon_sym_BSLASHACRlong] = ACTIONS(5317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), - [anon_sym_BSLASHacrfull] = ACTIONS(5317), - [anon_sym_BSLASHAcrfull] = ACTIONS(5317), - [anon_sym_BSLASHACRfull] = ACTIONS(5317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), - [anon_sym_BSLASHacs] = ACTIONS(5317), - [anon_sym_BSLASHAcs] = ACTIONS(5317), - [anon_sym_BSLASHacsp] = ACTIONS(5317), - [anon_sym_BSLASHAcsp] = ACTIONS(5317), - [anon_sym_BSLASHacl] = ACTIONS(5317), - [anon_sym_BSLASHAcl] = ACTIONS(5317), - [anon_sym_BSLASHaclp] = ACTIONS(5317), - [anon_sym_BSLASHAclp] = ACTIONS(5317), - [anon_sym_BSLASHacf] = ACTIONS(5317), - [anon_sym_BSLASHAcf] = ACTIONS(5317), - [anon_sym_BSLASHacfp] = ACTIONS(5317), - [anon_sym_BSLASHAcfp] = ACTIONS(5317), - [anon_sym_BSLASHac] = ACTIONS(5317), - [anon_sym_BSLASHAc] = ACTIONS(5317), - [anon_sym_BSLASHacp] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), - [anon_sym_BSLASHcolor] = ACTIONS(5317), - [anon_sym_BSLASHcolorbox] = ACTIONS(5317), - [anon_sym_BSLASHtextcolor] = ACTIONS(5317), - [anon_sym_BSLASHpagecolor] = ACTIONS(5317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), - }, - [1393] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASHbegin] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), - }, - [1394] = { - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_EQ] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHbegin] = ACTIONS(137), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), - }, - [1395] = { - [sym_command_name] = ACTIONS(5239), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5237), - [anon_sym_RPAREN] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_RBRACK] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_EQ] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5237), - [sym_word] = ACTIONS(5239), - [sym_placeholder] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym__] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_BANG] = ACTIONS(5239), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_COLON] = ACTIONS(5239), - [anon_sym_SQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), - [anon_sym_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), - [anon_sym_BSLASHbegin] = ACTIONS(5239), - [anon_sym_BSLASHusepackage] = ACTIONS(5239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), - [anon_sym_BSLASHinclude] = ACTIONS(5239), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), - [anon_sym_BSLASHinput] = ACTIONS(5239), - [anon_sym_BSLASHsubfile] = ACTIONS(5239), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), - [anon_sym_BSLASHbibliography] = ACTIONS(5239), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), - [anon_sym_BSLASHincludesvg] = ACTIONS(5239), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), - [anon_sym_BSLASHimport] = ACTIONS(5239), - [anon_sym_BSLASHsubimport] = ACTIONS(5239), - [anon_sym_BSLASHinputfrom] = ACTIONS(5239), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), - [anon_sym_BSLASHincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHcaption] = ACTIONS(5239), - [anon_sym_BSLASHcite] = ACTIONS(5239), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCite] = ACTIONS(5239), - [anon_sym_BSLASHnocite] = ACTIONS(5239), - [anon_sym_BSLASHcitet] = ACTIONS(5239), - [anon_sym_BSLASHcitep] = ACTIONS(5239), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteyear] = ACTIONS(5239), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitedate] = ACTIONS(5239), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteurl] = ACTIONS(5239), - [anon_sym_BSLASHfullcite] = ACTIONS(5239), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), - [anon_sym_BSLASHcitealt] = ACTIONS(5239), - [anon_sym_BSLASHcitealp] = ACTIONS(5239), - [anon_sym_BSLASHcitetext] = ACTIONS(5239), - [anon_sym_BSLASHparencite] = ACTIONS(5239), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHParencite] = ACTIONS(5239), - [anon_sym_BSLASHfootcite] = ACTIONS(5239), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), - [anon_sym_BSLASHtextcite] = ACTIONS(5239), - [anon_sym_BSLASHTextcite] = ACTIONS(5239), - [anon_sym_BSLASHsmartcite] = ACTIONS(5239), - [anon_sym_BSLASHSmartcite] = ACTIONS(5239), - [anon_sym_BSLASHsupercite] = ACTIONS(5239), - [anon_sym_BSLASHautocite] = ACTIONS(5239), - [anon_sym_BSLASHAutocite] = ACTIONS(5239), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHvolcite] = ACTIONS(5239), - [anon_sym_BSLASHVolcite] = ACTIONS(5239), - [anon_sym_BSLASHpvolcite] = ACTIONS(5239), - [anon_sym_BSLASHPvolcite] = ACTIONS(5239), - [anon_sym_BSLASHfvolcite] = ACTIONS(5239), - [anon_sym_BSLASHftvolcite] = ACTIONS(5239), - [anon_sym_BSLASHsvolcite] = ACTIONS(5239), - [anon_sym_BSLASHSvolcite] = ACTIONS(5239), - [anon_sym_BSLASHtvolcite] = ACTIONS(5239), - [anon_sym_BSLASHTvolcite] = ACTIONS(5239), - [anon_sym_BSLASHavolcite] = ACTIONS(5239), - [anon_sym_BSLASHAvolcite] = ACTIONS(5239), - [anon_sym_BSLASHnotecite] = ACTIONS(5239), - [anon_sym_BSLASHNotecite] = ACTIONS(5239), - [anon_sym_BSLASHpnotecite] = ACTIONS(5239), - [anon_sym_BSLASHPnotecite] = ACTIONS(5239), - [anon_sym_BSLASHfnotecite] = ACTIONS(5239), - [anon_sym_BSLASHlabel] = ACTIONS(5239), - [anon_sym_BSLASHref] = ACTIONS(5239), - [anon_sym_BSLASHeqref] = ACTIONS(5239), - [anon_sym_BSLASHvref] = ACTIONS(5239), - [anon_sym_BSLASHVref] = ACTIONS(5239), - [anon_sym_BSLASHautoref] = ACTIONS(5239), - [anon_sym_BSLASHpageref] = ACTIONS(5239), - [anon_sym_BSLASHcref] = ACTIONS(5239), - [anon_sym_BSLASHCref] = ACTIONS(5239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnameCref] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHlabelcref] = ACTIONS(5239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnewlabel] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), - [anon_sym_BSLASHdef] = ACTIONS(5239), - [anon_sym_BSLASHlet] = ACTIONS(5239), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), - [anon_sym_BSLASHgls] = ACTIONS(5239), - [anon_sym_BSLASHGls] = ACTIONS(5239), - [anon_sym_BSLASHGLS] = ACTIONS(5239), - [anon_sym_BSLASHglspl] = ACTIONS(5239), - [anon_sym_BSLASHGlspl] = ACTIONS(5239), - [anon_sym_BSLASHGLSpl] = ACTIONS(5239), - [anon_sym_BSLASHglsdisp] = ACTIONS(5239), - [anon_sym_BSLASHglslink] = ACTIONS(5239), - [anon_sym_BSLASHglstext] = ACTIONS(5239), - [anon_sym_BSLASHGlstext] = ACTIONS(5239), - [anon_sym_BSLASHGLStext] = ACTIONS(5239), - [anon_sym_BSLASHglsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), - [anon_sym_BSLASHglsplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSplural] = ACTIONS(5239), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHglsname] = ACTIONS(5239), - [anon_sym_BSLASHGlsname] = ACTIONS(5239), - [anon_sym_BSLASHGLSname] = ACTIONS(5239), - [anon_sym_BSLASHglssymbol] = ACTIONS(5239), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), - [anon_sym_BSLASHglsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), - [anon_sym_BSLASHglsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), - [anon_sym_BSLASHglsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), - [anon_sym_BSLASHglsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), - [anon_sym_BSLASHglsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), - [anon_sym_BSLASHnewacronym] = ACTIONS(5239), - [anon_sym_BSLASHacrshort] = ACTIONS(5239), - [anon_sym_BSLASHAcrshort] = ACTIONS(5239), - [anon_sym_BSLASHACRshort] = ACTIONS(5239), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), - [anon_sym_BSLASHacrlong] = ACTIONS(5239), - [anon_sym_BSLASHAcrlong] = ACTIONS(5239), - [anon_sym_BSLASHACRlong] = ACTIONS(5239), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), - [anon_sym_BSLASHacrfull] = ACTIONS(5239), - [anon_sym_BSLASHAcrfull] = ACTIONS(5239), - [anon_sym_BSLASHACRfull] = ACTIONS(5239), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), - [anon_sym_BSLASHacs] = ACTIONS(5239), - [anon_sym_BSLASHAcs] = ACTIONS(5239), - [anon_sym_BSLASHacsp] = ACTIONS(5239), - [anon_sym_BSLASHAcsp] = ACTIONS(5239), - [anon_sym_BSLASHacl] = ACTIONS(5239), - [anon_sym_BSLASHAcl] = ACTIONS(5239), - [anon_sym_BSLASHaclp] = ACTIONS(5239), - [anon_sym_BSLASHAclp] = ACTIONS(5239), - [anon_sym_BSLASHacf] = ACTIONS(5239), - [anon_sym_BSLASHAcf] = ACTIONS(5239), - [anon_sym_BSLASHacfp] = ACTIONS(5239), - [anon_sym_BSLASHAcfp] = ACTIONS(5239), - [anon_sym_BSLASHac] = ACTIONS(5239), - [anon_sym_BSLASHAc] = ACTIONS(5239), - [anon_sym_BSLASHacp] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), - [anon_sym_BSLASHcolor] = ACTIONS(5239), - [anon_sym_BSLASHcolorbox] = ACTIONS(5239), - [anon_sym_BSLASHtextcolor] = ACTIONS(5239), - [anon_sym_BSLASHpagecolor] = ACTIONS(5239), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), - }, - [1396] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASHbegin] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), + [anon_sym_BSLASHiffalse] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5199), + [sym_word] = ACTIONS(5201), + [sym_placeholder] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5201), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_CARET] = ACTIONS(5201), + [anon_sym__] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_SQUOTE] = ACTIONS(5201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), + [anon_sym_DOLLAR] = ACTIONS(5201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), + [anon_sym_BSLASHbegin] = ACTIONS(5201), + [anon_sym_BSLASHusepackage] = ACTIONS(5201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), + [anon_sym_BSLASHinclude] = ACTIONS(5201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), + [anon_sym_BSLASHinput] = ACTIONS(5201), + [anon_sym_BSLASHsubfile] = ACTIONS(5201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), + [anon_sym_BSLASHbibliography] = ACTIONS(5201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), + [anon_sym_BSLASHincludesvg] = ACTIONS(5201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), + [anon_sym_BSLASHimport] = ACTIONS(5201), + [anon_sym_BSLASHsubimport] = ACTIONS(5201), + [anon_sym_BSLASHinputfrom] = ACTIONS(5201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), + [anon_sym_BSLASHincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHcaption] = ACTIONS(5201), + [anon_sym_BSLASHcite] = ACTIONS(5201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCite] = ACTIONS(5201), + [anon_sym_BSLASHnocite] = ACTIONS(5201), + [anon_sym_BSLASHcitet] = ACTIONS(5201), + [anon_sym_BSLASHcitep] = ACTIONS(5201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteauthor] = ACTIONS(5201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitetitle] = ACTIONS(5201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteyear] = ACTIONS(5201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitedate] = ACTIONS(5201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteurl] = ACTIONS(5201), + [anon_sym_BSLASHfullcite] = ACTIONS(5201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), + [anon_sym_BSLASHcitealt] = ACTIONS(5201), + [anon_sym_BSLASHcitealp] = ACTIONS(5201), + [anon_sym_BSLASHcitetext] = ACTIONS(5201), + [anon_sym_BSLASHparencite] = ACTIONS(5201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHParencite] = ACTIONS(5201), + [anon_sym_BSLASHfootcite] = ACTIONS(5201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), + [anon_sym_BSLASHtextcite] = ACTIONS(5201), + [anon_sym_BSLASHTextcite] = ACTIONS(5201), + [anon_sym_BSLASHsmartcite] = ACTIONS(5201), + [anon_sym_BSLASHSmartcite] = ACTIONS(5201), + [anon_sym_BSLASHsupercite] = ACTIONS(5201), + [anon_sym_BSLASHautocite] = ACTIONS(5201), + [anon_sym_BSLASHAutocite] = ACTIONS(5201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHvolcite] = ACTIONS(5201), + [anon_sym_BSLASHVolcite] = ACTIONS(5201), + [anon_sym_BSLASHpvolcite] = ACTIONS(5201), + [anon_sym_BSLASHPvolcite] = ACTIONS(5201), + [anon_sym_BSLASHfvolcite] = ACTIONS(5201), + [anon_sym_BSLASHftvolcite] = ACTIONS(5201), + [anon_sym_BSLASHsvolcite] = ACTIONS(5201), + [anon_sym_BSLASHSvolcite] = ACTIONS(5201), + [anon_sym_BSLASHtvolcite] = ACTIONS(5201), + [anon_sym_BSLASHTvolcite] = ACTIONS(5201), + [anon_sym_BSLASHavolcite] = ACTIONS(5201), + [anon_sym_BSLASHAvolcite] = ACTIONS(5201), + [anon_sym_BSLASHnotecite] = ACTIONS(5201), + [anon_sym_BSLASHNotecite] = ACTIONS(5201), + [anon_sym_BSLASHpnotecite] = ACTIONS(5201), + [anon_sym_BSLASHPnotecite] = ACTIONS(5201), + [anon_sym_BSLASHfnotecite] = ACTIONS(5201), + [anon_sym_BSLASHlabel] = ACTIONS(5201), + [anon_sym_BSLASHref] = ACTIONS(5201), + [anon_sym_BSLASHeqref] = ACTIONS(5201), + [anon_sym_BSLASHvref] = ACTIONS(5201), + [anon_sym_BSLASHVref] = ACTIONS(5201), + [anon_sym_BSLASHautoref] = ACTIONS(5201), + [anon_sym_BSLASHpageref] = ACTIONS(5201), + [anon_sym_BSLASHcref] = ACTIONS(5201), + [anon_sym_BSLASHCref] = ACTIONS(5201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnameCref] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHlabelcref] = ACTIONS(5201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCrefrange] = ACTIONS(5201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnewlabel] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), + [anon_sym_BSLASHdef] = ACTIONS(5201), + [anon_sym_BSLASHlet] = ACTIONS(5201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), + [anon_sym_BSLASHgls] = ACTIONS(5201), + [anon_sym_BSLASHGls] = ACTIONS(5201), + [anon_sym_BSLASHGLS] = ACTIONS(5201), + [anon_sym_BSLASHglspl] = ACTIONS(5201), + [anon_sym_BSLASHGlspl] = ACTIONS(5201), + [anon_sym_BSLASHGLSpl] = ACTIONS(5201), + [anon_sym_BSLASHglsdisp] = ACTIONS(5201), + [anon_sym_BSLASHglslink] = ACTIONS(5201), + [anon_sym_BSLASHglstext] = ACTIONS(5201), + [anon_sym_BSLASHGlstext] = ACTIONS(5201), + [anon_sym_BSLASHGLStext] = ACTIONS(5201), + [anon_sym_BSLASHglsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), + [anon_sym_BSLASHglsplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSplural] = ACTIONS(5201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHglsname] = ACTIONS(5201), + [anon_sym_BSLASHGlsname] = ACTIONS(5201), + [anon_sym_BSLASHGLSname] = ACTIONS(5201), + [anon_sym_BSLASHglssymbol] = ACTIONS(5201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), + [anon_sym_BSLASHglsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), + [anon_sym_BSLASHglsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), + [anon_sym_BSLASHglsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), + [anon_sym_BSLASHglsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), + [anon_sym_BSLASHglsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5201), + [anon_sym_BSLASHAcrshort] = ACTIONS(5201), + [anon_sym_BSLASHACRshort] = ACTIONS(5201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), + [anon_sym_BSLASHacrlong] = ACTIONS(5201), + [anon_sym_BSLASHAcrlong] = ACTIONS(5201), + [anon_sym_BSLASHACRlong] = ACTIONS(5201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), + [anon_sym_BSLASHacrfull] = ACTIONS(5201), + [anon_sym_BSLASHAcrfull] = ACTIONS(5201), + [anon_sym_BSLASHACRfull] = ACTIONS(5201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), + [anon_sym_BSLASHacs] = ACTIONS(5201), + [anon_sym_BSLASHAcs] = ACTIONS(5201), + [anon_sym_BSLASHacsp] = ACTIONS(5201), + [anon_sym_BSLASHAcsp] = ACTIONS(5201), + [anon_sym_BSLASHacl] = ACTIONS(5201), + [anon_sym_BSLASHAcl] = ACTIONS(5201), + [anon_sym_BSLASHaclp] = ACTIONS(5201), + [anon_sym_BSLASHAclp] = ACTIONS(5201), + [anon_sym_BSLASHacf] = ACTIONS(5201), + [anon_sym_BSLASHAcf] = ACTIONS(5201), + [anon_sym_BSLASHacfp] = ACTIONS(5201), + [anon_sym_BSLASHAcfp] = ACTIONS(5201), + [anon_sym_BSLASHac] = ACTIONS(5201), + [anon_sym_BSLASHAc] = ACTIONS(5201), + [anon_sym_BSLASHacp] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), + [anon_sym_BSLASHcolor] = ACTIONS(5201), + [anon_sym_BSLASHcolorbox] = ACTIONS(5201), + [anon_sym_BSLASHtextcolor] = ACTIONS(5201), + [anon_sym_BSLASHpagecolor] = ACTIONS(5201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), + [anon_sym_BSLASHtext] = ACTIONS(5201), + [anon_sym_BSLASHintertext] = ACTIONS(5201), + [anon_sym_shortintertext] = ACTIONS(5201), }, - [1397] = { - [sym_brack_group_text] = STATE(1424), - [sym_command_name] = ACTIONS(4929), + [1313] = { + [sym_command_name] = ACTIONS(5209), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LPAREN] = ACTIONS(4927), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_LBRACK] = ACTIONS(5443), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4927), - [anon_sym_RBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), - [anon_sym_DOLLAR] = ACTIONS(4929), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), + [anon_sym_BSLASHiffalse] = ACTIONS(5209), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_RPAREN] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_RBRACK] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_LBRACE] = ACTIONS(5207), + [sym_word] = ACTIONS(5209), + [sym_placeholder] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_CARET] = ACTIONS(5209), + [anon_sym__] = ACTIONS(5209), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_PIPE] = ACTIONS(5209), + [anon_sym_COLON] = ACTIONS(5209), + [anon_sym_SQUOTE] = ACTIONS(5209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), + [anon_sym_DOLLAR] = ACTIONS(5209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), + [anon_sym_BSLASHbegin] = ACTIONS(5209), + [anon_sym_BSLASHusepackage] = ACTIONS(5209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), + [anon_sym_BSLASHinclude] = ACTIONS(5209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), + [anon_sym_BSLASHinput] = ACTIONS(5209), + [anon_sym_BSLASHsubfile] = ACTIONS(5209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), + [anon_sym_BSLASHbibliography] = ACTIONS(5209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), + [anon_sym_BSLASHincludesvg] = ACTIONS(5209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), + [anon_sym_BSLASHimport] = ACTIONS(5209), + [anon_sym_BSLASHsubimport] = ACTIONS(5209), + [anon_sym_BSLASHinputfrom] = ACTIONS(5209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), + [anon_sym_BSLASHincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHcaption] = ACTIONS(5209), + [anon_sym_BSLASHcite] = ACTIONS(5209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCite] = ACTIONS(5209), + [anon_sym_BSLASHnocite] = ACTIONS(5209), + [anon_sym_BSLASHcitet] = ACTIONS(5209), + [anon_sym_BSLASHcitep] = ACTIONS(5209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteauthor] = ACTIONS(5209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitetitle] = ACTIONS(5209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteyear] = ACTIONS(5209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitedate] = ACTIONS(5209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteurl] = ACTIONS(5209), + [anon_sym_BSLASHfullcite] = ACTIONS(5209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), + [anon_sym_BSLASHcitealt] = ACTIONS(5209), + [anon_sym_BSLASHcitealp] = ACTIONS(5209), + [anon_sym_BSLASHcitetext] = ACTIONS(5209), + [anon_sym_BSLASHparencite] = ACTIONS(5209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHParencite] = ACTIONS(5209), + [anon_sym_BSLASHfootcite] = ACTIONS(5209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), + [anon_sym_BSLASHtextcite] = ACTIONS(5209), + [anon_sym_BSLASHTextcite] = ACTIONS(5209), + [anon_sym_BSLASHsmartcite] = ACTIONS(5209), + [anon_sym_BSLASHSmartcite] = ACTIONS(5209), + [anon_sym_BSLASHsupercite] = ACTIONS(5209), + [anon_sym_BSLASHautocite] = ACTIONS(5209), + [anon_sym_BSLASHAutocite] = ACTIONS(5209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHvolcite] = ACTIONS(5209), + [anon_sym_BSLASHVolcite] = ACTIONS(5209), + [anon_sym_BSLASHpvolcite] = ACTIONS(5209), + [anon_sym_BSLASHPvolcite] = ACTIONS(5209), + [anon_sym_BSLASHfvolcite] = ACTIONS(5209), + [anon_sym_BSLASHftvolcite] = ACTIONS(5209), + [anon_sym_BSLASHsvolcite] = ACTIONS(5209), + [anon_sym_BSLASHSvolcite] = ACTIONS(5209), + [anon_sym_BSLASHtvolcite] = ACTIONS(5209), + [anon_sym_BSLASHTvolcite] = ACTIONS(5209), + [anon_sym_BSLASHavolcite] = ACTIONS(5209), + [anon_sym_BSLASHAvolcite] = ACTIONS(5209), + [anon_sym_BSLASHnotecite] = ACTIONS(5209), + [anon_sym_BSLASHNotecite] = ACTIONS(5209), + [anon_sym_BSLASHpnotecite] = ACTIONS(5209), + [anon_sym_BSLASHPnotecite] = ACTIONS(5209), + [anon_sym_BSLASHfnotecite] = ACTIONS(5209), + [anon_sym_BSLASHlabel] = ACTIONS(5209), + [anon_sym_BSLASHref] = ACTIONS(5209), + [anon_sym_BSLASHeqref] = ACTIONS(5209), + [anon_sym_BSLASHvref] = ACTIONS(5209), + [anon_sym_BSLASHVref] = ACTIONS(5209), + [anon_sym_BSLASHautoref] = ACTIONS(5209), + [anon_sym_BSLASHpageref] = ACTIONS(5209), + [anon_sym_BSLASHcref] = ACTIONS(5209), + [anon_sym_BSLASHCref] = ACTIONS(5209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnameCref] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHlabelcref] = ACTIONS(5209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCrefrange] = ACTIONS(5209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnewlabel] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdef] = ACTIONS(5209), + [anon_sym_BSLASHlet] = ACTIONS(5209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), + [anon_sym_BSLASHgls] = ACTIONS(5209), + [anon_sym_BSLASHGls] = ACTIONS(5209), + [anon_sym_BSLASHGLS] = ACTIONS(5209), + [anon_sym_BSLASHglspl] = ACTIONS(5209), + [anon_sym_BSLASHGlspl] = ACTIONS(5209), + [anon_sym_BSLASHGLSpl] = ACTIONS(5209), + [anon_sym_BSLASHglsdisp] = ACTIONS(5209), + [anon_sym_BSLASHglslink] = ACTIONS(5209), + [anon_sym_BSLASHglstext] = ACTIONS(5209), + [anon_sym_BSLASHGlstext] = ACTIONS(5209), + [anon_sym_BSLASHGLStext] = ACTIONS(5209), + [anon_sym_BSLASHglsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), + [anon_sym_BSLASHglsplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSplural] = ACTIONS(5209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHglsname] = ACTIONS(5209), + [anon_sym_BSLASHGlsname] = ACTIONS(5209), + [anon_sym_BSLASHGLSname] = ACTIONS(5209), + [anon_sym_BSLASHglssymbol] = ACTIONS(5209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), + [anon_sym_BSLASHglsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), + [anon_sym_BSLASHglsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), + [anon_sym_BSLASHglsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), + [anon_sym_BSLASHglsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), + [anon_sym_BSLASHglsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), + [anon_sym_BSLASHnewacronym] = ACTIONS(5209), + [anon_sym_BSLASHacrshort] = ACTIONS(5209), + [anon_sym_BSLASHAcrshort] = ACTIONS(5209), + [anon_sym_BSLASHACRshort] = ACTIONS(5209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), + [anon_sym_BSLASHacrlong] = ACTIONS(5209), + [anon_sym_BSLASHAcrlong] = ACTIONS(5209), + [anon_sym_BSLASHACRlong] = ACTIONS(5209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), + [anon_sym_BSLASHacrfull] = ACTIONS(5209), + [anon_sym_BSLASHAcrfull] = ACTIONS(5209), + [anon_sym_BSLASHACRfull] = ACTIONS(5209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), + [anon_sym_BSLASHacs] = ACTIONS(5209), + [anon_sym_BSLASHAcs] = ACTIONS(5209), + [anon_sym_BSLASHacsp] = ACTIONS(5209), + [anon_sym_BSLASHAcsp] = ACTIONS(5209), + [anon_sym_BSLASHacl] = ACTIONS(5209), + [anon_sym_BSLASHAcl] = ACTIONS(5209), + [anon_sym_BSLASHaclp] = ACTIONS(5209), + [anon_sym_BSLASHAclp] = ACTIONS(5209), + [anon_sym_BSLASHacf] = ACTIONS(5209), + [anon_sym_BSLASHAcf] = ACTIONS(5209), + [anon_sym_BSLASHacfp] = ACTIONS(5209), + [anon_sym_BSLASHAcfp] = ACTIONS(5209), + [anon_sym_BSLASHac] = ACTIONS(5209), + [anon_sym_BSLASHAc] = ACTIONS(5209), + [anon_sym_BSLASHacp] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), + [anon_sym_BSLASHcolor] = ACTIONS(5209), + [anon_sym_BSLASHcolorbox] = ACTIONS(5209), + [anon_sym_BSLASHtextcolor] = ACTIONS(5209), + [anon_sym_BSLASHpagecolor] = ACTIONS(5209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHtext] = ACTIONS(5209), + [anon_sym_BSLASHintertext] = ACTIONS(5209), + [anon_sym_shortintertext] = ACTIONS(5209), }, - [1398] = { - [sym_command_name] = ACTIONS(4983), + [1314] = { + [sym_command_name] = ACTIONS(5237), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5237), + [anon_sym_LPAREN] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(5235), + [anon_sym_LBRACK] = ACTIONS(5235), + [anon_sym_RBRACK] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_EQ] = ACTIONS(5235), + [anon_sym_LBRACE] = ACTIONS(5235), + [sym_word] = ACTIONS(5237), + [sym_placeholder] = ACTIONS(5235), + [anon_sym_PLUS] = ACTIONS(5237), + [anon_sym_DASH] = ACTIONS(5237), + [anon_sym_STAR] = ACTIONS(5237), + [anon_sym_SLASH] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym__] = ACTIONS(5237), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_BANG] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_COLON] = ACTIONS(5237), + [anon_sym_SQUOTE] = ACTIONS(5237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), + [anon_sym_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), + [anon_sym_BSLASHbegin] = ACTIONS(5237), + [anon_sym_BSLASHusepackage] = ACTIONS(5237), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), + [anon_sym_BSLASHinclude] = ACTIONS(5237), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), + [anon_sym_BSLASHinput] = ACTIONS(5237), + [anon_sym_BSLASHsubfile] = ACTIONS(5237), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), + [anon_sym_BSLASHbibliography] = ACTIONS(5237), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), + [anon_sym_BSLASHincludesvg] = ACTIONS(5237), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), + [anon_sym_BSLASHimport] = ACTIONS(5237), + [anon_sym_BSLASHsubimport] = ACTIONS(5237), + [anon_sym_BSLASHinputfrom] = ACTIONS(5237), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), + [anon_sym_BSLASHincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHcaption] = ACTIONS(5237), + [anon_sym_BSLASHcite] = ACTIONS(5237), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCite] = ACTIONS(5237), + [anon_sym_BSLASHnocite] = ACTIONS(5237), + [anon_sym_BSLASHcitet] = ACTIONS(5237), + [anon_sym_BSLASHcitep] = ACTIONS(5237), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteyear] = ACTIONS(5237), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitedate] = ACTIONS(5237), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteurl] = ACTIONS(5237), + [anon_sym_BSLASHfullcite] = ACTIONS(5237), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), + [anon_sym_BSLASHcitealt] = ACTIONS(5237), + [anon_sym_BSLASHcitealp] = ACTIONS(5237), + [anon_sym_BSLASHcitetext] = ACTIONS(5237), + [anon_sym_BSLASHparencite] = ACTIONS(5237), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHParencite] = ACTIONS(5237), + [anon_sym_BSLASHfootcite] = ACTIONS(5237), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), + [anon_sym_BSLASHtextcite] = ACTIONS(5237), + [anon_sym_BSLASHTextcite] = ACTIONS(5237), + [anon_sym_BSLASHsmartcite] = ACTIONS(5237), + [anon_sym_BSLASHSmartcite] = ACTIONS(5237), + [anon_sym_BSLASHsupercite] = ACTIONS(5237), + [anon_sym_BSLASHautocite] = ACTIONS(5237), + [anon_sym_BSLASHAutocite] = ACTIONS(5237), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHvolcite] = ACTIONS(5237), + [anon_sym_BSLASHVolcite] = ACTIONS(5237), + [anon_sym_BSLASHpvolcite] = ACTIONS(5237), + [anon_sym_BSLASHPvolcite] = ACTIONS(5237), + [anon_sym_BSLASHfvolcite] = ACTIONS(5237), + [anon_sym_BSLASHftvolcite] = ACTIONS(5237), + [anon_sym_BSLASHsvolcite] = ACTIONS(5237), + [anon_sym_BSLASHSvolcite] = ACTIONS(5237), + [anon_sym_BSLASHtvolcite] = ACTIONS(5237), + [anon_sym_BSLASHTvolcite] = ACTIONS(5237), + [anon_sym_BSLASHavolcite] = ACTIONS(5237), + [anon_sym_BSLASHAvolcite] = ACTIONS(5237), + [anon_sym_BSLASHnotecite] = ACTIONS(5237), + [anon_sym_BSLASHNotecite] = ACTIONS(5237), + [anon_sym_BSLASHpnotecite] = ACTIONS(5237), + [anon_sym_BSLASHPnotecite] = ACTIONS(5237), + [anon_sym_BSLASHfnotecite] = ACTIONS(5237), + [anon_sym_BSLASHlabel] = ACTIONS(5237), + [anon_sym_BSLASHref] = ACTIONS(5237), + [anon_sym_BSLASHeqref] = ACTIONS(5237), + [anon_sym_BSLASHvref] = ACTIONS(5237), + [anon_sym_BSLASHVref] = ACTIONS(5237), + [anon_sym_BSLASHautoref] = ACTIONS(5237), + [anon_sym_BSLASHpageref] = ACTIONS(5237), + [anon_sym_BSLASHcref] = ACTIONS(5237), + [anon_sym_BSLASHCref] = ACTIONS(5237), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnameCref] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHlabelcref] = ACTIONS(5237), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnewlabel] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), + [anon_sym_BSLASHdef] = ACTIONS(5237), + [anon_sym_BSLASHlet] = ACTIONS(5237), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), + [anon_sym_BSLASHgls] = ACTIONS(5237), + [anon_sym_BSLASHGls] = ACTIONS(5237), + [anon_sym_BSLASHGLS] = ACTIONS(5237), + [anon_sym_BSLASHglspl] = ACTIONS(5237), + [anon_sym_BSLASHGlspl] = ACTIONS(5237), + [anon_sym_BSLASHGLSpl] = ACTIONS(5237), + [anon_sym_BSLASHglsdisp] = ACTIONS(5237), + [anon_sym_BSLASHglslink] = ACTIONS(5237), + [anon_sym_BSLASHglstext] = ACTIONS(5237), + [anon_sym_BSLASHGlstext] = ACTIONS(5237), + [anon_sym_BSLASHGLStext] = ACTIONS(5237), + [anon_sym_BSLASHglsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), + [anon_sym_BSLASHglsplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSplural] = ACTIONS(5237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHglsname] = ACTIONS(5237), + [anon_sym_BSLASHGlsname] = ACTIONS(5237), + [anon_sym_BSLASHGLSname] = ACTIONS(5237), + [anon_sym_BSLASHglssymbol] = ACTIONS(5237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), + [anon_sym_BSLASHglsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), + [anon_sym_BSLASHglsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), + [anon_sym_BSLASHglsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), + [anon_sym_BSLASHglsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), + [anon_sym_BSLASHglsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), + [anon_sym_BSLASHnewacronym] = ACTIONS(5237), + [anon_sym_BSLASHacrshort] = ACTIONS(5237), + [anon_sym_BSLASHAcrshort] = ACTIONS(5237), + [anon_sym_BSLASHACRshort] = ACTIONS(5237), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), + [anon_sym_BSLASHacrlong] = ACTIONS(5237), + [anon_sym_BSLASHAcrlong] = ACTIONS(5237), + [anon_sym_BSLASHACRlong] = ACTIONS(5237), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), + [anon_sym_BSLASHacrfull] = ACTIONS(5237), + [anon_sym_BSLASHAcrfull] = ACTIONS(5237), + [anon_sym_BSLASHACRfull] = ACTIONS(5237), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), + [anon_sym_BSLASHacs] = ACTIONS(5237), + [anon_sym_BSLASHAcs] = ACTIONS(5237), + [anon_sym_BSLASHacsp] = ACTIONS(5237), + [anon_sym_BSLASHAcsp] = ACTIONS(5237), + [anon_sym_BSLASHacl] = ACTIONS(5237), + [anon_sym_BSLASHAcl] = ACTIONS(5237), + [anon_sym_BSLASHaclp] = ACTIONS(5237), + [anon_sym_BSLASHAclp] = ACTIONS(5237), + [anon_sym_BSLASHacf] = ACTIONS(5237), + [anon_sym_BSLASHAcf] = ACTIONS(5237), + [anon_sym_BSLASHacfp] = ACTIONS(5237), + [anon_sym_BSLASHAcfp] = ACTIONS(5237), + [anon_sym_BSLASHac] = ACTIONS(5237), + [anon_sym_BSLASHAc] = ACTIONS(5237), + [anon_sym_BSLASHacp] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), + [anon_sym_BSLASHcolor] = ACTIONS(5237), + [anon_sym_BSLASHcolorbox] = ACTIONS(5237), + [anon_sym_BSLASHtextcolor] = ACTIONS(5237), + [anon_sym_BSLASHpagecolor] = ACTIONS(5237), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), + [anon_sym_BSLASHtext] = ACTIONS(5237), + [anon_sym_BSLASHintertext] = ACTIONS(5237), + [anon_sym_shortintertext] = ACTIONS(5237), + }, + [1315] = { + [sym_command_name] = ACTIONS(5241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5241), + [anon_sym_LPAREN] = ACTIONS(5239), + [anon_sym_RPAREN] = ACTIONS(5239), + [anon_sym_LBRACK] = ACTIONS(5239), + [anon_sym_RBRACK] = ACTIONS(5239), + [anon_sym_COMMA] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(5239), + [sym_word] = ACTIONS(5241), + [sym_placeholder] = ACTIONS(5239), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5241), + [anon_sym_CARET] = ACTIONS(5241), + [anon_sym__] = ACTIONS(5241), + [anon_sym_LT] = ACTIONS(5241), + [anon_sym_GT] = ACTIONS(5241), + [anon_sym_BANG] = ACTIONS(5241), + [anon_sym_PIPE] = ACTIONS(5241), + [anon_sym_COLON] = ACTIONS(5241), + [anon_sym_SQUOTE] = ACTIONS(5241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), + [anon_sym_DOLLAR] = ACTIONS(5241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), + [anon_sym_BSLASHbegin] = ACTIONS(5241), + [anon_sym_BSLASHusepackage] = ACTIONS(5241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), + [anon_sym_BSLASHinclude] = ACTIONS(5241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), + [anon_sym_BSLASHinput] = ACTIONS(5241), + [anon_sym_BSLASHsubfile] = ACTIONS(5241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), + [anon_sym_BSLASHbibliography] = ACTIONS(5241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), + [anon_sym_BSLASHincludesvg] = ACTIONS(5241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), + [anon_sym_BSLASHimport] = ACTIONS(5241), + [anon_sym_BSLASHsubimport] = ACTIONS(5241), + [anon_sym_BSLASHinputfrom] = ACTIONS(5241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), + [anon_sym_BSLASHincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHcaption] = ACTIONS(5241), + [anon_sym_BSLASHcite] = ACTIONS(5241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCite] = ACTIONS(5241), + [anon_sym_BSLASHnocite] = ACTIONS(5241), + [anon_sym_BSLASHcitet] = ACTIONS(5241), + [anon_sym_BSLASHcitep] = ACTIONS(5241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor] = ACTIONS(5241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle] = ACTIONS(5241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteyear] = ACTIONS(5241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitedate] = ACTIONS(5241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteurl] = ACTIONS(5241), + [anon_sym_BSLASHfullcite] = ACTIONS(5241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), + [anon_sym_BSLASHcitealt] = ACTIONS(5241), + [anon_sym_BSLASHcitealp] = ACTIONS(5241), + [anon_sym_BSLASHcitetext] = ACTIONS(5241), + [anon_sym_BSLASHparencite] = ACTIONS(5241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHParencite] = ACTIONS(5241), + [anon_sym_BSLASHfootcite] = ACTIONS(5241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), + [anon_sym_BSLASHtextcite] = ACTIONS(5241), + [anon_sym_BSLASHTextcite] = ACTIONS(5241), + [anon_sym_BSLASHsmartcite] = ACTIONS(5241), + [anon_sym_BSLASHSmartcite] = ACTIONS(5241), + [anon_sym_BSLASHsupercite] = ACTIONS(5241), + [anon_sym_BSLASHautocite] = ACTIONS(5241), + [anon_sym_BSLASHAutocite] = ACTIONS(5241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHvolcite] = ACTIONS(5241), + [anon_sym_BSLASHVolcite] = ACTIONS(5241), + [anon_sym_BSLASHpvolcite] = ACTIONS(5241), + [anon_sym_BSLASHPvolcite] = ACTIONS(5241), + [anon_sym_BSLASHfvolcite] = ACTIONS(5241), + [anon_sym_BSLASHftvolcite] = ACTIONS(5241), + [anon_sym_BSLASHsvolcite] = ACTIONS(5241), + [anon_sym_BSLASHSvolcite] = ACTIONS(5241), + [anon_sym_BSLASHtvolcite] = ACTIONS(5241), + [anon_sym_BSLASHTvolcite] = ACTIONS(5241), + [anon_sym_BSLASHavolcite] = ACTIONS(5241), + [anon_sym_BSLASHAvolcite] = ACTIONS(5241), + [anon_sym_BSLASHnotecite] = ACTIONS(5241), + [anon_sym_BSLASHNotecite] = ACTIONS(5241), + [anon_sym_BSLASHpnotecite] = ACTIONS(5241), + [anon_sym_BSLASHPnotecite] = ACTIONS(5241), + [anon_sym_BSLASHfnotecite] = ACTIONS(5241), + [anon_sym_BSLASHlabel] = ACTIONS(5241), + [anon_sym_BSLASHref] = ACTIONS(5241), + [anon_sym_BSLASHeqref] = ACTIONS(5241), + [anon_sym_BSLASHvref] = ACTIONS(5241), + [anon_sym_BSLASHVref] = ACTIONS(5241), + [anon_sym_BSLASHautoref] = ACTIONS(5241), + [anon_sym_BSLASHpageref] = ACTIONS(5241), + [anon_sym_BSLASHcref] = ACTIONS(5241), + [anon_sym_BSLASHCref] = ACTIONS(5241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnameCref] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHlabelcref] = ACTIONS(5241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange] = ACTIONS(5241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnewlabel] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), + [anon_sym_BSLASHdef] = ACTIONS(5241), + [anon_sym_BSLASHlet] = ACTIONS(5241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), + [anon_sym_BSLASHgls] = ACTIONS(5241), + [anon_sym_BSLASHGls] = ACTIONS(5241), + [anon_sym_BSLASHGLS] = ACTIONS(5241), + [anon_sym_BSLASHglspl] = ACTIONS(5241), + [anon_sym_BSLASHGlspl] = ACTIONS(5241), + [anon_sym_BSLASHGLSpl] = ACTIONS(5241), + [anon_sym_BSLASHglsdisp] = ACTIONS(5241), + [anon_sym_BSLASHglslink] = ACTIONS(5241), + [anon_sym_BSLASHglstext] = ACTIONS(5241), + [anon_sym_BSLASHGlstext] = ACTIONS(5241), + [anon_sym_BSLASHGLStext] = ACTIONS(5241), + [anon_sym_BSLASHglsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), + [anon_sym_BSLASHglsplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSplural] = ACTIONS(5241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHglsname] = ACTIONS(5241), + [anon_sym_BSLASHGlsname] = ACTIONS(5241), + [anon_sym_BSLASHGLSname] = ACTIONS(5241), + [anon_sym_BSLASHglssymbol] = ACTIONS(5241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), + [anon_sym_BSLASHglsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), + [anon_sym_BSLASHglsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), + [anon_sym_BSLASHglsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), + [anon_sym_BSLASHglsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), + [anon_sym_BSLASHglsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), + [anon_sym_BSLASHnewacronym] = ACTIONS(5241), + [anon_sym_BSLASHacrshort] = ACTIONS(5241), + [anon_sym_BSLASHAcrshort] = ACTIONS(5241), + [anon_sym_BSLASHACRshort] = ACTIONS(5241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), + [anon_sym_BSLASHacrlong] = ACTIONS(5241), + [anon_sym_BSLASHAcrlong] = ACTIONS(5241), + [anon_sym_BSLASHACRlong] = ACTIONS(5241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), + [anon_sym_BSLASHacrfull] = ACTIONS(5241), + [anon_sym_BSLASHAcrfull] = ACTIONS(5241), + [anon_sym_BSLASHACRfull] = ACTIONS(5241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), + [anon_sym_BSLASHacs] = ACTIONS(5241), + [anon_sym_BSLASHAcs] = ACTIONS(5241), + [anon_sym_BSLASHacsp] = ACTIONS(5241), + [anon_sym_BSLASHAcsp] = ACTIONS(5241), + [anon_sym_BSLASHacl] = ACTIONS(5241), + [anon_sym_BSLASHAcl] = ACTIONS(5241), + [anon_sym_BSLASHaclp] = ACTIONS(5241), + [anon_sym_BSLASHAclp] = ACTIONS(5241), + [anon_sym_BSLASHacf] = ACTIONS(5241), + [anon_sym_BSLASHAcf] = ACTIONS(5241), + [anon_sym_BSLASHacfp] = ACTIONS(5241), + [anon_sym_BSLASHAcfp] = ACTIONS(5241), + [anon_sym_BSLASHac] = ACTIONS(5241), + [anon_sym_BSLASHAc] = ACTIONS(5241), + [anon_sym_BSLASHacp] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), + [anon_sym_BSLASHcolor] = ACTIONS(5241), + [anon_sym_BSLASHcolorbox] = ACTIONS(5241), + [anon_sym_BSLASHtextcolor] = ACTIONS(5241), + [anon_sym_BSLASHpagecolor] = ACTIONS(5241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), + [anon_sym_BSLASHtext] = ACTIONS(5241), + [anon_sym_BSLASHintertext] = ACTIONS(5241), + [anon_sym_shortintertext] = ACTIONS(5241), + }, + [1316] = { + [sym_command_name] = ACTIONS(5245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5243), + [anon_sym_RPAREN] = ACTIONS(5243), + [anon_sym_LBRACK] = ACTIONS(5243), + [anon_sym_RBRACK] = ACTIONS(5243), + [anon_sym_COMMA] = ACTIONS(5243), + [anon_sym_EQ] = ACTIONS(5243), + [anon_sym_LBRACE] = ACTIONS(5243), + [sym_word] = ACTIONS(5245), + [sym_placeholder] = ACTIONS(5243), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_STAR] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5245), + [anon_sym_CARET] = ACTIONS(5245), + [anon_sym__] = ACTIONS(5245), + [anon_sym_LT] = ACTIONS(5245), + [anon_sym_GT] = ACTIONS(5245), + [anon_sym_BANG] = ACTIONS(5245), + [anon_sym_PIPE] = ACTIONS(5245), + [anon_sym_COLON] = ACTIONS(5245), + [anon_sym_SQUOTE] = ACTIONS(5245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5243), + [anon_sym_DOLLAR] = ACTIONS(5245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5243), + [anon_sym_BSLASHbegin] = ACTIONS(5245), + [anon_sym_BSLASHusepackage] = ACTIONS(5245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), + [anon_sym_BSLASHinclude] = ACTIONS(5245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), + [anon_sym_BSLASHinput] = ACTIONS(5245), + [anon_sym_BSLASHsubfile] = ACTIONS(5245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), + [anon_sym_BSLASHbibliography] = ACTIONS(5245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), + [anon_sym_BSLASHincludesvg] = ACTIONS(5245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), + [anon_sym_BSLASHimport] = ACTIONS(5245), + [anon_sym_BSLASHsubimport] = ACTIONS(5245), + [anon_sym_BSLASHinputfrom] = ACTIONS(5245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), + [anon_sym_BSLASHincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHcaption] = ACTIONS(5245), + [anon_sym_BSLASHcite] = ACTIONS(5245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCite] = ACTIONS(5245), + [anon_sym_BSLASHnocite] = ACTIONS(5245), + [anon_sym_BSLASHcitet] = ACTIONS(5245), + [anon_sym_BSLASHcitep] = ACTIONS(5245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteauthor] = ACTIONS(5245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitetitle] = ACTIONS(5245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteyear] = ACTIONS(5245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitedate] = ACTIONS(5245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteurl] = ACTIONS(5245), + [anon_sym_BSLASHfullcite] = ACTIONS(5245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), + [anon_sym_BSLASHcitealt] = ACTIONS(5245), + [anon_sym_BSLASHcitealp] = ACTIONS(5245), + [anon_sym_BSLASHcitetext] = ACTIONS(5245), + [anon_sym_BSLASHparencite] = ACTIONS(5245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHParencite] = ACTIONS(5245), + [anon_sym_BSLASHfootcite] = ACTIONS(5245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), + [anon_sym_BSLASHtextcite] = ACTIONS(5245), + [anon_sym_BSLASHTextcite] = ACTIONS(5245), + [anon_sym_BSLASHsmartcite] = ACTIONS(5245), + [anon_sym_BSLASHSmartcite] = ACTIONS(5245), + [anon_sym_BSLASHsupercite] = ACTIONS(5245), + [anon_sym_BSLASHautocite] = ACTIONS(5245), + [anon_sym_BSLASHAutocite] = ACTIONS(5245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHvolcite] = ACTIONS(5245), + [anon_sym_BSLASHVolcite] = ACTIONS(5245), + [anon_sym_BSLASHpvolcite] = ACTIONS(5245), + [anon_sym_BSLASHPvolcite] = ACTIONS(5245), + [anon_sym_BSLASHfvolcite] = ACTIONS(5245), + [anon_sym_BSLASHftvolcite] = ACTIONS(5245), + [anon_sym_BSLASHsvolcite] = ACTIONS(5245), + [anon_sym_BSLASHSvolcite] = ACTIONS(5245), + [anon_sym_BSLASHtvolcite] = ACTIONS(5245), + [anon_sym_BSLASHTvolcite] = ACTIONS(5245), + [anon_sym_BSLASHavolcite] = ACTIONS(5245), + [anon_sym_BSLASHAvolcite] = ACTIONS(5245), + [anon_sym_BSLASHnotecite] = ACTIONS(5245), + [anon_sym_BSLASHNotecite] = ACTIONS(5245), + [anon_sym_BSLASHpnotecite] = ACTIONS(5245), + [anon_sym_BSLASHPnotecite] = ACTIONS(5245), + [anon_sym_BSLASHfnotecite] = ACTIONS(5245), + [anon_sym_BSLASHlabel] = ACTIONS(5245), + [anon_sym_BSLASHref] = ACTIONS(5245), + [anon_sym_BSLASHeqref] = ACTIONS(5245), + [anon_sym_BSLASHvref] = ACTIONS(5245), + [anon_sym_BSLASHVref] = ACTIONS(5245), + [anon_sym_BSLASHautoref] = ACTIONS(5245), + [anon_sym_BSLASHpageref] = ACTIONS(5245), + [anon_sym_BSLASHcref] = ACTIONS(5245), + [anon_sym_BSLASHCref] = ACTIONS(5245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnameCref] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHlabelcref] = ACTIONS(5245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCrefrange] = ACTIONS(5245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnewlabel] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), + [anon_sym_BSLASHdef] = ACTIONS(5245), + [anon_sym_BSLASHlet] = ACTIONS(5245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), + [anon_sym_BSLASHgls] = ACTIONS(5245), + [anon_sym_BSLASHGls] = ACTIONS(5245), + [anon_sym_BSLASHGLS] = ACTIONS(5245), + [anon_sym_BSLASHglspl] = ACTIONS(5245), + [anon_sym_BSLASHGlspl] = ACTIONS(5245), + [anon_sym_BSLASHGLSpl] = ACTIONS(5245), + [anon_sym_BSLASHglsdisp] = ACTIONS(5245), + [anon_sym_BSLASHglslink] = ACTIONS(5245), + [anon_sym_BSLASHglstext] = ACTIONS(5245), + [anon_sym_BSLASHGlstext] = ACTIONS(5245), + [anon_sym_BSLASHGLStext] = ACTIONS(5245), + [anon_sym_BSLASHglsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), + [anon_sym_BSLASHglsplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSplural] = ACTIONS(5245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHglsname] = ACTIONS(5245), + [anon_sym_BSLASHGlsname] = ACTIONS(5245), + [anon_sym_BSLASHGLSname] = ACTIONS(5245), + [anon_sym_BSLASHglssymbol] = ACTIONS(5245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), + [anon_sym_BSLASHglsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), + [anon_sym_BSLASHglsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), + [anon_sym_BSLASHglsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), + [anon_sym_BSLASHglsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), + [anon_sym_BSLASHglsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), + [anon_sym_BSLASHnewacronym] = ACTIONS(5245), + [anon_sym_BSLASHacrshort] = ACTIONS(5245), + [anon_sym_BSLASHAcrshort] = ACTIONS(5245), + [anon_sym_BSLASHACRshort] = ACTIONS(5245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), + [anon_sym_BSLASHacrlong] = ACTIONS(5245), + [anon_sym_BSLASHAcrlong] = ACTIONS(5245), + [anon_sym_BSLASHACRlong] = ACTIONS(5245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), + [anon_sym_BSLASHacrfull] = ACTIONS(5245), + [anon_sym_BSLASHAcrfull] = ACTIONS(5245), + [anon_sym_BSLASHACRfull] = ACTIONS(5245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), + [anon_sym_BSLASHacs] = ACTIONS(5245), + [anon_sym_BSLASHAcs] = ACTIONS(5245), + [anon_sym_BSLASHacsp] = ACTIONS(5245), + [anon_sym_BSLASHAcsp] = ACTIONS(5245), + [anon_sym_BSLASHacl] = ACTIONS(5245), + [anon_sym_BSLASHAcl] = ACTIONS(5245), + [anon_sym_BSLASHaclp] = ACTIONS(5245), + [anon_sym_BSLASHAclp] = ACTIONS(5245), + [anon_sym_BSLASHacf] = ACTIONS(5245), + [anon_sym_BSLASHAcf] = ACTIONS(5245), + [anon_sym_BSLASHacfp] = ACTIONS(5245), + [anon_sym_BSLASHAcfp] = ACTIONS(5245), + [anon_sym_BSLASHac] = ACTIONS(5245), + [anon_sym_BSLASHAc] = ACTIONS(5245), + [anon_sym_BSLASHacp] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), + [anon_sym_BSLASHcolor] = ACTIONS(5245), + [anon_sym_BSLASHcolorbox] = ACTIONS(5245), + [anon_sym_BSLASHtextcolor] = ACTIONS(5245), + [anon_sym_BSLASHpagecolor] = ACTIONS(5245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), + [anon_sym_BSLASHtext] = ACTIONS(5245), + [anon_sym_BSLASHintertext] = ACTIONS(5245), + [anon_sym_shortintertext] = ACTIONS(5245), + }, + [1317] = { + [sym_command_name] = ACTIONS(5249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5249), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5247), + [anon_sym_LBRACK] = ACTIONS(5247), + [anon_sym_RBRACK] = ACTIONS(5247), + [anon_sym_COMMA] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_LBRACE] = ACTIONS(5247), + [sym_word] = ACTIONS(5249), + [sym_placeholder] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5249), + [anon_sym_STAR] = ACTIONS(5249), + [anon_sym_SLASH] = ACTIONS(5249), + [anon_sym_CARET] = ACTIONS(5249), + [anon_sym__] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(5249), + [anon_sym_GT] = ACTIONS(5249), + [anon_sym_BANG] = ACTIONS(5249), + [anon_sym_PIPE] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_SQUOTE] = ACTIONS(5249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), + [anon_sym_DOLLAR] = ACTIONS(5249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), + [anon_sym_BSLASHbegin] = ACTIONS(5249), + [anon_sym_BSLASHusepackage] = ACTIONS(5249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), + [anon_sym_BSLASHinclude] = ACTIONS(5249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), + [anon_sym_BSLASHinput] = ACTIONS(5249), + [anon_sym_BSLASHsubfile] = ACTIONS(5249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), + [anon_sym_BSLASHbibliography] = ACTIONS(5249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), + [anon_sym_BSLASHincludesvg] = ACTIONS(5249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), + [anon_sym_BSLASHimport] = ACTIONS(5249), + [anon_sym_BSLASHsubimport] = ACTIONS(5249), + [anon_sym_BSLASHinputfrom] = ACTIONS(5249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), + [anon_sym_BSLASHincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHcaption] = ACTIONS(5249), + [anon_sym_BSLASHcite] = ACTIONS(5249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCite] = ACTIONS(5249), + [anon_sym_BSLASHnocite] = ACTIONS(5249), + [anon_sym_BSLASHcitet] = ACTIONS(5249), + [anon_sym_BSLASHcitep] = ACTIONS(5249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteauthor] = ACTIONS(5249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitetitle] = ACTIONS(5249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteyear] = ACTIONS(5249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitedate] = ACTIONS(5249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteurl] = ACTIONS(5249), + [anon_sym_BSLASHfullcite] = ACTIONS(5249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), + [anon_sym_BSLASHcitealt] = ACTIONS(5249), + [anon_sym_BSLASHcitealp] = ACTIONS(5249), + [anon_sym_BSLASHcitetext] = ACTIONS(5249), + [anon_sym_BSLASHparencite] = ACTIONS(5249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHParencite] = ACTIONS(5249), + [anon_sym_BSLASHfootcite] = ACTIONS(5249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), + [anon_sym_BSLASHtextcite] = ACTIONS(5249), + [anon_sym_BSLASHTextcite] = ACTIONS(5249), + [anon_sym_BSLASHsmartcite] = ACTIONS(5249), + [anon_sym_BSLASHSmartcite] = ACTIONS(5249), + [anon_sym_BSLASHsupercite] = ACTIONS(5249), + [anon_sym_BSLASHautocite] = ACTIONS(5249), + [anon_sym_BSLASHAutocite] = ACTIONS(5249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHvolcite] = ACTIONS(5249), + [anon_sym_BSLASHVolcite] = ACTIONS(5249), + [anon_sym_BSLASHpvolcite] = ACTIONS(5249), + [anon_sym_BSLASHPvolcite] = ACTIONS(5249), + [anon_sym_BSLASHfvolcite] = ACTIONS(5249), + [anon_sym_BSLASHftvolcite] = ACTIONS(5249), + [anon_sym_BSLASHsvolcite] = ACTIONS(5249), + [anon_sym_BSLASHSvolcite] = ACTIONS(5249), + [anon_sym_BSLASHtvolcite] = ACTIONS(5249), + [anon_sym_BSLASHTvolcite] = ACTIONS(5249), + [anon_sym_BSLASHavolcite] = ACTIONS(5249), + [anon_sym_BSLASHAvolcite] = ACTIONS(5249), + [anon_sym_BSLASHnotecite] = ACTIONS(5249), + [anon_sym_BSLASHNotecite] = ACTIONS(5249), + [anon_sym_BSLASHpnotecite] = ACTIONS(5249), + [anon_sym_BSLASHPnotecite] = ACTIONS(5249), + [anon_sym_BSLASHfnotecite] = ACTIONS(5249), + [anon_sym_BSLASHlabel] = ACTIONS(5249), + [anon_sym_BSLASHref] = ACTIONS(5249), + [anon_sym_BSLASHeqref] = ACTIONS(5249), + [anon_sym_BSLASHvref] = ACTIONS(5249), + [anon_sym_BSLASHVref] = ACTIONS(5249), + [anon_sym_BSLASHautoref] = ACTIONS(5249), + [anon_sym_BSLASHpageref] = ACTIONS(5249), + [anon_sym_BSLASHcref] = ACTIONS(5249), + [anon_sym_BSLASHCref] = ACTIONS(5249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnameCref] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHlabelcref] = ACTIONS(5249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + [anon_sym_BSLASHtext] = ACTIONS(5249), + [anon_sym_BSLASHintertext] = ACTIONS(5249), + [anon_sym_shortintertext] = ACTIONS(5249), + }, + [1318] = { + [sym_command_name] = ACTIONS(5253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5253), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(5251), + [anon_sym_LBRACK] = ACTIONS(5251), + [anon_sym_RBRACK] = ACTIONS(5251), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5251), + [sym_word] = ACTIONS(5253), + [sym_placeholder] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5253), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym__] = ACTIONS(5253), + [anon_sym_LT] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5253), + [anon_sym_BANG] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_SQUOTE] = ACTIONS(5253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), + [anon_sym_DOLLAR] = ACTIONS(5253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), + [anon_sym_BSLASHbegin] = ACTIONS(5253), + [anon_sym_BSLASHusepackage] = ACTIONS(5253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHinclude] = ACTIONS(5253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), + [anon_sym_BSLASHinput] = ACTIONS(5253), + [anon_sym_BSLASHsubfile] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), + [anon_sym_BSLASHbibliography] = ACTIONS(5253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), + [anon_sym_BSLASHincludesvg] = ACTIONS(5253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), + [anon_sym_BSLASHimport] = ACTIONS(5253), + [anon_sym_BSLASHsubimport] = ACTIONS(5253), + [anon_sym_BSLASHinputfrom] = ACTIONS(5253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), + [anon_sym_BSLASHincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHcaption] = ACTIONS(5253), + [anon_sym_BSLASHcite] = ACTIONS(5253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCite] = ACTIONS(5253), + [anon_sym_BSLASHnocite] = ACTIONS(5253), + [anon_sym_BSLASHcitet] = ACTIONS(5253), + [anon_sym_BSLASHcitep] = ACTIONS(5253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteauthor] = ACTIONS(5253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitetitle] = ACTIONS(5253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteyear] = ACTIONS(5253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitedate] = ACTIONS(5253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteurl] = ACTIONS(5253), + [anon_sym_BSLASHfullcite] = ACTIONS(5253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), + [anon_sym_BSLASHcitealt] = ACTIONS(5253), + [anon_sym_BSLASHcitealp] = ACTIONS(5253), + [anon_sym_BSLASHcitetext] = ACTIONS(5253), + [anon_sym_BSLASHparencite] = ACTIONS(5253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHParencite] = ACTIONS(5253), + [anon_sym_BSLASHfootcite] = ACTIONS(5253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), + [anon_sym_BSLASHtextcite] = ACTIONS(5253), + [anon_sym_BSLASHTextcite] = ACTIONS(5253), + [anon_sym_BSLASHsmartcite] = ACTIONS(5253), + [anon_sym_BSLASHSmartcite] = ACTIONS(5253), + [anon_sym_BSLASHsupercite] = ACTIONS(5253), + [anon_sym_BSLASHautocite] = ACTIONS(5253), + [anon_sym_BSLASHAutocite] = ACTIONS(5253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHvolcite] = ACTIONS(5253), + [anon_sym_BSLASHVolcite] = ACTIONS(5253), + [anon_sym_BSLASHpvolcite] = ACTIONS(5253), + [anon_sym_BSLASHPvolcite] = ACTIONS(5253), + [anon_sym_BSLASHfvolcite] = ACTIONS(5253), + [anon_sym_BSLASHftvolcite] = ACTIONS(5253), + [anon_sym_BSLASHsvolcite] = ACTIONS(5253), + [anon_sym_BSLASHSvolcite] = ACTIONS(5253), + [anon_sym_BSLASHtvolcite] = ACTIONS(5253), + [anon_sym_BSLASHTvolcite] = ACTIONS(5253), + [anon_sym_BSLASHavolcite] = ACTIONS(5253), + [anon_sym_BSLASHAvolcite] = ACTIONS(5253), + [anon_sym_BSLASHnotecite] = ACTIONS(5253), + [anon_sym_BSLASHNotecite] = ACTIONS(5253), + [anon_sym_BSLASHpnotecite] = ACTIONS(5253), + [anon_sym_BSLASHPnotecite] = ACTIONS(5253), + [anon_sym_BSLASHfnotecite] = ACTIONS(5253), + [anon_sym_BSLASHlabel] = ACTIONS(5253), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCrefrange] = ACTIONS(5253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnewlabel] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdef] = ACTIONS(5253), + [anon_sym_BSLASHlet] = ACTIONS(5253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), + [anon_sym_BSLASHgls] = ACTIONS(5253), + [anon_sym_BSLASHGls] = ACTIONS(5253), + [anon_sym_BSLASHGLS] = ACTIONS(5253), + [anon_sym_BSLASHglspl] = ACTIONS(5253), + [anon_sym_BSLASHGlspl] = ACTIONS(5253), + [anon_sym_BSLASHGLSpl] = ACTIONS(5253), + [anon_sym_BSLASHglsdisp] = ACTIONS(5253), + [anon_sym_BSLASHglslink] = ACTIONS(5253), + [anon_sym_BSLASHglstext] = ACTIONS(5253), + [anon_sym_BSLASHGlstext] = ACTIONS(5253), + [anon_sym_BSLASHGLStext] = ACTIONS(5253), + [anon_sym_BSLASHglsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), + [anon_sym_BSLASHglsplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSplural] = ACTIONS(5253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHglsname] = ACTIONS(5253), + [anon_sym_BSLASHGlsname] = ACTIONS(5253), + [anon_sym_BSLASHGLSname] = ACTIONS(5253), + [anon_sym_BSLASHglssymbol] = ACTIONS(5253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), + [anon_sym_BSLASHglsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), + [anon_sym_BSLASHglsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), + [anon_sym_BSLASHglsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), + [anon_sym_BSLASHglsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), + [anon_sym_BSLASHglsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), + [anon_sym_BSLASHnewacronym] = ACTIONS(5253), + [anon_sym_BSLASHacrshort] = ACTIONS(5253), + [anon_sym_BSLASHAcrshort] = ACTIONS(5253), + [anon_sym_BSLASHACRshort] = ACTIONS(5253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), + [anon_sym_BSLASHacrlong] = ACTIONS(5253), + [anon_sym_BSLASHAcrlong] = ACTIONS(5253), + [anon_sym_BSLASHACRlong] = ACTIONS(5253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), + [anon_sym_BSLASHacrfull] = ACTIONS(5253), + [anon_sym_BSLASHAcrfull] = ACTIONS(5253), + [anon_sym_BSLASHACRfull] = ACTIONS(5253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), + [anon_sym_BSLASHacs] = ACTIONS(5253), + [anon_sym_BSLASHAcs] = ACTIONS(5253), + [anon_sym_BSLASHacsp] = ACTIONS(5253), + [anon_sym_BSLASHAcsp] = ACTIONS(5253), + [anon_sym_BSLASHacl] = ACTIONS(5253), + [anon_sym_BSLASHAcl] = ACTIONS(5253), + [anon_sym_BSLASHaclp] = ACTIONS(5253), + [anon_sym_BSLASHAclp] = ACTIONS(5253), + [anon_sym_BSLASHacf] = ACTIONS(5253), + [anon_sym_BSLASHAcf] = ACTIONS(5253), + [anon_sym_BSLASHacfp] = ACTIONS(5253), + [anon_sym_BSLASHAcfp] = ACTIONS(5253), + [anon_sym_BSLASHac] = ACTIONS(5253), + [anon_sym_BSLASHAc] = ACTIONS(5253), + [anon_sym_BSLASHacp] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), + [anon_sym_BSLASHcolor] = ACTIONS(5253), + [anon_sym_BSLASHcolorbox] = ACTIONS(5253), + [anon_sym_BSLASHtextcolor] = ACTIONS(5253), + [anon_sym_BSLASHpagecolor] = ACTIONS(5253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), + [anon_sym_BSLASHtext] = ACTIONS(5253), + [anon_sym_BSLASHintertext] = ACTIONS(5253), + [anon_sym_shortintertext] = ACTIONS(5253), + }, + [1319] = { + [sym_command_name] = ACTIONS(5257), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5257), + [anon_sym_LPAREN] = ACTIONS(5255), + [anon_sym_RPAREN] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_RBRACK] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(5255), + [sym_word] = ACTIONS(5257), + [sym_placeholder] = ACTIONS(5255), + [anon_sym_PLUS] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(5257), + [anon_sym_STAR] = ACTIONS(5257), + [anon_sym_SLASH] = ACTIONS(5257), + [anon_sym_CARET] = ACTIONS(5257), + [anon_sym__] = ACTIONS(5257), + [anon_sym_LT] = ACTIONS(5257), + [anon_sym_GT] = ACTIONS(5257), + [anon_sym_BANG] = ACTIONS(5257), + [anon_sym_PIPE] = ACTIONS(5257), + [anon_sym_COLON] = ACTIONS(5257), + [anon_sym_SQUOTE] = ACTIONS(5257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), + [anon_sym_DOLLAR] = ACTIONS(5257), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), + [anon_sym_BSLASHbegin] = ACTIONS(5257), + [anon_sym_BSLASHusepackage] = ACTIONS(5257), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), + [anon_sym_BSLASHinclude] = ACTIONS(5257), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), + [anon_sym_BSLASHinput] = ACTIONS(5257), + [anon_sym_BSLASHsubfile] = ACTIONS(5257), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), + [anon_sym_BSLASHbibliography] = ACTIONS(5257), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), + [anon_sym_BSLASHincludesvg] = ACTIONS(5257), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), + [anon_sym_BSLASHimport] = ACTIONS(5257), + [anon_sym_BSLASHsubimport] = ACTIONS(5257), + [anon_sym_BSLASHinputfrom] = ACTIONS(5257), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), + [anon_sym_BSLASHincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHcaption] = ACTIONS(5257), + [anon_sym_BSLASHcite] = ACTIONS(5257), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCite] = ACTIONS(5257), + [anon_sym_BSLASHnocite] = ACTIONS(5257), + [anon_sym_BSLASHcitet] = ACTIONS(5257), + [anon_sym_BSLASHcitep] = ACTIONS(5257), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteauthor] = ACTIONS(5257), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitetitle] = ACTIONS(5257), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteyear] = ACTIONS(5257), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitedate] = ACTIONS(5257), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteurl] = ACTIONS(5257), + [anon_sym_BSLASHfullcite] = ACTIONS(5257), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), + [anon_sym_BSLASHcitealt] = ACTIONS(5257), + [anon_sym_BSLASHcitealp] = ACTIONS(5257), + [anon_sym_BSLASHcitetext] = ACTIONS(5257), + [anon_sym_BSLASHparencite] = ACTIONS(5257), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHParencite] = ACTIONS(5257), + [anon_sym_BSLASHfootcite] = ACTIONS(5257), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), + [anon_sym_BSLASHtextcite] = ACTIONS(5257), + [anon_sym_BSLASHTextcite] = ACTIONS(5257), + [anon_sym_BSLASHsmartcite] = ACTIONS(5257), + [anon_sym_BSLASHSmartcite] = ACTIONS(5257), + [anon_sym_BSLASHsupercite] = ACTIONS(5257), + [anon_sym_BSLASHautocite] = ACTIONS(5257), + [anon_sym_BSLASHAutocite] = ACTIONS(5257), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHvolcite] = ACTIONS(5257), + [anon_sym_BSLASHVolcite] = ACTIONS(5257), + [anon_sym_BSLASHpvolcite] = ACTIONS(5257), + [anon_sym_BSLASHPvolcite] = ACTIONS(5257), + [anon_sym_BSLASHfvolcite] = ACTIONS(5257), + [anon_sym_BSLASHftvolcite] = ACTIONS(5257), + [anon_sym_BSLASHsvolcite] = ACTIONS(5257), + [anon_sym_BSLASHSvolcite] = ACTIONS(5257), + [anon_sym_BSLASHtvolcite] = ACTIONS(5257), + [anon_sym_BSLASHTvolcite] = ACTIONS(5257), + [anon_sym_BSLASHavolcite] = ACTIONS(5257), + [anon_sym_BSLASHAvolcite] = ACTIONS(5257), + [anon_sym_BSLASHnotecite] = ACTIONS(5257), + [anon_sym_BSLASHNotecite] = ACTIONS(5257), + [anon_sym_BSLASHpnotecite] = ACTIONS(5257), + [anon_sym_BSLASHPnotecite] = ACTIONS(5257), + [anon_sym_BSLASHfnotecite] = ACTIONS(5257), + [anon_sym_BSLASHlabel] = ACTIONS(5257), + [anon_sym_BSLASHref] = ACTIONS(5257), + [anon_sym_BSLASHeqref] = ACTIONS(5257), + [anon_sym_BSLASHvref] = ACTIONS(5257), + [anon_sym_BSLASHVref] = ACTIONS(5257), + [anon_sym_BSLASHautoref] = ACTIONS(5257), + [anon_sym_BSLASHpageref] = ACTIONS(5257), + [anon_sym_BSLASHcref] = ACTIONS(5257), + [anon_sym_BSLASHCref] = ACTIONS(5257), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnameCref] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHlabelcref] = ACTIONS(5257), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCrefrange] = ACTIONS(5257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnewlabel] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), + [anon_sym_BSLASHdef] = ACTIONS(5257), + [anon_sym_BSLASHlet] = ACTIONS(5257), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), + [anon_sym_BSLASHgls] = ACTIONS(5257), + [anon_sym_BSLASHGls] = ACTIONS(5257), + [anon_sym_BSLASHGLS] = ACTIONS(5257), + [anon_sym_BSLASHglspl] = ACTIONS(5257), + [anon_sym_BSLASHGlspl] = ACTIONS(5257), + [anon_sym_BSLASHGLSpl] = ACTIONS(5257), + [anon_sym_BSLASHglsdisp] = ACTIONS(5257), + [anon_sym_BSLASHglslink] = ACTIONS(5257), + [anon_sym_BSLASHglstext] = ACTIONS(5257), + [anon_sym_BSLASHGlstext] = ACTIONS(5257), + [anon_sym_BSLASHGLStext] = ACTIONS(5257), + [anon_sym_BSLASHglsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), + [anon_sym_BSLASHglsplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSplural] = ACTIONS(5257), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHglsname] = ACTIONS(5257), + [anon_sym_BSLASHGlsname] = ACTIONS(5257), + [anon_sym_BSLASHGLSname] = ACTIONS(5257), + [anon_sym_BSLASHglssymbol] = ACTIONS(5257), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), + [anon_sym_BSLASHglsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), + [anon_sym_BSLASHglsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), + [anon_sym_BSLASHglsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), + [anon_sym_BSLASHglsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), + [anon_sym_BSLASHglsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), + [anon_sym_BSLASHnewacronym] = ACTIONS(5257), + [anon_sym_BSLASHacrshort] = ACTIONS(5257), + [anon_sym_BSLASHAcrshort] = ACTIONS(5257), + [anon_sym_BSLASHACRshort] = ACTIONS(5257), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), + [anon_sym_BSLASHacrlong] = ACTIONS(5257), + [anon_sym_BSLASHAcrlong] = ACTIONS(5257), + [anon_sym_BSLASHACRlong] = ACTIONS(5257), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), + [anon_sym_BSLASHacrfull] = ACTIONS(5257), + [anon_sym_BSLASHAcrfull] = ACTIONS(5257), + [anon_sym_BSLASHACRfull] = ACTIONS(5257), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), + [anon_sym_BSLASHacs] = ACTIONS(5257), + [anon_sym_BSLASHAcs] = ACTIONS(5257), + [anon_sym_BSLASHacsp] = ACTIONS(5257), + [anon_sym_BSLASHAcsp] = ACTIONS(5257), + [anon_sym_BSLASHacl] = ACTIONS(5257), + [anon_sym_BSLASHAcl] = ACTIONS(5257), + [anon_sym_BSLASHaclp] = ACTIONS(5257), + [anon_sym_BSLASHAclp] = ACTIONS(5257), + [anon_sym_BSLASHacf] = ACTIONS(5257), + [anon_sym_BSLASHAcf] = ACTIONS(5257), + [anon_sym_BSLASHacfp] = ACTIONS(5257), + [anon_sym_BSLASHAcfp] = ACTIONS(5257), + [anon_sym_BSLASHac] = ACTIONS(5257), + [anon_sym_BSLASHAc] = ACTIONS(5257), + [anon_sym_BSLASHacp] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), + [anon_sym_BSLASHcolor] = ACTIONS(5257), + [anon_sym_BSLASHcolorbox] = ACTIONS(5257), + [anon_sym_BSLASHtextcolor] = ACTIONS(5257), + [anon_sym_BSLASHpagecolor] = ACTIONS(5257), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), + [anon_sym_BSLASHtext] = ACTIONS(5257), + [anon_sym_BSLASHintertext] = ACTIONS(5257), + [anon_sym_shortintertext] = ACTIONS(5257), + }, + [1320] = { + [sym_command_name] = ACTIONS(5261), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5261), + [anon_sym_LPAREN] = ACTIONS(5259), + [anon_sym_RPAREN] = ACTIONS(5259), + [anon_sym_LBRACK] = ACTIONS(5259), + [anon_sym_RBRACK] = ACTIONS(5259), + [anon_sym_COMMA] = ACTIONS(5259), + [anon_sym_EQ] = ACTIONS(5259), + [anon_sym_LBRACE] = ACTIONS(5259), + [sym_word] = ACTIONS(5261), + [sym_placeholder] = ACTIONS(5259), + [anon_sym_PLUS] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(5261), + [anon_sym_STAR] = ACTIONS(5261), + [anon_sym_SLASH] = ACTIONS(5261), + [anon_sym_CARET] = ACTIONS(5261), + [anon_sym__] = ACTIONS(5261), + [anon_sym_LT] = ACTIONS(5261), + [anon_sym_GT] = ACTIONS(5261), + [anon_sym_BANG] = ACTIONS(5261), + [anon_sym_PIPE] = ACTIONS(5261), + [anon_sym_COLON] = ACTIONS(5261), + [anon_sym_SQUOTE] = ACTIONS(5261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5259), + [anon_sym_DOLLAR] = ACTIONS(5261), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5259), + [anon_sym_BSLASHbegin] = ACTIONS(5261), + [anon_sym_BSLASHusepackage] = ACTIONS(5261), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), + [anon_sym_BSLASHinclude] = ACTIONS(5261), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), + [anon_sym_BSLASHinput] = ACTIONS(5261), + [anon_sym_BSLASHsubfile] = ACTIONS(5261), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), + [anon_sym_BSLASHbibliography] = ACTIONS(5261), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), + [anon_sym_BSLASHincludesvg] = ACTIONS(5261), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), + [anon_sym_BSLASHimport] = ACTIONS(5261), + [anon_sym_BSLASHsubimport] = ACTIONS(5261), + [anon_sym_BSLASHinputfrom] = ACTIONS(5261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), + [anon_sym_BSLASHincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHcaption] = ACTIONS(5261), + [anon_sym_BSLASHcite] = ACTIONS(5261), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCite] = ACTIONS(5261), + [anon_sym_BSLASHnocite] = ACTIONS(5261), + [anon_sym_BSLASHcitet] = ACTIONS(5261), + [anon_sym_BSLASHcitep] = ACTIONS(5261), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteauthor] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitetitle] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteyear] = ACTIONS(5261), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitedate] = ACTIONS(5261), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteurl] = ACTIONS(5261), + [anon_sym_BSLASHfullcite] = ACTIONS(5261), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), + [anon_sym_BSLASHcitealt] = ACTIONS(5261), + [anon_sym_BSLASHcitealp] = ACTIONS(5261), + [anon_sym_BSLASHcitetext] = ACTIONS(5261), + [anon_sym_BSLASHparencite] = ACTIONS(5261), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHParencite] = ACTIONS(5261), + [anon_sym_BSLASHfootcite] = ACTIONS(5261), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), + [anon_sym_BSLASHtextcite] = ACTIONS(5261), + [anon_sym_BSLASHTextcite] = ACTIONS(5261), + [anon_sym_BSLASHsmartcite] = ACTIONS(5261), + [anon_sym_BSLASHSmartcite] = ACTIONS(5261), + [anon_sym_BSLASHsupercite] = ACTIONS(5261), + [anon_sym_BSLASHautocite] = ACTIONS(5261), + [anon_sym_BSLASHAutocite] = ACTIONS(5261), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHvolcite] = ACTIONS(5261), + [anon_sym_BSLASHVolcite] = ACTIONS(5261), + [anon_sym_BSLASHpvolcite] = ACTIONS(5261), + [anon_sym_BSLASHPvolcite] = ACTIONS(5261), + [anon_sym_BSLASHfvolcite] = ACTIONS(5261), + [anon_sym_BSLASHftvolcite] = ACTIONS(5261), + [anon_sym_BSLASHsvolcite] = ACTIONS(5261), + [anon_sym_BSLASHSvolcite] = ACTIONS(5261), + [anon_sym_BSLASHtvolcite] = ACTIONS(5261), + [anon_sym_BSLASHTvolcite] = ACTIONS(5261), + [anon_sym_BSLASHavolcite] = ACTIONS(5261), + [anon_sym_BSLASHAvolcite] = ACTIONS(5261), + [anon_sym_BSLASHnotecite] = ACTIONS(5261), + [anon_sym_BSLASHNotecite] = ACTIONS(5261), + [anon_sym_BSLASHpnotecite] = ACTIONS(5261), + [anon_sym_BSLASHPnotecite] = ACTIONS(5261), + [anon_sym_BSLASHfnotecite] = ACTIONS(5261), + [anon_sym_BSLASHlabel] = ACTIONS(5261), + [anon_sym_BSLASHref] = ACTIONS(5261), + [anon_sym_BSLASHeqref] = ACTIONS(5261), + [anon_sym_BSLASHvref] = ACTIONS(5261), + [anon_sym_BSLASHVref] = ACTIONS(5261), + [anon_sym_BSLASHautoref] = ACTIONS(5261), + [anon_sym_BSLASHpageref] = ACTIONS(5261), + [anon_sym_BSLASHcref] = ACTIONS(5261), + [anon_sym_BSLASHCref] = ACTIONS(5261), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnameCref] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHlabelcref] = ACTIONS(5261), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCrefrange] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnewlabel] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), + [anon_sym_BSLASHdef] = ACTIONS(5261), + [anon_sym_BSLASHlet] = ACTIONS(5261), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), + [anon_sym_BSLASHgls] = ACTIONS(5261), + [anon_sym_BSLASHGls] = ACTIONS(5261), + [anon_sym_BSLASHGLS] = ACTIONS(5261), + [anon_sym_BSLASHglspl] = ACTIONS(5261), + [anon_sym_BSLASHGlspl] = ACTIONS(5261), + [anon_sym_BSLASHGLSpl] = ACTIONS(5261), + [anon_sym_BSLASHglsdisp] = ACTIONS(5261), + [anon_sym_BSLASHglslink] = ACTIONS(5261), + [anon_sym_BSLASHglstext] = ACTIONS(5261), + [anon_sym_BSLASHGlstext] = ACTIONS(5261), + [anon_sym_BSLASHGLStext] = ACTIONS(5261), + [anon_sym_BSLASHglsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), + [anon_sym_BSLASHglsplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSplural] = ACTIONS(5261), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHglsname] = ACTIONS(5261), + [anon_sym_BSLASHGlsname] = ACTIONS(5261), + [anon_sym_BSLASHGLSname] = ACTIONS(5261), + [anon_sym_BSLASHglssymbol] = ACTIONS(5261), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), + [anon_sym_BSLASHglsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), + [anon_sym_BSLASHglsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), + [anon_sym_BSLASHglsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), + [anon_sym_BSLASHglsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), + [anon_sym_BSLASHglsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), + [anon_sym_BSLASHnewacronym] = ACTIONS(5261), + [anon_sym_BSLASHacrshort] = ACTIONS(5261), + [anon_sym_BSLASHAcrshort] = ACTIONS(5261), + [anon_sym_BSLASHACRshort] = ACTIONS(5261), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), + [anon_sym_BSLASHacrlong] = ACTIONS(5261), + [anon_sym_BSLASHAcrlong] = ACTIONS(5261), + [anon_sym_BSLASHACRlong] = ACTIONS(5261), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), + [anon_sym_BSLASHacrfull] = ACTIONS(5261), + [anon_sym_BSLASHAcrfull] = ACTIONS(5261), + [anon_sym_BSLASHACRfull] = ACTIONS(5261), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), + [anon_sym_BSLASHacs] = ACTIONS(5261), + [anon_sym_BSLASHAcs] = ACTIONS(5261), + [anon_sym_BSLASHacsp] = ACTIONS(5261), + [anon_sym_BSLASHAcsp] = ACTIONS(5261), + [anon_sym_BSLASHacl] = ACTIONS(5261), + [anon_sym_BSLASHAcl] = ACTIONS(5261), + [anon_sym_BSLASHaclp] = ACTIONS(5261), + [anon_sym_BSLASHAclp] = ACTIONS(5261), + [anon_sym_BSLASHacf] = ACTIONS(5261), + [anon_sym_BSLASHAcf] = ACTIONS(5261), + [anon_sym_BSLASHacfp] = ACTIONS(5261), + [anon_sym_BSLASHAcfp] = ACTIONS(5261), + [anon_sym_BSLASHac] = ACTIONS(5261), + [anon_sym_BSLASHAc] = ACTIONS(5261), + [anon_sym_BSLASHacp] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), + [anon_sym_BSLASHcolor] = ACTIONS(5261), + [anon_sym_BSLASHcolorbox] = ACTIONS(5261), + [anon_sym_BSLASHtextcolor] = ACTIONS(5261), + [anon_sym_BSLASHpagecolor] = ACTIONS(5261), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), + [anon_sym_BSLASHtext] = ACTIONS(5261), + [anon_sym_BSLASHintertext] = ACTIONS(5261), + [anon_sym_shortintertext] = ACTIONS(5261), + }, + [1321] = { + [sym_command_name] = ACTIONS(5265), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5265), + [anon_sym_LPAREN] = ACTIONS(5263), + [anon_sym_RPAREN] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(5263), + [anon_sym_RBRACK] = ACTIONS(5263), + [anon_sym_COMMA] = ACTIONS(5263), + [anon_sym_EQ] = ACTIONS(5263), + [anon_sym_LBRACE] = ACTIONS(5263), + [sym_word] = ACTIONS(5265), + [sym_placeholder] = ACTIONS(5263), + [anon_sym_PLUS] = ACTIONS(5265), + [anon_sym_DASH] = ACTIONS(5265), + [anon_sym_STAR] = ACTIONS(5265), + [anon_sym_SLASH] = ACTIONS(5265), + [anon_sym_CARET] = ACTIONS(5265), + [anon_sym__] = ACTIONS(5265), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_GT] = ACTIONS(5265), + [anon_sym_BANG] = ACTIONS(5265), + [anon_sym_PIPE] = ACTIONS(5265), + [anon_sym_COLON] = ACTIONS(5265), + [anon_sym_SQUOTE] = ACTIONS(5265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5263), + [anon_sym_DOLLAR] = ACTIONS(5265), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5263), + [anon_sym_BSLASHbegin] = ACTIONS(5265), + [anon_sym_BSLASHusepackage] = ACTIONS(5265), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), + [anon_sym_BSLASHinclude] = ACTIONS(5265), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), + [anon_sym_BSLASHinput] = ACTIONS(5265), + [anon_sym_BSLASHsubfile] = ACTIONS(5265), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), + [anon_sym_BSLASHbibliography] = ACTIONS(5265), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), + [anon_sym_BSLASHincludesvg] = ACTIONS(5265), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), + [anon_sym_BSLASHimport] = ACTIONS(5265), + [anon_sym_BSLASHsubimport] = ACTIONS(5265), + [anon_sym_BSLASHinputfrom] = ACTIONS(5265), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), + [anon_sym_BSLASHincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHcaption] = ACTIONS(5265), + [anon_sym_BSLASHcite] = ACTIONS(5265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCite] = ACTIONS(5265), + [anon_sym_BSLASHnocite] = ACTIONS(5265), + [anon_sym_BSLASHcitet] = ACTIONS(5265), + [anon_sym_BSLASHcitep] = ACTIONS(5265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor] = ACTIONS(5265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle] = ACTIONS(5265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteyear] = ACTIONS(5265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitedate] = ACTIONS(5265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteurl] = ACTIONS(5265), + [anon_sym_BSLASHfullcite] = ACTIONS(5265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), + [anon_sym_BSLASHcitealt] = ACTIONS(5265), + [anon_sym_BSLASHcitealp] = ACTIONS(5265), + [anon_sym_BSLASHcitetext] = ACTIONS(5265), + [anon_sym_BSLASHparencite] = ACTIONS(5265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHParencite] = ACTIONS(5265), + [anon_sym_BSLASHfootcite] = ACTIONS(5265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), + [anon_sym_BSLASHtextcite] = ACTIONS(5265), + [anon_sym_BSLASHTextcite] = ACTIONS(5265), + [anon_sym_BSLASHsmartcite] = ACTIONS(5265), + [anon_sym_BSLASHSmartcite] = ACTIONS(5265), + [anon_sym_BSLASHsupercite] = ACTIONS(5265), + [anon_sym_BSLASHautocite] = ACTIONS(5265), + [anon_sym_BSLASHAutocite] = ACTIONS(5265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHvolcite] = ACTIONS(5265), + [anon_sym_BSLASHVolcite] = ACTIONS(5265), + [anon_sym_BSLASHpvolcite] = ACTIONS(5265), + [anon_sym_BSLASHPvolcite] = ACTIONS(5265), + [anon_sym_BSLASHfvolcite] = ACTIONS(5265), + [anon_sym_BSLASHftvolcite] = ACTIONS(5265), + [anon_sym_BSLASHsvolcite] = ACTIONS(5265), + [anon_sym_BSLASHSvolcite] = ACTIONS(5265), + [anon_sym_BSLASHtvolcite] = ACTIONS(5265), + [anon_sym_BSLASHTvolcite] = ACTIONS(5265), + [anon_sym_BSLASHavolcite] = ACTIONS(5265), + [anon_sym_BSLASHAvolcite] = ACTIONS(5265), + [anon_sym_BSLASHnotecite] = ACTIONS(5265), + [anon_sym_BSLASHNotecite] = ACTIONS(5265), + [anon_sym_BSLASHpnotecite] = ACTIONS(5265), + [anon_sym_BSLASHPnotecite] = ACTIONS(5265), + [anon_sym_BSLASHfnotecite] = ACTIONS(5265), + [anon_sym_BSLASHlabel] = ACTIONS(5265), + [anon_sym_BSLASHref] = ACTIONS(5265), + [anon_sym_BSLASHeqref] = ACTIONS(5265), + [anon_sym_BSLASHvref] = ACTIONS(5265), + [anon_sym_BSLASHVref] = ACTIONS(5265), + [anon_sym_BSLASHautoref] = ACTIONS(5265), + [anon_sym_BSLASHpageref] = ACTIONS(5265), + [anon_sym_BSLASHcref] = ACTIONS(5265), + [anon_sym_BSLASHCref] = ACTIONS(5265), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnameCref] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHlabelcref] = ACTIONS(5265), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange] = ACTIONS(5265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnewlabel] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), + [anon_sym_BSLASHdef] = ACTIONS(5265), + [anon_sym_BSLASHlet] = ACTIONS(5265), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), + [anon_sym_BSLASHgls] = ACTIONS(5265), + [anon_sym_BSLASHGls] = ACTIONS(5265), + [anon_sym_BSLASHGLS] = ACTIONS(5265), + [anon_sym_BSLASHglspl] = ACTIONS(5265), + [anon_sym_BSLASHGlspl] = ACTIONS(5265), + [anon_sym_BSLASHGLSpl] = ACTIONS(5265), + [anon_sym_BSLASHglsdisp] = ACTIONS(5265), + [anon_sym_BSLASHglslink] = ACTIONS(5265), + [anon_sym_BSLASHglstext] = ACTIONS(5265), + [anon_sym_BSLASHGlstext] = ACTIONS(5265), + [anon_sym_BSLASHGLStext] = ACTIONS(5265), + [anon_sym_BSLASHglsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), + [anon_sym_BSLASHglsplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSplural] = ACTIONS(5265), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHglsname] = ACTIONS(5265), + [anon_sym_BSLASHGlsname] = ACTIONS(5265), + [anon_sym_BSLASHGLSname] = ACTIONS(5265), + [anon_sym_BSLASHglssymbol] = ACTIONS(5265), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), + [anon_sym_BSLASHglsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), + [anon_sym_BSLASHglsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), + [anon_sym_BSLASHglsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), + [anon_sym_BSLASHglsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), + [anon_sym_BSLASHglsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), + [anon_sym_BSLASHnewacronym] = ACTIONS(5265), + [anon_sym_BSLASHacrshort] = ACTIONS(5265), + [anon_sym_BSLASHAcrshort] = ACTIONS(5265), + [anon_sym_BSLASHACRshort] = ACTIONS(5265), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), + [anon_sym_BSLASHacrlong] = ACTIONS(5265), + [anon_sym_BSLASHAcrlong] = ACTIONS(5265), + [anon_sym_BSLASHACRlong] = ACTIONS(5265), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), + [anon_sym_BSLASHacrfull] = ACTIONS(5265), + [anon_sym_BSLASHAcrfull] = ACTIONS(5265), + [anon_sym_BSLASHACRfull] = ACTIONS(5265), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), + [anon_sym_BSLASHacs] = ACTIONS(5265), + [anon_sym_BSLASHAcs] = ACTIONS(5265), + [anon_sym_BSLASHacsp] = ACTIONS(5265), + [anon_sym_BSLASHAcsp] = ACTIONS(5265), + [anon_sym_BSLASHacl] = ACTIONS(5265), + [anon_sym_BSLASHAcl] = ACTIONS(5265), + [anon_sym_BSLASHaclp] = ACTIONS(5265), + [anon_sym_BSLASHAclp] = ACTIONS(5265), + [anon_sym_BSLASHacf] = ACTIONS(5265), + [anon_sym_BSLASHAcf] = ACTIONS(5265), + [anon_sym_BSLASHacfp] = ACTIONS(5265), + [anon_sym_BSLASHAcfp] = ACTIONS(5265), + [anon_sym_BSLASHac] = ACTIONS(5265), + [anon_sym_BSLASHAc] = ACTIONS(5265), + [anon_sym_BSLASHacp] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), + [anon_sym_BSLASHcolor] = ACTIONS(5265), + [anon_sym_BSLASHcolorbox] = ACTIONS(5265), + [anon_sym_BSLASHtextcolor] = ACTIONS(5265), + [anon_sym_BSLASHpagecolor] = ACTIONS(5265), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), + [anon_sym_BSLASHtext] = ACTIONS(5265), + [anon_sym_BSLASHintertext] = ACTIONS(5265), + [anon_sym_shortintertext] = ACTIONS(5265), + }, + [1322] = { + [sym_command_name] = ACTIONS(5269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5269), + [anon_sym_LPAREN] = ACTIONS(5267), + [anon_sym_RPAREN] = ACTIONS(5267), + [anon_sym_LBRACK] = ACTIONS(5267), + [anon_sym_RBRACK] = ACTIONS(5267), + [anon_sym_COMMA] = ACTIONS(5267), + [anon_sym_EQ] = ACTIONS(5267), + [anon_sym_LBRACE] = ACTIONS(5267), + [sym_word] = ACTIONS(5269), + [sym_placeholder] = ACTIONS(5267), + [anon_sym_PLUS] = ACTIONS(5269), + [anon_sym_DASH] = ACTIONS(5269), + [anon_sym_STAR] = ACTIONS(5269), + [anon_sym_SLASH] = ACTIONS(5269), + [anon_sym_CARET] = ACTIONS(5269), + [anon_sym__] = ACTIONS(5269), + [anon_sym_LT] = ACTIONS(5269), + [anon_sym_GT] = ACTIONS(5269), + [anon_sym_BANG] = ACTIONS(5269), + [anon_sym_PIPE] = ACTIONS(5269), + [anon_sym_COLON] = ACTIONS(5269), + [anon_sym_SQUOTE] = ACTIONS(5269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), + [anon_sym_DOLLAR] = ACTIONS(5269), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), + [anon_sym_BSLASHbegin] = ACTIONS(5269), + [anon_sym_BSLASHusepackage] = ACTIONS(5269), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), + [anon_sym_BSLASHinclude] = ACTIONS(5269), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), + [anon_sym_BSLASHinput] = ACTIONS(5269), + [anon_sym_BSLASHsubfile] = ACTIONS(5269), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), + [anon_sym_BSLASHbibliography] = ACTIONS(5269), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), + [anon_sym_BSLASHincludesvg] = ACTIONS(5269), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), + [anon_sym_BSLASHimport] = ACTIONS(5269), + [anon_sym_BSLASHsubimport] = ACTIONS(5269), + [anon_sym_BSLASHinputfrom] = ACTIONS(5269), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), + [anon_sym_BSLASHincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHcaption] = ACTIONS(5269), + [anon_sym_BSLASHcite] = ACTIONS(5269), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCite] = ACTIONS(5269), + [anon_sym_BSLASHnocite] = ACTIONS(5269), + [anon_sym_BSLASHcitet] = ACTIONS(5269), + [anon_sym_BSLASHcitep] = ACTIONS(5269), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteauthor] = ACTIONS(5269), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitetitle] = ACTIONS(5269), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteyear] = ACTIONS(5269), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitedate] = ACTIONS(5269), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteurl] = ACTIONS(5269), + [anon_sym_BSLASHfullcite] = ACTIONS(5269), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), + [anon_sym_BSLASHcitealt] = ACTIONS(5269), + [anon_sym_BSLASHcitealp] = ACTIONS(5269), + [anon_sym_BSLASHcitetext] = ACTIONS(5269), + [anon_sym_BSLASHparencite] = ACTIONS(5269), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHParencite] = ACTIONS(5269), + [anon_sym_BSLASHfootcite] = ACTIONS(5269), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), + [anon_sym_BSLASHtextcite] = ACTIONS(5269), + [anon_sym_BSLASHTextcite] = ACTIONS(5269), + [anon_sym_BSLASHsmartcite] = ACTIONS(5269), + [anon_sym_BSLASHSmartcite] = ACTIONS(5269), + [anon_sym_BSLASHsupercite] = ACTIONS(5269), + [anon_sym_BSLASHautocite] = ACTIONS(5269), + [anon_sym_BSLASHAutocite] = ACTIONS(5269), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHvolcite] = ACTIONS(5269), + [anon_sym_BSLASHVolcite] = ACTIONS(5269), + [anon_sym_BSLASHpvolcite] = ACTIONS(5269), + [anon_sym_BSLASHPvolcite] = ACTIONS(5269), + [anon_sym_BSLASHfvolcite] = ACTIONS(5269), + [anon_sym_BSLASHftvolcite] = ACTIONS(5269), + [anon_sym_BSLASHsvolcite] = ACTIONS(5269), + [anon_sym_BSLASHSvolcite] = ACTIONS(5269), + [anon_sym_BSLASHtvolcite] = ACTIONS(5269), + [anon_sym_BSLASHTvolcite] = ACTIONS(5269), + [anon_sym_BSLASHavolcite] = ACTIONS(5269), + [anon_sym_BSLASHAvolcite] = ACTIONS(5269), + [anon_sym_BSLASHnotecite] = ACTIONS(5269), + [anon_sym_BSLASHNotecite] = ACTIONS(5269), + [anon_sym_BSLASHpnotecite] = ACTIONS(5269), + [anon_sym_BSLASHPnotecite] = ACTIONS(5269), + [anon_sym_BSLASHfnotecite] = ACTIONS(5269), + [anon_sym_BSLASHlabel] = ACTIONS(5269), + [anon_sym_BSLASHref] = ACTIONS(5269), + [anon_sym_BSLASHeqref] = ACTIONS(5269), + [anon_sym_BSLASHvref] = ACTIONS(5269), + [anon_sym_BSLASHVref] = ACTIONS(5269), + [anon_sym_BSLASHautoref] = ACTIONS(5269), + [anon_sym_BSLASHpageref] = ACTIONS(5269), + [anon_sym_BSLASHcref] = ACTIONS(5269), + [anon_sym_BSLASHCref] = ACTIONS(5269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnameCref] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHlabelcref] = ACTIONS(5269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCrefrange] = ACTIONS(5269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnewlabel] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), + [anon_sym_BSLASHdef] = ACTIONS(5269), + [anon_sym_BSLASHlet] = ACTIONS(5269), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), + [anon_sym_BSLASHgls] = ACTIONS(5269), + [anon_sym_BSLASHGls] = ACTIONS(5269), + [anon_sym_BSLASHGLS] = ACTIONS(5269), + [anon_sym_BSLASHglspl] = ACTIONS(5269), + [anon_sym_BSLASHGlspl] = ACTIONS(5269), + [anon_sym_BSLASHGLSpl] = ACTIONS(5269), + [anon_sym_BSLASHglsdisp] = ACTIONS(5269), + [anon_sym_BSLASHglslink] = ACTIONS(5269), + [anon_sym_BSLASHglstext] = ACTIONS(5269), + [anon_sym_BSLASHGlstext] = ACTIONS(5269), + [anon_sym_BSLASHGLStext] = ACTIONS(5269), + [anon_sym_BSLASHglsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), + [anon_sym_BSLASHglsplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSplural] = ACTIONS(5269), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHglsname] = ACTIONS(5269), + [anon_sym_BSLASHGlsname] = ACTIONS(5269), + [anon_sym_BSLASHGLSname] = ACTIONS(5269), + [anon_sym_BSLASHglssymbol] = ACTIONS(5269), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), + [anon_sym_BSLASHglsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), + [anon_sym_BSLASHglsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), + [anon_sym_BSLASHglsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), + [anon_sym_BSLASHglsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), + [anon_sym_BSLASHglsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), + [anon_sym_BSLASHnewacronym] = ACTIONS(5269), + [anon_sym_BSLASHacrshort] = ACTIONS(5269), + [anon_sym_BSLASHAcrshort] = ACTIONS(5269), + [anon_sym_BSLASHACRshort] = ACTIONS(5269), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), + [anon_sym_BSLASHacrlong] = ACTIONS(5269), + [anon_sym_BSLASHAcrlong] = ACTIONS(5269), + [anon_sym_BSLASHACRlong] = ACTIONS(5269), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), + [anon_sym_BSLASHacrfull] = ACTIONS(5269), + [anon_sym_BSLASHAcrfull] = ACTIONS(5269), + [anon_sym_BSLASHACRfull] = ACTIONS(5269), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), + [anon_sym_BSLASHacs] = ACTIONS(5269), + [anon_sym_BSLASHAcs] = ACTIONS(5269), + [anon_sym_BSLASHacsp] = ACTIONS(5269), + [anon_sym_BSLASHAcsp] = ACTIONS(5269), + [anon_sym_BSLASHacl] = ACTIONS(5269), + [anon_sym_BSLASHAcl] = ACTIONS(5269), + [anon_sym_BSLASHaclp] = ACTIONS(5269), + [anon_sym_BSLASHAclp] = ACTIONS(5269), + [anon_sym_BSLASHacf] = ACTIONS(5269), + [anon_sym_BSLASHAcf] = ACTIONS(5269), + [anon_sym_BSLASHacfp] = ACTIONS(5269), + [anon_sym_BSLASHAcfp] = ACTIONS(5269), + [anon_sym_BSLASHac] = ACTIONS(5269), + [anon_sym_BSLASHAc] = ACTIONS(5269), + [anon_sym_BSLASHacp] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), + [anon_sym_BSLASHcolor] = ACTIONS(5269), + [anon_sym_BSLASHcolorbox] = ACTIONS(5269), + [anon_sym_BSLASHtextcolor] = ACTIONS(5269), + [anon_sym_BSLASHpagecolor] = ACTIONS(5269), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), + [anon_sym_BSLASHtext] = ACTIONS(5269), + [anon_sym_BSLASHintertext] = ACTIONS(5269), + [anon_sym_shortintertext] = ACTIONS(5269), + }, + [1323] = { + [sym_command_name] = ACTIONS(5273), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5273), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(5271), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_COMMA] = ACTIONS(5271), + [anon_sym_EQ] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(5271), + [sym_word] = ACTIONS(5273), + [sym_placeholder] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5273), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5273), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym__] = ACTIONS(5273), + [anon_sym_LT] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5273), + [anon_sym_BANG] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5273), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_SQUOTE] = ACTIONS(5273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), + [anon_sym_DOLLAR] = ACTIONS(5273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), + [anon_sym_BSLASHbegin] = ACTIONS(5273), + [anon_sym_BSLASHusepackage] = ACTIONS(5273), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), + [anon_sym_BSLASHinclude] = ACTIONS(5273), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), + [anon_sym_BSLASHinput] = ACTIONS(5273), + [anon_sym_BSLASHsubfile] = ACTIONS(5273), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), + [anon_sym_BSLASHbibliography] = ACTIONS(5273), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), + [anon_sym_BSLASHincludesvg] = ACTIONS(5273), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), + [anon_sym_BSLASHimport] = ACTIONS(5273), + [anon_sym_BSLASHsubimport] = ACTIONS(5273), + [anon_sym_BSLASHinputfrom] = ACTIONS(5273), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), + [anon_sym_BSLASHincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHcaption] = ACTIONS(5273), + [anon_sym_BSLASHcite] = ACTIONS(5273), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCite] = ACTIONS(5273), + [anon_sym_BSLASHnocite] = ACTIONS(5273), + [anon_sym_BSLASHcitet] = ACTIONS(5273), + [anon_sym_BSLASHcitep] = ACTIONS(5273), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteauthor] = ACTIONS(5273), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitetitle] = ACTIONS(5273), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteyear] = ACTIONS(5273), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitedate] = ACTIONS(5273), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteurl] = ACTIONS(5273), + [anon_sym_BSLASHfullcite] = ACTIONS(5273), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), + [anon_sym_BSLASHcitealt] = ACTIONS(5273), + [anon_sym_BSLASHcitealp] = ACTIONS(5273), + [anon_sym_BSLASHcitetext] = ACTIONS(5273), + [anon_sym_BSLASHparencite] = ACTIONS(5273), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHParencite] = ACTIONS(5273), + [anon_sym_BSLASHfootcite] = ACTIONS(5273), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), + [anon_sym_BSLASHtextcite] = ACTIONS(5273), + [anon_sym_BSLASHTextcite] = ACTIONS(5273), + [anon_sym_BSLASHsmartcite] = ACTIONS(5273), + [anon_sym_BSLASHSmartcite] = ACTIONS(5273), + [anon_sym_BSLASHsupercite] = ACTIONS(5273), + [anon_sym_BSLASHautocite] = ACTIONS(5273), + [anon_sym_BSLASHAutocite] = ACTIONS(5273), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHvolcite] = ACTIONS(5273), + [anon_sym_BSLASHVolcite] = ACTIONS(5273), + [anon_sym_BSLASHpvolcite] = ACTIONS(5273), + [anon_sym_BSLASHPvolcite] = ACTIONS(5273), + [anon_sym_BSLASHfvolcite] = ACTIONS(5273), + [anon_sym_BSLASHftvolcite] = ACTIONS(5273), + [anon_sym_BSLASHsvolcite] = ACTIONS(5273), + [anon_sym_BSLASHSvolcite] = ACTIONS(5273), + [anon_sym_BSLASHtvolcite] = ACTIONS(5273), + [anon_sym_BSLASHTvolcite] = ACTIONS(5273), + [anon_sym_BSLASHavolcite] = ACTIONS(5273), + [anon_sym_BSLASHAvolcite] = ACTIONS(5273), + [anon_sym_BSLASHnotecite] = ACTIONS(5273), + [anon_sym_BSLASHNotecite] = ACTIONS(5273), + [anon_sym_BSLASHpnotecite] = ACTIONS(5273), + [anon_sym_BSLASHPnotecite] = ACTIONS(5273), + [anon_sym_BSLASHfnotecite] = ACTIONS(5273), + [anon_sym_BSLASHlabel] = ACTIONS(5273), + [anon_sym_BSLASHref] = ACTIONS(5273), + [anon_sym_BSLASHeqref] = ACTIONS(5273), + [anon_sym_BSLASHvref] = ACTIONS(5273), + [anon_sym_BSLASHVref] = ACTIONS(5273), + [anon_sym_BSLASHautoref] = ACTIONS(5273), + [anon_sym_BSLASHpageref] = ACTIONS(5273), + [anon_sym_BSLASHcref] = ACTIONS(5273), + [anon_sym_BSLASHCref] = ACTIONS(5273), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnameCref] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHlabelcref] = ACTIONS(5273), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCrefrange] = ACTIONS(5273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdef] = ACTIONS(5273), + [anon_sym_BSLASHlet] = ACTIONS(5273), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), + [anon_sym_BSLASHgls] = ACTIONS(5273), + [anon_sym_BSLASHGls] = ACTIONS(5273), + [anon_sym_BSLASHGLS] = ACTIONS(5273), + [anon_sym_BSLASHglspl] = ACTIONS(5273), + [anon_sym_BSLASHGlspl] = ACTIONS(5273), + [anon_sym_BSLASHGLSpl] = ACTIONS(5273), + [anon_sym_BSLASHglsdisp] = ACTIONS(5273), + [anon_sym_BSLASHglslink] = ACTIONS(5273), + [anon_sym_BSLASHglstext] = ACTIONS(5273), + [anon_sym_BSLASHGlstext] = ACTIONS(5273), + [anon_sym_BSLASHGLStext] = ACTIONS(5273), + [anon_sym_BSLASHglsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), + [anon_sym_BSLASHglsplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSplural] = ACTIONS(5273), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHglsname] = ACTIONS(5273), + [anon_sym_BSLASHGlsname] = ACTIONS(5273), + [anon_sym_BSLASHGLSname] = ACTIONS(5273), + [anon_sym_BSLASHglssymbol] = ACTIONS(5273), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), + [anon_sym_BSLASHglsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), + [anon_sym_BSLASHglsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), + [anon_sym_BSLASHglsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), + [anon_sym_BSLASHglsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), + [anon_sym_BSLASHglsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), + [anon_sym_BSLASHnewacronym] = ACTIONS(5273), + [anon_sym_BSLASHacrshort] = ACTIONS(5273), + [anon_sym_BSLASHAcrshort] = ACTIONS(5273), + [anon_sym_BSLASHACRshort] = ACTIONS(5273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), + [anon_sym_BSLASHacrlong] = ACTIONS(5273), + [anon_sym_BSLASHAcrlong] = ACTIONS(5273), + [anon_sym_BSLASHACRlong] = ACTIONS(5273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), + [anon_sym_BSLASHacrfull] = ACTIONS(5273), + [anon_sym_BSLASHAcrfull] = ACTIONS(5273), + [anon_sym_BSLASHACRfull] = ACTIONS(5273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), + [anon_sym_BSLASHacs] = ACTIONS(5273), + [anon_sym_BSLASHAcs] = ACTIONS(5273), + [anon_sym_BSLASHacsp] = ACTIONS(5273), + [anon_sym_BSLASHAcsp] = ACTIONS(5273), + [anon_sym_BSLASHacl] = ACTIONS(5273), + [anon_sym_BSLASHAcl] = ACTIONS(5273), + [anon_sym_BSLASHaclp] = ACTIONS(5273), + [anon_sym_BSLASHAclp] = ACTIONS(5273), + [anon_sym_BSLASHacf] = ACTIONS(5273), + [anon_sym_BSLASHAcf] = ACTIONS(5273), + [anon_sym_BSLASHacfp] = ACTIONS(5273), + [anon_sym_BSLASHAcfp] = ACTIONS(5273), + [anon_sym_BSLASHac] = ACTIONS(5273), + [anon_sym_BSLASHAc] = ACTIONS(5273), + [anon_sym_BSLASHacp] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), + [anon_sym_BSLASHcolor] = ACTIONS(5273), + [anon_sym_BSLASHcolorbox] = ACTIONS(5273), + [anon_sym_BSLASHtextcolor] = ACTIONS(5273), + [anon_sym_BSLASHpagecolor] = ACTIONS(5273), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), + [anon_sym_BSLASHtext] = ACTIONS(5273), + [anon_sym_BSLASHintertext] = ACTIONS(5273), + [anon_sym_shortintertext] = ACTIONS(5273), + }, + [1324] = { + [sym_command_name] = ACTIONS(5277), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5277), + [anon_sym_LPAREN] = ACTIONS(5275), + [anon_sym_RPAREN] = ACTIONS(5275), + [anon_sym_LBRACK] = ACTIONS(5275), + [anon_sym_RBRACK] = ACTIONS(5275), + [anon_sym_COMMA] = ACTIONS(5275), + [anon_sym_EQ] = ACTIONS(5275), + [anon_sym_LBRACE] = ACTIONS(5275), + [sym_word] = ACTIONS(5277), + [sym_placeholder] = ACTIONS(5275), + [anon_sym_PLUS] = ACTIONS(5277), + [anon_sym_DASH] = ACTIONS(5277), + [anon_sym_STAR] = ACTIONS(5277), + [anon_sym_SLASH] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5277), + [anon_sym__] = ACTIONS(5277), + [anon_sym_LT] = ACTIONS(5277), + [anon_sym_GT] = ACTIONS(5277), + [anon_sym_BANG] = ACTIONS(5277), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_COLON] = ACTIONS(5277), + [anon_sym_SQUOTE] = ACTIONS(5277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), + [anon_sym_DOLLAR] = ACTIONS(5277), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), + [anon_sym_BSLASHbegin] = ACTIONS(5277), + [anon_sym_BSLASHusepackage] = ACTIONS(5277), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), + [anon_sym_BSLASHinclude] = ACTIONS(5277), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), + [anon_sym_BSLASHinput] = ACTIONS(5277), + [anon_sym_BSLASHsubfile] = ACTIONS(5277), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), + [anon_sym_BSLASHbibliography] = ACTIONS(5277), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), + [anon_sym_BSLASHincludesvg] = ACTIONS(5277), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), + [anon_sym_BSLASHimport] = ACTIONS(5277), + [anon_sym_BSLASHsubimport] = ACTIONS(5277), + [anon_sym_BSLASHinputfrom] = ACTIONS(5277), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), + [anon_sym_BSLASHincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHcaption] = ACTIONS(5277), + [anon_sym_BSLASHcite] = ACTIONS(5277), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCite] = ACTIONS(5277), + [anon_sym_BSLASHnocite] = ACTIONS(5277), + [anon_sym_BSLASHcitet] = ACTIONS(5277), + [anon_sym_BSLASHcitep] = ACTIONS(5277), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteauthor] = ACTIONS(5277), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitetitle] = ACTIONS(5277), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteyear] = ACTIONS(5277), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitedate] = ACTIONS(5277), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteurl] = ACTIONS(5277), + [anon_sym_BSLASHfullcite] = ACTIONS(5277), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), + [anon_sym_BSLASHcitealt] = ACTIONS(5277), + [anon_sym_BSLASHcitealp] = ACTIONS(5277), + [anon_sym_BSLASHcitetext] = ACTIONS(5277), + [anon_sym_BSLASHparencite] = ACTIONS(5277), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHParencite] = ACTIONS(5277), + [anon_sym_BSLASHfootcite] = ACTIONS(5277), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), + [anon_sym_BSLASHtextcite] = ACTIONS(5277), + [anon_sym_BSLASHTextcite] = ACTIONS(5277), + [anon_sym_BSLASHsmartcite] = ACTIONS(5277), + [anon_sym_BSLASHSmartcite] = ACTIONS(5277), + [anon_sym_BSLASHsupercite] = ACTIONS(5277), + [anon_sym_BSLASHautocite] = ACTIONS(5277), + [anon_sym_BSLASHAutocite] = ACTIONS(5277), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHvolcite] = ACTIONS(5277), + [anon_sym_BSLASHVolcite] = ACTIONS(5277), + [anon_sym_BSLASHpvolcite] = ACTIONS(5277), + [anon_sym_BSLASHPvolcite] = ACTIONS(5277), + [anon_sym_BSLASHfvolcite] = ACTIONS(5277), + [anon_sym_BSLASHftvolcite] = ACTIONS(5277), + [anon_sym_BSLASHsvolcite] = ACTIONS(5277), + [anon_sym_BSLASHSvolcite] = ACTIONS(5277), + [anon_sym_BSLASHtvolcite] = ACTIONS(5277), + [anon_sym_BSLASHTvolcite] = ACTIONS(5277), + [anon_sym_BSLASHavolcite] = ACTIONS(5277), + [anon_sym_BSLASHAvolcite] = ACTIONS(5277), + [anon_sym_BSLASHnotecite] = ACTIONS(5277), + [anon_sym_BSLASHNotecite] = ACTIONS(5277), + [anon_sym_BSLASHpnotecite] = ACTIONS(5277), + [anon_sym_BSLASHPnotecite] = ACTIONS(5277), + [anon_sym_BSLASHfnotecite] = ACTIONS(5277), + [anon_sym_BSLASHlabel] = ACTIONS(5277), + [anon_sym_BSLASHref] = ACTIONS(5277), + [anon_sym_BSLASHeqref] = ACTIONS(5277), + [anon_sym_BSLASHvref] = ACTIONS(5277), + [anon_sym_BSLASHVref] = ACTIONS(5277), + [anon_sym_BSLASHautoref] = ACTIONS(5277), + [anon_sym_BSLASHpageref] = ACTIONS(5277), + [anon_sym_BSLASHcref] = ACTIONS(5277), + [anon_sym_BSLASHCref] = ACTIONS(5277), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnameCref] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHlabelcref] = ACTIONS(5277), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCrefrange] = ACTIONS(5277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnewlabel] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), + [anon_sym_BSLASHdef] = ACTIONS(5277), + [anon_sym_BSLASHlet] = ACTIONS(5277), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), + [anon_sym_BSLASHgls] = ACTIONS(5277), + [anon_sym_BSLASHGls] = ACTIONS(5277), + [anon_sym_BSLASHGLS] = ACTIONS(5277), + [anon_sym_BSLASHglspl] = ACTIONS(5277), + [anon_sym_BSLASHGlspl] = ACTIONS(5277), + [anon_sym_BSLASHGLSpl] = ACTIONS(5277), + [anon_sym_BSLASHglsdisp] = ACTIONS(5277), + [anon_sym_BSLASHglslink] = ACTIONS(5277), + [anon_sym_BSLASHglstext] = ACTIONS(5277), + [anon_sym_BSLASHGlstext] = ACTIONS(5277), + [anon_sym_BSLASHGLStext] = ACTIONS(5277), + [anon_sym_BSLASHglsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), + [anon_sym_BSLASHglsplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSplural] = ACTIONS(5277), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHglsname] = ACTIONS(5277), + [anon_sym_BSLASHGlsname] = ACTIONS(5277), + [anon_sym_BSLASHGLSname] = ACTIONS(5277), + [anon_sym_BSLASHglssymbol] = ACTIONS(5277), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), + [anon_sym_BSLASHglsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), + [anon_sym_BSLASHglsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), + [anon_sym_BSLASHglsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), + [anon_sym_BSLASHglsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), + [anon_sym_BSLASHglsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), + [anon_sym_BSLASHnewacronym] = ACTIONS(5277), + [anon_sym_BSLASHacrshort] = ACTIONS(5277), + [anon_sym_BSLASHAcrshort] = ACTIONS(5277), + [anon_sym_BSLASHACRshort] = ACTIONS(5277), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), + [anon_sym_BSLASHacrlong] = ACTIONS(5277), + [anon_sym_BSLASHAcrlong] = ACTIONS(5277), + [anon_sym_BSLASHACRlong] = ACTIONS(5277), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), + [anon_sym_BSLASHacrfull] = ACTIONS(5277), + [anon_sym_BSLASHAcrfull] = ACTIONS(5277), + [anon_sym_BSLASHACRfull] = ACTIONS(5277), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), + [anon_sym_BSLASHacs] = ACTIONS(5277), + [anon_sym_BSLASHAcs] = ACTIONS(5277), + [anon_sym_BSLASHacsp] = ACTIONS(5277), + [anon_sym_BSLASHAcsp] = ACTIONS(5277), + [anon_sym_BSLASHacl] = ACTIONS(5277), + [anon_sym_BSLASHAcl] = ACTIONS(5277), + [anon_sym_BSLASHaclp] = ACTIONS(5277), + [anon_sym_BSLASHAclp] = ACTIONS(5277), + [anon_sym_BSLASHacf] = ACTIONS(5277), + [anon_sym_BSLASHAcf] = ACTIONS(5277), + [anon_sym_BSLASHacfp] = ACTIONS(5277), + [anon_sym_BSLASHAcfp] = ACTIONS(5277), + [anon_sym_BSLASHac] = ACTIONS(5277), + [anon_sym_BSLASHAc] = ACTIONS(5277), + [anon_sym_BSLASHacp] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), + [anon_sym_BSLASHcolor] = ACTIONS(5277), + [anon_sym_BSLASHcolorbox] = ACTIONS(5277), + [anon_sym_BSLASHtextcolor] = ACTIONS(5277), + [anon_sym_BSLASHpagecolor] = ACTIONS(5277), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), + [anon_sym_BSLASHtext] = ACTIONS(5277), + [anon_sym_BSLASHintertext] = ACTIONS(5277), + [anon_sym_shortintertext] = ACTIONS(5277), + }, + [1325] = { + [sym_command_name] = ACTIONS(5281), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5281), + [anon_sym_LPAREN] = ACTIONS(5279), + [anon_sym_RPAREN] = ACTIONS(5279), + [anon_sym_LBRACK] = ACTIONS(5279), + [anon_sym_RBRACK] = ACTIONS(5279), + [anon_sym_COMMA] = ACTIONS(5279), + [anon_sym_EQ] = ACTIONS(5279), + [anon_sym_LBRACE] = ACTIONS(5279), + [sym_word] = ACTIONS(5281), + [sym_placeholder] = ACTIONS(5279), + [anon_sym_PLUS] = ACTIONS(5281), + [anon_sym_DASH] = ACTIONS(5281), + [anon_sym_STAR] = ACTIONS(5281), + [anon_sym_SLASH] = ACTIONS(5281), + [anon_sym_CARET] = ACTIONS(5281), + [anon_sym__] = ACTIONS(5281), + [anon_sym_LT] = ACTIONS(5281), + [anon_sym_GT] = ACTIONS(5281), + [anon_sym_BANG] = ACTIONS(5281), + [anon_sym_PIPE] = ACTIONS(5281), + [anon_sym_COLON] = ACTIONS(5281), + [anon_sym_SQUOTE] = ACTIONS(5281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), + [anon_sym_DOLLAR] = ACTIONS(5281), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), + [anon_sym_BSLASHbegin] = ACTIONS(5281), + [anon_sym_BSLASHusepackage] = ACTIONS(5281), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), + [anon_sym_BSLASHinclude] = ACTIONS(5281), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), + [anon_sym_BSLASHinput] = ACTIONS(5281), + [anon_sym_BSLASHsubfile] = ACTIONS(5281), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), + [anon_sym_BSLASHbibliography] = ACTIONS(5281), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), + [anon_sym_BSLASHincludesvg] = ACTIONS(5281), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), + [anon_sym_BSLASHimport] = ACTIONS(5281), + [anon_sym_BSLASHsubimport] = ACTIONS(5281), + [anon_sym_BSLASHinputfrom] = ACTIONS(5281), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), + [anon_sym_BSLASHincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHcaption] = ACTIONS(5281), + [anon_sym_BSLASHcite] = ACTIONS(5281), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCite] = ACTIONS(5281), + [anon_sym_BSLASHnocite] = ACTIONS(5281), + [anon_sym_BSLASHcitet] = ACTIONS(5281), + [anon_sym_BSLASHcitep] = ACTIONS(5281), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteauthor] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitetitle] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteyear] = ACTIONS(5281), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitedate] = ACTIONS(5281), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteurl] = ACTIONS(5281), + [anon_sym_BSLASHfullcite] = ACTIONS(5281), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), + [anon_sym_BSLASHcitealt] = ACTIONS(5281), + [anon_sym_BSLASHcitealp] = ACTIONS(5281), + [anon_sym_BSLASHcitetext] = ACTIONS(5281), + [anon_sym_BSLASHparencite] = ACTIONS(5281), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHParencite] = ACTIONS(5281), + [anon_sym_BSLASHfootcite] = ACTIONS(5281), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), + [anon_sym_BSLASHtextcite] = ACTIONS(5281), + [anon_sym_BSLASHTextcite] = ACTIONS(5281), + [anon_sym_BSLASHsmartcite] = ACTIONS(5281), + [anon_sym_BSLASHSmartcite] = ACTIONS(5281), + [anon_sym_BSLASHsupercite] = ACTIONS(5281), + [anon_sym_BSLASHautocite] = ACTIONS(5281), + [anon_sym_BSLASHAutocite] = ACTIONS(5281), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHvolcite] = ACTIONS(5281), + [anon_sym_BSLASHVolcite] = ACTIONS(5281), + [anon_sym_BSLASHpvolcite] = ACTIONS(5281), + [anon_sym_BSLASHPvolcite] = ACTIONS(5281), + [anon_sym_BSLASHfvolcite] = ACTIONS(5281), + [anon_sym_BSLASHftvolcite] = ACTIONS(5281), + [anon_sym_BSLASHsvolcite] = ACTIONS(5281), + [anon_sym_BSLASHSvolcite] = ACTIONS(5281), + [anon_sym_BSLASHtvolcite] = ACTIONS(5281), + [anon_sym_BSLASHTvolcite] = ACTIONS(5281), + [anon_sym_BSLASHavolcite] = ACTIONS(5281), + [anon_sym_BSLASHAvolcite] = ACTIONS(5281), + [anon_sym_BSLASHnotecite] = ACTIONS(5281), + [anon_sym_BSLASHNotecite] = ACTIONS(5281), + [anon_sym_BSLASHpnotecite] = ACTIONS(5281), + [anon_sym_BSLASHPnotecite] = ACTIONS(5281), + [anon_sym_BSLASHfnotecite] = ACTIONS(5281), + [anon_sym_BSLASHlabel] = ACTIONS(5281), + [anon_sym_BSLASHref] = ACTIONS(5281), + [anon_sym_BSLASHeqref] = ACTIONS(5281), + [anon_sym_BSLASHvref] = ACTIONS(5281), + [anon_sym_BSLASHVref] = ACTIONS(5281), + [anon_sym_BSLASHautoref] = ACTIONS(5281), + [anon_sym_BSLASHpageref] = ACTIONS(5281), + [anon_sym_BSLASHcref] = ACTIONS(5281), + [anon_sym_BSLASHCref] = ACTIONS(5281), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnameCref] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHlabelcref] = ACTIONS(5281), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCrefrange] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnewlabel] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), + [anon_sym_BSLASHdef] = ACTIONS(5281), + [anon_sym_BSLASHlet] = ACTIONS(5281), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), + [anon_sym_BSLASHgls] = ACTIONS(5281), + [anon_sym_BSLASHGls] = ACTIONS(5281), + [anon_sym_BSLASHGLS] = ACTIONS(5281), + [anon_sym_BSLASHglspl] = ACTIONS(5281), + [anon_sym_BSLASHGlspl] = ACTIONS(5281), + [anon_sym_BSLASHGLSpl] = ACTIONS(5281), + [anon_sym_BSLASHglsdisp] = ACTIONS(5281), + [anon_sym_BSLASHglslink] = ACTIONS(5281), + [anon_sym_BSLASHglstext] = ACTIONS(5281), + [anon_sym_BSLASHGlstext] = ACTIONS(5281), + [anon_sym_BSLASHGLStext] = ACTIONS(5281), + [anon_sym_BSLASHglsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), + [anon_sym_BSLASHglsplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSplural] = ACTIONS(5281), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHglsname] = ACTIONS(5281), + [anon_sym_BSLASHGlsname] = ACTIONS(5281), + [anon_sym_BSLASHGLSname] = ACTIONS(5281), + [anon_sym_BSLASHglssymbol] = ACTIONS(5281), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), + [anon_sym_BSLASHglsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), + [anon_sym_BSLASHglsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), + [anon_sym_BSLASHglsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), + [anon_sym_BSLASHglsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), + [anon_sym_BSLASHglsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), + [anon_sym_BSLASHnewacronym] = ACTIONS(5281), + [anon_sym_BSLASHacrshort] = ACTIONS(5281), + [anon_sym_BSLASHAcrshort] = ACTIONS(5281), + [anon_sym_BSLASHACRshort] = ACTIONS(5281), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), + [anon_sym_BSLASHacrlong] = ACTIONS(5281), + [anon_sym_BSLASHAcrlong] = ACTIONS(5281), + [anon_sym_BSLASHACRlong] = ACTIONS(5281), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), + [anon_sym_BSLASHacrfull] = ACTIONS(5281), + [anon_sym_BSLASHAcrfull] = ACTIONS(5281), + [anon_sym_BSLASHACRfull] = ACTIONS(5281), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), + [anon_sym_BSLASHacs] = ACTIONS(5281), + [anon_sym_BSLASHAcs] = ACTIONS(5281), + [anon_sym_BSLASHacsp] = ACTIONS(5281), + [anon_sym_BSLASHAcsp] = ACTIONS(5281), + [anon_sym_BSLASHacl] = ACTIONS(5281), + [anon_sym_BSLASHAcl] = ACTIONS(5281), + [anon_sym_BSLASHaclp] = ACTIONS(5281), + [anon_sym_BSLASHAclp] = ACTIONS(5281), + [anon_sym_BSLASHacf] = ACTIONS(5281), + [anon_sym_BSLASHAcf] = ACTIONS(5281), + [anon_sym_BSLASHacfp] = ACTIONS(5281), + [anon_sym_BSLASHAcfp] = ACTIONS(5281), + [anon_sym_BSLASHac] = ACTIONS(5281), + [anon_sym_BSLASHAc] = ACTIONS(5281), + [anon_sym_BSLASHacp] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), + [anon_sym_BSLASHcolor] = ACTIONS(5281), + [anon_sym_BSLASHcolorbox] = ACTIONS(5281), + [anon_sym_BSLASHtextcolor] = ACTIONS(5281), + [anon_sym_BSLASHpagecolor] = ACTIONS(5281), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), + [anon_sym_BSLASHtext] = ACTIONS(5281), + [anon_sym_BSLASHintertext] = ACTIONS(5281), + [anon_sym_shortintertext] = ACTIONS(5281), + }, + [1326] = { + [sym_command_name] = ACTIONS(5309), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5309), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_RPAREN] = ACTIONS(5307), + [anon_sym_LBRACK] = ACTIONS(5307), + [anon_sym_RBRACK] = ACTIONS(5307), + [anon_sym_COMMA] = ACTIONS(5307), + [anon_sym_EQ] = ACTIONS(5307), + [anon_sym_LBRACE] = ACTIONS(5307), + [sym_word] = ACTIONS(5309), + [sym_placeholder] = ACTIONS(5307), + [anon_sym_PLUS] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5309), + [anon_sym_STAR] = ACTIONS(5309), + [anon_sym_SLASH] = ACTIONS(5309), + [anon_sym_CARET] = ACTIONS(5309), + [anon_sym__] = ACTIONS(5309), + [anon_sym_LT] = ACTIONS(5309), + [anon_sym_GT] = ACTIONS(5309), + [anon_sym_BANG] = ACTIONS(5309), + [anon_sym_PIPE] = ACTIONS(5309), + [anon_sym_COLON] = ACTIONS(5309), + [anon_sym_SQUOTE] = ACTIONS(5309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), + [anon_sym_BSLASHbegin] = ACTIONS(5309), + [anon_sym_BSLASHusepackage] = ACTIONS(5309), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), + [anon_sym_BSLASHinclude] = ACTIONS(5309), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), + [anon_sym_BSLASHinput] = ACTIONS(5309), + [anon_sym_BSLASHsubfile] = ACTIONS(5309), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), + [anon_sym_BSLASHbibliography] = ACTIONS(5309), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), + [anon_sym_BSLASHincludesvg] = ACTIONS(5309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), + [anon_sym_BSLASHimport] = ACTIONS(5309), + [anon_sym_BSLASHsubimport] = ACTIONS(5309), + [anon_sym_BSLASHinputfrom] = ACTIONS(5309), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), + [anon_sym_BSLASHincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHcaption] = ACTIONS(5309), + [anon_sym_BSLASHcite] = ACTIONS(5309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCite] = ACTIONS(5309), + [anon_sym_BSLASHnocite] = ACTIONS(5309), + [anon_sym_BSLASHcitet] = ACTIONS(5309), + [anon_sym_BSLASHcitep] = ACTIONS(5309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteauthor] = ACTIONS(5309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitetitle] = ACTIONS(5309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteyear] = ACTIONS(5309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitedate] = ACTIONS(5309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteurl] = ACTIONS(5309), + [anon_sym_BSLASHfullcite] = ACTIONS(5309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), + [anon_sym_BSLASHcitealt] = ACTIONS(5309), + [anon_sym_BSLASHcitealp] = ACTIONS(5309), + [anon_sym_BSLASHcitetext] = ACTIONS(5309), + [anon_sym_BSLASHparencite] = ACTIONS(5309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHParencite] = ACTIONS(5309), + [anon_sym_BSLASHfootcite] = ACTIONS(5309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), + [anon_sym_BSLASHtextcite] = ACTIONS(5309), + [anon_sym_BSLASHTextcite] = ACTIONS(5309), + [anon_sym_BSLASHsmartcite] = ACTIONS(5309), + [anon_sym_BSLASHSmartcite] = ACTIONS(5309), + [anon_sym_BSLASHsupercite] = ACTIONS(5309), + [anon_sym_BSLASHautocite] = ACTIONS(5309), + [anon_sym_BSLASHAutocite] = ACTIONS(5309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHvolcite] = ACTIONS(5309), + [anon_sym_BSLASHVolcite] = ACTIONS(5309), + [anon_sym_BSLASHpvolcite] = ACTIONS(5309), + [anon_sym_BSLASHPvolcite] = ACTIONS(5309), + [anon_sym_BSLASHfvolcite] = ACTIONS(5309), + [anon_sym_BSLASHftvolcite] = ACTIONS(5309), + [anon_sym_BSLASHsvolcite] = ACTIONS(5309), + [anon_sym_BSLASHSvolcite] = ACTIONS(5309), + [anon_sym_BSLASHtvolcite] = ACTIONS(5309), + [anon_sym_BSLASHTvolcite] = ACTIONS(5309), + [anon_sym_BSLASHavolcite] = ACTIONS(5309), + [anon_sym_BSLASHAvolcite] = ACTIONS(5309), + [anon_sym_BSLASHnotecite] = ACTIONS(5309), + [anon_sym_BSLASHNotecite] = ACTIONS(5309), + [anon_sym_BSLASHpnotecite] = ACTIONS(5309), + [anon_sym_BSLASHPnotecite] = ACTIONS(5309), + [anon_sym_BSLASHfnotecite] = ACTIONS(5309), + [anon_sym_BSLASHlabel] = ACTIONS(5309), + [anon_sym_BSLASHref] = ACTIONS(5309), + [anon_sym_BSLASHeqref] = ACTIONS(5309), + [anon_sym_BSLASHvref] = ACTIONS(5309), + [anon_sym_BSLASHVref] = ACTIONS(5309), + [anon_sym_BSLASHautoref] = ACTIONS(5309), + [anon_sym_BSLASHpageref] = ACTIONS(5309), + [anon_sym_BSLASHcref] = ACTIONS(5309), + [anon_sym_BSLASHCref] = ACTIONS(5309), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnameCref] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHlabelcref] = ACTIONS(5309), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCrefrange] = ACTIONS(5309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnewlabel] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), + [anon_sym_BSLASHdef] = ACTIONS(5309), + [anon_sym_BSLASHlet] = ACTIONS(5309), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), + [anon_sym_BSLASHgls] = ACTIONS(5309), + [anon_sym_BSLASHGls] = ACTIONS(5309), + [anon_sym_BSLASHGLS] = ACTIONS(5309), + [anon_sym_BSLASHglspl] = ACTIONS(5309), + [anon_sym_BSLASHGlspl] = ACTIONS(5309), + [anon_sym_BSLASHGLSpl] = ACTIONS(5309), + [anon_sym_BSLASHglsdisp] = ACTIONS(5309), + [anon_sym_BSLASHglslink] = ACTIONS(5309), + [anon_sym_BSLASHglstext] = ACTIONS(5309), + [anon_sym_BSLASHGlstext] = ACTIONS(5309), + [anon_sym_BSLASHGLStext] = ACTIONS(5309), + [anon_sym_BSLASHglsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), + [anon_sym_BSLASHglsplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSplural] = ACTIONS(5309), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHglsname] = ACTIONS(5309), + [anon_sym_BSLASHGlsname] = ACTIONS(5309), + [anon_sym_BSLASHGLSname] = ACTIONS(5309), + [anon_sym_BSLASHglssymbol] = ACTIONS(5309), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), + [anon_sym_BSLASHglsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), + [anon_sym_BSLASHglsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), + [anon_sym_BSLASHglsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), + [anon_sym_BSLASHglsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), + [anon_sym_BSLASHglsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), + [anon_sym_BSLASHnewacronym] = ACTIONS(5309), + [anon_sym_BSLASHacrshort] = ACTIONS(5309), + [anon_sym_BSLASHAcrshort] = ACTIONS(5309), + [anon_sym_BSLASHACRshort] = ACTIONS(5309), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), + [anon_sym_BSLASHacrlong] = ACTIONS(5309), + [anon_sym_BSLASHAcrlong] = ACTIONS(5309), + [anon_sym_BSLASHACRlong] = ACTIONS(5309), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), + [anon_sym_BSLASHacrfull] = ACTIONS(5309), + [anon_sym_BSLASHAcrfull] = ACTIONS(5309), + [anon_sym_BSLASHACRfull] = ACTIONS(5309), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), + [anon_sym_BSLASHacs] = ACTIONS(5309), + [anon_sym_BSLASHAcs] = ACTIONS(5309), + [anon_sym_BSLASHacsp] = ACTIONS(5309), + [anon_sym_BSLASHAcsp] = ACTIONS(5309), + [anon_sym_BSLASHacl] = ACTIONS(5309), + [anon_sym_BSLASHAcl] = ACTIONS(5309), + [anon_sym_BSLASHaclp] = ACTIONS(5309), + [anon_sym_BSLASHAclp] = ACTIONS(5309), + [anon_sym_BSLASHacf] = ACTIONS(5309), + [anon_sym_BSLASHAcf] = ACTIONS(5309), + [anon_sym_BSLASHacfp] = ACTIONS(5309), + [anon_sym_BSLASHAcfp] = ACTIONS(5309), + [anon_sym_BSLASHac] = ACTIONS(5309), + [anon_sym_BSLASHAc] = ACTIONS(5309), + [anon_sym_BSLASHacp] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), + [anon_sym_BSLASHcolor] = ACTIONS(5309), + [anon_sym_BSLASHcolorbox] = ACTIONS(5309), + [anon_sym_BSLASHtextcolor] = ACTIONS(5309), + [anon_sym_BSLASHpagecolor] = ACTIONS(5309), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), + [anon_sym_BSLASHtext] = ACTIONS(5309), + [anon_sym_BSLASHintertext] = ACTIONS(5309), + [anon_sym_shortintertext] = ACTIONS(5309), + }, + [1327] = { + [sym_command_name] = ACTIONS(5157), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5157), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RBRACK] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_EQ] = ACTIONS(5155), + [anon_sym_LBRACE] = ACTIONS(5155), + [sym_word] = ACTIONS(5157), + [sym_placeholder] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(5157), + [anon_sym_STAR] = ACTIONS(5157), + [anon_sym_SLASH] = ACTIONS(5157), + [anon_sym_CARET] = ACTIONS(5157), + [anon_sym__] = ACTIONS(5157), + [anon_sym_LT] = ACTIONS(5157), + [anon_sym_GT] = ACTIONS(5157), + [anon_sym_BANG] = ACTIONS(5157), + [anon_sym_PIPE] = ACTIONS(5157), + [anon_sym_COLON] = ACTIONS(5157), + [anon_sym_SQUOTE] = ACTIONS(5157), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), + [anon_sym_DOLLAR] = ACTIONS(5157), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), + [anon_sym_BSLASHbegin] = ACTIONS(5157), + [anon_sym_BSLASHusepackage] = ACTIONS(5157), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), + [anon_sym_BSLASHinclude] = ACTIONS(5157), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), + [anon_sym_BSLASHinput] = ACTIONS(5157), + [anon_sym_BSLASHsubfile] = ACTIONS(5157), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), + [anon_sym_BSLASHbibliography] = ACTIONS(5157), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5157), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), + [anon_sym_BSLASHimport] = ACTIONS(5157), + [anon_sym_BSLASHsubimport] = ACTIONS(5157), + [anon_sym_BSLASHinputfrom] = ACTIONS(5157), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), + [anon_sym_BSLASHincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHcaption] = ACTIONS(5157), + [anon_sym_BSLASHcite] = ACTIONS(5157), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCite] = ACTIONS(5157), + [anon_sym_BSLASHnocite] = ACTIONS(5157), + [anon_sym_BSLASHcitet] = ACTIONS(5157), + [anon_sym_BSLASHcitep] = ACTIONS(5157), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteauthor] = ACTIONS(5157), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitetitle] = ACTIONS(5157), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteyear] = ACTIONS(5157), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitedate] = ACTIONS(5157), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteurl] = ACTIONS(5157), + [anon_sym_BSLASHfullcite] = ACTIONS(5157), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), + [anon_sym_BSLASHcitealt] = ACTIONS(5157), + [anon_sym_BSLASHcitealp] = ACTIONS(5157), + [anon_sym_BSLASHcitetext] = ACTIONS(5157), + [anon_sym_BSLASHparencite] = ACTIONS(5157), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHParencite] = ACTIONS(5157), + [anon_sym_BSLASHfootcite] = ACTIONS(5157), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), + [anon_sym_BSLASHtextcite] = ACTIONS(5157), + [anon_sym_BSLASHTextcite] = ACTIONS(5157), + [anon_sym_BSLASHsmartcite] = ACTIONS(5157), + [anon_sym_BSLASHSmartcite] = ACTIONS(5157), + [anon_sym_BSLASHsupercite] = ACTIONS(5157), + [anon_sym_BSLASHautocite] = ACTIONS(5157), + [anon_sym_BSLASHAutocite] = ACTIONS(5157), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHvolcite] = ACTIONS(5157), + [anon_sym_BSLASHVolcite] = ACTIONS(5157), + [anon_sym_BSLASHpvolcite] = ACTIONS(5157), + [anon_sym_BSLASHPvolcite] = ACTIONS(5157), + [anon_sym_BSLASHfvolcite] = ACTIONS(5157), + [anon_sym_BSLASHftvolcite] = ACTIONS(5157), + [anon_sym_BSLASHsvolcite] = ACTIONS(5157), + [anon_sym_BSLASHSvolcite] = ACTIONS(5157), + [anon_sym_BSLASHtvolcite] = ACTIONS(5157), + [anon_sym_BSLASHTvolcite] = ACTIONS(5157), + [anon_sym_BSLASHavolcite] = ACTIONS(5157), + [anon_sym_BSLASHAvolcite] = ACTIONS(5157), + [anon_sym_BSLASHnotecite] = ACTIONS(5157), + [anon_sym_BSLASHNotecite] = ACTIONS(5157), + [anon_sym_BSLASHpnotecite] = ACTIONS(5157), + [anon_sym_BSLASHPnotecite] = ACTIONS(5157), + [anon_sym_BSLASHfnotecite] = ACTIONS(5157), + [anon_sym_BSLASHlabel] = ACTIONS(5157), + [anon_sym_BSLASHref] = ACTIONS(5157), + [anon_sym_BSLASHeqref] = ACTIONS(5157), + [anon_sym_BSLASHvref] = ACTIONS(5157), + [anon_sym_BSLASHVref] = ACTIONS(5157), + [anon_sym_BSLASHautoref] = ACTIONS(5157), + [anon_sym_BSLASHpageref] = ACTIONS(5157), + [anon_sym_BSLASHcref] = ACTIONS(5157), + [anon_sym_BSLASHCref] = ACTIONS(5157), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnameCref] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHlabelcref] = ACTIONS(5157), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCrefrange] = ACTIONS(5157), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnewlabel] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), + [anon_sym_BSLASHdef] = ACTIONS(5157), + [anon_sym_BSLASHlet] = ACTIONS(5157), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), + [anon_sym_BSLASHgls] = ACTIONS(5157), + [anon_sym_BSLASHGls] = ACTIONS(5157), + [anon_sym_BSLASHGLS] = ACTIONS(5157), + [anon_sym_BSLASHglspl] = ACTIONS(5157), + [anon_sym_BSLASHGlspl] = ACTIONS(5157), + [anon_sym_BSLASHGLSpl] = ACTIONS(5157), + [anon_sym_BSLASHglsdisp] = ACTIONS(5157), + [anon_sym_BSLASHglslink] = ACTIONS(5157), + [anon_sym_BSLASHglstext] = ACTIONS(5157), + [anon_sym_BSLASHGlstext] = ACTIONS(5157), + [anon_sym_BSLASHGLStext] = ACTIONS(5157), + [anon_sym_BSLASHglsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), + [anon_sym_BSLASHglsplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSplural] = ACTIONS(5157), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHglsname] = ACTIONS(5157), + [anon_sym_BSLASHGlsname] = ACTIONS(5157), + [anon_sym_BSLASHGLSname] = ACTIONS(5157), + [anon_sym_BSLASHglssymbol] = ACTIONS(5157), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), + [anon_sym_BSLASHglsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), + [anon_sym_BSLASHglsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), + [anon_sym_BSLASHglsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), + [anon_sym_BSLASHglsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), + [anon_sym_BSLASHglsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), + [anon_sym_BSLASHnewacronym] = ACTIONS(5157), + [anon_sym_BSLASHacrshort] = ACTIONS(5157), + [anon_sym_BSLASHAcrshort] = ACTIONS(5157), + [anon_sym_BSLASHACRshort] = ACTIONS(5157), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), + [anon_sym_BSLASHacrlong] = ACTIONS(5157), + [anon_sym_BSLASHAcrlong] = ACTIONS(5157), + [anon_sym_BSLASHACRlong] = ACTIONS(5157), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), + [anon_sym_BSLASHacrfull] = ACTIONS(5157), + [anon_sym_BSLASHAcrfull] = ACTIONS(5157), + [anon_sym_BSLASHACRfull] = ACTIONS(5157), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), + [anon_sym_BSLASHacs] = ACTIONS(5157), + [anon_sym_BSLASHAcs] = ACTIONS(5157), + [anon_sym_BSLASHacsp] = ACTIONS(5157), + [anon_sym_BSLASHAcsp] = ACTIONS(5157), + [anon_sym_BSLASHacl] = ACTIONS(5157), + [anon_sym_BSLASHAcl] = ACTIONS(5157), + [anon_sym_BSLASHaclp] = ACTIONS(5157), + [anon_sym_BSLASHAclp] = ACTIONS(5157), + [anon_sym_BSLASHacf] = ACTIONS(5157), + [anon_sym_BSLASHAcf] = ACTIONS(5157), + [anon_sym_BSLASHacfp] = ACTIONS(5157), + [anon_sym_BSLASHAcfp] = ACTIONS(5157), + [anon_sym_BSLASHac] = ACTIONS(5157), + [anon_sym_BSLASHAc] = ACTIONS(5157), + [anon_sym_BSLASHacp] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), + [anon_sym_BSLASHcolor] = ACTIONS(5157), + [anon_sym_BSLASHcolorbox] = ACTIONS(5157), + [anon_sym_BSLASHtextcolor] = ACTIONS(5157), + [anon_sym_BSLASHpagecolor] = ACTIONS(5157), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), + [anon_sym_BSLASHtext] = ACTIONS(5157), + [anon_sym_BSLASHintertext] = ACTIONS(5157), + [anon_sym_shortintertext] = ACTIONS(5157), + }, + [1328] = { + [sym_command_name] = ACTIONS(5285), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5285), + [anon_sym_LPAREN] = ACTIONS(5283), + [anon_sym_RPAREN] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(5283), + [anon_sym_RBRACK] = ACTIONS(5283), + [anon_sym_COMMA] = ACTIONS(5283), + [anon_sym_EQ] = ACTIONS(5283), + [anon_sym_LBRACE] = ACTIONS(5283), + [sym_word] = ACTIONS(5285), + [sym_placeholder] = ACTIONS(5283), + [anon_sym_PLUS] = ACTIONS(5285), + [anon_sym_DASH] = ACTIONS(5285), + [anon_sym_STAR] = ACTIONS(5285), + [anon_sym_SLASH] = ACTIONS(5285), + [anon_sym_CARET] = ACTIONS(5285), + [anon_sym__] = ACTIONS(5285), + [anon_sym_LT] = ACTIONS(5285), + [anon_sym_GT] = ACTIONS(5285), + [anon_sym_BANG] = ACTIONS(5285), + [anon_sym_PIPE] = ACTIONS(5285), + [anon_sym_COLON] = ACTIONS(5285), + [anon_sym_SQUOTE] = ACTIONS(5285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), + [anon_sym_DOLLAR] = ACTIONS(5285), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), + [anon_sym_BSLASHbegin] = ACTIONS(5285), + [anon_sym_BSLASHusepackage] = ACTIONS(5285), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), + [anon_sym_BSLASHinclude] = ACTIONS(5285), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), + [anon_sym_BSLASHinput] = ACTIONS(5285), + [anon_sym_BSLASHsubfile] = ACTIONS(5285), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), + [anon_sym_BSLASHbibliography] = ACTIONS(5285), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), + [anon_sym_BSLASHincludesvg] = ACTIONS(5285), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), + [anon_sym_BSLASHimport] = ACTIONS(5285), + [anon_sym_BSLASHsubimport] = ACTIONS(5285), + [anon_sym_BSLASHinputfrom] = ACTIONS(5285), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), + [anon_sym_BSLASHincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHcaption] = ACTIONS(5285), + [anon_sym_BSLASHcite] = ACTIONS(5285), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCite] = ACTIONS(5285), + [anon_sym_BSLASHnocite] = ACTIONS(5285), + [anon_sym_BSLASHcitet] = ACTIONS(5285), + [anon_sym_BSLASHcitep] = ACTIONS(5285), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteauthor] = ACTIONS(5285), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitetitle] = ACTIONS(5285), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteyear] = ACTIONS(5285), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitedate] = ACTIONS(5285), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteurl] = ACTIONS(5285), + [anon_sym_BSLASHfullcite] = ACTIONS(5285), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), + [anon_sym_BSLASHcitealt] = ACTIONS(5285), + [anon_sym_BSLASHcitealp] = ACTIONS(5285), + [anon_sym_BSLASHcitetext] = ACTIONS(5285), + [anon_sym_BSLASHparencite] = ACTIONS(5285), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHParencite] = ACTIONS(5285), + [anon_sym_BSLASHfootcite] = ACTIONS(5285), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), + [anon_sym_BSLASHtextcite] = ACTIONS(5285), + [anon_sym_BSLASHTextcite] = ACTIONS(5285), + [anon_sym_BSLASHsmartcite] = ACTIONS(5285), + [anon_sym_BSLASHSmartcite] = ACTIONS(5285), + [anon_sym_BSLASHsupercite] = ACTIONS(5285), + [anon_sym_BSLASHautocite] = ACTIONS(5285), + [anon_sym_BSLASHAutocite] = ACTIONS(5285), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHvolcite] = ACTIONS(5285), + [anon_sym_BSLASHVolcite] = ACTIONS(5285), + [anon_sym_BSLASHpvolcite] = ACTIONS(5285), + [anon_sym_BSLASHPvolcite] = ACTIONS(5285), + [anon_sym_BSLASHfvolcite] = ACTIONS(5285), + [anon_sym_BSLASHftvolcite] = ACTIONS(5285), + [anon_sym_BSLASHsvolcite] = ACTIONS(5285), + [anon_sym_BSLASHSvolcite] = ACTIONS(5285), + [anon_sym_BSLASHtvolcite] = ACTIONS(5285), + [anon_sym_BSLASHTvolcite] = ACTIONS(5285), + [anon_sym_BSLASHavolcite] = ACTIONS(5285), + [anon_sym_BSLASHAvolcite] = ACTIONS(5285), + [anon_sym_BSLASHnotecite] = ACTIONS(5285), + [anon_sym_BSLASHNotecite] = ACTIONS(5285), + [anon_sym_BSLASHpnotecite] = ACTIONS(5285), + [anon_sym_BSLASHPnotecite] = ACTIONS(5285), + [anon_sym_BSLASHfnotecite] = ACTIONS(5285), + [anon_sym_BSLASHlabel] = ACTIONS(5285), + [anon_sym_BSLASHref] = ACTIONS(5285), + [anon_sym_BSLASHeqref] = ACTIONS(5285), + [anon_sym_BSLASHvref] = ACTIONS(5285), + [anon_sym_BSLASHVref] = ACTIONS(5285), + [anon_sym_BSLASHautoref] = ACTIONS(5285), + [anon_sym_BSLASHpageref] = ACTIONS(5285), + [anon_sym_BSLASHcref] = ACTIONS(5285), + [anon_sym_BSLASHCref] = ACTIONS(5285), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnameCref] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHlabelcref] = ACTIONS(5285), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCrefrange] = ACTIONS(5285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnewlabel] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), + [anon_sym_BSLASHdef] = ACTIONS(5285), + [anon_sym_BSLASHlet] = ACTIONS(5285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), + [anon_sym_BSLASHgls] = ACTIONS(5285), + [anon_sym_BSLASHGls] = ACTIONS(5285), + [anon_sym_BSLASHGLS] = ACTIONS(5285), + [anon_sym_BSLASHglspl] = ACTIONS(5285), + [anon_sym_BSLASHGlspl] = ACTIONS(5285), + [anon_sym_BSLASHGLSpl] = ACTIONS(5285), + [anon_sym_BSLASHglsdisp] = ACTIONS(5285), + [anon_sym_BSLASHglslink] = ACTIONS(5285), + [anon_sym_BSLASHglstext] = ACTIONS(5285), + [anon_sym_BSLASHGlstext] = ACTIONS(5285), + [anon_sym_BSLASHGLStext] = ACTIONS(5285), + [anon_sym_BSLASHglsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), + [anon_sym_BSLASHglsplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSplural] = ACTIONS(5285), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHglsname] = ACTIONS(5285), + [anon_sym_BSLASHGlsname] = ACTIONS(5285), + [anon_sym_BSLASHGLSname] = ACTIONS(5285), + [anon_sym_BSLASHglssymbol] = ACTIONS(5285), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), + [anon_sym_BSLASHglsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), + [anon_sym_BSLASHglsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), + [anon_sym_BSLASHglsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), + [anon_sym_BSLASHglsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), + [anon_sym_BSLASHglsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), + [anon_sym_BSLASHnewacronym] = ACTIONS(5285), + [anon_sym_BSLASHacrshort] = ACTIONS(5285), + [anon_sym_BSLASHAcrshort] = ACTIONS(5285), + [anon_sym_BSLASHACRshort] = ACTIONS(5285), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), + [anon_sym_BSLASHacrlong] = ACTIONS(5285), + [anon_sym_BSLASHAcrlong] = ACTIONS(5285), + [anon_sym_BSLASHACRlong] = ACTIONS(5285), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), + [anon_sym_BSLASHacrfull] = ACTIONS(5285), + [anon_sym_BSLASHAcrfull] = ACTIONS(5285), + [anon_sym_BSLASHACRfull] = ACTIONS(5285), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), + [anon_sym_BSLASHacs] = ACTIONS(5285), + [anon_sym_BSLASHAcs] = ACTIONS(5285), + [anon_sym_BSLASHacsp] = ACTIONS(5285), + [anon_sym_BSLASHAcsp] = ACTIONS(5285), + [anon_sym_BSLASHacl] = ACTIONS(5285), + [anon_sym_BSLASHAcl] = ACTIONS(5285), + [anon_sym_BSLASHaclp] = ACTIONS(5285), + [anon_sym_BSLASHAclp] = ACTIONS(5285), + [anon_sym_BSLASHacf] = ACTIONS(5285), + [anon_sym_BSLASHAcf] = ACTIONS(5285), + [anon_sym_BSLASHacfp] = ACTIONS(5285), + [anon_sym_BSLASHAcfp] = ACTIONS(5285), + [anon_sym_BSLASHac] = ACTIONS(5285), + [anon_sym_BSLASHAc] = ACTIONS(5285), + [anon_sym_BSLASHacp] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), + [anon_sym_BSLASHcolor] = ACTIONS(5285), + [anon_sym_BSLASHcolorbox] = ACTIONS(5285), + [anon_sym_BSLASHtextcolor] = ACTIONS(5285), + [anon_sym_BSLASHpagecolor] = ACTIONS(5285), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), + [anon_sym_BSLASHtext] = ACTIONS(5285), + [anon_sym_BSLASHintertext] = ACTIONS(5285), + [anon_sym_shortintertext] = ACTIONS(5285), + }, + [1329] = { + [sym_command_name] = ACTIONS(4891), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4891), + [anon_sym_LPAREN] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_LBRACK] = ACTIONS(4889), + [anon_sym_RBRACK] = ACTIONS(4889), + [anon_sym_COMMA] = ACTIONS(4889), + [anon_sym_EQ] = ACTIONS(4889), + [anon_sym_LBRACE] = ACTIONS(4889), + [sym_word] = ACTIONS(4891), + [sym_placeholder] = ACTIONS(4889), + [anon_sym_PLUS] = ACTIONS(4891), + [anon_sym_DASH] = ACTIONS(4891), + [anon_sym_STAR] = ACTIONS(4891), + [anon_sym_SLASH] = ACTIONS(4891), + [anon_sym_CARET] = ACTIONS(4891), + [anon_sym__] = ACTIONS(4891), + [anon_sym_LT] = ACTIONS(4891), + [anon_sym_GT] = ACTIONS(4891), + [anon_sym_BANG] = ACTIONS(4891), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_COLON] = ACTIONS(4891), + [anon_sym_SQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4889), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(4891), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4889), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4889), + [anon_sym_BSLASHbegin] = ACTIONS(4891), + [anon_sym_BSLASHusepackage] = ACTIONS(4891), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4891), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4891), + [anon_sym_BSLASHinclude] = ACTIONS(4891), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4891), + [anon_sym_BSLASHinput] = ACTIONS(4891), + [anon_sym_BSLASHsubfile] = ACTIONS(4891), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4891), + [anon_sym_BSLASHbibliography] = ACTIONS(4891), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4891), + [anon_sym_BSLASHincludesvg] = ACTIONS(4891), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4891), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4891), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4891), + [anon_sym_BSLASHimport] = ACTIONS(4891), + [anon_sym_BSLASHsubimport] = ACTIONS(4891), + [anon_sym_BSLASHinputfrom] = ACTIONS(4891), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4891), + [anon_sym_BSLASHincludefrom] = ACTIONS(4891), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4891), + [anon_sym_BSLASHcaption] = ACTIONS(4891), + [anon_sym_BSLASHcite] = ACTIONS(4891), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCite] = ACTIONS(4891), + [anon_sym_BSLASHnocite] = ACTIONS(4891), + [anon_sym_BSLASHcitet] = ACTIONS(4891), + [anon_sym_BSLASHcitep] = ACTIONS(4891), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteauthor] = ACTIONS(4891), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4891), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitetitle] = ACTIONS(4891), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteyear] = ACTIONS(4891), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4889), + [anon_sym_BSLASHcitedate] = ACTIONS(4891), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4889), + [anon_sym_BSLASHciteurl] = ACTIONS(4891), + [anon_sym_BSLASHfullcite] = ACTIONS(4891), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4891), + [anon_sym_BSLASHcitealt] = ACTIONS(4891), + [anon_sym_BSLASHcitealp] = ACTIONS(4891), + [anon_sym_BSLASHcitetext] = ACTIONS(4891), + [anon_sym_BSLASHparencite] = ACTIONS(4891), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHParencite] = ACTIONS(4891), + [anon_sym_BSLASHfootcite] = ACTIONS(4891), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4891), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4891), + [anon_sym_BSLASHtextcite] = ACTIONS(4891), + [anon_sym_BSLASHTextcite] = ACTIONS(4891), + [anon_sym_BSLASHsmartcite] = ACTIONS(4891), + [anon_sym_BSLASHSmartcite] = ACTIONS(4891), + [anon_sym_BSLASHsupercite] = ACTIONS(4891), + [anon_sym_BSLASHautocite] = ACTIONS(4891), + [anon_sym_BSLASHAutocite] = ACTIONS(4891), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4889), + [anon_sym_BSLASHvolcite] = ACTIONS(4891), + [anon_sym_BSLASHVolcite] = ACTIONS(4891), + [anon_sym_BSLASHpvolcite] = ACTIONS(4891), + [anon_sym_BSLASHPvolcite] = ACTIONS(4891), + [anon_sym_BSLASHfvolcite] = ACTIONS(4891), + [anon_sym_BSLASHftvolcite] = ACTIONS(4891), + [anon_sym_BSLASHsvolcite] = ACTIONS(4891), + [anon_sym_BSLASHSvolcite] = ACTIONS(4891), + [anon_sym_BSLASHtvolcite] = ACTIONS(4891), + [anon_sym_BSLASHTvolcite] = ACTIONS(4891), + [anon_sym_BSLASHavolcite] = ACTIONS(4891), + [anon_sym_BSLASHAvolcite] = ACTIONS(4891), + [anon_sym_BSLASHnotecite] = ACTIONS(4891), + [anon_sym_BSLASHNotecite] = ACTIONS(4891), + [anon_sym_BSLASHpnotecite] = ACTIONS(4891), + [anon_sym_BSLASHPnotecite] = ACTIONS(4891), + [anon_sym_BSLASHfnotecite] = ACTIONS(4891), + [anon_sym_BSLASHlabel] = ACTIONS(4891), + [anon_sym_BSLASHref] = ACTIONS(4891), + [anon_sym_BSLASHeqref] = ACTIONS(4891), + [anon_sym_BSLASHvref] = ACTIONS(4891), + [anon_sym_BSLASHVref] = ACTIONS(4891), + [anon_sym_BSLASHautoref] = ACTIONS(4891), + [anon_sym_BSLASHpageref] = ACTIONS(4891), + [anon_sym_BSLASHcref] = ACTIONS(4891), + [anon_sym_BSLASHCref] = ACTIONS(4891), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4889), + [anon_sym_BSLASHnamecref] = ACTIONS(4891), + [anon_sym_BSLASHnameCref] = ACTIONS(4891), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4891), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4891), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4891), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4891), + [anon_sym_BSLASHlabelcref] = ACTIONS(4891), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4891), + [anon_sym_BSLASHcrefrange] = ACTIONS(4891), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4889), + [anon_sym_BSLASHCrefrange] = ACTIONS(4891), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4889), + [anon_sym_BSLASHnewlabel] = ACTIONS(4891), + [anon_sym_BSLASHnewcommand] = ACTIONS(4891), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4891), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4891), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4889), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4891), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4889), + [anon_sym_BSLASHdef] = ACTIONS(4891), + [anon_sym_BSLASHlet] = ACTIONS(4891), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4891), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4891), + [anon_sym_BSLASHgls] = ACTIONS(4891), + [anon_sym_BSLASHGls] = ACTIONS(4891), + [anon_sym_BSLASHGLS] = ACTIONS(4891), + [anon_sym_BSLASHglspl] = ACTIONS(4891), + [anon_sym_BSLASHGlspl] = ACTIONS(4891), + [anon_sym_BSLASHGLSpl] = ACTIONS(4891), + [anon_sym_BSLASHglsdisp] = ACTIONS(4891), + [anon_sym_BSLASHglslink] = ACTIONS(4891), + [anon_sym_BSLASHglstext] = ACTIONS(4891), + [anon_sym_BSLASHGlstext] = ACTIONS(4891), + [anon_sym_BSLASHGLStext] = ACTIONS(4891), + [anon_sym_BSLASHglsfirst] = ACTIONS(4891), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4891), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4891), + [anon_sym_BSLASHglsplural] = ACTIONS(4891), + [anon_sym_BSLASHGlsplural] = ACTIONS(4891), + [anon_sym_BSLASHGLSplural] = ACTIONS(4891), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4891), + [anon_sym_BSLASHglsname] = ACTIONS(4891), + [anon_sym_BSLASHGlsname] = ACTIONS(4891), + [anon_sym_BSLASHGLSname] = ACTIONS(4891), + [anon_sym_BSLASHglssymbol] = ACTIONS(4891), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4891), + [anon_sym_BSLASHglsdesc] = ACTIONS(4891), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4891), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4891), + [anon_sym_BSLASHglsuseri] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4891), + [anon_sym_BSLASHglsuserii] = ACTIONS(4891), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4891), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4891), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4891), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4891), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4891), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4891), + [anon_sym_BSLASHglsuserv] = ACTIONS(4891), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4891), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4891), + [anon_sym_BSLASHglsuservi] = ACTIONS(4891), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4891), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4891), + [anon_sym_BSLASHnewacronym] = ACTIONS(4891), + [anon_sym_BSLASHacrshort] = ACTIONS(4891), + [anon_sym_BSLASHAcrshort] = ACTIONS(4891), + [anon_sym_BSLASHACRshort] = ACTIONS(4891), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4891), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4891), + [anon_sym_BSLASHacrlong] = ACTIONS(4891), + [anon_sym_BSLASHAcrlong] = ACTIONS(4891), + [anon_sym_BSLASHACRlong] = ACTIONS(4891), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4891), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4891), + [anon_sym_BSLASHacrfull] = ACTIONS(4891), + [anon_sym_BSLASHAcrfull] = ACTIONS(4891), + [anon_sym_BSLASHACRfull] = ACTIONS(4891), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4891), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4891), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4891), + [anon_sym_BSLASHacs] = ACTIONS(4891), + [anon_sym_BSLASHAcs] = ACTIONS(4891), + [anon_sym_BSLASHacsp] = ACTIONS(4891), + [anon_sym_BSLASHAcsp] = ACTIONS(4891), + [anon_sym_BSLASHacl] = ACTIONS(4891), + [anon_sym_BSLASHAcl] = ACTIONS(4891), + [anon_sym_BSLASHaclp] = ACTIONS(4891), + [anon_sym_BSLASHAclp] = ACTIONS(4891), + [anon_sym_BSLASHacf] = ACTIONS(4891), + [anon_sym_BSLASHAcf] = ACTIONS(4891), + [anon_sym_BSLASHacfp] = ACTIONS(4891), + [anon_sym_BSLASHAcfp] = ACTIONS(4891), + [anon_sym_BSLASHac] = ACTIONS(4891), + [anon_sym_BSLASHAc] = ACTIONS(4891), + [anon_sym_BSLASHacp] = ACTIONS(4891), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4891), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4891), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4891), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4891), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4891), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4891), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4891), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4891), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4891), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4891), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4891), + [anon_sym_BSLASHcolor] = ACTIONS(4891), + [anon_sym_BSLASHcolorbox] = ACTIONS(4891), + [anon_sym_BSLASHtextcolor] = ACTIONS(4891), + [anon_sym_BSLASHpagecolor] = ACTIONS(4891), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4891), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4891), + [anon_sym_BSLASHtext] = ACTIONS(4891), + [anon_sym_BSLASHintertext] = ACTIONS(4891), + [anon_sym_shortintertext] = ACTIONS(4891), + }, + [1330] = { + [sym_command_name] = ACTIONS(4865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4865), + [anon_sym_BSLASHfi] = ACTIONS(5501), + [anon_sym_LPAREN] = ACTIONS(4863), + [anon_sym_RPAREN] = ACTIONS(4863), + [anon_sym_LBRACK] = ACTIONS(4863), + [anon_sym_RBRACK] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_LBRACE] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4863), + [sym_word] = ACTIONS(4865), + [sym_placeholder] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_CARET] = ACTIONS(4865), + [anon_sym__] = ACTIONS(4865), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_COLON] = ACTIONS(4865), + [anon_sym_SQUOTE] = ACTIONS(4865), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4863), + [anon_sym_DOLLAR] = ACTIONS(4865), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4863), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4863), + [anon_sym_BSLASHusepackage] = ACTIONS(4865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), + [anon_sym_BSLASHinclude] = ACTIONS(4865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), + [anon_sym_BSLASHinput] = ACTIONS(4865), + [anon_sym_BSLASHsubfile] = ACTIONS(4865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), + [anon_sym_BSLASHbibliography] = ACTIONS(4865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), + [anon_sym_BSLASHincludesvg] = ACTIONS(4865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), + [anon_sym_BSLASHimport] = ACTIONS(4865), + [anon_sym_BSLASHsubimport] = ACTIONS(4865), + [anon_sym_BSLASHinputfrom] = ACTIONS(4865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), + [anon_sym_BSLASHincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHcaption] = ACTIONS(4865), + [anon_sym_BSLASHcite] = ACTIONS(4865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCite] = ACTIONS(4865), + [anon_sym_BSLASHnocite] = ACTIONS(4865), + [anon_sym_BSLASHcitet] = ACTIONS(4865), + [anon_sym_BSLASHcitep] = ACTIONS(4865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteauthor] = ACTIONS(4865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitetitle] = ACTIONS(4865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteyear] = ACTIONS(4865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitedate] = ACTIONS(4865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteurl] = ACTIONS(4865), + [anon_sym_BSLASHfullcite] = ACTIONS(4865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), + [anon_sym_BSLASHcitealt] = ACTIONS(4865), + [anon_sym_BSLASHcitealp] = ACTIONS(4865), + [anon_sym_BSLASHcitetext] = ACTIONS(4865), + [anon_sym_BSLASHparencite] = ACTIONS(4865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHParencite] = ACTIONS(4865), + [anon_sym_BSLASHfootcite] = ACTIONS(4865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), + [anon_sym_BSLASHtextcite] = ACTIONS(4865), + [anon_sym_BSLASHTextcite] = ACTIONS(4865), + [anon_sym_BSLASHsmartcite] = ACTIONS(4865), + [anon_sym_BSLASHSmartcite] = ACTIONS(4865), + [anon_sym_BSLASHsupercite] = ACTIONS(4865), + [anon_sym_BSLASHautocite] = ACTIONS(4865), + [anon_sym_BSLASHAutocite] = ACTIONS(4865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHvolcite] = ACTIONS(4865), + [anon_sym_BSLASHVolcite] = ACTIONS(4865), + [anon_sym_BSLASHpvolcite] = ACTIONS(4865), + [anon_sym_BSLASHPvolcite] = ACTIONS(4865), + [anon_sym_BSLASHfvolcite] = ACTIONS(4865), + [anon_sym_BSLASHftvolcite] = ACTIONS(4865), + [anon_sym_BSLASHsvolcite] = ACTIONS(4865), + [anon_sym_BSLASHSvolcite] = ACTIONS(4865), + [anon_sym_BSLASHtvolcite] = ACTIONS(4865), + [anon_sym_BSLASHTvolcite] = ACTIONS(4865), + [anon_sym_BSLASHavolcite] = ACTIONS(4865), + [anon_sym_BSLASHAvolcite] = ACTIONS(4865), + [anon_sym_BSLASHnotecite] = ACTIONS(4865), + [anon_sym_BSLASHNotecite] = ACTIONS(4865), + [anon_sym_BSLASHpnotecite] = ACTIONS(4865), + [anon_sym_BSLASHPnotecite] = ACTIONS(4865), + [anon_sym_BSLASHfnotecite] = ACTIONS(4865), + [anon_sym_BSLASHlabel] = ACTIONS(4865), + [anon_sym_BSLASHref] = ACTIONS(4865), + [anon_sym_BSLASHeqref] = ACTIONS(4865), + [anon_sym_BSLASHvref] = ACTIONS(4865), + [anon_sym_BSLASHVref] = ACTIONS(4865), + [anon_sym_BSLASHautoref] = ACTIONS(4865), + [anon_sym_BSLASHpageref] = ACTIONS(4865), + [anon_sym_BSLASHcref] = ACTIONS(4865), + [anon_sym_BSLASHCref] = ACTIONS(4865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnameCref] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHlabelcref] = ACTIONS(4865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCrefrange] = ACTIONS(4865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnewlabel] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), + [anon_sym_BSLASHdef] = ACTIONS(4865), + [anon_sym_BSLASHlet] = ACTIONS(4865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), + [anon_sym_BSLASHgls] = ACTIONS(4865), + [anon_sym_BSLASHGls] = ACTIONS(4865), + [anon_sym_BSLASHGLS] = ACTIONS(4865), + [anon_sym_BSLASHglspl] = ACTIONS(4865), + [anon_sym_BSLASHGlspl] = ACTIONS(4865), + [anon_sym_BSLASHGLSpl] = ACTIONS(4865), + [anon_sym_BSLASHglsdisp] = ACTIONS(4865), + [anon_sym_BSLASHglslink] = ACTIONS(4865), + [anon_sym_BSLASHglstext] = ACTIONS(4865), + [anon_sym_BSLASHGlstext] = ACTIONS(4865), + [anon_sym_BSLASHGLStext] = ACTIONS(4865), + [anon_sym_BSLASHglsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), + [anon_sym_BSLASHglsplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSplural] = ACTIONS(4865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHglsname] = ACTIONS(4865), + [anon_sym_BSLASHGlsname] = ACTIONS(4865), + [anon_sym_BSLASHGLSname] = ACTIONS(4865), + [anon_sym_BSLASHglssymbol] = ACTIONS(4865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), + [anon_sym_BSLASHglsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), + [anon_sym_BSLASHglsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), + [anon_sym_BSLASHglsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), + [anon_sym_BSLASHglsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), + [anon_sym_BSLASHglsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), + [anon_sym_BSLASHnewacronym] = ACTIONS(4865), + [anon_sym_BSLASHacrshort] = ACTIONS(4865), + [anon_sym_BSLASHAcrshort] = ACTIONS(4865), + [anon_sym_BSLASHACRshort] = ACTIONS(4865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), + [anon_sym_BSLASHacrlong] = ACTIONS(4865), + [anon_sym_BSLASHAcrlong] = ACTIONS(4865), + [anon_sym_BSLASHACRlong] = ACTIONS(4865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), + [anon_sym_BSLASHacrfull] = ACTIONS(4865), + [anon_sym_BSLASHAcrfull] = ACTIONS(4865), + [anon_sym_BSLASHACRfull] = ACTIONS(4865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), + [anon_sym_BSLASHacs] = ACTIONS(4865), + [anon_sym_BSLASHAcs] = ACTIONS(4865), + [anon_sym_BSLASHacsp] = ACTIONS(4865), + [anon_sym_BSLASHAcsp] = ACTIONS(4865), + [anon_sym_BSLASHacl] = ACTIONS(4865), + [anon_sym_BSLASHAcl] = ACTIONS(4865), + [anon_sym_BSLASHaclp] = ACTIONS(4865), + [anon_sym_BSLASHAclp] = ACTIONS(4865), + [anon_sym_BSLASHacf] = ACTIONS(4865), + [anon_sym_BSLASHAcf] = ACTIONS(4865), + [anon_sym_BSLASHacfp] = ACTIONS(4865), + [anon_sym_BSLASHAcfp] = ACTIONS(4865), + [anon_sym_BSLASHac] = ACTIONS(4865), + [anon_sym_BSLASHAc] = ACTIONS(4865), + [anon_sym_BSLASHacp] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), + [anon_sym_BSLASHcolor] = ACTIONS(4865), + [anon_sym_BSLASHcolorbox] = ACTIONS(4865), + [anon_sym_BSLASHtextcolor] = ACTIONS(4865), + [anon_sym_BSLASHpagecolor] = ACTIONS(4865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), + [anon_sym_BSLASHtext] = ACTIONS(4865), + [anon_sym_BSLASHintertext] = ACTIONS(4865), + [anon_sym_shortintertext] = ACTIONS(4865), + }, + [1331] = { + [sym_command_name] = ACTIONS(4925), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_RBRACK] = ACTIONS(4923), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_EQ] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4923), + [sym_word] = ACTIONS(4925), + [sym_placeholder] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym__] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_BANG] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_SQUOTE] = ACTIONS(4925), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), + [anon_sym_DOLLAR] = ACTIONS(4925), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), + [anon_sym_BSLASHbegin] = ACTIONS(4925), + [anon_sym_BSLASHusepackage] = ACTIONS(4925), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), + [anon_sym_BSLASHinclude] = ACTIONS(4925), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), + [anon_sym_BSLASHinput] = ACTIONS(4925), + [anon_sym_BSLASHsubfile] = ACTIONS(4925), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), + [anon_sym_BSLASHbibliography] = ACTIONS(4925), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), + [anon_sym_BSLASHincludesvg] = ACTIONS(4925), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), + [anon_sym_BSLASHimport] = ACTIONS(4925), + [anon_sym_BSLASHsubimport] = ACTIONS(4925), + [anon_sym_BSLASHinputfrom] = ACTIONS(4925), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), + [anon_sym_BSLASHincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHcaption] = ACTIONS(4925), + [anon_sym_BSLASHcite] = ACTIONS(4925), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCite] = ACTIONS(4925), + [anon_sym_BSLASHnocite] = ACTIONS(4925), + [anon_sym_BSLASHcitet] = ACTIONS(4925), + [anon_sym_BSLASHcitep] = ACTIONS(4925), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteauthor] = ACTIONS(4925), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitetitle] = ACTIONS(4925), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteyear] = ACTIONS(4925), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitedate] = ACTIONS(4925), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteurl] = ACTIONS(4925), + [anon_sym_BSLASHfullcite] = ACTIONS(4925), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4925), + [anon_sym_BSLASHcitealt] = ACTIONS(4925), + [anon_sym_BSLASHcitealp] = ACTIONS(4925), + [anon_sym_BSLASHcitetext] = ACTIONS(4925), + [anon_sym_BSLASHparencite] = ACTIONS(4925), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHParencite] = ACTIONS(4925), + [anon_sym_BSLASHfootcite] = ACTIONS(4925), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4925), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4925), + [anon_sym_BSLASHtextcite] = ACTIONS(4925), + [anon_sym_BSLASHTextcite] = ACTIONS(4925), + [anon_sym_BSLASHsmartcite] = ACTIONS(4925), + [anon_sym_BSLASHSmartcite] = ACTIONS(4925), + [anon_sym_BSLASHsupercite] = ACTIONS(4925), + [anon_sym_BSLASHautocite] = ACTIONS(4925), + [anon_sym_BSLASHAutocite] = ACTIONS(4925), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHvolcite] = ACTIONS(4925), + [anon_sym_BSLASHVolcite] = ACTIONS(4925), + [anon_sym_BSLASHpvolcite] = ACTIONS(4925), + [anon_sym_BSLASHPvolcite] = ACTIONS(4925), + [anon_sym_BSLASHfvolcite] = ACTIONS(4925), + [anon_sym_BSLASHftvolcite] = ACTIONS(4925), + [anon_sym_BSLASHsvolcite] = ACTIONS(4925), + [anon_sym_BSLASHSvolcite] = ACTIONS(4925), + [anon_sym_BSLASHtvolcite] = ACTIONS(4925), + [anon_sym_BSLASHTvolcite] = ACTIONS(4925), + [anon_sym_BSLASHavolcite] = ACTIONS(4925), + [anon_sym_BSLASHAvolcite] = ACTIONS(4925), + [anon_sym_BSLASHnotecite] = ACTIONS(4925), + [anon_sym_BSLASHNotecite] = ACTIONS(4925), + [anon_sym_BSLASHpnotecite] = ACTIONS(4925), + [anon_sym_BSLASHPnotecite] = ACTIONS(4925), + [anon_sym_BSLASHfnotecite] = ACTIONS(4925), + [anon_sym_BSLASHlabel] = ACTIONS(4925), + [anon_sym_BSLASHref] = ACTIONS(4925), + [anon_sym_BSLASHeqref] = ACTIONS(4925), + [anon_sym_BSLASHvref] = ACTIONS(4925), + [anon_sym_BSLASHVref] = ACTIONS(4925), + [anon_sym_BSLASHautoref] = ACTIONS(4925), + [anon_sym_BSLASHpageref] = ACTIONS(4925), + [anon_sym_BSLASHcref] = ACTIONS(4925), + [anon_sym_BSLASHCref] = ACTIONS(4925), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnameCref] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHlabelcref] = ACTIONS(4925), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCrefrange] = ACTIONS(4925), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnewlabel] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), + [anon_sym_BSLASHdef] = ACTIONS(4925), + [anon_sym_BSLASHlet] = ACTIONS(4925), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), + [anon_sym_BSLASHgls] = ACTIONS(4925), + [anon_sym_BSLASHGls] = ACTIONS(4925), + [anon_sym_BSLASHGLS] = ACTIONS(4925), + [anon_sym_BSLASHglspl] = ACTIONS(4925), + [anon_sym_BSLASHGlspl] = ACTIONS(4925), + [anon_sym_BSLASHGLSpl] = ACTIONS(4925), + [anon_sym_BSLASHglsdisp] = ACTIONS(4925), + [anon_sym_BSLASHglslink] = ACTIONS(4925), + [anon_sym_BSLASHglstext] = ACTIONS(4925), + [anon_sym_BSLASHGlstext] = ACTIONS(4925), + [anon_sym_BSLASHGLStext] = ACTIONS(4925), + [anon_sym_BSLASHglsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), + [anon_sym_BSLASHglsplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSplural] = ACTIONS(4925), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHglsname] = ACTIONS(4925), + [anon_sym_BSLASHGlsname] = ACTIONS(4925), + [anon_sym_BSLASHGLSname] = ACTIONS(4925), + [anon_sym_BSLASHglssymbol] = ACTIONS(4925), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), + [anon_sym_BSLASHglsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), + [anon_sym_BSLASHglsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), + [anon_sym_BSLASHglsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), + [anon_sym_BSLASHglsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), + [anon_sym_BSLASHglsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), + [anon_sym_BSLASHnewacronym] = ACTIONS(4925), + [anon_sym_BSLASHacrshort] = ACTIONS(4925), + [anon_sym_BSLASHAcrshort] = ACTIONS(4925), + [anon_sym_BSLASHACRshort] = ACTIONS(4925), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), + [anon_sym_BSLASHacrlong] = ACTIONS(4925), + [anon_sym_BSLASHAcrlong] = ACTIONS(4925), + [anon_sym_BSLASHACRlong] = ACTIONS(4925), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), + [anon_sym_BSLASHacrfull] = ACTIONS(4925), + [anon_sym_BSLASHAcrfull] = ACTIONS(4925), + [anon_sym_BSLASHACRfull] = ACTIONS(4925), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), + [anon_sym_BSLASHacs] = ACTIONS(4925), + [anon_sym_BSLASHAcs] = ACTIONS(4925), + [anon_sym_BSLASHacsp] = ACTIONS(4925), + [anon_sym_BSLASHAcsp] = ACTIONS(4925), + [anon_sym_BSLASHacl] = ACTIONS(4925), + [anon_sym_BSLASHAcl] = ACTIONS(4925), + [anon_sym_BSLASHaclp] = ACTIONS(4925), + [anon_sym_BSLASHAclp] = ACTIONS(4925), + [anon_sym_BSLASHacf] = ACTIONS(4925), + [anon_sym_BSLASHAcf] = ACTIONS(4925), + [anon_sym_BSLASHacfp] = ACTIONS(4925), + [anon_sym_BSLASHAcfp] = ACTIONS(4925), + [anon_sym_BSLASHac] = ACTIONS(4925), + [anon_sym_BSLASHAc] = ACTIONS(4925), + [anon_sym_BSLASHacp] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), + [anon_sym_BSLASHcolor] = ACTIONS(4925), + [anon_sym_BSLASHcolorbox] = ACTIONS(4925), + [anon_sym_BSLASHtextcolor] = ACTIONS(4925), + [anon_sym_BSLASHpagecolor] = ACTIONS(4925), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), + [anon_sym_BSLASHtext] = ACTIONS(4925), + [anon_sym_BSLASHintertext] = ACTIONS(4925), + [anon_sym_shortintertext] = ACTIONS(4925), + }, + [1332] = { + [sym_command_name] = ACTIONS(5007), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(4981), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), - [anon_sym_BSLASHbegin] = ACTIONS(4983), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHiffalse] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_RBRACK] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_EQ] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5005), + [sym_word] = ACTIONS(5007), + [sym_placeholder] = ACTIONS(5005), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym__] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_BANG] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5007), + [anon_sym_SQUOTE] = ACTIONS(5007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), + [anon_sym_DOLLAR] = ACTIONS(5007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), + [anon_sym_BSLASHbegin] = ACTIONS(5007), + [anon_sym_BSLASHusepackage] = ACTIONS(5007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), + [anon_sym_BSLASHinclude] = ACTIONS(5007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), + [anon_sym_BSLASHinput] = ACTIONS(5007), + [anon_sym_BSLASHsubfile] = ACTIONS(5007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), + [anon_sym_BSLASHbibliography] = ACTIONS(5007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), + [anon_sym_BSLASHincludesvg] = ACTIONS(5007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), + [anon_sym_BSLASHimport] = ACTIONS(5007), + [anon_sym_BSLASHsubimport] = ACTIONS(5007), + [anon_sym_BSLASHinputfrom] = ACTIONS(5007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), + [anon_sym_BSLASHincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHcaption] = ACTIONS(5007), + [anon_sym_BSLASHcite] = ACTIONS(5007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCite] = ACTIONS(5007), + [anon_sym_BSLASHnocite] = ACTIONS(5007), + [anon_sym_BSLASHcitet] = ACTIONS(5007), + [anon_sym_BSLASHcitep] = ACTIONS(5007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteauthor] = ACTIONS(5007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitetitle] = ACTIONS(5007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteyear] = ACTIONS(5007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitedate] = ACTIONS(5007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteurl] = ACTIONS(5007), + [anon_sym_BSLASHfullcite] = ACTIONS(5007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), + [anon_sym_BSLASHcitealt] = ACTIONS(5007), + [anon_sym_BSLASHcitealp] = ACTIONS(5007), + [anon_sym_BSLASHcitetext] = ACTIONS(5007), + [anon_sym_BSLASHparencite] = ACTIONS(5007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHParencite] = ACTIONS(5007), + [anon_sym_BSLASHfootcite] = ACTIONS(5007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), + [anon_sym_BSLASHtextcite] = ACTIONS(5007), + [anon_sym_BSLASHTextcite] = ACTIONS(5007), + [anon_sym_BSLASHsmartcite] = ACTIONS(5007), + [anon_sym_BSLASHSmartcite] = ACTIONS(5007), + [anon_sym_BSLASHsupercite] = ACTIONS(5007), + [anon_sym_BSLASHautocite] = ACTIONS(5007), + [anon_sym_BSLASHAutocite] = ACTIONS(5007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHvolcite] = ACTIONS(5007), + [anon_sym_BSLASHVolcite] = ACTIONS(5007), + [anon_sym_BSLASHpvolcite] = ACTIONS(5007), + [anon_sym_BSLASHPvolcite] = ACTIONS(5007), + [anon_sym_BSLASHfvolcite] = ACTIONS(5007), + [anon_sym_BSLASHftvolcite] = ACTIONS(5007), + [anon_sym_BSLASHsvolcite] = ACTIONS(5007), + [anon_sym_BSLASHSvolcite] = ACTIONS(5007), + [anon_sym_BSLASHtvolcite] = ACTIONS(5007), + [anon_sym_BSLASHTvolcite] = ACTIONS(5007), + [anon_sym_BSLASHavolcite] = ACTIONS(5007), + [anon_sym_BSLASHAvolcite] = ACTIONS(5007), + [anon_sym_BSLASHnotecite] = ACTIONS(5007), + [anon_sym_BSLASHNotecite] = ACTIONS(5007), + [anon_sym_BSLASHpnotecite] = ACTIONS(5007), + [anon_sym_BSLASHPnotecite] = ACTIONS(5007), + [anon_sym_BSLASHfnotecite] = ACTIONS(5007), + [anon_sym_BSLASHlabel] = ACTIONS(5007), + [anon_sym_BSLASHref] = ACTIONS(5007), + [anon_sym_BSLASHeqref] = ACTIONS(5007), + [anon_sym_BSLASHvref] = ACTIONS(5007), + [anon_sym_BSLASHVref] = ACTIONS(5007), + [anon_sym_BSLASHautoref] = ACTIONS(5007), + [anon_sym_BSLASHpageref] = ACTIONS(5007), + [anon_sym_BSLASHcref] = ACTIONS(5007), + [anon_sym_BSLASHCref] = ACTIONS(5007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnameCref] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHlabelcref] = ACTIONS(5007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCrefrange] = ACTIONS(5007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnewlabel] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), + [anon_sym_BSLASHdef] = ACTIONS(5007), + [anon_sym_BSLASHlet] = ACTIONS(5007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), + [anon_sym_BSLASHgls] = ACTIONS(5007), + [anon_sym_BSLASHGls] = ACTIONS(5007), + [anon_sym_BSLASHGLS] = ACTIONS(5007), + [anon_sym_BSLASHglspl] = ACTIONS(5007), + [anon_sym_BSLASHGlspl] = ACTIONS(5007), + [anon_sym_BSLASHGLSpl] = ACTIONS(5007), + [anon_sym_BSLASHglsdisp] = ACTIONS(5007), + [anon_sym_BSLASHglslink] = ACTIONS(5007), + [anon_sym_BSLASHglstext] = ACTIONS(5007), + [anon_sym_BSLASHGlstext] = ACTIONS(5007), + [anon_sym_BSLASHGLStext] = ACTIONS(5007), + [anon_sym_BSLASHglsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), + [anon_sym_BSLASHglsplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSplural] = ACTIONS(5007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHglsname] = ACTIONS(5007), + [anon_sym_BSLASHGlsname] = ACTIONS(5007), + [anon_sym_BSLASHGLSname] = ACTIONS(5007), + [anon_sym_BSLASHglssymbol] = ACTIONS(5007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), + [anon_sym_BSLASHglsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), + [anon_sym_BSLASHglsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), + [anon_sym_BSLASHglsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), + [anon_sym_BSLASHglsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), + [anon_sym_BSLASHglsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), + [anon_sym_BSLASHnewacronym] = ACTIONS(5007), + [anon_sym_BSLASHacrshort] = ACTIONS(5007), + [anon_sym_BSLASHAcrshort] = ACTIONS(5007), + [anon_sym_BSLASHACRshort] = ACTIONS(5007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), + [anon_sym_BSLASHacrlong] = ACTIONS(5007), + [anon_sym_BSLASHAcrlong] = ACTIONS(5007), + [anon_sym_BSLASHACRlong] = ACTIONS(5007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), + [anon_sym_BSLASHacrfull] = ACTIONS(5007), + [anon_sym_BSLASHAcrfull] = ACTIONS(5007), + [anon_sym_BSLASHACRfull] = ACTIONS(5007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), + [anon_sym_BSLASHacs] = ACTIONS(5007), + [anon_sym_BSLASHAcs] = ACTIONS(5007), + [anon_sym_BSLASHacsp] = ACTIONS(5007), + [anon_sym_BSLASHAcsp] = ACTIONS(5007), + [anon_sym_BSLASHacl] = ACTIONS(5007), + [anon_sym_BSLASHAcl] = ACTIONS(5007), + [anon_sym_BSLASHaclp] = ACTIONS(5007), + [anon_sym_BSLASHAclp] = ACTIONS(5007), + [anon_sym_BSLASHacf] = ACTIONS(5007), + [anon_sym_BSLASHAcf] = ACTIONS(5007), + [anon_sym_BSLASHacfp] = ACTIONS(5007), + [anon_sym_BSLASHAcfp] = ACTIONS(5007), + [anon_sym_BSLASHac] = ACTIONS(5007), + [anon_sym_BSLASHAc] = ACTIONS(5007), + [anon_sym_BSLASHacp] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), + [anon_sym_BSLASHcolor] = ACTIONS(5007), + [anon_sym_BSLASHcolorbox] = ACTIONS(5007), + [anon_sym_BSLASHtextcolor] = ACTIONS(5007), + [anon_sym_BSLASHpagecolor] = ACTIONS(5007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), + [anon_sym_BSLASHtext] = ACTIONS(5007), + [anon_sym_BSLASHintertext] = ACTIONS(5007), + [anon_sym_shortintertext] = ACTIONS(5007), }, - [1399] = { - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_EQ] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASHbegin] = ACTIONS(141), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [1333] = { + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_EQ] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASHbegin] = ACTIONS(133), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), }, - [1400] = { - [sym_command_name] = ACTIONS(4975), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_RPAREN] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_RBRACK] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4973), - [anon_sym_LBRACE] = ACTIONS(4973), - [sym_word] = ACTIONS(4975), - [sym_placeholder] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym__] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4973), - [anon_sym_BSLASHbegin] = ACTIONS(4975), - [anon_sym_BSLASHusepackage] = ACTIONS(4975), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4975), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4975), - [anon_sym_BSLASHinclude] = ACTIONS(4975), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4975), - [anon_sym_BSLASHinput] = ACTIONS(4975), - [anon_sym_BSLASHsubfile] = ACTIONS(4975), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4975), - [anon_sym_BSLASHbibliography] = ACTIONS(4975), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4975), - [anon_sym_BSLASHincludesvg] = ACTIONS(4975), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4975), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4975), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4975), - [anon_sym_BSLASHimport] = ACTIONS(4975), - [anon_sym_BSLASHsubimport] = ACTIONS(4975), - [anon_sym_BSLASHinputfrom] = ACTIONS(4975), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4975), - [anon_sym_BSLASHincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHcaption] = ACTIONS(4975), - [anon_sym_BSLASHcite] = ACTIONS(4975), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCite] = ACTIONS(4975), - [anon_sym_BSLASHnocite] = ACTIONS(4975), - [anon_sym_BSLASHcitet] = ACTIONS(4975), - [anon_sym_BSLASHcitep] = ACTIONS(4975), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor] = ACTIONS(4975), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4975), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle] = ACTIONS(4975), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteyear] = ACTIONS(4975), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitedate] = ACTIONS(4975), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteurl] = ACTIONS(4975), - [anon_sym_BSLASHfullcite] = ACTIONS(4975), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4975), - [anon_sym_BSLASHcitealt] = ACTIONS(4975), - [anon_sym_BSLASHcitealp] = ACTIONS(4975), - [anon_sym_BSLASHcitetext] = ACTIONS(4975), - [anon_sym_BSLASHparencite] = ACTIONS(4975), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHParencite] = ACTIONS(4975), - [anon_sym_BSLASHfootcite] = ACTIONS(4975), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4975), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4975), - [anon_sym_BSLASHtextcite] = ACTIONS(4975), - [anon_sym_BSLASHTextcite] = ACTIONS(4975), - [anon_sym_BSLASHsmartcite] = ACTIONS(4975), - [anon_sym_BSLASHSmartcite] = ACTIONS(4975), - [anon_sym_BSLASHsupercite] = ACTIONS(4975), - [anon_sym_BSLASHautocite] = ACTIONS(4975), - [anon_sym_BSLASHAutocite] = ACTIONS(4975), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHvolcite] = ACTIONS(4975), - [anon_sym_BSLASHVolcite] = ACTIONS(4975), - [anon_sym_BSLASHpvolcite] = ACTIONS(4975), - [anon_sym_BSLASHPvolcite] = ACTIONS(4975), - [anon_sym_BSLASHfvolcite] = ACTIONS(4975), - [anon_sym_BSLASHftvolcite] = ACTIONS(4975), - [anon_sym_BSLASHsvolcite] = ACTIONS(4975), - [anon_sym_BSLASHSvolcite] = ACTIONS(4975), - [anon_sym_BSLASHtvolcite] = ACTIONS(4975), - [anon_sym_BSLASHTvolcite] = ACTIONS(4975), - [anon_sym_BSLASHavolcite] = ACTIONS(4975), - [anon_sym_BSLASHAvolcite] = ACTIONS(4975), - [anon_sym_BSLASHnotecite] = ACTIONS(4975), - [anon_sym_BSLASHNotecite] = ACTIONS(4975), - [anon_sym_BSLASHpnotecite] = ACTIONS(4975), - [anon_sym_BSLASHPnotecite] = ACTIONS(4975), - [anon_sym_BSLASHfnotecite] = ACTIONS(4975), - [anon_sym_BSLASHlabel] = ACTIONS(4975), - [anon_sym_BSLASHref] = ACTIONS(4975), - [anon_sym_BSLASHeqref] = ACTIONS(4975), - [anon_sym_BSLASHvref] = ACTIONS(4975), - [anon_sym_BSLASHVref] = ACTIONS(4975), - [anon_sym_BSLASHautoref] = ACTIONS(4975), - [anon_sym_BSLASHpageref] = ACTIONS(4975), - [anon_sym_BSLASHcref] = ACTIONS(4975), - [anon_sym_BSLASHCref] = ACTIONS(4975), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnameCref] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHlabelcref] = ACTIONS(4975), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange] = ACTIONS(4975), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnewlabel] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4975), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4975), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4975), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4973), - [anon_sym_BSLASHdef] = ACTIONS(4975), - [anon_sym_BSLASHlet] = ACTIONS(4975), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4975), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4975), - [anon_sym_BSLASHgls] = ACTIONS(4975), - [anon_sym_BSLASHGls] = ACTIONS(4975), - [anon_sym_BSLASHGLS] = ACTIONS(4975), - [anon_sym_BSLASHglspl] = ACTIONS(4975), - [anon_sym_BSLASHGlspl] = ACTIONS(4975), - [anon_sym_BSLASHGLSpl] = ACTIONS(4975), - [anon_sym_BSLASHglsdisp] = ACTIONS(4975), - [anon_sym_BSLASHglslink] = ACTIONS(4975), - [anon_sym_BSLASHglstext] = ACTIONS(4975), - [anon_sym_BSLASHGlstext] = ACTIONS(4975), - [anon_sym_BSLASHGLStext] = ACTIONS(4975), - [anon_sym_BSLASHglsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4975), - [anon_sym_BSLASHglsplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSplural] = ACTIONS(4975), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHglsname] = ACTIONS(4975), - [anon_sym_BSLASHGlsname] = ACTIONS(4975), - [anon_sym_BSLASHGLSname] = ACTIONS(4975), - [anon_sym_BSLASHglssymbol] = ACTIONS(4975), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4975), - [anon_sym_BSLASHglsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4975), - [anon_sym_BSLASHglsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4975), - [anon_sym_BSLASHglsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4975), - [anon_sym_BSLASHglsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4975), - [anon_sym_BSLASHglsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4975), - [anon_sym_BSLASHnewacronym] = ACTIONS(4975), - [anon_sym_BSLASHacrshort] = ACTIONS(4975), - [anon_sym_BSLASHAcrshort] = ACTIONS(4975), - [anon_sym_BSLASHACRshort] = ACTIONS(4975), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4975), - [anon_sym_BSLASHacrlong] = ACTIONS(4975), - [anon_sym_BSLASHAcrlong] = ACTIONS(4975), - [anon_sym_BSLASHACRlong] = ACTIONS(4975), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4975), - [anon_sym_BSLASHacrfull] = ACTIONS(4975), - [anon_sym_BSLASHAcrfull] = ACTIONS(4975), - [anon_sym_BSLASHACRfull] = ACTIONS(4975), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4975), - [anon_sym_BSLASHacs] = ACTIONS(4975), - [anon_sym_BSLASHAcs] = ACTIONS(4975), - [anon_sym_BSLASHacsp] = ACTIONS(4975), - [anon_sym_BSLASHAcsp] = ACTIONS(4975), - [anon_sym_BSLASHacl] = ACTIONS(4975), - [anon_sym_BSLASHAcl] = ACTIONS(4975), - [anon_sym_BSLASHaclp] = ACTIONS(4975), - [anon_sym_BSLASHAclp] = ACTIONS(4975), - [anon_sym_BSLASHacf] = ACTIONS(4975), - [anon_sym_BSLASHAcf] = ACTIONS(4975), - [anon_sym_BSLASHacfp] = ACTIONS(4975), - [anon_sym_BSLASHAcfp] = ACTIONS(4975), - [anon_sym_BSLASHac] = ACTIONS(4975), - [anon_sym_BSLASHAc] = ACTIONS(4975), - [anon_sym_BSLASHacp] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4975), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4975), - [anon_sym_BSLASHcolor] = ACTIONS(4975), - [anon_sym_BSLASHcolorbox] = ACTIONS(4975), - [anon_sym_BSLASHtextcolor] = ACTIONS(4975), - [anon_sym_BSLASHpagecolor] = ACTIONS(4975), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4975), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4975), + [1334] = { + [sym_command_name] = ACTIONS(4943), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4943), + [anon_sym_LPAREN] = ACTIONS(4941), + [anon_sym_RPAREN] = ACTIONS(4941), + [anon_sym_LBRACK] = ACTIONS(4941), + [anon_sym_RBRACK] = ACTIONS(4941), + [anon_sym_COMMA] = ACTIONS(4941), + [anon_sym_EQ] = ACTIONS(4941), + [anon_sym_LBRACE] = ACTIONS(4941), + [sym_word] = ACTIONS(4943), + [sym_placeholder] = ACTIONS(4941), + [anon_sym_PLUS] = ACTIONS(4943), + [anon_sym_DASH] = ACTIONS(4943), + [anon_sym_STAR] = ACTIONS(4943), + [anon_sym_SLASH] = ACTIONS(4943), + [anon_sym_CARET] = ACTIONS(4943), + [anon_sym__] = ACTIONS(4943), + [anon_sym_LT] = ACTIONS(4943), + [anon_sym_GT] = ACTIONS(4943), + [anon_sym_BANG] = ACTIONS(4943), + [anon_sym_PIPE] = ACTIONS(4943), + [anon_sym_COLON] = ACTIONS(4943), + [anon_sym_SQUOTE] = ACTIONS(4943), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4941), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4941), + [anon_sym_DOLLAR] = ACTIONS(4943), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4941), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4941), + [anon_sym_BSLASHbegin] = ACTIONS(4943), + [anon_sym_BSLASHusepackage] = ACTIONS(4943), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4943), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4943), + [anon_sym_BSLASHinclude] = ACTIONS(4943), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4943), + [anon_sym_BSLASHinput] = ACTIONS(4943), + [anon_sym_BSLASHsubfile] = ACTIONS(4943), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4943), + [anon_sym_BSLASHbibliography] = ACTIONS(4943), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4943), + [anon_sym_BSLASHincludesvg] = ACTIONS(4943), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4943), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4943), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4943), + [anon_sym_BSLASHimport] = ACTIONS(4943), + [anon_sym_BSLASHsubimport] = ACTIONS(4943), + [anon_sym_BSLASHinputfrom] = ACTIONS(4943), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4943), + [anon_sym_BSLASHincludefrom] = ACTIONS(4943), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4943), + [anon_sym_BSLASHcaption] = ACTIONS(4943), + [anon_sym_BSLASHcite] = ACTIONS(4943), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCite] = ACTIONS(4943), + [anon_sym_BSLASHnocite] = ACTIONS(4943), + [anon_sym_BSLASHcitet] = ACTIONS(4943), + [anon_sym_BSLASHcitep] = ACTIONS(4943), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteauthor] = ACTIONS(4943), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4943), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitetitle] = ACTIONS(4943), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteyear] = ACTIONS(4943), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4941), + [anon_sym_BSLASHcitedate] = ACTIONS(4943), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4941), + [anon_sym_BSLASHciteurl] = ACTIONS(4943), + [anon_sym_BSLASHfullcite] = ACTIONS(4943), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4943), + [anon_sym_BSLASHcitealt] = ACTIONS(4943), + [anon_sym_BSLASHcitealp] = ACTIONS(4943), + [anon_sym_BSLASHcitetext] = ACTIONS(4943), + [anon_sym_BSLASHparencite] = ACTIONS(4943), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHParencite] = ACTIONS(4943), + [anon_sym_BSLASHfootcite] = ACTIONS(4943), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4943), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4943), + [anon_sym_BSLASHtextcite] = ACTIONS(4943), + [anon_sym_BSLASHTextcite] = ACTIONS(4943), + [anon_sym_BSLASHsmartcite] = ACTIONS(4943), + [anon_sym_BSLASHSmartcite] = ACTIONS(4943), + [anon_sym_BSLASHsupercite] = ACTIONS(4943), + [anon_sym_BSLASHautocite] = ACTIONS(4943), + [anon_sym_BSLASHAutocite] = ACTIONS(4943), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4941), + [anon_sym_BSLASHvolcite] = ACTIONS(4943), + [anon_sym_BSLASHVolcite] = ACTIONS(4943), + [anon_sym_BSLASHpvolcite] = ACTIONS(4943), + [anon_sym_BSLASHPvolcite] = ACTIONS(4943), + [anon_sym_BSLASHfvolcite] = ACTIONS(4943), + [anon_sym_BSLASHftvolcite] = ACTIONS(4943), + [anon_sym_BSLASHsvolcite] = ACTIONS(4943), + [anon_sym_BSLASHSvolcite] = ACTIONS(4943), + [anon_sym_BSLASHtvolcite] = ACTIONS(4943), + [anon_sym_BSLASHTvolcite] = ACTIONS(4943), + [anon_sym_BSLASHavolcite] = ACTIONS(4943), + [anon_sym_BSLASHAvolcite] = ACTIONS(4943), + [anon_sym_BSLASHnotecite] = ACTIONS(4943), + [anon_sym_BSLASHNotecite] = ACTIONS(4943), + [anon_sym_BSLASHpnotecite] = ACTIONS(4943), + [anon_sym_BSLASHPnotecite] = ACTIONS(4943), + [anon_sym_BSLASHfnotecite] = ACTIONS(4943), + [anon_sym_BSLASHlabel] = ACTIONS(4943), + [anon_sym_BSLASHref] = ACTIONS(4943), + [anon_sym_BSLASHeqref] = ACTIONS(4943), + [anon_sym_BSLASHvref] = ACTIONS(4943), + [anon_sym_BSLASHVref] = ACTIONS(4943), + [anon_sym_BSLASHautoref] = ACTIONS(4943), + [anon_sym_BSLASHpageref] = ACTIONS(4943), + [anon_sym_BSLASHcref] = ACTIONS(4943), + [anon_sym_BSLASHCref] = ACTIONS(4943), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4941), + [anon_sym_BSLASHnamecref] = ACTIONS(4943), + [anon_sym_BSLASHnameCref] = ACTIONS(4943), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4943), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4943), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4943), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4943), + [anon_sym_BSLASHlabelcref] = ACTIONS(4943), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4943), + [anon_sym_BSLASHcrefrange] = ACTIONS(4943), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4941), + [anon_sym_BSLASHCrefrange] = ACTIONS(4943), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4941), + [anon_sym_BSLASHnewlabel] = ACTIONS(4943), + [anon_sym_BSLASHnewcommand] = ACTIONS(4943), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4943), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4943), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4941), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4943), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4941), + [anon_sym_BSLASHdef] = ACTIONS(4943), + [anon_sym_BSLASHlet] = ACTIONS(4943), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4943), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4943), + [anon_sym_BSLASHgls] = ACTIONS(4943), + [anon_sym_BSLASHGls] = ACTIONS(4943), + [anon_sym_BSLASHGLS] = ACTIONS(4943), + [anon_sym_BSLASHglspl] = ACTIONS(4943), + [anon_sym_BSLASHGlspl] = ACTIONS(4943), + [anon_sym_BSLASHGLSpl] = ACTIONS(4943), + [anon_sym_BSLASHglsdisp] = ACTIONS(4943), + [anon_sym_BSLASHglslink] = ACTIONS(4943), + [anon_sym_BSLASHglstext] = ACTIONS(4943), + [anon_sym_BSLASHGlstext] = ACTIONS(4943), + [anon_sym_BSLASHGLStext] = ACTIONS(4943), + [anon_sym_BSLASHglsfirst] = ACTIONS(4943), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4943), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4943), + [anon_sym_BSLASHglsplural] = ACTIONS(4943), + [anon_sym_BSLASHGlsplural] = ACTIONS(4943), + [anon_sym_BSLASHGLSplural] = ACTIONS(4943), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4943), + [anon_sym_BSLASHglsname] = ACTIONS(4943), + [anon_sym_BSLASHGlsname] = ACTIONS(4943), + [anon_sym_BSLASHGLSname] = ACTIONS(4943), + [anon_sym_BSLASHglssymbol] = ACTIONS(4943), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4943), + [anon_sym_BSLASHglsdesc] = ACTIONS(4943), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4943), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4943), + [anon_sym_BSLASHglsuseri] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4943), + [anon_sym_BSLASHglsuserii] = ACTIONS(4943), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4943), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4943), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4943), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4943), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4943), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4943), + [anon_sym_BSLASHglsuserv] = ACTIONS(4943), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4943), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4943), + [anon_sym_BSLASHglsuservi] = ACTIONS(4943), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4943), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4943), + [anon_sym_BSLASHnewacronym] = ACTIONS(4943), + [anon_sym_BSLASHacrshort] = ACTIONS(4943), + [anon_sym_BSLASHAcrshort] = ACTIONS(4943), + [anon_sym_BSLASHACRshort] = ACTIONS(4943), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4943), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4943), + [anon_sym_BSLASHacrlong] = ACTIONS(4943), + [anon_sym_BSLASHAcrlong] = ACTIONS(4943), + [anon_sym_BSLASHACRlong] = ACTIONS(4943), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4943), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4943), + [anon_sym_BSLASHacrfull] = ACTIONS(4943), + [anon_sym_BSLASHAcrfull] = ACTIONS(4943), + [anon_sym_BSLASHACRfull] = ACTIONS(4943), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4943), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4943), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4943), + [anon_sym_BSLASHacs] = ACTIONS(4943), + [anon_sym_BSLASHAcs] = ACTIONS(4943), + [anon_sym_BSLASHacsp] = ACTIONS(4943), + [anon_sym_BSLASHAcsp] = ACTIONS(4943), + [anon_sym_BSLASHacl] = ACTIONS(4943), + [anon_sym_BSLASHAcl] = ACTIONS(4943), + [anon_sym_BSLASHaclp] = ACTIONS(4943), + [anon_sym_BSLASHAclp] = ACTIONS(4943), + [anon_sym_BSLASHacf] = ACTIONS(4943), + [anon_sym_BSLASHAcf] = ACTIONS(4943), + [anon_sym_BSLASHacfp] = ACTIONS(4943), + [anon_sym_BSLASHAcfp] = ACTIONS(4943), + [anon_sym_BSLASHac] = ACTIONS(4943), + [anon_sym_BSLASHAc] = ACTIONS(4943), + [anon_sym_BSLASHacp] = ACTIONS(4943), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4943), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4943), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4943), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4943), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4943), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4943), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4943), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4943), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4943), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4943), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4943), + [anon_sym_BSLASHcolor] = ACTIONS(4943), + [anon_sym_BSLASHcolorbox] = ACTIONS(4943), + [anon_sym_BSLASHtextcolor] = ACTIONS(4943), + [anon_sym_BSLASHpagecolor] = ACTIONS(4943), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4943), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4943), + [anon_sym_BSLASHtext] = ACTIONS(4943), + [anon_sym_BSLASHintertext] = ACTIONS(4943), + [anon_sym_shortintertext] = ACTIONS(4943), }, - [1401] = { - [sym_command_name] = ACTIONS(4971), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_RBRACK] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_LBRACE] = ACTIONS(4969), - [sym_word] = ACTIONS(4971), - [sym_placeholder] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_CARET] = ACTIONS(4971), - [anon_sym__] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4969), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4969), - [anon_sym_BSLASHbegin] = ACTIONS(4971), - [anon_sym_BSLASHusepackage] = ACTIONS(4971), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4971), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4971), - [anon_sym_BSLASHinclude] = ACTIONS(4971), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4971), - [anon_sym_BSLASHinput] = ACTIONS(4971), - [anon_sym_BSLASHsubfile] = ACTIONS(4971), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4971), - [anon_sym_BSLASHbibliography] = ACTIONS(4971), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4971), - [anon_sym_BSLASHincludesvg] = ACTIONS(4971), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4971), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4971), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4971), - [anon_sym_BSLASHimport] = ACTIONS(4971), - [anon_sym_BSLASHsubimport] = ACTIONS(4971), - [anon_sym_BSLASHinputfrom] = ACTIONS(4971), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4971), - [anon_sym_BSLASHincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHcaption] = ACTIONS(4971), - [anon_sym_BSLASHcite] = ACTIONS(4971), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCite] = ACTIONS(4971), - [anon_sym_BSLASHnocite] = ACTIONS(4971), - [anon_sym_BSLASHcitet] = ACTIONS(4971), - [anon_sym_BSLASHcitep] = ACTIONS(4971), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteyear] = ACTIONS(4971), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitedate] = ACTIONS(4971), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteurl] = ACTIONS(4971), - [anon_sym_BSLASHfullcite] = ACTIONS(4971), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4971), - [anon_sym_BSLASHcitealt] = ACTIONS(4971), - [anon_sym_BSLASHcitealp] = ACTIONS(4971), - [anon_sym_BSLASHcitetext] = ACTIONS(4971), - [anon_sym_BSLASHparencite] = ACTIONS(4971), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHParencite] = ACTIONS(4971), - [anon_sym_BSLASHfootcite] = ACTIONS(4971), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4971), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4971), - [anon_sym_BSLASHtextcite] = ACTIONS(4971), - [anon_sym_BSLASHTextcite] = ACTIONS(4971), - [anon_sym_BSLASHsmartcite] = ACTIONS(4971), - [anon_sym_BSLASHSmartcite] = ACTIONS(4971), - [anon_sym_BSLASHsupercite] = ACTIONS(4971), - [anon_sym_BSLASHautocite] = ACTIONS(4971), - [anon_sym_BSLASHAutocite] = ACTIONS(4971), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHvolcite] = ACTIONS(4971), - [anon_sym_BSLASHVolcite] = ACTIONS(4971), - [anon_sym_BSLASHpvolcite] = ACTIONS(4971), - [anon_sym_BSLASHPvolcite] = ACTIONS(4971), - [anon_sym_BSLASHfvolcite] = ACTIONS(4971), - [anon_sym_BSLASHftvolcite] = ACTIONS(4971), - [anon_sym_BSLASHsvolcite] = ACTIONS(4971), - [anon_sym_BSLASHSvolcite] = ACTIONS(4971), - [anon_sym_BSLASHtvolcite] = ACTIONS(4971), - [anon_sym_BSLASHTvolcite] = ACTIONS(4971), - [anon_sym_BSLASHavolcite] = ACTIONS(4971), - [anon_sym_BSLASHAvolcite] = ACTIONS(4971), - [anon_sym_BSLASHnotecite] = ACTIONS(4971), - [anon_sym_BSLASHNotecite] = ACTIONS(4971), - [anon_sym_BSLASHpnotecite] = ACTIONS(4971), - [anon_sym_BSLASHPnotecite] = ACTIONS(4971), - [anon_sym_BSLASHfnotecite] = ACTIONS(4971), - [anon_sym_BSLASHlabel] = ACTIONS(4971), - [anon_sym_BSLASHref] = ACTIONS(4971), - [anon_sym_BSLASHeqref] = ACTIONS(4971), - [anon_sym_BSLASHvref] = ACTIONS(4971), - [anon_sym_BSLASHVref] = ACTIONS(4971), - [anon_sym_BSLASHautoref] = ACTIONS(4971), - [anon_sym_BSLASHpageref] = ACTIONS(4971), - [anon_sym_BSLASHcref] = ACTIONS(4971), - [anon_sym_BSLASHCref] = ACTIONS(4971), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnameCref] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHlabelcref] = ACTIONS(4971), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnewlabel] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4969), - [anon_sym_BSLASHdef] = ACTIONS(4971), - [anon_sym_BSLASHlet] = ACTIONS(4971), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4971), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4971), - [anon_sym_BSLASHgls] = ACTIONS(4971), - [anon_sym_BSLASHGls] = ACTIONS(4971), - [anon_sym_BSLASHGLS] = ACTIONS(4971), - [anon_sym_BSLASHglspl] = ACTIONS(4971), - [anon_sym_BSLASHGlspl] = ACTIONS(4971), - [anon_sym_BSLASHGLSpl] = ACTIONS(4971), - [anon_sym_BSLASHglsdisp] = ACTIONS(4971), - [anon_sym_BSLASHglslink] = ACTIONS(4971), - [anon_sym_BSLASHglstext] = ACTIONS(4971), - [anon_sym_BSLASHGlstext] = ACTIONS(4971), - [anon_sym_BSLASHGLStext] = ACTIONS(4971), - [anon_sym_BSLASHglsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4971), - [anon_sym_BSLASHglsplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSplural] = ACTIONS(4971), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHglsname] = ACTIONS(4971), - [anon_sym_BSLASHGlsname] = ACTIONS(4971), - [anon_sym_BSLASHGLSname] = ACTIONS(4971), - [anon_sym_BSLASHglssymbol] = ACTIONS(4971), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4971), - [anon_sym_BSLASHglsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4971), - [anon_sym_BSLASHglsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4971), - [anon_sym_BSLASHglsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4971), - [anon_sym_BSLASHglsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4971), - [anon_sym_BSLASHglsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4971), - [anon_sym_BSLASHnewacronym] = ACTIONS(4971), - [anon_sym_BSLASHacrshort] = ACTIONS(4971), - [anon_sym_BSLASHAcrshort] = ACTIONS(4971), - [anon_sym_BSLASHACRshort] = ACTIONS(4971), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4971), - [anon_sym_BSLASHacrlong] = ACTIONS(4971), - [anon_sym_BSLASHAcrlong] = ACTIONS(4971), - [anon_sym_BSLASHACRlong] = ACTIONS(4971), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4971), - [anon_sym_BSLASHacrfull] = ACTIONS(4971), - [anon_sym_BSLASHAcrfull] = ACTIONS(4971), - [anon_sym_BSLASHACRfull] = ACTIONS(4971), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4971), - [anon_sym_BSLASHacs] = ACTIONS(4971), - [anon_sym_BSLASHAcs] = ACTIONS(4971), - [anon_sym_BSLASHacsp] = ACTIONS(4971), - [anon_sym_BSLASHAcsp] = ACTIONS(4971), - [anon_sym_BSLASHacl] = ACTIONS(4971), - [anon_sym_BSLASHAcl] = ACTIONS(4971), - [anon_sym_BSLASHaclp] = ACTIONS(4971), - [anon_sym_BSLASHAclp] = ACTIONS(4971), - [anon_sym_BSLASHacf] = ACTIONS(4971), - [anon_sym_BSLASHAcf] = ACTIONS(4971), - [anon_sym_BSLASHacfp] = ACTIONS(4971), - [anon_sym_BSLASHAcfp] = ACTIONS(4971), - [anon_sym_BSLASHac] = ACTIONS(4971), - [anon_sym_BSLASHAc] = ACTIONS(4971), - [anon_sym_BSLASHacp] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4971), - [anon_sym_BSLASHcolor] = ACTIONS(4971), - [anon_sym_BSLASHcolorbox] = ACTIONS(4971), - [anon_sym_BSLASHtextcolor] = ACTIONS(4971), - [anon_sym_BSLASHpagecolor] = ACTIONS(4971), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4971), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4971), + [1335] = { + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_EQ] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASHbegin] = ACTIONS(149), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), }, - [1402] = { - [sym_command_name] = ACTIONS(4967), + [1336] = { + [sym_command_name] = ACTIONS(4969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_EQ] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4967), + [sym_word] = ACTIONS(4969), + [sym_placeholder] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_CARET] = ACTIONS(4969), + [anon_sym__] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_COLON] = ACTIONS(4969), + [anon_sym_SQUOTE] = ACTIONS(4969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), + [anon_sym_BSLASHbegin] = ACTIONS(4969), + [anon_sym_BSLASHusepackage] = ACTIONS(4969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), + [anon_sym_BSLASHinclude] = ACTIONS(4969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), + [anon_sym_BSLASHinput] = ACTIONS(4969), + [anon_sym_BSLASHsubfile] = ACTIONS(4969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), + [anon_sym_BSLASHbibliography] = ACTIONS(4969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), + [anon_sym_BSLASHincludesvg] = ACTIONS(4969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), + [anon_sym_BSLASHimport] = ACTIONS(4969), + [anon_sym_BSLASHsubimport] = ACTIONS(4969), + [anon_sym_BSLASHinputfrom] = ACTIONS(4969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), + [anon_sym_BSLASHincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHcaption] = ACTIONS(4969), + [anon_sym_BSLASHcite] = ACTIONS(4969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCite] = ACTIONS(4969), + [anon_sym_BSLASHnocite] = ACTIONS(4969), + [anon_sym_BSLASHcitet] = ACTIONS(4969), + [anon_sym_BSLASHcitep] = ACTIONS(4969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteauthor] = ACTIONS(4969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitetitle] = ACTIONS(4969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteyear] = ACTIONS(4969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitedate] = ACTIONS(4969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteurl] = ACTIONS(4969), + [anon_sym_BSLASHfullcite] = ACTIONS(4969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), + [anon_sym_BSLASHcitealt] = ACTIONS(4969), + [anon_sym_BSLASHcitealp] = ACTIONS(4969), + [anon_sym_BSLASHcitetext] = ACTIONS(4969), + [anon_sym_BSLASHparencite] = ACTIONS(4969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHParencite] = ACTIONS(4969), + [anon_sym_BSLASHfootcite] = ACTIONS(4969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), + [anon_sym_BSLASHtextcite] = ACTIONS(4969), + [anon_sym_BSLASHTextcite] = ACTIONS(4969), + [anon_sym_BSLASHsmartcite] = ACTIONS(4969), + [anon_sym_BSLASHSmartcite] = ACTIONS(4969), + [anon_sym_BSLASHsupercite] = ACTIONS(4969), + [anon_sym_BSLASHautocite] = ACTIONS(4969), + [anon_sym_BSLASHAutocite] = ACTIONS(4969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHvolcite] = ACTIONS(4969), + [anon_sym_BSLASHVolcite] = ACTIONS(4969), + [anon_sym_BSLASHpvolcite] = ACTIONS(4969), + [anon_sym_BSLASHPvolcite] = ACTIONS(4969), + [anon_sym_BSLASHfvolcite] = ACTIONS(4969), + [anon_sym_BSLASHftvolcite] = ACTIONS(4969), + [anon_sym_BSLASHsvolcite] = ACTIONS(4969), + [anon_sym_BSLASHSvolcite] = ACTIONS(4969), + [anon_sym_BSLASHtvolcite] = ACTIONS(4969), + [anon_sym_BSLASHTvolcite] = ACTIONS(4969), + [anon_sym_BSLASHavolcite] = ACTIONS(4969), + [anon_sym_BSLASHAvolcite] = ACTIONS(4969), + [anon_sym_BSLASHnotecite] = ACTIONS(4969), + [anon_sym_BSLASHNotecite] = ACTIONS(4969), + [anon_sym_BSLASHpnotecite] = ACTIONS(4969), + [anon_sym_BSLASHPnotecite] = ACTIONS(4969), + [anon_sym_BSLASHfnotecite] = ACTIONS(4969), + [anon_sym_BSLASHlabel] = ACTIONS(4969), + [anon_sym_BSLASHref] = ACTIONS(4969), + [anon_sym_BSLASHeqref] = ACTIONS(4969), + [anon_sym_BSLASHvref] = ACTIONS(4969), + [anon_sym_BSLASHVref] = ACTIONS(4969), + [anon_sym_BSLASHautoref] = ACTIONS(4969), + [anon_sym_BSLASHpageref] = ACTIONS(4969), + [anon_sym_BSLASHcref] = ACTIONS(4969), + [anon_sym_BSLASHCref] = ACTIONS(4969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnameCref] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHlabelcref] = ACTIONS(4969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCrefrange] = ACTIONS(4969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnewlabel] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), + [anon_sym_BSLASHdef] = ACTIONS(4969), + [anon_sym_BSLASHlet] = ACTIONS(4969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), + [anon_sym_BSLASHgls] = ACTIONS(4969), + [anon_sym_BSLASHGls] = ACTIONS(4969), + [anon_sym_BSLASHGLS] = ACTIONS(4969), + [anon_sym_BSLASHglspl] = ACTIONS(4969), + [anon_sym_BSLASHGlspl] = ACTIONS(4969), + [anon_sym_BSLASHGLSpl] = ACTIONS(4969), + [anon_sym_BSLASHglsdisp] = ACTIONS(4969), + [anon_sym_BSLASHglslink] = ACTIONS(4969), + [anon_sym_BSLASHglstext] = ACTIONS(4969), + [anon_sym_BSLASHGlstext] = ACTIONS(4969), + [anon_sym_BSLASHGLStext] = ACTIONS(4969), + [anon_sym_BSLASHglsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), + [anon_sym_BSLASHglsplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSplural] = ACTIONS(4969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHglsname] = ACTIONS(4969), + [anon_sym_BSLASHGlsname] = ACTIONS(4969), + [anon_sym_BSLASHGLSname] = ACTIONS(4969), + [anon_sym_BSLASHglssymbol] = ACTIONS(4969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), + [anon_sym_BSLASHglsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), + [anon_sym_BSLASHglsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), + [anon_sym_BSLASHglsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), + [anon_sym_BSLASHglsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), + [anon_sym_BSLASHglsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), + [anon_sym_BSLASHnewacronym] = ACTIONS(4969), + [anon_sym_BSLASHacrshort] = ACTIONS(4969), + [anon_sym_BSLASHAcrshort] = ACTIONS(4969), + [anon_sym_BSLASHACRshort] = ACTIONS(4969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), + [anon_sym_BSLASHacrlong] = ACTIONS(4969), + [anon_sym_BSLASHAcrlong] = ACTIONS(4969), + [anon_sym_BSLASHACRlong] = ACTIONS(4969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), + [anon_sym_BSLASHacrfull] = ACTIONS(4969), + [anon_sym_BSLASHAcrfull] = ACTIONS(4969), + [anon_sym_BSLASHACRfull] = ACTIONS(4969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), + [anon_sym_BSLASHacs] = ACTIONS(4969), + [anon_sym_BSLASHAcs] = ACTIONS(4969), + [anon_sym_BSLASHacsp] = ACTIONS(4969), + [anon_sym_BSLASHAcsp] = ACTIONS(4969), + [anon_sym_BSLASHacl] = ACTIONS(4969), + [anon_sym_BSLASHAcl] = ACTIONS(4969), + [anon_sym_BSLASHaclp] = ACTIONS(4969), + [anon_sym_BSLASHAclp] = ACTIONS(4969), + [anon_sym_BSLASHacf] = ACTIONS(4969), + [anon_sym_BSLASHAcf] = ACTIONS(4969), + [anon_sym_BSLASHacfp] = ACTIONS(4969), + [anon_sym_BSLASHAcfp] = ACTIONS(4969), + [anon_sym_BSLASHac] = ACTIONS(4969), + [anon_sym_BSLASHAc] = ACTIONS(4969), + [anon_sym_BSLASHacp] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), + [anon_sym_BSLASHcolor] = ACTIONS(4969), + [anon_sym_BSLASHcolorbox] = ACTIONS(4969), + [anon_sym_BSLASHtextcolor] = ACTIONS(4969), + [anon_sym_BSLASHpagecolor] = ACTIONS(4969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), + [anon_sym_BSLASHtext] = ACTIONS(4969), + [anon_sym_BSLASHintertext] = ACTIONS(4969), + [anon_sym_shortintertext] = ACTIONS(4969), + }, + [1337] = { + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_EQ] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASHbegin] = ACTIONS(143), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), + }, + [1338] = { + [sym_command_name] = ACTIONS(4947), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4947), + [anon_sym_LPAREN] = ACTIONS(4945), + [anon_sym_RPAREN] = ACTIONS(4945), + [anon_sym_LBRACK] = ACTIONS(4945), + [anon_sym_RBRACK] = ACTIONS(4945), + [anon_sym_COMMA] = ACTIONS(4945), + [anon_sym_EQ] = ACTIONS(4945), + [anon_sym_LBRACE] = ACTIONS(4945), + [sym_word] = ACTIONS(4947), + [sym_placeholder] = ACTIONS(4945), + [anon_sym_PLUS] = ACTIONS(4947), + [anon_sym_DASH] = ACTIONS(4947), + [anon_sym_STAR] = ACTIONS(4947), + [anon_sym_SLASH] = ACTIONS(4947), + [anon_sym_CARET] = ACTIONS(4947), + [anon_sym__] = ACTIONS(4947), + [anon_sym_LT] = ACTIONS(4947), + [anon_sym_GT] = ACTIONS(4947), + [anon_sym_BANG] = ACTIONS(4947), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_COLON] = ACTIONS(4947), + [anon_sym_SQUOTE] = ACTIONS(4947), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4945), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4945), + [anon_sym_DOLLAR] = ACTIONS(4947), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4945), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4945), + [anon_sym_BSLASHbegin] = ACTIONS(4947), + [anon_sym_BSLASHusepackage] = ACTIONS(4947), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4947), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4947), + [anon_sym_BSLASHinclude] = ACTIONS(4947), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4947), + [anon_sym_BSLASHinput] = ACTIONS(4947), + [anon_sym_BSLASHsubfile] = ACTIONS(4947), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4947), + [anon_sym_BSLASHbibliography] = ACTIONS(4947), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4947), + [anon_sym_BSLASHincludesvg] = ACTIONS(4947), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4947), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4947), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4947), + [anon_sym_BSLASHimport] = ACTIONS(4947), + [anon_sym_BSLASHsubimport] = ACTIONS(4947), + [anon_sym_BSLASHinputfrom] = ACTIONS(4947), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4947), + [anon_sym_BSLASHincludefrom] = ACTIONS(4947), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4947), + [anon_sym_BSLASHcaption] = ACTIONS(4947), + [anon_sym_BSLASHcite] = ACTIONS(4947), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCite] = ACTIONS(4947), + [anon_sym_BSLASHnocite] = ACTIONS(4947), + [anon_sym_BSLASHcitet] = ACTIONS(4947), + [anon_sym_BSLASHcitep] = ACTIONS(4947), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteauthor] = ACTIONS(4947), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4947), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitetitle] = ACTIONS(4947), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteyear] = ACTIONS(4947), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4945), + [anon_sym_BSLASHcitedate] = ACTIONS(4947), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4945), + [anon_sym_BSLASHciteurl] = ACTIONS(4947), + [anon_sym_BSLASHfullcite] = ACTIONS(4947), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4947), + [anon_sym_BSLASHcitealt] = ACTIONS(4947), + [anon_sym_BSLASHcitealp] = ACTIONS(4947), + [anon_sym_BSLASHcitetext] = ACTIONS(4947), + [anon_sym_BSLASHparencite] = ACTIONS(4947), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHParencite] = ACTIONS(4947), + [anon_sym_BSLASHfootcite] = ACTIONS(4947), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4947), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4947), + [anon_sym_BSLASHtextcite] = ACTIONS(4947), + [anon_sym_BSLASHTextcite] = ACTIONS(4947), + [anon_sym_BSLASHsmartcite] = ACTIONS(4947), + [anon_sym_BSLASHSmartcite] = ACTIONS(4947), + [anon_sym_BSLASHsupercite] = ACTIONS(4947), + [anon_sym_BSLASHautocite] = ACTIONS(4947), + [anon_sym_BSLASHAutocite] = ACTIONS(4947), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4945), + [anon_sym_BSLASHvolcite] = ACTIONS(4947), + [anon_sym_BSLASHVolcite] = ACTIONS(4947), + [anon_sym_BSLASHpvolcite] = ACTIONS(4947), + [anon_sym_BSLASHPvolcite] = ACTIONS(4947), + [anon_sym_BSLASHfvolcite] = ACTIONS(4947), + [anon_sym_BSLASHftvolcite] = ACTIONS(4947), + [anon_sym_BSLASHsvolcite] = ACTIONS(4947), + [anon_sym_BSLASHSvolcite] = ACTIONS(4947), + [anon_sym_BSLASHtvolcite] = ACTIONS(4947), + [anon_sym_BSLASHTvolcite] = ACTIONS(4947), + [anon_sym_BSLASHavolcite] = ACTIONS(4947), + [anon_sym_BSLASHAvolcite] = ACTIONS(4947), + [anon_sym_BSLASHnotecite] = ACTIONS(4947), + [anon_sym_BSLASHNotecite] = ACTIONS(4947), + [anon_sym_BSLASHpnotecite] = ACTIONS(4947), + [anon_sym_BSLASHPnotecite] = ACTIONS(4947), + [anon_sym_BSLASHfnotecite] = ACTIONS(4947), + [anon_sym_BSLASHlabel] = ACTIONS(4947), + [anon_sym_BSLASHref] = ACTIONS(4947), + [anon_sym_BSLASHeqref] = ACTIONS(4947), + [anon_sym_BSLASHvref] = ACTIONS(4947), + [anon_sym_BSLASHVref] = ACTIONS(4947), + [anon_sym_BSLASHautoref] = ACTIONS(4947), + [anon_sym_BSLASHpageref] = ACTIONS(4947), + [anon_sym_BSLASHcref] = ACTIONS(4947), + [anon_sym_BSLASHCref] = ACTIONS(4947), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4945), + [anon_sym_BSLASHnamecref] = ACTIONS(4947), + [anon_sym_BSLASHnameCref] = ACTIONS(4947), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4947), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4947), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4947), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4947), + [anon_sym_BSLASHlabelcref] = ACTIONS(4947), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4947), + [anon_sym_BSLASHcrefrange] = ACTIONS(4947), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4945), + [anon_sym_BSLASHCrefrange] = ACTIONS(4947), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4945), + [anon_sym_BSLASHnewlabel] = ACTIONS(4947), + [anon_sym_BSLASHnewcommand] = ACTIONS(4947), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4947), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4947), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4945), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4947), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4945), + [anon_sym_BSLASHdef] = ACTIONS(4947), + [anon_sym_BSLASHlet] = ACTIONS(4947), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4947), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4947), + [anon_sym_BSLASHgls] = ACTIONS(4947), + [anon_sym_BSLASHGls] = ACTIONS(4947), + [anon_sym_BSLASHGLS] = ACTIONS(4947), + [anon_sym_BSLASHglspl] = ACTIONS(4947), + [anon_sym_BSLASHGlspl] = ACTIONS(4947), + [anon_sym_BSLASHGLSpl] = ACTIONS(4947), + [anon_sym_BSLASHglsdisp] = ACTIONS(4947), + [anon_sym_BSLASHglslink] = ACTIONS(4947), + [anon_sym_BSLASHglstext] = ACTIONS(4947), + [anon_sym_BSLASHGlstext] = ACTIONS(4947), + [anon_sym_BSLASHGLStext] = ACTIONS(4947), + [anon_sym_BSLASHglsfirst] = ACTIONS(4947), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4947), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4947), + [anon_sym_BSLASHglsplural] = ACTIONS(4947), + [anon_sym_BSLASHGlsplural] = ACTIONS(4947), + [anon_sym_BSLASHGLSplural] = ACTIONS(4947), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4947), + [anon_sym_BSLASHglsname] = ACTIONS(4947), + [anon_sym_BSLASHGlsname] = ACTIONS(4947), + [anon_sym_BSLASHGLSname] = ACTIONS(4947), + [anon_sym_BSLASHglssymbol] = ACTIONS(4947), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4947), + [anon_sym_BSLASHglsdesc] = ACTIONS(4947), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4947), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4947), + [anon_sym_BSLASHglsuseri] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4947), + [anon_sym_BSLASHglsuserii] = ACTIONS(4947), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4947), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4947), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4947), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4947), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4947), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4947), + [anon_sym_BSLASHglsuserv] = ACTIONS(4947), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4947), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4947), + [anon_sym_BSLASHglsuservi] = ACTIONS(4947), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4947), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4947), + [anon_sym_BSLASHnewacronym] = ACTIONS(4947), + [anon_sym_BSLASHacrshort] = ACTIONS(4947), + [anon_sym_BSLASHAcrshort] = ACTIONS(4947), + [anon_sym_BSLASHACRshort] = ACTIONS(4947), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4947), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4947), + [anon_sym_BSLASHacrlong] = ACTIONS(4947), + [anon_sym_BSLASHAcrlong] = ACTIONS(4947), + [anon_sym_BSLASHACRlong] = ACTIONS(4947), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4947), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4947), + [anon_sym_BSLASHacrfull] = ACTIONS(4947), + [anon_sym_BSLASHAcrfull] = ACTIONS(4947), + [anon_sym_BSLASHACRfull] = ACTIONS(4947), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4947), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4947), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4947), + [anon_sym_BSLASHacs] = ACTIONS(4947), + [anon_sym_BSLASHAcs] = ACTIONS(4947), + [anon_sym_BSLASHacsp] = ACTIONS(4947), + [anon_sym_BSLASHAcsp] = ACTIONS(4947), + [anon_sym_BSLASHacl] = ACTIONS(4947), + [anon_sym_BSLASHAcl] = ACTIONS(4947), + [anon_sym_BSLASHaclp] = ACTIONS(4947), + [anon_sym_BSLASHAclp] = ACTIONS(4947), + [anon_sym_BSLASHacf] = ACTIONS(4947), + [anon_sym_BSLASHAcf] = ACTIONS(4947), + [anon_sym_BSLASHacfp] = ACTIONS(4947), + [anon_sym_BSLASHAcfp] = ACTIONS(4947), + [anon_sym_BSLASHac] = ACTIONS(4947), + [anon_sym_BSLASHAc] = ACTIONS(4947), + [anon_sym_BSLASHacp] = ACTIONS(4947), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4947), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4947), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4947), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4947), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4947), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4947), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4947), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4947), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4947), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4947), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4947), + [anon_sym_BSLASHcolor] = ACTIONS(4947), + [anon_sym_BSLASHcolorbox] = ACTIONS(4947), + [anon_sym_BSLASHtextcolor] = ACTIONS(4947), + [anon_sym_BSLASHpagecolor] = ACTIONS(4947), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4947), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4947), + [anon_sym_BSLASHtext] = ACTIONS(4947), + [anon_sym_BSLASHintertext] = ACTIONS(4947), + [anon_sym_shortintertext] = ACTIONS(4947), + }, + [1339] = { + [sym_command_name] = ACTIONS(4951), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4951), + [anon_sym_LPAREN] = ACTIONS(4949), + [anon_sym_RPAREN] = ACTIONS(4949), + [anon_sym_LBRACK] = ACTIONS(4949), + [anon_sym_RBRACK] = ACTIONS(4949), + [anon_sym_COMMA] = ACTIONS(4949), + [anon_sym_EQ] = ACTIONS(4949), + [anon_sym_LBRACE] = ACTIONS(4949), + [sym_word] = ACTIONS(4951), + [sym_placeholder] = ACTIONS(4949), + [anon_sym_PLUS] = ACTIONS(4951), + [anon_sym_DASH] = ACTIONS(4951), + [anon_sym_STAR] = ACTIONS(4951), + [anon_sym_SLASH] = ACTIONS(4951), + [anon_sym_CARET] = ACTIONS(4951), + [anon_sym__] = ACTIONS(4951), + [anon_sym_LT] = ACTIONS(4951), + [anon_sym_GT] = ACTIONS(4951), + [anon_sym_BANG] = ACTIONS(4951), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_COLON] = ACTIONS(4951), + [anon_sym_SQUOTE] = ACTIONS(4951), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4949), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4949), + [anon_sym_DOLLAR] = ACTIONS(4951), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4949), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4949), + [anon_sym_BSLASHbegin] = ACTIONS(4951), + [anon_sym_BSLASHusepackage] = ACTIONS(4951), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4951), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4951), + [anon_sym_BSLASHinclude] = ACTIONS(4951), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4951), + [anon_sym_BSLASHinput] = ACTIONS(4951), + [anon_sym_BSLASHsubfile] = ACTIONS(4951), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4951), + [anon_sym_BSLASHbibliography] = ACTIONS(4951), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4951), + [anon_sym_BSLASHincludesvg] = ACTIONS(4951), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4951), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4951), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4951), + [anon_sym_BSLASHimport] = ACTIONS(4951), + [anon_sym_BSLASHsubimport] = ACTIONS(4951), + [anon_sym_BSLASHinputfrom] = ACTIONS(4951), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4951), + [anon_sym_BSLASHincludefrom] = ACTIONS(4951), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4951), + [anon_sym_BSLASHcaption] = ACTIONS(4951), + [anon_sym_BSLASHcite] = ACTIONS(4951), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCite] = ACTIONS(4951), + [anon_sym_BSLASHnocite] = ACTIONS(4951), + [anon_sym_BSLASHcitet] = ACTIONS(4951), + [anon_sym_BSLASHcitep] = ACTIONS(4951), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteauthor] = ACTIONS(4951), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4951), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitetitle] = ACTIONS(4951), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteyear] = ACTIONS(4951), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4949), + [anon_sym_BSLASHcitedate] = ACTIONS(4951), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4949), + [anon_sym_BSLASHciteurl] = ACTIONS(4951), + [anon_sym_BSLASHfullcite] = ACTIONS(4951), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4951), + [anon_sym_BSLASHcitealt] = ACTIONS(4951), + [anon_sym_BSLASHcitealp] = ACTIONS(4951), + [anon_sym_BSLASHcitetext] = ACTIONS(4951), + [anon_sym_BSLASHparencite] = ACTIONS(4951), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHParencite] = ACTIONS(4951), + [anon_sym_BSLASHfootcite] = ACTIONS(4951), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4951), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4951), + [anon_sym_BSLASHtextcite] = ACTIONS(4951), + [anon_sym_BSLASHTextcite] = ACTIONS(4951), + [anon_sym_BSLASHsmartcite] = ACTIONS(4951), + [anon_sym_BSLASHSmartcite] = ACTIONS(4951), + [anon_sym_BSLASHsupercite] = ACTIONS(4951), + [anon_sym_BSLASHautocite] = ACTIONS(4951), + [anon_sym_BSLASHAutocite] = ACTIONS(4951), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4949), + [anon_sym_BSLASHvolcite] = ACTIONS(4951), + [anon_sym_BSLASHVolcite] = ACTIONS(4951), + [anon_sym_BSLASHpvolcite] = ACTIONS(4951), + [anon_sym_BSLASHPvolcite] = ACTIONS(4951), + [anon_sym_BSLASHfvolcite] = ACTIONS(4951), + [anon_sym_BSLASHftvolcite] = ACTIONS(4951), + [anon_sym_BSLASHsvolcite] = ACTIONS(4951), + [anon_sym_BSLASHSvolcite] = ACTIONS(4951), + [anon_sym_BSLASHtvolcite] = ACTIONS(4951), + [anon_sym_BSLASHTvolcite] = ACTIONS(4951), + [anon_sym_BSLASHavolcite] = ACTIONS(4951), + [anon_sym_BSLASHAvolcite] = ACTIONS(4951), + [anon_sym_BSLASHnotecite] = ACTIONS(4951), + [anon_sym_BSLASHNotecite] = ACTIONS(4951), + [anon_sym_BSLASHpnotecite] = ACTIONS(4951), + [anon_sym_BSLASHPnotecite] = ACTIONS(4951), + [anon_sym_BSLASHfnotecite] = ACTIONS(4951), + [anon_sym_BSLASHlabel] = ACTIONS(4951), + [anon_sym_BSLASHref] = ACTIONS(4951), + [anon_sym_BSLASHeqref] = ACTIONS(4951), + [anon_sym_BSLASHvref] = ACTIONS(4951), + [anon_sym_BSLASHVref] = ACTIONS(4951), + [anon_sym_BSLASHautoref] = ACTIONS(4951), + [anon_sym_BSLASHpageref] = ACTIONS(4951), + [anon_sym_BSLASHcref] = ACTIONS(4951), + [anon_sym_BSLASHCref] = ACTIONS(4951), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4949), + [anon_sym_BSLASHnamecref] = ACTIONS(4951), + [anon_sym_BSLASHnameCref] = ACTIONS(4951), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4951), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4951), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4951), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4951), + [anon_sym_BSLASHlabelcref] = ACTIONS(4951), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4951), + [anon_sym_BSLASHcrefrange] = ACTIONS(4951), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4949), + [anon_sym_BSLASHCrefrange] = ACTIONS(4951), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4949), + [anon_sym_BSLASHnewlabel] = ACTIONS(4951), + [anon_sym_BSLASHnewcommand] = ACTIONS(4951), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4951), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4951), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4949), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4951), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4949), + [anon_sym_BSLASHdef] = ACTIONS(4951), + [anon_sym_BSLASHlet] = ACTIONS(4951), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4951), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4951), + [anon_sym_BSLASHgls] = ACTIONS(4951), + [anon_sym_BSLASHGls] = ACTIONS(4951), + [anon_sym_BSLASHGLS] = ACTIONS(4951), + [anon_sym_BSLASHglspl] = ACTIONS(4951), + [anon_sym_BSLASHGlspl] = ACTIONS(4951), + [anon_sym_BSLASHGLSpl] = ACTIONS(4951), + [anon_sym_BSLASHglsdisp] = ACTIONS(4951), + [anon_sym_BSLASHglslink] = ACTIONS(4951), + [anon_sym_BSLASHglstext] = ACTIONS(4951), + [anon_sym_BSLASHGlstext] = ACTIONS(4951), + [anon_sym_BSLASHGLStext] = ACTIONS(4951), + [anon_sym_BSLASHglsfirst] = ACTIONS(4951), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4951), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4951), + [anon_sym_BSLASHglsplural] = ACTIONS(4951), + [anon_sym_BSLASHGlsplural] = ACTIONS(4951), + [anon_sym_BSLASHGLSplural] = ACTIONS(4951), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4951), + [anon_sym_BSLASHglsname] = ACTIONS(4951), + [anon_sym_BSLASHGlsname] = ACTIONS(4951), + [anon_sym_BSLASHGLSname] = ACTIONS(4951), + [anon_sym_BSLASHglssymbol] = ACTIONS(4951), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4951), + [anon_sym_BSLASHglsdesc] = ACTIONS(4951), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4951), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4951), + [anon_sym_BSLASHglsuseri] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4951), + [anon_sym_BSLASHglsuserii] = ACTIONS(4951), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4951), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4951), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4951), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4951), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4951), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4951), + [anon_sym_BSLASHglsuserv] = ACTIONS(4951), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4951), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4951), + [anon_sym_BSLASHglsuservi] = ACTIONS(4951), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4951), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4951), + [anon_sym_BSLASHnewacronym] = ACTIONS(4951), + [anon_sym_BSLASHacrshort] = ACTIONS(4951), + [anon_sym_BSLASHAcrshort] = ACTIONS(4951), + [anon_sym_BSLASHACRshort] = ACTIONS(4951), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4951), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4951), + [anon_sym_BSLASHacrlong] = ACTIONS(4951), + [anon_sym_BSLASHAcrlong] = ACTIONS(4951), + [anon_sym_BSLASHACRlong] = ACTIONS(4951), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4951), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4951), + [anon_sym_BSLASHacrfull] = ACTIONS(4951), + [anon_sym_BSLASHAcrfull] = ACTIONS(4951), + [anon_sym_BSLASHACRfull] = ACTIONS(4951), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4951), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4951), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4951), + [anon_sym_BSLASHacs] = ACTIONS(4951), + [anon_sym_BSLASHAcs] = ACTIONS(4951), + [anon_sym_BSLASHacsp] = ACTIONS(4951), + [anon_sym_BSLASHAcsp] = ACTIONS(4951), + [anon_sym_BSLASHacl] = ACTIONS(4951), + [anon_sym_BSLASHAcl] = ACTIONS(4951), + [anon_sym_BSLASHaclp] = ACTIONS(4951), + [anon_sym_BSLASHAclp] = ACTIONS(4951), + [anon_sym_BSLASHacf] = ACTIONS(4951), + [anon_sym_BSLASHAcf] = ACTIONS(4951), + [anon_sym_BSLASHacfp] = ACTIONS(4951), + [anon_sym_BSLASHAcfp] = ACTIONS(4951), + [anon_sym_BSLASHac] = ACTIONS(4951), + [anon_sym_BSLASHAc] = ACTIONS(4951), + [anon_sym_BSLASHacp] = ACTIONS(4951), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4951), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4951), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4951), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4951), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4951), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4951), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4951), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4951), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4951), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4951), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4951), + [anon_sym_BSLASHcolor] = ACTIONS(4951), + [anon_sym_BSLASHcolorbox] = ACTIONS(4951), + [anon_sym_BSLASHtextcolor] = ACTIONS(4951), + [anon_sym_BSLASHpagecolor] = ACTIONS(4951), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4951), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4951), + [anon_sym_BSLASHtext] = ACTIONS(4951), + [anon_sym_BSLASHintertext] = ACTIONS(4951), + [anon_sym_shortintertext] = ACTIONS(4951), + }, + [1340] = { + [sym_command_name] = ACTIONS(4887), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_LBRACK] = ACTIONS(4885), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4885), + [sym_word] = ACTIONS(4887), + [sym_placeholder] = ACTIONS(4885), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym__] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_COLON] = ACTIONS(4887), + [anon_sym_SQUOTE] = ACTIONS(4887), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), + [anon_sym_BSLASHbegin] = ACTIONS(4887), + [anon_sym_BSLASHusepackage] = ACTIONS(4887), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), + [anon_sym_BSLASHinclude] = ACTIONS(4887), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), + [anon_sym_BSLASHinput] = ACTIONS(4887), + [anon_sym_BSLASHsubfile] = ACTIONS(4887), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), + [anon_sym_BSLASHbibliography] = ACTIONS(4887), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), + [anon_sym_BSLASHincludesvg] = ACTIONS(4887), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), + [anon_sym_BSLASHimport] = ACTIONS(4887), + [anon_sym_BSLASHsubimport] = ACTIONS(4887), + [anon_sym_BSLASHinputfrom] = ACTIONS(4887), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), + [anon_sym_BSLASHincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHcaption] = ACTIONS(4887), + [anon_sym_BSLASHcite] = ACTIONS(4887), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCite] = ACTIONS(4887), + [anon_sym_BSLASHnocite] = ACTIONS(4887), + [anon_sym_BSLASHcitet] = ACTIONS(4887), + [anon_sym_BSLASHcitep] = ACTIONS(4887), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteauthor] = ACTIONS(4887), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitetitle] = ACTIONS(4887), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteyear] = ACTIONS(4887), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitedate] = ACTIONS(4887), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteurl] = ACTIONS(4887), + [anon_sym_BSLASHfullcite] = ACTIONS(4887), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), + [anon_sym_BSLASHcitealt] = ACTIONS(4887), + [anon_sym_BSLASHcitealp] = ACTIONS(4887), + [anon_sym_BSLASHcitetext] = ACTIONS(4887), + [anon_sym_BSLASHparencite] = ACTIONS(4887), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHParencite] = ACTIONS(4887), + [anon_sym_BSLASHfootcite] = ACTIONS(4887), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), + [anon_sym_BSLASHtextcite] = ACTIONS(4887), + [anon_sym_BSLASHTextcite] = ACTIONS(4887), + [anon_sym_BSLASHsmartcite] = ACTIONS(4887), + [anon_sym_BSLASHSmartcite] = ACTIONS(4887), + [anon_sym_BSLASHsupercite] = ACTIONS(4887), + [anon_sym_BSLASHautocite] = ACTIONS(4887), + [anon_sym_BSLASHAutocite] = ACTIONS(4887), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHvolcite] = ACTIONS(4887), + [anon_sym_BSLASHVolcite] = ACTIONS(4887), + [anon_sym_BSLASHpvolcite] = ACTIONS(4887), + [anon_sym_BSLASHPvolcite] = ACTIONS(4887), + [anon_sym_BSLASHfvolcite] = ACTIONS(4887), + [anon_sym_BSLASHftvolcite] = ACTIONS(4887), + [anon_sym_BSLASHsvolcite] = ACTIONS(4887), + [anon_sym_BSLASHSvolcite] = ACTIONS(4887), + [anon_sym_BSLASHtvolcite] = ACTIONS(4887), + [anon_sym_BSLASHTvolcite] = ACTIONS(4887), + [anon_sym_BSLASHavolcite] = ACTIONS(4887), + [anon_sym_BSLASHAvolcite] = ACTIONS(4887), + [anon_sym_BSLASHnotecite] = ACTIONS(4887), + [anon_sym_BSLASHNotecite] = ACTIONS(4887), + [anon_sym_BSLASHpnotecite] = ACTIONS(4887), + [anon_sym_BSLASHPnotecite] = ACTIONS(4887), + [anon_sym_BSLASHfnotecite] = ACTIONS(4887), + [anon_sym_BSLASHlabel] = ACTIONS(4887), + [anon_sym_BSLASHref] = ACTIONS(4887), + [anon_sym_BSLASHeqref] = ACTIONS(4887), + [anon_sym_BSLASHvref] = ACTIONS(4887), + [anon_sym_BSLASHVref] = ACTIONS(4887), + [anon_sym_BSLASHautoref] = ACTIONS(4887), + [anon_sym_BSLASHpageref] = ACTIONS(4887), + [anon_sym_BSLASHcref] = ACTIONS(4887), + [anon_sym_BSLASHCref] = ACTIONS(4887), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnameCref] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHlabelcref] = ACTIONS(4887), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCrefrange] = ACTIONS(4887), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnewlabel] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), + [anon_sym_BSLASHdef] = ACTIONS(4887), + [anon_sym_BSLASHlet] = ACTIONS(4887), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), + [anon_sym_BSLASHgls] = ACTIONS(4887), + [anon_sym_BSLASHGls] = ACTIONS(4887), + [anon_sym_BSLASHGLS] = ACTIONS(4887), + [anon_sym_BSLASHglspl] = ACTIONS(4887), + [anon_sym_BSLASHGlspl] = ACTIONS(4887), + [anon_sym_BSLASHGLSpl] = ACTIONS(4887), + [anon_sym_BSLASHglsdisp] = ACTIONS(4887), + [anon_sym_BSLASHglslink] = ACTIONS(4887), + [anon_sym_BSLASHglstext] = ACTIONS(4887), + [anon_sym_BSLASHGlstext] = ACTIONS(4887), + [anon_sym_BSLASHGLStext] = ACTIONS(4887), + [anon_sym_BSLASHglsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), + [anon_sym_BSLASHglsplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSplural] = ACTIONS(4887), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHglsname] = ACTIONS(4887), + [anon_sym_BSLASHGlsname] = ACTIONS(4887), + [anon_sym_BSLASHGLSname] = ACTIONS(4887), + [anon_sym_BSLASHglssymbol] = ACTIONS(4887), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), + [anon_sym_BSLASHglsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), + [anon_sym_BSLASHglsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), + [anon_sym_BSLASHglsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), + [anon_sym_BSLASHglsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), + [anon_sym_BSLASHglsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), + [anon_sym_BSLASHnewacronym] = ACTIONS(4887), + [anon_sym_BSLASHacrshort] = ACTIONS(4887), + [anon_sym_BSLASHAcrshort] = ACTIONS(4887), + [anon_sym_BSLASHACRshort] = ACTIONS(4887), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), + [anon_sym_BSLASHacrlong] = ACTIONS(4887), + [anon_sym_BSLASHAcrlong] = ACTIONS(4887), + [anon_sym_BSLASHACRlong] = ACTIONS(4887), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), + [anon_sym_BSLASHacrfull] = ACTIONS(4887), + [anon_sym_BSLASHAcrfull] = ACTIONS(4887), + [anon_sym_BSLASHACRfull] = ACTIONS(4887), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), + [anon_sym_BSLASHacs] = ACTIONS(4887), + [anon_sym_BSLASHAcs] = ACTIONS(4887), + [anon_sym_BSLASHacsp] = ACTIONS(4887), + [anon_sym_BSLASHAcsp] = ACTIONS(4887), + [anon_sym_BSLASHacl] = ACTIONS(4887), + [anon_sym_BSLASHAcl] = ACTIONS(4887), + [anon_sym_BSLASHaclp] = ACTIONS(4887), + [anon_sym_BSLASHAclp] = ACTIONS(4887), + [anon_sym_BSLASHacf] = ACTIONS(4887), + [anon_sym_BSLASHAcf] = ACTIONS(4887), + [anon_sym_BSLASHacfp] = ACTIONS(4887), + [anon_sym_BSLASHAcfp] = ACTIONS(4887), + [anon_sym_BSLASHac] = ACTIONS(4887), + [anon_sym_BSLASHAc] = ACTIONS(4887), + [anon_sym_BSLASHacp] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), + [anon_sym_BSLASHcolor] = ACTIONS(4887), + [anon_sym_BSLASHcolorbox] = ACTIONS(4887), + [anon_sym_BSLASHtextcolor] = ACTIONS(4887), + [anon_sym_BSLASHpagecolor] = ACTIONS(4887), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), + [anon_sym_BSLASHtext] = ACTIONS(4887), + [anon_sym_BSLASHintertext] = ACTIONS(4887), + [anon_sym_shortintertext] = ACTIONS(4887), + }, + [1341] = { + [sym_command_name] = ACTIONS(5181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5179), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_RBRACK] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5179), + [sym_word] = ACTIONS(5181), + [sym_placeholder] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5181), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_CARET] = ACTIONS(5181), + [anon_sym__] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_COLON] = ACTIONS(5181), + [anon_sym_SQUOTE] = ACTIONS(5181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), + [anon_sym_DOLLAR] = ACTIONS(5181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), + [anon_sym_BSLASHbegin] = ACTIONS(5181), + [anon_sym_BSLASHusepackage] = ACTIONS(5181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), + [anon_sym_BSLASHinclude] = ACTIONS(5181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), + [anon_sym_BSLASHinput] = ACTIONS(5181), + [anon_sym_BSLASHsubfile] = ACTIONS(5181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), + [anon_sym_BSLASHbibliography] = ACTIONS(5181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), + [anon_sym_BSLASHincludesvg] = ACTIONS(5181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), + [anon_sym_BSLASHimport] = ACTIONS(5181), + [anon_sym_BSLASHsubimport] = ACTIONS(5181), + [anon_sym_BSLASHinputfrom] = ACTIONS(5181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), + [anon_sym_BSLASHincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHcaption] = ACTIONS(5181), + [anon_sym_BSLASHcite] = ACTIONS(5181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCite] = ACTIONS(5181), + [anon_sym_BSLASHnocite] = ACTIONS(5181), + [anon_sym_BSLASHcitet] = ACTIONS(5181), + [anon_sym_BSLASHcitep] = ACTIONS(5181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteauthor] = ACTIONS(5181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitetitle] = ACTIONS(5181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteyear] = ACTIONS(5181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitedate] = ACTIONS(5181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteurl] = ACTIONS(5181), + [anon_sym_BSLASHfullcite] = ACTIONS(5181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), + [anon_sym_BSLASHcitealt] = ACTIONS(5181), + [anon_sym_BSLASHcitealp] = ACTIONS(5181), + [anon_sym_BSLASHcitetext] = ACTIONS(5181), + [anon_sym_BSLASHparencite] = ACTIONS(5181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHParencite] = ACTIONS(5181), + [anon_sym_BSLASHfootcite] = ACTIONS(5181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), + [anon_sym_BSLASHtextcite] = ACTIONS(5181), + [anon_sym_BSLASHTextcite] = ACTIONS(5181), + [anon_sym_BSLASHsmartcite] = ACTIONS(5181), + [anon_sym_BSLASHSmartcite] = ACTIONS(5181), + [anon_sym_BSLASHsupercite] = ACTIONS(5181), + [anon_sym_BSLASHautocite] = ACTIONS(5181), + [anon_sym_BSLASHAutocite] = ACTIONS(5181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHvolcite] = ACTIONS(5181), + [anon_sym_BSLASHVolcite] = ACTIONS(5181), + [anon_sym_BSLASHpvolcite] = ACTIONS(5181), + [anon_sym_BSLASHPvolcite] = ACTIONS(5181), + [anon_sym_BSLASHfvolcite] = ACTIONS(5181), + [anon_sym_BSLASHftvolcite] = ACTIONS(5181), + [anon_sym_BSLASHsvolcite] = ACTIONS(5181), + [anon_sym_BSLASHSvolcite] = ACTIONS(5181), + [anon_sym_BSLASHtvolcite] = ACTIONS(5181), + [anon_sym_BSLASHTvolcite] = ACTIONS(5181), + [anon_sym_BSLASHavolcite] = ACTIONS(5181), + [anon_sym_BSLASHAvolcite] = ACTIONS(5181), + [anon_sym_BSLASHnotecite] = ACTIONS(5181), + [anon_sym_BSLASHNotecite] = ACTIONS(5181), + [anon_sym_BSLASHpnotecite] = ACTIONS(5181), + [anon_sym_BSLASHPnotecite] = ACTIONS(5181), + [anon_sym_BSLASHfnotecite] = ACTIONS(5181), + [anon_sym_BSLASHlabel] = ACTIONS(5181), + [anon_sym_BSLASHref] = ACTIONS(5181), + [anon_sym_BSLASHeqref] = ACTIONS(5181), + [anon_sym_BSLASHvref] = ACTIONS(5181), + [anon_sym_BSLASHVref] = ACTIONS(5181), + [anon_sym_BSLASHautoref] = ACTIONS(5181), + [anon_sym_BSLASHpageref] = ACTIONS(5181), + [anon_sym_BSLASHcref] = ACTIONS(5181), + [anon_sym_BSLASHCref] = ACTIONS(5181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnameCref] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHlabelcref] = ACTIONS(5181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnewlabel] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), + [anon_sym_BSLASHdef] = ACTIONS(5181), + [anon_sym_BSLASHlet] = ACTIONS(5181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), + [anon_sym_BSLASHgls] = ACTIONS(5181), + [anon_sym_BSLASHGls] = ACTIONS(5181), + [anon_sym_BSLASHGLS] = ACTIONS(5181), + [anon_sym_BSLASHglspl] = ACTIONS(5181), + [anon_sym_BSLASHGlspl] = ACTIONS(5181), + [anon_sym_BSLASHGLSpl] = ACTIONS(5181), + [anon_sym_BSLASHglsdisp] = ACTIONS(5181), + [anon_sym_BSLASHglslink] = ACTIONS(5181), + [anon_sym_BSLASHglstext] = ACTIONS(5181), + [anon_sym_BSLASHGlstext] = ACTIONS(5181), + [anon_sym_BSLASHGLStext] = ACTIONS(5181), + [anon_sym_BSLASHglsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), + [anon_sym_BSLASHglsplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSplural] = ACTIONS(5181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHglsname] = ACTIONS(5181), + [anon_sym_BSLASHGlsname] = ACTIONS(5181), + [anon_sym_BSLASHGLSname] = ACTIONS(5181), + [anon_sym_BSLASHglssymbol] = ACTIONS(5181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), + [anon_sym_BSLASHglsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), + [anon_sym_BSLASHglsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), + [anon_sym_BSLASHglsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), + [anon_sym_BSLASHglsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), + [anon_sym_BSLASHglsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), + [anon_sym_BSLASHnewacronym] = ACTIONS(5181), + [anon_sym_BSLASHacrshort] = ACTIONS(5181), + [anon_sym_BSLASHAcrshort] = ACTIONS(5181), + [anon_sym_BSLASHACRshort] = ACTIONS(5181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), + [anon_sym_BSLASHacrlong] = ACTIONS(5181), + [anon_sym_BSLASHAcrlong] = ACTIONS(5181), + [anon_sym_BSLASHACRlong] = ACTIONS(5181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), + [anon_sym_BSLASHacrfull] = ACTIONS(5181), + [anon_sym_BSLASHAcrfull] = ACTIONS(5181), + [anon_sym_BSLASHACRfull] = ACTIONS(5181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), + [anon_sym_BSLASHacs] = ACTIONS(5181), + [anon_sym_BSLASHAcs] = ACTIONS(5181), + [anon_sym_BSLASHacsp] = ACTIONS(5181), + [anon_sym_BSLASHAcsp] = ACTIONS(5181), + [anon_sym_BSLASHacl] = ACTIONS(5181), + [anon_sym_BSLASHAcl] = ACTIONS(5181), + [anon_sym_BSLASHaclp] = ACTIONS(5181), + [anon_sym_BSLASHAclp] = ACTIONS(5181), + [anon_sym_BSLASHacf] = ACTIONS(5181), + [anon_sym_BSLASHAcf] = ACTIONS(5181), + [anon_sym_BSLASHacfp] = ACTIONS(5181), + [anon_sym_BSLASHAcfp] = ACTIONS(5181), + [anon_sym_BSLASHac] = ACTIONS(5181), + [anon_sym_BSLASHAc] = ACTIONS(5181), + [anon_sym_BSLASHacp] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), + [anon_sym_BSLASHcolor] = ACTIONS(5181), + [anon_sym_BSLASHcolorbox] = ACTIONS(5181), + [anon_sym_BSLASHtextcolor] = ACTIONS(5181), + [anon_sym_BSLASHpagecolor] = ACTIONS(5181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), + [anon_sym_BSLASHtext] = ACTIONS(5181), + [anon_sym_BSLASHintertext] = ACTIONS(5181), + [anon_sym_shortintertext] = ACTIONS(5181), + }, + [1342] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_EQ] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHbegin] = ACTIONS(139), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [1343] = { + [sym_command_name] = ACTIONS(5057), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4965), - [sym_word] = ACTIONS(4967), - [sym_placeholder] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_CARET] = ACTIONS(4967), - [anon_sym__] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4965), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4965), - [anon_sym_BSLASHbegin] = ACTIONS(4967), - [anon_sym_BSLASHusepackage] = ACTIONS(4967), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4967), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4967), - [anon_sym_BSLASHinclude] = ACTIONS(4967), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4967), - [anon_sym_BSLASHinput] = ACTIONS(4967), - [anon_sym_BSLASHsubfile] = ACTIONS(4967), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4967), - [anon_sym_BSLASHbibliography] = ACTIONS(4967), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4967), - [anon_sym_BSLASHincludesvg] = ACTIONS(4967), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4967), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4967), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4967), - [anon_sym_BSLASHimport] = ACTIONS(4967), - [anon_sym_BSLASHsubimport] = ACTIONS(4967), - [anon_sym_BSLASHinputfrom] = ACTIONS(4967), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4967), - [anon_sym_BSLASHincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHcaption] = ACTIONS(4967), - [anon_sym_BSLASHcite] = ACTIONS(4967), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCite] = ACTIONS(4967), - [anon_sym_BSLASHnocite] = ACTIONS(4967), - [anon_sym_BSLASHcitet] = ACTIONS(4967), - [anon_sym_BSLASHcitep] = ACTIONS(4967), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteauthor] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitetitle] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteyear] = ACTIONS(4967), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitedate] = ACTIONS(4967), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteurl] = ACTIONS(4967), - [anon_sym_BSLASHfullcite] = ACTIONS(4967), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4967), - [anon_sym_BSLASHcitealt] = ACTIONS(4967), - [anon_sym_BSLASHcitealp] = ACTIONS(4967), - [anon_sym_BSLASHcitetext] = ACTIONS(4967), - [anon_sym_BSLASHparencite] = ACTIONS(4967), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHParencite] = ACTIONS(4967), - [anon_sym_BSLASHfootcite] = ACTIONS(4967), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4967), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4967), - [anon_sym_BSLASHtextcite] = ACTIONS(4967), - [anon_sym_BSLASHTextcite] = ACTIONS(4967), - [anon_sym_BSLASHsmartcite] = ACTIONS(4967), - [anon_sym_BSLASHSmartcite] = ACTIONS(4967), - [anon_sym_BSLASHsupercite] = ACTIONS(4967), - [anon_sym_BSLASHautocite] = ACTIONS(4967), - [anon_sym_BSLASHAutocite] = ACTIONS(4967), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHvolcite] = ACTIONS(4967), - [anon_sym_BSLASHVolcite] = ACTIONS(4967), - [anon_sym_BSLASHpvolcite] = ACTIONS(4967), - [anon_sym_BSLASHPvolcite] = ACTIONS(4967), - [anon_sym_BSLASHfvolcite] = ACTIONS(4967), - [anon_sym_BSLASHftvolcite] = ACTIONS(4967), - [anon_sym_BSLASHsvolcite] = ACTIONS(4967), - [anon_sym_BSLASHSvolcite] = ACTIONS(4967), - [anon_sym_BSLASHtvolcite] = ACTIONS(4967), - [anon_sym_BSLASHTvolcite] = ACTIONS(4967), - [anon_sym_BSLASHavolcite] = ACTIONS(4967), - [anon_sym_BSLASHAvolcite] = ACTIONS(4967), - [anon_sym_BSLASHnotecite] = ACTIONS(4967), - [anon_sym_BSLASHNotecite] = ACTIONS(4967), - [anon_sym_BSLASHpnotecite] = ACTIONS(4967), - [anon_sym_BSLASHPnotecite] = ACTIONS(4967), - [anon_sym_BSLASHfnotecite] = ACTIONS(4967), - [anon_sym_BSLASHlabel] = ACTIONS(4967), - [anon_sym_BSLASHref] = ACTIONS(4967), - [anon_sym_BSLASHeqref] = ACTIONS(4967), - [anon_sym_BSLASHvref] = ACTIONS(4967), - [anon_sym_BSLASHVref] = ACTIONS(4967), - [anon_sym_BSLASHautoref] = ACTIONS(4967), - [anon_sym_BSLASHpageref] = ACTIONS(4967), - [anon_sym_BSLASHcref] = ACTIONS(4967), - [anon_sym_BSLASHCref] = ACTIONS(4967), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnameCref] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHlabelcref] = ACTIONS(4967), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCrefrange] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnewlabel] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4965), - [anon_sym_BSLASHdef] = ACTIONS(4967), - [anon_sym_BSLASHlet] = ACTIONS(4967), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4967), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4967), - [anon_sym_BSLASHgls] = ACTIONS(4967), - [anon_sym_BSLASHGls] = ACTIONS(4967), - [anon_sym_BSLASHGLS] = ACTIONS(4967), - [anon_sym_BSLASHglspl] = ACTIONS(4967), - [anon_sym_BSLASHGlspl] = ACTIONS(4967), - [anon_sym_BSLASHGLSpl] = ACTIONS(4967), - [anon_sym_BSLASHglsdisp] = ACTIONS(4967), - [anon_sym_BSLASHglslink] = ACTIONS(4967), - [anon_sym_BSLASHglstext] = ACTIONS(4967), - [anon_sym_BSLASHGlstext] = ACTIONS(4967), - [anon_sym_BSLASHGLStext] = ACTIONS(4967), - [anon_sym_BSLASHglsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4967), - [anon_sym_BSLASHglsplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSplural] = ACTIONS(4967), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHglsname] = ACTIONS(4967), - [anon_sym_BSLASHGlsname] = ACTIONS(4967), - [anon_sym_BSLASHGLSname] = ACTIONS(4967), - [anon_sym_BSLASHglssymbol] = ACTIONS(4967), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4967), - [anon_sym_BSLASHglsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4967), - [anon_sym_BSLASHglsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4967), - [anon_sym_BSLASHglsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4967), - [anon_sym_BSLASHglsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4967), - [anon_sym_BSLASHglsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4967), - [anon_sym_BSLASHnewacronym] = ACTIONS(4967), - [anon_sym_BSLASHacrshort] = ACTIONS(4967), - [anon_sym_BSLASHAcrshort] = ACTIONS(4967), - [anon_sym_BSLASHACRshort] = ACTIONS(4967), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4967), - [anon_sym_BSLASHacrlong] = ACTIONS(4967), - [anon_sym_BSLASHAcrlong] = ACTIONS(4967), - [anon_sym_BSLASHACRlong] = ACTIONS(4967), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4967), - [anon_sym_BSLASHacrfull] = ACTIONS(4967), - [anon_sym_BSLASHAcrfull] = ACTIONS(4967), - [anon_sym_BSLASHACRfull] = ACTIONS(4967), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4967), - [anon_sym_BSLASHacs] = ACTIONS(4967), - [anon_sym_BSLASHAcs] = ACTIONS(4967), - [anon_sym_BSLASHacsp] = ACTIONS(4967), - [anon_sym_BSLASHAcsp] = ACTIONS(4967), - [anon_sym_BSLASHacl] = ACTIONS(4967), - [anon_sym_BSLASHAcl] = ACTIONS(4967), - [anon_sym_BSLASHaclp] = ACTIONS(4967), - [anon_sym_BSLASHAclp] = ACTIONS(4967), - [anon_sym_BSLASHacf] = ACTIONS(4967), - [anon_sym_BSLASHAcf] = ACTIONS(4967), - [anon_sym_BSLASHacfp] = ACTIONS(4967), - [anon_sym_BSLASHAcfp] = ACTIONS(4967), - [anon_sym_BSLASHac] = ACTIONS(4967), - [anon_sym_BSLASHAc] = ACTIONS(4967), - [anon_sym_BSLASHacp] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4967), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4967), - [anon_sym_BSLASHcolor] = ACTIONS(4967), - [anon_sym_BSLASHcolorbox] = ACTIONS(4967), - [anon_sym_BSLASHtextcolor] = ACTIONS(4967), - [anon_sym_BSLASHpagecolor] = ACTIONS(4967), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4967), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4967), + [anon_sym_BSLASHiffalse] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5055), + [anon_sym_RPAREN] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5055), + [anon_sym_RBRACK] = ACTIONS(5055), + [anon_sym_COMMA] = ACTIONS(5055), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5055), + [sym_word] = ACTIONS(5057), + [sym_placeholder] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_STAR] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5057), + [anon_sym_CARET] = ACTIONS(5057), + [anon_sym__] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5057), + [anon_sym_BANG] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5057), + [anon_sym_COLON] = ACTIONS(5057), + [anon_sym_SQUOTE] = ACTIONS(5057), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), + [anon_sym_DOLLAR] = ACTIONS(5057), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), + [anon_sym_BSLASHbegin] = ACTIONS(5057), + [anon_sym_BSLASHusepackage] = ACTIONS(5057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), + [anon_sym_BSLASHinclude] = ACTIONS(5057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), + [anon_sym_BSLASHinput] = ACTIONS(5057), + [anon_sym_BSLASHsubfile] = ACTIONS(5057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), + [anon_sym_BSLASHbibliography] = ACTIONS(5057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), + [anon_sym_BSLASHincludesvg] = ACTIONS(5057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), + [anon_sym_BSLASHimport] = ACTIONS(5057), + [anon_sym_BSLASHsubimport] = ACTIONS(5057), + [anon_sym_BSLASHinputfrom] = ACTIONS(5057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), + [anon_sym_BSLASHincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHcaption] = ACTIONS(5057), + [anon_sym_BSLASHcite] = ACTIONS(5057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCite] = ACTIONS(5057), + [anon_sym_BSLASHnocite] = ACTIONS(5057), + [anon_sym_BSLASHcitet] = ACTIONS(5057), + [anon_sym_BSLASHcitep] = ACTIONS(5057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteauthor] = ACTIONS(5057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitetitle] = ACTIONS(5057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteyear] = ACTIONS(5057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitedate] = ACTIONS(5057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteurl] = ACTIONS(5057), + [anon_sym_BSLASHfullcite] = ACTIONS(5057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), + [anon_sym_BSLASHcitealt] = ACTIONS(5057), + [anon_sym_BSLASHcitealp] = ACTIONS(5057), + [anon_sym_BSLASHcitetext] = ACTIONS(5057), + [anon_sym_BSLASHparencite] = ACTIONS(5057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHParencite] = ACTIONS(5057), + [anon_sym_BSLASHfootcite] = ACTIONS(5057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), + [anon_sym_BSLASHtextcite] = ACTIONS(5057), + [anon_sym_BSLASHTextcite] = ACTIONS(5057), + [anon_sym_BSLASHsmartcite] = ACTIONS(5057), + [anon_sym_BSLASHSmartcite] = ACTIONS(5057), + [anon_sym_BSLASHsupercite] = ACTIONS(5057), + [anon_sym_BSLASHautocite] = ACTIONS(5057), + [anon_sym_BSLASHAutocite] = ACTIONS(5057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHvolcite] = ACTIONS(5057), + [anon_sym_BSLASHVolcite] = ACTIONS(5057), + [anon_sym_BSLASHpvolcite] = ACTIONS(5057), + [anon_sym_BSLASHPvolcite] = ACTIONS(5057), + [anon_sym_BSLASHfvolcite] = ACTIONS(5057), + [anon_sym_BSLASHftvolcite] = ACTIONS(5057), + [anon_sym_BSLASHsvolcite] = ACTIONS(5057), + [anon_sym_BSLASHSvolcite] = ACTIONS(5057), + [anon_sym_BSLASHtvolcite] = ACTIONS(5057), + [anon_sym_BSLASHTvolcite] = ACTIONS(5057), + [anon_sym_BSLASHavolcite] = ACTIONS(5057), + [anon_sym_BSLASHAvolcite] = ACTIONS(5057), + [anon_sym_BSLASHnotecite] = ACTIONS(5057), + [anon_sym_BSLASHNotecite] = ACTIONS(5057), + [anon_sym_BSLASHpnotecite] = ACTIONS(5057), + [anon_sym_BSLASHPnotecite] = ACTIONS(5057), + [anon_sym_BSLASHfnotecite] = ACTIONS(5057), + [anon_sym_BSLASHlabel] = ACTIONS(5057), + [anon_sym_BSLASHref] = ACTIONS(5057), + [anon_sym_BSLASHeqref] = ACTIONS(5057), + [anon_sym_BSLASHvref] = ACTIONS(5057), + [anon_sym_BSLASHVref] = ACTIONS(5057), + [anon_sym_BSLASHautoref] = ACTIONS(5057), + [anon_sym_BSLASHpageref] = ACTIONS(5057), + [anon_sym_BSLASHcref] = ACTIONS(5057), + [anon_sym_BSLASHCref] = ACTIONS(5057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnameCref] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHlabelcref] = ACTIONS(5057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCrefrange] = ACTIONS(5057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnewlabel] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), + [anon_sym_BSLASHdef] = ACTIONS(5057), + [anon_sym_BSLASHlet] = ACTIONS(5057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), + [anon_sym_BSLASHgls] = ACTIONS(5057), + [anon_sym_BSLASHGls] = ACTIONS(5057), + [anon_sym_BSLASHGLS] = ACTIONS(5057), + [anon_sym_BSLASHglspl] = ACTIONS(5057), + [anon_sym_BSLASHGlspl] = ACTIONS(5057), + [anon_sym_BSLASHGLSpl] = ACTIONS(5057), + [anon_sym_BSLASHglsdisp] = ACTIONS(5057), + [anon_sym_BSLASHglslink] = ACTIONS(5057), + [anon_sym_BSLASHglstext] = ACTIONS(5057), + [anon_sym_BSLASHGlstext] = ACTIONS(5057), + [anon_sym_BSLASHGLStext] = ACTIONS(5057), + [anon_sym_BSLASHglsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), + [anon_sym_BSLASHglsplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSplural] = ACTIONS(5057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHglsname] = ACTIONS(5057), + [anon_sym_BSLASHGlsname] = ACTIONS(5057), + [anon_sym_BSLASHGLSname] = ACTIONS(5057), + [anon_sym_BSLASHglssymbol] = ACTIONS(5057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), + [anon_sym_BSLASHglsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), + [anon_sym_BSLASHglsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), + [anon_sym_BSLASHglsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), + [anon_sym_BSLASHglsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), + [anon_sym_BSLASHglsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), + [anon_sym_BSLASHnewacronym] = ACTIONS(5057), + [anon_sym_BSLASHacrshort] = ACTIONS(5057), + [anon_sym_BSLASHAcrshort] = ACTIONS(5057), + [anon_sym_BSLASHACRshort] = ACTIONS(5057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), + [anon_sym_BSLASHacrlong] = ACTIONS(5057), + [anon_sym_BSLASHAcrlong] = ACTIONS(5057), + [anon_sym_BSLASHACRlong] = ACTIONS(5057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), + [anon_sym_BSLASHacrfull] = ACTIONS(5057), + [anon_sym_BSLASHAcrfull] = ACTIONS(5057), + [anon_sym_BSLASHACRfull] = ACTIONS(5057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), + [anon_sym_BSLASHacs] = ACTIONS(5057), + [anon_sym_BSLASHAcs] = ACTIONS(5057), + [anon_sym_BSLASHacsp] = ACTIONS(5057), + [anon_sym_BSLASHAcsp] = ACTIONS(5057), + [anon_sym_BSLASHacl] = ACTIONS(5057), + [anon_sym_BSLASHAcl] = ACTIONS(5057), + [anon_sym_BSLASHaclp] = ACTIONS(5057), + [anon_sym_BSLASHAclp] = ACTIONS(5057), + [anon_sym_BSLASHacf] = ACTIONS(5057), + [anon_sym_BSLASHAcf] = ACTIONS(5057), + [anon_sym_BSLASHacfp] = ACTIONS(5057), + [anon_sym_BSLASHAcfp] = ACTIONS(5057), + [anon_sym_BSLASHac] = ACTIONS(5057), + [anon_sym_BSLASHAc] = ACTIONS(5057), + [anon_sym_BSLASHacp] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), + [anon_sym_BSLASHcolor] = ACTIONS(5057), + [anon_sym_BSLASHcolorbox] = ACTIONS(5057), + [anon_sym_BSLASHtextcolor] = ACTIONS(5057), + [anon_sym_BSLASHpagecolor] = ACTIONS(5057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [anon_sym_BSLASHtext] = ACTIONS(5057), + [anon_sym_BSLASHintertext] = ACTIONS(5057), + [anon_sym_shortintertext] = ACTIONS(5057), }, - [1403] = { - [sym_command_name] = ACTIONS(4959), + [1344] = { + [sym_command_name] = ACTIONS(5053), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASHbegin] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHiffalse] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5051), + [sym_word] = ACTIONS(5053), + [sym_placeholder] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5053), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5053), + [anon_sym__] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_COLON] = ACTIONS(5053), + [anon_sym_SQUOTE] = ACTIONS(5053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), + [anon_sym_DOLLAR] = ACTIONS(5053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), + [anon_sym_BSLASHbegin] = ACTIONS(5053), + [anon_sym_BSLASHusepackage] = ACTIONS(5053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), + [anon_sym_BSLASHinclude] = ACTIONS(5053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), + [anon_sym_BSLASHinput] = ACTIONS(5053), + [anon_sym_BSLASHsubfile] = ACTIONS(5053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), + [anon_sym_BSLASHbibliography] = ACTIONS(5053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), + [anon_sym_BSLASHincludesvg] = ACTIONS(5053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), + [anon_sym_BSLASHimport] = ACTIONS(5053), + [anon_sym_BSLASHsubimport] = ACTIONS(5053), + [anon_sym_BSLASHinputfrom] = ACTIONS(5053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), + [anon_sym_BSLASHincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHcaption] = ACTIONS(5053), + [anon_sym_BSLASHcite] = ACTIONS(5053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCite] = ACTIONS(5053), + [anon_sym_BSLASHnocite] = ACTIONS(5053), + [anon_sym_BSLASHcitet] = ACTIONS(5053), + [anon_sym_BSLASHcitep] = ACTIONS(5053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteauthor] = ACTIONS(5053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitetitle] = ACTIONS(5053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteyear] = ACTIONS(5053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitedate] = ACTIONS(5053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteurl] = ACTIONS(5053), + [anon_sym_BSLASHfullcite] = ACTIONS(5053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), + [anon_sym_BSLASHcitealt] = ACTIONS(5053), + [anon_sym_BSLASHcitealp] = ACTIONS(5053), + [anon_sym_BSLASHcitetext] = ACTIONS(5053), + [anon_sym_BSLASHparencite] = ACTIONS(5053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHParencite] = ACTIONS(5053), + [anon_sym_BSLASHfootcite] = ACTIONS(5053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), + [anon_sym_BSLASHtextcite] = ACTIONS(5053), + [anon_sym_BSLASHTextcite] = ACTIONS(5053), + [anon_sym_BSLASHsmartcite] = ACTIONS(5053), + [anon_sym_BSLASHSmartcite] = ACTIONS(5053), + [anon_sym_BSLASHsupercite] = ACTIONS(5053), + [anon_sym_BSLASHautocite] = ACTIONS(5053), + [anon_sym_BSLASHAutocite] = ACTIONS(5053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHvolcite] = ACTIONS(5053), + [anon_sym_BSLASHVolcite] = ACTIONS(5053), + [anon_sym_BSLASHpvolcite] = ACTIONS(5053), + [anon_sym_BSLASHPvolcite] = ACTIONS(5053), + [anon_sym_BSLASHfvolcite] = ACTIONS(5053), + [anon_sym_BSLASHftvolcite] = ACTIONS(5053), + [anon_sym_BSLASHsvolcite] = ACTIONS(5053), + [anon_sym_BSLASHSvolcite] = ACTIONS(5053), + [anon_sym_BSLASHtvolcite] = ACTIONS(5053), + [anon_sym_BSLASHTvolcite] = ACTIONS(5053), + [anon_sym_BSLASHavolcite] = ACTIONS(5053), + [anon_sym_BSLASHAvolcite] = ACTIONS(5053), + [anon_sym_BSLASHnotecite] = ACTIONS(5053), + [anon_sym_BSLASHNotecite] = ACTIONS(5053), + [anon_sym_BSLASHpnotecite] = ACTIONS(5053), + [anon_sym_BSLASHPnotecite] = ACTIONS(5053), + [anon_sym_BSLASHfnotecite] = ACTIONS(5053), + [anon_sym_BSLASHlabel] = ACTIONS(5053), + [anon_sym_BSLASHref] = ACTIONS(5053), + [anon_sym_BSLASHeqref] = ACTIONS(5053), + [anon_sym_BSLASHvref] = ACTIONS(5053), + [anon_sym_BSLASHVref] = ACTIONS(5053), + [anon_sym_BSLASHautoref] = ACTIONS(5053), + [anon_sym_BSLASHpageref] = ACTIONS(5053), + [anon_sym_BSLASHcref] = ACTIONS(5053), + [anon_sym_BSLASHCref] = ACTIONS(5053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnameCref] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHlabelcref] = ACTIONS(5053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCrefrange] = ACTIONS(5053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnewlabel] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), + [anon_sym_BSLASHdef] = ACTIONS(5053), + [anon_sym_BSLASHlet] = ACTIONS(5053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), + [anon_sym_BSLASHgls] = ACTIONS(5053), + [anon_sym_BSLASHGls] = ACTIONS(5053), + [anon_sym_BSLASHGLS] = ACTIONS(5053), + [anon_sym_BSLASHglspl] = ACTIONS(5053), + [anon_sym_BSLASHGlspl] = ACTIONS(5053), + [anon_sym_BSLASHGLSpl] = ACTIONS(5053), + [anon_sym_BSLASHglsdisp] = ACTIONS(5053), + [anon_sym_BSLASHglslink] = ACTIONS(5053), + [anon_sym_BSLASHglstext] = ACTIONS(5053), + [anon_sym_BSLASHGlstext] = ACTIONS(5053), + [anon_sym_BSLASHGLStext] = ACTIONS(5053), + [anon_sym_BSLASHglsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), + [anon_sym_BSLASHglsplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSplural] = ACTIONS(5053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHglsname] = ACTIONS(5053), + [anon_sym_BSLASHGlsname] = ACTIONS(5053), + [anon_sym_BSLASHGLSname] = ACTIONS(5053), + [anon_sym_BSLASHglssymbol] = ACTIONS(5053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), + [anon_sym_BSLASHglsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), + [anon_sym_BSLASHglsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), + [anon_sym_BSLASHglsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), + [anon_sym_BSLASHglsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), + [anon_sym_BSLASHglsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), + [anon_sym_BSLASHnewacronym] = ACTIONS(5053), + [anon_sym_BSLASHacrshort] = ACTIONS(5053), + [anon_sym_BSLASHAcrshort] = ACTIONS(5053), + [anon_sym_BSLASHACRshort] = ACTIONS(5053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), + [anon_sym_BSLASHacrlong] = ACTIONS(5053), + [anon_sym_BSLASHAcrlong] = ACTIONS(5053), + [anon_sym_BSLASHACRlong] = ACTIONS(5053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), + [anon_sym_BSLASHacrfull] = ACTIONS(5053), + [anon_sym_BSLASHAcrfull] = ACTIONS(5053), + [anon_sym_BSLASHACRfull] = ACTIONS(5053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), + [anon_sym_BSLASHacs] = ACTIONS(5053), + [anon_sym_BSLASHAcs] = ACTIONS(5053), + [anon_sym_BSLASHacsp] = ACTIONS(5053), + [anon_sym_BSLASHAcsp] = ACTIONS(5053), + [anon_sym_BSLASHacl] = ACTIONS(5053), + [anon_sym_BSLASHAcl] = ACTIONS(5053), + [anon_sym_BSLASHaclp] = ACTIONS(5053), + [anon_sym_BSLASHAclp] = ACTIONS(5053), + [anon_sym_BSLASHacf] = ACTIONS(5053), + [anon_sym_BSLASHAcf] = ACTIONS(5053), + [anon_sym_BSLASHacfp] = ACTIONS(5053), + [anon_sym_BSLASHAcfp] = ACTIONS(5053), + [anon_sym_BSLASHac] = ACTIONS(5053), + [anon_sym_BSLASHAc] = ACTIONS(5053), + [anon_sym_BSLASHacp] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), + [anon_sym_BSLASHcolor] = ACTIONS(5053), + [anon_sym_BSLASHcolorbox] = ACTIONS(5053), + [anon_sym_BSLASHtextcolor] = ACTIONS(5053), + [anon_sym_BSLASHpagecolor] = ACTIONS(5053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [anon_sym_BSLASHtext] = ACTIONS(5053), + [anon_sym_BSLASHintertext] = ACTIONS(5053), + [anon_sym_shortintertext] = ACTIONS(5053), }, - [1404] = { - [sym_command_name] = ACTIONS(4953), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_RBRACK] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [sym_word] = ACTIONS(4953), - [sym_placeholder] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym__] = ACTIONS(4953), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4953), - [anon_sym_COLON] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4953), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4951), - [anon_sym_BSLASHbegin] = ACTIONS(4953), - [anon_sym_BSLASHusepackage] = ACTIONS(4953), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4953), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4953), - [anon_sym_BSLASHinclude] = ACTIONS(4953), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4953), - [anon_sym_BSLASHinput] = ACTIONS(4953), - [anon_sym_BSLASHsubfile] = ACTIONS(4953), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4953), - [anon_sym_BSLASHbibliography] = ACTIONS(4953), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4953), - [anon_sym_BSLASHincludesvg] = ACTIONS(4953), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4953), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4953), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4953), - [anon_sym_BSLASHimport] = ACTIONS(4953), - [anon_sym_BSLASHsubimport] = ACTIONS(4953), - [anon_sym_BSLASHinputfrom] = ACTIONS(4953), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4953), - [anon_sym_BSLASHincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHcaption] = ACTIONS(4953), - [anon_sym_BSLASHcite] = ACTIONS(4953), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCite] = ACTIONS(4953), - [anon_sym_BSLASHnocite] = ACTIONS(4953), - [anon_sym_BSLASHcitet] = ACTIONS(4953), - [anon_sym_BSLASHcitep] = ACTIONS(4953), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteyear] = ACTIONS(4953), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitedate] = ACTIONS(4953), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteurl] = ACTIONS(4953), - [anon_sym_BSLASHfullcite] = ACTIONS(4953), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4953), - [anon_sym_BSLASHcitealt] = ACTIONS(4953), - [anon_sym_BSLASHcitealp] = ACTIONS(4953), - [anon_sym_BSLASHcitetext] = ACTIONS(4953), - [anon_sym_BSLASHparencite] = ACTIONS(4953), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHParencite] = ACTIONS(4953), - [anon_sym_BSLASHfootcite] = ACTIONS(4953), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4953), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4953), - [anon_sym_BSLASHtextcite] = ACTIONS(4953), - [anon_sym_BSLASHTextcite] = ACTIONS(4953), - [anon_sym_BSLASHsmartcite] = ACTIONS(4953), - [anon_sym_BSLASHSmartcite] = ACTIONS(4953), - [anon_sym_BSLASHsupercite] = ACTIONS(4953), - [anon_sym_BSLASHautocite] = ACTIONS(4953), - [anon_sym_BSLASHAutocite] = ACTIONS(4953), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHvolcite] = ACTIONS(4953), - [anon_sym_BSLASHVolcite] = ACTIONS(4953), - [anon_sym_BSLASHpvolcite] = ACTIONS(4953), - [anon_sym_BSLASHPvolcite] = ACTIONS(4953), - [anon_sym_BSLASHfvolcite] = ACTIONS(4953), - [anon_sym_BSLASHftvolcite] = ACTIONS(4953), - [anon_sym_BSLASHsvolcite] = ACTIONS(4953), - [anon_sym_BSLASHSvolcite] = ACTIONS(4953), - [anon_sym_BSLASHtvolcite] = ACTIONS(4953), - [anon_sym_BSLASHTvolcite] = ACTIONS(4953), - [anon_sym_BSLASHavolcite] = ACTIONS(4953), - [anon_sym_BSLASHAvolcite] = ACTIONS(4953), - [anon_sym_BSLASHnotecite] = ACTIONS(4953), - [anon_sym_BSLASHNotecite] = ACTIONS(4953), - [anon_sym_BSLASHpnotecite] = ACTIONS(4953), - [anon_sym_BSLASHPnotecite] = ACTIONS(4953), - [anon_sym_BSLASHfnotecite] = ACTIONS(4953), - [anon_sym_BSLASHlabel] = ACTIONS(4953), - [anon_sym_BSLASHref] = ACTIONS(4953), - [anon_sym_BSLASHeqref] = ACTIONS(4953), - [anon_sym_BSLASHvref] = ACTIONS(4953), - [anon_sym_BSLASHVref] = ACTIONS(4953), - [anon_sym_BSLASHautoref] = ACTIONS(4953), - [anon_sym_BSLASHpageref] = ACTIONS(4953), - [anon_sym_BSLASHcref] = ACTIONS(4953), - [anon_sym_BSLASHCref] = ACTIONS(4953), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnameCref] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHlabelcref] = ACTIONS(4953), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnewlabel] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4951), - [anon_sym_BSLASHdef] = ACTIONS(4953), - [anon_sym_BSLASHlet] = ACTIONS(4953), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4953), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4953), - [anon_sym_BSLASHgls] = ACTIONS(4953), - [anon_sym_BSLASHGls] = ACTIONS(4953), - [anon_sym_BSLASHGLS] = ACTIONS(4953), - [anon_sym_BSLASHglspl] = ACTIONS(4953), - [anon_sym_BSLASHGlspl] = ACTIONS(4953), - [anon_sym_BSLASHGLSpl] = ACTIONS(4953), - [anon_sym_BSLASHglsdisp] = ACTIONS(4953), - [anon_sym_BSLASHglslink] = ACTIONS(4953), - [anon_sym_BSLASHglstext] = ACTIONS(4953), - [anon_sym_BSLASHGlstext] = ACTIONS(4953), - [anon_sym_BSLASHGLStext] = ACTIONS(4953), - [anon_sym_BSLASHglsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4953), - [anon_sym_BSLASHglsplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSplural] = ACTIONS(4953), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHglsname] = ACTIONS(4953), - [anon_sym_BSLASHGlsname] = ACTIONS(4953), - [anon_sym_BSLASHGLSname] = ACTIONS(4953), - [anon_sym_BSLASHglssymbol] = ACTIONS(4953), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4953), - [anon_sym_BSLASHglsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4953), - [anon_sym_BSLASHglsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4953), - [anon_sym_BSLASHglsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4953), - [anon_sym_BSLASHglsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4953), - [anon_sym_BSLASHglsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4953), - [anon_sym_BSLASHnewacronym] = ACTIONS(4953), - [anon_sym_BSLASHacrshort] = ACTIONS(4953), - [anon_sym_BSLASHAcrshort] = ACTIONS(4953), - [anon_sym_BSLASHACRshort] = ACTIONS(4953), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4953), - [anon_sym_BSLASHacrlong] = ACTIONS(4953), - [anon_sym_BSLASHAcrlong] = ACTIONS(4953), - [anon_sym_BSLASHACRlong] = ACTIONS(4953), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4953), - [anon_sym_BSLASHacrfull] = ACTIONS(4953), - [anon_sym_BSLASHAcrfull] = ACTIONS(4953), - [anon_sym_BSLASHACRfull] = ACTIONS(4953), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4953), - [anon_sym_BSLASHacs] = ACTIONS(4953), - [anon_sym_BSLASHAcs] = ACTIONS(4953), - [anon_sym_BSLASHacsp] = ACTIONS(4953), - [anon_sym_BSLASHAcsp] = ACTIONS(4953), - [anon_sym_BSLASHacl] = ACTIONS(4953), - [anon_sym_BSLASHAcl] = ACTIONS(4953), - [anon_sym_BSLASHaclp] = ACTIONS(4953), - [anon_sym_BSLASHAclp] = ACTIONS(4953), - [anon_sym_BSLASHacf] = ACTIONS(4953), - [anon_sym_BSLASHAcf] = ACTIONS(4953), - [anon_sym_BSLASHacfp] = ACTIONS(4953), - [anon_sym_BSLASHAcfp] = ACTIONS(4953), - [anon_sym_BSLASHac] = ACTIONS(4953), - [anon_sym_BSLASHAc] = ACTIONS(4953), - [anon_sym_BSLASHacp] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4953), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4953), - [anon_sym_BSLASHcolor] = ACTIONS(4953), - [anon_sym_BSLASHcolorbox] = ACTIONS(4953), - [anon_sym_BSLASHtextcolor] = ACTIONS(4953), - [anon_sym_BSLASHpagecolor] = ACTIONS(4953), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4953), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4953), + [1345] = { + [sym_command_name] = ACTIONS(5045), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_RBRACK] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5043), + [sym_word] = ACTIONS(5045), + [sym_placeholder] = ACTIONS(5043), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_CARET] = ACTIONS(5045), + [anon_sym__] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_COLON] = ACTIONS(5045), + [anon_sym_SQUOTE] = ACTIONS(5045), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), + [anon_sym_DOLLAR] = ACTIONS(5045), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), + [anon_sym_BSLASHbegin] = ACTIONS(5045), + [anon_sym_BSLASHusepackage] = ACTIONS(5045), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), + [anon_sym_BSLASHinclude] = ACTIONS(5045), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), + [anon_sym_BSLASHinput] = ACTIONS(5045), + [anon_sym_BSLASHsubfile] = ACTIONS(5045), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), + [anon_sym_BSLASHbibliography] = ACTIONS(5045), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), + [anon_sym_BSLASHincludesvg] = ACTIONS(5045), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), + [anon_sym_BSLASHimport] = ACTIONS(5045), + [anon_sym_BSLASHsubimport] = ACTIONS(5045), + [anon_sym_BSLASHinputfrom] = ACTIONS(5045), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), + [anon_sym_BSLASHincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHcaption] = ACTIONS(5045), + [anon_sym_BSLASHcite] = ACTIONS(5045), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCite] = ACTIONS(5045), + [anon_sym_BSLASHnocite] = ACTIONS(5045), + [anon_sym_BSLASHcitet] = ACTIONS(5045), + [anon_sym_BSLASHcitep] = ACTIONS(5045), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteauthor] = ACTIONS(5045), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitetitle] = ACTIONS(5045), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteyear] = ACTIONS(5045), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitedate] = ACTIONS(5045), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteurl] = ACTIONS(5045), + [anon_sym_BSLASHfullcite] = ACTIONS(5045), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), + [anon_sym_BSLASHcitealt] = ACTIONS(5045), + [anon_sym_BSLASHcitealp] = ACTIONS(5045), + [anon_sym_BSLASHcitetext] = ACTIONS(5045), + [anon_sym_BSLASHparencite] = ACTIONS(5045), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHParencite] = ACTIONS(5045), + [anon_sym_BSLASHfootcite] = ACTIONS(5045), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), + [anon_sym_BSLASHtextcite] = ACTIONS(5045), + [anon_sym_BSLASHTextcite] = ACTIONS(5045), + [anon_sym_BSLASHsmartcite] = ACTIONS(5045), + [anon_sym_BSLASHSmartcite] = ACTIONS(5045), + [anon_sym_BSLASHsupercite] = ACTIONS(5045), + [anon_sym_BSLASHautocite] = ACTIONS(5045), + [anon_sym_BSLASHAutocite] = ACTIONS(5045), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHvolcite] = ACTIONS(5045), + [anon_sym_BSLASHVolcite] = ACTIONS(5045), + [anon_sym_BSLASHpvolcite] = ACTIONS(5045), + [anon_sym_BSLASHPvolcite] = ACTIONS(5045), + [anon_sym_BSLASHfvolcite] = ACTIONS(5045), + [anon_sym_BSLASHftvolcite] = ACTIONS(5045), + [anon_sym_BSLASHsvolcite] = ACTIONS(5045), + [anon_sym_BSLASHSvolcite] = ACTIONS(5045), + [anon_sym_BSLASHtvolcite] = ACTIONS(5045), + [anon_sym_BSLASHTvolcite] = ACTIONS(5045), + [anon_sym_BSLASHavolcite] = ACTIONS(5045), + [anon_sym_BSLASHAvolcite] = ACTIONS(5045), + [anon_sym_BSLASHnotecite] = ACTIONS(5045), + [anon_sym_BSLASHNotecite] = ACTIONS(5045), + [anon_sym_BSLASHpnotecite] = ACTIONS(5045), + [anon_sym_BSLASHPnotecite] = ACTIONS(5045), + [anon_sym_BSLASHfnotecite] = ACTIONS(5045), + [anon_sym_BSLASHlabel] = ACTIONS(5045), + [anon_sym_BSLASHref] = ACTIONS(5045), + [anon_sym_BSLASHeqref] = ACTIONS(5045), + [anon_sym_BSLASHvref] = ACTIONS(5045), + [anon_sym_BSLASHVref] = ACTIONS(5045), + [anon_sym_BSLASHautoref] = ACTIONS(5045), + [anon_sym_BSLASHpageref] = ACTIONS(5045), + [anon_sym_BSLASHcref] = ACTIONS(5045), + [anon_sym_BSLASHCref] = ACTIONS(5045), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnameCref] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHlabelcref] = ACTIONS(5045), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCrefrange] = ACTIONS(5045), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnewlabel] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), + [anon_sym_BSLASHdef] = ACTIONS(5045), + [anon_sym_BSLASHlet] = ACTIONS(5045), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), + [anon_sym_BSLASHgls] = ACTIONS(5045), + [anon_sym_BSLASHGls] = ACTIONS(5045), + [anon_sym_BSLASHGLS] = ACTIONS(5045), + [anon_sym_BSLASHglspl] = ACTIONS(5045), + [anon_sym_BSLASHGlspl] = ACTIONS(5045), + [anon_sym_BSLASHGLSpl] = ACTIONS(5045), + [anon_sym_BSLASHglsdisp] = ACTIONS(5045), + [anon_sym_BSLASHglslink] = ACTIONS(5045), + [anon_sym_BSLASHglstext] = ACTIONS(5045), + [anon_sym_BSLASHGlstext] = ACTIONS(5045), + [anon_sym_BSLASHGLStext] = ACTIONS(5045), + [anon_sym_BSLASHglsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), + [anon_sym_BSLASHglsplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSplural] = ACTIONS(5045), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHglsname] = ACTIONS(5045), + [anon_sym_BSLASHGlsname] = ACTIONS(5045), + [anon_sym_BSLASHGLSname] = ACTIONS(5045), + [anon_sym_BSLASHglssymbol] = ACTIONS(5045), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), + [anon_sym_BSLASHglsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), + [anon_sym_BSLASHglsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), + [anon_sym_BSLASHglsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), + [anon_sym_BSLASHglsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), + [anon_sym_BSLASHglsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), + [anon_sym_BSLASHnewacronym] = ACTIONS(5045), + [anon_sym_BSLASHacrshort] = ACTIONS(5045), + [anon_sym_BSLASHAcrshort] = ACTIONS(5045), + [anon_sym_BSLASHACRshort] = ACTIONS(5045), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), + [anon_sym_BSLASHacrlong] = ACTIONS(5045), + [anon_sym_BSLASHAcrlong] = ACTIONS(5045), + [anon_sym_BSLASHACRlong] = ACTIONS(5045), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), + [anon_sym_BSLASHacrfull] = ACTIONS(5045), + [anon_sym_BSLASHAcrfull] = ACTIONS(5045), + [anon_sym_BSLASHACRfull] = ACTIONS(5045), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), + [anon_sym_BSLASHacs] = ACTIONS(5045), + [anon_sym_BSLASHAcs] = ACTIONS(5045), + [anon_sym_BSLASHacsp] = ACTIONS(5045), + [anon_sym_BSLASHAcsp] = ACTIONS(5045), + [anon_sym_BSLASHacl] = ACTIONS(5045), + [anon_sym_BSLASHAcl] = ACTIONS(5045), + [anon_sym_BSLASHaclp] = ACTIONS(5045), + [anon_sym_BSLASHAclp] = ACTIONS(5045), + [anon_sym_BSLASHacf] = ACTIONS(5045), + [anon_sym_BSLASHAcf] = ACTIONS(5045), + [anon_sym_BSLASHacfp] = ACTIONS(5045), + [anon_sym_BSLASHAcfp] = ACTIONS(5045), + [anon_sym_BSLASHac] = ACTIONS(5045), + [anon_sym_BSLASHAc] = ACTIONS(5045), + [anon_sym_BSLASHacp] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), + [anon_sym_BSLASHcolor] = ACTIONS(5045), + [anon_sym_BSLASHcolorbox] = ACTIONS(5045), + [anon_sym_BSLASHtextcolor] = ACTIONS(5045), + [anon_sym_BSLASHpagecolor] = ACTIONS(5045), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), + [anon_sym_BSLASHtext] = ACTIONS(5045), + [anon_sym_BSLASHintertext] = ACTIONS(5045), + [anon_sym_shortintertext] = ACTIONS(5045), }, - [1405] = { - [sym_command_name] = ACTIONS(5093), + [1346] = { + [sym_command_name] = ACTIONS(5041), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_LPAREN] = ACTIONS(5091), - [anon_sym_RPAREN] = ACTIONS(5091), - [anon_sym_LBRACK] = ACTIONS(5091), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_LBRACE] = ACTIONS(5091), - [anon_sym_RBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), - [anon_sym_DOLLAR] = ACTIONS(5093), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHiffalse] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_RBRACK] = ACTIONS(5039), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5039), + [sym_word] = ACTIONS(5041), + [sym_placeholder] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_SLASH] = ACTIONS(5041), + [anon_sym_CARET] = ACTIONS(5041), + [anon_sym__] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5041), + [anon_sym_PIPE] = ACTIONS(5041), + [anon_sym_COLON] = ACTIONS(5041), + [anon_sym_SQUOTE] = ACTIONS(5041), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), + [anon_sym_BSLASHbegin] = ACTIONS(5041), + [anon_sym_BSLASHusepackage] = ACTIONS(5041), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), + [anon_sym_BSLASHinclude] = ACTIONS(5041), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), + [anon_sym_BSLASHinput] = ACTIONS(5041), + [anon_sym_BSLASHsubfile] = ACTIONS(5041), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), + [anon_sym_BSLASHbibliography] = ACTIONS(5041), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), + [anon_sym_BSLASHincludesvg] = ACTIONS(5041), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), + [anon_sym_BSLASHimport] = ACTIONS(5041), + [anon_sym_BSLASHsubimport] = ACTIONS(5041), + [anon_sym_BSLASHinputfrom] = ACTIONS(5041), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), + [anon_sym_BSLASHincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHcaption] = ACTIONS(5041), + [anon_sym_BSLASHcite] = ACTIONS(5041), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCite] = ACTIONS(5041), + [anon_sym_BSLASHnocite] = ACTIONS(5041), + [anon_sym_BSLASHcitet] = ACTIONS(5041), + [anon_sym_BSLASHcitep] = ACTIONS(5041), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteauthor] = ACTIONS(5041), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitetitle] = ACTIONS(5041), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteyear] = ACTIONS(5041), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitedate] = ACTIONS(5041), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteurl] = ACTIONS(5041), + [anon_sym_BSLASHfullcite] = ACTIONS(5041), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), + [anon_sym_BSLASHcitealt] = ACTIONS(5041), + [anon_sym_BSLASHcitealp] = ACTIONS(5041), + [anon_sym_BSLASHcitetext] = ACTIONS(5041), + [anon_sym_BSLASHparencite] = ACTIONS(5041), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHParencite] = ACTIONS(5041), + [anon_sym_BSLASHfootcite] = ACTIONS(5041), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), + [anon_sym_BSLASHtextcite] = ACTIONS(5041), + [anon_sym_BSLASHTextcite] = ACTIONS(5041), + [anon_sym_BSLASHsmartcite] = ACTIONS(5041), + [anon_sym_BSLASHSmartcite] = ACTIONS(5041), + [anon_sym_BSLASHsupercite] = ACTIONS(5041), + [anon_sym_BSLASHautocite] = ACTIONS(5041), + [anon_sym_BSLASHAutocite] = ACTIONS(5041), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHvolcite] = ACTIONS(5041), + [anon_sym_BSLASHVolcite] = ACTIONS(5041), + [anon_sym_BSLASHpvolcite] = ACTIONS(5041), + [anon_sym_BSLASHPvolcite] = ACTIONS(5041), + [anon_sym_BSLASHfvolcite] = ACTIONS(5041), + [anon_sym_BSLASHftvolcite] = ACTIONS(5041), + [anon_sym_BSLASHsvolcite] = ACTIONS(5041), + [anon_sym_BSLASHSvolcite] = ACTIONS(5041), + [anon_sym_BSLASHtvolcite] = ACTIONS(5041), + [anon_sym_BSLASHTvolcite] = ACTIONS(5041), + [anon_sym_BSLASHavolcite] = ACTIONS(5041), + [anon_sym_BSLASHAvolcite] = ACTIONS(5041), + [anon_sym_BSLASHnotecite] = ACTIONS(5041), + [anon_sym_BSLASHNotecite] = ACTIONS(5041), + [anon_sym_BSLASHpnotecite] = ACTIONS(5041), + [anon_sym_BSLASHPnotecite] = ACTIONS(5041), + [anon_sym_BSLASHfnotecite] = ACTIONS(5041), + [anon_sym_BSLASHlabel] = ACTIONS(5041), + [anon_sym_BSLASHref] = ACTIONS(5041), + [anon_sym_BSLASHeqref] = ACTIONS(5041), + [anon_sym_BSLASHvref] = ACTIONS(5041), + [anon_sym_BSLASHVref] = ACTIONS(5041), + [anon_sym_BSLASHautoref] = ACTIONS(5041), + [anon_sym_BSLASHpageref] = ACTIONS(5041), + [anon_sym_BSLASHcref] = ACTIONS(5041), + [anon_sym_BSLASHCref] = ACTIONS(5041), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnameCref] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHlabelcref] = ACTIONS(5041), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCrefrange] = ACTIONS(5041), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnewlabel] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), + [anon_sym_BSLASHdef] = ACTIONS(5041), + [anon_sym_BSLASHlet] = ACTIONS(5041), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), + [anon_sym_BSLASHgls] = ACTIONS(5041), + [anon_sym_BSLASHGls] = ACTIONS(5041), + [anon_sym_BSLASHGLS] = ACTIONS(5041), + [anon_sym_BSLASHglspl] = ACTIONS(5041), + [anon_sym_BSLASHGlspl] = ACTIONS(5041), + [anon_sym_BSLASHGLSpl] = ACTIONS(5041), + [anon_sym_BSLASHglsdisp] = ACTIONS(5041), + [anon_sym_BSLASHglslink] = ACTIONS(5041), + [anon_sym_BSLASHglstext] = ACTIONS(5041), + [anon_sym_BSLASHGlstext] = ACTIONS(5041), + [anon_sym_BSLASHGLStext] = ACTIONS(5041), + [anon_sym_BSLASHglsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), + [anon_sym_BSLASHglsplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSplural] = ACTIONS(5041), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHglsname] = ACTIONS(5041), + [anon_sym_BSLASHGlsname] = ACTIONS(5041), + [anon_sym_BSLASHGLSname] = ACTIONS(5041), + [anon_sym_BSLASHglssymbol] = ACTIONS(5041), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), + [anon_sym_BSLASHglsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), + [anon_sym_BSLASHglsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), + [anon_sym_BSLASHglsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), + [anon_sym_BSLASHglsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), + [anon_sym_BSLASHglsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), + [anon_sym_BSLASHnewacronym] = ACTIONS(5041), + [anon_sym_BSLASHacrshort] = ACTIONS(5041), + [anon_sym_BSLASHAcrshort] = ACTIONS(5041), + [anon_sym_BSLASHACRshort] = ACTIONS(5041), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), + [anon_sym_BSLASHacrlong] = ACTIONS(5041), + [anon_sym_BSLASHAcrlong] = ACTIONS(5041), + [anon_sym_BSLASHACRlong] = ACTIONS(5041), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), + [anon_sym_BSLASHacrfull] = ACTIONS(5041), + [anon_sym_BSLASHAcrfull] = ACTIONS(5041), + [anon_sym_BSLASHACRfull] = ACTIONS(5041), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), + [anon_sym_BSLASHacs] = ACTIONS(5041), + [anon_sym_BSLASHAcs] = ACTIONS(5041), + [anon_sym_BSLASHacsp] = ACTIONS(5041), + [anon_sym_BSLASHAcsp] = ACTIONS(5041), + [anon_sym_BSLASHacl] = ACTIONS(5041), + [anon_sym_BSLASHAcl] = ACTIONS(5041), + [anon_sym_BSLASHaclp] = ACTIONS(5041), + [anon_sym_BSLASHAclp] = ACTIONS(5041), + [anon_sym_BSLASHacf] = ACTIONS(5041), + [anon_sym_BSLASHAcf] = ACTIONS(5041), + [anon_sym_BSLASHacfp] = ACTIONS(5041), + [anon_sym_BSLASHAcfp] = ACTIONS(5041), + [anon_sym_BSLASHac] = ACTIONS(5041), + [anon_sym_BSLASHAc] = ACTIONS(5041), + [anon_sym_BSLASHacp] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), + [anon_sym_BSLASHcolor] = ACTIONS(5041), + [anon_sym_BSLASHcolorbox] = ACTIONS(5041), + [anon_sym_BSLASHtextcolor] = ACTIONS(5041), + [anon_sym_BSLASHpagecolor] = ACTIONS(5041), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + [anon_sym_BSLASHtext] = ACTIONS(5041), + [anon_sym_BSLASHintertext] = ACTIONS(5041), + [anon_sym_shortintertext] = ACTIONS(5041), + }, + [1347] = { + [sym_command_name] = ACTIONS(5037), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5035), + [anon_sym_RPAREN] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_RBRACK] = ACTIONS(5035), + [anon_sym_COMMA] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5035), + [sym_word] = ACTIONS(5037), + [sym_placeholder] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5037), + [anon_sym_STAR] = ACTIONS(5037), + [anon_sym_SLASH] = ACTIONS(5037), + [anon_sym_CARET] = ACTIONS(5037), + [anon_sym__] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_COLON] = ACTIONS(5037), + [anon_sym_SQUOTE] = ACTIONS(5037), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), + [anon_sym_DOLLAR] = ACTIONS(5037), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), + [anon_sym_BSLASHbegin] = ACTIONS(5037), + [anon_sym_BSLASHusepackage] = ACTIONS(5037), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), + [anon_sym_BSLASHinclude] = ACTIONS(5037), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), + [anon_sym_BSLASHinput] = ACTIONS(5037), + [anon_sym_BSLASHsubfile] = ACTIONS(5037), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), + [anon_sym_BSLASHbibliography] = ACTIONS(5037), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), + [anon_sym_BSLASHincludesvg] = ACTIONS(5037), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), + [anon_sym_BSLASHimport] = ACTIONS(5037), + [anon_sym_BSLASHsubimport] = ACTIONS(5037), + [anon_sym_BSLASHinputfrom] = ACTIONS(5037), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), + [anon_sym_BSLASHincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHcaption] = ACTIONS(5037), + [anon_sym_BSLASHcite] = ACTIONS(5037), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCite] = ACTIONS(5037), + [anon_sym_BSLASHnocite] = ACTIONS(5037), + [anon_sym_BSLASHcitet] = ACTIONS(5037), + [anon_sym_BSLASHcitep] = ACTIONS(5037), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteauthor] = ACTIONS(5037), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitetitle] = ACTIONS(5037), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteyear] = ACTIONS(5037), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitedate] = ACTIONS(5037), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteurl] = ACTIONS(5037), + [anon_sym_BSLASHfullcite] = ACTIONS(5037), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), + [anon_sym_BSLASHcitealt] = ACTIONS(5037), + [anon_sym_BSLASHcitealp] = ACTIONS(5037), + [anon_sym_BSLASHcitetext] = ACTIONS(5037), + [anon_sym_BSLASHparencite] = ACTIONS(5037), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHParencite] = ACTIONS(5037), + [anon_sym_BSLASHfootcite] = ACTIONS(5037), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), + [anon_sym_BSLASHtextcite] = ACTIONS(5037), + [anon_sym_BSLASHTextcite] = ACTIONS(5037), + [anon_sym_BSLASHsmartcite] = ACTIONS(5037), + [anon_sym_BSLASHSmartcite] = ACTIONS(5037), + [anon_sym_BSLASHsupercite] = ACTIONS(5037), + [anon_sym_BSLASHautocite] = ACTIONS(5037), + [anon_sym_BSLASHAutocite] = ACTIONS(5037), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHvolcite] = ACTIONS(5037), + [anon_sym_BSLASHVolcite] = ACTIONS(5037), + [anon_sym_BSLASHpvolcite] = ACTIONS(5037), + [anon_sym_BSLASHPvolcite] = ACTIONS(5037), + [anon_sym_BSLASHfvolcite] = ACTIONS(5037), + [anon_sym_BSLASHftvolcite] = ACTIONS(5037), + [anon_sym_BSLASHsvolcite] = ACTIONS(5037), + [anon_sym_BSLASHSvolcite] = ACTIONS(5037), + [anon_sym_BSLASHtvolcite] = ACTIONS(5037), + [anon_sym_BSLASHTvolcite] = ACTIONS(5037), + [anon_sym_BSLASHavolcite] = ACTIONS(5037), + [anon_sym_BSLASHAvolcite] = ACTIONS(5037), + [anon_sym_BSLASHnotecite] = ACTIONS(5037), + [anon_sym_BSLASHNotecite] = ACTIONS(5037), + [anon_sym_BSLASHpnotecite] = ACTIONS(5037), + [anon_sym_BSLASHPnotecite] = ACTIONS(5037), + [anon_sym_BSLASHfnotecite] = ACTIONS(5037), + [anon_sym_BSLASHlabel] = ACTIONS(5037), + [anon_sym_BSLASHref] = ACTIONS(5037), + [anon_sym_BSLASHeqref] = ACTIONS(5037), + [anon_sym_BSLASHvref] = ACTIONS(5037), + [anon_sym_BSLASHVref] = ACTIONS(5037), + [anon_sym_BSLASHautoref] = ACTIONS(5037), + [anon_sym_BSLASHpageref] = ACTIONS(5037), + [anon_sym_BSLASHcref] = ACTIONS(5037), + [anon_sym_BSLASHCref] = ACTIONS(5037), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnameCref] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHlabelcref] = ACTIONS(5037), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCrefrange] = ACTIONS(5037), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnewlabel] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), + [anon_sym_BSLASHdef] = ACTIONS(5037), + [anon_sym_BSLASHlet] = ACTIONS(5037), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), + [anon_sym_BSLASHgls] = ACTIONS(5037), + [anon_sym_BSLASHGls] = ACTIONS(5037), + [anon_sym_BSLASHGLS] = ACTIONS(5037), + [anon_sym_BSLASHglspl] = ACTIONS(5037), + [anon_sym_BSLASHGlspl] = ACTIONS(5037), + [anon_sym_BSLASHGLSpl] = ACTIONS(5037), + [anon_sym_BSLASHglsdisp] = ACTIONS(5037), + [anon_sym_BSLASHglslink] = ACTIONS(5037), + [anon_sym_BSLASHglstext] = ACTIONS(5037), + [anon_sym_BSLASHGlstext] = ACTIONS(5037), + [anon_sym_BSLASHGLStext] = ACTIONS(5037), + [anon_sym_BSLASHglsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), + [anon_sym_BSLASHglsplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSplural] = ACTIONS(5037), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHglsname] = ACTIONS(5037), + [anon_sym_BSLASHGlsname] = ACTIONS(5037), + [anon_sym_BSLASHGLSname] = ACTIONS(5037), + [anon_sym_BSLASHglssymbol] = ACTIONS(5037), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), + [anon_sym_BSLASHglsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), + [anon_sym_BSLASHglsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), + [anon_sym_BSLASHglsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), + [anon_sym_BSLASHglsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), + [anon_sym_BSLASHglsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), + [anon_sym_BSLASHnewacronym] = ACTIONS(5037), + [anon_sym_BSLASHacrshort] = ACTIONS(5037), + [anon_sym_BSLASHAcrshort] = ACTIONS(5037), + [anon_sym_BSLASHACRshort] = ACTIONS(5037), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), + [anon_sym_BSLASHacrlong] = ACTIONS(5037), + [anon_sym_BSLASHAcrlong] = ACTIONS(5037), + [anon_sym_BSLASHACRlong] = ACTIONS(5037), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), + [anon_sym_BSLASHacrfull] = ACTIONS(5037), + [anon_sym_BSLASHAcrfull] = ACTIONS(5037), + [anon_sym_BSLASHACRfull] = ACTIONS(5037), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), + [anon_sym_BSLASHacs] = ACTIONS(5037), + [anon_sym_BSLASHAcs] = ACTIONS(5037), + [anon_sym_BSLASHacsp] = ACTIONS(5037), + [anon_sym_BSLASHAcsp] = ACTIONS(5037), + [anon_sym_BSLASHacl] = ACTIONS(5037), + [anon_sym_BSLASHAcl] = ACTIONS(5037), + [anon_sym_BSLASHaclp] = ACTIONS(5037), + [anon_sym_BSLASHAclp] = ACTIONS(5037), + [anon_sym_BSLASHacf] = ACTIONS(5037), + [anon_sym_BSLASHAcf] = ACTIONS(5037), + [anon_sym_BSLASHacfp] = ACTIONS(5037), + [anon_sym_BSLASHAcfp] = ACTIONS(5037), + [anon_sym_BSLASHac] = ACTIONS(5037), + [anon_sym_BSLASHAc] = ACTIONS(5037), + [anon_sym_BSLASHacp] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), + [anon_sym_BSLASHcolor] = ACTIONS(5037), + [anon_sym_BSLASHcolorbox] = ACTIONS(5037), + [anon_sym_BSLASHtextcolor] = ACTIONS(5037), + [anon_sym_BSLASHpagecolor] = ACTIONS(5037), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [anon_sym_BSLASHtext] = ACTIONS(5037), + [anon_sym_BSLASHintertext] = ACTIONS(5037), + [anon_sym_shortintertext] = ACTIONS(5037), }, - [1406] = { - [sym_command_name] = ACTIONS(5101), + [1348] = { + [sym_command_name] = ACTIONS(5033), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_LPAREN] = ACTIONS(5099), - [anon_sym_RPAREN] = ACTIONS(5099), - [anon_sym_LBRACK] = ACTIONS(5099), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_LBRACE] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), - [anon_sym_DOLLAR] = ACTIONS(5101), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), + [anon_sym_BSLASHiffalse] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5031), + [sym_word] = ACTIONS(5033), + [sym_placeholder] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5033), + [anon_sym_DASH] = ACTIONS(5033), + [anon_sym_STAR] = ACTIONS(5033), + [anon_sym_SLASH] = ACTIONS(5033), + [anon_sym_CARET] = ACTIONS(5033), + [anon_sym__] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5033), + [anon_sym_PIPE] = ACTIONS(5033), + [anon_sym_COLON] = ACTIONS(5033), + [anon_sym_SQUOTE] = ACTIONS(5033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), + [anon_sym_DOLLAR] = ACTIONS(5033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), + [anon_sym_BSLASHbegin] = ACTIONS(5033), + [anon_sym_BSLASHusepackage] = ACTIONS(5033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), + [anon_sym_BSLASHinclude] = ACTIONS(5033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), + [anon_sym_BSLASHinput] = ACTIONS(5033), + [anon_sym_BSLASHsubfile] = ACTIONS(5033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), + [anon_sym_BSLASHbibliography] = ACTIONS(5033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), + [anon_sym_BSLASHincludesvg] = ACTIONS(5033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), + [anon_sym_BSLASHimport] = ACTIONS(5033), + [anon_sym_BSLASHsubimport] = ACTIONS(5033), + [anon_sym_BSLASHinputfrom] = ACTIONS(5033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), + [anon_sym_BSLASHincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHcaption] = ACTIONS(5033), + [anon_sym_BSLASHcite] = ACTIONS(5033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCite] = ACTIONS(5033), + [anon_sym_BSLASHnocite] = ACTIONS(5033), + [anon_sym_BSLASHcitet] = ACTIONS(5033), + [anon_sym_BSLASHcitep] = ACTIONS(5033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteauthor] = ACTIONS(5033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitetitle] = ACTIONS(5033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteyear] = ACTIONS(5033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitedate] = ACTIONS(5033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteurl] = ACTIONS(5033), + [anon_sym_BSLASHfullcite] = ACTIONS(5033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), + [anon_sym_BSLASHcitealt] = ACTIONS(5033), + [anon_sym_BSLASHcitealp] = ACTIONS(5033), + [anon_sym_BSLASHcitetext] = ACTIONS(5033), + [anon_sym_BSLASHparencite] = ACTIONS(5033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHParencite] = ACTIONS(5033), + [anon_sym_BSLASHfootcite] = ACTIONS(5033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), + [anon_sym_BSLASHtextcite] = ACTIONS(5033), + [anon_sym_BSLASHTextcite] = ACTIONS(5033), + [anon_sym_BSLASHsmartcite] = ACTIONS(5033), + [anon_sym_BSLASHSmartcite] = ACTIONS(5033), + [anon_sym_BSLASHsupercite] = ACTIONS(5033), + [anon_sym_BSLASHautocite] = ACTIONS(5033), + [anon_sym_BSLASHAutocite] = ACTIONS(5033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHvolcite] = ACTIONS(5033), + [anon_sym_BSLASHVolcite] = ACTIONS(5033), + [anon_sym_BSLASHpvolcite] = ACTIONS(5033), + [anon_sym_BSLASHPvolcite] = ACTIONS(5033), + [anon_sym_BSLASHfvolcite] = ACTIONS(5033), + [anon_sym_BSLASHftvolcite] = ACTIONS(5033), + [anon_sym_BSLASHsvolcite] = ACTIONS(5033), + [anon_sym_BSLASHSvolcite] = ACTIONS(5033), + [anon_sym_BSLASHtvolcite] = ACTIONS(5033), + [anon_sym_BSLASHTvolcite] = ACTIONS(5033), + [anon_sym_BSLASHavolcite] = ACTIONS(5033), + [anon_sym_BSLASHAvolcite] = ACTIONS(5033), + [anon_sym_BSLASHnotecite] = ACTIONS(5033), + [anon_sym_BSLASHNotecite] = ACTIONS(5033), + [anon_sym_BSLASHpnotecite] = ACTIONS(5033), + [anon_sym_BSLASHPnotecite] = ACTIONS(5033), + [anon_sym_BSLASHfnotecite] = ACTIONS(5033), + [anon_sym_BSLASHlabel] = ACTIONS(5033), + [anon_sym_BSLASHref] = ACTIONS(5033), + [anon_sym_BSLASHeqref] = ACTIONS(5033), + [anon_sym_BSLASHvref] = ACTIONS(5033), + [anon_sym_BSLASHVref] = ACTIONS(5033), + [anon_sym_BSLASHautoref] = ACTIONS(5033), + [anon_sym_BSLASHpageref] = ACTIONS(5033), + [anon_sym_BSLASHcref] = ACTIONS(5033), + [anon_sym_BSLASHCref] = ACTIONS(5033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnameCref] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHlabelcref] = ACTIONS(5033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCrefrange] = ACTIONS(5033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnewlabel] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), + [anon_sym_BSLASHdef] = ACTIONS(5033), + [anon_sym_BSLASHlet] = ACTIONS(5033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), + [anon_sym_BSLASHgls] = ACTIONS(5033), + [anon_sym_BSLASHGls] = ACTIONS(5033), + [anon_sym_BSLASHGLS] = ACTIONS(5033), + [anon_sym_BSLASHglspl] = ACTIONS(5033), + [anon_sym_BSLASHGlspl] = ACTIONS(5033), + [anon_sym_BSLASHGLSpl] = ACTIONS(5033), + [anon_sym_BSLASHglsdisp] = ACTIONS(5033), + [anon_sym_BSLASHglslink] = ACTIONS(5033), + [anon_sym_BSLASHglstext] = ACTIONS(5033), + [anon_sym_BSLASHGlstext] = ACTIONS(5033), + [anon_sym_BSLASHGLStext] = ACTIONS(5033), + [anon_sym_BSLASHglsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), + [anon_sym_BSLASHglsplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSplural] = ACTIONS(5033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHglsname] = ACTIONS(5033), + [anon_sym_BSLASHGlsname] = ACTIONS(5033), + [anon_sym_BSLASHGLSname] = ACTIONS(5033), + [anon_sym_BSLASHglssymbol] = ACTIONS(5033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), + [anon_sym_BSLASHglsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), + [anon_sym_BSLASHglsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), + [anon_sym_BSLASHglsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), + [anon_sym_BSLASHglsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), + [anon_sym_BSLASHglsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), + [anon_sym_BSLASHnewacronym] = ACTIONS(5033), + [anon_sym_BSLASHacrshort] = ACTIONS(5033), + [anon_sym_BSLASHAcrshort] = ACTIONS(5033), + [anon_sym_BSLASHACRshort] = ACTIONS(5033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), + [anon_sym_BSLASHacrlong] = ACTIONS(5033), + [anon_sym_BSLASHAcrlong] = ACTIONS(5033), + [anon_sym_BSLASHACRlong] = ACTIONS(5033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), + [anon_sym_BSLASHacrfull] = ACTIONS(5033), + [anon_sym_BSLASHAcrfull] = ACTIONS(5033), + [anon_sym_BSLASHACRfull] = ACTIONS(5033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), + [anon_sym_BSLASHacs] = ACTIONS(5033), + [anon_sym_BSLASHAcs] = ACTIONS(5033), + [anon_sym_BSLASHacsp] = ACTIONS(5033), + [anon_sym_BSLASHAcsp] = ACTIONS(5033), + [anon_sym_BSLASHacl] = ACTIONS(5033), + [anon_sym_BSLASHAcl] = ACTIONS(5033), + [anon_sym_BSLASHaclp] = ACTIONS(5033), + [anon_sym_BSLASHAclp] = ACTIONS(5033), + [anon_sym_BSLASHacf] = ACTIONS(5033), + [anon_sym_BSLASHAcf] = ACTIONS(5033), + [anon_sym_BSLASHacfp] = ACTIONS(5033), + [anon_sym_BSLASHAcfp] = ACTIONS(5033), + [anon_sym_BSLASHac] = ACTIONS(5033), + [anon_sym_BSLASHAc] = ACTIONS(5033), + [anon_sym_BSLASHacp] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), + [anon_sym_BSLASHcolor] = ACTIONS(5033), + [anon_sym_BSLASHcolorbox] = ACTIONS(5033), + [anon_sym_BSLASHtextcolor] = ACTIONS(5033), + [anon_sym_BSLASHpagecolor] = ACTIONS(5033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [anon_sym_BSLASHtext] = ACTIONS(5033), + [anon_sym_BSLASHintertext] = ACTIONS(5033), + [anon_sym_shortintertext] = ACTIONS(5033), }, - [1407] = { - [sym_command_name] = ACTIONS(5041), + [1349] = { + [sym_command_name] = ACTIONS(5119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5117), + [sym_word] = ACTIONS(5119), + [sym_placeholder] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5119), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_CARET] = ACTIONS(5119), + [anon_sym__] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_COLON] = ACTIONS(5119), + [anon_sym_SQUOTE] = ACTIONS(5119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), + [anon_sym_DOLLAR] = ACTIONS(5119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), + [anon_sym_BSLASHbegin] = ACTIONS(5119), + [anon_sym_BSLASHusepackage] = ACTIONS(5119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), + [anon_sym_BSLASHinclude] = ACTIONS(5119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), + [anon_sym_BSLASHinput] = ACTIONS(5119), + [anon_sym_BSLASHsubfile] = ACTIONS(5119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), + [anon_sym_BSLASHbibliography] = ACTIONS(5119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), + [anon_sym_BSLASHincludesvg] = ACTIONS(5119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), + [anon_sym_BSLASHimport] = ACTIONS(5119), + [anon_sym_BSLASHsubimport] = ACTIONS(5119), + [anon_sym_BSLASHinputfrom] = ACTIONS(5119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), + [anon_sym_BSLASHincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHcaption] = ACTIONS(5119), + [anon_sym_BSLASHcite] = ACTIONS(5119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCite] = ACTIONS(5119), + [anon_sym_BSLASHnocite] = ACTIONS(5119), + [anon_sym_BSLASHcitet] = ACTIONS(5119), + [anon_sym_BSLASHcitep] = ACTIONS(5119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteauthor] = ACTIONS(5119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitetitle] = ACTIONS(5119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteyear] = ACTIONS(5119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitedate] = ACTIONS(5119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteurl] = ACTIONS(5119), + [anon_sym_BSLASHfullcite] = ACTIONS(5119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), + [anon_sym_BSLASHcitealt] = ACTIONS(5119), + [anon_sym_BSLASHcitealp] = ACTIONS(5119), + [anon_sym_BSLASHcitetext] = ACTIONS(5119), + [anon_sym_BSLASHparencite] = ACTIONS(5119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHParencite] = ACTIONS(5119), + [anon_sym_BSLASHfootcite] = ACTIONS(5119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), + [anon_sym_BSLASHtextcite] = ACTIONS(5119), + [anon_sym_BSLASHTextcite] = ACTIONS(5119), + [anon_sym_BSLASHsmartcite] = ACTIONS(5119), + [anon_sym_BSLASHSmartcite] = ACTIONS(5119), + [anon_sym_BSLASHsupercite] = ACTIONS(5119), + [anon_sym_BSLASHautocite] = ACTIONS(5119), + [anon_sym_BSLASHAutocite] = ACTIONS(5119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHvolcite] = ACTIONS(5119), + [anon_sym_BSLASHVolcite] = ACTIONS(5119), + [anon_sym_BSLASHpvolcite] = ACTIONS(5119), + [anon_sym_BSLASHPvolcite] = ACTIONS(5119), + [anon_sym_BSLASHfvolcite] = ACTIONS(5119), + [anon_sym_BSLASHftvolcite] = ACTIONS(5119), + [anon_sym_BSLASHsvolcite] = ACTIONS(5119), + [anon_sym_BSLASHSvolcite] = ACTIONS(5119), + [anon_sym_BSLASHtvolcite] = ACTIONS(5119), + [anon_sym_BSLASHTvolcite] = ACTIONS(5119), + [anon_sym_BSLASHavolcite] = ACTIONS(5119), + [anon_sym_BSLASHAvolcite] = ACTIONS(5119), + [anon_sym_BSLASHnotecite] = ACTIONS(5119), + [anon_sym_BSLASHNotecite] = ACTIONS(5119), + [anon_sym_BSLASHpnotecite] = ACTIONS(5119), + [anon_sym_BSLASHPnotecite] = ACTIONS(5119), + [anon_sym_BSLASHfnotecite] = ACTIONS(5119), + [anon_sym_BSLASHlabel] = ACTIONS(5119), + [anon_sym_BSLASHref] = ACTIONS(5119), + [anon_sym_BSLASHeqref] = ACTIONS(5119), + [anon_sym_BSLASHvref] = ACTIONS(5119), + [anon_sym_BSLASHVref] = ACTIONS(5119), + [anon_sym_BSLASHautoref] = ACTIONS(5119), + [anon_sym_BSLASHpageref] = ACTIONS(5119), + [anon_sym_BSLASHcref] = ACTIONS(5119), + [anon_sym_BSLASHCref] = ACTIONS(5119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnameCref] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHlabelcref] = ACTIONS(5119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCrefrange] = ACTIONS(5119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnewlabel] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), + [anon_sym_BSLASHdef] = ACTIONS(5119), + [anon_sym_BSLASHlet] = ACTIONS(5119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), + [anon_sym_BSLASHgls] = ACTIONS(5119), + [anon_sym_BSLASHGls] = ACTIONS(5119), + [anon_sym_BSLASHGLS] = ACTIONS(5119), + [anon_sym_BSLASHglspl] = ACTIONS(5119), + [anon_sym_BSLASHGlspl] = ACTIONS(5119), + [anon_sym_BSLASHGLSpl] = ACTIONS(5119), + [anon_sym_BSLASHglsdisp] = ACTIONS(5119), + [anon_sym_BSLASHglslink] = ACTIONS(5119), + [anon_sym_BSLASHglstext] = ACTIONS(5119), + [anon_sym_BSLASHGlstext] = ACTIONS(5119), + [anon_sym_BSLASHGLStext] = ACTIONS(5119), + [anon_sym_BSLASHglsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), + [anon_sym_BSLASHglsplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSplural] = ACTIONS(5119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHglsname] = ACTIONS(5119), + [anon_sym_BSLASHGlsname] = ACTIONS(5119), + [anon_sym_BSLASHGLSname] = ACTIONS(5119), + [anon_sym_BSLASHglssymbol] = ACTIONS(5119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), + [anon_sym_BSLASHglsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), + [anon_sym_BSLASHglsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), + [anon_sym_BSLASHglsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), + [anon_sym_BSLASHglsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), + [anon_sym_BSLASHglsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), + [anon_sym_BSLASHnewacronym] = ACTIONS(5119), + [anon_sym_BSLASHacrshort] = ACTIONS(5119), + [anon_sym_BSLASHAcrshort] = ACTIONS(5119), + [anon_sym_BSLASHACRshort] = ACTIONS(5119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), + [anon_sym_BSLASHacrlong] = ACTIONS(5119), + [anon_sym_BSLASHAcrlong] = ACTIONS(5119), + [anon_sym_BSLASHACRlong] = ACTIONS(5119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), + [anon_sym_BSLASHacrfull] = ACTIONS(5119), + [anon_sym_BSLASHAcrfull] = ACTIONS(5119), + [anon_sym_BSLASHACRfull] = ACTIONS(5119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), + [anon_sym_BSLASHacs] = ACTIONS(5119), + [anon_sym_BSLASHAcs] = ACTIONS(5119), + [anon_sym_BSLASHacsp] = ACTIONS(5119), + [anon_sym_BSLASHAcsp] = ACTIONS(5119), + [anon_sym_BSLASHacl] = ACTIONS(5119), + [anon_sym_BSLASHAcl] = ACTIONS(5119), + [anon_sym_BSLASHaclp] = ACTIONS(5119), + [anon_sym_BSLASHAclp] = ACTIONS(5119), + [anon_sym_BSLASHacf] = ACTIONS(5119), + [anon_sym_BSLASHAcf] = ACTIONS(5119), + [anon_sym_BSLASHacfp] = ACTIONS(5119), + [anon_sym_BSLASHAcfp] = ACTIONS(5119), + [anon_sym_BSLASHac] = ACTIONS(5119), + [anon_sym_BSLASHAc] = ACTIONS(5119), + [anon_sym_BSLASHacp] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), + [anon_sym_BSLASHcolor] = ACTIONS(5119), + [anon_sym_BSLASHcolorbox] = ACTIONS(5119), + [anon_sym_BSLASHtextcolor] = ACTIONS(5119), + [anon_sym_BSLASHpagecolor] = ACTIONS(5119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), + [anon_sym_BSLASHtext] = ACTIONS(5119), + [anon_sym_BSLASHintertext] = ACTIONS(5119), + [anon_sym_shortintertext] = ACTIONS(5119), + }, + [1350] = { + [sym_command_name] = ACTIONS(5029), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5041), - [anon_sym_LPAREN] = ACTIONS(5039), - [anon_sym_RPAREN] = ACTIONS(5039), - [anon_sym_LBRACK] = ACTIONS(5039), - [anon_sym_RBRACK] = ACTIONS(5039), - [anon_sym_COMMA] = ACTIONS(5039), - [anon_sym_LBRACE] = ACTIONS(5039), - [anon_sym_RBRACE] = ACTIONS(5039), - [sym_word] = ACTIONS(5041), - [sym_placeholder] = ACTIONS(5039), - [anon_sym_PLUS] = ACTIONS(5041), - [anon_sym_DASH] = ACTIONS(5041), - [anon_sym_STAR] = ACTIONS(5041), - [anon_sym_SLASH] = ACTIONS(5041), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym__] = ACTIONS(5041), - [anon_sym_LT] = ACTIONS(5041), - [anon_sym_GT] = ACTIONS(5041), - [anon_sym_BANG] = ACTIONS(5041), - [anon_sym_PIPE] = ACTIONS(5041), - [anon_sym_COLON] = ACTIONS(5041), - [anon_sym_SQUOTE] = ACTIONS(5041), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), - [anon_sym_DOLLAR] = ACTIONS(5041), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), - [anon_sym_BSLASHusepackage] = ACTIONS(5041), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), - [anon_sym_BSLASHinclude] = ACTIONS(5041), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), - [anon_sym_BSLASHinput] = ACTIONS(5041), - [anon_sym_BSLASHsubfile] = ACTIONS(5041), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), - [anon_sym_BSLASHbibliography] = ACTIONS(5041), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), - [anon_sym_BSLASHincludesvg] = ACTIONS(5041), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), - [anon_sym_BSLASHimport] = ACTIONS(5041), - [anon_sym_BSLASHsubimport] = ACTIONS(5041), - [anon_sym_BSLASHinputfrom] = ACTIONS(5041), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), - [anon_sym_BSLASHincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), - [anon_sym_BSLASHcaption] = ACTIONS(5041), - [anon_sym_BSLASHcite] = ACTIONS(5041), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCite] = ACTIONS(5041), - [anon_sym_BSLASHnocite] = ACTIONS(5041), - [anon_sym_BSLASHcitet] = ACTIONS(5041), - [anon_sym_BSLASHcitep] = ACTIONS(5041), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteauthor] = ACTIONS(5041), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitetitle] = ACTIONS(5041), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteyear] = ACTIONS(5041), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), - [anon_sym_BSLASHcitedate] = ACTIONS(5041), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), - [anon_sym_BSLASHciteurl] = ACTIONS(5041), - [anon_sym_BSLASHfullcite] = ACTIONS(5041), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), - [anon_sym_BSLASHcitealt] = ACTIONS(5041), - [anon_sym_BSLASHcitealp] = ACTIONS(5041), - [anon_sym_BSLASHcitetext] = ACTIONS(5041), - [anon_sym_BSLASHparencite] = ACTIONS(5041), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHParencite] = ACTIONS(5041), - [anon_sym_BSLASHfootcite] = ACTIONS(5041), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), - [anon_sym_BSLASHtextcite] = ACTIONS(5041), - [anon_sym_BSLASHTextcite] = ACTIONS(5041), - [anon_sym_BSLASHsmartcite] = ACTIONS(5041), - [anon_sym_BSLASHSmartcite] = ACTIONS(5041), - [anon_sym_BSLASHsupercite] = ACTIONS(5041), - [anon_sym_BSLASHautocite] = ACTIONS(5041), - [anon_sym_BSLASHAutocite] = ACTIONS(5041), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), - [anon_sym_BSLASHvolcite] = ACTIONS(5041), - [anon_sym_BSLASHVolcite] = ACTIONS(5041), - [anon_sym_BSLASHpvolcite] = ACTIONS(5041), - [anon_sym_BSLASHPvolcite] = ACTIONS(5041), - [anon_sym_BSLASHfvolcite] = ACTIONS(5041), - [anon_sym_BSLASHftvolcite] = ACTIONS(5041), - [anon_sym_BSLASHsvolcite] = ACTIONS(5041), - [anon_sym_BSLASHSvolcite] = ACTIONS(5041), - [anon_sym_BSLASHtvolcite] = ACTIONS(5041), - [anon_sym_BSLASHTvolcite] = ACTIONS(5041), - [anon_sym_BSLASHavolcite] = ACTIONS(5041), - [anon_sym_BSLASHAvolcite] = ACTIONS(5041), - [anon_sym_BSLASHnotecite] = ACTIONS(5041), - [anon_sym_BSLASHNotecite] = ACTIONS(5041), - [anon_sym_BSLASHpnotecite] = ACTIONS(5041), - [anon_sym_BSLASHPnotecite] = ACTIONS(5041), - [anon_sym_BSLASHfnotecite] = ACTIONS(5041), - [anon_sym_BSLASHlabel] = ACTIONS(5041), - [anon_sym_BSLASHref] = ACTIONS(5041), - [anon_sym_BSLASHeqref] = ACTIONS(5041), - [anon_sym_BSLASHvref] = ACTIONS(5041), - [anon_sym_BSLASHVref] = ACTIONS(5041), - [anon_sym_BSLASHautoref] = ACTIONS(5041), - [anon_sym_BSLASHpageref] = ACTIONS(5041), - [anon_sym_BSLASHcref] = ACTIONS(5041), - [anon_sym_BSLASHCref] = ACTIONS(5041), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnameCref] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), - [anon_sym_BSLASHlabelcref] = ACTIONS(5041), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange] = ACTIONS(5041), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHCrefrange] = ACTIONS(5041), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), - [anon_sym_BSLASHnewlabel] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand] = ACTIONS(5041), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), - [anon_sym_BSLASHdef] = ACTIONS(5041), - [anon_sym_BSLASHlet] = ACTIONS(5041), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), - [anon_sym_BSLASHgls] = ACTIONS(5041), - [anon_sym_BSLASHGls] = ACTIONS(5041), - [anon_sym_BSLASHGLS] = ACTIONS(5041), - [anon_sym_BSLASHglspl] = ACTIONS(5041), - [anon_sym_BSLASHGlspl] = ACTIONS(5041), - [anon_sym_BSLASHGLSpl] = ACTIONS(5041), - [anon_sym_BSLASHglsdisp] = ACTIONS(5041), - [anon_sym_BSLASHglslink] = ACTIONS(5041), - [anon_sym_BSLASHglstext] = ACTIONS(5041), - [anon_sym_BSLASHGlstext] = ACTIONS(5041), - [anon_sym_BSLASHGLStext] = ACTIONS(5041), - [anon_sym_BSLASHglsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), - [anon_sym_BSLASHglsplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSplural] = ACTIONS(5041), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), - [anon_sym_BSLASHglsname] = ACTIONS(5041), - [anon_sym_BSLASHGlsname] = ACTIONS(5041), - [anon_sym_BSLASHGLSname] = ACTIONS(5041), - [anon_sym_BSLASHglssymbol] = ACTIONS(5041), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), - [anon_sym_BSLASHglsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), - [anon_sym_BSLASHglsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), - [anon_sym_BSLASHglsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), - [anon_sym_BSLASHglsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), - [anon_sym_BSLASHglsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), - [anon_sym_BSLASHnewacronym] = ACTIONS(5041), - [anon_sym_BSLASHacrshort] = ACTIONS(5041), - [anon_sym_BSLASHAcrshort] = ACTIONS(5041), - [anon_sym_BSLASHACRshort] = ACTIONS(5041), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), - [anon_sym_BSLASHacrlong] = ACTIONS(5041), - [anon_sym_BSLASHAcrlong] = ACTIONS(5041), - [anon_sym_BSLASHACRlong] = ACTIONS(5041), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), - [anon_sym_BSLASHacrfull] = ACTIONS(5041), - [anon_sym_BSLASHAcrfull] = ACTIONS(5041), - [anon_sym_BSLASHACRfull] = ACTIONS(5041), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), - [anon_sym_BSLASHacs] = ACTIONS(5041), - [anon_sym_BSLASHAcs] = ACTIONS(5041), - [anon_sym_BSLASHacsp] = ACTIONS(5041), - [anon_sym_BSLASHAcsp] = ACTIONS(5041), - [anon_sym_BSLASHacl] = ACTIONS(5041), - [anon_sym_BSLASHAcl] = ACTIONS(5041), - [anon_sym_BSLASHaclp] = ACTIONS(5041), - [anon_sym_BSLASHAclp] = ACTIONS(5041), - [anon_sym_BSLASHacf] = ACTIONS(5041), - [anon_sym_BSLASHAcf] = ACTIONS(5041), - [anon_sym_BSLASHacfp] = ACTIONS(5041), - [anon_sym_BSLASHAcfp] = ACTIONS(5041), - [anon_sym_BSLASHac] = ACTIONS(5041), - [anon_sym_BSLASHAc] = ACTIONS(5041), - [anon_sym_BSLASHacp] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), - [anon_sym_BSLASHcolor] = ACTIONS(5041), - [anon_sym_BSLASHcolorbox] = ACTIONS(5041), - [anon_sym_BSLASHtextcolor] = ACTIONS(5041), - [anon_sym_BSLASHpagecolor] = ACTIONS(5041), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + [anon_sym_BSLASHiffalse] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_RBRACK] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5027), + [sym_word] = ACTIONS(5029), + [sym_placeholder] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_CARET] = ACTIONS(5029), + [anon_sym__] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_COLON] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), + [anon_sym_DOLLAR] = ACTIONS(5029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), + [anon_sym_BSLASHbegin] = ACTIONS(5029), + [anon_sym_BSLASHusepackage] = ACTIONS(5029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), + [anon_sym_BSLASHinclude] = ACTIONS(5029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), + [anon_sym_BSLASHinput] = ACTIONS(5029), + [anon_sym_BSLASHsubfile] = ACTIONS(5029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), + [anon_sym_BSLASHbibliography] = ACTIONS(5029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), + [anon_sym_BSLASHincludesvg] = ACTIONS(5029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), + [anon_sym_BSLASHimport] = ACTIONS(5029), + [anon_sym_BSLASHsubimport] = ACTIONS(5029), + [anon_sym_BSLASHinputfrom] = ACTIONS(5029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), + [anon_sym_BSLASHincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHcaption] = ACTIONS(5029), + [anon_sym_BSLASHcite] = ACTIONS(5029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCite] = ACTIONS(5029), + [anon_sym_BSLASHnocite] = ACTIONS(5029), + [anon_sym_BSLASHcitet] = ACTIONS(5029), + [anon_sym_BSLASHcitep] = ACTIONS(5029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteauthor] = ACTIONS(5029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitetitle] = ACTIONS(5029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteyear] = ACTIONS(5029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitedate] = ACTIONS(5029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteurl] = ACTIONS(5029), + [anon_sym_BSLASHfullcite] = ACTIONS(5029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), + [anon_sym_BSLASHcitealt] = ACTIONS(5029), + [anon_sym_BSLASHcitealp] = ACTIONS(5029), + [anon_sym_BSLASHcitetext] = ACTIONS(5029), + [anon_sym_BSLASHparencite] = ACTIONS(5029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHParencite] = ACTIONS(5029), + [anon_sym_BSLASHfootcite] = ACTIONS(5029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), + [anon_sym_BSLASHtextcite] = ACTIONS(5029), + [anon_sym_BSLASHTextcite] = ACTIONS(5029), + [anon_sym_BSLASHsmartcite] = ACTIONS(5029), + [anon_sym_BSLASHSmartcite] = ACTIONS(5029), + [anon_sym_BSLASHsupercite] = ACTIONS(5029), + [anon_sym_BSLASHautocite] = ACTIONS(5029), + [anon_sym_BSLASHAutocite] = ACTIONS(5029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHvolcite] = ACTIONS(5029), + [anon_sym_BSLASHVolcite] = ACTIONS(5029), + [anon_sym_BSLASHpvolcite] = ACTIONS(5029), + [anon_sym_BSLASHPvolcite] = ACTIONS(5029), + [anon_sym_BSLASHfvolcite] = ACTIONS(5029), + [anon_sym_BSLASHftvolcite] = ACTIONS(5029), + [anon_sym_BSLASHsvolcite] = ACTIONS(5029), + [anon_sym_BSLASHSvolcite] = ACTIONS(5029), + [anon_sym_BSLASHtvolcite] = ACTIONS(5029), + [anon_sym_BSLASHTvolcite] = ACTIONS(5029), + [anon_sym_BSLASHavolcite] = ACTIONS(5029), + [anon_sym_BSLASHAvolcite] = ACTIONS(5029), + [anon_sym_BSLASHnotecite] = ACTIONS(5029), + [anon_sym_BSLASHNotecite] = ACTIONS(5029), + [anon_sym_BSLASHpnotecite] = ACTIONS(5029), + [anon_sym_BSLASHPnotecite] = ACTIONS(5029), + [anon_sym_BSLASHfnotecite] = ACTIONS(5029), + [anon_sym_BSLASHlabel] = ACTIONS(5029), + [anon_sym_BSLASHref] = ACTIONS(5029), + [anon_sym_BSLASHeqref] = ACTIONS(5029), + [anon_sym_BSLASHvref] = ACTIONS(5029), + [anon_sym_BSLASHVref] = ACTIONS(5029), + [anon_sym_BSLASHautoref] = ACTIONS(5029), + [anon_sym_BSLASHpageref] = ACTIONS(5029), + [anon_sym_BSLASHcref] = ACTIONS(5029), + [anon_sym_BSLASHCref] = ACTIONS(5029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnameCref] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHlabelcref] = ACTIONS(5029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCrefrange] = ACTIONS(5029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnewlabel] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), + [anon_sym_BSLASHdef] = ACTIONS(5029), + [anon_sym_BSLASHlet] = ACTIONS(5029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), + [anon_sym_BSLASHgls] = ACTIONS(5029), + [anon_sym_BSLASHGls] = ACTIONS(5029), + [anon_sym_BSLASHGLS] = ACTIONS(5029), + [anon_sym_BSLASHglspl] = ACTIONS(5029), + [anon_sym_BSLASHGlspl] = ACTIONS(5029), + [anon_sym_BSLASHGLSpl] = ACTIONS(5029), + [anon_sym_BSLASHglsdisp] = ACTIONS(5029), + [anon_sym_BSLASHglslink] = ACTIONS(5029), + [anon_sym_BSLASHglstext] = ACTIONS(5029), + [anon_sym_BSLASHGlstext] = ACTIONS(5029), + [anon_sym_BSLASHGLStext] = ACTIONS(5029), + [anon_sym_BSLASHglsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), + [anon_sym_BSLASHglsplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSplural] = ACTIONS(5029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHglsname] = ACTIONS(5029), + [anon_sym_BSLASHGlsname] = ACTIONS(5029), + [anon_sym_BSLASHGLSname] = ACTIONS(5029), + [anon_sym_BSLASHglssymbol] = ACTIONS(5029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), + [anon_sym_BSLASHglsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), + [anon_sym_BSLASHglsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), + [anon_sym_BSLASHglsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), + [anon_sym_BSLASHglsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), + [anon_sym_BSLASHglsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), + [anon_sym_BSLASHnewacronym] = ACTIONS(5029), + [anon_sym_BSLASHacrshort] = ACTIONS(5029), + [anon_sym_BSLASHAcrshort] = ACTIONS(5029), + [anon_sym_BSLASHACRshort] = ACTIONS(5029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), + [anon_sym_BSLASHacrlong] = ACTIONS(5029), + [anon_sym_BSLASHAcrlong] = ACTIONS(5029), + [anon_sym_BSLASHACRlong] = ACTIONS(5029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), + [anon_sym_BSLASHacrfull] = ACTIONS(5029), + [anon_sym_BSLASHAcrfull] = ACTIONS(5029), + [anon_sym_BSLASHACRfull] = ACTIONS(5029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), + [anon_sym_BSLASHacs] = ACTIONS(5029), + [anon_sym_BSLASHAcs] = ACTIONS(5029), + [anon_sym_BSLASHacsp] = ACTIONS(5029), + [anon_sym_BSLASHAcsp] = ACTIONS(5029), + [anon_sym_BSLASHacl] = ACTIONS(5029), + [anon_sym_BSLASHAcl] = ACTIONS(5029), + [anon_sym_BSLASHaclp] = ACTIONS(5029), + [anon_sym_BSLASHAclp] = ACTIONS(5029), + [anon_sym_BSLASHacf] = ACTIONS(5029), + [anon_sym_BSLASHAcf] = ACTIONS(5029), + [anon_sym_BSLASHacfp] = ACTIONS(5029), + [anon_sym_BSLASHAcfp] = ACTIONS(5029), + [anon_sym_BSLASHac] = ACTIONS(5029), + [anon_sym_BSLASHAc] = ACTIONS(5029), + [anon_sym_BSLASHacp] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), + [anon_sym_BSLASHcolor] = ACTIONS(5029), + [anon_sym_BSLASHcolorbox] = ACTIONS(5029), + [anon_sym_BSLASHtextcolor] = ACTIONS(5029), + [anon_sym_BSLASHpagecolor] = ACTIONS(5029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), + [anon_sym_BSLASHtext] = ACTIONS(5029), + [anon_sym_BSLASHintertext] = ACTIONS(5029), + [anon_sym_shortintertext] = ACTIONS(5029), }, - [1408] = { - [sym_command_name] = ACTIONS(5217), + [1351] = { + [sym_command_name] = ACTIONS(5025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_LPAREN] = ACTIONS(5215), - [anon_sym_RPAREN] = ACTIONS(5215), - [anon_sym_LBRACK] = ACTIONS(5215), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_LBRACE] = ACTIONS(5215), - [anon_sym_RBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), - [anon_sym_DOLLAR] = ACTIONS(5217), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [anon_sym_BSLASHiffalse] = ACTIONS(5025), + [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5023), + [anon_sym_LBRACK] = ACTIONS(5023), + [anon_sym_RBRACK] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5023), + [anon_sym_LBRACE] = ACTIONS(5023), + [sym_word] = ACTIONS(5025), + [sym_placeholder] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5025), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_SLASH] = ACTIONS(5025), + [anon_sym_CARET] = ACTIONS(5025), + [anon_sym__] = ACTIONS(5025), + [anon_sym_LT] = ACTIONS(5025), + [anon_sym_GT] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5025), + [anon_sym_PIPE] = ACTIONS(5025), + [anon_sym_COLON] = ACTIONS(5025), + [anon_sym_SQUOTE] = ACTIONS(5025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(5025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), + [anon_sym_BSLASHbegin] = ACTIONS(5025), + [anon_sym_BSLASHusepackage] = ACTIONS(5025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), + [anon_sym_BSLASHinclude] = ACTIONS(5025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), + [anon_sym_BSLASHinput] = ACTIONS(5025), + [anon_sym_BSLASHsubfile] = ACTIONS(5025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), + [anon_sym_BSLASHbibliography] = ACTIONS(5025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), + [anon_sym_BSLASHincludesvg] = ACTIONS(5025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), + [anon_sym_BSLASHimport] = ACTIONS(5025), + [anon_sym_BSLASHsubimport] = ACTIONS(5025), + [anon_sym_BSLASHinputfrom] = ACTIONS(5025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), + [anon_sym_BSLASHincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHcaption] = ACTIONS(5025), + [anon_sym_BSLASHcite] = ACTIONS(5025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCite] = ACTIONS(5025), + [anon_sym_BSLASHnocite] = ACTIONS(5025), + [anon_sym_BSLASHcitet] = ACTIONS(5025), + [anon_sym_BSLASHcitep] = ACTIONS(5025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteauthor] = ACTIONS(5025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitetitle] = ACTIONS(5025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteyear] = ACTIONS(5025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitedate] = ACTIONS(5025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteurl] = ACTIONS(5025), + [anon_sym_BSLASHfullcite] = ACTIONS(5025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), + [anon_sym_BSLASHcitealt] = ACTIONS(5025), + [anon_sym_BSLASHcitealp] = ACTIONS(5025), + [anon_sym_BSLASHcitetext] = ACTIONS(5025), + [anon_sym_BSLASHparencite] = ACTIONS(5025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHParencite] = ACTIONS(5025), + [anon_sym_BSLASHfootcite] = ACTIONS(5025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), + [anon_sym_BSLASHtextcite] = ACTIONS(5025), + [anon_sym_BSLASHTextcite] = ACTIONS(5025), + [anon_sym_BSLASHsmartcite] = ACTIONS(5025), + [anon_sym_BSLASHSmartcite] = ACTIONS(5025), + [anon_sym_BSLASHsupercite] = ACTIONS(5025), + [anon_sym_BSLASHautocite] = ACTIONS(5025), + [anon_sym_BSLASHAutocite] = ACTIONS(5025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHvolcite] = ACTIONS(5025), + [anon_sym_BSLASHVolcite] = ACTIONS(5025), + [anon_sym_BSLASHpvolcite] = ACTIONS(5025), + [anon_sym_BSLASHPvolcite] = ACTIONS(5025), + [anon_sym_BSLASHfvolcite] = ACTIONS(5025), + [anon_sym_BSLASHftvolcite] = ACTIONS(5025), + [anon_sym_BSLASHsvolcite] = ACTIONS(5025), + [anon_sym_BSLASHSvolcite] = ACTIONS(5025), + [anon_sym_BSLASHtvolcite] = ACTIONS(5025), + [anon_sym_BSLASHTvolcite] = ACTIONS(5025), + [anon_sym_BSLASHavolcite] = ACTIONS(5025), + [anon_sym_BSLASHAvolcite] = ACTIONS(5025), + [anon_sym_BSLASHnotecite] = ACTIONS(5025), + [anon_sym_BSLASHNotecite] = ACTIONS(5025), + [anon_sym_BSLASHpnotecite] = ACTIONS(5025), + [anon_sym_BSLASHPnotecite] = ACTIONS(5025), + [anon_sym_BSLASHfnotecite] = ACTIONS(5025), + [anon_sym_BSLASHlabel] = ACTIONS(5025), + [anon_sym_BSLASHref] = ACTIONS(5025), + [anon_sym_BSLASHeqref] = ACTIONS(5025), + [anon_sym_BSLASHvref] = ACTIONS(5025), + [anon_sym_BSLASHVref] = ACTIONS(5025), + [anon_sym_BSLASHautoref] = ACTIONS(5025), + [anon_sym_BSLASHpageref] = ACTIONS(5025), + [anon_sym_BSLASHcref] = ACTIONS(5025), + [anon_sym_BSLASHCref] = ACTIONS(5025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnameCref] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHlabelcref] = ACTIONS(5025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCrefrange] = ACTIONS(5025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnewlabel] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), + [anon_sym_BSLASHdef] = ACTIONS(5025), + [anon_sym_BSLASHlet] = ACTIONS(5025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), + [anon_sym_BSLASHgls] = ACTIONS(5025), + [anon_sym_BSLASHGls] = ACTIONS(5025), + [anon_sym_BSLASHGLS] = ACTIONS(5025), + [anon_sym_BSLASHglspl] = ACTIONS(5025), + [anon_sym_BSLASHGlspl] = ACTIONS(5025), + [anon_sym_BSLASHGLSpl] = ACTIONS(5025), + [anon_sym_BSLASHglsdisp] = ACTIONS(5025), + [anon_sym_BSLASHglslink] = ACTIONS(5025), + [anon_sym_BSLASHglstext] = ACTIONS(5025), + [anon_sym_BSLASHGlstext] = ACTIONS(5025), + [anon_sym_BSLASHGLStext] = ACTIONS(5025), + [anon_sym_BSLASHglsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), + [anon_sym_BSLASHglsplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSplural] = ACTIONS(5025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHglsname] = ACTIONS(5025), + [anon_sym_BSLASHGlsname] = ACTIONS(5025), + [anon_sym_BSLASHGLSname] = ACTIONS(5025), + [anon_sym_BSLASHglssymbol] = ACTIONS(5025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), + [anon_sym_BSLASHglsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), + [anon_sym_BSLASHglsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), + [anon_sym_BSLASHglsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), + [anon_sym_BSLASHglsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), + [anon_sym_BSLASHglsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), + [anon_sym_BSLASHnewacronym] = ACTIONS(5025), + [anon_sym_BSLASHacrshort] = ACTIONS(5025), + [anon_sym_BSLASHAcrshort] = ACTIONS(5025), + [anon_sym_BSLASHACRshort] = ACTIONS(5025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), + [anon_sym_BSLASHacrlong] = ACTIONS(5025), + [anon_sym_BSLASHAcrlong] = ACTIONS(5025), + [anon_sym_BSLASHACRlong] = ACTIONS(5025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), + [anon_sym_BSLASHacrfull] = ACTIONS(5025), + [anon_sym_BSLASHAcrfull] = ACTIONS(5025), + [anon_sym_BSLASHACRfull] = ACTIONS(5025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), + [anon_sym_BSLASHacs] = ACTIONS(5025), + [anon_sym_BSLASHAcs] = ACTIONS(5025), + [anon_sym_BSLASHacsp] = ACTIONS(5025), + [anon_sym_BSLASHAcsp] = ACTIONS(5025), + [anon_sym_BSLASHacl] = ACTIONS(5025), + [anon_sym_BSLASHAcl] = ACTIONS(5025), + [anon_sym_BSLASHaclp] = ACTIONS(5025), + [anon_sym_BSLASHAclp] = ACTIONS(5025), + [anon_sym_BSLASHacf] = ACTIONS(5025), + [anon_sym_BSLASHAcf] = ACTIONS(5025), + [anon_sym_BSLASHacfp] = ACTIONS(5025), + [anon_sym_BSLASHAcfp] = ACTIONS(5025), + [anon_sym_BSLASHac] = ACTIONS(5025), + [anon_sym_BSLASHAc] = ACTIONS(5025), + [anon_sym_BSLASHacp] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), + [anon_sym_BSLASHcolor] = ACTIONS(5025), + [anon_sym_BSLASHcolorbox] = ACTIONS(5025), + [anon_sym_BSLASHtextcolor] = ACTIONS(5025), + [anon_sym_BSLASHpagecolor] = ACTIONS(5025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [anon_sym_BSLASHtext] = ACTIONS(5025), + [anon_sym_BSLASHintertext] = ACTIONS(5025), + [anon_sym_shortintertext] = ACTIONS(5025), }, - [1409] = { - [sym_command_name] = ACTIONS(5221), + [1352] = { + [sym_command_name] = ACTIONS(5021), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_LPAREN] = ACTIONS(5219), - [anon_sym_RPAREN] = ACTIONS(5219), - [anon_sym_LBRACK] = ACTIONS(5219), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_LBRACE] = ACTIONS(5219), - [anon_sym_RBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), - [anon_sym_DOLLAR] = ACTIONS(5221), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), - }, - [1410] = { - [sym_command_name] = ACTIONS(5231), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5231), - [anon_sym_LPAREN] = ACTIONS(5229), - [anon_sym_RPAREN] = ACTIONS(5229), - [anon_sym_LBRACK] = ACTIONS(5229), - [anon_sym_RBRACK] = ACTIONS(5229), - [anon_sym_COMMA] = ACTIONS(5229), - [anon_sym_LBRACE] = ACTIONS(5229), - [anon_sym_RBRACE] = ACTIONS(5229), - [sym_word] = ACTIONS(5231), - [sym_placeholder] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_SLASH] = ACTIONS(5231), - [anon_sym_CARET] = ACTIONS(5231), - [anon_sym__] = ACTIONS(5231), - [anon_sym_LT] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5231), - [anon_sym_BANG] = ACTIONS(5231), - [anon_sym_PIPE] = ACTIONS(5231), - [anon_sym_COLON] = ACTIONS(5231), - [anon_sym_SQUOTE] = ACTIONS(5231), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5229), - [anon_sym_DOLLAR] = ACTIONS(5231), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5229), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5229), - [anon_sym_BSLASHusepackage] = ACTIONS(5231), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), - [anon_sym_BSLASHinclude] = ACTIONS(5231), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), - [anon_sym_BSLASHinput] = ACTIONS(5231), - [anon_sym_BSLASHsubfile] = ACTIONS(5231), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), - [anon_sym_BSLASHbibliography] = ACTIONS(5231), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), - [anon_sym_BSLASHincludesvg] = ACTIONS(5231), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), - [anon_sym_BSLASHimport] = ACTIONS(5231), - [anon_sym_BSLASHsubimport] = ACTIONS(5231), - [anon_sym_BSLASHinputfrom] = ACTIONS(5231), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), - [anon_sym_BSLASHincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHcaption] = ACTIONS(5231), - [anon_sym_BSLASHcite] = ACTIONS(5231), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCite] = ACTIONS(5231), - [anon_sym_BSLASHnocite] = ACTIONS(5231), - [anon_sym_BSLASHcitet] = ACTIONS(5231), - [anon_sym_BSLASHcitep] = ACTIONS(5231), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteyear] = ACTIONS(5231), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitedate] = ACTIONS(5231), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteurl] = ACTIONS(5231), - [anon_sym_BSLASHfullcite] = ACTIONS(5231), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), - [anon_sym_BSLASHcitealt] = ACTIONS(5231), - [anon_sym_BSLASHcitealp] = ACTIONS(5231), - [anon_sym_BSLASHcitetext] = ACTIONS(5231), - [anon_sym_BSLASHparencite] = ACTIONS(5231), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHParencite] = ACTIONS(5231), - [anon_sym_BSLASHfootcite] = ACTIONS(5231), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), - [anon_sym_BSLASHtextcite] = ACTIONS(5231), - [anon_sym_BSLASHTextcite] = ACTIONS(5231), - [anon_sym_BSLASHsmartcite] = ACTIONS(5231), - [anon_sym_BSLASHSmartcite] = ACTIONS(5231), - [anon_sym_BSLASHsupercite] = ACTIONS(5231), - [anon_sym_BSLASHautocite] = ACTIONS(5231), - [anon_sym_BSLASHAutocite] = ACTIONS(5231), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHvolcite] = ACTIONS(5231), - [anon_sym_BSLASHVolcite] = ACTIONS(5231), - [anon_sym_BSLASHpvolcite] = ACTIONS(5231), - [anon_sym_BSLASHPvolcite] = ACTIONS(5231), - [anon_sym_BSLASHfvolcite] = ACTIONS(5231), - [anon_sym_BSLASHftvolcite] = ACTIONS(5231), - [anon_sym_BSLASHsvolcite] = ACTIONS(5231), - [anon_sym_BSLASHSvolcite] = ACTIONS(5231), - [anon_sym_BSLASHtvolcite] = ACTIONS(5231), - [anon_sym_BSLASHTvolcite] = ACTIONS(5231), - [anon_sym_BSLASHavolcite] = ACTIONS(5231), - [anon_sym_BSLASHAvolcite] = ACTIONS(5231), - [anon_sym_BSLASHnotecite] = ACTIONS(5231), - [anon_sym_BSLASHNotecite] = ACTIONS(5231), - [anon_sym_BSLASHpnotecite] = ACTIONS(5231), - [anon_sym_BSLASHPnotecite] = ACTIONS(5231), - [anon_sym_BSLASHfnotecite] = ACTIONS(5231), - [anon_sym_BSLASHlabel] = ACTIONS(5231), - [anon_sym_BSLASHref] = ACTIONS(5231), - [anon_sym_BSLASHeqref] = ACTIONS(5231), - [anon_sym_BSLASHvref] = ACTIONS(5231), - [anon_sym_BSLASHVref] = ACTIONS(5231), - [anon_sym_BSLASHautoref] = ACTIONS(5231), - [anon_sym_BSLASHpageref] = ACTIONS(5231), - [anon_sym_BSLASHcref] = ACTIONS(5231), - [anon_sym_BSLASHCref] = ACTIONS(5231), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnameCref] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHlabelcref] = ACTIONS(5231), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnewlabel] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), - [anon_sym_BSLASHdef] = ACTIONS(5231), - [anon_sym_BSLASHlet] = ACTIONS(5231), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), - [anon_sym_BSLASHgls] = ACTIONS(5231), - [anon_sym_BSLASHGls] = ACTIONS(5231), - [anon_sym_BSLASHGLS] = ACTIONS(5231), - [anon_sym_BSLASHglspl] = ACTIONS(5231), - [anon_sym_BSLASHGlspl] = ACTIONS(5231), - [anon_sym_BSLASHGLSpl] = ACTIONS(5231), - [anon_sym_BSLASHglsdisp] = ACTIONS(5231), - [anon_sym_BSLASHglslink] = ACTIONS(5231), - [anon_sym_BSLASHglstext] = ACTIONS(5231), - [anon_sym_BSLASHGlstext] = ACTIONS(5231), - [anon_sym_BSLASHGLStext] = ACTIONS(5231), - [anon_sym_BSLASHglsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), - [anon_sym_BSLASHglsplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSplural] = ACTIONS(5231), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHglsname] = ACTIONS(5231), - [anon_sym_BSLASHGlsname] = ACTIONS(5231), - [anon_sym_BSLASHGLSname] = ACTIONS(5231), - [anon_sym_BSLASHglssymbol] = ACTIONS(5231), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), - [anon_sym_BSLASHglsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), - [anon_sym_BSLASHglsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), - [anon_sym_BSLASHglsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), - [anon_sym_BSLASHglsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), - [anon_sym_BSLASHglsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), - [anon_sym_BSLASHnewacronym] = ACTIONS(5231), - [anon_sym_BSLASHacrshort] = ACTIONS(5231), - [anon_sym_BSLASHAcrshort] = ACTIONS(5231), - [anon_sym_BSLASHACRshort] = ACTIONS(5231), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), - [anon_sym_BSLASHacrlong] = ACTIONS(5231), - [anon_sym_BSLASHAcrlong] = ACTIONS(5231), - [anon_sym_BSLASHACRlong] = ACTIONS(5231), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), - [anon_sym_BSLASHacrfull] = ACTIONS(5231), - [anon_sym_BSLASHAcrfull] = ACTIONS(5231), - [anon_sym_BSLASHACRfull] = ACTIONS(5231), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), - [anon_sym_BSLASHacs] = ACTIONS(5231), - [anon_sym_BSLASHAcs] = ACTIONS(5231), - [anon_sym_BSLASHacsp] = ACTIONS(5231), - [anon_sym_BSLASHAcsp] = ACTIONS(5231), - [anon_sym_BSLASHacl] = ACTIONS(5231), - [anon_sym_BSLASHAcl] = ACTIONS(5231), - [anon_sym_BSLASHaclp] = ACTIONS(5231), - [anon_sym_BSLASHAclp] = ACTIONS(5231), - [anon_sym_BSLASHacf] = ACTIONS(5231), - [anon_sym_BSLASHAcf] = ACTIONS(5231), - [anon_sym_BSLASHacfp] = ACTIONS(5231), - [anon_sym_BSLASHAcfp] = ACTIONS(5231), - [anon_sym_BSLASHac] = ACTIONS(5231), - [anon_sym_BSLASHAc] = ACTIONS(5231), - [anon_sym_BSLASHacp] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), - [anon_sym_BSLASHcolor] = ACTIONS(5231), - [anon_sym_BSLASHcolorbox] = ACTIONS(5231), - [anon_sym_BSLASHtextcolor] = ACTIONS(5231), - [anon_sym_BSLASHpagecolor] = ACTIONS(5231), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), - }, - [1411] = { - [sym_command_name] = ACTIONS(5235), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5235), - [anon_sym_LPAREN] = ACTIONS(5233), - [anon_sym_RPAREN] = ACTIONS(5233), - [anon_sym_LBRACK] = ACTIONS(5233), - [anon_sym_RBRACK] = ACTIONS(5233), - [anon_sym_COMMA] = ACTIONS(5233), - [anon_sym_LBRACE] = ACTIONS(5233), - [anon_sym_RBRACE] = ACTIONS(5233), - [sym_word] = ACTIONS(5235), - [sym_placeholder] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_CARET] = ACTIONS(5235), - [anon_sym__] = ACTIONS(5235), - [anon_sym_LT] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5235), - [anon_sym_BANG] = ACTIONS(5235), - [anon_sym_PIPE] = ACTIONS(5235), - [anon_sym_COLON] = ACTIONS(5235), - [anon_sym_SQUOTE] = ACTIONS(5235), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5233), - [anon_sym_DOLLAR] = ACTIONS(5235), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5233), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5233), - [anon_sym_BSLASHusepackage] = ACTIONS(5235), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), - [anon_sym_BSLASHinclude] = ACTIONS(5235), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), - [anon_sym_BSLASHinput] = ACTIONS(5235), - [anon_sym_BSLASHsubfile] = ACTIONS(5235), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), - [anon_sym_BSLASHbibliography] = ACTIONS(5235), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), - [anon_sym_BSLASHincludesvg] = ACTIONS(5235), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), - [anon_sym_BSLASHimport] = ACTIONS(5235), - [anon_sym_BSLASHsubimport] = ACTIONS(5235), - [anon_sym_BSLASHinputfrom] = ACTIONS(5235), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), - [anon_sym_BSLASHincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHcaption] = ACTIONS(5235), - [anon_sym_BSLASHcite] = ACTIONS(5235), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCite] = ACTIONS(5235), - [anon_sym_BSLASHnocite] = ACTIONS(5235), - [anon_sym_BSLASHcitet] = ACTIONS(5235), - [anon_sym_BSLASHcitep] = ACTIONS(5235), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteyear] = ACTIONS(5235), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitedate] = ACTIONS(5235), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteurl] = ACTIONS(5235), - [anon_sym_BSLASHfullcite] = ACTIONS(5235), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), - [anon_sym_BSLASHcitealt] = ACTIONS(5235), - [anon_sym_BSLASHcitealp] = ACTIONS(5235), - [anon_sym_BSLASHcitetext] = ACTIONS(5235), - [anon_sym_BSLASHparencite] = ACTIONS(5235), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHParencite] = ACTIONS(5235), - [anon_sym_BSLASHfootcite] = ACTIONS(5235), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), - [anon_sym_BSLASHtextcite] = ACTIONS(5235), - [anon_sym_BSLASHTextcite] = ACTIONS(5235), - [anon_sym_BSLASHsmartcite] = ACTIONS(5235), - [anon_sym_BSLASHSmartcite] = ACTIONS(5235), - [anon_sym_BSLASHsupercite] = ACTIONS(5235), - [anon_sym_BSLASHautocite] = ACTIONS(5235), - [anon_sym_BSLASHAutocite] = ACTIONS(5235), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHvolcite] = ACTIONS(5235), - [anon_sym_BSLASHVolcite] = ACTIONS(5235), - [anon_sym_BSLASHpvolcite] = ACTIONS(5235), - [anon_sym_BSLASHPvolcite] = ACTIONS(5235), - [anon_sym_BSLASHfvolcite] = ACTIONS(5235), - [anon_sym_BSLASHftvolcite] = ACTIONS(5235), - [anon_sym_BSLASHsvolcite] = ACTIONS(5235), - [anon_sym_BSLASHSvolcite] = ACTIONS(5235), - [anon_sym_BSLASHtvolcite] = ACTIONS(5235), - [anon_sym_BSLASHTvolcite] = ACTIONS(5235), - [anon_sym_BSLASHavolcite] = ACTIONS(5235), - [anon_sym_BSLASHAvolcite] = ACTIONS(5235), - [anon_sym_BSLASHnotecite] = ACTIONS(5235), - [anon_sym_BSLASHNotecite] = ACTIONS(5235), - [anon_sym_BSLASHpnotecite] = ACTIONS(5235), - [anon_sym_BSLASHPnotecite] = ACTIONS(5235), - [anon_sym_BSLASHfnotecite] = ACTIONS(5235), - [anon_sym_BSLASHlabel] = ACTIONS(5235), - [anon_sym_BSLASHref] = ACTIONS(5235), - [anon_sym_BSLASHeqref] = ACTIONS(5235), - [anon_sym_BSLASHvref] = ACTIONS(5235), - [anon_sym_BSLASHVref] = ACTIONS(5235), - [anon_sym_BSLASHautoref] = ACTIONS(5235), - [anon_sym_BSLASHpageref] = ACTIONS(5235), - [anon_sym_BSLASHcref] = ACTIONS(5235), - [anon_sym_BSLASHCref] = ACTIONS(5235), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnameCref] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHlabelcref] = ACTIONS(5235), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnewlabel] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), - [anon_sym_BSLASHdef] = ACTIONS(5235), - [anon_sym_BSLASHlet] = ACTIONS(5235), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), - [anon_sym_BSLASHgls] = ACTIONS(5235), - [anon_sym_BSLASHGls] = ACTIONS(5235), - [anon_sym_BSLASHGLS] = ACTIONS(5235), - [anon_sym_BSLASHglspl] = ACTIONS(5235), - [anon_sym_BSLASHGlspl] = ACTIONS(5235), - [anon_sym_BSLASHGLSpl] = ACTIONS(5235), - [anon_sym_BSLASHglsdisp] = ACTIONS(5235), - [anon_sym_BSLASHglslink] = ACTIONS(5235), - [anon_sym_BSLASHglstext] = ACTIONS(5235), - [anon_sym_BSLASHGlstext] = ACTIONS(5235), - [anon_sym_BSLASHGLStext] = ACTIONS(5235), - [anon_sym_BSLASHglsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), - [anon_sym_BSLASHglsplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSplural] = ACTIONS(5235), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHglsname] = ACTIONS(5235), - [anon_sym_BSLASHGlsname] = ACTIONS(5235), - [anon_sym_BSLASHGLSname] = ACTIONS(5235), - [anon_sym_BSLASHglssymbol] = ACTIONS(5235), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), - [anon_sym_BSLASHglsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), - [anon_sym_BSLASHglsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), - [anon_sym_BSLASHglsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), - [anon_sym_BSLASHglsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), - [anon_sym_BSLASHglsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), - [anon_sym_BSLASHnewacronym] = ACTIONS(5235), - [anon_sym_BSLASHacrshort] = ACTIONS(5235), - [anon_sym_BSLASHAcrshort] = ACTIONS(5235), - [anon_sym_BSLASHACRshort] = ACTIONS(5235), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), - [anon_sym_BSLASHacrlong] = ACTIONS(5235), - [anon_sym_BSLASHAcrlong] = ACTIONS(5235), - [anon_sym_BSLASHACRlong] = ACTIONS(5235), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), - [anon_sym_BSLASHacrfull] = ACTIONS(5235), - [anon_sym_BSLASHAcrfull] = ACTIONS(5235), - [anon_sym_BSLASHACRfull] = ACTIONS(5235), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), - [anon_sym_BSLASHacs] = ACTIONS(5235), - [anon_sym_BSLASHAcs] = ACTIONS(5235), - [anon_sym_BSLASHacsp] = ACTIONS(5235), - [anon_sym_BSLASHAcsp] = ACTIONS(5235), - [anon_sym_BSLASHacl] = ACTIONS(5235), - [anon_sym_BSLASHAcl] = ACTIONS(5235), - [anon_sym_BSLASHaclp] = ACTIONS(5235), - [anon_sym_BSLASHAclp] = ACTIONS(5235), - [anon_sym_BSLASHacf] = ACTIONS(5235), - [anon_sym_BSLASHAcf] = ACTIONS(5235), - [anon_sym_BSLASHacfp] = ACTIONS(5235), - [anon_sym_BSLASHAcfp] = ACTIONS(5235), - [anon_sym_BSLASHac] = ACTIONS(5235), - [anon_sym_BSLASHAc] = ACTIONS(5235), - [anon_sym_BSLASHacp] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), - [anon_sym_BSLASHcolor] = ACTIONS(5235), - [anon_sym_BSLASHcolorbox] = ACTIONS(5235), - [anon_sym_BSLASHtextcolor] = ACTIONS(5235), - [anon_sym_BSLASHpagecolor] = ACTIONS(5235), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), - }, - [1412] = { - [sym_command_name] = ACTIONS(5239), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5239), - [anon_sym_LPAREN] = ACTIONS(5237), - [anon_sym_RPAREN] = ACTIONS(5237), - [anon_sym_LBRACK] = ACTIONS(5237), - [anon_sym_RBRACK] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_LBRACE] = ACTIONS(5237), - [anon_sym_RBRACE] = ACTIONS(5237), - [sym_word] = ACTIONS(5239), - [sym_placeholder] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym__] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_BANG] = ACTIONS(5239), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_COLON] = ACTIONS(5239), - [anon_sym_SQUOTE] = ACTIONS(5239), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5237), - [anon_sym_DOLLAR] = ACTIONS(5239), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5237), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5237), - [anon_sym_BSLASHusepackage] = ACTIONS(5239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), - [anon_sym_BSLASHinclude] = ACTIONS(5239), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), - [anon_sym_BSLASHinput] = ACTIONS(5239), - [anon_sym_BSLASHsubfile] = ACTIONS(5239), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), - [anon_sym_BSLASHbibliography] = ACTIONS(5239), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), - [anon_sym_BSLASHincludesvg] = ACTIONS(5239), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), - [anon_sym_BSLASHimport] = ACTIONS(5239), - [anon_sym_BSLASHsubimport] = ACTIONS(5239), - [anon_sym_BSLASHinputfrom] = ACTIONS(5239), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), - [anon_sym_BSLASHincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHcaption] = ACTIONS(5239), - [anon_sym_BSLASHcite] = ACTIONS(5239), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCite] = ACTIONS(5239), - [anon_sym_BSLASHnocite] = ACTIONS(5239), - [anon_sym_BSLASHcitet] = ACTIONS(5239), - [anon_sym_BSLASHcitep] = ACTIONS(5239), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteyear] = ACTIONS(5239), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitedate] = ACTIONS(5239), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteurl] = ACTIONS(5239), - [anon_sym_BSLASHfullcite] = ACTIONS(5239), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), - [anon_sym_BSLASHcitealt] = ACTIONS(5239), - [anon_sym_BSLASHcitealp] = ACTIONS(5239), - [anon_sym_BSLASHcitetext] = ACTIONS(5239), - [anon_sym_BSLASHparencite] = ACTIONS(5239), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHParencite] = ACTIONS(5239), - [anon_sym_BSLASHfootcite] = ACTIONS(5239), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), - [anon_sym_BSLASHtextcite] = ACTIONS(5239), - [anon_sym_BSLASHTextcite] = ACTIONS(5239), - [anon_sym_BSLASHsmartcite] = ACTIONS(5239), - [anon_sym_BSLASHSmartcite] = ACTIONS(5239), - [anon_sym_BSLASHsupercite] = ACTIONS(5239), - [anon_sym_BSLASHautocite] = ACTIONS(5239), - [anon_sym_BSLASHAutocite] = ACTIONS(5239), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHvolcite] = ACTIONS(5239), - [anon_sym_BSLASHVolcite] = ACTIONS(5239), - [anon_sym_BSLASHpvolcite] = ACTIONS(5239), - [anon_sym_BSLASHPvolcite] = ACTIONS(5239), - [anon_sym_BSLASHfvolcite] = ACTIONS(5239), - [anon_sym_BSLASHftvolcite] = ACTIONS(5239), - [anon_sym_BSLASHsvolcite] = ACTIONS(5239), - [anon_sym_BSLASHSvolcite] = ACTIONS(5239), - [anon_sym_BSLASHtvolcite] = ACTIONS(5239), - [anon_sym_BSLASHTvolcite] = ACTIONS(5239), - [anon_sym_BSLASHavolcite] = ACTIONS(5239), - [anon_sym_BSLASHAvolcite] = ACTIONS(5239), - [anon_sym_BSLASHnotecite] = ACTIONS(5239), - [anon_sym_BSLASHNotecite] = ACTIONS(5239), - [anon_sym_BSLASHpnotecite] = ACTIONS(5239), - [anon_sym_BSLASHPnotecite] = ACTIONS(5239), - [anon_sym_BSLASHfnotecite] = ACTIONS(5239), - [anon_sym_BSLASHlabel] = ACTIONS(5239), - [anon_sym_BSLASHref] = ACTIONS(5239), - [anon_sym_BSLASHeqref] = ACTIONS(5239), - [anon_sym_BSLASHvref] = ACTIONS(5239), - [anon_sym_BSLASHVref] = ACTIONS(5239), - [anon_sym_BSLASHautoref] = ACTIONS(5239), - [anon_sym_BSLASHpageref] = ACTIONS(5239), - [anon_sym_BSLASHcref] = ACTIONS(5239), - [anon_sym_BSLASHCref] = ACTIONS(5239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnameCref] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHlabelcref] = ACTIONS(5239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnewlabel] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), - [anon_sym_BSLASHdef] = ACTIONS(5239), - [anon_sym_BSLASHlet] = ACTIONS(5239), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), - [anon_sym_BSLASHgls] = ACTIONS(5239), - [anon_sym_BSLASHGls] = ACTIONS(5239), - [anon_sym_BSLASHGLS] = ACTIONS(5239), - [anon_sym_BSLASHglspl] = ACTIONS(5239), - [anon_sym_BSLASHGlspl] = ACTIONS(5239), - [anon_sym_BSLASHGLSpl] = ACTIONS(5239), - [anon_sym_BSLASHglsdisp] = ACTIONS(5239), - [anon_sym_BSLASHglslink] = ACTIONS(5239), - [anon_sym_BSLASHglstext] = ACTIONS(5239), - [anon_sym_BSLASHGlstext] = ACTIONS(5239), - [anon_sym_BSLASHGLStext] = ACTIONS(5239), - [anon_sym_BSLASHglsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), - [anon_sym_BSLASHglsplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSplural] = ACTIONS(5239), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHglsname] = ACTIONS(5239), - [anon_sym_BSLASHGlsname] = ACTIONS(5239), - [anon_sym_BSLASHGLSname] = ACTIONS(5239), - [anon_sym_BSLASHglssymbol] = ACTIONS(5239), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), - [anon_sym_BSLASHglsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), - [anon_sym_BSLASHglsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), - [anon_sym_BSLASHglsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), - [anon_sym_BSLASHglsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), - [anon_sym_BSLASHglsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), - [anon_sym_BSLASHnewacronym] = ACTIONS(5239), - [anon_sym_BSLASHacrshort] = ACTIONS(5239), - [anon_sym_BSLASHAcrshort] = ACTIONS(5239), - [anon_sym_BSLASHACRshort] = ACTIONS(5239), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), - [anon_sym_BSLASHacrlong] = ACTIONS(5239), - [anon_sym_BSLASHAcrlong] = ACTIONS(5239), - [anon_sym_BSLASHACRlong] = ACTIONS(5239), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), - [anon_sym_BSLASHacrfull] = ACTIONS(5239), - [anon_sym_BSLASHAcrfull] = ACTIONS(5239), - [anon_sym_BSLASHACRfull] = ACTIONS(5239), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), - [anon_sym_BSLASHacs] = ACTIONS(5239), - [anon_sym_BSLASHAcs] = ACTIONS(5239), - [anon_sym_BSLASHacsp] = ACTIONS(5239), - [anon_sym_BSLASHAcsp] = ACTIONS(5239), - [anon_sym_BSLASHacl] = ACTIONS(5239), - [anon_sym_BSLASHAcl] = ACTIONS(5239), - [anon_sym_BSLASHaclp] = ACTIONS(5239), - [anon_sym_BSLASHAclp] = ACTIONS(5239), - [anon_sym_BSLASHacf] = ACTIONS(5239), - [anon_sym_BSLASHAcf] = ACTIONS(5239), - [anon_sym_BSLASHacfp] = ACTIONS(5239), - [anon_sym_BSLASHAcfp] = ACTIONS(5239), - [anon_sym_BSLASHac] = ACTIONS(5239), - [anon_sym_BSLASHAc] = ACTIONS(5239), - [anon_sym_BSLASHacp] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), - [anon_sym_BSLASHcolor] = ACTIONS(5239), - [anon_sym_BSLASHcolorbox] = ACTIONS(5239), - [anon_sym_BSLASHtextcolor] = ACTIONS(5239), - [anon_sym_BSLASHpagecolor] = ACTIONS(5239), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), - }, - [1413] = { - [sym_command_name] = ACTIONS(5243), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5243), - [anon_sym_LPAREN] = ACTIONS(5241), - [anon_sym_RPAREN] = ACTIONS(5241), - [anon_sym_LBRACK] = ACTIONS(5241), - [anon_sym_RBRACK] = ACTIONS(5241), - [anon_sym_COMMA] = ACTIONS(5241), - [anon_sym_LBRACE] = ACTIONS(5241), - [anon_sym_RBRACE] = ACTIONS(5241), - [sym_word] = ACTIONS(5243), - [sym_placeholder] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_STAR] = ACTIONS(5243), - [anon_sym_SLASH] = ACTIONS(5243), - [anon_sym_CARET] = ACTIONS(5243), - [anon_sym__] = ACTIONS(5243), - [anon_sym_LT] = ACTIONS(5243), - [anon_sym_GT] = ACTIONS(5243), - [anon_sym_BANG] = ACTIONS(5243), - [anon_sym_PIPE] = ACTIONS(5243), - [anon_sym_COLON] = ACTIONS(5243), - [anon_sym_SQUOTE] = ACTIONS(5243), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5241), - [anon_sym_DOLLAR] = ACTIONS(5243), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5241), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5241), - [anon_sym_BSLASHusepackage] = ACTIONS(5243), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5243), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5243), - [anon_sym_BSLASHinclude] = ACTIONS(5243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5243), - [anon_sym_BSLASHinput] = ACTIONS(5243), - [anon_sym_BSLASHsubfile] = ACTIONS(5243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5243), - [anon_sym_BSLASHbibliography] = ACTIONS(5243), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5243), - [anon_sym_BSLASHincludesvg] = ACTIONS(5243), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5243), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5243), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5243), - [anon_sym_BSLASHimport] = ACTIONS(5243), - [anon_sym_BSLASHsubimport] = ACTIONS(5243), - [anon_sym_BSLASHinputfrom] = ACTIONS(5243), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5243), - [anon_sym_BSLASHincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHcaption] = ACTIONS(5243), - [anon_sym_BSLASHcite] = ACTIONS(5243), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCite] = ACTIONS(5243), - [anon_sym_BSLASHnocite] = ACTIONS(5243), - [anon_sym_BSLASHcitet] = ACTIONS(5243), - [anon_sym_BSLASHcitep] = ACTIONS(5243), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteyear] = ACTIONS(5243), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitedate] = ACTIONS(5243), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteurl] = ACTIONS(5243), - [anon_sym_BSLASHfullcite] = ACTIONS(5243), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5243), - [anon_sym_BSLASHcitealt] = ACTIONS(5243), - [anon_sym_BSLASHcitealp] = ACTIONS(5243), - [anon_sym_BSLASHcitetext] = ACTIONS(5243), - [anon_sym_BSLASHparencite] = ACTIONS(5243), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHParencite] = ACTIONS(5243), - [anon_sym_BSLASHfootcite] = ACTIONS(5243), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5243), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5243), - [anon_sym_BSLASHtextcite] = ACTIONS(5243), - [anon_sym_BSLASHTextcite] = ACTIONS(5243), - [anon_sym_BSLASHsmartcite] = ACTIONS(5243), - [anon_sym_BSLASHSmartcite] = ACTIONS(5243), - [anon_sym_BSLASHsupercite] = ACTIONS(5243), - [anon_sym_BSLASHautocite] = ACTIONS(5243), - [anon_sym_BSLASHAutocite] = ACTIONS(5243), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHvolcite] = ACTIONS(5243), - [anon_sym_BSLASHVolcite] = ACTIONS(5243), - [anon_sym_BSLASHpvolcite] = ACTIONS(5243), - [anon_sym_BSLASHPvolcite] = ACTIONS(5243), - [anon_sym_BSLASHfvolcite] = ACTIONS(5243), - [anon_sym_BSLASHftvolcite] = ACTIONS(5243), - [anon_sym_BSLASHsvolcite] = ACTIONS(5243), - [anon_sym_BSLASHSvolcite] = ACTIONS(5243), - [anon_sym_BSLASHtvolcite] = ACTIONS(5243), - [anon_sym_BSLASHTvolcite] = ACTIONS(5243), - [anon_sym_BSLASHavolcite] = ACTIONS(5243), - [anon_sym_BSLASHAvolcite] = ACTIONS(5243), - [anon_sym_BSLASHnotecite] = ACTIONS(5243), - [anon_sym_BSLASHNotecite] = ACTIONS(5243), - [anon_sym_BSLASHpnotecite] = ACTIONS(5243), - [anon_sym_BSLASHPnotecite] = ACTIONS(5243), - [anon_sym_BSLASHfnotecite] = ACTIONS(5243), - [anon_sym_BSLASHlabel] = ACTIONS(5243), - [anon_sym_BSLASHref] = ACTIONS(5243), - [anon_sym_BSLASHeqref] = ACTIONS(5243), - [anon_sym_BSLASHvref] = ACTIONS(5243), - [anon_sym_BSLASHVref] = ACTIONS(5243), - [anon_sym_BSLASHautoref] = ACTIONS(5243), - [anon_sym_BSLASHpageref] = ACTIONS(5243), - [anon_sym_BSLASHcref] = ACTIONS(5243), - [anon_sym_BSLASHCref] = ACTIONS(5243), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnameCref] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHlabelcref] = ACTIONS(5243), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnewlabel] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5241), - [anon_sym_BSLASHdef] = ACTIONS(5243), - [anon_sym_BSLASHlet] = ACTIONS(5243), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5243), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5243), - [anon_sym_BSLASHgls] = ACTIONS(5243), - [anon_sym_BSLASHGls] = ACTIONS(5243), - [anon_sym_BSLASHGLS] = ACTIONS(5243), - [anon_sym_BSLASHglspl] = ACTIONS(5243), - [anon_sym_BSLASHGlspl] = ACTIONS(5243), - [anon_sym_BSLASHGLSpl] = ACTIONS(5243), - [anon_sym_BSLASHglsdisp] = ACTIONS(5243), - [anon_sym_BSLASHglslink] = ACTIONS(5243), - [anon_sym_BSLASHglstext] = ACTIONS(5243), - [anon_sym_BSLASHGlstext] = ACTIONS(5243), - [anon_sym_BSLASHGLStext] = ACTIONS(5243), - [anon_sym_BSLASHglsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5243), - [anon_sym_BSLASHglsplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSplural] = ACTIONS(5243), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHglsname] = ACTIONS(5243), - [anon_sym_BSLASHGlsname] = ACTIONS(5243), - [anon_sym_BSLASHGLSname] = ACTIONS(5243), - [anon_sym_BSLASHglssymbol] = ACTIONS(5243), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5243), - [anon_sym_BSLASHglsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5243), - [anon_sym_BSLASHglsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5243), - [anon_sym_BSLASHglsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5243), - [anon_sym_BSLASHglsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5243), - [anon_sym_BSLASHglsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5243), - [anon_sym_BSLASHnewacronym] = ACTIONS(5243), - [anon_sym_BSLASHacrshort] = ACTIONS(5243), - [anon_sym_BSLASHAcrshort] = ACTIONS(5243), - [anon_sym_BSLASHACRshort] = ACTIONS(5243), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5243), - [anon_sym_BSLASHacrlong] = ACTIONS(5243), - [anon_sym_BSLASHAcrlong] = ACTIONS(5243), - [anon_sym_BSLASHACRlong] = ACTIONS(5243), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5243), - [anon_sym_BSLASHacrfull] = ACTIONS(5243), - [anon_sym_BSLASHAcrfull] = ACTIONS(5243), - [anon_sym_BSLASHACRfull] = ACTIONS(5243), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5243), - [anon_sym_BSLASHacs] = ACTIONS(5243), - [anon_sym_BSLASHAcs] = ACTIONS(5243), - [anon_sym_BSLASHacsp] = ACTIONS(5243), - [anon_sym_BSLASHAcsp] = ACTIONS(5243), - [anon_sym_BSLASHacl] = ACTIONS(5243), - [anon_sym_BSLASHAcl] = ACTIONS(5243), - [anon_sym_BSLASHaclp] = ACTIONS(5243), - [anon_sym_BSLASHAclp] = ACTIONS(5243), - [anon_sym_BSLASHacf] = ACTIONS(5243), - [anon_sym_BSLASHAcf] = ACTIONS(5243), - [anon_sym_BSLASHacfp] = ACTIONS(5243), - [anon_sym_BSLASHAcfp] = ACTIONS(5243), - [anon_sym_BSLASHac] = ACTIONS(5243), - [anon_sym_BSLASHAc] = ACTIONS(5243), - [anon_sym_BSLASHacp] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5243), - [anon_sym_BSLASHcolor] = ACTIONS(5243), - [anon_sym_BSLASHcolorbox] = ACTIONS(5243), - [anon_sym_BSLASHtextcolor] = ACTIONS(5243), - [anon_sym_BSLASHpagecolor] = ACTIONS(5243), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5243), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5243), - }, - [1414] = { - [sym_command_name] = ACTIONS(5247), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5247), - [anon_sym_LPAREN] = ACTIONS(5245), - [anon_sym_RPAREN] = ACTIONS(5245), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_RBRACK] = ACTIONS(5245), - [anon_sym_COMMA] = ACTIONS(5245), - [anon_sym_LBRACE] = ACTIONS(5245), - [anon_sym_RBRACE] = ACTIONS(5245), - [sym_word] = ACTIONS(5247), - [sym_placeholder] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_SLASH] = ACTIONS(5247), - [anon_sym_CARET] = ACTIONS(5247), - [anon_sym__] = ACTIONS(5247), - [anon_sym_LT] = ACTIONS(5247), - [anon_sym_GT] = ACTIONS(5247), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_PIPE] = ACTIONS(5247), - [anon_sym_COLON] = ACTIONS(5247), - [anon_sym_SQUOTE] = ACTIONS(5247), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5245), - [anon_sym_DOLLAR] = ACTIONS(5247), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5245), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5245), - [anon_sym_BSLASHusepackage] = ACTIONS(5247), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5247), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5247), - [anon_sym_BSLASHinclude] = ACTIONS(5247), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5247), - [anon_sym_BSLASHinput] = ACTIONS(5247), - [anon_sym_BSLASHsubfile] = ACTIONS(5247), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5247), - [anon_sym_BSLASHbibliography] = ACTIONS(5247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5247), - [anon_sym_BSLASHincludesvg] = ACTIONS(5247), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5247), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5247), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5247), - [anon_sym_BSLASHimport] = ACTIONS(5247), - [anon_sym_BSLASHsubimport] = ACTIONS(5247), - [anon_sym_BSLASHinputfrom] = ACTIONS(5247), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5247), - [anon_sym_BSLASHincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHcaption] = ACTIONS(5247), - [anon_sym_BSLASHcite] = ACTIONS(5247), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCite] = ACTIONS(5247), - [anon_sym_BSLASHnocite] = ACTIONS(5247), - [anon_sym_BSLASHcitet] = ACTIONS(5247), - [anon_sym_BSLASHcitep] = ACTIONS(5247), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteyear] = ACTIONS(5247), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitedate] = ACTIONS(5247), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteurl] = ACTIONS(5247), - [anon_sym_BSLASHfullcite] = ACTIONS(5247), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5247), - [anon_sym_BSLASHcitealt] = ACTIONS(5247), - [anon_sym_BSLASHcitealp] = ACTIONS(5247), - [anon_sym_BSLASHcitetext] = ACTIONS(5247), - [anon_sym_BSLASHparencite] = ACTIONS(5247), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHParencite] = ACTIONS(5247), - [anon_sym_BSLASHfootcite] = ACTIONS(5247), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5247), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5247), - [anon_sym_BSLASHtextcite] = ACTIONS(5247), - [anon_sym_BSLASHTextcite] = ACTIONS(5247), - [anon_sym_BSLASHsmartcite] = ACTIONS(5247), - [anon_sym_BSLASHSmartcite] = ACTIONS(5247), - [anon_sym_BSLASHsupercite] = ACTIONS(5247), - [anon_sym_BSLASHautocite] = ACTIONS(5247), - [anon_sym_BSLASHAutocite] = ACTIONS(5247), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHvolcite] = ACTIONS(5247), - [anon_sym_BSLASHVolcite] = ACTIONS(5247), - [anon_sym_BSLASHpvolcite] = ACTIONS(5247), - [anon_sym_BSLASHPvolcite] = ACTIONS(5247), - [anon_sym_BSLASHfvolcite] = ACTIONS(5247), - [anon_sym_BSLASHftvolcite] = ACTIONS(5247), - [anon_sym_BSLASHsvolcite] = ACTIONS(5247), - [anon_sym_BSLASHSvolcite] = ACTIONS(5247), - [anon_sym_BSLASHtvolcite] = ACTIONS(5247), - [anon_sym_BSLASHTvolcite] = ACTIONS(5247), - [anon_sym_BSLASHavolcite] = ACTIONS(5247), - [anon_sym_BSLASHAvolcite] = ACTIONS(5247), - [anon_sym_BSLASHnotecite] = ACTIONS(5247), - [anon_sym_BSLASHNotecite] = ACTIONS(5247), - [anon_sym_BSLASHpnotecite] = ACTIONS(5247), - [anon_sym_BSLASHPnotecite] = ACTIONS(5247), - [anon_sym_BSLASHfnotecite] = ACTIONS(5247), - [anon_sym_BSLASHlabel] = ACTIONS(5247), - [anon_sym_BSLASHref] = ACTIONS(5247), - [anon_sym_BSLASHeqref] = ACTIONS(5247), - [anon_sym_BSLASHvref] = ACTIONS(5247), - [anon_sym_BSLASHVref] = ACTIONS(5247), - [anon_sym_BSLASHautoref] = ACTIONS(5247), - [anon_sym_BSLASHpageref] = ACTIONS(5247), - [anon_sym_BSLASHcref] = ACTIONS(5247), - [anon_sym_BSLASHCref] = ACTIONS(5247), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnameCref] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHlabelcref] = ACTIONS(5247), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnewlabel] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5245), - [anon_sym_BSLASHdef] = ACTIONS(5247), - [anon_sym_BSLASHlet] = ACTIONS(5247), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5247), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5247), - [anon_sym_BSLASHgls] = ACTIONS(5247), - [anon_sym_BSLASHGls] = ACTIONS(5247), - [anon_sym_BSLASHGLS] = ACTIONS(5247), - [anon_sym_BSLASHglspl] = ACTIONS(5247), - [anon_sym_BSLASHGlspl] = ACTIONS(5247), - [anon_sym_BSLASHGLSpl] = ACTIONS(5247), - [anon_sym_BSLASHglsdisp] = ACTIONS(5247), - [anon_sym_BSLASHglslink] = ACTIONS(5247), - [anon_sym_BSLASHglstext] = ACTIONS(5247), - [anon_sym_BSLASHGlstext] = ACTIONS(5247), - [anon_sym_BSLASHGLStext] = ACTIONS(5247), - [anon_sym_BSLASHglsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5247), - [anon_sym_BSLASHglsplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSplural] = ACTIONS(5247), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHglsname] = ACTIONS(5247), - [anon_sym_BSLASHGlsname] = ACTIONS(5247), - [anon_sym_BSLASHGLSname] = ACTIONS(5247), - [anon_sym_BSLASHglssymbol] = ACTIONS(5247), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5247), - [anon_sym_BSLASHglsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5247), - [anon_sym_BSLASHglsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5247), - [anon_sym_BSLASHglsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5247), - [anon_sym_BSLASHglsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5247), - [anon_sym_BSLASHglsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5247), - [anon_sym_BSLASHnewacronym] = ACTIONS(5247), - [anon_sym_BSLASHacrshort] = ACTIONS(5247), - [anon_sym_BSLASHAcrshort] = ACTIONS(5247), - [anon_sym_BSLASHACRshort] = ACTIONS(5247), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5247), - [anon_sym_BSLASHacrlong] = ACTIONS(5247), - [anon_sym_BSLASHAcrlong] = ACTIONS(5247), - [anon_sym_BSLASHACRlong] = ACTIONS(5247), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5247), - [anon_sym_BSLASHacrfull] = ACTIONS(5247), - [anon_sym_BSLASHAcrfull] = ACTIONS(5247), - [anon_sym_BSLASHACRfull] = ACTIONS(5247), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5247), - [anon_sym_BSLASHacs] = ACTIONS(5247), - [anon_sym_BSLASHAcs] = ACTIONS(5247), - [anon_sym_BSLASHacsp] = ACTIONS(5247), - [anon_sym_BSLASHAcsp] = ACTIONS(5247), - [anon_sym_BSLASHacl] = ACTIONS(5247), - [anon_sym_BSLASHAcl] = ACTIONS(5247), - [anon_sym_BSLASHaclp] = ACTIONS(5247), - [anon_sym_BSLASHAclp] = ACTIONS(5247), - [anon_sym_BSLASHacf] = ACTIONS(5247), - [anon_sym_BSLASHAcf] = ACTIONS(5247), - [anon_sym_BSLASHacfp] = ACTIONS(5247), - [anon_sym_BSLASHAcfp] = ACTIONS(5247), - [anon_sym_BSLASHac] = ACTIONS(5247), - [anon_sym_BSLASHAc] = ACTIONS(5247), - [anon_sym_BSLASHacp] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5247), - [anon_sym_BSLASHcolor] = ACTIONS(5247), - [anon_sym_BSLASHcolorbox] = ACTIONS(5247), - [anon_sym_BSLASHtextcolor] = ACTIONS(5247), - [anon_sym_BSLASHpagecolor] = ACTIONS(5247), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5247), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5247), - }, - [1415] = { - [sym_command_name] = ACTIONS(5251), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5251), - [anon_sym_LPAREN] = ACTIONS(5249), - [anon_sym_RPAREN] = ACTIONS(5249), - [anon_sym_LBRACK] = ACTIONS(5249), - [anon_sym_RBRACK] = ACTIONS(5249), - [anon_sym_COMMA] = ACTIONS(5249), - [anon_sym_LBRACE] = ACTIONS(5249), - [anon_sym_RBRACE] = ACTIONS(5249), - [sym_word] = ACTIONS(5251), - [sym_placeholder] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym__] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_BANG] = ACTIONS(5251), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5251), - [anon_sym_SQUOTE] = ACTIONS(5251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5249), - [anon_sym_DOLLAR] = ACTIONS(5251), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5249), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5249), - [anon_sym_BSLASHusepackage] = ACTIONS(5251), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5251), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5251), - [anon_sym_BSLASHinclude] = ACTIONS(5251), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5251), - [anon_sym_BSLASHinput] = ACTIONS(5251), - [anon_sym_BSLASHsubfile] = ACTIONS(5251), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5251), - [anon_sym_BSLASHbibliography] = ACTIONS(5251), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5251), - [anon_sym_BSLASHincludesvg] = ACTIONS(5251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5251), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5251), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5251), - [anon_sym_BSLASHimport] = ACTIONS(5251), - [anon_sym_BSLASHsubimport] = ACTIONS(5251), - [anon_sym_BSLASHinputfrom] = ACTIONS(5251), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5251), - [anon_sym_BSLASHincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHcaption] = ACTIONS(5251), - [anon_sym_BSLASHcite] = ACTIONS(5251), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCite] = ACTIONS(5251), - [anon_sym_BSLASHnocite] = ACTIONS(5251), - [anon_sym_BSLASHcitet] = ACTIONS(5251), - [anon_sym_BSLASHcitep] = ACTIONS(5251), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor] = ACTIONS(5251), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5251), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle] = ACTIONS(5251), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteyear] = ACTIONS(5251), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitedate] = ACTIONS(5251), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteurl] = ACTIONS(5251), - [anon_sym_BSLASHfullcite] = ACTIONS(5251), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5251), - [anon_sym_BSLASHcitealt] = ACTIONS(5251), - [anon_sym_BSLASHcitealp] = ACTIONS(5251), - [anon_sym_BSLASHcitetext] = ACTIONS(5251), - [anon_sym_BSLASHparencite] = ACTIONS(5251), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHParencite] = ACTIONS(5251), - [anon_sym_BSLASHfootcite] = ACTIONS(5251), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5251), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5251), - [anon_sym_BSLASHtextcite] = ACTIONS(5251), - [anon_sym_BSLASHTextcite] = ACTIONS(5251), - [anon_sym_BSLASHsmartcite] = ACTIONS(5251), - [anon_sym_BSLASHSmartcite] = ACTIONS(5251), - [anon_sym_BSLASHsupercite] = ACTIONS(5251), - [anon_sym_BSLASHautocite] = ACTIONS(5251), - [anon_sym_BSLASHAutocite] = ACTIONS(5251), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHvolcite] = ACTIONS(5251), - [anon_sym_BSLASHVolcite] = ACTIONS(5251), - [anon_sym_BSLASHpvolcite] = ACTIONS(5251), - [anon_sym_BSLASHPvolcite] = ACTIONS(5251), - [anon_sym_BSLASHfvolcite] = ACTIONS(5251), - [anon_sym_BSLASHftvolcite] = ACTIONS(5251), - [anon_sym_BSLASHsvolcite] = ACTIONS(5251), - [anon_sym_BSLASHSvolcite] = ACTIONS(5251), - [anon_sym_BSLASHtvolcite] = ACTIONS(5251), - [anon_sym_BSLASHTvolcite] = ACTIONS(5251), - [anon_sym_BSLASHavolcite] = ACTIONS(5251), - [anon_sym_BSLASHAvolcite] = ACTIONS(5251), - [anon_sym_BSLASHnotecite] = ACTIONS(5251), - [anon_sym_BSLASHNotecite] = ACTIONS(5251), - [anon_sym_BSLASHpnotecite] = ACTIONS(5251), - [anon_sym_BSLASHPnotecite] = ACTIONS(5251), - [anon_sym_BSLASHfnotecite] = ACTIONS(5251), - [anon_sym_BSLASHlabel] = ACTIONS(5251), - [anon_sym_BSLASHref] = ACTIONS(5251), - [anon_sym_BSLASHeqref] = ACTIONS(5251), - [anon_sym_BSLASHvref] = ACTIONS(5251), - [anon_sym_BSLASHVref] = ACTIONS(5251), - [anon_sym_BSLASHautoref] = ACTIONS(5251), - [anon_sym_BSLASHpageref] = ACTIONS(5251), - [anon_sym_BSLASHcref] = ACTIONS(5251), - [anon_sym_BSLASHCref] = ACTIONS(5251), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnameCref] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHlabelcref] = ACTIONS(5251), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange] = ACTIONS(5251), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnewlabel] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5251), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5251), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5251), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5249), - [anon_sym_BSLASHdef] = ACTIONS(5251), - [anon_sym_BSLASHlet] = ACTIONS(5251), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5251), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5251), - [anon_sym_BSLASHgls] = ACTIONS(5251), - [anon_sym_BSLASHGls] = ACTIONS(5251), - [anon_sym_BSLASHGLS] = ACTIONS(5251), - [anon_sym_BSLASHglspl] = ACTIONS(5251), - [anon_sym_BSLASHGlspl] = ACTIONS(5251), - [anon_sym_BSLASHGLSpl] = ACTIONS(5251), - [anon_sym_BSLASHglsdisp] = ACTIONS(5251), - [anon_sym_BSLASHglslink] = ACTIONS(5251), - [anon_sym_BSLASHglstext] = ACTIONS(5251), - [anon_sym_BSLASHGlstext] = ACTIONS(5251), - [anon_sym_BSLASHGLStext] = ACTIONS(5251), - [anon_sym_BSLASHglsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5251), - [anon_sym_BSLASHglsplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSplural] = ACTIONS(5251), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHglsname] = ACTIONS(5251), - [anon_sym_BSLASHGlsname] = ACTIONS(5251), - [anon_sym_BSLASHGLSname] = ACTIONS(5251), - [anon_sym_BSLASHglssymbol] = ACTIONS(5251), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5251), - [anon_sym_BSLASHglsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5251), - [anon_sym_BSLASHglsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5251), - [anon_sym_BSLASHglsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5251), - [anon_sym_BSLASHglsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5251), - [anon_sym_BSLASHglsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5251), - [anon_sym_BSLASHnewacronym] = ACTIONS(5251), - [anon_sym_BSLASHacrshort] = ACTIONS(5251), - [anon_sym_BSLASHAcrshort] = ACTIONS(5251), - [anon_sym_BSLASHACRshort] = ACTIONS(5251), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5251), - [anon_sym_BSLASHacrlong] = ACTIONS(5251), - [anon_sym_BSLASHAcrlong] = ACTIONS(5251), - [anon_sym_BSLASHACRlong] = ACTIONS(5251), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5251), - [anon_sym_BSLASHacrfull] = ACTIONS(5251), - [anon_sym_BSLASHAcrfull] = ACTIONS(5251), - [anon_sym_BSLASHACRfull] = ACTIONS(5251), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5251), - [anon_sym_BSLASHacs] = ACTIONS(5251), - [anon_sym_BSLASHAcs] = ACTIONS(5251), - [anon_sym_BSLASHacsp] = ACTIONS(5251), - [anon_sym_BSLASHAcsp] = ACTIONS(5251), - [anon_sym_BSLASHacl] = ACTIONS(5251), - [anon_sym_BSLASHAcl] = ACTIONS(5251), - [anon_sym_BSLASHaclp] = ACTIONS(5251), - [anon_sym_BSLASHAclp] = ACTIONS(5251), - [anon_sym_BSLASHacf] = ACTIONS(5251), - [anon_sym_BSLASHAcf] = ACTIONS(5251), - [anon_sym_BSLASHacfp] = ACTIONS(5251), - [anon_sym_BSLASHAcfp] = ACTIONS(5251), - [anon_sym_BSLASHac] = ACTIONS(5251), - [anon_sym_BSLASHAc] = ACTIONS(5251), - [anon_sym_BSLASHacp] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5251), - [anon_sym_BSLASHcolor] = ACTIONS(5251), - [anon_sym_BSLASHcolorbox] = ACTIONS(5251), - [anon_sym_BSLASHtextcolor] = ACTIONS(5251), - [anon_sym_BSLASHpagecolor] = ACTIONS(5251), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5251), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5251), - }, - [1416] = { - [sym_command_name] = ACTIONS(5255), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5255), - [anon_sym_LPAREN] = ACTIONS(5253), - [anon_sym_RPAREN] = ACTIONS(5253), - [anon_sym_LBRACK] = ACTIONS(5253), - [anon_sym_RBRACK] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_LBRACE] = ACTIONS(5253), - [anon_sym_RBRACE] = ACTIONS(5253), - [sym_word] = ACTIONS(5255), - [sym_placeholder] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_CARET] = ACTIONS(5255), - [anon_sym__] = ACTIONS(5255), - [anon_sym_LT] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5255), - [anon_sym_BANG] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5255), - [anon_sym_COLON] = ACTIONS(5255), - [anon_sym_SQUOTE] = ACTIONS(5255), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5253), - [anon_sym_DOLLAR] = ACTIONS(5255), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5253), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5253), - [anon_sym_BSLASHusepackage] = ACTIONS(5255), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5255), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5255), - [anon_sym_BSLASHinclude] = ACTIONS(5255), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5255), - [anon_sym_BSLASHinput] = ACTIONS(5255), - [anon_sym_BSLASHsubfile] = ACTIONS(5255), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5255), - [anon_sym_BSLASHbibliography] = ACTIONS(5255), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5255), - [anon_sym_BSLASHincludesvg] = ACTIONS(5255), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5255), - [anon_sym_BSLASHimport] = ACTIONS(5255), - [anon_sym_BSLASHsubimport] = ACTIONS(5255), - [anon_sym_BSLASHinputfrom] = ACTIONS(5255), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5255), - [anon_sym_BSLASHincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHcaption] = ACTIONS(5255), - [anon_sym_BSLASHcite] = ACTIONS(5255), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCite] = ACTIONS(5255), - [anon_sym_BSLASHnocite] = ACTIONS(5255), - [anon_sym_BSLASHcitet] = ACTIONS(5255), - [anon_sym_BSLASHcitep] = ACTIONS(5255), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteauthor] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitetitle] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteyear] = ACTIONS(5255), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitedate] = ACTIONS(5255), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteurl] = ACTIONS(5255), - [anon_sym_BSLASHfullcite] = ACTIONS(5255), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5255), - [anon_sym_BSLASHcitealt] = ACTIONS(5255), - [anon_sym_BSLASHcitealp] = ACTIONS(5255), - [anon_sym_BSLASHcitetext] = ACTIONS(5255), - [anon_sym_BSLASHparencite] = ACTIONS(5255), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHParencite] = ACTIONS(5255), - [anon_sym_BSLASHfootcite] = ACTIONS(5255), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5255), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5255), - [anon_sym_BSLASHtextcite] = ACTIONS(5255), - [anon_sym_BSLASHTextcite] = ACTIONS(5255), - [anon_sym_BSLASHsmartcite] = ACTIONS(5255), - [anon_sym_BSLASHSmartcite] = ACTIONS(5255), - [anon_sym_BSLASHsupercite] = ACTIONS(5255), - [anon_sym_BSLASHautocite] = ACTIONS(5255), - [anon_sym_BSLASHAutocite] = ACTIONS(5255), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHvolcite] = ACTIONS(5255), - [anon_sym_BSLASHVolcite] = ACTIONS(5255), - [anon_sym_BSLASHpvolcite] = ACTIONS(5255), - [anon_sym_BSLASHPvolcite] = ACTIONS(5255), - [anon_sym_BSLASHfvolcite] = ACTIONS(5255), - [anon_sym_BSLASHftvolcite] = ACTIONS(5255), - [anon_sym_BSLASHsvolcite] = ACTIONS(5255), - [anon_sym_BSLASHSvolcite] = ACTIONS(5255), - [anon_sym_BSLASHtvolcite] = ACTIONS(5255), - [anon_sym_BSLASHTvolcite] = ACTIONS(5255), - [anon_sym_BSLASHavolcite] = ACTIONS(5255), - [anon_sym_BSLASHAvolcite] = ACTIONS(5255), - [anon_sym_BSLASHnotecite] = ACTIONS(5255), - [anon_sym_BSLASHNotecite] = ACTIONS(5255), - [anon_sym_BSLASHpnotecite] = ACTIONS(5255), - [anon_sym_BSLASHPnotecite] = ACTIONS(5255), - [anon_sym_BSLASHfnotecite] = ACTIONS(5255), - [anon_sym_BSLASHlabel] = ACTIONS(5255), - [anon_sym_BSLASHref] = ACTIONS(5255), - [anon_sym_BSLASHeqref] = ACTIONS(5255), - [anon_sym_BSLASHvref] = ACTIONS(5255), - [anon_sym_BSLASHVref] = ACTIONS(5255), - [anon_sym_BSLASHautoref] = ACTIONS(5255), - [anon_sym_BSLASHpageref] = ACTIONS(5255), - [anon_sym_BSLASHcref] = ACTIONS(5255), - [anon_sym_BSLASHCref] = ACTIONS(5255), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnameCref] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHlabelcref] = ACTIONS(5255), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCrefrange] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnewlabel] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5253), - [anon_sym_BSLASHdef] = ACTIONS(5255), - [anon_sym_BSLASHlet] = ACTIONS(5255), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5255), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5255), - [anon_sym_BSLASHgls] = ACTIONS(5255), - [anon_sym_BSLASHGls] = ACTIONS(5255), - [anon_sym_BSLASHGLS] = ACTIONS(5255), - [anon_sym_BSLASHglspl] = ACTIONS(5255), - [anon_sym_BSLASHGlspl] = ACTIONS(5255), - [anon_sym_BSLASHGLSpl] = ACTIONS(5255), - [anon_sym_BSLASHglsdisp] = ACTIONS(5255), - [anon_sym_BSLASHglslink] = ACTIONS(5255), - [anon_sym_BSLASHglstext] = ACTIONS(5255), - [anon_sym_BSLASHGlstext] = ACTIONS(5255), - [anon_sym_BSLASHGLStext] = ACTIONS(5255), - [anon_sym_BSLASHglsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5255), - [anon_sym_BSLASHglsplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSplural] = ACTIONS(5255), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHglsname] = ACTIONS(5255), - [anon_sym_BSLASHGlsname] = ACTIONS(5255), - [anon_sym_BSLASHGLSname] = ACTIONS(5255), - [anon_sym_BSLASHglssymbol] = ACTIONS(5255), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5255), - [anon_sym_BSLASHglsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5255), - [anon_sym_BSLASHglsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5255), - [anon_sym_BSLASHglsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5255), - [anon_sym_BSLASHglsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5255), - [anon_sym_BSLASHglsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5255), - [anon_sym_BSLASHnewacronym] = ACTIONS(5255), - [anon_sym_BSLASHacrshort] = ACTIONS(5255), - [anon_sym_BSLASHAcrshort] = ACTIONS(5255), - [anon_sym_BSLASHACRshort] = ACTIONS(5255), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5255), - [anon_sym_BSLASHacrlong] = ACTIONS(5255), - [anon_sym_BSLASHAcrlong] = ACTIONS(5255), - [anon_sym_BSLASHACRlong] = ACTIONS(5255), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5255), - [anon_sym_BSLASHacrfull] = ACTIONS(5255), - [anon_sym_BSLASHAcrfull] = ACTIONS(5255), - [anon_sym_BSLASHACRfull] = ACTIONS(5255), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5255), - [anon_sym_BSLASHacs] = ACTIONS(5255), - [anon_sym_BSLASHAcs] = ACTIONS(5255), - [anon_sym_BSLASHacsp] = ACTIONS(5255), - [anon_sym_BSLASHAcsp] = ACTIONS(5255), - [anon_sym_BSLASHacl] = ACTIONS(5255), - [anon_sym_BSLASHAcl] = ACTIONS(5255), - [anon_sym_BSLASHaclp] = ACTIONS(5255), - [anon_sym_BSLASHAclp] = ACTIONS(5255), - [anon_sym_BSLASHacf] = ACTIONS(5255), - [anon_sym_BSLASHAcf] = ACTIONS(5255), - [anon_sym_BSLASHacfp] = ACTIONS(5255), - [anon_sym_BSLASHAcfp] = ACTIONS(5255), - [anon_sym_BSLASHac] = ACTIONS(5255), - [anon_sym_BSLASHAc] = ACTIONS(5255), - [anon_sym_BSLASHacp] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5255), - [anon_sym_BSLASHcolor] = ACTIONS(5255), - [anon_sym_BSLASHcolorbox] = ACTIONS(5255), - [anon_sym_BSLASHtextcolor] = ACTIONS(5255), - [anon_sym_BSLASHpagecolor] = ACTIONS(5255), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5255), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5255), - }, - [1417] = { - [sym_command_name] = ACTIONS(5263), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5263), - [anon_sym_LPAREN] = ACTIONS(5261), - [anon_sym_RPAREN] = ACTIONS(5261), - [anon_sym_LBRACK] = ACTIONS(5261), - [anon_sym_RBRACK] = ACTIONS(5261), - [anon_sym_COMMA] = ACTIONS(5261), - [anon_sym_LBRACE] = ACTIONS(5261), - [anon_sym_RBRACE] = ACTIONS(5261), - [sym_word] = ACTIONS(5263), - [sym_placeholder] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_STAR] = ACTIONS(5263), - [anon_sym_SLASH] = ACTIONS(5263), - [anon_sym_CARET] = ACTIONS(5263), - [anon_sym__] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(5263), - [anon_sym_GT] = ACTIONS(5263), - [anon_sym_BANG] = ACTIONS(5263), - [anon_sym_PIPE] = ACTIONS(5263), - [anon_sym_COLON] = ACTIONS(5263), - [anon_sym_SQUOTE] = ACTIONS(5263), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5261), - [anon_sym_DOLLAR] = ACTIONS(5263), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5261), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5261), - [anon_sym_BSLASHusepackage] = ACTIONS(5263), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), - [anon_sym_BSLASHinclude] = ACTIONS(5263), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), - [anon_sym_BSLASHinput] = ACTIONS(5263), - [anon_sym_BSLASHsubfile] = ACTIONS(5263), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), - [anon_sym_BSLASHbibliography] = ACTIONS(5263), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), - [anon_sym_BSLASHincludesvg] = ACTIONS(5263), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), - [anon_sym_BSLASHimport] = ACTIONS(5263), - [anon_sym_BSLASHsubimport] = ACTIONS(5263), - [anon_sym_BSLASHinputfrom] = ACTIONS(5263), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), - [anon_sym_BSLASHincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHcaption] = ACTIONS(5263), - [anon_sym_BSLASHcite] = ACTIONS(5263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCite] = ACTIONS(5263), - [anon_sym_BSLASHnocite] = ACTIONS(5263), - [anon_sym_BSLASHcitet] = ACTIONS(5263), - [anon_sym_BSLASHcitep] = ACTIONS(5263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteyear] = ACTIONS(5263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitedate] = ACTIONS(5263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteurl] = ACTIONS(5263), - [anon_sym_BSLASHfullcite] = ACTIONS(5263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), - [anon_sym_BSLASHcitealt] = ACTIONS(5263), - [anon_sym_BSLASHcitealp] = ACTIONS(5263), - [anon_sym_BSLASHcitetext] = ACTIONS(5263), - [anon_sym_BSLASHparencite] = ACTIONS(5263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHParencite] = ACTIONS(5263), - [anon_sym_BSLASHfootcite] = ACTIONS(5263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), - [anon_sym_BSLASHtextcite] = ACTIONS(5263), - [anon_sym_BSLASHTextcite] = ACTIONS(5263), - [anon_sym_BSLASHsmartcite] = ACTIONS(5263), - [anon_sym_BSLASHSmartcite] = ACTIONS(5263), - [anon_sym_BSLASHsupercite] = ACTIONS(5263), - [anon_sym_BSLASHautocite] = ACTIONS(5263), - [anon_sym_BSLASHAutocite] = ACTIONS(5263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHvolcite] = ACTIONS(5263), - [anon_sym_BSLASHVolcite] = ACTIONS(5263), - [anon_sym_BSLASHpvolcite] = ACTIONS(5263), - [anon_sym_BSLASHPvolcite] = ACTIONS(5263), - [anon_sym_BSLASHfvolcite] = ACTIONS(5263), - [anon_sym_BSLASHftvolcite] = ACTIONS(5263), - [anon_sym_BSLASHsvolcite] = ACTIONS(5263), - [anon_sym_BSLASHSvolcite] = ACTIONS(5263), - [anon_sym_BSLASHtvolcite] = ACTIONS(5263), - [anon_sym_BSLASHTvolcite] = ACTIONS(5263), - [anon_sym_BSLASHavolcite] = ACTIONS(5263), - [anon_sym_BSLASHAvolcite] = ACTIONS(5263), - [anon_sym_BSLASHnotecite] = ACTIONS(5263), - [anon_sym_BSLASHNotecite] = ACTIONS(5263), - [anon_sym_BSLASHpnotecite] = ACTIONS(5263), - [anon_sym_BSLASHPnotecite] = ACTIONS(5263), - [anon_sym_BSLASHfnotecite] = ACTIONS(5263), - [anon_sym_BSLASHlabel] = ACTIONS(5263), - [anon_sym_BSLASHref] = ACTIONS(5263), - [anon_sym_BSLASHeqref] = ACTIONS(5263), - [anon_sym_BSLASHvref] = ACTIONS(5263), - [anon_sym_BSLASHVref] = ACTIONS(5263), - [anon_sym_BSLASHautoref] = ACTIONS(5263), - [anon_sym_BSLASHpageref] = ACTIONS(5263), - [anon_sym_BSLASHcref] = ACTIONS(5263), - [anon_sym_BSLASHCref] = ACTIONS(5263), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnameCref] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHlabelcref] = ACTIONS(5263), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnewlabel] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), - [anon_sym_BSLASHdef] = ACTIONS(5263), - [anon_sym_BSLASHlet] = ACTIONS(5263), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), - [anon_sym_BSLASHgls] = ACTIONS(5263), - [anon_sym_BSLASHGls] = ACTIONS(5263), - [anon_sym_BSLASHGLS] = ACTIONS(5263), - [anon_sym_BSLASHglspl] = ACTIONS(5263), - [anon_sym_BSLASHGlspl] = ACTIONS(5263), - [anon_sym_BSLASHGLSpl] = ACTIONS(5263), - [anon_sym_BSLASHglsdisp] = ACTIONS(5263), - [anon_sym_BSLASHglslink] = ACTIONS(5263), - [anon_sym_BSLASHglstext] = ACTIONS(5263), - [anon_sym_BSLASHGlstext] = ACTIONS(5263), - [anon_sym_BSLASHGLStext] = ACTIONS(5263), - [anon_sym_BSLASHglsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), - [anon_sym_BSLASHglsplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSplural] = ACTIONS(5263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHglsname] = ACTIONS(5263), - [anon_sym_BSLASHGlsname] = ACTIONS(5263), - [anon_sym_BSLASHGLSname] = ACTIONS(5263), - [anon_sym_BSLASHglssymbol] = ACTIONS(5263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), - [anon_sym_BSLASHglsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), - [anon_sym_BSLASHglsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), - [anon_sym_BSLASHglsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), - [anon_sym_BSLASHglsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), - [anon_sym_BSLASHglsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), - [anon_sym_BSLASHnewacronym] = ACTIONS(5263), - [anon_sym_BSLASHacrshort] = ACTIONS(5263), - [anon_sym_BSLASHAcrshort] = ACTIONS(5263), - [anon_sym_BSLASHACRshort] = ACTIONS(5263), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), - [anon_sym_BSLASHacrlong] = ACTIONS(5263), - [anon_sym_BSLASHAcrlong] = ACTIONS(5263), - [anon_sym_BSLASHACRlong] = ACTIONS(5263), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), - [anon_sym_BSLASHacrfull] = ACTIONS(5263), - [anon_sym_BSLASHAcrfull] = ACTIONS(5263), - [anon_sym_BSLASHACRfull] = ACTIONS(5263), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), - [anon_sym_BSLASHacs] = ACTIONS(5263), - [anon_sym_BSLASHAcs] = ACTIONS(5263), - [anon_sym_BSLASHacsp] = ACTIONS(5263), - [anon_sym_BSLASHAcsp] = ACTIONS(5263), - [anon_sym_BSLASHacl] = ACTIONS(5263), - [anon_sym_BSLASHAcl] = ACTIONS(5263), - [anon_sym_BSLASHaclp] = ACTIONS(5263), - [anon_sym_BSLASHAclp] = ACTIONS(5263), - [anon_sym_BSLASHacf] = ACTIONS(5263), - [anon_sym_BSLASHAcf] = ACTIONS(5263), - [anon_sym_BSLASHacfp] = ACTIONS(5263), - [anon_sym_BSLASHAcfp] = ACTIONS(5263), - [anon_sym_BSLASHac] = ACTIONS(5263), - [anon_sym_BSLASHAc] = ACTIONS(5263), - [anon_sym_BSLASHacp] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), - [anon_sym_BSLASHcolor] = ACTIONS(5263), - [anon_sym_BSLASHcolorbox] = ACTIONS(5263), - [anon_sym_BSLASHtextcolor] = ACTIONS(5263), - [anon_sym_BSLASHpagecolor] = ACTIONS(5263), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), - }, - [1418] = { - [sym_command_name] = ACTIONS(5407), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5407), - [anon_sym_LPAREN] = ACTIONS(5409), - [anon_sym_RPAREN] = ACTIONS(5409), - [anon_sym_LBRACK] = ACTIONS(5409), - [anon_sym_RBRACK] = ACTIONS(5409), - [anon_sym_COMMA] = ACTIONS(5409), - [anon_sym_LBRACE] = ACTIONS(5409), - [anon_sym_RBRACE] = ACTIONS(5409), - [sym_word] = ACTIONS(5407), - [sym_placeholder] = ACTIONS(5409), - [anon_sym_PLUS] = ACTIONS(5407), - [anon_sym_DASH] = ACTIONS(5407), - [anon_sym_STAR] = ACTIONS(5407), - [anon_sym_SLASH] = ACTIONS(5407), - [anon_sym_CARET] = ACTIONS(5407), - [anon_sym__] = ACTIONS(5407), - [anon_sym_LT] = ACTIONS(5407), - [anon_sym_GT] = ACTIONS(5407), - [anon_sym_BANG] = ACTIONS(5407), - [anon_sym_PIPE] = ACTIONS(5407), - [anon_sym_COLON] = ACTIONS(5407), - [anon_sym_SQUOTE] = ACTIONS(5407), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5409), - [anon_sym_DOLLAR] = ACTIONS(5407), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5409), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5409), - [anon_sym_BSLASHusepackage] = ACTIONS(5407), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5407), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5407), - [anon_sym_BSLASHinclude] = ACTIONS(5407), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5407), - [anon_sym_BSLASHinput] = ACTIONS(5407), - [anon_sym_BSLASHsubfile] = ACTIONS(5407), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5407), - [anon_sym_BSLASHbibliography] = ACTIONS(5407), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5407), - [anon_sym_BSLASHincludesvg] = ACTIONS(5407), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5407), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5407), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5407), - [anon_sym_BSLASHimport] = ACTIONS(5407), - [anon_sym_BSLASHsubimport] = ACTIONS(5407), - [anon_sym_BSLASHinputfrom] = ACTIONS(5407), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5407), - [anon_sym_BSLASHincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5407), - [anon_sym_BSLASHcaption] = ACTIONS(5407), - [anon_sym_BSLASHcite] = ACTIONS(5407), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCite] = ACTIONS(5407), - [anon_sym_BSLASHnocite] = ACTIONS(5407), - [anon_sym_BSLASHcitet] = ACTIONS(5407), - [anon_sym_BSLASHcitep] = ACTIONS(5407), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteauthor] = ACTIONS(5407), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5407), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitetitle] = ACTIONS(5407), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteyear] = ACTIONS(5407), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5409), - [anon_sym_BSLASHcitedate] = ACTIONS(5407), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5409), - [anon_sym_BSLASHciteurl] = ACTIONS(5407), - [anon_sym_BSLASHfullcite] = ACTIONS(5407), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5407), - [anon_sym_BSLASHcitealt] = ACTIONS(5407), - [anon_sym_BSLASHcitealp] = ACTIONS(5407), - [anon_sym_BSLASHcitetext] = ACTIONS(5407), - [anon_sym_BSLASHparencite] = ACTIONS(5407), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHParencite] = ACTIONS(5407), - [anon_sym_BSLASHfootcite] = ACTIONS(5407), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5407), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5407), - [anon_sym_BSLASHtextcite] = ACTIONS(5407), - [anon_sym_BSLASHTextcite] = ACTIONS(5407), - [anon_sym_BSLASHsmartcite] = ACTIONS(5407), - [anon_sym_BSLASHSmartcite] = ACTIONS(5407), - [anon_sym_BSLASHsupercite] = ACTIONS(5407), - [anon_sym_BSLASHautocite] = ACTIONS(5407), - [anon_sym_BSLASHAutocite] = ACTIONS(5407), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5409), - [anon_sym_BSLASHvolcite] = ACTIONS(5407), - [anon_sym_BSLASHVolcite] = ACTIONS(5407), - [anon_sym_BSLASHpvolcite] = ACTIONS(5407), - [anon_sym_BSLASHPvolcite] = ACTIONS(5407), - [anon_sym_BSLASHfvolcite] = ACTIONS(5407), - [anon_sym_BSLASHftvolcite] = ACTIONS(5407), - [anon_sym_BSLASHsvolcite] = ACTIONS(5407), - [anon_sym_BSLASHSvolcite] = ACTIONS(5407), - [anon_sym_BSLASHtvolcite] = ACTIONS(5407), - [anon_sym_BSLASHTvolcite] = ACTIONS(5407), - [anon_sym_BSLASHavolcite] = ACTIONS(5407), - [anon_sym_BSLASHAvolcite] = ACTIONS(5407), - [anon_sym_BSLASHnotecite] = ACTIONS(5407), - [anon_sym_BSLASHNotecite] = ACTIONS(5407), - [anon_sym_BSLASHpnotecite] = ACTIONS(5407), - [anon_sym_BSLASHPnotecite] = ACTIONS(5407), - [anon_sym_BSLASHfnotecite] = ACTIONS(5407), - [anon_sym_BSLASHlabel] = ACTIONS(5407), - [anon_sym_BSLASHref] = ACTIONS(5407), - [anon_sym_BSLASHeqref] = ACTIONS(5407), - [anon_sym_BSLASHvref] = ACTIONS(5407), - [anon_sym_BSLASHVref] = ACTIONS(5407), - [anon_sym_BSLASHautoref] = ACTIONS(5407), - [anon_sym_BSLASHpageref] = ACTIONS(5407), - [anon_sym_BSLASHcref] = ACTIONS(5407), - [anon_sym_BSLASHCref] = ACTIONS(5407), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnameCref] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5407), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5407), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5407), - [anon_sym_BSLASHlabelcref] = ACTIONS(5407), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange] = ACTIONS(5407), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHCrefrange] = ACTIONS(5407), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5409), - [anon_sym_BSLASHnewlabel] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand] = ACTIONS(5407), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5407), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5407), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5409), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5407), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5409), - [anon_sym_BSLASHdef] = ACTIONS(5407), - [anon_sym_BSLASHlet] = ACTIONS(5407), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5407), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5407), - [anon_sym_BSLASHgls] = ACTIONS(5407), - [anon_sym_BSLASHGls] = ACTIONS(5407), - [anon_sym_BSLASHGLS] = ACTIONS(5407), - [anon_sym_BSLASHglspl] = ACTIONS(5407), - [anon_sym_BSLASHGlspl] = ACTIONS(5407), - [anon_sym_BSLASHGLSpl] = ACTIONS(5407), - [anon_sym_BSLASHglsdisp] = ACTIONS(5407), - [anon_sym_BSLASHglslink] = ACTIONS(5407), - [anon_sym_BSLASHglstext] = ACTIONS(5407), - [anon_sym_BSLASHGlstext] = ACTIONS(5407), - [anon_sym_BSLASHGLStext] = ACTIONS(5407), - [anon_sym_BSLASHglsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5407), - [anon_sym_BSLASHglsplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSplural] = ACTIONS(5407), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5407), - [anon_sym_BSLASHglsname] = ACTIONS(5407), - [anon_sym_BSLASHGlsname] = ACTIONS(5407), - [anon_sym_BSLASHGLSname] = ACTIONS(5407), - [anon_sym_BSLASHglssymbol] = ACTIONS(5407), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5407), - [anon_sym_BSLASHglsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5407), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5407), - [anon_sym_BSLASHglsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5407), - [anon_sym_BSLASHglsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5407), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5407), - [anon_sym_BSLASHglsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5407), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5407), - [anon_sym_BSLASHglsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5407), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5407), - [anon_sym_BSLASHnewacronym] = ACTIONS(5407), - [anon_sym_BSLASHacrshort] = ACTIONS(5407), - [anon_sym_BSLASHAcrshort] = ACTIONS(5407), - [anon_sym_BSLASHACRshort] = ACTIONS(5407), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5407), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5407), - [anon_sym_BSLASHacrlong] = ACTIONS(5407), - [anon_sym_BSLASHAcrlong] = ACTIONS(5407), - [anon_sym_BSLASHACRlong] = ACTIONS(5407), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5407), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5407), - [anon_sym_BSLASHacrfull] = ACTIONS(5407), - [anon_sym_BSLASHAcrfull] = ACTIONS(5407), - [anon_sym_BSLASHACRfull] = ACTIONS(5407), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5407), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5407), - [anon_sym_BSLASHacs] = ACTIONS(5407), - [anon_sym_BSLASHAcs] = ACTIONS(5407), - [anon_sym_BSLASHacsp] = ACTIONS(5407), - [anon_sym_BSLASHAcsp] = ACTIONS(5407), - [anon_sym_BSLASHacl] = ACTIONS(5407), - [anon_sym_BSLASHAcl] = ACTIONS(5407), - [anon_sym_BSLASHaclp] = ACTIONS(5407), - [anon_sym_BSLASHAclp] = ACTIONS(5407), - [anon_sym_BSLASHacf] = ACTIONS(5407), - [anon_sym_BSLASHAcf] = ACTIONS(5407), - [anon_sym_BSLASHacfp] = ACTIONS(5407), - [anon_sym_BSLASHAcfp] = ACTIONS(5407), - [anon_sym_BSLASHac] = ACTIONS(5407), - [anon_sym_BSLASHAc] = ACTIONS(5407), - [anon_sym_BSLASHacp] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5407), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5407), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5407), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5407), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5407), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5407), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5407), - [anon_sym_BSLASHcolor] = ACTIONS(5407), - [anon_sym_BSLASHcolorbox] = ACTIONS(5407), - [anon_sym_BSLASHtextcolor] = ACTIONS(5407), - [anon_sym_BSLASHpagecolor] = ACTIONS(5407), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5407), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5407), - }, - [1419] = { - [sym_command_name] = ACTIONS(5267), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5267), - [anon_sym_LPAREN] = ACTIONS(5265), - [anon_sym_RPAREN] = ACTIONS(5265), - [anon_sym_LBRACK] = ACTIONS(5265), - [anon_sym_RBRACK] = ACTIONS(5265), - [anon_sym_COMMA] = ACTIONS(5265), - [anon_sym_LBRACE] = ACTIONS(5265), - [anon_sym_RBRACE] = ACTIONS(5265), - [sym_word] = ACTIONS(5267), - [sym_placeholder] = ACTIONS(5265), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(5267), - [anon_sym_SLASH] = ACTIONS(5267), - [anon_sym_CARET] = ACTIONS(5267), - [anon_sym__] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(5267), - [anon_sym_GT] = ACTIONS(5267), - [anon_sym_BANG] = ACTIONS(5267), - [anon_sym_PIPE] = ACTIONS(5267), - [anon_sym_COLON] = ACTIONS(5267), - [anon_sym_SQUOTE] = ACTIONS(5267), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5265), - [anon_sym_DOLLAR] = ACTIONS(5267), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5265), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5265), - [anon_sym_BSLASHusepackage] = ACTIONS(5267), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5267), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5267), - [anon_sym_BSLASHinclude] = ACTIONS(5267), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5267), - [anon_sym_BSLASHinput] = ACTIONS(5267), - [anon_sym_BSLASHsubfile] = ACTIONS(5267), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5267), - [anon_sym_BSLASHbibliography] = ACTIONS(5267), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5267), - [anon_sym_BSLASHincludesvg] = ACTIONS(5267), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5267), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5267), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5267), - [anon_sym_BSLASHimport] = ACTIONS(5267), - [anon_sym_BSLASHsubimport] = ACTIONS(5267), - [anon_sym_BSLASHinputfrom] = ACTIONS(5267), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5267), - [anon_sym_BSLASHincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHcaption] = ACTIONS(5267), - [anon_sym_BSLASHcite] = ACTIONS(5267), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCite] = ACTIONS(5267), - [anon_sym_BSLASHnocite] = ACTIONS(5267), - [anon_sym_BSLASHcitet] = ACTIONS(5267), - [anon_sym_BSLASHcitep] = ACTIONS(5267), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteyear] = ACTIONS(5267), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitedate] = ACTIONS(5267), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteurl] = ACTIONS(5267), - [anon_sym_BSLASHfullcite] = ACTIONS(5267), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5267), - [anon_sym_BSLASHcitealt] = ACTIONS(5267), - [anon_sym_BSLASHcitealp] = ACTIONS(5267), - [anon_sym_BSLASHcitetext] = ACTIONS(5267), - [anon_sym_BSLASHparencite] = ACTIONS(5267), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHParencite] = ACTIONS(5267), - [anon_sym_BSLASHfootcite] = ACTIONS(5267), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5267), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5267), - [anon_sym_BSLASHtextcite] = ACTIONS(5267), - [anon_sym_BSLASHTextcite] = ACTIONS(5267), - [anon_sym_BSLASHsmartcite] = ACTIONS(5267), - [anon_sym_BSLASHSmartcite] = ACTIONS(5267), - [anon_sym_BSLASHsupercite] = ACTIONS(5267), - [anon_sym_BSLASHautocite] = ACTIONS(5267), - [anon_sym_BSLASHAutocite] = ACTIONS(5267), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHvolcite] = ACTIONS(5267), - [anon_sym_BSLASHVolcite] = ACTIONS(5267), - [anon_sym_BSLASHpvolcite] = ACTIONS(5267), - [anon_sym_BSLASHPvolcite] = ACTIONS(5267), - [anon_sym_BSLASHfvolcite] = ACTIONS(5267), - [anon_sym_BSLASHftvolcite] = ACTIONS(5267), - [anon_sym_BSLASHsvolcite] = ACTIONS(5267), - [anon_sym_BSLASHSvolcite] = ACTIONS(5267), - [anon_sym_BSLASHtvolcite] = ACTIONS(5267), - [anon_sym_BSLASHTvolcite] = ACTIONS(5267), - [anon_sym_BSLASHavolcite] = ACTIONS(5267), - [anon_sym_BSLASHAvolcite] = ACTIONS(5267), - [anon_sym_BSLASHnotecite] = ACTIONS(5267), - [anon_sym_BSLASHNotecite] = ACTIONS(5267), - [anon_sym_BSLASHpnotecite] = ACTIONS(5267), - [anon_sym_BSLASHPnotecite] = ACTIONS(5267), - [anon_sym_BSLASHfnotecite] = ACTIONS(5267), - [anon_sym_BSLASHlabel] = ACTIONS(5267), - [anon_sym_BSLASHref] = ACTIONS(5267), - [anon_sym_BSLASHeqref] = ACTIONS(5267), - [anon_sym_BSLASHvref] = ACTIONS(5267), - [anon_sym_BSLASHVref] = ACTIONS(5267), - [anon_sym_BSLASHautoref] = ACTIONS(5267), - [anon_sym_BSLASHpageref] = ACTIONS(5267), - [anon_sym_BSLASHcref] = ACTIONS(5267), - [anon_sym_BSLASHCref] = ACTIONS(5267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnameCref] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHlabelcref] = ACTIONS(5267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnewlabel] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5265), - [anon_sym_BSLASHdef] = ACTIONS(5267), - [anon_sym_BSLASHlet] = ACTIONS(5267), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5267), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5267), - [anon_sym_BSLASHgls] = ACTIONS(5267), - [anon_sym_BSLASHGls] = ACTIONS(5267), - [anon_sym_BSLASHGLS] = ACTIONS(5267), - [anon_sym_BSLASHglspl] = ACTIONS(5267), - [anon_sym_BSLASHGlspl] = ACTIONS(5267), - [anon_sym_BSLASHGLSpl] = ACTIONS(5267), - [anon_sym_BSLASHglsdisp] = ACTIONS(5267), - [anon_sym_BSLASHglslink] = ACTIONS(5267), - [anon_sym_BSLASHglstext] = ACTIONS(5267), - [anon_sym_BSLASHGlstext] = ACTIONS(5267), - [anon_sym_BSLASHGLStext] = ACTIONS(5267), - [anon_sym_BSLASHglsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5267), - [anon_sym_BSLASHglsplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSplural] = ACTIONS(5267), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHglsname] = ACTIONS(5267), - [anon_sym_BSLASHGlsname] = ACTIONS(5267), - [anon_sym_BSLASHGLSname] = ACTIONS(5267), - [anon_sym_BSLASHglssymbol] = ACTIONS(5267), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5267), - [anon_sym_BSLASHglsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5267), - [anon_sym_BSLASHglsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5267), - [anon_sym_BSLASHglsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5267), - [anon_sym_BSLASHglsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5267), - [anon_sym_BSLASHglsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5267), - [anon_sym_BSLASHnewacronym] = ACTIONS(5267), - [anon_sym_BSLASHacrshort] = ACTIONS(5267), - [anon_sym_BSLASHAcrshort] = ACTIONS(5267), - [anon_sym_BSLASHACRshort] = ACTIONS(5267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5267), - [anon_sym_BSLASHacrlong] = ACTIONS(5267), - [anon_sym_BSLASHAcrlong] = ACTIONS(5267), - [anon_sym_BSLASHACRlong] = ACTIONS(5267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5267), - [anon_sym_BSLASHacrfull] = ACTIONS(5267), - [anon_sym_BSLASHAcrfull] = ACTIONS(5267), - [anon_sym_BSLASHACRfull] = ACTIONS(5267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5267), - [anon_sym_BSLASHacs] = ACTIONS(5267), - [anon_sym_BSLASHAcs] = ACTIONS(5267), - [anon_sym_BSLASHacsp] = ACTIONS(5267), - [anon_sym_BSLASHAcsp] = ACTIONS(5267), - [anon_sym_BSLASHacl] = ACTIONS(5267), - [anon_sym_BSLASHAcl] = ACTIONS(5267), - [anon_sym_BSLASHaclp] = ACTIONS(5267), - [anon_sym_BSLASHAclp] = ACTIONS(5267), - [anon_sym_BSLASHacf] = ACTIONS(5267), - [anon_sym_BSLASHAcf] = ACTIONS(5267), - [anon_sym_BSLASHacfp] = ACTIONS(5267), - [anon_sym_BSLASHAcfp] = ACTIONS(5267), - [anon_sym_BSLASHac] = ACTIONS(5267), - [anon_sym_BSLASHAc] = ACTIONS(5267), - [anon_sym_BSLASHacp] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5267), - [anon_sym_BSLASHcolor] = ACTIONS(5267), - [anon_sym_BSLASHcolorbox] = ACTIONS(5267), - [anon_sym_BSLASHtextcolor] = ACTIONS(5267), - [anon_sym_BSLASHpagecolor] = ACTIONS(5267), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5267), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5267), - }, - [1420] = { - [sym_command_name] = ACTIONS(5271), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5271), - [anon_sym_LPAREN] = ACTIONS(5269), - [anon_sym_RPAREN] = ACTIONS(5269), - [anon_sym_LBRACK] = ACTIONS(5269), - [anon_sym_RBRACK] = ACTIONS(5269), - [anon_sym_COMMA] = ACTIONS(5269), - [anon_sym_LBRACE] = ACTIONS(5269), - [anon_sym_RBRACE] = ACTIONS(5269), - [sym_word] = ACTIONS(5271), - [sym_placeholder] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5271), - [anon_sym_DASH] = ACTIONS(5271), - [anon_sym_STAR] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5271), - [anon_sym_CARET] = ACTIONS(5271), - [anon_sym__] = ACTIONS(5271), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_GT] = ACTIONS(5271), - [anon_sym_BANG] = ACTIONS(5271), - [anon_sym_PIPE] = ACTIONS(5271), - [anon_sym_COLON] = ACTIONS(5271), - [anon_sym_SQUOTE] = ACTIONS(5271), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5269), - [anon_sym_DOLLAR] = ACTIONS(5271), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5269), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5269), - [anon_sym_BSLASHusepackage] = ACTIONS(5271), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5271), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5271), - [anon_sym_BSLASHinclude] = ACTIONS(5271), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5271), - [anon_sym_BSLASHinput] = ACTIONS(5271), - [anon_sym_BSLASHsubfile] = ACTIONS(5271), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5271), - [anon_sym_BSLASHbibliography] = ACTIONS(5271), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5271), - [anon_sym_BSLASHincludesvg] = ACTIONS(5271), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5271), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5271), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5271), - [anon_sym_BSLASHimport] = ACTIONS(5271), - [anon_sym_BSLASHsubimport] = ACTIONS(5271), - [anon_sym_BSLASHinputfrom] = ACTIONS(5271), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5271), - [anon_sym_BSLASHincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHcaption] = ACTIONS(5271), - [anon_sym_BSLASHcite] = ACTIONS(5271), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCite] = ACTIONS(5271), - [anon_sym_BSLASHnocite] = ACTIONS(5271), - [anon_sym_BSLASHcitet] = ACTIONS(5271), - [anon_sym_BSLASHcitep] = ACTIONS(5271), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor] = ACTIONS(5271), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5271), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle] = ACTIONS(5271), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteyear] = ACTIONS(5271), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitedate] = ACTIONS(5271), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteurl] = ACTIONS(5271), - [anon_sym_BSLASHfullcite] = ACTIONS(5271), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5271), - [anon_sym_BSLASHcitealt] = ACTIONS(5271), - [anon_sym_BSLASHcitealp] = ACTIONS(5271), - [anon_sym_BSLASHcitetext] = ACTIONS(5271), - [anon_sym_BSLASHparencite] = ACTIONS(5271), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHParencite] = ACTIONS(5271), - [anon_sym_BSLASHfootcite] = ACTIONS(5271), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5271), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5271), - [anon_sym_BSLASHtextcite] = ACTIONS(5271), - [anon_sym_BSLASHTextcite] = ACTIONS(5271), - [anon_sym_BSLASHsmartcite] = ACTIONS(5271), - [anon_sym_BSLASHSmartcite] = ACTIONS(5271), - [anon_sym_BSLASHsupercite] = ACTIONS(5271), - [anon_sym_BSLASHautocite] = ACTIONS(5271), - [anon_sym_BSLASHAutocite] = ACTIONS(5271), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHvolcite] = ACTIONS(5271), - [anon_sym_BSLASHVolcite] = ACTIONS(5271), - [anon_sym_BSLASHpvolcite] = ACTIONS(5271), - [anon_sym_BSLASHPvolcite] = ACTIONS(5271), - [anon_sym_BSLASHfvolcite] = ACTIONS(5271), - [anon_sym_BSLASHftvolcite] = ACTIONS(5271), - [anon_sym_BSLASHsvolcite] = ACTIONS(5271), - [anon_sym_BSLASHSvolcite] = ACTIONS(5271), - [anon_sym_BSLASHtvolcite] = ACTIONS(5271), - [anon_sym_BSLASHTvolcite] = ACTIONS(5271), - [anon_sym_BSLASHavolcite] = ACTIONS(5271), - [anon_sym_BSLASHAvolcite] = ACTIONS(5271), - [anon_sym_BSLASHnotecite] = ACTIONS(5271), - [anon_sym_BSLASHNotecite] = ACTIONS(5271), - [anon_sym_BSLASHpnotecite] = ACTIONS(5271), - [anon_sym_BSLASHPnotecite] = ACTIONS(5271), - [anon_sym_BSLASHfnotecite] = ACTIONS(5271), - [anon_sym_BSLASHlabel] = ACTIONS(5271), - [anon_sym_BSLASHref] = ACTIONS(5271), - [anon_sym_BSLASHeqref] = ACTIONS(5271), - [anon_sym_BSLASHvref] = ACTIONS(5271), - [anon_sym_BSLASHVref] = ACTIONS(5271), - [anon_sym_BSLASHautoref] = ACTIONS(5271), - [anon_sym_BSLASHpageref] = ACTIONS(5271), - [anon_sym_BSLASHcref] = ACTIONS(5271), - [anon_sym_BSLASHCref] = ACTIONS(5271), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnameCref] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHlabelcref] = ACTIONS(5271), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange] = ACTIONS(5271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnewlabel] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5271), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5271), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5271), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5269), - [anon_sym_BSLASHdef] = ACTIONS(5271), - [anon_sym_BSLASHlet] = ACTIONS(5271), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5271), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5271), - [anon_sym_BSLASHgls] = ACTIONS(5271), - [anon_sym_BSLASHGls] = ACTIONS(5271), - [anon_sym_BSLASHGLS] = ACTIONS(5271), - [anon_sym_BSLASHglspl] = ACTIONS(5271), - [anon_sym_BSLASHGlspl] = ACTIONS(5271), - [anon_sym_BSLASHGLSpl] = ACTIONS(5271), - [anon_sym_BSLASHglsdisp] = ACTIONS(5271), - [anon_sym_BSLASHglslink] = ACTIONS(5271), - [anon_sym_BSLASHglstext] = ACTIONS(5271), - [anon_sym_BSLASHGlstext] = ACTIONS(5271), - [anon_sym_BSLASHGLStext] = ACTIONS(5271), - [anon_sym_BSLASHglsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5271), - [anon_sym_BSLASHglsplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSplural] = ACTIONS(5271), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHglsname] = ACTIONS(5271), - [anon_sym_BSLASHGlsname] = ACTIONS(5271), - [anon_sym_BSLASHGLSname] = ACTIONS(5271), - [anon_sym_BSLASHglssymbol] = ACTIONS(5271), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5271), - [anon_sym_BSLASHglsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5271), - [anon_sym_BSLASHglsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5271), - [anon_sym_BSLASHglsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5271), - [anon_sym_BSLASHglsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5271), - [anon_sym_BSLASHglsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5271), - [anon_sym_BSLASHnewacronym] = ACTIONS(5271), - [anon_sym_BSLASHacrshort] = ACTIONS(5271), - [anon_sym_BSLASHAcrshort] = ACTIONS(5271), - [anon_sym_BSLASHACRshort] = ACTIONS(5271), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5271), - [anon_sym_BSLASHacrlong] = ACTIONS(5271), - [anon_sym_BSLASHAcrlong] = ACTIONS(5271), - [anon_sym_BSLASHACRlong] = ACTIONS(5271), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5271), - [anon_sym_BSLASHacrfull] = ACTIONS(5271), - [anon_sym_BSLASHAcrfull] = ACTIONS(5271), - [anon_sym_BSLASHACRfull] = ACTIONS(5271), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5271), - [anon_sym_BSLASHacs] = ACTIONS(5271), - [anon_sym_BSLASHAcs] = ACTIONS(5271), - [anon_sym_BSLASHacsp] = ACTIONS(5271), - [anon_sym_BSLASHAcsp] = ACTIONS(5271), - [anon_sym_BSLASHacl] = ACTIONS(5271), - [anon_sym_BSLASHAcl] = ACTIONS(5271), - [anon_sym_BSLASHaclp] = ACTIONS(5271), - [anon_sym_BSLASHAclp] = ACTIONS(5271), - [anon_sym_BSLASHacf] = ACTIONS(5271), - [anon_sym_BSLASHAcf] = ACTIONS(5271), - [anon_sym_BSLASHacfp] = ACTIONS(5271), - [anon_sym_BSLASHAcfp] = ACTIONS(5271), - [anon_sym_BSLASHac] = ACTIONS(5271), - [anon_sym_BSLASHAc] = ACTIONS(5271), - [anon_sym_BSLASHacp] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5271), - [anon_sym_BSLASHcolor] = ACTIONS(5271), - [anon_sym_BSLASHcolorbox] = ACTIONS(5271), - [anon_sym_BSLASHtextcolor] = ACTIONS(5271), - [anon_sym_BSLASHpagecolor] = ACTIONS(5271), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5271), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5271), + [anon_sym_BSLASHiffalse] = ACTIONS(5021), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [sym_word] = ACTIONS(5021), + [sym_placeholder] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5021), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_CARET] = ACTIONS(5021), + [anon_sym__] = ACTIONS(5021), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_COLON] = ACTIONS(5021), + [anon_sym_SQUOTE] = ACTIONS(5021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), + [anon_sym_DOLLAR] = ACTIONS(5021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), + [anon_sym_BSLASHbegin] = ACTIONS(5021), + [anon_sym_BSLASHusepackage] = ACTIONS(5021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), + [anon_sym_BSLASHinclude] = ACTIONS(5021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), + [anon_sym_BSLASHinput] = ACTIONS(5021), + [anon_sym_BSLASHsubfile] = ACTIONS(5021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), + [anon_sym_BSLASHbibliography] = ACTIONS(5021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), + [anon_sym_BSLASHincludesvg] = ACTIONS(5021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), + [anon_sym_BSLASHimport] = ACTIONS(5021), + [anon_sym_BSLASHsubimport] = ACTIONS(5021), + [anon_sym_BSLASHinputfrom] = ACTIONS(5021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), + [anon_sym_BSLASHincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHcaption] = ACTIONS(5021), + [anon_sym_BSLASHcite] = ACTIONS(5021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCite] = ACTIONS(5021), + [anon_sym_BSLASHnocite] = ACTIONS(5021), + [anon_sym_BSLASHcitet] = ACTIONS(5021), + [anon_sym_BSLASHcitep] = ACTIONS(5021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteauthor] = ACTIONS(5021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitetitle] = ACTIONS(5021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteyear] = ACTIONS(5021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitedate] = ACTIONS(5021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteurl] = ACTIONS(5021), + [anon_sym_BSLASHfullcite] = ACTIONS(5021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), + [anon_sym_BSLASHcitealt] = ACTIONS(5021), + [anon_sym_BSLASHcitealp] = ACTIONS(5021), + [anon_sym_BSLASHcitetext] = ACTIONS(5021), + [anon_sym_BSLASHparencite] = ACTIONS(5021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHParencite] = ACTIONS(5021), + [anon_sym_BSLASHfootcite] = ACTIONS(5021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), + [anon_sym_BSLASHtextcite] = ACTIONS(5021), + [anon_sym_BSLASHTextcite] = ACTIONS(5021), + [anon_sym_BSLASHsmartcite] = ACTIONS(5021), + [anon_sym_BSLASHSmartcite] = ACTIONS(5021), + [anon_sym_BSLASHsupercite] = ACTIONS(5021), + [anon_sym_BSLASHautocite] = ACTIONS(5021), + [anon_sym_BSLASHAutocite] = ACTIONS(5021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHvolcite] = ACTIONS(5021), + [anon_sym_BSLASHVolcite] = ACTIONS(5021), + [anon_sym_BSLASHpvolcite] = ACTIONS(5021), + [anon_sym_BSLASHPvolcite] = ACTIONS(5021), + [anon_sym_BSLASHfvolcite] = ACTIONS(5021), + [anon_sym_BSLASHftvolcite] = ACTIONS(5021), + [anon_sym_BSLASHsvolcite] = ACTIONS(5021), + [anon_sym_BSLASHSvolcite] = ACTIONS(5021), + [anon_sym_BSLASHtvolcite] = ACTIONS(5021), + [anon_sym_BSLASHTvolcite] = ACTIONS(5021), + [anon_sym_BSLASHavolcite] = ACTIONS(5021), + [anon_sym_BSLASHAvolcite] = ACTIONS(5021), + [anon_sym_BSLASHnotecite] = ACTIONS(5021), + [anon_sym_BSLASHNotecite] = ACTIONS(5021), + [anon_sym_BSLASHpnotecite] = ACTIONS(5021), + [anon_sym_BSLASHPnotecite] = ACTIONS(5021), + [anon_sym_BSLASHfnotecite] = ACTIONS(5021), + [anon_sym_BSLASHlabel] = ACTIONS(5021), + [anon_sym_BSLASHref] = ACTIONS(5021), + [anon_sym_BSLASHeqref] = ACTIONS(5021), + [anon_sym_BSLASHvref] = ACTIONS(5021), + [anon_sym_BSLASHVref] = ACTIONS(5021), + [anon_sym_BSLASHautoref] = ACTIONS(5021), + [anon_sym_BSLASHpageref] = ACTIONS(5021), + [anon_sym_BSLASHcref] = ACTIONS(5021), + [anon_sym_BSLASHCref] = ACTIONS(5021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnameCref] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHlabelcref] = ACTIONS(5021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCrefrange] = ACTIONS(5021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnewlabel] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), + [anon_sym_BSLASHdef] = ACTIONS(5021), + [anon_sym_BSLASHlet] = ACTIONS(5021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), + [anon_sym_BSLASHgls] = ACTIONS(5021), + [anon_sym_BSLASHGls] = ACTIONS(5021), + [anon_sym_BSLASHGLS] = ACTIONS(5021), + [anon_sym_BSLASHglspl] = ACTIONS(5021), + [anon_sym_BSLASHGlspl] = ACTIONS(5021), + [anon_sym_BSLASHGLSpl] = ACTIONS(5021), + [anon_sym_BSLASHglsdisp] = ACTIONS(5021), + [anon_sym_BSLASHglslink] = ACTIONS(5021), + [anon_sym_BSLASHglstext] = ACTIONS(5021), + [anon_sym_BSLASHGlstext] = ACTIONS(5021), + [anon_sym_BSLASHGLStext] = ACTIONS(5021), + [anon_sym_BSLASHglsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), + [anon_sym_BSLASHglsplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSplural] = ACTIONS(5021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHglsname] = ACTIONS(5021), + [anon_sym_BSLASHGlsname] = ACTIONS(5021), + [anon_sym_BSLASHGLSname] = ACTIONS(5021), + [anon_sym_BSLASHglssymbol] = ACTIONS(5021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), + [anon_sym_BSLASHglsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), + [anon_sym_BSLASHglsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), + [anon_sym_BSLASHglsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), + [anon_sym_BSLASHglsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), + [anon_sym_BSLASHglsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), + [anon_sym_BSLASHnewacronym] = ACTIONS(5021), + [anon_sym_BSLASHacrshort] = ACTIONS(5021), + [anon_sym_BSLASHAcrshort] = ACTIONS(5021), + [anon_sym_BSLASHACRshort] = ACTIONS(5021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), + [anon_sym_BSLASHacrlong] = ACTIONS(5021), + [anon_sym_BSLASHAcrlong] = ACTIONS(5021), + [anon_sym_BSLASHACRlong] = ACTIONS(5021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), + [anon_sym_BSLASHacrfull] = ACTIONS(5021), + [anon_sym_BSLASHAcrfull] = ACTIONS(5021), + [anon_sym_BSLASHACRfull] = ACTIONS(5021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), + [anon_sym_BSLASHacs] = ACTIONS(5021), + [anon_sym_BSLASHAcs] = ACTIONS(5021), + [anon_sym_BSLASHacsp] = ACTIONS(5021), + [anon_sym_BSLASHAcsp] = ACTIONS(5021), + [anon_sym_BSLASHacl] = ACTIONS(5021), + [anon_sym_BSLASHAcl] = ACTIONS(5021), + [anon_sym_BSLASHaclp] = ACTIONS(5021), + [anon_sym_BSLASHAclp] = ACTIONS(5021), + [anon_sym_BSLASHacf] = ACTIONS(5021), + [anon_sym_BSLASHAcf] = ACTIONS(5021), + [anon_sym_BSLASHacfp] = ACTIONS(5021), + [anon_sym_BSLASHAcfp] = ACTIONS(5021), + [anon_sym_BSLASHac] = ACTIONS(5021), + [anon_sym_BSLASHAc] = ACTIONS(5021), + [anon_sym_BSLASHacp] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), + [anon_sym_BSLASHcolor] = ACTIONS(5021), + [anon_sym_BSLASHcolorbox] = ACTIONS(5021), + [anon_sym_BSLASHtextcolor] = ACTIONS(5021), + [anon_sym_BSLASHpagecolor] = ACTIONS(5021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHtext] = ACTIONS(5021), + [anon_sym_BSLASHintertext] = ACTIONS(5021), + [anon_sym_shortintertext] = ACTIONS(5021), }, - [1421] = { - [sym_command_name] = ACTIONS(5275), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5275), - [anon_sym_LPAREN] = ACTIONS(5273), - [anon_sym_RPAREN] = ACTIONS(5273), - [anon_sym_LBRACK] = ACTIONS(5273), - [anon_sym_RBRACK] = ACTIONS(5273), - [anon_sym_COMMA] = ACTIONS(5273), - [anon_sym_LBRACE] = ACTIONS(5273), - [anon_sym_RBRACE] = ACTIONS(5273), - [sym_word] = ACTIONS(5275), - [sym_placeholder] = ACTIONS(5273), - [anon_sym_PLUS] = ACTIONS(5275), - [anon_sym_DASH] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(5275), - [anon_sym_SLASH] = ACTIONS(5275), - [anon_sym_CARET] = ACTIONS(5275), - [anon_sym__] = ACTIONS(5275), - [anon_sym_LT] = ACTIONS(5275), - [anon_sym_GT] = ACTIONS(5275), - [anon_sym_BANG] = ACTIONS(5275), - [anon_sym_PIPE] = ACTIONS(5275), - [anon_sym_COLON] = ACTIONS(5275), - [anon_sym_SQUOTE] = ACTIONS(5275), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5273), - [anon_sym_DOLLAR] = ACTIONS(5275), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5273), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5273), - [anon_sym_BSLASHusepackage] = ACTIONS(5275), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5275), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5275), - [anon_sym_BSLASHinclude] = ACTIONS(5275), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5275), - [anon_sym_BSLASHinput] = ACTIONS(5275), - [anon_sym_BSLASHsubfile] = ACTIONS(5275), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5275), - [anon_sym_BSLASHbibliography] = ACTIONS(5275), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5275), - [anon_sym_BSLASHincludesvg] = ACTIONS(5275), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5275), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5275), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5275), - [anon_sym_BSLASHimport] = ACTIONS(5275), - [anon_sym_BSLASHsubimport] = ACTIONS(5275), - [anon_sym_BSLASHinputfrom] = ACTIONS(5275), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5275), - [anon_sym_BSLASHincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHcaption] = ACTIONS(5275), - [anon_sym_BSLASHcite] = ACTIONS(5275), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCite] = ACTIONS(5275), - [anon_sym_BSLASHnocite] = ACTIONS(5275), - [anon_sym_BSLASHcitet] = ACTIONS(5275), - [anon_sym_BSLASHcitep] = ACTIONS(5275), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteauthor] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitetitle] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteyear] = ACTIONS(5275), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitedate] = ACTIONS(5275), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteurl] = ACTIONS(5275), - [anon_sym_BSLASHfullcite] = ACTIONS(5275), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5275), - [anon_sym_BSLASHcitealt] = ACTIONS(5275), - [anon_sym_BSLASHcitealp] = ACTIONS(5275), - [anon_sym_BSLASHcitetext] = ACTIONS(5275), - [anon_sym_BSLASHparencite] = ACTIONS(5275), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHParencite] = ACTIONS(5275), - [anon_sym_BSLASHfootcite] = ACTIONS(5275), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5275), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5275), - [anon_sym_BSLASHtextcite] = ACTIONS(5275), - [anon_sym_BSLASHTextcite] = ACTIONS(5275), - [anon_sym_BSLASHsmartcite] = ACTIONS(5275), - [anon_sym_BSLASHSmartcite] = ACTIONS(5275), - [anon_sym_BSLASHsupercite] = ACTIONS(5275), - [anon_sym_BSLASHautocite] = ACTIONS(5275), - [anon_sym_BSLASHAutocite] = ACTIONS(5275), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHvolcite] = ACTIONS(5275), - [anon_sym_BSLASHVolcite] = ACTIONS(5275), - [anon_sym_BSLASHpvolcite] = ACTIONS(5275), - [anon_sym_BSLASHPvolcite] = ACTIONS(5275), - [anon_sym_BSLASHfvolcite] = ACTIONS(5275), - [anon_sym_BSLASHftvolcite] = ACTIONS(5275), - [anon_sym_BSLASHsvolcite] = ACTIONS(5275), - [anon_sym_BSLASHSvolcite] = ACTIONS(5275), - [anon_sym_BSLASHtvolcite] = ACTIONS(5275), - [anon_sym_BSLASHTvolcite] = ACTIONS(5275), - [anon_sym_BSLASHavolcite] = ACTIONS(5275), - [anon_sym_BSLASHAvolcite] = ACTIONS(5275), - [anon_sym_BSLASHnotecite] = ACTIONS(5275), - [anon_sym_BSLASHNotecite] = ACTIONS(5275), - [anon_sym_BSLASHpnotecite] = ACTIONS(5275), - [anon_sym_BSLASHPnotecite] = ACTIONS(5275), - [anon_sym_BSLASHfnotecite] = ACTIONS(5275), - [anon_sym_BSLASHlabel] = ACTIONS(5275), - [anon_sym_BSLASHref] = ACTIONS(5275), - [anon_sym_BSLASHeqref] = ACTIONS(5275), - [anon_sym_BSLASHvref] = ACTIONS(5275), - [anon_sym_BSLASHVref] = ACTIONS(5275), - [anon_sym_BSLASHautoref] = ACTIONS(5275), - [anon_sym_BSLASHpageref] = ACTIONS(5275), - [anon_sym_BSLASHcref] = ACTIONS(5275), - [anon_sym_BSLASHCref] = ACTIONS(5275), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnameCref] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHlabelcref] = ACTIONS(5275), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCrefrange] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnewlabel] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5273), - [anon_sym_BSLASHdef] = ACTIONS(5275), - [anon_sym_BSLASHlet] = ACTIONS(5275), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5275), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5275), - [anon_sym_BSLASHgls] = ACTIONS(5275), - [anon_sym_BSLASHGls] = ACTIONS(5275), - [anon_sym_BSLASHGLS] = ACTIONS(5275), - [anon_sym_BSLASHglspl] = ACTIONS(5275), - [anon_sym_BSLASHGlspl] = ACTIONS(5275), - [anon_sym_BSLASHGLSpl] = ACTIONS(5275), - [anon_sym_BSLASHglsdisp] = ACTIONS(5275), - [anon_sym_BSLASHglslink] = ACTIONS(5275), - [anon_sym_BSLASHglstext] = ACTIONS(5275), - [anon_sym_BSLASHGlstext] = ACTIONS(5275), - [anon_sym_BSLASHGLStext] = ACTIONS(5275), - [anon_sym_BSLASHglsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5275), - [anon_sym_BSLASHglsplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSplural] = ACTIONS(5275), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHglsname] = ACTIONS(5275), - [anon_sym_BSLASHGlsname] = ACTIONS(5275), - [anon_sym_BSLASHGLSname] = ACTIONS(5275), - [anon_sym_BSLASHglssymbol] = ACTIONS(5275), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5275), - [anon_sym_BSLASHglsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5275), - [anon_sym_BSLASHglsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5275), - [anon_sym_BSLASHglsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5275), - [anon_sym_BSLASHglsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5275), - [anon_sym_BSLASHglsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5275), - [anon_sym_BSLASHnewacronym] = ACTIONS(5275), - [anon_sym_BSLASHacrshort] = ACTIONS(5275), - [anon_sym_BSLASHAcrshort] = ACTIONS(5275), - [anon_sym_BSLASHACRshort] = ACTIONS(5275), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5275), - [anon_sym_BSLASHacrlong] = ACTIONS(5275), - [anon_sym_BSLASHAcrlong] = ACTIONS(5275), - [anon_sym_BSLASHACRlong] = ACTIONS(5275), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5275), - [anon_sym_BSLASHacrfull] = ACTIONS(5275), - [anon_sym_BSLASHAcrfull] = ACTIONS(5275), - [anon_sym_BSLASHACRfull] = ACTIONS(5275), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5275), - [anon_sym_BSLASHacs] = ACTIONS(5275), - [anon_sym_BSLASHAcs] = ACTIONS(5275), - [anon_sym_BSLASHacsp] = ACTIONS(5275), - [anon_sym_BSLASHAcsp] = ACTIONS(5275), - [anon_sym_BSLASHacl] = ACTIONS(5275), - [anon_sym_BSLASHAcl] = ACTIONS(5275), - [anon_sym_BSLASHaclp] = ACTIONS(5275), - [anon_sym_BSLASHAclp] = ACTIONS(5275), - [anon_sym_BSLASHacf] = ACTIONS(5275), - [anon_sym_BSLASHAcf] = ACTIONS(5275), - [anon_sym_BSLASHacfp] = ACTIONS(5275), - [anon_sym_BSLASHAcfp] = ACTIONS(5275), - [anon_sym_BSLASHac] = ACTIONS(5275), - [anon_sym_BSLASHAc] = ACTIONS(5275), - [anon_sym_BSLASHacp] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5275), - [anon_sym_BSLASHcolor] = ACTIONS(5275), - [anon_sym_BSLASHcolorbox] = ACTIONS(5275), - [anon_sym_BSLASHtextcolor] = ACTIONS(5275), - [anon_sym_BSLASHpagecolor] = ACTIONS(5275), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5275), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5275), + [1353] = { + [sym_command_name] = ACTIONS(5017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5017), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_RPAREN] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_RBRACK] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_EQ] = ACTIONS(5015), + [anon_sym_LBRACE] = ACTIONS(5015), + [sym_word] = ACTIONS(5017), + [sym_placeholder] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5017), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_CARET] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5017), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_COLON] = ACTIONS(5017), + [anon_sym_SQUOTE] = ACTIONS(5017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), + [anon_sym_DOLLAR] = ACTIONS(5017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), + [anon_sym_BSLASHbegin] = ACTIONS(5017), + [anon_sym_BSLASHusepackage] = ACTIONS(5017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), + [anon_sym_BSLASHinclude] = ACTIONS(5017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), + [anon_sym_BSLASHinput] = ACTIONS(5017), + [anon_sym_BSLASHsubfile] = ACTIONS(5017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), + [anon_sym_BSLASHbibliography] = ACTIONS(5017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), + [anon_sym_BSLASHincludesvg] = ACTIONS(5017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), + [anon_sym_BSLASHimport] = ACTIONS(5017), + [anon_sym_BSLASHsubimport] = ACTIONS(5017), + [anon_sym_BSLASHinputfrom] = ACTIONS(5017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), + [anon_sym_BSLASHincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHcaption] = ACTIONS(5017), + [anon_sym_BSLASHcite] = ACTIONS(5017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCite] = ACTIONS(5017), + [anon_sym_BSLASHnocite] = ACTIONS(5017), + [anon_sym_BSLASHcitet] = ACTIONS(5017), + [anon_sym_BSLASHcitep] = ACTIONS(5017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteauthor] = ACTIONS(5017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitetitle] = ACTIONS(5017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteyear] = ACTIONS(5017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitedate] = ACTIONS(5017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteurl] = ACTIONS(5017), + [anon_sym_BSLASHfullcite] = ACTIONS(5017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), + [anon_sym_BSLASHcitealt] = ACTIONS(5017), + [anon_sym_BSLASHcitealp] = ACTIONS(5017), + [anon_sym_BSLASHcitetext] = ACTIONS(5017), + [anon_sym_BSLASHparencite] = ACTIONS(5017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHParencite] = ACTIONS(5017), + [anon_sym_BSLASHfootcite] = ACTIONS(5017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), + [anon_sym_BSLASHtextcite] = ACTIONS(5017), + [anon_sym_BSLASHTextcite] = ACTIONS(5017), + [anon_sym_BSLASHsmartcite] = ACTIONS(5017), + [anon_sym_BSLASHSmartcite] = ACTIONS(5017), + [anon_sym_BSLASHsupercite] = ACTIONS(5017), + [anon_sym_BSLASHautocite] = ACTIONS(5017), + [anon_sym_BSLASHAutocite] = ACTIONS(5017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHvolcite] = ACTIONS(5017), + [anon_sym_BSLASHVolcite] = ACTIONS(5017), + [anon_sym_BSLASHpvolcite] = ACTIONS(5017), + [anon_sym_BSLASHPvolcite] = ACTIONS(5017), + [anon_sym_BSLASHfvolcite] = ACTIONS(5017), + [anon_sym_BSLASHftvolcite] = ACTIONS(5017), + [anon_sym_BSLASHsvolcite] = ACTIONS(5017), + [anon_sym_BSLASHSvolcite] = ACTIONS(5017), + [anon_sym_BSLASHtvolcite] = ACTIONS(5017), + [anon_sym_BSLASHTvolcite] = ACTIONS(5017), + [anon_sym_BSLASHavolcite] = ACTIONS(5017), + [anon_sym_BSLASHAvolcite] = ACTIONS(5017), + [anon_sym_BSLASHnotecite] = ACTIONS(5017), + [anon_sym_BSLASHNotecite] = ACTIONS(5017), + [anon_sym_BSLASHpnotecite] = ACTIONS(5017), + [anon_sym_BSLASHPnotecite] = ACTIONS(5017), + [anon_sym_BSLASHfnotecite] = ACTIONS(5017), + [anon_sym_BSLASHlabel] = ACTIONS(5017), + [anon_sym_BSLASHref] = ACTIONS(5017), + [anon_sym_BSLASHeqref] = ACTIONS(5017), + [anon_sym_BSLASHvref] = ACTIONS(5017), + [anon_sym_BSLASHVref] = ACTIONS(5017), + [anon_sym_BSLASHautoref] = ACTIONS(5017), + [anon_sym_BSLASHpageref] = ACTIONS(5017), + [anon_sym_BSLASHcref] = ACTIONS(5017), + [anon_sym_BSLASHCref] = ACTIONS(5017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnameCref] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHlabelcref] = ACTIONS(5017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCrefrange] = ACTIONS(5017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnewlabel] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), + [anon_sym_BSLASHdef] = ACTIONS(5017), + [anon_sym_BSLASHlet] = ACTIONS(5017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), + [anon_sym_BSLASHgls] = ACTIONS(5017), + [anon_sym_BSLASHGls] = ACTIONS(5017), + [anon_sym_BSLASHGLS] = ACTIONS(5017), + [anon_sym_BSLASHglspl] = ACTIONS(5017), + [anon_sym_BSLASHGlspl] = ACTIONS(5017), + [anon_sym_BSLASHGLSpl] = ACTIONS(5017), + [anon_sym_BSLASHglsdisp] = ACTIONS(5017), + [anon_sym_BSLASHglslink] = ACTIONS(5017), + [anon_sym_BSLASHglstext] = ACTIONS(5017), + [anon_sym_BSLASHGlstext] = ACTIONS(5017), + [anon_sym_BSLASHGLStext] = ACTIONS(5017), + [anon_sym_BSLASHglsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), + [anon_sym_BSLASHglsplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSplural] = ACTIONS(5017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHglsname] = ACTIONS(5017), + [anon_sym_BSLASHGlsname] = ACTIONS(5017), + [anon_sym_BSLASHGLSname] = ACTIONS(5017), + [anon_sym_BSLASHglssymbol] = ACTIONS(5017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), + [anon_sym_BSLASHglsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), + [anon_sym_BSLASHglsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), + [anon_sym_BSLASHglsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), + [anon_sym_BSLASHglsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), + [anon_sym_BSLASHglsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), + [anon_sym_BSLASHnewacronym] = ACTIONS(5017), + [anon_sym_BSLASHacrshort] = ACTIONS(5017), + [anon_sym_BSLASHAcrshort] = ACTIONS(5017), + [anon_sym_BSLASHACRshort] = ACTIONS(5017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), + [anon_sym_BSLASHacrlong] = ACTIONS(5017), + [anon_sym_BSLASHAcrlong] = ACTIONS(5017), + [anon_sym_BSLASHACRlong] = ACTIONS(5017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), + [anon_sym_BSLASHacrfull] = ACTIONS(5017), + [anon_sym_BSLASHAcrfull] = ACTIONS(5017), + [anon_sym_BSLASHACRfull] = ACTIONS(5017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), + [anon_sym_BSLASHacs] = ACTIONS(5017), + [anon_sym_BSLASHAcs] = ACTIONS(5017), + [anon_sym_BSLASHacsp] = ACTIONS(5017), + [anon_sym_BSLASHAcsp] = ACTIONS(5017), + [anon_sym_BSLASHacl] = ACTIONS(5017), + [anon_sym_BSLASHAcl] = ACTIONS(5017), + [anon_sym_BSLASHaclp] = ACTIONS(5017), + [anon_sym_BSLASHAclp] = ACTIONS(5017), + [anon_sym_BSLASHacf] = ACTIONS(5017), + [anon_sym_BSLASHAcf] = ACTIONS(5017), + [anon_sym_BSLASHacfp] = ACTIONS(5017), + [anon_sym_BSLASHAcfp] = ACTIONS(5017), + [anon_sym_BSLASHac] = ACTIONS(5017), + [anon_sym_BSLASHAc] = ACTIONS(5017), + [anon_sym_BSLASHacp] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), + [anon_sym_BSLASHcolor] = ACTIONS(5017), + [anon_sym_BSLASHcolorbox] = ACTIONS(5017), + [anon_sym_BSLASHtextcolor] = ACTIONS(5017), + [anon_sym_BSLASHpagecolor] = ACTIONS(5017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), + [anon_sym_BSLASHtext] = ACTIONS(5017), + [anon_sym_BSLASHintertext] = ACTIONS(5017), + [anon_sym_shortintertext] = ACTIONS(5017), }, - [1422] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_LPAREN] = ACTIONS(5297), - [anon_sym_RPAREN] = ACTIONS(5297), - [anon_sym_LBRACK] = ACTIONS(5297), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_LBRACE] = ACTIONS(5297), - [anon_sym_RBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5297), - [anon_sym_DOLLAR] = ACTIONS(5299), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5297), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5297), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), + [1354] = { + [sym_command_name] = ACTIONS(5013), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5013), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_RBRACK] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_LBRACE] = ACTIONS(5011), + [sym_word] = ACTIONS(5013), + [sym_placeholder] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5013), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_CARET] = ACTIONS(5013), + [anon_sym__] = ACTIONS(5013), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_PIPE] = ACTIONS(5013), + [anon_sym_COLON] = ACTIONS(5013), + [anon_sym_SQUOTE] = ACTIONS(5013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), + [anon_sym_DOLLAR] = ACTIONS(5013), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), + [anon_sym_BSLASHbegin] = ACTIONS(5013), + [anon_sym_BSLASHusepackage] = ACTIONS(5013), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), + [anon_sym_BSLASHinclude] = ACTIONS(5013), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), + [anon_sym_BSLASHinput] = ACTIONS(5013), + [anon_sym_BSLASHsubfile] = ACTIONS(5013), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), + [anon_sym_BSLASHbibliography] = ACTIONS(5013), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), + [anon_sym_BSLASHincludesvg] = ACTIONS(5013), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), + [anon_sym_BSLASHimport] = ACTIONS(5013), + [anon_sym_BSLASHsubimport] = ACTIONS(5013), + [anon_sym_BSLASHinputfrom] = ACTIONS(5013), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), + [anon_sym_BSLASHincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHcaption] = ACTIONS(5013), + [anon_sym_BSLASHcite] = ACTIONS(5013), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCite] = ACTIONS(5013), + [anon_sym_BSLASHnocite] = ACTIONS(5013), + [anon_sym_BSLASHcitet] = ACTIONS(5013), + [anon_sym_BSLASHcitep] = ACTIONS(5013), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteauthor] = ACTIONS(5013), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitetitle] = ACTIONS(5013), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteyear] = ACTIONS(5013), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitedate] = ACTIONS(5013), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteurl] = ACTIONS(5013), + [anon_sym_BSLASHfullcite] = ACTIONS(5013), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), + [anon_sym_BSLASHcitealt] = ACTIONS(5013), + [anon_sym_BSLASHcitealp] = ACTIONS(5013), + [anon_sym_BSLASHcitetext] = ACTIONS(5013), + [anon_sym_BSLASHparencite] = ACTIONS(5013), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHParencite] = ACTIONS(5013), + [anon_sym_BSLASHfootcite] = ACTIONS(5013), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), + [anon_sym_BSLASHtextcite] = ACTIONS(5013), + [anon_sym_BSLASHTextcite] = ACTIONS(5013), + [anon_sym_BSLASHsmartcite] = ACTIONS(5013), + [anon_sym_BSLASHSmartcite] = ACTIONS(5013), + [anon_sym_BSLASHsupercite] = ACTIONS(5013), + [anon_sym_BSLASHautocite] = ACTIONS(5013), + [anon_sym_BSLASHAutocite] = ACTIONS(5013), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHvolcite] = ACTIONS(5013), + [anon_sym_BSLASHVolcite] = ACTIONS(5013), + [anon_sym_BSLASHpvolcite] = ACTIONS(5013), + [anon_sym_BSLASHPvolcite] = ACTIONS(5013), + [anon_sym_BSLASHfvolcite] = ACTIONS(5013), + [anon_sym_BSLASHftvolcite] = ACTIONS(5013), + [anon_sym_BSLASHsvolcite] = ACTIONS(5013), + [anon_sym_BSLASHSvolcite] = ACTIONS(5013), + [anon_sym_BSLASHtvolcite] = ACTIONS(5013), + [anon_sym_BSLASHTvolcite] = ACTIONS(5013), + [anon_sym_BSLASHavolcite] = ACTIONS(5013), + [anon_sym_BSLASHAvolcite] = ACTIONS(5013), + [anon_sym_BSLASHnotecite] = ACTIONS(5013), + [anon_sym_BSLASHNotecite] = ACTIONS(5013), + [anon_sym_BSLASHpnotecite] = ACTIONS(5013), + [anon_sym_BSLASHPnotecite] = ACTIONS(5013), + [anon_sym_BSLASHfnotecite] = ACTIONS(5013), + [anon_sym_BSLASHlabel] = ACTIONS(5013), + [anon_sym_BSLASHref] = ACTIONS(5013), + [anon_sym_BSLASHeqref] = ACTIONS(5013), + [anon_sym_BSLASHvref] = ACTIONS(5013), + [anon_sym_BSLASHVref] = ACTIONS(5013), + [anon_sym_BSLASHautoref] = ACTIONS(5013), + [anon_sym_BSLASHpageref] = ACTIONS(5013), + [anon_sym_BSLASHcref] = ACTIONS(5013), + [anon_sym_BSLASHCref] = ACTIONS(5013), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnameCref] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHlabelcref] = ACTIONS(5013), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCrefrange] = ACTIONS(5013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnewlabel] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), + [anon_sym_BSLASHdef] = ACTIONS(5013), + [anon_sym_BSLASHlet] = ACTIONS(5013), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), + [anon_sym_BSLASHgls] = ACTIONS(5013), + [anon_sym_BSLASHGls] = ACTIONS(5013), + [anon_sym_BSLASHGLS] = ACTIONS(5013), + [anon_sym_BSLASHglspl] = ACTIONS(5013), + [anon_sym_BSLASHGlspl] = ACTIONS(5013), + [anon_sym_BSLASHGLSpl] = ACTIONS(5013), + [anon_sym_BSLASHglsdisp] = ACTIONS(5013), + [anon_sym_BSLASHglslink] = ACTIONS(5013), + [anon_sym_BSLASHglstext] = ACTIONS(5013), + [anon_sym_BSLASHGlstext] = ACTIONS(5013), + [anon_sym_BSLASHGLStext] = ACTIONS(5013), + [anon_sym_BSLASHglsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), + [anon_sym_BSLASHglsplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSplural] = ACTIONS(5013), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHglsname] = ACTIONS(5013), + [anon_sym_BSLASHGlsname] = ACTIONS(5013), + [anon_sym_BSLASHGLSname] = ACTIONS(5013), + [anon_sym_BSLASHglssymbol] = ACTIONS(5013), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), + [anon_sym_BSLASHglsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), + [anon_sym_BSLASHglsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), + [anon_sym_BSLASHglsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), + [anon_sym_BSLASHglsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), + [anon_sym_BSLASHglsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), + [anon_sym_BSLASHnewacronym] = ACTIONS(5013), + [anon_sym_BSLASHacrshort] = ACTIONS(5013), + [anon_sym_BSLASHAcrshort] = ACTIONS(5013), + [anon_sym_BSLASHACRshort] = ACTIONS(5013), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), + [anon_sym_BSLASHacrlong] = ACTIONS(5013), + [anon_sym_BSLASHAcrlong] = ACTIONS(5013), + [anon_sym_BSLASHACRlong] = ACTIONS(5013), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), + [anon_sym_BSLASHacrfull] = ACTIONS(5013), + [anon_sym_BSLASHAcrfull] = ACTIONS(5013), + [anon_sym_BSLASHACRfull] = ACTIONS(5013), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), + [anon_sym_BSLASHacs] = ACTIONS(5013), + [anon_sym_BSLASHAcs] = ACTIONS(5013), + [anon_sym_BSLASHacsp] = ACTIONS(5013), + [anon_sym_BSLASHAcsp] = ACTIONS(5013), + [anon_sym_BSLASHacl] = ACTIONS(5013), + [anon_sym_BSLASHAcl] = ACTIONS(5013), + [anon_sym_BSLASHaclp] = ACTIONS(5013), + [anon_sym_BSLASHAclp] = ACTIONS(5013), + [anon_sym_BSLASHacf] = ACTIONS(5013), + [anon_sym_BSLASHAcf] = ACTIONS(5013), + [anon_sym_BSLASHacfp] = ACTIONS(5013), + [anon_sym_BSLASHAcfp] = ACTIONS(5013), + [anon_sym_BSLASHac] = ACTIONS(5013), + [anon_sym_BSLASHAc] = ACTIONS(5013), + [anon_sym_BSLASHacp] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), + [anon_sym_BSLASHcolor] = ACTIONS(5013), + [anon_sym_BSLASHcolorbox] = ACTIONS(5013), + [anon_sym_BSLASHtextcolor] = ACTIONS(5013), + [anon_sym_BSLASHpagecolor] = ACTIONS(5013), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), + [anon_sym_BSLASHtext] = ACTIONS(5013), + [anon_sym_BSLASHintertext] = ACTIONS(5013), + [anon_sym_shortintertext] = ACTIONS(5013), }, - [1423] = { - [sym_command_name] = ACTIONS(5305), + [1355] = { + [sym_command_name] = ACTIONS(5003), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_LPAREN] = ACTIONS(5303), - [anon_sym_RPAREN] = ACTIONS(5303), - [anon_sym_LBRACK] = ACTIONS(5303), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_LBRACE] = ACTIONS(5303), - [anon_sym_RBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), - [anon_sym_DOLLAR] = ACTIONS(5305), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), - }, - [1424] = { - [sym_command_name] = ACTIONS(5321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5321), - [anon_sym_LPAREN] = ACTIONS(5319), - [anon_sym_RPAREN] = ACTIONS(5319), - [anon_sym_LBRACK] = ACTIONS(5319), - [anon_sym_RBRACK] = ACTIONS(5319), - [anon_sym_COMMA] = ACTIONS(5319), - [anon_sym_LBRACE] = ACTIONS(5319), - [anon_sym_RBRACE] = ACTIONS(5319), - [sym_word] = ACTIONS(5321), - [sym_placeholder] = ACTIONS(5319), - [anon_sym_PLUS] = ACTIONS(5321), - [anon_sym_DASH] = ACTIONS(5321), - [anon_sym_STAR] = ACTIONS(5321), - [anon_sym_SLASH] = ACTIONS(5321), - [anon_sym_CARET] = ACTIONS(5321), - [anon_sym__] = ACTIONS(5321), - [anon_sym_LT] = ACTIONS(5321), - [anon_sym_GT] = ACTIONS(5321), - [anon_sym_BANG] = ACTIONS(5321), - [anon_sym_PIPE] = ACTIONS(5321), - [anon_sym_COLON] = ACTIONS(5321), - [anon_sym_SQUOTE] = ACTIONS(5321), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5319), - [anon_sym_DOLLAR] = ACTIONS(5321), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5319), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5319), - [anon_sym_BSLASHusepackage] = ACTIONS(5321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5321), - [anon_sym_BSLASHinclude] = ACTIONS(5321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5321), - [anon_sym_BSLASHinput] = ACTIONS(5321), - [anon_sym_BSLASHsubfile] = ACTIONS(5321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5321), - [anon_sym_BSLASHbibliography] = ACTIONS(5321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5321), - [anon_sym_BSLASHincludesvg] = ACTIONS(5321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5321), - [anon_sym_BSLASHimport] = ACTIONS(5321), - [anon_sym_BSLASHsubimport] = ACTIONS(5321), - [anon_sym_BSLASHinputfrom] = ACTIONS(5321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5321), - [anon_sym_BSLASHincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHcaption] = ACTIONS(5321), - [anon_sym_BSLASHcite] = ACTIONS(5321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCite] = ACTIONS(5321), - [anon_sym_BSLASHnocite] = ACTIONS(5321), - [anon_sym_BSLASHcitet] = ACTIONS(5321), - [anon_sym_BSLASHcitep] = ACTIONS(5321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteyear] = ACTIONS(5321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitedate] = ACTIONS(5321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteurl] = ACTIONS(5321), - [anon_sym_BSLASHfullcite] = ACTIONS(5321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5321), - [anon_sym_BSLASHcitealt] = ACTIONS(5321), - [anon_sym_BSLASHcitealp] = ACTIONS(5321), - [anon_sym_BSLASHcitetext] = ACTIONS(5321), - [anon_sym_BSLASHparencite] = ACTIONS(5321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHParencite] = ACTIONS(5321), - [anon_sym_BSLASHfootcite] = ACTIONS(5321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5321), - [anon_sym_BSLASHtextcite] = ACTIONS(5321), - [anon_sym_BSLASHTextcite] = ACTIONS(5321), - [anon_sym_BSLASHsmartcite] = ACTIONS(5321), - [anon_sym_BSLASHSmartcite] = ACTIONS(5321), - [anon_sym_BSLASHsupercite] = ACTIONS(5321), - [anon_sym_BSLASHautocite] = ACTIONS(5321), - [anon_sym_BSLASHAutocite] = ACTIONS(5321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHvolcite] = ACTIONS(5321), - [anon_sym_BSLASHVolcite] = ACTIONS(5321), - [anon_sym_BSLASHpvolcite] = ACTIONS(5321), - [anon_sym_BSLASHPvolcite] = ACTIONS(5321), - [anon_sym_BSLASHfvolcite] = ACTIONS(5321), - [anon_sym_BSLASHftvolcite] = ACTIONS(5321), - [anon_sym_BSLASHsvolcite] = ACTIONS(5321), - [anon_sym_BSLASHSvolcite] = ACTIONS(5321), - [anon_sym_BSLASHtvolcite] = ACTIONS(5321), - [anon_sym_BSLASHTvolcite] = ACTIONS(5321), - [anon_sym_BSLASHavolcite] = ACTIONS(5321), - [anon_sym_BSLASHAvolcite] = ACTIONS(5321), - [anon_sym_BSLASHnotecite] = ACTIONS(5321), - [anon_sym_BSLASHNotecite] = ACTIONS(5321), - [anon_sym_BSLASHpnotecite] = ACTIONS(5321), - [anon_sym_BSLASHPnotecite] = ACTIONS(5321), - [anon_sym_BSLASHfnotecite] = ACTIONS(5321), - [anon_sym_BSLASHlabel] = ACTIONS(5321), - [anon_sym_BSLASHref] = ACTIONS(5321), - [anon_sym_BSLASHeqref] = ACTIONS(5321), - [anon_sym_BSLASHvref] = ACTIONS(5321), - [anon_sym_BSLASHVref] = ACTIONS(5321), - [anon_sym_BSLASHautoref] = ACTIONS(5321), - [anon_sym_BSLASHpageref] = ACTIONS(5321), - [anon_sym_BSLASHcref] = ACTIONS(5321), - [anon_sym_BSLASHCref] = ACTIONS(5321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnameCref] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHlabelcref] = ACTIONS(5321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnewlabel] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5319), - [anon_sym_BSLASHdef] = ACTIONS(5321), - [anon_sym_BSLASHlet] = ACTIONS(5321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5321), - [anon_sym_BSLASHgls] = ACTIONS(5321), - [anon_sym_BSLASHGls] = ACTIONS(5321), - [anon_sym_BSLASHGLS] = ACTIONS(5321), - [anon_sym_BSLASHglspl] = ACTIONS(5321), - [anon_sym_BSLASHGlspl] = ACTIONS(5321), - [anon_sym_BSLASHGLSpl] = ACTIONS(5321), - [anon_sym_BSLASHglsdisp] = ACTIONS(5321), - [anon_sym_BSLASHglslink] = ACTIONS(5321), - [anon_sym_BSLASHglstext] = ACTIONS(5321), - [anon_sym_BSLASHGlstext] = ACTIONS(5321), - [anon_sym_BSLASHGLStext] = ACTIONS(5321), - [anon_sym_BSLASHglsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5321), - [anon_sym_BSLASHglsplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSplural] = ACTIONS(5321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHglsname] = ACTIONS(5321), - [anon_sym_BSLASHGlsname] = ACTIONS(5321), - [anon_sym_BSLASHGLSname] = ACTIONS(5321), - [anon_sym_BSLASHglssymbol] = ACTIONS(5321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5321), - [anon_sym_BSLASHglsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5321), - [anon_sym_BSLASHglsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5321), - [anon_sym_BSLASHglsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5321), - [anon_sym_BSLASHglsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5321), - [anon_sym_BSLASHglsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5321), - [anon_sym_BSLASHnewacronym] = ACTIONS(5321), - [anon_sym_BSLASHacrshort] = ACTIONS(5321), - [anon_sym_BSLASHAcrshort] = ACTIONS(5321), - [anon_sym_BSLASHACRshort] = ACTIONS(5321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5321), - [anon_sym_BSLASHacrlong] = ACTIONS(5321), - [anon_sym_BSLASHAcrlong] = ACTIONS(5321), - [anon_sym_BSLASHACRlong] = ACTIONS(5321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5321), - [anon_sym_BSLASHacrfull] = ACTIONS(5321), - [anon_sym_BSLASHAcrfull] = ACTIONS(5321), - [anon_sym_BSLASHACRfull] = ACTIONS(5321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5321), - [anon_sym_BSLASHacs] = ACTIONS(5321), - [anon_sym_BSLASHAcs] = ACTIONS(5321), - [anon_sym_BSLASHacsp] = ACTIONS(5321), - [anon_sym_BSLASHAcsp] = ACTIONS(5321), - [anon_sym_BSLASHacl] = ACTIONS(5321), - [anon_sym_BSLASHAcl] = ACTIONS(5321), - [anon_sym_BSLASHaclp] = ACTIONS(5321), - [anon_sym_BSLASHAclp] = ACTIONS(5321), - [anon_sym_BSLASHacf] = ACTIONS(5321), - [anon_sym_BSLASHAcf] = ACTIONS(5321), - [anon_sym_BSLASHacfp] = ACTIONS(5321), - [anon_sym_BSLASHAcfp] = ACTIONS(5321), - [anon_sym_BSLASHac] = ACTIONS(5321), - [anon_sym_BSLASHAc] = ACTIONS(5321), - [anon_sym_BSLASHacp] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5321), - [anon_sym_BSLASHcolor] = ACTIONS(5321), - [anon_sym_BSLASHcolorbox] = ACTIONS(5321), - [anon_sym_BSLASHtextcolor] = ACTIONS(5321), - [anon_sym_BSLASHpagecolor] = ACTIONS(5321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5321), - }, - [1425] = { - [sym_command_name] = ACTIONS(5325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5325), - [anon_sym_LPAREN] = ACTIONS(5323), - [anon_sym_RPAREN] = ACTIONS(5323), - [anon_sym_LBRACK] = ACTIONS(5323), - [anon_sym_RBRACK] = ACTIONS(5323), - [anon_sym_COMMA] = ACTIONS(5323), - [anon_sym_LBRACE] = ACTIONS(5323), - [anon_sym_RBRACE] = ACTIONS(5323), - [sym_word] = ACTIONS(5325), - [sym_placeholder] = ACTIONS(5323), - [anon_sym_PLUS] = ACTIONS(5325), - [anon_sym_DASH] = ACTIONS(5325), - [anon_sym_STAR] = ACTIONS(5325), - [anon_sym_SLASH] = ACTIONS(5325), - [anon_sym_CARET] = ACTIONS(5325), - [anon_sym__] = ACTIONS(5325), - [anon_sym_LT] = ACTIONS(5325), - [anon_sym_GT] = ACTIONS(5325), - [anon_sym_BANG] = ACTIONS(5325), - [anon_sym_PIPE] = ACTIONS(5325), - [anon_sym_COLON] = ACTIONS(5325), - [anon_sym_SQUOTE] = ACTIONS(5325), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5323), - [anon_sym_DOLLAR] = ACTIONS(5325), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5323), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5323), - [anon_sym_BSLASHusepackage] = ACTIONS(5325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), - [anon_sym_BSLASHinclude] = ACTIONS(5325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5325), - [anon_sym_BSLASHinput] = ACTIONS(5325), - [anon_sym_BSLASHsubfile] = ACTIONS(5325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5325), - [anon_sym_BSLASHbibliography] = ACTIONS(5325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5325), - [anon_sym_BSLASHincludesvg] = ACTIONS(5325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5325), - [anon_sym_BSLASHimport] = ACTIONS(5325), - [anon_sym_BSLASHsubimport] = ACTIONS(5325), - [anon_sym_BSLASHinputfrom] = ACTIONS(5325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5325), - [anon_sym_BSLASHincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHcaption] = ACTIONS(5325), - [anon_sym_BSLASHcite] = ACTIONS(5325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCite] = ACTIONS(5325), - [anon_sym_BSLASHnocite] = ACTIONS(5325), - [anon_sym_BSLASHcitet] = ACTIONS(5325), - [anon_sym_BSLASHcitep] = ACTIONS(5325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteyear] = ACTIONS(5325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitedate] = ACTIONS(5325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteurl] = ACTIONS(5325), - [anon_sym_BSLASHfullcite] = ACTIONS(5325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5325), - [anon_sym_BSLASHcitealt] = ACTIONS(5325), - [anon_sym_BSLASHcitealp] = ACTIONS(5325), - [anon_sym_BSLASHcitetext] = ACTIONS(5325), - [anon_sym_BSLASHparencite] = ACTIONS(5325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHParencite] = ACTIONS(5325), - [anon_sym_BSLASHfootcite] = ACTIONS(5325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5325), - [anon_sym_BSLASHtextcite] = ACTIONS(5325), - [anon_sym_BSLASHTextcite] = ACTIONS(5325), - [anon_sym_BSLASHsmartcite] = ACTIONS(5325), - [anon_sym_BSLASHSmartcite] = ACTIONS(5325), - [anon_sym_BSLASHsupercite] = ACTIONS(5325), - [anon_sym_BSLASHautocite] = ACTIONS(5325), - [anon_sym_BSLASHAutocite] = ACTIONS(5325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHvolcite] = ACTIONS(5325), - [anon_sym_BSLASHVolcite] = ACTIONS(5325), - [anon_sym_BSLASHpvolcite] = ACTIONS(5325), - [anon_sym_BSLASHPvolcite] = ACTIONS(5325), - [anon_sym_BSLASHfvolcite] = ACTIONS(5325), - [anon_sym_BSLASHftvolcite] = ACTIONS(5325), - [anon_sym_BSLASHsvolcite] = ACTIONS(5325), - [anon_sym_BSLASHSvolcite] = ACTIONS(5325), - [anon_sym_BSLASHtvolcite] = ACTIONS(5325), - [anon_sym_BSLASHTvolcite] = ACTIONS(5325), - [anon_sym_BSLASHavolcite] = ACTIONS(5325), - [anon_sym_BSLASHAvolcite] = ACTIONS(5325), - [anon_sym_BSLASHnotecite] = ACTIONS(5325), - [anon_sym_BSLASHNotecite] = ACTIONS(5325), - [anon_sym_BSLASHpnotecite] = ACTIONS(5325), - [anon_sym_BSLASHPnotecite] = ACTIONS(5325), - [anon_sym_BSLASHfnotecite] = ACTIONS(5325), - [anon_sym_BSLASHlabel] = ACTIONS(5325), - [anon_sym_BSLASHref] = ACTIONS(5325), - [anon_sym_BSLASHeqref] = ACTIONS(5325), - [anon_sym_BSLASHvref] = ACTIONS(5325), - [anon_sym_BSLASHVref] = ACTIONS(5325), - [anon_sym_BSLASHautoref] = ACTIONS(5325), - [anon_sym_BSLASHpageref] = ACTIONS(5325), - [anon_sym_BSLASHcref] = ACTIONS(5325), - [anon_sym_BSLASHCref] = ACTIONS(5325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnameCref] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHlabelcref] = ACTIONS(5325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnewlabel] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5323), - [anon_sym_BSLASHdef] = ACTIONS(5325), - [anon_sym_BSLASHlet] = ACTIONS(5325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5325), - [anon_sym_BSLASHgls] = ACTIONS(5325), - [anon_sym_BSLASHGls] = ACTIONS(5325), - [anon_sym_BSLASHGLS] = ACTIONS(5325), - [anon_sym_BSLASHglspl] = ACTIONS(5325), - [anon_sym_BSLASHGlspl] = ACTIONS(5325), - [anon_sym_BSLASHGLSpl] = ACTIONS(5325), - [anon_sym_BSLASHglsdisp] = ACTIONS(5325), - [anon_sym_BSLASHglslink] = ACTIONS(5325), - [anon_sym_BSLASHglstext] = ACTIONS(5325), - [anon_sym_BSLASHGlstext] = ACTIONS(5325), - [anon_sym_BSLASHGLStext] = ACTIONS(5325), - [anon_sym_BSLASHglsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5325), - [anon_sym_BSLASHglsplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSplural] = ACTIONS(5325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHglsname] = ACTIONS(5325), - [anon_sym_BSLASHGlsname] = ACTIONS(5325), - [anon_sym_BSLASHGLSname] = ACTIONS(5325), - [anon_sym_BSLASHglssymbol] = ACTIONS(5325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5325), - [anon_sym_BSLASHglsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5325), - [anon_sym_BSLASHglsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5325), - [anon_sym_BSLASHglsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5325), - [anon_sym_BSLASHglsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5325), - [anon_sym_BSLASHglsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5325), - [anon_sym_BSLASHnewacronym] = ACTIONS(5325), - [anon_sym_BSLASHacrshort] = ACTIONS(5325), - [anon_sym_BSLASHAcrshort] = ACTIONS(5325), - [anon_sym_BSLASHACRshort] = ACTIONS(5325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5325), - [anon_sym_BSLASHacrlong] = ACTIONS(5325), - [anon_sym_BSLASHAcrlong] = ACTIONS(5325), - [anon_sym_BSLASHACRlong] = ACTIONS(5325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5325), - [anon_sym_BSLASHacrfull] = ACTIONS(5325), - [anon_sym_BSLASHAcrfull] = ACTIONS(5325), - [anon_sym_BSLASHACRfull] = ACTIONS(5325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5325), - [anon_sym_BSLASHacs] = ACTIONS(5325), - [anon_sym_BSLASHAcs] = ACTIONS(5325), - [anon_sym_BSLASHacsp] = ACTIONS(5325), - [anon_sym_BSLASHAcsp] = ACTIONS(5325), - [anon_sym_BSLASHacl] = ACTIONS(5325), - [anon_sym_BSLASHAcl] = ACTIONS(5325), - [anon_sym_BSLASHaclp] = ACTIONS(5325), - [anon_sym_BSLASHAclp] = ACTIONS(5325), - [anon_sym_BSLASHacf] = ACTIONS(5325), - [anon_sym_BSLASHAcf] = ACTIONS(5325), - [anon_sym_BSLASHacfp] = ACTIONS(5325), - [anon_sym_BSLASHAcfp] = ACTIONS(5325), - [anon_sym_BSLASHac] = ACTIONS(5325), - [anon_sym_BSLASHAc] = ACTIONS(5325), - [anon_sym_BSLASHacp] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5325), - [anon_sym_BSLASHcolor] = ACTIONS(5325), - [anon_sym_BSLASHcolorbox] = ACTIONS(5325), - [anon_sym_BSLASHtextcolor] = ACTIONS(5325), - [anon_sym_BSLASHpagecolor] = ACTIONS(5325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5325), - }, - [1426] = { - [sym_command_name] = ACTIONS(5329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5329), - [anon_sym_LPAREN] = ACTIONS(5327), - [anon_sym_RPAREN] = ACTIONS(5327), - [anon_sym_LBRACK] = ACTIONS(5327), - [anon_sym_RBRACK] = ACTIONS(5327), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_LBRACE] = ACTIONS(5327), - [anon_sym_RBRACE] = ACTIONS(5327), - [sym_word] = ACTIONS(5329), - [sym_placeholder] = ACTIONS(5327), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_STAR] = ACTIONS(5329), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_CARET] = ACTIONS(5329), - [anon_sym__] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_BANG] = ACTIONS(5329), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_COLON] = ACTIONS(5329), - [anon_sym_SQUOTE] = ACTIONS(5329), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5327), - [anon_sym_DOLLAR] = ACTIONS(5329), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5327), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5327), - [anon_sym_BSLASHusepackage] = ACTIONS(5329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5329), - [anon_sym_BSLASHinclude] = ACTIONS(5329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5329), - [anon_sym_BSLASHinput] = ACTIONS(5329), - [anon_sym_BSLASHsubfile] = ACTIONS(5329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5329), - [anon_sym_BSLASHbibliography] = ACTIONS(5329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5329), - [anon_sym_BSLASHincludesvg] = ACTIONS(5329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5329), - [anon_sym_BSLASHimport] = ACTIONS(5329), - [anon_sym_BSLASHsubimport] = ACTIONS(5329), - [anon_sym_BSLASHinputfrom] = ACTIONS(5329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5329), - [anon_sym_BSLASHincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHcaption] = ACTIONS(5329), - [anon_sym_BSLASHcite] = ACTIONS(5329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCite] = ACTIONS(5329), - [anon_sym_BSLASHnocite] = ACTIONS(5329), - [anon_sym_BSLASHcitet] = ACTIONS(5329), - [anon_sym_BSLASHcitep] = ACTIONS(5329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor] = ACTIONS(5329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle] = ACTIONS(5329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteyear] = ACTIONS(5329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitedate] = ACTIONS(5329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteurl] = ACTIONS(5329), - [anon_sym_BSLASHfullcite] = ACTIONS(5329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5329), - [anon_sym_BSLASHcitealt] = ACTIONS(5329), - [anon_sym_BSLASHcitealp] = ACTIONS(5329), - [anon_sym_BSLASHcitetext] = ACTIONS(5329), - [anon_sym_BSLASHparencite] = ACTIONS(5329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHParencite] = ACTIONS(5329), - [anon_sym_BSLASHfootcite] = ACTIONS(5329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5329), - [anon_sym_BSLASHtextcite] = ACTIONS(5329), - [anon_sym_BSLASHTextcite] = ACTIONS(5329), - [anon_sym_BSLASHsmartcite] = ACTIONS(5329), - [anon_sym_BSLASHSmartcite] = ACTIONS(5329), - [anon_sym_BSLASHsupercite] = ACTIONS(5329), - [anon_sym_BSLASHautocite] = ACTIONS(5329), - [anon_sym_BSLASHAutocite] = ACTIONS(5329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHvolcite] = ACTIONS(5329), - [anon_sym_BSLASHVolcite] = ACTIONS(5329), - [anon_sym_BSLASHpvolcite] = ACTIONS(5329), - [anon_sym_BSLASHPvolcite] = ACTIONS(5329), - [anon_sym_BSLASHfvolcite] = ACTIONS(5329), - [anon_sym_BSLASHftvolcite] = ACTIONS(5329), - [anon_sym_BSLASHsvolcite] = ACTIONS(5329), - [anon_sym_BSLASHSvolcite] = ACTIONS(5329), - [anon_sym_BSLASHtvolcite] = ACTIONS(5329), - [anon_sym_BSLASHTvolcite] = ACTIONS(5329), - [anon_sym_BSLASHavolcite] = ACTIONS(5329), - [anon_sym_BSLASHAvolcite] = ACTIONS(5329), - [anon_sym_BSLASHnotecite] = ACTIONS(5329), - [anon_sym_BSLASHNotecite] = ACTIONS(5329), - [anon_sym_BSLASHpnotecite] = ACTIONS(5329), - [anon_sym_BSLASHPnotecite] = ACTIONS(5329), - [anon_sym_BSLASHfnotecite] = ACTIONS(5329), - [anon_sym_BSLASHlabel] = ACTIONS(5329), - [anon_sym_BSLASHref] = ACTIONS(5329), - [anon_sym_BSLASHeqref] = ACTIONS(5329), - [anon_sym_BSLASHvref] = ACTIONS(5329), - [anon_sym_BSLASHVref] = ACTIONS(5329), - [anon_sym_BSLASHautoref] = ACTIONS(5329), - [anon_sym_BSLASHpageref] = ACTIONS(5329), - [anon_sym_BSLASHcref] = ACTIONS(5329), - [anon_sym_BSLASHCref] = ACTIONS(5329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnameCref] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHlabelcref] = ACTIONS(5329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange] = ACTIONS(5329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnewlabel] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5327), - [anon_sym_BSLASHdef] = ACTIONS(5329), - [anon_sym_BSLASHlet] = ACTIONS(5329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5329), - [anon_sym_BSLASHgls] = ACTIONS(5329), - [anon_sym_BSLASHGls] = ACTIONS(5329), - [anon_sym_BSLASHGLS] = ACTIONS(5329), - [anon_sym_BSLASHglspl] = ACTIONS(5329), - [anon_sym_BSLASHGlspl] = ACTIONS(5329), - [anon_sym_BSLASHGLSpl] = ACTIONS(5329), - [anon_sym_BSLASHglsdisp] = ACTIONS(5329), - [anon_sym_BSLASHglslink] = ACTIONS(5329), - [anon_sym_BSLASHglstext] = ACTIONS(5329), - [anon_sym_BSLASHGlstext] = ACTIONS(5329), - [anon_sym_BSLASHGLStext] = ACTIONS(5329), - [anon_sym_BSLASHglsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5329), - [anon_sym_BSLASHglsplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSplural] = ACTIONS(5329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHglsname] = ACTIONS(5329), - [anon_sym_BSLASHGlsname] = ACTIONS(5329), - [anon_sym_BSLASHGLSname] = ACTIONS(5329), - [anon_sym_BSLASHglssymbol] = ACTIONS(5329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5329), - [anon_sym_BSLASHglsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5329), - [anon_sym_BSLASHglsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5329), - [anon_sym_BSLASHglsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5329), - [anon_sym_BSLASHglsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5329), - [anon_sym_BSLASHglsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5329), - [anon_sym_BSLASHnewacronym] = ACTIONS(5329), - [anon_sym_BSLASHacrshort] = ACTIONS(5329), - [anon_sym_BSLASHAcrshort] = ACTIONS(5329), - [anon_sym_BSLASHACRshort] = ACTIONS(5329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5329), - [anon_sym_BSLASHacrlong] = ACTIONS(5329), - [anon_sym_BSLASHAcrlong] = ACTIONS(5329), - [anon_sym_BSLASHACRlong] = ACTIONS(5329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5329), - [anon_sym_BSLASHacrfull] = ACTIONS(5329), - [anon_sym_BSLASHAcrfull] = ACTIONS(5329), - [anon_sym_BSLASHACRfull] = ACTIONS(5329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5329), - [anon_sym_BSLASHacs] = ACTIONS(5329), - [anon_sym_BSLASHAcs] = ACTIONS(5329), - [anon_sym_BSLASHacsp] = ACTIONS(5329), - [anon_sym_BSLASHAcsp] = ACTIONS(5329), - [anon_sym_BSLASHacl] = ACTIONS(5329), - [anon_sym_BSLASHAcl] = ACTIONS(5329), - [anon_sym_BSLASHaclp] = ACTIONS(5329), - [anon_sym_BSLASHAclp] = ACTIONS(5329), - [anon_sym_BSLASHacf] = ACTIONS(5329), - [anon_sym_BSLASHAcf] = ACTIONS(5329), - [anon_sym_BSLASHacfp] = ACTIONS(5329), - [anon_sym_BSLASHAcfp] = ACTIONS(5329), - [anon_sym_BSLASHac] = ACTIONS(5329), - [anon_sym_BSLASHAc] = ACTIONS(5329), - [anon_sym_BSLASHacp] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5329), - [anon_sym_BSLASHcolor] = ACTIONS(5329), - [anon_sym_BSLASHcolorbox] = ACTIONS(5329), - [anon_sym_BSLASHtextcolor] = ACTIONS(5329), - [anon_sym_BSLASHpagecolor] = ACTIONS(5329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5329), + [anon_sym_BSLASHiffalse] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_RBRACK] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5001), + [sym_word] = ACTIONS(5003), + [sym_placeholder] = ACTIONS(5001), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym__] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_BANG] = ACTIONS(5003), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_SQUOTE] = ACTIONS(5003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), + [anon_sym_DOLLAR] = ACTIONS(5003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), + [anon_sym_BSLASHbegin] = ACTIONS(5003), + [anon_sym_BSLASHusepackage] = ACTIONS(5003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), + [anon_sym_BSLASHinclude] = ACTIONS(5003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), + [anon_sym_BSLASHinput] = ACTIONS(5003), + [anon_sym_BSLASHsubfile] = ACTIONS(5003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), + [anon_sym_BSLASHbibliography] = ACTIONS(5003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), + [anon_sym_BSLASHincludesvg] = ACTIONS(5003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), + [anon_sym_BSLASHimport] = ACTIONS(5003), + [anon_sym_BSLASHsubimport] = ACTIONS(5003), + [anon_sym_BSLASHinputfrom] = ACTIONS(5003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), + [anon_sym_BSLASHincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHcaption] = ACTIONS(5003), + [anon_sym_BSLASHcite] = ACTIONS(5003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCite] = ACTIONS(5003), + [anon_sym_BSLASHnocite] = ACTIONS(5003), + [anon_sym_BSLASHcitet] = ACTIONS(5003), + [anon_sym_BSLASHcitep] = ACTIONS(5003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteauthor] = ACTIONS(5003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitetitle] = ACTIONS(5003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteyear] = ACTIONS(5003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitedate] = ACTIONS(5003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteurl] = ACTIONS(5003), + [anon_sym_BSLASHfullcite] = ACTIONS(5003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), + [anon_sym_BSLASHcitealt] = ACTIONS(5003), + [anon_sym_BSLASHcitealp] = ACTIONS(5003), + [anon_sym_BSLASHcitetext] = ACTIONS(5003), + [anon_sym_BSLASHparencite] = ACTIONS(5003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHParencite] = ACTIONS(5003), + [anon_sym_BSLASHfootcite] = ACTIONS(5003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), + [anon_sym_BSLASHtextcite] = ACTIONS(5003), + [anon_sym_BSLASHTextcite] = ACTIONS(5003), + [anon_sym_BSLASHsmartcite] = ACTIONS(5003), + [anon_sym_BSLASHSmartcite] = ACTIONS(5003), + [anon_sym_BSLASHsupercite] = ACTIONS(5003), + [anon_sym_BSLASHautocite] = ACTIONS(5003), + [anon_sym_BSLASHAutocite] = ACTIONS(5003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHvolcite] = ACTIONS(5003), + [anon_sym_BSLASHVolcite] = ACTIONS(5003), + [anon_sym_BSLASHpvolcite] = ACTIONS(5003), + [anon_sym_BSLASHPvolcite] = ACTIONS(5003), + [anon_sym_BSLASHfvolcite] = ACTIONS(5003), + [anon_sym_BSLASHftvolcite] = ACTIONS(5003), + [anon_sym_BSLASHsvolcite] = ACTIONS(5003), + [anon_sym_BSLASHSvolcite] = ACTIONS(5003), + [anon_sym_BSLASHtvolcite] = ACTIONS(5003), + [anon_sym_BSLASHTvolcite] = ACTIONS(5003), + [anon_sym_BSLASHavolcite] = ACTIONS(5003), + [anon_sym_BSLASHAvolcite] = ACTIONS(5003), + [anon_sym_BSLASHnotecite] = ACTIONS(5003), + [anon_sym_BSLASHNotecite] = ACTIONS(5003), + [anon_sym_BSLASHpnotecite] = ACTIONS(5003), + [anon_sym_BSLASHPnotecite] = ACTIONS(5003), + [anon_sym_BSLASHfnotecite] = ACTIONS(5003), + [anon_sym_BSLASHlabel] = ACTIONS(5003), + [anon_sym_BSLASHref] = ACTIONS(5003), + [anon_sym_BSLASHeqref] = ACTIONS(5003), + [anon_sym_BSLASHvref] = ACTIONS(5003), + [anon_sym_BSLASHVref] = ACTIONS(5003), + [anon_sym_BSLASHautoref] = ACTIONS(5003), + [anon_sym_BSLASHpageref] = ACTIONS(5003), + [anon_sym_BSLASHcref] = ACTIONS(5003), + [anon_sym_BSLASHCref] = ACTIONS(5003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnameCref] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHlabelcref] = ACTIONS(5003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCrefrange] = ACTIONS(5003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnewlabel] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), + [anon_sym_BSLASHdef] = ACTIONS(5003), + [anon_sym_BSLASHlet] = ACTIONS(5003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), + [anon_sym_BSLASHgls] = ACTIONS(5003), + [anon_sym_BSLASHGls] = ACTIONS(5003), + [anon_sym_BSLASHGLS] = ACTIONS(5003), + [anon_sym_BSLASHglspl] = ACTIONS(5003), + [anon_sym_BSLASHGlspl] = ACTIONS(5003), + [anon_sym_BSLASHGLSpl] = ACTIONS(5003), + [anon_sym_BSLASHglsdisp] = ACTIONS(5003), + [anon_sym_BSLASHglslink] = ACTIONS(5003), + [anon_sym_BSLASHglstext] = ACTIONS(5003), + [anon_sym_BSLASHGlstext] = ACTIONS(5003), + [anon_sym_BSLASHGLStext] = ACTIONS(5003), + [anon_sym_BSLASHglsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), + [anon_sym_BSLASHglsplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSplural] = ACTIONS(5003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHglsname] = ACTIONS(5003), + [anon_sym_BSLASHGlsname] = ACTIONS(5003), + [anon_sym_BSLASHGLSname] = ACTIONS(5003), + [anon_sym_BSLASHglssymbol] = ACTIONS(5003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), + [anon_sym_BSLASHglsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), + [anon_sym_BSLASHglsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), + [anon_sym_BSLASHglsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), + [anon_sym_BSLASHglsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), + [anon_sym_BSLASHglsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), + [anon_sym_BSLASHnewacronym] = ACTIONS(5003), + [anon_sym_BSLASHacrshort] = ACTIONS(5003), + [anon_sym_BSLASHAcrshort] = ACTIONS(5003), + [anon_sym_BSLASHACRshort] = ACTIONS(5003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), + [anon_sym_BSLASHacrlong] = ACTIONS(5003), + [anon_sym_BSLASHAcrlong] = ACTIONS(5003), + [anon_sym_BSLASHACRlong] = ACTIONS(5003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), + [anon_sym_BSLASHacrfull] = ACTIONS(5003), + [anon_sym_BSLASHAcrfull] = ACTIONS(5003), + [anon_sym_BSLASHACRfull] = ACTIONS(5003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), + [anon_sym_BSLASHacs] = ACTIONS(5003), + [anon_sym_BSLASHAcs] = ACTIONS(5003), + [anon_sym_BSLASHacsp] = ACTIONS(5003), + [anon_sym_BSLASHAcsp] = ACTIONS(5003), + [anon_sym_BSLASHacl] = ACTIONS(5003), + [anon_sym_BSLASHAcl] = ACTIONS(5003), + [anon_sym_BSLASHaclp] = ACTIONS(5003), + [anon_sym_BSLASHAclp] = ACTIONS(5003), + [anon_sym_BSLASHacf] = ACTIONS(5003), + [anon_sym_BSLASHAcf] = ACTIONS(5003), + [anon_sym_BSLASHacfp] = ACTIONS(5003), + [anon_sym_BSLASHAcfp] = ACTIONS(5003), + [anon_sym_BSLASHac] = ACTIONS(5003), + [anon_sym_BSLASHAc] = ACTIONS(5003), + [anon_sym_BSLASHacp] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), + [anon_sym_BSLASHcolor] = ACTIONS(5003), + [anon_sym_BSLASHcolorbox] = ACTIONS(5003), + [anon_sym_BSLASHtextcolor] = ACTIONS(5003), + [anon_sym_BSLASHpagecolor] = ACTIONS(5003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), + [anon_sym_BSLASHtext] = ACTIONS(5003), + [anon_sym_BSLASHintertext] = ACTIONS(5003), + [anon_sym_shortintertext] = ACTIONS(5003), }, - [1427] = { - [sym_command_name] = ACTIONS(5333), + [1356] = { + [sym_command_name] = ACTIONS(4999), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_LPAREN] = ACTIONS(5331), - [anon_sym_RPAREN] = ACTIONS(5331), - [anon_sym_LBRACK] = ACTIONS(5331), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_LBRACE] = ACTIONS(5331), - [anon_sym_RBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5331), - [anon_sym_DOLLAR] = ACTIONS(5333), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5331), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5331), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), - }, - [1428] = { - [sym_command_name] = ACTIONS(5337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_LPAREN] = ACTIONS(5335), - [anon_sym_RPAREN] = ACTIONS(5335), - [anon_sym_LBRACK] = ACTIONS(5335), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_LBRACE] = ACTIONS(5335), - [anon_sym_RBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5335), - [anon_sym_DOLLAR] = ACTIONS(5337), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5335), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5335), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), - }, - [1429] = { - [sym_command_name] = ACTIONS(5341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_LPAREN] = ACTIONS(5339), - [anon_sym_RPAREN] = ACTIONS(5339), - [anon_sym_LBRACK] = ACTIONS(5339), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_LBRACE] = ACTIONS(5339), - [anon_sym_RBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5339), - [anon_sym_DOLLAR] = ACTIONS(5341), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5339), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5339), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), - }, - [1430] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_LPAREN] = ACTIONS(5343), - [anon_sym_RPAREN] = ACTIONS(5343), - [anon_sym_LBRACK] = ACTIONS(5343), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_LBRACE] = ACTIONS(5343), - [anon_sym_RBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5343), - [anon_sym_DOLLAR] = ACTIONS(5345), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5343), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5343), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), - }, - [1431] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_LPAREN] = ACTIONS(5347), - [anon_sym_RPAREN] = ACTIONS(5347), - [anon_sym_LBRACK] = ACTIONS(5347), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_LBRACE] = ACTIONS(5347), - [anon_sym_RBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5347), - [anon_sym_DOLLAR] = ACTIONS(5349), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5347), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5347), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), - }, - [1432] = { - [sym_command_name] = ACTIONS(5411), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5411), - [anon_sym_LPAREN] = ACTIONS(5413), - [anon_sym_RPAREN] = ACTIONS(5413), - [anon_sym_LBRACK] = ACTIONS(5413), - [anon_sym_RBRACK] = ACTIONS(5413), - [anon_sym_COMMA] = ACTIONS(5413), - [anon_sym_LBRACE] = ACTIONS(5413), - [anon_sym_RBRACE] = ACTIONS(5413), - [sym_word] = ACTIONS(5411), - [sym_placeholder] = ACTIONS(5413), - [anon_sym_PLUS] = ACTIONS(5411), - [anon_sym_DASH] = ACTIONS(5411), - [anon_sym_STAR] = ACTIONS(5411), - [anon_sym_SLASH] = ACTIONS(5411), - [anon_sym_CARET] = ACTIONS(5411), - [anon_sym__] = ACTIONS(5411), - [anon_sym_LT] = ACTIONS(5411), - [anon_sym_GT] = ACTIONS(5411), - [anon_sym_BANG] = ACTIONS(5411), - [anon_sym_PIPE] = ACTIONS(5411), - [anon_sym_COLON] = ACTIONS(5411), - [anon_sym_SQUOTE] = ACTIONS(5411), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5413), - [anon_sym_DOLLAR] = ACTIONS(5411), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5413), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5413), - [anon_sym_BSLASHusepackage] = ACTIONS(5411), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5411), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5411), - [anon_sym_BSLASHinclude] = ACTIONS(5411), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5411), - [anon_sym_BSLASHinput] = ACTIONS(5411), - [anon_sym_BSLASHsubfile] = ACTIONS(5411), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5411), - [anon_sym_BSLASHbibliography] = ACTIONS(5411), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5411), - [anon_sym_BSLASHincludesvg] = ACTIONS(5411), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5411), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5411), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5411), - [anon_sym_BSLASHimport] = ACTIONS(5411), - [anon_sym_BSLASHsubimport] = ACTIONS(5411), - [anon_sym_BSLASHinputfrom] = ACTIONS(5411), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5411), - [anon_sym_BSLASHincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5411), - [anon_sym_BSLASHcaption] = ACTIONS(5411), - [anon_sym_BSLASHcite] = ACTIONS(5411), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCite] = ACTIONS(5411), - [anon_sym_BSLASHnocite] = ACTIONS(5411), - [anon_sym_BSLASHcitet] = ACTIONS(5411), - [anon_sym_BSLASHcitep] = ACTIONS(5411), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteauthor] = ACTIONS(5411), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5411), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitetitle] = ACTIONS(5411), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteyear] = ACTIONS(5411), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5413), - [anon_sym_BSLASHcitedate] = ACTIONS(5411), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5413), - [anon_sym_BSLASHciteurl] = ACTIONS(5411), - [anon_sym_BSLASHfullcite] = ACTIONS(5411), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5411), - [anon_sym_BSLASHcitealt] = ACTIONS(5411), - [anon_sym_BSLASHcitealp] = ACTIONS(5411), - [anon_sym_BSLASHcitetext] = ACTIONS(5411), - [anon_sym_BSLASHparencite] = ACTIONS(5411), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHParencite] = ACTIONS(5411), - [anon_sym_BSLASHfootcite] = ACTIONS(5411), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5411), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5411), - [anon_sym_BSLASHtextcite] = ACTIONS(5411), - [anon_sym_BSLASHTextcite] = ACTIONS(5411), - [anon_sym_BSLASHsmartcite] = ACTIONS(5411), - [anon_sym_BSLASHSmartcite] = ACTIONS(5411), - [anon_sym_BSLASHsupercite] = ACTIONS(5411), - [anon_sym_BSLASHautocite] = ACTIONS(5411), - [anon_sym_BSLASHAutocite] = ACTIONS(5411), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5413), - [anon_sym_BSLASHvolcite] = ACTIONS(5411), - [anon_sym_BSLASHVolcite] = ACTIONS(5411), - [anon_sym_BSLASHpvolcite] = ACTIONS(5411), - [anon_sym_BSLASHPvolcite] = ACTIONS(5411), - [anon_sym_BSLASHfvolcite] = ACTIONS(5411), - [anon_sym_BSLASHftvolcite] = ACTIONS(5411), - [anon_sym_BSLASHsvolcite] = ACTIONS(5411), - [anon_sym_BSLASHSvolcite] = ACTIONS(5411), - [anon_sym_BSLASHtvolcite] = ACTIONS(5411), - [anon_sym_BSLASHTvolcite] = ACTIONS(5411), - [anon_sym_BSLASHavolcite] = ACTIONS(5411), - [anon_sym_BSLASHAvolcite] = ACTIONS(5411), - [anon_sym_BSLASHnotecite] = ACTIONS(5411), - [anon_sym_BSLASHNotecite] = ACTIONS(5411), - [anon_sym_BSLASHpnotecite] = ACTIONS(5411), - [anon_sym_BSLASHPnotecite] = ACTIONS(5411), - [anon_sym_BSLASHfnotecite] = ACTIONS(5411), - [anon_sym_BSLASHlabel] = ACTIONS(5411), - [anon_sym_BSLASHref] = ACTIONS(5411), - [anon_sym_BSLASHeqref] = ACTIONS(5411), - [anon_sym_BSLASHvref] = ACTIONS(5411), - [anon_sym_BSLASHVref] = ACTIONS(5411), - [anon_sym_BSLASHautoref] = ACTIONS(5411), - [anon_sym_BSLASHpageref] = ACTIONS(5411), - [anon_sym_BSLASHcref] = ACTIONS(5411), - [anon_sym_BSLASHCref] = ACTIONS(5411), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnameCref] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5411), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5411), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5411), - [anon_sym_BSLASHlabelcref] = ACTIONS(5411), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange] = ACTIONS(5411), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHCrefrange] = ACTIONS(5411), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5413), - [anon_sym_BSLASHnewlabel] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand] = ACTIONS(5411), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5411), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5411), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5413), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5411), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5413), - [anon_sym_BSLASHdef] = ACTIONS(5411), - [anon_sym_BSLASHlet] = ACTIONS(5411), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5411), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5411), - [anon_sym_BSLASHgls] = ACTIONS(5411), - [anon_sym_BSLASHGls] = ACTIONS(5411), - [anon_sym_BSLASHGLS] = ACTIONS(5411), - [anon_sym_BSLASHglspl] = ACTIONS(5411), - [anon_sym_BSLASHGlspl] = ACTIONS(5411), - [anon_sym_BSLASHGLSpl] = ACTIONS(5411), - [anon_sym_BSLASHglsdisp] = ACTIONS(5411), - [anon_sym_BSLASHglslink] = ACTIONS(5411), - [anon_sym_BSLASHglstext] = ACTIONS(5411), - [anon_sym_BSLASHGlstext] = ACTIONS(5411), - [anon_sym_BSLASHGLStext] = ACTIONS(5411), - [anon_sym_BSLASHglsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5411), - [anon_sym_BSLASHglsplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSplural] = ACTIONS(5411), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5411), - [anon_sym_BSLASHglsname] = ACTIONS(5411), - [anon_sym_BSLASHGlsname] = ACTIONS(5411), - [anon_sym_BSLASHGLSname] = ACTIONS(5411), - [anon_sym_BSLASHglssymbol] = ACTIONS(5411), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5411), - [anon_sym_BSLASHglsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5411), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5411), - [anon_sym_BSLASHglsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5411), - [anon_sym_BSLASHglsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5411), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5411), - [anon_sym_BSLASHglsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5411), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5411), - [anon_sym_BSLASHglsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5411), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5411), - [anon_sym_BSLASHnewacronym] = ACTIONS(5411), - [anon_sym_BSLASHacrshort] = ACTIONS(5411), - [anon_sym_BSLASHAcrshort] = ACTIONS(5411), - [anon_sym_BSLASHACRshort] = ACTIONS(5411), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5411), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5411), - [anon_sym_BSLASHacrlong] = ACTIONS(5411), - [anon_sym_BSLASHAcrlong] = ACTIONS(5411), - [anon_sym_BSLASHACRlong] = ACTIONS(5411), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5411), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5411), - [anon_sym_BSLASHacrfull] = ACTIONS(5411), - [anon_sym_BSLASHAcrfull] = ACTIONS(5411), - [anon_sym_BSLASHACRfull] = ACTIONS(5411), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5411), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5411), - [anon_sym_BSLASHacs] = ACTIONS(5411), - [anon_sym_BSLASHAcs] = ACTIONS(5411), - [anon_sym_BSLASHacsp] = ACTIONS(5411), - [anon_sym_BSLASHAcsp] = ACTIONS(5411), - [anon_sym_BSLASHacl] = ACTIONS(5411), - [anon_sym_BSLASHAcl] = ACTIONS(5411), - [anon_sym_BSLASHaclp] = ACTIONS(5411), - [anon_sym_BSLASHAclp] = ACTIONS(5411), - [anon_sym_BSLASHacf] = ACTIONS(5411), - [anon_sym_BSLASHAcf] = ACTIONS(5411), - [anon_sym_BSLASHacfp] = ACTIONS(5411), - [anon_sym_BSLASHAcfp] = ACTIONS(5411), - [anon_sym_BSLASHac] = ACTIONS(5411), - [anon_sym_BSLASHAc] = ACTIONS(5411), - [anon_sym_BSLASHacp] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5411), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5411), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5411), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5411), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5411), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5411), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5411), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5411), - [anon_sym_BSLASHcolor] = ACTIONS(5411), - [anon_sym_BSLASHcolorbox] = ACTIONS(5411), - [anon_sym_BSLASHtextcolor] = ACTIONS(5411), - [anon_sym_BSLASHpagecolor] = ACTIONS(5411), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5411), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5411), + [anon_sym_BSLASHiffalse] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_RBRACK] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4997), + [sym_word] = ACTIONS(4999), + [sym_placeholder] = ACTIONS(4997), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym__] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_BANG] = ACTIONS(4999), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_SQUOTE] = ACTIONS(4999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), + [anon_sym_DOLLAR] = ACTIONS(4999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), + [anon_sym_BSLASHbegin] = ACTIONS(4999), + [anon_sym_BSLASHusepackage] = ACTIONS(4999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), + [anon_sym_BSLASHinclude] = ACTIONS(4999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), + [anon_sym_BSLASHinput] = ACTIONS(4999), + [anon_sym_BSLASHsubfile] = ACTIONS(4999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), + [anon_sym_BSLASHbibliography] = ACTIONS(4999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), + [anon_sym_BSLASHincludesvg] = ACTIONS(4999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), + [anon_sym_BSLASHimport] = ACTIONS(4999), + [anon_sym_BSLASHsubimport] = ACTIONS(4999), + [anon_sym_BSLASHinputfrom] = ACTIONS(4999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), + [anon_sym_BSLASHincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHcaption] = ACTIONS(4999), + [anon_sym_BSLASHcite] = ACTIONS(4999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCite] = ACTIONS(4999), + [anon_sym_BSLASHnocite] = ACTIONS(4999), + [anon_sym_BSLASHcitet] = ACTIONS(4999), + [anon_sym_BSLASHcitep] = ACTIONS(4999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteauthor] = ACTIONS(4999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitetitle] = ACTIONS(4999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteyear] = ACTIONS(4999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitedate] = ACTIONS(4999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteurl] = ACTIONS(4999), + [anon_sym_BSLASHfullcite] = ACTIONS(4999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), + [anon_sym_BSLASHcitealt] = ACTIONS(4999), + [anon_sym_BSLASHcitealp] = ACTIONS(4999), + [anon_sym_BSLASHcitetext] = ACTIONS(4999), + [anon_sym_BSLASHparencite] = ACTIONS(4999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHParencite] = ACTIONS(4999), + [anon_sym_BSLASHfootcite] = ACTIONS(4999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), + [anon_sym_BSLASHtextcite] = ACTIONS(4999), + [anon_sym_BSLASHTextcite] = ACTIONS(4999), + [anon_sym_BSLASHsmartcite] = ACTIONS(4999), + [anon_sym_BSLASHSmartcite] = ACTIONS(4999), + [anon_sym_BSLASHsupercite] = ACTIONS(4999), + [anon_sym_BSLASHautocite] = ACTIONS(4999), + [anon_sym_BSLASHAutocite] = ACTIONS(4999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHvolcite] = ACTIONS(4999), + [anon_sym_BSLASHVolcite] = ACTIONS(4999), + [anon_sym_BSLASHpvolcite] = ACTIONS(4999), + [anon_sym_BSLASHPvolcite] = ACTIONS(4999), + [anon_sym_BSLASHfvolcite] = ACTIONS(4999), + [anon_sym_BSLASHftvolcite] = ACTIONS(4999), + [anon_sym_BSLASHsvolcite] = ACTIONS(4999), + [anon_sym_BSLASHSvolcite] = ACTIONS(4999), + [anon_sym_BSLASHtvolcite] = ACTIONS(4999), + [anon_sym_BSLASHTvolcite] = ACTIONS(4999), + [anon_sym_BSLASHavolcite] = ACTIONS(4999), + [anon_sym_BSLASHAvolcite] = ACTIONS(4999), + [anon_sym_BSLASHnotecite] = ACTIONS(4999), + [anon_sym_BSLASHNotecite] = ACTIONS(4999), + [anon_sym_BSLASHpnotecite] = ACTIONS(4999), + [anon_sym_BSLASHPnotecite] = ACTIONS(4999), + [anon_sym_BSLASHfnotecite] = ACTIONS(4999), + [anon_sym_BSLASHlabel] = ACTIONS(4999), + [anon_sym_BSLASHref] = ACTIONS(4999), + [anon_sym_BSLASHeqref] = ACTIONS(4999), + [anon_sym_BSLASHvref] = ACTIONS(4999), + [anon_sym_BSLASHVref] = ACTIONS(4999), + [anon_sym_BSLASHautoref] = ACTIONS(4999), + [anon_sym_BSLASHpageref] = ACTIONS(4999), + [anon_sym_BSLASHcref] = ACTIONS(4999), + [anon_sym_BSLASHCref] = ACTIONS(4999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnameCref] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHlabelcref] = ACTIONS(4999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCrefrange] = ACTIONS(4999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnewlabel] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), + [anon_sym_BSLASHdef] = ACTIONS(4999), + [anon_sym_BSLASHlet] = ACTIONS(4999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), + [anon_sym_BSLASHgls] = ACTIONS(4999), + [anon_sym_BSLASHGls] = ACTIONS(4999), + [anon_sym_BSLASHGLS] = ACTIONS(4999), + [anon_sym_BSLASHglspl] = ACTIONS(4999), + [anon_sym_BSLASHGlspl] = ACTIONS(4999), + [anon_sym_BSLASHGLSpl] = ACTIONS(4999), + [anon_sym_BSLASHglsdisp] = ACTIONS(4999), + [anon_sym_BSLASHglslink] = ACTIONS(4999), + [anon_sym_BSLASHglstext] = ACTIONS(4999), + [anon_sym_BSLASHGlstext] = ACTIONS(4999), + [anon_sym_BSLASHGLStext] = ACTIONS(4999), + [anon_sym_BSLASHglsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), + [anon_sym_BSLASHglsplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSplural] = ACTIONS(4999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHglsname] = ACTIONS(4999), + [anon_sym_BSLASHGlsname] = ACTIONS(4999), + [anon_sym_BSLASHGLSname] = ACTIONS(4999), + [anon_sym_BSLASHglssymbol] = ACTIONS(4999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), + [anon_sym_BSLASHglsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), + [anon_sym_BSLASHglsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), + [anon_sym_BSLASHglsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), + [anon_sym_BSLASHglsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), + [anon_sym_BSLASHglsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), + [anon_sym_BSLASHnewacronym] = ACTIONS(4999), + [anon_sym_BSLASHacrshort] = ACTIONS(4999), + [anon_sym_BSLASHAcrshort] = ACTIONS(4999), + [anon_sym_BSLASHACRshort] = ACTIONS(4999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), + [anon_sym_BSLASHacrlong] = ACTIONS(4999), + [anon_sym_BSLASHAcrlong] = ACTIONS(4999), + [anon_sym_BSLASHACRlong] = ACTIONS(4999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), + [anon_sym_BSLASHacrfull] = ACTIONS(4999), + [anon_sym_BSLASHAcrfull] = ACTIONS(4999), + [anon_sym_BSLASHACRfull] = ACTIONS(4999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), + [anon_sym_BSLASHacs] = ACTIONS(4999), + [anon_sym_BSLASHAcs] = ACTIONS(4999), + [anon_sym_BSLASHacsp] = ACTIONS(4999), + [anon_sym_BSLASHAcsp] = ACTIONS(4999), + [anon_sym_BSLASHacl] = ACTIONS(4999), + [anon_sym_BSLASHAcl] = ACTIONS(4999), + [anon_sym_BSLASHaclp] = ACTIONS(4999), + [anon_sym_BSLASHAclp] = ACTIONS(4999), + [anon_sym_BSLASHacf] = ACTIONS(4999), + [anon_sym_BSLASHAcf] = ACTIONS(4999), + [anon_sym_BSLASHacfp] = ACTIONS(4999), + [anon_sym_BSLASHAcfp] = ACTIONS(4999), + [anon_sym_BSLASHac] = ACTIONS(4999), + [anon_sym_BSLASHAc] = ACTIONS(4999), + [anon_sym_BSLASHacp] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), + [anon_sym_BSLASHcolor] = ACTIONS(4999), + [anon_sym_BSLASHcolorbox] = ACTIONS(4999), + [anon_sym_BSLASHtextcolor] = ACTIONS(4999), + [anon_sym_BSLASHpagecolor] = ACTIONS(4999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), + [anon_sym_BSLASHtext] = ACTIONS(4999), + [anon_sym_BSLASHintertext] = ACTIONS(4999), + [anon_sym_shortintertext] = ACTIONS(4999), }, - [1433] = { - [sym_command_name] = ACTIONS(5385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5385), - [anon_sym_LPAREN] = ACTIONS(5383), - [anon_sym_RPAREN] = ACTIONS(5383), - [anon_sym_LBRACK] = ACTIONS(5383), - [anon_sym_RBRACK] = ACTIONS(5383), - [anon_sym_COMMA] = ACTIONS(5383), - [anon_sym_LBRACE] = ACTIONS(5383), - [anon_sym_RBRACE] = ACTIONS(5383), - [sym_word] = ACTIONS(5385), - [sym_placeholder] = ACTIONS(5383), - [anon_sym_PLUS] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5385), - [anon_sym_SLASH] = ACTIONS(5385), - [anon_sym_CARET] = ACTIONS(5385), - [anon_sym__] = ACTIONS(5385), - [anon_sym_LT] = ACTIONS(5385), - [anon_sym_GT] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_PIPE] = ACTIONS(5385), - [anon_sym_COLON] = ACTIONS(5385), - [anon_sym_SQUOTE] = ACTIONS(5385), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5383), - [anon_sym_DOLLAR] = ACTIONS(5385), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5383), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5383), - [anon_sym_BSLASHusepackage] = ACTIONS(5385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5385), - [anon_sym_BSLASHinclude] = ACTIONS(5385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5385), - [anon_sym_BSLASHinput] = ACTIONS(5385), - [anon_sym_BSLASHsubfile] = ACTIONS(5385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5385), - [anon_sym_BSLASHbibliography] = ACTIONS(5385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5385), - [anon_sym_BSLASHincludesvg] = ACTIONS(5385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5385), - [anon_sym_BSLASHimport] = ACTIONS(5385), - [anon_sym_BSLASHsubimport] = ACTIONS(5385), - [anon_sym_BSLASHinputfrom] = ACTIONS(5385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5385), - [anon_sym_BSLASHincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHcaption] = ACTIONS(5385), - [anon_sym_BSLASHcite] = ACTIONS(5385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCite] = ACTIONS(5385), - [anon_sym_BSLASHnocite] = ACTIONS(5385), - [anon_sym_BSLASHcitet] = ACTIONS(5385), - [anon_sym_BSLASHcitep] = ACTIONS(5385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteyear] = ACTIONS(5385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitedate] = ACTIONS(5385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteurl] = ACTIONS(5385), - [anon_sym_BSLASHfullcite] = ACTIONS(5385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5385), - [anon_sym_BSLASHcitealt] = ACTIONS(5385), - [anon_sym_BSLASHcitealp] = ACTIONS(5385), - [anon_sym_BSLASHcitetext] = ACTIONS(5385), - [anon_sym_BSLASHparencite] = ACTIONS(5385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHParencite] = ACTIONS(5385), - [anon_sym_BSLASHfootcite] = ACTIONS(5385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5385), - [anon_sym_BSLASHtextcite] = ACTIONS(5385), - [anon_sym_BSLASHTextcite] = ACTIONS(5385), - [anon_sym_BSLASHsmartcite] = ACTIONS(5385), - [anon_sym_BSLASHSmartcite] = ACTIONS(5385), - [anon_sym_BSLASHsupercite] = ACTIONS(5385), - [anon_sym_BSLASHautocite] = ACTIONS(5385), - [anon_sym_BSLASHAutocite] = ACTIONS(5385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHvolcite] = ACTIONS(5385), - [anon_sym_BSLASHVolcite] = ACTIONS(5385), - [anon_sym_BSLASHpvolcite] = ACTIONS(5385), - [anon_sym_BSLASHPvolcite] = ACTIONS(5385), - [anon_sym_BSLASHfvolcite] = ACTIONS(5385), - [anon_sym_BSLASHftvolcite] = ACTIONS(5385), - [anon_sym_BSLASHsvolcite] = ACTIONS(5385), - [anon_sym_BSLASHSvolcite] = ACTIONS(5385), - [anon_sym_BSLASHtvolcite] = ACTIONS(5385), - [anon_sym_BSLASHTvolcite] = ACTIONS(5385), - [anon_sym_BSLASHavolcite] = ACTIONS(5385), - [anon_sym_BSLASHAvolcite] = ACTIONS(5385), - [anon_sym_BSLASHnotecite] = ACTIONS(5385), - [anon_sym_BSLASHNotecite] = ACTIONS(5385), - [anon_sym_BSLASHpnotecite] = ACTIONS(5385), - [anon_sym_BSLASHPnotecite] = ACTIONS(5385), - [anon_sym_BSLASHfnotecite] = ACTIONS(5385), - [anon_sym_BSLASHlabel] = ACTIONS(5385), - [anon_sym_BSLASHref] = ACTIONS(5385), - [anon_sym_BSLASHeqref] = ACTIONS(5385), - [anon_sym_BSLASHvref] = ACTIONS(5385), - [anon_sym_BSLASHVref] = ACTIONS(5385), - [anon_sym_BSLASHautoref] = ACTIONS(5385), - [anon_sym_BSLASHpageref] = ACTIONS(5385), - [anon_sym_BSLASHcref] = ACTIONS(5385), - [anon_sym_BSLASHCref] = ACTIONS(5385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnameCref] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHlabelcref] = ACTIONS(5385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnewlabel] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5383), - [anon_sym_BSLASHdef] = ACTIONS(5385), - [anon_sym_BSLASHlet] = ACTIONS(5385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5385), - [anon_sym_BSLASHgls] = ACTIONS(5385), - [anon_sym_BSLASHGls] = ACTIONS(5385), - [anon_sym_BSLASHGLS] = ACTIONS(5385), - [anon_sym_BSLASHglspl] = ACTIONS(5385), - [anon_sym_BSLASHGlspl] = ACTIONS(5385), - [anon_sym_BSLASHGLSpl] = ACTIONS(5385), - [anon_sym_BSLASHglsdisp] = ACTIONS(5385), - [anon_sym_BSLASHglslink] = ACTIONS(5385), - [anon_sym_BSLASHglstext] = ACTIONS(5385), - [anon_sym_BSLASHGlstext] = ACTIONS(5385), - [anon_sym_BSLASHGLStext] = ACTIONS(5385), - [anon_sym_BSLASHglsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5385), - [anon_sym_BSLASHglsplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSplural] = ACTIONS(5385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHglsname] = ACTIONS(5385), - [anon_sym_BSLASHGlsname] = ACTIONS(5385), - [anon_sym_BSLASHGLSname] = ACTIONS(5385), - [anon_sym_BSLASHglssymbol] = ACTIONS(5385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5385), - [anon_sym_BSLASHglsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5385), - [anon_sym_BSLASHglsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5385), - [anon_sym_BSLASHglsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5385), - [anon_sym_BSLASHglsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5385), - [anon_sym_BSLASHglsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5385), - [anon_sym_BSLASHnewacronym] = ACTIONS(5385), - [anon_sym_BSLASHacrshort] = ACTIONS(5385), - [anon_sym_BSLASHAcrshort] = ACTIONS(5385), - [anon_sym_BSLASHACRshort] = ACTIONS(5385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5385), - [anon_sym_BSLASHacrlong] = ACTIONS(5385), - [anon_sym_BSLASHAcrlong] = ACTIONS(5385), - [anon_sym_BSLASHACRlong] = ACTIONS(5385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5385), - [anon_sym_BSLASHacrfull] = ACTIONS(5385), - [anon_sym_BSLASHAcrfull] = ACTIONS(5385), - [anon_sym_BSLASHACRfull] = ACTIONS(5385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5385), - [anon_sym_BSLASHacs] = ACTIONS(5385), - [anon_sym_BSLASHAcs] = ACTIONS(5385), - [anon_sym_BSLASHacsp] = ACTIONS(5385), - [anon_sym_BSLASHAcsp] = ACTIONS(5385), - [anon_sym_BSLASHacl] = ACTIONS(5385), - [anon_sym_BSLASHAcl] = ACTIONS(5385), - [anon_sym_BSLASHaclp] = ACTIONS(5385), - [anon_sym_BSLASHAclp] = ACTIONS(5385), - [anon_sym_BSLASHacf] = ACTIONS(5385), - [anon_sym_BSLASHAcf] = ACTIONS(5385), - [anon_sym_BSLASHacfp] = ACTIONS(5385), - [anon_sym_BSLASHAcfp] = ACTIONS(5385), - [anon_sym_BSLASHac] = ACTIONS(5385), - [anon_sym_BSLASHAc] = ACTIONS(5385), - [anon_sym_BSLASHacp] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5385), - [anon_sym_BSLASHcolor] = ACTIONS(5385), - [anon_sym_BSLASHcolorbox] = ACTIONS(5385), - [anon_sym_BSLASHtextcolor] = ACTIONS(5385), - [anon_sym_BSLASHpagecolor] = ACTIONS(5385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5385), + [1357] = { + [sym_command_name] = ACTIONS(4995), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4993), + [anon_sym_RBRACK] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4993), + [sym_word] = ACTIONS(4995), + [sym_placeholder] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym__] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_BANG] = ACTIONS(4995), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_SQUOTE] = ACTIONS(4995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), + [anon_sym_DOLLAR] = ACTIONS(4995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), + [anon_sym_BSLASHbegin] = ACTIONS(4995), + [anon_sym_BSLASHusepackage] = ACTIONS(4995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), + [anon_sym_BSLASHinclude] = ACTIONS(4995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), + [anon_sym_BSLASHinput] = ACTIONS(4995), + [anon_sym_BSLASHsubfile] = ACTIONS(4995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), + [anon_sym_BSLASHbibliography] = ACTIONS(4995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), + [anon_sym_BSLASHincludesvg] = ACTIONS(4995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), + [anon_sym_BSLASHimport] = ACTIONS(4995), + [anon_sym_BSLASHsubimport] = ACTIONS(4995), + [anon_sym_BSLASHinputfrom] = ACTIONS(4995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), + [anon_sym_BSLASHincludefrom] = ACTIONS(4995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), + [anon_sym_BSLASHcaption] = ACTIONS(4995), + [anon_sym_BSLASHcite] = ACTIONS(4995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCite] = ACTIONS(4995), + [anon_sym_BSLASHnocite] = ACTIONS(4995), + [anon_sym_BSLASHcitet] = ACTIONS(4995), + [anon_sym_BSLASHcitep] = ACTIONS(4995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteauthor] = ACTIONS(4995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitetitle] = ACTIONS(4995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteyear] = ACTIONS(4995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitedate] = ACTIONS(4995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteurl] = ACTIONS(4995), + [anon_sym_BSLASHfullcite] = ACTIONS(4995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), + [anon_sym_BSLASHcitealt] = ACTIONS(4995), + [anon_sym_BSLASHcitealp] = ACTIONS(4995), + [anon_sym_BSLASHcitetext] = ACTIONS(4995), + [anon_sym_BSLASHparencite] = ACTIONS(4995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHParencite] = ACTIONS(4995), + [anon_sym_BSLASHfootcite] = ACTIONS(4995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), + [anon_sym_BSLASHtextcite] = ACTIONS(4995), + [anon_sym_BSLASHTextcite] = ACTIONS(4995), + [anon_sym_BSLASHsmartcite] = ACTIONS(4995), + [anon_sym_BSLASHSmartcite] = ACTIONS(4995), + [anon_sym_BSLASHsupercite] = ACTIONS(4995), + [anon_sym_BSLASHautocite] = ACTIONS(4995), + [anon_sym_BSLASHAutocite] = ACTIONS(4995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHvolcite] = ACTIONS(4995), + [anon_sym_BSLASHVolcite] = ACTIONS(4995), + [anon_sym_BSLASHpvolcite] = ACTIONS(4995), + [anon_sym_BSLASHPvolcite] = ACTIONS(4995), + [anon_sym_BSLASHfvolcite] = ACTIONS(4995), + [anon_sym_BSLASHftvolcite] = ACTIONS(4995), + [anon_sym_BSLASHsvolcite] = ACTIONS(4995), + [anon_sym_BSLASHSvolcite] = ACTIONS(4995), + [anon_sym_BSLASHtvolcite] = ACTIONS(4995), + [anon_sym_BSLASHTvolcite] = ACTIONS(4995), + [anon_sym_BSLASHavolcite] = ACTIONS(4995), + [anon_sym_BSLASHAvolcite] = ACTIONS(4995), + [anon_sym_BSLASHnotecite] = ACTIONS(4995), + [anon_sym_BSLASHNotecite] = ACTIONS(4995), + [anon_sym_BSLASHpnotecite] = ACTIONS(4995), + [anon_sym_BSLASHPnotecite] = ACTIONS(4995), + [anon_sym_BSLASHfnotecite] = ACTIONS(4995), + [anon_sym_BSLASHlabel] = ACTIONS(4995), + [anon_sym_BSLASHref] = ACTIONS(4995), + [anon_sym_BSLASHeqref] = ACTIONS(4995), + [anon_sym_BSLASHvref] = ACTIONS(4995), + [anon_sym_BSLASHVref] = ACTIONS(4995), + [anon_sym_BSLASHautoref] = ACTIONS(4995), + [anon_sym_BSLASHpageref] = ACTIONS(4995), + [anon_sym_BSLASHcref] = ACTIONS(4995), + [anon_sym_BSLASHCref] = ACTIONS(4995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), + [anon_sym_BSLASHnamecref] = ACTIONS(4995), + [anon_sym_BSLASHnameCref] = ACTIONS(4995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), + [anon_sym_BSLASHlabelcref] = ACTIONS(4995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), + [anon_sym_BSLASHcrefrange] = ACTIONS(4995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCrefrange] = ACTIONS(4995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), + [anon_sym_BSLASHnewlabel] = ACTIONS(4995), + [anon_sym_BSLASHnewcommand] = ACTIONS(4995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), + [anon_sym_BSLASHdef] = ACTIONS(4995), + [anon_sym_BSLASHlet] = ACTIONS(4995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), + [anon_sym_BSLASHgls] = ACTIONS(4995), + [anon_sym_BSLASHGls] = ACTIONS(4995), + [anon_sym_BSLASHGLS] = ACTIONS(4995), + [anon_sym_BSLASHglspl] = ACTIONS(4995), + [anon_sym_BSLASHGlspl] = ACTIONS(4995), + [anon_sym_BSLASHGLSpl] = ACTIONS(4995), + [anon_sym_BSLASHglsdisp] = ACTIONS(4995), + [anon_sym_BSLASHglslink] = ACTIONS(4995), + [anon_sym_BSLASHglstext] = ACTIONS(4995), + [anon_sym_BSLASHGlstext] = ACTIONS(4995), + [anon_sym_BSLASHGLStext] = ACTIONS(4995), + [anon_sym_BSLASHglsfirst] = ACTIONS(4995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), + [anon_sym_BSLASHglsplural] = ACTIONS(4995), + [anon_sym_BSLASHGlsplural] = ACTIONS(4995), + [anon_sym_BSLASHGLSplural] = ACTIONS(4995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHglsname] = ACTIONS(4995), + [anon_sym_BSLASHGlsname] = ACTIONS(4995), + [anon_sym_BSLASHGLSname] = ACTIONS(4995), + [anon_sym_BSLASHglssymbol] = ACTIONS(4995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), + [anon_sym_BSLASHglsdesc] = ACTIONS(4995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), + [anon_sym_BSLASHglsuseri] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), + [anon_sym_BSLASHglsuserii] = ACTIONS(4995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), + [anon_sym_BSLASHglsuserv] = ACTIONS(4995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), + [anon_sym_BSLASHglsuservi] = ACTIONS(4995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), + [anon_sym_BSLASHnewacronym] = ACTIONS(4995), + [anon_sym_BSLASHacrshort] = ACTIONS(4995), + [anon_sym_BSLASHAcrshort] = ACTIONS(4995), + [anon_sym_BSLASHACRshort] = ACTIONS(4995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), + [anon_sym_BSLASHacrlong] = ACTIONS(4995), + [anon_sym_BSLASHAcrlong] = ACTIONS(4995), + [anon_sym_BSLASHACRlong] = ACTIONS(4995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), + [anon_sym_BSLASHacrfull] = ACTIONS(4995), + [anon_sym_BSLASHAcrfull] = ACTIONS(4995), + [anon_sym_BSLASHACRfull] = ACTIONS(4995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), + [anon_sym_BSLASHacs] = ACTIONS(4995), + [anon_sym_BSLASHAcs] = ACTIONS(4995), + [anon_sym_BSLASHacsp] = ACTIONS(4995), + [anon_sym_BSLASHAcsp] = ACTIONS(4995), + [anon_sym_BSLASHacl] = ACTIONS(4995), + [anon_sym_BSLASHAcl] = ACTIONS(4995), + [anon_sym_BSLASHaclp] = ACTIONS(4995), + [anon_sym_BSLASHAclp] = ACTIONS(4995), + [anon_sym_BSLASHacf] = ACTIONS(4995), + [anon_sym_BSLASHAcf] = ACTIONS(4995), + [anon_sym_BSLASHacfp] = ACTIONS(4995), + [anon_sym_BSLASHAcfp] = ACTIONS(4995), + [anon_sym_BSLASHac] = ACTIONS(4995), + [anon_sym_BSLASHAc] = ACTIONS(4995), + [anon_sym_BSLASHacp] = ACTIONS(4995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), + [anon_sym_BSLASHcolor] = ACTIONS(4995), + [anon_sym_BSLASHcolorbox] = ACTIONS(4995), + [anon_sym_BSLASHtextcolor] = ACTIONS(4995), + [anon_sym_BSLASHpagecolor] = ACTIONS(4995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), + [anon_sym_BSLASHtext] = ACTIONS(4995), + [anon_sym_BSLASHintertext] = ACTIONS(4995), + [anon_sym_shortintertext] = ACTIONS(4995), }, - [1434] = { - [sym_command_name] = ACTIONS(5225), + [1358] = { + [sym_command_name] = ACTIONS(5185), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_LPAREN] = ACTIONS(5223), - [anon_sym_RPAREN] = ACTIONS(5223), - [anon_sym_LBRACK] = ACTIONS(5223), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_LBRACE] = ACTIONS(5223), - [anon_sym_RBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), - [anon_sym_DOLLAR] = ACTIONS(5225), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), + [anon_sym_BSLASHiffalse] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5183), + [anon_sym_RPAREN] = ACTIONS(5183), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_RBRACK] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5183), + [sym_word] = ACTIONS(5185), + [sym_placeholder] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_CARET] = ACTIONS(5185), + [anon_sym__] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_COLON] = ACTIONS(5185), + [anon_sym_SQUOTE] = ACTIONS(5185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), + [anon_sym_DOLLAR] = ACTIONS(5185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), + [anon_sym_BSLASHbegin] = ACTIONS(5185), + [anon_sym_BSLASHusepackage] = ACTIONS(5185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), + [anon_sym_BSLASHinclude] = ACTIONS(5185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), + [anon_sym_BSLASHinput] = ACTIONS(5185), + [anon_sym_BSLASHsubfile] = ACTIONS(5185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), + [anon_sym_BSLASHbibliography] = ACTIONS(5185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), + [anon_sym_BSLASHincludesvg] = ACTIONS(5185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), + [anon_sym_BSLASHimport] = ACTIONS(5185), + [anon_sym_BSLASHsubimport] = ACTIONS(5185), + [anon_sym_BSLASHinputfrom] = ACTIONS(5185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), + [anon_sym_BSLASHincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHcaption] = ACTIONS(5185), + [anon_sym_BSLASHcite] = ACTIONS(5185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCite] = ACTIONS(5185), + [anon_sym_BSLASHnocite] = ACTIONS(5185), + [anon_sym_BSLASHcitet] = ACTIONS(5185), + [anon_sym_BSLASHcitep] = ACTIONS(5185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteauthor] = ACTIONS(5185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitetitle] = ACTIONS(5185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteyear] = ACTIONS(5185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitedate] = ACTIONS(5185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteurl] = ACTIONS(5185), + [anon_sym_BSLASHfullcite] = ACTIONS(5185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), + [anon_sym_BSLASHcitealt] = ACTIONS(5185), + [anon_sym_BSLASHcitealp] = ACTIONS(5185), + [anon_sym_BSLASHcitetext] = ACTIONS(5185), + [anon_sym_BSLASHparencite] = ACTIONS(5185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHParencite] = ACTIONS(5185), + [anon_sym_BSLASHfootcite] = ACTIONS(5185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), + [anon_sym_BSLASHtextcite] = ACTIONS(5185), + [anon_sym_BSLASHTextcite] = ACTIONS(5185), + [anon_sym_BSLASHsmartcite] = ACTIONS(5185), + [anon_sym_BSLASHSmartcite] = ACTIONS(5185), + [anon_sym_BSLASHsupercite] = ACTIONS(5185), + [anon_sym_BSLASHautocite] = ACTIONS(5185), + [anon_sym_BSLASHAutocite] = ACTIONS(5185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHvolcite] = ACTIONS(5185), + [anon_sym_BSLASHVolcite] = ACTIONS(5185), + [anon_sym_BSLASHpvolcite] = ACTIONS(5185), + [anon_sym_BSLASHPvolcite] = ACTIONS(5185), + [anon_sym_BSLASHfvolcite] = ACTIONS(5185), + [anon_sym_BSLASHftvolcite] = ACTIONS(5185), + [anon_sym_BSLASHsvolcite] = ACTIONS(5185), + [anon_sym_BSLASHSvolcite] = ACTIONS(5185), + [anon_sym_BSLASHtvolcite] = ACTIONS(5185), + [anon_sym_BSLASHTvolcite] = ACTIONS(5185), + [anon_sym_BSLASHavolcite] = ACTIONS(5185), + [anon_sym_BSLASHAvolcite] = ACTIONS(5185), + [anon_sym_BSLASHnotecite] = ACTIONS(5185), + [anon_sym_BSLASHNotecite] = ACTIONS(5185), + [anon_sym_BSLASHpnotecite] = ACTIONS(5185), + [anon_sym_BSLASHPnotecite] = ACTIONS(5185), + [anon_sym_BSLASHfnotecite] = ACTIONS(5185), + [anon_sym_BSLASHlabel] = ACTIONS(5185), + [anon_sym_BSLASHref] = ACTIONS(5185), + [anon_sym_BSLASHeqref] = ACTIONS(5185), + [anon_sym_BSLASHvref] = ACTIONS(5185), + [anon_sym_BSLASHVref] = ACTIONS(5185), + [anon_sym_BSLASHautoref] = ACTIONS(5185), + [anon_sym_BSLASHpageref] = ACTIONS(5185), + [anon_sym_BSLASHcref] = ACTIONS(5185), + [anon_sym_BSLASHCref] = ACTIONS(5185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnameCref] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHlabelcref] = ACTIONS(5185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCrefrange] = ACTIONS(5185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnewlabel] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), + [anon_sym_BSLASHdef] = ACTIONS(5185), + [anon_sym_BSLASHlet] = ACTIONS(5185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), + [anon_sym_BSLASHgls] = ACTIONS(5185), + [anon_sym_BSLASHGls] = ACTIONS(5185), + [anon_sym_BSLASHGLS] = ACTIONS(5185), + [anon_sym_BSLASHglspl] = ACTIONS(5185), + [anon_sym_BSLASHGlspl] = ACTIONS(5185), + [anon_sym_BSLASHGLSpl] = ACTIONS(5185), + [anon_sym_BSLASHglsdisp] = ACTIONS(5185), + [anon_sym_BSLASHglslink] = ACTIONS(5185), + [anon_sym_BSLASHglstext] = ACTIONS(5185), + [anon_sym_BSLASHGlstext] = ACTIONS(5185), + [anon_sym_BSLASHGLStext] = ACTIONS(5185), + [anon_sym_BSLASHglsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), + [anon_sym_BSLASHglsplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSplural] = ACTIONS(5185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHglsname] = ACTIONS(5185), + [anon_sym_BSLASHGlsname] = ACTIONS(5185), + [anon_sym_BSLASHGLSname] = ACTIONS(5185), + [anon_sym_BSLASHglssymbol] = ACTIONS(5185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), + [anon_sym_BSLASHglsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), + [anon_sym_BSLASHglsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), + [anon_sym_BSLASHglsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), + [anon_sym_BSLASHglsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), + [anon_sym_BSLASHglsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), + [anon_sym_BSLASHnewacronym] = ACTIONS(5185), + [anon_sym_BSLASHacrshort] = ACTIONS(5185), + [anon_sym_BSLASHAcrshort] = ACTIONS(5185), + [anon_sym_BSLASHACRshort] = ACTIONS(5185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), + [anon_sym_BSLASHacrlong] = ACTIONS(5185), + [anon_sym_BSLASHAcrlong] = ACTIONS(5185), + [anon_sym_BSLASHACRlong] = ACTIONS(5185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), + [anon_sym_BSLASHacrfull] = ACTIONS(5185), + [anon_sym_BSLASHAcrfull] = ACTIONS(5185), + [anon_sym_BSLASHACRfull] = ACTIONS(5185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), + [anon_sym_BSLASHacs] = ACTIONS(5185), + [anon_sym_BSLASHAcs] = ACTIONS(5185), + [anon_sym_BSLASHacsp] = ACTIONS(5185), + [anon_sym_BSLASHAcsp] = ACTIONS(5185), + [anon_sym_BSLASHacl] = ACTIONS(5185), + [anon_sym_BSLASHAcl] = ACTIONS(5185), + [anon_sym_BSLASHaclp] = ACTIONS(5185), + [anon_sym_BSLASHAclp] = ACTIONS(5185), + [anon_sym_BSLASHacf] = ACTIONS(5185), + [anon_sym_BSLASHAcf] = ACTIONS(5185), + [anon_sym_BSLASHacfp] = ACTIONS(5185), + [anon_sym_BSLASHAcfp] = ACTIONS(5185), + [anon_sym_BSLASHac] = ACTIONS(5185), + [anon_sym_BSLASHAc] = ACTIONS(5185), + [anon_sym_BSLASHacp] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), + [anon_sym_BSLASHcolor] = ACTIONS(5185), + [anon_sym_BSLASHcolorbox] = ACTIONS(5185), + [anon_sym_BSLASHtextcolor] = ACTIONS(5185), + [anon_sym_BSLASHpagecolor] = ACTIONS(5185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), + [anon_sym_BSLASHtext] = ACTIONS(5185), + [anon_sym_BSLASHintertext] = ACTIONS(5185), + [anon_sym_shortintertext] = ACTIONS(5185), }, - [1435] = { - [sym_command_name] = ACTIONS(5209), + [1359] = { + [sym_command_name] = ACTIONS(5081), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_LPAREN] = ACTIONS(5207), - [anon_sym_RPAREN] = ACTIONS(5207), - [anon_sym_LBRACK] = ACTIONS(5207), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_LBRACE] = ACTIONS(5207), - [anon_sym_RBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), - [anon_sym_DOLLAR] = ACTIONS(5209), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHiffalse] = ACTIONS(5081), + [anon_sym_LPAREN] = ACTIONS(5079), + [anon_sym_RPAREN] = ACTIONS(5079), + [anon_sym_LBRACK] = ACTIONS(5079), + [anon_sym_RBRACK] = ACTIONS(5079), + [anon_sym_COMMA] = ACTIONS(5079), + [anon_sym_EQ] = ACTIONS(5079), + [anon_sym_LBRACE] = ACTIONS(5079), + [sym_word] = ACTIONS(5081), + [sym_placeholder] = ACTIONS(5079), + [anon_sym_PLUS] = ACTIONS(5081), + [anon_sym_DASH] = ACTIONS(5081), + [anon_sym_STAR] = ACTIONS(5081), + [anon_sym_SLASH] = ACTIONS(5081), + [anon_sym_CARET] = ACTIONS(5081), + [anon_sym__] = ACTIONS(5081), + [anon_sym_LT] = ACTIONS(5081), + [anon_sym_GT] = ACTIONS(5081), + [anon_sym_BANG] = ACTIONS(5081), + [anon_sym_PIPE] = ACTIONS(5081), + [anon_sym_COLON] = ACTIONS(5081), + [anon_sym_SQUOTE] = ACTIONS(5081), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), + [anon_sym_DOLLAR] = ACTIONS(5081), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), + [anon_sym_BSLASHbegin] = ACTIONS(5081), + [anon_sym_BSLASHusepackage] = ACTIONS(5081), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), + [anon_sym_BSLASHinclude] = ACTIONS(5081), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), + [anon_sym_BSLASHinput] = ACTIONS(5081), + [anon_sym_BSLASHsubfile] = ACTIONS(5081), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), + [anon_sym_BSLASHbibliography] = ACTIONS(5081), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), + [anon_sym_BSLASHincludesvg] = ACTIONS(5081), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), + [anon_sym_BSLASHimport] = ACTIONS(5081), + [anon_sym_BSLASHsubimport] = ACTIONS(5081), + [anon_sym_BSLASHinputfrom] = ACTIONS(5081), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), + [anon_sym_BSLASHincludefrom] = ACTIONS(5081), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), + [anon_sym_BSLASHcaption] = ACTIONS(5081), + [anon_sym_BSLASHcite] = ACTIONS(5081), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCite] = ACTIONS(5081), + [anon_sym_BSLASHnocite] = ACTIONS(5081), + [anon_sym_BSLASHcitet] = ACTIONS(5081), + [anon_sym_BSLASHcitep] = ACTIONS(5081), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteauthor] = ACTIONS(5081), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitetitle] = ACTIONS(5081), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteyear] = ACTIONS(5081), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), + [anon_sym_BSLASHcitedate] = ACTIONS(5081), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), + [anon_sym_BSLASHciteurl] = ACTIONS(5081), + [anon_sym_BSLASHfullcite] = ACTIONS(5081), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), + [anon_sym_BSLASHcitealt] = ACTIONS(5081), + [anon_sym_BSLASHcitealp] = ACTIONS(5081), + [anon_sym_BSLASHcitetext] = ACTIONS(5081), + [anon_sym_BSLASHparencite] = ACTIONS(5081), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHParencite] = ACTIONS(5081), + [anon_sym_BSLASHfootcite] = ACTIONS(5081), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), + [anon_sym_BSLASHtextcite] = ACTIONS(5081), + [anon_sym_BSLASHTextcite] = ACTIONS(5081), + [anon_sym_BSLASHsmartcite] = ACTIONS(5081), + [anon_sym_BSLASHSmartcite] = ACTIONS(5081), + [anon_sym_BSLASHsupercite] = ACTIONS(5081), + [anon_sym_BSLASHautocite] = ACTIONS(5081), + [anon_sym_BSLASHAutocite] = ACTIONS(5081), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), + [anon_sym_BSLASHvolcite] = ACTIONS(5081), + [anon_sym_BSLASHVolcite] = ACTIONS(5081), + [anon_sym_BSLASHpvolcite] = ACTIONS(5081), + [anon_sym_BSLASHPvolcite] = ACTIONS(5081), + [anon_sym_BSLASHfvolcite] = ACTIONS(5081), + [anon_sym_BSLASHftvolcite] = ACTIONS(5081), + [anon_sym_BSLASHsvolcite] = ACTIONS(5081), + [anon_sym_BSLASHSvolcite] = ACTIONS(5081), + [anon_sym_BSLASHtvolcite] = ACTIONS(5081), + [anon_sym_BSLASHTvolcite] = ACTIONS(5081), + [anon_sym_BSLASHavolcite] = ACTIONS(5081), + [anon_sym_BSLASHAvolcite] = ACTIONS(5081), + [anon_sym_BSLASHnotecite] = ACTIONS(5081), + [anon_sym_BSLASHNotecite] = ACTIONS(5081), + [anon_sym_BSLASHpnotecite] = ACTIONS(5081), + [anon_sym_BSLASHPnotecite] = ACTIONS(5081), + [anon_sym_BSLASHfnotecite] = ACTIONS(5081), + [anon_sym_BSLASHlabel] = ACTIONS(5081), + [anon_sym_BSLASHref] = ACTIONS(5081), + [anon_sym_BSLASHeqref] = ACTIONS(5081), + [anon_sym_BSLASHvref] = ACTIONS(5081), + [anon_sym_BSLASHVref] = ACTIONS(5081), + [anon_sym_BSLASHautoref] = ACTIONS(5081), + [anon_sym_BSLASHpageref] = ACTIONS(5081), + [anon_sym_BSLASHcref] = ACTIONS(5081), + [anon_sym_BSLASHCref] = ACTIONS(5081), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), + [anon_sym_BSLASHnamecref] = ACTIONS(5081), + [anon_sym_BSLASHnameCref] = ACTIONS(5081), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), + [anon_sym_BSLASHlabelcref] = ACTIONS(5081), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), + [anon_sym_BSLASHcrefrange] = ACTIONS(5081), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), + [anon_sym_BSLASHCrefrange] = ACTIONS(5081), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), + [anon_sym_BSLASHnewlabel] = ACTIONS(5081), + [anon_sym_BSLASHnewcommand] = ACTIONS(5081), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), + [anon_sym_BSLASHdef] = ACTIONS(5081), + [anon_sym_BSLASHlet] = ACTIONS(5081), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), + [anon_sym_BSLASHgls] = ACTIONS(5081), + [anon_sym_BSLASHGls] = ACTIONS(5081), + [anon_sym_BSLASHGLS] = ACTIONS(5081), + [anon_sym_BSLASHglspl] = ACTIONS(5081), + [anon_sym_BSLASHGlspl] = ACTIONS(5081), + [anon_sym_BSLASHGLSpl] = ACTIONS(5081), + [anon_sym_BSLASHglsdisp] = ACTIONS(5081), + [anon_sym_BSLASHglslink] = ACTIONS(5081), + [anon_sym_BSLASHglstext] = ACTIONS(5081), + [anon_sym_BSLASHGlstext] = ACTIONS(5081), + [anon_sym_BSLASHGLStext] = ACTIONS(5081), + [anon_sym_BSLASHglsfirst] = ACTIONS(5081), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), + [anon_sym_BSLASHglsplural] = ACTIONS(5081), + [anon_sym_BSLASHGlsplural] = ACTIONS(5081), + [anon_sym_BSLASHGLSplural] = ACTIONS(5081), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), + [anon_sym_BSLASHglsname] = ACTIONS(5081), + [anon_sym_BSLASHGlsname] = ACTIONS(5081), + [anon_sym_BSLASHGLSname] = ACTIONS(5081), + [anon_sym_BSLASHglssymbol] = ACTIONS(5081), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), + [anon_sym_BSLASHglsdesc] = ACTIONS(5081), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), + [anon_sym_BSLASHglsuseri] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), + [anon_sym_BSLASHglsuserii] = ACTIONS(5081), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), + [anon_sym_BSLASHglsuserv] = ACTIONS(5081), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), + [anon_sym_BSLASHglsuservi] = ACTIONS(5081), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), + [anon_sym_BSLASHnewacronym] = ACTIONS(5081), + [anon_sym_BSLASHacrshort] = ACTIONS(5081), + [anon_sym_BSLASHAcrshort] = ACTIONS(5081), + [anon_sym_BSLASHACRshort] = ACTIONS(5081), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), + [anon_sym_BSLASHacrlong] = ACTIONS(5081), + [anon_sym_BSLASHAcrlong] = ACTIONS(5081), + [anon_sym_BSLASHACRlong] = ACTIONS(5081), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), + [anon_sym_BSLASHacrfull] = ACTIONS(5081), + [anon_sym_BSLASHAcrfull] = ACTIONS(5081), + [anon_sym_BSLASHACRfull] = ACTIONS(5081), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), + [anon_sym_BSLASHacs] = ACTIONS(5081), + [anon_sym_BSLASHAcs] = ACTIONS(5081), + [anon_sym_BSLASHacsp] = ACTIONS(5081), + [anon_sym_BSLASHAcsp] = ACTIONS(5081), + [anon_sym_BSLASHacl] = ACTIONS(5081), + [anon_sym_BSLASHAcl] = ACTIONS(5081), + [anon_sym_BSLASHaclp] = ACTIONS(5081), + [anon_sym_BSLASHAclp] = ACTIONS(5081), + [anon_sym_BSLASHacf] = ACTIONS(5081), + [anon_sym_BSLASHAcf] = ACTIONS(5081), + [anon_sym_BSLASHacfp] = ACTIONS(5081), + [anon_sym_BSLASHAcfp] = ACTIONS(5081), + [anon_sym_BSLASHac] = ACTIONS(5081), + [anon_sym_BSLASHAc] = ACTIONS(5081), + [anon_sym_BSLASHacp] = ACTIONS(5081), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), + [anon_sym_BSLASHcolor] = ACTIONS(5081), + [anon_sym_BSLASHcolorbox] = ACTIONS(5081), + [anon_sym_BSLASHtextcolor] = ACTIONS(5081), + [anon_sym_BSLASHpagecolor] = ACTIONS(5081), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), + [anon_sym_BSLASHtext] = ACTIONS(5081), + [anon_sym_BSLASHintertext] = ACTIONS(5081), + [anon_sym_shortintertext] = ACTIONS(5081), }, - [1436] = { - [sym_command_name] = ACTIONS(5205), + [1360] = { + [sym_command_name] = ACTIONS(5085), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_LPAREN] = ACTIONS(5203), - [anon_sym_RPAREN] = ACTIONS(5203), - [anon_sym_LBRACK] = ACTIONS(5203), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_LBRACE] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), - [anon_sym_DOLLAR] = ACTIONS(5205), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), - }, - [1437] = { - [sym_command_name] = ACTIONS(147), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(145), - [anon_sym_RPAREN] = ACTIONS(145), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_RBRACK] = ACTIONS(145), - [anon_sym_COMMA] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(145), - [anon_sym_RBRACE] = ACTIONS(145), - [sym_word] = ACTIONS(147), - [sym_placeholder] = ACTIONS(145), - [anon_sym_PLUS] = ACTIONS(147), - [anon_sym_DASH] = ACTIONS(147), - [anon_sym_STAR] = ACTIONS(147), - [anon_sym_SLASH] = ACTIONS(147), - [anon_sym_CARET] = ACTIONS(147), - [anon_sym__] = ACTIONS(147), - [anon_sym_LT] = ACTIONS(147), - [anon_sym_GT] = ACTIONS(147), - [anon_sym_BANG] = ACTIONS(147), - [anon_sym_PIPE] = ACTIONS(147), - [anon_sym_COLON] = ACTIONS(147), - [anon_sym_SQUOTE] = ACTIONS(147), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(145), - [anon_sym_BSLASH_LBRACK] = ACTIONS(145), - [anon_sym_DOLLAR] = ACTIONS(147), - [anon_sym_BSLASH_LPAREN] = ACTIONS(145), - [anon_sym_BSLASH_LBRACE] = ACTIONS(145), - [anon_sym_BSLASHusepackage] = ACTIONS(147), - [anon_sym_BSLASHRequirePackage] = ACTIONS(147), - [anon_sym_BSLASHdocumentclass] = ACTIONS(147), - [anon_sym_BSLASHinclude] = ACTIONS(147), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(147), - [anon_sym_BSLASHinput] = ACTIONS(147), - [anon_sym_BSLASHsubfile] = ACTIONS(147), - [anon_sym_BSLASHaddbibresource] = ACTIONS(147), - [anon_sym_BSLASHbibliography] = ACTIONS(147), - [anon_sym_BSLASHincludegraphics] = ACTIONS(147), - [anon_sym_BSLASHincludesvg] = ACTIONS(147), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(147), - [anon_sym_BSLASHverbatiminput] = ACTIONS(147), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(147), - [anon_sym_BSLASHimport] = ACTIONS(147), - [anon_sym_BSLASHsubimport] = ACTIONS(147), - [anon_sym_BSLASHinputfrom] = ACTIONS(147), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(147), - [anon_sym_BSLASHincludefrom] = ACTIONS(147), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(147), - [anon_sym_BSLASHcaption] = ACTIONS(147), - [anon_sym_BSLASHcite] = ACTIONS(147), - [anon_sym_BSLASHcite_STAR] = ACTIONS(145), - [anon_sym_BSLASHCite] = ACTIONS(147), - [anon_sym_BSLASHnocite] = ACTIONS(147), - [anon_sym_BSLASHcitet] = ACTIONS(147), - [anon_sym_BSLASHcitep] = ACTIONS(147), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteauthor] = ACTIONS(147), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHCiteauthor] = ACTIONS(147), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitetitle] = ACTIONS(147), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteyear] = ACTIONS(147), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(145), - [anon_sym_BSLASHcitedate] = ACTIONS(147), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(145), - [anon_sym_BSLASHciteurl] = ACTIONS(147), - [anon_sym_BSLASHfullcite] = ACTIONS(147), - [anon_sym_BSLASHciteyearpar] = ACTIONS(147), - [anon_sym_BSLASHcitealt] = ACTIONS(147), - [anon_sym_BSLASHcitealp] = ACTIONS(147), - [anon_sym_BSLASHcitetext] = ACTIONS(147), - [anon_sym_BSLASHparencite] = ACTIONS(147), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(145), - [anon_sym_BSLASHParencite] = ACTIONS(147), - [anon_sym_BSLASHfootcite] = ACTIONS(147), - [anon_sym_BSLASHfootfullcite] = ACTIONS(147), - [anon_sym_BSLASHfootcitetext] = ACTIONS(147), - [anon_sym_BSLASHtextcite] = ACTIONS(147), - [anon_sym_BSLASHTextcite] = ACTIONS(147), - [anon_sym_BSLASHsmartcite] = ACTIONS(147), - [anon_sym_BSLASHSmartcite] = ACTIONS(147), - [anon_sym_BSLASHsupercite] = ACTIONS(147), - [anon_sym_BSLASHautocite] = ACTIONS(147), - [anon_sym_BSLASHAutocite] = ACTIONS(147), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(145), - [anon_sym_BSLASHvolcite] = ACTIONS(147), - [anon_sym_BSLASHVolcite] = ACTIONS(147), - [anon_sym_BSLASHpvolcite] = ACTIONS(147), - [anon_sym_BSLASHPvolcite] = ACTIONS(147), - [anon_sym_BSLASHfvolcite] = ACTIONS(147), - [anon_sym_BSLASHftvolcite] = ACTIONS(147), - [anon_sym_BSLASHsvolcite] = ACTIONS(147), - [anon_sym_BSLASHSvolcite] = ACTIONS(147), - [anon_sym_BSLASHtvolcite] = ACTIONS(147), - [anon_sym_BSLASHTvolcite] = ACTIONS(147), - [anon_sym_BSLASHavolcite] = ACTIONS(147), - [anon_sym_BSLASHAvolcite] = ACTIONS(147), - [anon_sym_BSLASHnotecite] = ACTIONS(147), - [anon_sym_BSLASHNotecite] = ACTIONS(147), - [anon_sym_BSLASHpnotecite] = ACTIONS(147), - [anon_sym_BSLASHPnotecite] = ACTIONS(147), - [anon_sym_BSLASHfnotecite] = ACTIONS(147), - [anon_sym_BSLASHlabel] = ACTIONS(147), - [anon_sym_BSLASHref] = ACTIONS(147), - [anon_sym_BSLASHeqref] = ACTIONS(147), - [anon_sym_BSLASHvref] = ACTIONS(147), - [anon_sym_BSLASHVref] = ACTIONS(147), - [anon_sym_BSLASHautoref] = ACTIONS(147), - [anon_sym_BSLASHpageref] = ACTIONS(147), - [anon_sym_BSLASHcref] = ACTIONS(147), - [anon_sym_BSLASHCref] = ACTIONS(147), - [anon_sym_BSLASHcref_STAR] = ACTIONS(145), - [anon_sym_BSLASHCref_STAR] = ACTIONS(145), - [anon_sym_BSLASHnamecref] = ACTIONS(147), - [anon_sym_BSLASHnameCref] = ACTIONS(147), - [anon_sym_BSLASHlcnamecref] = ACTIONS(147), - [anon_sym_BSLASHnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHnameCrefs] = ACTIONS(147), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(147), - [anon_sym_BSLASHlabelcref] = ACTIONS(147), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(147), - [anon_sym_BSLASHcrefrange] = ACTIONS(147), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHCrefrange] = ACTIONS(147), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(145), - [anon_sym_BSLASHnewlabel] = ACTIONS(147), - [anon_sym_BSLASHnewcommand] = ACTIONS(147), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHrenewcommand] = ACTIONS(147), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(147), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(145), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(147), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(145), - [anon_sym_BSLASHdef] = ACTIONS(147), - [anon_sym_BSLASHlet] = ACTIONS(147), - [anon_sym_BSLASHnewenvironment] = ACTIONS(147), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(147), - [anon_sym_BSLASHgls] = ACTIONS(147), - [anon_sym_BSLASHGls] = ACTIONS(147), - [anon_sym_BSLASHGLS] = ACTIONS(147), - [anon_sym_BSLASHglspl] = ACTIONS(147), - [anon_sym_BSLASHGlspl] = ACTIONS(147), - [anon_sym_BSLASHGLSpl] = ACTIONS(147), - [anon_sym_BSLASHglsdisp] = ACTIONS(147), - [anon_sym_BSLASHglslink] = ACTIONS(147), - [anon_sym_BSLASHglstext] = ACTIONS(147), - [anon_sym_BSLASHGlstext] = ACTIONS(147), - [anon_sym_BSLASHGLStext] = ACTIONS(147), - [anon_sym_BSLASHglsfirst] = ACTIONS(147), - [anon_sym_BSLASHGlsfirst] = ACTIONS(147), - [anon_sym_BSLASHGLSfirst] = ACTIONS(147), - [anon_sym_BSLASHglsplural] = ACTIONS(147), - [anon_sym_BSLASHGlsplural] = ACTIONS(147), - [anon_sym_BSLASHGLSplural] = ACTIONS(147), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(147), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(147), - [anon_sym_BSLASHglsname] = ACTIONS(147), - [anon_sym_BSLASHGlsname] = ACTIONS(147), - [anon_sym_BSLASHGLSname] = ACTIONS(147), - [anon_sym_BSLASHglssymbol] = ACTIONS(147), - [anon_sym_BSLASHGlssymbol] = ACTIONS(147), - [anon_sym_BSLASHglsdesc] = ACTIONS(147), - [anon_sym_BSLASHGlsdesc] = ACTIONS(147), - [anon_sym_BSLASHGLSdesc] = ACTIONS(147), - [anon_sym_BSLASHglsuseri] = ACTIONS(147), - [anon_sym_BSLASHGlsuseri] = ACTIONS(147), - [anon_sym_BSLASHGLSuseri] = ACTIONS(147), - [anon_sym_BSLASHglsuserii] = ACTIONS(147), - [anon_sym_BSLASHGlsuserii] = ACTIONS(147), - [anon_sym_BSLASHGLSuserii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(147), - [anon_sym_BSLASHglsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(147), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(147), - [anon_sym_BSLASHglsuserv] = ACTIONS(147), - [anon_sym_BSLASHGlsuserv] = ACTIONS(147), - [anon_sym_BSLASHGLSuserv] = ACTIONS(147), - [anon_sym_BSLASHglsuservi] = ACTIONS(147), - [anon_sym_BSLASHGlsuservi] = ACTIONS(147), - [anon_sym_BSLASHGLSuservi] = ACTIONS(147), - [anon_sym_BSLASHnewacronym] = ACTIONS(147), - [anon_sym_BSLASHacrshort] = ACTIONS(147), - [anon_sym_BSLASHAcrshort] = ACTIONS(147), - [anon_sym_BSLASHACRshort] = ACTIONS(147), - [anon_sym_BSLASHacrshortpl] = ACTIONS(147), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(147), - [anon_sym_BSLASHACRshortpl] = ACTIONS(147), - [anon_sym_BSLASHacrlong] = ACTIONS(147), - [anon_sym_BSLASHAcrlong] = ACTIONS(147), - [anon_sym_BSLASHACRlong] = ACTIONS(147), - [anon_sym_BSLASHacrlongpl] = ACTIONS(147), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(147), - [anon_sym_BSLASHACRlongpl] = ACTIONS(147), - [anon_sym_BSLASHacrfull] = ACTIONS(147), - [anon_sym_BSLASHAcrfull] = ACTIONS(147), - [anon_sym_BSLASHACRfull] = ACTIONS(147), - [anon_sym_BSLASHacrfullpl] = ACTIONS(147), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(147), - [anon_sym_BSLASHACRfullpl] = ACTIONS(147), - [anon_sym_BSLASHacs] = ACTIONS(147), - [anon_sym_BSLASHAcs] = ACTIONS(147), - [anon_sym_BSLASHacsp] = ACTIONS(147), - [anon_sym_BSLASHAcsp] = ACTIONS(147), - [anon_sym_BSLASHacl] = ACTIONS(147), - [anon_sym_BSLASHAcl] = ACTIONS(147), - [anon_sym_BSLASHaclp] = ACTIONS(147), - [anon_sym_BSLASHAclp] = ACTIONS(147), - [anon_sym_BSLASHacf] = ACTIONS(147), - [anon_sym_BSLASHAcf] = ACTIONS(147), - [anon_sym_BSLASHacfp] = ACTIONS(147), - [anon_sym_BSLASHAcfp] = ACTIONS(147), - [anon_sym_BSLASHac] = ACTIONS(147), - [anon_sym_BSLASHAc] = ACTIONS(147), - [anon_sym_BSLASHacp] = ACTIONS(147), - [anon_sym_BSLASHglsentrylong] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(147), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryshort] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(147), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(147), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(147), - [anon_sym_BSLASHnewtheorem] = ACTIONS(147), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(147), - [anon_sym_BSLASHdefinecolor] = ACTIONS(147), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(147), - [anon_sym_BSLASHcolor] = ACTIONS(147), - [anon_sym_BSLASHcolorbox] = ACTIONS(147), - [anon_sym_BSLASHtextcolor] = ACTIONS(147), - [anon_sym_BSLASHpagecolor] = ACTIONS(147), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(147), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(147), + [anon_sym_BSLASHiffalse] = ACTIONS(5085), + [anon_sym_LPAREN] = ACTIONS(5083), + [anon_sym_RPAREN] = ACTIONS(5083), + [anon_sym_LBRACK] = ACTIONS(5083), + [anon_sym_RBRACK] = ACTIONS(5083), + [anon_sym_COMMA] = ACTIONS(5083), + [anon_sym_EQ] = ACTIONS(5083), + [anon_sym_LBRACE] = ACTIONS(5083), + [sym_word] = ACTIONS(5085), + [sym_placeholder] = ACTIONS(5083), + [anon_sym_PLUS] = ACTIONS(5085), + [anon_sym_DASH] = ACTIONS(5085), + [anon_sym_STAR] = ACTIONS(5085), + [anon_sym_SLASH] = ACTIONS(5085), + [anon_sym_CARET] = ACTIONS(5085), + [anon_sym__] = ACTIONS(5085), + [anon_sym_LT] = ACTIONS(5085), + [anon_sym_GT] = ACTIONS(5085), + [anon_sym_BANG] = ACTIONS(5085), + [anon_sym_PIPE] = ACTIONS(5085), + [anon_sym_COLON] = ACTIONS(5085), + [anon_sym_SQUOTE] = ACTIONS(5085), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), + [anon_sym_DOLLAR] = ACTIONS(5085), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), + [anon_sym_BSLASHbegin] = ACTIONS(5085), + [anon_sym_BSLASHusepackage] = ACTIONS(5085), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), + [anon_sym_BSLASHinclude] = ACTIONS(5085), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), + [anon_sym_BSLASHinput] = ACTIONS(5085), + [anon_sym_BSLASHsubfile] = ACTIONS(5085), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), + [anon_sym_BSLASHbibliography] = ACTIONS(5085), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), + [anon_sym_BSLASHincludesvg] = ACTIONS(5085), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), + [anon_sym_BSLASHimport] = ACTIONS(5085), + [anon_sym_BSLASHsubimport] = ACTIONS(5085), + [anon_sym_BSLASHinputfrom] = ACTIONS(5085), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), + [anon_sym_BSLASHincludefrom] = ACTIONS(5085), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), + [anon_sym_BSLASHcaption] = ACTIONS(5085), + [anon_sym_BSLASHcite] = ACTIONS(5085), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCite] = ACTIONS(5085), + [anon_sym_BSLASHnocite] = ACTIONS(5085), + [anon_sym_BSLASHcitet] = ACTIONS(5085), + [anon_sym_BSLASHcitep] = ACTIONS(5085), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteauthor] = ACTIONS(5085), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitetitle] = ACTIONS(5085), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteyear] = ACTIONS(5085), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), + [anon_sym_BSLASHcitedate] = ACTIONS(5085), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), + [anon_sym_BSLASHciteurl] = ACTIONS(5085), + [anon_sym_BSLASHfullcite] = ACTIONS(5085), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), + [anon_sym_BSLASHcitealt] = ACTIONS(5085), + [anon_sym_BSLASHcitealp] = ACTIONS(5085), + [anon_sym_BSLASHcitetext] = ACTIONS(5085), + [anon_sym_BSLASHparencite] = ACTIONS(5085), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHParencite] = ACTIONS(5085), + [anon_sym_BSLASHfootcite] = ACTIONS(5085), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), + [anon_sym_BSLASHtextcite] = ACTIONS(5085), + [anon_sym_BSLASHTextcite] = ACTIONS(5085), + [anon_sym_BSLASHsmartcite] = ACTIONS(5085), + [anon_sym_BSLASHSmartcite] = ACTIONS(5085), + [anon_sym_BSLASHsupercite] = ACTIONS(5085), + [anon_sym_BSLASHautocite] = ACTIONS(5085), + [anon_sym_BSLASHAutocite] = ACTIONS(5085), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), + [anon_sym_BSLASHvolcite] = ACTIONS(5085), + [anon_sym_BSLASHVolcite] = ACTIONS(5085), + [anon_sym_BSLASHpvolcite] = ACTIONS(5085), + [anon_sym_BSLASHPvolcite] = ACTIONS(5085), + [anon_sym_BSLASHfvolcite] = ACTIONS(5085), + [anon_sym_BSLASHftvolcite] = ACTIONS(5085), + [anon_sym_BSLASHsvolcite] = ACTIONS(5085), + [anon_sym_BSLASHSvolcite] = ACTIONS(5085), + [anon_sym_BSLASHtvolcite] = ACTIONS(5085), + [anon_sym_BSLASHTvolcite] = ACTIONS(5085), + [anon_sym_BSLASHavolcite] = ACTIONS(5085), + [anon_sym_BSLASHAvolcite] = ACTIONS(5085), + [anon_sym_BSLASHnotecite] = ACTIONS(5085), + [anon_sym_BSLASHNotecite] = ACTIONS(5085), + [anon_sym_BSLASHpnotecite] = ACTIONS(5085), + [anon_sym_BSLASHPnotecite] = ACTIONS(5085), + [anon_sym_BSLASHfnotecite] = ACTIONS(5085), + [anon_sym_BSLASHlabel] = ACTIONS(5085), + [anon_sym_BSLASHref] = ACTIONS(5085), + [anon_sym_BSLASHeqref] = ACTIONS(5085), + [anon_sym_BSLASHvref] = ACTIONS(5085), + [anon_sym_BSLASHVref] = ACTIONS(5085), + [anon_sym_BSLASHautoref] = ACTIONS(5085), + [anon_sym_BSLASHpageref] = ACTIONS(5085), + [anon_sym_BSLASHcref] = ACTIONS(5085), + [anon_sym_BSLASHCref] = ACTIONS(5085), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), + [anon_sym_BSLASHnamecref] = ACTIONS(5085), + [anon_sym_BSLASHnameCref] = ACTIONS(5085), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), + [anon_sym_BSLASHlabelcref] = ACTIONS(5085), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), + [anon_sym_BSLASHcrefrange] = ACTIONS(5085), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), + [anon_sym_BSLASHCrefrange] = ACTIONS(5085), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), + [anon_sym_BSLASHnewlabel] = ACTIONS(5085), + [anon_sym_BSLASHnewcommand] = ACTIONS(5085), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), + [anon_sym_BSLASHdef] = ACTIONS(5085), + [anon_sym_BSLASHlet] = ACTIONS(5085), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), + [anon_sym_BSLASHgls] = ACTIONS(5085), + [anon_sym_BSLASHGls] = ACTIONS(5085), + [anon_sym_BSLASHGLS] = ACTIONS(5085), + [anon_sym_BSLASHglspl] = ACTIONS(5085), + [anon_sym_BSLASHGlspl] = ACTIONS(5085), + [anon_sym_BSLASHGLSpl] = ACTIONS(5085), + [anon_sym_BSLASHglsdisp] = ACTIONS(5085), + [anon_sym_BSLASHglslink] = ACTIONS(5085), + [anon_sym_BSLASHglstext] = ACTIONS(5085), + [anon_sym_BSLASHGlstext] = ACTIONS(5085), + [anon_sym_BSLASHGLStext] = ACTIONS(5085), + [anon_sym_BSLASHglsfirst] = ACTIONS(5085), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), + [anon_sym_BSLASHglsplural] = ACTIONS(5085), + [anon_sym_BSLASHGlsplural] = ACTIONS(5085), + [anon_sym_BSLASHGLSplural] = ACTIONS(5085), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), + [anon_sym_BSLASHglsname] = ACTIONS(5085), + [anon_sym_BSLASHGlsname] = ACTIONS(5085), + [anon_sym_BSLASHGLSname] = ACTIONS(5085), + [anon_sym_BSLASHglssymbol] = ACTIONS(5085), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), + [anon_sym_BSLASHglsdesc] = ACTIONS(5085), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), + [anon_sym_BSLASHglsuseri] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), + [anon_sym_BSLASHglsuserii] = ACTIONS(5085), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), + [anon_sym_BSLASHglsuserv] = ACTIONS(5085), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), + [anon_sym_BSLASHglsuservi] = ACTIONS(5085), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), + [anon_sym_BSLASHnewacronym] = ACTIONS(5085), + [anon_sym_BSLASHacrshort] = ACTIONS(5085), + [anon_sym_BSLASHAcrshort] = ACTIONS(5085), + [anon_sym_BSLASHACRshort] = ACTIONS(5085), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), + [anon_sym_BSLASHacrlong] = ACTIONS(5085), + [anon_sym_BSLASHAcrlong] = ACTIONS(5085), + [anon_sym_BSLASHACRlong] = ACTIONS(5085), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), + [anon_sym_BSLASHacrfull] = ACTIONS(5085), + [anon_sym_BSLASHAcrfull] = ACTIONS(5085), + [anon_sym_BSLASHACRfull] = ACTIONS(5085), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), + [anon_sym_BSLASHacs] = ACTIONS(5085), + [anon_sym_BSLASHAcs] = ACTIONS(5085), + [anon_sym_BSLASHacsp] = ACTIONS(5085), + [anon_sym_BSLASHAcsp] = ACTIONS(5085), + [anon_sym_BSLASHacl] = ACTIONS(5085), + [anon_sym_BSLASHAcl] = ACTIONS(5085), + [anon_sym_BSLASHaclp] = ACTIONS(5085), + [anon_sym_BSLASHAclp] = ACTIONS(5085), + [anon_sym_BSLASHacf] = ACTIONS(5085), + [anon_sym_BSLASHAcf] = ACTIONS(5085), + [anon_sym_BSLASHacfp] = ACTIONS(5085), + [anon_sym_BSLASHAcfp] = ACTIONS(5085), + [anon_sym_BSLASHac] = ACTIONS(5085), + [anon_sym_BSLASHAc] = ACTIONS(5085), + [anon_sym_BSLASHacp] = ACTIONS(5085), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), + [anon_sym_BSLASHcolor] = ACTIONS(5085), + [anon_sym_BSLASHcolorbox] = ACTIONS(5085), + [anon_sym_BSLASHtextcolor] = ACTIONS(5085), + [anon_sym_BSLASHpagecolor] = ACTIONS(5085), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), + [anon_sym_BSLASHtext] = ACTIONS(5085), + [anon_sym_BSLASHintertext] = ACTIONS(5085), + [anon_sym_shortintertext] = ACTIONS(5085), }, - [1438] = { - [sym_command_name] = ACTIONS(5201), + [1361] = { + [sym_command_name] = ACTIONS(5089), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_RPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), - [anon_sym_DOLLAR] = ACTIONS(5201), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), - }, - [1439] = { - [sym_command_name] = ACTIONS(131), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(129), - [anon_sym_RPAREN] = ACTIONS(129), - [anon_sym_LBRACK] = ACTIONS(129), - [anon_sym_RBRACK] = ACTIONS(129), - [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_RBRACE] = ACTIONS(129), - [sym_word] = ACTIONS(131), - [sym_placeholder] = ACTIONS(129), - [anon_sym_PLUS] = ACTIONS(131), - [anon_sym_DASH] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(131), - [anon_sym_SLASH] = ACTIONS(131), - [anon_sym_CARET] = ACTIONS(131), - [anon_sym__] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(131), - [anon_sym_GT] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(131), - [anon_sym_PIPE] = ACTIONS(131), - [anon_sym_COLON] = ACTIONS(131), - [anon_sym_SQUOTE] = ACTIONS(131), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(129), - [anon_sym_BSLASH_LBRACK] = ACTIONS(129), - [anon_sym_DOLLAR] = ACTIONS(131), - [anon_sym_BSLASH_LPAREN] = ACTIONS(129), - [anon_sym_BSLASH_LBRACE] = ACTIONS(129), - [anon_sym_BSLASHusepackage] = ACTIONS(131), - [anon_sym_BSLASHRequirePackage] = ACTIONS(131), - [anon_sym_BSLASHdocumentclass] = ACTIONS(131), - [anon_sym_BSLASHinclude] = ACTIONS(131), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(131), - [anon_sym_BSLASHinput] = ACTIONS(131), - [anon_sym_BSLASHsubfile] = ACTIONS(131), - [anon_sym_BSLASHaddbibresource] = ACTIONS(131), - [anon_sym_BSLASHbibliography] = ACTIONS(131), - [anon_sym_BSLASHincludegraphics] = ACTIONS(131), - [anon_sym_BSLASHincludesvg] = ACTIONS(131), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(131), - [anon_sym_BSLASHverbatiminput] = ACTIONS(131), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(131), - [anon_sym_BSLASHimport] = ACTIONS(131), - [anon_sym_BSLASHsubimport] = ACTIONS(131), - [anon_sym_BSLASHinputfrom] = ACTIONS(131), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(131), - [anon_sym_BSLASHincludefrom] = ACTIONS(131), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(131), - [anon_sym_BSLASHcaption] = ACTIONS(131), - [anon_sym_BSLASHcite] = ACTIONS(131), - [anon_sym_BSLASHcite_STAR] = ACTIONS(129), - [anon_sym_BSLASHCite] = ACTIONS(131), - [anon_sym_BSLASHnocite] = ACTIONS(131), - [anon_sym_BSLASHcitet] = ACTIONS(131), - [anon_sym_BSLASHcitep] = ACTIONS(131), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteauthor] = ACTIONS(131), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHCiteauthor] = ACTIONS(131), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitetitle] = ACTIONS(131), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteyear] = ACTIONS(131), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(129), - [anon_sym_BSLASHcitedate] = ACTIONS(131), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(129), - [anon_sym_BSLASHciteurl] = ACTIONS(131), - [anon_sym_BSLASHfullcite] = ACTIONS(131), - [anon_sym_BSLASHciteyearpar] = ACTIONS(131), - [anon_sym_BSLASHcitealt] = ACTIONS(131), - [anon_sym_BSLASHcitealp] = ACTIONS(131), - [anon_sym_BSLASHcitetext] = ACTIONS(131), - [anon_sym_BSLASHparencite] = ACTIONS(131), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(129), - [anon_sym_BSLASHParencite] = ACTIONS(131), - [anon_sym_BSLASHfootcite] = ACTIONS(131), - [anon_sym_BSLASHfootfullcite] = ACTIONS(131), - [anon_sym_BSLASHfootcitetext] = ACTIONS(131), - [anon_sym_BSLASHtextcite] = ACTIONS(131), - [anon_sym_BSLASHTextcite] = ACTIONS(131), - [anon_sym_BSLASHsmartcite] = ACTIONS(131), - [anon_sym_BSLASHSmartcite] = ACTIONS(131), - [anon_sym_BSLASHsupercite] = ACTIONS(131), - [anon_sym_BSLASHautocite] = ACTIONS(131), - [anon_sym_BSLASHAutocite] = ACTIONS(131), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(129), - [anon_sym_BSLASHvolcite] = ACTIONS(131), - [anon_sym_BSLASHVolcite] = ACTIONS(131), - [anon_sym_BSLASHpvolcite] = ACTIONS(131), - [anon_sym_BSLASHPvolcite] = ACTIONS(131), - [anon_sym_BSLASHfvolcite] = ACTIONS(131), - [anon_sym_BSLASHftvolcite] = ACTIONS(131), - [anon_sym_BSLASHsvolcite] = ACTIONS(131), - [anon_sym_BSLASHSvolcite] = ACTIONS(131), - [anon_sym_BSLASHtvolcite] = ACTIONS(131), - [anon_sym_BSLASHTvolcite] = ACTIONS(131), - [anon_sym_BSLASHavolcite] = ACTIONS(131), - [anon_sym_BSLASHAvolcite] = ACTIONS(131), - [anon_sym_BSLASHnotecite] = ACTIONS(131), - [anon_sym_BSLASHNotecite] = ACTIONS(131), - [anon_sym_BSLASHpnotecite] = ACTIONS(131), - [anon_sym_BSLASHPnotecite] = ACTIONS(131), - [anon_sym_BSLASHfnotecite] = ACTIONS(131), - [anon_sym_BSLASHlabel] = ACTIONS(131), - [anon_sym_BSLASHref] = ACTIONS(131), - [anon_sym_BSLASHeqref] = ACTIONS(131), - [anon_sym_BSLASHvref] = ACTIONS(131), - [anon_sym_BSLASHVref] = ACTIONS(131), - [anon_sym_BSLASHautoref] = ACTIONS(131), - [anon_sym_BSLASHpageref] = ACTIONS(131), - [anon_sym_BSLASHcref] = ACTIONS(131), - [anon_sym_BSLASHCref] = ACTIONS(131), - [anon_sym_BSLASHcref_STAR] = ACTIONS(129), - [anon_sym_BSLASHCref_STAR] = ACTIONS(129), - [anon_sym_BSLASHnamecref] = ACTIONS(131), - [anon_sym_BSLASHnameCref] = ACTIONS(131), - [anon_sym_BSLASHlcnamecref] = ACTIONS(131), - [anon_sym_BSLASHnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHnameCrefs] = ACTIONS(131), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(131), - [anon_sym_BSLASHlabelcref] = ACTIONS(131), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(131), - [anon_sym_BSLASHcrefrange] = ACTIONS(131), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHCrefrange] = ACTIONS(131), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(129), - [anon_sym_BSLASHnewlabel] = ACTIONS(131), - [anon_sym_BSLASHnewcommand] = ACTIONS(131), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHrenewcommand] = ACTIONS(131), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(131), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(129), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(131), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(129), - [anon_sym_BSLASHdef] = ACTIONS(131), - [anon_sym_BSLASHlet] = ACTIONS(131), - [anon_sym_BSLASHnewenvironment] = ACTIONS(131), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(131), - [anon_sym_BSLASHgls] = ACTIONS(131), - [anon_sym_BSLASHGls] = ACTIONS(131), - [anon_sym_BSLASHGLS] = ACTIONS(131), - [anon_sym_BSLASHglspl] = ACTIONS(131), - [anon_sym_BSLASHGlspl] = ACTIONS(131), - [anon_sym_BSLASHGLSpl] = ACTIONS(131), - [anon_sym_BSLASHglsdisp] = ACTIONS(131), - [anon_sym_BSLASHglslink] = ACTIONS(131), - [anon_sym_BSLASHglstext] = ACTIONS(131), - [anon_sym_BSLASHGlstext] = ACTIONS(131), - [anon_sym_BSLASHGLStext] = ACTIONS(131), - [anon_sym_BSLASHglsfirst] = ACTIONS(131), - [anon_sym_BSLASHGlsfirst] = ACTIONS(131), - [anon_sym_BSLASHGLSfirst] = ACTIONS(131), - [anon_sym_BSLASHglsplural] = ACTIONS(131), - [anon_sym_BSLASHGlsplural] = ACTIONS(131), - [anon_sym_BSLASHGLSplural] = ACTIONS(131), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(131), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(131), - [anon_sym_BSLASHglsname] = ACTIONS(131), - [anon_sym_BSLASHGlsname] = ACTIONS(131), - [anon_sym_BSLASHGLSname] = ACTIONS(131), - [anon_sym_BSLASHglssymbol] = ACTIONS(131), - [anon_sym_BSLASHGlssymbol] = ACTIONS(131), - [anon_sym_BSLASHglsdesc] = ACTIONS(131), - [anon_sym_BSLASHGlsdesc] = ACTIONS(131), - [anon_sym_BSLASHGLSdesc] = ACTIONS(131), - [anon_sym_BSLASHglsuseri] = ACTIONS(131), - [anon_sym_BSLASHGlsuseri] = ACTIONS(131), - [anon_sym_BSLASHGLSuseri] = ACTIONS(131), - [anon_sym_BSLASHglsuserii] = ACTIONS(131), - [anon_sym_BSLASHGlsuserii] = ACTIONS(131), - [anon_sym_BSLASHGLSuserii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(131), - [anon_sym_BSLASHglsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(131), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(131), - [anon_sym_BSLASHglsuserv] = ACTIONS(131), - [anon_sym_BSLASHGlsuserv] = ACTIONS(131), - [anon_sym_BSLASHGLSuserv] = ACTIONS(131), - [anon_sym_BSLASHglsuservi] = ACTIONS(131), - [anon_sym_BSLASHGlsuservi] = ACTIONS(131), - [anon_sym_BSLASHGLSuservi] = ACTIONS(131), - [anon_sym_BSLASHnewacronym] = ACTIONS(131), - [anon_sym_BSLASHacrshort] = ACTIONS(131), - [anon_sym_BSLASHAcrshort] = ACTIONS(131), - [anon_sym_BSLASHACRshort] = ACTIONS(131), - [anon_sym_BSLASHacrshortpl] = ACTIONS(131), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(131), - [anon_sym_BSLASHACRshortpl] = ACTIONS(131), - [anon_sym_BSLASHacrlong] = ACTIONS(131), - [anon_sym_BSLASHAcrlong] = ACTIONS(131), - [anon_sym_BSLASHACRlong] = ACTIONS(131), - [anon_sym_BSLASHacrlongpl] = ACTIONS(131), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(131), - [anon_sym_BSLASHACRlongpl] = ACTIONS(131), - [anon_sym_BSLASHacrfull] = ACTIONS(131), - [anon_sym_BSLASHAcrfull] = ACTIONS(131), - [anon_sym_BSLASHACRfull] = ACTIONS(131), - [anon_sym_BSLASHacrfullpl] = ACTIONS(131), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(131), - [anon_sym_BSLASHACRfullpl] = ACTIONS(131), - [anon_sym_BSLASHacs] = ACTIONS(131), - [anon_sym_BSLASHAcs] = ACTIONS(131), - [anon_sym_BSLASHacsp] = ACTIONS(131), - [anon_sym_BSLASHAcsp] = ACTIONS(131), - [anon_sym_BSLASHacl] = ACTIONS(131), - [anon_sym_BSLASHAcl] = ACTIONS(131), - [anon_sym_BSLASHaclp] = ACTIONS(131), - [anon_sym_BSLASHAclp] = ACTIONS(131), - [anon_sym_BSLASHacf] = ACTIONS(131), - [anon_sym_BSLASHAcf] = ACTIONS(131), - [anon_sym_BSLASHacfp] = ACTIONS(131), - [anon_sym_BSLASHAcfp] = ACTIONS(131), - [anon_sym_BSLASHac] = ACTIONS(131), - [anon_sym_BSLASHAc] = ACTIONS(131), - [anon_sym_BSLASHacp] = ACTIONS(131), - [anon_sym_BSLASHglsentrylong] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(131), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryshort] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(131), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(131), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(131), - [anon_sym_BSLASHnewtheorem] = ACTIONS(131), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(131), - [anon_sym_BSLASHdefinecolor] = ACTIONS(131), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(131), - [anon_sym_BSLASHcolor] = ACTIONS(131), - [anon_sym_BSLASHcolorbox] = ACTIONS(131), - [anon_sym_BSLASHtextcolor] = ACTIONS(131), - [anon_sym_BSLASHpagecolor] = ACTIONS(131), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(131), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(131), + [anon_sym_BSLASHiffalse] = ACTIONS(5089), + [anon_sym_LPAREN] = ACTIONS(5087), + [anon_sym_RPAREN] = ACTIONS(5087), + [anon_sym_LBRACK] = ACTIONS(5087), + [anon_sym_RBRACK] = ACTIONS(5087), + [anon_sym_COMMA] = ACTIONS(5087), + [anon_sym_EQ] = ACTIONS(5087), + [anon_sym_LBRACE] = ACTIONS(5087), + [sym_word] = ACTIONS(5089), + [sym_placeholder] = ACTIONS(5087), + [anon_sym_PLUS] = ACTIONS(5089), + [anon_sym_DASH] = ACTIONS(5089), + [anon_sym_STAR] = ACTIONS(5089), + [anon_sym_SLASH] = ACTIONS(5089), + [anon_sym_CARET] = ACTIONS(5089), + [anon_sym__] = ACTIONS(5089), + [anon_sym_LT] = ACTIONS(5089), + [anon_sym_GT] = ACTIONS(5089), + [anon_sym_BANG] = ACTIONS(5089), + [anon_sym_PIPE] = ACTIONS(5089), + [anon_sym_COLON] = ACTIONS(5089), + [anon_sym_SQUOTE] = ACTIONS(5089), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), + [anon_sym_DOLLAR] = ACTIONS(5089), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), + [anon_sym_BSLASHbegin] = ACTIONS(5089), + [anon_sym_BSLASHusepackage] = ACTIONS(5089), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), + [anon_sym_BSLASHinclude] = ACTIONS(5089), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), + [anon_sym_BSLASHinput] = ACTIONS(5089), + [anon_sym_BSLASHsubfile] = ACTIONS(5089), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), + [anon_sym_BSLASHbibliography] = ACTIONS(5089), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), + [anon_sym_BSLASHincludesvg] = ACTIONS(5089), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), + [anon_sym_BSLASHimport] = ACTIONS(5089), + [anon_sym_BSLASHsubimport] = ACTIONS(5089), + [anon_sym_BSLASHinputfrom] = ACTIONS(5089), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), + [anon_sym_BSLASHincludefrom] = ACTIONS(5089), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), + [anon_sym_BSLASHcaption] = ACTIONS(5089), + [anon_sym_BSLASHcite] = ACTIONS(5089), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCite] = ACTIONS(5089), + [anon_sym_BSLASHnocite] = ACTIONS(5089), + [anon_sym_BSLASHcitet] = ACTIONS(5089), + [anon_sym_BSLASHcitep] = ACTIONS(5089), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteauthor] = ACTIONS(5089), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitetitle] = ACTIONS(5089), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteyear] = ACTIONS(5089), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), + [anon_sym_BSLASHcitedate] = ACTIONS(5089), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), + [anon_sym_BSLASHciteurl] = ACTIONS(5089), + [anon_sym_BSLASHfullcite] = ACTIONS(5089), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), + [anon_sym_BSLASHcitealt] = ACTIONS(5089), + [anon_sym_BSLASHcitealp] = ACTIONS(5089), + [anon_sym_BSLASHcitetext] = ACTIONS(5089), + [anon_sym_BSLASHparencite] = ACTIONS(5089), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHParencite] = ACTIONS(5089), + [anon_sym_BSLASHfootcite] = ACTIONS(5089), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), + [anon_sym_BSLASHtextcite] = ACTIONS(5089), + [anon_sym_BSLASHTextcite] = ACTIONS(5089), + [anon_sym_BSLASHsmartcite] = ACTIONS(5089), + [anon_sym_BSLASHSmartcite] = ACTIONS(5089), + [anon_sym_BSLASHsupercite] = ACTIONS(5089), + [anon_sym_BSLASHautocite] = ACTIONS(5089), + [anon_sym_BSLASHAutocite] = ACTIONS(5089), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), + [anon_sym_BSLASHvolcite] = ACTIONS(5089), + [anon_sym_BSLASHVolcite] = ACTIONS(5089), + [anon_sym_BSLASHpvolcite] = ACTIONS(5089), + [anon_sym_BSLASHPvolcite] = ACTIONS(5089), + [anon_sym_BSLASHfvolcite] = ACTIONS(5089), + [anon_sym_BSLASHftvolcite] = ACTIONS(5089), + [anon_sym_BSLASHsvolcite] = ACTIONS(5089), + [anon_sym_BSLASHSvolcite] = ACTIONS(5089), + [anon_sym_BSLASHtvolcite] = ACTIONS(5089), + [anon_sym_BSLASHTvolcite] = ACTIONS(5089), + [anon_sym_BSLASHavolcite] = ACTIONS(5089), + [anon_sym_BSLASHAvolcite] = ACTIONS(5089), + [anon_sym_BSLASHnotecite] = ACTIONS(5089), + [anon_sym_BSLASHNotecite] = ACTIONS(5089), + [anon_sym_BSLASHpnotecite] = ACTIONS(5089), + [anon_sym_BSLASHPnotecite] = ACTIONS(5089), + [anon_sym_BSLASHfnotecite] = ACTIONS(5089), + [anon_sym_BSLASHlabel] = ACTIONS(5089), + [anon_sym_BSLASHref] = ACTIONS(5089), + [anon_sym_BSLASHeqref] = ACTIONS(5089), + [anon_sym_BSLASHvref] = ACTIONS(5089), + [anon_sym_BSLASHVref] = ACTIONS(5089), + [anon_sym_BSLASHautoref] = ACTIONS(5089), + [anon_sym_BSLASHpageref] = ACTIONS(5089), + [anon_sym_BSLASHcref] = ACTIONS(5089), + [anon_sym_BSLASHCref] = ACTIONS(5089), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), + [anon_sym_BSLASHnamecref] = ACTIONS(5089), + [anon_sym_BSLASHnameCref] = ACTIONS(5089), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), + [anon_sym_BSLASHlabelcref] = ACTIONS(5089), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), + [anon_sym_BSLASHcrefrange] = ACTIONS(5089), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), + [anon_sym_BSLASHCrefrange] = ACTIONS(5089), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), + [anon_sym_BSLASHnewlabel] = ACTIONS(5089), + [anon_sym_BSLASHnewcommand] = ACTIONS(5089), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), + [anon_sym_BSLASHdef] = ACTIONS(5089), + [anon_sym_BSLASHlet] = ACTIONS(5089), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), + [anon_sym_BSLASHgls] = ACTIONS(5089), + [anon_sym_BSLASHGls] = ACTIONS(5089), + [anon_sym_BSLASHGLS] = ACTIONS(5089), + [anon_sym_BSLASHglspl] = ACTIONS(5089), + [anon_sym_BSLASHGlspl] = ACTIONS(5089), + [anon_sym_BSLASHGLSpl] = ACTIONS(5089), + [anon_sym_BSLASHglsdisp] = ACTIONS(5089), + [anon_sym_BSLASHglslink] = ACTIONS(5089), + [anon_sym_BSLASHglstext] = ACTIONS(5089), + [anon_sym_BSLASHGlstext] = ACTIONS(5089), + [anon_sym_BSLASHGLStext] = ACTIONS(5089), + [anon_sym_BSLASHglsfirst] = ACTIONS(5089), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), + [anon_sym_BSLASHglsplural] = ACTIONS(5089), + [anon_sym_BSLASHGlsplural] = ACTIONS(5089), + [anon_sym_BSLASHGLSplural] = ACTIONS(5089), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), + [anon_sym_BSLASHglsname] = ACTIONS(5089), + [anon_sym_BSLASHGlsname] = ACTIONS(5089), + [anon_sym_BSLASHGLSname] = ACTIONS(5089), + [anon_sym_BSLASHglssymbol] = ACTIONS(5089), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), + [anon_sym_BSLASHglsdesc] = ACTIONS(5089), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), + [anon_sym_BSLASHglsuseri] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), + [anon_sym_BSLASHglsuserii] = ACTIONS(5089), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), + [anon_sym_BSLASHglsuserv] = ACTIONS(5089), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), + [anon_sym_BSLASHglsuservi] = ACTIONS(5089), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), + [anon_sym_BSLASHnewacronym] = ACTIONS(5089), + [anon_sym_BSLASHacrshort] = ACTIONS(5089), + [anon_sym_BSLASHAcrshort] = ACTIONS(5089), + [anon_sym_BSLASHACRshort] = ACTIONS(5089), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), + [anon_sym_BSLASHacrlong] = ACTIONS(5089), + [anon_sym_BSLASHAcrlong] = ACTIONS(5089), + [anon_sym_BSLASHACRlong] = ACTIONS(5089), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), + [anon_sym_BSLASHacrfull] = ACTIONS(5089), + [anon_sym_BSLASHAcrfull] = ACTIONS(5089), + [anon_sym_BSLASHACRfull] = ACTIONS(5089), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), + [anon_sym_BSLASHacs] = ACTIONS(5089), + [anon_sym_BSLASHAcs] = ACTIONS(5089), + [anon_sym_BSLASHacsp] = ACTIONS(5089), + [anon_sym_BSLASHAcsp] = ACTIONS(5089), + [anon_sym_BSLASHacl] = ACTIONS(5089), + [anon_sym_BSLASHAcl] = ACTIONS(5089), + [anon_sym_BSLASHaclp] = ACTIONS(5089), + [anon_sym_BSLASHAclp] = ACTIONS(5089), + [anon_sym_BSLASHacf] = ACTIONS(5089), + [anon_sym_BSLASHAcf] = ACTIONS(5089), + [anon_sym_BSLASHacfp] = ACTIONS(5089), + [anon_sym_BSLASHAcfp] = ACTIONS(5089), + [anon_sym_BSLASHac] = ACTIONS(5089), + [anon_sym_BSLASHAc] = ACTIONS(5089), + [anon_sym_BSLASHacp] = ACTIONS(5089), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), + [anon_sym_BSLASHcolor] = ACTIONS(5089), + [anon_sym_BSLASHcolorbox] = ACTIONS(5089), + [anon_sym_BSLASHtextcolor] = ACTIONS(5089), + [anon_sym_BSLASHpagecolor] = ACTIONS(5089), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHtext] = ACTIONS(5089), + [anon_sym_BSLASHintertext] = ACTIONS(5089), + [anon_sym_shortintertext] = ACTIONS(5089), }, - [1440] = { - [sym_command_name] = ACTIONS(5033), + [1362] = { + [sym_command_name] = ACTIONS(5093), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5033), - [anon_sym_LPAREN] = ACTIONS(5031), - [anon_sym_RPAREN] = ACTIONS(5031), - [anon_sym_LBRACK] = ACTIONS(5031), - [anon_sym_RBRACK] = ACTIONS(5031), - [anon_sym_COMMA] = ACTIONS(5031), - [anon_sym_LBRACE] = ACTIONS(5031), - [anon_sym_RBRACE] = ACTIONS(5031), - [sym_word] = ACTIONS(5033), - [sym_placeholder] = ACTIONS(5031), - [anon_sym_PLUS] = ACTIONS(5033), - [anon_sym_DASH] = ACTIONS(5033), - [anon_sym_STAR] = ACTIONS(5033), - [anon_sym_SLASH] = ACTIONS(5033), - [anon_sym_CARET] = ACTIONS(5033), - [anon_sym__] = ACTIONS(5033), - [anon_sym_LT] = ACTIONS(5033), - [anon_sym_GT] = ACTIONS(5033), - [anon_sym_BANG] = ACTIONS(5033), - [anon_sym_PIPE] = ACTIONS(5033), - [anon_sym_COLON] = ACTIONS(5033), - [anon_sym_SQUOTE] = ACTIONS(5033), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), - [anon_sym_DOLLAR] = ACTIONS(5033), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), - [anon_sym_BSLASHusepackage] = ACTIONS(5033), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), - [anon_sym_BSLASHinclude] = ACTIONS(5033), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), - [anon_sym_BSLASHinput] = ACTIONS(5033), - [anon_sym_BSLASHsubfile] = ACTIONS(5033), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), - [anon_sym_BSLASHbibliography] = ACTIONS(5033), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), - [anon_sym_BSLASHincludesvg] = ACTIONS(5033), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), - [anon_sym_BSLASHimport] = ACTIONS(5033), - [anon_sym_BSLASHsubimport] = ACTIONS(5033), - [anon_sym_BSLASHinputfrom] = ACTIONS(5033), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), - [anon_sym_BSLASHincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), - [anon_sym_BSLASHcaption] = ACTIONS(5033), - [anon_sym_BSLASHcite] = ACTIONS(5033), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCite] = ACTIONS(5033), - [anon_sym_BSLASHnocite] = ACTIONS(5033), - [anon_sym_BSLASHcitet] = ACTIONS(5033), - [anon_sym_BSLASHcitep] = ACTIONS(5033), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteauthor] = ACTIONS(5033), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitetitle] = ACTIONS(5033), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteyear] = ACTIONS(5033), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), - [anon_sym_BSLASHcitedate] = ACTIONS(5033), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), - [anon_sym_BSLASHciteurl] = ACTIONS(5033), - [anon_sym_BSLASHfullcite] = ACTIONS(5033), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), - [anon_sym_BSLASHcitealt] = ACTIONS(5033), - [anon_sym_BSLASHcitealp] = ACTIONS(5033), - [anon_sym_BSLASHcitetext] = ACTIONS(5033), - [anon_sym_BSLASHparencite] = ACTIONS(5033), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHParencite] = ACTIONS(5033), - [anon_sym_BSLASHfootcite] = ACTIONS(5033), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), - [anon_sym_BSLASHtextcite] = ACTIONS(5033), - [anon_sym_BSLASHTextcite] = ACTIONS(5033), - [anon_sym_BSLASHsmartcite] = ACTIONS(5033), - [anon_sym_BSLASHSmartcite] = ACTIONS(5033), - [anon_sym_BSLASHsupercite] = ACTIONS(5033), - [anon_sym_BSLASHautocite] = ACTIONS(5033), - [anon_sym_BSLASHAutocite] = ACTIONS(5033), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), - [anon_sym_BSLASHvolcite] = ACTIONS(5033), - [anon_sym_BSLASHVolcite] = ACTIONS(5033), - [anon_sym_BSLASHpvolcite] = ACTIONS(5033), - [anon_sym_BSLASHPvolcite] = ACTIONS(5033), - [anon_sym_BSLASHfvolcite] = ACTIONS(5033), - [anon_sym_BSLASHftvolcite] = ACTIONS(5033), - [anon_sym_BSLASHsvolcite] = ACTIONS(5033), - [anon_sym_BSLASHSvolcite] = ACTIONS(5033), - [anon_sym_BSLASHtvolcite] = ACTIONS(5033), - [anon_sym_BSLASHTvolcite] = ACTIONS(5033), - [anon_sym_BSLASHavolcite] = ACTIONS(5033), - [anon_sym_BSLASHAvolcite] = ACTIONS(5033), - [anon_sym_BSLASHnotecite] = ACTIONS(5033), - [anon_sym_BSLASHNotecite] = ACTIONS(5033), - [anon_sym_BSLASHpnotecite] = ACTIONS(5033), - [anon_sym_BSLASHPnotecite] = ACTIONS(5033), - [anon_sym_BSLASHfnotecite] = ACTIONS(5033), - [anon_sym_BSLASHlabel] = ACTIONS(5033), - [anon_sym_BSLASHref] = ACTIONS(5033), - [anon_sym_BSLASHeqref] = ACTIONS(5033), - [anon_sym_BSLASHvref] = ACTIONS(5033), - [anon_sym_BSLASHVref] = ACTIONS(5033), - [anon_sym_BSLASHautoref] = ACTIONS(5033), - [anon_sym_BSLASHpageref] = ACTIONS(5033), - [anon_sym_BSLASHcref] = ACTIONS(5033), - [anon_sym_BSLASHCref] = ACTIONS(5033), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnameCref] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), - [anon_sym_BSLASHlabelcref] = ACTIONS(5033), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange] = ACTIONS(5033), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHCrefrange] = ACTIONS(5033), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), - [anon_sym_BSLASHnewlabel] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand] = ACTIONS(5033), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), - [anon_sym_BSLASHdef] = ACTIONS(5033), - [anon_sym_BSLASHlet] = ACTIONS(5033), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), - [anon_sym_BSLASHgls] = ACTIONS(5033), - [anon_sym_BSLASHGls] = ACTIONS(5033), - [anon_sym_BSLASHGLS] = ACTIONS(5033), - [anon_sym_BSLASHglspl] = ACTIONS(5033), - [anon_sym_BSLASHGlspl] = ACTIONS(5033), - [anon_sym_BSLASHGLSpl] = ACTIONS(5033), - [anon_sym_BSLASHglsdisp] = ACTIONS(5033), - [anon_sym_BSLASHglslink] = ACTIONS(5033), - [anon_sym_BSLASHglstext] = ACTIONS(5033), - [anon_sym_BSLASHGlstext] = ACTIONS(5033), - [anon_sym_BSLASHGLStext] = ACTIONS(5033), - [anon_sym_BSLASHglsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), - [anon_sym_BSLASHglsplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSplural] = ACTIONS(5033), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), - [anon_sym_BSLASHglsname] = ACTIONS(5033), - [anon_sym_BSLASHGlsname] = ACTIONS(5033), - [anon_sym_BSLASHGLSname] = ACTIONS(5033), - [anon_sym_BSLASHglssymbol] = ACTIONS(5033), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), - [anon_sym_BSLASHglsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), - [anon_sym_BSLASHglsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), - [anon_sym_BSLASHglsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), - [anon_sym_BSLASHglsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), - [anon_sym_BSLASHglsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), - [anon_sym_BSLASHnewacronym] = ACTIONS(5033), - [anon_sym_BSLASHacrshort] = ACTIONS(5033), - [anon_sym_BSLASHAcrshort] = ACTIONS(5033), - [anon_sym_BSLASHACRshort] = ACTIONS(5033), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), - [anon_sym_BSLASHacrlong] = ACTIONS(5033), - [anon_sym_BSLASHAcrlong] = ACTIONS(5033), - [anon_sym_BSLASHACRlong] = ACTIONS(5033), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), - [anon_sym_BSLASHacrfull] = ACTIONS(5033), - [anon_sym_BSLASHAcrfull] = ACTIONS(5033), - [anon_sym_BSLASHACRfull] = ACTIONS(5033), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), - [anon_sym_BSLASHacs] = ACTIONS(5033), - [anon_sym_BSLASHAcs] = ACTIONS(5033), - [anon_sym_BSLASHacsp] = ACTIONS(5033), - [anon_sym_BSLASHAcsp] = ACTIONS(5033), - [anon_sym_BSLASHacl] = ACTIONS(5033), - [anon_sym_BSLASHAcl] = ACTIONS(5033), - [anon_sym_BSLASHaclp] = ACTIONS(5033), - [anon_sym_BSLASHAclp] = ACTIONS(5033), - [anon_sym_BSLASHacf] = ACTIONS(5033), - [anon_sym_BSLASHAcf] = ACTIONS(5033), - [anon_sym_BSLASHacfp] = ACTIONS(5033), - [anon_sym_BSLASHAcfp] = ACTIONS(5033), - [anon_sym_BSLASHac] = ACTIONS(5033), - [anon_sym_BSLASHAc] = ACTIONS(5033), - [anon_sym_BSLASHacp] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), - [anon_sym_BSLASHcolor] = ACTIONS(5033), - [anon_sym_BSLASHcolorbox] = ACTIONS(5033), - [anon_sym_BSLASHtextcolor] = ACTIONS(5033), - [anon_sym_BSLASHpagecolor] = ACTIONS(5033), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [anon_sym_BSLASHiffalse] = ACTIONS(5093), + [anon_sym_LPAREN] = ACTIONS(5091), + [anon_sym_RPAREN] = ACTIONS(5091), + [anon_sym_LBRACK] = ACTIONS(5091), + [anon_sym_RBRACK] = ACTIONS(5091), + [anon_sym_COMMA] = ACTIONS(5091), + [anon_sym_EQ] = ACTIONS(5091), + [anon_sym_LBRACE] = ACTIONS(5091), + [sym_word] = ACTIONS(5093), + [sym_placeholder] = ACTIONS(5091), + [anon_sym_PLUS] = ACTIONS(5093), + [anon_sym_DASH] = ACTIONS(5093), + [anon_sym_STAR] = ACTIONS(5093), + [anon_sym_SLASH] = ACTIONS(5093), + [anon_sym_CARET] = ACTIONS(5093), + [anon_sym__] = ACTIONS(5093), + [anon_sym_LT] = ACTIONS(5093), + [anon_sym_GT] = ACTIONS(5093), + [anon_sym_BANG] = ACTIONS(5093), + [anon_sym_PIPE] = ACTIONS(5093), + [anon_sym_COLON] = ACTIONS(5093), + [anon_sym_SQUOTE] = ACTIONS(5093), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5091), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5091), + [anon_sym_DOLLAR] = ACTIONS(5093), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5091), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5091), + [anon_sym_BSLASHbegin] = ACTIONS(5093), + [anon_sym_BSLASHusepackage] = ACTIONS(5093), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), + [anon_sym_BSLASHinclude] = ACTIONS(5093), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), + [anon_sym_BSLASHinput] = ACTIONS(5093), + [anon_sym_BSLASHsubfile] = ACTIONS(5093), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), + [anon_sym_BSLASHbibliography] = ACTIONS(5093), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), + [anon_sym_BSLASHincludesvg] = ACTIONS(5093), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), + [anon_sym_BSLASHimport] = ACTIONS(5093), + [anon_sym_BSLASHsubimport] = ACTIONS(5093), + [anon_sym_BSLASHinputfrom] = ACTIONS(5093), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), + [anon_sym_BSLASHincludefrom] = ACTIONS(5093), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), + [anon_sym_BSLASHcaption] = ACTIONS(5093), + [anon_sym_BSLASHcite] = ACTIONS(5093), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCite] = ACTIONS(5093), + [anon_sym_BSLASHnocite] = ACTIONS(5093), + [anon_sym_BSLASHcitet] = ACTIONS(5093), + [anon_sym_BSLASHcitep] = ACTIONS(5093), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteauthor] = ACTIONS(5093), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitetitle] = ACTIONS(5093), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteyear] = ACTIONS(5093), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), + [anon_sym_BSLASHcitedate] = ACTIONS(5093), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), + [anon_sym_BSLASHciteurl] = ACTIONS(5093), + [anon_sym_BSLASHfullcite] = ACTIONS(5093), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), + [anon_sym_BSLASHcitealt] = ACTIONS(5093), + [anon_sym_BSLASHcitealp] = ACTIONS(5093), + [anon_sym_BSLASHcitetext] = ACTIONS(5093), + [anon_sym_BSLASHparencite] = ACTIONS(5093), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHParencite] = ACTIONS(5093), + [anon_sym_BSLASHfootcite] = ACTIONS(5093), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), + [anon_sym_BSLASHtextcite] = ACTIONS(5093), + [anon_sym_BSLASHTextcite] = ACTIONS(5093), + [anon_sym_BSLASHsmartcite] = ACTIONS(5093), + [anon_sym_BSLASHSmartcite] = ACTIONS(5093), + [anon_sym_BSLASHsupercite] = ACTIONS(5093), + [anon_sym_BSLASHautocite] = ACTIONS(5093), + [anon_sym_BSLASHAutocite] = ACTIONS(5093), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), + [anon_sym_BSLASHvolcite] = ACTIONS(5093), + [anon_sym_BSLASHVolcite] = ACTIONS(5093), + [anon_sym_BSLASHpvolcite] = ACTIONS(5093), + [anon_sym_BSLASHPvolcite] = ACTIONS(5093), + [anon_sym_BSLASHfvolcite] = ACTIONS(5093), + [anon_sym_BSLASHftvolcite] = ACTIONS(5093), + [anon_sym_BSLASHsvolcite] = ACTIONS(5093), + [anon_sym_BSLASHSvolcite] = ACTIONS(5093), + [anon_sym_BSLASHtvolcite] = ACTIONS(5093), + [anon_sym_BSLASHTvolcite] = ACTIONS(5093), + [anon_sym_BSLASHavolcite] = ACTIONS(5093), + [anon_sym_BSLASHAvolcite] = ACTIONS(5093), + [anon_sym_BSLASHnotecite] = ACTIONS(5093), + [anon_sym_BSLASHNotecite] = ACTIONS(5093), + [anon_sym_BSLASHpnotecite] = ACTIONS(5093), + [anon_sym_BSLASHPnotecite] = ACTIONS(5093), + [anon_sym_BSLASHfnotecite] = ACTIONS(5093), + [anon_sym_BSLASHlabel] = ACTIONS(5093), + [anon_sym_BSLASHref] = ACTIONS(5093), + [anon_sym_BSLASHeqref] = ACTIONS(5093), + [anon_sym_BSLASHvref] = ACTIONS(5093), + [anon_sym_BSLASHVref] = ACTIONS(5093), + [anon_sym_BSLASHautoref] = ACTIONS(5093), + [anon_sym_BSLASHpageref] = ACTIONS(5093), + [anon_sym_BSLASHcref] = ACTIONS(5093), + [anon_sym_BSLASHCref] = ACTIONS(5093), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), + [anon_sym_BSLASHnamecref] = ACTIONS(5093), + [anon_sym_BSLASHnameCref] = ACTIONS(5093), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), + [anon_sym_BSLASHlabelcref] = ACTIONS(5093), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), + [anon_sym_BSLASHcrefrange] = ACTIONS(5093), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), + [anon_sym_BSLASHCrefrange] = ACTIONS(5093), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), + [anon_sym_BSLASHnewlabel] = ACTIONS(5093), + [anon_sym_BSLASHnewcommand] = ACTIONS(5093), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), + [anon_sym_BSLASHdef] = ACTIONS(5093), + [anon_sym_BSLASHlet] = ACTIONS(5093), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), + [anon_sym_BSLASHgls] = ACTIONS(5093), + [anon_sym_BSLASHGls] = ACTIONS(5093), + [anon_sym_BSLASHGLS] = ACTIONS(5093), + [anon_sym_BSLASHglspl] = ACTIONS(5093), + [anon_sym_BSLASHGlspl] = ACTIONS(5093), + [anon_sym_BSLASHGLSpl] = ACTIONS(5093), + [anon_sym_BSLASHglsdisp] = ACTIONS(5093), + [anon_sym_BSLASHglslink] = ACTIONS(5093), + [anon_sym_BSLASHglstext] = ACTIONS(5093), + [anon_sym_BSLASHGlstext] = ACTIONS(5093), + [anon_sym_BSLASHGLStext] = ACTIONS(5093), + [anon_sym_BSLASHglsfirst] = ACTIONS(5093), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), + [anon_sym_BSLASHglsplural] = ACTIONS(5093), + [anon_sym_BSLASHGlsplural] = ACTIONS(5093), + [anon_sym_BSLASHGLSplural] = ACTIONS(5093), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), + [anon_sym_BSLASHglsname] = ACTIONS(5093), + [anon_sym_BSLASHGlsname] = ACTIONS(5093), + [anon_sym_BSLASHGLSname] = ACTIONS(5093), + [anon_sym_BSLASHglssymbol] = ACTIONS(5093), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), + [anon_sym_BSLASHglsdesc] = ACTIONS(5093), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), + [anon_sym_BSLASHglsuseri] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), + [anon_sym_BSLASHglsuserii] = ACTIONS(5093), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), + [anon_sym_BSLASHglsuserv] = ACTIONS(5093), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), + [anon_sym_BSLASHglsuservi] = ACTIONS(5093), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), + [anon_sym_BSLASHnewacronym] = ACTIONS(5093), + [anon_sym_BSLASHacrshort] = ACTIONS(5093), + [anon_sym_BSLASHAcrshort] = ACTIONS(5093), + [anon_sym_BSLASHACRshort] = ACTIONS(5093), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), + [anon_sym_BSLASHacrlong] = ACTIONS(5093), + [anon_sym_BSLASHAcrlong] = ACTIONS(5093), + [anon_sym_BSLASHACRlong] = ACTIONS(5093), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), + [anon_sym_BSLASHacrfull] = ACTIONS(5093), + [anon_sym_BSLASHAcrfull] = ACTIONS(5093), + [anon_sym_BSLASHACRfull] = ACTIONS(5093), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), + [anon_sym_BSLASHacs] = ACTIONS(5093), + [anon_sym_BSLASHAcs] = ACTIONS(5093), + [anon_sym_BSLASHacsp] = ACTIONS(5093), + [anon_sym_BSLASHAcsp] = ACTIONS(5093), + [anon_sym_BSLASHacl] = ACTIONS(5093), + [anon_sym_BSLASHAcl] = ACTIONS(5093), + [anon_sym_BSLASHaclp] = ACTIONS(5093), + [anon_sym_BSLASHAclp] = ACTIONS(5093), + [anon_sym_BSLASHacf] = ACTIONS(5093), + [anon_sym_BSLASHAcf] = ACTIONS(5093), + [anon_sym_BSLASHacfp] = ACTIONS(5093), + [anon_sym_BSLASHAcfp] = ACTIONS(5093), + [anon_sym_BSLASHac] = ACTIONS(5093), + [anon_sym_BSLASHAc] = ACTIONS(5093), + [anon_sym_BSLASHacp] = ACTIONS(5093), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), + [anon_sym_BSLASHcolor] = ACTIONS(5093), + [anon_sym_BSLASHcolorbox] = ACTIONS(5093), + [anon_sym_BSLASHtextcolor] = ACTIONS(5093), + [anon_sym_BSLASHpagecolor] = ACTIONS(5093), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHtext] = ACTIONS(5093), + [anon_sym_BSLASHintertext] = ACTIONS(5093), + [anon_sym_shortintertext] = ACTIONS(5093), }, - [1441] = { - [sym_command_name] = ACTIONS(5193), + [1363] = { + [sym_command_name] = ACTIONS(5097), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_LPAREN] = ACTIONS(5191), - [anon_sym_RPAREN] = ACTIONS(5191), - [anon_sym_LBRACK] = ACTIONS(5191), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_LBRACE] = ACTIONS(5191), - [anon_sym_RBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), - [anon_sym_DOLLAR] = ACTIONS(5193), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [anon_sym_BSLASHiffalse] = ACTIONS(5097), + [anon_sym_LPAREN] = ACTIONS(5095), + [anon_sym_RPAREN] = ACTIONS(5095), + [anon_sym_LBRACK] = ACTIONS(5095), + [anon_sym_RBRACK] = ACTIONS(5095), + [anon_sym_COMMA] = ACTIONS(5095), + [anon_sym_EQ] = ACTIONS(5095), + [anon_sym_LBRACE] = ACTIONS(5095), + [sym_word] = ACTIONS(5097), + [sym_placeholder] = ACTIONS(5095), + [anon_sym_PLUS] = ACTIONS(5097), + [anon_sym_DASH] = ACTIONS(5097), + [anon_sym_STAR] = ACTIONS(5097), + [anon_sym_SLASH] = ACTIONS(5097), + [anon_sym_CARET] = ACTIONS(5097), + [anon_sym__] = ACTIONS(5097), + [anon_sym_LT] = ACTIONS(5097), + [anon_sym_GT] = ACTIONS(5097), + [anon_sym_BANG] = ACTIONS(5097), + [anon_sym_PIPE] = ACTIONS(5097), + [anon_sym_COLON] = ACTIONS(5097), + [anon_sym_SQUOTE] = ACTIONS(5097), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5095), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5095), + [anon_sym_DOLLAR] = ACTIONS(5097), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5095), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5095), + [anon_sym_BSLASHbegin] = ACTIONS(5097), + [anon_sym_BSLASHusepackage] = ACTIONS(5097), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5097), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5097), + [anon_sym_BSLASHinclude] = ACTIONS(5097), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5097), + [anon_sym_BSLASHinput] = ACTIONS(5097), + [anon_sym_BSLASHsubfile] = ACTIONS(5097), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5097), + [anon_sym_BSLASHbibliography] = ACTIONS(5097), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5097), + [anon_sym_BSLASHincludesvg] = ACTIONS(5097), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5097), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5097), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5097), + [anon_sym_BSLASHimport] = ACTIONS(5097), + [anon_sym_BSLASHsubimport] = ACTIONS(5097), + [anon_sym_BSLASHinputfrom] = ACTIONS(5097), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5097), + [anon_sym_BSLASHincludefrom] = ACTIONS(5097), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5097), + [anon_sym_BSLASHcaption] = ACTIONS(5097), + [anon_sym_BSLASHcite] = ACTIONS(5097), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCite] = ACTIONS(5097), + [anon_sym_BSLASHnocite] = ACTIONS(5097), + [anon_sym_BSLASHcitet] = ACTIONS(5097), + [anon_sym_BSLASHcitep] = ACTIONS(5097), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteauthor] = ACTIONS(5097), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5097), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitetitle] = ACTIONS(5097), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteyear] = ACTIONS(5097), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5095), + [anon_sym_BSLASHcitedate] = ACTIONS(5097), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5095), + [anon_sym_BSLASHciteurl] = ACTIONS(5097), + [anon_sym_BSLASHfullcite] = ACTIONS(5097), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5097), + [anon_sym_BSLASHcitealt] = ACTIONS(5097), + [anon_sym_BSLASHcitealp] = ACTIONS(5097), + [anon_sym_BSLASHcitetext] = ACTIONS(5097), + [anon_sym_BSLASHparencite] = ACTIONS(5097), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHParencite] = ACTIONS(5097), + [anon_sym_BSLASHfootcite] = ACTIONS(5097), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5097), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5097), + [anon_sym_BSLASHtextcite] = ACTIONS(5097), + [anon_sym_BSLASHTextcite] = ACTIONS(5097), + [anon_sym_BSLASHsmartcite] = ACTIONS(5097), + [anon_sym_BSLASHSmartcite] = ACTIONS(5097), + [anon_sym_BSLASHsupercite] = ACTIONS(5097), + [anon_sym_BSLASHautocite] = ACTIONS(5097), + [anon_sym_BSLASHAutocite] = ACTIONS(5097), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5095), + [anon_sym_BSLASHvolcite] = ACTIONS(5097), + [anon_sym_BSLASHVolcite] = ACTIONS(5097), + [anon_sym_BSLASHpvolcite] = ACTIONS(5097), + [anon_sym_BSLASHPvolcite] = ACTIONS(5097), + [anon_sym_BSLASHfvolcite] = ACTIONS(5097), + [anon_sym_BSLASHftvolcite] = ACTIONS(5097), + [anon_sym_BSLASHsvolcite] = ACTIONS(5097), + [anon_sym_BSLASHSvolcite] = ACTIONS(5097), + [anon_sym_BSLASHtvolcite] = ACTIONS(5097), + [anon_sym_BSLASHTvolcite] = ACTIONS(5097), + [anon_sym_BSLASHavolcite] = ACTIONS(5097), + [anon_sym_BSLASHAvolcite] = ACTIONS(5097), + [anon_sym_BSLASHnotecite] = ACTIONS(5097), + [anon_sym_BSLASHNotecite] = ACTIONS(5097), + [anon_sym_BSLASHpnotecite] = ACTIONS(5097), + [anon_sym_BSLASHPnotecite] = ACTIONS(5097), + [anon_sym_BSLASHfnotecite] = ACTIONS(5097), + [anon_sym_BSLASHlabel] = ACTIONS(5097), + [anon_sym_BSLASHref] = ACTIONS(5097), + [anon_sym_BSLASHeqref] = ACTIONS(5097), + [anon_sym_BSLASHvref] = ACTIONS(5097), + [anon_sym_BSLASHVref] = ACTIONS(5097), + [anon_sym_BSLASHautoref] = ACTIONS(5097), + [anon_sym_BSLASHpageref] = ACTIONS(5097), + [anon_sym_BSLASHcref] = ACTIONS(5097), + [anon_sym_BSLASHCref] = ACTIONS(5097), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5095), + [anon_sym_BSLASHnamecref] = ACTIONS(5097), + [anon_sym_BSLASHnameCref] = ACTIONS(5097), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5097), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5097), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5097), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5097), + [anon_sym_BSLASHlabelcref] = ACTIONS(5097), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5097), + [anon_sym_BSLASHcrefrange] = ACTIONS(5097), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5095), + [anon_sym_BSLASHCrefrange] = ACTIONS(5097), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5095), + [anon_sym_BSLASHnewlabel] = ACTIONS(5097), + [anon_sym_BSLASHnewcommand] = ACTIONS(5097), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5097), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5097), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5095), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5097), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5095), + [anon_sym_BSLASHdef] = ACTIONS(5097), + [anon_sym_BSLASHlet] = ACTIONS(5097), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5097), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5097), + [anon_sym_BSLASHgls] = ACTIONS(5097), + [anon_sym_BSLASHGls] = ACTIONS(5097), + [anon_sym_BSLASHGLS] = ACTIONS(5097), + [anon_sym_BSLASHglspl] = ACTIONS(5097), + [anon_sym_BSLASHGlspl] = ACTIONS(5097), + [anon_sym_BSLASHGLSpl] = ACTIONS(5097), + [anon_sym_BSLASHglsdisp] = ACTIONS(5097), + [anon_sym_BSLASHglslink] = ACTIONS(5097), + [anon_sym_BSLASHglstext] = ACTIONS(5097), + [anon_sym_BSLASHGlstext] = ACTIONS(5097), + [anon_sym_BSLASHGLStext] = ACTIONS(5097), + [anon_sym_BSLASHglsfirst] = ACTIONS(5097), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5097), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5097), + [anon_sym_BSLASHglsplural] = ACTIONS(5097), + [anon_sym_BSLASHGlsplural] = ACTIONS(5097), + [anon_sym_BSLASHGLSplural] = ACTIONS(5097), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5097), + [anon_sym_BSLASHglsname] = ACTIONS(5097), + [anon_sym_BSLASHGlsname] = ACTIONS(5097), + [anon_sym_BSLASHGLSname] = ACTIONS(5097), + [anon_sym_BSLASHglssymbol] = ACTIONS(5097), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5097), + [anon_sym_BSLASHglsdesc] = ACTIONS(5097), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5097), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5097), + [anon_sym_BSLASHglsuseri] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5097), + [anon_sym_BSLASHglsuserii] = ACTIONS(5097), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5097), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5097), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5097), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5097), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5097), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5097), + [anon_sym_BSLASHglsuserv] = ACTIONS(5097), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5097), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5097), + [anon_sym_BSLASHglsuservi] = ACTIONS(5097), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5097), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5097), + [anon_sym_BSLASHnewacronym] = ACTIONS(5097), + [anon_sym_BSLASHacrshort] = ACTIONS(5097), + [anon_sym_BSLASHAcrshort] = ACTIONS(5097), + [anon_sym_BSLASHACRshort] = ACTIONS(5097), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5097), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5097), + [anon_sym_BSLASHacrlong] = ACTIONS(5097), + [anon_sym_BSLASHAcrlong] = ACTIONS(5097), + [anon_sym_BSLASHACRlong] = ACTIONS(5097), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5097), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5097), + [anon_sym_BSLASHacrfull] = ACTIONS(5097), + [anon_sym_BSLASHAcrfull] = ACTIONS(5097), + [anon_sym_BSLASHACRfull] = ACTIONS(5097), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5097), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5097), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5097), + [anon_sym_BSLASHacs] = ACTIONS(5097), + [anon_sym_BSLASHAcs] = ACTIONS(5097), + [anon_sym_BSLASHacsp] = ACTIONS(5097), + [anon_sym_BSLASHAcsp] = ACTIONS(5097), + [anon_sym_BSLASHacl] = ACTIONS(5097), + [anon_sym_BSLASHAcl] = ACTIONS(5097), + [anon_sym_BSLASHaclp] = ACTIONS(5097), + [anon_sym_BSLASHAclp] = ACTIONS(5097), + [anon_sym_BSLASHacf] = ACTIONS(5097), + [anon_sym_BSLASHAcf] = ACTIONS(5097), + [anon_sym_BSLASHacfp] = ACTIONS(5097), + [anon_sym_BSLASHAcfp] = ACTIONS(5097), + [anon_sym_BSLASHac] = ACTIONS(5097), + [anon_sym_BSLASHAc] = ACTIONS(5097), + [anon_sym_BSLASHacp] = ACTIONS(5097), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5097), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5097), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5097), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5097), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5097), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5097), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5097), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5097), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5097), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5097), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5097), + [anon_sym_BSLASHcolor] = ACTIONS(5097), + [anon_sym_BSLASHcolorbox] = ACTIONS(5097), + [anon_sym_BSLASHtextcolor] = ACTIONS(5097), + [anon_sym_BSLASHpagecolor] = ACTIONS(5097), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5097), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5097), + [anon_sym_BSLASHtext] = ACTIONS(5097), + [anon_sym_BSLASHintertext] = ACTIONS(5097), + [anon_sym_shortintertext] = ACTIONS(5097), }, - [1442] = { - [sym_command_name] = ACTIONS(4941), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4941), - [anon_sym_LPAREN] = ACTIONS(4939), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4939), - [anon_sym_RBRACK] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_RBRACE] = ACTIONS(4939), - [sym_word] = ACTIONS(4941), - [sym_placeholder] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4941), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_STAR] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym__] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4941), - [anon_sym_BANG] = ACTIONS(4941), - [anon_sym_PIPE] = ACTIONS(4941), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4941), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4941), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4939), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4939), - [anon_sym_BSLASHusepackage] = ACTIONS(4941), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4941), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4941), - [anon_sym_BSLASHinclude] = ACTIONS(4941), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4941), - [anon_sym_BSLASHinput] = ACTIONS(4941), - [anon_sym_BSLASHsubfile] = ACTIONS(4941), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4941), - [anon_sym_BSLASHbibliography] = ACTIONS(4941), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4941), - [anon_sym_BSLASHincludesvg] = ACTIONS(4941), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4941), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4941), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4941), - [anon_sym_BSLASHimport] = ACTIONS(4941), - [anon_sym_BSLASHsubimport] = ACTIONS(4941), - [anon_sym_BSLASHinputfrom] = ACTIONS(4941), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4941), - [anon_sym_BSLASHincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHcaption] = ACTIONS(4941), - [anon_sym_BSLASHcite] = ACTIONS(4941), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCite] = ACTIONS(4941), - [anon_sym_BSLASHnocite] = ACTIONS(4941), - [anon_sym_BSLASHcitet] = ACTIONS(4941), - [anon_sym_BSLASHcitep] = ACTIONS(4941), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteyear] = ACTIONS(4941), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitedate] = ACTIONS(4941), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteurl] = ACTIONS(4941), - [anon_sym_BSLASHfullcite] = ACTIONS(4941), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4941), - [anon_sym_BSLASHcitealt] = ACTIONS(4941), - [anon_sym_BSLASHcitealp] = ACTIONS(4941), - [anon_sym_BSLASHcitetext] = ACTIONS(4941), - [anon_sym_BSLASHparencite] = ACTIONS(4941), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHParencite] = ACTIONS(4941), - [anon_sym_BSLASHfootcite] = ACTIONS(4941), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4941), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4941), - [anon_sym_BSLASHtextcite] = ACTIONS(4941), - [anon_sym_BSLASHTextcite] = ACTIONS(4941), - [anon_sym_BSLASHsmartcite] = ACTIONS(4941), - [anon_sym_BSLASHSmartcite] = ACTIONS(4941), - [anon_sym_BSLASHsupercite] = ACTIONS(4941), - [anon_sym_BSLASHautocite] = ACTIONS(4941), - [anon_sym_BSLASHAutocite] = ACTIONS(4941), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHvolcite] = ACTIONS(4941), - [anon_sym_BSLASHVolcite] = ACTIONS(4941), - [anon_sym_BSLASHpvolcite] = ACTIONS(4941), - [anon_sym_BSLASHPvolcite] = ACTIONS(4941), - [anon_sym_BSLASHfvolcite] = ACTIONS(4941), - [anon_sym_BSLASHftvolcite] = ACTIONS(4941), - [anon_sym_BSLASHsvolcite] = ACTIONS(4941), - [anon_sym_BSLASHSvolcite] = ACTIONS(4941), - [anon_sym_BSLASHtvolcite] = ACTIONS(4941), - [anon_sym_BSLASHTvolcite] = ACTIONS(4941), - [anon_sym_BSLASHavolcite] = ACTIONS(4941), - [anon_sym_BSLASHAvolcite] = ACTIONS(4941), - [anon_sym_BSLASHnotecite] = ACTIONS(4941), - [anon_sym_BSLASHNotecite] = ACTIONS(4941), - [anon_sym_BSLASHpnotecite] = ACTIONS(4941), - [anon_sym_BSLASHPnotecite] = ACTIONS(4941), - [anon_sym_BSLASHfnotecite] = ACTIONS(4941), - [anon_sym_BSLASHlabel] = ACTIONS(4941), - [anon_sym_BSLASHref] = ACTIONS(4941), - [anon_sym_BSLASHeqref] = ACTIONS(4941), - [anon_sym_BSLASHvref] = ACTIONS(4941), - [anon_sym_BSLASHVref] = ACTIONS(4941), - [anon_sym_BSLASHautoref] = ACTIONS(4941), - [anon_sym_BSLASHpageref] = ACTIONS(4941), - [anon_sym_BSLASHcref] = ACTIONS(4941), - [anon_sym_BSLASHCref] = ACTIONS(4941), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnameCref] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHlabelcref] = ACTIONS(4941), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnewlabel] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4939), - [anon_sym_BSLASHdef] = ACTIONS(4941), - [anon_sym_BSLASHlet] = ACTIONS(4941), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4941), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4941), - [anon_sym_BSLASHgls] = ACTIONS(4941), - [anon_sym_BSLASHGls] = ACTIONS(4941), - [anon_sym_BSLASHGLS] = ACTIONS(4941), - [anon_sym_BSLASHglspl] = ACTIONS(4941), - [anon_sym_BSLASHGlspl] = ACTIONS(4941), - [anon_sym_BSLASHGLSpl] = ACTIONS(4941), - [anon_sym_BSLASHglsdisp] = ACTIONS(4941), - [anon_sym_BSLASHglslink] = ACTIONS(4941), - [anon_sym_BSLASHglstext] = ACTIONS(4941), - [anon_sym_BSLASHGlstext] = ACTIONS(4941), - [anon_sym_BSLASHGLStext] = ACTIONS(4941), - [anon_sym_BSLASHglsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4941), - [anon_sym_BSLASHglsplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSplural] = ACTIONS(4941), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHglsname] = ACTIONS(4941), - [anon_sym_BSLASHGlsname] = ACTIONS(4941), - [anon_sym_BSLASHGLSname] = ACTIONS(4941), - [anon_sym_BSLASHglssymbol] = ACTIONS(4941), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4941), - [anon_sym_BSLASHglsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4941), - [anon_sym_BSLASHglsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4941), - [anon_sym_BSLASHglsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4941), - [anon_sym_BSLASHglsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4941), - [anon_sym_BSLASHglsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4941), - [anon_sym_BSLASHnewacronym] = ACTIONS(4941), - [anon_sym_BSLASHacrshort] = ACTIONS(4941), - [anon_sym_BSLASHAcrshort] = ACTIONS(4941), - [anon_sym_BSLASHACRshort] = ACTIONS(4941), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4941), - [anon_sym_BSLASHacrlong] = ACTIONS(4941), - [anon_sym_BSLASHAcrlong] = ACTIONS(4941), - [anon_sym_BSLASHACRlong] = ACTIONS(4941), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4941), - [anon_sym_BSLASHacrfull] = ACTIONS(4941), - [anon_sym_BSLASHAcrfull] = ACTIONS(4941), - [anon_sym_BSLASHACRfull] = ACTIONS(4941), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4941), - [anon_sym_BSLASHacs] = ACTIONS(4941), - [anon_sym_BSLASHAcs] = ACTIONS(4941), - [anon_sym_BSLASHacsp] = ACTIONS(4941), - [anon_sym_BSLASHAcsp] = ACTIONS(4941), - [anon_sym_BSLASHacl] = ACTIONS(4941), - [anon_sym_BSLASHAcl] = ACTIONS(4941), - [anon_sym_BSLASHaclp] = ACTIONS(4941), - [anon_sym_BSLASHAclp] = ACTIONS(4941), - [anon_sym_BSLASHacf] = ACTIONS(4941), - [anon_sym_BSLASHAcf] = ACTIONS(4941), - [anon_sym_BSLASHacfp] = ACTIONS(4941), - [anon_sym_BSLASHAcfp] = ACTIONS(4941), - [anon_sym_BSLASHac] = ACTIONS(4941), - [anon_sym_BSLASHAc] = ACTIONS(4941), - [anon_sym_BSLASHacp] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4941), - [anon_sym_BSLASHcolor] = ACTIONS(4941), - [anon_sym_BSLASHcolorbox] = ACTIONS(4941), - [anon_sym_BSLASHtextcolor] = ACTIONS(4941), - [anon_sym_BSLASHpagecolor] = ACTIONS(4941), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4941), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4941), + [1364] = { + [sym_command_name] = ACTIONS(5101), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5101), + [anon_sym_LPAREN] = ACTIONS(5099), + [anon_sym_RPAREN] = ACTIONS(5099), + [anon_sym_LBRACK] = ACTIONS(5099), + [anon_sym_RBRACK] = ACTIONS(5099), + [anon_sym_COMMA] = ACTIONS(5099), + [anon_sym_EQ] = ACTIONS(5099), + [anon_sym_LBRACE] = ACTIONS(5099), + [sym_word] = ACTIONS(5101), + [sym_placeholder] = ACTIONS(5099), + [anon_sym_PLUS] = ACTIONS(5101), + [anon_sym_DASH] = ACTIONS(5101), + [anon_sym_STAR] = ACTIONS(5101), + [anon_sym_SLASH] = ACTIONS(5101), + [anon_sym_CARET] = ACTIONS(5101), + [anon_sym__] = ACTIONS(5101), + [anon_sym_LT] = ACTIONS(5101), + [anon_sym_GT] = ACTIONS(5101), + [anon_sym_BANG] = ACTIONS(5101), + [anon_sym_PIPE] = ACTIONS(5101), + [anon_sym_COLON] = ACTIONS(5101), + [anon_sym_SQUOTE] = ACTIONS(5101), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5099), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5099), + [anon_sym_DOLLAR] = ACTIONS(5101), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5099), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5099), + [anon_sym_BSLASHbegin] = ACTIONS(5101), + [anon_sym_BSLASHusepackage] = ACTIONS(5101), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), + [anon_sym_BSLASHinclude] = ACTIONS(5101), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), + [anon_sym_BSLASHinput] = ACTIONS(5101), + [anon_sym_BSLASHsubfile] = ACTIONS(5101), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), + [anon_sym_BSLASHbibliography] = ACTIONS(5101), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), + [anon_sym_BSLASHincludesvg] = ACTIONS(5101), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), + [anon_sym_BSLASHimport] = ACTIONS(5101), + [anon_sym_BSLASHsubimport] = ACTIONS(5101), + [anon_sym_BSLASHinputfrom] = ACTIONS(5101), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), + [anon_sym_BSLASHincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), + [anon_sym_BSLASHcaption] = ACTIONS(5101), + [anon_sym_BSLASHcite] = ACTIONS(5101), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCite] = ACTIONS(5101), + [anon_sym_BSLASHnocite] = ACTIONS(5101), + [anon_sym_BSLASHcitet] = ACTIONS(5101), + [anon_sym_BSLASHcitep] = ACTIONS(5101), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteauthor] = ACTIONS(5101), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitetitle] = ACTIONS(5101), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteyear] = ACTIONS(5101), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), + [anon_sym_BSLASHcitedate] = ACTIONS(5101), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), + [anon_sym_BSLASHciteurl] = ACTIONS(5101), + [anon_sym_BSLASHfullcite] = ACTIONS(5101), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), + [anon_sym_BSLASHcitealt] = ACTIONS(5101), + [anon_sym_BSLASHcitealp] = ACTIONS(5101), + [anon_sym_BSLASHcitetext] = ACTIONS(5101), + [anon_sym_BSLASHparencite] = ACTIONS(5101), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHParencite] = ACTIONS(5101), + [anon_sym_BSLASHfootcite] = ACTIONS(5101), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), + [anon_sym_BSLASHtextcite] = ACTIONS(5101), + [anon_sym_BSLASHTextcite] = ACTIONS(5101), + [anon_sym_BSLASHsmartcite] = ACTIONS(5101), + [anon_sym_BSLASHSmartcite] = ACTIONS(5101), + [anon_sym_BSLASHsupercite] = ACTIONS(5101), + [anon_sym_BSLASHautocite] = ACTIONS(5101), + [anon_sym_BSLASHAutocite] = ACTIONS(5101), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), + [anon_sym_BSLASHvolcite] = ACTIONS(5101), + [anon_sym_BSLASHVolcite] = ACTIONS(5101), + [anon_sym_BSLASHpvolcite] = ACTIONS(5101), + [anon_sym_BSLASHPvolcite] = ACTIONS(5101), + [anon_sym_BSLASHfvolcite] = ACTIONS(5101), + [anon_sym_BSLASHftvolcite] = ACTIONS(5101), + [anon_sym_BSLASHsvolcite] = ACTIONS(5101), + [anon_sym_BSLASHSvolcite] = ACTIONS(5101), + [anon_sym_BSLASHtvolcite] = ACTIONS(5101), + [anon_sym_BSLASHTvolcite] = ACTIONS(5101), + [anon_sym_BSLASHavolcite] = ACTIONS(5101), + [anon_sym_BSLASHAvolcite] = ACTIONS(5101), + [anon_sym_BSLASHnotecite] = ACTIONS(5101), + [anon_sym_BSLASHNotecite] = ACTIONS(5101), + [anon_sym_BSLASHpnotecite] = ACTIONS(5101), + [anon_sym_BSLASHPnotecite] = ACTIONS(5101), + [anon_sym_BSLASHfnotecite] = ACTIONS(5101), + [anon_sym_BSLASHlabel] = ACTIONS(5101), + [anon_sym_BSLASHref] = ACTIONS(5101), + [anon_sym_BSLASHeqref] = ACTIONS(5101), + [anon_sym_BSLASHvref] = ACTIONS(5101), + [anon_sym_BSLASHVref] = ACTIONS(5101), + [anon_sym_BSLASHautoref] = ACTIONS(5101), + [anon_sym_BSLASHpageref] = ACTIONS(5101), + [anon_sym_BSLASHcref] = ACTIONS(5101), + [anon_sym_BSLASHCref] = ACTIONS(5101), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), + [anon_sym_BSLASHnamecref] = ACTIONS(5101), + [anon_sym_BSLASHnameCref] = ACTIONS(5101), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), + [anon_sym_BSLASHlabelcref] = ACTIONS(5101), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), + [anon_sym_BSLASHcrefrange] = ACTIONS(5101), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), + [anon_sym_BSLASHCrefrange] = ACTIONS(5101), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), + [anon_sym_BSLASHnewlabel] = ACTIONS(5101), + [anon_sym_BSLASHnewcommand] = ACTIONS(5101), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), + [anon_sym_BSLASHdef] = ACTIONS(5101), + [anon_sym_BSLASHlet] = ACTIONS(5101), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), + [anon_sym_BSLASHgls] = ACTIONS(5101), + [anon_sym_BSLASHGls] = ACTIONS(5101), + [anon_sym_BSLASHGLS] = ACTIONS(5101), + [anon_sym_BSLASHglspl] = ACTIONS(5101), + [anon_sym_BSLASHGlspl] = ACTIONS(5101), + [anon_sym_BSLASHGLSpl] = ACTIONS(5101), + [anon_sym_BSLASHglsdisp] = ACTIONS(5101), + [anon_sym_BSLASHglslink] = ACTIONS(5101), + [anon_sym_BSLASHglstext] = ACTIONS(5101), + [anon_sym_BSLASHGlstext] = ACTIONS(5101), + [anon_sym_BSLASHGLStext] = ACTIONS(5101), + [anon_sym_BSLASHglsfirst] = ACTIONS(5101), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), + [anon_sym_BSLASHglsplural] = ACTIONS(5101), + [anon_sym_BSLASHGlsplural] = ACTIONS(5101), + [anon_sym_BSLASHGLSplural] = ACTIONS(5101), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), + [anon_sym_BSLASHglsname] = ACTIONS(5101), + [anon_sym_BSLASHGlsname] = ACTIONS(5101), + [anon_sym_BSLASHGLSname] = ACTIONS(5101), + [anon_sym_BSLASHglssymbol] = ACTIONS(5101), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), + [anon_sym_BSLASHglsdesc] = ACTIONS(5101), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), + [anon_sym_BSLASHglsuseri] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), + [anon_sym_BSLASHglsuserii] = ACTIONS(5101), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), + [anon_sym_BSLASHglsuserv] = ACTIONS(5101), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), + [anon_sym_BSLASHglsuservi] = ACTIONS(5101), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), + [anon_sym_BSLASHnewacronym] = ACTIONS(5101), + [anon_sym_BSLASHacrshort] = ACTIONS(5101), + [anon_sym_BSLASHAcrshort] = ACTIONS(5101), + [anon_sym_BSLASHACRshort] = ACTIONS(5101), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), + [anon_sym_BSLASHacrlong] = ACTIONS(5101), + [anon_sym_BSLASHAcrlong] = ACTIONS(5101), + [anon_sym_BSLASHACRlong] = ACTIONS(5101), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), + [anon_sym_BSLASHacrfull] = ACTIONS(5101), + [anon_sym_BSLASHAcrfull] = ACTIONS(5101), + [anon_sym_BSLASHACRfull] = ACTIONS(5101), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), + [anon_sym_BSLASHacs] = ACTIONS(5101), + [anon_sym_BSLASHAcs] = ACTIONS(5101), + [anon_sym_BSLASHacsp] = ACTIONS(5101), + [anon_sym_BSLASHAcsp] = ACTIONS(5101), + [anon_sym_BSLASHacl] = ACTIONS(5101), + [anon_sym_BSLASHAcl] = ACTIONS(5101), + [anon_sym_BSLASHaclp] = ACTIONS(5101), + [anon_sym_BSLASHAclp] = ACTIONS(5101), + [anon_sym_BSLASHacf] = ACTIONS(5101), + [anon_sym_BSLASHAcf] = ACTIONS(5101), + [anon_sym_BSLASHacfp] = ACTIONS(5101), + [anon_sym_BSLASHAcfp] = ACTIONS(5101), + [anon_sym_BSLASHac] = ACTIONS(5101), + [anon_sym_BSLASHAc] = ACTIONS(5101), + [anon_sym_BSLASHacp] = ACTIONS(5101), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), + [anon_sym_BSLASHcolor] = ACTIONS(5101), + [anon_sym_BSLASHcolorbox] = ACTIONS(5101), + [anon_sym_BSLASHtextcolor] = ACTIONS(5101), + [anon_sym_BSLASHpagecolor] = ACTIONS(5101), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), + [anon_sym_BSLASHtext] = ACTIONS(5101), + [anon_sym_BSLASHintertext] = ACTIONS(5101), + [anon_sym_shortintertext] = ACTIONS(5101), }, - [1443] = { - [sym_command_name] = ACTIONS(5139), + [1365] = { + [sym_command_name] = ACTIONS(5105), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_LPAREN] = ACTIONS(5137), - [anon_sym_RPAREN] = ACTIONS(5137), - [anon_sym_LBRACK] = ACTIONS(5137), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_LBRACE] = ACTIONS(5137), - [anon_sym_RBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), - [anon_sym_DOLLAR] = ACTIONS(5139), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHiffalse] = ACTIONS(5105), + [anon_sym_LPAREN] = ACTIONS(5103), + [anon_sym_RPAREN] = ACTIONS(5103), + [anon_sym_LBRACK] = ACTIONS(5103), + [anon_sym_RBRACK] = ACTIONS(5103), + [anon_sym_COMMA] = ACTIONS(5103), + [anon_sym_EQ] = ACTIONS(5103), + [anon_sym_LBRACE] = ACTIONS(5103), + [sym_word] = ACTIONS(5105), + [sym_placeholder] = ACTIONS(5103), + [anon_sym_PLUS] = ACTIONS(5105), + [anon_sym_DASH] = ACTIONS(5105), + [anon_sym_STAR] = ACTIONS(5105), + [anon_sym_SLASH] = ACTIONS(5105), + [anon_sym_CARET] = ACTIONS(5105), + [anon_sym__] = ACTIONS(5105), + [anon_sym_LT] = ACTIONS(5105), + [anon_sym_GT] = ACTIONS(5105), + [anon_sym_BANG] = ACTIONS(5105), + [anon_sym_PIPE] = ACTIONS(5105), + [anon_sym_COLON] = ACTIONS(5105), + [anon_sym_SQUOTE] = ACTIONS(5105), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5103), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5103), + [anon_sym_DOLLAR] = ACTIONS(5105), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5103), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5103), + [anon_sym_BSLASHbegin] = ACTIONS(5105), + [anon_sym_BSLASHusepackage] = ACTIONS(5105), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5105), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5105), + [anon_sym_BSLASHinclude] = ACTIONS(5105), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5105), + [anon_sym_BSLASHinput] = ACTIONS(5105), + [anon_sym_BSLASHsubfile] = ACTIONS(5105), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5105), + [anon_sym_BSLASHbibliography] = ACTIONS(5105), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5105), + [anon_sym_BSLASHincludesvg] = ACTIONS(5105), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5105), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5105), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5105), + [anon_sym_BSLASHimport] = ACTIONS(5105), + [anon_sym_BSLASHsubimport] = ACTIONS(5105), + [anon_sym_BSLASHinputfrom] = ACTIONS(5105), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5105), + [anon_sym_BSLASHincludefrom] = ACTIONS(5105), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5105), + [anon_sym_BSLASHcaption] = ACTIONS(5105), + [anon_sym_BSLASHcite] = ACTIONS(5105), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCite] = ACTIONS(5105), + [anon_sym_BSLASHnocite] = ACTIONS(5105), + [anon_sym_BSLASHcitet] = ACTIONS(5105), + [anon_sym_BSLASHcitep] = ACTIONS(5105), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteauthor] = ACTIONS(5105), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5105), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitetitle] = ACTIONS(5105), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteyear] = ACTIONS(5105), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5103), + [anon_sym_BSLASHcitedate] = ACTIONS(5105), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5103), + [anon_sym_BSLASHciteurl] = ACTIONS(5105), + [anon_sym_BSLASHfullcite] = ACTIONS(5105), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5105), + [anon_sym_BSLASHcitealt] = ACTIONS(5105), + [anon_sym_BSLASHcitealp] = ACTIONS(5105), + [anon_sym_BSLASHcitetext] = ACTIONS(5105), + [anon_sym_BSLASHparencite] = ACTIONS(5105), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHParencite] = ACTIONS(5105), + [anon_sym_BSLASHfootcite] = ACTIONS(5105), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5105), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5105), + [anon_sym_BSLASHtextcite] = ACTIONS(5105), + [anon_sym_BSLASHTextcite] = ACTIONS(5105), + [anon_sym_BSLASHsmartcite] = ACTIONS(5105), + [anon_sym_BSLASHSmartcite] = ACTIONS(5105), + [anon_sym_BSLASHsupercite] = ACTIONS(5105), + [anon_sym_BSLASHautocite] = ACTIONS(5105), + [anon_sym_BSLASHAutocite] = ACTIONS(5105), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5103), + [anon_sym_BSLASHvolcite] = ACTIONS(5105), + [anon_sym_BSLASHVolcite] = ACTIONS(5105), + [anon_sym_BSLASHpvolcite] = ACTIONS(5105), + [anon_sym_BSLASHPvolcite] = ACTIONS(5105), + [anon_sym_BSLASHfvolcite] = ACTIONS(5105), + [anon_sym_BSLASHftvolcite] = ACTIONS(5105), + [anon_sym_BSLASHsvolcite] = ACTIONS(5105), + [anon_sym_BSLASHSvolcite] = ACTIONS(5105), + [anon_sym_BSLASHtvolcite] = ACTIONS(5105), + [anon_sym_BSLASHTvolcite] = ACTIONS(5105), + [anon_sym_BSLASHavolcite] = ACTIONS(5105), + [anon_sym_BSLASHAvolcite] = ACTIONS(5105), + [anon_sym_BSLASHnotecite] = ACTIONS(5105), + [anon_sym_BSLASHNotecite] = ACTIONS(5105), + [anon_sym_BSLASHpnotecite] = ACTIONS(5105), + [anon_sym_BSLASHPnotecite] = ACTIONS(5105), + [anon_sym_BSLASHfnotecite] = ACTIONS(5105), + [anon_sym_BSLASHlabel] = ACTIONS(5105), + [anon_sym_BSLASHref] = ACTIONS(5105), + [anon_sym_BSLASHeqref] = ACTIONS(5105), + [anon_sym_BSLASHvref] = ACTIONS(5105), + [anon_sym_BSLASHVref] = ACTIONS(5105), + [anon_sym_BSLASHautoref] = ACTIONS(5105), + [anon_sym_BSLASHpageref] = ACTIONS(5105), + [anon_sym_BSLASHcref] = ACTIONS(5105), + [anon_sym_BSLASHCref] = ACTIONS(5105), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5103), + [anon_sym_BSLASHnamecref] = ACTIONS(5105), + [anon_sym_BSLASHnameCref] = ACTIONS(5105), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5105), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5105), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5105), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5105), + [anon_sym_BSLASHlabelcref] = ACTIONS(5105), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5105), + [anon_sym_BSLASHcrefrange] = ACTIONS(5105), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5103), + [anon_sym_BSLASHCrefrange] = ACTIONS(5105), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5103), + [anon_sym_BSLASHnewlabel] = ACTIONS(5105), + [anon_sym_BSLASHnewcommand] = ACTIONS(5105), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5105), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5105), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5103), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5105), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5103), + [anon_sym_BSLASHdef] = ACTIONS(5105), + [anon_sym_BSLASHlet] = ACTIONS(5105), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5105), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5105), + [anon_sym_BSLASHgls] = ACTIONS(5105), + [anon_sym_BSLASHGls] = ACTIONS(5105), + [anon_sym_BSLASHGLS] = ACTIONS(5105), + [anon_sym_BSLASHglspl] = ACTIONS(5105), + [anon_sym_BSLASHGlspl] = ACTIONS(5105), + [anon_sym_BSLASHGLSpl] = ACTIONS(5105), + [anon_sym_BSLASHglsdisp] = ACTIONS(5105), + [anon_sym_BSLASHglslink] = ACTIONS(5105), + [anon_sym_BSLASHglstext] = ACTIONS(5105), + [anon_sym_BSLASHGlstext] = ACTIONS(5105), + [anon_sym_BSLASHGLStext] = ACTIONS(5105), + [anon_sym_BSLASHglsfirst] = ACTIONS(5105), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5105), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5105), + [anon_sym_BSLASHglsplural] = ACTIONS(5105), + [anon_sym_BSLASHGlsplural] = ACTIONS(5105), + [anon_sym_BSLASHGLSplural] = ACTIONS(5105), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5105), + [anon_sym_BSLASHglsname] = ACTIONS(5105), + [anon_sym_BSLASHGlsname] = ACTIONS(5105), + [anon_sym_BSLASHGLSname] = ACTIONS(5105), + [anon_sym_BSLASHglssymbol] = ACTIONS(5105), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5105), + [anon_sym_BSLASHglsdesc] = ACTIONS(5105), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5105), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5105), + [anon_sym_BSLASHglsuseri] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5105), + [anon_sym_BSLASHglsuserii] = ACTIONS(5105), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5105), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5105), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5105), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5105), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5105), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5105), + [anon_sym_BSLASHglsuserv] = ACTIONS(5105), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5105), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5105), + [anon_sym_BSLASHglsuservi] = ACTIONS(5105), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5105), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5105), + [anon_sym_BSLASHnewacronym] = ACTIONS(5105), + [anon_sym_BSLASHacrshort] = ACTIONS(5105), + [anon_sym_BSLASHAcrshort] = ACTIONS(5105), + [anon_sym_BSLASHACRshort] = ACTIONS(5105), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5105), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5105), + [anon_sym_BSLASHacrlong] = ACTIONS(5105), + [anon_sym_BSLASHAcrlong] = ACTIONS(5105), + [anon_sym_BSLASHACRlong] = ACTIONS(5105), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5105), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5105), + [anon_sym_BSLASHacrfull] = ACTIONS(5105), + [anon_sym_BSLASHAcrfull] = ACTIONS(5105), + [anon_sym_BSLASHACRfull] = ACTIONS(5105), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5105), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5105), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5105), + [anon_sym_BSLASHacs] = ACTIONS(5105), + [anon_sym_BSLASHAcs] = ACTIONS(5105), + [anon_sym_BSLASHacsp] = ACTIONS(5105), + [anon_sym_BSLASHAcsp] = ACTIONS(5105), + [anon_sym_BSLASHacl] = ACTIONS(5105), + [anon_sym_BSLASHAcl] = ACTIONS(5105), + [anon_sym_BSLASHaclp] = ACTIONS(5105), + [anon_sym_BSLASHAclp] = ACTIONS(5105), + [anon_sym_BSLASHacf] = ACTIONS(5105), + [anon_sym_BSLASHAcf] = ACTIONS(5105), + [anon_sym_BSLASHacfp] = ACTIONS(5105), + [anon_sym_BSLASHAcfp] = ACTIONS(5105), + [anon_sym_BSLASHac] = ACTIONS(5105), + [anon_sym_BSLASHAc] = ACTIONS(5105), + [anon_sym_BSLASHacp] = ACTIONS(5105), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5105), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5105), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5105), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5105), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5105), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5105), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5105), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5105), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5105), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5105), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5105), + [anon_sym_BSLASHcolor] = ACTIONS(5105), + [anon_sym_BSLASHcolorbox] = ACTIONS(5105), + [anon_sym_BSLASHtextcolor] = ACTIONS(5105), + [anon_sym_BSLASHpagecolor] = ACTIONS(5105), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5105), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5105), + [anon_sym_BSLASHtext] = ACTIONS(5105), + [anon_sym_BSLASHintertext] = ACTIONS(5105), + [anon_sym_shortintertext] = ACTIONS(5105), }, - [1444] = { - [sym_command_name] = ACTIONS(5135), + [1366] = { + [sym_command_name] = ACTIONS(4987), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(5133), - [anon_sym_RPAREN] = ACTIONS(5133), - [anon_sym_LBRACK] = ACTIONS(5133), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_LBRACE] = ACTIONS(5133), - [anon_sym_RBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), - [anon_sym_DOLLAR] = ACTIONS(5135), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), - }, - [1445] = { - [sym_command_name] = ACTIONS(5125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_LPAREN] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(5123), - [anon_sym_LBRACK] = ACTIONS(5123), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_LBRACE] = ACTIONS(5123), - [anon_sym_RBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5123), - [anon_sym_DOLLAR] = ACTIONS(5125), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5123), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5123), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), - }, - [1446] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(5173), - [anon_sym_RPAREN] = ACTIONS(5173), - [anon_sym_LBRACK] = ACTIONS(5173), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_LBRACE] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5173), - [anon_sym_DOLLAR] = ACTIONS(5175), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5173), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5173), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), - }, - [1447] = { - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_LPAREN] = ACTIONS(5119), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_LBRACK] = ACTIONS(5119), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_LBRACE] = ACTIONS(5119), - [anon_sym_RBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5119), - [anon_sym_DOLLAR] = ACTIONS(5121), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5119), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5119), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), - }, - [1448] = { - [sym_command_name] = ACTIONS(137), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(135), - [anon_sym_LBRACK] = ACTIONS(135), - [anon_sym_RBRACK] = ACTIONS(135), - [anon_sym_COMMA] = ACTIONS(135), - [anon_sym_LBRACE] = ACTIONS(135), - [anon_sym_RBRACE] = ACTIONS(135), - [sym_word] = ACTIONS(137), - [sym_placeholder] = ACTIONS(135), - [anon_sym_PLUS] = ACTIONS(137), - [anon_sym_DASH] = ACTIONS(137), - [anon_sym_STAR] = ACTIONS(137), - [anon_sym_SLASH] = ACTIONS(137), - [anon_sym_CARET] = ACTIONS(137), - [anon_sym__] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(137), - [anon_sym_GT] = ACTIONS(137), - [anon_sym_BANG] = ACTIONS(137), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_COLON] = ACTIONS(137), - [anon_sym_SQUOTE] = ACTIONS(137), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(135), - [anon_sym_BSLASH_LBRACK] = ACTIONS(135), - [anon_sym_DOLLAR] = ACTIONS(137), - [anon_sym_BSLASH_LPAREN] = ACTIONS(135), - [anon_sym_BSLASH_LBRACE] = ACTIONS(135), - [anon_sym_BSLASHusepackage] = ACTIONS(137), - [anon_sym_BSLASHRequirePackage] = ACTIONS(137), - [anon_sym_BSLASHdocumentclass] = ACTIONS(137), - [anon_sym_BSLASHinclude] = ACTIONS(137), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(137), - [anon_sym_BSLASHinput] = ACTIONS(137), - [anon_sym_BSLASHsubfile] = ACTIONS(137), - [anon_sym_BSLASHaddbibresource] = ACTIONS(137), - [anon_sym_BSLASHbibliography] = ACTIONS(137), - [anon_sym_BSLASHincludegraphics] = ACTIONS(137), - [anon_sym_BSLASHincludesvg] = ACTIONS(137), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(137), - [anon_sym_BSLASHverbatiminput] = ACTIONS(137), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(137), - [anon_sym_BSLASHimport] = ACTIONS(137), - [anon_sym_BSLASHsubimport] = ACTIONS(137), - [anon_sym_BSLASHinputfrom] = ACTIONS(137), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(137), - [anon_sym_BSLASHincludefrom] = ACTIONS(137), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(137), - [anon_sym_BSLASHcaption] = ACTIONS(137), - [anon_sym_BSLASHcite] = ACTIONS(137), - [anon_sym_BSLASHcite_STAR] = ACTIONS(135), - [anon_sym_BSLASHCite] = ACTIONS(137), - [anon_sym_BSLASHnocite] = ACTIONS(137), - [anon_sym_BSLASHcitet] = ACTIONS(137), - [anon_sym_BSLASHcitep] = ACTIONS(137), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteauthor] = ACTIONS(137), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHCiteauthor] = ACTIONS(137), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitetitle] = ACTIONS(137), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteyear] = ACTIONS(137), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(135), - [anon_sym_BSLASHcitedate] = ACTIONS(137), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(135), - [anon_sym_BSLASHciteurl] = ACTIONS(137), - [anon_sym_BSLASHfullcite] = ACTIONS(137), - [anon_sym_BSLASHciteyearpar] = ACTIONS(137), - [anon_sym_BSLASHcitealt] = ACTIONS(137), - [anon_sym_BSLASHcitealp] = ACTIONS(137), - [anon_sym_BSLASHcitetext] = ACTIONS(137), - [anon_sym_BSLASHparencite] = ACTIONS(137), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(135), - [anon_sym_BSLASHParencite] = ACTIONS(137), - [anon_sym_BSLASHfootcite] = ACTIONS(137), - [anon_sym_BSLASHfootfullcite] = ACTIONS(137), - [anon_sym_BSLASHfootcitetext] = ACTIONS(137), - [anon_sym_BSLASHtextcite] = ACTIONS(137), - [anon_sym_BSLASHTextcite] = ACTIONS(137), - [anon_sym_BSLASHsmartcite] = ACTIONS(137), - [anon_sym_BSLASHSmartcite] = ACTIONS(137), - [anon_sym_BSLASHsupercite] = ACTIONS(137), - [anon_sym_BSLASHautocite] = ACTIONS(137), - [anon_sym_BSLASHAutocite] = ACTIONS(137), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(135), - [anon_sym_BSLASHvolcite] = ACTIONS(137), - [anon_sym_BSLASHVolcite] = ACTIONS(137), - [anon_sym_BSLASHpvolcite] = ACTIONS(137), - [anon_sym_BSLASHPvolcite] = ACTIONS(137), - [anon_sym_BSLASHfvolcite] = ACTIONS(137), - [anon_sym_BSLASHftvolcite] = ACTIONS(137), - [anon_sym_BSLASHsvolcite] = ACTIONS(137), - [anon_sym_BSLASHSvolcite] = ACTIONS(137), - [anon_sym_BSLASHtvolcite] = ACTIONS(137), - [anon_sym_BSLASHTvolcite] = ACTIONS(137), - [anon_sym_BSLASHavolcite] = ACTIONS(137), - [anon_sym_BSLASHAvolcite] = ACTIONS(137), - [anon_sym_BSLASHnotecite] = ACTIONS(137), - [anon_sym_BSLASHNotecite] = ACTIONS(137), - [anon_sym_BSLASHpnotecite] = ACTIONS(137), - [anon_sym_BSLASHPnotecite] = ACTIONS(137), - [anon_sym_BSLASHfnotecite] = ACTIONS(137), - [anon_sym_BSLASHlabel] = ACTIONS(137), - [anon_sym_BSLASHref] = ACTIONS(137), - [anon_sym_BSLASHeqref] = ACTIONS(137), - [anon_sym_BSLASHvref] = ACTIONS(137), - [anon_sym_BSLASHVref] = ACTIONS(137), - [anon_sym_BSLASHautoref] = ACTIONS(137), - [anon_sym_BSLASHpageref] = ACTIONS(137), - [anon_sym_BSLASHcref] = ACTIONS(137), - [anon_sym_BSLASHCref] = ACTIONS(137), - [anon_sym_BSLASHcref_STAR] = ACTIONS(135), - [anon_sym_BSLASHCref_STAR] = ACTIONS(135), - [anon_sym_BSLASHnamecref] = ACTIONS(137), - [anon_sym_BSLASHnameCref] = ACTIONS(137), - [anon_sym_BSLASHlcnamecref] = ACTIONS(137), - [anon_sym_BSLASHnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHnameCrefs] = ACTIONS(137), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(137), - [anon_sym_BSLASHlabelcref] = ACTIONS(137), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(137), - [anon_sym_BSLASHcrefrange] = ACTIONS(137), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHCrefrange] = ACTIONS(137), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(135), - [anon_sym_BSLASHnewlabel] = ACTIONS(137), - [anon_sym_BSLASHnewcommand] = ACTIONS(137), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHrenewcommand] = ACTIONS(137), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(137), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(135), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(137), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(135), - [anon_sym_BSLASHdef] = ACTIONS(137), - [anon_sym_BSLASHlet] = ACTIONS(137), - [anon_sym_BSLASHnewenvironment] = ACTIONS(137), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(137), - [anon_sym_BSLASHgls] = ACTIONS(137), - [anon_sym_BSLASHGls] = ACTIONS(137), - [anon_sym_BSLASHGLS] = ACTIONS(137), - [anon_sym_BSLASHglspl] = ACTIONS(137), - [anon_sym_BSLASHGlspl] = ACTIONS(137), - [anon_sym_BSLASHGLSpl] = ACTIONS(137), - [anon_sym_BSLASHglsdisp] = ACTIONS(137), - [anon_sym_BSLASHglslink] = ACTIONS(137), - [anon_sym_BSLASHglstext] = ACTIONS(137), - [anon_sym_BSLASHGlstext] = ACTIONS(137), - [anon_sym_BSLASHGLStext] = ACTIONS(137), - [anon_sym_BSLASHglsfirst] = ACTIONS(137), - [anon_sym_BSLASHGlsfirst] = ACTIONS(137), - [anon_sym_BSLASHGLSfirst] = ACTIONS(137), - [anon_sym_BSLASHglsplural] = ACTIONS(137), - [anon_sym_BSLASHGlsplural] = ACTIONS(137), - [anon_sym_BSLASHGLSplural] = ACTIONS(137), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(137), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(137), - [anon_sym_BSLASHglsname] = ACTIONS(137), - [anon_sym_BSLASHGlsname] = ACTIONS(137), - [anon_sym_BSLASHGLSname] = ACTIONS(137), - [anon_sym_BSLASHglssymbol] = ACTIONS(137), - [anon_sym_BSLASHGlssymbol] = ACTIONS(137), - [anon_sym_BSLASHglsdesc] = ACTIONS(137), - [anon_sym_BSLASHGlsdesc] = ACTIONS(137), - [anon_sym_BSLASHGLSdesc] = ACTIONS(137), - [anon_sym_BSLASHglsuseri] = ACTIONS(137), - [anon_sym_BSLASHGlsuseri] = ACTIONS(137), - [anon_sym_BSLASHGLSuseri] = ACTIONS(137), - [anon_sym_BSLASHglsuserii] = ACTIONS(137), - [anon_sym_BSLASHGlsuserii] = ACTIONS(137), - [anon_sym_BSLASHGLSuserii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(137), - [anon_sym_BSLASHglsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(137), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(137), - [anon_sym_BSLASHglsuserv] = ACTIONS(137), - [anon_sym_BSLASHGlsuserv] = ACTIONS(137), - [anon_sym_BSLASHGLSuserv] = ACTIONS(137), - [anon_sym_BSLASHglsuservi] = ACTIONS(137), - [anon_sym_BSLASHGlsuservi] = ACTIONS(137), - [anon_sym_BSLASHGLSuservi] = ACTIONS(137), - [anon_sym_BSLASHnewacronym] = ACTIONS(137), - [anon_sym_BSLASHacrshort] = ACTIONS(137), - [anon_sym_BSLASHAcrshort] = ACTIONS(137), - [anon_sym_BSLASHACRshort] = ACTIONS(137), - [anon_sym_BSLASHacrshortpl] = ACTIONS(137), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(137), - [anon_sym_BSLASHACRshortpl] = ACTIONS(137), - [anon_sym_BSLASHacrlong] = ACTIONS(137), - [anon_sym_BSLASHAcrlong] = ACTIONS(137), - [anon_sym_BSLASHACRlong] = ACTIONS(137), - [anon_sym_BSLASHacrlongpl] = ACTIONS(137), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(137), - [anon_sym_BSLASHACRlongpl] = ACTIONS(137), - [anon_sym_BSLASHacrfull] = ACTIONS(137), - [anon_sym_BSLASHAcrfull] = ACTIONS(137), - [anon_sym_BSLASHACRfull] = ACTIONS(137), - [anon_sym_BSLASHacrfullpl] = ACTIONS(137), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(137), - [anon_sym_BSLASHACRfullpl] = ACTIONS(137), - [anon_sym_BSLASHacs] = ACTIONS(137), - [anon_sym_BSLASHAcs] = ACTIONS(137), - [anon_sym_BSLASHacsp] = ACTIONS(137), - [anon_sym_BSLASHAcsp] = ACTIONS(137), - [anon_sym_BSLASHacl] = ACTIONS(137), - [anon_sym_BSLASHAcl] = ACTIONS(137), - [anon_sym_BSLASHaclp] = ACTIONS(137), - [anon_sym_BSLASHAclp] = ACTIONS(137), - [anon_sym_BSLASHacf] = ACTIONS(137), - [anon_sym_BSLASHAcf] = ACTIONS(137), - [anon_sym_BSLASHacfp] = ACTIONS(137), - [anon_sym_BSLASHAcfp] = ACTIONS(137), - [anon_sym_BSLASHac] = ACTIONS(137), - [anon_sym_BSLASHAc] = ACTIONS(137), - [anon_sym_BSLASHacp] = ACTIONS(137), - [anon_sym_BSLASHglsentrylong] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(137), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryshort] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(137), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(137), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(137), - [anon_sym_BSLASHnewtheorem] = ACTIONS(137), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(137), - [anon_sym_BSLASHdefinecolor] = ACTIONS(137), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(137), - [anon_sym_BSLASHcolor] = ACTIONS(137), - [anon_sym_BSLASHcolorbox] = ACTIONS(137), - [anon_sym_BSLASHtextcolor] = ACTIONS(137), - [anon_sym_BSLASHpagecolor] = ACTIONS(137), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(137), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(137), + [anon_sym_BSLASHiffalse] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4985), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(4985), + [anon_sym_RBRACK] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym_EQ] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4985), + [sym_word] = ACTIONS(4987), + [sym_placeholder] = ACTIONS(4985), + [anon_sym_PLUS] = ACTIONS(4987), + [anon_sym_DASH] = ACTIONS(4987), + [anon_sym_STAR] = ACTIONS(4987), + [anon_sym_SLASH] = ACTIONS(4987), + [anon_sym_CARET] = ACTIONS(4987), + [anon_sym__] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym_GT] = ACTIONS(4987), + [anon_sym_BANG] = ACTIONS(4987), + [anon_sym_PIPE] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_SQUOTE] = ACTIONS(4987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(4987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), + [anon_sym_BSLASHbegin] = ACTIONS(4987), + [anon_sym_BSLASHusepackage] = ACTIONS(4987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), + [anon_sym_BSLASHinclude] = ACTIONS(4987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), + [anon_sym_BSLASHinput] = ACTIONS(4987), + [anon_sym_BSLASHsubfile] = ACTIONS(4987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), + [anon_sym_BSLASHbibliography] = ACTIONS(4987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), + [anon_sym_BSLASHincludesvg] = ACTIONS(4987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), + [anon_sym_BSLASHimport] = ACTIONS(4987), + [anon_sym_BSLASHsubimport] = ACTIONS(4987), + [anon_sym_BSLASHinputfrom] = ACTIONS(4987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), + [anon_sym_BSLASHincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHcaption] = ACTIONS(4987), + [anon_sym_BSLASHcite] = ACTIONS(4987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCite] = ACTIONS(4987), + [anon_sym_BSLASHnocite] = ACTIONS(4987), + [anon_sym_BSLASHcitet] = ACTIONS(4987), + [anon_sym_BSLASHcitep] = ACTIONS(4987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteauthor] = ACTIONS(4987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitetitle] = ACTIONS(4987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteyear] = ACTIONS(4987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitedate] = ACTIONS(4987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteurl] = ACTIONS(4987), + [anon_sym_BSLASHfullcite] = ACTIONS(4987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), + [anon_sym_BSLASHcitealt] = ACTIONS(4987), + [anon_sym_BSLASHcitealp] = ACTIONS(4987), + [anon_sym_BSLASHcitetext] = ACTIONS(4987), + [anon_sym_BSLASHparencite] = ACTIONS(4987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHParencite] = ACTIONS(4987), + [anon_sym_BSLASHfootcite] = ACTIONS(4987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), + [anon_sym_BSLASHtextcite] = ACTIONS(4987), + [anon_sym_BSLASHTextcite] = ACTIONS(4987), + [anon_sym_BSLASHsmartcite] = ACTIONS(4987), + [anon_sym_BSLASHSmartcite] = ACTIONS(4987), + [anon_sym_BSLASHsupercite] = ACTIONS(4987), + [anon_sym_BSLASHautocite] = ACTIONS(4987), + [anon_sym_BSLASHAutocite] = ACTIONS(4987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHvolcite] = ACTIONS(4987), + [anon_sym_BSLASHVolcite] = ACTIONS(4987), + [anon_sym_BSLASHpvolcite] = ACTIONS(4987), + [anon_sym_BSLASHPvolcite] = ACTIONS(4987), + [anon_sym_BSLASHfvolcite] = ACTIONS(4987), + [anon_sym_BSLASHftvolcite] = ACTIONS(4987), + [anon_sym_BSLASHsvolcite] = ACTIONS(4987), + [anon_sym_BSLASHSvolcite] = ACTIONS(4987), + [anon_sym_BSLASHtvolcite] = ACTIONS(4987), + [anon_sym_BSLASHTvolcite] = ACTIONS(4987), + [anon_sym_BSLASHavolcite] = ACTIONS(4987), + [anon_sym_BSLASHAvolcite] = ACTIONS(4987), + [anon_sym_BSLASHnotecite] = ACTIONS(4987), + [anon_sym_BSLASHNotecite] = ACTIONS(4987), + [anon_sym_BSLASHpnotecite] = ACTIONS(4987), + [anon_sym_BSLASHPnotecite] = ACTIONS(4987), + [anon_sym_BSLASHfnotecite] = ACTIONS(4987), + [anon_sym_BSLASHlabel] = ACTIONS(4987), + [anon_sym_BSLASHref] = ACTIONS(4987), + [anon_sym_BSLASHeqref] = ACTIONS(4987), + [anon_sym_BSLASHvref] = ACTIONS(4987), + [anon_sym_BSLASHVref] = ACTIONS(4987), + [anon_sym_BSLASHautoref] = ACTIONS(4987), + [anon_sym_BSLASHpageref] = ACTIONS(4987), + [anon_sym_BSLASHcref] = ACTIONS(4987), + [anon_sym_BSLASHCref] = ACTIONS(4987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnameCref] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHlabelcref] = ACTIONS(4987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCrefrange] = ACTIONS(4987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnewlabel] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), + [anon_sym_BSLASHdef] = ACTIONS(4987), + [anon_sym_BSLASHlet] = ACTIONS(4987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), + [anon_sym_BSLASHgls] = ACTIONS(4987), + [anon_sym_BSLASHGls] = ACTIONS(4987), + [anon_sym_BSLASHGLS] = ACTIONS(4987), + [anon_sym_BSLASHglspl] = ACTIONS(4987), + [anon_sym_BSLASHGlspl] = ACTIONS(4987), + [anon_sym_BSLASHGLSpl] = ACTIONS(4987), + [anon_sym_BSLASHglsdisp] = ACTIONS(4987), + [anon_sym_BSLASHglslink] = ACTIONS(4987), + [anon_sym_BSLASHglstext] = ACTIONS(4987), + [anon_sym_BSLASHGlstext] = ACTIONS(4987), + [anon_sym_BSLASHGLStext] = ACTIONS(4987), + [anon_sym_BSLASHglsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), + [anon_sym_BSLASHglsplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSplural] = ACTIONS(4987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHglsname] = ACTIONS(4987), + [anon_sym_BSLASHGlsname] = ACTIONS(4987), + [anon_sym_BSLASHGLSname] = ACTIONS(4987), + [anon_sym_BSLASHglssymbol] = ACTIONS(4987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), + [anon_sym_BSLASHglsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), + [anon_sym_BSLASHglsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), + [anon_sym_BSLASHglsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), + [anon_sym_BSLASHglsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), + [anon_sym_BSLASHglsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), + [anon_sym_BSLASHnewacronym] = ACTIONS(4987), + [anon_sym_BSLASHacrshort] = ACTIONS(4987), + [anon_sym_BSLASHAcrshort] = ACTIONS(4987), + [anon_sym_BSLASHACRshort] = ACTIONS(4987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), + [anon_sym_BSLASHacrlong] = ACTIONS(4987), + [anon_sym_BSLASHAcrlong] = ACTIONS(4987), + [anon_sym_BSLASHACRlong] = ACTIONS(4987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), + [anon_sym_BSLASHacrfull] = ACTIONS(4987), + [anon_sym_BSLASHAcrfull] = ACTIONS(4987), + [anon_sym_BSLASHACRfull] = ACTIONS(4987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), + [anon_sym_BSLASHacs] = ACTIONS(4987), + [anon_sym_BSLASHAcs] = ACTIONS(4987), + [anon_sym_BSLASHacsp] = ACTIONS(4987), + [anon_sym_BSLASHAcsp] = ACTIONS(4987), + [anon_sym_BSLASHacl] = ACTIONS(4987), + [anon_sym_BSLASHAcl] = ACTIONS(4987), + [anon_sym_BSLASHaclp] = ACTIONS(4987), + [anon_sym_BSLASHAclp] = ACTIONS(4987), + [anon_sym_BSLASHacf] = ACTIONS(4987), + [anon_sym_BSLASHAcf] = ACTIONS(4987), + [anon_sym_BSLASHacfp] = ACTIONS(4987), + [anon_sym_BSLASHAcfp] = ACTIONS(4987), + [anon_sym_BSLASHac] = ACTIONS(4987), + [anon_sym_BSLASHAc] = ACTIONS(4987), + [anon_sym_BSLASHacp] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), + [anon_sym_BSLASHcolor] = ACTIONS(4987), + [anon_sym_BSLASHcolorbox] = ACTIONS(4987), + [anon_sym_BSLASHtextcolor] = ACTIONS(4987), + [anon_sym_BSLASHpagecolor] = ACTIONS(4987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), + [anon_sym_BSLASHtext] = ACTIONS(4987), + [anon_sym_BSLASHintertext] = ACTIONS(4987), + [anon_sym_shortintertext] = ACTIONS(4987), }, - [1449] = { - [sym_command_name] = ACTIONS(5089), + [1367] = { + [sym_command_name] = ACTIONS(5049), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_LPAREN] = ACTIONS(5087), - [anon_sym_RPAREN] = ACTIONS(5087), - [anon_sym_LBRACK] = ACTIONS(5087), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_LBRACE] = ACTIONS(5087), - [anon_sym_RBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5087), - [anon_sym_DOLLAR] = ACTIONS(5089), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5087), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5087), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHiffalse] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5047), + [anon_sym_RPAREN] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_RBRACK] = ACTIONS(5047), + [anon_sym_COMMA] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5047), + [sym_word] = ACTIONS(5049), + [sym_placeholder] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5049), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_CARET] = ACTIONS(5049), + [anon_sym__] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5049), + [anon_sym_PIPE] = ACTIONS(5049), + [anon_sym_COLON] = ACTIONS(5049), + [anon_sym_SQUOTE] = ACTIONS(5049), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), + [anon_sym_DOLLAR] = ACTIONS(5049), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), + [anon_sym_BSLASHbegin] = ACTIONS(5049), + [anon_sym_BSLASHusepackage] = ACTIONS(5049), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), + [anon_sym_BSLASHinclude] = ACTIONS(5049), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), + [anon_sym_BSLASHinput] = ACTIONS(5049), + [anon_sym_BSLASHsubfile] = ACTIONS(5049), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), + [anon_sym_BSLASHbibliography] = ACTIONS(5049), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), + [anon_sym_BSLASHincludesvg] = ACTIONS(5049), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), + [anon_sym_BSLASHimport] = ACTIONS(5049), + [anon_sym_BSLASHsubimport] = ACTIONS(5049), + [anon_sym_BSLASHinputfrom] = ACTIONS(5049), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), + [anon_sym_BSLASHincludefrom] = ACTIONS(5049), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), + [anon_sym_BSLASHcaption] = ACTIONS(5049), + [anon_sym_BSLASHcite] = ACTIONS(5049), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCite] = ACTIONS(5049), + [anon_sym_BSLASHnocite] = ACTIONS(5049), + [anon_sym_BSLASHcitet] = ACTIONS(5049), + [anon_sym_BSLASHcitep] = ACTIONS(5049), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteauthor] = ACTIONS(5049), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitetitle] = ACTIONS(5049), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteyear] = ACTIONS(5049), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitedate] = ACTIONS(5049), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteurl] = ACTIONS(5049), + [anon_sym_BSLASHfullcite] = ACTIONS(5049), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), + [anon_sym_BSLASHcitealt] = ACTIONS(5049), + [anon_sym_BSLASHcitealp] = ACTIONS(5049), + [anon_sym_BSLASHcitetext] = ACTIONS(5049), + [anon_sym_BSLASHparencite] = ACTIONS(5049), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHParencite] = ACTIONS(5049), + [anon_sym_BSLASHfootcite] = ACTIONS(5049), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), + [anon_sym_BSLASHtextcite] = ACTIONS(5049), + [anon_sym_BSLASHTextcite] = ACTIONS(5049), + [anon_sym_BSLASHsmartcite] = ACTIONS(5049), + [anon_sym_BSLASHSmartcite] = ACTIONS(5049), + [anon_sym_BSLASHsupercite] = ACTIONS(5049), + [anon_sym_BSLASHautocite] = ACTIONS(5049), + [anon_sym_BSLASHAutocite] = ACTIONS(5049), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHvolcite] = ACTIONS(5049), + [anon_sym_BSLASHVolcite] = ACTIONS(5049), + [anon_sym_BSLASHpvolcite] = ACTIONS(5049), + [anon_sym_BSLASHPvolcite] = ACTIONS(5049), + [anon_sym_BSLASHfvolcite] = ACTIONS(5049), + [anon_sym_BSLASHftvolcite] = ACTIONS(5049), + [anon_sym_BSLASHsvolcite] = ACTIONS(5049), + [anon_sym_BSLASHSvolcite] = ACTIONS(5049), + [anon_sym_BSLASHtvolcite] = ACTIONS(5049), + [anon_sym_BSLASHTvolcite] = ACTIONS(5049), + [anon_sym_BSLASHavolcite] = ACTIONS(5049), + [anon_sym_BSLASHAvolcite] = ACTIONS(5049), + [anon_sym_BSLASHnotecite] = ACTIONS(5049), + [anon_sym_BSLASHNotecite] = ACTIONS(5049), + [anon_sym_BSLASHpnotecite] = ACTIONS(5049), + [anon_sym_BSLASHPnotecite] = ACTIONS(5049), + [anon_sym_BSLASHfnotecite] = ACTIONS(5049), + [anon_sym_BSLASHlabel] = ACTIONS(5049), + [anon_sym_BSLASHref] = ACTIONS(5049), + [anon_sym_BSLASHeqref] = ACTIONS(5049), + [anon_sym_BSLASHvref] = ACTIONS(5049), + [anon_sym_BSLASHVref] = ACTIONS(5049), + [anon_sym_BSLASHautoref] = ACTIONS(5049), + [anon_sym_BSLASHpageref] = ACTIONS(5049), + [anon_sym_BSLASHcref] = ACTIONS(5049), + [anon_sym_BSLASHCref] = ACTIONS(5049), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), + [anon_sym_BSLASHnamecref] = ACTIONS(5049), + [anon_sym_BSLASHnameCref] = ACTIONS(5049), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), + [anon_sym_BSLASHlabelcref] = ACTIONS(5049), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), + [anon_sym_BSLASHcrefrange] = ACTIONS(5049), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCrefrange] = ACTIONS(5049), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), + [anon_sym_BSLASHnewlabel] = ACTIONS(5049), + [anon_sym_BSLASHnewcommand] = ACTIONS(5049), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), + [anon_sym_BSLASHdef] = ACTIONS(5049), + [anon_sym_BSLASHlet] = ACTIONS(5049), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), + [anon_sym_BSLASHgls] = ACTIONS(5049), + [anon_sym_BSLASHGls] = ACTIONS(5049), + [anon_sym_BSLASHGLS] = ACTIONS(5049), + [anon_sym_BSLASHglspl] = ACTIONS(5049), + [anon_sym_BSLASHGlspl] = ACTIONS(5049), + [anon_sym_BSLASHGLSpl] = ACTIONS(5049), + [anon_sym_BSLASHglsdisp] = ACTIONS(5049), + [anon_sym_BSLASHglslink] = ACTIONS(5049), + [anon_sym_BSLASHglstext] = ACTIONS(5049), + [anon_sym_BSLASHGlstext] = ACTIONS(5049), + [anon_sym_BSLASHGLStext] = ACTIONS(5049), + [anon_sym_BSLASHglsfirst] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), + [anon_sym_BSLASHglsplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSplural] = ACTIONS(5049), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHglsname] = ACTIONS(5049), + [anon_sym_BSLASHGlsname] = ACTIONS(5049), + [anon_sym_BSLASHGLSname] = ACTIONS(5049), + [anon_sym_BSLASHglssymbol] = ACTIONS(5049), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), + [anon_sym_BSLASHglsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), + [anon_sym_BSLASHglsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), + [anon_sym_BSLASHglsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), + [anon_sym_BSLASHglsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), + [anon_sym_BSLASHglsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), + [anon_sym_BSLASHnewacronym] = ACTIONS(5049), + [anon_sym_BSLASHacrshort] = ACTIONS(5049), + [anon_sym_BSLASHAcrshort] = ACTIONS(5049), + [anon_sym_BSLASHACRshort] = ACTIONS(5049), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), + [anon_sym_BSLASHacrlong] = ACTIONS(5049), + [anon_sym_BSLASHAcrlong] = ACTIONS(5049), + [anon_sym_BSLASHACRlong] = ACTIONS(5049), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), + [anon_sym_BSLASHacrfull] = ACTIONS(5049), + [anon_sym_BSLASHAcrfull] = ACTIONS(5049), + [anon_sym_BSLASHACRfull] = ACTIONS(5049), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), + [anon_sym_BSLASHacs] = ACTIONS(5049), + [anon_sym_BSLASHAcs] = ACTIONS(5049), + [anon_sym_BSLASHacsp] = ACTIONS(5049), + [anon_sym_BSLASHAcsp] = ACTIONS(5049), + [anon_sym_BSLASHacl] = ACTIONS(5049), + [anon_sym_BSLASHAcl] = ACTIONS(5049), + [anon_sym_BSLASHaclp] = ACTIONS(5049), + [anon_sym_BSLASHAclp] = ACTIONS(5049), + [anon_sym_BSLASHacf] = ACTIONS(5049), + [anon_sym_BSLASHAcf] = ACTIONS(5049), + [anon_sym_BSLASHacfp] = ACTIONS(5049), + [anon_sym_BSLASHAcfp] = ACTIONS(5049), + [anon_sym_BSLASHac] = ACTIONS(5049), + [anon_sym_BSLASHAc] = ACTIONS(5049), + [anon_sym_BSLASHacp] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), + [anon_sym_BSLASHcolor] = ACTIONS(5049), + [anon_sym_BSLASHcolorbox] = ACTIONS(5049), + [anon_sym_BSLASHtextcolor] = ACTIONS(5049), + [anon_sym_BSLASHpagecolor] = ACTIONS(5049), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [anon_sym_BSLASHtext] = ACTIONS(5049), + [anon_sym_BSLASHintertext] = ACTIONS(5049), + [anon_sym_shortintertext] = ACTIONS(5049), }, - [1450] = { - [sym_command_name] = ACTIONS(5081), + [1368] = { + [sym_command_name] = ACTIONS(4901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4901), + [anon_sym_LPAREN] = ACTIONS(4899), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_RBRACK] = ACTIONS(4899), + [anon_sym_COMMA] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4899), + [anon_sym_LBRACE] = ACTIONS(4899), + [sym_word] = ACTIONS(4901), + [sym_placeholder] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(4901), + [anon_sym_DASH] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4901), + [anon_sym_SLASH] = ACTIONS(4901), + [anon_sym_CARET] = ACTIONS(4901), + [anon_sym__] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_BANG] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_COLON] = ACTIONS(4901), + [anon_sym_SQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), + [anon_sym_BSLASHbegin] = ACTIONS(4901), + [anon_sym_BSLASHusepackage] = ACTIONS(4901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), + [anon_sym_BSLASHinclude] = ACTIONS(4901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), + [anon_sym_BSLASHinput] = ACTIONS(4901), + [anon_sym_BSLASHsubfile] = ACTIONS(4901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), + [anon_sym_BSLASHbibliography] = ACTIONS(4901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), + [anon_sym_BSLASHincludesvg] = ACTIONS(4901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), + [anon_sym_BSLASHimport] = ACTIONS(4901), + [anon_sym_BSLASHsubimport] = ACTIONS(4901), + [anon_sym_BSLASHinputfrom] = ACTIONS(4901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), + [anon_sym_BSLASHincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHcaption] = ACTIONS(4901), + [anon_sym_BSLASHcite] = ACTIONS(4901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCite] = ACTIONS(4901), + [anon_sym_BSLASHnocite] = ACTIONS(4901), + [anon_sym_BSLASHcitet] = ACTIONS(4901), + [anon_sym_BSLASHcitep] = ACTIONS(4901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteauthor] = ACTIONS(4901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitetitle] = ACTIONS(4901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteyear] = ACTIONS(4901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitedate] = ACTIONS(4901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteurl] = ACTIONS(4901), + [anon_sym_BSLASHfullcite] = ACTIONS(4901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), + [anon_sym_BSLASHcitealt] = ACTIONS(4901), + [anon_sym_BSLASHcitealp] = ACTIONS(4901), + [anon_sym_BSLASHcitetext] = ACTIONS(4901), + [anon_sym_BSLASHparencite] = ACTIONS(4901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHParencite] = ACTIONS(4901), + [anon_sym_BSLASHfootcite] = ACTIONS(4901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), + [anon_sym_BSLASHtextcite] = ACTIONS(4901), + [anon_sym_BSLASHTextcite] = ACTIONS(4901), + [anon_sym_BSLASHsmartcite] = ACTIONS(4901), + [anon_sym_BSLASHSmartcite] = ACTIONS(4901), + [anon_sym_BSLASHsupercite] = ACTIONS(4901), + [anon_sym_BSLASHautocite] = ACTIONS(4901), + [anon_sym_BSLASHAutocite] = ACTIONS(4901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHvolcite] = ACTIONS(4901), + [anon_sym_BSLASHVolcite] = ACTIONS(4901), + [anon_sym_BSLASHpvolcite] = ACTIONS(4901), + [anon_sym_BSLASHPvolcite] = ACTIONS(4901), + [anon_sym_BSLASHfvolcite] = ACTIONS(4901), + [anon_sym_BSLASHftvolcite] = ACTIONS(4901), + [anon_sym_BSLASHsvolcite] = ACTIONS(4901), + [anon_sym_BSLASHSvolcite] = ACTIONS(4901), + [anon_sym_BSLASHtvolcite] = ACTIONS(4901), + [anon_sym_BSLASHTvolcite] = ACTIONS(4901), + [anon_sym_BSLASHavolcite] = ACTIONS(4901), + [anon_sym_BSLASHAvolcite] = ACTIONS(4901), + [anon_sym_BSLASHnotecite] = ACTIONS(4901), + [anon_sym_BSLASHNotecite] = ACTIONS(4901), + [anon_sym_BSLASHpnotecite] = ACTIONS(4901), + [anon_sym_BSLASHPnotecite] = ACTIONS(4901), + [anon_sym_BSLASHfnotecite] = ACTIONS(4901), + [anon_sym_BSLASHlabel] = ACTIONS(4901), + [anon_sym_BSLASHref] = ACTIONS(4901), + [anon_sym_BSLASHeqref] = ACTIONS(4901), + [anon_sym_BSLASHvref] = ACTIONS(4901), + [anon_sym_BSLASHVref] = ACTIONS(4901), + [anon_sym_BSLASHautoref] = ACTIONS(4901), + [anon_sym_BSLASHpageref] = ACTIONS(4901), + [anon_sym_BSLASHcref] = ACTIONS(4901), + [anon_sym_BSLASHCref] = ACTIONS(4901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnameCref] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHlabelcref] = ACTIONS(4901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCrefrange] = ACTIONS(4901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnewlabel] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), + [anon_sym_BSLASHdef] = ACTIONS(4901), + [anon_sym_BSLASHlet] = ACTIONS(4901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), + [anon_sym_BSLASHgls] = ACTIONS(4901), + [anon_sym_BSLASHGls] = ACTIONS(4901), + [anon_sym_BSLASHGLS] = ACTIONS(4901), + [anon_sym_BSLASHglspl] = ACTIONS(4901), + [anon_sym_BSLASHGlspl] = ACTIONS(4901), + [anon_sym_BSLASHGLSpl] = ACTIONS(4901), + [anon_sym_BSLASHglsdisp] = ACTIONS(4901), + [anon_sym_BSLASHglslink] = ACTIONS(4901), + [anon_sym_BSLASHglstext] = ACTIONS(4901), + [anon_sym_BSLASHGlstext] = ACTIONS(4901), + [anon_sym_BSLASHGLStext] = ACTIONS(4901), + [anon_sym_BSLASHglsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), + [anon_sym_BSLASHglsplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSplural] = ACTIONS(4901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHglsname] = ACTIONS(4901), + [anon_sym_BSLASHGlsname] = ACTIONS(4901), + [anon_sym_BSLASHGLSname] = ACTIONS(4901), + [anon_sym_BSLASHglssymbol] = ACTIONS(4901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), + [anon_sym_BSLASHglsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), + [anon_sym_BSLASHglsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), + [anon_sym_BSLASHglsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), + [anon_sym_BSLASHglsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), + [anon_sym_BSLASHglsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), + [anon_sym_BSLASHnewacronym] = ACTIONS(4901), + [anon_sym_BSLASHacrshort] = ACTIONS(4901), + [anon_sym_BSLASHAcrshort] = ACTIONS(4901), + [anon_sym_BSLASHACRshort] = ACTIONS(4901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), + [anon_sym_BSLASHacrlong] = ACTIONS(4901), + [anon_sym_BSLASHAcrlong] = ACTIONS(4901), + [anon_sym_BSLASHACRlong] = ACTIONS(4901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), + [anon_sym_BSLASHacrfull] = ACTIONS(4901), + [anon_sym_BSLASHAcrfull] = ACTIONS(4901), + [anon_sym_BSLASHACRfull] = ACTIONS(4901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), + [anon_sym_BSLASHacs] = ACTIONS(4901), + [anon_sym_BSLASHAcs] = ACTIONS(4901), + [anon_sym_BSLASHacsp] = ACTIONS(4901), + [anon_sym_BSLASHAcsp] = ACTIONS(4901), + [anon_sym_BSLASHacl] = ACTIONS(4901), + [anon_sym_BSLASHAcl] = ACTIONS(4901), + [anon_sym_BSLASHaclp] = ACTIONS(4901), + [anon_sym_BSLASHAclp] = ACTIONS(4901), + [anon_sym_BSLASHacf] = ACTIONS(4901), + [anon_sym_BSLASHAcf] = ACTIONS(4901), + [anon_sym_BSLASHacfp] = ACTIONS(4901), + [anon_sym_BSLASHAcfp] = ACTIONS(4901), + [anon_sym_BSLASHac] = ACTIONS(4901), + [anon_sym_BSLASHAc] = ACTIONS(4901), + [anon_sym_BSLASHacp] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), + [anon_sym_BSLASHcolor] = ACTIONS(4901), + [anon_sym_BSLASHcolorbox] = ACTIONS(4901), + [anon_sym_BSLASHtextcolor] = ACTIONS(4901), + [anon_sym_BSLASHpagecolor] = ACTIONS(4901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), + [anon_sym_BSLASHtext] = ACTIONS(4901), + [anon_sym_BSLASHintertext] = ACTIONS(4901), + [anon_sym_shortintertext] = ACTIONS(4901), + }, + [1369] = { + [sym_command_name] = ACTIONS(5319), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5319), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_EQ] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5319), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5319), + [anon_sym_DASH] = ACTIONS(5319), + [anon_sym_STAR] = ACTIONS(5319), + [anon_sym_SLASH] = ACTIONS(5319), + [anon_sym_CARET] = ACTIONS(5319), + [anon_sym__] = ACTIONS(5319), + [anon_sym_LT] = ACTIONS(5319), + [anon_sym_GT] = ACTIONS(5319), + [anon_sym_BANG] = ACTIONS(5319), + [anon_sym_PIPE] = ACTIONS(5319), + [anon_sym_COLON] = ACTIONS(5319), + [anon_sym_SQUOTE] = ACTIONS(5319), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHbegin] = ACTIONS(5319), + [anon_sym_BSLASHusepackage] = ACTIONS(5319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5319), + [anon_sym_BSLASHinclude] = ACTIONS(5319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5319), + [anon_sym_BSLASHinput] = ACTIONS(5319), + [anon_sym_BSLASHsubfile] = ACTIONS(5319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5319), + [anon_sym_BSLASHbibliography] = ACTIONS(5319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5319), + [anon_sym_BSLASHincludesvg] = ACTIONS(5319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5319), + [anon_sym_BSLASHimport] = ACTIONS(5319), + [anon_sym_BSLASHsubimport] = ACTIONS(5319), + [anon_sym_BSLASHinputfrom] = ACTIONS(5319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5319), + [anon_sym_BSLASHincludefrom] = ACTIONS(5319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5319), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [anon_sym_BSLASHcite] = ACTIONS(5319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5319), + [anon_sym_BSLASHnocite] = ACTIONS(5319), + [anon_sym_BSLASHcitet] = ACTIONS(5319), + [anon_sym_BSLASHcitep] = ACTIONS(5319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5319), + [anon_sym_BSLASHfullcite] = ACTIONS(5319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5319), + [anon_sym_BSLASHcitealt] = ACTIONS(5319), + [anon_sym_BSLASHcitealp] = ACTIONS(5319), + [anon_sym_BSLASHcitetext] = ACTIONS(5319), + [anon_sym_BSLASHparencite] = ACTIONS(5319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5319), + [anon_sym_BSLASHfootcite] = ACTIONS(5319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5319), + [anon_sym_BSLASHtextcite] = ACTIONS(5319), + [anon_sym_BSLASHTextcite] = ACTIONS(5319), + [anon_sym_BSLASHsmartcite] = ACTIONS(5319), + [anon_sym_BSLASHSmartcite] = ACTIONS(5319), + [anon_sym_BSLASHsupercite] = ACTIONS(5319), + [anon_sym_BSLASHautocite] = ACTIONS(5319), + [anon_sym_BSLASHAutocite] = ACTIONS(5319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5319), + [anon_sym_BSLASHVolcite] = ACTIONS(5319), + [anon_sym_BSLASHpvolcite] = ACTIONS(5319), + [anon_sym_BSLASHPvolcite] = ACTIONS(5319), + [anon_sym_BSLASHfvolcite] = ACTIONS(5319), + [anon_sym_BSLASHftvolcite] = ACTIONS(5319), + [anon_sym_BSLASHsvolcite] = ACTIONS(5319), + [anon_sym_BSLASHSvolcite] = ACTIONS(5319), + [anon_sym_BSLASHtvolcite] = ACTIONS(5319), + [anon_sym_BSLASHTvolcite] = ACTIONS(5319), + [anon_sym_BSLASHavolcite] = ACTIONS(5319), + [anon_sym_BSLASHAvolcite] = ACTIONS(5319), + [anon_sym_BSLASHnotecite] = ACTIONS(5319), + [anon_sym_BSLASHNotecite] = ACTIONS(5319), + [anon_sym_BSLASHpnotecite] = ACTIONS(5319), + [anon_sym_BSLASHPnotecite] = ACTIONS(5319), + [anon_sym_BSLASHfnotecite] = ACTIONS(5319), + [anon_sym_BSLASHlabel] = ACTIONS(5319), + [anon_sym_BSLASHref] = ACTIONS(5319), + [anon_sym_BSLASHeqref] = ACTIONS(5319), + [anon_sym_BSLASHvref] = ACTIONS(5319), + [anon_sym_BSLASHVref] = ACTIONS(5319), + [anon_sym_BSLASHautoref] = ACTIONS(5319), + [anon_sym_BSLASHpageref] = ACTIONS(5319), + [anon_sym_BSLASHcref] = ACTIONS(5319), + [anon_sym_BSLASHCref] = ACTIONS(5319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5319), + [anon_sym_BSLASHnameCref] = ACTIONS(5319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5319), + [anon_sym_BSLASHlabelcref] = ACTIONS(5319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5319), + [anon_sym_BSLASHcrefrange] = ACTIONS(5319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5319), + [anon_sym_BSLASHnewcommand] = ACTIONS(5319), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5319), + [anon_sym_BSLASHlet] = ACTIONS(5319), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5319), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5319), + [anon_sym_BSLASHgls] = ACTIONS(5319), + [anon_sym_BSLASHGls] = ACTIONS(5319), + [anon_sym_BSLASHGLS] = ACTIONS(5319), + [anon_sym_BSLASHglspl] = ACTIONS(5319), + [anon_sym_BSLASHGlspl] = ACTIONS(5319), + [anon_sym_BSLASHGLSpl] = ACTIONS(5319), + [anon_sym_BSLASHglsdisp] = ACTIONS(5319), + [anon_sym_BSLASHglslink] = ACTIONS(5319), + [anon_sym_BSLASHglstext] = ACTIONS(5319), + [anon_sym_BSLASHGlstext] = ACTIONS(5319), + [anon_sym_BSLASHGLStext] = ACTIONS(5319), + [anon_sym_BSLASHglsfirst] = ACTIONS(5319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5319), + [anon_sym_BSLASHglsplural] = ACTIONS(5319), + [anon_sym_BSLASHGlsplural] = ACTIONS(5319), + [anon_sym_BSLASHGLSplural] = ACTIONS(5319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5319), + [anon_sym_BSLASHglsname] = ACTIONS(5319), + [anon_sym_BSLASHGlsname] = ACTIONS(5319), + [anon_sym_BSLASHGLSname] = ACTIONS(5319), + [anon_sym_BSLASHglssymbol] = ACTIONS(5319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5319), + [anon_sym_BSLASHglsdesc] = ACTIONS(5319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5319), + [anon_sym_BSLASHglsuseri] = ACTIONS(5319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5319), + [anon_sym_BSLASHglsuserii] = ACTIONS(5319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5319), + [anon_sym_BSLASHglsuserv] = ACTIONS(5319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5319), + [anon_sym_BSLASHglsuservi] = ACTIONS(5319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5319), + [anon_sym_BSLASHnewacronym] = ACTIONS(5319), + [anon_sym_BSLASHacrshort] = ACTIONS(5319), + [anon_sym_BSLASHAcrshort] = ACTIONS(5319), + [anon_sym_BSLASHACRshort] = ACTIONS(5319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5319), + [anon_sym_BSLASHacrlong] = ACTIONS(5319), + [anon_sym_BSLASHAcrlong] = ACTIONS(5319), + [anon_sym_BSLASHACRlong] = ACTIONS(5319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5319), + [anon_sym_BSLASHacrfull] = ACTIONS(5319), + [anon_sym_BSLASHAcrfull] = ACTIONS(5319), + [anon_sym_BSLASHACRfull] = ACTIONS(5319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5319), + [anon_sym_BSLASHacs] = ACTIONS(5319), + [anon_sym_BSLASHAcs] = ACTIONS(5319), + [anon_sym_BSLASHacsp] = ACTIONS(5319), + [anon_sym_BSLASHAcsp] = ACTIONS(5319), + [anon_sym_BSLASHacl] = ACTIONS(5319), + [anon_sym_BSLASHAcl] = ACTIONS(5319), + [anon_sym_BSLASHaclp] = ACTIONS(5319), + [anon_sym_BSLASHAclp] = ACTIONS(5319), + [anon_sym_BSLASHacf] = ACTIONS(5319), + [anon_sym_BSLASHAcf] = ACTIONS(5319), + [anon_sym_BSLASHacfp] = ACTIONS(5319), + [anon_sym_BSLASHAcfp] = ACTIONS(5319), + [anon_sym_BSLASHac] = ACTIONS(5319), + [anon_sym_BSLASHAc] = ACTIONS(5319), + [anon_sym_BSLASHacp] = ACTIONS(5319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5319), + [anon_sym_BSLASHcolor] = ACTIONS(5319), + [anon_sym_BSLASHcolorbox] = ACTIONS(5319), + [anon_sym_BSLASHtextcolor] = ACTIONS(5319), + [anon_sym_BSLASHpagecolor] = ACTIONS(5319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5319), + [anon_sym_BSLASHtext] = ACTIONS(5319), + [anon_sym_BSLASHintertext] = ACTIONS(5319), + [anon_sym_shortintertext] = ACTIONS(5319), + }, + [1370] = { + [sym_command_name] = ACTIONS(5323), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5325), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_LBRACK] = ACTIONS(5325), + [anon_sym_RBRACK] = ACTIONS(5325), + [anon_sym_COMMA] = ACTIONS(5325), + [anon_sym_EQ] = ACTIONS(5325), + [anon_sym_LBRACE] = ACTIONS(5325), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5325), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), + [anon_sym_BSLASHbegin] = ACTIONS(5323), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), + }, + [1371] = { + [sym_command_name] = ACTIONS(5131), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5131), + [anon_sym_LPAREN] = ACTIONS(5129), + [anon_sym_RPAREN] = ACTIONS(5129), + [anon_sym_LBRACK] = ACTIONS(5129), + [anon_sym_RBRACK] = ACTIONS(5129), + [anon_sym_COMMA] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(5129), + [anon_sym_LBRACE] = ACTIONS(5129), + [sym_word] = ACTIONS(5131), + [sym_placeholder] = ACTIONS(5129), + [anon_sym_PLUS] = ACTIONS(5131), + [anon_sym_DASH] = ACTIONS(5131), + [anon_sym_STAR] = ACTIONS(5131), + [anon_sym_SLASH] = ACTIONS(5131), + [anon_sym_CARET] = ACTIONS(5131), + [anon_sym__] = ACTIONS(5131), + [anon_sym_LT] = ACTIONS(5131), + [anon_sym_GT] = ACTIONS(5131), + [anon_sym_BANG] = ACTIONS(5131), + [anon_sym_PIPE] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(5131), + [anon_sym_SQUOTE] = ACTIONS(5131), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5129), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5129), + [anon_sym_DOLLAR] = ACTIONS(5131), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5129), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5129), + [anon_sym_BSLASHbegin] = ACTIONS(5131), + [anon_sym_BSLASHusepackage] = ACTIONS(5131), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5131), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5131), + [anon_sym_BSLASHinclude] = ACTIONS(5131), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5131), + [anon_sym_BSLASHinput] = ACTIONS(5131), + [anon_sym_BSLASHsubfile] = ACTIONS(5131), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5131), + [anon_sym_BSLASHbibliography] = ACTIONS(5131), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5131), + [anon_sym_BSLASHincludesvg] = ACTIONS(5131), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5131), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5131), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5131), + [anon_sym_BSLASHimport] = ACTIONS(5131), + [anon_sym_BSLASHsubimport] = ACTIONS(5131), + [anon_sym_BSLASHinputfrom] = ACTIONS(5131), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5131), + [anon_sym_BSLASHincludefrom] = ACTIONS(5131), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5131), + [anon_sym_BSLASHcaption] = ACTIONS(5131), + [anon_sym_BSLASHcite] = ACTIONS(5131), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCite] = ACTIONS(5131), + [anon_sym_BSLASHnocite] = ACTIONS(5131), + [anon_sym_BSLASHcitet] = ACTIONS(5131), + [anon_sym_BSLASHcitep] = ACTIONS(5131), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteauthor] = ACTIONS(5131), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5131), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitetitle] = ACTIONS(5131), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteyear] = ACTIONS(5131), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5129), + [anon_sym_BSLASHcitedate] = ACTIONS(5131), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5129), + [anon_sym_BSLASHciteurl] = ACTIONS(5131), + [anon_sym_BSLASHfullcite] = ACTIONS(5131), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5131), + [anon_sym_BSLASHcitealt] = ACTIONS(5131), + [anon_sym_BSLASHcitealp] = ACTIONS(5131), + [anon_sym_BSLASHcitetext] = ACTIONS(5131), + [anon_sym_BSLASHparencite] = ACTIONS(5131), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHParencite] = ACTIONS(5131), + [anon_sym_BSLASHfootcite] = ACTIONS(5131), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5131), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5131), + [anon_sym_BSLASHtextcite] = ACTIONS(5131), + [anon_sym_BSLASHTextcite] = ACTIONS(5131), + [anon_sym_BSLASHsmartcite] = ACTIONS(5131), + [anon_sym_BSLASHSmartcite] = ACTIONS(5131), + [anon_sym_BSLASHsupercite] = ACTIONS(5131), + [anon_sym_BSLASHautocite] = ACTIONS(5131), + [anon_sym_BSLASHAutocite] = ACTIONS(5131), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5129), + [anon_sym_BSLASHvolcite] = ACTIONS(5131), + [anon_sym_BSLASHVolcite] = ACTIONS(5131), + [anon_sym_BSLASHpvolcite] = ACTIONS(5131), + [anon_sym_BSLASHPvolcite] = ACTIONS(5131), + [anon_sym_BSLASHfvolcite] = ACTIONS(5131), + [anon_sym_BSLASHftvolcite] = ACTIONS(5131), + [anon_sym_BSLASHsvolcite] = ACTIONS(5131), + [anon_sym_BSLASHSvolcite] = ACTIONS(5131), + [anon_sym_BSLASHtvolcite] = ACTIONS(5131), + [anon_sym_BSLASHTvolcite] = ACTIONS(5131), + [anon_sym_BSLASHavolcite] = ACTIONS(5131), + [anon_sym_BSLASHAvolcite] = ACTIONS(5131), + [anon_sym_BSLASHnotecite] = ACTIONS(5131), + [anon_sym_BSLASHNotecite] = ACTIONS(5131), + [anon_sym_BSLASHpnotecite] = ACTIONS(5131), + [anon_sym_BSLASHPnotecite] = ACTIONS(5131), + [anon_sym_BSLASHfnotecite] = ACTIONS(5131), + [anon_sym_BSLASHlabel] = ACTIONS(5131), + [anon_sym_BSLASHref] = ACTIONS(5131), + [anon_sym_BSLASHeqref] = ACTIONS(5131), + [anon_sym_BSLASHvref] = ACTIONS(5131), + [anon_sym_BSLASHVref] = ACTIONS(5131), + [anon_sym_BSLASHautoref] = ACTIONS(5131), + [anon_sym_BSLASHpageref] = ACTIONS(5131), + [anon_sym_BSLASHcref] = ACTIONS(5131), + [anon_sym_BSLASHCref] = ACTIONS(5131), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5129), + [anon_sym_BSLASHnamecref] = ACTIONS(5131), + [anon_sym_BSLASHnameCref] = ACTIONS(5131), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5131), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5131), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5131), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5131), + [anon_sym_BSLASHlabelcref] = ACTIONS(5131), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5131), + [anon_sym_BSLASHcrefrange] = ACTIONS(5131), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5129), + [anon_sym_BSLASHCrefrange] = ACTIONS(5131), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5129), + [anon_sym_BSLASHnewlabel] = ACTIONS(5131), + [anon_sym_BSLASHnewcommand] = ACTIONS(5131), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5131), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5131), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5129), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5131), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5129), + [anon_sym_BSLASHdef] = ACTIONS(5131), + [anon_sym_BSLASHlet] = ACTIONS(5131), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5131), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5131), + [anon_sym_BSLASHgls] = ACTIONS(5131), + [anon_sym_BSLASHGls] = ACTIONS(5131), + [anon_sym_BSLASHGLS] = ACTIONS(5131), + [anon_sym_BSLASHglspl] = ACTIONS(5131), + [anon_sym_BSLASHGlspl] = ACTIONS(5131), + [anon_sym_BSLASHGLSpl] = ACTIONS(5131), + [anon_sym_BSLASHglsdisp] = ACTIONS(5131), + [anon_sym_BSLASHglslink] = ACTIONS(5131), + [anon_sym_BSLASHglstext] = ACTIONS(5131), + [anon_sym_BSLASHGlstext] = ACTIONS(5131), + [anon_sym_BSLASHGLStext] = ACTIONS(5131), + [anon_sym_BSLASHglsfirst] = ACTIONS(5131), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5131), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5131), + [anon_sym_BSLASHglsplural] = ACTIONS(5131), + [anon_sym_BSLASHGlsplural] = ACTIONS(5131), + [anon_sym_BSLASHGLSplural] = ACTIONS(5131), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5131), + [anon_sym_BSLASHglsname] = ACTIONS(5131), + [anon_sym_BSLASHGlsname] = ACTIONS(5131), + [anon_sym_BSLASHGLSname] = ACTIONS(5131), + [anon_sym_BSLASHglssymbol] = ACTIONS(5131), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5131), + [anon_sym_BSLASHglsdesc] = ACTIONS(5131), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5131), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5131), + [anon_sym_BSLASHglsuseri] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5131), + [anon_sym_BSLASHglsuserii] = ACTIONS(5131), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5131), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5131), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5131), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5131), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5131), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5131), + [anon_sym_BSLASHglsuserv] = ACTIONS(5131), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5131), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5131), + [anon_sym_BSLASHglsuservi] = ACTIONS(5131), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5131), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5131), + [anon_sym_BSLASHnewacronym] = ACTIONS(5131), + [anon_sym_BSLASHacrshort] = ACTIONS(5131), + [anon_sym_BSLASHAcrshort] = ACTIONS(5131), + [anon_sym_BSLASHACRshort] = ACTIONS(5131), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5131), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5131), + [anon_sym_BSLASHacrlong] = ACTIONS(5131), + [anon_sym_BSLASHAcrlong] = ACTIONS(5131), + [anon_sym_BSLASHACRlong] = ACTIONS(5131), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5131), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5131), + [anon_sym_BSLASHacrfull] = ACTIONS(5131), + [anon_sym_BSLASHAcrfull] = ACTIONS(5131), + [anon_sym_BSLASHACRfull] = ACTIONS(5131), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5131), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5131), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5131), + [anon_sym_BSLASHacs] = ACTIONS(5131), + [anon_sym_BSLASHAcs] = ACTIONS(5131), + [anon_sym_BSLASHacsp] = ACTIONS(5131), + [anon_sym_BSLASHAcsp] = ACTIONS(5131), + [anon_sym_BSLASHacl] = ACTIONS(5131), + [anon_sym_BSLASHAcl] = ACTIONS(5131), + [anon_sym_BSLASHaclp] = ACTIONS(5131), + [anon_sym_BSLASHAclp] = ACTIONS(5131), + [anon_sym_BSLASHacf] = ACTIONS(5131), + [anon_sym_BSLASHAcf] = ACTIONS(5131), + [anon_sym_BSLASHacfp] = ACTIONS(5131), + [anon_sym_BSLASHAcfp] = ACTIONS(5131), + [anon_sym_BSLASHac] = ACTIONS(5131), + [anon_sym_BSLASHAc] = ACTIONS(5131), + [anon_sym_BSLASHacp] = ACTIONS(5131), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5131), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5131), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5131), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5131), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5131), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5131), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5131), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5131), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5131), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5131), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5131), + [anon_sym_BSLASHcolor] = ACTIONS(5131), + [anon_sym_BSLASHcolorbox] = ACTIONS(5131), + [anon_sym_BSLASHtextcolor] = ACTIONS(5131), + [anon_sym_BSLASHpagecolor] = ACTIONS(5131), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5131), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5131), + [anon_sym_BSLASHtext] = ACTIONS(5131), + [anon_sym_BSLASHintertext] = ACTIONS(5131), + [anon_sym_shortintertext] = ACTIONS(5131), + }, + [1372] = { + [sym_command_name] = ACTIONS(5177), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5175), + [anon_sym_RPAREN] = ACTIONS(5175), + [anon_sym_LBRACK] = ACTIONS(5175), + [anon_sym_RBRACK] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5175), + [sym_word] = ACTIONS(5177), + [sym_placeholder] = ACTIONS(5175), + [anon_sym_PLUS] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5177), + [anon_sym_SLASH] = ACTIONS(5177), + [anon_sym_CARET] = ACTIONS(5177), + [anon_sym__] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5177), + [anon_sym_GT] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5177), + [anon_sym_PIPE] = ACTIONS(5177), + [anon_sym_COLON] = ACTIONS(5177), + [anon_sym_SQUOTE] = ACTIONS(5177), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), + [anon_sym_DOLLAR] = ACTIONS(5177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), + [anon_sym_BSLASHbegin] = ACTIONS(5177), + [anon_sym_BSLASHusepackage] = ACTIONS(5177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), + [anon_sym_BSLASHinclude] = ACTIONS(5177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), + [anon_sym_BSLASHinput] = ACTIONS(5177), + [anon_sym_BSLASHsubfile] = ACTIONS(5177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), + [anon_sym_BSLASHbibliography] = ACTIONS(5177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), + [anon_sym_BSLASHincludesvg] = ACTIONS(5177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), + [anon_sym_BSLASHimport] = ACTIONS(5177), + [anon_sym_BSLASHsubimport] = ACTIONS(5177), + [anon_sym_BSLASHinputfrom] = ACTIONS(5177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), + [anon_sym_BSLASHincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHcaption] = ACTIONS(5177), + [anon_sym_BSLASHcite] = ACTIONS(5177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCite] = ACTIONS(5177), + [anon_sym_BSLASHnocite] = ACTIONS(5177), + [anon_sym_BSLASHcitet] = ACTIONS(5177), + [anon_sym_BSLASHcitep] = ACTIONS(5177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteauthor] = ACTIONS(5177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitetitle] = ACTIONS(5177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteyear] = ACTIONS(5177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitedate] = ACTIONS(5177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteurl] = ACTIONS(5177), + [anon_sym_BSLASHfullcite] = ACTIONS(5177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), + [anon_sym_BSLASHcitealt] = ACTIONS(5177), + [anon_sym_BSLASHcitealp] = ACTIONS(5177), + [anon_sym_BSLASHcitetext] = ACTIONS(5177), + [anon_sym_BSLASHparencite] = ACTIONS(5177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHParencite] = ACTIONS(5177), + [anon_sym_BSLASHfootcite] = ACTIONS(5177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), + [anon_sym_BSLASHtextcite] = ACTIONS(5177), + [anon_sym_BSLASHTextcite] = ACTIONS(5177), + [anon_sym_BSLASHsmartcite] = ACTIONS(5177), + [anon_sym_BSLASHSmartcite] = ACTIONS(5177), + [anon_sym_BSLASHsupercite] = ACTIONS(5177), + [anon_sym_BSLASHautocite] = ACTIONS(5177), + [anon_sym_BSLASHAutocite] = ACTIONS(5177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHvolcite] = ACTIONS(5177), + [anon_sym_BSLASHVolcite] = ACTIONS(5177), + [anon_sym_BSLASHpvolcite] = ACTIONS(5177), + [anon_sym_BSLASHPvolcite] = ACTIONS(5177), + [anon_sym_BSLASHfvolcite] = ACTIONS(5177), + [anon_sym_BSLASHftvolcite] = ACTIONS(5177), + [anon_sym_BSLASHsvolcite] = ACTIONS(5177), + [anon_sym_BSLASHSvolcite] = ACTIONS(5177), + [anon_sym_BSLASHtvolcite] = ACTIONS(5177), + [anon_sym_BSLASHTvolcite] = ACTIONS(5177), + [anon_sym_BSLASHavolcite] = ACTIONS(5177), + [anon_sym_BSLASHAvolcite] = ACTIONS(5177), + [anon_sym_BSLASHnotecite] = ACTIONS(5177), + [anon_sym_BSLASHNotecite] = ACTIONS(5177), + [anon_sym_BSLASHpnotecite] = ACTIONS(5177), + [anon_sym_BSLASHPnotecite] = ACTIONS(5177), + [anon_sym_BSLASHfnotecite] = ACTIONS(5177), + [anon_sym_BSLASHlabel] = ACTIONS(5177), + [anon_sym_BSLASHref] = ACTIONS(5177), + [anon_sym_BSLASHeqref] = ACTIONS(5177), + [anon_sym_BSLASHvref] = ACTIONS(5177), + [anon_sym_BSLASHVref] = ACTIONS(5177), + [anon_sym_BSLASHautoref] = ACTIONS(5177), + [anon_sym_BSLASHpageref] = ACTIONS(5177), + [anon_sym_BSLASHcref] = ACTIONS(5177), + [anon_sym_BSLASHCref] = ACTIONS(5177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnameCref] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHlabelcref] = ACTIONS(5177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCrefrange] = ACTIONS(5177), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnewlabel] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), + [anon_sym_BSLASHdef] = ACTIONS(5177), + [anon_sym_BSLASHlet] = ACTIONS(5177), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), + [anon_sym_BSLASHgls] = ACTIONS(5177), + [anon_sym_BSLASHGls] = ACTIONS(5177), + [anon_sym_BSLASHGLS] = ACTIONS(5177), + [anon_sym_BSLASHglspl] = ACTIONS(5177), + [anon_sym_BSLASHGlspl] = ACTIONS(5177), + [anon_sym_BSLASHGLSpl] = ACTIONS(5177), + [anon_sym_BSLASHglsdisp] = ACTIONS(5177), + [anon_sym_BSLASHglslink] = ACTIONS(5177), + [anon_sym_BSLASHglstext] = ACTIONS(5177), + [anon_sym_BSLASHGlstext] = ACTIONS(5177), + [anon_sym_BSLASHGLStext] = ACTIONS(5177), + [anon_sym_BSLASHglsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), + [anon_sym_BSLASHglsplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSplural] = ACTIONS(5177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHglsname] = ACTIONS(5177), + [anon_sym_BSLASHGlsname] = ACTIONS(5177), + [anon_sym_BSLASHGLSname] = ACTIONS(5177), + [anon_sym_BSLASHglssymbol] = ACTIONS(5177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), + [anon_sym_BSLASHglsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), + [anon_sym_BSLASHglsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), + [anon_sym_BSLASHglsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), + [anon_sym_BSLASHglsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), + [anon_sym_BSLASHglsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), + [anon_sym_BSLASHnewacronym] = ACTIONS(5177), + [anon_sym_BSLASHacrshort] = ACTIONS(5177), + [anon_sym_BSLASHAcrshort] = ACTIONS(5177), + [anon_sym_BSLASHACRshort] = ACTIONS(5177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), + [anon_sym_BSLASHacrlong] = ACTIONS(5177), + [anon_sym_BSLASHAcrlong] = ACTIONS(5177), + [anon_sym_BSLASHACRlong] = ACTIONS(5177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), + [anon_sym_BSLASHacrfull] = ACTIONS(5177), + [anon_sym_BSLASHAcrfull] = ACTIONS(5177), + [anon_sym_BSLASHACRfull] = ACTIONS(5177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), + [anon_sym_BSLASHacs] = ACTIONS(5177), + [anon_sym_BSLASHAcs] = ACTIONS(5177), + [anon_sym_BSLASHacsp] = ACTIONS(5177), + [anon_sym_BSLASHAcsp] = ACTIONS(5177), + [anon_sym_BSLASHacl] = ACTIONS(5177), + [anon_sym_BSLASHAcl] = ACTIONS(5177), + [anon_sym_BSLASHaclp] = ACTIONS(5177), + [anon_sym_BSLASHAclp] = ACTIONS(5177), + [anon_sym_BSLASHacf] = ACTIONS(5177), + [anon_sym_BSLASHAcf] = ACTIONS(5177), + [anon_sym_BSLASHacfp] = ACTIONS(5177), + [anon_sym_BSLASHAcfp] = ACTIONS(5177), + [anon_sym_BSLASHac] = ACTIONS(5177), + [anon_sym_BSLASHAc] = ACTIONS(5177), + [anon_sym_BSLASHacp] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), + [anon_sym_BSLASHcolor] = ACTIONS(5177), + [anon_sym_BSLASHcolorbox] = ACTIONS(5177), + [anon_sym_BSLASHtextcolor] = ACTIONS(5177), + [anon_sym_BSLASHpagecolor] = ACTIONS(5177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), + [anon_sym_BSLASHtext] = ACTIONS(5177), + [anon_sym_BSLASHintertext] = ACTIONS(5177), + [anon_sym_shortintertext] = ACTIONS(5177), + }, + [1373] = { + [sym_command_name] = ACTIONS(5169), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5167), + [sym_word] = ACTIONS(5169), + [sym_placeholder] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_CARET] = ACTIONS(5169), + [anon_sym__] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_PIPE] = ACTIONS(5169), + [anon_sym_COLON] = ACTIONS(5169), + [anon_sym_SQUOTE] = ACTIONS(5169), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), + [anon_sym_DOLLAR] = ACTIONS(5169), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), + [anon_sym_BSLASHbegin] = ACTIONS(5169), + [anon_sym_BSLASHusepackage] = ACTIONS(5169), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), + [anon_sym_BSLASHinclude] = ACTIONS(5169), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), + [anon_sym_BSLASHinput] = ACTIONS(5169), + [anon_sym_BSLASHsubfile] = ACTIONS(5169), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), + [anon_sym_BSLASHbibliography] = ACTIONS(5169), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), + [anon_sym_BSLASHincludesvg] = ACTIONS(5169), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), + [anon_sym_BSLASHimport] = ACTIONS(5169), + [anon_sym_BSLASHsubimport] = ACTIONS(5169), + [anon_sym_BSLASHinputfrom] = ACTIONS(5169), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), + [anon_sym_BSLASHincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHcaption] = ACTIONS(5169), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5169), + [anon_sym_BSLASHref] = ACTIONS(5169), + [anon_sym_BSLASHeqref] = ACTIONS(5169), + [anon_sym_BSLASHvref] = ACTIONS(5169), + [anon_sym_BSLASHVref] = ACTIONS(5169), + [anon_sym_BSLASHautoref] = ACTIONS(5169), + [anon_sym_BSLASHpageref] = ACTIONS(5169), + [anon_sym_BSLASHcref] = ACTIONS(5169), + [anon_sym_BSLASHCref] = ACTIONS(5169), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnameCref] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHlabelcref] = ACTIONS(5169), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCrefrange] = ACTIONS(5169), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnewlabel] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), + [anon_sym_BSLASHdef] = ACTIONS(5169), + [anon_sym_BSLASHlet] = ACTIONS(5169), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), + [anon_sym_BSLASHgls] = ACTIONS(5169), + [anon_sym_BSLASHGls] = ACTIONS(5169), + [anon_sym_BSLASHGLS] = ACTIONS(5169), + [anon_sym_BSLASHglspl] = ACTIONS(5169), + [anon_sym_BSLASHGlspl] = ACTIONS(5169), + [anon_sym_BSLASHGLSpl] = ACTIONS(5169), + [anon_sym_BSLASHglsdisp] = ACTIONS(5169), + [anon_sym_BSLASHglslink] = ACTIONS(5169), + [anon_sym_BSLASHglstext] = ACTIONS(5169), + [anon_sym_BSLASHGlstext] = ACTIONS(5169), + [anon_sym_BSLASHGLStext] = ACTIONS(5169), + [anon_sym_BSLASHglsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), + [anon_sym_BSLASHglsplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSplural] = ACTIONS(5169), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHglsname] = ACTIONS(5169), + [anon_sym_BSLASHGlsname] = ACTIONS(5169), + [anon_sym_BSLASHGLSname] = ACTIONS(5169), + [anon_sym_BSLASHglssymbol] = ACTIONS(5169), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), + [anon_sym_BSLASHglsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), + [anon_sym_BSLASHglsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), + [anon_sym_BSLASHglsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), + [anon_sym_BSLASHglsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), + [anon_sym_BSLASHglsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), + [anon_sym_BSLASHnewacronym] = ACTIONS(5169), + [anon_sym_BSLASHacrshort] = ACTIONS(5169), + [anon_sym_BSLASHAcrshort] = ACTIONS(5169), + [anon_sym_BSLASHACRshort] = ACTIONS(5169), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), + [anon_sym_BSLASHacrlong] = ACTIONS(5169), + [anon_sym_BSLASHAcrlong] = ACTIONS(5169), + [anon_sym_BSLASHACRlong] = ACTIONS(5169), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), + [anon_sym_BSLASHacrfull] = ACTIONS(5169), + [anon_sym_BSLASHAcrfull] = ACTIONS(5169), + [anon_sym_BSLASHACRfull] = ACTIONS(5169), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), + [anon_sym_BSLASHacs] = ACTIONS(5169), + [anon_sym_BSLASHAcs] = ACTIONS(5169), + [anon_sym_BSLASHacsp] = ACTIONS(5169), + [anon_sym_BSLASHAcsp] = ACTIONS(5169), + [anon_sym_BSLASHacl] = ACTIONS(5169), + [anon_sym_BSLASHAcl] = ACTIONS(5169), + [anon_sym_BSLASHaclp] = ACTIONS(5169), + [anon_sym_BSLASHAclp] = ACTIONS(5169), + [anon_sym_BSLASHacf] = ACTIONS(5169), + [anon_sym_BSLASHAcf] = ACTIONS(5169), + [anon_sym_BSLASHacfp] = ACTIONS(5169), + [anon_sym_BSLASHAcfp] = ACTIONS(5169), + [anon_sym_BSLASHac] = ACTIONS(5169), + [anon_sym_BSLASHAc] = ACTIONS(5169), + [anon_sym_BSLASHacp] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), + [anon_sym_BSLASHcolor] = ACTIONS(5169), + [anon_sym_BSLASHcolorbox] = ACTIONS(5169), + [anon_sym_BSLASHtextcolor] = ACTIONS(5169), + [anon_sym_BSLASHpagecolor] = ACTIONS(5169), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), + [anon_sym_BSLASHtext] = ACTIONS(5169), + [anon_sym_BSLASHintertext] = ACTIONS(5169), + [anon_sym_shortintertext] = ACTIONS(5169), + }, + [1374] = { + [sym_command_name] = ACTIONS(4983), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_LPAREN] = ACTIONS(5079), - [anon_sym_RPAREN] = ACTIONS(5079), - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_LBRACE] = ACTIONS(5079), - [anon_sym_RBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5079), - [anon_sym_DOLLAR] = ACTIONS(5081), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5079), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5079), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), + [anon_sym_BSLASHiffalse] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_RBRACK] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4981), + [sym_word] = ACTIONS(4983), + [sym_placeholder] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym__] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_SQUOTE] = ACTIONS(4983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), + [anon_sym_DOLLAR] = ACTIONS(4983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), + [anon_sym_BSLASHbegin] = ACTIONS(4983), + [anon_sym_BSLASHusepackage] = ACTIONS(4983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), + [anon_sym_BSLASHinclude] = ACTIONS(4983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), + [anon_sym_BSLASHinput] = ACTIONS(4983), + [anon_sym_BSLASHsubfile] = ACTIONS(4983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), + [anon_sym_BSLASHbibliography] = ACTIONS(4983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), + [anon_sym_BSLASHincludesvg] = ACTIONS(4983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), + [anon_sym_BSLASHimport] = ACTIONS(4983), + [anon_sym_BSLASHsubimport] = ACTIONS(4983), + [anon_sym_BSLASHinputfrom] = ACTIONS(4983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), + [anon_sym_BSLASHincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHcaption] = ACTIONS(4983), + [anon_sym_BSLASHcite] = ACTIONS(4983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCite] = ACTIONS(4983), + [anon_sym_BSLASHnocite] = ACTIONS(4983), + [anon_sym_BSLASHcitet] = ACTIONS(4983), + [anon_sym_BSLASHcitep] = ACTIONS(4983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteauthor] = ACTIONS(4983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitetitle] = ACTIONS(4983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteyear] = ACTIONS(4983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitedate] = ACTIONS(4983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteurl] = ACTIONS(4983), + [anon_sym_BSLASHfullcite] = ACTIONS(4983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), + [anon_sym_BSLASHcitealt] = ACTIONS(4983), + [anon_sym_BSLASHcitealp] = ACTIONS(4983), + [anon_sym_BSLASHcitetext] = ACTIONS(4983), + [anon_sym_BSLASHparencite] = ACTIONS(4983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHParencite] = ACTIONS(4983), + [anon_sym_BSLASHfootcite] = ACTIONS(4983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), + [anon_sym_BSLASHtextcite] = ACTIONS(4983), + [anon_sym_BSLASHTextcite] = ACTIONS(4983), + [anon_sym_BSLASHsmartcite] = ACTIONS(4983), + [anon_sym_BSLASHSmartcite] = ACTIONS(4983), + [anon_sym_BSLASHsupercite] = ACTIONS(4983), + [anon_sym_BSLASHautocite] = ACTIONS(4983), + [anon_sym_BSLASHAutocite] = ACTIONS(4983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHvolcite] = ACTIONS(4983), + [anon_sym_BSLASHVolcite] = ACTIONS(4983), + [anon_sym_BSLASHpvolcite] = ACTIONS(4983), + [anon_sym_BSLASHPvolcite] = ACTIONS(4983), + [anon_sym_BSLASHfvolcite] = ACTIONS(4983), + [anon_sym_BSLASHftvolcite] = ACTIONS(4983), + [anon_sym_BSLASHsvolcite] = ACTIONS(4983), + [anon_sym_BSLASHSvolcite] = ACTIONS(4983), + [anon_sym_BSLASHtvolcite] = ACTIONS(4983), + [anon_sym_BSLASHTvolcite] = ACTIONS(4983), + [anon_sym_BSLASHavolcite] = ACTIONS(4983), + [anon_sym_BSLASHAvolcite] = ACTIONS(4983), + [anon_sym_BSLASHnotecite] = ACTIONS(4983), + [anon_sym_BSLASHNotecite] = ACTIONS(4983), + [anon_sym_BSLASHpnotecite] = ACTIONS(4983), + [anon_sym_BSLASHPnotecite] = ACTIONS(4983), + [anon_sym_BSLASHfnotecite] = ACTIONS(4983), + [anon_sym_BSLASHlabel] = ACTIONS(4983), + [anon_sym_BSLASHref] = ACTIONS(4983), + [anon_sym_BSLASHeqref] = ACTIONS(4983), + [anon_sym_BSLASHvref] = ACTIONS(4983), + [anon_sym_BSLASHVref] = ACTIONS(4983), + [anon_sym_BSLASHautoref] = ACTIONS(4983), + [anon_sym_BSLASHpageref] = ACTIONS(4983), + [anon_sym_BSLASHcref] = ACTIONS(4983), + [anon_sym_BSLASHCref] = ACTIONS(4983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnameCref] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHlabelcref] = ACTIONS(4983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCrefrange] = ACTIONS(4983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnewlabel] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), + [anon_sym_BSLASHdef] = ACTIONS(4983), + [anon_sym_BSLASHlet] = ACTIONS(4983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), + [anon_sym_BSLASHgls] = ACTIONS(4983), + [anon_sym_BSLASHGls] = ACTIONS(4983), + [anon_sym_BSLASHGLS] = ACTIONS(4983), + [anon_sym_BSLASHglspl] = ACTIONS(4983), + [anon_sym_BSLASHGlspl] = ACTIONS(4983), + [anon_sym_BSLASHGLSpl] = ACTIONS(4983), + [anon_sym_BSLASHglsdisp] = ACTIONS(4983), + [anon_sym_BSLASHglslink] = ACTIONS(4983), + [anon_sym_BSLASHglstext] = ACTIONS(4983), + [anon_sym_BSLASHGlstext] = ACTIONS(4983), + [anon_sym_BSLASHGLStext] = ACTIONS(4983), + [anon_sym_BSLASHglsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), + [anon_sym_BSLASHglsplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSplural] = ACTIONS(4983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHglsname] = ACTIONS(4983), + [anon_sym_BSLASHGlsname] = ACTIONS(4983), + [anon_sym_BSLASHGLSname] = ACTIONS(4983), + [anon_sym_BSLASHglssymbol] = ACTIONS(4983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), + [anon_sym_BSLASHglsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), + [anon_sym_BSLASHglsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), + [anon_sym_BSLASHglsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), + [anon_sym_BSLASHglsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), + [anon_sym_BSLASHglsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), + [anon_sym_BSLASHnewacronym] = ACTIONS(4983), + [anon_sym_BSLASHacrshort] = ACTIONS(4983), + [anon_sym_BSLASHAcrshort] = ACTIONS(4983), + [anon_sym_BSLASHACRshort] = ACTIONS(4983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), + [anon_sym_BSLASHacrlong] = ACTIONS(4983), + [anon_sym_BSLASHAcrlong] = ACTIONS(4983), + [anon_sym_BSLASHACRlong] = ACTIONS(4983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), + [anon_sym_BSLASHacrfull] = ACTIONS(4983), + [anon_sym_BSLASHAcrfull] = ACTIONS(4983), + [anon_sym_BSLASHACRfull] = ACTIONS(4983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), + [anon_sym_BSLASHacs] = ACTIONS(4983), + [anon_sym_BSLASHAcs] = ACTIONS(4983), + [anon_sym_BSLASHacsp] = ACTIONS(4983), + [anon_sym_BSLASHAcsp] = ACTIONS(4983), + [anon_sym_BSLASHacl] = ACTIONS(4983), + [anon_sym_BSLASHAcl] = ACTIONS(4983), + [anon_sym_BSLASHaclp] = ACTIONS(4983), + [anon_sym_BSLASHAclp] = ACTIONS(4983), + [anon_sym_BSLASHacf] = ACTIONS(4983), + [anon_sym_BSLASHAcf] = ACTIONS(4983), + [anon_sym_BSLASHacfp] = ACTIONS(4983), + [anon_sym_BSLASHAcfp] = ACTIONS(4983), + [anon_sym_BSLASHac] = ACTIONS(4983), + [anon_sym_BSLASHAc] = ACTIONS(4983), + [anon_sym_BSLASHacp] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), + [anon_sym_BSLASHcolor] = ACTIONS(4983), + [anon_sym_BSLASHcolorbox] = ACTIONS(4983), + [anon_sym_BSLASHtextcolor] = ACTIONS(4983), + [anon_sym_BSLASHpagecolor] = ACTIONS(4983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHtext] = ACTIONS(4983), + [anon_sym_BSLASHintertext] = ACTIONS(4983), + [anon_sym_shortintertext] = ACTIONS(4983), }, - [1451] = { - [sym_command_name] = ACTIONS(5077), + [1375] = { + [sym_command_name] = ACTIONS(5165), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5163), + [sym_word] = ACTIONS(5165), + [sym_placeholder] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5165), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_CARET] = ACTIONS(5165), + [anon_sym__] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_COLON] = ACTIONS(5165), + [anon_sym_SQUOTE] = ACTIONS(5165), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), + [anon_sym_DOLLAR] = ACTIONS(5165), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), + [anon_sym_BSLASHbegin] = ACTIONS(5165), + [anon_sym_BSLASHusepackage] = ACTIONS(5165), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), + [anon_sym_BSLASHinclude] = ACTIONS(5165), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), + [anon_sym_BSLASHinput] = ACTIONS(5165), + [anon_sym_BSLASHsubfile] = ACTIONS(5165), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), + [anon_sym_BSLASHbibliography] = ACTIONS(5165), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), + [anon_sym_BSLASHincludesvg] = ACTIONS(5165), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5165), + [anon_sym_BSLASHcite] = ACTIONS(5165), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCite] = ACTIONS(5165), + [anon_sym_BSLASHnocite] = ACTIONS(5165), + [anon_sym_BSLASHcitet] = ACTIONS(5165), + [anon_sym_BSLASHcitep] = ACTIONS(5165), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteauthor] = ACTIONS(5165), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitetitle] = ACTIONS(5165), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteyear] = ACTIONS(5165), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitedate] = ACTIONS(5165), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteurl] = ACTIONS(5165), + [anon_sym_BSLASHfullcite] = ACTIONS(5165), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), + [anon_sym_BSLASHcitealt] = ACTIONS(5165), + [anon_sym_BSLASHcitealp] = ACTIONS(5165), + [anon_sym_BSLASHcitetext] = ACTIONS(5165), + [anon_sym_BSLASHparencite] = ACTIONS(5165), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHParencite] = ACTIONS(5165), + [anon_sym_BSLASHfootcite] = ACTIONS(5165), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), + [anon_sym_BSLASHtextcite] = ACTIONS(5165), + [anon_sym_BSLASHTextcite] = ACTIONS(5165), + [anon_sym_BSLASHsmartcite] = ACTIONS(5165), + [anon_sym_BSLASHSmartcite] = ACTIONS(5165), + [anon_sym_BSLASHsupercite] = ACTIONS(5165), + [anon_sym_BSLASHautocite] = ACTIONS(5165), + [anon_sym_BSLASHAutocite] = ACTIONS(5165), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHvolcite] = ACTIONS(5165), + [anon_sym_BSLASHVolcite] = ACTIONS(5165), + [anon_sym_BSLASHpvolcite] = ACTIONS(5165), + [anon_sym_BSLASHPvolcite] = ACTIONS(5165), + [anon_sym_BSLASHfvolcite] = ACTIONS(5165), + [anon_sym_BSLASHftvolcite] = ACTIONS(5165), + [anon_sym_BSLASHsvolcite] = ACTIONS(5165), + [anon_sym_BSLASHSvolcite] = ACTIONS(5165), + [anon_sym_BSLASHtvolcite] = ACTIONS(5165), + [anon_sym_BSLASHTvolcite] = ACTIONS(5165), + [anon_sym_BSLASHavolcite] = ACTIONS(5165), + [anon_sym_BSLASHAvolcite] = ACTIONS(5165), + [anon_sym_BSLASHnotecite] = ACTIONS(5165), + [anon_sym_BSLASHNotecite] = ACTIONS(5165), + [anon_sym_BSLASHpnotecite] = ACTIONS(5165), + [anon_sym_BSLASHPnotecite] = ACTIONS(5165), + [anon_sym_BSLASHfnotecite] = ACTIONS(5165), + [anon_sym_BSLASHlabel] = ACTIONS(5165), + [anon_sym_BSLASHref] = ACTIONS(5165), + [anon_sym_BSLASHeqref] = ACTIONS(5165), + [anon_sym_BSLASHvref] = ACTIONS(5165), + [anon_sym_BSLASHVref] = ACTIONS(5165), + [anon_sym_BSLASHautoref] = ACTIONS(5165), + [anon_sym_BSLASHpageref] = ACTIONS(5165), + [anon_sym_BSLASHcref] = ACTIONS(5165), + [anon_sym_BSLASHCref] = ACTIONS(5165), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnameCref] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHlabelcref] = ACTIONS(5165), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCrefrange] = ACTIONS(5165), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnewlabel] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), + [anon_sym_BSLASHdef] = ACTIONS(5165), + [anon_sym_BSLASHlet] = ACTIONS(5165), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), + [anon_sym_BSLASHgls] = ACTIONS(5165), + [anon_sym_BSLASHGls] = ACTIONS(5165), + [anon_sym_BSLASHGLS] = ACTIONS(5165), + [anon_sym_BSLASHglspl] = ACTIONS(5165), + [anon_sym_BSLASHGlspl] = ACTIONS(5165), + [anon_sym_BSLASHGLSpl] = ACTIONS(5165), + [anon_sym_BSLASHglsdisp] = ACTIONS(5165), + [anon_sym_BSLASHglslink] = ACTIONS(5165), + [anon_sym_BSLASHglstext] = ACTIONS(5165), + [anon_sym_BSLASHGlstext] = ACTIONS(5165), + [anon_sym_BSLASHGLStext] = ACTIONS(5165), + [anon_sym_BSLASHglsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), + [anon_sym_BSLASHglsplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSplural] = ACTIONS(5165), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHglsname] = ACTIONS(5165), + [anon_sym_BSLASHGlsname] = ACTIONS(5165), + [anon_sym_BSLASHGLSname] = ACTIONS(5165), + [anon_sym_BSLASHglssymbol] = ACTIONS(5165), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), + [anon_sym_BSLASHglsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), + [anon_sym_BSLASHglsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), + [anon_sym_BSLASHglsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), + [anon_sym_BSLASHglsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), + [anon_sym_BSLASHglsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), + [anon_sym_BSLASHnewacronym] = ACTIONS(5165), + [anon_sym_BSLASHacrshort] = ACTIONS(5165), + [anon_sym_BSLASHAcrshort] = ACTIONS(5165), + [anon_sym_BSLASHACRshort] = ACTIONS(5165), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), + [anon_sym_BSLASHacrlong] = ACTIONS(5165), + [anon_sym_BSLASHAcrlong] = ACTIONS(5165), + [anon_sym_BSLASHACRlong] = ACTIONS(5165), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), + [anon_sym_BSLASHacrfull] = ACTIONS(5165), + [anon_sym_BSLASHAcrfull] = ACTIONS(5165), + [anon_sym_BSLASHACRfull] = ACTIONS(5165), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), + [anon_sym_BSLASHacs] = ACTIONS(5165), + [anon_sym_BSLASHAcs] = ACTIONS(5165), + [anon_sym_BSLASHacsp] = ACTIONS(5165), + [anon_sym_BSLASHAcsp] = ACTIONS(5165), + [anon_sym_BSLASHacl] = ACTIONS(5165), + [anon_sym_BSLASHAcl] = ACTIONS(5165), + [anon_sym_BSLASHaclp] = ACTIONS(5165), + [anon_sym_BSLASHAclp] = ACTIONS(5165), + [anon_sym_BSLASHacf] = ACTIONS(5165), + [anon_sym_BSLASHAcf] = ACTIONS(5165), + [anon_sym_BSLASHacfp] = ACTIONS(5165), + [anon_sym_BSLASHAcfp] = ACTIONS(5165), + [anon_sym_BSLASHac] = ACTIONS(5165), + [anon_sym_BSLASHAc] = ACTIONS(5165), + [anon_sym_BSLASHacp] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), + [anon_sym_BSLASHcolor] = ACTIONS(5165), + [anon_sym_BSLASHcolorbox] = ACTIONS(5165), + [anon_sym_BSLASHtextcolor] = ACTIONS(5165), + [anon_sym_BSLASHpagecolor] = ACTIONS(5165), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), + [anon_sym_BSLASHtext] = ACTIONS(5165), + [anon_sym_BSLASHintertext] = ACTIONS(5165), + [anon_sym_shortintertext] = ACTIONS(5165), + }, + [1376] = { + [sym_command_name] = ACTIONS(5161), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_RBRACK] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5159), + [sym_word] = ACTIONS(5161), + [sym_placeholder] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_CARET] = ACTIONS(5161), + [anon_sym__] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_COLON] = ACTIONS(5161), + [anon_sym_SQUOTE] = ACTIONS(5161), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), + [anon_sym_DOLLAR] = ACTIONS(5161), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), + [anon_sym_BSLASHbegin] = ACTIONS(5161), + [anon_sym_BSLASHusepackage] = ACTIONS(5161), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), + [anon_sym_BSLASHinclude] = ACTIONS(5161), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), + [anon_sym_BSLASHinput] = ACTIONS(5161), + [anon_sym_BSLASHsubfile] = ACTIONS(5161), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), + [anon_sym_BSLASHbibliography] = ACTIONS(5161), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), + [anon_sym_BSLASHincludesvg] = ACTIONS(5161), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), + [anon_sym_BSLASHimport] = ACTIONS(5161), + [anon_sym_BSLASHsubimport] = ACTIONS(5161), + [anon_sym_BSLASHinputfrom] = ACTIONS(5161), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), + [anon_sym_BSLASHincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHcaption] = ACTIONS(5161), + [anon_sym_BSLASHcite] = ACTIONS(5161), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCite] = ACTIONS(5161), + [anon_sym_BSLASHnocite] = ACTIONS(5161), + [anon_sym_BSLASHcitet] = ACTIONS(5161), + [anon_sym_BSLASHcitep] = ACTIONS(5161), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteauthor] = ACTIONS(5161), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitetitle] = ACTIONS(5161), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteyear] = ACTIONS(5161), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitedate] = ACTIONS(5161), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteurl] = ACTIONS(5161), + [anon_sym_BSLASHfullcite] = ACTIONS(5161), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), + [anon_sym_BSLASHcitealt] = ACTIONS(5161), + [anon_sym_BSLASHcitealp] = ACTIONS(5161), + [anon_sym_BSLASHcitetext] = ACTIONS(5161), + [anon_sym_BSLASHparencite] = ACTIONS(5161), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHParencite] = ACTIONS(5161), + [anon_sym_BSLASHfootcite] = ACTIONS(5161), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), + [anon_sym_BSLASHtextcite] = ACTIONS(5161), + [anon_sym_BSLASHTextcite] = ACTIONS(5161), + [anon_sym_BSLASHsmartcite] = ACTIONS(5161), + [anon_sym_BSLASHSmartcite] = ACTIONS(5161), + [anon_sym_BSLASHsupercite] = ACTIONS(5161), + [anon_sym_BSLASHautocite] = ACTIONS(5161), + [anon_sym_BSLASHAutocite] = ACTIONS(5161), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHvolcite] = ACTIONS(5161), + [anon_sym_BSLASHVolcite] = ACTIONS(5161), + [anon_sym_BSLASHpvolcite] = ACTIONS(5161), + [anon_sym_BSLASHPvolcite] = ACTIONS(5161), + [anon_sym_BSLASHfvolcite] = ACTIONS(5161), + [anon_sym_BSLASHftvolcite] = ACTIONS(5161), + [anon_sym_BSLASHsvolcite] = ACTIONS(5161), + [anon_sym_BSLASHSvolcite] = ACTIONS(5161), + [anon_sym_BSLASHtvolcite] = ACTIONS(5161), + [anon_sym_BSLASHTvolcite] = ACTIONS(5161), + [anon_sym_BSLASHavolcite] = ACTIONS(5161), + [anon_sym_BSLASHAvolcite] = ACTIONS(5161), + [anon_sym_BSLASHnotecite] = ACTIONS(5161), + [anon_sym_BSLASHNotecite] = ACTIONS(5161), + [anon_sym_BSLASHpnotecite] = ACTIONS(5161), + [anon_sym_BSLASHPnotecite] = ACTIONS(5161), + [anon_sym_BSLASHfnotecite] = ACTIONS(5161), + [anon_sym_BSLASHlabel] = ACTIONS(5161), + [anon_sym_BSLASHref] = ACTIONS(5161), + [anon_sym_BSLASHeqref] = ACTIONS(5161), + [anon_sym_BSLASHvref] = ACTIONS(5161), + [anon_sym_BSLASHVref] = ACTIONS(5161), + [anon_sym_BSLASHautoref] = ACTIONS(5161), + [anon_sym_BSLASHpageref] = ACTIONS(5161), + [anon_sym_BSLASHcref] = ACTIONS(5161), + [anon_sym_BSLASHCref] = ACTIONS(5161), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnameCref] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHlabelcref] = ACTIONS(5161), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCrefrange] = ACTIONS(5161), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnewlabel] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), + [anon_sym_BSLASHdef] = ACTIONS(5161), + [anon_sym_BSLASHlet] = ACTIONS(5161), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), + [anon_sym_BSLASHgls] = ACTIONS(5161), + [anon_sym_BSLASHGls] = ACTIONS(5161), + [anon_sym_BSLASHGLS] = ACTIONS(5161), + [anon_sym_BSLASHglspl] = ACTIONS(5161), + [anon_sym_BSLASHGlspl] = ACTIONS(5161), + [anon_sym_BSLASHGLSpl] = ACTIONS(5161), + [anon_sym_BSLASHglsdisp] = ACTIONS(5161), + [anon_sym_BSLASHglslink] = ACTIONS(5161), + [anon_sym_BSLASHglstext] = ACTIONS(5161), + [anon_sym_BSLASHGlstext] = ACTIONS(5161), + [anon_sym_BSLASHGLStext] = ACTIONS(5161), + [anon_sym_BSLASHglsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), + [anon_sym_BSLASHglsplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSplural] = ACTIONS(5161), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHglsname] = ACTIONS(5161), + [anon_sym_BSLASHGlsname] = ACTIONS(5161), + [anon_sym_BSLASHGLSname] = ACTIONS(5161), + [anon_sym_BSLASHglssymbol] = ACTIONS(5161), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), + [anon_sym_BSLASHglsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), + [anon_sym_BSLASHglsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), + [anon_sym_BSLASHglsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), + [anon_sym_BSLASHglsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), + [anon_sym_BSLASHglsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), + [anon_sym_BSLASHnewacronym] = ACTIONS(5161), + [anon_sym_BSLASHacrshort] = ACTIONS(5161), + [anon_sym_BSLASHAcrshort] = ACTIONS(5161), + [anon_sym_BSLASHACRshort] = ACTIONS(5161), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), + [anon_sym_BSLASHacrlong] = ACTIONS(5161), + [anon_sym_BSLASHAcrlong] = ACTIONS(5161), + [anon_sym_BSLASHACRlong] = ACTIONS(5161), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), + [anon_sym_BSLASHacrfull] = ACTIONS(5161), + [anon_sym_BSLASHAcrfull] = ACTIONS(5161), + [anon_sym_BSLASHACRfull] = ACTIONS(5161), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), + [anon_sym_BSLASHacs] = ACTIONS(5161), + [anon_sym_BSLASHAcs] = ACTIONS(5161), + [anon_sym_BSLASHacsp] = ACTIONS(5161), + [anon_sym_BSLASHAcsp] = ACTIONS(5161), + [anon_sym_BSLASHacl] = ACTIONS(5161), + [anon_sym_BSLASHAcl] = ACTIONS(5161), + [anon_sym_BSLASHaclp] = ACTIONS(5161), + [anon_sym_BSLASHAclp] = ACTIONS(5161), + [anon_sym_BSLASHacf] = ACTIONS(5161), + [anon_sym_BSLASHAcf] = ACTIONS(5161), + [anon_sym_BSLASHacfp] = ACTIONS(5161), + [anon_sym_BSLASHAcfp] = ACTIONS(5161), + [anon_sym_BSLASHac] = ACTIONS(5161), + [anon_sym_BSLASHAc] = ACTIONS(5161), + [anon_sym_BSLASHacp] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), + [anon_sym_BSLASHcolor] = ACTIONS(5161), + [anon_sym_BSLASHcolorbox] = ACTIONS(5161), + [anon_sym_BSLASHtextcolor] = ACTIONS(5161), + [anon_sym_BSLASHpagecolor] = ACTIONS(5161), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), + [anon_sym_BSLASHtext] = ACTIONS(5161), + [anon_sym_BSLASHintertext] = ACTIONS(5161), + [anon_sym_shortintertext] = ACTIONS(5161), + }, + [1377] = { + [sym_command_name] = ACTIONS(4921), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4921), + [anon_sym_LPAREN] = ACTIONS(4919), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_RBRACK] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4919), + [anon_sym_LBRACE] = ACTIONS(4919), + [sym_word] = ACTIONS(4921), + [sym_placeholder] = ACTIONS(4919), + [anon_sym_PLUS] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4921), + [anon_sym_CARET] = ACTIONS(4921), + [anon_sym__] = ACTIONS(4921), + [anon_sym_LT] = ACTIONS(4921), + [anon_sym_GT] = ACTIONS(4921), + [anon_sym_BANG] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_COLON] = ACTIONS(4921), + [anon_sym_SQUOTE] = ACTIONS(4921), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), + [anon_sym_DOLLAR] = ACTIONS(4921), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), + [anon_sym_BSLASHbegin] = ACTIONS(4921), + [anon_sym_BSLASHusepackage] = ACTIONS(4921), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), + [anon_sym_BSLASHinclude] = ACTIONS(4921), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), + [anon_sym_BSLASHinput] = ACTIONS(4921), + [anon_sym_BSLASHsubfile] = ACTIONS(4921), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), + [anon_sym_BSLASHbibliography] = ACTIONS(4921), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), + [anon_sym_BSLASHincludesvg] = ACTIONS(4921), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), + [anon_sym_BSLASHimport] = ACTIONS(4921), + [anon_sym_BSLASHsubimport] = ACTIONS(4921), + [anon_sym_BSLASHinputfrom] = ACTIONS(4921), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), + [anon_sym_BSLASHincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHcaption] = ACTIONS(4921), + [anon_sym_BSLASHcite] = ACTIONS(4921), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCite] = ACTIONS(4921), + [anon_sym_BSLASHnocite] = ACTIONS(4921), + [anon_sym_BSLASHcitet] = ACTIONS(4921), + [anon_sym_BSLASHcitep] = ACTIONS(4921), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteauthor] = ACTIONS(4921), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitetitle] = ACTIONS(4921), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteyear] = ACTIONS(4921), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitedate] = ACTIONS(4921), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteurl] = ACTIONS(4921), + [anon_sym_BSLASHfullcite] = ACTIONS(4921), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), + [anon_sym_BSLASHcitealt] = ACTIONS(4921), + [anon_sym_BSLASHcitealp] = ACTIONS(4921), + [anon_sym_BSLASHcitetext] = ACTIONS(4921), + [anon_sym_BSLASHparencite] = ACTIONS(4921), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHParencite] = ACTIONS(4921), + [anon_sym_BSLASHfootcite] = ACTIONS(4921), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), + [anon_sym_BSLASHtextcite] = ACTIONS(4921), + [anon_sym_BSLASHTextcite] = ACTIONS(4921), + [anon_sym_BSLASHsmartcite] = ACTIONS(4921), + [anon_sym_BSLASHSmartcite] = ACTIONS(4921), + [anon_sym_BSLASHsupercite] = ACTIONS(4921), + [anon_sym_BSLASHautocite] = ACTIONS(4921), + [anon_sym_BSLASHAutocite] = ACTIONS(4921), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHvolcite] = ACTIONS(4921), + [anon_sym_BSLASHVolcite] = ACTIONS(4921), + [anon_sym_BSLASHpvolcite] = ACTIONS(4921), + [anon_sym_BSLASHPvolcite] = ACTIONS(4921), + [anon_sym_BSLASHfvolcite] = ACTIONS(4921), + [anon_sym_BSLASHftvolcite] = ACTIONS(4921), + [anon_sym_BSLASHsvolcite] = ACTIONS(4921), + [anon_sym_BSLASHSvolcite] = ACTIONS(4921), + [anon_sym_BSLASHtvolcite] = ACTIONS(4921), + [anon_sym_BSLASHTvolcite] = ACTIONS(4921), + [anon_sym_BSLASHavolcite] = ACTIONS(4921), + [anon_sym_BSLASHAvolcite] = ACTIONS(4921), + [anon_sym_BSLASHnotecite] = ACTIONS(4921), + [anon_sym_BSLASHNotecite] = ACTIONS(4921), + [anon_sym_BSLASHpnotecite] = ACTIONS(4921), + [anon_sym_BSLASHPnotecite] = ACTIONS(4921), + [anon_sym_BSLASHfnotecite] = ACTIONS(4921), + [anon_sym_BSLASHlabel] = ACTIONS(4921), + [anon_sym_BSLASHref] = ACTIONS(4921), + [anon_sym_BSLASHeqref] = ACTIONS(4921), + [anon_sym_BSLASHvref] = ACTIONS(4921), + [anon_sym_BSLASHVref] = ACTIONS(4921), + [anon_sym_BSLASHautoref] = ACTIONS(4921), + [anon_sym_BSLASHpageref] = ACTIONS(4921), + [anon_sym_BSLASHcref] = ACTIONS(4921), + [anon_sym_BSLASHCref] = ACTIONS(4921), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnameCref] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHlabelcref] = ACTIONS(4921), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCrefrange] = ACTIONS(4921), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnewlabel] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), + [anon_sym_BSLASHdef] = ACTIONS(4921), + [anon_sym_BSLASHlet] = ACTIONS(4921), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), + [anon_sym_BSLASHgls] = ACTIONS(4921), + [anon_sym_BSLASHGls] = ACTIONS(4921), + [anon_sym_BSLASHGLS] = ACTIONS(4921), + [anon_sym_BSLASHglspl] = ACTIONS(4921), + [anon_sym_BSLASHGlspl] = ACTIONS(4921), + [anon_sym_BSLASHGLSpl] = ACTIONS(4921), + [anon_sym_BSLASHglsdisp] = ACTIONS(4921), + [anon_sym_BSLASHglslink] = ACTIONS(4921), + [anon_sym_BSLASHglstext] = ACTIONS(4921), + [anon_sym_BSLASHGlstext] = ACTIONS(4921), + [anon_sym_BSLASHGLStext] = ACTIONS(4921), + [anon_sym_BSLASHglsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), + [anon_sym_BSLASHglsplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSplural] = ACTIONS(4921), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHglsname] = ACTIONS(4921), + [anon_sym_BSLASHGlsname] = ACTIONS(4921), + [anon_sym_BSLASHGLSname] = ACTIONS(4921), + [anon_sym_BSLASHglssymbol] = ACTIONS(4921), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), + [anon_sym_BSLASHglsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), + [anon_sym_BSLASHglsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), + [anon_sym_BSLASHglsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), + [anon_sym_BSLASHglsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), + [anon_sym_BSLASHglsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), + [anon_sym_BSLASHnewacronym] = ACTIONS(4921), + [anon_sym_BSLASHacrshort] = ACTIONS(4921), + [anon_sym_BSLASHAcrshort] = ACTIONS(4921), + [anon_sym_BSLASHACRshort] = ACTIONS(4921), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), + [anon_sym_BSLASHacrlong] = ACTIONS(4921), + [anon_sym_BSLASHAcrlong] = ACTIONS(4921), + [anon_sym_BSLASHACRlong] = ACTIONS(4921), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), + [anon_sym_BSLASHacrfull] = ACTIONS(4921), + [anon_sym_BSLASHAcrfull] = ACTIONS(4921), + [anon_sym_BSLASHACRfull] = ACTIONS(4921), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), + [anon_sym_BSLASHacs] = ACTIONS(4921), + [anon_sym_BSLASHAcs] = ACTIONS(4921), + [anon_sym_BSLASHacsp] = ACTIONS(4921), + [anon_sym_BSLASHAcsp] = ACTIONS(4921), + [anon_sym_BSLASHacl] = ACTIONS(4921), + [anon_sym_BSLASHAcl] = ACTIONS(4921), + [anon_sym_BSLASHaclp] = ACTIONS(4921), + [anon_sym_BSLASHAclp] = ACTIONS(4921), + [anon_sym_BSLASHacf] = ACTIONS(4921), + [anon_sym_BSLASHAcf] = ACTIONS(4921), + [anon_sym_BSLASHacfp] = ACTIONS(4921), + [anon_sym_BSLASHAcfp] = ACTIONS(4921), + [anon_sym_BSLASHac] = ACTIONS(4921), + [anon_sym_BSLASHAc] = ACTIONS(4921), + [anon_sym_BSLASHacp] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), + [anon_sym_BSLASHcolor] = ACTIONS(4921), + [anon_sym_BSLASHcolorbox] = ACTIONS(4921), + [anon_sym_BSLASHtextcolor] = ACTIONS(4921), + [anon_sym_BSLASHpagecolor] = ACTIONS(4921), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), + [anon_sym_BSLASHtext] = ACTIONS(4921), + [anon_sym_BSLASHintertext] = ACTIONS(4921), + [anon_sym_shortintertext] = ACTIONS(4921), + }, + [1378] = { + [sym_command_name] = ACTIONS(5153), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_RPAREN] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_RBRACK] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5151), + [sym_word] = ACTIONS(5153), + [sym_placeholder] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym__] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5153), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), + [anon_sym_DOLLAR] = ACTIONS(5153), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), + [anon_sym_BSLASHbegin] = ACTIONS(5153), + [anon_sym_BSLASHusepackage] = ACTIONS(5153), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), + [anon_sym_BSLASHinclude] = ACTIONS(5153), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), + [anon_sym_BSLASHinput] = ACTIONS(5153), + [anon_sym_BSLASHsubfile] = ACTIONS(5153), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5153), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), + [anon_sym_BSLASHincludesvg] = ACTIONS(5153), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), + [anon_sym_BSLASHimport] = ACTIONS(5153), + [anon_sym_BSLASHsubimport] = ACTIONS(5153), + [anon_sym_BSLASHinputfrom] = ACTIONS(5153), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), + [anon_sym_BSLASHincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHcaption] = ACTIONS(5153), + [anon_sym_BSLASHcite] = ACTIONS(5153), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCite] = ACTIONS(5153), + [anon_sym_BSLASHnocite] = ACTIONS(5153), + [anon_sym_BSLASHcitet] = ACTIONS(5153), + [anon_sym_BSLASHcitep] = ACTIONS(5153), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteauthor] = ACTIONS(5153), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitetitle] = ACTIONS(5153), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteyear] = ACTIONS(5153), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitedate] = ACTIONS(5153), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteurl] = ACTIONS(5153), + [anon_sym_BSLASHfullcite] = ACTIONS(5153), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), + [anon_sym_BSLASHcitealt] = ACTIONS(5153), + [anon_sym_BSLASHcitealp] = ACTIONS(5153), + [anon_sym_BSLASHcitetext] = ACTIONS(5153), + [anon_sym_BSLASHparencite] = ACTIONS(5153), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHParencite] = ACTIONS(5153), + [anon_sym_BSLASHfootcite] = ACTIONS(5153), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), + [anon_sym_BSLASHtextcite] = ACTIONS(5153), + [anon_sym_BSLASHTextcite] = ACTIONS(5153), + [anon_sym_BSLASHsmartcite] = ACTIONS(5153), + [anon_sym_BSLASHSmartcite] = ACTIONS(5153), + [anon_sym_BSLASHsupercite] = ACTIONS(5153), + [anon_sym_BSLASHautocite] = ACTIONS(5153), + [anon_sym_BSLASHAutocite] = ACTIONS(5153), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHvolcite] = ACTIONS(5153), + [anon_sym_BSLASHVolcite] = ACTIONS(5153), + [anon_sym_BSLASHpvolcite] = ACTIONS(5153), + [anon_sym_BSLASHPvolcite] = ACTIONS(5153), + [anon_sym_BSLASHfvolcite] = ACTIONS(5153), + [anon_sym_BSLASHftvolcite] = ACTIONS(5153), + [anon_sym_BSLASHsvolcite] = ACTIONS(5153), + [anon_sym_BSLASHSvolcite] = ACTIONS(5153), + [anon_sym_BSLASHtvolcite] = ACTIONS(5153), + [anon_sym_BSLASHTvolcite] = ACTIONS(5153), + [anon_sym_BSLASHavolcite] = ACTIONS(5153), + [anon_sym_BSLASHAvolcite] = ACTIONS(5153), + [anon_sym_BSLASHnotecite] = ACTIONS(5153), + [anon_sym_BSLASHNotecite] = ACTIONS(5153), + [anon_sym_BSLASHpnotecite] = ACTIONS(5153), + [anon_sym_BSLASHPnotecite] = ACTIONS(5153), + [anon_sym_BSLASHfnotecite] = ACTIONS(5153), + [anon_sym_BSLASHlabel] = ACTIONS(5153), + [anon_sym_BSLASHref] = ACTIONS(5153), + [anon_sym_BSLASHeqref] = ACTIONS(5153), + [anon_sym_BSLASHvref] = ACTIONS(5153), + [anon_sym_BSLASHVref] = ACTIONS(5153), + [anon_sym_BSLASHautoref] = ACTIONS(5153), + [anon_sym_BSLASHpageref] = ACTIONS(5153), + [anon_sym_BSLASHcref] = ACTIONS(5153), + [anon_sym_BSLASHCref] = ACTIONS(5153), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnameCref] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHlabelcref] = ACTIONS(5153), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCrefrange] = ACTIONS(5153), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnewlabel] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), + [anon_sym_BSLASHdef] = ACTIONS(5153), + [anon_sym_BSLASHlet] = ACTIONS(5153), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), + [anon_sym_BSLASHgls] = ACTIONS(5153), + [anon_sym_BSLASHGls] = ACTIONS(5153), + [anon_sym_BSLASHGLS] = ACTIONS(5153), + [anon_sym_BSLASHglspl] = ACTIONS(5153), + [anon_sym_BSLASHGlspl] = ACTIONS(5153), + [anon_sym_BSLASHGLSpl] = ACTIONS(5153), + [anon_sym_BSLASHglsdisp] = ACTIONS(5153), + [anon_sym_BSLASHglslink] = ACTIONS(5153), + [anon_sym_BSLASHglstext] = ACTIONS(5153), + [anon_sym_BSLASHGlstext] = ACTIONS(5153), + [anon_sym_BSLASHGLStext] = ACTIONS(5153), + [anon_sym_BSLASHglsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), + [anon_sym_BSLASHglsplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSplural] = ACTIONS(5153), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHglsname] = ACTIONS(5153), + [anon_sym_BSLASHGlsname] = ACTIONS(5153), + [anon_sym_BSLASHGLSname] = ACTIONS(5153), + [anon_sym_BSLASHglssymbol] = ACTIONS(5153), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), + [anon_sym_BSLASHglsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), + [anon_sym_BSLASHglsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), + [anon_sym_BSLASHglsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), + [anon_sym_BSLASHglsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), + [anon_sym_BSLASHglsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), + [anon_sym_BSLASHnewacronym] = ACTIONS(5153), + [anon_sym_BSLASHacrshort] = ACTIONS(5153), + [anon_sym_BSLASHAcrshort] = ACTIONS(5153), + [anon_sym_BSLASHACRshort] = ACTIONS(5153), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), + [anon_sym_BSLASHacrlong] = ACTIONS(5153), + [anon_sym_BSLASHAcrlong] = ACTIONS(5153), + [anon_sym_BSLASHACRlong] = ACTIONS(5153), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), + [anon_sym_BSLASHacrfull] = ACTIONS(5153), + [anon_sym_BSLASHAcrfull] = ACTIONS(5153), + [anon_sym_BSLASHACRfull] = ACTIONS(5153), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), + [anon_sym_BSLASHacs] = ACTIONS(5153), + [anon_sym_BSLASHAcs] = ACTIONS(5153), + [anon_sym_BSLASHacsp] = ACTIONS(5153), + [anon_sym_BSLASHAcsp] = ACTIONS(5153), + [anon_sym_BSLASHacl] = ACTIONS(5153), + [anon_sym_BSLASHAcl] = ACTIONS(5153), + [anon_sym_BSLASHaclp] = ACTIONS(5153), + [anon_sym_BSLASHAclp] = ACTIONS(5153), + [anon_sym_BSLASHacf] = ACTIONS(5153), + [anon_sym_BSLASHAcf] = ACTIONS(5153), + [anon_sym_BSLASHacfp] = ACTIONS(5153), + [anon_sym_BSLASHAcfp] = ACTIONS(5153), + [anon_sym_BSLASHac] = ACTIONS(5153), + [anon_sym_BSLASHAc] = ACTIONS(5153), + [anon_sym_BSLASHacp] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), + [anon_sym_BSLASHcolor] = ACTIONS(5153), + [anon_sym_BSLASHcolorbox] = ACTIONS(5153), + [anon_sym_BSLASHtextcolor] = ACTIONS(5153), + [anon_sym_BSLASHpagecolor] = ACTIONS(5153), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), + [anon_sym_BSLASHtext] = ACTIONS(5153), + [anon_sym_BSLASHintertext] = ACTIONS(5153), + [anon_sym_shortintertext] = ACTIONS(5153), + }, + [1379] = { + [sym_command_name] = ACTIONS(5289), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5289), + [anon_sym_LPAREN] = ACTIONS(5287), + [anon_sym_RPAREN] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(5287), + [anon_sym_RBRACK] = ACTIONS(5287), + [anon_sym_COMMA] = ACTIONS(5287), + [anon_sym_EQ] = ACTIONS(5287), + [anon_sym_LBRACE] = ACTIONS(5287), + [sym_word] = ACTIONS(5289), + [sym_placeholder] = ACTIONS(5287), + [anon_sym_PLUS] = ACTIONS(5289), + [anon_sym_DASH] = ACTIONS(5289), + [anon_sym_STAR] = ACTIONS(5289), + [anon_sym_SLASH] = ACTIONS(5289), + [anon_sym_CARET] = ACTIONS(5289), + [anon_sym__] = ACTIONS(5289), + [anon_sym_LT] = ACTIONS(5289), + [anon_sym_GT] = ACTIONS(5289), + [anon_sym_BANG] = ACTIONS(5289), + [anon_sym_PIPE] = ACTIONS(5289), + [anon_sym_COLON] = ACTIONS(5289), + [anon_sym_SQUOTE] = ACTIONS(5289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), + [anon_sym_DOLLAR] = ACTIONS(5289), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), + [anon_sym_BSLASHbegin] = ACTIONS(5289), + [anon_sym_BSLASHusepackage] = ACTIONS(5289), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), + [anon_sym_BSLASHinclude] = ACTIONS(5289), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), + [anon_sym_BSLASHinput] = ACTIONS(5289), + [anon_sym_BSLASHsubfile] = ACTIONS(5289), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), + [anon_sym_BSLASHbibliography] = ACTIONS(5289), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), + [anon_sym_BSLASHincludesvg] = ACTIONS(5289), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), + [anon_sym_BSLASHimport] = ACTIONS(5289), + [anon_sym_BSLASHsubimport] = ACTIONS(5289), + [anon_sym_BSLASHinputfrom] = ACTIONS(5289), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), + [anon_sym_BSLASHincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHcaption] = ACTIONS(5289), + [anon_sym_BSLASHcite] = ACTIONS(5289), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCite] = ACTIONS(5289), + [anon_sym_BSLASHnocite] = ACTIONS(5289), + [anon_sym_BSLASHcitet] = ACTIONS(5289), + [anon_sym_BSLASHcitep] = ACTIONS(5289), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteauthor] = ACTIONS(5289), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitetitle] = ACTIONS(5289), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteyear] = ACTIONS(5289), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitedate] = ACTIONS(5289), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteurl] = ACTIONS(5289), + [anon_sym_BSLASHfullcite] = ACTIONS(5289), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), + [anon_sym_BSLASHcitealt] = ACTIONS(5289), + [anon_sym_BSLASHcitealp] = ACTIONS(5289), + [anon_sym_BSLASHcitetext] = ACTIONS(5289), + [anon_sym_BSLASHparencite] = ACTIONS(5289), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHParencite] = ACTIONS(5289), + [anon_sym_BSLASHfootcite] = ACTIONS(5289), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), + [anon_sym_BSLASHtextcite] = ACTIONS(5289), + [anon_sym_BSLASHTextcite] = ACTIONS(5289), + [anon_sym_BSLASHsmartcite] = ACTIONS(5289), + [anon_sym_BSLASHSmartcite] = ACTIONS(5289), + [anon_sym_BSLASHsupercite] = ACTIONS(5289), + [anon_sym_BSLASHautocite] = ACTIONS(5289), + [anon_sym_BSLASHAutocite] = ACTIONS(5289), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHvolcite] = ACTIONS(5289), + [anon_sym_BSLASHVolcite] = ACTIONS(5289), + [anon_sym_BSLASHpvolcite] = ACTIONS(5289), + [anon_sym_BSLASHPvolcite] = ACTIONS(5289), + [anon_sym_BSLASHfvolcite] = ACTIONS(5289), + [anon_sym_BSLASHftvolcite] = ACTIONS(5289), + [anon_sym_BSLASHsvolcite] = ACTIONS(5289), + [anon_sym_BSLASHSvolcite] = ACTIONS(5289), + [anon_sym_BSLASHtvolcite] = ACTIONS(5289), + [anon_sym_BSLASHTvolcite] = ACTIONS(5289), + [anon_sym_BSLASHavolcite] = ACTIONS(5289), + [anon_sym_BSLASHAvolcite] = ACTIONS(5289), + [anon_sym_BSLASHnotecite] = ACTIONS(5289), + [anon_sym_BSLASHNotecite] = ACTIONS(5289), + [anon_sym_BSLASHpnotecite] = ACTIONS(5289), + [anon_sym_BSLASHPnotecite] = ACTIONS(5289), + [anon_sym_BSLASHfnotecite] = ACTIONS(5289), + [anon_sym_BSLASHlabel] = ACTIONS(5289), + [anon_sym_BSLASHref] = ACTIONS(5289), + [anon_sym_BSLASHeqref] = ACTIONS(5289), + [anon_sym_BSLASHvref] = ACTIONS(5289), + [anon_sym_BSLASHVref] = ACTIONS(5289), + [anon_sym_BSLASHautoref] = ACTIONS(5289), + [anon_sym_BSLASHpageref] = ACTIONS(5289), + [anon_sym_BSLASHcref] = ACTIONS(5289), + [anon_sym_BSLASHCref] = ACTIONS(5289), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnameCref] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHlabelcref] = ACTIONS(5289), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCrefrange] = ACTIONS(5289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnewlabel] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), + [anon_sym_BSLASHdef] = ACTIONS(5289), + [anon_sym_BSLASHlet] = ACTIONS(5289), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), + [anon_sym_BSLASHgls] = ACTIONS(5289), + [anon_sym_BSLASHGls] = ACTIONS(5289), + [anon_sym_BSLASHGLS] = ACTIONS(5289), + [anon_sym_BSLASHglspl] = ACTIONS(5289), + [anon_sym_BSLASHGlspl] = ACTIONS(5289), + [anon_sym_BSLASHGLSpl] = ACTIONS(5289), + [anon_sym_BSLASHglsdisp] = ACTIONS(5289), + [anon_sym_BSLASHglslink] = ACTIONS(5289), + [anon_sym_BSLASHglstext] = ACTIONS(5289), + [anon_sym_BSLASHGlstext] = ACTIONS(5289), + [anon_sym_BSLASHGLStext] = ACTIONS(5289), + [anon_sym_BSLASHglsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), + [anon_sym_BSLASHglsplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSplural] = ACTIONS(5289), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHglsname] = ACTIONS(5289), + [anon_sym_BSLASHGlsname] = ACTIONS(5289), + [anon_sym_BSLASHGLSname] = ACTIONS(5289), + [anon_sym_BSLASHglssymbol] = ACTIONS(5289), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), + [anon_sym_BSLASHglsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), + [anon_sym_BSLASHglsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), + [anon_sym_BSLASHglsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), + [anon_sym_BSLASHglsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), + [anon_sym_BSLASHglsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), + [anon_sym_BSLASHnewacronym] = ACTIONS(5289), + [anon_sym_BSLASHacrshort] = ACTIONS(5289), + [anon_sym_BSLASHAcrshort] = ACTIONS(5289), + [anon_sym_BSLASHACRshort] = ACTIONS(5289), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), + [anon_sym_BSLASHacrlong] = ACTIONS(5289), + [anon_sym_BSLASHAcrlong] = ACTIONS(5289), + [anon_sym_BSLASHACRlong] = ACTIONS(5289), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), + [anon_sym_BSLASHacrfull] = ACTIONS(5289), + [anon_sym_BSLASHAcrfull] = ACTIONS(5289), + [anon_sym_BSLASHACRfull] = ACTIONS(5289), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), + [anon_sym_BSLASHacs] = ACTIONS(5289), + [anon_sym_BSLASHAcs] = ACTIONS(5289), + [anon_sym_BSLASHacsp] = ACTIONS(5289), + [anon_sym_BSLASHAcsp] = ACTIONS(5289), + [anon_sym_BSLASHacl] = ACTIONS(5289), + [anon_sym_BSLASHAcl] = ACTIONS(5289), + [anon_sym_BSLASHaclp] = ACTIONS(5289), + [anon_sym_BSLASHAclp] = ACTIONS(5289), + [anon_sym_BSLASHacf] = ACTIONS(5289), + [anon_sym_BSLASHAcf] = ACTIONS(5289), + [anon_sym_BSLASHacfp] = ACTIONS(5289), + [anon_sym_BSLASHAcfp] = ACTIONS(5289), + [anon_sym_BSLASHac] = ACTIONS(5289), + [anon_sym_BSLASHAc] = ACTIONS(5289), + [anon_sym_BSLASHacp] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), + [anon_sym_BSLASHcolor] = ACTIONS(5289), + [anon_sym_BSLASHcolorbox] = ACTIONS(5289), + [anon_sym_BSLASHtextcolor] = ACTIONS(5289), + [anon_sym_BSLASHpagecolor] = ACTIONS(5289), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), + [anon_sym_BSLASHtext] = ACTIONS(5289), + [anon_sym_BSLASHintertext] = ACTIONS(5289), + [anon_sym_shortintertext] = ACTIONS(5289), + }, + [1380] = { + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_LPAREN] = ACTIONS(5291), + [anon_sym_RPAREN] = ACTIONS(5291), + [anon_sym_LBRACK] = ACTIONS(5291), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5291), + [anon_sym_DOLLAR] = ACTIONS(5293), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5291), + [anon_sym_BSLASHbegin] = ACTIONS(5293), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + [anon_sym_BSLASHtext] = ACTIONS(5293), + [anon_sym_BSLASHintertext] = ACTIONS(5293), + [anon_sym_shortintertext] = ACTIONS(5293), + }, + [1381] = { + [sym_command_name] = ACTIONS(5149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_RPAREN] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_RBRACK] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_LBRACE] = ACTIONS(5147), + [sym_word] = ACTIONS(5149), + [sym_placeholder] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym__] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_COLON] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), + [anon_sym_DOLLAR] = ACTIONS(5149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), + [anon_sym_BSLASHbegin] = ACTIONS(5149), + [anon_sym_BSLASHusepackage] = ACTIONS(5149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), + [anon_sym_BSLASHinput] = ACTIONS(5149), + [anon_sym_BSLASHsubfile] = ACTIONS(5149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), + [anon_sym_BSLASHbibliography] = ACTIONS(5149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), + [anon_sym_BSLASHincludesvg] = ACTIONS(5149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), + [anon_sym_BSLASHimport] = ACTIONS(5149), + [anon_sym_BSLASHsubimport] = ACTIONS(5149), + [anon_sym_BSLASHinputfrom] = ACTIONS(5149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), + [anon_sym_BSLASHincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHcaption] = ACTIONS(5149), + [anon_sym_BSLASHcite] = ACTIONS(5149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCite] = ACTIONS(5149), + [anon_sym_BSLASHnocite] = ACTIONS(5149), + [anon_sym_BSLASHcitet] = ACTIONS(5149), + [anon_sym_BSLASHcitep] = ACTIONS(5149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteauthor] = ACTIONS(5149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitetitle] = ACTIONS(5149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteyear] = ACTIONS(5149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitedate] = ACTIONS(5149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteurl] = ACTIONS(5149), + [anon_sym_BSLASHfullcite] = ACTIONS(5149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), + [anon_sym_BSLASHcitealt] = ACTIONS(5149), + [anon_sym_BSLASHcitealp] = ACTIONS(5149), + [anon_sym_BSLASHcitetext] = ACTIONS(5149), + [anon_sym_BSLASHparencite] = ACTIONS(5149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHParencite] = ACTIONS(5149), + [anon_sym_BSLASHfootcite] = ACTIONS(5149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), + [anon_sym_BSLASHtextcite] = ACTIONS(5149), + [anon_sym_BSLASHTextcite] = ACTIONS(5149), + [anon_sym_BSLASHsmartcite] = ACTIONS(5149), + [anon_sym_BSLASHSmartcite] = ACTIONS(5149), + [anon_sym_BSLASHsupercite] = ACTIONS(5149), + [anon_sym_BSLASHautocite] = ACTIONS(5149), + [anon_sym_BSLASHAutocite] = ACTIONS(5149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHvolcite] = ACTIONS(5149), + [anon_sym_BSLASHVolcite] = ACTIONS(5149), + [anon_sym_BSLASHpvolcite] = ACTIONS(5149), + [anon_sym_BSLASHPvolcite] = ACTIONS(5149), + [anon_sym_BSLASHfvolcite] = ACTIONS(5149), + [anon_sym_BSLASHftvolcite] = ACTIONS(5149), + [anon_sym_BSLASHsvolcite] = ACTIONS(5149), + [anon_sym_BSLASHSvolcite] = ACTIONS(5149), + [anon_sym_BSLASHtvolcite] = ACTIONS(5149), + [anon_sym_BSLASHTvolcite] = ACTIONS(5149), + [anon_sym_BSLASHavolcite] = ACTIONS(5149), + [anon_sym_BSLASHAvolcite] = ACTIONS(5149), + [anon_sym_BSLASHnotecite] = ACTIONS(5149), + [anon_sym_BSLASHNotecite] = ACTIONS(5149), + [anon_sym_BSLASHpnotecite] = ACTIONS(5149), + [anon_sym_BSLASHPnotecite] = ACTIONS(5149), + [anon_sym_BSLASHfnotecite] = ACTIONS(5149), + [anon_sym_BSLASHlabel] = ACTIONS(5149), + [anon_sym_BSLASHref] = ACTIONS(5149), + [anon_sym_BSLASHeqref] = ACTIONS(5149), + [anon_sym_BSLASHvref] = ACTIONS(5149), + [anon_sym_BSLASHVref] = ACTIONS(5149), + [anon_sym_BSLASHautoref] = ACTIONS(5149), + [anon_sym_BSLASHpageref] = ACTIONS(5149), + [anon_sym_BSLASHcref] = ACTIONS(5149), + [anon_sym_BSLASHCref] = ACTIONS(5149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnameCref] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHlabelcref] = ACTIONS(5149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCrefrange] = ACTIONS(5149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnewlabel] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), + [anon_sym_BSLASHdef] = ACTIONS(5149), + [anon_sym_BSLASHlet] = ACTIONS(5149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), + [anon_sym_BSLASHgls] = ACTIONS(5149), + [anon_sym_BSLASHGls] = ACTIONS(5149), + [anon_sym_BSLASHGLS] = ACTIONS(5149), + [anon_sym_BSLASHglspl] = ACTIONS(5149), + [anon_sym_BSLASHGlspl] = ACTIONS(5149), + [anon_sym_BSLASHGLSpl] = ACTIONS(5149), + [anon_sym_BSLASHglsdisp] = ACTIONS(5149), + [anon_sym_BSLASHglslink] = ACTIONS(5149), + [anon_sym_BSLASHglstext] = ACTIONS(5149), + [anon_sym_BSLASHGlstext] = ACTIONS(5149), + [anon_sym_BSLASHGLStext] = ACTIONS(5149), + [anon_sym_BSLASHglsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), + [anon_sym_BSLASHglsplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSplural] = ACTIONS(5149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHglsname] = ACTIONS(5149), + [anon_sym_BSLASHGlsname] = ACTIONS(5149), + [anon_sym_BSLASHGLSname] = ACTIONS(5149), + [anon_sym_BSLASHglssymbol] = ACTIONS(5149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), + [anon_sym_BSLASHglsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), + [anon_sym_BSLASHglsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), + [anon_sym_BSLASHglsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), + [anon_sym_BSLASHglsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), + [anon_sym_BSLASHglsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), + [anon_sym_BSLASHnewacronym] = ACTIONS(5149), + [anon_sym_BSLASHacrshort] = ACTIONS(5149), + [anon_sym_BSLASHAcrshort] = ACTIONS(5149), + [anon_sym_BSLASHACRshort] = ACTIONS(5149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), + [anon_sym_BSLASHacrlong] = ACTIONS(5149), + [anon_sym_BSLASHAcrlong] = ACTIONS(5149), + [anon_sym_BSLASHACRlong] = ACTIONS(5149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), + [anon_sym_BSLASHacrfull] = ACTIONS(5149), + [anon_sym_BSLASHAcrfull] = ACTIONS(5149), + [anon_sym_BSLASHACRfull] = ACTIONS(5149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), + [anon_sym_BSLASHacs] = ACTIONS(5149), + [anon_sym_BSLASHAcs] = ACTIONS(5149), + [anon_sym_BSLASHacsp] = ACTIONS(5149), + [anon_sym_BSLASHAcsp] = ACTIONS(5149), + [anon_sym_BSLASHacl] = ACTIONS(5149), + [anon_sym_BSLASHAcl] = ACTIONS(5149), + [anon_sym_BSLASHaclp] = ACTIONS(5149), + [anon_sym_BSLASHAclp] = ACTIONS(5149), + [anon_sym_BSLASHacf] = ACTIONS(5149), + [anon_sym_BSLASHAcf] = ACTIONS(5149), + [anon_sym_BSLASHacfp] = ACTIONS(5149), + [anon_sym_BSLASHAcfp] = ACTIONS(5149), + [anon_sym_BSLASHac] = ACTIONS(5149), + [anon_sym_BSLASHAc] = ACTIONS(5149), + [anon_sym_BSLASHacp] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), + [anon_sym_BSLASHcolor] = ACTIONS(5149), + [anon_sym_BSLASHcolorbox] = ACTIONS(5149), + [anon_sym_BSLASHtextcolor] = ACTIONS(5149), + [anon_sym_BSLASHpagecolor] = ACTIONS(5149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), + [anon_sym_BSLASHtext] = ACTIONS(5149), + [anon_sym_BSLASHintertext] = ACTIONS(5149), + [anon_sym_shortintertext] = ACTIONS(5149), + }, + [1382] = { + [sym_command_name] = ACTIONS(5297), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5297), + [anon_sym_LPAREN] = ACTIONS(5295), + [anon_sym_RPAREN] = ACTIONS(5295), + [anon_sym_LBRACK] = ACTIONS(5295), + [anon_sym_RBRACK] = ACTIONS(5295), + [anon_sym_COMMA] = ACTIONS(5295), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_LBRACE] = ACTIONS(5295), + [sym_word] = ACTIONS(5297), + [sym_placeholder] = ACTIONS(5295), + [anon_sym_PLUS] = ACTIONS(5297), + [anon_sym_DASH] = ACTIONS(5297), + [anon_sym_STAR] = ACTIONS(5297), + [anon_sym_SLASH] = ACTIONS(5297), + [anon_sym_CARET] = ACTIONS(5297), + [anon_sym__] = ACTIONS(5297), + [anon_sym_LT] = ACTIONS(5297), + [anon_sym_GT] = ACTIONS(5297), + [anon_sym_BANG] = ACTIONS(5297), + [anon_sym_PIPE] = ACTIONS(5297), + [anon_sym_COLON] = ACTIONS(5297), + [anon_sym_SQUOTE] = ACTIONS(5297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), + [anon_sym_DOLLAR] = ACTIONS(5297), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), + [anon_sym_BSLASHbegin] = ACTIONS(5297), + [anon_sym_BSLASHusepackage] = ACTIONS(5297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), + [anon_sym_BSLASHinclude] = ACTIONS(5297), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), + [anon_sym_BSLASHinput] = ACTIONS(5297), + [anon_sym_BSLASHsubfile] = ACTIONS(5297), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), + [anon_sym_BSLASHbibliography] = ACTIONS(5297), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), + [anon_sym_BSLASHincludesvg] = ACTIONS(5297), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), + [anon_sym_BSLASHimport] = ACTIONS(5297), + [anon_sym_BSLASHsubimport] = ACTIONS(5297), + [anon_sym_BSLASHinputfrom] = ACTIONS(5297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), + [anon_sym_BSLASHincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHcaption] = ACTIONS(5297), + [anon_sym_BSLASHcite] = ACTIONS(5297), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCite] = ACTIONS(5297), + [anon_sym_BSLASHnocite] = ACTIONS(5297), + [anon_sym_BSLASHcitet] = ACTIONS(5297), + [anon_sym_BSLASHcitep] = ACTIONS(5297), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteauthor] = ACTIONS(5297), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitetitle] = ACTIONS(5297), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteyear] = ACTIONS(5297), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitedate] = ACTIONS(5297), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteurl] = ACTIONS(5297), + [anon_sym_BSLASHfullcite] = ACTIONS(5297), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), + [anon_sym_BSLASHcitealt] = ACTIONS(5297), + [anon_sym_BSLASHcitealp] = ACTIONS(5297), + [anon_sym_BSLASHcitetext] = ACTIONS(5297), + [anon_sym_BSLASHparencite] = ACTIONS(5297), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHParencite] = ACTIONS(5297), + [anon_sym_BSLASHfootcite] = ACTIONS(5297), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), + [anon_sym_BSLASHtextcite] = ACTIONS(5297), + [anon_sym_BSLASHTextcite] = ACTIONS(5297), + [anon_sym_BSLASHsmartcite] = ACTIONS(5297), + [anon_sym_BSLASHSmartcite] = ACTIONS(5297), + [anon_sym_BSLASHsupercite] = ACTIONS(5297), + [anon_sym_BSLASHautocite] = ACTIONS(5297), + [anon_sym_BSLASHAutocite] = ACTIONS(5297), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHvolcite] = ACTIONS(5297), + [anon_sym_BSLASHVolcite] = ACTIONS(5297), + [anon_sym_BSLASHpvolcite] = ACTIONS(5297), + [anon_sym_BSLASHPvolcite] = ACTIONS(5297), + [anon_sym_BSLASHfvolcite] = ACTIONS(5297), + [anon_sym_BSLASHftvolcite] = ACTIONS(5297), + [anon_sym_BSLASHsvolcite] = ACTIONS(5297), + [anon_sym_BSLASHSvolcite] = ACTIONS(5297), + [anon_sym_BSLASHtvolcite] = ACTIONS(5297), + [anon_sym_BSLASHTvolcite] = ACTIONS(5297), + [anon_sym_BSLASHavolcite] = ACTIONS(5297), + [anon_sym_BSLASHAvolcite] = ACTIONS(5297), + [anon_sym_BSLASHnotecite] = ACTIONS(5297), + [anon_sym_BSLASHNotecite] = ACTIONS(5297), + [anon_sym_BSLASHpnotecite] = ACTIONS(5297), + [anon_sym_BSLASHPnotecite] = ACTIONS(5297), + [anon_sym_BSLASHfnotecite] = ACTIONS(5297), + [anon_sym_BSLASHlabel] = ACTIONS(5297), + [anon_sym_BSLASHref] = ACTIONS(5297), + [anon_sym_BSLASHeqref] = ACTIONS(5297), + [anon_sym_BSLASHvref] = ACTIONS(5297), + [anon_sym_BSLASHVref] = ACTIONS(5297), + [anon_sym_BSLASHautoref] = ACTIONS(5297), + [anon_sym_BSLASHpageref] = ACTIONS(5297), + [anon_sym_BSLASHcref] = ACTIONS(5297), + [anon_sym_BSLASHCref] = ACTIONS(5297), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnameCref] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHlabelcref] = ACTIONS(5297), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCrefrange] = ACTIONS(5297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnewlabel] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), + [anon_sym_BSLASHdef] = ACTIONS(5297), + [anon_sym_BSLASHlet] = ACTIONS(5297), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), + [anon_sym_BSLASHgls] = ACTIONS(5297), + [anon_sym_BSLASHGls] = ACTIONS(5297), + [anon_sym_BSLASHGLS] = ACTIONS(5297), + [anon_sym_BSLASHglspl] = ACTIONS(5297), + [anon_sym_BSLASHGlspl] = ACTIONS(5297), + [anon_sym_BSLASHGLSpl] = ACTIONS(5297), + [anon_sym_BSLASHglsdisp] = ACTIONS(5297), + [anon_sym_BSLASHglslink] = ACTIONS(5297), + [anon_sym_BSLASHglstext] = ACTIONS(5297), + [anon_sym_BSLASHGlstext] = ACTIONS(5297), + [anon_sym_BSLASHGLStext] = ACTIONS(5297), + [anon_sym_BSLASHglsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), + [anon_sym_BSLASHglsplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSplural] = ACTIONS(5297), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHglsname] = ACTIONS(5297), + [anon_sym_BSLASHGlsname] = ACTIONS(5297), + [anon_sym_BSLASHGLSname] = ACTIONS(5297), + [anon_sym_BSLASHglssymbol] = ACTIONS(5297), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), + [anon_sym_BSLASHglsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), + [anon_sym_BSLASHglsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), + [anon_sym_BSLASHglsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), + [anon_sym_BSLASHglsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), + [anon_sym_BSLASHglsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), + [anon_sym_BSLASHnewacronym] = ACTIONS(5297), + [anon_sym_BSLASHacrshort] = ACTIONS(5297), + [anon_sym_BSLASHAcrshort] = ACTIONS(5297), + [anon_sym_BSLASHACRshort] = ACTIONS(5297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), + [anon_sym_BSLASHacrlong] = ACTIONS(5297), + [anon_sym_BSLASHAcrlong] = ACTIONS(5297), + [anon_sym_BSLASHACRlong] = ACTIONS(5297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), + [anon_sym_BSLASHacrfull] = ACTIONS(5297), + [anon_sym_BSLASHAcrfull] = ACTIONS(5297), + [anon_sym_BSLASHACRfull] = ACTIONS(5297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), + [anon_sym_BSLASHacs] = ACTIONS(5297), + [anon_sym_BSLASHAcs] = ACTIONS(5297), + [anon_sym_BSLASHacsp] = ACTIONS(5297), + [anon_sym_BSLASHAcsp] = ACTIONS(5297), + [anon_sym_BSLASHacl] = ACTIONS(5297), + [anon_sym_BSLASHAcl] = ACTIONS(5297), + [anon_sym_BSLASHaclp] = ACTIONS(5297), + [anon_sym_BSLASHAclp] = ACTIONS(5297), + [anon_sym_BSLASHacf] = ACTIONS(5297), + [anon_sym_BSLASHAcf] = ACTIONS(5297), + [anon_sym_BSLASHacfp] = ACTIONS(5297), + [anon_sym_BSLASHAcfp] = ACTIONS(5297), + [anon_sym_BSLASHac] = ACTIONS(5297), + [anon_sym_BSLASHAc] = ACTIONS(5297), + [anon_sym_BSLASHacp] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), + [anon_sym_BSLASHcolor] = ACTIONS(5297), + [anon_sym_BSLASHcolorbox] = ACTIONS(5297), + [anon_sym_BSLASHtextcolor] = ACTIONS(5297), + [anon_sym_BSLASHpagecolor] = ACTIONS(5297), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), + [anon_sym_BSLASHtext] = ACTIONS(5297), + [anon_sym_BSLASHintertext] = ACTIONS(5297), + [anon_sym_shortintertext] = ACTIONS(5297), + }, + [1383] = { + [sym_command_name] = ACTIONS(5301), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5301), + [anon_sym_LPAREN] = ACTIONS(5299), + [anon_sym_RPAREN] = ACTIONS(5299), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym_RBRACK] = ACTIONS(5299), + [anon_sym_COMMA] = ACTIONS(5299), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_LBRACE] = ACTIONS(5299), + [sym_word] = ACTIONS(5301), + [sym_placeholder] = ACTIONS(5299), + [anon_sym_PLUS] = ACTIONS(5301), + [anon_sym_DASH] = ACTIONS(5301), + [anon_sym_STAR] = ACTIONS(5301), + [anon_sym_SLASH] = ACTIONS(5301), + [anon_sym_CARET] = ACTIONS(5301), + [anon_sym__] = ACTIONS(5301), + [anon_sym_LT] = ACTIONS(5301), + [anon_sym_GT] = ACTIONS(5301), + [anon_sym_BANG] = ACTIONS(5301), + [anon_sym_PIPE] = ACTIONS(5301), + [anon_sym_COLON] = ACTIONS(5301), + [anon_sym_SQUOTE] = ACTIONS(5301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), + [anon_sym_DOLLAR] = ACTIONS(5301), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), + [anon_sym_BSLASHbegin] = ACTIONS(5301), + [anon_sym_BSLASHusepackage] = ACTIONS(5301), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), + [anon_sym_BSLASHinclude] = ACTIONS(5301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), + [anon_sym_BSLASHinput] = ACTIONS(5301), + [anon_sym_BSLASHsubfile] = ACTIONS(5301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), + [anon_sym_BSLASHbibliography] = ACTIONS(5301), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), + [anon_sym_BSLASHincludesvg] = ACTIONS(5301), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), + [anon_sym_BSLASHimport] = ACTIONS(5301), + [anon_sym_BSLASHsubimport] = ACTIONS(5301), + [anon_sym_BSLASHinputfrom] = ACTIONS(5301), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), + [anon_sym_BSLASHincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHcaption] = ACTIONS(5301), + [anon_sym_BSLASHcite] = ACTIONS(5301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCite] = ACTIONS(5301), + [anon_sym_BSLASHnocite] = ACTIONS(5301), + [anon_sym_BSLASHcitet] = ACTIONS(5301), + [anon_sym_BSLASHcitep] = ACTIONS(5301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteauthor] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitetitle] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteyear] = ACTIONS(5301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitedate] = ACTIONS(5301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteurl] = ACTIONS(5301), + [anon_sym_BSLASHfullcite] = ACTIONS(5301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), + [anon_sym_BSLASHcitealt] = ACTIONS(5301), + [anon_sym_BSLASHcitealp] = ACTIONS(5301), + [anon_sym_BSLASHcitetext] = ACTIONS(5301), + [anon_sym_BSLASHparencite] = ACTIONS(5301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHParencite] = ACTIONS(5301), + [anon_sym_BSLASHfootcite] = ACTIONS(5301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), + [anon_sym_BSLASHtextcite] = ACTIONS(5301), + [anon_sym_BSLASHTextcite] = ACTIONS(5301), + [anon_sym_BSLASHsmartcite] = ACTIONS(5301), + [anon_sym_BSLASHSmartcite] = ACTIONS(5301), + [anon_sym_BSLASHsupercite] = ACTIONS(5301), + [anon_sym_BSLASHautocite] = ACTIONS(5301), + [anon_sym_BSLASHAutocite] = ACTIONS(5301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHvolcite] = ACTIONS(5301), + [anon_sym_BSLASHVolcite] = ACTIONS(5301), + [anon_sym_BSLASHpvolcite] = ACTIONS(5301), + [anon_sym_BSLASHPvolcite] = ACTIONS(5301), + [anon_sym_BSLASHfvolcite] = ACTIONS(5301), + [anon_sym_BSLASHftvolcite] = ACTIONS(5301), + [anon_sym_BSLASHsvolcite] = ACTIONS(5301), + [anon_sym_BSLASHSvolcite] = ACTIONS(5301), + [anon_sym_BSLASHtvolcite] = ACTIONS(5301), + [anon_sym_BSLASHTvolcite] = ACTIONS(5301), + [anon_sym_BSLASHavolcite] = ACTIONS(5301), + [anon_sym_BSLASHAvolcite] = ACTIONS(5301), + [anon_sym_BSLASHnotecite] = ACTIONS(5301), + [anon_sym_BSLASHNotecite] = ACTIONS(5301), + [anon_sym_BSLASHpnotecite] = ACTIONS(5301), + [anon_sym_BSLASHPnotecite] = ACTIONS(5301), + [anon_sym_BSLASHfnotecite] = ACTIONS(5301), + [anon_sym_BSLASHlabel] = ACTIONS(5301), + [anon_sym_BSLASHref] = ACTIONS(5301), + [anon_sym_BSLASHeqref] = ACTIONS(5301), + [anon_sym_BSLASHvref] = ACTIONS(5301), + [anon_sym_BSLASHVref] = ACTIONS(5301), + [anon_sym_BSLASHautoref] = ACTIONS(5301), + [anon_sym_BSLASHpageref] = ACTIONS(5301), + [anon_sym_BSLASHcref] = ACTIONS(5301), + [anon_sym_BSLASHCref] = ACTIONS(5301), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnameCref] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHlabelcref] = ACTIONS(5301), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCrefrange] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnewlabel] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), + [anon_sym_BSLASHdef] = ACTIONS(5301), + [anon_sym_BSLASHlet] = ACTIONS(5301), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), + [anon_sym_BSLASHgls] = ACTIONS(5301), + [anon_sym_BSLASHGls] = ACTIONS(5301), + [anon_sym_BSLASHGLS] = ACTIONS(5301), + [anon_sym_BSLASHglspl] = ACTIONS(5301), + [anon_sym_BSLASHGlspl] = ACTIONS(5301), + [anon_sym_BSLASHGLSpl] = ACTIONS(5301), + [anon_sym_BSLASHglsdisp] = ACTIONS(5301), + [anon_sym_BSLASHglslink] = ACTIONS(5301), + [anon_sym_BSLASHglstext] = ACTIONS(5301), + [anon_sym_BSLASHGlstext] = ACTIONS(5301), + [anon_sym_BSLASHGLStext] = ACTIONS(5301), + [anon_sym_BSLASHglsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), + [anon_sym_BSLASHglsplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSplural] = ACTIONS(5301), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHglsname] = ACTIONS(5301), + [anon_sym_BSLASHGlsname] = ACTIONS(5301), + [anon_sym_BSLASHGLSname] = ACTIONS(5301), + [anon_sym_BSLASHglssymbol] = ACTIONS(5301), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), + [anon_sym_BSLASHglsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), + [anon_sym_BSLASHglsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), + [anon_sym_BSLASHglsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), + [anon_sym_BSLASHglsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), + [anon_sym_BSLASHglsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), + [anon_sym_BSLASHnewacronym] = ACTIONS(5301), + [anon_sym_BSLASHacrshort] = ACTIONS(5301), + [anon_sym_BSLASHAcrshort] = ACTIONS(5301), + [anon_sym_BSLASHACRshort] = ACTIONS(5301), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), + [anon_sym_BSLASHacrlong] = ACTIONS(5301), + [anon_sym_BSLASHAcrlong] = ACTIONS(5301), + [anon_sym_BSLASHACRlong] = ACTIONS(5301), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), + [anon_sym_BSLASHacrfull] = ACTIONS(5301), + [anon_sym_BSLASHAcrfull] = ACTIONS(5301), + [anon_sym_BSLASHACRfull] = ACTIONS(5301), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), + [anon_sym_BSLASHacs] = ACTIONS(5301), + [anon_sym_BSLASHAcs] = ACTIONS(5301), + [anon_sym_BSLASHacsp] = ACTIONS(5301), + [anon_sym_BSLASHAcsp] = ACTIONS(5301), + [anon_sym_BSLASHacl] = ACTIONS(5301), + [anon_sym_BSLASHAcl] = ACTIONS(5301), + [anon_sym_BSLASHaclp] = ACTIONS(5301), + [anon_sym_BSLASHAclp] = ACTIONS(5301), + [anon_sym_BSLASHacf] = ACTIONS(5301), + [anon_sym_BSLASHAcf] = ACTIONS(5301), + [anon_sym_BSLASHacfp] = ACTIONS(5301), + [anon_sym_BSLASHAcfp] = ACTIONS(5301), + [anon_sym_BSLASHac] = ACTIONS(5301), + [anon_sym_BSLASHAc] = ACTIONS(5301), + [anon_sym_BSLASHacp] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), + [anon_sym_BSLASHcolor] = ACTIONS(5301), + [anon_sym_BSLASHcolorbox] = ACTIONS(5301), + [anon_sym_BSLASHtextcolor] = ACTIONS(5301), + [anon_sym_BSLASHpagecolor] = ACTIONS(5301), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), + [anon_sym_BSLASHtext] = ACTIONS(5301), + [anon_sym_BSLASHintertext] = ACTIONS(5301), + [anon_sym_shortintertext] = ACTIONS(5301), + }, + [1384] = { + [sym_command_name] = ACTIONS(5065), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_LPAREN] = ACTIONS(5075), - [anon_sym_RPAREN] = ACTIONS(5075), - [anon_sym_LBRACK] = ACTIONS(5075), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_LBRACE] = ACTIONS(5075), - [anon_sym_RBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5075), - [anon_sym_DOLLAR] = ACTIONS(5077), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5075), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5075), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), + [anon_sym_BSLASHiffalse] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_RBRACK] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5063), + [sym_word] = ACTIONS(5065), + [sym_placeholder] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_CARET] = ACTIONS(5065), + [anon_sym__] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_COLON] = ACTIONS(5065), + [anon_sym_SQUOTE] = ACTIONS(5065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), + [anon_sym_DOLLAR] = ACTIONS(5065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), + [anon_sym_BSLASHbegin] = ACTIONS(5065), + [anon_sym_BSLASHusepackage] = ACTIONS(5065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), + [anon_sym_BSLASHinclude] = ACTIONS(5065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), + [anon_sym_BSLASHinput] = ACTIONS(5065), + [anon_sym_BSLASHsubfile] = ACTIONS(5065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), + [anon_sym_BSLASHbibliography] = ACTIONS(5065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), + [anon_sym_BSLASHincludesvg] = ACTIONS(5065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), + [anon_sym_BSLASHimport] = ACTIONS(5065), + [anon_sym_BSLASHsubimport] = ACTIONS(5065), + [anon_sym_BSLASHinputfrom] = ACTIONS(5065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), + [anon_sym_BSLASHincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHcaption] = ACTIONS(5065), + [anon_sym_BSLASHcite] = ACTIONS(5065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCite] = ACTIONS(5065), + [anon_sym_BSLASHnocite] = ACTIONS(5065), + [anon_sym_BSLASHcitet] = ACTIONS(5065), + [anon_sym_BSLASHcitep] = ACTIONS(5065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteauthor] = ACTIONS(5065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitetitle] = ACTIONS(5065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteyear] = ACTIONS(5065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitedate] = ACTIONS(5065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteurl] = ACTIONS(5065), + [anon_sym_BSLASHfullcite] = ACTIONS(5065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), + [anon_sym_BSLASHcitealt] = ACTIONS(5065), + [anon_sym_BSLASHcitealp] = ACTIONS(5065), + [anon_sym_BSLASHcitetext] = ACTIONS(5065), + [anon_sym_BSLASHparencite] = ACTIONS(5065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHParencite] = ACTIONS(5065), + [anon_sym_BSLASHfootcite] = ACTIONS(5065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), + [anon_sym_BSLASHtextcite] = ACTIONS(5065), + [anon_sym_BSLASHTextcite] = ACTIONS(5065), + [anon_sym_BSLASHsmartcite] = ACTIONS(5065), + [anon_sym_BSLASHSmartcite] = ACTIONS(5065), + [anon_sym_BSLASHsupercite] = ACTIONS(5065), + [anon_sym_BSLASHautocite] = ACTIONS(5065), + [anon_sym_BSLASHAutocite] = ACTIONS(5065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHvolcite] = ACTIONS(5065), + [anon_sym_BSLASHVolcite] = ACTIONS(5065), + [anon_sym_BSLASHpvolcite] = ACTIONS(5065), + [anon_sym_BSLASHPvolcite] = ACTIONS(5065), + [anon_sym_BSLASHfvolcite] = ACTIONS(5065), + [anon_sym_BSLASHftvolcite] = ACTIONS(5065), + [anon_sym_BSLASHsvolcite] = ACTIONS(5065), + [anon_sym_BSLASHSvolcite] = ACTIONS(5065), + [anon_sym_BSLASHtvolcite] = ACTIONS(5065), + [anon_sym_BSLASHTvolcite] = ACTIONS(5065), + [anon_sym_BSLASHavolcite] = ACTIONS(5065), + [anon_sym_BSLASHAvolcite] = ACTIONS(5065), + [anon_sym_BSLASHnotecite] = ACTIONS(5065), + [anon_sym_BSLASHNotecite] = ACTIONS(5065), + [anon_sym_BSLASHpnotecite] = ACTIONS(5065), + [anon_sym_BSLASHPnotecite] = ACTIONS(5065), + [anon_sym_BSLASHfnotecite] = ACTIONS(5065), + [anon_sym_BSLASHlabel] = ACTIONS(5065), + [anon_sym_BSLASHref] = ACTIONS(5065), + [anon_sym_BSLASHeqref] = ACTIONS(5065), + [anon_sym_BSLASHvref] = ACTIONS(5065), + [anon_sym_BSLASHVref] = ACTIONS(5065), + [anon_sym_BSLASHautoref] = ACTIONS(5065), + [anon_sym_BSLASHpageref] = ACTIONS(5065), + [anon_sym_BSLASHcref] = ACTIONS(5065), + [anon_sym_BSLASHCref] = ACTIONS(5065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnameCref] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHlabelcref] = ACTIONS(5065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCrefrange] = ACTIONS(5065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnewlabel] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), + [anon_sym_BSLASHdef] = ACTIONS(5065), + [anon_sym_BSLASHlet] = ACTIONS(5065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), + [anon_sym_BSLASHgls] = ACTIONS(5065), + [anon_sym_BSLASHGls] = ACTIONS(5065), + [anon_sym_BSLASHGLS] = ACTIONS(5065), + [anon_sym_BSLASHglspl] = ACTIONS(5065), + [anon_sym_BSLASHGlspl] = ACTIONS(5065), + [anon_sym_BSLASHGLSpl] = ACTIONS(5065), + [anon_sym_BSLASHglsdisp] = ACTIONS(5065), + [anon_sym_BSLASHglslink] = ACTIONS(5065), + [anon_sym_BSLASHglstext] = ACTIONS(5065), + [anon_sym_BSLASHGlstext] = ACTIONS(5065), + [anon_sym_BSLASHGLStext] = ACTIONS(5065), + [anon_sym_BSLASHglsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), + [anon_sym_BSLASHglsplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSplural] = ACTIONS(5065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHglsname] = ACTIONS(5065), + [anon_sym_BSLASHGlsname] = ACTIONS(5065), + [anon_sym_BSLASHGLSname] = ACTIONS(5065), + [anon_sym_BSLASHglssymbol] = ACTIONS(5065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), + [anon_sym_BSLASHglsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), + [anon_sym_BSLASHglsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), + [anon_sym_BSLASHglsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), + [anon_sym_BSLASHglsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), + [anon_sym_BSLASHglsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), + [anon_sym_BSLASHnewacronym] = ACTIONS(5065), + [anon_sym_BSLASHacrshort] = ACTIONS(5065), + [anon_sym_BSLASHAcrshort] = ACTIONS(5065), + [anon_sym_BSLASHACRshort] = ACTIONS(5065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), + [anon_sym_BSLASHacrlong] = ACTIONS(5065), + [anon_sym_BSLASHAcrlong] = ACTIONS(5065), + [anon_sym_BSLASHACRlong] = ACTIONS(5065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), + [anon_sym_BSLASHacrfull] = ACTIONS(5065), + [anon_sym_BSLASHAcrfull] = ACTIONS(5065), + [anon_sym_BSLASHACRfull] = ACTIONS(5065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), + [anon_sym_BSLASHacs] = ACTIONS(5065), + [anon_sym_BSLASHAcs] = ACTIONS(5065), + [anon_sym_BSLASHacsp] = ACTIONS(5065), + [anon_sym_BSLASHAcsp] = ACTIONS(5065), + [anon_sym_BSLASHacl] = ACTIONS(5065), + [anon_sym_BSLASHAcl] = ACTIONS(5065), + [anon_sym_BSLASHaclp] = ACTIONS(5065), + [anon_sym_BSLASHAclp] = ACTIONS(5065), + [anon_sym_BSLASHacf] = ACTIONS(5065), + [anon_sym_BSLASHAcf] = ACTIONS(5065), + [anon_sym_BSLASHacfp] = ACTIONS(5065), + [anon_sym_BSLASHAcfp] = ACTIONS(5065), + [anon_sym_BSLASHac] = ACTIONS(5065), + [anon_sym_BSLASHAc] = ACTIONS(5065), + [anon_sym_BSLASHacp] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), + [anon_sym_BSLASHcolor] = ACTIONS(5065), + [anon_sym_BSLASHcolorbox] = ACTIONS(5065), + [anon_sym_BSLASHtextcolor] = ACTIONS(5065), + [anon_sym_BSLASHpagecolor] = ACTIONS(5065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHtext] = ACTIONS(5065), + [anon_sym_BSLASHintertext] = ACTIONS(5065), + [anon_sym_shortintertext] = ACTIONS(5065), }, - [1452] = { + [1385] = { [sym_command_name] = ACTIONS(5073), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -424860,8 +410619,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(5071), [anon_sym_RBRACK] = ACTIONS(5071), [anon_sym_COMMA] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), [anon_sym_LBRACE] = ACTIONS(5071), - [anon_sym_RBRACE] = ACTIONS(5071), [sym_word] = ACTIONS(5073), [sym_placeholder] = ACTIONS(5071), [anon_sym_PLUS] = ACTIONS(5073), @@ -424881,6 +410640,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(5073), [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), + [anon_sym_BSLASHbegin] = ACTIONS(5073), [anon_sym_BSLASHusepackage] = ACTIONS(5073), [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), @@ -425094,9798 +410854,17157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(5073), [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHtext] = ACTIONS(5073), + [anon_sym_BSLASHintertext] = ACTIONS(5073), + [anon_sym_shortintertext] = ACTIONS(5073), + }, + [1386] = { + [sym_command_name] = ACTIONS(4963), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_RBRACK] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_EQ] = ACTIONS(4961), + [anon_sym_LBRACE] = ACTIONS(4961), + [sym_word] = ACTIONS(4963), + [sym_placeholder] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), + [anon_sym__] = ACTIONS(4963), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_COLON] = ACTIONS(4963), + [anon_sym_SQUOTE] = ACTIONS(4963), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), + [anon_sym_DOLLAR] = ACTIONS(4963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), + [anon_sym_BSLASHbegin] = ACTIONS(4963), + [anon_sym_BSLASHusepackage] = ACTIONS(4963), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), + [anon_sym_BSLASHinclude] = ACTIONS(4963), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), + [anon_sym_BSLASHinput] = ACTIONS(4963), + [anon_sym_BSLASHsubfile] = ACTIONS(4963), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), + [anon_sym_BSLASHbibliography] = ACTIONS(4963), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), + [anon_sym_BSLASHincludesvg] = ACTIONS(4963), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), + [anon_sym_BSLASHimport] = ACTIONS(4963), + [anon_sym_BSLASHsubimport] = ACTIONS(4963), + [anon_sym_BSLASHinputfrom] = ACTIONS(4963), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), + [anon_sym_BSLASHincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHcaption] = ACTIONS(4963), + [anon_sym_BSLASHcite] = ACTIONS(4963), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCite] = ACTIONS(4963), + [anon_sym_BSLASHnocite] = ACTIONS(4963), + [anon_sym_BSLASHcitet] = ACTIONS(4963), + [anon_sym_BSLASHcitep] = ACTIONS(4963), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteauthor] = ACTIONS(4963), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitetitle] = ACTIONS(4963), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteyear] = ACTIONS(4963), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitedate] = ACTIONS(4963), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteurl] = ACTIONS(4963), + [anon_sym_BSLASHfullcite] = ACTIONS(4963), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), + [anon_sym_BSLASHcitealt] = ACTIONS(4963), + [anon_sym_BSLASHcitealp] = ACTIONS(4963), + [anon_sym_BSLASHcitetext] = ACTIONS(4963), + [anon_sym_BSLASHparencite] = ACTIONS(4963), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHParencite] = ACTIONS(4963), + [anon_sym_BSLASHfootcite] = ACTIONS(4963), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), + [anon_sym_BSLASHtextcite] = ACTIONS(4963), + [anon_sym_BSLASHTextcite] = ACTIONS(4963), + [anon_sym_BSLASHsmartcite] = ACTIONS(4963), + [anon_sym_BSLASHSmartcite] = ACTIONS(4963), + [anon_sym_BSLASHsupercite] = ACTIONS(4963), + [anon_sym_BSLASHautocite] = ACTIONS(4963), + [anon_sym_BSLASHAutocite] = ACTIONS(4963), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHvolcite] = ACTIONS(4963), + [anon_sym_BSLASHVolcite] = ACTIONS(4963), + [anon_sym_BSLASHpvolcite] = ACTIONS(4963), + [anon_sym_BSLASHPvolcite] = ACTIONS(4963), + [anon_sym_BSLASHfvolcite] = ACTIONS(4963), + [anon_sym_BSLASHftvolcite] = ACTIONS(4963), + [anon_sym_BSLASHsvolcite] = ACTIONS(4963), + [anon_sym_BSLASHSvolcite] = ACTIONS(4963), + [anon_sym_BSLASHtvolcite] = ACTIONS(4963), + [anon_sym_BSLASHTvolcite] = ACTIONS(4963), + [anon_sym_BSLASHavolcite] = ACTIONS(4963), + [anon_sym_BSLASHAvolcite] = ACTIONS(4963), + [anon_sym_BSLASHnotecite] = ACTIONS(4963), + [anon_sym_BSLASHNotecite] = ACTIONS(4963), + [anon_sym_BSLASHpnotecite] = ACTIONS(4963), + [anon_sym_BSLASHPnotecite] = ACTIONS(4963), + [anon_sym_BSLASHfnotecite] = ACTIONS(4963), + [anon_sym_BSLASHlabel] = ACTIONS(4963), + [anon_sym_BSLASHref] = ACTIONS(4963), + [anon_sym_BSLASHeqref] = ACTIONS(4963), + [anon_sym_BSLASHvref] = ACTIONS(4963), + [anon_sym_BSLASHVref] = ACTIONS(4963), + [anon_sym_BSLASHautoref] = ACTIONS(4963), + [anon_sym_BSLASHpageref] = ACTIONS(4963), + [anon_sym_BSLASHcref] = ACTIONS(4963), + [anon_sym_BSLASHCref] = ACTIONS(4963), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnameCref] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHlabelcref] = ACTIONS(4963), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCrefrange] = ACTIONS(4963), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnewlabel] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), + [anon_sym_BSLASHdef] = ACTIONS(4963), + [anon_sym_BSLASHlet] = ACTIONS(4963), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), + [anon_sym_BSLASHgls] = ACTIONS(4963), + [anon_sym_BSLASHGls] = ACTIONS(4963), + [anon_sym_BSLASHGLS] = ACTIONS(4963), + [anon_sym_BSLASHglspl] = ACTIONS(4963), + [anon_sym_BSLASHGlspl] = ACTIONS(4963), + [anon_sym_BSLASHGLSpl] = ACTIONS(4963), + [anon_sym_BSLASHglsdisp] = ACTIONS(4963), + [anon_sym_BSLASHglslink] = ACTIONS(4963), + [anon_sym_BSLASHglstext] = ACTIONS(4963), + [anon_sym_BSLASHGlstext] = ACTIONS(4963), + [anon_sym_BSLASHGLStext] = ACTIONS(4963), + [anon_sym_BSLASHglsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), + [anon_sym_BSLASHglsplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSplural] = ACTIONS(4963), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHglsname] = ACTIONS(4963), + [anon_sym_BSLASHGlsname] = ACTIONS(4963), + [anon_sym_BSLASHGLSname] = ACTIONS(4963), + [anon_sym_BSLASHglssymbol] = ACTIONS(4963), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), + [anon_sym_BSLASHglsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), + [anon_sym_BSLASHglsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), + [anon_sym_BSLASHglsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), + [anon_sym_BSLASHglsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), + [anon_sym_BSLASHglsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), + [anon_sym_BSLASHnewacronym] = ACTIONS(4963), + [anon_sym_BSLASHacrshort] = ACTIONS(4963), + [anon_sym_BSLASHAcrshort] = ACTIONS(4963), + [anon_sym_BSLASHACRshort] = ACTIONS(4963), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), + [anon_sym_BSLASHacrlong] = ACTIONS(4963), + [anon_sym_BSLASHAcrlong] = ACTIONS(4963), + [anon_sym_BSLASHACRlong] = ACTIONS(4963), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), + [anon_sym_BSLASHacrfull] = ACTIONS(4963), + [anon_sym_BSLASHAcrfull] = ACTIONS(4963), + [anon_sym_BSLASHACRfull] = ACTIONS(4963), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), + [anon_sym_BSLASHacs] = ACTIONS(4963), + [anon_sym_BSLASHAcs] = ACTIONS(4963), + [anon_sym_BSLASHacsp] = ACTIONS(4963), + [anon_sym_BSLASHAcsp] = ACTIONS(4963), + [anon_sym_BSLASHacl] = ACTIONS(4963), + [anon_sym_BSLASHAcl] = ACTIONS(4963), + [anon_sym_BSLASHaclp] = ACTIONS(4963), + [anon_sym_BSLASHAclp] = ACTIONS(4963), + [anon_sym_BSLASHacf] = ACTIONS(4963), + [anon_sym_BSLASHAcf] = ACTIONS(4963), + [anon_sym_BSLASHacfp] = ACTIONS(4963), + [anon_sym_BSLASHAcfp] = ACTIONS(4963), + [anon_sym_BSLASHac] = ACTIONS(4963), + [anon_sym_BSLASHAc] = ACTIONS(4963), + [anon_sym_BSLASHacp] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), + [anon_sym_BSLASHcolor] = ACTIONS(4963), + [anon_sym_BSLASHcolorbox] = ACTIONS(4963), + [anon_sym_BSLASHtextcolor] = ACTIONS(4963), + [anon_sym_BSLASHpagecolor] = ACTIONS(4963), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), + [anon_sym_BSLASHtext] = ACTIONS(4963), + [anon_sym_BSLASHintertext] = ACTIONS(4963), + [anon_sym_shortintertext] = ACTIONS(4963), + }, + [1387] = { + [sym_command_name] = ACTIONS(5305), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5303), + [anon_sym_RPAREN] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5303), + [anon_sym_RBRACK] = ACTIONS(5303), + [anon_sym_COMMA] = ACTIONS(5303), + [anon_sym_EQ] = ACTIONS(5303), + [anon_sym_LBRACE] = ACTIONS(5303), + [sym_word] = ACTIONS(5305), + [sym_placeholder] = ACTIONS(5303), + [anon_sym_PLUS] = ACTIONS(5305), + [anon_sym_DASH] = ACTIONS(5305), + [anon_sym_STAR] = ACTIONS(5305), + [anon_sym_SLASH] = ACTIONS(5305), + [anon_sym_CARET] = ACTIONS(5305), + [anon_sym__] = ACTIONS(5305), + [anon_sym_LT] = ACTIONS(5305), + [anon_sym_GT] = ACTIONS(5305), + [anon_sym_BANG] = ACTIONS(5305), + [anon_sym_PIPE] = ACTIONS(5305), + [anon_sym_COLON] = ACTIONS(5305), + [anon_sym_SQUOTE] = ACTIONS(5305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), + [anon_sym_DOLLAR] = ACTIONS(5305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), + [anon_sym_BSLASHbegin] = ACTIONS(5305), + [anon_sym_BSLASHusepackage] = ACTIONS(5305), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), + [anon_sym_BSLASHinclude] = ACTIONS(5305), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), + [anon_sym_BSLASHinput] = ACTIONS(5305), + [anon_sym_BSLASHsubfile] = ACTIONS(5305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), + [anon_sym_BSLASHbibliography] = ACTIONS(5305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), + [anon_sym_BSLASHincludesvg] = ACTIONS(5305), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), + [anon_sym_BSLASHimport] = ACTIONS(5305), + [anon_sym_BSLASHsubimport] = ACTIONS(5305), + [anon_sym_BSLASHinputfrom] = ACTIONS(5305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), + [anon_sym_BSLASHincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHcaption] = ACTIONS(5305), + [anon_sym_BSLASHcite] = ACTIONS(5305), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCite] = ACTIONS(5305), + [anon_sym_BSLASHnocite] = ACTIONS(5305), + [anon_sym_BSLASHcitet] = ACTIONS(5305), + [anon_sym_BSLASHcitep] = ACTIONS(5305), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor] = ACTIONS(5305), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle] = ACTIONS(5305), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteyear] = ACTIONS(5305), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitedate] = ACTIONS(5305), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteurl] = ACTIONS(5305), + [anon_sym_BSLASHfullcite] = ACTIONS(5305), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), + [anon_sym_BSLASHcitealt] = ACTIONS(5305), + [anon_sym_BSLASHcitealp] = ACTIONS(5305), + [anon_sym_BSLASHcitetext] = ACTIONS(5305), + [anon_sym_BSLASHparencite] = ACTIONS(5305), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHParencite] = ACTIONS(5305), + [anon_sym_BSLASHfootcite] = ACTIONS(5305), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), + [anon_sym_BSLASHtextcite] = ACTIONS(5305), + [anon_sym_BSLASHTextcite] = ACTIONS(5305), + [anon_sym_BSLASHsmartcite] = ACTIONS(5305), + [anon_sym_BSLASHSmartcite] = ACTIONS(5305), + [anon_sym_BSLASHsupercite] = ACTIONS(5305), + [anon_sym_BSLASHautocite] = ACTIONS(5305), + [anon_sym_BSLASHAutocite] = ACTIONS(5305), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHvolcite] = ACTIONS(5305), + [anon_sym_BSLASHVolcite] = ACTIONS(5305), + [anon_sym_BSLASHpvolcite] = ACTIONS(5305), + [anon_sym_BSLASHPvolcite] = ACTIONS(5305), + [anon_sym_BSLASHfvolcite] = ACTIONS(5305), + [anon_sym_BSLASHftvolcite] = ACTIONS(5305), + [anon_sym_BSLASHsvolcite] = ACTIONS(5305), + [anon_sym_BSLASHSvolcite] = ACTIONS(5305), + [anon_sym_BSLASHtvolcite] = ACTIONS(5305), + [anon_sym_BSLASHTvolcite] = ACTIONS(5305), + [anon_sym_BSLASHavolcite] = ACTIONS(5305), + [anon_sym_BSLASHAvolcite] = ACTIONS(5305), + [anon_sym_BSLASHnotecite] = ACTIONS(5305), + [anon_sym_BSLASHNotecite] = ACTIONS(5305), + [anon_sym_BSLASHpnotecite] = ACTIONS(5305), + [anon_sym_BSLASHPnotecite] = ACTIONS(5305), + [anon_sym_BSLASHfnotecite] = ACTIONS(5305), + [anon_sym_BSLASHlabel] = ACTIONS(5305), + [anon_sym_BSLASHref] = ACTIONS(5305), + [anon_sym_BSLASHeqref] = ACTIONS(5305), + [anon_sym_BSLASHvref] = ACTIONS(5305), + [anon_sym_BSLASHVref] = ACTIONS(5305), + [anon_sym_BSLASHautoref] = ACTIONS(5305), + [anon_sym_BSLASHpageref] = ACTIONS(5305), + [anon_sym_BSLASHcref] = ACTIONS(5305), + [anon_sym_BSLASHCref] = ACTIONS(5305), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnameCref] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHlabelcref] = ACTIONS(5305), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange] = ACTIONS(5305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnewlabel] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), + [anon_sym_BSLASHdef] = ACTIONS(5305), + [anon_sym_BSLASHlet] = ACTIONS(5305), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), + [anon_sym_BSLASHgls] = ACTIONS(5305), + [anon_sym_BSLASHGls] = ACTIONS(5305), + [anon_sym_BSLASHGLS] = ACTIONS(5305), + [anon_sym_BSLASHglspl] = ACTIONS(5305), + [anon_sym_BSLASHGlspl] = ACTIONS(5305), + [anon_sym_BSLASHGLSpl] = ACTIONS(5305), + [anon_sym_BSLASHglsdisp] = ACTIONS(5305), + [anon_sym_BSLASHglslink] = ACTIONS(5305), + [anon_sym_BSLASHglstext] = ACTIONS(5305), + [anon_sym_BSLASHGlstext] = ACTIONS(5305), + [anon_sym_BSLASHGLStext] = ACTIONS(5305), + [anon_sym_BSLASHglsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), + [anon_sym_BSLASHglsplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSplural] = ACTIONS(5305), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHglsname] = ACTIONS(5305), + [anon_sym_BSLASHGlsname] = ACTIONS(5305), + [anon_sym_BSLASHGLSname] = ACTIONS(5305), + [anon_sym_BSLASHglssymbol] = ACTIONS(5305), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), + [anon_sym_BSLASHglsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), + [anon_sym_BSLASHglsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), + [anon_sym_BSLASHglsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), + [anon_sym_BSLASHglsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), + [anon_sym_BSLASHglsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), + [anon_sym_BSLASHnewacronym] = ACTIONS(5305), + [anon_sym_BSLASHacrshort] = ACTIONS(5305), + [anon_sym_BSLASHAcrshort] = ACTIONS(5305), + [anon_sym_BSLASHACRshort] = ACTIONS(5305), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), + [anon_sym_BSLASHacrlong] = ACTIONS(5305), + [anon_sym_BSLASHAcrlong] = ACTIONS(5305), + [anon_sym_BSLASHACRlong] = ACTIONS(5305), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), + [anon_sym_BSLASHacrfull] = ACTIONS(5305), + [anon_sym_BSLASHAcrfull] = ACTIONS(5305), + [anon_sym_BSLASHACRfull] = ACTIONS(5305), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), + [anon_sym_BSLASHacs] = ACTIONS(5305), + [anon_sym_BSLASHAcs] = ACTIONS(5305), + [anon_sym_BSLASHacsp] = ACTIONS(5305), + [anon_sym_BSLASHAcsp] = ACTIONS(5305), + [anon_sym_BSLASHacl] = ACTIONS(5305), + [anon_sym_BSLASHAcl] = ACTIONS(5305), + [anon_sym_BSLASHaclp] = ACTIONS(5305), + [anon_sym_BSLASHAclp] = ACTIONS(5305), + [anon_sym_BSLASHacf] = ACTIONS(5305), + [anon_sym_BSLASHAcf] = ACTIONS(5305), + [anon_sym_BSLASHacfp] = ACTIONS(5305), + [anon_sym_BSLASHAcfp] = ACTIONS(5305), + [anon_sym_BSLASHac] = ACTIONS(5305), + [anon_sym_BSLASHAc] = ACTIONS(5305), + [anon_sym_BSLASHacp] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), + [anon_sym_BSLASHcolor] = ACTIONS(5305), + [anon_sym_BSLASHcolorbox] = ACTIONS(5305), + [anon_sym_BSLASHtextcolor] = ACTIONS(5305), + [anon_sym_BSLASHpagecolor] = ACTIONS(5305), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), + [anon_sym_BSLASHtext] = ACTIONS(5305), + [anon_sym_BSLASHintertext] = ACTIONS(5305), + [anon_sym_shortintertext] = ACTIONS(5305), + }, + [1388] = { + [sym_command_name] = ACTIONS(5221), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5219), + [anon_sym_RPAREN] = ACTIONS(5219), + [anon_sym_LBRACK] = ACTIONS(5219), + [anon_sym_RBRACK] = ACTIONS(5219), + [anon_sym_COMMA] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5219), + [sym_word] = ACTIONS(5221), + [sym_placeholder] = ACTIONS(5219), + [anon_sym_PLUS] = ACTIONS(5221), + [anon_sym_DASH] = ACTIONS(5221), + [anon_sym_STAR] = ACTIONS(5221), + [anon_sym_SLASH] = ACTIONS(5221), + [anon_sym_CARET] = ACTIONS(5221), + [anon_sym__] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5221), + [anon_sym_GT] = ACTIONS(5221), + [anon_sym_BANG] = ACTIONS(5221), + [anon_sym_PIPE] = ACTIONS(5221), + [anon_sym_COLON] = ACTIONS(5221), + [anon_sym_SQUOTE] = ACTIONS(5221), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), + [anon_sym_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), + [anon_sym_BSLASHbegin] = ACTIONS(5221), + [anon_sym_BSLASHusepackage] = ACTIONS(5221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), + [anon_sym_BSLASHinclude] = ACTIONS(5221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), + [anon_sym_BSLASHinput] = ACTIONS(5221), + [anon_sym_BSLASHsubfile] = ACTIONS(5221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), + [anon_sym_BSLASHbibliography] = ACTIONS(5221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), + [anon_sym_BSLASHincludesvg] = ACTIONS(5221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), + [anon_sym_BSLASHimport] = ACTIONS(5221), + [anon_sym_BSLASHsubimport] = ACTIONS(5221), + [anon_sym_BSLASHinputfrom] = ACTIONS(5221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), + [anon_sym_BSLASHincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHcaption] = ACTIONS(5221), + [anon_sym_BSLASHcite] = ACTIONS(5221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCite] = ACTIONS(5221), + [anon_sym_BSLASHnocite] = ACTIONS(5221), + [anon_sym_BSLASHcitet] = ACTIONS(5221), + [anon_sym_BSLASHcitep] = ACTIONS(5221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteyear] = ACTIONS(5221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitedate] = ACTIONS(5221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteurl] = ACTIONS(5221), + [anon_sym_BSLASHfullcite] = ACTIONS(5221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), + [anon_sym_BSLASHcitealt] = ACTIONS(5221), + [anon_sym_BSLASHcitealp] = ACTIONS(5221), + [anon_sym_BSLASHcitetext] = ACTIONS(5221), + [anon_sym_BSLASHparencite] = ACTIONS(5221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHParencite] = ACTIONS(5221), + [anon_sym_BSLASHfootcite] = ACTIONS(5221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), + [anon_sym_BSLASHtextcite] = ACTIONS(5221), + [anon_sym_BSLASHTextcite] = ACTIONS(5221), + [anon_sym_BSLASHsmartcite] = ACTIONS(5221), + [anon_sym_BSLASHSmartcite] = ACTIONS(5221), + [anon_sym_BSLASHsupercite] = ACTIONS(5221), + [anon_sym_BSLASHautocite] = ACTIONS(5221), + [anon_sym_BSLASHAutocite] = ACTIONS(5221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHvolcite] = ACTIONS(5221), + [anon_sym_BSLASHVolcite] = ACTIONS(5221), + [anon_sym_BSLASHpvolcite] = ACTIONS(5221), + [anon_sym_BSLASHPvolcite] = ACTIONS(5221), + [anon_sym_BSLASHfvolcite] = ACTIONS(5221), + [anon_sym_BSLASHftvolcite] = ACTIONS(5221), + [anon_sym_BSLASHsvolcite] = ACTIONS(5221), + [anon_sym_BSLASHSvolcite] = ACTIONS(5221), + [anon_sym_BSLASHtvolcite] = ACTIONS(5221), + [anon_sym_BSLASHTvolcite] = ACTIONS(5221), + [anon_sym_BSLASHavolcite] = ACTIONS(5221), + [anon_sym_BSLASHAvolcite] = ACTIONS(5221), + [anon_sym_BSLASHnotecite] = ACTIONS(5221), + [anon_sym_BSLASHNotecite] = ACTIONS(5221), + [anon_sym_BSLASHpnotecite] = ACTIONS(5221), + [anon_sym_BSLASHPnotecite] = ACTIONS(5221), + [anon_sym_BSLASHfnotecite] = ACTIONS(5221), + [anon_sym_BSLASHlabel] = ACTIONS(5221), + [anon_sym_BSLASHref] = ACTIONS(5221), + [anon_sym_BSLASHeqref] = ACTIONS(5221), + [anon_sym_BSLASHvref] = ACTIONS(5221), + [anon_sym_BSLASHVref] = ACTIONS(5221), + [anon_sym_BSLASHautoref] = ACTIONS(5221), + [anon_sym_BSLASHpageref] = ACTIONS(5221), + [anon_sym_BSLASHcref] = ACTIONS(5221), + [anon_sym_BSLASHCref] = ACTIONS(5221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnameCref] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHlabelcref] = ACTIONS(5221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnewlabel] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), + [anon_sym_BSLASHdef] = ACTIONS(5221), + [anon_sym_BSLASHlet] = ACTIONS(5221), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), + [anon_sym_BSLASHgls] = ACTIONS(5221), + [anon_sym_BSLASHGls] = ACTIONS(5221), + [anon_sym_BSLASHGLS] = ACTIONS(5221), + [anon_sym_BSLASHglspl] = ACTIONS(5221), + [anon_sym_BSLASHGlspl] = ACTIONS(5221), + [anon_sym_BSLASHGLSpl] = ACTIONS(5221), + [anon_sym_BSLASHglsdisp] = ACTIONS(5221), + [anon_sym_BSLASHglslink] = ACTIONS(5221), + [anon_sym_BSLASHglstext] = ACTIONS(5221), + [anon_sym_BSLASHGlstext] = ACTIONS(5221), + [anon_sym_BSLASHGLStext] = ACTIONS(5221), + [anon_sym_BSLASHglsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), + [anon_sym_BSLASHglsplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSplural] = ACTIONS(5221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHglsname] = ACTIONS(5221), + [anon_sym_BSLASHGlsname] = ACTIONS(5221), + [anon_sym_BSLASHGLSname] = ACTIONS(5221), + [anon_sym_BSLASHglssymbol] = ACTIONS(5221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), + [anon_sym_BSLASHglsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), + [anon_sym_BSLASHglsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), + [anon_sym_BSLASHglsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), + [anon_sym_BSLASHglsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), + [anon_sym_BSLASHglsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), + [anon_sym_BSLASHnewacronym] = ACTIONS(5221), + [anon_sym_BSLASHacrshort] = ACTIONS(5221), + [anon_sym_BSLASHAcrshort] = ACTIONS(5221), + [anon_sym_BSLASHACRshort] = ACTIONS(5221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), + [anon_sym_BSLASHacrlong] = ACTIONS(5221), + [anon_sym_BSLASHAcrlong] = ACTIONS(5221), + [anon_sym_BSLASHACRlong] = ACTIONS(5221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), + [anon_sym_BSLASHacrfull] = ACTIONS(5221), + [anon_sym_BSLASHAcrfull] = ACTIONS(5221), + [anon_sym_BSLASHACRfull] = ACTIONS(5221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), + [anon_sym_BSLASHacs] = ACTIONS(5221), + [anon_sym_BSLASHAcs] = ACTIONS(5221), + [anon_sym_BSLASHacsp] = ACTIONS(5221), + [anon_sym_BSLASHAcsp] = ACTIONS(5221), + [anon_sym_BSLASHacl] = ACTIONS(5221), + [anon_sym_BSLASHAcl] = ACTIONS(5221), + [anon_sym_BSLASHaclp] = ACTIONS(5221), + [anon_sym_BSLASHAclp] = ACTIONS(5221), + [anon_sym_BSLASHacf] = ACTIONS(5221), + [anon_sym_BSLASHAcf] = ACTIONS(5221), + [anon_sym_BSLASHacfp] = ACTIONS(5221), + [anon_sym_BSLASHAcfp] = ACTIONS(5221), + [anon_sym_BSLASHac] = ACTIONS(5221), + [anon_sym_BSLASHAc] = ACTIONS(5221), + [anon_sym_BSLASHacp] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), + [anon_sym_BSLASHcolor] = ACTIONS(5221), + [anon_sym_BSLASHcolorbox] = ACTIONS(5221), + [anon_sym_BSLASHtextcolor] = ACTIONS(5221), + [anon_sym_BSLASHpagecolor] = ACTIONS(5221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), + [anon_sym_BSLASHtext] = ACTIONS(5221), + [anon_sym_BSLASHintertext] = ACTIONS(5221), + [anon_sym_shortintertext] = ACTIONS(5221), }, - [1453] = { - [sym_command_name] = ACTIONS(5069), + [1389] = { + [sym_command_name] = ACTIONS(5233), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5233), + [anon_sym_LPAREN] = ACTIONS(5231), + [anon_sym_RPAREN] = ACTIONS(5231), + [anon_sym_LBRACK] = ACTIONS(5231), + [anon_sym_RBRACK] = ACTIONS(5231), + [anon_sym_COMMA] = ACTIONS(5231), + [anon_sym_EQ] = ACTIONS(5231), + [anon_sym_LBRACE] = ACTIONS(5231), + [sym_word] = ACTIONS(5233), + [sym_placeholder] = ACTIONS(5231), + [anon_sym_PLUS] = ACTIONS(5233), + [anon_sym_DASH] = ACTIONS(5233), + [anon_sym_STAR] = ACTIONS(5233), + [anon_sym_SLASH] = ACTIONS(5233), + [anon_sym_CARET] = ACTIONS(5233), + [anon_sym__] = ACTIONS(5233), + [anon_sym_LT] = ACTIONS(5233), + [anon_sym_GT] = ACTIONS(5233), + [anon_sym_BANG] = ACTIONS(5233), + [anon_sym_PIPE] = ACTIONS(5233), + [anon_sym_COLON] = ACTIONS(5233), + [anon_sym_SQUOTE] = ACTIONS(5233), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5231), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5231), + [anon_sym_DOLLAR] = ACTIONS(5233), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5231), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5231), + [anon_sym_BSLASHbegin] = ACTIONS(5233), + [anon_sym_BSLASHusepackage] = ACTIONS(5233), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5233), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5233), + [anon_sym_BSLASHinclude] = ACTIONS(5233), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5233), + [anon_sym_BSLASHinput] = ACTIONS(5233), + [anon_sym_BSLASHsubfile] = ACTIONS(5233), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5233), + [anon_sym_BSLASHbibliography] = ACTIONS(5233), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5233), + [anon_sym_BSLASHincludesvg] = ACTIONS(5233), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5233), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5233), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5233), + [anon_sym_BSLASHimport] = ACTIONS(5233), + [anon_sym_BSLASHsubimport] = ACTIONS(5233), + [anon_sym_BSLASHinputfrom] = ACTIONS(5233), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5233), + [anon_sym_BSLASHincludefrom] = ACTIONS(5233), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5233), + [anon_sym_BSLASHcaption] = ACTIONS(5233), + [anon_sym_BSLASHcite] = ACTIONS(5233), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCite] = ACTIONS(5233), + [anon_sym_BSLASHnocite] = ACTIONS(5233), + [anon_sym_BSLASHcitet] = ACTIONS(5233), + [anon_sym_BSLASHcitep] = ACTIONS(5233), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteauthor] = ACTIONS(5233), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5233), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitetitle] = ACTIONS(5233), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteyear] = ACTIONS(5233), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5231), + [anon_sym_BSLASHcitedate] = ACTIONS(5233), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5231), + [anon_sym_BSLASHciteurl] = ACTIONS(5233), + [anon_sym_BSLASHfullcite] = ACTIONS(5233), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5233), + [anon_sym_BSLASHcitealt] = ACTIONS(5233), + [anon_sym_BSLASHcitealp] = ACTIONS(5233), + [anon_sym_BSLASHcitetext] = ACTIONS(5233), + [anon_sym_BSLASHparencite] = ACTIONS(5233), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHParencite] = ACTIONS(5233), + [anon_sym_BSLASHfootcite] = ACTIONS(5233), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5233), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5233), + [anon_sym_BSLASHtextcite] = ACTIONS(5233), + [anon_sym_BSLASHTextcite] = ACTIONS(5233), + [anon_sym_BSLASHsmartcite] = ACTIONS(5233), + [anon_sym_BSLASHSmartcite] = ACTIONS(5233), + [anon_sym_BSLASHsupercite] = ACTIONS(5233), + [anon_sym_BSLASHautocite] = ACTIONS(5233), + [anon_sym_BSLASHAutocite] = ACTIONS(5233), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5231), + [anon_sym_BSLASHvolcite] = ACTIONS(5233), + [anon_sym_BSLASHVolcite] = ACTIONS(5233), + [anon_sym_BSLASHpvolcite] = ACTIONS(5233), + [anon_sym_BSLASHPvolcite] = ACTIONS(5233), + [anon_sym_BSLASHfvolcite] = ACTIONS(5233), + [anon_sym_BSLASHftvolcite] = ACTIONS(5233), + [anon_sym_BSLASHsvolcite] = ACTIONS(5233), + [anon_sym_BSLASHSvolcite] = ACTIONS(5233), + [anon_sym_BSLASHtvolcite] = ACTIONS(5233), + [anon_sym_BSLASHTvolcite] = ACTIONS(5233), + [anon_sym_BSLASHavolcite] = ACTIONS(5233), + [anon_sym_BSLASHAvolcite] = ACTIONS(5233), + [anon_sym_BSLASHnotecite] = ACTIONS(5233), + [anon_sym_BSLASHNotecite] = ACTIONS(5233), + [anon_sym_BSLASHpnotecite] = ACTIONS(5233), + [anon_sym_BSLASHPnotecite] = ACTIONS(5233), + [anon_sym_BSLASHfnotecite] = ACTIONS(5233), + [anon_sym_BSLASHlabel] = ACTIONS(5233), + [anon_sym_BSLASHref] = ACTIONS(5233), + [anon_sym_BSLASHeqref] = ACTIONS(5233), + [anon_sym_BSLASHvref] = ACTIONS(5233), + [anon_sym_BSLASHVref] = ACTIONS(5233), + [anon_sym_BSLASHautoref] = ACTIONS(5233), + [anon_sym_BSLASHpageref] = ACTIONS(5233), + [anon_sym_BSLASHcref] = ACTIONS(5233), + [anon_sym_BSLASHCref] = ACTIONS(5233), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5231), + [anon_sym_BSLASHnamecref] = ACTIONS(5233), + [anon_sym_BSLASHnameCref] = ACTIONS(5233), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5233), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5233), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5233), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5233), + [anon_sym_BSLASHlabelcref] = ACTIONS(5233), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5233), + [anon_sym_BSLASHcrefrange] = ACTIONS(5233), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5231), + [anon_sym_BSLASHCrefrange] = ACTIONS(5233), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5231), + [anon_sym_BSLASHnewlabel] = ACTIONS(5233), + [anon_sym_BSLASHnewcommand] = ACTIONS(5233), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5233), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5233), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5231), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5233), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5231), + [anon_sym_BSLASHdef] = ACTIONS(5233), + [anon_sym_BSLASHlet] = ACTIONS(5233), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5233), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5233), + [anon_sym_BSLASHgls] = ACTIONS(5233), + [anon_sym_BSLASHGls] = ACTIONS(5233), + [anon_sym_BSLASHGLS] = ACTIONS(5233), + [anon_sym_BSLASHglspl] = ACTIONS(5233), + [anon_sym_BSLASHGlspl] = ACTIONS(5233), + [anon_sym_BSLASHGLSpl] = ACTIONS(5233), + [anon_sym_BSLASHglsdisp] = ACTIONS(5233), + [anon_sym_BSLASHglslink] = ACTIONS(5233), + [anon_sym_BSLASHglstext] = ACTIONS(5233), + [anon_sym_BSLASHGlstext] = ACTIONS(5233), + [anon_sym_BSLASHGLStext] = ACTIONS(5233), + [anon_sym_BSLASHglsfirst] = ACTIONS(5233), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5233), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5233), + [anon_sym_BSLASHglsplural] = ACTIONS(5233), + [anon_sym_BSLASHGlsplural] = ACTIONS(5233), + [anon_sym_BSLASHGLSplural] = ACTIONS(5233), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5233), + [anon_sym_BSLASHglsname] = ACTIONS(5233), + [anon_sym_BSLASHGlsname] = ACTIONS(5233), + [anon_sym_BSLASHGLSname] = ACTIONS(5233), + [anon_sym_BSLASHglssymbol] = ACTIONS(5233), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5233), + [anon_sym_BSLASHglsdesc] = ACTIONS(5233), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5233), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5233), + [anon_sym_BSLASHglsuseri] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5233), + [anon_sym_BSLASHglsuserii] = ACTIONS(5233), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5233), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5233), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5233), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5233), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5233), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5233), + [anon_sym_BSLASHglsuserv] = ACTIONS(5233), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5233), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5233), + [anon_sym_BSLASHglsuservi] = ACTIONS(5233), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5233), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5233), + [anon_sym_BSLASHnewacronym] = ACTIONS(5233), + [anon_sym_BSLASHacrshort] = ACTIONS(5233), + [anon_sym_BSLASHAcrshort] = ACTIONS(5233), + [anon_sym_BSLASHACRshort] = ACTIONS(5233), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5233), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5233), + [anon_sym_BSLASHacrlong] = ACTIONS(5233), + [anon_sym_BSLASHAcrlong] = ACTIONS(5233), + [anon_sym_BSLASHACRlong] = ACTIONS(5233), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5233), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5233), + [anon_sym_BSLASHacrfull] = ACTIONS(5233), + [anon_sym_BSLASHAcrfull] = ACTIONS(5233), + [anon_sym_BSLASHACRfull] = ACTIONS(5233), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5233), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5233), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5233), + [anon_sym_BSLASHacs] = ACTIONS(5233), + [anon_sym_BSLASHAcs] = ACTIONS(5233), + [anon_sym_BSLASHacsp] = ACTIONS(5233), + [anon_sym_BSLASHAcsp] = ACTIONS(5233), + [anon_sym_BSLASHacl] = ACTIONS(5233), + [anon_sym_BSLASHAcl] = ACTIONS(5233), + [anon_sym_BSLASHaclp] = ACTIONS(5233), + [anon_sym_BSLASHAclp] = ACTIONS(5233), + [anon_sym_BSLASHacf] = ACTIONS(5233), + [anon_sym_BSLASHAcf] = ACTIONS(5233), + [anon_sym_BSLASHacfp] = ACTIONS(5233), + [anon_sym_BSLASHAcfp] = ACTIONS(5233), + [anon_sym_BSLASHac] = ACTIONS(5233), + [anon_sym_BSLASHAc] = ACTIONS(5233), + [anon_sym_BSLASHacp] = ACTIONS(5233), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5233), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5233), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5233), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5233), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5233), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5233), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5233), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5233), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5233), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5233), + [anon_sym_BSLASHcolor] = ACTIONS(5233), + [anon_sym_BSLASHcolorbox] = ACTIONS(5233), + [anon_sym_BSLASHtextcolor] = ACTIONS(5233), + [anon_sym_BSLASHpagecolor] = ACTIONS(5233), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5233), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5233), + [anon_sym_BSLASHtext] = ACTIONS(5233), + [anon_sym_BSLASHintertext] = ACTIONS(5233), + [anon_sym_shortintertext] = ACTIONS(5233), + }, + [1390] = { + [sym_command_name] = ACTIONS(5229), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5229), + [anon_sym_LPAREN] = ACTIONS(5227), + [anon_sym_RPAREN] = ACTIONS(5227), + [anon_sym_LBRACK] = ACTIONS(5227), + [anon_sym_RBRACK] = ACTIONS(5227), + [anon_sym_COMMA] = ACTIONS(5227), + [anon_sym_EQ] = ACTIONS(5227), + [anon_sym_LBRACE] = ACTIONS(5227), + [sym_word] = ACTIONS(5229), + [sym_placeholder] = ACTIONS(5227), + [anon_sym_PLUS] = ACTIONS(5229), + [anon_sym_DASH] = ACTIONS(5229), + [anon_sym_STAR] = ACTIONS(5229), + [anon_sym_SLASH] = ACTIONS(5229), + [anon_sym_CARET] = ACTIONS(5229), + [anon_sym__] = ACTIONS(5229), + [anon_sym_LT] = ACTIONS(5229), + [anon_sym_GT] = ACTIONS(5229), + [anon_sym_BANG] = ACTIONS(5229), + [anon_sym_PIPE] = ACTIONS(5229), + [anon_sym_COLON] = ACTIONS(5229), + [anon_sym_SQUOTE] = ACTIONS(5229), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5227), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5227), + [anon_sym_DOLLAR] = ACTIONS(5229), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5227), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5227), + [anon_sym_BSLASHbegin] = ACTIONS(5229), + [anon_sym_BSLASHusepackage] = ACTIONS(5229), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5229), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5229), + [anon_sym_BSLASHinclude] = ACTIONS(5229), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5229), + [anon_sym_BSLASHinput] = ACTIONS(5229), + [anon_sym_BSLASHsubfile] = ACTIONS(5229), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5229), + [anon_sym_BSLASHbibliography] = ACTIONS(5229), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5229), + [anon_sym_BSLASHincludesvg] = ACTIONS(5229), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5229), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5229), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5229), + [anon_sym_BSLASHimport] = ACTIONS(5229), + [anon_sym_BSLASHsubimport] = ACTIONS(5229), + [anon_sym_BSLASHinputfrom] = ACTIONS(5229), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5229), + [anon_sym_BSLASHincludefrom] = ACTIONS(5229), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5229), + [anon_sym_BSLASHcaption] = ACTIONS(5229), + [anon_sym_BSLASHcite] = ACTIONS(5229), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCite] = ACTIONS(5229), + [anon_sym_BSLASHnocite] = ACTIONS(5229), + [anon_sym_BSLASHcitet] = ACTIONS(5229), + [anon_sym_BSLASHcitep] = ACTIONS(5229), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteauthor] = ACTIONS(5229), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5229), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitetitle] = ACTIONS(5229), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteyear] = ACTIONS(5229), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5227), + [anon_sym_BSLASHcitedate] = ACTIONS(5229), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5227), + [anon_sym_BSLASHciteurl] = ACTIONS(5229), + [anon_sym_BSLASHfullcite] = ACTIONS(5229), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5229), + [anon_sym_BSLASHcitealt] = ACTIONS(5229), + [anon_sym_BSLASHcitealp] = ACTIONS(5229), + [anon_sym_BSLASHcitetext] = ACTIONS(5229), + [anon_sym_BSLASHparencite] = ACTIONS(5229), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHParencite] = ACTIONS(5229), + [anon_sym_BSLASHfootcite] = ACTIONS(5229), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5229), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5229), + [anon_sym_BSLASHtextcite] = ACTIONS(5229), + [anon_sym_BSLASHTextcite] = ACTIONS(5229), + [anon_sym_BSLASHsmartcite] = ACTIONS(5229), + [anon_sym_BSLASHSmartcite] = ACTIONS(5229), + [anon_sym_BSLASHsupercite] = ACTIONS(5229), + [anon_sym_BSLASHautocite] = ACTIONS(5229), + [anon_sym_BSLASHAutocite] = ACTIONS(5229), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5227), + [anon_sym_BSLASHvolcite] = ACTIONS(5229), + [anon_sym_BSLASHVolcite] = ACTIONS(5229), + [anon_sym_BSLASHpvolcite] = ACTIONS(5229), + [anon_sym_BSLASHPvolcite] = ACTIONS(5229), + [anon_sym_BSLASHfvolcite] = ACTIONS(5229), + [anon_sym_BSLASHftvolcite] = ACTIONS(5229), + [anon_sym_BSLASHsvolcite] = ACTIONS(5229), + [anon_sym_BSLASHSvolcite] = ACTIONS(5229), + [anon_sym_BSLASHtvolcite] = ACTIONS(5229), + [anon_sym_BSLASHTvolcite] = ACTIONS(5229), + [anon_sym_BSLASHavolcite] = ACTIONS(5229), + [anon_sym_BSLASHAvolcite] = ACTIONS(5229), + [anon_sym_BSLASHnotecite] = ACTIONS(5229), + [anon_sym_BSLASHNotecite] = ACTIONS(5229), + [anon_sym_BSLASHpnotecite] = ACTIONS(5229), + [anon_sym_BSLASHPnotecite] = ACTIONS(5229), + [anon_sym_BSLASHfnotecite] = ACTIONS(5229), + [anon_sym_BSLASHlabel] = ACTIONS(5229), + [anon_sym_BSLASHref] = ACTIONS(5229), + [anon_sym_BSLASHeqref] = ACTIONS(5229), + [anon_sym_BSLASHvref] = ACTIONS(5229), + [anon_sym_BSLASHVref] = ACTIONS(5229), + [anon_sym_BSLASHautoref] = ACTIONS(5229), + [anon_sym_BSLASHpageref] = ACTIONS(5229), + [anon_sym_BSLASHcref] = ACTIONS(5229), + [anon_sym_BSLASHCref] = ACTIONS(5229), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5227), + [anon_sym_BSLASHnamecref] = ACTIONS(5229), + [anon_sym_BSLASHnameCref] = ACTIONS(5229), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5229), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5229), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5229), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5229), + [anon_sym_BSLASHlabelcref] = ACTIONS(5229), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5229), + [anon_sym_BSLASHcrefrange] = ACTIONS(5229), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5227), + [anon_sym_BSLASHCrefrange] = ACTIONS(5229), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5227), + [anon_sym_BSLASHnewlabel] = ACTIONS(5229), + [anon_sym_BSLASHnewcommand] = ACTIONS(5229), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5229), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5229), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5227), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5229), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5227), + [anon_sym_BSLASHdef] = ACTIONS(5229), + [anon_sym_BSLASHlet] = ACTIONS(5229), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5229), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5229), + [anon_sym_BSLASHgls] = ACTIONS(5229), + [anon_sym_BSLASHGls] = ACTIONS(5229), + [anon_sym_BSLASHGLS] = ACTIONS(5229), + [anon_sym_BSLASHglspl] = ACTIONS(5229), + [anon_sym_BSLASHGlspl] = ACTIONS(5229), + [anon_sym_BSLASHGLSpl] = ACTIONS(5229), + [anon_sym_BSLASHglsdisp] = ACTIONS(5229), + [anon_sym_BSLASHglslink] = ACTIONS(5229), + [anon_sym_BSLASHglstext] = ACTIONS(5229), + [anon_sym_BSLASHGlstext] = ACTIONS(5229), + [anon_sym_BSLASHGLStext] = ACTIONS(5229), + [anon_sym_BSLASHglsfirst] = ACTIONS(5229), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5229), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5229), + [anon_sym_BSLASHglsplural] = ACTIONS(5229), + [anon_sym_BSLASHGlsplural] = ACTIONS(5229), + [anon_sym_BSLASHGLSplural] = ACTIONS(5229), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5229), + [anon_sym_BSLASHglsname] = ACTIONS(5229), + [anon_sym_BSLASHGlsname] = ACTIONS(5229), + [anon_sym_BSLASHGLSname] = ACTIONS(5229), + [anon_sym_BSLASHglssymbol] = ACTIONS(5229), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5229), + [anon_sym_BSLASHglsdesc] = ACTIONS(5229), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5229), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5229), + [anon_sym_BSLASHglsuseri] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5229), + [anon_sym_BSLASHglsuserii] = ACTIONS(5229), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5229), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5229), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5229), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5229), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5229), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5229), + [anon_sym_BSLASHglsuserv] = ACTIONS(5229), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5229), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5229), + [anon_sym_BSLASHglsuservi] = ACTIONS(5229), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5229), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5229), + [anon_sym_BSLASHnewacronym] = ACTIONS(5229), + [anon_sym_BSLASHacrshort] = ACTIONS(5229), + [anon_sym_BSLASHAcrshort] = ACTIONS(5229), + [anon_sym_BSLASHACRshort] = ACTIONS(5229), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5229), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5229), + [anon_sym_BSLASHacrlong] = ACTIONS(5229), + [anon_sym_BSLASHAcrlong] = ACTIONS(5229), + [anon_sym_BSLASHACRlong] = ACTIONS(5229), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5229), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5229), + [anon_sym_BSLASHacrfull] = ACTIONS(5229), + [anon_sym_BSLASHAcrfull] = ACTIONS(5229), + [anon_sym_BSLASHACRfull] = ACTIONS(5229), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5229), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5229), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5229), + [anon_sym_BSLASHacs] = ACTIONS(5229), + [anon_sym_BSLASHAcs] = ACTIONS(5229), + [anon_sym_BSLASHacsp] = ACTIONS(5229), + [anon_sym_BSLASHAcsp] = ACTIONS(5229), + [anon_sym_BSLASHacl] = ACTIONS(5229), + [anon_sym_BSLASHAcl] = ACTIONS(5229), + [anon_sym_BSLASHaclp] = ACTIONS(5229), + [anon_sym_BSLASHAclp] = ACTIONS(5229), + [anon_sym_BSLASHacf] = ACTIONS(5229), + [anon_sym_BSLASHAcf] = ACTIONS(5229), + [anon_sym_BSLASHacfp] = ACTIONS(5229), + [anon_sym_BSLASHAcfp] = ACTIONS(5229), + [anon_sym_BSLASHac] = ACTIONS(5229), + [anon_sym_BSLASHAc] = ACTIONS(5229), + [anon_sym_BSLASHacp] = ACTIONS(5229), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5229), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5229), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5229), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5229), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5229), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5229), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5229), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5229), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5229), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5229), + [anon_sym_BSLASHcolor] = ACTIONS(5229), + [anon_sym_BSLASHcolorbox] = ACTIONS(5229), + [anon_sym_BSLASHtextcolor] = ACTIONS(5229), + [anon_sym_BSLASHpagecolor] = ACTIONS(5229), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5229), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5229), + [anon_sym_BSLASHtext] = ACTIONS(5229), + [anon_sym_BSLASHintertext] = ACTIONS(5229), + [anon_sym_shortintertext] = ACTIONS(5229), + }, + [1391] = { + [sym_command_name] = ACTIONS(5225), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_LPAREN] = ACTIONS(5067), - [anon_sym_RPAREN] = ACTIONS(5067), - [anon_sym_LBRACK] = ACTIONS(5067), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_LBRACE] = ACTIONS(5067), - [anon_sym_RBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5067), - [anon_sym_DOLLAR] = ACTIONS(5069), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5067), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5067), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), + [anon_sym_BSLASHiffalse] = ACTIONS(5225), + [anon_sym_LPAREN] = ACTIONS(5223), + [anon_sym_RPAREN] = ACTIONS(5223), + [anon_sym_LBRACK] = ACTIONS(5223), + [anon_sym_RBRACK] = ACTIONS(5223), + [anon_sym_COMMA] = ACTIONS(5223), + [anon_sym_EQ] = ACTIONS(5223), + [anon_sym_LBRACE] = ACTIONS(5223), + [sym_word] = ACTIONS(5225), + [sym_placeholder] = ACTIONS(5223), + [anon_sym_PLUS] = ACTIONS(5225), + [anon_sym_DASH] = ACTIONS(5225), + [anon_sym_STAR] = ACTIONS(5225), + [anon_sym_SLASH] = ACTIONS(5225), + [anon_sym_CARET] = ACTIONS(5225), + [anon_sym__] = ACTIONS(5225), + [anon_sym_LT] = ACTIONS(5225), + [anon_sym_GT] = ACTIONS(5225), + [anon_sym_BANG] = ACTIONS(5225), + [anon_sym_PIPE] = ACTIONS(5225), + [anon_sym_COLON] = ACTIONS(5225), + [anon_sym_SQUOTE] = ACTIONS(5225), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5223), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5223), + [anon_sym_DOLLAR] = ACTIONS(5225), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5223), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5223), + [anon_sym_BSLASHbegin] = ACTIONS(5225), + [anon_sym_BSLASHusepackage] = ACTIONS(5225), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), + [anon_sym_BSLASHinclude] = ACTIONS(5225), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), + [anon_sym_BSLASHinput] = ACTIONS(5225), + [anon_sym_BSLASHsubfile] = ACTIONS(5225), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), + [anon_sym_BSLASHbibliography] = ACTIONS(5225), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), + [anon_sym_BSLASHincludesvg] = ACTIONS(5225), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), + [anon_sym_BSLASHimport] = ACTIONS(5225), + [anon_sym_BSLASHsubimport] = ACTIONS(5225), + [anon_sym_BSLASHinputfrom] = ACTIONS(5225), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), + [anon_sym_BSLASHincludefrom] = ACTIONS(5225), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), + [anon_sym_BSLASHcaption] = ACTIONS(5225), + [anon_sym_BSLASHcite] = ACTIONS(5225), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCite] = ACTIONS(5225), + [anon_sym_BSLASHnocite] = ACTIONS(5225), + [anon_sym_BSLASHcitet] = ACTIONS(5225), + [anon_sym_BSLASHcitep] = ACTIONS(5225), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteauthor] = ACTIONS(5225), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitetitle] = ACTIONS(5225), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteyear] = ACTIONS(5225), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), + [anon_sym_BSLASHcitedate] = ACTIONS(5225), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), + [anon_sym_BSLASHciteurl] = ACTIONS(5225), + [anon_sym_BSLASHfullcite] = ACTIONS(5225), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), + [anon_sym_BSLASHcitealt] = ACTIONS(5225), + [anon_sym_BSLASHcitealp] = ACTIONS(5225), + [anon_sym_BSLASHcitetext] = ACTIONS(5225), + [anon_sym_BSLASHparencite] = ACTIONS(5225), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHParencite] = ACTIONS(5225), + [anon_sym_BSLASHfootcite] = ACTIONS(5225), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), + [anon_sym_BSLASHtextcite] = ACTIONS(5225), + [anon_sym_BSLASHTextcite] = ACTIONS(5225), + [anon_sym_BSLASHsmartcite] = ACTIONS(5225), + [anon_sym_BSLASHSmartcite] = ACTIONS(5225), + [anon_sym_BSLASHsupercite] = ACTIONS(5225), + [anon_sym_BSLASHautocite] = ACTIONS(5225), + [anon_sym_BSLASHAutocite] = ACTIONS(5225), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), + [anon_sym_BSLASHvolcite] = ACTIONS(5225), + [anon_sym_BSLASHVolcite] = ACTIONS(5225), + [anon_sym_BSLASHpvolcite] = ACTIONS(5225), + [anon_sym_BSLASHPvolcite] = ACTIONS(5225), + [anon_sym_BSLASHfvolcite] = ACTIONS(5225), + [anon_sym_BSLASHftvolcite] = ACTIONS(5225), + [anon_sym_BSLASHsvolcite] = ACTIONS(5225), + [anon_sym_BSLASHSvolcite] = ACTIONS(5225), + [anon_sym_BSLASHtvolcite] = ACTIONS(5225), + [anon_sym_BSLASHTvolcite] = ACTIONS(5225), + [anon_sym_BSLASHavolcite] = ACTIONS(5225), + [anon_sym_BSLASHAvolcite] = ACTIONS(5225), + [anon_sym_BSLASHnotecite] = ACTIONS(5225), + [anon_sym_BSLASHNotecite] = ACTIONS(5225), + [anon_sym_BSLASHpnotecite] = ACTIONS(5225), + [anon_sym_BSLASHPnotecite] = ACTIONS(5225), + [anon_sym_BSLASHfnotecite] = ACTIONS(5225), + [anon_sym_BSLASHlabel] = ACTIONS(5225), + [anon_sym_BSLASHref] = ACTIONS(5225), + [anon_sym_BSLASHeqref] = ACTIONS(5225), + [anon_sym_BSLASHvref] = ACTIONS(5225), + [anon_sym_BSLASHVref] = ACTIONS(5225), + [anon_sym_BSLASHautoref] = ACTIONS(5225), + [anon_sym_BSLASHpageref] = ACTIONS(5225), + [anon_sym_BSLASHcref] = ACTIONS(5225), + [anon_sym_BSLASHCref] = ACTIONS(5225), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), + [anon_sym_BSLASHnamecref] = ACTIONS(5225), + [anon_sym_BSLASHnameCref] = ACTIONS(5225), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), + [anon_sym_BSLASHlabelcref] = ACTIONS(5225), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), + [anon_sym_BSLASHcrefrange] = ACTIONS(5225), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), + [anon_sym_BSLASHCrefrange] = ACTIONS(5225), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), + [anon_sym_BSLASHnewlabel] = ACTIONS(5225), + [anon_sym_BSLASHnewcommand] = ACTIONS(5225), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), + [anon_sym_BSLASHdef] = ACTIONS(5225), + [anon_sym_BSLASHlet] = ACTIONS(5225), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), + [anon_sym_BSLASHgls] = ACTIONS(5225), + [anon_sym_BSLASHGls] = ACTIONS(5225), + [anon_sym_BSLASHGLS] = ACTIONS(5225), + [anon_sym_BSLASHglspl] = ACTIONS(5225), + [anon_sym_BSLASHGlspl] = ACTIONS(5225), + [anon_sym_BSLASHGLSpl] = ACTIONS(5225), + [anon_sym_BSLASHglsdisp] = ACTIONS(5225), + [anon_sym_BSLASHglslink] = ACTIONS(5225), + [anon_sym_BSLASHglstext] = ACTIONS(5225), + [anon_sym_BSLASHGlstext] = ACTIONS(5225), + [anon_sym_BSLASHGLStext] = ACTIONS(5225), + [anon_sym_BSLASHglsfirst] = ACTIONS(5225), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), + [anon_sym_BSLASHglsplural] = ACTIONS(5225), + [anon_sym_BSLASHGlsplural] = ACTIONS(5225), + [anon_sym_BSLASHGLSplural] = ACTIONS(5225), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), + [anon_sym_BSLASHglsname] = ACTIONS(5225), + [anon_sym_BSLASHGlsname] = ACTIONS(5225), + [anon_sym_BSLASHGLSname] = ACTIONS(5225), + [anon_sym_BSLASHglssymbol] = ACTIONS(5225), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), + [anon_sym_BSLASHglsdesc] = ACTIONS(5225), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), + [anon_sym_BSLASHglsuseri] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), + [anon_sym_BSLASHglsuserii] = ACTIONS(5225), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), + [anon_sym_BSLASHglsuserv] = ACTIONS(5225), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), + [anon_sym_BSLASHglsuservi] = ACTIONS(5225), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), + [anon_sym_BSLASHnewacronym] = ACTIONS(5225), + [anon_sym_BSLASHacrshort] = ACTIONS(5225), + [anon_sym_BSLASHAcrshort] = ACTIONS(5225), + [anon_sym_BSLASHACRshort] = ACTIONS(5225), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), + [anon_sym_BSLASHacrlong] = ACTIONS(5225), + [anon_sym_BSLASHAcrlong] = ACTIONS(5225), + [anon_sym_BSLASHACRlong] = ACTIONS(5225), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), + [anon_sym_BSLASHacrfull] = ACTIONS(5225), + [anon_sym_BSLASHAcrfull] = ACTIONS(5225), + [anon_sym_BSLASHACRfull] = ACTIONS(5225), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), + [anon_sym_BSLASHacs] = ACTIONS(5225), + [anon_sym_BSLASHAcs] = ACTIONS(5225), + [anon_sym_BSLASHacsp] = ACTIONS(5225), + [anon_sym_BSLASHAcsp] = ACTIONS(5225), + [anon_sym_BSLASHacl] = ACTIONS(5225), + [anon_sym_BSLASHAcl] = ACTIONS(5225), + [anon_sym_BSLASHaclp] = ACTIONS(5225), + [anon_sym_BSLASHAclp] = ACTIONS(5225), + [anon_sym_BSLASHacf] = ACTIONS(5225), + [anon_sym_BSLASHAcf] = ACTIONS(5225), + [anon_sym_BSLASHacfp] = ACTIONS(5225), + [anon_sym_BSLASHAcfp] = ACTIONS(5225), + [anon_sym_BSLASHac] = ACTIONS(5225), + [anon_sym_BSLASHAc] = ACTIONS(5225), + [anon_sym_BSLASHacp] = ACTIONS(5225), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), + [anon_sym_BSLASHcolor] = ACTIONS(5225), + [anon_sym_BSLASHcolorbox] = ACTIONS(5225), + [anon_sym_BSLASHtextcolor] = ACTIONS(5225), + [anon_sym_BSLASHpagecolor] = ACTIONS(5225), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), + [anon_sym_BSLASHtext] = ACTIONS(5225), + [anon_sym_BSLASHintertext] = ACTIONS(5225), + [anon_sym_shortintertext] = ACTIONS(5225), }, - [1454] = { - [sym_command_name] = ACTIONS(5065), + [1392] = { + [sym_command_name] = ACTIONS(5217), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_LPAREN] = ACTIONS(5063), - [anon_sym_RPAREN] = ACTIONS(5063), - [anon_sym_LBRACK] = ACTIONS(5063), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_LBRACE] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), - [anon_sym_DOLLAR] = ACTIONS(5065), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHiffalse] = ACTIONS(5217), + [anon_sym_LPAREN] = ACTIONS(5215), + [anon_sym_RPAREN] = ACTIONS(5215), + [anon_sym_LBRACK] = ACTIONS(5215), + [anon_sym_RBRACK] = ACTIONS(5215), + [anon_sym_COMMA] = ACTIONS(5215), + [anon_sym_EQ] = ACTIONS(5215), + [anon_sym_LBRACE] = ACTIONS(5215), + [sym_word] = ACTIONS(5217), + [sym_placeholder] = ACTIONS(5215), + [anon_sym_PLUS] = ACTIONS(5217), + [anon_sym_DASH] = ACTIONS(5217), + [anon_sym_STAR] = ACTIONS(5217), + [anon_sym_SLASH] = ACTIONS(5217), + [anon_sym_CARET] = ACTIONS(5217), + [anon_sym__] = ACTIONS(5217), + [anon_sym_LT] = ACTIONS(5217), + [anon_sym_GT] = ACTIONS(5217), + [anon_sym_BANG] = ACTIONS(5217), + [anon_sym_PIPE] = ACTIONS(5217), + [anon_sym_COLON] = ACTIONS(5217), + [anon_sym_SQUOTE] = ACTIONS(5217), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5215), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5215), + [anon_sym_DOLLAR] = ACTIONS(5217), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5215), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5215), + [anon_sym_BSLASHbegin] = ACTIONS(5217), + [anon_sym_BSLASHusepackage] = ACTIONS(5217), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), + [anon_sym_BSLASHinclude] = ACTIONS(5217), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), + [anon_sym_BSLASHinput] = ACTIONS(5217), + [anon_sym_BSLASHsubfile] = ACTIONS(5217), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), + [anon_sym_BSLASHbibliography] = ACTIONS(5217), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), + [anon_sym_BSLASHincludesvg] = ACTIONS(5217), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), + [anon_sym_BSLASHimport] = ACTIONS(5217), + [anon_sym_BSLASHsubimport] = ACTIONS(5217), + [anon_sym_BSLASHinputfrom] = ACTIONS(5217), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), + [anon_sym_BSLASHincludefrom] = ACTIONS(5217), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), + [anon_sym_BSLASHcaption] = ACTIONS(5217), + [anon_sym_BSLASHcite] = ACTIONS(5217), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCite] = ACTIONS(5217), + [anon_sym_BSLASHnocite] = ACTIONS(5217), + [anon_sym_BSLASHcitet] = ACTIONS(5217), + [anon_sym_BSLASHcitep] = ACTIONS(5217), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteauthor] = ACTIONS(5217), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitetitle] = ACTIONS(5217), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteyear] = ACTIONS(5217), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), + [anon_sym_BSLASHcitedate] = ACTIONS(5217), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), + [anon_sym_BSLASHciteurl] = ACTIONS(5217), + [anon_sym_BSLASHfullcite] = ACTIONS(5217), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), + [anon_sym_BSLASHcitealt] = ACTIONS(5217), + [anon_sym_BSLASHcitealp] = ACTIONS(5217), + [anon_sym_BSLASHcitetext] = ACTIONS(5217), + [anon_sym_BSLASHparencite] = ACTIONS(5217), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHParencite] = ACTIONS(5217), + [anon_sym_BSLASHfootcite] = ACTIONS(5217), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), + [anon_sym_BSLASHtextcite] = ACTIONS(5217), + [anon_sym_BSLASHTextcite] = ACTIONS(5217), + [anon_sym_BSLASHsmartcite] = ACTIONS(5217), + [anon_sym_BSLASHSmartcite] = ACTIONS(5217), + [anon_sym_BSLASHsupercite] = ACTIONS(5217), + [anon_sym_BSLASHautocite] = ACTIONS(5217), + [anon_sym_BSLASHAutocite] = ACTIONS(5217), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), + [anon_sym_BSLASHvolcite] = ACTIONS(5217), + [anon_sym_BSLASHVolcite] = ACTIONS(5217), + [anon_sym_BSLASHpvolcite] = ACTIONS(5217), + [anon_sym_BSLASHPvolcite] = ACTIONS(5217), + [anon_sym_BSLASHfvolcite] = ACTIONS(5217), + [anon_sym_BSLASHftvolcite] = ACTIONS(5217), + [anon_sym_BSLASHsvolcite] = ACTIONS(5217), + [anon_sym_BSLASHSvolcite] = ACTIONS(5217), + [anon_sym_BSLASHtvolcite] = ACTIONS(5217), + [anon_sym_BSLASHTvolcite] = ACTIONS(5217), + [anon_sym_BSLASHavolcite] = ACTIONS(5217), + [anon_sym_BSLASHAvolcite] = ACTIONS(5217), + [anon_sym_BSLASHnotecite] = ACTIONS(5217), + [anon_sym_BSLASHNotecite] = ACTIONS(5217), + [anon_sym_BSLASHpnotecite] = ACTIONS(5217), + [anon_sym_BSLASHPnotecite] = ACTIONS(5217), + [anon_sym_BSLASHfnotecite] = ACTIONS(5217), + [anon_sym_BSLASHlabel] = ACTIONS(5217), + [anon_sym_BSLASHref] = ACTIONS(5217), + [anon_sym_BSLASHeqref] = ACTIONS(5217), + [anon_sym_BSLASHvref] = ACTIONS(5217), + [anon_sym_BSLASHVref] = ACTIONS(5217), + [anon_sym_BSLASHautoref] = ACTIONS(5217), + [anon_sym_BSLASHpageref] = ACTIONS(5217), + [anon_sym_BSLASHcref] = ACTIONS(5217), + [anon_sym_BSLASHCref] = ACTIONS(5217), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), + [anon_sym_BSLASHnamecref] = ACTIONS(5217), + [anon_sym_BSLASHnameCref] = ACTIONS(5217), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), + [anon_sym_BSLASHlabelcref] = ACTIONS(5217), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), + [anon_sym_BSLASHcrefrange] = ACTIONS(5217), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), + [anon_sym_BSLASHCrefrange] = ACTIONS(5217), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), + [anon_sym_BSLASHnewlabel] = ACTIONS(5217), + [anon_sym_BSLASHnewcommand] = ACTIONS(5217), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), + [anon_sym_BSLASHdef] = ACTIONS(5217), + [anon_sym_BSLASHlet] = ACTIONS(5217), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), + [anon_sym_BSLASHgls] = ACTIONS(5217), + [anon_sym_BSLASHGls] = ACTIONS(5217), + [anon_sym_BSLASHGLS] = ACTIONS(5217), + [anon_sym_BSLASHglspl] = ACTIONS(5217), + [anon_sym_BSLASHGlspl] = ACTIONS(5217), + [anon_sym_BSLASHGLSpl] = ACTIONS(5217), + [anon_sym_BSLASHglsdisp] = ACTIONS(5217), + [anon_sym_BSLASHglslink] = ACTIONS(5217), + [anon_sym_BSLASHglstext] = ACTIONS(5217), + [anon_sym_BSLASHGlstext] = ACTIONS(5217), + [anon_sym_BSLASHGLStext] = ACTIONS(5217), + [anon_sym_BSLASHglsfirst] = ACTIONS(5217), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), + [anon_sym_BSLASHglsplural] = ACTIONS(5217), + [anon_sym_BSLASHGlsplural] = ACTIONS(5217), + [anon_sym_BSLASHGLSplural] = ACTIONS(5217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), + [anon_sym_BSLASHglsname] = ACTIONS(5217), + [anon_sym_BSLASHGlsname] = ACTIONS(5217), + [anon_sym_BSLASHGLSname] = ACTIONS(5217), + [anon_sym_BSLASHglssymbol] = ACTIONS(5217), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), + [anon_sym_BSLASHglsdesc] = ACTIONS(5217), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), + [anon_sym_BSLASHglsuseri] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), + [anon_sym_BSLASHglsuserii] = ACTIONS(5217), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), + [anon_sym_BSLASHglsuserv] = ACTIONS(5217), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), + [anon_sym_BSLASHglsuservi] = ACTIONS(5217), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), + [anon_sym_BSLASHnewacronym] = ACTIONS(5217), + [anon_sym_BSLASHacrshort] = ACTIONS(5217), + [anon_sym_BSLASHAcrshort] = ACTIONS(5217), + [anon_sym_BSLASHACRshort] = ACTIONS(5217), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), + [anon_sym_BSLASHacrlong] = ACTIONS(5217), + [anon_sym_BSLASHAcrlong] = ACTIONS(5217), + [anon_sym_BSLASHACRlong] = ACTIONS(5217), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), + [anon_sym_BSLASHacrfull] = ACTIONS(5217), + [anon_sym_BSLASHAcrfull] = ACTIONS(5217), + [anon_sym_BSLASHACRfull] = ACTIONS(5217), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), + [anon_sym_BSLASHacs] = ACTIONS(5217), + [anon_sym_BSLASHAcs] = ACTIONS(5217), + [anon_sym_BSLASHacsp] = ACTIONS(5217), + [anon_sym_BSLASHAcsp] = ACTIONS(5217), + [anon_sym_BSLASHacl] = ACTIONS(5217), + [anon_sym_BSLASHAcl] = ACTIONS(5217), + [anon_sym_BSLASHaclp] = ACTIONS(5217), + [anon_sym_BSLASHAclp] = ACTIONS(5217), + [anon_sym_BSLASHacf] = ACTIONS(5217), + [anon_sym_BSLASHAcf] = ACTIONS(5217), + [anon_sym_BSLASHacfp] = ACTIONS(5217), + [anon_sym_BSLASHAcfp] = ACTIONS(5217), + [anon_sym_BSLASHac] = ACTIONS(5217), + [anon_sym_BSLASHAc] = ACTIONS(5217), + [anon_sym_BSLASHacp] = ACTIONS(5217), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), + [anon_sym_BSLASHcolor] = ACTIONS(5217), + [anon_sym_BSLASHcolorbox] = ACTIONS(5217), + [anon_sym_BSLASHtextcolor] = ACTIONS(5217), + [anon_sym_BSLASHpagecolor] = ACTIONS(5217), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [anon_sym_BSLASHtext] = ACTIONS(5217), + [anon_sym_BSLASHintertext] = ACTIONS(5217), + [anon_sym_shortintertext] = ACTIONS(5217), }, - [1455] = { - [sym_command_name] = ACTIONS(5061), + [1393] = { + [sym_command_name] = ACTIONS(5213), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5213), + [anon_sym_LPAREN] = ACTIONS(5211), + [anon_sym_RPAREN] = ACTIONS(5211), + [anon_sym_LBRACK] = ACTIONS(5211), + [anon_sym_RBRACK] = ACTIONS(5211), + [anon_sym_COMMA] = ACTIONS(5211), + [anon_sym_EQ] = ACTIONS(5211), + [anon_sym_LBRACE] = ACTIONS(5211), + [sym_word] = ACTIONS(5213), + [sym_placeholder] = ACTIONS(5211), + [anon_sym_PLUS] = ACTIONS(5213), + [anon_sym_DASH] = ACTIONS(5213), + [anon_sym_STAR] = ACTIONS(5213), + [anon_sym_SLASH] = ACTIONS(5213), + [anon_sym_CARET] = ACTIONS(5213), + [anon_sym__] = ACTIONS(5213), + [anon_sym_LT] = ACTIONS(5213), + [anon_sym_GT] = ACTIONS(5213), + [anon_sym_BANG] = ACTIONS(5213), + [anon_sym_PIPE] = ACTIONS(5213), + [anon_sym_COLON] = ACTIONS(5213), + [anon_sym_SQUOTE] = ACTIONS(5213), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5211), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5211), + [anon_sym_DOLLAR] = ACTIONS(5213), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5211), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5211), + [anon_sym_BSLASHbegin] = ACTIONS(5213), + [anon_sym_BSLASHusepackage] = ACTIONS(5213), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5213), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5213), + [anon_sym_BSLASHinclude] = ACTIONS(5213), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5213), + [anon_sym_BSLASHinput] = ACTIONS(5213), + [anon_sym_BSLASHsubfile] = ACTIONS(5213), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5213), + [anon_sym_BSLASHbibliography] = ACTIONS(5213), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5213), + [anon_sym_BSLASHincludesvg] = ACTIONS(5213), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5213), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5213), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5213), + [anon_sym_BSLASHimport] = ACTIONS(5213), + [anon_sym_BSLASHsubimport] = ACTIONS(5213), + [anon_sym_BSLASHinputfrom] = ACTIONS(5213), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5213), + [anon_sym_BSLASHincludefrom] = ACTIONS(5213), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5213), + [anon_sym_BSLASHcaption] = ACTIONS(5213), + [anon_sym_BSLASHcite] = ACTIONS(5213), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCite] = ACTIONS(5213), + [anon_sym_BSLASHnocite] = ACTIONS(5213), + [anon_sym_BSLASHcitet] = ACTIONS(5213), + [anon_sym_BSLASHcitep] = ACTIONS(5213), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteauthor] = ACTIONS(5213), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5213), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitetitle] = ACTIONS(5213), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteyear] = ACTIONS(5213), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5211), + [anon_sym_BSLASHcitedate] = ACTIONS(5213), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5211), + [anon_sym_BSLASHciteurl] = ACTIONS(5213), + [anon_sym_BSLASHfullcite] = ACTIONS(5213), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5213), + [anon_sym_BSLASHcitealt] = ACTIONS(5213), + [anon_sym_BSLASHcitealp] = ACTIONS(5213), + [anon_sym_BSLASHcitetext] = ACTIONS(5213), + [anon_sym_BSLASHparencite] = ACTIONS(5213), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHParencite] = ACTIONS(5213), + [anon_sym_BSLASHfootcite] = ACTIONS(5213), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5213), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5213), + [anon_sym_BSLASHtextcite] = ACTIONS(5213), + [anon_sym_BSLASHTextcite] = ACTIONS(5213), + [anon_sym_BSLASHsmartcite] = ACTIONS(5213), + [anon_sym_BSLASHSmartcite] = ACTIONS(5213), + [anon_sym_BSLASHsupercite] = ACTIONS(5213), + [anon_sym_BSLASHautocite] = ACTIONS(5213), + [anon_sym_BSLASHAutocite] = ACTIONS(5213), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5211), + [anon_sym_BSLASHvolcite] = ACTIONS(5213), + [anon_sym_BSLASHVolcite] = ACTIONS(5213), + [anon_sym_BSLASHpvolcite] = ACTIONS(5213), + [anon_sym_BSLASHPvolcite] = ACTIONS(5213), + [anon_sym_BSLASHfvolcite] = ACTIONS(5213), + [anon_sym_BSLASHftvolcite] = ACTIONS(5213), + [anon_sym_BSLASHsvolcite] = ACTIONS(5213), + [anon_sym_BSLASHSvolcite] = ACTIONS(5213), + [anon_sym_BSLASHtvolcite] = ACTIONS(5213), + [anon_sym_BSLASHTvolcite] = ACTIONS(5213), + [anon_sym_BSLASHavolcite] = ACTIONS(5213), + [anon_sym_BSLASHAvolcite] = ACTIONS(5213), + [anon_sym_BSLASHnotecite] = ACTIONS(5213), + [anon_sym_BSLASHNotecite] = ACTIONS(5213), + [anon_sym_BSLASHpnotecite] = ACTIONS(5213), + [anon_sym_BSLASHPnotecite] = ACTIONS(5213), + [anon_sym_BSLASHfnotecite] = ACTIONS(5213), + [anon_sym_BSLASHlabel] = ACTIONS(5213), + [anon_sym_BSLASHref] = ACTIONS(5213), + [anon_sym_BSLASHeqref] = ACTIONS(5213), + [anon_sym_BSLASHvref] = ACTIONS(5213), + [anon_sym_BSLASHVref] = ACTIONS(5213), + [anon_sym_BSLASHautoref] = ACTIONS(5213), + [anon_sym_BSLASHpageref] = ACTIONS(5213), + [anon_sym_BSLASHcref] = ACTIONS(5213), + [anon_sym_BSLASHCref] = ACTIONS(5213), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5211), + [anon_sym_BSLASHnamecref] = ACTIONS(5213), + [anon_sym_BSLASHnameCref] = ACTIONS(5213), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5213), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5213), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5213), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5213), + [anon_sym_BSLASHlabelcref] = ACTIONS(5213), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5213), + [anon_sym_BSLASHcrefrange] = ACTIONS(5213), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5211), + [anon_sym_BSLASHCrefrange] = ACTIONS(5213), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5211), + [anon_sym_BSLASHnewlabel] = ACTIONS(5213), + [anon_sym_BSLASHnewcommand] = ACTIONS(5213), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5213), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5213), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5211), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5213), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5211), + [anon_sym_BSLASHdef] = ACTIONS(5213), + [anon_sym_BSLASHlet] = ACTIONS(5213), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5213), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5213), + [anon_sym_BSLASHgls] = ACTIONS(5213), + [anon_sym_BSLASHGls] = ACTIONS(5213), + [anon_sym_BSLASHGLS] = ACTIONS(5213), + [anon_sym_BSLASHglspl] = ACTIONS(5213), + [anon_sym_BSLASHGlspl] = ACTIONS(5213), + [anon_sym_BSLASHGLSpl] = ACTIONS(5213), + [anon_sym_BSLASHglsdisp] = ACTIONS(5213), + [anon_sym_BSLASHglslink] = ACTIONS(5213), + [anon_sym_BSLASHglstext] = ACTIONS(5213), + [anon_sym_BSLASHGlstext] = ACTIONS(5213), + [anon_sym_BSLASHGLStext] = ACTIONS(5213), + [anon_sym_BSLASHglsfirst] = ACTIONS(5213), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5213), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5213), + [anon_sym_BSLASHglsplural] = ACTIONS(5213), + [anon_sym_BSLASHGlsplural] = ACTIONS(5213), + [anon_sym_BSLASHGLSplural] = ACTIONS(5213), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5213), + [anon_sym_BSLASHglsname] = ACTIONS(5213), + [anon_sym_BSLASHGlsname] = ACTIONS(5213), + [anon_sym_BSLASHGLSname] = ACTIONS(5213), + [anon_sym_BSLASHglssymbol] = ACTIONS(5213), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5213), + [anon_sym_BSLASHglsdesc] = ACTIONS(5213), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5213), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5213), + [anon_sym_BSLASHglsuseri] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5213), + [anon_sym_BSLASHglsuserii] = ACTIONS(5213), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5213), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5213), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5213), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5213), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5213), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5213), + [anon_sym_BSLASHglsuserv] = ACTIONS(5213), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5213), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5213), + [anon_sym_BSLASHglsuservi] = ACTIONS(5213), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5213), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5213), + [anon_sym_BSLASHnewacronym] = ACTIONS(5213), + [anon_sym_BSLASHacrshort] = ACTIONS(5213), + [anon_sym_BSLASHAcrshort] = ACTIONS(5213), + [anon_sym_BSLASHACRshort] = ACTIONS(5213), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5213), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5213), + [anon_sym_BSLASHacrlong] = ACTIONS(5213), + [anon_sym_BSLASHAcrlong] = ACTIONS(5213), + [anon_sym_BSLASHACRlong] = ACTIONS(5213), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5213), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5213), + [anon_sym_BSLASHacrfull] = ACTIONS(5213), + [anon_sym_BSLASHAcrfull] = ACTIONS(5213), + [anon_sym_BSLASHACRfull] = ACTIONS(5213), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5213), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5213), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5213), + [anon_sym_BSLASHacs] = ACTIONS(5213), + [anon_sym_BSLASHAcs] = ACTIONS(5213), + [anon_sym_BSLASHacsp] = ACTIONS(5213), + [anon_sym_BSLASHAcsp] = ACTIONS(5213), + [anon_sym_BSLASHacl] = ACTIONS(5213), + [anon_sym_BSLASHAcl] = ACTIONS(5213), + [anon_sym_BSLASHaclp] = ACTIONS(5213), + [anon_sym_BSLASHAclp] = ACTIONS(5213), + [anon_sym_BSLASHacf] = ACTIONS(5213), + [anon_sym_BSLASHAcf] = ACTIONS(5213), + [anon_sym_BSLASHacfp] = ACTIONS(5213), + [anon_sym_BSLASHAcfp] = ACTIONS(5213), + [anon_sym_BSLASHac] = ACTIONS(5213), + [anon_sym_BSLASHAc] = ACTIONS(5213), + [anon_sym_BSLASHacp] = ACTIONS(5213), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5213), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5213), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5213), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5213), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5213), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5213), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5213), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5213), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5213), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5213), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5213), + [anon_sym_BSLASHcolor] = ACTIONS(5213), + [anon_sym_BSLASHcolorbox] = ACTIONS(5213), + [anon_sym_BSLASHtextcolor] = ACTIONS(5213), + [anon_sym_BSLASHpagecolor] = ACTIONS(5213), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5213), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5213), + [anon_sym_BSLASHtext] = ACTIONS(5213), + [anon_sym_BSLASHintertext] = ACTIONS(5213), + [anon_sym_shortintertext] = ACTIONS(5213), + }, + [1394] = { + [sym_command_name] = ACTIONS(4897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4897), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_RBRACK] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_LBRACE] = ACTIONS(4895), + [sym_word] = ACTIONS(4897), + [sym_placeholder] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_STAR] = ACTIONS(4897), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_CARET] = ACTIONS(4897), + [anon_sym__] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_BANG] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_COLON] = ACTIONS(4897), + [anon_sym_SQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(4897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), + [anon_sym_BSLASHbegin] = ACTIONS(4897), + [anon_sym_BSLASHusepackage] = ACTIONS(4897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), + [anon_sym_BSLASHinclude] = ACTIONS(4897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), + [anon_sym_BSLASHinput] = ACTIONS(4897), + [anon_sym_BSLASHsubfile] = ACTIONS(4897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), + [anon_sym_BSLASHbibliography] = ACTIONS(4897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), + [anon_sym_BSLASHincludesvg] = ACTIONS(4897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), + [anon_sym_BSLASHimport] = ACTIONS(4897), + [anon_sym_BSLASHsubimport] = ACTIONS(4897), + [anon_sym_BSLASHinputfrom] = ACTIONS(4897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), + [anon_sym_BSLASHincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHcaption] = ACTIONS(4897), + [anon_sym_BSLASHcite] = ACTIONS(4897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCite] = ACTIONS(4897), + [anon_sym_BSLASHnocite] = ACTIONS(4897), + [anon_sym_BSLASHcitet] = ACTIONS(4897), + [anon_sym_BSLASHcitep] = ACTIONS(4897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteauthor] = ACTIONS(4897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitetitle] = ACTIONS(4897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteyear] = ACTIONS(4897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitedate] = ACTIONS(4897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteurl] = ACTIONS(4897), + [anon_sym_BSLASHfullcite] = ACTIONS(4897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), + [anon_sym_BSLASHcitealt] = ACTIONS(4897), + [anon_sym_BSLASHcitealp] = ACTIONS(4897), + [anon_sym_BSLASHcitetext] = ACTIONS(4897), + [anon_sym_BSLASHparencite] = ACTIONS(4897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHParencite] = ACTIONS(4897), + [anon_sym_BSLASHfootcite] = ACTIONS(4897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), + [anon_sym_BSLASHtextcite] = ACTIONS(4897), + [anon_sym_BSLASHTextcite] = ACTIONS(4897), + [anon_sym_BSLASHsmartcite] = ACTIONS(4897), + [anon_sym_BSLASHSmartcite] = ACTIONS(4897), + [anon_sym_BSLASHsupercite] = ACTIONS(4897), + [anon_sym_BSLASHautocite] = ACTIONS(4897), + [anon_sym_BSLASHAutocite] = ACTIONS(4897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHvolcite] = ACTIONS(4897), + [anon_sym_BSLASHVolcite] = ACTIONS(4897), + [anon_sym_BSLASHpvolcite] = ACTIONS(4897), + [anon_sym_BSLASHPvolcite] = ACTIONS(4897), + [anon_sym_BSLASHfvolcite] = ACTIONS(4897), + [anon_sym_BSLASHftvolcite] = ACTIONS(4897), + [anon_sym_BSLASHsvolcite] = ACTIONS(4897), + [anon_sym_BSLASHSvolcite] = ACTIONS(4897), + [anon_sym_BSLASHtvolcite] = ACTIONS(4897), + [anon_sym_BSLASHTvolcite] = ACTIONS(4897), + [anon_sym_BSLASHavolcite] = ACTIONS(4897), + [anon_sym_BSLASHAvolcite] = ACTIONS(4897), + [anon_sym_BSLASHnotecite] = ACTIONS(4897), + [anon_sym_BSLASHNotecite] = ACTIONS(4897), + [anon_sym_BSLASHpnotecite] = ACTIONS(4897), + [anon_sym_BSLASHPnotecite] = ACTIONS(4897), + [anon_sym_BSLASHfnotecite] = ACTIONS(4897), + [anon_sym_BSLASHlabel] = ACTIONS(4897), + [anon_sym_BSLASHref] = ACTIONS(4897), + [anon_sym_BSLASHeqref] = ACTIONS(4897), + [anon_sym_BSLASHvref] = ACTIONS(4897), + [anon_sym_BSLASHVref] = ACTIONS(4897), + [anon_sym_BSLASHautoref] = ACTIONS(4897), + [anon_sym_BSLASHpageref] = ACTIONS(4897), + [anon_sym_BSLASHcref] = ACTIONS(4897), + [anon_sym_BSLASHCref] = ACTIONS(4897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnameCref] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHlabelcref] = ACTIONS(4897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCrefrange] = ACTIONS(4897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnewlabel] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), + [anon_sym_BSLASHdef] = ACTIONS(4897), + [anon_sym_BSLASHlet] = ACTIONS(4897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), + [anon_sym_BSLASHgls] = ACTIONS(4897), + [anon_sym_BSLASHGls] = ACTIONS(4897), + [anon_sym_BSLASHGLS] = ACTIONS(4897), + [anon_sym_BSLASHglspl] = ACTIONS(4897), + [anon_sym_BSLASHGlspl] = ACTIONS(4897), + [anon_sym_BSLASHGLSpl] = ACTIONS(4897), + [anon_sym_BSLASHglsdisp] = ACTIONS(4897), + [anon_sym_BSLASHglslink] = ACTIONS(4897), + [anon_sym_BSLASHglstext] = ACTIONS(4897), + [anon_sym_BSLASHGlstext] = ACTIONS(4897), + [anon_sym_BSLASHGLStext] = ACTIONS(4897), + [anon_sym_BSLASHglsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), + [anon_sym_BSLASHglsplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSplural] = ACTIONS(4897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHglsname] = ACTIONS(4897), + [anon_sym_BSLASHGlsname] = ACTIONS(4897), + [anon_sym_BSLASHGLSname] = ACTIONS(4897), + [anon_sym_BSLASHglssymbol] = ACTIONS(4897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), + [anon_sym_BSLASHglsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), + [anon_sym_BSLASHglsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), + [anon_sym_BSLASHglsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), + [anon_sym_BSLASHglsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), + [anon_sym_BSLASHglsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), + [anon_sym_BSLASHnewacronym] = ACTIONS(4897), + [anon_sym_BSLASHacrshort] = ACTIONS(4897), + [anon_sym_BSLASHAcrshort] = ACTIONS(4897), + [anon_sym_BSLASHACRshort] = ACTIONS(4897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), + [anon_sym_BSLASHacrlong] = ACTIONS(4897), + [anon_sym_BSLASHAcrlong] = ACTIONS(4897), + [anon_sym_BSLASHACRlong] = ACTIONS(4897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), + [anon_sym_BSLASHacrfull] = ACTIONS(4897), + [anon_sym_BSLASHAcrfull] = ACTIONS(4897), + [anon_sym_BSLASHACRfull] = ACTIONS(4897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), + [anon_sym_BSLASHacs] = ACTIONS(4897), + [anon_sym_BSLASHAcs] = ACTIONS(4897), + [anon_sym_BSLASHacsp] = ACTIONS(4897), + [anon_sym_BSLASHAcsp] = ACTIONS(4897), + [anon_sym_BSLASHacl] = ACTIONS(4897), + [anon_sym_BSLASHAcl] = ACTIONS(4897), + [anon_sym_BSLASHaclp] = ACTIONS(4897), + [anon_sym_BSLASHAclp] = ACTIONS(4897), + [anon_sym_BSLASHacf] = ACTIONS(4897), + [anon_sym_BSLASHAcf] = ACTIONS(4897), + [anon_sym_BSLASHacfp] = ACTIONS(4897), + [anon_sym_BSLASHAcfp] = ACTIONS(4897), + [anon_sym_BSLASHac] = ACTIONS(4897), + [anon_sym_BSLASHAc] = ACTIONS(4897), + [anon_sym_BSLASHacp] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), + [anon_sym_BSLASHcolor] = ACTIONS(4897), + [anon_sym_BSLASHcolorbox] = ACTIONS(4897), + [anon_sym_BSLASHtextcolor] = ACTIONS(4897), + [anon_sym_BSLASHpagecolor] = ACTIONS(4897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), + [anon_sym_BSLASHtext] = ACTIONS(4897), + [anon_sym_BSLASHintertext] = ACTIONS(4897), + [anon_sym_shortintertext] = ACTIONS(4897), + }, + [1395] = { + [sym_command_name] = ACTIONS(4973), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4971), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), + [anon_sym_RBRACK] = ACTIONS(4971), + [anon_sym_COMMA] = ACTIONS(4971), + [anon_sym_EQ] = ACTIONS(4971), + [anon_sym_LBRACE] = ACTIONS(4971), + [sym_word] = ACTIONS(4973), + [sym_placeholder] = ACTIONS(4971), + [anon_sym_PLUS] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym__] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4973), + [anon_sym_GT] = ACTIONS(4973), + [anon_sym_BANG] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_SQUOTE] = ACTIONS(4973), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), + [anon_sym_DOLLAR] = ACTIONS(4973), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), + [anon_sym_BSLASHbegin] = ACTIONS(4973), + [anon_sym_BSLASHusepackage] = ACTIONS(4973), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), + [anon_sym_BSLASHinclude] = ACTIONS(4973), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), + [anon_sym_BSLASHinput] = ACTIONS(4973), + [anon_sym_BSLASHsubfile] = ACTIONS(4973), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), + [anon_sym_BSLASHbibliography] = ACTIONS(4973), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), + [anon_sym_BSLASHincludesvg] = ACTIONS(4973), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), + [anon_sym_BSLASHimport] = ACTIONS(4973), + [anon_sym_BSLASHsubimport] = ACTIONS(4973), + [anon_sym_BSLASHinputfrom] = ACTIONS(4973), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), + [anon_sym_BSLASHincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHcaption] = ACTIONS(4973), + [anon_sym_BSLASHcite] = ACTIONS(4973), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCite] = ACTIONS(4973), + [anon_sym_BSLASHnocite] = ACTIONS(4973), + [anon_sym_BSLASHcitet] = ACTIONS(4973), + [anon_sym_BSLASHcitep] = ACTIONS(4973), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteauthor] = ACTIONS(4973), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitetitle] = ACTIONS(4973), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteyear] = ACTIONS(4973), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitedate] = ACTIONS(4973), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteurl] = ACTIONS(4973), + [anon_sym_BSLASHfullcite] = ACTIONS(4973), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), + [anon_sym_BSLASHcitealt] = ACTIONS(4973), + [anon_sym_BSLASHcitealp] = ACTIONS(4973), + [anon_sym_BSLASHcitetext] = ACTIONS(4973), + [anon_sym_BSLASHparencite] = ACTIONS(4973), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHParencite] = ACTIONS(4973), + [anon_sym_BSLASHfootcite] = ACTIONS(4973), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), + [anon_sym_BSLASHtextcite] = ACTIONS(4973), + [anon_sym_BSLASHTextcite] = ACTIONS(4973), + [anon_sym_BSLASHsmartcite] = ACTIONS(4973), + [anon_sym_BSLASHSmartcite] = ACTIONS(4973), + [anon_sym_BSLASHsupercite] = ACTIONS(4973), + [anon_sym_BSLASHautocite] = ACTIONS(4973), + [anon_sym_BSLASHAutocite] = ACTIONS(4973), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHvolcite] = ACTIONS(4973), + [anon_sym_BSLASHVolcite] = ACTIONS(4973), + [anon_sym_BSLASHpvolcite] = ACTIONS(4973), + [anon_sym_BSLASHPvolcite] = ACTIONS(4973), + [anon_sym_BSLASHfvolcite] = ACTIONS(4973), + [anon_sym_BSLASHftvolcite] = ACTIONS(4973), + [anon_sym_BSLASHsvolcite] = ACTIONS(4973), + [anon_sym_BSLASHSvolcite] = ACTIONS(4973), + [anon_sym_BSLASHtvolcite] = ACTIONS(4973), + [anon_sym_BSLASHTvolcite] = ACTIONS(4973), + [anon_sym_BSLASHavolcite] = ACTIONS(4973), + [anon_sym_BSLASHAvolcite] = ACTIONS(4973), + [anon_sym_BSLASHnotecite] = ACTIONS(4973), + [anon_sym_BSLASHNotecite] = ACTIONS(4973), + [anon_sym_BSLASHpnotecite] = ACTIONS(4973), + [anon_sym_BSLASHPnotecite] = ACTIONS(4973), + [anon_sym_BSLASHfnotecite] = ACTIONS(4973), + [anon_sym_BSLASHlabel] = ACTIONS(4973), + [anon_sym_BSLASHref] = ACTIONS(4973), + [anon_sym_BSLASHeqref] = ACTIONS(4973), + [anon_sym_BSLASHvref] = ACTIONS(4973), + [anon_sym_BSLASHVref] = ACTIONS(4973), + [anon_sym_BSLASHautoref] = ACTIONS(4973), + [anon_sym_BSLASHpageref] = ACTIONS(4973), + [anon_sym_BSLASHcref] = ACTIONS(4973), + [anon_sym_BSLASHCref] = ACTIONS(4973), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnameCref] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHlabelcref] = ACTIONS(4973), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCrefrange] = ACTIONS(4973), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnewlabel] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), + [anon_sym_BSLASHdef] = ACTIONS(4973), + [anon_sym_BSLASHlet] = ACTIONS(4973), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), + [anon_sym_BSLASHgls] = ACTIONS(4973), + [anon_sym_BSLASHGls] = ACTIONS(4973), + [anon_sym_BSLASHGLS] = ACTIONS(4973), + [anon_sym_BSLASHglspl] = ACTIONS(4973), + [anon_sym_BSLASHGlspl] = ACTIONS(4973), + [anon_sym_BSLASHGLSpl] = ACTIONS(4973), + [anon_sym_BSLASHglsdisp] = ACTIONS(4973), + [anon_sym_BSLASHglslink] = ACTIONS(4973), + [anon_sym_BSLASHglstext] = ACTIONS(4973), + [anon_sym_BSLASHGlstext] = ACTIONS(4973), + [anon_sym_BSLASHGLStext] = ACTIONS(4973), + [anon_sym_BSLASHglsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), + [anon_sym_BSLASHglsplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSplural] = ACTIONS(4973), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHglsname] = ACTIONS(4973), + [anon_sym_BSLASHGlsname] = ACTIONS(4973), + [anon_sym_BSLASHGLSname] = ACTIONS(4973), + [anon_sym_BSLASHglssymbol] = ACTIONS(4973), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), + [anon_sym_BSLASHglsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), + [anon_sym_BSLASHglsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), + [anon_sym_BSLASHglsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), + [anon_sym_BSLASHglsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), + [anon_sym_BSLASHglsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), + [anon_sym_BSLASHnewacronym] = ACTIONS(4973), + [anon_sym_BSLASHacrshort] = ACTIONS(4973), + [anon_sym_BSLASHAcrshort] = ACTIONS(4973), + [anon_sym_BSLASHACRshort] = ACTIONS(4973), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), + [anon_sym_BSLASHacrlong] = ACTIONS(4973), + [anon_sym_BSLASHAcrlong] = ACTIONS(4973), + [anon_sym_BSLASHACRlong] = ACTIONS(4973), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), + [anon_sym_BSLASHacrfull] = ACTIONS(4973), + [anon_sym_BSLASHAcrfull] = ACTIONS(4973), + [anon_sym_BSLASHACRfull] = ACTIONS(4973), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), + [anon_sym_BSLASHacs] = ACTIONS(4973), + [anon_sym_BSLASHAcs] = ACTIONS(4973), + [anon_sym_BSLASHacsp] = ACTIONS(4973), + [anon_sym_BSLASHAcsp] = ACTIONS(4973), + [anon_sym_BSLASHacl] = ACTIONS(4973), + [anon_sym_BSLASHAcl] = ACTIONS(4973), + [anon_sym_BSLASHaclp] = ACTIONS(4973), + [anon_sym_BSLASHAclp] = ACTIONS(4973), + [anon_sym_BSLASHacf] = ACTIONS(4973), + [anon_sym_BSLASHAcf] = ACTIONS(4973), + [anon_sym_BSLASHacfp] = ACTIONS(4973), + [anon_sym_BSLASHAcfp] = ACTIONS(4973), + [anon_sym_BSLASHac] = ACTIONS(4973), + [anon_sym_BSLASHAc] = ACTIONS(4973), + [anon_sym_BSLASHacp] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), + [anon_sym_BSLASHcolor] = ACTIONS(4973), + [anon_sym_BSLASHcolorbox] = ACTIONS(4973), + [anon_sym_BSLASHtextcolor] = ACTIONS(4973), + [anon_sym_BSLASHpagecolor] = ACTIONS(4973), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), + [anon_sym_BSLASHtext] = ACTIONS(4973), + [anon_sym_BSLASHintertext] = ACTIONS(4973), + [anon_sym_shortintertext] = ACTIONS(4973), + }, + [1396] = { + [sym_command_name] = ACTIONS(5205), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_LPAREN] = ACTIONS(5059), - [anon_sym_RPAREN] = ACTIONS(5059), - [anon_sym_LBRACK] = ACTIONS(5059), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_LBRACE] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5059), - [anon_sym_DOLLAR] = ACTIONS(5061), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5059), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5059), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [anon_sym_BSLASHiffalse] = ACTIONS(5205), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_RPAREN] = ACTIONS(5203), + [anon_sym_LBRACK] = ACTIONS(5203), + [anon_sym_RBRACK] = ACTIONS(5203), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_EQ] = ACTIONS(5203), + [anon_sym_LBRACE] = ACTIONS(5203), + [sym_word] = ACTIONS(5205), + [sym_placeholder] = ACTIONS(5203), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_CARET] = ACTIONS(5205), + [anon_sym__] = ACTIONS(5205), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_PIPE] = ACTIONS(5205), + [anon_sym_COLON] = ACTIONS(5205), + [anon_sym_SQUOTE] = ACTIONS(5205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), + [anon_sym_BSLASHbegin] = ACTIONS(5205), + [anon_sym_BSLASHusepackage] = ACTIONS(5205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), + [anon_sym_BSLASHinclude] = ACTIONS(5205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), + [anon_sym_BSLASHinput] = ACTIONS(5205), + [anon_sym_BSLASHsubfile] = ACTIONS(5205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), + [anon_sym_BSLASHbibliography] = ACTIONS(5205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), + [anon_sym_BSLASHincludesvg] = ACTIONS(5205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), + [anon_sym_BSLASHimport] = ACTIONS(5205), + [anon_sym_BSLASHsubimport] = ACTIONS(5205), + [anon_sym_BSLASHinputfrom] = ACTIONS(5205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), + [anon_sym_BSLASHincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHcaption] = ACTIONS(5205), + [anon_sym_BSLASHcite] = ACTIONS(5205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCite] = ACTIONS(5205), + [anon_sym_BSLASHnocite] = ACTIONS(5205), + [anon_sym_BSLASHcitet] = ACTIONS(5205), + [anon_sym_BSLASHcitep] = ACTIONS(5205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteauthor] = ACTIONS(5205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitetitle] = ACTIONS(5205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteyear] = ACTIONS(5205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitedate] = ACTIONS(5205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteurl] = ACTIONS(5205), + [anon_sym_BSLASHfullcite] = ACTIONS(5205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), + [anon_sym_BSLASHcitealt] = ACTIONS(5205), + [anon_sym_BSLASHcitealp] = ACTIONS(5205), + [anon_sym_BSLASHcitetext] = ACTIONS(5205), + [anon_sym_BSLASHparencite] = ACTIONS(5205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHParencite] = ACTIONS(5205), + [anon_sym_BSLASHfootcite] = ACTIONS(5205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), + [anon_sym_BSLASHtextcite] = ACTIONS(5205), + [anon_sym_BSLASHTextcite] = ACTIONS(5205), + [anon_sym_BSLASHsmartcite] = ACTIONS(5205), + [anon_sym_BSLASHSmartcite] = ACTIONS(5205), + [anon_sym_BSLASHsupercite] = ACTIONS(5205), + [anon_sym_BSLASHautocite] = ACTIONS(5205), + [anon_sym_BSLASHAutocite] = ACTIONS(5205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHvolcite] = ACTIONS(5205), + [anon_sym_BSLASHVolcite] = ACTIONS(5205), + [anon_sym_BSLASHpvolcite] = ACTIONS(5205), + [anon_sym_BSLASHPvolcite] = ACTIONS(5205), + [anon_sym_BSLASHfvolcite] = ACTIONS(5205), + [anon_sym_BSLASHftvolcite] = ACTIONS(5205), + [anon_sym_BSLASHsvolcite] = ACTIONS(5205), + [anon_sym_BSLASHSvolcite] = ACTIONS(5205), + [anon_sym_BSLASHtvolcite] = ACTIONS(5205), + [anon_sym_BSLASHTvolcite] = ACTIONS(5205), + [anon_sym_BSLASHavolcite] = ACTIONS(5205), + [anon_sym_BSLASHAvolcite] = ACTIONS(5205), + [anon_sym_BSLASHnotecite] = ACTIONS(5205), + [anon_sym_BSLASHNotecite] = ACTIONS(5205), + [anon_sym_BSLASHpnotecite] = ACTIONS(5205), + [anon_sym_BSLASHPnotecite] = ACTIONS(5205), + [anon_sym_BSLASHfnotecite] = ACTIONS(5205), + [anon_sym_BSLASHlabel] = ACTIONS(5205), + [anon_sym_BSLASHref] = ACTIONS(5205), + [anon_sym_BSLASHeqref] = ACTIONS(5205), + [anon_sym_BSLASHvref] = ACTIONS(5205), + [anon_sym_BSLASHVref] = ACTIONS(5205), + [anon_sym_BSLASHautoref] = ACTIONS(5205), + [anon_sym_BSLASHpageref] = ACTIONS(5205), + [anon_sym_BSLASHcref] = ACTIONS(5205), + [anon_sym_BSLASHCref] = ACTIONS(5205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnameCref] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHlabelcref] = ACTIONS(5205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCrefrange] = ACTIONS(5205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnewlabel] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), + [anon_sym_BSLASHdef] = ACTIONS(5205), + [anon_sym_BSLASHlet] = ACTIONS(5205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), + [anon_sym_BSLASHgls] = ACTIONS(5205), + [anon_sym_BSLASHGls] = ACTIONS(5205), + [anon_sym_BSLASHGLS] = ACTIONS(5205), + [anon_sym_BSLASHglspl] = ACTIONS(5205), + [anon_sym_BSLASHGlspl] = ACTIONS(5205), + [anon_sym_BSLASHGLSpl] = ACTIONS(5205), + [anon_sym_BSLASHglsdisp] = ACTIONS(5205), + [anon_sym_BSLASHglslink] = ACTIONS(5205), + [anon_sym_BSLASHglstext] = ACTIONS(5205), + [anon_sym_BSLASHGlstext] = ACTIONS(5205), + [anon_sym_BSLASHGLStext] = ACTIONS(5205), + [anon_sym_BSLASHglsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), + [anon_sym_BSLASHglsplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSplural] = ACTIONS(5205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHglsname] = ACTIONS(5205), + [anon_sym_BSLASHGlsname] = ACTIONS(5205), + [anon_sym_BSLASHGLSname] = ACTIONS(5205), + [anon_sym_BSLASHglssymbol] = ACTIONS(5205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), + [anon_sym_BSLASHglsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), + [anon_sym_BSLASHglsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), + [anon_sym_BSLASHglsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), + [anon_sym_BSLASHglsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), + [anon_sym_BSLASHglsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), + [anon_sym_BSLASHnewacronym] = ACTIONS(5205), + [anon_sym_BSLASHacrshort] = ACTIONS(5205), + [anon_sym_BSLASHAcrshort] = ACTIONS(5205), + [anon_sym_BSLASHACRshort] = ACTIONS(5205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), + [anon_sym_BSLASHacrlong] = ACTIONS(5205), + [anon_sym_BSLASHAcrlong] = ACTIONS(5205), + [anon_sym_BSLASHACRlong] = ACTIONS(5205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), + [anon_sym_BSLASHacrfull] = ACTIONS(5205), + [anon_sym_BSLASHAcrfull] = ACTIONS(5205), + [anon_sym_BSLASHACRfull] = ACTIONS(5205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), + [anon_sym_BSLASHacs] = ACTIONS(5205), + [anon_sym_BSLASHAcs] = ACTIONS(5205), + [anon_sym_BSLASHacsp] = ACTIONS(5205), + [anon_sym_BSLASHAcsp] = ACTIONS(5205), + [anon_sym_BSLASHacl] = ACTIONS(5205), + [anon_sym_BSLASHAcl] = ACTIONS(5205), + [anon_sym_BSLASHaclp] = ACTIONS(5205), + [anon_sym_BSLASHAclp] = ACTIONS(5205), + [anon_sym_BSLASHacf] = ACTIONS(5205), + [anon_sym_BSLASHAcf] = ACTIONS(5205), + [anon_sym_BSLASHacfp] = ACTIONS(5205), + [anon_sym_BSLASHAcfp] = ACTIONS(5205), + [anon_sym_BSLASHac] = ACTIONS(5205), + [anon_sym_BSLASHAc] = ACTIONS(5205), + [anon_sym_BSLASHacp] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), + [anon_sym_BSLASHcolor] = ACTIONS(5205), + [anon_sym_BSLASHcolorbox] = ACTIONS(5205), + [anon_sym_BSLASHtextcolor] = ACTIONS(5205), + [anon_sym_BSLASHpagecolor] = ACTIONS(5205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), + [anon_sym_BSLASHtext] = ACTIONS(5205), + [anon_sym_BSLASHintertext] = ACTIONS(5205), + [anon_sym_shortintertext] = ACTIONS(5205), }, - [1456] = { - [sym_command_name] = ACTIONS(5057), + [1397] = { + [sym_command_name] = ACTIONS(5145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_RPAREN] = ACTIONS(5143), + [anon_sym_LBRACK] = ACTIONS(5143), + [anon_sym_RBRACK] = ACTIONS(5143), + [anon_sym_COMMA] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5143), + [sym_word] = ACTIONS(5145), + [sym_placeholder] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym__] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5145), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), + [anon_sym_DOLLAR] = ACTIONS(5145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), + [anon_sym_BSLASHbegin] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5145), + [anon_sym_BSLASHinclude] = ACTIONS(5145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5145), + [anon_sym_BSLASHinput] = ACTIONS(5145), + [anon_sym_BSLASHsubfile] = ACTIONS(5145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5145), + [anon_sym_BSLASHbibliography] = ACTIONS(5145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5145), + [anon_sym_BSLASHincludesvg] = ACTIONS(5145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5145), + [anon_sym_BSLASHimport] = ACTIONS(5145), + [anon_sym_BSLASHsubimport] = ACTIONS(5145), + [anon_sym_BSLASHinputfrom] = ACTIONS(5145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5145), + [anon_sym_BSLASHincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHcaption] = ACTIONS(5145), + [anon_sym_BSLASHcite] = ACTIONS(5145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCite] = ACTIONS(5145), + [anon_sym_BSLASHnocite] = ACTIONS(5145), + [anon_sym_BSLASHcitet] = ACTIONS(5145), + [anon_sym_BSLASHcitep] = ACTIONS(5145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteauthor] = ACTIONS(5145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitetitle] = ACTIONS(5145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteyear] = ACTIONS(5145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitedate] = ACTIONS(5145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteurl] = ACTIONS(5145), + [anon_sym_BSLASHfullcite] = ACTIONS(5145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5145), + [anon_sym_BSLASHcitealt] = ACTIONS(5145), + [anon_sym_BSLASHcitealp] = ACTIONS(5145), + [anon_sym_BSLASHcitetext] = ACTIONS(5145), + [anon_sym_BSLASHparencite] = ACTIONS(5145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHParencite] = ACTIONS(5145), + [anon_sym_BSLASHfootcite] = ACTIONS(5145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5145), + [anon_sym_BSLASHtextcite] = ACTIONS(5145), + [anon_sym_BSLASHTextcite] = ACTIONS(5145), + [anon_sym_BSLASHsmartcite] = ACTIONS(5145), + [anon_sym_BSLASHSmartcite] = ACTIONS(5145), + [anon_sym_BSLASHsupercite] = ACTIONS(5145), + [anon_sym_BSLASHautocite] = ACTIONS(5145), + [anon_sym_BSLASHAutocite] = ACTIONS(5145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHvolcite] = ACTIONS(5145), + [anon_sym_BSLASHVolcite] = ACTIONS(5145), + [anon_sym_BSLASHpvolcite] = ACTIONS(5145), + [anon_sym_BSLASHPvolcite] = ACTIONS(5145), + [anon_sym_BSLASHfvolcite] = ACTIONS(5145), + [anon_sym_BSLASHftvolcite] = ACTIONS(5145), + [anon_sym_BSLASHsvolcite] = ACTIONS(5145), + [anon_sym_BSLASHSvolcite] = ACTIONS(5145), + [anon_sym_BSLASHtvolcite] = ACTIONS(5145), + [anon_sym_BSLASHTvolcite] = ACTIONS(5145), + [anon_sym_BSLASHavolcite] = ACTIONS(5145), + [anon_sym_BSLASHAvolcite] = ACTIONS(5145), + [anon_sym_BSLASHnotecite] = ACTIONS(5145), + [anon_sym_BSLASHNotecite] = ACTIONS(5145), + [anon_sym_BSLASHpnotecite] = ACTIONS(5145), + [anon_sym_BSLASHPnotecite] = ACTIONS(5145), + [anon_sym_BSLASHfnotecite] = ACTIONS(5145), + [anon_sym_BSLASHlabel] = ACTIONS(5145), + [anon_sym_BSLASHref] = ACTIONS(5145), + [anon_sym_BSLASHeqref] = ACTIONS(5145), + [anon_sym_BSLASHvref] = ACTIONS(5145), + [anon_sym_BSLASHVref] = ACTIONS(5145), + [anon_sym_BSLASHautoref] = ACTIONS(5145), + [anon_sym_BSLASHpageref] = ACTIONS(5145), + [anon_sym_BSLASHcref] = ACTIONS(5145), + [anon_sym_BSLASHCref] = ACTIONS(5145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnameCref] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHlabelcref] = ACTIONS(5145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCrefrange] = ACTIONS(5145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnewlabel] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), + [anon_sym_BSLASHdef] = ACTIONS(5145), + [anon_sym_BSLASHlet] = ACTIONS(5145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5145), + [anon_sym_BSLASHgls] = ACTIONS(5145), + [anon_sym_BSLASHGls] = ACTIONS(5145), + [anon_sym_BSLASHGLS] = ACTIONS(5145), + [anon_sym_BSLASHglspl] = ACTIONS(5145), + [anon_sym_BSLASHGlspl] = ACTIONS(5145), + [anon_sym_BSLASHGLSpl] = ACTIONS(5145), + [anon_sym_BSLASHglsdisp] = ACTIONS(5145), + [anon_sym_BSLASHglslink] = ACTIONS(5145), + [anon_sym_BSLASHglstext] = ACTIONS(5145), + [anon_sym_BSLASHGlstext] = ACTIONS(5145), + [anon_sym_BSLASHGLStext] = ACTIONS(5145), + [anon_sym_BSLASHglsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5145), + [anon_sym_BSLASHglsplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSplural] = ACTIONS(5145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHglsname] = ACTIONS(5145), + [anon_sym_BSLASHGlsname] = ACTIONS(5145), + [anon_sym_BSLASHGLSname] = ACTIONS(5145), + [anon_sym_BSLASHglssymbol] = ACTIONS(5145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5145), + [anon_sym_BSLASHglsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5145), + [anon_sym_BSLASHglsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5145), + [anon_sym_BSLASHglsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5145), + [anon_sym_BSLASHglsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5145), + [anon_sym_BSLASHglsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5145), + [anon_sym_BSLASHnewacronym] = ACTIONS(5145), + [anon_sym_BSLASHacrshort] = ACTIONS(5145), + [anon_sym_BSLASHAcrshort] = ACTIONS(5145), + [anon_sym_BSLASHACRshort] = ACTIONS(5145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5145), + [anon_sym_BSLASHacrlong] = ACTIONS(5145), + [anon_sym_BSLASHAcrlong] = ACTIONS(5145), + [anon_sym_BSLASHACRlong] = ACTIONS(5145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5145), + [anon_sym_BSLASHacrfull] = ACTIONS(5145), + [anon_sym_BSLASHAcrfull] = ACTIONS(5145), + [anon_sym_BSLASHACRfull] = ACTIONS(5145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5145), + [anon_sym_BSLASHacs] = ACTIONS(5145), + [anon_sym_BSLASHAcs] = ACTIONS(5145), + [anon_sym_BSLASHacsp] = ACTIONS(5145), + [anon_sym_BSLASHAcsp] = ACTIONS(5145), + [anon_sym_BSLASHacl] = ACTIONS(5145), + [anon_sym_BSLASHAcl] = ACTIONS(5145), + [anon_sym_BSLASHaclp] = ACTIONS(5145), + [anon_sym_BSLASHAclp] = ACTIONS(5145), + [anon_sym_BSLASHacf] = ACTIONS(5145), + [anon_sym_BSLASHAcf] = ACTIONS(5145), + [anon_sym_BSLASHacfp] = ACTIONS(5145), + [anon_sym_BSLASHAcfp] = ACTIONS(5145), + [anon_sym_BSLASHac] = ACTIONS(5145), + [anon_sym_BSLASHAc] = ACTIONS(5145), + [anon_sym_BSLASHacp] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5145), + [anon_sym_BSLASHcolor] = ACTIONS(5145), + [anon_sym_BSLASHcolorbox] = ACTIONS(5145), + [anon_sym_BSLASHtextcolor] = ACTIONS(5145), + [anon_sym_BSLASHpagecolor] = ACTIONS(5145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5145), + [anon_sym_BSLASHtext] = ACTIONS(5145), + [anon_sym_BSLASHintertext] = ACTIONS(5145), + [anon_sym_shortintertext] = ACTIONS(5145), + }, + [1398] = { + [sym_brack_group_text] = STATE(1419), + [sym_command_name] = ACTIONS(4857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4857), + [anon_sym_LPAREN] = ACTIONS(4855), + [anon_sym_RPAREN] = ACTIONS(4855), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_RBRACK] = ACTIONS(4855), + [anon_sym_COMMA] = ACTIONS(4855), + [anon_sym_LBRACE] = ACTIONS(4855), + [anon_sym_RBRACE] = ACTIONS(4855), + [sym_word] = ACTIONS(4857), + [sym_placeholder] = ACTIONS(4855), + [anon_sym_PLUS] = ACTIONS(4857), + [anon_sym_DASH] = ACTIONS(4857), + [anon_sym_STAR] = ACTIONS(4857), + [anon_sym_SLASH] = ACTIONS(4857), + [anon_sym_CARET] = ACTIONS(4857), + [anon_sym__] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_BANG] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_COLON] = ACTIONS(4857), + [anon_sym_SQUOTE] = ACTIONS(4857), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4855), + [anon_sym_DOLLAR] = ACTIONS(4857), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4855), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4855), + [anon_sym_BSLASHusepackage] = ACTIONS(4857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), + [anon_sym_BSLASHinclude] = ACTIONS(4857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), + [anon_sym_BSLASHinput] = ACTIONS(4857), + [anon_sym_BSLASHsubfile] = ACTIONS(4857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), + [anon_sym_BSLASHbibliography] = ACTIONS(4857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), + [anon_sym_BSLASHincludesvg] = ACTIONS(4857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), + [anon_sym_BSLASHimport] = ACTIONS(4857), + [anon_sym_BSLASHsubimport] = ACTIONS(4857), + [anon_sym_BSLASHinputfrom] = ACTIONS(4857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), + [anon_sym_BSLASHincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHcaption] = ACTIONS(4857), + [anon_sym_BSLASHcite] = ACTIONS(4857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCite] = ACTIONS(4857), + [anon_sym_BSLASHnocite] = ACTIONS(4857), + [anon_sym_BSLASHcitet] = ACTIONS(4857), + [anon_sym_BSLASHcitep] = ACTIONS(4857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteauthor] = ACTIONS(4857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitetitle] = ACTIONS(4857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteyear] = ACTIONS(4857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitedate] = ACTIONS(4857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteurl] = ACTIONS(4857), + [anon_sym_BSLASHfullcite] = ACTIONS(4857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), + [anon_sym_BSLASHcitealt] = ACTIONS(4857), + [anon_sym_BSLASHcitealp] = ACTIONS(4857), + [anon_sym_BSLASHcitetext] = ACTIONS(4857), + [anon_sym_BSLASHparencite] = ACTIONS(4857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHParencite] = ACTIONS(4857), + [anon_sym_BSLASHfootcite] = ACTIONS(4857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), + [anon_sym_BSLASHtextcite] = ACTIONS(4857), + [anon_sym_BSLASHTextcite] = ACTIONS(4857), + [anon_sym_BSLASHsmartcite] = ACTIONS(4857), + [anon_sym_BSLASHSmartcite] = ACTIONS(4857), + [anon_sym_BSLASHsupercite] = ACTIONS(4857), + [anon_sym_BSLASHautocite] = ACTIONS(4857), + [anon_sym_BSLASHAutocite] = ACTIONS(4857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHvolcite] = ACTIONS(4857), + [anon_sym_BSLASHVolcite] = ACTIONS(4857), + [anon_sym_BSLASHpvolcite] = ACTIONS(4857), + [anon_sym_BSLASHPvolcite] = ACTIONS(4857), + [anon_sym_BSLASHfvolcite] = ACTIONS(4857), + [anon_sym_BSLASHftvolcite] = ACTIONS(4857), + [anon_sym_BSLASHsvolcite] = ACTIONS(4857), + [anon_sym_BSLASHSvolcite] = ACTIONS(4857), + [anon_sym_BSLASHtvolcite] = ACTIONS(4857), + [anon_sym_BSLASHTvolcite] = ACTIONS(4857), + [anon_sym_BSLASHavolcite] = ACTIONS(4857), + [anon_sym_BSLASHAvolcite] = ACTIONS(4857), + [anon_sym_BSLASHnotecite] = ACTIONS(4857), + [anon_sym_BSLASHNotecite] = ACTIONS(4857), + [anon_sym_BSLASHpnotecite] = ACTIONS(4857), + [anon_sym_BSLASHPnotecite] = ACTIONS(4857), + [anon_sym_BSLASHfnotecite] = ACTIONS(4857), + [anon_sym_BSLASHlabel] = ACTIONS(4857), + [anon_sym_BSLASHref] = ACTIONS(4857), + [anon_sym_BSLASHeqref] = ACTIONS(4857), + [anon_sym_BSLASHvref] = ACTIONS(4857), + [anon_sym_BSLASHVref] = ACTIONS(4857), + [anon_sym_BSLASHautoref] = ACTIONS(4857), + [anon_sym_BSLASHpageref] = ACTIONS(4857), + [anon_sym_BSLASHcref] = ACTIONS(4857), + [anon_sym_BSLASHCref] = ACTIONS(4857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnameCref] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHlabelcref] = ACTIONS(4857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCrefrange] = ACTIONS(4857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnewlabel] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), + [anon_sym_BSLASHdef] = ACTIONS(4857), + [anon_sym_BSLASHlet] = ACTIONS(4857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), + [anon_sym_BSLASHgls] = ACTIONS(4857), + [anon_sym_BSLASHGls] = ACTIONS(4857), + [anon_sym_BSLASHGLS] = ACTIONS(4857), + [anon_sym_BSLASHglspl] = ACTIONS(4857), + [anon_sym_BSLASHGlspl] = ACTIONS(4857), + [anon_sym_BSLASHGLSpl] = ACTIONS(4857), + [anon_sym_BSLASHglsdisp] = ACTIONS(4857), + [anon_sym_BSLASHglslink] = ACTIONS(4857), + [anon_sym_BSLASHglstext] = ACTIONS(4857), + [anon_sym_BSLASHGlstext] = ACTIONS(4857), + [anon_sym_BSLASHGLStext] = ACTIONS(4857), + [anon_sym_BSLASHglsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), + [anon_sym_BSLASHglsplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSplural] = ACTIONS(4857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHglsname] = ACTIONS(4857), + [anon_sym_BSLASHGlsname] = ACTIONS(4857), + [anon_sym_BSLASHGLSname] = ACTIONS(4857), + [anon_sym_BSLASHglssymbol] = ACTIONS(4857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), + [anon_sym_BSLASHglsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), + [anon_sym_BSLASHglsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), + [anon_sym_BSLASHglsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), + [anon_sym_BSLASHglsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), + [anon_sym_BSLASHglsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), + [anon_sym_BSLASHnewacronym] = ACTIONS(4857), + [anon_sym_BSLASHacrshort] = ACTIONS(4857), + [anon_sym_BSLASHAcrshort] = ACTIONS(4857), + [anon_sym_BSLASHACRshort] = ACTIONS(4857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), + [anon_sym_BSLASHacrlong] = ACTIONS(4857), + [anon_sym_BSLASHAcrlong] = ACTIONS(4857), + [anon_sym_BSLASHACRlong] = ACTIONS(4857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), + [anon_sym_BSLASHacrfull] = ACTIONS(4857), + [anon_sym_BSLASHAcrfull] = ACTIONS(4857), + [anon_sym_BSLASHACRfull] = ACTIONS(4857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), + [anon_sym_BSLASHacs] = ACTIONS(4857), + [anon_sym_BSLASHAcs] = ACTIONS(4857), + [anon_sym_BSLASHacsp] = ACTIONS(4857), + [anon_sym_BSLASHAcsp] = ACTIONS(4857), + [anon_sym_BSLASHacl] = ACTIONS(4857), + [anon_sym_BSLASHAcl] = ACTIONS(4857), + [anon_sym_BSLASHaclp] = ACTIONS(4857), + [anon_sym_BSLASHAclp] = ACTIONS(4857), + [anon_sym_BSLASHacf] = ACTIONS(4857), + [anon_sym_BSLASHAcf] = ACTIONS(4857), + [anon_sym_BSLASHacfp] = ACTIONS(4857), + [anon_sym_BSLASHAcfp] = ACTIONS(4857), + [anon_sym_BSLASHac] = ACTIONS(4857), + [anon_sym_BSLASHAc] = ACTIONS(4857), + [anon_sym_BSLASHacp] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), + [anon_sym_BSLASHcolor] = ACTIONS(4857), + [anon_sym_BSLASHcolorbox] = ACTIONS(4857), + [anon_sym_BSLASHtextcolor] = ACTIONS(4857), + [anon_sym_BSLASHpagecolor] = ACTIONS(4857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), + [anon_sym_BSLASHtext] = ACTIONS(4857), + [anon_sym_BSLASHintertext] = ACTIONS(4857), + [anon_sym_shortintertext] = ACTIONS(4857), + }, + [1399] = { + [sym_command_name] = ACTIONS(4955), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_EQ] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4953), + [sym_word] = ACTIONS(4955), + [sym_placeholder] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4955), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), + [anon_sym__] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(4955), + [anon_sym_SQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), + [anon_sym_DOLLAR] = ACTIONS(4955), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), + [anon_sym_BSLASHbegin] = ACTIONS(4955), + [anon_sym_BSLASHusepackage] = ACTIONS(4955), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), + [anon_sym_BSLASHinclude] = ACTIONS(4955), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), + [anon_sym_BSLASHinput] = ACTIONS(4955), + [anon_sym_BSLASHsubfile] = ACTIONS(4955), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), + [anon_sym_BSLASHbibliography] = ACTIONS(4955), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), + [anon_sym_BSLASHincludesvg] = ACTIONS(4955), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), + [anon_sym_BSLASHimport] = ACTIONS(4955), + [anon_sym_BSLASHsubimport] = ACTIONS(4955), + [anon_sym_BSLASHinputfrom] = ACTIONS(4955), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), + [anon_sym_BSLASHincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHcaption] = ACTIONS(4955), + [anon_sym_BSLASHcite] = ACTIONS(4955), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCite] = ACTIONS(4955), + [anon_sym_BSLASHnocite] = ACTIONS(4955), + [anon_sym_BSLASHcitet] = ACTIONS(4955), + [anon_sym_BSLASHcitep] = ACTIONS(4955), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteauthor] = ACTIONS(4955), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitetitle] = ACTIONS(4955), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteyear] = ACTIONS(4955), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitedate] = ACTIONS(4955), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteurl] = ACTIONS(4955), + [anon_sym_BSLASHfullcite] = ACTIONS(4955), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), + [anon_sym_BSLASHcitealt] = ACTIONS(4955), + [anon_sym_BSLASHcitealp] = ACTIONS(4955), + [anon_sym_BSLASHcitetext] = ACTIONS(4955), + [anon_sym_BSLASHparencite] = ACTIONS(4955), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHParencite] = ACTIONS(4955), + [anon_sym_BSLASHfootcite] = ACTIONS(4955), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), + [anon_sym_BSLASHtextcite] = ACTIONS(4955), + [anon_sym_BSLASHTextcite] = ACTIONS(4955), + [anon_sym_BSLASHsmartcite] = ACTIONS(4955), + [anon_sym_BSLASHSmartcite] = ACTIONS(4955), + [anon_sym_BSLASHsupercite] = ACTIONS(4955), + [anon_sym_BSLASHautocite] = ACTIONS(4955), + [anon_sym_BSLASHAutocite] = ACTIONS(4955), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHvolcite] = ACTIONS(4955), + [anon_sym_BSLASHVolcite] = ACTIONS(4955), + [anon_sym_BSLASHpvolcite] = ACTIONS(4955), + [anon_sym_BSLASHPvolcite] = ACTIONS(4955), + [anon_sym_BSLASHfvolcite] = ACTIONS(4955), + [anon_sym_BSLASHftvolcite] = ACTIONS(4955), + [anon_sym_BSLASHsvolcite] = ACTIONS(4955), + [anon_sym_BSLASHSvolcite] = ACTIONS(4955), + [anon_sym_BSLASHtvolcite] = ACTIONS(4955), + [anon_sym_BSLASHTvolcite] = ACTIONS(4955), + [anon_sym_BSLASHavolcite] = ACTIONS(4955), + [anon_sym_BSLASHAvolcite] = ACTIONS(4955), + [anon_sym_BSLASHnotecite] = ACTIONS(4955), + [anon_sym_BSLASHNotecite] = ACTIONS(4955), + [anon_sym_BSLASHpnotecite] = ACTIONS(4955), + [anon_sym_BSLASHPnotecite] = ACTIONS(4955), + [anon_sym_BSLASHfnotecite] = ACTIONS(4955), + [anon_sym_BSLASHlabel] = ACTIONS(4955), + [anon_sym_BSLASHref] = ACTIONS(4955), + [anon_sym_BSLASHeqref] = ACTIONS(4955), + [anon_sym_BSLASHvref] = ACTIONS(4955), + [anon_sym_BSLASHVref] = ACTIONS(4955), + [anon_sym_BSLASHautoref] = ACTIONS(4955), + [anon_sym_BSLASHpageref] = ACTIONS(4955), + [anon_sym_BSLASHcref] = ACTIONS(4955), + [anon_sym_BSLASHCref] = ACTIONS(4955), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnameCref] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHlabelcref] = ACTIONS(4955), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCrefrange] = ACTIONS(4955), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnewlabel] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), + [anon_sym_BSLASHdef] = ACTIONS(4955), + [anon_sym_BSLASHlet] = ACTIONS(4955), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), + [anon_sym_BSLASHgls] = ACTIONS(4955), + [anon_sym_BSLASHGls] = ACTIONS(4955), + [anon_sym_BSLASHGLS] = ACTIONS(4955), + [anon_sym_BSLASHglspl] = ACTIONS(4955), + [anon_sym_BSLASHGlspl] = ACTIONS(4955), + [anon_sym_BSLASHGLSpl] = ACTIONS(4955), + [anon_sym_BSLASHglsdisp] = ACTIONS(4955), + [anon_sym_BSLASHglslink] = ACTIONS(4955), + [anon_sym_BSLASHglstext] = ACTIONS(4955), + [anon_sym_BSLASHGlstext] = ACTIONS(4955), + [anon_sym_BSLASHGLStext] = ACTIONS(4955), + [anon_sym_BSLASHglsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), + [anon_sym_BSLASHglsplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSplural] = ACTIONS(4955), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHglsname] = ACTIONS(4955), + [anon_sym_BSLASHGlsname] = ACTIONS(4955), + [anon_sym_BSLASHGLSname] = ACTIONS(4955), + [anon_sym_BSLASHglssymbol] = ACTIONS(4955), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), + [anon_sym_BSLASHglsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), + [anon_sym_BSLASHglsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), + [anon_sym_BSLASHglsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), + [anon_sym_BSLASHglsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), + [anon_sym_BSLASHglsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), + [anon_sym_BSLASHnewacronym] = ACTIONS(4955), + [anon_sym_BSLASHacrshort] = ACTIONS(4955), + [anon_sym_BSLASHAcrshort] = ACTIONS(4955), + [anon_sym_BSLASHACRshort] = ACTIONS(4955), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), + [anon_sym_BSLASHacrlong] = ACTIONS(4955), + [anon_sym_BSLASHAcrlong] = ACTIONS(4955), + [anon_sym_BSLASHACRlong] = ACTIONS(4955), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), + [anon_sym_BSLASHacrfull] = ACTIONS(4955), + [anon_sym_BSLASHAcrfull] = ACTIONS(4955), + [anon_sym_BSLASHACRfull] = ACTIONS(4955), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), + [anon_sym_BSLASHacs] = ACTIONS(4955), + [anon_sym_BSLASHAcs] = ACTIONS(4955), + [anon_sym_BSLASHacsp] = ACTIONS(4955), + [anon_sym_BSLASHAcsp] = ACTIONS(4955), + [anon_sym_BSLASHacl] = ACTIONS(4955), + [anon_sym_BSLASHAcl] = ACTIONS(4955), + [anon_sym_BSLASHaclp] = ACTIONS(4955), + [anon_sym_BSLASHAclp] = ACTIONS(4955), + [anon_sym_BSLASHacf] = ACTIONS(4955), + [anon_sym_BSLASHAcf] = ACTIONS(4955), + [anon_sym_BSLASHacfp] = ACTIONS(4955), + [anon_sym_BSLASHAcfp] = ACTIONS(4955), + [anon_sym_BSLASHac] = ACTIONS(4955), + [anon_sym_BSLASHAc] = ACTIONS(4955), + [anon_sym_BSLASHacp] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), + [anon_sym_BSLASHcolor] = ACTIONS(4955), + [anon_sym_BSLASHcolorbox] = ACTIONS(4955), + [anon_sym_BSLASHtextcolor] = ACTIONS(4955), + [anon_sym_BSLASHpagecolor] = ACTIONS(4955), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), + [anon_sym_BSLASHtext] = ACTIONS(4955), + [anon_sym_BSLASHintertext] = ACTIONS(4955), + [anon_sym_shortintertext] = ACTIONS(4955), + }, + [1400] = { + [sym_command_name] = ACTIONS(5139), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_LPAREN] = ACTIONS(5055), - [anon_sym_RPAREN] = ACTIONS(5055), - [anon_sym_LBRACK] = ACTIONS(5055), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_LBRACE] = ACTIONS(5055), - [anon_sym_RBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), - [anon_sym_DOLLAR] = ACTIONS(5057), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [anon_sym_BSLASHiffalse] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_RBRACK] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5137), + [sym_word] = ACTIONS(5139), + [sym_placeholder] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_CARET] = ACTIONS(5139), + [anon_sym__] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_PIPE] = ACTIONS(5139), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), + [anon_sym_DOLLAR] = ACTIONS(5139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), + [anon_sym_BSLASHbegin] = ACTIONS(5139), + [anon_sym_BSLASHusepackage] = ACTIONS(5139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), + [anon_sym_BSLASHinclude] = ACTIONS(5139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), + [anon_sym_BSLASHinput] = ACTIONS(5139), + [anon_sym_BSLASHsubfile] = ACTIONS(5139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), + [anon_sym_BSLASHbibliography] = ACTIONS(5139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), + [anon_sym_BSLASHincludesvg] = ACTIONS(5139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), + [anon_sym_BSLASHimport] = ACTIONS(5139), + [anon_sym_BSLASHsubimport] = ACTIONS(5139), + [anon_sym_BSLASHinputfrom] = ACTIONS(5139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), + [anon_sym_BSLASHincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHcaption] = ACTIONS(5139), + [anon_sym_BSLASHcite] = ACTIONS(5139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCite] = ACTIONS(5139), + [anon_sym_BSLASHnocite] = ACTIONS(5139), + [anon_sym_BSLASHcitet] = ACTIONS(5139), + [anon_sym_BSLASHcitep] = ACTIONS(5139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteauthor] = ACTIONS(5139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitetitle] = ACTIONS(5139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteyear] = ACTIONS(5139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitedate] = ACTIONS(5139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteurl] = ACTIONS(5139), + [anon_sym_BSLASHfullcite] = ACTIONS(5139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), + [anon_sym_BSLASHcitealt] = ACTIONS(5139), + [anon_sym_BSLASHcitealp] = ACTIONS(5139), + [anon_sym_BSLASHcitetext] = ACTIONS(5139), + [anon_sym_BSLASHparencite] = ACTIONS(5139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHParencite] = ACTIONS(5139), + [anon_sym_BSLASHfootcite] = ACTIONS(5139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), + [anon_sym_BSLASHtextcite] = ACTIONS(5139), + [anon_sym_BSLASHTextcite] = ACTIONS(5139), + [anon_sym_BSLASHsmartcite] = ACTIONS(5139), + [anon_sym_BSLASHSmartcite] = ACTIONS(5139), + [anon_sym_BSLASHsupercite] = ACTIONS(5139), + [anon_sym_BSLASHautocite] = ACTIONS(5139), + [anon_sym_BSLASHAutocite] = ACTIONS(5139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHvolcite] = ACTIONS(5139), + [anon_sym_BSLASHVolcite] = ACTIONS(5139), + [anon_sym_BSLASHpvolcite] = ACTIONS(5139), + [anon_sym_BSLASHPvolcite] = ACTIONS(5139), + [anon_sym_BSLASHfvolcite] = ACTIONS(5139), + [anon_sym_BSLASHftvolcite] = ACTIONS(5139), + [anon_sym_BSLASHsvolcite] = ACTIONS(5139), + [anon_sym_BSLASHSvolcite] = ACTIONS(5139), + [anon_sym_BSLASHtvolcite] = ACTIONS(5139), + [anon_sym_BSLASHTvolcite] = ACTIONS(5139), + [anon_sym_BSLASHavolcite] = ACTIONS(5139), + [anon_sym_BSLASHAvolcite] = ACTIONS(5139), + [anon_sym_BSLASHnotecite] = ACTIONS(5139), + [anon_sym_BSLASHNotecite] = ACTIONS(5139), + [anon_sym_BSLASHpnotecite] = ACTIONS(5139), + [anon_sym_BSLASHPnotecite] = ACTIONS(5139), + [anon_sym_BSLASHfnotecite] = ACTIONS(5139), + [anon_sym_BSLASHlabel] = ACTIONS(5139), + [anon_sym_BSLASHref] = ACTIONS(5139), + [anon_sym_BSLASHeqref] = ACTIONS(5139), + [anon_sym_BSLASHvref] = ACTIONS(5139), + [anon_sym_BSLASHVref] = ACTIONS(5139), + [anon_sym_BSLASHautoref] = ACTIONS(5139), + [anon_sym_BSLASHpageref] = ACTIONS(5139), + [anon_sym_BSLASHcref] = ACTIONS(5139), + [anon_sym_BSLASHCref] = ACTIONS(5139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnameCref] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHlabelcref] = ACTIONS(5139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCrefrange] = ACTIONS(5139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnewlabel] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), + [anon_sym_BSLASHdef] = ACTIONS(5139), + [anon_sym_BSLASHlet] = ACTIONS(5139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), + [anon_sym_BSLASHgls] = ACTIONS(5139), + [anon_sym_BSLASHGls] = ACTIONS(5139), + [anon_sym_BSLASHGLS] = ACTIONS(5139), + [anon_sym_BSLASHglspl] = ACTIONS(5139), + [anon_sym_BSLASHGlspl] = ACTIONS(5139), + [anon_sym_BSLASHGLSpl] = ACTIONS(5139), + [anon_sym_BSLASHglsdisp] = ACTIONS(5139), + [anon_sym_BSLASHglslink] = ACTIONS(5139), + [anon_sym_BSLASHglstext] = ACTIONS(5139), + [anon_sym_BSLASHGlstext] = ACTIONS(5139), + [anon_sym_BSLASHGLStext] = ACTIONS(5139), + [anon_sym_BSLASHglsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), + [anon_sym_BSLASHglsplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSplural] = ACTIONS(5139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHglsname] = ACTIONS(5139), + [anon_sym_BSLASHGlsname] = ACTIONS(5139), + [anon_sym_BSLASHGLSname] = ACTIONS(5139), + [anon_sym_BSLASHglssymbol] = ACTIONS(5139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), + [anon_sym_BSLASHglsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), + [anon_sym_BSLASHglsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), + [anon_sym_BSLASHglsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), + [anon_sym_BSLASHglsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), + [anon_sym_BSLASHglsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), + [anon_sym_BSLASHnewacronym] = ACTIONS(5139), + [anon_sym_BSLASHacrshort] = ACTIONS(5139), + [anon_sym_BSLASHAcrshort] = ACTIONS(5139), + [anon_sym_BSLASHACRshort] = ACTIONS(5139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), + [anon_sym_BSLASHacrlong] = ACTIONS(5139), + [anon_sym_BSLASHAcrlong] = ACTIONS(5139), + [anon_sym_BSLASHACRlong] = ACTIONS(5139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), + [anon_sym_BSLASHacrfull] = ACTIONS(5139), + [anon_sym_BSLASHAcrfull] = ACTIONS(5139), + [anon_sym_BSLASHACRfull] = ACTIONS(5139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), + [anon_sym_BSLASHacs] = ACTIONS(5139), + [anon_sym_BSLASHAcs] = ACTIONS(5139), + [anon_sym_BSLASHacsp] = ACTIONS(5139), + [anon_sym_BSLASHAcsp] = ACTIONS(5139), + [anon_sym_BSLASHacl] = ACTIONS(5139), + [anon_sym_BSLASHAcl] = ACTIONS(5139), + [anon_sym_BSLASHaclp] = ACTIONS(5139), + [anon_sym_BSLASHAclp] = ACTIONS(5139), + [anon_sym_BSLASHacf] = ACTIONS(5139), + [anon_sym_BSLASHAcf] = ACTIONS(5139), + [anon_sym_BSLASHacfp] = ACTIONS(5139), + [anon_sym_BSLASHAcfp] = ACTIONS(5139), + [anon_sym_BSLASHac] = ACTIONS(5139), + [anon_sym_BSLASHAc] = ACTIONS(5139), + [anon_sym_BSLASHacp] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), + [anon_sym_BSLASHcolor] = ACTIONS(5139), + [anon_sym_BSLASHcolorbox] = ACTIONS(5139), + [anon_sym_BSLASHtextcolor] = ACTIONS(5139), + [anon_sym_BSLASHpagecolor] = ACTIONS(5139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHtext] = ACTIONS(5139), + [anon_sym_BSLASHintertext] = ACTIONS(5139), + [anon_sym_shortintertext] = ACTIONS(5139), }, - [1457] = { - [sym_command_name] = ACTIONS(5053), + [1401] = { + [sym_brack_group_text] = STATE(1429), + [sym_command_name] = ACTIONS(4879), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4879), + [anon_sym_LPAREN] = ACTIONS(4877), + [anon_sym_RPAREN] = ACTIONS(4877), + [anon_sym_LBRACK] = ACTIONS(5503), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_COMMA] = ACTIONS(4877), + [anon_sym_LBRACE] = ACTIONS(4877), + [anon_sym_RBRACE] = ACTIONS(4877), + [sym_word] = ACTIONS(4879), + [sym_placeholder] = ACTIONS(4877), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4879), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_CARET] = ACTIONS(4879), + [anon_sym__] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_COLON] = ACTIONS(4879), + [anon_sym_SQUOTE] = ACTIONS(4879), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4877), + [anon_sym_DOLLAR] = ACTIONS(4879), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4877), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4877), + [anon_sym_BSLASHusepackage] = ACTIONS(4879), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), + [anon_sym_BSLASHinclude] = ACTIONS(4879), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), + [anon_sym_BSLASHinput] = ACTIONS(4879), + [anon_sym_BSLASHsubfile] = ACTIONS(4879), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), + [anon_sym_BSLASHbibliography] = ACTIONS(4879), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), + [anon_sym_BSLASHincludesvg] = ACTIONS(4879), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), + [anon_sym_BSLASHimport] = ACTIONS(4879), + [anon_sym_BSLASHsubimport] = ACTIONS(4879), + [anon_sym_BSLASHinputfrom] = ACTIONS(4879), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), + [anon_sym_BSLASHincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHcaption] = ACTIONS(4879), + [anon_sym_BSLASHcite] = ACTIONS(4879), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCite] = ACTIONS(4879), + [anon_sym_BSLASHnocite] = ACTIONS(4879), + [anon_sym_BSLASHcitet] = ACTIONS(4879), + [anon_sym_BSLASHcitep] = ACTIONS(4879), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteauthor] = ACTIONS(4879), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitetitle] = ACTIONS(4879), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteyear] = ACTIONS(4879), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitedate] = ACTIONS(4879), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteurl] = ACTIONS(4879), + [anon_sym_BSLASHfullcite] = ACTIONS(4879), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), + [anon_sym_BSLASHcitealt] = ACTIONS(4879), + [anon_sym_BSLASHcitealp] = ACTIONS(4879), + [anon_sym_BSLASHcitetext] = ACTIONS(4879), + [anon_sym_BSLASHparencite] = ACTIONS(4879), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHParencite] = ACTIONS(4879), + [anon_sym_BSLASHfootcite] = ACTIONS(4879), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), + [anon_sym_BSLASHtextcite] = ACTIONS(4879), + [anon_sym_BSLASHTextcite] = ACTIONS(4879), + [anon_sym_BSLASHsmartcite] = ACTIONS(4879), + [anon_sym_BSLASHSmartcite] = ACTIONS(4879), + [anon_sym_BSLASHsupercite] = ACTIONS(4879), + [anon_sym_BSLASHautocite] = ACTIONS(4879), + [anon_sym_BSLASHAutocite] = ACTIONS(4879), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHvolcite] = ACTIONS(4879), + [anon_sym_BSLASHVolcite] = ACTIONS(4879), + [anon_sym_BSLASHpvolcite] = ACTIONS(4879), + [anon_sym_BSLASHPvolcite] = ACTIONS(4879), + [anon_sym_BSLASHfvolcite] = ACTIONS(4879), + [anon_sym_BSLASHftvolcite] = ACTIONS(4879), + [anon_sym_BSLASHsvolcite] = ACTIONS(4879), + [anon_sym_BSLASHSvolcite] = ACTIONS(4879), + [anon_sym_BSLASHtvolcite] = ACTIONS(4879), + [anon_sym_BSLASHTvolcite] = ACTIONS(4879), + [anon_sym_BSLASHavolcite] = ACTIONS(4879), + [anon_sym_BSLASHAvolcite] = ACTIONS(4879), + [anon_sym_BSLASHnotecite] = ACTIONS(4879), + [anon_sym_BSLASHNotecite] = ACTIONS(4879), + [anon_sym_BSLASHpnotecite] = ACTIONS(4879), + [anon_sym_BSLASHPnotecite] = ACTIONS(4879), + [anon_sym_BSLASHfnotecite] = ACTIONS(4879), + [anon_sym_BSLASHlabel] = ACTIONS(4879), + [anon_sym_BSLASHref] = ACTIONS(4879), + [anon_sym_BSLASHeqref] = ACTIONS(4879), + [anon_sym_BSLASHvref] = ACTIONS(4879), + [anon_sym_BSLASHVref] = ACTIONS(4879), + [anon_sym_BSLASHautoref] = ACTIONS(4879), + [anon_sym_BSLASHpageref] = ACTIONS(4879), + [anon_sym_BSLASHcref] = ACTIONS(4879), + [anon_sym_BSLASHCref] = ACTIONS(4879), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnameCref] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHlabelcref] = ACTIONS(4879), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCrefrange] = ACTIONS(4879), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnewlabel] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), + [anon_sym_BSLASHdef] = ACTIONS(4879), + [anon_sym_BSLASHlet] = ACTIONS(4879), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), + [anon_sym_BSLASHgls] = ACTIONS(4879), + [anon_sym_BSLASHGls] = ACTIONS(4879), + [anon_sym_BSLASHGLS] = ACTIONS(4879), + [anon_sym_BSLASHglspl] = ACTIONS(4879), + [anon_sym_BSLASHGlspl] = ACTIONS(4879), + [anon_sym_BSLASHGLSpl] = ACTIONS(4879), + [anon_sym_BSLASHglsdisp] = ACTIONS(4879), + [anon_sym_BSLASHglslink] = ACTIONS(4879), + [anon_sym_BSLASHglstext] = ACTIONS(4879), + [anon_sym_BSLASHGlstext] = ACTIONS(4879), + [anon_sym_BSLASHGLStext] = ACTIONS(4879), + [anon_sym_BSLASHglsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), + [anon_sym_BSLASHglsplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSplural] = ACTIONS(4879), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHglsname] = ACTIONS(4879), + [anon_sym_BSLASHGlsname] = ACTIONS(4879), + [anon_sym_BSLASHGLSname] = ACTIONS(4879), + [anon_sym_BSLASHglssymbol] = ACTIONS(4879), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), + [anon_sym_BSLASHglsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), + [anon_sym_BSLASHglsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), + [anon_sym_BSLASHglsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), + [anon_sym_BSLASHglsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), + [anon_sym_BSLASHglsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), + [anon_sym_BSLASHnewacronym] = ACTIONS(4879), + [anon_sym_BSLASHacrshort] = ACTIONS(4879), + [anon_sym_BSLASHAcrshort] = ACTIONS(4879), + [anon_sym_BSLASHACRshort] = ACTIONS(4879), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), + [anon_sym_BSLASHacrlong] = ACTIONS(4879), + [anon_sym_BSLASHAcrlong] = ACTIONS(4879), + [anon_sym_BSLASHACRlong] = ACTIONS(4879), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), + [anon_sym_BSLASHacrfull] = ACTIONS(4879), + [anon_sym_BSLASHAcrfull] = ACTIONS(4879), + [anon_sym_BSLASHACRfull] = ACTIONS(4879), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), + [anon_sym_BSLASHacs] = ACTIONS(4879), + [anon_sym_BSLASHAcs] = ACTIONS(4879), + [anon_sym_BSLASHacsp] = ACTIONS(4879), + [anon_sym_BSLASHAcsp] = ACTIONS(4879), + [anon_sym_BSLASHacl] = ACTIONS(4879), + [anon_sym_BSLASHAcl] = ACTIONS(4879), + [anon_sym_BSLASHaclp] = ACTIONS(4879), + [anon_sym_BSLASHAclp] = ACTIONS(4879), + [anon_sym_BSLASHacf] = ACTIONS(4879), + [anon_sym_BSLASHAcf] = ACTIONS(4879), + [anon_sym_BSLASHacfp] = ACTIONS(4879), + [anon_sym_BSLASHAcfp] = ACTIONS(4879), + [anon_sym_BSLASHac] = ACTIONS(4879), + [anon_sym_BSLASHAc] = ACTIONS(4879), + [anon_sym_BSLASHacp] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), + [anon_sym_BSLASHcolor] = ACTIONS(4879), + [anon_sym_BSLASHcolorbox] = ACTIONS(4879), + [anon_sym_BSLASHtextcolor] = ACTIONS(4879), + [anon_sym_BSLASHpagecolor] = ACTIONS(4879), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), + [anon_sym_BSLASHtext] = ACTIONS(4879), + [anon_sym_BSLASHintertext] = ACTIONS(4879), + [anon_sym_shortintertext] = ACTIONS(4879), + }, + [1402] = { + [sym_command_name] = ACTIONS(4959), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_LPAREN] = ACTIONS(5051), - [anon_sym_RPAREN] = ACTIONS(5051), - [anon_sym_LBRACK] = ACTIONS(5051), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_LBRACE] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), - [anon_sym_DOLLAR] = ACTIONS(5053), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [anon_sym_BSLASHiffalse] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4957), + [sym_word] = ACTIONS(4959), + [sym_placeholder] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_CARET] = ACTIONS(4959), + [anon_sym__] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_COLON] = ACTIONS(4959), + [anon_sym_SQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), + [anon_sym_DOLLAR] = ACTIONS(4959), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), + [anon_sym_BSLASHbegin] = ACTIONS(4959), + [anon_sym_BSLASHusepackage] = ACTIONS(4959), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), + [anon_sym_BSLASHinclude] = ACTIONS(4959), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), + [anon_sym_BSLASHinput] = ACTIONS(4959), + [anon_sym_BSLASHsubfile] = ACTIONS(4959), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), + [anon_sym_BSLASHbibliography] = ACTIONS(4959), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), + [anon_sym_BSLASHincludesvg] = ACTIONS(4959), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), + [anon_sym_BSLASHimport] = ACTIONS(4959), + [anon_sym_BSLASHsubimport] = ACTIONS(4959), + [anon_sym_BSLASHinputfrom] = ACTIONS(4959), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), + [anon_sym_BSLASHincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHcaption] = ACTIONS(4959), + [anon_sym_BSLASHcite] = ACTIONS(4959), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCite] = ACTIONS(4959), + [anon_sym_BSLASHnocite] = ACTIONS(4959), + [anon_sym_BSLASHcitet] = ACTIONS(4959), + [anon_sym_BSLASHcitep] = ACTIONS(4959), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteauthor] = ACTIONS(4959), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitetitle] = ACTIONS(4959), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteyear] = ACTIONS(4959), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitedate] = ACTIONS(4959), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteurl] = ACTIONS(4959), + [anon_sym_BSLASHfullcite] = ACTIONS(4959), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), + [anon_sym_BSLASHcitealt] = ACTIONS(4959), + [anon_sym_BSLASHcitealp] = ACTIONS(4959), + [anon_sym_BSLASHcitetext] = ACTIONS(4959), + [anon_sym_BSLASHparencite] = ACTIONS(4959), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHParencite] = ACTIONS(4959), + [anon_sym_BSLASHfootcite] = ACTIONS(4959), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), + [anon_sym_BSLASHtextcite] = ACTIONS(4959), + [anon_sym_BSLASHTextcite] = ACTIONS(4959), + [anon_sym_BSLASHsmartcite] = ACTIONS(4959), + [anon_sym_BSLASHSmartcite] = ACTIONS(4959), + [anon_sym_BSLASHsupercite] = ACTIONS(4959), + [anon_sym_BSLASHautocite] = ACTIONS(4959), + [anon_sym_BSLASHAutocite] = ACTIONS(4959), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHvolcite] = ACTIONS(4959), + [anon_sym_BSLASHVolcite] = ACTIONS(4959), + [anon_sym_BSLASHpvolcite] = ACTIONS(4959), + [anon_sym_BSLASHPvolcite] = ACTIONS(4959), + [anon_sym_BSLASHfvolcite] = ACTIONS(4959), + [anon_sym_BSLASHftvolcite] = ACTIONS(4959), + [anon_sym_BSLASHsvolcite] = ACTIONS(4959), + [anon_sym_BSLASHSvolcite] = ACTIONS(4959), + [anon_sym_BSLASHtvolcite] = ACTIONS(4959), + [anon_sym_BSLASHTvolcite] = ACTIONS(4959), + [anon_sym_BSLASHavolcite] = ACTIONS(4959), + [anon_sym_BSLASHAvolcite] = ACTIONS(4959), + [anon_sym_BSLASHnotecite] = ACTIONS(4959), + [anon_sym_BSLASHNotecite] = ACTIONS(4959), + [anon_sym_BSLASHpnotecite] = ACTIONS(4959), + [anon_sym_BSLASHPnotecite] = ACTIONS(4959), + [anon_sym_BSLASHfnotecite] = ACTIONS(4959), + [anon_sym_BSLASHlabel] = ACTIONS(4959), + [anon_sym_BSLASHref] = ACTIONS(4959), + [anon_sym_BSLASHeqref] = ACTIONS(4959), + [anon_sym_BSLASHvref] = ACTIONS(4959), + [anon_sym_BSLASHVref] = ACTIONS(4959), + [anon_sym_BSLASHautoref] = ACTIONS(4959), + [anon_sym_BSLASHpageref] = ACTIONS(4959), + [anon_sym_BSLASHcref] = ACTIONS(4959), + [anon_sym_BSLASHCref] = ACTIONS(4959), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnameCref] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHlabelcref] = ACTIONS(4959), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCrefrange] = ACTIONS(4959), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnewlabel] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), + [anon_sym_BSLASHdef] = ACTIONS(4959), + [anon_sym_BSLASHlet] = ACTIONS(4959), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), + [anon_sym_BSLASHgls] = ACTIONS(4959), + [anon_sym_BSLASHGls] = ACTIONS(4959), + [anon_sym_BSLASHGLS] = ACTIONS(4959), + [anon_sym_BSLASHglspl] = ACTIONS(4959), + [anon_sym_BSLASHGlspl] = ACTIONS(4959), + [anon_sym_BSLASHGLSpl] = ACTIONS(4959), + [anon_sym_BSLASHglsdisp] = ACTIONS(4959), + [anon_sym_BSLASHglslink] = ACTIONS(4959), + [anon_sym_BSLASHglstext] = ACTIONS(4959), + [anon_sym_BSLASHGlstext] = ACTIONS(4959), + [anon_sym_BSLASHGLStext] = ACTIONS(4959), + [anon_sym_BSLASHglsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), + [anon_sym_BSLASHglsplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSplural] = ACTIONS(4959), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHglsname] = ACTIONS(4959), + [anon_sym_BSLASHGlsname] = ACTIONS(4959), + [anon_sym_BSLASHGLSname] = ACTIONS(4959), + [anon_sym_BSLASHglssymbol] = ACTIONS(4959), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), + [anon_sym_BSLASHglsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), + [anon_sym_BSLASHglsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), + [anon_sym_BSLASHglsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), + [anon_sym_BSLASHglsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), + [anon_sym_BSLASHglsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), + [anon_sym_BSLASHnewacronym] = ACTIONS(4959), + [anon_sym_BSLASHacrshort] = ACTIONS(4959), + [anon_sym_BSLASHAcrshort] = ACTIONS(4959), + [anon_sym_BSLASHACRshort] = ACTIONS(4959), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), + [anon_sym_BSLASHacrlong] = ACTIONS(4959), + [anon_sym_BSLASHAcrlong] = ACTIONS(4959), + [anon_sym_BSLASHACRlong] = ACTIONS(4959), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), + [anon_sym_BSLASHacrfull] = ACTIONS(4959), + [anon_sym_BSLASHAcrfull] = ACTIONS(4959), + [anon_sym_BSLASHACRfull] = ACTIONS(4959), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), + [anon_sym_BSLASHacs] = ACTIONS(4959), + [anon_sym_BSLASHAcs] = ACTIONS(4959), + [anon_sym_BSLASHacsp] = ACTIONS(4959), + [anon_sym_BSLASHAcsp] = ACTIONS(4959), + [anon_sym_BSLASHacl] = ACTIONS(4959), + [anon_sym_BSLASHAcl] = ACTIONS(4959), + [anon_sym_BSLASHaclp] = ACTIONS(4959), + [anon_sym_BSLASHAclp] = ACTIONS(4959), + [anon_sym_BSLASHacf] = ACTIONS(4959), + [anon_sym_BSLASHAcf] = ACTIONS(4959), + [anon_sym_BSLASHacfp] = ACTIONS(4959), + [anon_sym_BSLASHAcfp] = ACTIONS(4959), + [anon_sym_BSLASHac] = ACTIONS(4959), + [anon_sym_BSLASHAc] = ACTIONS(4959), + [anon_sym_BSLASHacp] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), + [anon_sym_BSLASHcolor] = ACTIONS(4959), + [anon_sym_BSLASHcolorbox] = ACTIONS(4959), + [anon_sym_BSLASHtextcolor] = ACTIONS(4959), + [anon_sym_BSLASHpagecolor] = ACTIONS(4959), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHtext] = ACTIONS(4959), + [anon_sym_BSLASHintertext] = ACTIONS(4959), + [anon_sym_shortintertext] = ACTIONS(4959), }, - [1458] = { - [sym_command_name] = ACTIONS(5049), + [1403] = { + [sym_command_name] = ACTIONS(5135), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5049), - [anon_sym_LPAREN] = ACTIONS(5047), - [anon_sym_RPAREN] = ACTIONS(5047), - [anon_sym_LBRACK] = ACTIONS(5047), - [anon_sym_RBRACK] = ACTIONS(5047), - [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_LBRACE] = ACTIONS(5047), - [anon_sym_RBRACE] = ACTIONS(5047), - [sym_word] = ACTIONS(5049), - [sym_placeholder] = ACTIONS(5047), - [anon_sym_PLUS] = ACTIONS(5049), - [anon_sym_DASH] = ACTIONS(5049), - [anon_sym_STAR] = ACTIONS(5049), - [anon_sym_SLASH] = ACTIONS(5049), - [anon_sym_CARET] = ACTIONS(5049), - [anon_sym__] = ACTIONS(5049), - [anon_sym_LT] = ACTIONS(5049), - [anon_sym_GT] = ACTIONS(5049), - [anon_sym_BANG] = ACTIONS(5049), - [anon_sym_PIPE] = ACTIONS(5049), - [anon_sym_COLON] = ACTIONS(5049), - [anon_sym_SQUOTE] = ACTIONS(5049), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), - [anon_sym_DOLLAR] = ACTIONS(5049), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), - [anon_sym_BSLASHusepackage] = ACTIONS(5049), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), - [anon_sym_BSLASHinclude] = ACTIONS(5049), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), - [anon_sym_BSLASHinput] = ACTIONS(5049), - [anon_sym_BSLASHsubfile] = ACTIONS(5049), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), - [anon_sym_BSLASHbibliography] = ACTIONS(5049), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), - [anon_sym_BSLASHincludesvg] = ACTIONS(5049), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), - [anon_sym_BSLASHimport] = ACTIONS(5049), - [anon_sym_BSLASHsubimport] = ACTIONS(5049), - [anon_sym_BSLASHinputfrom] = ACTIONS(5049), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), - [anon_sym_BSLASHincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), - [anon_sym_BSLASHcaption] = ACTIONS(5049), - [anon_sym_BSLASHcite] = ACTIONS(5049), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCite] = ACTIONS(5049), - [anon_sym_BSLASHnocite] = ACTIONS(5049), - [anon_sym_BSLASHcitet] = ACTIONS(5049), - [anon_sym_BSLASHcitep] = ACTIONS(5049), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteauthor] = ACTIONS(5049), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitetitle] = ACTIONS(5049), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteyear] = ACTIONS(5049), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), - [anon_sym_BSLASHcitedate] = ACTIONS(5049), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), - [anon_sym_BSLASHciteurl] = ACTIONS(5049), - [anon_sym_BSLASHfullcite] = ACTIONS(5049), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), - [anon_sym_BSLASHcitealt] = ACTIONS(5049), - [anon_sym_BSLASHcitealp] = ACTIONS(5049), - [anon_sym_BSLASHcitetext] = ACTIONS(5049), - [anon_sym_BSLASHparencite] = ACTIONS(5049), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHParencite] = ACTIONS(5049), - [anon_sym_BSLASHfootcite] = ACTIONS(5049), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), - [anon_sym_BSLASHtextcite] = ACTIONS(5049), - [anon_sym_BSLASHTextcite] = ACTIONS(5049), - [anon_sym_BSLASHsmartcite] = ACTIONS(5049), - [anon_sym_BSLASHSmartcite] = ACTIONS(5049), - [anon_sym_BSLASHsupercite] = ACTIONS(5049), - [anon_sym_BSLASHautocite] = ACTIONS(5049), - [anon_sym_BSLASHAutocite] = ACTIONS(5049), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), - [anon_sym_BSLASHvolcite] = ACTIONS(5049), - [anon_sym_BSLASHVolcite] = ACTIONS(5049), - [anon_sym_BSLASHpvolcite] = ACTIONS(5049), - [anon_sym_BSLASHPvolcite] = ACTIONS(5049), - [anon_sym_BSLASHfvolcite] = ACTIONS(5049), - [anon_sym_BSLASHftvolcite] = ACTIONS(5049), - [anon_sym_BSLASHsvolcite] = ACTIONS(5049), - [anon_sym_BSLASHSvolcite] = ACTIONS(5049), - [anon_sym_BSLASHtvolcite] = ACTIONS(5049), - [anon_sym_BSLASHTvolcite] = ACTIONS(5049), - [anon_sym_BSLASHavolcite] = ACTIONS(5049), - [anon_sym_BSLASHAvolcite] = ACTIONS(5049), - [anon_sym_BSLASHnotecite] = ACTIONS(5049), - [anon_sym_BSLASHNotecite] = ACTIONS(5049), - [anon_sym_BSLASHpnotecite] = ACTIONS(5049), - [anon_sym_BSLASHPnotecite] = ACTIONS(5049), - [anon_sym_BSLASHfnotecite] = ACTIONS(5049), - [anon_sym_BSLASHlabel] = ACTIONS(5049), - [anon_sym_BSLASHref] = ACTIONS(5049), - [anon_sym_BSLASHeqref] = ACTIONS(5049), - [anon_sym_BSLASHvref] = ACTIONS(5049), - [anon_sym_BSLASHVref] = ACTIONS(5049), - [anon_sym_BSLASHautoref] = ACTIONS(5049), - [anon_sym_BSLASHpageref] = ACTIONS(5049), - [anon_sym_BSLASHcref] = ACTIONS(5049), - [anon_sym_BSLASHCref] = ACTIONS(5049), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnameCref] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), - [anon_sym_BSLASHlabelcref] = ACTIONS(5049), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange] = ACTIONS(5049), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHCrefrange] = ACTIONS(5049), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), - [anon_sym_BSLASHnewlabel] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand] = ACTIONS(5049), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), - [anon_sym_BSLASHdef] = ACTIONS(5049), - [anon_sym_BSLASHlet] = ACTIONS(5049), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), - [anon_sym_BSLASHgls] = ACTIONS(5049), - [anon_sym_BSLASHGls] = ACTIONS(5049), - [anon_sym_BSLASHGLS] = ACTIONS(5049), - [anon_sym_BSLASHglspl] = ACTIONS(5049), - [anon_sym_BSLASHGlspl] = ACTIONS(5049), - [anon_sym_BSLASHGLSpl] = ACTIONS(5049), - [anon_sym_BSLASHglsdisp] = ACTIONS(5049), - [anon_sym_BSLASHglslink] = ACTIONS(5049), - [anon_sym_BSLASHglstext] = ACTIONS(5049), - [anon_sym_BSLASHGlstext] = ACTIONS(5049), - [anon_sym_BSLASHGLStext] = ACTIONS(5049), - [anon_sym_BSLASHglsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), - [anon_sym_BSLASHglsplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [anon_sym_BSLASHiffalse] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_RPAREN] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_RBRACK] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5133), + [sym_word] = ACTIONS(5135), + [sym_placeholder] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_CARET] = ACTIONS(5135), + [anon_sym__] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_PIPE] = ACTIONS(5135), + [anon_sym_COLON] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), + [anon_sym_DOLLAR] = ACTIONS(5135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), + [anon_sym_BSLASHbegin] = ACTIONS(5135), + [anon_sym_BSLASHusepackage] = ACTIONS(5135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), + [anon_sym_BSLASHinclude] = ACTIONS(5135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), + [anon_sym_BSLASHinput] = ACTIONS(5135), + [anon_sym_BSLASHsubfile] = ACTIONS(5135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), + [anon_sym_BSLASHbibliography] = ACTIONS(5135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), + [anon_sym_BSLASHincludesvg] = ACTIONS(5135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), + [anon_sym_BSLASHimport] = ACTIONS(5135), + [anon_sym_BSLASHsubimport] = ACTIONS(5135), + [anon_sym_BSLASHinputfrom] = ACTIONS(5135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), + [anon_sym_BSLASHincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHcaption] = ACTIONS(5135), + [anon_sym_BSLASHcite] = ACTIONS(5135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCite] = ACTIONS(5135), + [anon_sym_BSLASHnocite] = ACTIONS(5135), + [anon_sym_BSLASHcitet] = ACTIONS(5135), + [anon_sym_BSLASHcitep] = ACTIONS(5135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteauthor] = ACTIONS(5135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitetitle] = ACTIONS(5135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteyear] = ACTIONS(5135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitedate] = ACTIONS(5135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteurl] = ACTIONS(5135), + [anon_sym_BSLASHfullcite] = ACTIONS(5135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), + [anon_sym_BSLASHcitealt] = ACTIONS(5135), + [anon_sym_BSLASHcitealp] = ACTIONS(5135), + [anon_sym_BSLASHcitetext] = ACTIONS(5135), + [anon_sym_BSLASHparencite] = ACTIONS(5135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHParencite] = ACTIONS(5135), + [anon_sym_BSLASHfootcite] = ACTIONS(5135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), + [anon_sym_BSLASHtextcite] = ACTIONS(5135), + [anon_sym_BSLASHTextcite] = ACTIONS(5135), + [anon_sym_BSLASHsmartcite] = ACTIONS(5135), + [anon_sym_BSLASHSmartcite] = ACTIONS(5135), + [anon_sym_BSLASHsupercite] = ACTIONS(5135), + [anon_sym_BSLASHautocite] = ACTIONS(5135), + [anon_sym_BSLASHAutocite] = ACTIONS(5135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHvolcite] = ACTIONS(5135), + [anon_sym_BSLASHVolcite] = ACTIONS(5135), + [anon_sym_BSLASHpvolcite] = ACTIONS(5135), + [anon_sym_BSLASHPvolcite] = ACTIONS(5135), + [anon_sym_BSLASHfvolcite] = ACTIONS(5135), + [anon_sym_BSLASHftvolcite] = ACTIONS(5135), + [anon_sym_BSLASHsvolcite] = ACTIONS(5135), + [anon_sym_BSLASHSvolcite] = ACTIONS(5135), + [anon_sym_BSLASHtvolcite] = ACTIONS(5135), + [anon_sym_BSLASHTvolcite] = ACTIONS(5135), + [anon_sym_BSLASHavolcite] = ACTIONS(5135), + [anon_sym_BSLASHAvolcite] = ACTIONS(5135), + [anon_sym_BSLASHnotecite] = ACTIONS(5135), + [anon_sym_BSLASHNotecite] = ACTIONS(5135), + [anon_sym_BSLASHpnotecite] = ACTIONS(5135), + [anon_sym_BSLASHPnotecite] = ACTIONS(5135), + [anon_sym_BSLASHfnotecite] = ACTIONS(5135), + [anon_sym_BSLASHlabel] = ACTIONS(5135), + [anon_sym_BSLASHref] = ACTIONS(5135), + [anon_sym_BSLASHeqref] = ACTIONS(5135), + [anon_sym_BSLASHvref] = ACTIONS(5135), + [anon_sym_BSLASHVref] = ACTIONS(5135), + [anon_sym_BSLASHautoref] = ACTIONS(5135), + [anon_sym_BSLASHpageref] = ACTIONS(5135), + [anon_sym_BSLASHcref] = ACTIONS(5135), + [anon_sym_BSLASHCref] = ACTIONS(5135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnameCref] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHlabelcref] = ACTIONS(5135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCrefrange] = ACTIONS(5135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnewlabel] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), + [anon_sym_BSLASHdef] = ACTIONS(5135), + [anon_sym_BSLASHlet] = ACTIONS(5135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), + [anon_sym_BSLASHgls] = ACTIONS(5135), + [anon_sym_BSLASHGls] = ACTIONS(5135), + [anon_sym_BSLASHGLS] = ACTIONS(5135), + [anon_sym_BSLASHglspl] = ACTIONS(5135), + [anon_sym_BSLASHGlspl] = ACTIONS(5135), + [anon_sym_BSLASHGLSpl] = ACTIONS(5135), + [anon_sym_BSLASHglsdisp] = ACTIONS(5135), + [anon_sym_BSLASHglslink] = ACTIONS(5135), + [anon_sym_BSLASHglstext] = ACTIONS(5135), + [anon_sym_BSLASHGlstext] = ACTIONS(5135), + [anon_sym_BSLASHGLStext] = ACTIONS(5135), + [anon_sym_BSLASHglsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), + [anon_sym_BSLASHglsplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSplural] = ACTIONS(5135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHglsname] = ACTIONS(5135), + [anon_sym_BSLASHGlsname] = ACTIONS(5135), + [anon_sym_BSLASHGLSname] = ACTIONS(5135), + [anon_sym_BSLASHglssymbol] = ACTIONS(5135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), + [anon_sym_BSLASHglsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), + [anon_sym_BSLASHglsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), + [anon_sym_BSLASHglsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), + [anon_sym_BSLASHglsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), + [anon_sym_BSLASHglsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), + [anon_sym_BSLASHnewacronym] = ACTIONS(5135), + [anon_sym_BSLASHacrshort] = ACTIONS(5135), + [anon_sym_BSLASHAcrshort] = ACTIONS(5135), + [anon_sym_BSLASHACRshort] = ACTIONS(5135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), + [anon_sym_BSLASHacrlong] = ACTIONS(5135), + [anon_sym_BSLASHAcrlong] = ACTIONS(5135), + [anon_sym_BSLASHACRlong] = ACTIONS(5135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), + [anon_sym_BSLASHacrfull] = ACTIONS(5135), + [anon_sym_BSLASHAcrfull] = ACTIONS(5135), + [anon_sym_BSLASHACRfull] = ACTIONS(5135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), + [anon_sym_BSLASHacs] = ACTIONS(5135), + [anon_sym_BSLASHAcs] = ACTIONS(5135), + [anon_sym_BSLASHacsp] = ACTIONS(5135), + [anon_sym_BSLASHAcsp] = ACTIONS(5135), + [anon_sym_BSLASHacl] = ACTIONS(5135), + [anon_sym_BSLASHAcl] = ACTIONS(5135), + [anon_sym_BSLASHaclp] = ACTIONS(5135), + [anon_sym_BSLASHAclp] = ACTIONS(5135), + [anon_sym_BSLASHacf] = ACTIONS(5135), + [anon_sym_BSLASHAcf] = ACTIONS(5135), + [anon_sym_BSLASHacfp] = ACTIONS(5135), + [anon_sym_BSLASHAcfp] = ACTIONS(5135), + [anon_sym_BSLASHac] = ACTIONS(5135), + [anon_sym_BSLASHAc] = ACTIONS(5135), + [anon_sym_BSLASHacp] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), + [anon_sym_BSLASHcolor] = ACTIONS(5135), + [anon_sym_BSLASHcolorbox] = ACTIONS(5135), + [anon_sym_BSLASHtextcolor] = ACTIONS(5135), + [anon_sym_BSLASHpagecolor] = ACTIONS(5135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [anon_sym_BSLASHtext] = ACTIONS(5135), + [anon_sym_BSLASHintertext] = ACTIONS(5135), + [anon_sym_shortintertext] = ACTIONS(5135), }, - [1459] = { - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LPAREN] = ACTIONS(5013), - [anon_sym_RPAREN] = ACTIONS(5013), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [anon_sym_RBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5013), - [anon_sym_DOLLAR] = ACTIONS(5015), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5013), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5013), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), + [1404] = { + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHbegin] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), }, - [1460] = { - [sym_command_name] = ACTIONS(5037), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_RPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), - [anon_sym_DOLLAR] = ACTIONS(5037), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [1405] = { + [sym_command_name] = ACTIONS(4939), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4937), + [anon_sym_RPAREN] = ACTIONS(4937), + [anon_sym_LBRACK] = ACTIONS(4937), + [anon_sym_RBRACK] = ACTIONS(4937), + [anon_sym_COMMA] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4937), + [sym_word] = ACTIONS(4939), + [sym_placeholder] = ACTIONS(4937), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_SLASH] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(4939), + [anon_sym__] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4939), + [anon_sym_GT] = ACTIONS(4939), + [anon_sym_BANG] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4939), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_SQUOTE] = ACTIONS(4939), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), + [anon_sym_DOLLAR] = ACTIONS(4939), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), + [anon_sym_BSLASHbegin] = ACTIONS(4939), + [anon_sym_BSLASHusepackage] = ACTIONS(4939), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), + [anon_sym_BSLASHinclude] = ACTIONS(4939), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), + [anon_sym_BSLASHinput] = ACTIONS(4939), + [anon_sym_BSLASHsubfile] = ACTIONS(4939), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), + [anon_sym_BSLASHbibliography] = ACTIONS(4939), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), + [anon_sym_BSLASHincludesvg] = ACTIONS(4939), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), + [anon_sym_BSLASHimport] = ACTIONS(4939), + [anon_sym_BSLASHsubimport] = ACTIONS(4939), + [anon_sym_BSLASHinputfrom] = ACTIONS(4939), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), + [anon_sym_BSLASHincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHcaption] = ACTIONS(4939), + [anon_sym_BSLASHcite] = ACTIONS(4939), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCite] = ACTIONS(4939), + [anon_sym_BSLASHnocite] = ACTIONS(4939), + [anon_sym_BSLASHcitet] = ACTIONS(4939), + [anon_sym_BSLASHcitep] = ACTIONS(4939), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteauthor] = ACTIONS(4939), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitetitle] = ACTIONS(4939), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteyear] = ACTIONS(4939), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitedate] = ACTIONS(4939), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteurl] = ACTIONS(4939), + [anon_sym_BSLASHfullcite] = ACTIONS(4939), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), + [anon_sym_BSLASHcitealt] = ACTIONS(4939), + [anon_sym_BSLASHcitealp] = ACTIONS(4939), + [anon_sym_BSLASHcitetext] = ACTIONS(4939), + [anon_sym_BSLASHparencite] = ACTIONS(4939), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHParencite] = ACTIONS(4939), + [anon_sym_BSLASHfootcite] = ACTIONS(4939), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), + [anon_sym_BSLASHtextcite] = ACTIONS(4939), + [anon_sym_BSLASHTextcite] = ACTIONS(4939), + [anon_sym_BSLASHsmartcite] = ACTIONS(4939), + [anon_sym_BSLASHSmartcite] = ACTIONS(4939), + [anon_sym_BSLASHsupercite] = ACTIONS(4939), + [anon_sym_BSLASHautocite] = ACTIONS(4939), + [anon_sym_BSLASHAutocite] = ACTIONS(4939), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHvolcite] = ACTIONS(4939), + [anon_sym_BSLASHVolcite] = ACTIONS(4939), + [anon_sym_BSLASHpvolcite] = ACTIONS(4939), + [anon_sym_BSLASHPvolcite] = ACTIONS(4939), + [anon_sym_BSLASHfvolcite] = ACTIONS(4939), + [anon_sym_BSLASHftvolcite] = ACTIONS(4939), + [anon_sym_BSLASHsvolcite] = ACTIONS(4939), + [anon_sym_BSLASHSvolcite] = ACTIONS(4939), + [anon_sym_BSLASHtvolcite] = ACTIONS(4939), + [anon_sym_BSLASHTvolcite] = ACTIONS(4939), + [anon_sym_BSLASHavolcite] = ACTIONS(4939), + [anon_sym_BSLASHAvolcite] = ACTIONS(4939), + [anon_sym_BSLASHnotecite] = ACTIONS(4939), + [anon_sym_BSLASHNotecite] = ACTIONS(4939), + [anon_sym_BSLASHpnotecite] = ACTIONS(4939), + [anon_sym_BSLASHPnotecite] = ACTIONS(4939), + [anon_sym_BSLASHfnotecite] = ACTIONS(4939), + [anon_sym_BSLASHlabel] = ACTIONS(4939), + [anon_sym_BSLASHref] = ACTIONS(4939), + [anon_sym_BSLASHeqref] = ACTIONS(4939), + [anon_sym_BSLASHvref] = ACTIONS(4939), + [anon_sym_BSLASHVref] = ACTIONS(4939), + [anon_sym_BSLASHautoref] = ACTIONS(4939), + [anon_sym_BSLASHpageref] = ACTIONS(4939), + [anon_sym_BSLASHcref] = ACTIONS(4939), + [anon_sym_BSLASHCref] = ACTIONS(4939), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnameCref] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHlabelcref] = ACTIONS(4939), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCrefrange] = ACTIONS(4939), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnewlabel] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), + [anon_sym_BSLASHdef] = ACTIONS(4939), + [anon_sym_BSLASHlet] = ACTIONS(4939), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), + [anon_sym_BSLASHgls] = ACTIONS(4939), + [anon_sym_BSLASHGls] = ACTIONS(4939), + [anon_sym_BSLASHGLS] = ACTIONS(4939), + [anon_sym_BSLASHglspl] = ACTIONS(4939), + [anon_sym_BSLASHGlspl] = ACTIONS(4939), + [anon_sym_BSLASHGLSpl] = ACTIONS(4939), + [anon_sym_BSLASHglsdisp] = ACTIONS(4939), + [anon_sym_BSLASHglslink] = ACTIONS(4939), + [anon_sym_BSLASHglstext] = ACTIONS(4939), + [anon_sym_BSLASHGlstext] = ACTIONS(4939), + [anon_sym_BSLASHGLStext] = ACTIONS(4939), + [anon_sym_BSLASHglsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), + [anon_sym_BSLASHglsplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSplural] = ACTIONS(4939), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHglsname] = ACTIONS(4939), + [anon_sym_BSLASHGlsname] = ACTIONS(4939), + [anon_sym_BSLASHGLSname] = ACTIONS(4939), + [anon_sym_BSLASHglssymbol] = ACTIONS(4939), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), + [anon_sym_BSLASHglsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), + [anon_sym_BSLASHglsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), + [anon_sym_BSLASHglsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), + [anon_sym_BSLASHglsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), + [anon_sym_BSLASHglsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), + [anon_sym_BSLASHnewacronym] = ACTIONS(4939), + [anon_sym_BSLASHacrshort] = ACTIONS(4939), + [anon_sym_BSLASHAcrshort] = ACTIONS(4939), + [anon_sym_BSLASHACRshort] = ACTIONS(4939), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), + [anon_sym_BSLASHacrlong] = ACTIONS(4939), + [anon_sym_BSLASHAcrlong] = ACTIONS(4939), + [anon_sym_BSLASHACRlong] = ACTIONS(4939), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), + [anon_sym_BSLASHacrfull] = ACTIONS(4939), + [anon_sym_BSLASHAcrfull] = ACTIONS(4939), + [anon_sym_BSLASHACRfull] = ACTIONS(4939), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), + [anon_sym_BSLASHacs] = ACTIONS(4939), + [anon_sym_BSLASHAcs] = ACTIONS(4939), + [anon_sym_BSLASHacsp] = ACTIONS(4939), + [anon_sym_BSLASHAcsp] = ACTIONS(4939), + [anon_sym_BSLASHacl] = ACTIONS(4939), + [anon_sym_BSLASHAcl] = ACTIONS(4939), + [anon_sym_BSLASHaclp] = ACTIONS(4939), + [anon_sym_BSLASHAclp] = ACTIONS(4939), + [anon_sym_BSLASHacf] = ACTIONS(4939), + [anon_sym_BSLASHAcf] = ACTIONS(4939), + [anon_sym_BSLASHacfp] = ACTIONS(4939), + [anon_sym_BSLASHAcfp] = ACTIONS(4939), + [anon_sym_BSLASHac] = ACTIONS(4939), + [anon_sym_BSLASHAc] = ACTIONS(4939), + [anon_sym_BSLASHacp] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), + [anon_sym_BSLASHcolor] = ACTIONS(4939), + [anon_sym_BSLASHcolorbox] = ACTIONS(4939), + [anon_sym_BSLASHtextcolor] = ACTIONS(4939), + [anon_sym_BSLASHpagecolor] = ACTIONS(4939), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), + [anon_sym_BSLASHtext] = ACTIONS(4939), + [anon_sym_BSLASHintertext] = ACTIONS(4939), + [anon_sym_shortintertext] = ACTIONS(4939), }, - [1461] = { - [sym_command_name] = ACTIONS(5025), + [1406] = { + [sym_command_name] = ACTIONS(4929), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5025), - [anon_sym_LPAREN] = ACTIONS(5023), - [anon_sym_RPAREN] = ACTIONS(5023), - [anon_sym_LBRACK] = ACTIONS(5023), - [anon_sym_RBRACK] = ACTIONS(5023), - [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_LBRACE] = ACTIONS(5023), - [anon_sym_RBRACE] = ACTIONS(5023), - [sym_word] = ACTIONS(5025), - [sym_placeholder] = ACTIONS(5023), - [anon_sym_PLUS] = ACTIONS(5025), - [anon_sym_DASH] = ACTIONS(5025), - [anon_sym_STAR] = ACTIONS(5025), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_CARET] = ACTIONS(5025), - [anon_sym__] = ACTIONS(5025), - [anon_sym_LT] = ACTIONS(5025), - [anon_sym_GT] = ACTIONS(5025), - [anon_sym_BANG] = ACTIONS(5025), - [anon_sym_PIPE] = ACTIONS(5025), - [anon_sym_COLON] = ACTIONS(5025), - [anon_sym_SQUOTE] = ACTIONS(5025), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), - [anon_sym_DOLLAR] = ACTIONS(5025), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), - [anon_sym_BSLASHusepackage] = ACTIONS(5025), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), - [anon_sym_BSLASHinclude] = ACTIONS(5025), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), - [anon_sym_BSLASHinput] = ACTIONS(5025), - [anon_sym_BSLASHsubfile] = ACTIONS(5025), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), - [anon_sym_BSLASHbibliography] = ACTIONS(5025), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), - [anon_sym_BSLASHincludesvg] = ACTIONS(5025), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), - [anon_sym_BSLASHimport] = ACTIONS(5025), - [anon_sym_BSLASHsubimport] = ACTIONS(5025), - [anon_sym_BSLASHinputfrom] = ACTIONS(5025), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), - [anon_sym_BSLASHincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), - [anon_sym_BSLASHcaption] = ACTIONS(5025), - [anon_sym_BSLASHcite] = ACTIONS(5025), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCite] = ACTIONS(5025), - [anon_sym_BSLASHnocite] = ACTIONS(5025), - [anon_sym_BSLASHcitet] = ACTIONS(5025), - [anon_sym_BSLASHcitep] = ACTIONS(5025), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteauthor] = ACTIONS(5025), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitetitle] = ACTIONS(5025), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteyear] = ACTIONS(5025), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), - [anon_sym_BSLASHcitedate] = ACTIONS(5025), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), - [anon_sym_BSLASHciteurl] = ACTIONS(5025), - [anon_sym_BSLASHfullcite] = ACTIONS(5025), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), - [anon_sym_BSLASHcitealt] = ACTIONS(5025), - [anon_sym_BSLASHcitealp] = ACTIONS(5025), - [anon_sym_BSLASHcitetext] = ACTIONS(5025), - [anon_sym_BSLASHparencite] = ACTIONS(5025), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHParencite] = ACTIONS(5025), - [anon_sym_BSLASHfootcite] = ACTIONS(5025), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), - [anon_sym_BSLASHtextcite] = ACTIONS(5025), - [anon_sym_BSLASHTextcite] = ACTIONS(5025), - [anon_sym_BSLASHsmartcite] = ACTIONS(5025), - [anon_sym_BSLASHSmartcite] = ACTIONS(5025), - [anon_sym_BSLASHsupercite] = ACTIONS(5025), - [anon_sym_BSLASHautocite] = ACTIONS(5025), - [anon_sym_BSLASHAutocite] = ACTIONS(5025), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), - [anon_sym_BSLASHvolcite] = ACTIONS(5025), - [anon_sym_BSLASHVolcite] = ACTIONS(5025), - [anon_sym_BSLASHpvolcite] = ACTIONS(5025), - [anon_sym_BSLASHPvolcite] = ACTIONS(5025), - [anon_sym_BSLASHfvolcite] = ACTIONS(5025), - [anon_sym_BSLASHftvolcite] = ACTIONS(5025), - [anon_sym_BSLASHsvolcite] = ACTIONS(5025), - [anon_sym_BSLASHSvolcite] = ACTIONS(5025), - [anon_sym_BSLASHtvolcite] = ACTIONS(5025), - [anon_sym_BSLASHTvolcite] = ACTIONS(5025), - [anon_sym_BSLASHavolcite] = ACTIONS(5025), - [anon_sym_BSLASHAvolcite] = ACTIONS(5025), - [anon_sym_BSLASHnotecite] = ACTIONS(5025), - [anon_sym_BSLASHNotecite] = ACTIONS(5025), - [anon_sym_BSLASHpnotecite] = ACTIONS(5025), - [anon_sym_BSLASHPnotecite] = ACTIONS(5025), - [anon_sym_BSLASHfnotecite] = ACTIONS(5025), - [anon_sym_BSLASHlabel] = ACTIONS(5025), - [anon_sym_BSLASHref] = ACTIONS(5025), - [anon_sym_BSLASHeqref] = ACTIONS(5025), - [anon_sym_BSLASHvref] = ACTIONS(5025), - [anon_sym_BSLASHVref] = ACTIONS(5025), - [anon_sym_BSLASHautoref] = ACTIONS(5025), - [anon_sym_BSLASHpageref] = ACTIONS(5025), - [anon_sym_BSLASHcref] = ACTIONS(5025), - [anon_sym_BSLASHCref] = ACTIONS(5025), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnameCref] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), - [anon_sym_BSLASHlabelcref] = ACTIONS(5025), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange] = ACTIONS(5025), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHCrefrange] = ACTIONS(5025), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), - [anon_sym_BSLASHnewlabel] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand] = ACTIONS(5025), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), - [anon_sym_BSLASHdef] = ACTIONS(5025), - [anon_sym_BSLASHlet] = ACTIONS(5025), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), - [anon_sym_BSLASHgls] = ACTIONS(5025), - [anon_sym_BSLASHGls] = ACTIONS(5025), - [anon_sym_BSLASHGLS] = ACTIONS(5025), - [anon_sym_BSLASHglspl] = ACTIONS(5025), - [anon_sym_BSLASHGlspl] = ACTIONS(5025), - [anon_sym_BSLASHGLSpl] = ACTIONS(5025), - [anon_sym_BSLASHglsdisp] = ACTIONS(5025), - [anon_sym_BSLASHglslink] = ACTIONS(5025), - [anon_sym_BSLASHglstext] = ACTIONS(5025), - [anon_sym_BSLASHGlstext] = ACTIONS(5025), - [anon_sym_BSLASHGLStext] = ACTIONS(5025), - [anon_sym_BSLASHglsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), - [anon_sym_BSLASHglsplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSplural] = ACTIONS(5025), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), - [anon_sym_BSLASHglsname] = ACTIONS(5025), - [anon_sym_BSLASHGlsname] = ACTIONS(5025), - [anon_sym_BSLASHGLSname] = ACTIONS(5025), - [anon_sym_BSLASHglssymbol] = ACTIONS(5025), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), - [anon_sym_BSLASHglsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), - [anon_sym_BSLASHglsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), - [anon_sym_BSLASHglsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), - [anon_sym_BSLASHglsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), - [anon_sym_BSLASHglsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), - [anon_sym_BSLASHnewacronym] = ACTIONS(5025), - [anon_sym_BSLASHacrshort] = ACTIONS(5025), - [anon_sym_BSLASHAcrshort] = ACTIONS(5025), - [anon_sym_BSLASHACRshort] = ACTIONS(5025), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), - [anon_sym_BSLASHacrlong] = ACTIONS(5025), - [anon_sym_BSLASHAcrlong] = ACTIONS(5025), - [anon_sym_BSLASHACRlong] = ACTIONS(5025), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), - [anon_sym_BSLASHacrfull] = ACTIONS(5025), - [anon_sym_BSLASHAcrfull] = ACTIONS(5025), - [anon_sym_BSLASHACRfull] = ACTIONS(5025), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), - [anon_sym_BSLASHacs] = ACTIONS(5025), - [anon_sym_BSLASHAcs] = ACTIONS(5025), - [anon_sym_BSLASHacsp] = ACTIONS(5025), - [anon_sym_BSLASHAcsp] = ACTIONS(5025), - [anon_sym_BSLASHacl] = ACTIONS(5025), - [anon_sym_BSLASHAcl] = ACTIONS(5025), - [anon_sym_BSLASHaclp] = ACTIONS(5025), - [anon_sym_BSLASHAclp] = ACTIONS(5025), - [anon_sym_BSLASHacf] = ACTIONS(5025), - [anon_sym_BSLASHAcf] = ACTIONS(5025), - [anon_sym_BSLASHacfp] = ACTIONS(5025), - [anon_sym_BSLASHAcfp] = ACTIONS(5025), - [anon_sym_BSLASHac] = ACTIONS(5025), - [anon_sym_BSLASHAc] = ACTIONS(5025), - [anon_sym_BSLASHacp] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), - [anon_sym_BSLASHcolor] = ACTIONS(5025), - [anon_sym_BSLASHcolorbox] = ACTIONS(5025), - [anon_sym_BSLASHtextcolor] = ACTIONS(5025), - [anon_sym_BSLASHpagecolor] = ACTIONS(5025), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [anon_sym_BSLASHiffalse] = ACTIONS(4929), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_RBRACK] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_EQ] = ACTIONS(4927), + [anon_sym_LBRACE] = ACTIONS(4927), + [sym_word] = ACTIONS(4929), + [sym_placeholder] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_CARET] = ACTIONS(4929), + [anon_sym__] = ACTIONS(4929), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_BANG] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4929), + [anon_sym_COLON] = ACTIONS(4929), + [anon_sym_SQUOTE] = ACTIONS(4929), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), + [anon_sym_DOLLAR] = ACTIONS(4929), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), + [anon_sym_BSLASHbegin] = ACTIONS(4929), + [anon_sym_BSLASHusepackage] = ACTIONS(4929), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), + [anon_sym_BSLASHinclude] = ACTIONS(4929), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), + [anon_sym_BSLASHinput] = ACTIONS(4929), + [anon_sym_BSLASHsubfile] = ACTIONS(4929), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), + [anon_sym_BSLASHbibliography] = ACTIONS(4929), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), + [anon_sym_BSLASHincludesvg] = ACTIONS(4929), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), + [anon_sym_BSLASHimport] = ACTIONS(4929), + [anon_sym_BSLASHsubimport] = ACTIONS(4929), + [anon_sym_BSLASHinputfrom] = ACTIONS(4929), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), + [anon_sym_BSLASHincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHcaption] = ACTIONS(4929), + [anon_sym_BSLASHcite] = ACTIONS(4929), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCite] = ACTIONS(4929), + [anon_sym_BSLASHnocite] = ACTIONS(4929), + [anon_sym_BSLASHcitet] = ACTIONS(4929), + [anon_sym_BSLASHcitep] = ACTIONS(4929), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteauthor] = ACTIONS(4929), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitetitle] = ACTIONS(4929), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteyear] = ACTIONS(4929), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitedate] = ACTIONS(4929), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteurl] = ACTIONS(4929), + [anon_sym_BSLASHfullcite] = ACTIONS(4929), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), + [anon_sym_BSLASHcitealt] = ACTIONS(4929), + [anon_sym_BSLASHcitealp] = ACTIONS(4929), + [anon_sym_BSLASHcitetext] = ACTIONS(4929), + [anon_sym_BSLASHparencite] = ACTIONS(4929), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHParencite] = ACTIONS(4929), + [anon_sym_BSLASHfootcite] = ACTIONS(4929), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), + [anon_sym_BSLASHtextcite] = ACTIONS(4929), + [anon_sym_BSLASHTextcite] = ACTIONS(4929), + [anon_sym_BSLASHsmartcite] = ACTIONS(4929), + [anon_sym_BSLASHSmartcite] = ACTIONS(4929), + [anon_sym_BSLASHsupercite] = ACTIONS(4929), + [anon_sym_BSLASHautocite] = ACTIONS(4929), + [anon_sym_BSLASHAutocite] = ACTIONS(4929), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHvolcite] = ACTIONS(4929), + [anon_sym_BSLASHVolcite] = ACTIONS(4929), + [anon_sym_BSLASHpvolcite] = ACTIONS(4929), + [anon_sym_BSLASHPvolcite] = ACTIONS(4929), + [anon_sym_BSLASHfvolcite] = ACTIONS(4929), + [anon_sym_BSLASHftvolcite] = ACTIONS(4929), + [anon_sym_BSLASHsvolcite] = ACTIONS(4929), + [anon_sym_BSLASHSvolcite] = ACTIONS(4929), + [anon_sym_BSLASHtvolcite] = ACTIONS(4929), + [anon_sym_BSLASHTvolcite] = ACTIONS(4929), + [anon_sym_BSLASHavolcite] = ACTIONS(4929), + [anon_sym_BSLASHAvolcite] = ACTIONS(4929), + [anon_sym_BSLASHnotecite] = ACTIONS(4929), + [anon_sym_BSLASHNotecite] = ACTIONS(4929), + [anon_sym_BSLASHpnotecite] = ACTIONS(4929), + [anon_sym_BSLASHPnotecite] = ACTIONS(4929), + [anon_sym_BSLASHfnotecite] = ACTIONS(4929), + [anon_sym_BSLASHlabel] = ACTIONS(4929), + [anon_sym_BSLASHref] = ACTIONS(4929), + [anon_sym_BSLASHeqref] = ACTIONS(4929), + [anon_sym_BSLASHvref] = ACTIONS(4929), + [anon_sym_BSLASHVref] = ACTIONS(4929), + [anon_sym_BSLASHautoref] = ACTIONS(4929), + [anon_sym_BSLASHpageref] = ACTIONS(4929), + [anon_sym_BSLASHcref] = ACTIONS(4929), + [anon_sym_BSLASHCref] = ACTIONS(4929), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnameCref] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHlabelcref] = ACTIONS(4929), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCrefrange] = ACTIONS(4929), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnewlabel] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), + [anon_sym_BSLASHdef] = ACTIONS(4929), + [anon_sym_BSLASHlet] = ACTIONS(4929), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), + [anon_sym_BSLASHgls] = ACTIONS(4929), + [anon_sym_BSLASHGls] = ACTIONS(4929), + [anon_sym_BSLASHGLS] = ACTIONS(4929), + [anon_sym_BSLASHglspl] = ACTIONS(4929), + [anon_sym_BSLASHGlspl] = ACTIONS(4929), + [anon_sym_BSLASHGLSpl] = ACTIONS(4929), + [anon_sym_BSLASHglsdisp] = ACTIONS(4929), + [anon_sym_BSLASHglslink] = ACTIONS(4929), + [anon_sym_BSLASHglstext] = ACTIONS(4929), + [anon_sym_BSLASHGlstext] = ACTIONS(4929), + [anon_sym_BSLASHGLStext] = ACTIONS(4929), + [anon_sym_BSLASHglsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), + [anon_sym_BSLASHglsplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSplural] = ACTIONS(4929), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHglsname] = ACTIONS(4929), + [anon_sym_BSLASHGlsname] = ACTIONS(4929), + [anon_sym_BSLASHGLSname] = ACTIONS(4929), + [anon_sym_BSLASHglssymbol] = ACTIONS(4929), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), + [anon_sym_BSLASHglsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), + [anon_sym_BSLASHglsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), + [anon_sym_BSLASHglsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), + [anon_sym_BSLASHglsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), + [anon_sym_BSLASHglsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), + [anon_sym_BSLASHnewacronym] = ACTIONS(4929), + [anon_sym_BSLASHacrshort] = ACTIONS(4929), + [anon_sym_BSLASHAcrshort] = ACTIONS(4929), + [anon_sym_BSLASHACRshort] = ACTIONS(4929), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), + [anon_sym_BSLASHacrlong] = ACTIONS(4929), + [anon_sym_BSLASHAcrlong] = ACTIONS(4929), + [anon_sym_BSLASHACRlong] = ACTIONS(4929), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), + [anon_sym_BSLASHacrfull] = ACTIONS(4929), + [anon_sym_BSLASHAcrfull] = ACTIONS(4929), + [anon_sym_BSLASHACRfull] = ACTIONS(4929), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), + [anon_sym_BSLASHacs] = ACTIONS(4929), + [anon_sym_BSLASHAcs] = ACTIONS(4929), + [anon_sym_BSLASHacsp] = ACTIONS(4929), + [anon_sym_BSLASHAcsp] = ACTIONS(4929), + [anon_sym_BSLASHacl] = ACTIONS(4929), + [anon_sym_BSLASHAcl] = ACTIONS(4929), + [anon_sym_BSLASHaclp] = ACTIONS(4929), + [anon_sym_BSLASHAclp] = ACTIONS(4929), + [anon_sym_BSLASHacf] = ACTIONS(4929), + [anon_sym_BSLASHAcf] = ACTIONS(4929), + [anon_sym_BSLASHacfp] = ACTIONS(4929), + [anon_sym_BSLASHAcfp] = ACTIONS(4929), + [anon_sym_BSLASHac] = ACTIONS(4929), + [anon_sym_BSLASHAc] = ACTIONS(4929), + [anon_sym_BSLASHacp] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), + [anon_sym_BSLASHcolor] = ACTIONS(4929), + [anon_sym_BSLASHcolorbox] = ACTIONS(4929), + [anon_sym_BSLASHtextcolor] = ACTIONS(4929), + [anon_sym_BSLASHpagecolor] = ACTIONS(4929), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), + [anon_sym_BSLASHtext] = ACTIONS(4929), + [anon_sym_BSLASHintertext] = ACTIONS(4929), + [anon_sym_shortintertext] = ACTIONS(4929), }, - [1462] = { - [sym_command_name] = ACTIONS(5021), + [1407] = { + [sym_command_name] = ACTIONS(4917), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_RPAREN] = ACTIONS(4915), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4915), + [sym_word] = ACTIONS(4917), + [sym_placeholder] = ACTIONS(4915), + [anon_sym_PLUS] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4917), + [anon_sym_CARET] = ACTIONS(4917), + [anon_sym__] = ACTIONS(4917), + [anon_sym_LT] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4917), + [anon_sym_BANG] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_SQUOTE] = ACTIONS(4917), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), + [anon_sym_DOLLAR] = ACTIONS(4917), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), + [anon_sym_BSLASHbegin] = ACTIONS(4917), + [anon_sym_BSLASHusepackage] = ACTIONS(4917), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), + [anon_sym_BSLASHinclude] = ACTIONS(4917), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), + [anon_sym_BSLASHinput] = ACTIONS(4917), + [anon_sym_BSLASHsubfile] = ACTIONS(4917), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), + [anon_sym_BSLASHbibliography] = ACTIONS(4917), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), + [anon_sym_BSLASHincludesvg] = ACTIONS(4917), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), + [anon_sym_BSLASHimport] = ACTIONS(4917), + [anon_sym_BSLASHsubimport] = ACTIONS(4917), + [anon_sym_BSLASHinputfrom] = ACTIONS(4917), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), + [anon_sym_BSLASHincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHcaption] = ACTIONS(4917), + [anon_sym_BSLASHcite] = ACTIONS(4917), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCite] = ACTIONS(4917), + [anon_sym_BSLASHnocite] = ACTIONS(4917), + [anon_sym_BSLASHcitet] = ACTIONS(4917), + [anon_sym_BSLASHcitep] = ACTIONS(4917), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteauthor] = ACTIONS(4917), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitetitle] = ACTIONS(4917), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteyear] = ACTIONS(4917), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitedate] = ACTIONS(4917), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteurl] = ACTIONS(4917), + [anon_sym_BSLASHfullcite] = ACTIONS(4917), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), + [anon_sym_BSLASHcitealt] = ACTIONS(4917), + [anon_sym_BSLASHcitealp] = ACTIONS(4917), + [anon_sym_BSLASHcitetext] = ACTIONS(4917), + [anon_sym_BSLASHparencite] = ACTIONS(4917), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHParencite] = ACTIONS(4917), + [anon_sym_BSLASHfootcite] = ACTIONS(4917), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), + [anon_sym_BSLASHtextcite] = ACTIONS(4917), + [anon_sym_BSLASHTextcite] = ACTIONS(4917), + [anon_sym_BSLASHsmartcite] = ACTIONS(4917), + [anon_sym_BSLASHSmartcite] = ACTIONS(4917), + [anon_sym_BSLASHsupercite] = ACTIONS(4917), + [anon_sym_BSLASHautocite] = ACTIONS(4917), + [anon_sym_BSLASHAutocite] = ACTIONS(4917), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHvolcite] = ACTIONS(4917), + [anon_sym_BSLASHVolcite] = ACTIONS(4917), + [anon_sym_BSLASHpvolcite] = ACTIONS(4917), + [anon_sym_BSLASHPvolcite] = ACTIONS(4917), + [anon_sym_BSLASHfvolcite] = ACTIONS(4917), + [anon_sym_BSLASHftvolcite] = ACTIONS(4917), + [anon_sym_BSLASHsvolcite] = ACTIONS(4917), + [anon_sym_BSLASHSvolcite] = ACTIONS(4917), + [anon_sym_BSLASHtvolcite] = ACTIONS(4917), + [anon_sym_BSLASHTvolcite] = ACTIONS(4917), + [anon_sym_BSLASHavolcite] = ACTIONS(4917), + [anon_sym_BSLASHAvolcite] = ACTIONS(4917), + [anon_sym_BSLASHnotecite] = ACTIONS(4917), + [anon_sym_BSLASHNotecite] = ACTIONS(4917), + [anon_sym_BSLASHpnotecite] = ACTIONS(4917), + [anon_sym_BSLASHPnotecite] = ACTIONS(4917), + [anon_sym_BSLASHfnotecite] = ACTIONS(4917), + [anon_sym_BSLASHlabel] = ACTIONS(4917), + [anon_sym_BSLASHref] = ACTIONS(4917), + [anon_sym_BSLASHeqref] = ACTIONS(4917), + [anon_sym_BSLASHvref] = ACTIONS(4917), + [anon_sym_BSLASHVref] = ACTIONS(4917), + [anon_sym_BSLASHautoref] = ACTIONS(4917), + [anon_sym_BSLASHpageref] = ACTIONS(4917), + [anon_sym_BSLASHcref] = ACTIONS(4917), + [anon_sym_BSLASHCref] = ACTIONS(4917), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnameCref] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHlabelcref] = ACTIONS(4917), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCrefrange] = ACTIONS(4917), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnewlabel] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), + [anon_sym_BSLASHdef] = ACTIONS(4917), + [anon_sym_BSLASHlet] = ACTIONS(4917), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), + [anon_sym_BSLASHgls] = ACTIONS(4917), + [anon_sym_BSLASHGls] = ACTIONS(4917), + [anon_sym_BSLASHGLS] = ACTIONS(4917), + [anon_sym_BSLASHglspl] = ACTIONS(4917), + [anon_sym_BSLASHGlspl] = ACTIONS(4917), + [anon_sym_BSLASHGLSpl] = ACTIONS(4917), + [anon_sym_BSLASHglsdisp] = ACTIONS(4917), + [anon_sym_BSLASHglslink] = ACTIONS(4917), + [anon_sym_BSLASHglstext] = ACTIONS(4917), + [anon_sym_BSLASHGlstext] = ACTIONS(4917), + [anon_sym_BSLASHGLStext] = ACTIONS(4917), + [anon_sym_BSLASHglsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), + [anon_sym_BSLASHglsplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSplural] = ACTIONS(4917), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHglsname] = ACTIONS(4917), + [anon_sym_BSLASHGlsname] = ACTIONS(4917), + [anon_sym_BSLASHGLSname] = ACTIONS(4917), + [anon_sym_BSLASHglssymbol] = ACTIONS(4917), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), + [anon_sym_BSLASHglsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), + [anon_sym_BSLASHglsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), + [anon_sym_BSLASHglsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), + [anon_sym_BSLASHglsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), + [anon_sym_BSLASHglsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), + [anon_sym_BSLASHnewacronym] = ACTIONS(4917), + [anon_sym_BSLASHacrshort] = ACTIONS(4917), + [anon_sym_BSLASHAcrshort] = ACTIONS(4917), + [anon_sym_BSLASHACRshort] = ACTIONS(4917), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), + [anon_sym_BSLASHacrlong] = ACTIONS(4917), + [anon_sym_BSLASHAcrlong] = ACTIONS(4917), + [anon_sym_BSLASHACRlong] = ACTIONS(4917), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), + [anon_sym_BSLASHacrfull] = ACTIONS(4917), + [anon_sym_BSLASHAcrfull] = ACTIONS(4917), + [anon_sym_BSLASHACRfull] = ACTIONS(4917), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), + [anon_sym_BSLASHacs] = ACTIONS(4917), + [anon_sym_BSLASHAcs] = ACTIONS(4917), + [anon_sym_BSLASHacsp] = ACTIONS(4917), + [anon_sym_BSLASHAcsp] = ACTIONS(4917), + [anon_sym_BSLASHacl] = ACTIONS(4917), + [anon_sym_BSLASHAcl] = ACTIONS(4917), + [anon_sym_BSLASHaclp] = ACTIONS(4917), + [anon_sym_BSLASHAclp] = ACTIONS(4917), + [anon_sym_BSLASHacf] = ACTIONS(4917), + [anon_sym_BSLASHAcf] = ACTIONS(4917), + [anon_sym_BSLASHacfp] = ACTIONS(4917), + [anon_sym_BSLASHAcfp] = ACTIONS(4917), + [anon_sym_BSLASHac] = ACTIONS(4917), + [anon_sym_BSLASHAc] = ACTIONS(4917), + [anon_sym_BSLASHacp] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), + [anon_sym_BSLASHcolor] = ACTIONS(4917), + [anon_sym_BSLASHcolorbox] = ACTIONS(4917), + [anon_sym_BSLASHtextcolor] = ACTIONS(4917), + [anon_sym_BSLASHpagecolor] = ACTIONS(4917), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), + [anon_sym_BSLASHtext] = ACTIONS(4917), + [anon_sym_BSLASHintertext] = ACTIONS(4917), + [anon_sym_shortintertext] = ACTIONS(4917), + }, + [1408] = { + [sym_command_name] = ACTIONS(4913), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4913), + [anon_sym_LPAREN] = ACTIONS(4911), + [anon_sym_RPAREN] = ACTIONS(4911), + [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_RBRACK] = ACTIONS(4911), + [anon_sym_COMMA] = ACTIONS(4911), + [anon_sym_EQ] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4911), + [sym_word] = ACTIONS(4913), + [sym_placeholder] = ACTIONS(4911), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4913), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_CARET] = ACTIONS(4913), + [anon_sym__] = ACTIONS(4913), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_BANG] = ACTIONS(4913), + [anon_sym_PIPE] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4913), + [anon_sym_SQUOTE] = ACTIONS(4913), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), + [anon_sym_DOLLAR] = ACTIONS(4913), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), + [anon_sym_BSLASHbegin] = ACTIONS(4913), + [anon_sym_BSLASHusepackage] = ACTIONS(4913), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), + [anon_sym_BSLASHinclude] = ACTIONS(4913), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), + [anon_sym_BSLASHinput] = ACTIONS(4913), + [anon_sym_BSLASHsubfile] = ACTIONS(4913), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), + [anon_sym_BSLASHbibliography] = ACTIONS(4913), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), + [anon_sym_BSLASHincludesvg] = ACTIONS(4913), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), + [anon_sym_BSLASHimport] = ACTIONS(4913), + [anon_sym_BSLASHsubimport] = ACTIONS(4913), + [anon_sym_BSLASHinputfrom] = ACTIONS(4913), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), + [anon_sym_BSLASHincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHcaption] = ACTIONS(4913), + [anon_sym_BSLASHcite] = ACTIONS(4913), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCite] = ACTIONS(4913), + [anon_sym_BSLASHnocite] = ACTIONS(4913), + [anon_sym_BSLASHcitet] = ACTIONS(4913), + [anon_sym_BSLASHcitep] = ACTIONS(4913), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteauthor] = ACTIONS(4913), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitetitle] = ACTIONS(4913), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteyear] = ACTIONS(4913), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitedate] = ACTIONS(4913), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteurl] = ACTIONS(4913), + [anon_sym_BSLASHfullcite] = ACTIONS(4913), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), + [anon_sym_BSLASHcitealt] = ACTIONS(4913), + [anon_sym_BSLASHcitealp] = ACTIONS(4913), + [anon_sym_BSLASHcitetext] = ACTIONS(4913), + [anon_sym_BSLASHparencite] = ACTIONS(4913), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHParencite] = ACTIONS(4913), + [anon_sym_BSLASHfootcite] = ACTIONS(4913), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), + [anon_sym_BSLASHtextcite] = ACTIONS(4913), + [anon_sym_BSLASHTextcite] = ACTIONS(4913), + [anon_sym_BSLASHsmartcite] = ACTIONS(4913), + [anon_sym_BSLASHSmartcite] = ACTIONS(4913), + [anon_sym_BSLASHsupercite] = ACTIONS(4913), + [anon_sym_BSLASHautocite] = ACTIONS(4913), + [anon_sym_BSLASHAutocite] = ACTIONS(4913), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHvolcite] = ACTIONS(4913), + [anon_sym_BSLASHVolcite] = ACTIONS(4913), + [anon_sym_BSLASHpvolcite] = ACTIONS(4913), + [anon_sym_BSLASHPvolcite] = ACTIONS(4913), + [anon_sym_BSLASHfvolcite] = ACTIONS(4913), + [anon_sym_BSLASHftvolcite] = ACTIONS(4913), + [anon_sym_BSLASHsvolcite] = ACTIONS(4913), + [anon_sym_BSLASHSvolcite] = ACTIONS(4913), + [anon_sym_BSLASHtvolcite] = ACTIONS(4913), + [anon_sym_BSLASHTvolcite] = ACTIONS(4913), + [anon_sym_BSLASHavolcite] = ACTIONS(4913), + [anon_sym_BSLASHAvolcite] = ACTIONS(4913), + [anon_sym_BSLASHnotecite] = ACTIONS(4913), + [anon_sym_BSLASHNotecite] = ACTIONS(4913), + [anon_sym_BSLASHpnotecite] = ACTIONS(4913), + [anon_sym_BSLASHPnotecite] = ACTIONS(4913), + [anon_sym_BSLASHfnotecite] = ACTIONS(4913), + [anon_sym_BSLASHlabel] = ACTIONS(4913), + [anon_sym_BSLASHref] = ACTIONS(4913), + [anon_sym_BSLASHeqref] = ACTIONS(4913), + [anon_sym_BSLASHvref] = ACTIONS(4913), + [anon_sym_BSLASHVref] = ACTIONS(4913), + [anon_sym_BSLASHautoref] = ACTIONS(4913), + [anon_sym_BSLASHpageref] = ACTIONS(4913), + [anon_sym_BSLASHcref] = ACTIONS(4913), + [anon_sym_BSLASHCref] = ACTIONS(4913), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnameCref] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHlabelcref] = ACTIONS(4913), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCrefrange] = ACTIONS(4913), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnewlabel] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), + [anon_sym_BSLASHdef] = ACTIONS(4913), + [anon_sym_BSLASHlet] = ACTIONS(4913), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), + [anon_sym_BSLASHgls] = ACTIONS(4913), + [anon_sym_BSLASHGls] = ACTIONS(4913), + [anon_sym_BSLASHGLS] = ACTIONS(4913), + [anon_sym_BSLASHglspl] = ACTIONS(4913), + [anon_sym_BSLASHGlspl] = ACTIONS(4913), + [anon_sym_BSLASHGLSpl] = ACTIONS(4913), + [anon_sym_BSLASHglsdisp] = ACTIONS(4913), + [anon_sym_BSLASHglslink] = ACTIONS(4913), + [anon_sym_BSLASHglstext] = ACTIONS(4913), + [anon_sym_BSLASHGlstext] = ACTIONS(4913), + [anon_sym_BSLASHGLStext] = ACTIONS(4913), + [anon_sym_BSLASHglsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), + [anon_sym_BSLASHglsplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSplural] = ACTIONS(4913), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHglsname] = ACTIONS(4913), + [anon_sym_BSLASHGlsname] = ACTIONS(4913), + [anon_sym_BSLASHGLSname] = ACTIONS(4913), + [anon_sym_BSLASHglssymbol] = ACTIONS(4913), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), + [anon_sym_BSLASHglsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), + [anon_sym_BSLASHglsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), + [anon_sym_BSLASHglsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), + [anon_sym_BSLASHglsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), + [anon_sym_BSLASHglsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), + [anon_sym_BSLASHnewacronym] = ACTIONS(4913), + [anon_sym_BSLASHacrshort] = ACTIONS(4913), + [anon_sym_BSLASHAcrshort] = ACTIONS(4913), + [anon_sym_BSLASHACRshort] = ACTIONS(4913), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), + [anon_sym_BSLASHacrlong] = ACTIONS(4913), + [anon_sym_BSLASHAcrlong] = ACTIONS(4913), + [anon_sym_BSLASHACRlong] = ACTIONS(4913), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), + [anon_sym_BSLASHacrfull] = ACTIONS(4913), + [anon_sym_BSLASHAcrfull] = ACTIONS(4913), + [anon_sym_BSLASHACRfull] = ACTIONS(4913), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), + [anon_sym_BSLASHacs] = ACTIONS(4913), + [anon_sym_BSLASHAcs] = ACTIONS(4913), + [anon_sym_BSLASHacsp] = ACTIONS(4913), + [anon_sym_BSLASHAcsp] = ACTIONS(4913), + [anon_sym_BSLASHacl] = ACTIONS(4913), + [anon_sym_BSLASHAcl] = ACTIONS(4913), + [anon_sym_BSLASHaclp] = ACTIONS(4913), + [anon_sym_BSLASHAclp] = ACTIONS(4913), + [anon_sym_BSLASHacf] = ACTIONS(4913), + [anon_sym_BSLASHAcf] = ACTIONS(4913), + [anon_sym_BSLASHacfp] = ACTIONS(4913), + [anon_sym_BSLASHAcfp] = ACTIONS(4913), + [anon_sym_BSLASHac] = ACTIONS(4913), + [anon_sym_BSLASHAc] = ACTIONS(4913), + [anon_sym_BSLASHacp] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), + [anon_sym_BSLASHcolor] = ACTIONS(4913), + [anon_sym_BSLASHcolorbox] = ACTIONS(4913), + [anon_sym_BSLASHtextcolor] = ACTIONS(4913), + [anon_sym_BSLASHpagecolor] = ACTIONS(4913), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), + [anon_sym_BSLASHtext] = ACTIONS(4913), + [anon_sym_BSLASHintertext] = ACTIONS(4913), + [anon_sym_shortintertext] = ACTIONS(4913), + }, + [1409] = { + [sym_command_name] = ACTIONS(4909), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4909), + [anon_sym_LPAREN] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4907), + [anon_sym_LBRACK] = ACTIONS(4907), + [anon_sym_RBRACK] = ACTIONS(4907), + [anon_sym_COMMA] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_LBRACE] = ACTIONS(4907), + [sym_word] = ACTIONS(4909), + [sym_placeholder] = ACTIONS(4907), + [anon_sym_PLUS] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_STAR] = ACTIONS(4909), + [anon_sym_SLASH] = ACTIONS(4909), + [anon_sym_CARET] = ACTIONS(4909), + [anon_sym__] = ACTIONS(4909), + [anon_sym_LT] = ACTIONS(4909), + [anon_sym_GT] = ACTIONS(4909), + [anon_sym_BANG] = ACTIONS(4909), + [anon_sym_PIPE] = ACTIONS(4909), + [anon_sym_COLON] = ACTIONS(4909), + [anon_sym_SQUOTE] = ACTIONS(4909), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), + [anon_sym_DOLLAR] = ACTIONS(4909), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), + [anon_sym_BSLASHbegin] = ACTIONS(4909), + [anon_sym_BSLASHusepackage] = ACTIONS(4909), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), + [anon_sym_BSLASHinclude] = ACTIONS(4909), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), + [anon_sym_BSLASHinput] = ACTIONS(4909), + [anon_sym_BSLASHsubfile] = ACTIONS(4909), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), + [anon_sym_BSLASHbibliography] = ACTIONS(4909), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), + [anon_sym_BSLASHincludesvg] = ACTIONS(4909), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), + [anon_sym_BSLASHimport] = ACTIONS(4909), + [anon_sym_BSLASHsubimport] = ACTIONS(4909), + [anon_sym_BSLASHinputfrom] = ACTIONS(4909), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), + [anon_sym_BSLASHincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHcaption] = ACTIONS(4909), + [anon_sym_BSLASHcite] = ACTIONS(4909), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCite] = ACTIONS(4909), + [anon_sym_BSLASHnocite] = ACTIONS(4909), + [anon_sym_BSLASHcitet] = ACTIONS(4909), + [anon_sym_BSLASHcitep] = ACTIONS(4909), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteauthor] = ACTIONS(4909), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitetitle] = ACTIONS(4909), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteyear] = ACTIONS(4909), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitedate] = ACTIONS(4909), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteurl] = ACTIONS(4909), + [anon_sym_BSLASHfullcite] = ACTIONS(4909), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), + [anon_sym_BSLASHcitealt] = ACTIONS(4909), + [anon_sym_BSLASHcitealp] = ACTIONS(4909), + [anon_sym_BSLASHcitetext] = ACTIONS(4909), + [anon_sym_BSLASHparencite] = ACTIONS(4909), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHParencite] = ACTIONS(4909), + [anon_sym_BSLASHfootcite] = ACTIONS(4909), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), + [anon_sym_BSLASHtextcite] = ACTIONS(4909), + [anon_sym_BSLASHTextcite] = ACTIONS(4909), + [anon_sym_BSLASHsmartcite] = ACTIONS(4909), + [anon_sym_BSLASHSmartcite] = ACTIONS(4909), + [anon_sym_BSLASHsupercite] = ACTIONS(4909), + [anon_sym_BSLASHautocite] = ACTIONS(4909), + [anon_sym_BSLASHAutocite] = ACTIONS(4909), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHvolcite] = ACTIONS(4909), + [anon_sym_BSLASHVolcite] = ACTIONS(4909), + [anon_sym_BSLASHpvolcite] = ACTIONS(4909), + [anon_sym_BSLASHPvolcite] = ACTIONS(4909), + [anon_sym_BSLASHfvolcite] = ACTIONS(4909), + [anon_sym_BSLASHftvolcite] = ACTIONS(4909), + [anon_sym_BSLASHsvolcite] = ACTIONS(4909), + [anon_sym_BSLASHSvolcite] = ACTIONS(4909), + [anon_sym_BSLASHtvolcite] = ACTIONS(4909), + [anon_sym_BSLASHTvolcite] = ACTIONS(4909), + [anon_sym_BSLASHavolcite] = ACTIONS(4909), + [anon_sym_BSLASHAvolcite] = ACTIONS(4909), + [anon_sym_BSLASHnotecite] = ACTIONS(4909), + [anon_sym_BSLASHNotecite] = ACTIONS(4909), + [anon_sym_BSLASHpnotecite] = ACTIONS(4909), + [anon_sym_BSLASHPnotecite] = ACTIONS(4909), + [anon_sym_BSLASHfnotecite] = ACTIONS(4909), + [anon_sym_BSLASHlabel] = ACTIONS(4909), + [anon_sym_BSLASHref] = ACTIONS(4909), + [anon_sym_BSLASHeqref] = ACTIONS(4909), + [anon_sym_BSLASHvref] = ACTIONS(4909), + [anon_sym_BSLASHVref] = ACTIONS(4909), + [anon_sym_BSLASHautoref] = ACTIONS(4909), + [anon_sym_BSLASHpageref] = ACTIONS(4909), + [anon_sym_BSLASHcref] = ACTIONS(4909), + [anon_sym_BSLASHCref] = ACTIONS(4909), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnameCref] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHlabelcref] = ACTIONS(4909), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCrefrange] = ACTIONS(4909), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnewlabel] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), + [anon_sym_BSLASHdef] = ACTIONS(4909), + [anon_sym_BSLASHlet] = ACTIONS(4909), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), + [anon_sym_BSLASHgls] = ACTIONS(4909), + [anon_sym_BSLASHGls] = ACTIONS(4909), + [anon_sym_BSLASHGLS] = ACTIONS(4909), + [anon_sym_BSLASHglspl] = ACTIONS(4909), + [anon_sym_BSLASHGlspl] = ACTIONS(4909), + [anon_sym_BSLASHGLSpl] = ACTIONS(4909), + [anon_sym_BSLASHglsdisp] = ACTIONS(4909), + [anon_sym_BSLASHglslink] = ACTIONS(4909), + [anon_sym_BSLASHglstext] = ACTIONS(4909), + [anon_sym_BSLASHGlstext] = ACTIONS(4909), + [anon_sym_BSLASHGLStext] = ACTIONS(4909), + [anon_sym_BSLASHglsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), + [anon_sym_BSLASHglsplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSplural] = ACTIONS(4909), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHglsname] = ACTIONS(4909), + [anon_sym_BSLASHGlsname] = ACTIONS(4909), + [anon_sym_BSLASHGLSname] = ACTIONS(4909), + [anon_sym_BSLASHglssymbol] = ACTIONS(4909), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), + [anon_sym_BSLASHglsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), + [anon_sym_BSLASHglsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), + [anon_sym_BSLASHglsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), + [anon_sym_BSLASHglsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), + [anon_sym_BSLASHglsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), + [anon_sym_BSLASHnewacronym] = ACTIONS(4909), + [anon_sym_BSLASHacrshort] = ACTIONS(4909), + [anon_sym_BSLASHAcrshort] = ACTIONS(4909), + [anon_sym_BSLASHACRshort] = ACTIONS(4909), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), + [anon_sym_BSLASHacrlong] = ACTIONS(4909), + [anon_sym_BSLASHAcrlong] = ACTIONS(4909), + [anon_sym_BSLASHACRlong] = ACTIONS(4909), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), + [anon_sym_BSLASHacrfull] = ACTIONS(4909), + [anon_sym_BSLASHAcrfull] = ACTIONS(4909), + [anon_sym_BSLASHACRfull] = ACTIONS(4909), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), + [anon_sym_BSLASHacs] = ACTIONS(4909), + [anon_sym_BSLASHAcs] = ACTIONS(4909), + [anon_sym_BSLASHacsp] = ACTIONS(4909), + [anon_sym_BSLASHAcsp] = ACTIONS(4909), + [anon_sym_BSLASHacl] = ACTIONS(4909), + [anon_sym_BSLASHAcl] = ACTIONS(4909), + [anon_sym_BSLASHaclp] = ACTIONS(4909), + [anon_sym_BSLASHAclp] = ACTIONS(4909), + [anon_sym_BSLASHacf] = ACTIONS(4909), + [anon_sym_BSLASHAcf] = ACTIONS(4909), + [anon_sym_BSLASHacfp] = ACTIONS(4909), + [anon_sym_BSLASHAcfp] = ACTIONS(4909), + [anon_sym_BSLASHac] = ACTIONS(4909), + [anon_sym_BSLASHAc] = ACTIONS(4909), + [anon_sym_BSLASHacp] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), + [anon_sym_BSLASHcolor] = ACTIONS(4909), + [anon_sym_BSLASHcolorbox] = ACTIONS(4909), + [anon_sym_BSLASHtextcolor] = ACTIONS(4909), + [anon_sym_BSLASHpagecolor] = ACTIONS(4909), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), + [anon_sym_BSLASHtext] = ACTIONS(4909), + [anon_sym_BSLASHintertext] = ACTIONS(4909), + [anon_sym_shortintertext] = ACTIONS(4909), + }, + [1410] = { + [sym_command_name] = ACTIONS(4905), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4905), + [anon_sym_LPAREN] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_LBRACK] = ACTIONS(4903), + [anon_sym_RBRACK] = ACTIONS(4903), + [anon_sym_COMMA] = ACTIONS(4903), + [anon_sym_EQ] = ACTIONS(4903), + [anon_sym_LBRACE] = ACTIONS(4903), + [sym_word] = ACTIONS(4905), + [sym_placeholder] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4905), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_CARET] = ACTIONS(4905), + [anon_sym__] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4905), + [anon_sym_COLON] = ACTIONS(4905), + [anon_sym_SQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4905), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), + [anon_sym_BSLASHbegin] = ACTIONS(4905), + [anon_sym_BSLASHusepackage] = ACTIONS(4905), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), + [anon_sym_BSLASHinclude] = ACTIONS(4905), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), + [anon_sym_BSLASHinput] = ACTIONS(4905), + [anon_sym_BSLASHsubfile] = ACTIONS(4905), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), + [anon_sym_BSLASHbibliography] = ACTIONS(4905), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), + [anon_sym_BSLASHincludesvg] = ACTIONS(4905), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), + [anon_sym_BSLASHimport] = ACTIONS(4905), + [anon_sym_BSLASHsubimport] = ACTIONS(4905), + [anon_sym_BSLASHinputfrom] = ACTIONS(4905), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), + [anon_sym_BSLASHincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHcaption] = ACTIONS(4905), + [anon_sym_BSLASHcite] = ACTIONS(4905), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCite] = ACTIONS(4905), + [anon_sym_BSLASHnocite] = ACTIONS(4905), + [anon_sym_BSLASHcitet] = ACTIONS(4905), + [anon_sym_BSLASHcitep] = ACTIONS(4905), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteauthor] = ACTIONS(4905), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitetitle] = ACTIONS(4905), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteyear] = ACTIONS(4905), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitedate] = ACTIONS(4905), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteurl] = ACTIONS(4905), + [anon_sym_BSLASHfullcite] = ACTIONS(4905), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), + [anon_sym_BSLASHcitealt] = ACTIONS(4905), + [anon_sym_BSLASHcitealp] = ACTIONS(4905), + [anon_sym_BSLASHcitetext] = ACTIONS(4905), + [anon_sym_BSLASHparencite] = ACTIONS(4905), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHParencite] = ACTIONS(4905), + [anon_sym_BSLASHfootcite] = ACTIONS(4905), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), + [anon_sym_BSLASHtextcite] = ACTIONS(4905), + [anon_sym_BSLASHTextcite] = ACTIONS(4905), + [anon_sym_BSLASHsmartcite] = ACTIONS(4905), + [anon_sym_BSLASHSmartcite] = ACTIONS(4905), + [anon_sym_BSLASHsupercite] = ACTIONS(4905), + [anon_sym_BSLASHautocite] = ACTIONS(4905), + [anon_sym_BSLASHAutocite] = ACTIONS(4905), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHvolcite] = ACTIONS(4905), + [anon_sym_BSLASHVolcite] = ACTIONS(4905), + [anon_sym_BSLASHpvolcite] = ACTIONS(4905), + [anon_sym_BSLASHPvolcite] = ACTIONS(4905), + [anon_sym_BSLASHfvolcite] = ACTIONS(4905), + [anon_sym_BSLASHftvolcite] = ACTIONS(4905), + [anon_sym_BSLASHsvolcite] = ACTIONS(4905), + [anon_sym_BSLASHSvolcite] = ACTIONS(4905), + [anon_sym_BSLASHtvolcite] = ACTIONS(4905), + [anon_sym_BSLASHTvolcite] = ACTIONS(4905), + [anon_sym_BSLASHavolcite] = ACTIONS(4905), + [anon_sym_BSLASHAvolcite] = ACTIONS(4905), + [anon_sym_BSLASHnotecite] = ACTIONS(4905), + [anon_sym_BSLASHNotecite] = ACTIONS(4905), + [anon_sym_BSLASHpnotecite] = ACTIONS(4905), + [anon_sym_BSLASHPnotecite] = ACTIONS(4905), + [anon_sym_BSLASHfnotecite] = ACTIONS(4905), + [anon_sym_BSLASHlabel] = ACTIONS(4905), + [anon_sym_BSLASHref] = ACTIONS(4905), + [anon_sym_BSLASHeqref] = ACTIONS(4905), + [anon_sym_BSLASHvref] = ACTIONS(4905), + [anon_sym_BSLASHVref] = ACTIONS(4905), + [anon_sym_BSLASHautoref] = ACTIONS(4905), + [anon_sym_BSLASHpageref] = ACTIONS(4905), + [anon_sym_BSLASHcref] = ACTIONS(4905), + [anon_sym_BSLASHCref] = ACTIONS(4905), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnameCref] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHlabelcref] = ACTIONS(4905), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCrefrange] = ACTIONS(4905), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnewlabel] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), + [anon_sym_BSLASHdef] = ACTIONS(4905), + [anon_sym_BSLASHlet] = ACTIONS(4905), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), + [anon_sym_BSLASHgls] = ACTIONS(4905), + [anon_sym_BSLASHGls] = ACTIONS(4905), + [anon_sym_BSLASHGLS] = ACTIONS(4905), + [anon_sym_BSLASHglspl] = ACTIONS(4905), + [anon_sym_BSLASHGlspl] = ACTIONS(4905), + [anon_sym_BSLASHGLSpl] = ACTIONS(4905), + [anon_sym_BSLASHglsdisp] = ACTIONS(4905), + [anon_sym_BSLASHglslink] = ACTIONS(4905), + [anon_sym_BSLASHglstext] = ACTIONS(4905), + [anon_sym_BSLASHGlstext] = ACTIONS(4905), + [anon_sym_BSLASHGLStext] = ACTIONS(4905), + [anon_sym_BSLASHglsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), + [anon_sym_BSLASHglsplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSplural] = ACTIONS(4905), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHglsname] = ACTIONS(4905), + [anon_sym_BSLASHGlsname] = ACTIONS(4905), + [anon_sym_BSLASHGLSname] = ACTIONS(4905), + [anon_sym_BSLASHglssymbol] = ACTIONS(4905), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), + [anon_sym_BSLASHglsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), + [anon_sym_BSLASHglsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), + [anon_sym_BSLASHglsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), + [anon_sym_BSLASHglsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), + [anon_sym_BSLASHglsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), + [anon_sym_BSLASHnewacronym] = ACTIONS(4905), + [anon_sym_BSLASHacrshort] = ACTIONS(4905), + [anon_sym_BSLASHAcrshort] = ACTIONS(4905), + [anon_sym_BSLASHACRshort] = ACTIONS(4905), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), + [anon_sym_BSLASHacrlong] = ACTIONS(4905), + [anon_sym_BSLASHAcrlong] = ACTIONS(4905), + [anon_sym_BSLASHACRlong] = ACTIONS(4905), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), + [anon_sym_BSLASHacrfull] = ACTIONS(4905), + [anon_sym_BSLASHAcrfull] = ACTIONS(4905), + [anon_sym_BSLASHACRfull] = ACTIONS(4905), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), + [anon_sym_BSLASHacs] = ACTIONS(4905), + [anon_sym_BSLASHAcs] = ACTIONS(4905), + [anon_sym_BSLASHacsp] = ACTIONS(4905), + [anon_sym_BSLASHAcsp] = ACTIONS(4905), + [anon_sym_BSLASHacl] = ACTIONS(4905), + [anon_sym_BSLASHAcl] = ACTIONS(4905), + [anon_sym_BSLASHaclp] = ACTIONS(4905), + [anon_sym_BSLASHAclp] = ACTIONS(4905), + [anon_sym_BSLASHacf] = ACTIONS(4905), + [anon_sym_BSLASHAcf] = ACTIONS(4905), + [anon_sym_BSLASHacfp] = ACTIONS(4905), + [anon_sym_BSLASHAcfp] = ACTIONS(4905), + [anon_sym_BSLASHac] = ACTIONS(4905), + [anon_sym_BSLASHAc] = ACTIONS(4905), + [anon_sym_BSLASHacp] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), + [anon_sym_BSLASHcolor] = ACTIONS(4905), + [anon_sym_BSLASHcolorbox] = ACTIONS(4905), + [anon_sym_BSLASHtextcolor] = ACTIONS(4905), + [anon_sym_BSLASHpagecolor] = ACTIONS(4905), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), + [anon_sym_BSLASHtext] = ACTIONS(4905), + [anon_sym_BSLASHintertext] = ACTIONS(4905), + [anon_sym_shortintertext] = ACTIONS(4905), + }, + [1411] = { + [sym_command_name] = ACTIONS(4999), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_LPAREN] = ACTIONS(5019), - [anon_sym_RPAREN] = ACTIONS(5019), - [anon_sym_LBRACK] = ACTIONS(5019), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_LBRACE] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), - [anon_sym_DOLLAR] = ACTIONS(5021), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), - }, - [1463] = { - [sym_command_name] = ACTIONS(141), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(141), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_RPAREN] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(139), - [anon_sym_RBRACK] = ACTIONS(139), - [anon_sym_COMMA] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(139), - [anon_sym_RBRACE] = ACTIONS(139), - [sym_word] = ACTIONS(141), - [sym_placeholder] = ACTIONS(139), - [anon_sym_PLUS] = ACTIONS(141), - [anon_sym_DASH] = ACTIONS(141), - [anon_sym_STAR] = ACTIONS(141), - [anon_sym_SLASH] = ACTIONS(141), - [anon_sym_CARET] = ACTIONS(141), - [anon_sym__] = ACTIONS(141), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(141), - [anon_sym_PIPE] = ACTIONS(141), - [anon_sym_COLON] = ACTIONS(141), - [anon_sym_SQUOTE] = ACTIONS(141), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(139), - [anon_sym_BSLASH_LBRACK] = ACTIONS(139), - [anon_sym_DOLLAR] = ACTIONS(141), - [anon_sym_BSLASH_LPAREN] = ACTIONS(139), - [anon_sym_BSLASH_LBRACE] = ACTIONS(139), - [anon_sym_BSLASHusepackage] = ACTIONS(141), - [anon_sym_BSLASHRequirePackage] = ACTIONS(141), - [anon_sym_BSLASHdocumentclass] = ACTIONS(141), - [anon_sym_BSLASHinclude] = ACTIONS(141), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(141), - [anon_sym_BSLASHinput] = ACTIONS(141), - [anon_sym_BSLASHsubfile] = ACTIONS(141), - [anon_sym_BSLASHaddbibresource] = ACTIONS(141), - [anon_sym_BSLASHbibliography] = ACTIONS(141), - [anon_sym_BSLASHincludegraphics] = ACTIONS(141), - [anon_sym_BSLASHincludesvg] = ACTIONS(141), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(141), - [anon_sym_BSLASHverbatiminput] = ACTIONS(141), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(141), - [anon_sym_BSLASHimport] = ACTIONS(141), - [anon_sym_BSLASHsubimport] = ACTIONS(141), - [anon_sym_BSLASHinputfrom] = ACTIONS(141), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(141), - [anon_sym_BSLASHincludefrom] = ACTIONS(141), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(141), - [anon_sym_BSLASHcaption] = ACTIONS(141), - [anon_sym_BSLASHcite] = ACTIONS(141), - [anon_sym_BSLASHcite_STAR] = ACTIONS(139), - [anon_sym_BSLASHCite] = ACTIONS(141), - [anon_sym_BSLASHnocite] = ACTIONS(141), - [anon_sym_BSLASHcitet] = ACTIONS(141), - [anon_sym_BSLASHcitep] = ACTIONS(141), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteauthor] = ACTIONS(141), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHCiteauthor] = ACTIONS(141), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitetitle] = ACTIONS(141), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteyear] = ACTIONS(141), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(139), - [anon_sym_BSLASHcitedate] = ACTIONS(141), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(139), - [anon_sym_BSLASHciteurl] = ACTIONS(141), - [anon_sym_BSLASHfullcite] = ACTIONS(141), - [anon_sym_BSLASHciteyearpar] = ACTIONS(141), - [anon_sym_BSLASHcitealt] = ACTIONS(141), - [anon_sym_BSLASHcitealp] = ACTIONS(141), - [anon_sym_BSLASHcitetext] = ACTIONS(141), - [anon_sym_BSLASHparencite] = ACTIONS(141), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(139), - [anon_sym_BSLASHParencite] = ACTIONS(141), - [anon_sym_BSLASHfootcite] = ACTIONS(141), - [anon_sym_BSLASHfootfullcite] = ACTIONS(141), - [anon_sym_BSLASHfootcitetext] = ACTIONS(141), - [anon_sym_BSLASHtextcite] = ACTIONS(141), - [anon_sym_BSLASHTextcite] = ACTIONS(141), - [anon_sym_BSLASHsmartcite] = ACTIONS(141), - [anon_sym_BSLASHSmartcite] = ACTIONS(141), - [anon_sym_BSLASHsupercite] = ACTIONS(141), - [anon_sym_BSLASHautocite] = ACTIONS(141), - [anon_sym_BSLASHAutocite] = ACTIONS(141), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(139), - [anon_sym_BSLASHvolcite] = ACTIONS(141), - [anon_sym_BSLASHVolcite] = ACTIONS(141), - [anon_sym_BSLASHpvolcite] = ACTIONS(141), - [anon_sym_BSLASHPvolcite] = ACTIONS(141), - [anon_sym_BSLASHfvolcite] = ACTIONS(141), - [anon_sym_BSLASHftvolcite] = ACTIONS(141), - [anon_sym_BSLASHsvolcite] = ACTIONS(141), - [anon_sym_BSLASHSvolcite] = ACTIONS(141), - [anon_sym_BSLASHtvolcite] = ACTIONS(141), - [anon_sym_BSLASHTvolcite] = ACTIONS(141), - [anon_sym_BSLASHavolcite] = ACTIONS(141), - [anon_sym_BSLASHAvolcite] = ACTIONS(141), - [anon_sym_BSLASHnotecite] = ACTIONS(141), - [anon_sym_BSLASHNotecite] = ACTIONS(141), - [anon_sym_BSLASHpnotecite] = ACTIONS(141), - [anon_sym_BSLASHPnotecite] = ACTIONS(141), - [anon_sym_BSLASHfnotecite] = ACTIONS(141), - [anon_sym_BSLASHlabel] = ACTIONS(141), - [anon_sym_BSLASHref] = ACTIONS(141), - [anon_sym_BSLASHeqref] = ACTIONS(141), - [anon_sym_BSLASHvref] = ACTIONS(141), - [anon_sym_BSLASHVref] = ACTIONS(141), - [anon_sym_BSLASHautoref] = ACTIONS(141), - [anon_sym_BSLASHpageref] = ACTIONS(141), - [anon_sym_BSLASHcref] = ACTIONS(141), - [anon_sym_BSLASHCref] = ACTIONS(141), - [anon_sym_BSLASHcref_STAR] = ACTIONS(139), - [anon_sym_BSLASHCref_STAR] = ACTIONS(139), - [anon_sym_BSLASHnamecref] = ACTIONS(141), - [anon_sym_BSLASHnameCref] = ACTIONS(141), - [anon_sym_BSLASHlcnamecref] = ACTIONS(141), - [anon_sym_BSLASHnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHnameCrefs] = ACTIONS(141), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(141), - [anon_sym_BSLASHlabelcref] = ACTIONS(141), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(141), - [anon_sym_BSLASHcrefrange] = ACTIONS(141), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHCrefrange] = ACTIONS(141), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(139), - [anon_sym_BSLASHnewlabel] = ACTIONS(141), - [anon_sym_BSLASHnewcommand] = ACTIONS(141), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHrenewcommand] = ACTIONS(141), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(141), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(139), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(141), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(139), - [anon_sym_BSLASHdef] = ACTIONS(141), - [anon_sym_BSLASHlet] = ACTIONS(141), - [anon_sym_BSLASHnewenvironment] = ACTIONS(141), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(141), - [anon_sym_BSLASHgls] = ACTIONS(141), - [anon_sym_BSLASHGls] = ACTIONS(141), - [anon_sym_BSLASHGLS] = ACTIONS(141), - [anon_sym_BSLASHglspl] = ACTIONS(141), - [anon_sym_BSLASHGlspl] = ACTIONS(141), - [anon_sym_BSLASHGLSpl] = ACTIONS(141), - [anon_sym_BSLASHglsdisp] = ACTIONS(141), - [anon_sym_BSLASHglslink] = ACTIONS(141), - [anon_sym_BSLASHglstext] = ACTIONS(141), - [anon_sym_BSLASHGlstext] = ACTIONS(141), - [anon_sym_BSLASHGLStext] = ACTIONS(141), - [anon_sym_BSLASHglsfirst] = ACTIONS(141), - [anon_sym_BSLASHGlsfirst] = ACTIONS(141), - [anon_sym_BSLASHGLSfirst] = ACTIONS(141), - [anon_sym_BSLASHglsplural] = ACTIONS(141), - [anon_sym_BSLASHGlsplural] = ACTIONS(141), - [anon_sym_BSLASHGLSplural] = ACTIONS(141), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(141), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(141), - [anon_sym_BSLASHglsname] = ACTIONS(141), - [anon_sym_BSLASHGlsname] = ACTIONS(141), - [anon_sym_BSLASHGLSname] = ACTIONS(141), - [anon_sym_BSLASHglssymbol] = ACTIONS(141), - [anon_sym_BSLASHGlssymbol] = ACTIONS(141), - [anon_sym_BSLASHglsdesc] = ACTIONS(141), - [anon_sym_BSLASHGlsdesc] = ACTIONS(141), - [anon_sym_BSLASHGLSdesc] = ACTIONS(141), - [anon_sym_BSLASHglsuseri] = ACTIONS(141), - [anon_sym_BSLASHGlsuseri] = ACTIONS(141), - [anon_sym_BSLASHGLSuseri] = ACTIONS(141), - [anon_sym_BSLASHglsuserii] = ACTIONS(141), - [anon_sym_BSLASHGlsuserii] = ACTIONS(141), - [anon_sym_BSLASHGLSuserii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(141), - [anon_sym_BSLASHglsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(141), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(141), - [anon_sym_BSLASHglsuserv] = ACTIONS(141), - [anon_sym_BSLASHGlsuserv] = ACTIONS(141), - [anon_sym_BSLASHGLSuserv] = ACTIONS(141), - [anon_sym_BSLASHglsuservi] = ACTIONS(141), - [anon_sym_BSLASHGlsuservi] = ACTIONS(141), - [anon_sym_BSLASHGLSuservi] = ACTIONS(141), - [anon_sym_BSLASHnewacronym] = ACTIONS(141), - [anon_sym_BSLASHacrshort] = ACTIONS(141), - [anon_sym_BSLASHAcrshort] = ACTIONS(141), - [anon_sym_BSLASHACRshort] = ACTIONS(141), - [anon_sym_BSLASHacrshortpl] = ACTIONS(141), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(141), - [anon_sym_BSLASHACRshortpl] = ACTIONS(141), - [anon_sym_BSLASHacrlong] = ACTIONS(141), - [anon_sym_BSLASHAcrlong] = ACTIONS(141), - [anon_sym_BSLASHACRlong] = ACTIONS(141), - [anon_sym_BSLASHacrlongpl] = ACTIONS(141), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(141), - [anon_sym_BSLASHACRlongpl] = ACTIONS(141), - [anon_sym_BSLASHacrfull] = ACTIONS(141), - [anon_sym_BSLASHAcrfull] = ACTIONS(141), - [anon_sym_BSLASHACRfull] = ACTIONS(141), - [anon_sym_BSLASHacrfullpl] = ACTIONS(141), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(141), - [anon_sym_BSLASHACRfullpl] = ACTIONS(141), - [anon_sym_BSLASHacs] = ACTIONS(141), - [anon_sym_BSLASHAcs] = ACTIONS(141), - [anon_sym_BSLASHacsp] = ACTIONS(141), - [anon_sym_BSLASHAcsp] = ACTIONS(141), - [anon_sym_BSLASHacl] = ACTIONS(141), - [anon_sym_BSLASHAcl] = ACTIONS(141), - [anon_sym_BSLASHaclp] = ACTIONS(141), - [anon_sym_BSLASHAclp] = ACTIONS(141), - [anon_sym_BSLASHacf] = ACTIONS(141), - [anon_sym_BSLASHAcf] = ACTIONS(141), - [anon_sym_BSLASHacfp] = ACTIONS(141), - [anon_sym_BSLASHAcfp] = ACTIONS(141), - [anon_sym_BSLASHac] = ACTIONS(141), - [anon_sym_BSLASHAc] = ACTIONS(141), - [anon_sym_BSLASHacp] = ACTIONS(141), - [anon_sym_BSLASHglsentrylong] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(141), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryshort] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(141), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(141), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(141), - [anon_sym_BSLASHnewtheorem] = ACTIONS(141), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(141), - [anon_sym_BSLASHdefinecolor] = ACTIONS(141), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(141), - [anon_sym_BSLASHcolor] = ACTIONS(141), - [anon_sym_BSLASHcolorbox] = ACTIONS(141), - [anon_sym_BSLASHtextcolor] = ACTIONS(141), - [anon_sym_BSLASHpagecolor] = ACTIONS(141), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(141), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(141), + [anon_sym_BSLASHiffalse] = ACTIONS(4999), + [anon_sym_LPAREN] = ACTIONS(4997), + [anon_sym_RPAREN] = ACTIONS(4997), + [anon_sym_LBRACK] = ACTIONS(4997), + [anon_sym_RBRACK] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_LBRACE] = ACTIONS(4997), + [anon_sym_RBRACE] = ACTIONS(4997), + [sym_word] = ACTIONS(4999), + [sym_placeholder] = ACTIONS(4997), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym__] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_BANG] = ACTIONS(4999), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_SQUOTE] = ACTIONS(4999), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4997), + [anon_sym_DOLLAR] = ACTIONS(4999), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4997), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4997), + [anon_sym_BSLASHusepackage] = ACTIONS(4999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), + [anon_sym_BSLASHinclude] = ACTIONS(4999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), + [anon_sym_BSLASHinput] = ACTIONS(4999), + [anon_sym_BSLASHsubfile] = ACTIONS(4999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), + [anon_sym_BSLASHbibliography] = ACTIONS(4999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), + [anon_sym_BSLASHincludesvg] = ACTIONS(4999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), + [anon_sym_BSLASHimport] = ACTIONS(4999), + [anon_sym_BSLASHsubimport] = ACTIONS(4999), + [anon_sym_BSLASHinputfrom] = ACTIONS(4999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), + [anon_sym_BSLASHincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHcaption] = ACTIONS(4999), + [anon_sym_BSLASHcite] = ACTIONS(4999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCite] = ACTIONS(4999), + [anon_sym_BSLASHnocite] = ACTIONS(4999), + [anon_sym_BSLASHcitet] = ACTIONS(4999), + [anon_sym_BSLASHcitep] = ACTIONS(4999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteauthor] = ACTIONS(4999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitetitle] = ACTIONS(4999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteyear] = ACTIONS(4999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitedate] = ACTIONS(4999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteurl] = ACTIONS(4999), + [anon_sym_BSLASHfullcite] = ACTIONS(4999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), + [anon_sym_BSLASHcitealt] = ACTIONS(4999), + [anon_sym_BSLASHcitealp] = ACTIONS(4999), + [anon_sym_BSLASHcitetext] = ACTIONS(4999), + [anon_sym_BSLASHparencite] = ACTIONS(4999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHParencite] = ACTIONS(4999), + [anon_sym_BSLASHfootcite] = ACTIONS(4999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), + [anon_sym_BSLASHtextcite] = ACTIONS(4999), + [anon_sym_BSLASHTextcite] = ACTIONS(4999), + [anon_sym_BSLASHsmartcite] = ACTIONS(4999), + [anon_sym_BSLASHSmartcite] = ACTIONS(4999), + [anon_sym_BSLASHsupercite] = ACTIONS(4999), + [anon_sym_BSLASHautocite] = ACTIONS(4999), + [anon_sym_BSLASHAutocite] = ACTIONS(4999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHvolcite] = ACTIONS(4999), + [anon_sym_BSLASHVolcite] = ACTIONS(4999), + [anon_sym_BSLASHpvolcite] = ACTIONS(4999), + [anon_sym_BSLASHPvolcite] = ACTIONS(4999), + [anon_sym_BSLASHfvolcite] = ACTIONS(4999), + [anon_sym_BSLASHftvolcite] = ACTIONS(4999), + [anon_sym_BSLASHsvolcite] = ACTIONS(4999), + [anon_sym_BSLASHSvolcite] = ACTIONS(4999), + [anon_sym_BSLASHtvolcite] = ACTIONS(4999), + [anon_sym_BSLASHTvolcite] = ACTIONS(4999), + [anon_sym_BSLASHavolcite] = ACTIONS(4999), + [anon_sym_BSLASHAvolcite] = ACTIONS(4999), + [anon_sym_BSLASHnotecite] = ACTIONS(4999), + [anon_sym_BSLASHNotecite] = ACTIONS(4999), + [anon_sym_BSLASHpnotecite] = ACTIONS(4999), + [anon_sym_BSLASHPnotecite] = ACTIONS(4999), + [anon_sym_BSLASHfnotecite] = ACTIONS(4999), + [anon_sym_BSLASHlabel] = ACTIONS(4999), + [anon_sym_BSLASHref] = ACTIONS(4999), + [anon_sym_BSLASHeqref] = ACTIONS(4999), + [anon_sym_BSLASHvref] = ACTIONS(4999), + [anon_sym_BSLASHVref] = ACTIONS(4999), + [anon_sym_BSLASHautoref] = ACTIONS(4999), + [anon_sym_BSLASHpageref] = ACTIONS(4999), + [anon_sym_BSLASHcref] = ACTIONS(4999), + [anon_sym_BSLASHCref] = ACTIONS(4999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnameCref] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHlabelcref] = ACTIONS(4999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCrefrange] = ACTIONS(4999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnewlabel] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), + [anon_sym_BSLASHdef] = ACTIONS(4999), + [anon_sym_BSLASHlet] = ACTIONS(4999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), + [anon_sym_BSLASHgls] = ACTIONS(4999), + [anon_sym_BSLASHGls] = ACTIONS(4999), + [anon_sym_BSLASHGLS] = ACTIONS(4999), + [anon_sym_BSLASHglspl] = ACTIONS(4999), + [anon_sym_BSLASHGlspl] = ACTIONS(4999), + [anon_sym_BSLASHGLSpl] = ACTIONS(4999), + [anon_sym_BSLASHglsdisp] = ACTIONS(4999), + [anon_sym_BSLASHglslink] = ACTIONS(4999), + [anon_sym_BSLASHglstext] = ACTIONS(4999), + [anon_sym_BSLASHGlstext] = ACTIONS(4999), + [anon_sym_BSLASHGLStext] = ACTIONS(4999), + [anon_sym_BSLASHglsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), + [anon_sym_BSLASHglsplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSplural] = ACTIONS(4999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHglsname] = ACTIONS(4999), + [anon_sym_BSLASHGlsname] = ACTIONS(4999), + [anon_sym_BSLASHGLSname] = ACTIONS(4999), + [anon_sym_BSLASHglssymbol] = ACTIONS(4999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), + [anon_sym_BSLASHglsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), + [anon_sym_BSLASHglsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), + [anon_sym_BSLASHglsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), + [anon_sym_BSLASHglsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), + [anon_sym_BSLASHglsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), + [anon_sym_BSLASHnewacronym] = ACTIONS(4999), + [anon_sym_BSLASHacrshort] = ACTIONS(4999), + [anon_sym_BSLASHAcrshort] = ACTIONS(4999), + [anon_sym_BSLASHACRshort] = ACTIONS(4999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), + [anon_sym_BSLASHacrlong] = ACTIONS(4999), + [anon_sym_BSLASHAcrlong] = ACTIONS(4999), + [anon_sym_BSLASHACRlong] = ACTIONS(4999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), + [anon_sym_BSLASHacrfull] = ACTIONS(4999), + [anon_sym_BSLASHAcrfull] = ACTIONS(4999), + [anon_sym_BSLASHACRfull] = ACTIONS(4999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), + [anon_sym_BSLASHacs] = ACTIONS(4999), + [anon_sym_BSLASHAcs] = ACTIONS(4999), + [anon_sym_BSLASHacsp] = ACTIONS(4999), + [anon_sym_BSLASHAcsp] = ACTIONS(4999), + [anon_sym_BSLASHacl] = ACTIONS(4999), + [anon_sym_BSLASHAcl] = ACTIONS(4999), + [anon_sym_BSLASHaclp] = ACTIONS(4999), + [anon_sym_BSLASHAclp] = ACTIONS(4999), + [anon_sym_BSLASHacf] = ACTIONS(4999), + [anon_sym_BSLASHAcf] = ACTIONS(4999), + [anon_sym_BSLASHacfp] = ACTIONS(4999), + [anon_sym_BSLASHAcfp] = ACTIONS(4999), + [anon_sym_BSLASHac] = ACTIONS(4999), + [anon_sym_BSLASHAc] = ACTIONS(4999), + [anon_sym_BSLASHacp] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), + [anon_sym_BSLASHcolor] = ACTIONS(4999), + [anon_sym_BSLASHcolorbox] = ACTIONS(4999), + [anon_sym_BSLASHtextcolor] = ACTIONS(4999), + [anon_sym_BSLASHpagecolor] = ACTIONS(4999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), + [anon_sym_BSLASHtext] = ACTIONS(4999), + [anon_sym_BSLASHintertext] = ACTIONS(4999), + [anon_sym_shortintertext] = ACTIONS(4999), }, - [1464] = { - [sym_command_name] = ACTIONS(4991), + [1412] = { + [sym_command_name] = ACTIONS(5029), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_LPAREN] = ACTIONS(4989), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_LBRACK] = ACTIONS(4989), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_LBRACE] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [sym_word] = ACTIONS(4991), - [sym_placeholder] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym__] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), - [anon_sym_DOLLAR] = ACTIONS(4991), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), - [anon_sym_BSLASHusepackage] = ACTIONS(4991), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), - [anon_sym_BSLASHinclude] = ACTIONS(4991), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), - [anon_sym_BSLASHinput] = ACTIONS(4991), - [anon_sym_BSLASHsubfile] = ACTIONS(4991), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), - [anon_sym_BSLASHbibliography] = ACTIONS(4991), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), - [anon_sym_BSLASHincludesvg] = ACTIONS(4991), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), - [anon_sym_BSLASHimport] = ACTIONS(4991), - [anon_sym_BSLASHsubimport] = ACTIONS(4991), - [anon_sym_BSLASHinputfrom] = ACTIONS(4991), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), - [anon_sym_BSLASHincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHcaption] = ACTIONS(4991), - [anon_sym_BSLASHcite] = ACTIONS(4991), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCite] = ACTIONS(4991), - [anon_sym_BSLASHnocite] = ACTIONS(4991), - [anon_sym_BSLASHcitet] = ACTIONS(4991), - [anon_sym_BSLASHcitep] = ACTIONS(4991), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteauthor] = ACTIONS(4991), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitetitle] = ACTIONS(4991), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteyear] = ACTIONS(4991), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitedate] = ACTIONS(4991), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteurl] = ACTIONS(4991), - [anon_sym_BSLASHfullcite] = ACTIONS(4991), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), - [anon_sym_BSLASHcitealt] = ACTIONS(4991), - [anon_sym_BSLASHcitealp] = ACTIONS(4991), - [anon_sym_BSLASHcitetext] = ACTIONS(4991), - [anon_sym_BSLASHparencite] = ACTIONS(4991), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHParencite] = ACTIONS(4991), - [anon_sym_BSLASHfootcite] = ACTIONS(4991), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), - [anon_sym_BSLASHtextcite] = ACTIONS(4991), - [anon_sym_BSLASHTextcite] = ACTIONS(4991), - [anon_sym_BSLASHsmartcite] = ACTIONS(4991), - [anon_sym_BSLASHSmartcite] = ACTIONS(4991), - [anon_sym_BSLASHsupercite] = ACTIONS(4991), - [anon_sym_BSLASHautocite] = ACTIONS(4991), - [anon_sym_BSLASHAutocite] = ACTIONS(4991), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHvolcite] = ACTIONS(4991), - [anon_sym_BSLASHVolcite] = ACTIONS(4991), - [anon_sym_BSLASHpvolcite] = ACTIONS(4991), - [anon_sym_BSLASHPvolcite] = ACTIONS(4991), - [anon_sym_BSLASHfvolcite] = ACTIONS(4991), - [anon_sym_BSLASHftvolcite] = ACTIONS(4991), - [anon_sym_BSLASHsvolcite] = ACTIONS(4991), - [anon_sym_BSLASHSvolcite] = ACTIONS(4991), - [anon_sym_BSLASHtvolcite] = ACTIONS(4991), - [anon_sym_BSLASHTvolcite] = ACTIONS(4991), - [anon_sym_BSLASHavolcite] = ACTIONS(4991), - [anon_sym_BSLASHAvolcite] = ACTIONS(4991), - [anon_sym_BSLASHnotecite] = ACTIONS(4991), - [anon_sym_BSLASHNotecite] = ACTIONS(4991), - [anon_sym_BSLASHpnotecite] = ACTIONS(4991), - [anon_sym_BSLASHPnotecite] = ACTIONS(4991), - [anon_sym_BSLASHfnotecite] = ACTIONS(4991), - [anon_sym_BSLASHlabel] = ACTIONS(4991), - [anon_sym_BSLASHref] = ACTIONS(4991), - [anon_sym_BSLASHeqref] = ACTIONS(4991), - [anon_sym_BSLASHvref] = ACTIONS(4991), - [anon_sym_BSLASHVref] = ACTIONS(4991), - [anon_sym_BSLASHautoref] = ACTIONS(4991), - [anon_sym_BSLASHpageref] = ACTIONS(4991), - [anon_sym_BSLASHcref] = ACTIONS(4991), - [anon_sym_BSLASHCref] = ACTIONS(4991), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnameCref] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHlabelcref] = ACTIONS(4991), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCrefrange] = ACTIONS(4991), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnewlabel] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdef] = ACTIONS(4991), - [anon_sym_BSLASHlet] = ACTIONS(4991), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), - [anon_sym_BSLASHgls] = ACTIONS(4991), - [anon_sym_BSLASHGls] = ACTIONS(4991), - [anon_sym_BSLASHGLS] = ACTIONS(4991), - [anon_sym_BSLASHglspl] = ACTIONS(4991), - [anon_sym_BSLASHGlspl] = ACTIONS(4991), - [anon_sym_BSLASHGLSpl] = ACTIONS(4991), - [anon_sym_BSLASHglsdisp] = ACTIONS(4991), - [anon_sym_BSLASHglslink] = ACTIONS(4991), - [anon_sym_BSLASHglstext] = ACTIONS(4991), - [anon_sym_BSLASHGlstext] = ACTIONS(4991), - [anon_sym_BSLASHGLStext] = ACTIONS(4991), - [anon_sym_BSLASHglsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), - [anon_sym_BSLASHglsplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSplural] = ACTIONS(4991), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHglsname] = ACTIONS(4991), - [anon_sym_BSLASHGlsname] = ACTIONS(4991), - [anon_sym_BSLASHGLSname] = ACTIONS(4991), - [anon_sym_BSLASHglssymbol] = ACTIONS(4991), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), - [anon_sym_BSLASHglsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), - [anon_sym_BSLASHglsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), - [anon_sym_BSLASHglsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), - [anon_sym_BSLASHglsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), - [anon_sym_BSLASHglsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), - [anon_sym_BSLASHnewacronym] = ACTIONS(4991), - [anon_sym_BSLASHacrshort] = ACTIONS(4991), - [anon_sym_BSLASHAcrshort] = ACTIONS(4991), - [anon_sym_BSLASHACRshort] = ACTIONS(4991), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), - [anon_sym_BSLASHacrlong] = ACTIONS(4991), - [anon_sym_BSLASHAcrlong] = ACTIONS(4991), - [anon_sym_BSLASHACRlong] = ACTIONS(4991), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), - [anon_sym_BSLASHacrfull] = ACTIONS(4991), - [anon_sym_BSLASHAcrfull] = ACTIONS(4991), - [anon_sym_BSLASHACRfull] = ACTIONS(4991), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), - [anon_sym_BSLASHacs] = ACTIONS(4991), - [anon_sym_BSLASHAcs] = ACTIONS(4991), - [anon_sym_BSLASHacsp] = ACTIONS(4991), - [anon_sym_BSLASHAcsp] = ACTIONS(4991), - [anon_sym_BSLASHacl] = ACTIONS(4991), - [anon_sym_BSLASHAcl] = ACTIONS(4991), - [anon_sym_BSLASHaclp] = ACTIONS(4991), - [anon_sym_BSLASHAclp] = ACTIONS(4991), - [anon_sym_BSLASHacf] = ACTIONS(4991), - [anon_sym_BSLASHAcf] = ACTIONS(4991), - [anon_sym_BSLASHacfp] = ACTIONS(4991), - [anon_sym_BSLASHAcfp] = ACTIONS(4991), - [anon_sym_BSLASHac] = ACTIONS(4991), - [anon_sym_BSLASHAc] = ACTIONS(4991), - [anon_sym_BSLASHacp] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), - [anon_sym_BSLASHcolor] = ACTIONS(4991), - [anon_sym_BSLASHcolorbox] = ACTIONS(4991), - [anon_sym_BSLASHtextcolor] = ACTIONS(4991), - [anon_sym_BSLASHpagecolor] = ACTIONS(4991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHiffalse] = ACTIONS(5029), + [anon_sym_LPAREN] = ACTIONS(5027), + [anon_sym_RPAREN] = ACTIONS(5027), + [anon_sym_LBRACK] = ACTIONS(5027), + [anon_sym_RBRACK] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_LBRACE] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5027), + [sym_word] = ACTIONS(5029), + [sym_placeholder] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_CARET] = ACTIONS(5029), + [anon_sym__] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_COLON] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5029), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), + [anon_sym_DOLLAR] = ACTIONS(5029), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), + [anon_sym_BSLASHusepackage] = ACTIONS(5029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), + [anon_sym_BSLASHinclude] = ACTIONS(5029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), + [anon_sym_BSLASHinput] = ACTIONS(5029), + [anon_sym_BSLASHsubfile] = ACTIONS(5029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), + [anon_sym_BSLASHbibliography] = ACTIONS(5029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), + [anon_sym_BSLASHincludesvg] = ACTIONS(5029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), + [anon_sym_BSLASHimport] = ACTIONS(5029), + [anon_sym_BSLASHsubimport] = ACTIONS(5029), + [anon_sym_BSLASHinputfrom] = ACTIONS(5029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), + [anon_sym_BSLASHincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHcaption] = ACTIONS(5029), + [anon_sym_BSLASHcite] = ACTIONS(5029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCite] = ACTIONS(5029), + [anon_sym_BSLASHnocite] = ACTIONS(5029), + [anon_sym_BSLASHcitet] = ACTIONS(5029), + [anon_sym_BSLASHcitep] = ACTIONS(5029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteauthor] = ACTIONS(5029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitetitle] = ACTIONS(5029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteyear] = ACTIONS(5029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitedate] = ACTIONS(5029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteurl] = ACTIONS(5029), + [anon_sym_BSLASHfullcite] = ACTIONS(5029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), + [anon_sym_BSLASHcitealt] = ACTIONS(5029), + [anon_sym_BSLASHcitealp] = ACTIONS(5029), + [anon_sym_BSLASHcitetext] = ACTIONS(5029), + [anon_sym_BSLASHparencite] = ACTIONS(5029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHParencite] = ACTIONS(5029), + [anon_sym_BSLASHfootcite] = ACTIONS(5029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), + [anon_sym_BSLASHtextcite] = ACTIONS(5029), + [anon_sym_BSLASHTextcite] = ACTIONS(5029), + [anon_sym_BSLASHsmartcite] = ACTIONS(5029), + [anon_sym_BSLASHSmartcite] = ACTIONS(5029), + [anon_sym_BSLASHsupercite] = ACTIONS(5029), + [anon_sym_BSLASHautocite] = ACTIONS(5029), + [anon_sym_BSLASHAutocite] = ACTIONS(5029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHvolcite] = ACTIONS(5029), + [anon_sym_BSLASHVolcite] = ACTIONS(5029), + [anon_sym_BSLASHpvolcite] = ACTIONS(5029), + [anon_sym_BSLASHPvolcite] = ACTIONS(5029), + [anon_sym_BSLASHfvolcite] = ACTIONS(5029), + [anon_sym_BSLASHftvolcite] = ACTIONS(5029), + [anon_sym_BSLASHsvolcite] = ACTIONS(5029), + [anon_sym_BSLASHSvolcite] = ACTIONS(5029), + [anon_sym_BSLASHtvolcite] = ACTIONS(5029), + [anon_sym_BSLASHTvolcite] = ACTIONS(5029), + [anon_sym_BSLASHavolcite] = ACTIONS(5029), + [anon_sym_BSLASHAvolcite] = ACTIONS(5029), + [anon_sym_BSLASHnotecite] = ACTIONS(5029), + [anon_sym_BSLASHNotecite] = ACTIONS(5029), + [anon_sym_BSLASHpnotecite] = ACTIONS(5029), + [anon_sym_BSLASHPnotecite] = ACTIONS(5029), + [anon_sym_BSLASHfnotecite] = ACTIONS(5029), + [anon_sym_BSLASHlabel] = ACTIONS(5029), + [anon_sym_BSLASHref] = ACTIONS(5029), + [anon_sym_BSLASHeqref] = ACTIONS(5029), + [anon_sym_BSLASHvref] = ACTIONS(5029), + [anon_sym_BSLASHVref] = ACTIONS(5029), + [anon_sym_BSLASHautoref] = ACTIONS(5029), + [anon_sym_BSLASHpageref] = ACTIONS(5029), + [anon_sym_BSLASHcref] = ACTIONS(5029), + [anon_sym_BSLASHCref] = ACTIONS(5029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnameCref] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHlabelcref] = ACTIONS(5029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCrefrange] = ACTIONS(5029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnewlabel] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), + [anon_sym_BSLASHdef] = ACTIONS(5029), + [anon_sym_BSLASHlet] = ACTIONS(5029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), + [anon_sym_BSLASHgls] = ACTIONS(5029), + [anon_sym_BSLASHGls] = ACTIONS(5029), + [anon_sym_BSLASHGLS] = ACTIONS(5029), + [anon_sym_BSLASHglspl] = ACTIONS(5029), + [anon_sym_BSLASHGlspl] = ACTIONS(5029), + [anon_sym_BSLASHGLSpl] = ACTIONS(5029), + [anon_sym_BSLASHglsdisp] = ACTIONS(5029), + [anon_sym_BSLASHglslink] = ACTIONS(5029), + [anon_sym_BSLASHglstext] = ACTIONS(5029), + [anon_sym_BSLASHGlstext] = ACTIONS(5029), + [anon_sym_BSLASHGLStext] = ACTIONS(5029), + [anon_sym_BSLASHglsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), + [anon_sym_BSLASHglsplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSplural] = ACTIONS(5029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHglsname] = ACTIONS(5029), + [anon_sym_BSLASHGlsname] = ACTIONS(5029), + [anon_sym_BSLASHGLSname] = ACTIONS(5029), + [anon_sym_BSLASHglssymbol] = ACTIONS(5029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), + [anon_sym_BSLASHglsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), + [anon_sym_BSLASHglsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), + [anon_sym_BSLASHglsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), + [anon_sym_BSLASHglsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), + [anon_sym_BSLASHglsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), + [anon_sym_BSLASHnewacronym] = ACTIONS(5029), + [anon_sym_BSLASHacrshort] = ACTIONS(5029), + [anon_sym_BSLASHAcrshort] = ACTIONS(5029), + [anon_sym_BSLASHACRshort] = ACTIONS(5029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), + [anon_sym_BSLASHacrlong] = ACTIONS(5029), + [anon_sym_BSLASHAcrlong] = ACTIONS(5029), + [anon_sym_BSLASHACRlong] = ACTIONS(5029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), + [anon_sym_BSLASHacrfull] = ACTIONS(5029), + [anon_sym_BSLASHAcrfull] = ACTIONS(5029), + [anon_sym_BSLASHACRfull] = ACTIONS(5029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), + [anon_sym_BSLASHacs] = ACTIONS(5029), + [anon_sym_BSLASHAcs] = ACTIONS(5029), + [anon_sym_BSLASHacsp] = ACTIONS(5029), + [anon_sym_BSLASHAcsp] = ACTIONS(5029), + [anon_sym_BSLASHacl] = ACTIONS(5029), + [anon_sym_BSLASHAcl] = ACTIONS(5029), + [anon_sym_BSLASHaclp] = ACTIONS(5029), + [anon_sym_BSLASHAclp] = ACTIONS(5029), + [anon_sym_BSLASHacf] = ACTIONS(5029), + [anon_sym_BSLASHAcf] = ACTIONS(5029), + [anon_sym_BSLASHacfp] = ACTIONS(5029), + [anon_sym_BSLASHAcfp] = ACTIONS(5029), + [anon_sym_BSLASHac] = ACTIONS(5029), + [anon_sym_BSLASHAc] = ACTIONS(5029), + [anon_sym_BSLASHacp] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), + [anon_sym_BSLASHcolor] = ACTIONS(5029), + [anon_sym_BSLASHcolorbox] = ACTIONS(5029), + [anon_sym_BSLASHtextcolor] = ACTIONS(5029), + [anon_sym_BSLASHpagecolor] = ACTIONS(5029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), + [anon_sym_BSLASHtext] = ACTIONS(5029), + [anon_sym_BSLASHintertext] = ACTIONS(5029), + [anon_sym_shortintertext] = ACTIONS(5029), }, - [1465] = { - [sym_command_name] = ACTIONS(4987), + [1413] = { + [sym_command_name] = ACTIONS(5165), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5165), + [anon_sym_LPAREN] = ACTIONS(5163), + [anon_sym_RPAREN] = ACTIONS(5163), + [anon_sym_LBRACK] = ACTIONS(5163), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_LBRACE] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [sym_word] = ACTIONS(5165), + [sym_placeholder] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5165), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_CARET] = ACTIONS(5165), + [anon_sym__] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_COLON] = ACTIONS(5165), + [anon_sym_SQUOTE] = ACTIONS(5165), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5163), + [anon_sym_DOLLAR] = ACTIONS(5165), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5163), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5163), + [anon_sym_BSLASHusepackage] = ACTIONS(5165), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), + [anon_sym_BSLASHinclude] = ACTIONS(5165), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), + [anon_sym_BSLASHinput] = ACTIONS(5165), + [anon_sym_BSLASHsubfile] = ACTIONS(5165), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), + [anon_sym_BSLASHbibliography] = ACTIONS(5165), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), + [anon_sym_BSLASHincludesvg] = ACTIONS(5165), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5165), + [anon_sym_BSLASHcite] = ACTIONS(5165), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCite] = ACTIONS(5165), + [anon_sym_BSLASHnocite] = ACTIONS(5165), + [anon_sym_BSLASHcitet] = ACTIONS(5165), + [anon_sym_BSLASHcitep] = ACTIONS(5165), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteauthor] = ACTIONS(5165), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitetitle] = ACTIONS(5165), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteyear] = ACTIONS(5165), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitedate] = ACTIONS(5165), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteurl] = ACTIONS(5165), + [anon_sym_BSLASHfullcite] = ACTIONS(5165), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), + [anon_sym_BSLASHcitealt] = ACTIONS(5165), + [anon_sym_BSLASHcitealp] = ACTIONS(5165), + [anon_sym_BSLASHcitetext] = ACTIONS(5165), + [anon_sym_BSLASHparencite] = ACTIONS(5165), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHParencite] = ACTIONS(5165), + [anon_sym_BSLASHfootcite] = ACTIONS(5165), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), + [anon_sym_BSLASHtextcite] = ACTIONS(5165), + [anon_sym_BSLASHTextcite] = ACTIONS(5165), + [anon_sym_BSLASHsmartcite] = ACTIONS(5165), + [anon_sym_BSLASHSmartcite] = ACTIONS(5165), + [anon_sym_BSLASHsupercite] = ACTIONS(5165), + [anon_sym_BSLASHautocite] = ACTIONS(5165), + [anon_sym_BSLASHAutocite] = ACTIONS(5165), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHvolcite] = ACTIONS(5165), + [anon_sym_BSLASHVolcite] = ACTIONS(5165), + [anon_sym_BSLASHpvolcite] = ACTIONS(5165), + [anon_sym_BSLASHPvolcite] = ACTIONS(5165), + [anon_sym_BSLASHfvolcite] = ACTIONS(5165), + [anon_sym_BSLASHftvolcite] = ACTIONS(5165), + [anon_sym_BSLASHsvolcite] = ACTIONS(5165), + [anon_sym_BSLASHSvolcite] = ACTIONS(5165), + [anon_sym_BSLASHtvolcite] = ACTIONS(5165), + [anon_sym_BSLASHTvolcite] = ACTIONS(5165), + [anon_sym_BSLASHavolcite] = ACTIONS(5165), + [anon_sym_BSLASHAvolcite] = ACTIONS(5165), + [anon_sym_BSLASHnotecite] = ACTIONS(5165), + [anon_sym_BSLASHNotecite] = ACTIONS(5165), + [anon_sym_BSLASHpnotecite] = ACTIONS(5165), + [anon_sym_BSLASHPnotecite] = ACTIONS(5165), + [anon_sym_BSLASHfnotecite] = ACTIONS(5165), + [anon_sym_BSLASHlabel] = ACTIONS(5165), + [anon_sym_BSLASHref] = ACTIONS(5165), + [anon_sym_BSLASHeqref] = ACTIONS(5165), + [anon_sym_BSLASHvref] = ACTIONS(5165), + [anon_sym_BSLASHVref] = ACTIONS(5165), + [anon_sym_BSLASHautoref] = ACTIONS(5165), + [anon_sym_BSLASHpageref] = ACTIONS(5165), + [anon_sym_BSLASHcref] = ACTIONS(5165), + [anon_sym_BSLASHCref] = ACTIONS(5165), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnameCref] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHlabelcref] = ACTIONS(5165), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCrefrange] = ACTIONS(5165), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnewlabel] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), + [anon_sym_BSLASHdef] = ACTIONS(5165), + [anon_sym_BSLASHlet] = ACTIONS(5165), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), + [anon_sym_BSLASHgls] = ACTIONS(5165), + [anon_sym_BSLASHGls] = ACTIONS(5165), + [anon_sym_BSLASHGLS] = ACTIONS(5165), + [anon_sym_BSLASHglspl] = ACTIONS(5165), + [anon_sym_BSLASHGlspl] = ACTIONS(5165), + [anon_sym_BSLASHGLSpl] = ACTIONS(5165), + [anon_sym_BSLASHglsdisp] = ACTIONS(5165), + [anon_sym_BSLASHglslink] = ACTIONS(5165), + [anon_sym_BSLASHglstext] = ACTIONS(5165), + [anon_sym_BSLASHGlstext] = ACTIONS(5165), + [anon_sym_BSLASHGLStext] = ACTIONS(5165), + [anon_sym_BSLASHglsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), + [anon_sym_BSLASHglsplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSplural] = ACTIONS(5165), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHglsname] = ACTIONS(5165), + [anon_sym_BSLASHGlsname] = ACTIONS(5165), + [anon_sym_BSLASHGLSname] = ACTIONS(5165), + [anon_sym_BSLASHglssymbol] = ACTIONS(5165), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), + [anon_sym_BSLASHglsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), + [anon_sym_BSLASHglsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), + [anon_sym_BSLASHglsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), + [anon_sym_BSLASHglsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), + [anon_sym_BSLASHglsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), + [anon_sym_BSLASHnewacronym] = ACTIONS(5165), + [anon_sym_BSLASHacrshort] = ACTIONS(5165), + [anon_sym_BSLASHAcrshort] = ACTIONS(5165), + [anon_sym_BSLASHACRshort] = ACTIONS(5165), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), + [anon_sym_BSLASHacrlong] = ACTIONS(5165), + [anon_sym_BSLASHAcrlong] = ACTIONS(5165), + [anon_sym_BSLASHACRlong] = ACTIONS(5165), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), + [anon_sym_BSLASHacrfull] = ACTIONS(5165), + [anon_sym_BSLASHAcrfull] = ACTIONS(5165), + [anon_sym_BSLASHACRfull] = ACTIONS(5165), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), + [anon_sym_BSLASHacs] = ACTIONS(5165), + [anon_sym_BSLASHAcs] = ACTIONS(5165), + [anon_sym_BSLASHacsp] = ACTIONS(5165), + [anon_sym_BSLASHAcsp] = ACTIONS(5165), + [anon_sym_BSLASHacl] = ACTIONS(5165), + [anon_sym_BSLASHAcl] = ACTIONS(5165), + [anon_sym_BSLASHaclp] = ACTIONS(5165), + [anon_sym_BSLASHAclp] = ACTIONS(5165), + [anon_sym_BSLASHacf] = ACTIONS(5165), + [anon_sym_BSLASHAcf] = ACTIONS(5165), + [anon_sym_BSLASHacfp] = ACTIONS(5165), + [anon_sym_BSLASHAcfp] = ACTIONS(5165), + [anon_sym_BSLASHac] = ACTIONS(5165), + [anon_sym_BSLASHAc] = ACTIONS(5165), + [anon_sym_BSLASHacp] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), + [anon_sym_BSLASHcolor] = ACTIONS(5165), + [anon_sym_BSLASHcolorbox] = ACTIONS(5165), + [anon_sym_BSLASHtextcolor] = ACTIONS(5165), + [anon_sym_BSLASHpagecolor] = ACTIONS(5165), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), + [anon_sym_BSLASHtext] = ACTIONS(5165), + [anon_sym_BSLASHintertext] = ACTIONS(5165), + [anon_sym_shortintertext] = ACTIONS(5165), + }, + [1414] = { + [sym_command_name] = ACTIONS(5169), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5169), + [anon_sym_LPAREN] = ACTIONS(5167), + [anon_sym_RPAREN] = ACTIONS(5167), + [anon_sym_LBRACK] = ACTIONS(5167), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_LBRACE] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5167), + [sym_word] = ACTIONS(5169), + [sym_placeholder] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_CARET] = ACTIONS(5169), + [anon_sym__] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_PIPE] = ACTIONS(5169), + [anon_sym_COLON] = ACTIONS(5169), + [anon_sym_SQUOTE] = ACTIONS(5169), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5167), + [anon_sym_DOLLAR] = ACTIONS(5169), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5167), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5167), + [anon_sym_BSLASHusepackage] = ACTIONS(5169), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), + [anon_sym_BSLASHinclude] = ACTIONS(5169), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), + [anon_sym_BSLASHinput] = ACTIONS(5169), + [anon_sym_BSLASHsubfile] = ACTIONS(5169), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), + [anon_sym_BSLASHbibliography] = ACTIONS(5169), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), + [anon_sym_BSLASHincludesvg] = ACTIONS(5169), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), + [anon_sym_BSLASHimport] = ACTIONS(5169), + [anon_sym_BSLASHsubimport] = ACTIONS(5169), + [anon_sym_BSLASHinputfrom] = ACTIONS(5169), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), + [anon_sym_BSLASHincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHcaption] = ACTIONS(5169), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5169), + [anon_sym_BSLASHref] = ACTIONS(5169), + [anon_sym_BSLASHeqref] = ACTIONS(5169), + [anon_sym_BSLASHvref] = ACTIONS(5169), + [anon_sym_BSLASHVref] = ACTIONS(5169), + [anon_sym_BSLASHautoref] = ACTIONS(5169), + [anon_sym_BSLASHpageref] = ACTIONS(5169), + [anon_sym_BSLASHcref] = ACTIONS(5169), + [anon_sym_BSLASHCref] = ACTIONS(5169), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnameCref] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHlabelcref] = ACTIONS(5169), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCrefrange] = ACTIONS(5169), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnewlabel] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), + [anon_sym_BSLASHdef] = ACTIONS(5169), + [anon_sym_BSLASHlet] = ACTIONS(5169), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), + [anon_sym_BSLASHgls] = ACTIONS(5169), + [anon_sym_BSLASHGls] = ACTIONS(5169), + [anon_sym_BSLASHGLS] = ACTIONS(5169), + [anon_sym_BSLASHglspl] = ACTIONS(5169), + [anon_sym_BSLASHGlspl] = ACTIONS(5169), + [anon_sym_BSLASHGLSpl] = ACTIONS(5169), + [anon_sym_BSLASHglsdisp] = ACTIONS(5169), + [anon_sym_BSLASHglslink] = ACTIONS(5169), + [anon_sym_BSLASHglstext] = ACTIONS(5169), + [anon_sym_BSLASHGlstext] = ACTIONS(5169), + [anon_sym_BSLASHGLStext] = ACTIONS(5169), + [anon_sym_BSLASHglsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), + [anon_sym_BSLASHglsplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSplural] = ACTIONS(5169), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHglsname] = ACTIONS(5169), + [anon_sym_BSLASHGlsname] = ACTIONS(5169), + [anon_sym_BSLASHGLSname] = ACTIONS(5169), + [anon_sym_BSLASHglssymbol] = ACTIONS(5169), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), + [anon_sym_BSLASHglsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), + [anon_sym_BSLASHglsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), + [anon_sym_BSLASHglsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), + [anon_sym_BSLASHglsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), + [anon_sym_BSLASHglsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), + [anon_sym_BSLASHnewacronym] = ACTIONS(5169), + [anon_sym_BSLASHacrshort] = ACTIONS(5169), + [anon_sym_BSLASHAcrshort] = ACTIONS(5169), + [anon_sym_BSLASHACRshort] = ACTIONS(5169), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), + [anon_sym_BSLASHacrlong] = ACTIONS(5169), + [anon_sym_BSLASHAcrlong] = ACTIONS(5169), + [anon_sym_BSLASHACRlong] = ACTIONS(5169), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), + [anon_sym_BSLASHacrfull] = ACTIONS(5169), + [anon_sym_BSLASHAcrfull] = ACTIONS(5169), + [anon_sym_BSLASHACRfull] = ACTIONS(5169), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), + [anon_sym_BSLASHacs] = ACTIONS(5169), + [anon_sym_BSLASHAcs] = ACTIONS(5169), + [anon_sym_BSLASHacsp] = ACTIONS(5169), + [anon_sym_BSLASHAcsp] = ACTIONS(5169), + [anon_sym_BSLASHacl] = ACTIONS(5169), + [anon_sym_BSLASHAcl] = ACTIONS(5169), + [anon_sym_BSLASHaclp] = ACTIONS(5169), + [anon_sym_BSLASHAclp] = ACTIONS(5169), + [anon_sym_BSLASHacf] = ACTIONS(5169), + [anon_sym_BSLASHAcf] = ACTIONS(5169), + [anon_sym_BSLASHacfp] = ACTIONS(5169), + [anon_sym_BSLASHAcfp] = ACTIONS(5169), + [anon_sym_BSLASHac] = ACTIONS(5169), + [anon_sym_BSLASHAc] = ACTIONS(5169), + [anon_sym_BSLASHacp] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), + [anon_sym_BSLASHcolor] = ACTIONS(5169), + [anon_sym_BSLASHcolorbox] = ACTIONS(5169), + [anon_sym_BSLASHtextcolor] = ACTIONS(5169), + [anon_sym_BSLASHpagecolor] = ACTIONS(5169), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), + [anon_sym_BSLASHtext] = ACTIONS(5169), + [anon_sym_BSLASHintertext] = ACTIONS(5169), + [anon_sym_shortintertext] = ACTIONS(5169), + }, + [1415] = { + [sym_command_name] = ACTIONS(139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(137), + [anon_sym_RPAREN] = ACTIONS(137), + [anon_sym_LBRACK] = ACTIONS(137), + [anon_sym_RBRACK] = ACTIONS(137), + [anon_sym_COMMA] = ACTIONS(137), + [anon_sym_LBRACE] = ACTIONS(137), + [anon_sym_RBRACE] = ACTIONS(137), + [sym_word] = ACTIONS(139), + [sym_placeholder] = ACTIONS(137), + [anon_sym_PLUS] = ACTIONS(139), + [anon_sym_DASH] = ACTIONS(139), + [anon_sym_STAR] = ACTIONS(139), + [anon_sym_SLASH] = ACTIONS(139), + [anon_sym_CARET] = ACTIONS(139), + [anon_sym__] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_BANG] = ACTIONS(139), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_COLON] = ACTIONS(139), + [anon_sym_SQUOTE] = ACTIONS(139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(137), + [anon_sym_DOLLAR] = ACTIONS(139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(137), + [anon_sym_BSLASHusepackage] = ACTIONS(139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(139), + [anon_sym_BSLASHinclude] = ACTIONS(139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(139), + [anon_sym_BSLASHinput] = ACTIONS(139), + [anon_sym_BSLASHsubfile] = ACTIONS(139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(139), + [anon_sym_BSLASHbibliography] = ACTIONS(139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(139), + [anon_sym_BSLASHincludesvg] = ACTIONS(139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(139), + [anon_sym_BSLASHimport] = ACTIONS(139), + [anon_sym_BSLASHsubimport] = ACTIONS(139), + [anon_sym_BSLASHinputfrom] = ACTIONS(139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(139), + [anon_sym_BSLASHincludefrom] = ACTIONS(139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(139), + [anon_sym_BSLASHcaption] = ACTIONS(139), + [anon_sym_BSLASHcite] = ACTIONS(139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(137), + [anon_sym_BSLASHCite] = ACTIONS(139), + [anon_sym_BSLASHnocite] = ACTIONS(139), + [anon_sym_BSLASHcitet] = ACTIONS(139), + [anon_sym_BSLASHcitep] = ACTIONS(139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteauthor] = ACTIONS(139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitetitle] = ACTIONS(139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteyear] = ACTIONS(139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(137), + [anon_sym_BSLASHcitedate] = ACTIONS(139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(137), + [anon_sym_BSLASHciteurl] = ACTIONS(139), + [anon_sym_BSLASHfullcite] = ACTIONS(139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(139), + [anon_sym_BSLASHcitealt] = ACTIONS(139), + [anon_sym_BSLASHcitealp] = ACTIONS(139), + [anon_sym_BSLASHcitetext] = ACTIONS(139), + [anon_sym_BSLASHparencite] = ACTIONS(139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(137), + [anon_sym_BSLASHParencite] = ACTIONS(139), + [anon_sym_BSLASHfootcite] = ACTIONS(139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(139), + [anon_sym_BSLASHtextcite] = ACTIONS(139), + [anon_sym_BSLASHTextcite] = ACTIONS(139), + [anon_sym_BSLASHsmartcite] = ACTIONS(139), + [anon_sym_BSLASHSmartcite] = ACTIONS(139), + [anon_sym_BSLASHsupercite] = ACTIONS(139), + [anon_sym_BSLASHautocite] = ACTIONS(139), + [anon_sym_BSLASHAutocite] = ACTIONS(139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(137), + [anon_sym_BSLASHvolcite] = ACTIONS(139), + [anon_sym_BSLASHVolcite] = ACTIONS(139), + [anon_sym_BSLASHpvolcite] = ACTIONS(139), + [anon_sym_BSLASHPvolcite] = ACTIONS(139), + [anon_sym_BSLASHfvolcite] = ACTIONS(139), + [anon_sym_BSLASHftvolcite] = ACTIONS(139), + [anon_sym_BSLASHsvolcite] = ACTIONS(139), + [anon_sym_BSLASHSvolcite] = ACTIONS(139), + [anon_sym_BSLASHtvolcite] = ACTIONS(139), + [anon_sym_BSLASHTvolcite] = ACTIONS(139), + [anon_sym_BSLASHavolcite] = ACTIONS(139), + [anon_sym_BSLASHAvolcite] = ACTIONS(139), + [anon_sym_BSLASHnotecite] = ACTIONS(139), + [anon_sym_BSLASHNotecite] = ACTIONS(139), + [anon_sym_BSLASHpnotecite] = ACTIONS(139), + [anon_sym_BSLASHPnotecite] = ACTIONS(139), + [anon_sym_BSLASHfnotecite] = ACTIONS(139), + [anon_sym_BSLASHlabel] = ACTIONS(139), + [anon_sym_BSLASHref] = ACTIONS(139), + [anon_sym_BSLASHeqref] = ACTIONS(139), + [anon_sym_BSLASHvref] = ACTIONS(139), + [anon_sym_BSLASHVref] = ACTIONS(139), + [anon_sym_BSLASHautoref] = ACTIONS(139), + [anon_sym_BSLASHpageref] = ACTIONS(139), + [anon_sym_BSLASHcref] = ACTIONS(139), + [anon_sym_BSLASHCref] = ACTIONS(139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(137), + [anon_sym_BSLASHnamecref] = ACTIONS(139), + [anon_sym_BSLASHnameCref] = ACTIONS(139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(139), + [anon_sym_BSLASHlabelcref] = ACTIONS(139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(139), + [anon_sym_BSLASHcrefrange] = ACTIONS(139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHCrefrange] = ACTIONS(139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(137), + [anon_sym_BSLASHnewlabel] = ACTIONS(139), + [anon_sym_BSLASHnewcommand] = ACTIONS(139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(137), + [anon_sym_BSLASHdef] = ACTIONS(139), + [anon_sym_BSLASHlet] = ACTIONS(139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(139), + [anon_sym_BSLASHgls] = ACTIONS(139), + [anon_sym_BSLASHGls] = ACTIONS(139), + [anon_sym_BSLASHGLS] = ACTIONS(139), + [anon_sym_BSLASHglspl] = ACTIONS(139), + [anon_sym_BSLASHGlspl] = ACTIONS(139), + [anon_sym_BSLASHGLSpl] = ACTIONS(139), + [anon_sym_BSLASHglsdisp] = ACTIONS(139), + [anon_sym_BSLASHglslink] = ACTIONS(139), + [anon_sym_BSLASHglstext] = ACTIONS(139), + [anon_sym_BSLASHGlstext] = ACTIONS(139), + [anon_sym_BSLASHGLStext] = ACTIONS(139), + [anon_sym_BSLASHglsfirst] = ACTIONS(139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(139), + [anon_sym_BSLASHglsplural] = ACTIONS(139), + [anon_sym_BSLASHGlsplural] = ACTIONS(139), + [anon_sym_BSLASHGLSplural] = ACTIONS(139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(139), + [anon_sym_BSLASHglsname] = ACTIONS(139), + [anon_sym_BSLASHGlsname] = ACTIONS(139), + [anon_sym_BSLASHGLSname] = ACTIONS(139), + [anon_sym_BSLASHglssymbol] = ACTIONS(139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(139), + [anon_sym_BSLASHglsdesc] = ACTIONS(139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(139), + [anon_sym_BSLASHglsuseri] = ACTIONS(139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(139), + [anon_sym_BSLASHglsuserii] = ACTIONS(139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(139), + [anon_sym_BSLASHglsuserv] = ACTIONS(139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(139), + [anon_sym_BSLASHglsuservi] = ACTIONS(139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(139), + [anon_sym_BSLASHnewacronym] = ACTIONS(139), + [anon_sym_BSLASHacrshort] = ACTIONS(139), + [anon_sym_BSLASHAcrshort] = ACTIONS(139), + [anon_sym_BSLASHACRshort] = ACTIONS(139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(139), + [anon_sym_BSLASHacrlong] = ACTIONS(139), + [anon_sym_BSLASHAcrlong] = ACTIONS(139), + [anon_sym_BSLASHACRlong] = ACTIONS(139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(139), + [anon_sym_BSLASHacrfull] = ACTIONS(139), + [anon_sym_BSLASHAcrfull] = ACTIONS(139), + [anon_sym_BSLASHACRfull] = ACTIONS(139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(139), + [anon_sym_BSLASHacs] = ACTIONS(139), + [anon_sym_BSLASHAcs] = ACTIONS(139), + [anon_sym_BSLASHacsp] = ACTIONS(139), + [anon_sym_BSLASHAcsp] = ACTIONS(139), + [anon_sym_BSLASHacl] = ACTIONS(139), + [anon_sym_BSLASHAcl] = ACTIONS(139), + [anon_sym_BSLASHaclp] = ACTIONS(139), + [anon_sym_BSLASHAclp] = ACTIONS(139), + [anon_sym_BSLASHacf] = ACTIONS(139), + [anon_sym_BSLASHAcf] = ACTIONS(139), + [anon_sym_BSLASHacfp] = ACTIONS(139), + [anon_sym_BSLASHAcfp] = ACTIONS(139), + [anon_sym_BSLASHac] = ACTIONS(139), + [anon_sym_BSLASHAc] = ACTIONS(139), + [anon_sym_BSLASHacp] = ACTIONS(139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(139), + [anon_sym_BSLASHcolor] = ACTIONS(139), + [anon_sym_BSLASHcolorbox] = ACTIONS(139), + [anon_sym_BSLASHtextcolor] = ACTIONS(139), + [anon_sym_BSLASHpagecolor] = ACTIONS(139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(139), + [anon_sym_BSLASHtext] = ACTIONS(139), + [anon_sym_BSLASHintertext] = ACTIONS(139), + [anon_sym_shortintertext] = ACTIONS(139), + }, + [1416] = { + [sym_command_name] = ACTIONS(5319), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5319), + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_RPAREN] = ACTIONS(5321), + [anon_sym_LBRACK] = ACTIONS(5321), + [anon_sym_RBRACK] = ACTIONS(5321), + [anon_sym_COMMA] = ACTIONS(5321), + [anon_sym_LBRACE] = ACTIONS(5321), + [anon_sym_RBRACE] = ACTIONS(5321), + [sym_word] = ACTIONS(5319), + [sym_placeholder] = ACTIONS(5321), + [anon_sym_PLUS] = ACTIONS(5319), + [anon_sym_DASH] = ACTIONS(5319), + [anon_sym_STAR] = ACTIONS(5319), + [anon_sym_SLASH] = ACTIONS(5319), + [anon_sym_CARET] = ACTIONS(5319), + [anon_sym__] = ACTIONS(5319), + [anon_sym_LT] = ACTIONS(5319), + [anon_sym_GT] = ACTIONS(5319), + [anon_sym_BANG] = ACTIONS(5319), + [anon_sym_PIPE] = ACTIONS(5319), + [anon_sym_COLON] = ACTIONS(5319), + [anon_sym_SQUOTE] = ACTIONS(5319), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5321), + [anon_sym_DOLLAR] = ACTIONS(5319), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5321), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5321), + [anon_sym_BSLASHusepackage] = ACTIONS(5319), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5319), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5319), + [anon_sym_BSLASHinclude] = ACTIONS(5319), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5319), + [anon_sym_BSLASHinput] = ACTIONS(5319), + [anon_sym_BSLASHsubfile] = ACTIONS(5319), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5319), + [anon_sym_BSLASHbibliography] = ACTIONS(5319), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5319), + [anon_sym_BSLASHincludesvg] = ACTIONS(5319), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5319), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5319), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5319), + [anon_sym_BSLASHimport] = ACTIONS(5319), + [anon_sym_BSLASHsubimport] = ACTIONS(5319), + [anon_sym_BSLASHinputfrom] = ACTIONS(5319), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5319), + [anon_sym_BSLASHincludefrom] = ACTIONS(5319), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5319), + [anon_sym_BSLASHcaption] = ACTIONS(5319), + [anon_sym_BSLASHcite] = ACTIONS(5319), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCite] = ACTIONS(5319), + [anon_sym_BSLASHnocite] = ACTIONS(5319), + [anon_sym_BSLASHcitet] = ACTIONS(5319), + [anon_sym_BSLASHcitep] = ACTIONS(5319), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteauthor] = ACTIONS(5319), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5319), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitetitle] = ACTIONS(5319), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteyear] = ACTIONS(5319), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5321), + [anon_sym_BSLASHcitedate] = ACTIONS(5319), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5321), + [anon_sym_BSLASHciteurl] = ACTIONS(5319), + [anon_sym_BSLASHfullcite] = ACTIONS(5319), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5319), + [anon_sym_BSLASHcitealt] = ACTIONS(5319), + [anon_sym_BSLASHcitealp] = ACTIONS(5319), + [anon_sym_BSLASHcitetext] = ACTIONS(5319), + [anon_sym_BSLASHparencite] = ACTIONS(5319), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHParencite] = ACTIONS(5319), + [anon_sym_BSLASHfootcite] = ACTIONS(5319), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5319), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5319), + [anon_sym_BSLASHtextcite] = ACTIONS(5319), + [anon_sym_BSLASHTextcite] = ACTIONS(5319), + [anon_sym_BSLASHsmartcite] = ACTIONS(5319), + [anon_sym_BSLASHSmartcite] = ACTIONS(5319), + [anon_sym_BSLASHsupercite] = ACTIONS(5319), + [anon_sym_BSLASHautocite] = ACTIONS(5319), + [anon_sym_BSLASHAutocite] = ACTIONS(5319), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5321), + [anon_sym_BSLASHvolcite] = ACTIONS(5319), + [anon_sym_BSLASHVolcite] = ACTIONS(5319), + [anon_sym_BSLASHpvolcite] = ACTIONS(5319), + [anon_sym_BSLASHPvolcite] = ACTIONS(5319), + [anon_sym_BSLASHfvolcite] = ACTIONS(5319), + [anon_sym_BSLASHftvolcite] = ACTIONS(5319), + [anon_sym_BSLASHsvolcite] = ACTIONS(5319), + [anon_sym_BSLASHSvolcite] = ACTIONS(5319), + [anon_sym_BSLASHtvolcite] = ACTIONS(5319), + [anon_sym_BSLASHTvolcite] = ACTIONS(5319), + [anon_sym_BSLASHavolcite] = ACTIONS(5319), + [anon_sym_BSLASHAvolcite] = ACTIONS(5319), + [anon_sym_BSLASHnotecite] = ACTIONS(5319), + [anon_sym_BSLASHNotecite] = ACTIONS(5319), + [anon_sym_BSLASHpnotecite] = ACTIONS(5319), + [anon_sym_BSLASHPnotecite] = ACTIONS(5319), + [anon_sym_BSLASHfnotecite] = ACTIONS(5319), + [anon_sym_BSLASHlabel] = ACTIONS(5319), + [anon_sym_BSLASHref] = ACTIONS(5319), + [anon_sym_BSLASHeqref] = ACTIONS(5319), + [anon_sym_BSLASHvref] = ACTIONS(5319), + [anon_sym_BSLASHVref] = ACTIONS(5319), + [anon_sym_BSLASHautoref] = ACTIONS(5319), + [anon_sym_BSLASHpageref] = ACTIONS(5319), + [anon_sym_BSLASHcref] = ACTIONS(5319), + [anon_sym_BSLASHCref] = ACTIONS(5319), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnamecref] = ACTIONS(5319), + [anon_sym_BSLASHnameCref] = ACTIONS(5319), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5319), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5319), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5319), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5319), + [anon_sym_BSLASHlabelcref] = ACTIONS(5319), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5319), + [anon_sym_BSLASHcrefrange] = ACTIONS(5319), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHCrefrange] = ACTIONS(5319), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5321), + [anon_sym_BSLASHnewlabel] = ACTIONS(5319), + [anon_sym_BSLASHnewcommand] = ACTIONS(5319), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5319), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5319), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5321), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5319), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5321), + [anon_sym_BSLASHdef] = ACTIONS(5319), + [anon_sym_BSLASHlet] = ACTIONS(5319), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5319), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5319), + [anon_sym_BSLASHgls] = ACTIONS(5319), + [anon_sym_BSLASHGls] = ACTIONS(5319), + [anon_sym_BSLASHGLS] = ACTIONS(5319), + [anon_sym_BSLASHglspl] = ACTIONS(5319), + [anon_sym_BSLASHGlspl] = ACTIONS(5319), + [anon_sym_BSLASHGLSpl] = ACTIONS(5319), + [anon_sym_BSLASHglsdisp] = ACTIONS(5319), + [anon_sym_BSLASHglslink] = ACTIONS(5319), + [anon_sym_BSLASHglstext] = ACTIONS(5319), + [anon_sym_BSLASHGlstext] = ACTIONS(5319), + [anon_sym_BSLASHGLStext] = ACTIONS(5319), + [anon_sym_BSLASHglsfirst] = ACTIONS(5319), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5319), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5319), + [anon_sym_BSLASHglsplural] = ACTIONS(5319), + [anon_sym_BSLASHGlsplural] = ACTIONS(5319), + [anon_sym_BSLASHGLSplural] = ACTIONS(5319), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5319), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5319), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5319), + [anon_sym_BSLASHglsname] = ACTIONS(5319), + [anon_sym_BSLASHGlsname] = ACTIONS(5319), + [anon_sym_BSLASHGLSname] = ACTIONS(5319), + [anon_sym_BSLASHglssymbol] = ACTIONS(5319), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5319), + [anon_sym_BSLASHglsdesc] = ACTIONS(5319), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5319), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5319), + [anon_sym_BSLASHglsuseri] = ACTIONS(5319), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5319), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5319), + [anon_sym_BSLASHglsuserii] = ACTIONS(5319), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5319), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5319), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5319), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5319), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5319), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5319), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5319), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5319), + [anon_sym_BSLASHglsuserv] = ACTIONS(5319), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5319), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5319), + [anon_sym_BSLASHglsuservi] = ACTIONS(5319), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5319), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5319), + [anon_sym_BSLASHnewacronym] = ACTIONS(5319), + [anon_sym_BSLASHacrshort] = ACTIONS(5319), + [anon_sym_BSLASHAcrshort] = ACTIONS(5319), + [anon_sym_BSLASHACRshort] = ACTIONS(5319), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5319), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5319), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5319), + [anon_sym_BSLASHacrlong] = ACTIONS(5319), + [anon_sym_BSLASHAcrlong] = ACTIONS(5319), + [anon_sym_BSLASHACRlong] = ACTIONS(5319), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5319), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5319), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5319), + [anon_sym_BSLASHacrfull] = ACTIONS(5319), + [anon_sym_BSLASHAcrfull] = ACTIONS(5319), + [anon_sym_BSLASHACRfull] = ACTIONS(5319), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5319), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5319), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5319), + [anon_sym_BSLASHacs] = ACTIONS(5319), + [anon_sym_BSLASHAcs] = ACTIONS(5319), + [anon_sym_BSLASHacsp] = ACTIONS(5319), + [anon_sym_BSLASHAcsp] = ACTIONS(5319), + [anon_sym_BSLASHacl] = ACTIONS(5319), + [anon_sym_BSLASHAcl] = ACTIONS(5319), + [anon_sym_BSLASHaclp] = ACTIONS(5319), + [anon_sym_BSLASHAclp] = ACTIONS(5319), + [anon_sym_BSLASHacf] = ACTIONS(5319), + [anon_sym_BSLASHAcf] = ACTIONS(5319), + [anon_sym_BSLASHacfp] = ACTIONS(5319), + [anon_sym_BSLASHAcfp] = ACTIONS(5319), + [anon_sym_BSLASHac] = ACTIONS(5319), + [anon_sym_BSLASHAc] = ACTIONS(5319), + [anon_sym_BSLASHacp] = ACTIONS(5319), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5319), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5319), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5319), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5319), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5319), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5319), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5319), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5319), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5319), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5319), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5319), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5319), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5319), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5319), + [anon_sym_BSLASHcolor] = ACTIONS(5319), + [anon_sym_BSLASHcolorbox] = ACTIONS(5319), + [anon_sym_BSLASHtextcolor] = ACTIONS(5319), + [anon_sym_BSLASHpagecolor] = ACTIONS(5319), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5319), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5319), + [anon_sym_BSLASHtext] = ACTIONS(5319), + [anon_sym_BSLASHintertext] = ACTIONS(5319), + [anon_sym_shortintertext] = ACTIONS(5319), + }, + [1417] = { + [sym_command_name] = ACTIONS(143), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(143), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_RPAREN] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_RBRACK] = ACTIONS(141), + [anon_sym_COMMA] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(141), + [anon_sym_RBRACE] = ACTIONS(141), + [sym_word] = ACTIONS(143), + [sym_placeholder] = ACTIONS(141), + [anon_sym_PLUS] = ACTIONS(143), + [anon_sym_DASH] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(143), + [anon_sym_SLASH] = ACTIONS(143), + [anon_sym_CARET] = ACTIONS(143), + [anon_sym__] = ACTIONS(143), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_BANG] = ACTIONS(143), + [anon_sym_PIPE] = ACTIONS(143), + [anon_sym_COLON] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(143), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(141), + [anon_sym_BSLASH_LBRACK] = ACTIONS(141), + [anon_sym_DOLLAR] = ACTIONS(143), + [anon_sym_BSLASH_LPAREN] = ACTIONS(141), + [anon_sym_BSLASH_LBRACE] = ACTIONS(141), + [anon_sym_BSLASHusepackage] = ACTIONS(143), + [anon_sym_BSLASHRequirePackage] = ACTIONS(143), + [anon_sym_BSLASHdocumentclass] = ACTIONS(143), + [anon_sym_BSLASHinclude] = ACTIONS(143), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(143), + [anon_sym_BSLASHinput] = ACTIONS(143), + [anon_sym_BSLASHsubfile] = ACTIONS(143), + [anon_sym_BSLASHaddbibresource] = ACTIONS(143), + [anon_sym_BSLASHbibliography] = ACTIONS(143), + [anon_sym_BSLASHincludegraphics] = ACTIONS(143), + [anon_sym_BSLASHincludesvg] = ACTIONS(143), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(143), + [anon_sym_BSLASHverbatiminput] = ACTIONS(143), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(143), + [anon_sym_BSLASHimport] = ACTIONS(143), + [anon_sym_BSLASHsubimport] = ACTIONS(143), + [anon_sym_BSLASHinputfrom] = ACTIONS(143), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(143), + [anon_sym_BSLASHincludefrom] = ACTIONS(143), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(143), + [anon_sym_BSLASHcaption] = ACTIONS(143), + [anon_sym_BSLASHcite] = ACTIONS(143), + [anon_sym_BSLASHcite_STAR] = ACTIONS(141), + [anon_sym_BSLASHCite] = ACTIONS(143), + [anon_sym_BSLASHnocite] = ACTIONS(143), + [anon_sym_BSLASHcitet] = ACTIONS(143), + [anon_sym_BSLASHcitep] = ACTIONS(143), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteauthor] = ACTIONS(143), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHCiteauthor] = ACTIONS(143), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitetitle] = ACTIONS(143), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteyear] = ACTIONS(143), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(141), + [anon_sym_BSLASHcitedate] = ACTIONS(143), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(141), + [anon_sym_BSLASHciteurl] = ACTIONS(143), + [anon_sym_BSLASHfullcite] = ACTIONS(143), + [anon_sym_BSLASHciteyearpar] = ACTIONS(143), + [anon_sym_BSLASHcitealt] = ACTIONS(143), + [anon_sym_BSLASHcitealp] = ACTIONS(143), + [anon_sym_BSLASHcitetext] = ACTIONS(143), + [anon_sym_BSLASHparencite] = ACTIONS(143), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(141), + [anon_sym_BSLASHParencite] = ACTIONS(143), + [anon_sym_BSLASHfootcite] = ACTIONS(143), + [anon_sym_BSLASHfootfullcite] = ACTIONS(143), + [anon_sym_BSLASHfootcitetext] = ACTIONS(143), + [anon_sym_BSLASHtextcite] = ACTIONS(143), + [anon_sym_BSLASHTextcite] = ACTIONS(143), + [anon_sym_BSLASHsmartcite] = ACTIONS(143), + [anon_sym_BSLASHSmartcite] = ACTIONS(143), + [anon_sym_BSLASHsupercite] = ACTIONS(143), + [anon_sym_BSLASHautocite] = ACTIONS(143), + [anon_sym_BSLASHAutocite] = ACTIONS(143), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(141), + [anon_sym_BSLASHvolcite] = ACTIONS(143), + [anon_sym_BSLASHVolcite] = ACTIONS(143), + [anon_sym_BSLASHpvolcite] = ACTIONS(143), + [anon_sym_BSLASHPvolcite] = ACTIONS(143), + [anon_sym_BSLASHfvolcite] = ACTIONS(143), + [anon_sym_BSLASHftvolcite] = ACTIONS(143), + [anon_sym_BSLASHsvolcite] = ACTIONS(143), + [anon_sym_BSLASHSvolcite] = ACTIONS(143), + [anon_sym_BSLASHtvolcite] = ACTIONS(143), + [anon_sym_BSLASHTvolcite] = ACTIONS(143), + [anon_sym_BSLASHavolcite] = ACTIONS(143), + [anon_sym_BSLASHAvolcite] = ACTIONS(143), + [anon_sym_BSLASHnotecite] = ACTIONS(143), + [anon_sym_BSLASHNotecite] = ACTIONS(143), + [anon_sym_BSLASHpnotecite] = ACTIONS(143), + [anon_sym_BSLASHPnotecite] = ACTIONS(143), + [anon_sym_BSLASHfnotecite] = ACTIONS(143), + [anon_sym_BSLASHlabel] = ACTIONS(143), + [anon_sym_BSLASHref] = ACTIONS(143), + [anon_sym_BSLASHeqref] = ACTIONS(143), + [anon_sym_BSLASHvref] = ACTIONS(143), + [anon_sym_BSLASHVref] = ACTIONS(143), + [anon_sym_BSLASHautoref] = ACTIONS(143), + [anon_sym_BSLASHpageref] = ACTIONS(143), + [anon_sym_BSLASHcref] = ACTIONS(143), + [anon_sym_BSLASHCref] = ACTIONS(143), + [anon_sym_BSLASHcref_STAR] = ACTIONS(141), + [anon_sym_BSLASHCref_STAR] = ACTIONS(141), + [anon_sym_BSLASHnamecref] = ACTIONS(143), + [anon_sym_BSLASHnameCref] = ACTIONS(143), + [anon_sym_BSLASHlcnamecref] = ACTIONS(143), + [anon_sym_BSLASHnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHnameCrefs] = ACTIONS(143), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(143), + [anon_sym_BSLASHlabelcref] = ACTIONS(143), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(143), + [anon_sym_BSLASHcrefrange] = ACTIONS(143), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHCrefrange] = ACTIONS(143), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(141), + [anon_sym_BSLASHnewlabel] = ACTIONS(143), + [anon_sym_BSLASHnewcommand] = ACTIONS(143), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHrenewcommand] = ACTIONS(143), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(143), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(141), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(143), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(141), + [anon_sym_BSLASHdef] = ACTIONS(143), + [anon_sym_BSLASHlet] = ACTIONS(143), + [anon_sym_BSLASHnewenvironment] = ACTIONS(143), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(143), + [anon_sym_BSLASHgls] = ACTIONS(143), + [anon_sym_BSLASHGls] = ACTIONS(143), + [anon_sym_BSLASHGLS] = ACTIONS(143), + [anon_sym_BSLASHglspl] = ACTIONS(143), + [anon_sym_BSLASHGlspl] = ACTIONS(143), + [anon_sym_BSLASHGLSpl] = ACTIONS(143), + [anon_sym_BSLASHglsdisp] = ACTIONS(143), + [anon_sym_BSLASHglslink] = ACTIONS(143), + [anon_sym_BSLASHglstext] = ACTIONS(143), + [anon_sym_BSLASHGlstext] = ACTIONS(143), + [anon_sym_BSLASHGLStext] = ACTIONS(143), + [anon_sym_BSLASHglsfirst] = ACTIONS(143), + [anon_sym_BSLASHGlsfirst] = ACTIONS(143), + [anon_sym_BSLASHGLSfirst] = ACTIONS(143), + [anon_sym_BSLASHglsplural] = ACTIONS(143), + [anon_sym_BSLASHGlsplural] = ACTIONS(143), + [anon_sym_BSLASHGLSplural] = ACTIONS(143), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(143), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(143), + [anon_sym_BSLASHglsname] = ACTIONS(143), + [anon_sym_BSLASHGlsname] = ACTIONS(143), + [anon_sym_BSLASHGLSname] = ACTIONS(143), + [anon_sym_BSLASHglssymbol] = ACTIONS(143), + [anon_sym_BSLASHGlssymbol] = ACTIONS(143), + [anon_sym_BSLASHglsdesc] = ACTIONS(143), + [anon_sym_BSLASHGlsdesc] = ACTIONS(143), + [anon_sym_BSLASHGLSdesc] = ACTIONS(143), + [anon_sym_BSLASHglsuseri] = ACTIONS(143), + [anon_sym_BSLASHGlsuseri] = ACTIONS(143), + [anon_sym_BSLASHGLSuseri] = ACTIONS(143), + [anon_sym_BSLASHglsuserii] = ACTIONS(143), + [anon_sym_BSLASHGlsuserii] = ACTIONS(143), + [anon_sym_BSLASHGLSuserii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(143), + [anon_sym_BSLASHglsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(143), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(143), + [anon_sym_BSLASHglsuserv] = ACTIONS(143), + [anon_sym_BSLASHGlsuserv] = ACTIONS(143), + [anon_sym_BSLASHGLSuserv] = ACTIONS(143), + [anon_sym_BSLASHglsuservi] = ACTIONS(143), + [anon_sym_BSLASHGlsuservi] = ACTIONS(143), + [anon_sym_BSLASHGLSuservi] = ACTIONS(143), + [anon_sym_BSLASHnewacronym] = ACTIONS(143), + [anon_sym_BSLASHacrshort] = ACTIONS(143), + [anon_sym_BSLASHAcrshort] = ACTIONS(143), + [anon_sym_BSLASHACRshort] = ACTIONS(143), + [anon_sym_BSLASHacrshortpl] = ACTIONS(143), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(143), + [anon_sym_BSLASHACRshortpl] = ACTIONS(143), + [anon_sym_BSLASHacrlong] = ACTIONS(143), + [anon_sym_BSLASHAcrlong] = ACTIONS(143), + [anon_sym_BSLASHACRlong] = ACTIONS(143), + [anon_sym_BSLASHacrlongpl] = ACTIONS(143), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(143), + [anon_sym_BSLASHACRlongpl] = ACTIONS(143), + [anon_sym_BSLASHacrfull] = ACTIONS(143), + [anon_sym_BSLASHAcrfull] = ACTIONS(143), + [anon_sym_BSLASHACRfull] = ACTIONS(143), + [anon_sym_BSLASHacrfullpl] = ACTIONS(143), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(143), + [anon_sym_BSLASHACRfullpl] = ACTIONS(143), + [anon_sym_BSLASHacs] = ACTIONS(143), + [anon_sym_BSLASHAcs] = ACTIONS(143), + [anon_sym_BSLASHacsp] = ACTIONS(143), + [anon_sym_BSLASHAcsp] = ACTIONS(143), + [anon_sym_BSLASHacl] = ACTIONS(143), + [anon_sym_BSLASHAcl] = ACTIONS(143), + [anon_sym_BSLASHaclp] = ACTIONS(143), + [anon_sym_BSLASHAclp] = ACTIONS(143), + [anon_sym_BSLASHacf] = ACTIONS(143), + [anon_sym_BSLASHAcf] = ACTIONS(143), + [anon_sym_BSLASHacfp] = ACTIONS(143), + [anon_sym_BSLASHAcfp] = ACTIONS(143), + [anon_sym_BSLASHac] = ACTIONS(143), + [anon_sym_BSLASHAc] = ACTIONS(143), + [anon_sym_BSLASHacp] = ACTIONS(143), + [anon_sym_BSLASHglsentrylong] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(143), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryshort] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(143), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(143), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(143), + [anon_sym_BSLASHnewtheorem] = ACTIONS(143), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(143), + [anon_sym_BSLASHdefinecolor] = ACTIONS(143), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(143), + [anon_sym_BSLASHcolor] = ACTIONS(143), + [anon_sym_BSLASHcolorbox] = ACTIONS(143), + [anon_sym_BSLASHtextcolor] = ACTIONS(143), + [anon_sym_BSLASHpagecolor] = ACTIONS(143), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(143), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(143), + [anon_sym_BSLASHtext] = ACTIONS(143), + [anon_sym_BSLASHintertext] = ACTIONS(143), + [anon_sym_shortintertext] = ACTIONS(143), + }, + [1418] = { + [sym_command_name] = ACTIONS(5007), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4987), - [anon_sym_LPAREN] = ACTIONS(4985), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_LBRACK] = ACTIONS(4985), - [anon_sym_RBRACK] = ACTIONS(4985), - [anon_sym_COMMA] = ACTIONS(4985), - [anon_sym_LBRACE] = ACTIONS(4985), - [anon_sym_RBRACE] = ACTIONS(4985), - [sym_word] = ACTIONS(4987), - [sym_placeholder] = ACTIONS(4985), - [anon_sym_PLUS] = ACTIONS(4987), - [anon_sym_DASH] = ACTIONS(4987), - [anon_sym_STAR] = ACTIONS(4987), - [anon_sym_SLASH] = ACTIONS(4987), - [anon_sym_CARET] = ACTIONS(4987), - [anon_sym__] = ACTIONS(4987), - [anon_sym_LT] = ACTIONS(4987), - [anon_sym_GT] = ACTIONS(4987), - [anon_sym_BANG] = ACTIONS(4987), - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_COLON] = ACTIONS(4987), - [anon_sym_SQUOTE] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), - [anon_sym_BSLASHusepackage] = ACTIONS(4987), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), - [anon_sym_BSLASHinclude] = ACTIONS(4987), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), - [anon_sym_BSLASHinput] = ACTIONS(4987), - [anon_sym_BSLASHsubfile] = ACTIONS(4987), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), - [anon_sym_BSLASHbibliography] = ACTIONS(4987), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), - [anon_sym_BSLASHincludesvg] = ACTIONS(4987), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), - [anon_sym_BSLASHimport] = ACTIONS(4987), - [anon_sym_BSLASHsubimport] = ACTIONS(4987), - [anon_sym_BSLASHinputfrom] = ACTIONS(4987), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), - [anon_sym_BSLASHincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), - [anon_sym_BSLASHcaption] = ACTIONS(4987), - [anon_sym_BSLASHcite] = ACTIONS(4987), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCite] = ACTIONS(4987), - [anon_sym_BSLASHnocite] = ACTIONS(4987), - [anon_sym_BSLASHcitet] = ACTIONS(4987), - [anon_sym_BSLASHcitep] = ACTIONS(4987), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteauthor] = ACTIONS(4987), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitetitle] = ACTIONS(4987), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteyear] = ACTIONS(4987), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), - [anon_sym_BSLASHcitedate] = ACTIONS(4987), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), - [anon_sym_BSLASHciteurl] = ACTIONS(4987), - [anon_sym_BSLASHfullcite] = ACTIONS(4987), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), - [anon_sym_BSLASHcitealt] = ACTIONS(4987), - [anon_sym_BSLASHcitealp] = ACTIONS(4987), - [anon_sym_BSLASHcitetext] = ACTIONS(4987), - [anon_sym_BSLASHparencite] = ACTIONS(4987), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHParencite] = ACTIONS(4987), - [anon_sym_BSLASHfootcite] = ACTIONS(4987), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), - [anon_sym_BSLASHtextcite] = ACTIONS(4987), - [anon_sym_BSLASHTextcite] = ACTIONS(4987), - [anon_sym_BSLASHsmartcite] = ACTIONS(4987), - [anon_sym_BSLASHSmartcite] = ACTIONS(4987), - [anon_sym_BSLASHsupercite] = ACTIONS(4987), - [anon_sym_BSLASHautocite] = ACTIONS(4987), - [anon_sym_BSLASHAutocite] = ACTIONS(4987), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), - [anon_sym_BSLASHvolcite] = ACTIONS(4987), - [anon_sym_BSLASHVolcite] = ACTIONS(4987), - [anon_sym_BSLASHpvolcite] = ACTIONS(4987), - [anon_sym_BSLASHPvolcite] = ACTIONS(4987), - [anon_sym_BSLASHfvolcite] = ACTIONS(4987), - [anon_sym_BSLASHftvolcite] = ACTIONS(4987), - [anon_sym_BSLASHsvolcite] = ACTIONS(4987), - [anon_sym_BSLASHSvolcite] = ACTIONS(4987), - [anon_sym_BSLASHtvolcite] = ACTIONS(4987), - [anon_sym_BSLASHTvolcite] = ACTIONS(4987), - [anon_sym_BSLASHavolcite] = ACTIONS(4987), - [anon_sym_BSLASHAvolcite] = ACTIONS(4987), - [anon_sym_BSLASHnotecite] = ACTIONS(4987), - [anon_sym_BSLASHNotecite] = ACTIONS(4987), - [anon_sym_BSLASHpnotecite] = ACTIONS(4987), - [anon_sym_BSLASHPnotecite] = ACTIONS(4987), - [anon_sym_BSLASHfnotecite] = ACTIONS(4987), - [anon_sym_BSLASHlabel] = ACTIONS(4987), - [anon_sym_BSLASHref] = ACTIONS(4987), - [anon_sym_BSLASHeqref] = ACTIONS(4987), - [anon_sym_BSLASHvref] = ACTIONS(4987), - [anon_sym_BSLASHVref] = ACTIONS(4987), - [anon_sym_BSLASHautoref] = ACTIONS(4987), - [anon_sym_BSLASHpageref] = ACTIONS(4987), - [anon_sym_BSLASHcref] = ACTIONS(4987), - [anon_sym_BSLASHCref] = ACTIONS(4987), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnameCref] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), - [anon_sym_BSLASHlabelcref] = ACTIONS(4987), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange] = ACTIONS(4987), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHCrefrange] = ACTIONS(4987), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), - [anon_sym_BSLASHnewlabel] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand] = ACTIONS(4987), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), - [anon_sym_BSLASHdef] = ACTIONS(4987), - [anon_sym_BSLASHlet] = ACTIONS(4987), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), - [anon_sym_BSLASHgls] = ACTIONS(4987), - [anon_sym_BSLASHGls] = ACTIONS(4987), - [anon_sym_BSLASHGLS] = ACTIONS(4987), - [anon_sym_BSLASHglspl] = ACTIONS(4987), - [anon_sym_BSLASHGlspl] = ACTIONS(4987), - [anon_sym_BSLASHGLSpl] = ACTIONS(4987), - [anon_sym_BSLASHglsdisp] = ACTIONS(4987), - [anon_sym_BSLASHglslink] = ACTIONS(4987), - [anon_sym_BSLASHglstext] = ACTIONS(4987), - [anon_sym_BSLASHGlstext] = ACTIONS(4987), - [anon_sym_BSLASHGLStext] = ACTIONS(4987), - [anon_sym_BSLASHglsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), - [anon_sym_BSLASHglsplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSplural] = ACTIONS(4987), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), - [anon_sym_BSLASHglsname] = ACTIONS(4987), - [anon_sym_BSLASHGlsname] = ACTIONS(4987), - [anon_sym_BSLASHGLSname] = ACTIONS(4987), - [anon_sym_BSLASHglssymbol] = ACTIONS(4987), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), - [anon_sym_BSLASHglsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), - [anon_sym_BSLASHglsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), - [anon_sym_BSLASHglsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), - [anon_sym_BSLASHglsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), - [anon_sym_BSLASHglsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), - [anon_sym_BSLASHnewacronym] = ACTIONS(4987), - [anon_sym_BSLASHacrshort] = ACTIONS(4987), - [anon_sym_BSLASHAcrshort] = ACTIONS(4987), - [anon_sym_BSLASHACRshort] = ACTIONS(4987), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), - [anon_sym_BSLASHacrlong] = ACTIONS(4987), - [anon_sym_BSLASHAcrlong] = ACTIONS(4987), - [anon_sym_BSLASHACRlong] = ACTIONS(4987), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), - [anon_sym_BSLASHacrfull] = ACTIONS(4987), - [anon_sym_BSLASHAcrfull] = ACTIONS(4987), - [anon_sym_BSLASHACRfull] = ACTIONS(4987), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), - [anon_sym_BSLASHacs] = ACTIONS(4987), - [anon_sym_BSLASHAcs] = ACTIONS(4987), - [anon_sym_BSLASHacsp] = ACTIONS(4987), - [anon_sym_BSLASHAcsp] = ACTIONS(4987), - [anon_sym_BSLASHacl] = ACTIONS(4987), - [anon_sym_BSLASHAcl] = ACTIONS(4987), - [anon_sym_BSLASHaclp] = ACTIONS(4987), - [anon_sym_BSLASHAclp] = ACTIONS(4987), - [anon_sym_BSLASHacf] = ACTIONS(4987), - [anon_sym_BSLASHAcf] = ACTIONS(4987), - [anon_sym_BSLASHacfp] = ACTIONS(4987), - [anon_sym_BSLASHAcfp] = ACTIONS(4987), - [anon_sym_BSLASHac] = ACTIONS(4987), - [anon_sym_BSLASHAc] = ACTIONS(4987), - [anon_sym_BSLASHacp] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), - [anon_sym_BSLASHcolor] = ACTIONS(4987), - [anon_sym_BSLASHcolorbox] = ACTIONS(4987), - [anon_sym_BSLASHtextcolor] = ACTIONS(4987), - [anon_sym_BSLASHpagecolor] = ACTIONS(4987), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), + [anon_sym_BSLASHiffalse] = ACTIONS(5007), + [anon_sym_LPAREN] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5005), + [anon_sym_LBRACK] = ACTIONS(5005), + [anon_sym_RBRACK] = ACTIONS(5005), + [anon_sym_COMMA] = ACTIONS(5005), + [anon_sym_LBRACE] = ACTIONS(5005), + [anon_sym_RBRACE] = ACTIONS(5005), + [sym_word] = ACTIONS(5007), + [sym_placeholder] = ACTIONS(5005), + [anon_sym_PLUS] = ACTIONS(5007), + [anon_sym_DASH] = ACTIONS(5007), + [anon_sym_STAR] = ACTIONS(5007), + [anon_sym_SLASH] = ACTIONS(5007), + [anon_sym_CARET] = ACTIONS(5007), + [anon_sym__] = ACTIONS(5007), + [anon_sym_LT] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5007), + [anon_sym_BANG] = ACTIONS(5007), + [anon_sym_PIPE] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5007), + [anon_sym_SQUOTE] = ACTIONS(5007), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5005), + [anon_sym_DOLLAR] = ACTIONS(5007), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5005), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5005), + [anon_sym_BSLASHusepackage] = ACTIONS(5007), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5007), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5007), + [anon_sym_BSLASHinclude] = ACTIONS(5007), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5007), + [anon_sym_BSLASHinput] = ACTIONS(5007), + [anon_sym_BSLASHsubfile] = ACTIONS(5007), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5007), + [anon_sym_BSLASHbibliography] = ACTIONS(5007), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5007), + [anon_sym_BSLASHincludesvg] = ACTIONS(5007), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5007), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5007), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5007), + [anon_sym_BSLASHimport] = ACTIONS(5007), + [anon_sym_BSLASHsubimport] = ACTIONS(5007), + [anon_sym_BSLASHinputfrom] = ACTIONS(5007), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5007), + [anon_sym_BSLASHincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5007), + [anon_sym_BSLASHcaption] = ACTIONS(5007), + [anon_sym_BSLASHcite] = ACTIONS(5007), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCite] = ACTIONS(5007), + [anon_sym_BSLASHnocite] = ACTIONS(5007), + [anon_sym_BSLASHcitet] = ACTIONS(5007), + [anon_sym_BSLASHcitep] = ACTIONS(5007), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteauthor] = ACTIONS(5007), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5007), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitetitle] = ACTIONS(5007), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteyear] = ACTIONS(5007), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5005), + [anon_sym_BSLASHcitedate] = ACTIONS(5007), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5005), + [anon_sym_BSLASHciteurl] = ACTIONS(5007), + [anon_sym_BSLASHfullcite] = ACTIONS(5007), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5007), + [anon_sym_BSLASHcitealt] = ACTIONS(5007), + [anon_sym_BSLASHcitealp] = ACTIONS(5007), + [anon_sym_BSLASHcitetext] = ACTIONS(5007), + [anon_sym_BSLASHparencite] = ACTIONS(5007), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHParencite] = ACTIONS(5007), + [anon_sym_BSLASHfootcite] = ACTIONS(5007), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5007), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5007), + [anon_sym_BSLASHtextcite] = ACTIONS(5007), + [anon_sym_BSLASHTextcite] = ACTIONS(5007), + [anon_sym_BSLASHsmartcite] = ACTIONS(5007), + [anon_sym_BSLASHSmartcite] = ACTIONS(5007), + [anon_sym_BSLASHsupercite] = ACTIONS(5007), + [anon_sym_BSLASHautocite] = ACTIONS(5007), + [anon_sym_BSLASHAutocite] = ACTIONS(5007), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5005), + [anon_sym_BSLASHvolcite] = ACTIONS(5007), + [anon_sym_BSLASHVolcite] = ACTIONS(5007), + [anon_sym_BSLASHpvolcite] = ACTIONS(5007), + [anon_sym_BSLASHPvolcite] = ACTIONS(5007), + [anon_sym_BSLASHfvolcite] = ACTIONS(5007), + [anon_sym_BSLASHftvolcite] = ACTIONS(5007), + [anon_sym_BSLASHsvolcite] = ACTIONS(5007), + [anon_sym_BSLASHSvolcite] = ACTIONS(5007), + [anon_sym_BSLASHtvolcite] = ACTIONS(5007), + [anon_sym_BSLASHTvolcite] = ACTIONS(5007), + [anon_sym_BSLASHavolcite] = ACTIONS(5007), + [anon_sym_BSLASHAvolcite] = ACTIONS(5007), + [anon_sym_BSLASHnotecite] = ACTIONS(5007), + [anon_sym_BSLASHNotecite] = ACTIONS(5007), + [anon_sym_BSLASHpnotecite] = ACTIONS(5007), + [anon_sym_BSLASHPnotecite] = ACTIONS(5007), + [anon_sym_BSLASHfnotecite] = ACTIONS(5007), + [anon_sym_BSLASHlabel] = ACTIONS(5007), + [anon_sym_BSLASHref] = ACTIONS(5007), + [anon_sym_BSLASHeqref] = ACTIONS(5007), + [anon_sym_BSLASHvref] = ACTIONS(5007), + [anon_sym_BSLASHVref] = ACTIONS(5007), + [anon_sym_BSLASHautoref] = ACTIONS(5007), + [anon_sym_BSLASHpageref] = ACTIONS(5007), + [anon_sym_BSLASHcref] = ACTIONS(5007), + [anon_sym_BSLASHCref] = ACTIONS(5007), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnameCref] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5007), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5007), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5007), + [anon_sym_BSLASHlabelcref] = ACTIONS(5007), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange] = ACTIONS(5007), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHCrefrange] = ACTIONS(5007), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5005), + [anon_sym_BSLASHnewlabel] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand] = ACTIONS(5007), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5007), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5007), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5005), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5007), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5005), + [anon_sym_BSLASHdef] = ACTIONS(5007), + [anon_sym_BSLASHlet] = ACTIONS(5007), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5007), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5007), + [anon_sym_BSLASHgls] = ACTIONS(5007), + [anon_sym_BSLASHGls] = ACTIONS(5007), + [anon_sym_BSLASHGLS] = ACTIONS(5007), + [anon_sym_BSLASHglspl] = ACTIONS(5007), + [anon_sym_BSLASHGlspl] = ACTIONS(5007), + [anon_sym_BSLASHGLSpl] = ACTIONS(5007), + [anon_sym_BSLASHglsdisp] = ACTIONS(5007), + [anon_sym_BSLASHglslink] = ACTIONS(5007), + [anon_sym_BSLASHglstext] = ACTIONS(5007), + [anon_sym_BSLASHGlstext] = ACTIONS(5007), + [anon_sym_BSLASHGLStext] = ACTIONS(5007), + [anon_sym_BSLASHglsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5007), + [anon_sym_BSLASHglsplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSplural] = ACTIONS(5007), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5007), + [anon_sym_BSLASHglsname] = ACTIONS(5007), + [anon_sym_BSLASHGlsname] = ACTIONS(5007), + [anon_sym_BSLASHGLSname] = ACTIONS(5007), + [anon_sym_BSLASHglssymbol] = ACTIONS(5007), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5007), + [anon_sym_BSLASHglsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5007), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5007), + [anon_sym_BSLASHglsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5007), + [anon_sym_BSLASHglsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5007), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5007), + [anon_sym_BSLASHglsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5007), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5007), + [anon_sym_BSLASHglsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5007), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5007), + [anon_sym_BSLASHnewacronym] = ACTIONS(5007), + [anon_sym_BSLASHacrshort] = ACTIONS(5007), + [anon_sym_BSLASHAcrshort] = ACTIONS(5007), + [anon_sym_BSLASHACRshort] = ACTIONS(5007), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5007), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5007), + [anon_sym_BSLASHacrlong] = ACTIONS(5007), + [anon_sym_BSLASHAcrlong] = ACTIONS(5007), + [anon_sym_BSLASHACRlong] = ACTIONS(5007), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5007), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5007), + [anon_sym_BSLASHacrfull] = ACTIONS(5007), + [anon_sym_BSLASHAcrfull] = ACTIONS(5007), + [anon_sym_BSLASHACRfull] = ACTIONS(5007), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5007), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5007), + [anon_sym_BSLASHacs] = ACTIONS(5007), + [anon_sym_BSLASHAcs] = ACTIONS(5007), + [anon_sym_BSLASHacsp] = ACTIONS(5007), + [anon_sym_BSLASHAcsp] = ACTIONS(5007), + [anon_sym_BSLASHacl] = ACTIONS(5007), + [anon_sym_BSLASHAcl] = ACTIONS(5007), + [anon_sym_BSLASHaclp] = ACTIONS(5007), + [anon_sym_BSLASHAclp] = ACTIONS(5007), + [anon_sym_BSLASHacf] = ACTIONS(5007), + [anon_sym_BSLASHAcf] = ACTIONS(5007), + [anon_sym_BSLASHacfp] = ACTIONS(5007), + [anon_sym_BSLASHAcfp] = ACTIONS(5007), + [anon_sym_BSLASHac] = ACTIONS(5007), + [anon_sym_BSLASHAc] = ACTIONS(5007), + [anon_sym_BSLASHacp] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5007), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5007), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5007), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5007), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5007), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5007), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5007), + [anon_sym_BSLASHcolor] = ACTIONS(5007), + [anon_sym_BSLASHcolorbox] = ACTIONS(5007), + [anon_sym_BSLASHtextcolor] = ACTIONS(5007), + [anon_sym_BSLASHpagecolor] = ACTIONS(5007), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5007), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5007), + [anon_sym_BSLASHtext] = ACTIONS(5007), + [anon_sym_BSLASHintertext] = ACTIONS(5007), + [anon_sym_shortintertext] = ACTIONS(5007), }, - [1466] = { - [sym_command_name] = ACTIONS(5357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_LPAREN] = ACTIONS(5355), - [anon_sym_RPAREN] = ACTIONS(5355), - [anon_sym_LBRACK] = ACTIONS(5355), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_LBRACE] = ACTIONS(5355), - [anon_sym_RBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5355), - [anon_sym_DOLLAR] = ACTIONS(5357), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5355), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5355), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), + [1419] = { + [sym_command_name] = ACTIONS(5177), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5177), + [anon_sym_LPAREN] = ACTIONS(5175), + [anon_sym_RPAREN] = ACTIONS(5175), + [anon_sym_LBRACK] = ACTIONS(5175), + [anon_sym_RBRACK] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5175), + [anon_sym_LBRACE] = ACTIONS(5175), + [anon_sym_RBRACE] = ACTIONS(5175), + [sym_word] = ACTIONS(5177), + [sym_placeholder] = ACTIONS(5175), + [anon_sym_PLUS] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5177), + [anon_sym_SLASH] = ACTIONS(5177), + [anon_sym_CARET] = ACTIONS(5177), + [anon_sym__] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5177), + [anon_sym_GT] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5177), + [anon_sym_PIPE] = ACTIONS(5177), + [anon_sym_COLON] = ACTIONS(5177), + [anon_sym_SQUOTE] = ACTIONS(5177), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5175), + [anon_sym_DOLLAR] = ACTIONS(5177), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5175), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5175), + [anon_sym_BSLASHusepackage] = ACTIONS(5177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), + [anon_sym_BSLASHinclude] = ACTIONS(5177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), + [anon_sym_BSLASHinput] = ACTIONS(5177), + [anon_sym_BSLASHsubfile] = ACTIONS(5177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), + [anon_sym_BSLASHbibliography] = ACTIONS(5177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), + [anon_sym_BSLASHincludesvg] = ACTIONS(5177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), + [anon_sym_BSLASHimport] = ACTIONS(5177), + [anon_sym_BSLASHsubimport] = ACTIONS(5177), + [anon_sym_BSLASHinputfrom] = ACTIONS(5177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), + [anon_sym_BSLASHincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHcaption] = ACTIONS(5177), + [anon_sym_BSLASHcite] = ACTIONS(5177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCite] = ACTIONS(5177), + [anon_sym_BSLASHnocite] = ACTIONS(5177), + [anon_sym_BSLASHcitet] = ACTIONS(5177), + [anon_sym_BSLASHcitep] = ACTIONS(5177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteauthor] = ACTIONS(5177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitetitle] = ACTIONS(5177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteyear] = ACTIONS(5177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitedate] = ACTIONS(5177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteurl] = ACTIONS(5177), + [anon_sym_BSLASHfullcite] = ACTIONS(5177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), + [anon_sym_BSLASHcitealt] = ACTIONS(5177), + [anon_sym_BSLASHcitealp] = ACTIONS(5177), + [anon_sym_BSLASHcitetext] = ACTIONS(5177), + [anon_sym_BSLASHparencite] = ACTIONS(5177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHParencite] = ACTIONS(5177), + [anon_sym_BSLASHfootcite] = ACTIONS(5177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), + [anon_sym_BSLASHtextcite] = ACTIONS(5177), + [anon_sym_BSLASHTextcite] = ACTIONS(5177), + [anon_sym_BSLASHsmartcite] = ACTIONS(5177), + [anon_sym_BSLASHSmartcite] = ACTIONS(5177), + [anon_sym_BSLASHsupercite] = ACTIONS(5177), + [anon_sym_BSLASHautocite] = ACTIONS(5177), + [anon_sym_BSLASHAutocite] = ACTIONS(5177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHvolcite] = ACTIONS(5177), + [anon_sym_BSLASHVolcite] = ACTIONS(5177), + [anon_sym_BSLASHpvolcite] = ACTIONS(5177), + [anon_sym_BSLASHPvolcite] = ACTIONS(5177), + [anon_sym_BSLASHfvolcite] = ACTIONS(5177), + [anon_sym_BSLASHftvolcite] = ACTIONS(5177), + [anon_sym_BSLASHsvolcite] = ACTIONS(5177), + [anon_sym_BSLASHSvolcite] = ACTIONS(5177), + [anon_sym_BSLASHtvolcite] = ACTIONS(5177), + [anon_sym_BSLASHTvolcite] = ACTIONS(5177), + [anon_sym_BSLASHavolcite] = ACTIONS(5177), + [anon_sym_BSLASHAvolcite] = ACTIONS(5177), + [anon_sym_BSLASHnotecite] = ACTIONS(5177), + [anon_sym_BSLASHNotecite] = ACTIONS(5177), + [anon_sym_BSLASHpnotecite] = ACTIONS(5177), + [anon_sym_BSLASHPnotecite] = ACTIONS(5177), + [anon_sym_BSLASHfnotecite] = ACTIONS(5177), + [anon_sym_BSLASHlabel] = ACTIONS(5177), + [anon_sym_BSLASHref] = ACTIONS(5177), + [anon_sym_BSLASHeqref] = ACTIONS(5177), + [anon_sym_BSLASHvref] = ACTIONS(5177), + [anon_sym_BSLASHVref] = ACTIONS(5177), + [anon_sym_BSLASHautoref] = ACTIONS(5177), + [anon_sym_BSLASHpageref] = ACTIONS(5177), + [anon_sym_BSLASHcref] = ACTIONS(5177), + [anon_sym_BSLASHCref] = ACTIONS(5177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnameCref] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHlabelcref] = ACTIONS(5177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCrefrange] = ACTIONS(5177), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnewlabel] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), + [anon_sym_BSLASHdef] = ACTIONS(5177), + [anon_sym_BSLASHlet] = ACTIONS(5177), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), + [anon_sym_BSLASHgls] = ACTIONS(5177), + [anon_sym_BSLASHGls] = ACTIONS(5177), + [anon_sym_BSLASHGLS] = ACTIONS(5177), + [anon_sym_BSLASHglspl] = ACTIONS(5177), + [anon_sym_BSLASHGlspl] = ACTIONS(5177), + [anon_sym_BSLASHGLSpl] = ACTIONS(5177), + [anon_sym_BSLASHglsdisp] = ACTIONS(5177), + [anon_sym_BSLASHglslink] = ACTIONS(5177), + [anon_sym_BSLASHglstext] = ACTIONS(5177), + [anon_sym_BSLASHGlstext] = ACTIONS(5177), + [anon_sym_BSLASHGLStext] = ACTIONS(5177), + [anon_sym_BSLASHglsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), + [anon_sym_BSLASHglsplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSplural] = ACTIONS(5177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHglsname] = ACTIONS(5177), + [anon_sym_BSLASHGlsname] = ACTIONS(5177), + [anon_sym_BSLASHGLSname] = ACTIONS(5177), + [anon_sym_BSLASHglssymbol] = ACTIONS(5177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), + [anon_sym_BSLASHglsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), + [anon_sym_BSLASHglsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), + [anon_sym_BSLASHglsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), + [anon_sym_BSLASHglsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), + [anon_sym_BSLASHglsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), + [anon_sym_BSLASHnewacronym] = ACTIONS(5177), + [anon_sym_BSLASHacrshort] = ACTIONS(5177), + [anon_sym_BSLASHAcrshort] = ACTIONS(5177), + [anon_sym_BSLASHACRshort] = ACTIONS(5177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), + [anon_sym_BSLASHacrlong] = ACTIONS(5177), + [anon_sym_BSLASHAcrlong] = ACTIONS(5177), + [anon_sym_BSLASHACRlong] = ACTIONS(5177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), + [anon_sym_BSLASHacrfull] = ACTIONS(5177), + [anon_sym_BSLASHAcrfull] = ACTIONS(5177), + [anon_sym_BSLASHACRfull] = ACTIONS(5177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), + [anon_sym_BSLASHacs] = ACTIONS(5177), + [anon_sym_BSLASHAcs] = ACTIONS(5177), + [anon_sym_BSLASHacsp] = ACTIONS(5177), + [anon_sym_BSLASHAcsp] = ACTIONS(5177), + [anon_sym_BSLASHacl] = ACTIONS(5177), + [anon_sym_BSLASHAcl] = ACTIONS(5177), + [anon_sym_BSLASHaclp] = ACTIONS(5177), + [anon_sym_BSLASHAclp] = ACTIONS(5177), + [anon_sym_BSLASHacf] = ACTIONS(5177), + [anon_sym_BSLASHAcf] = ACTIONS(5177), + [anon_sym_BSLASHacfp] = ACTIONS(5177), + [anon_sym_BSLASHAcfp] = ACTIONS(5177), + [anon_sym_BSLASHac] = ACTIONS(5177), + [anon_sym_BSLASHAc] = ACTIONS(5177), + [anon_sym_BSLASHacp] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), + [anon_sym_BSLASHcolor] = ACTIONS(5177), + [anon_sym_BSLASHcolorbox] = ACTIONS(5177), + [anon_sym_BSLASHtextcolor] = ACTIONS(5177), + [anon_sym_BSLASHpagecolor] = ACTIONS(5177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), + [anon_sym_BSLASHtext] = ACTIONS(5177), + [anon_sym_BSLASHintertext] = ACTIONS(5177), + [anon_sym_shortintertext] = ACTIONS(5177), }, - [1467] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_LPAREN] = ACTIONS(5359), - [anon_sym_RPAREN] = ACTIONS(5359), - [anon_sym_LBRACK] = ACTIONS(5359), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_LBRACE] = ACTIONS(5359), - [anon_sym_RBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5359), - [anon_sym_DOLLAR] = ACTIONS(5361), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5359), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5359), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), + [1420] = { + [sym_command_name] = ACTIONS(5181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5181), + [anon_sym_LPAREN] = ACTIONS(5179), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_LBRACK] = ACTIONS(5179), + [anon_sym_RBRACK] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_LBRACE] = ACTIONS(5179), + [anon_sym_RBRACE] = ACTIONS(5179), + [sym_word] = ACTIONS(5181), + [sym_placeholder] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5181), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_CARET] = ACTIONS(5181), + [anon_sym__] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_COLON] = ACTIONS(5181), + [anon_sym_SQUOTE] = ACTIONS(5181), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5179), + [anon_sym_DOLLAR] = ACTIONS(5181), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5179), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5179), + [anon_sym_BSLASHusepackage] = ACTIONS(5181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), + [anon_sym_BSLASHinclude] = ACTIONS(5181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), + [anon_sym_BSLASHinput] = ACTIONS(5181), + [anon_sym_BSLASHsubfile] = ACTIONS(5181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), + [anon_sym_BSLASHbibliography] = ACTIONS(5181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), + [anon_sym_BSLASHincludesvg] = ACTIONS(5181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), + [anon_sym_BSLASHimport] = ACTIONS(5181), + [anon_sym_BSLASHsubimport] = ACTIONS(5181), + [anon_sym_BSLASHinputfrom] = ACTIONS(5181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), + [anon_sym_BSLASHincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHcaption] = ACTIONS(5181), + [anon_sym_BSLASHcite] = ACTIONS(5181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCite] = ACTIONS(5181), + [anon_sym_BSLASHnocite] = ACTIONS(5181), + [anon_sym_BSLASHcitet] = ACTIONS(5181), + [anon_sym_BSLASHcitep] = ACTIONS(5181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteauthor] = ACTIONS(5181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitetitle] = ACTIONS(5181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteyear] = ACTIONS(5181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitedate] = ACTIONS(5181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteurl] = ACTIONS(5181), + [anon_sym_BSLASHfullcite] = ACTIONS(5181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), + [anon_sym_BSLASHcitealt] = ACTIONS(5181), + [anon_sym_BSLASHcitealp] = ACTIONS(5181), + [anon_sym_BSLASHcitetext] = ACTIONS(5181), + [anon_sym_BSLASHparencite] = ACTIONS(5181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHParencite] = ACTIONS(5181), + [anon_sym_BSLASHfootcite] = ACTIONS(5181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), + [anon_sym_BSLASHtextcite] = ACTIONS(5181), + [anon_sym_BSLASHTextcite] = ACTIONS(5181), + [anon_sym_BSLASHsmartcite] = ACTIONS(5181), + [anon_sym_BSLASHSmartcite] = ACTIONS(5181), + [anon_sym_BSLASHsupercite] = ACTIONS(5181), + [anon_sym_BSLASHautocite] = ACTIONS(5181), + [anon_sym_BSLASHAutocite] = ACTIONS(5181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHvolcite] = ACTIONS(5181), + [anon_sym_BSLASHVolcite] = ACTIONS(5181), + [anon_sym_BSLASHpvolcite] = ACTIONS(5181), + [anon_sym_BSLASHPvolcite] = ACTIONS(5181), + [anon_sym_BSLASHfvolcite] = ACTIONS(5181), + [anon_sym_BSLASHftvolcite] = ACTIONS(5181), + [anon_sym_BSLASHsvolcite] = ACTIONS(5181), + [anon_sym_BSLASHSvolcite] = ACTIONS(5181), + [anon_sym_BSLASHtvolcite] = ACTIONS(5181), + [anon_sym_BSLASHTvolcite] = ACTIONS(5181), + [anon_sym_BSLASHavolcite] = ACTIONS(5181), + [anon_sym_BSLASHAvolcite] = ACTIONS(5181), + [anon_sym_BSLASHnotecite] = ACTIONS(5181), + [anon_sym_BSLASHNotecite] = ACTIONS(5181), + [anon_sym_BSLASHpnotecite] = ACTIONS(5181), + [anon_sym_BSLASHPnotecite] = ACTIONS(5181), + [anon_sym_BSLASHfnotecite] = ACTIONS(5181), + [anon_sym_BSLASHlabel] = ACTIONS(5181), + [anon_sym_BSLASHref] = ACTIONS(5181), + [anon_sym_BSLASHeqref] = ACTIONS(5181), + [anon_sym_BSLASHvref] = ACTIONS(5181), + [anon_sym_BSLASHVref] = ACTIONS(5181), + [anon_sym_BSLASHautoref] = ACTIONS(5181), + [anon_sym_BSLASHpageref] = ACTIONS(5181), + [anon_sym_BSLASHcref] = ACTIONS(5181), + [anon_sym_BSLASHCref] = ACTIONS(5181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnameCref] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHlabelcref] = ACTIONS(5181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnewlabel] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), + [anon_sym_BSLASHdef] = ACTIONS(5181), + [anon_sym_BSLASHlet] = ACTIONS(5181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), + [anon_sym_BSLASHgls] = ACTIONS(5181), + [anon_sym_BSLASHGls] = ACTIONS(5181), + [anon_sym_BSLASHGLS] = ACTIONS(5181), + [anon_sym_BSLASHglspl] = ACTIONS(5181), + [anon_sym_BSLASHGlspl] = ACTIONS(5181), + [anon_sym_BSLASHGLSpl] = ACTIONS(5181), + [anon_sym_BSLASHglsdisp] = ACTIONS(5181), + [anon_sym_BSLASHglslink] = ACTIONS(5181), + [anon_sym_BSLASHglstext] = ACTIONS(5181), + [anon_sym_BSLASHGlstext] = ACTIONS(5181), + [anon_sym_BSLASHGLStext] = ACTIONS(5181), + [anon_sym_BSLASHglsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), + [anon_sym_BSLASHglsplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSplural] = ACTIONS(5181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHglsname] = ACTIONS(5181), + [anon_sym_BSLASHGlsname] = ACTIONS(5181), + [anon_sym_BSLASHGLSname] = ACTIONS(5181), + [anon_sym_BSLASHglssymbol] = ACTIONS(5181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), + [anon_sym_BSLASHglsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), + [anon_sym_BSLASHglsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), + [anon_sym_BSLASHglsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), + [anon_sym_BSLASHglsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), + [anon_sym_BSLASHglsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), + [anon_sym_BSLASHnewacronym] = ACTIONS(5181), + [anon_sym_BSLASHacrshort] = ACTIONS(5181), + [anon_sym_BSLASHAcrshort] = ACTIONS(5181), + [anon_sym_BSLASHACRshort] = ACTIONS(5181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), + [anon_sym_BSLASHacrlong] = ACTIONS(5181), + [anon_sym_BSLASHAcrlong] = ACTIONS(5181), + [anon_sym_BSLASHACRlong] = ACTIONS(5181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), + [anon_sym_BSLASHacrfull] = ACTIONS(5181), + [anon_sym_BSLASHAcrfull] = ACTIONS(5181), + [anon_sym_BSLASHACRfull] = ACTIONS(5181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), + [anon_sym_BSLASHacs] = ACTIONS(5181), + [anon_sym_BSLASHAcs] = ACTIONS(5181), + [anon_sym_BSLASHacsp] = ACTIONS(5181), + [anon_sym_BSLASHAcsp] = ACTIONS(5181), + [anon_sym_BSLASHacl] = ACTIONS(5181), + [anon_sym_BSLASHAcl] = ACTIONS(5181), + [anon_sym_BSLASHaclp] = ACTIONS(5181), + [anon_sym_BSLASHAclp] = ACTIONS(5181), + [anon_sym_BSLASHacf] = ACTIONS(5181), + [anon_sym_BSLASHAcf] = ACTIONS(5181), + [anon_sym_BSLASHacfp] = ACTIONS(5181), + [anon_sym_BSLASHAcfp] = ACTIONS(5181), + [anon_sym_BSLASHac] = ACTIONS(5181), + [anon_sym_BSLASHAc] = ACTIONS(5181), + [anon_sym_BSLASHacp] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), + [anon_sym_BSLASHcolor] = ACTIONS(5181), + [anon_sym_BSLASHcolorbox] = ACTIONS(5181), + [anon_sym_BSLASHtextcolor] = ACTIONS(5181), + [anon_sym_BSLASHpagecolor] = ACTIONS(5181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), + [anon_sym_BSLASHtext] = ACTIONS(5181), + [anon_sym_BSLASHintertext] = ACTIONS(5181), + [anon_sym_shortintertext] = ACTIONS(5181), }, - [1468] = { - [sym_command_name] = ACTIONS(5367), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5367), - [anon_sym_LPAREN] = ACTIONS(5365), - [anon_sym_RPAREN] = ACTIONS(5365), - [anon_sym_LBRACK] = ACTIONS(5365), - [anon_sym_RBRACK] = ACTIONS(5365), - [anon_sym_COMMA] = ACTIONS(5365), - [anon_sym_LBRACE] = ACTIONS(5365), - [anon_sym_RBRACE] = ACTIONS(5365), - [sym_word] = ACTIONS(5367), - [sym_placeholder] = ACTIONS(5365), - [anon_sym_PLUS] = ACTIONS(5367), - [anon_sym_DASH] = ACTIONS(5367), - [anon_sym_STAR] = ACTIONS(5367), - [anon_sym_SLASH] = ACTIONS(5367), - [anon_sym_CARET] = ACTIONS(5367), - [anon_sym__] = ACTIONS(5367), - [anon_sym_LT] = ACTIONS(5367), - [anon_sym_GT] = ACTIONS(5367), - [anon_sym_BANG] = ACTIONS(5367), - [anon_sym_PIPE] = ACTIONS(5367), - [anon_sym_COLON] = ACTIONS(5367), - [anon_sym_SQUOTE] = ACTIONS(5367), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5365), - [anon_sym_DOLLAR] = ACTIONS(5367), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5365), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5365), - [anon_sym_BSLASHusepackage] = ACTIONS(5367), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5367), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5367), - [anon_sym_BSLASHinclude] = ACTIONS(5367), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5367), - [anon_sym_BSLASHinput] = ACTIONS(5367), - [anon_sym_BSLASHsubfile] = ACTIONS(5367), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5367), - [anon_sym_BSLASHbibliography] = ACTIONS(5367), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5367), - [anon_sym_BSLASHincludesvg] = ACTIONS(5367), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5367), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5367), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5367), - [anon_sym_BSLASHimport] = ACTIONS(5367), - [anon_sym_BSLASHsubimport] = ACTIONS(5367), - [anon_sym_BSLASHinputfrom] = ACTIONS(5367), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5367), - [anon_sym_BSLASHincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHcaption] = ACTIONS(5367), - [anon_sym_BSLASHcite] = ACTIONS(5367), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCite] = ACTIONS(5367), - [anon_sym_BSLASHnocite] = ACTIONS(5367), - [anon_sym_BSLASHcitet] = ACTIONS(5367), - [anon_sym_BSLASHcitep] = ACTIONS(5367), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor] = ACTIONS(5367), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5367), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle] = ACTIONS(5367), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteyear] = ACTIONS(5367), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitedate] = ACTIONS(5367), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteurl] = ACTIONS(5367), - [anon_sym_BSLASHfullcite] = ACTIONS(5367), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5367), - [anon_sym_BSLASHcitealt] = ACTIONS(5367), - [anon_sym_BSLASHcitealp] = ACTIONS(5367), - [anon_sym_BSLASHcitetext] = ACTIONS(5367), - [anon_sym_BSLASHparencite] = ACTIONS(5367), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHParencite] = ACTIONS(5367), - [anon_sym_BSLASHfootcite] = ACTIONS(5367), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5367), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5367), - [anon_sym_BSLASHtextcite] = ACTIONS(5367), - [anon_sym_BSLASHTextcite] = ACTIONS(5367), - [anon_sym_BSLASHsmartcite] = ACTIONS(5367), - [anon_sym_BSLASHSmartcite] = ACTIONS(5367), - [anon_sym_BSLASHsupercite] = ACTIONS(5367), - [anon_sym_BSLASHautocite] = ACTIONS(5367), - [anon_sym_BSLASHAutocite] = ACTIONS(5367), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHvolcite] = ACTIONS(5367), - [anon_sym_BSLASHVolcite] = ACTIONS(5367), - [anon_sym_BSLASHpvolcite] = ACTIONS(5367), - [anon_sym_BSLASHPvolcite] = ACTIONS(5367), - [anon_sym_BSLASHfvolcite] = ACTIONS(5367), - [anon_sym_BSLASHftvolcite] = ACTIONS(5367), - [anon_sym_BSLASHsvolcite] = ACTIONS(5367), - [anon_sym_BSLASHSvolcite] = ACTIONS(5367), - [anon_sym_BSLASHtvolcite] = ACTIONS(5367), - [anon_sym_BSLASHTvolcite] = ACTIONS(5367), - [anon_sym_BSLASHavolcite] = ACTIONS(5367), - [anon_sym_BSLASHAvolcite] = ACTIONS(5367), - [anon_sym_BSLASHnotecite] = ACTIONS(5367), - [anon_sym_BSLASHNotecite] = ACTIONS(5367), - [anon_sym_BSLASHpnotecite] = ACTIONS(5367), - [anon_sym_BSLASHPnotecite] = ACTIONS(5367), - [anon_sym_BSLASHfnotecite] = ACTIONS(5367), - [anon_sym_BSLASHlabel] = ACTIONS(5367), - [anon_sym_BSLASHref] = ACTIONS(5367), - [anon_sym_BSLASHeqref] = ACTIONS(5367), - [anon_sym_BSLASHvref] = ACTIONS(5367), - [anon_sym_BSLASHVref] = ACTIONS(5367), - [anon_sym_BSLASHautoref] = ACTIONS(5367), - [anon_sym_BSLASHpageref] = ACTIONS(5367), - [anon_sym_BSLASHcref] = ACTIONS(5367), - [anon_sym_BSLASHCref] = ACTIONS(5367), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnameCref] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHlabelcref] = ACTIONS(5367), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange] = ACTIONS(5367), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnewlabel] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5367), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5367), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5367), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5365), - [anon_sym_BSLASHdef] = ACTIONS(5367), - [anon_sym_BSLASHlet] = ACTIONS(5367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5367), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5367), - [anon_sym_BSLASHgls] = ACTIONS(5367), - [anon_sym_BSLASHGls] = ACTIONS(5367), - [anon_sym_BSLASHGLS] = ACTIONS(5367), - [anon_sym_BSLASHglspl] = ACTIONS(5367), - [anon_sym_BSLASHGlspl] = ACTIONS(5367), - [anon_sym_BSLASHGLSpl] = ACTIONS(5367), - [anon_sym_BSLASHglsdisp] = ACTIONS(5367), - [anon_sym_BSLASHglslink] = ACTIONS(5367), - [anon_sym_BSLASHglstext] = ACTIONS(5367), - [anon_sym_BSLASHGlstext] = ACTIONS(5367), - [anon_sym_BSLASHGLStext] = ACTIONS(5367), - [anon_sym_BSLASHglsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5367), - [anon_sym_BSLASHglsplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSplural] = ACTIONS(5367), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHglsname] = ACTIONS(5367), - [anon_sym_BSLASHGlsname] = ACTIONS(5367), - [anon_sym_BSLASHGLSname] = ACTIONS(5367), - [anon_sym_BSLASHglssymbol] = ACTIONS(5367), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5367), - [anon_sym_BSLASHglsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5367), - [anon_sym_BSLASHglsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5367), - [anon_sym_BSLASHglsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5367), - [anon_sym_BSLASHglsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5367), - [anon_sym_BSLASHglsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5367), - [anon_sym_BSLASHnewacronym] = ACTIONS(5367), - [anon_sym_BSLASHacrshort] = ACTIONS(5367), - [anon_sym_BSLASHAcrshort] = ACTIONS(5367), - [anon_sym_BSLASHACRshort] = ACTIONS(5367), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5367), - [anon_sym_BSLASHacrlong] = ACTIONS(5367), - [anon_sym_BSLASHAcrlong] = ACTIONS(5367), - [anon_sym_BSLASHACRlong] = ACTIONS(5367), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5367), - [anon_sym_BSLASHacrfull] = ACTIONS(5367), - [anon_sym_BSLASHAcrfull] = ACTIONS(5367), - [anon_sym_BSLASHACRfull] = ACTIONS(5367), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5367), - [anon_sym_BSLASHacs] = ACTIONS(5367), - [anon_sym_BSLASHAcs] = ACTIONS(5367), - [anon_sym_BSLASHacsp] = ACTIONS(5367), - [anon_sym_BSLASHAcsp] = ACTIONS(5367), - [anon_sym_BSLASHacl] = ACTIONS(5367), - [anon_sym_BSLASHAcl] = ACTIONS(5367), - [anon_sym_BSLASHaclp] = ACTIONS(5367), - [anon_sym_BSLASHAclp] = ACTIONS(5367), - [anon_sym_BSLASHacf] = ACTIONS(5367), - [anon_sym_BSLASHAcf] = ACTIONS(5367), - [anon_sym_BSLASHacfp] = ACTIONS(5367), - [anon_sym_BSLASHAcfp] = ACTIONS(5367), - [anon_sym_BSLASHac] = ACTIONS(5367), - [anon_sym_BSLASHAc] = ACTIONS(5367), - [anon_sym_BSLASHacp] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5367), - [anon_sym_BSLASHcolor] = ACTIONS(5367), - [anon_sym_BSLASHcolorbox] = ACTIONS(5367), - [anon_sym_BSLASHtextcolor] = ACTIONS(5367), - [anon_sym_BSLASHpagecolor] = ACTIONS(5367), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5367), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5367), + [1421] = { + [sym_command_name] = ACTIONS(5185), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5185), + [anon_sym_LPAREN] = ACTIONS(5183), + [anon_sym_RPAREN] = ACTIONS(5183), + [anon_sym_LBRACK] = ACTIONS(5183), + [anon_sym_RBRACK] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_LBRACE] = ACTIONS(5183), + [anon_sym_RBRACE] = ACTIONS(5183), + [sym_word] = ACTIONS(5185), + [sym_placeholder] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_CARET] = ACTIONS(5185), + [anon_sym__] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_COLON] = ACTIONS(5185), + [anon_sym_SQUOTE] = ACTIONS(5185), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), + [anon_sym_DOLLAR] = ACTIONS(5185), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), + [anon_sym_BSLASHusepackage] = ACTIONS(5185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), + [anon_sym_BSLASHinclude] = ACTIONS(5185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), + [anon_sym_BSLASHinput] = ACTIONS(5185), + [anon_sym_BSLASHsubfile] = ACTIONS(5185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), + [anon_sym_BSLASHbibliography] = ACTIONS(5185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), + [anon_sym_BSLASHincludesvg] = ACTIONS(5185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), + [anon_sym_BSLASHimport] = ACTIONS(5185), + [anon_sym_BSLASHsubimport] = ACTIONS(5185), + [anon_sym_BSLASHinputfrom] = ACTIONS(5185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), + [anon_sym_BSLASHincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHcaption] = ACTIONS(5185), + [anon_sym_BSLASHcite] = ACTIONS(5185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCite] = ACTIONS(5185), + [anon_sym_BSLASHnocite] = ACTIONS(5185), + [anon_sym_BSLASHcitet] = ACTIONS(5185), + [anon_sym_BSLASHcitep] = ACTIONS(5185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteauthor] = ACTIONS(5185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitetitle] = ACTIONS(5185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteyear] = ACTIONS(5185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitedate] = ACTIONS(5185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteurl] = ACTIONS(5185), + [anon_sym_BSLASHfullcite] = ACTIONS(5185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), + [anon_sym_BSLASHcitealt] = ACTIONS(5185), + [anon_sym_BSLASHcitealp] = ACTIONS(5185), + [anon_sym_BSLASHcitetext] = ACTIONS(5185), + [anon_sym_BSLASHparencite] = ACTIONS(5185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHParencite] = ACTIONS(5185), + [anon_sym_BSLASHfootcite] = ACTIONS(5185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), + [anon_sym_BSLASHtextcite] = ACTIONS(5185), + [anon_sym_BSLASHTextcite] = ACTIONS(5185), + [anon_sym_BSLASHsmartcite] = ACTIONS(5185), + [anon_sym_BSLASHSmartcite] = ACTIONS(5185), + [anon_sym_BSLASHsupercite] = ACTIONS(5185), + [anon_sym_BSLASHautocite] = ACTIONS(5185), + [anon_sym_BSLASHAutocite] = ACTIONS(5185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHvolcite] = ACTIONS(5185), + [anon_sym_BSLASHVolcite] = ACTIONS(5185), + [anon_sym_BSLASHpvolcite] = ACTIONS(5185), + [anon_sym_BSLASHPvolcite] = ACTIONS(5185), + [anon_sym_BSLASHfvolcite] = ACTIONS(5185), + [anon_sym_BSLASHftvolcite] = ACTIONS(5185), + [anon_sym_BSLASHsvolcite] = ACTIONS(5185), + [anon_sym_BSLASHSvolcite] = ACTIONS(5185), + [anon_sym_BSLASHtvolcite] = ACTIONS(5185), + [anon_sym_BSLASHTvolcite] = ACTIONS(5185), + [anon_sym_BSLASHavolcite] = ACTIONS(5185), + [anon_sym_BSLASHAvolcite] = ACTIONS(5185), + [anon_sym_BSLASHnotecite] = ACTIONS(5185), + [anon_sym_BSLASHNotecite] = ACTIONS(5185), + [anon_sym_BSLASHpnotecite] = ACTIONS(5185), + [anon_sym_BSLASHPnotecite] = ACTIONS(5185), + [anon_sym_BSLASHfnotecite] = ACTIONS(5185), + [anon_sym_BSLASHlabel] = ACTIONS(5185), + [anon_sym_BSLASHref] = ACTIONS(5185), + [anon_sym_BSLASHeqref] = ACTIONS(5185), + [anon_sym_BSLASHvref] = ACTIONS(5185), + [anon_sym_BSLASHVref] = ACTIONS(5185), + [anon_sym_BSLASHautoref] = ACTIONS(5185), + [anon_sym_BSLASHpageref] = ACTIONS(5185), + [anon_sym_BSLASHcref] = ACTIONS(5185), + [anon_sym_BSLASHCref] = ACTIONS(5185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnameCref] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHlabelcref] = ACTIONS(5185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCrefrange] = ACTIONS(5185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnewlabel] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), + [anon_sym_BSLASHdef] = ACTIONS(5185), + [anon_sym_BSLASHlet] = ACTIONS(5185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), + [anon_sym_BSLASHgls] = ACTIONS(5185), + [anon_sym_BSLASHGls] = ACTIONS(5185), + [anon_sym_BSLASHGLS] = ACTIONS(5185), + [anon_sym_BSLASHglspl] = ACTIONS(5185), + [anon_sym_BSLASHGlspl] = ACTIONS(5185), + [anon_sym_BSLASHGLSpl] = ACTIONS(5185), + [anon_sym_BSLASHglsdisp] = ACTIONS(5185), + [anon_sym_BSLASHglslink] = ACTIONS(5185), + [anon_sym_BSLASHglstext] = ACTIONS(5185), + [anon_sym_BSLASHGlstext] = ACTIONS(5185), + [anon_sym_BSLASHGLStext] = ACTIONS(5185), + [anon_sym_BSLASHglsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), + [anon_sym_BSLASHglsplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSplural] = ACTIONS(5185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHglsname] = ACTIONS(5185), + [anon_sym_BSLASHGlsname] = ACTIONS(5185), + [anon_sym_BSLASHGLSname] = ACTIONS(5185), + [anon_sym_BSLASHglssymbol] = ACTIONS(5185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), + [anon_sym_BSLASHglsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), + [anon_sym_BSLASHglsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), + [anon_sym_BSLASHglsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), + [anon_sym_BSLASHglsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), + [anon_sym_BSLASHglsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), + [anon_sym_BSLASHnewacronym] = ACTIONS(5185), + [anon_sym_BSLASHacrshort] = ACTIONS(5185), + [anon_sym_BSLASHAcrshort] = ACTIONS(5185), + [anon_sym_BSLASHACRshort] = ACTIONS(5185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), + [anon_sym_BSLASHacrlong] = ACTIONS(5185), + [anon_sym_BSLASHAcrlong] = ACTIONS(5185), + [anon_sym_BSLASHACRlong] = ACTIONS(5185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), + [anon_sym_BSLASHacrfull] = ACTIONS(5185), + [anon_sym_BSLASHAcrfull] = ACTIONS(5185), + [anon_sym_BSLASHACRfull] = ACTIONS(5185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), + [anon_sym_BSLASHacs] = ACTIONS(5185), + [anon_sym_BSLASHAcs] = ACTIONS(5185), + [anon_sym_BSLASHacsp] = ACTIONS(5185), + [anon_sym_BSLASHAcsp] = ACTIONS(5185), + [anon_sym_BSLASHacl] = ACTIONS(5185), + [anon_sym_BSLASHAcl] = ACTIONS(5185), + [anon_sym_BSLASHaclp] = ACTIONS(5185), + [anon_sym_BSLASHAclp] = ACTIONS(5185), + [anon_sym_BSLASHacf] = ACTIONS(5185), + [anon_sym_BSLASHAcf] = ACTIONS(5185), + [anon_sym_BSLASHacfp] = ACTIONS(5185), + [anon_sym_BSLASHAcfp] = ACTIONS(5185), + [anon_sym_BSLASHac] = ACTIONS(5185), + [anon_sym_BSLASHAc] = ACTIONS(5185), + [anon_sym_BSLASHacp] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), + [anon_sym_BSLASHcolor] = ACTIONS(5185), + [anon_sym_BSLASHcolorbox] = ACTIONS(5185), + [anon_sym_BSLASHtextcolor] = ACTIONS(5185), + [anon_sym_BSLASHpagecolor] = ACTIONS(5185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), + [anon_sym_BSLASHtext] = ACTIONS(5185), + [anon_sym_BSLASHintertext] = ACTIONS(5185), + [anon_sym_shortintertext] = ACTIONS(5185), }, - [1469] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_LPAREN] = ACTIONS(5369), - [anon_sym_RPAREN] = ACTIONS(5369), - [anon_sym_LBRACK] = ACTIONS(5369), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_LBRACE] = ACTIONS(5369), - [anon_sym_RBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5369), - [anon_sym_DOLLAR] = ACTIONS(5371), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5369), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5369), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), + [1422] = { + [sym_command_name] = ACTIONS(5189), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(5187), + [anon_sym_RPAREN] = ACTIONS(5187), + [anon_sym_LBRACK] = ACTIONS(5187), + [anon_sym_RBRACK] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_LBRACE] = ACTIONS(5187), + [anon_sym_RBRACE] = ACTIONS(5187), + [sym_word] = ACTIONS(5189), + [sym_placeholder] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_STAR] = ACTIONS(5189), + [anon_sym_SLASH] = ACTIONS(5189), + [anon_sym_CARET] = ACTIONS(5189), + [anon_sym__] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5189), + [anon_sym_GT] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_PIPE] = ACTIONS(5189), + [anon_sym_COLON] = ACTIONS(5189), + [anon_sym_SQUOTE] = ACTIONS(5189), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5187), + [anon_sym_DOLLAR] = ACTIONS(5189), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5187), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5187), + [anon_sym_BSLASHusepackage] = ACTIONS(5189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), + [anon_sym_BSLASHinclude] = ACTIONS(5189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), + [anon_sym_BSLASHinput] = ACTIONS(5189), + [anon_sym_BSLASHsubfile] = ACTIONS(5189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), + [anon_sym_BSLASHbibliography] = ACTIONS(5189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), + [anon_sym_BSLASHincludesvg] = ACTIONS(5189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), + [anon_sym_BSLASHimport] = ACTIONS(5189), + [anon_sym_BSLASHsubimport] = ACTIONS(5189), + [anon_sym_BSLASHinputfrom] = ACTIONS(5189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), + [anon_sym_BSLASHincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHcaption] = ACTIONS(5189), + [anon_sym_BSLASHcite] = ACTIONS(5189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCite] = ACTIONS(5189), + [anon_sym_BSLASHnocite] = ACTIONS(5189), + [anon_sym_BSLASHcitet] = ACTIONS(5189), + [anon_sym_BSLASHcitep] = ACTIONS(5189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteauthor] = ACTIONS(5189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitetitle] = ACTIONS(5189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteyear] = ACTIONS(5189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitedate] = ACTIONS(5189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteurl] = ACTIONS(5189), + [anon_sym_BSLASHfullcite] = ACTIONS(5189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), + [anon_sym_BSLASHcitealt] = ACTIONS(5189), + [anon_sym_BSLASHcitealp] = ACTIONS(5189), + [anon_sym_BSLASHcitetext] = ACTIONS(5189), + [anon_sym_BSLASHparencite] = ACTIONS(5189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHParencite] = ACTIONS(5189), + [anon_sym_BSLASHfootcite] = ACTIONS(5189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), + [anon_sym_BSLASHtextcite] = ACTIONS(5189), + [anon_sym_BSLASHTextcite] = ACTIONS(5189), + [anon_sym_BSLASHsmartcite] = ACTIONS(5189), + [anon_sym_BSLASHSmartcite] = ACTIONS(5189), + [anon_sym_BSLASHsupercite] = ACTIONS(5189), + [anon_sym_BSLASHautocite] = ACTIONS(5189), + [anon_sym_BSLASHAutocite] = ACTIONS(5189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHvolcite] = ACTIONS(5189), + [anon_sym_BSLASHVolcite] = ACTIONS(5189), + [anon_sym_BSLASHpvolcite] = ACTIONS(5189), + [anon_sym_BSLASHPvolcite] = ACTIONS(5189), + [anon_sym_BSLASHfvolcite] = ACTIONS(5189), + [anon_sym_BSLASHftvolcite] = ACTIONS(5189), + [anon_sym_BSLASHsvolcite] = ACTIONS(5189), + [anon_sym_BSLASHSvolcite] = ACTIONS(5189), + [anon_sym_BSLASHtvolcite] = ACTIONS(5189), + [anon_sym_BSLASHTvolcite] = ACTIONS(5189), + [anon_sym_BSLASHavolcite] = ACTIONS(5189), + [anon_sym_BSLASHAvolcite] = ACTIONS(5189), + [anon_sym_BSLASHnotecite] = ACTIONS(5189), + [anon_sym_BSLASHNotecite] = ACTIONS(5189), + [anon_sym_BSLASHpnotecite] = ACTIONS(5189), + [anon_sym_BSLASHPnotecite] = ACTIONS(5189), + [anon_sym_BSLASHfnotecite] = ACTIONS(5189), + [anon_sym_BSLASHlabel] = ACTIONS(5189), + [anon_sym_BSLASHref] = ACTIONS(5189), + [anon_sym_BSLASHeqref] = ACTIONS(5189), + [anon_sym_BSLASHvref] = ACTIONS(5189), + [anon_sym_BSLASHVref] = ACTIONS(5189), + [anon_sym_BSLASHautoref] = ACTIONS(5189), + [anon_sym_BSLASHpageref] = ACTIONS(5189), + [anon_sym_BSLASHcref] = ACTIONS(5189), + [anon_sym_BSLASHCref] = ACTIONS(5189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnameCref] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHlabelcref] = ACTIONS(5189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCrefrange] = ACTIONS(5189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnewlabel] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), + [anon_sym_BSLASHgls] = ACTIONS(5189), + [anon_sym_BSLASHGls] = ACTIONS(5189), + [anon_sym_BSLASHGLS] = ACTIONS(5189), + [anon_sym_BSLASHglspl] = ACTIONS(5189), + [anon_sym_BSLASHGlspl] = ACTIONS(5189), + [anon_sym_BSLASHGLSpl] = ACTIONS(5189), + [anon_sym_BSLASHglsdisp] = ACTIONS(5189), + [anon_sym_BSLASHglslink] = ACTIONS(5189), + [anon_sym_BSLASHglstext] = ACTIONS(5189), + [anon_sym_BSLASHGlstext] = ACTIONS(5189), + [anon_sym_BSLASHGLStext] = ACTIONS(5189), + [anon_sym_BSLASHglsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), + [anon_sym_BSLASHglsplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSplural] = ACTIONS(5189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHglsname] = ACTIONS(5189), + [anon_sym_BSLASHGlsname] = ACTIONS(5189), + [anon_sym_BSLASHGLSname] = ACTIONS(5189), + [anon_sym_BSLASHglssymbol] = ACTIONS(5189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), + [anon_sym_BSLASHglsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), + [anon_sym_BSLASHglsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), + [anon_sym_BSLASHglsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), + [anon_sym_BSLASHglsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), + [anon_sym_BSLASHglsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), + [anon_sym_BSLASHnewacronym] = ACTIONS(5189), + [anon_sym_BSLASHacrshort] = ACTIONS(5189), + [anon_sym_BSLASHAcrshort] = ACTIONS(5189), + [anon_sym_BSLASHACRshort] = ACTIONS(5189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), + [anon_sym_BSLASHacrlong] = ACTIONS(5189), + [anon_sym_BSLASHAcrlong] = ACTIONS(5189), + [anon_sym_BSLASHACRlong] = ACTIONS(5189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), + [anon_sym_BSLASHacrfull] = ACTIONS(5189), + [anon_sym_BSLASHAcrfull] = ACTIONS(5189), + [anon_sym_BSLASHACRfull] = ACTIONS(5189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), + [anon_sym_BSLASHacs] = ACTIONS(5189), + [anon_sym_BSLASHAcs] = ACTIONS(5189), + [anon_sym_BSLASHacsp] = ACTIONS(5189), + [anon_sym_BSLASHAcsp] = ACTIONS(5189), + [anon_sym_BSLASHacl] = ACTIONS(5189), + [anon_sym_BSLASHAcl] = ACTIONS(5189), + [anon_sym_BSLASHaclp] = ACTIONS(5189), + [anon_sym_BSLASHAclp] = ACTIONS(5189), + [anon_sym_BSLASHacf] = ACTIONS(5189), + [anon_sym_BSLASHAcf] = ACTIONS(5189), + [anon_sym_BSLASHacfp] = ACTIONS(5189), + [anon_sym_BSLASHAcfp] = ACTIONS(5189), + [anon_sym_BSLASHac] = ACTIONS(5189), + [anon_sym_BSLASHAc] = ACTIONS(5189), + [anon_sym_BSLASHacp] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), + [anon_sym_BSLASHcolor] = ACTIONS(5189), + [anon_sym_BSLASHcolorbox] = ACTIONS(5189), + [anon_sym_BSLASHtextcolor] = ACTIONS(5189), + [anon_sym_BSLASHpagecolor] = ACTIONS(5189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), + [anon_sym_BSLASHtext] = ACTIONS(5189), + [anon_sym_BSLASHintertext] = ACTIONS(5189), + [anon_sym_shortintertext] = ACTIONS(5189), }, - [1470] = { - [sym_command_name] = ACTIONS(5029), + [1423] = { + [sym_command_name] = ACTIONS(5193), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_LPAREN] = ACTIONS(5027), - [anon_sym_RPAREN] = ACTIONS(5027), - [anon_sym_LBRACK] = ACTIONS(5027), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_LBRACE] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5027), - [anon_sym_DOLLAR] = ACTIONS(5029), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5027), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5027), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), - }, - [1471] = { - [sym_command_name] = ACTIONS(5381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5381), - [anon_sym_LPAREN] = ACTIONS(5379), - [anon_sym_RPAREN] = ACTIONS(5379), - [anon_sym_LBRACK] = ACTIONS(5379), - [anon_sym_RBRACK] = ACTIONS(5379), - [anon_sym_COMMA] = ACTIONS(5379), - [anon_sym_LBRACE] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5379), - [sym_word] = ACTIONS(5381), - [sym_placeholder] = ACTIONS(5379), - [anon_sym_PLUS] = ACTIONS(5381), - [anon_sym_DASH] = ACTIONS(5381), - [anon_sym_STAR] = ACTIONS(5381), - [anon_sym_SLASH] = ACTIONS(5381), - [anon_sym_CARET] = ACTIONS(5381), - [anon_sym__] = ACTIONS(5381), - [anon_sym_LT] = ACTIONS(5381), - [anon_sym_GT] = ACTIONS(5381), - [anon_sym_BANG] = ACTIONS(5381), - [anon_sym_PIPE] = ACTIONS(5381), - [anon_sym_COLON] = ACTIONS(5381), - [anon_sym_SQUOTE] = ACTIONS(5381), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5379), - [anon_sym_DOLLAR] = ACTIONS(5381), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5379), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5379), - [anon_sym_BSLASHusepackage] = ACTIONS(5381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5381), - [anon_sym_BSLASHinclude] = ACTIONS(5381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5381), - [anon_sym_BSLASHinput] = ACTIONS(5381), - [anon_sym_BSLASHsubfile] = ACTIONS(5381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5381), - [anon_sym_BSLASHbibliography] = ACTIONS(5381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5381), - [anon_sym_BSLASHincludesvg] = ACTIONS(5381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5381), - [anon_sym_BSLASHimport] = ACTIONS(5381), - [anon_sym_BSLASHsubimport] = ACTIONS(5381), - [anon_sym_BSLASHinputfrom] = ACTIONS(5381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5381), - [anon_sym_BSLASHincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHcaption] = ACTIONS(5381), - [anon_sym_BSLASHcite] = ACTIONS(5381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCite] = ACTIONS(5381), - [anon_sym_BSLASHnocite] = ACTIONS(5381), - [anon_sym_BSLASHcitet] = ACTIONS(5381), - [anon_sym_BSLASHcitep] = ACTIONS(5381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteyear] = ACTIONS(5381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitedate] = ACTIONS(5381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteurl] = ACTIONS(5381), - [anon_sym_BSLASHfullcite] = ACTIONS(5381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5381), - [anon_sym_BSLASHcitealt] = ACTIONS(5381), - [anon_sym_BSLASHcitealp] = ACTIONS(5381), - [anon_sym_BSLASHcitetext] = ACTIONS(5381), - [anon_sym_BSLASHparencite] = ACTIONS(5381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHParencite] = ACTIONS(5381), - [anon_sym_BSLASHfootcite] = ACTIONS(5381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5381), - [anon_sym_BSLASHtextcite] = ACTIONS(5381), - [anon_sym_BSLASHTextcite] = ACTIONS(5381), - [anon_sym_BSLASHsmartcite] = ACTIONS(5381), - [anon_sym_BSLASHSmartcite] = ACTIONS(5381), - [anon_sym_BSLASHsupercite] = ACTIONS(5381), - [anon_sym_BSLASHautocite] = ACTIONS(5381), - [anon_sym_BSLASHAutocite] = ACTIONS(5381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHvolcite] = ACTIONS(5381), - [anon_sym_BSLASHVolcite] = ACTIONS(5381), - [anon_sym_BSLASHpvolcite] = ACTIONS(5381), - [anon_sym_BSLASHPvolcite] = ACTIONS(5381), - [anon_sym_BSLASHfvolcite] = ACTIONS(5381), - [anon_sym_BSLASHftvolcite] = ACTIONS(5381), - [anon_sym_BSLASHsvolcite] = ACTIONS(5381), - [anon_sym_BSLASHSvolcite] = ACTIONS(5381), - [anon_sym_BSLASHtvolcite] = ACTIONS(5381), - [anon_sym_BSLASHTvolcite] = ACTIONS(5381), - [anon_sym_BSLASHavolcite] = ACTIONS(5381), - [anon_sym_BSLASHAvolcite] = ACTIONS(5381), - [anon_sym_BSLASHnotecite] = ACTIONS(5381), - [anon_sym_BSLASHNotecite] = ACTIONS(5381), - [anon_sym_BSLASHpnotecite] = ACTIONS(5381), - [anon_sym_BSLASHPnotecite] = ACTIONS(5381), - [anon_sym_BSLASHfnotecite] = ACTIONS(5381), - [anon_sym_BSLASHlabel] = ACTIONS(5381), - [anon_sym_BSLASHref] = ACTIONS(5381), - [anon_sym_BSLASHeqref] = ACTIONS(5381), - [anon_sym_BSLASHvref] = ACTIONS(5381), - [anon_sym_BSLASHVref] = ACTIONS(5381), - [anon_sym_BSLASHautoref] = ACTIONS(5381), - [anon_sym_BSLASHpageref] = ACTIONS(5381), - [anon_sym_BSLASHcref] = ACTIONS(5381), - [anon_sym_BSLASHCref] = ACTIONS(5381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnameCref] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHlabelcref] = ACTIONS(5381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnewlabel] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5379), - [anon_sym_BSLASHdef] = ACTIONS(5381), - [anon_sym_BSLASHlet] = ACTIONS(5381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5381), - [anon_sym_BSLASHgls] = ACTIONS(5381), - [anon_sym_BSLASHGls] = ACTIONS(5381), - [anon_sym_BSLASHGLS] = ACTIONS(5381), - [anon_sym_BSLASHglspl] = ACTIONS(5381), - [anon_sym_BSLASHGlspl] = ACTIONS(5381), - [anon_sym_BSLASHGLSpl] = ACTIONS(5381), - [anon_sym_BSLASHglsdisp] = ACTIONS(5381), - [anon_sym_BSLASHglslink] = ACTIONS(5381), - [anon_sym_BSLASHglstext] = ACTIONS(5381), - [anon_sym_BSLASHGlstext] = ACTIONS(5381), - [anon_sym_BSLASHGLStext] = ACTIONS(5381), - [anon_sym_BSLASHglsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5381), - [anon_sym_BSLASHglsplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSplural] = ACTIONS(5381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHglsname] = ACTIONS(5381), - [anon_sym_BSLASHGlsname] = ACTIONS(5381), - [anon_sym_BSLASHGLSname] = ACTIONS(5381), - [anon_sym_BSLASHglssymbol] = ACTIONS(5381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5381), - [anon_sym_BSLASHglsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5381), - [anon_sym_BSLASHglsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5381), - [anon_sym_BSLASHglsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5381), - [anon_sym_BSLASHglsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5381), - [anon_sym_BSLASHglsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5381), - [anon_sym_BSLASHnewacronym] = ACTIONS(5381), - [anon_sym_BSLASHacrshort] = ACTIONS(5381), - [anon_sym_BSLASHAcrshort] = ACTIONS(5381), - [anon_sym_BSLASHACRshort] = ACTIONS(5381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5381), - [anon_sym_BSLASHacrlong] = ACTIONS(5381), - [anon_sym_BSLASHAcrlong] = ACTIONS(5381), - [anon_sym_BSLASHACRlong] = ACTIONS(5381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5381), - [anon_sym_BSLASHacrfull] = ACTIONS(5381), - [anon_sym_BSLASHAcrfull] = ACTIONS(5381), - [anon_sym_BSLASHACRfull] = ACTIONS(5381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5381), - [anon_sym_BSLASHacs] = ACTIONS(5381), - [anon_sym_BSLASHAcs] = ACTIONS(5381), - [anon_sym_BSLASHacsp] = ACTIONS(5381), - [anon_sym_BSLASHAcsp] = ACTIONS(5381), - [anon_sym_BSLASHacl] = ACTIONS(5381), - [anon_sym_BSLASHAcl] = ACTIONS(5381), - [anon_sym_BSLASHaclp] = ACTIONS(5381), - [anon_sym_BSLASHAclp] = ACTIONS(5381), - [anon_sym_BSLASHacf] = ACTIONS(5381), - [anon_sym_BSLASHAcf] = ACTIONS(5381), - [anon_sym_BSLASHacfp] = ACTIONS(5381), - [anon_sym_BSLASHAcfp] = ACTIONS(5381), - [anon_sym_BSLASHac] = ACTIONS(5381), - [anon_sym_BSLASHAc] = ACTIONS(5381), - [anon_sym_BSLASHacp] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5381), - [anon_sym_BSLASHcolor] = ACTIONS(5381), - [anon_sym_BSLASHcolorbox] = ACTIONS(5381), - [anon_sym_BSLASHtextcolor] = ACTIONS(5381), - [anon_sym_BSLASHpagecolor] = ACTIONS(5381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5381), - }, - [1472] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_LPAREN] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5127), - [anon_sym_LBRACK] = ACTIONS(5127), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_LBRACE] = ACTIONS(5127), - [anon_sym_RBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5127), - [anon_sym_DOLLAR] = ACTIONS(5129), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5127), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5127), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), - }, - [1473] = { - [sym_command_name] = ACTIONS(5317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5317), - [anon_sym_LPAREN] = ACTIONS(5315), - [anon_sym_RPAREN] = ACTIONS(5315), - [anon_sym_LBRACK] = ACTIONS(5315), - [anon_sym_RBRACK] = ACTIONS(5315), - [anon_sym_COMMA] = ACTIONS(5315), - [anon_sym_LBRACE] = ACTIONS(5315), - [anon_sym_RBRACE] = ACTIONS(5315), - [sym_word] = ACTIONS(5317), - [sym_placeholder] = ACTIONS(5315), - [anon_sym_PLUS] = ACTIONS(5317), - [anon_sym_DASH] = ACTIONS(5317), - [anon_sym_STAR] = ACTIONS(5317), - [anon_sym_SLASH] = ACTIONS(5317), - [anon_sym_CARET] = ACTIONS(5317), - [anon_sym__] = ACTIONS(5317), - [anon_sym_LT] = ACTIONS(5317), - [anon_sym_GT] = ACTIONS(5317), - [anon_sym_BANG] = ACTIONS(5317), - [anon_sym_PIPE] = ACTIONS(5317), - [anon_sym_COLON] = ACTIONS(5317), - [anon_sym_SQUOTE] = ACTIONS(5317), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5315), - [anon_sym_DOLLAR] = ACTIONS(5317), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5315), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5315), - [anon_sym_BSLASHusepackage] = ACTIONS(5317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), - [anon_sym_BSLASHinclude] = ACTIONS(5317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), - [anon_sym_BSLASHinput] = ACTIONS(5317), - [anon_sym_BSLASHsubfile] = ACTIONS(5317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), - [anon_sym_BSLASHbibliography] = ACTIONS(5317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), - [anon_sym_BSLASHincludesvg] = ACTIONS(5317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), - [anon_sym_BSLASHimport] = ACTIONS(5317), - [anon_sym_BSLASHsubimport] = ACTIONS(5317), - [anon_sym_BSLASHinputfrom] = ACTIONS(5317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), - [anon_sym_BSLASHincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHcaption] = ACTIONS(5317), - [anon_sym_BSLASHcite] = ACTIONS(5317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCite] = ACTIONS(5317), - [anon_sym_BSLASHnocite] = ACTIONS(5317), - [anon_sym_BSLASHcitet] = ACTIONS(5317), - [anon_sym_BSLASHcitep] = ACTIONS(5317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteyear] = ACTIONS(5317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitedate] = ACTIONS(5317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteurl] = ACTIONS(5317), - [anon_sym_BSLASHfullcite] = ACTIONS(5317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), - [anon_sym_BSLASHcitealt] = ACTIONS(5317), - [anon_sym_BSLASHcitealp] = ACTIONS(5317), - [anon_sym_BSLASHcitetext] = ACTIONS(5317), - [anon_sym_BSLASHparencite] = ACTIONS(5317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHParencite] = ACTIONS(5317), - [anon_sym_BSLASHfootcite] = ACTIONS(5317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), - [anon_sym_BSLASHtextcite] = ACTIONS(5317), - [anon_sym_BSLASHTextcite] = ACTIONS(5317), - [anon_sym_BSLASHsmartcite] = ACTIONS(5317), - [anon_sym_BSLASHSmartcite] = ACTIONS(5317), - [anon_sym_BSLASHsupercite] = ACTIONS(5317), - [anon_sym_BSLASHautocite] = ACTIONS(5317), - [anon_sym_BSLASHAutocite] = ACTIONS(5317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHvolcite] = ACTIONS(5317), - [anon_sym_BSLASHVolcite] = ACTIONS(5317), - [anon_sym_BSLASHpvolcite] = ACTIONS(5317), - [anon_sym_BSLASHPvolcite] = ACTIONS(5317), - [anon_sym_BSLASHfvolcite] = ACTIONS(5317), - [anon_sym_BSLASHftvolcite] = ACTIONS(5317), - [anon_sym_BSLASHsvolcite] = ACTIONS(5317), - [anon_sym_BSLASHSvolcite] = ACTIONS(5317), - [anon_sym_BSLASHtvolcite] = ACTIONS(5317), - [anon_sym_BSLASHTvolcite] = ACTIONS(5317), - [anon_sym_BSLASHavolcite] = ACTIONS(5317), - [anon_sym_BSLASHAvolcite] = ACTIONS(5317), - [anon_sym_BSLASHnotecite] = ACTIONS(5317), - [anon_sym_BSLASHNotecite] = ACTIONS(5317), - [anon_sym_BSLASHpnotecite] = ACTIONS(5317), - [anon_sym_BSLASHPnotecite] = ACTIONS(5317), - [anon_sym_BSLASHfnotecite] = ACTIONS(5317), - [anon_sym_BSLASHlabel] = ACTIONS(5317), - [anon_sym_BSLASHref] = ACTIONS(5317), - [anon_sym_BSLASHeqref] = ACTIONS(5317), - [anon_sym_BSLASHvref] = ACTIONS(5317), - [anon_sym_BSLASHVref] = ACTIONS(5317), - [anon_sym_BSLASHautoref] = ACTIONS(5317), - [anon_sym_BSLASHpageref] = ACTIONS(5317), - [anon_sym_BSLASHcref] = ACTIONS(5317), - [anon_sym_BSLASHCref] = ACTIONS(5317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnameCref] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHlabelcref] = ACTIONS(5317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnewlabel] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), - [anon_sym_BSLASHdef] = ACTIONS(5317), - [anon_sym_BSLASHlet] = ACTIONS(5317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), - [anon_sym_BSLASHgls] = ACTIONS(5317), - [anon_sym_BSLASHGls] = ACTIONS(5317), - [anon_sym_BSLASHGLS] = ACTIONS(5317), - [anon_sym_BSLASHglspl] = ACTIONS(5317), - [anon_sym_BSLASHGlspl] = ACTIONS(5317), - [anon_sym_BSLASHGLSpl] = ACTIONS(5317), - [anon_sym_BSLASHglsdisp] = ACTIONS(5317), - [anon_sym_BSLASHglslink] = ACTIONS(5317), - [anon_sym_BSLASHglstext] = ACTIONS(5317), - [anon_sym_BSLASHGlstext] = ACTIONS(5317), - [anon_sym_BSLASHGLStext] = ACTIONS(5317), - [anon_sym_BSLASHglsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), - [anon_sym_BSLASHglsplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSplural] = ACTIONS(5317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHglsname] = ACTIONS(5317), - [anon_sym_BSLASHGlsname] = ACTIONS(5317), - [anon_sym_BSLASHGLSname] = ACTIONS(5317), - [anon_sym_BSLASHglssymbol] = ACTIONS(5317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), - [anon_sym_BSLASHglsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), - [anon_sym_BSLASHglsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), - [anon_sym_BSLASHglsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), - [anon_sym_BSLASHglsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), - [anon_sym_BSLASHglsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), - [anon_sym_BSLASHnewacronym] = ACTIONS(5317), - [anon_sym_BSLASHacrshort] = ACTIONS(5317), - [anon_sym_BSLASHAcrshort] = ACTIONS(5317), - [anon_sym_BSLASHACRshort] = ACTIONS(5317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), - [anon_sym_BSLASHacrlong] = ACTIONS(5317), - [anon_sym_BSLASHAcrlong] = ACTIONS(5317), - [anon_sym_BSLASHACRlong] = ACTIONS(5317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), - [anon_sym_BSLASHacrfull] = ACTIONS(5317), - [anon_sym_BSLASHAcrfull] = ACTIONS(5317), - [anon_sym_BSLASHACRfull] = ACTIONS(5317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), - [anon_sym_BSLASHacs] = ACTIONS(5317), - [anon_sym_BSLASHAcs] = ACTIONS(5317), - [anon_sym_BSLASHacsp] = ACTIONS(5317), - [anon_sym_BSLASHAcsp] = ACTIONS(5317), - [anon_sym_BSLASHacl] = ACTIONS(5317), - [anon_sym_BSLASHAcl] = ACTIONS(5317), - [anon_sym_BSLASHaclp] = ACTIONS(5317), - [anon_sym_BSLASHAclp] = ACTIONS(5317), - [anon_sym_BSLASHacf] = ACTIONS(5317), - [anon_sym_BSLASHAcf] = ACTIONS(5317), - [anon_sym_BSLASHacfp] = ACTIONS(5317), - [anon_sym_BSLASHAcfp] = ACTIONS(5317), - [anon_sym_BSLASHac] = ACTIONS(5317), - [anon_sym_BSLASHAc] = ACTIONS(5317), - [anon_sym_BSLASHacp] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), - [anon_sym_BSLASHcolor] = ACTIONS(5317), - [anon_sym_BSLASHcolorbox] = ACTIONS(5317), - [anon_sym_BSLASHtextcolor] = ACTIONS(5317), - [anon_sym_BSLASHpagecolor] = ACTIONS(5317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), - }, - [1474] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(5309), - [anon_sym_RPAREN] = ACTIONS(5309), - [anon_sym_LBRACK] = ACTIONS(5309), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_LBRACE] = ACTIONS(5309), - [anon_sym_RBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5309), - [anon_sym_DOLLAR] = ACTIONS(5311), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5309), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5309), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), - }, - [1475] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_LPAREN] = ACTIONS(5169), - [anon_sym_RPAREN] = ACTIONS(5169), - [anon_sym_LBRACK] = ACTIONS(5169), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_LBRACE] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5169), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5169), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), + [anon_sym_BSLASHiffalse] = ACTIONS(5193), + [anon_sym_LPAREN] = ACTIONS(5191), + [anon_sym_RPAREN] = ACTIONS(5191), + [anon_sym_LBRACK] = ACTIONS(5191), + [anon_sym_RBRACK] = ACTIONS(5191), + [anon_sym_COMMA] = ACTIONS(5191), + [anon_sym_LBRACE] = ACTIONS(5191), + [anon_sym_RBRACE] = ACTIONS(5191), + [sym_word] = ACTIONS(5193), + [sym_placeholder] = ACTIONS(5191), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5193), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_CARET] = ACTIONS(5193), + [anon_sym__] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_PIPE] = ACTIONS(5193), + [anon_sym_COLON] = ACTIONS(5193), + [anon_sym_SQUOTE] = ACTIONS(5193), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5191), + [anon_sym_DOLLAR] = ACTIONS(5193), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5191), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5191), + [anon_sym_BSLASHusepackage] = ACTIONS(5193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), + [anon_sym_BSLASHinclude] = ACTIONS(5193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), + [anon_sym_BSLASHinput] = ACTIONS(5193), + [anon_sym_BSLASHsubfile] = ACTIONS(5193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), + [anon_sym_BSLASHbibliography] = ACTIONS(5193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), + [anon_sym_BSLASHincludesvg] = ACTIONS(5193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), + [anon_sym_BSLASHimport] = ACTIONS(5193), + [anon_sym_BSLASHsubimport] = ACTIONS(5193), + [anon_sym_BSLASHinputfrom] = ACTIONS(5193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), + [anon_sym_BSLASHincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHcaption] = ACTIONS(5193), + [anon_sym_BSLASHcite] = ACTIONS(5193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCite] = ACTIONS(5193), + [anon_sym_BSLASHnocite] = ACTIONS(5193), + [anon_sym_BSLASHcitet] = ACTIONS(5193), + [anon_sym_BSLASHcitep] = ACTIONS(5193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteauthor] = ACTIONS(5193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitetitle] = ACTIONS(5193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteyear] = ACTIONS(5193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitedate] = ACTIONS(5193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteurl] = ACTIONS(5193), + [anon_sym_BSLASHfullcite] = ACTIONS(5193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), + [anon_sym_BSLASHcitealt] = ACTIONS(5193), + [anon_sym_BSLASHcitealp] = ACTIONS(5193), + [anon_sym_BSLASHcitetext] = ACTIONS(5193), + [anon_sym_BSLASHparencite] = ACTIONS(5193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHParencite] = ACTIONS(5193), + [anon_sym_BSLASHfootcite] = ACTIONS(5193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), + [anon_sym_BSLASHtextcite] = ACTIONS(5193), + [anon_sym_BSLASHTextcite] = ACTIONS(5193), + [anon_sym_BSLASHsmartcite] = ACTIONS(5193), + [anon_sym_BSLASHSmartcite] = ACTIONS(5193), + [anon_sym_BSLASHsupercite] = ACTIONS(5193), + [anon_sym_BSLASHautocite] = ACTIONS(5193), + [anon_sym_BSLASHAutocite] = ACTIONS(5193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHvolcite] = ACTIONS(5193), + [anon_sym_BSLASHVolcite] = ACTIONS(5193), + [anon_sym_BSLASHpvolcite] = ACTIONS(5193), + [anon_sym_BSLASHPvolcite] = ACTIONS(5193), + [anon_sym_BSLASHfvolcite] = ACTIONS(5193), + [anon_sym_BSLASHftvolcite] = ACTIONS(5193), + [anon_sym_BSLASHsvolcite] = ACTIONS(5193), + [anon_sym_BSLASHSvolcite] = ACTIONS(5193), + [anon_sym_BSLASHtvolcite] = ACTIONS(5193), + [anon_sym_BSLASHTvolcite] = ACTIONS(5193), + [anon_sym_BSLASHavolcite] = ACTIONS(5193), + [anon_sym_BSLASHAvolcite] = ACTIONS(5193), + [anon_sym_BSLASHnotecite] = ACTIONS(5193), + [anon_sym_BSLASHNotecite] = ACTIONS(5193), + [anon_sym_BSLASHpnotecite] = ACTIONS(5193), + [anon_sym_BSLASHPnotecite] = ACTIONS(5193), + [anon_sym_BSLASHfnotecite] = ACTIONS(5193), + [anon_sym_BSLASHlabel] = ACTIONS(5193), + [anon_sym_BSLASHref] = ACTIONS(5193), + [anon_sym_BSLASHeqref] = ACTIONS(5193), + [anon_sym_BSLASHvref] = ACTIONS(5193), + [anon_sym_BSLASHVref] = ACTIONS(5193), + [anon_sym_BSLASHautoref] = ACTIONS(5193), + [anon_sym_BSLASHpageref] = ACTIONS(5193), + [anon_sym_BSLASHcref] = ACTIONS(5193), + [anon_sym_BSLASHCref] = ACTIONS(5193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnameCref] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHlabelcref] = ACTIONS(5193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCrefrange] = ACTIONS(5193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnewlabel] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), + [anon_sym_BSLASHdef] = ACTIONS(5193), + [anon_sym_BSLASHlet] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), + [anon_sym_BSLASHgls] = ACTIONS(5193), + [anon_sym_BSLASHGls] = ACTIONS(5193), + [anon_sym_BSLASHGLS] = ACTIONS(5193), + [anon_sym_BSLASHglspl] = ACTIONS(5193), + [anon_sym_BSLASHGlspl] = ACTIONS(5193), + [anon_sym_BSLASHGLSpl] = ACTIONS(5193), + [anon_sym_BSLASHglsdisp] = ACTIONS(5193), + [anon_sym_BSLASHglslink] = ACTIONS(5193), + [anon_sym_BSLASHglstext] = ACTIONS(5193), + [anon_sym_BSLASHGlstext] = ACTIONS(5193), + [anon_sym_BSLASHGLStext] = ACTIONS(5193), + [anon_sym_BSLASHglsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), + [anon_sym_BSLASHglsplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSplural] = ACTIONS(5193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHglsname] = ACTIONS(5193), + [anon_sym_BSLASHGlsname] = ACTIONS(5193), + [anon_sym_BSLASHGLSname] = ACTIONS(5193), + [anon_sym_BSLASHglssymbol] = ACTIONS(5193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), + [anon_sym_BSLASHglsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), + [anon_sym_BSLASHglsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), + [anon_sym_BSLASHglsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), + [anon_sym_BSLASHglsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), + [anon_sym_BSLASHglsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), + [anon_sym_BSLASHnewacronym] = ACTIONS(5193), + [anon_sym_BSLASHacrshort] = ACTIONS(5193), + [anon_sym_BSLASHAcrshort] = ACTIONS(5193), + [anon_sym_BSLASHACRshort] = ACTIONS(5193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), + [anon_sym_BSLASHacrlong] = ACTIONS(5193), + [anon_sym_BSLASHAcrlong] = ACTIONS(5193), + [anon_sym_BSLASHACRlong] = ACTIONS(5193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), + [anon_sym_BSLASHacrfull] = ACTIONS(5193), + [anon_sym_BSLASHAcrfull] = ACTIONS(5193), + [anon_sym_BSLASHACRfull] = ACTIONS(5193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), + [anon_sym_BSLASHacs] = ACTIONS(5193), + [anon_sym_BSLASHAcs] = ACTIONS(5193), + [anon_sym_BSLASHacsp] = ACTIONS(5193), + [anon_sym_BSLASHAcsp] = ACTIONS(5193), + [anon_sym_BSLASHacl] = ACTIONS(5193), + [anon_sym_BSLASHAcl] = ACTIONS(5193), + [anon_sym_BSLASHaclp] = ACTIONS(5193), + [anon_sym_BSLASHAclp] = ACTIONS(5193), + [anon_sym_BSLASHacf] = ACTIONS(5193), + [anon_sym_BSLASHAcf] = ACTIONS(5193), + [anon_sym_BSLASHacfp] = ACTIONS(5193), + [anon_sym_BSLASHAcfp] = ACTIONS(5193), + [anon_sym_BSLASHac] = ACTIONS(5193), + [anon_sym_BSLASHAc] = ACTIONS(5193), + [anon_sym_BSLASHacp] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), + [anon_sym_BSLASHcolor] = ACTIONS(5193), + [anon_sym_BSLASHcolorbox] = ACTIONS(5193), + [anon_sym_BSLASHtextcolor] = ACTIONS(5193), + [anon_sym_BSLASHpagecolor] = ACTIONS(5193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [anon_sym_BSLASHtext] = ACTIONS(5193), + [anon_sym_BSLASHintertext] = ACTIONS(5193), + [anon_sym_shortintertext] = ACTIONS(5193), }, - [1476] = { - [sym_command_name] = ACTIONS(5085), + [1424] = { + [sym_command_name] = ACTIONS(5197), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_RPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_RBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5083), - [anon_sym_DOLLAR] = ACTIONS(5085), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5083), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5083), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), - }, - [1477] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_LPAREN] = ACTIONS(5141), - [anon_sym_RPAREN] = ACTIONS(5141), - [anon_sym_LBRACK] = ACTIONS(5141), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_LBRACE] = ACTIONS(5141), - [anon_sym_RBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5141), - [anon_sym_DOLLAR] = ACTIONS(5143), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5141), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5141), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), - }, - [1478] = { - [sym_command_name] = ACTIONS(5353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_LPAREN] = ACTIONS(5351), - [anon_sym_RPAREN] = ACTIONS(5351), - [anon_sym_LBRACK] = ACTIONS(5351), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_LBRACE] = ACTIONS(5351), - [anon_sym_RBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5351), - [anon_sym_DOLLAR] = ACTIONS(5353), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5351), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5351), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [anon_sym_BSLASHiffalse] = ACTIONS(5197), + [anon_sym_LPAREN] = ACTIONS(5195), + [anon_sym_RPAREN] = ACTIONS(5195), + [anon_sym_LBRACK] = ACTIONS(5195), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_LBRACE] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(5195), + [sym_word] = ACTIONS(5197), + [sym_placeholder] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_CARET] = ACTIONS(5197), + [anon_sym__] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_COLON] = ACTIONS(5197), + [anon_sym_SQUOTE] = ACTIONS(5197), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5195), + [anon_sym_DOLLAR] = ACTIONS(5197), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5195), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5195), + [anon_sym_BSLASHusepackage] = ACTIONS(5197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), + [anon_sym_BSLASHinclude] = ACTIONS(5197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), + [anon_sym_BSLASHinput] = ACTIONS(5197), + [anon_sym_BSLASHsubfile] = ACTIONS(5197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), + [anon_sym_BSLASHbibliography] = ACTIONS(5197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), + [anon_sym_BSLASHincludesvg] = ACTIONS(5197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), + [anon_sym_BSLASHimport] = ACTIONS(5197), + [anon_sym_BSLASHsubimport] = ACTIONS(5197), + [anon_sym_BSLASHinputfrom] = ACTIONS(5197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), + [anon_sym_BSLASHincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHcaption] = ACTIONS(5197), + [anon_sym_BSLASHcite] = ACTIONS(5197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCite] = ACTIONS(5197), + [anon_sym_BSLASHnocite] = ACTIONS(5197), + [anon_sym_BSLASHcitet] = ACTIONS(5197), + [anon_sym_BSLASHcitep] = ACTIONS(5197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteauthor] = ACTIONS(5197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitetitle] = ACTIONS(5197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteyear] = ACTIONS(5197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitedate] = ACTIONS(5197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteurl] = ACTIONS(5197), + [anon_sym_BSLASHfullcite] = ACTIONS(5197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), + [anon_sym_BSLASHcitealt] = ACTIONS(5197), + [anon_sym_BSLASHcitealp] = ACTIONS(5197), + [anon_sym_BSLASHcitetext] = ACTIONS(5197), + [anon_sym_BSLASHparencite] = ACTIONS(5197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHParencite] = ACTIONS(5197), + [anon_sym_BSLASHfootcite] = ACTIONS(5197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), + [anon_sym_BSLASHtextcite] = ACTIONS(5197), + [anon_sym_BSLASHTextcite] = ACTIONS(5197), + [anon_sym_BSLASHsmartcite] = ACTIONS(5197), + [anon_sym_BSLASHSmartcite] = ACTIONS(5197), + [anon_sym_BSLASHsupercite] = ACTIONS(5197), + [anon_sym_BSLASHautocite] = ACTIONS(5197), + [anon_sym_BSLASHAutocite] = ACTIONS(5197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHvolcite] = ACTIONS(5197), + [anon_sym_BSLASHVolcite] = ACTIONS(5197), + [anon_sym_BSLASHpvolcite] = ACTIONS(5197), + [anon_sym_BSLASHPvolcite] = ACTIONS(5197), + [anon_sym_BSLASHfvolcite] = ACTIONS(5197), + [anon_sym_BSLASHftvolcite] = ACTIONS(5197), + [anon_sym_BSLASHsvolcite] = ACTIONS(5197), + [anon_sym_BSLASHSvolcite] = ACTIONS(5197), + [anon_sym_BSLASHtvolcite] = ACTIONS(5197), + [anon_sym_BSLASHTvolcite] = ACTIONS(5197), + [anon_sym_BSLASHavolcite] = ACTIONS(5197), + [anon_sym_BSLASHAvolcite] = ACTIONS(5197), + [anon_sym_BSLASHnotecite] = ACTIONS(5197), + [anon_sym_BSLASHNotecite] = ACTIONS(5197), + [anon_sym_BSLASHpnotecite] = ACTIONS(5197), + [anon_sym_BSLASHPnotecite] = ACTIONS(5197), + [anon_sym_BSLASHfnotecite] = ACTIONS(5197), + [anon_sym_BSLASHlabel] = ACTIONS(5197), + [anon_sym_BSLASHref] = ACTIONS(5197), + [anon_sym_BSLASHeqref] = ACTIONS(5197), + [anon_sym_BSLASHvref] = ACTIONS(5197), + [anon_sym_BSLASHVref] = ACTIONS(5197), + [anon_sym_BSLASHautoref] = ACTIONS(5197), + [anon_sym_BSLASHpageref] = ACTIONS(5197), + [anon_sym_BSLASHcref] = ACTIONS(5197), + [anon_sym_BSLASHCref] = ACTIONS(5197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnameCref] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHlabelcref] = ACTIONS(5197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCrefrange] = ACTIONS(5197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnewlabel] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), + [anon_sym_BSLASHdef] = ACTIONS(5197), + [anon_sym_BSLASHlet] = ACTIONS(5197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5197), + [anon_sym_BSLASHGls] = ACTIONS(5197), + [anon_sym_BSLASHGLS] = ACTIONS(5197), + [anon_sym_BSLASHglspl] = ACTIONS(5197), + [anon_sym_BSLASHGlspl] = ACTIONS(5197), + [anon_sym_BSLASHGLSpl] = ACTIONS(5197), + [anon_sym_BSLASHglsdisp] = ACTIONS(5197), + [anon_sym_BSLASHglslink] = ACTIONS(5197), + [anon_sym_BSLASHglstext] = ACTIONS(5197), + [anon_sym_BSLASHGlstext] = ACTIONS(5197), + [anon_sym_BSLASHGLStext] = ACTIONS(5197), + [anon_sym_BSLASHglsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), + [anon_sym_BSLASHglsplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSplural] = ACTIONS(5197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHglsname] = ACTIONS(5197), + [anon_sym_BSLASHGlsname] = ACTIONS(5197), + [anon_sym_BSLASHGLSname] = ACTIONS(5197), + [anon_sym_BSLASHglssymbol] = ACTIONS(5197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), + [anon_sym_BSLASHglsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), + [anon_sym_BSLASHglsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), + [anon_sym_BSLASHglsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), + [anon_sym_BSLASHglsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), + [anon_sym_BSLASHglsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), + [anon_sym_BSLASHnewacronym] = ACTIONS(5197), + [anon_sym_BSLASHacrshort] = ACTIONS(5197), + [anon_sym_BSLASHAcrshort] = ACTIONS(5197), + [anon_sym_BSLASHACRshort] = ACTIONS(5197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), + [anon_sym_BSLASHacrlong] = ACTIONS(5197), + [anon_sym_BSLASHAcrlong] = ACTIONS(5197), + [anon_sym_BSLASHACRlong] = ACTIONS(5197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), + [anon_sym_BSLASHacrfull] = ACTIONS(5197), + [anon_sym_BSLASHAcrfull] = ACTIONS(5197), + [anon_sym_BSLASHACRfull] = ACTIONS(5197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), + [anon_sym_BSLASHacs] = ACTIONS(5197), + [anon_sym_BSLASHAcs] = ACTIONS(5197), + [anon_sym_BSLASHacsp] = ACTIONS(5197), + [anon_sym_BSLASHAcsp] = ACTIONS(5197), + [anon_sym_BSLASHacl] = ACTIONS(5197), + [anon_sym_BSLASHAcl] = ACTIONS(5197), + [anon_sym_BSLASHaclp] = ACTIONS(5197), + [anon_sym_BSLASHAclp] = ACTIONS(5197), + [anon_sym_BSLASHacf] = ACTIONS(5197), + [anon_sym_BSLASHAcf] = ACTIONS(5197), + [anon_sym_BSLASHacfp] = ACTIONS(5197), + [anon_sym_BSLASHAcfp] = ACTIONS(5197), + [anon_sym_BSLASHac] = ACTIONS(5197), + [anon_sym_BSLASHAc] = ACTIONS(5197), + [anon_sym_BSLASHacp] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), + [anon_sym_BSLASHcolor] = ACTIONS(5197), + [anon_sym_BSLASHcolorbox] = ACTIONS(5197), + [anon_sym_BSLASHtextcolor] = ACTIONS(5197), + [anon_sym_BSLASHpagecolor] = ACTIONS(5197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + [anon_sym_BSLASHtext] = ACTIONS(5197), + [anon_sym_BSLASHintertext] = ACTIONS(5197), + [anon_sym_shortintertext] = ACTIONS(5197), }, - [1479] = { - [sym_command_name] = ACTIONS(5185), + [1425] = { + [sym_command_name] = ACTIONS(5201), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_RPAREN] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_LBRACE] = ACTIONS(5183), - [anon_sym_RBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACK] = ACTIONS(5183), - [anon_sym_DOLLAR] = ACTIONS(5185), - [anon_sym_BSLASH_LPAREN] = ACTIONS(5183), - [anon_sym_BSLASH_LBRACE] = ACTIONS(5183), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - }, - [1480] = { - [sym_command_name] = ACTIONS(4949), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4949), - [anon_sym_LPAREN] = ACTIONS(4947), - [anon_sym_RPAREN] = ACTIONS(4947), - [anon_sym_LBRACK] = ACTIONS(4947), - [anon_sym_RBRACK] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_LBRACE] = ACTIONS(4947), - [anon_sym_RBRACE] = ACTIONS(4947), - [sym_word] = ACTIONS(4949), - [sym_placeholder] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4949), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym__] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4949), - [anon_sym_BANG] = ACTIONS(4949), - [anon_sym_PIPE] = ACTIONS(4949), - [anon_sym_COLON] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4949), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4947), - [anon_sym_DOLLAR] = ACTIONS(4949), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4947), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4947), - [anon_sym_BSLASHusepackage] = ACTIONS(4949), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4949), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4949), - [anon_sym_BSLASHinclude] = ACTIONS(4949), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4949), - [anon_sym_BSLASHinput] = ACTIONS(4949), - [anon_sym_BSLASHsubfile] = ACTIONS(4949), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4949), - [anon_sym_BSLASHbibliography] = ACTIONS(4949), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4949), - [anon_sym_BSLASHincludesvg] = ACTIONS(4949), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4949), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4949), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4949), - [anon_sym_BSLASHimport] = ACTIONS(4949), - [anon_sym_BSLASHsubimport] = ACTIONS(4949), - [anon_sym_BSLASHinputfrom] = ACTIONS(4949), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4949), - [anon_sym_BSLASHincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHcaption] = ACTIONS(4949), - [anon_sym_BSLASHcite] = ACTIONS(4949), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCite] = ACTIONS(4949), - [anon_sym_BSLASHnocite] = ACTIONS(4949), - [anon_sym_BSLASHcitet] = ACTIONS(4949), - [anon_sym_BSLASHcitep] = ACTIONS(4949), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteyear] = ACTIONS(4949), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitedate] = ACTIONS(4949), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteurl] = ACTIONS(4949), - [anon_sym_BSLASHfullcite] = ACTIONS(4949), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4949), - [anon_sym_BSLASHcitealt] = ACTIONS(4949), - [anon_sym_BSLASHcitealp] = ACTIONS(4949), - [anon_sym_BSLASHcitetext] = ACTIONS(4949), - [anon_sym_BSLASHparencite] = ACTIONS(4949), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHParencite] = ACTIONS(4949), - [anon_sym_BSLASHfootcite] = ACTIONS(4949), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4949), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4949), - [anon_sym_BSLASHtextcite] = ACTIONS(4949), - [anon_sym_BSLASHTextcite] = ACTIONS(4949), - [anon_sym_BSLASHsmartcite] = ACTIONS(4949), - [anon_sym_BSLASHSmartcite] = ACTIONS(4949), - [anon_sym_BSLASHsupercite] = ACTIONS(4949), - [anon_sym_BSLASHautocite] = ACTIONS(4949), - [anon_sym_BSLASHAutocite] = ACTIONS(4949), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHvolcite] = ACTIONS(4949), - [anon_sym_BSLASHVolcite] = ACTIONS(4949), - [anon_sym_BSLASHpvolcite] = ACTIONS(4949), - [anon_sym_BSLASHPvolcite] = ACTIONS(4949), - [anon_sym_BSLASHfvolcite] = ACTIONS(4949), - [anon_sym_BSLASHftvolcite] = ACTIONS(4949), - [anon_sym_BSLASHsvolcite] = ACTIONS(4949), - [anon_sym_BSLASHSvolcite] = ACTIONS(4949), - [anon_sym_BSLASHtvolcite] = ACTIONS(4949), - [anon_sym_BSLASHTvolcite] = ACTIONS(4949), - [anon_sym_BSLASHavolcite] = ACTIONS(4949), - [anon_sym_BSLASHAvolcite] = ACTIONS(4949), - [anon_sym_BSLASHnotecite] = ACTIONS(4949), - [anon_sym_BSLASHNotecite] = ACTIONS(4949), - [anon_sym_BSLASHpnotecite] = ACTIONS(4949), - [anon_sym_BSLASHPnotecite] = ACTIONS(4949), - [anon_sym_BSLASHfnotecite] = ACTIONS(4949), - [anon_sym_BSLASHlabel] = ACTIONS(4949), - [anon_sym_BSLASHref] = ACTIONS(4949), - [anon_sym_BSLASHeqref] = ACTIONS(4949), - [anon_sym_BSLASHvref] = ACTIONS(4949), - [anon_sym_BSLASHVref] = ACTIONS(4949), - [anon_sym_BSLASHautoref] = ACTIONS(4949), - [anon_sym_BSLASHpageref] = ACTIONS(4949), - [anon_sym_BSLASHcref] = ACTIONS(4949), - [anon_sym_BSLASHCref] = ACTIONS(4949), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnameCref] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHlabelcref] = ACTIONS(4949), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnewlabel] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4947), - [anon_sym_BSLASHdef] = ACTIONS(4949), - [anon_sym_BSLASHlet] = ACTIONS(4949), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4949), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4949), - [anon_sym_BSLASHgls] = ACTIONS(4949), - [anon_sym_BSLASHGls] = ACTIONS(4949), - [anon_sym_BSLASHGLS] = ACTIONS(4949), - [anon_sym_BSLASHglspl] = ACTIONS(4949), - [anon_sym_BSLASHGlspl] = ACTIONS(4949), - [anon_sym_BSLASHGLSpl] = ACTIONS(4949), - [anon_sym_BSLASHglsdisp] = ACTIONS(4949), - [anon_sym_BSLASHglslink] = ACTIONS(4949), - [anon_sym_BSLASHglstext] = ACTIONS(4949), - [anon_sym_BSLASHGlstext] = ACTIONS(4949), - [anon_sym_BSLASHGLStext] = ACTIONS(4949), - [anon_sym_BSLASHglsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4949), - [anon_sym_BSLASHglsplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSplural] = ACTIONS(4949), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHglsname] = ACTIONS(4949), - [anon_sym_BSLASHGlsname] = ACTIONS(4949), - [anon_sym_BSLASHGLSname] = ACTIONS(4949), - [anon_sym_BSLASHglssymbol] = ACTIONS(4949), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4949), - [anon_sym_BSLASHglsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4949), - [anon_sym_BSLASHglsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4949), - [anon_sym_BSLASHglsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4949), - [anon_sym_BSLASHglsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4949), - [anon_sym_BSLASHglsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4949), - [anon_sym_BSLASHnewacronym] = ACTIONS(4949), - [anon_sym_BSLASHacrshort] = ACTIONS(4949), - [anon_sym_BSLASHAcrshort] = ACTIONS(4949), - [anon_sym_BSLASHACRshort] = ACTIONS(4949), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4949), - [anon_sym_BSLASHacrlong] = ACTIONS(4949), - [anon_sym_BSLASHAcrlong] = ACTIONS(4949), - [anon_sym_BSLASHACRlong] = ACTIONS(4949), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4949), - [anon_sym_BSLASHacrfull] = ACTIONS(4949), - [anon_sym_BSLASHAcrfull] = ACTIONS(4949), - [anon_sym_BSLASHACRfull] = ACTIONS(4949), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4949), - [anon_sym_BSLASHacs] = ACTIONS(4949), - [anon_sym_BSLASHAcs] = ACTIONS(4949), - [anon_sym_BSLASHacsp] = ACTIONS(4949), - [anon_sym_BSLASHAcsp] = ACTIONS(4949), - [anon_sym_BSLASHacl] = ACTIONS(4949), - [anon_sym_BSLASHAcl] = ACTIONS(4949), - [anon_sym_BSLASHaclp] = ACTIONS(4949), - [anon_sym_BSLASHAclp] = ACTIONS(4949), - [anon_sym_BSLASHacf] = ACTIONS(4949), - [anon_sym_BSLASHAcf] = ACTIONS(4949), - [anon_sym_BSLASHacfp] = ACTIONS(4949), - [anon_sym_BSLASHAcfp] = ACTIONS(4949), - [anon_sym_BSLASHac] = ACTIONS(4949), - [anon_sym_BSLASHAc] = ACTIONS(4949), - [anon_sym_BSLASHacp] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4949), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4949), - [anon_sym_BSLASHcolor] = ACTIONS(4949), - [anon_sym_BSLASHcolorbox] = ACTIONS(4949), - [anon_sym_BSLASHtextcolor] = ACTIONS(4949), - [anon_sym_BSLASHpagecolor] = ACTIONS(4949), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4949), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4949), - }, - [1481] = { - [sym_command_name] = ACTIONS(4953), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4953), - [anon_sym_LPAREN] = ACTIONS(4951), - [anon_sym_RPAREN] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_RBRACK] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_RBRACE] = ACTIONS(4951), - [sym_word] = ACTIONS(4953), - [sym_placeholder] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym__] = ACTIONS(4953), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4953), - [anon_sym_COLON] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4953), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4953), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4951), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4951), - [anon_sym_BSLASHusepackage] = ACTIONS(4953), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4953), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4953), - [anon_sym_BSLASHinclude] = ACTIONS(4953), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4953), - [anon_sym_BSLASHinput] = ACTIONS(4953), - [anon_sym_BSLASHsubfile] = ACTIONS(4953), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4953), - [anon_sym_BSLASHbibliography] = ACTIONS(4953), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4953), - [anon_sym_BSLASHincludesvg] = ACTIONS(4953), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4953), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4953), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4953), - [anon_sym_BSLASHimport] = ACTIONS(4953), - [anon_sym_BSLASHsubimport] = ACTIONS(4953), - [anon_sym_BSLASHinputfrom] = ACTIONS(4953), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4953), - [anon_sym_BSLASHincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHcaption] = ACTIONS(4953), - [anon_sym_BSLASHcite] = ACTIONS(4953), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCite] = ACTIONS(4953), - [anon_sym_BSLASHnocite] = ACTIONS(4953), - [anon_sym_BSLASHcitet] = ACTIONS(4953), - [anon_sym_BSLASHcitep] = ACTIONS(4953), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteyear] = ACTIONS(4953), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitedate] = ACTIONS(4953), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteurl] = ACTIONS(4953), - [anon_sym_BSLASHfullcite] = ACTIONS(4953), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4953), - [anon_sym_BSLASHcitealt] = ACTIONS(4953), - [anon_sym_BSLASHcitealp] = ACTIONS(4953), - [anon_sym_BSLASHcitetext] = ACTIONS(4953), - [anon_sym_BSLASHparencite] = ACTIONS(4953), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHParencite] = ACTIONS(4953), - [anon_sym_BSLASHfootcite] = ACTIONS(4953), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4953), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4953), - [anon_sym_BSLASHtextcite] = ACTIONS(4953), - [anon_sym_BSLASHTextcite] = ACTIONS(4953), - [anon_sym_BSLASHsmartcite] = ACTIONS(4953), - [anon_sym_BSLASHSmartcite] = ACTIONS(4953), - [anon_sym_BSLASHsupercite] = ACTIONS(4953), - [anon_sym_BSLASHautocite] = ACTIONS(4953), - [anon_sym_BSLASHAutocite] = ACTIONS(4953), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHvolcite] = ACTIONS(4953), - [anon_sym_BSLASHVolcite] = ACTIONS(4953), - [anon_sym_BSLASHpvolcite] = ACTIONS(4953), - [anon_sym_BSLASHPvolcite] = ACTIONS(4953), - [anon_sym_BSLASHfvolcite] = ACTIONS(4953), - [anon_sym_BSLASHftvolcite] = ACTIONS(4953), - [anon_sym_BSLASHsvolcite] = ACTIONS(4953), - [anon_sym_BSLASHSvolcite] = ACTIONS(4953), - [anon_sym_BSLASHtvolcite] = ACTIONS(4953), - [anon_sym_BSLASHTvolcite] = ACTIONS(4953), - [anon_sym_BSLASHavolcite] = ACTIONS(4953), - [anon_sym_BSLASHAvolcite] = ACTIONS(4953), - [anon_sym_BSLASHnotecite] = ACTIONS(4953), - [anon_sym_BSLASHNotecite] = ACTIONS(4953), - [anon_sym_BSLASHpnotecite] = ACTIONS(4953), - [anon_sym_BSLASHPnotecite] = ACTIONS(4953), - [anon_sym_BSLASHfnotecite] = ACTIONS(4953), - [anon_sym_BSLASHlabel] = ACTIONS(4953), - [anon_sym_BSLASHref] = ACTIONS(4953), - [anon_sym_BSLASHeqref] = ACTIONS(4953), - [anon_sym_BSLASHvref] = ACTIONS(4953), - [anon_sym_BSLASHVref] = ACTIONS(4953), - [anon_sym_BSLASHautoref] = ACTIONS(4953), - [anon_sym_BSLASHpageref] = ACTIONS(4953), - [anon_sym_BSLASHcref] = ACTIONS(4953), - [anon_sym_BSLASHCref] = ACTIONS(4953), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnameCref] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHlabelcref] = ACTIONS(4953), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnewlabel] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4951), - [anon_sym_BSLASHdef] = ACTIONS(4953), - [anon_sym_BSLASHlet] = ACTIONS(4953), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4953), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4953), - [anon_sym_BSLASHgls] = ACTIONS(4953), - [anon_sym_BSLASHGls] = ACTIONS(4953), - [anon_sym_BSLASHGLS] = ACTIONS(4953), - [anon_sym_BSLASHglspl] = ACTIONS(4953), - [anon_sym_BSLASHGlspl] = ACTIONS(4953), - [anon_sym_BSLASHGLSpl] = ACTIONS(4953), - [anon_sym_BSLASHglsdisp] = ACTIONS(4953), - [anon_sym_BSLASHglslink] = ACTIONS(4953), - [anon_sym_BSLASHglstext] = ACTIONS(4953), - [anon_sym_BSLASHGlstext] = ACTIONS(4953), - [anon_sym_BSLASHGLStext] = ACTIONS(4953), - [anon_sym_BSLASHglsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4953), - [anon_sym_BSLASHglsplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSplural] = ACTIONS(4953), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHglsname] = ACTIONS(4953), - [anon_sym_BSLASHGlsname] = ACTIONS(4953), - [anon_sym_BSLASHGLSname] = ACTIONS(4953), - [anon_sym_BSLASHglssymbol] = ACTIONS(4953), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4953), - [anon_sym_BSLASHglsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4953), - [anon_sym_BSLASHglsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4953), - [anon_sym_BSLASHglsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4953), - [anon_sym_BSLASHglsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4953), - [anon_sym_BSLASHglsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4953), - [anon_sym_BSLASHnewacronym] = ACTIONS(4953), - [anon_sym_BSLASHacrshort] = ACTIONS(4953), - [anon_sym_BSLASHAcrshort] = ACTIONS(4953), - [anon_sym_BSLASHACRshort] = ACTIONS(4953), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4953), - [anon_sym_BSLASHacrlong] = ACTIONS(4953), - [anon_sym_BSLASHAcrlong] = ACTIONS(4953), - [anon_sym_BSLASHACRlong] = ACTIONS(4953), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4953), - [anon_sym_BSLASHacrfull] = ACTIONS(4953), - [anon_sym_BSLASHAcrfull] = ACTIONS(4953), - [anon_sym_BSLASHACRfull] = ACTIONS(4953), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4953), - [anon_sym_BSLASHacs] = ACTIONS(4953), - [anon_sym_BSLASHAcs] = ACTIONS(4953), - [anon_sym_BSLASHacsp] = ACTIONS(4953), - [anon_sym_BSLASHAcsp] = ACTIONS(4953), - [anon_sym_BSLASHacl] = ACTIONS(4953), - [anon_sym_BSLASHAcl] = ACTIONS(4953), - [anon_sym_BSLASHaclp] = ACTIONS(4953), - [anon_sym_BSLASHAclp] = ACTIONS(4953), - [anon_sym_BSLASHacf] = ACTIONS(4953), - [anon_sym_BSLASHAcf] = ACTIONS(4953), - [anon_sym_BSLASHacfp] = ACTIONS(4953), - [anon_sym_BSLASHAcfp] = ACTIONS(4953), - [anon_sym_BSLASHac] = ACTIONS(4953), - [anon_sym_BSLASHAc] = ACTIONS(4953), - [anon_sym_BSLASHacp] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4953), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4953), - [anon_sym_BSLASHcolor] = ACTIONS(4953), - [anon_sym_BSLASHcolorbox] = ACTIONS(4953), - [anon_sym_BSLASHtextcolor] = ACTIONS(4953), - [anon_sym_BSLASHpagecolor] = ACTIONS(4953), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4953), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4953), + [anon_sym_BSLASHiffalse] = ACTIONS(5201), + [anon_sym_LPAREN] = ACTIONS(5199), + [anon_sym_RPAREN] = ACTIONS(5199), + [anon_sym_LBRACK] = ACTIONS(5199), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_LBRACE] = ACTIONS(5199), + [anon_sym_RBRACE] = ACTIONS(5199), + [sym_word] = ACTIONS(5201), + [sym_placeholder] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5201), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_CARET] = ACTIONS(5201), + [anon_sym__] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_SQUOTE] = ACTIONS(5201), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5199), + [anon_sym_DOLLAR] = ACTIONS(5201), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5199), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5199), + [anon_sym_BSLASHusepackage] = ACTIONS(5201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), + [anon_sym_BSLASHinclude] = ACTIONS(5201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), + [anon_sym_BSLASHinput] = ACTIONS(5201), + [anon_sym_BSLASHsubfile] = ACTIONS(5201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), + [anon_sym_BSLASHbibliography] = ACTIONS(5201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), + [anon_sym_BSLASHincludesvg] = ACTIONS(5201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), + [anon_sym_BSLASHimport] = ACTIONS(5201), + [anon_sym_BSLASHsubimport] = ACTIONS(5201), + [anon_sym_BSLASHinputfrom] = ACTIONS(5201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), + [anon_sym_BSLASHincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHcaption] = ACTIONS(5201), + [anon_sym_BSLASHcite] = ACTIONS(5201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCite] = ACTIONS(5201), + [anon_sym_BSLASHnocite] = ACTIONS(5201), + [anon_sym_BSLASHcitet] = ACTIONS(5201), + [anon_sym_BSLASHcitep] = ACTIONS(5201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteauthor] = ACTIONS(5201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitetitle] = ACTIONS(5201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteyear] = ACTIONS(5201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitedate] = ACTIONS(5201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteurl] = ACTIONS(5201), + [anon_sym_BSLASHfullcite] = ACTIONS(5201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), + [anon_sym_BSLASHcitealt] = ACTIONS(5201), + [anon_sym_BSLASHcitealp] = ACTIONS(5201), + [anon_sym_BSLASHcitetext] = ACTIONS(5201), + [anon_sym_BSLASHparencite] = ACTIONS(5201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHParencite] = ACTIONS(5201), + [anon_sym_BSLASHfootcite] = ACTIONS(5201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), + [anon_sym_BSLASHtextcite] = ACTIONS(5201), + [anon_sym_BSLASHTextcite] = ACTIONS(5201), + [anon_sym_BSLASHsmartcite] = ACTIONS(5201), + [anon_sym_BSLASHSmartcite] = ACTIONS(5201), + [anon_sym_BSLASHsupercite] = ACTIONS(5201), + [anon_sym_BSLASHautocite] = ACTIONS(5201), + [anon_sym_BSLASHAutocite] = ACTIONS(5201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHvolcite] = ACTIONS(5201), + [anon_sym_BSLASHVolcite] = ACTIONS(5201), + [anon_sym_BSLASHpvolcite] = ACTIONS(5201), + [anon_sym_BSLASHPvolcite] = ACTIONS(5201), + [anon_sym_BSLASHfvolcite] = ACTIONS(5201), + [anon_sym_BSLASHftvolcite] = ACTIONS(5201), + [anon_sym_BSLASHsvolcite] = ACTIONS(5201), + [anon_sym_BSLASHSvolcite] = ACTIONS(5201), + [anon_sym_BSLASHtvolcite] = ACTIONS(5201), + [anon_sym_BSLASHTvolcite] = ACTIONS(5201), + [anon_sym_BSLASHavolcite] = ACTIONS(5201), + [anon_sym_BSLASHAvolcite] = ACTIONS(5201), + [anon_sym_BSLASHnotecite] = ACTIONS(5201), + [anon_sym_BSLASHNotecite] = ACTIONS(5201), + [anon_sym_BSLASHpnotecite] = ACTIONS(5201), + [anon_sym_BSLASHPnotecite] = ACTIONS(5201), + [anon_sym_BSLASHfnotecite] = ACTIONS(5201), + [anon_sym_BSLASHlabel] = ACTIONS(5201), + [anon_sym_BSLASHref] = ACTIONS(5201), + [anon_sym_BSLASHeqref] = ACTIONS(5201), + [anon_sym_BSLASHvref] = ACTIONS(5201), + [anon_sym_BSLASHVref] = ACTIONS(5201), + [anon_sym_BSLASHautoref] = ACTIONS(5201), + [anon_sym_BSLASHpageref] = ACTIONS(5201), + [anon_sym_BSLASHcref] = ACTIONS(5201), + [anon_sym_BSLASHCref] = ACTIONS(5201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnameCref] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHlabelcref] = ACTIONS(5201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCrefrange] = ACTIONS(5201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnewlabel] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), + [anon_sym_BSLASHdef] = ACTIONS(5201), + [anon_sym_BSLASHlet] = ACTIONS(5201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), + [anon_sym_BSLASHgls] = ACTIONS(5201), + [anon_sym_BSLASHGls] = ACTIONS(5201), + [anon_sym_BSLASHGLS] = ACTIONS(5201), + [anon_sym_BSLASHglspl] = ACTIONS(5201), + [anon_sym_BSLASHGlspl] = ACTIONS(5201), + [anon_sym_BSLASHGLSpl] = ACTIONS(5201), + [anon_sym_BSLASHglsdisp] = ACTIONS(5201), + [anon_sym_BSLASHglslink] = ACTIONS(5201), + [anon_sym_BSLASHglstext] = ACTIONS(5201), + [anon_sym_BSLASHGlstext] = ACTIONS(5201), + [anon_sym_BSLASHGLStext] = ACTIONS(5201), + [anon_sym_BSLASHglsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), + [anon_sym_BSLASHglsplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSplural] = ACTIONS(5201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHglsname] = ACTIONS(5201), + [anon_sym_BSLASHGlsname] = ACTIONS(5201), + [anon_sym_BSLASHGLSname] = ACTIONS(5201), + [anon_sym_BSLASHglssymbol] = ACTIONS(5201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), + [anon_sym_BSLASHglsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), + [anon_sym_BSLASHglsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), + [anon_sym_BSLASHglsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), + [anon_sym_BSLASHglsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), + [anon_sym_BSLASHglsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5201), + [anon_sym_BSLASHAcrshort] = ACTIONS(5201), + [anon_sym_BSLASHACRshort] = ACTIONS(5201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), + [anon_sym_BSLASHacrlong] = ACTIONS(5201), + [anon_sym_BSLASHAcrlong] = ACTIONS(5201), + [anon_sym_BSLASHACRlong] = ACTIONS(5201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), + [anon_sym_BSLASHacrfull] = ACTIONS(5201), + [anon_sym_BSLASHAcrfull] = ACTIONS(5201), + [anon_sym_BSLASHACRfull] = ACTIONS(5201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), + [anon_sym_BSLASHacs] = ACTIONS(5201), + [anon_sym_BSLASHAcs] = ACTIONS(5201), + [anon_sym_BSLASHacsp] = ACTIONS(5201), + [anon_sym_BSLASHAcsp] = ACTIONS(5201), + [anon_sym_BSLASHacl] = ACTIONS(5201), + [anon_sym_BSLASHAcl] = ACTIONS(5201), + [anon_sym_BSLASHaclp] = ACTIONS(5201), + [anon_sym_BSLASHAclp] = ACTIONS(5201), + [anon_sym_BSLASHacf] = ACTIONS(5201), + [anon_sym_BSLASHAcf] = ACTIONS(5201), + [anon_sym_BSLASHacfp] = ACTIONS(5201), + [anon_sym_BSLASHAcfp] = ACTIONS(5201), + [anon_sym_BSLASHac] = ACTIONS(5201), + [anon_sym_BSLASHAc] = ACTIONS(5201), + [anon_sym_BSLASHacp] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), + [anon_sym_BSLASHcolor] = ACTIONS(5201), + [anon_sym_BSLASHcolorbox] = ACTIONS(5201), + [anon_sym_BSLASHtextcolor] = ACTIONS(5201), + [anon_sym_BSLASHpagecolor] = ACTIONS(5201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), + [anon_sym_BSLASHtext] = ACTIONS(5201), + [anon_sym_BSLASHintertext] = ACTIONS(5201), + [anon_sym_shortintertext] = ACTIONS(5201), }, - [1482] = { - [sym_command_name] = ACTIONS(4959), + [1426] = { + [sym_command_name] = ACTIONS(5209), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_LPAREN] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(4957), - [anon_sym_LBRACK] = ACTIONS(4957), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_LBRACE] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), - [anon_sym_DOLLAR] = ACTIONS(4959), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHiffalse] = ACTIONS(5209), + [anon_sym_LPAREN] = ACTIONS(5207), + [anon_sym_RPAREN] = ACTIONS(5207), + [anon_sym_LBRACK] = ACTIONS(5207), + [anon_sym_RBRACK] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_LBRACE] = ACTIONS(5207), + [anon_sym_RBRACE] = ACTIONS(5207), + [sym_word] = ACTIONS(5209), + [sym_placeholder] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_CARET] = ACTIONS(5209), + [anon_sym__] = ACTIONS(5209), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_PIPE] = ACTIONS(5209), + [anon_sym_COLON] = ACTIONS(5209), + [anon_sym_SQUOTE] = ACTIONS(5209), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5207), + [anon_sym_DOLLAR] = ACTIONS(5209), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5207), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5207), + [anon_sym_BSLASHusepackage] = ACTIONS(5209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), + [anon_sym_BSLASHinclude] = ACTIONS(5209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), + [anon_sym_BSLASHinput] = ACTIONS(5209), + [anon_sym_BSLASHsubfile] = ACTIONS(5209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), + [anon_sym_BSLASHbibliography] = ACTIONS(5209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), + [anon_sym_BSLASHincludesvg] = ACTIONS(5209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), + [anon_sym_BSLASHimport] = ACTIONS(5209), + [anon_sym_BSLASHsubimport] = ACTIONS(5209), + [anon_sym_BSLASHinputfrom] = ACTIONS(5209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), + [anon_sym_BSLASHincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHcaption] = ACTIONS(5209), + [anon_sym_BSLASHcite] = ACTIONS(5209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCite] = ACTIONS(5209), + [anon_sym_BSLASHnocite] = ACTIONS(5209), + [anon_sym_BSLASHcitet] = ACTIONS(5209), + [anon_sym_BSLASHcitep] = ACTIONS(5209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteauthor] = ACTIONS(5209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitetitle] = ACTIONS(5209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteyear] = ACTIONS(5209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitedate] = ACTIONS(5209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteurl] = ACTIONS(5209), + [anon_sym_BSLASHfullcite] = ACTIONS(5209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), + [anon_sym_BSLASHcitealt] = ACTIONS(5209), + [anon_sym_BSLASHcitealp] = ACTIONS(5209), + [anon_sym_BSLASHcitetext] = ACTIONS(5209), + [anon_sym_BSLASHparencite] = ACTIONS(5209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHParencite] = ACTIONS(5209), + [anon_sym_BSLASHfootcite] = ACTIONS(5209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), + [anon_sym_BSLASHtextcite] = ACTIONS(5209), + [anon_sym_BSLASHTextcite] = ACTIONS(5209), + [anon_sym_BSLASHsmartcite] = ACTIONS(5209), + [anon_sym_BSLASHSmartcite] = ACTIONS(5209), + [anon_sym_BSLASHsupercite] = ACTIONS(5209), + [anon_sym_BSLASHautocite] = ACTIONS(5209), + [anon_sym_BSLASHAutocite] = ACTIONS(5209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHvolcite] = ACTIONS(5209), + [anon_sym_BSLASHVolcite] = ACTIONS(5209), + [anon_sym_BSLASHpvolcite] = ACTIONS(5209), + [anon_sym_BSLASHPvolcite] = ACTIONS(5209), + [anon_sym_BSLASHfvolcite] = ACTIONS(5209), + [anon_sym_BSLASHftvolcite] = ACTIONS(5209), + [anon_sym_BSLASHsvolcite] = ACTIONS(5209), + [anon_sym_BSLASHSvolcite] = ACTIONS(5209), + [anon_sym_BSLASHtvolcite] = ACTIONS(5209), + [anon_sym_BSLASHTvolcite] = ACTIONS(5209), + [anon_sym_BSLASHavolcite] = ACTIONS(5209), + [anon_sym_BSLASHAvolcite] = ACTIONS(5209), + [anon_sym_BSLASHnotecite] = ACTIONS(5209), + [anon_sym_BSLASHNotecite] = ACTIONS(5209), + [anon_sym_BSLASHpnotecite] = ACTIONS(5209), + [anon_sym_BSLASHPnotecite] = ACTIONS(5209), + [anon_sym_BSLASHfnotecite] = ACTIONS(5209), + [anon_sym_BSLASHlabel] = ACTIONS(5209), + [anon_sym_BSLASHref] = ACTIONS(5209), + [anon_sym_BSLASHeqref] = ACTIONS(5209), + [anon_sym_BSLASHvref] = ACTIONS(5209), + [anon_sym_BSLASHVref] = ACTIONS(5209), + [anon_sym_BSLASHautoref] = ACTIONS(5209), + [anon_sym_BSLASHpageref] = ACTIONS(5209), + [anon_sym_BSLASHcref] = ACTIONS(5209), + [anon_sym_BSLASHCref] = ACTIONS(5209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnameCref] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHlabelcref] = ACTIONS(5209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCrefrange] = ACTIONS(5209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnewlabel] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdef] = ACTIONS(5209), + [anon_sym_BSLASHlet] = ACTIONS(5209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), + [anon_sym_BSLASHgls] = ACTIONS(5209), + [anon_sym_BSLASHGls] = ACTIONS(5209), + [anon_sym_BSLASHGLS] = ACTIONS(5209), + [anon_sym_BSLASHglspl] = ACTIONS(5209), + [anon_sym_BSLASHGlspl] = ACTIONS(5209), + [anon_sym_BSLASHGLSpl] = ACTIONS(5209), + [anon_sym_BSLASHglsdisp] = ACTIONS(5209), + [anon_sym_BSLASHglslink] = ACTIONS(5209), + [anon_sym_BSLASHglstext] = ACTIONS(5209), + [anon_sym_BSLASHGlstext] = ACTIONS(5209), + [anon_sym_BSLASHGLStext] = ACTIONS(5209), + [anon_sym_BSLASHglsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), + [anon_sym_BSLASHglsplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSplural] = ACTIONS(5209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHglsname] = ACTIONS(5209), + [anon_sym_BSLASHGlsname] = ACTIONS(5209), + [anon_sym_BSLASHGLSname] = ACTIONS(5209), + [anon_sym_BSLASHglssymbol] = ACTIONS(5209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), + [anon_sym_BSLASHglsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), + [anon_sym_BSLASHglsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), + [anon_sym_BSLASHglsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), + [anon_sym_BSLASHglsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), + [anon_sym_BSLASHglsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), + [anon_sym_BSLASHnewacronym] = ACTIONS(5209), + [anon_sym_BSLASHacrshort] = ACTIONS(5209), + [anon_sym_BSLASHAcrshort] = ACTIONS(5209), + [anon_sym_BSLASHACRshort] = ACTIONS(5209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), + [anon_sym_BSLASHacrlong] = ACTIONS(5209), + [anon_sym_BSLASHAcrlong] = ACTIONS(5209), + [anon_sym_BSLASHACRlong] = ACTIONS(5209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), + [anon_sym_BSLASHacrfull] = ACTIONS(5209), + [anon_sym_BSLASHAcrfull] = ACTIONS(5209), + [anon_sym_BSLASHACRfull] = ACTIONS(5209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), + [anon_sym_BSLASHacs] = ACTIONS(5209), + [anon_sym_BSLASHAcs] = ACTIONS(5209), + [anon_sym_BSLASHacsp] = ACTIONS(5209), + [anon_sym_BSLASHAcsp] = ACTIONS(5209), + [anon_sym_BSLASHacl] = ACTIONS(5209), + [anon_sym_BSLASHAcl] = ACTIONS(5209), + [anon_sym_BSLASHaclp] = ACTIONS(5209), + [anon_sym_BSLASHAclp] = ACTIONS(5209), + [anon_sym_BSLASHacf] = ACTIONS(5209), + [anon_sym_BSLASHAcf] = ACTIONS(5209), + [anon_sym_BSLASHacfp] = ACTIONS(5209), + [anon_sym_BSLASHAcfp] = ACTIONS(5209), + [anon_sym_BSLASHac] = ACTIONS(5209), + [anon_sym_BSLASHAc] = ACTIONS(5209), + [anon_sym_BSLASHacp] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), + [anon_sym_BSLASHcolor] = ACTIONS(5209), + [anon_sym_BSLASHcolorbox] = ACTIONS(5209), + [anon_sym_BSLASHtextcolor] = ACTIONS(5209), + [anon_sym_BSLASHpagecolor] = ACTIONS(5209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHtext] = ACTIONS(5209), + [anon_sym_BSLASHintertext] = ACTIONS(5209), + [anon_sym_shortintertext] = ACTIONS(5209), }, - [1483] = { - [sym_command_name] = ACTIONS(4967), + [1427] = { + [sym_command_name] = ACTIONS(5237), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5237), + [anon_sym_LPAREN] = ACTIONS(5235), + [anon_sym_RPAREN] = ACTIONS(5235), + [anon_sym_LBRACK] = ACTIONS(5235), + [anon_sym_RBRACK] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_LBRACE] = ACTIONS(5235), + [anon_sym_RBRACE] = ACTIONS(5235), + [sym_word] = ACTIONS(5237), + [sym_placeholder] = ACTIONS(5235), + [anon_sym_PLUS] = ACTIONS(5237), + [anon_sym_DASH] = ACTIONS(5237), + [anon_sym_STAR] = ACTIONS(5237), + [anon_sym_SLASH] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym__] = ACTIONS(5237), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_BANG] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_COLON] = ACTIONS(5237), + [anon_sym_SQUOTE] = ACTIONS(5237), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5235), + [anon_sym_DOLLAR] = ACTIONS(5237), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5235), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5235), + [anon_sym_BSLASHusepackage] = ACTIONS(5237), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), + [anon_sym_BSLASHinclude] = ACTIONS(5237), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), + [anon_sym_BSLASHinput] = ACTIONS(5237), + [anon_sym_BSLASHsubfile] = ACTIONS(5237), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), + [anon_sym_BSLASHbibliography] = ACTIONS(5237), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), + [anon_sym_BSLASHincludesvg] = ACTIONS(5237), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), + [anon_sym_BSLASHimport] = ACTIONS(5237), + [anon_sym_BSLASHsubimport] = ACTIONS(5237), + [anon_sym_BSLASHinputfrom] = ACTIONS(5237), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), + [anon_sym_BSLASHincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHcaption] = ACTIONS(5237), + [anon_sym_BSLASHcite] = ACTIONS(5237), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCite] = ACTIONS(5237), + [anon_sym_BSLASHnocite] = ACTIONS(5237), + [anon_sym_BSLASHcitet] = ACTIONS(5237), + [anon_sym_BSLASHcitep] = ACTIONS(5237), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteyear] = ACTIONS(5237), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitedate] = ACTIONS(5237), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteurl] = ACTIONS(5237), + [anon_sym_BSLASHfullcite] = ACTIONS(5237), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), + [anon_sym_BSLASHcitealt] = ACTIONS(5237), + [anon_sym_BSLASHcitealp] = ACTIONS(5237), + [anon_sym_BSLASHcitetext] = ACTIONS(5237), + [anon_sym_BSLASHparencite] = ACTIONS(5237), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHParencite] = ACTIONS(5237), + [anon_sym_BSLASHfootcite] = ACTIONS(5237), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), + [anon_sym_BSLASHtextcite] = ACTIONS(5237), + [anon_sym_BSLASHTextcite] = ACTIONS(5237), + [anon_sym_BSLASHsmartcite] = ACTIONS(5237), + [anon_sym_BSLASHSmartcite] = ACTIONS(5237), + [anon_sym_BSLASHsupercite] = ACTIONS(5237), + [anon_sym_BSLASHautocite] = ACTIONS(5237), + [anon_sym_BSLASHAutocite] = ACTIONS(5237), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHvolcite] = ACTIONS(5237), + [anon_sym_BSLASHVolcite] = ACTIONS(5237), + [anon_sym_BSLASHpvolcite] = ACTIONS(5237), + [anon_sym_BSLASHPvolcite] = ACTIONS(5237), + [anon_sym_BSLASHfvolcite] = ACTIONS(5237), + [anon_sym_BSLASHftvolcite] = ACTIONS(5237), + [anon_sym_BSLASHsvolcite] = ACTIONS(5237), + [anon_sym_BSLASHSvolcite] = ACTIONS(5237), + [anon_sym_BSLASHtvolcite] = ACTIONS(5237), + [anon_sym_BSLASHTvolcite] = ACTIONS(5237), + [anon_sym_BSLASHavolcite] = ACTIONS(5237), + [anon_sym_BSLASHAvolcite] = ACTIONS(5237), + [anon_sym_BSLASHnotecite] = ACTIONS(5237), + [anon_sym_BSLASHNotecite] = ACTIONS(5237), + [anon_sym_BSLASHpnotecite] = ACTIONS(5237), + [anon_sym_BSLASHPnotecite] = ACTIONS(5237), + [anon_sym_BSLASHfnotecite] = ACTIONS(5237), + [anon_sym_BSLASHlabel] = ACTIONS(5237), + [anon_sym_BSLASHref] = ACTIONS(5237), + [anon_sym_BSLASHeqref] = ACTIONS(5237), + [anon_sym_BSLASHvref] = ACTIONS(5237), + [anon_sym_BSLASHVref] = ACTIONS(5237), + [anon_sym_BSLASHautoref] = ACTIONS(5237), + [anon_sym_BSLASHpageref] = ACTIONS(5237), + [anon_sym_BSLASHcref] = ACTIONS(5237), + [anon_sym_BSLASHCref] = ACTIONS(5237), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnameCref] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHlabelcref] = ACTIONS(5237), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnewlabel] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), + [anon_sym_BSLASHdef] = ACTIONS(5237), + [anon_sym_BSLASHlet] = ACTIONS(5237), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), + [anon_sym_BSLASHgls] = ACTIONS(5237), + [anon_sym_BSLASHGls] = ACTIONS(5237), + [anon_sym_BSLASHGLS] = ACTIONS(5237), + [anon_sym_BSLASHglspl] = ACTIONS(5237), + [anon_sym_BSLASHGlspl] = ACTIONS(5237), + [anon_sym_BSLASHGLSpl] = ACTIONS(5237), + [anon_sym_BSLASHglsdisp] = ACTIONS(5237), + [anon_sym_BSLASHglslink] = ACTIONS(5237), + [anon_sym_BSLASHglstext] = ACTIONS(5237), + [anon_sym_BSLASHGlstext] = ACTIONS(5237), + [anon_sym_BSLASHGLStext] = ACTIONS(5237), + [anon_sym_BSLASHglsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), + [anon_sym_BSLASHglsplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSplural] = ACTIONS(5237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHglsname] = ACTIONS(5237), + [anon_sym_BSLASHGlsname] = ACTIONS(5237), + [anon_sym_BSLASHGLSname] = ACTIONS(5237), + [anon_sym_BSLASHglssymbol] = ACTIONS(5237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), + [anon_sym_BSLASHglsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), + [anon_sym_BSLASHglsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), + [anon_sym_BSLASHglsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), + [anon_sym_BSLASHglsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), + [anon_sym_BSLASHglsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), + [anon_sym_BSLASHnewacronym] = ACTIONS(5237), + [anon_sym_BSLASHacrshort] = ACTIONS(5237), + [anon_sym_BSLASHAcrshort] = ACTIONS(5237), + [anon_sym_BSLASHACRshort] = ACTIONS(5237), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), + [anon_sym_BSLASHacrlong] = ACTIONS(5237), + [anon_sym_BSLASHAcrlong] = ACTIONS(5237), + [anon_sym_BSLASHACRlong] = ACTIONS(5237), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), + [anon_sym_BSLASHacrfull] = ACTIONS(5237), + [anon_sym_BSLASHAcrfull] = ACTIONS(5237), + [anon_sym_BSLASHACRfull] = ACTIONS(5237), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), + [anon_sym_BSLASHacs] = ACTIONS(5237), + [anon_sym_BSLASHAcs] = ACTIONS(5237), + [anon_sym_BSLASHacsp] = ACTIONS(5237), + [anon_sym_BSLASHAcsp] = ACTIONS(5237), + [anon_sym_BSLASHacl] = ACTIONS(5237), + [anon_sym_BSLASHAcl] = ACTIONS(5237), + [anon_sym_BSLASHaclp] = ACTIONS(5237), + [anon_sym_BSLASHAclp] = ACTIONS(5237), + [anon_sym_BSLASHacf] = ACTIONS(5237), + [anon_sym_BSLASHAcf] = ACTIONS(5237), + [anon_sym_BSLASHacfp] = ACTIONS(5237), + [anon_sym_BSLASHAcfp] = ACTIONS(5237), + [anon_sym_BSLASHac] = ACTIONS(5237), + [anon_sym_BSLASHAc] = ACTIONS(5237), + [anon_sym_BSLASHacp] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), + [anon_sym_BSLASHcolor] = ACTIONS(5237), + [anon_sym_BSLASHcolorbox] = ACTIONS(5237), + [anon_sym_BSLASHtextcolor] = ACTIONS(5237), + [anon_sym_BSLASHpagecolor] = ACTIONS(5237), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), + [anon_sym_BSLASHtext] = ACTIONS(5237), + [anon_sym_BSLASHintertext] = ACTIONS(5237), + [anon_sym_shortintertext] = ACTIONS(5237), + }, + [1428] = { + [sym_command_name] = ACTIONS(5241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5241), + [anon_sym_LPAREN] = ACTIONS(5239), + [anon_sym_RPAREN] = ACTIONS(5239), + [anon_sym_LBRACK] = ACTIONS(5239), + [anon_sym_RBRACK] = ACTIONS(5239), + [anon_sym_COMMA] = ACTIONS(5239), + [anon_sym_LBRACE] = ACTIONS(5239), + [anon_sym_RBRACE] = ACTIONS(5239), + [sym_word] = ACTIONS(5241), + [sym_placeholder] = ACTIONS(5239), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5241), + [anon_sym_CARET] = ACTIONS(5241), + [anon_sym__] = ACTIONS(5241), + [anon_sym_LT] = ACTIONS(5241), + [anon_sym_GT] = ACTIONS(5241), + [anon_sym_BANG] = ACTIONS(5241), + [anon_sym_PIPE] = ACTIONS(5241), + [anon_sym_COLON] = ACTIONS(5241), + [anon_sym_SQUOTE] = ACTIONS(5241), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5239), + [anon_sym_DOLLAR] = ACTIONS(5241), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5239), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5239), + [anon_sym_BSLASHusepackage] = ACTIONS(5241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), + [anon_sym_BSLASHinclude] = ACTIONS(5241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), + [anon_sym_BSLASHinput] = ACTIONS(5241), + [anon_sym_BSLASHsubfile] = ACTIONS(5241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), + [anon_sym_BSLASHbibliography] = ACTIONS(5241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), + [anon_sym_BSLASHincludesvg] = ACTIONS(5241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), + [anon_sym_BSLASHimport] = ACTIONS(5241), + [anon_sym_BSLASHsubimport] = ACTIONS(5241), + [anon_sym_BSLASHinputfrom] = ACTIONS(5241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), + [anon_sym_BSLASHincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHcaption] = ACTIONS(5241), + [anon_sym_BSLASHcite] = ACTIONS(5241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCite] = ACTIONS(5241), + [anon_sym_BSLASHnocite] = ACTIONS(5241), + [anon_sym_BSLASHcitet] = ACTIONS(5241), + [anon_sym_BSLASHcitep] = ACTIONS(5241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor] = ACTIONS(5241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle] = ACTIONS(5241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteyear] = ACTIONS(5241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitedate] = ACTIONS(5241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteurl] = ACTIONS(5241), + [anon_sym_BSLASHfullcite] = ACTIONS(5241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), + [anon_sym_BSLASHcitealt] = ACTIONS(5241), + [anon_sym_BSLASHcitealp] = ACTIONS(5241), + [anon_sym_BSLASHcitetext] = ACTIONS(5241), + [anon_sym_BSLASHparencite] = ACTIONS(5241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHParencite] = ACTIONS(5241), + [anon_sym_BSLASHfootcite] = ACTIONS(5241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), + [anon_sym_BSLASHtextcite] = ACTIONS(5241), + [anon_sym_BSLASHTextcite] = ACTIONS(5241), + [anon_sym_BSLASHsmartcite] = ACTIONS(5241), + [anon_sym_BSLASHSmartcite] = ACTIONS(5241), + [anon_sym_BSLASHsupercite] = ACTIONS(5241), + [anon_sym_BSLASHautocite] = ACTIONS(5241), + [anon_sym_BSLASHAutocite] = ACTIONS(5241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHvolcite] = ACTIONS(5241), + [anon_sym_BSLASHVolcite] = ACTIONS(5241), + [anon_sym_BSLASHpvolcite] = ACTIONS(5241), + [anon_sym_BSLASHPvolcite] = ACTIONS(5241), + [anon_sym_BSLASHfvolcite] = ACTIONS(5241), + [anon_sym_BSLASHftvolcite] = ACTIONS(5241), + [anon_sym_BSLASHsvolcite] = ACTIONS(5241), + [anon_sym_BSLASHSvolcite] = ACTIONS(5241), + [anon_sym_BSLASHtvolcite] = ACTIONS(5241), + [anon_sym_BSLASHTvolcite] = ACTIONS(5241), + [anon_sym_BSLASHavolcite] = ACTIONS(5241), + [anon_sym_BSLASHAvolcite] = ACTIONS(5241), + [anon_sym_BSLASHnotecite] = ACTIONS(5241), + [anon_sym_BSLASHNotecite] = ACTIONS(5241), + [anon_sym_BSLASHpnotecite] = ACTIONS(5241), + [anon_sym_BSLASHPnotecite] = ACTIONS(5241), + [anon_sym_BSLASHfnotecite] = ACTIONS(5241), + [anon_sym_BSLASHlabel] = ACTIONS(5241), + [anon_sym_BSLASHref] = ACTIONS(5241), + [anon_sym_BSLASHeqref] = ACTIONS(5241), + [anon_sym_BSLASHvref] = ACTIONS(5241), + [anon_sym_BSLASHVref] = ACTIONS(5241), + [anon_sym_BSLASHautoref] = ACTIONS(5241), + [anon_sym_BSLASHpageref] = ACTIONS(5241), + [anon_sym_BSLASHcref] = ACTIONS(5241), + [anon_sym_BSLASHCref] = ACTIONS(5241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnameCref] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHlabelcref] = ACTIONS(5241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange] = ACTIONS(5241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnewlabel] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), + [anon_sym_BSLASHdef] = ACTIONS(5241), + [anon_sym_BSLASHlet] = ACTIONS(5241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), + [anon_sym_BSLASHgls] = ACTIONS(5241), + [anon_sym_BSLASHGls] = ACTIONS(5241), + [anon_sym_BSLASHGLS] = ACTIONS(5241), + [anon_sym_BSLASHglspl] = ACTIONS(5241), + [anon_sym_BSLASHGlspl] = ACTIONS(5241), + [anon_sym_BSLASHGLSpl] = ACTIONS(5241), + [anon_sym_BSLASHglsdisp] = ACTIONS(5241), + [anon_sym_BSLASHglslink] = ACTIONS(5241), + [anon_sym_BSLASHglstext] = ACTIONS(5241), + [anon_sym_BSLASHGlstext] = ACTIONS(5241), + [anon_sym_BSLASHGLStext] = ACTIONS(5241), + [anon_sym_BSLASHglsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), + [anon_sym_BSLASHglsplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSplural] = ACTIONS(5241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHglsname] = ACTIONS(5241), + [anon_sym_BSLASHGlsname] = ACTIONS(5241), + [anon_sym_BSLASHGLSname] = ACTIONS(5241), + [anon_sym_BSLASHglssymbol] = ACTIONS(5241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), + [anon_sym_BSLASHglsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), + [anon_sym_BSLASHglsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), + [anon_sym_BSLASHglsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), + [anon_sym_BSLASHglsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), + [anon_sym_BSLASHglsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), + [anon_sym_BSLASHnewacronym] = ACTIONS(5241), + [anon_sym_BSLASHacrshort] = ACTIONS(5241), + [anon_sym_BSLASHAcrshort] = ACTIONS(5241), + [anon_sym_BSLASHACRshort] = ACTIONS(5241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), + [anon_sym_BSLASHacrlong] = ACTIONS(5241), + [anon_sym_BSLASHAcrlong] = ACTIONS(5241), + [anon_sym_BSLASHACRlong] = ACTIONS(5241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), + [anon_sym_BSLASHacrfull] = ACTIONS(5241), + [anon_sym_BSLASHAcrfull] = ACTIONS(5241), + [anon_sym_BSLASHACRfull] = ACTIONS(5241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), + [anon_sym_BSLASHacs] = ACTIONS(5241), + [anon_sym_BSLASHAcs] = ACTIONS(5241), + [anon_sym_BSLASHacsp] = ACTIONS(5241), + [anon_sym_BSLASHAcsp] = ACTIONS(5241), + [anon_sym_BSLASHacl] = ACTIONS(5241), + [anon_sym_BSLASHAcl] = ACTIONS(5241), + [anon_sym_BSLASHaclp] = ACTIONS(5241), + [anon_sym_BSLASHAclp] = ACTIONS(5241), + [anon_sym_BSLASHacf] = ACTIONS(5241), + [anon_sym_BSLASHAcf] = ACTIONS(5241), + [anon_sym_BSLASHacfp] = ACTIONS(5241), + [anon_sym_BSLASHAcfp] = ACTIONS(5241), + [anon_sym_BSLASHac] = ACTIONS(5241), + [anon_sym_BSLASHAc] = ACTIONS(5241), + [anon_sym_BSLASHacp] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), + [anon_sym_BSLASHcolor] = ACTIONS(5241), + [anon_sym_BSLASHcolorbox] = ACTIONS(5241), + [anon_sym_BSLASHtextcolor] = ACTIONS(5241), + [anon_sym_BSLASHpagecolor] = ACTIONS(5241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), + [anon_sym_BSLASHtext] = ACTIONS(5241), + [anon_sym_BSLASHintertext] = ACTIONS(5241), + [anon_sym_shortintertext] = ACTIONS(5241), + }, + [1429] = { + [sym_command_name] = ACTIONS(5245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5245), + [anon_sym_LPAREN] = ACTIONS(5243), + [anon_sym_RPAREN] = ACTIONS(5243), + [anon_sym_LBRACK] = ACTIONS(5243), + [anon_sym_RBRACK] = ACTIONS(5243), + [anon_sym_COMMA] = ACTIONS(5243), + [anon_sym_LBRACE] = ACTIONS(5243), + [anon_sym_RBRACE] = ACTIONS(5243), + [sym_word] = ACTIONS(5245), + [sym_placeholder] = ACTIONS(5243), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_STAR] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5245), + [anon_sym_CARET] = ACTIONS(5245), + [anon_sym__] = ACTIONS(5245), + [anon_sym_LT] = ACTIONS(5245), + [anon_sym_GT] = ACTIONS(5245), + [anon_sym_BANG] = ACTIONS(5245), + [anon_sym_PIPE] = ACTIONS(5245), + [anon_sym_COLON] = ACTIONS(5245), + [anon_sym_SQUOTE] = ACTIONS(5245), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5243), + [anon_sym_DOLLAR] = ACTIONS(5245), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5243), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5243), + [anon_sym_BSLASHusepackage] = ACTIONS(5245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), + [anon_sym_BSLASHinclude] = ACTIONS(5245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), + [anon_sym_BSLASHinput] = ACTIONS(5245), + [anon_sym_BSLASHsubfile] = ACTIONS(5245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), + [anon_sym_BSLASHbibliography] = ACTIONS(5245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), + [anon_sym_BSLASHincludesvg] = ACTIONS(5245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), + [anon_sym_BSLASHimport] = ACTIONS(5245), + [anon_sym_BSLASHsubimport] = ACTIONS(5245), + [anon_sym_BSLASHinputfrom] = ACTIONS(5245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), + [anon_sym_BSLASHincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHcaption] = ACTIONS(5245), + [anon_sym_BSLASHcite] = ACTIONS(5245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCite] = ACTIONS(5245), + [anon_sym_BSLASHnocite] = ACTIONS(5245), + [anon_sym_BSLASHcitet] = ACTIONS(5245), + [anon_sym_BSLASHcitep] = ACTIONS(5245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteauthor] = ACTIONS(5245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitetitle] = ACTIONS(5245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteyear] = ACTIONS(5245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitedate] = ACTIONS(5245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteurl] = ACTIONS(5245), + [anon_sym_BSLASHfullcite] = ACTIONS(5245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), + [anon_sym_BSLASHcitealt] = ACTIONS(5245), + [anon_sym_BSLASHcitealp] = ACTIONS(5245), + [anon_sym_BSLASHcitetext] = ACTIONS(5245), + [anon_sym_BSLASHparencite] = ACTIONS(5245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHParencite] = ACTIONS(5245), + [anon_sym_BSLASHfootcite] = ACTIONS(5245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), + [anon_sym_BSLASHtextcite] = ACTIONS(5245), + [anon_sym_BSLASHTextcite] = ACTIONS(5245), + [anon_sym_BSLASHsmartcite] = ACTIONS(5245), + [anon_sym_BSLASHSmartcite] = ACTIONS(5245), + [anon_sym_BSLASHsupercite] = ACTIONS(5245), + [anon_sym_BSLASHautocite] = ACTIONS(5245), + [anon_sym_BSLASHAutocite] = ACTIONS(5245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHvolcite] = ACTIONS(5245), + [anon_sym_BSLASHVolcite] = ACTIONS(5245), + [anon_sym_BSLASHpvolcite] = ACTIONS(5245), + [anon_sym_BSLASHPvolcite] = ACTIONS(5245), + [anon_sym_BSLASHfvolcite] = ACTIONS(5245), + [anon_sym_BSLASHftvolcite] = ACTIONS(5245), + [anon_sym_BSLASHsvolcite] = ACTIONS(5245), + [anon_sym_BSLASHSvolcite] = ACTIONS(5245), + [anon_sym_BSLASHtvolcite] = ACTIONS(5245), + [anon_sym_BSLASHTvolcite] = ACTIONS(5245), + [anon_sym_BSLASHavolcite] = ACTIONS(5245), + [anon_sym_BSLASHAvolcite] = ACTIONS(5245), + [anon_sym_BSLASHnotecite] = ACTIONS(5245), + [anon_sym_BSLASHNotecite] = ACTIONS(5245), + [anon_sym_BSLASHpnotecite] = ACTIONS(5245), + [anon_sym_BSLASHPnotecite] = ACTIONS(5245), + [anon_sym_BSLASHfnotecite] = ACTIONS(5245), + [anon_sym_BSLASHlabel] = ACTIONS(5245), + [anon_sym_BSLASHref] = ACTIONS(5245), + [anon_sym_BSLASHeqref] = ACTIONS(5245), + [anon_sym_BSLASHvref] = ACTIONS(5245), + [anon_sym_BSLASHVref] = ACTIONS(5245), + [anon_sym_BSLASHautoref] = ACTIONS(5245), + [anon_sym_BSLASHpageref] = ACTIONS(5245), + [anon_sym_BSLASHcref] = ACTIONS(5245), + [anon_sym_BSLASHCref] = ACTIONS(5245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnameCref] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHlabelcref] = ACTIONS(5245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCrefrange] = ACTIONS(5245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnewlabel] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), + [anon_sym_BSLASHdef] = ACTIONS(5245), + [anon_sym_BSLASHlet] = ACTIONS(5245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), + [anon_sym_BSLASHgls] = ACTIONS(5245), + [anon_sym_BSLASHGls] = ACTIONS(5245), + [anon_sym_BSLASHGLS] = ACTIONS(5245), + [anon_sym_BSLASHglspl] = ACTIONS(5245), + [anon_sym_BSLASHGlspl] = ACTIONS(5245), + [anon_sym_BSLASHGLSpl] = ACTIONS(5245), + [anon_sym_BSLASHglsdisp] = ACTIONS(5245), + [anon_sym_BSLASHglslink] = ACTIONS(5245), + [anon_sym_BSLASHglstext] = ACTIONS(5245), + [anon_sym_BSLASHGlstext] = ACTIONS(5245), + [anon_sym_BSLASHGLStext] = ACTIONS(5245), + [anon_sym_BSLASHglsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), + [anon_sym_BSLASHglsplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSplural] = ACTIONS(5245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHglsname] = ACTIONS(5245), + [anon_sym_BSLASHGlsname] = ACTIONS(5245), + [anon_sym_BSLASHGLSname] = ACTIONS(5245), + [anon_sym_BSLASHglssymbol] = ACTIONS(5245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), + [anon_sym_BSLASHglsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), + [anon_sym_BSLASHglsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), + [anon_sym_BSLASHglsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), + [anon_sym_BSLASHglsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), + [anon_sym_BSLASHglsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), + [anon_sym_BSLASHnewacronym] = ACTIONS(5245), + [anon_sym_BSLASHacrshort] = ACTIONS(5245), + [anon_sym_BSLASHAcrshort] = ACTIONS(5245), + [anon_sym_BSLASHACRshort] = ACTIONS(5245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), + [anon_sym_BSLASHacrlong] = ACTIONS(5245), + [anon_sym_BSLASHAcrlong] = ACTIONS(5245), + [anon_sym_BSLASHACRlong] = ACTIONS(5245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), + [anon_sym_BSLASHacrfull] = ACTIONS(5245), + [anon_sym_BSLASHAcrfull] = ACTIONS(5245), + [anon_sym_BSLASHACRfull] = ACTIONS(5245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), + [anon_sym_BSLASHacs] = ACTIONS(5245), + [anon_sym_BSLASHAcs] = ACTIONS(5245), + [anon_sym_BSLASHacsp] = ACTIONS(5245), + [anon_sym_BSLASHAcsp] = ACTIONS(5245), + [anon_sym_BSLASHacl] = ACTIONS(5245), + [anon_sym_BSLASHAcl] = ACTIONS(5245), + [anon_sym_BSLASHaclp] = ACTIONS(5245), + [anon_sym_BSLASHAclp] = ACTIONS(5245), + [anon_sym_BSLASHacf] = ACTIONS(5245), + [anon_sym_BSLASHAcf] = ACTIONS(5245), + [anon_sym_BSLASHacfp] = ACTIONS(5245), + [anon_sym_BSLASHAcfp] = ACTIONS(5245), + [anon_sym_BSLASHac] = ACTIONS(5245), + [anon_sym_BSLASHAc] = ACTIONS(5245), + [anon_sym_BSLASHacp] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), + [anon_sym_BSLASHcolor] = ACTIONS(5245), + [anon_sym_BSLASHcolorbox] = ACTIONS(5245), + [anon_sym_BSLASHtextcolor] = ACTIONS(5245), + [anon_sym_BSLASHpagecolor] = ACTIONS(5245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), + [anon_sym_BSLASHtext] = ACTIONS(5245), + [anon_sym_BSLASHintertext] = ACTIONS(5245), + [anon_sym_shortintertext] = ACTIONS(5245), + }, + [1430] = { + [sym_command_name] = ACTIONS(5249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5249), + [anon_sym_LPAREN] = ACTIONS(5247), + [anon_sym_RPAREN] = ACTIONS(5247), + [anon_sym_LBRACK] = ACTIONS(5247), + [anon_sym_RBRACK] = ACTIONS(5247), + [anon_sym_COMMA] = ACTIONS(5247), + [anon_sym_LBRACE] = ACTIONS(5247), + [anon_sym_RBRACE] = ACTIONS(5247), + [sym_word] = ACTIONS(5249), + [sym_placeholder] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5249), + [anon_sym_STAR] = ACTIONS(5249), + [anon_sym_SLASH] = ACTIONS(5249), + [anon_sym_CARET] = ACTIONS(5249), + [anon_sym__] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(5249), + [anon_sym_GT] = ACTIONS(5249), + [anon_sym_BANG] = ACTIONS(5249), + [anon_sym_PIPE] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_SQUOTE] = ACTIONS(5249), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5247), + [anon_sym_DOLLAR] = ACTIONS(5249), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5247), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5247), + [anon_sym_BSLASHusepackage] = ACTIONS(5249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), + [anon_sym_BSLASHinclude] = ACTIONS(5249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), + [anon_sym_BSLASHinput] = ACTIONS(5249), + [anon_sym_BSLASHsubfile] = ACTIONS(5249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), + [anon_sym_BSLASHbibliography] = ACTIONS(5249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), + [anon_sym_BSLASHincludesvg] = ACTIONS(5249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), + [anon_sym_BSLASHimport] = ACTIONS(5249), + [anon_sym_BSLASHsubimport] = ACTIONS(5249), + [anon_sym_BSLASHinputfrom] = ACTIONS(5249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), + [anon_sym_BSLASHincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHcaption] = ACTIONS(5249), + [anon_sym_BSLASHcite] = ACTIONS(5249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCite] = ACTIONS(5249), + [anon_sym_BSLASHnocite] = ACTIONS(5249), + [anon_sym_BSLASHcitet] = ACTIONS(5249), + [anon_sym_BSLASHcitep] = ACTIONS(5249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteauthor] = ACTIONS(5249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitetitle] = ACTIONS(5249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteyear] = ACTIONS(5249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitedate] = ACTIONS(5249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteurl] = ACTIONS(5249), + [anon_sym_BSLASHfullcite] = ACTIONS(5249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), + [anon_sym_BSLASHcitealt] = ACTIONS(5249), + [anon_sym_BSLASHcitealp] = ACTIONS(5249), + [anon_sym_BSLASHcitetext] = ACTIONS(5249), + [anon_sym_BSLASHparencite] = ACTIONS(5249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHParencite] = ACTIONS(5249), + [anon_sym_BSLASHfootcite] = ACTIONS(5249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), + [anon_sym_BSLASHtextcite] = ACTIONS(5249), + [anon_sym_BSLASHTextcite] = ACTIONS(5249), + [anon_sym_BSLASHsmartcite] = ACTIONS(5249), + [anon_sym_BSLASHSmartcite] = ACTIONS(5249), + [anon_sym_BSLASHsupercite] = ACTIONS(5249), + [anon_sym_BSLASHautocite] = ACTIONS(5249), + [anon_sym_BSLASHAutocite] = ACTIONS(5249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHvolcite] = ACTIONS(5249), + [anon_sym_BSLASHVolcite] = ACTIONS(5249), + [anon_sym_BSLASHpvolcite] = ACTIONS(5249), + [anon_sym_BSLASHPvolcite] = ACTIONS(5249), + [anon_sym_BSLASHfvolcite] = ACTIONS(5249), + [anon_sym_BSLASHftvolcite] = ACTIONS(5249), + [anon_sym_BSLASHsvolcite] = ACTIONS(5249), + [anon_sym_BSLASHSvolcite] = ACTIONS(5249), + [anon_sym_BSLASHtvolcite] = ACTIONS(5249), + [anon_sym_BSLASHTvolcite] = ACTIONS(5249), + [anon_sym_BSLASHavolcite] = ACTIONS(5249), + [anon_sym_BSLASHAvolcite] = ACTIONS(5249), + [anon_sym_BSLASHnotecite] = ACTIONS(5249), + [anon_sym_BSLASHNotecite] = ACTIONS(5249), + [anon_sym_BSLASHpnotecite] = ACTIONS(5249), + [anon_sym_BSLASHPnotecite] = ACTIONS(5249), + [anon_sym_BSLASHfnotecite] = ACTIONS(5249), + [anon_sym_BSLASHlabel] = ACTIONS(5249), + [anon_sym_BSLASHref] = ACTIONS(5249), + [anon_sym_BSLASHeqref] = ACTIONS(5249), + [anon_sym_BSLASHvref] = ACTIONS(5249), + [anon_sym_BSLASHVref] = ACTIONS(5249), + [anon_sym_BSLASHautoref] = ACTIONS(5249), + [anon_sym_BSLASHpageref] = ACTIONS(5249), + [anon_sym_BSLASHcref] = ACTIONS(5249), + [anon_sym_BSLASHCref] = ACTIONS(5249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnameCref] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHlabelcref] = ACTIONS(5249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + [anon_sym_BSLASHtext] = ACTIONS(5249), + [anon_sym_BSLASHintertext] = ACTIONS(5249), + [anon_sym_shortintertext] = ACTIONS(5249), + }, + [1431] = { + [sym_command_name] = ACTIONS(5253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5253), + [anon_sym_LPAREN] = ACTIONS(5251), + [anon_sym_RPAREN] = ACTIONS(5251), + [anon_sym_LBRACK] = ACTIONS(5251), + [anon_sym_RBRACK] = ACTIONS(5251), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_LBRACE] = ACTIONS(5251), + [anon_sym_RBRACE] = ACTIONS(5251), + [sym_word] = ACTIONS(5253), + [sym_placeholder] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5253), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym__] = ACTIONS(5253), + [anon_sym_LT] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5253), + [anon_sym_BANG] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_SQUOTE] = ACTIONS(5253), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5251), + [anon_sym_DOLLAR] = ACTIONS(5253), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5251), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5251), + [anon_sym_BSLASHusepackage] = ACTIONS(5253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHinclude] = ACTIONS(5253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), + [anon_sym_BSLASHinput] = ACTIONS(5253), + [anon_sym_BSLASHsubfile] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), + [anon_sym_BSLASHbibliography] = ACTIONS(5253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), + [anon_sym_BSLASHincludesvg] = ACTIONS(5253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), + [anon_sym_BSLASHimport] = ACTIONS(5253), + [anon_sym_BSLASHsubimport] = ACTIONS(5253), + [anon_sym_BSLASHinputfrom] = ACTIONS(5253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), + [anon_sym_BSLASHincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHcaption] = ACTIONS(5253), + [anon_sym_BSLASHcite] = ACTIONS(5253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCite] = ACTIONS(5253), + [anon_sym_BSLASHnocite] = ACTIONS(5253), + [anon_sym_BSLASHcitet] = ACTIONS(5253), + [anon_sym_BSLASHcitep] = ACTIONS(5253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteauthor] = ACTIONS(5253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitetitle] = ACTIONS(5253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteyear] = ACTIONS(5253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitedate] = ACTIONS(5253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteurl] = ACTIONS(5253), + [anon_sym_BSLASHfullcite] = ACTIONS(5253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), + [anon_sym_BSLASHcitealt] = ACTIONS(5253), + [anon_sym_BSLASHcitealp] = ACTIONS(5253), + [anon_sym_BSLASHcitetext] = ACTIONS(5253), + [anon_sym_BSLASHparencite] = ACTIONS(5253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHParencite] = ACTIONS(5253), + [anon_sym_BSLASHfootcite] = ACTIONS(5253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), + [anon_sym_BSLASHtextcite] = ACTIONS(5253), + [anon_sym_BSLASHTextcite] = ACTIONS(5253), + [anon_sym_BSLASHsmartcite] = ACTIONS(5253), + [anon_sym_BSLASHSmartcite] = ACTIONS(5253), + [anon_sym_BSLASHsupercite] = ACTIONS(5253), + [anon_sym_BSLASHautocite] = ACTIONS(5253), + [anon_sym_BSLASHAutocite] = ACTIONS(5253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHvolcite] = ACTIONS(5253), + [anon_sym_BSLASHVolcite] = ACTIONS(5253), + [anon_sym_BSLASHpvolcite] = ACTIONS(5253), + [anon_sym_BSLASHPvolcite] = ACTIONS(5253), + [anon_sym_BSLASHfvolcite] = ACTIONS(5253), + [anon_sym_BSLASHftvolcite] = ACTIONS(5253), + [anon_sym_BSLASHsvolcite] = ACTIONS(5253), + [anon_sym_BSLASHSvolcite] = ACTIONS(5253), + [anon_sym_BSLASHtvolcite] = ACTIONS(5253), + [anon_sym_BSLASHTvolcite] = ACTIONS(5253), + [anon_sym_BSLASHavolcite] = ACTIONS(5253), + [anon_sym_BSLASHAvolcite] = ACTIONS(5253), + [anon_sym_BSLASHnotecite] = ACTIONS(5253), + [anon_sym_BSLASHNotecite] = ACTIONS(5253), + [anon_sym_BSLASHpnotecite] = ACTIONS(5253), + [anon_sym_BSLASHPnotecite] = ACTIONS(5253), + [anon_sym_BSLASHfnotecite] = ACTIONS(5253), + [anon_sym_BSLASHlabel] = ACTIONS(5253), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCrefrange] = ACTIONS(5253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnewlabel] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdef] = ACTIONS(5253), + [anon_sym_BSLASHlet] = ACTIONS(5253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), + [anon_sym_BSLASHgls] = ACTIONS(5253), + [anon_sym_BSLASHGls] = ACTIONS(5253), + [anon_sym_BSLASHGLS] = ACTIONS(5253), + [anon_sym_BSLASHglspl] = ACTIONS(5253), + [anon_sym_BSLASHGlspl] = ACTIONS(5253), + [anon_sym_BSLASHGLSpl] = ACTIONS(5253), + [anon_sym_BSLASHglsdisp] = ACTIONS(5253), + [anon_sym_BSLASHglslink] = ACTIONS(5253), + [anon_sym_BSLASHglstext] = ACTIONS(5253), + [anon_sym_BSLASHGlstext] = ACTIONS(5253), + [anon_sym_BSLASHGLStext] = ACTIONS(5253), + [anon_sym_BSLASHglsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), + [anon_sym_BSLASHglsplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSplural] = ACTIONS(5253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHglsname] = ACTIONS(5253), + [anon_sym_BSLASHGlsname] = ACTIONS(5253), + [anon_sym_BSLASHGLSname] = ACTIONS(5253), + [anon_sym_BSLASHglssymbol] = ACTIONS(5253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), + [anon_sym_BSLASHglsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), + [anon_sym_BSLASHglsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), + [anon_sym_BSLASHglsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), + [anon_sym_BSLASHglsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), + [anon_sym_BSLASHglsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), + [anon_sym_BSLASHnewacronym] = ACTIONS(5253), + [anon_sym_BSLASHacrshort] = ACTIONS(5253), + [anon_sym_BSLASHAcrshort] = ACTIONS(5253), + [anon_sym_BSLASHACRshort] = ACTIONS(5253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), + [anon_sym_BSLASHacrlong] = ACTIONS(5253), + [anon_sym_BSLASHAcrlong] = ACTIONS(5253), + [anon_sym_BSLASHACRlong] = ACTIONS(5253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), + [anon_sym_BSLASHacrfull] = ACTIONS(5253), + [anon_sym_BSLASHAcrfull] = ACTIONS(5253), + [anon_sym_BSLASHACRfull] = ACTIONS(5253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), + [anon_sym_BSLASHacs] = ACTIONS(5253), + [anon_sym_BSLASHAcs] = ACTIONS(5253), + [anon_sym_BSLASHacsp] = ACTIONS(5253), + [anon_sym_BSLASHAcsp] = ACTIONS(5253), + [anon_sym_BSLASHacl] = ACTIONS(5253), + [anon_sym_BSLASHAcl] = ACTIONS(5253), + [anon_sym_BSLASHaclp] = ACTIONS(5253), + [anon_sym_BSLASHAclp] = ACTIONS(5253), + [anon_sym_BSLASHacf] = ACTIONS(5253), + [anon_sym_BSLASHAcf] = ACTIONS(5253), + [anon_sym_BSLASHacfp] = ACTIONS(5253), + [anon_sym_BSLASHAcfp] = ACTIONS(5253), + [anon_sym_BSLASHac] = ACTIONS(5253), + [anon_sym_BSLASHAc] = ACTIONS(5253), + [anon_sym_BSLASHacp] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), + [anon_sym_BSLASHcolor] = ACTIONS(5253), + [anon_sym_BSLASHcolorbox] = ACTIONS(5253), + [anon_sym_BSLASHtextcolor] = ACTIONS(5253), + [anon_sym_BSLASHpagecolor] = ACTIONS(5253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), + [anon_sym_BSLASHtext] = ACTIONS(5253), + [anon_sym_BSLASHintertext] = ACTIONS(5253), + [anon_sym_shortintertext] = ACTIONS(5253), + }, + [1432] = { + [sym_command_name] = ACTIONS(5257), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5257), + [anon_sym_LPAREN] = ACTIONS(5255), + [anon_sym_RPAREN] = ACTIONS(5255), + [anon_sym_LBRACK] = ACTIONS(5255), + [anon_sym_RBRACK] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_LBRACE] = ACTIONS(5255), + [anon_sym_RBRACE] = ACTIONS(5255), + [sym_word] = ACTIONS(5257), + [sym_placeholder] = ACTIONS(5255), + [anon_sym_PLUS] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(5257), + [anon_sym_STAR] = ACTIONS(5257), + [anon_sym_SLASH] = ACTIONS(5257), + [anon_sym_CARET] = ACTIONS(5257), + [anon_sym__] = ACTIONS(5257), + [anon_sym_LT] = ACTIONS(5257), + [anon_sym_GT] = ACTIONS(5257), + [anon_sym_BANG] = ACTIONS(5257), + [anon_sym_PIPE] = ACTIONS(5257), + [anon_sym_COLON] = ACTIONS(5257), + [anon_sym_SQUOTE] = ACTIONS(5257), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5255), + [anon_sym_DOLLAR] = ACTIONS(5257), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5255), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5255), + [anon_sym_BSLASHusepackage] = ACTIONS(5257), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), + [anon_sym_BSLASHinclude] = ACTIONS(5257), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), + [anon_sym_BSLASHinput] = ACTIONS(5257), + [anon_sym_BSLASHsubfile] = ACTIONS(5257), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), + [anon_sym_BSLASHbibliography] = ACTIONS(5257), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), + [anon_sym_BSLASHincludesvg] = ACTIONS(5257), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), + [anon_sym_BSLASHimport] = ACTIONS(5257), + [anon_sym_BSLASHsubimport] = ACTIONS(5257), + [anon_sym_BSLASHinputfrom] = ACTIONS(5257), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), + [anon_sym_BSLASHincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHcaption] = ACTIONS(5257), + [anon_sym_BSLASHcite] = ACTIONS(5257), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCite] = ACTIONS(5257), + [anon_sym_BSLASHnocite] = ACTIONS(5257), + [anon_sym_BSLASHcitet] = ACTIONS(5257), + [anon_sym_BSLASHcitep] = ACTIONS(5257), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteauthor] = ACTIONS(5257), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitetitle] = ACTIONS(5257), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteyear] = ACTIONS(5257), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitedate] = ACTIONS(5257), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteurl] = ACTIONS(5257), + [anon_sym_BSLASHfullcite] = ACTIONS(5257), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), + [anon_sym_BSLASHcitealt] = ACTIONS(5257), + [anon_sym_BSLASHcitealp] = ACTIONS(5257), + [anon_sym_BSLASHcitetext] = ACTIONS(5257), + [anon_sym_BSLASHparencite] = ACTIONS(5257), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHParencite] = ACTIONS(5257), + [anon_sym_BSLASHfootcite] = ACTIONS(5257), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), + [anon_sym_BSLASHtextcite] = ACTIONS(5257), + [anon_sym_BSLASHTextcite] = ACTIONS(5257), + [anon_sym_BSLASHsmartcite] = ACTIONS(5257), + [anon_sym_BSLASHSmartcite] = ACTIONS(5257), + [anon_sym_BSLASHsupercite] = ACTIONS(5257), + [anon_sym_BSLASHautocite] = ACTIONS(5257), + [anon_sym_BSLASHAutocite] = ACTIONS(5257), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHvolcite] = ACTIONS(5257), + [anon_sym_BSLASHVolcite] = ACTIONS(5257), + [anon_sym_BSLASHpvolcite] = ACTIONS(5257), + [anon_sym_BSLASHPvolcite] = ACTIONS(5257), + [anon_sym_BSLASHfvolcite] = ACTIONS(5257), + [anon_sym_BSLASHftvolcite] = ACTIONS(5257), + [anon_sym_BSLASHsvolcite] = ACTIONS(5257), + [anon_sym_BSLASHSvolcite] = ACTIONS(5257), + [anon_sym_BSLASHtvolcite] = ACTIONS(5257), + [anon_sym_BSLASHTvolcite] = ACTIONS(5257), + [anon_sym_BSLASHavolcite] = ACTIONS(5257), + [anon_sym_BSLASHAvolcite] = ACTIONS(5257), + [anon_sym_BSLASHnotecite] = ACTIONS(5257), + [anon_sym_BSLASHNotecite] = ACTIONS(5257), + [anon_sym_BSLASHpnotecite] = ACTIONS(5257), + [anon_sym_BSLASHPnotecite] = ACTIONS(5257), + [anon_sym_BSLASHfnotecite] = ACTIONS(5257), + [anon_sym_BSLASHlabel] = ACTIONS(5257), + [anon_sym_BSLASHref] = ACTIONS(5257), + [anon_sym_BSLASHeqref] = ACTIONS(5257), + [anon_sym_BSLASHvref] = ACTIONS(5257), + [anon_sym_BSLASHVref] = ACTIONS(5257), + [anon_sym_BSLASHautoref] = ACTIONS(5257), + [anon_sym_BSLASHpageref] = ACTIONS(5257), + [anon_sym_BSLASHcref] = ACTIONS(5257), + [anon_sym_BSLASHCref] = ACTIONS(5257), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnameCref] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHlabelcref] = ACTIONS(5257), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCrefrange] = ACTIONS(5257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnewlabel] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), + [anon_sym_BSLASHdef] = ACTIONS(5257), + [anon_sym_BSLASHlet] = ACTIONS(5257), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), + [anon_sym_BSLASHgls] = ACTIONS(5257), + [anon_sym_BSLASHGls] = ACTIONS(5257), + [anon_sym_BSLASHGLS] = ACTIONS(5257), + [anon_sym_BSLASHglspl] = ACTIONS(5257), + [anon_sym_BSLASHGlspl] = ACTIONS(5257), + [anon_sym_BSLASHGLSpl] = ACTIONS(5257), + [anon_sym_BSLASHglsdisp] = ACTIONS(5257), + [anon_sym_BSLASHglslink] = ACTIONS(5257), + [anon_sym_BSLASHglstext] = ACTIONS(5257), + [anon_sym_BSLASHGlstext] = ACTIONS(5257), + [anon_sym_BSLASHGLStext] = ACTIONS(5257), + [anon_sym_BSLASHglsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), + [anon_sym_BSLASHglsplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSplural] = ACTIONS(5257), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHglsname] = ACTIONS(5257), + [anon_sym_BSLASHGlsname] = ACTIONS(5257), + [anon_sym_BSLASHGLSname] = ACTIONS(5257), + [anon_sym_BSLASHglssymbol] = ACTIONS(5257), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), + [anon_sym_BSLASHglsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), + [anon_sym_BSLASHglsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), + [anon_sym_BSLASHglsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), + [anon_sym_BSLASHglsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), + [anon_sym_BSLASHglsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), + [anon_sym_BSLASHnewacronym] = ACTIONS(5257), + [anon_sym_BSLASHacrshort] = ACTIONS(5257), + [anon_sym_BSLASHAcrshort] = ACTIONS(5257), + [anon_sym_BSLASHACRshort] = ACTIONS(5257), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), + [anon_sym_BSLASHacrlong] = ACTIONS(5257), + [anon_sym_BSLASHAcrlong] = ACTIONS(5257), + [anon_sym_BSLASHACRlong] = ACTIONS(5257), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), + [anon_sym_BSLASHacrfull] = ACTIONS(5257), + [anon_sym_BSLASHAcrfull] = ACTIONS(5257), + [anon_sym_BSLASHACRfull] = ACTIONS(5257), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), + [anon_sym_BSLASHacs] = ACTIONS(5257), + [anon_sym_BSLASHAcs] = ACTIONS(5257), + [anon_sym_BSLASHacsp] = ACTIONS(5257), + [anon_sym_BSLASHAcsp] = ACTIONS(5257), + [anon_sym_BSLASHacl] = ACTIONS(5257), + [anon_sym_BSLASHAcl] = ACTIONS(5257), + [anon_sym_BSLASHaclp] = ACTIONS(5257), + [anon_sym_BSLASHAclp] = ACTIONS(5257), + [anon_sym_BSLASHacf] = ACTIONS(5257), + [anon_sym_BSLASHAcf] = ACTIONS(5257), + [anon_sym_BSLASHacfp] = ACTIONS(5257), + [anon_sym_BSLASHAcfp] = ACTIONS(5257), + [anon_sym_BSLASHac] = ACTIONS(5257), + [anon_sym_BSLASHAc] = ACTIONS(5257), + [anon_sym_BSLASHacp] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), + [anon_sym_BSLASHcolor] = ACTIONS(5257), + [anon_sym_BSLASHcolorbox] = ACTIONS(5257), + [anon_sym_BSLASHtextcolor] = ACTIONS(5257), + [anon_sym_BSLASHpagecolor] = ACTIONS(5257), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), + [anon_sym_BSLASHtext] = ACTIONS(5257), + [anon_sym_BSLASHintertext] = ACTIONS(5257), + [anon_sym_shortintertext] = ACTIONS(5257), + }, + [1433] = { + [sym_command_name] = ACTIONS(5261), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5261), + [anon_sym_LPAREN] = ACTIONS(5259), + [anon_sym_RPAREN] = ACTIONS(5259), + [anon_sym_LBRACK] = ACTIONS(5259), + [anon_sym_RBRACK] = ACTIONS(5259), + [anon_sym_COMMA] = ACTIONS(5259), + [anon_sym_LBRACE] = ACTIONS(5259), + [anon_sym_RBRACE] = ACTIONS(5259), + [sym_word] = ACTIONS(5261), + [sym_placeholder] = ACTIONS(5259), + [anon_sym_PLUS] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(5261), + [anon_sym_STAR] = ACTIONS(5261), + [anon_sym_SLASH] = ACTIONS(5261), + [anon_sym_CARET] = ACTIONS(5261), + [anon_sym__] = ACTIONS(5261), + [anon_sym_LT] = ACTIONS(5261), + [anon_sym_GT] = ACTIONS(5261), + [anon_sym_BANG] = ACTIONS(5261), + [anon_sym_PIPE] = ACTIONS(5261), + [anon_sym_COLON] = ACTIONS(5261), + [anon_sym_SQUOTE] = ACTIONS(5261), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5259), + [anon_sym_DOLLAR] = ACTIONS(5261), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5259), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5259), + [anon_sym_BSLASHusepackage] = ACTIONS(5261), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), + [anon_sym_BSLASHinclude] = ACTIONS(5261), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), + [anon_sym_BSLASHinput] = ACTIONS(5261), + [anon_sym_BSLASHsubfile] = ACTIONS(5261), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), + [anon_sym_BSLASHbibliography] = ACTIONS(5261), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), + [anon_sym_BSLASHincludesvg] = ACTIONS(5261), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), + [anon_sym_BSLASHimport] = ACTIONS(5261), + [anon_sym_BSLASHsubimport] = ACTIONS(5261), + [anon_sym_BSLASHinputfrom] = ACTIONS(5261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), + [anon_sym_BSLASHincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHcaption] = ACTIONS(5261), + [anon_sym_BSLASHcite] = ACTIONS(5261), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCite] = ACTIONS(5261), + [anon_sym_BSLASHnocite] = ACTIONS(5261), + [anon_sym_BSLASHcitet] = ACTIONS(5261), + [anon_sym_BSLASHcitep] = ACTIONS(5261), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteauthor] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitetitle] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteyear] = ACTIONS(5261), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitedate] = ACTIONS(5261), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteurl] = ACTIONS(5261), + [anon_sym_BSLASHfullcite] = ACTIONS(5261), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), + [anon_sym_BSLASHcitealt] = ACTIONS(5261), + [anon_sym_BSLASHcitealp] = ACTIONS(5261), + [anon_sym_BSLASHcitetext] = ACTIONS(5261), + [anon_sym_BSLASHparencite] = ACTIONS(5261), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHParencite] = ACTIONS(5261), + [anon_sym_BSLASHfootcite] = ACTIONS(5261), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), + [anon_sym_BSLASHtextcite] = ACTIONS(5261), + [anon_sym_BSLASHTextcite] = ACTIONS(5261), + [anon_sym_BSLASHsmartcite] = ACTIONS(5261), + [anon_sym_BSLASHSmartcite] = ACTIONS(5261), + [anon_sym_BSLASHsupercite] = ACTIONS(5261), + [anon_sym_BSLASHautocite] = ACTIONS(5261), + [anon_sym_BSLASHAutocite] = ACTIONS(5261), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHvolcite] = ACTIONS(5261), + [anon_sym_BSLASHVolcite] = ACTIONS(5261), + [anon_sym_BSLASHpvolcite] = ACTIONS(5261), + [anon_sym_BSLASHPvolcite] = ACTIONS(5261), + [anon_sym_BSLASHfvolcite] = ACTIONS(5261), + [anon_sym_BSLASHftvolcite] = ACTIONS(5261), + [anon_sym_BSLASHsvolcite] = ACTIONS(5261), + [anon_sym_BSLASHSvolcite] = ACTIONS(5261), + [anon_sym_BSLASHtvolcite] = ACTIONS(5261), + [anon_sym_BSLASHTvolcite] = ACTIONS(5261), + [anon_sym_BSLASHavolcite] = ACTIONS(5261), + [anon_sym_BSLASHAvolcite] = ACTIONS(5261), + [anon_sym_BSLASHnotecite] = ACTIONS(5261), + [anon_sym_BSLASHNotecite] = ACTIONS(5261), + [anon_sym_BSLASHpnotecite] = ACTIONS(5261), + [anon_sym_BSLASHPnotecite] = ACTIONS(5261), + [anon_sym_BSLASHfnotecite] = ACTIONS(5261), + [anon_sym_BSLASHlabel] = ACTIONS(5261), + [anon_sym_BSLASHref] = ACTIONS(5261), + [anon_sym_BSLASHeqref] = ACTIONS(5261), + [anon_sym_BSLASHvref] = ACTIONS(5261), + [anon_sym_BSLASHVref] = ACTIONS(5261), + [anon_sym_BSLASHautoref] = ACTIONS(5261), + [anon_sym_BSLASHpageref] = ACTIONS(5261), + [anon_sym_BSLASHcref] = ACTIONS(5261), + [anon_sym_BSLASHCref] = ACTIONS(5261), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnameCref] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHlabelcref] = ACTIONS(5261), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCrefrange] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnewlabel] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), + [anon_sym_BSLASHdef] = ACTIONS(5261), + [anon_sym_BSLASHlet] = ACTIONS(5261), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), + [anon_sym_BSLASHgls] = ACTIONS(5261), + [anon_sym_BSLASHGls] = ACTIONS(5261), + [anon_sym_BSLASHGLS] = ACTIONS(5261), + [anon_sym_BSLASHglspl] = ACTIONS(5261), + [anon_sym_BSLASHGlspl] = ACTIONS(5261), + [anon_sym_BSLASHGLSpl] = ACTIONS(5261), + [anon_sym_BSLASHglsdisp] = ACTIONS(5261), + [anon_sym_BSLASHglslink] = ACTIONS(5261), + [anon_sym_BSLASHglstext] = ACTIONS(5261), + [anon_sym_BSLASHGlstext] = ACTIONS(5261), + [anon_sym_BSLASHGLStext] = ACTIONS(5261), + [anon_sym_BSLASHglsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), + [anon_sym_BSLASHglsplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSplural] = ACTIONS(5261), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHglsname] = ACTIONS(5261), + [anon_sym_BSLASHGlsname] = ACTIONS(5261), + [anon_sym_BSLASHGLSname] = ACTIONS(5261), + [anon_sym_BSLASHglssymbol] = ACTIONS(5261), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), + [anon_sym_BSLASHglsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), + [anon_sym_BSLASHglsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), + [anon_sym_BSLASHglsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), + [anon_sym_BSLASHglsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), + [anon_sym_BSLASHglsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), + [anon_sym_BSLASHnewacronym] = ACTIONS(5261), + [anon_sym_BSLASHacrshort] = ACTIONS(5261), + [anon_sym_BSLASHAcrshort] = ACTIONS(5261), + [anon_sym_BSLASHACRshort] = ACTIONS(5261), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), + [anon_sym_BSLASHacrlong] = ACTIONS(5261), + [anon_sym_BSLASHAcrlong] = ACTIONS(5261), + [anon_sym_BSLASHACRlong] = ACTIONS(5261), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), + [anon_sym_BSLASHacrfull] = ACTIONS(5261), + [anon_sym_BSLASHAcrfull] = ACTIONS(5261), + [anon_sym_BSLASHACRfull] = ACTIONS(5261), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), + [anon_sym_BSLASHacs] = ACTIONS(5261), + [anon_sym_BSLASHAcs] = ACTIONS(5261), + [anon_sym_BSLASHacsp] = ACTIONS(5261), + [anon_sym_BSLASHAcsp] = ACTIONS(5261), + [anon_sym_BSLASHacl] = ACTIONS(5261), + [anon_sym_BSLASHAcl] = ACTIONS(5261), + [anon_sym_BSLASHaclp] = ACTIONS(5261), + [anon_sym_BSLASHAclp] = ACTIONS(5261), + [anon_sym_BSLASHacf] = ACTIONS(5261), + [anon_sym_BSLASHAcf] = ACTIONS(5261), + [anon_sym_BSLASHacfp] = ACTIONS(5261), + [anon_sym_BSLASHAcfp] = ACTIONS(5261), + [anon_sym_BSLASHac] = ACTIONS(5261), + [anon_sym_BSLASHAc] = ACTIONS(5261), + [anon_sym_BSLASHacp] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), + [anon_sym_BSLASHcolor] = ACTIONS(5261), + [anon_sym_BSLASHcolorbox] = ACTIONS(5261), + [anon_sym_BSLASHtextcolor] = ACTIONS(5261), + [anon_sym_BSLASHpagecolor] = ACTIONS(5261), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), + [anon_sym_BSLASHtext] = ACTIONS(5261), + [anon_sym_BSLASHintertext] = ACTIONS(5261), + [anon_sym_shortintertext] = ACTIONS(5261), + }, + [1434] = { + [sym_command_name] = ACTIONS(5265), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5265), + [anon_sym_LPAREN] = ACTIONS(5263), + [anon_sym_RPAREN] = ACTIONS(5263), + [anon_sym_LBRACK] = ACTIONS(5263), + [anon_sym_RBRACK] = ACTIONS(5263), + [anon_sym_COMMA] = ACTIONS(5263), + [anon_sym_LBRACE] = ACTIONS(5263), + [anon_sym_RBRACE] = ACTIONS(5263), + [sym_word] = ACTIONS(5265), + [sym_placeholder] = ACTIONS(5263), + [anon_sym_PLUS] = ACTIONS(5265), + [anon_sym_DASH] = ACTIONS(5265), + [anon_sym_STAR] = ACTIONS(5265), + [anon_sym_SLASH] = ACTIONS(5265), + [anon_sym_CARET] = ACTIONS(5265), + [anon_sym__] = ACTIONS(5265), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_GT] = ACTIONS(5265), + [anon_sym_BANG] = ACTIONS(5265), + [anon_sym_PIPE] = ACTIONS(5265), + [anon_sym_COLON] = ACTIONS(5265), + [anon_sym_SQUOTE] = ACTIONS(5265), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5263), + [anon_sym_DOLLAR] = ACTIONS(5265), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5263), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5263), + [anon_sym_BSLASHusepackage] = ACTIONS(5265), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), + [anon_sym_BSLASHinclude] = ACTIONS(5265), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), + [anon_sym_BSLASHinput] = ACTIONS(5265), + [anon_sym_BSLASHsubfile] = ACTIONS(5265), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), + [anon_sym_BSLASHbibliography] = ACTIONS(5265), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), + [anon_sym_BSLASHincludesvg] = ACTIONS(5265), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), + [anon_sym_BSLASHimport] = ACTIONS(5265), + [anon_sym_BSLASHsubimport] = ACTIONS(5265), + [anon_sym_BSLASHinputfrom] = ACTIONS(5265), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), + [anon_sym_BSLASHincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHcaption] = ACTIONS(5265), + [anon_sym_BSLASHcite] = ACTIONS(5265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCite] = ACTIONS(5265), + [anon_sym_BSLASHnocite] = ACTIONS(5265), + [anon_sym_BSLASHcitet] = ACTIONS(5265), + [anon_sym_BSLASHcitep] = ACTIONS(5265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor] = ACTIONS(5265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle] = ACTIONS(5265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteyear] = ACTIONS(5265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitedate] = ACTIONS(5265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteurl] = ACTIONS(5265), + [anon_sym_BSLASHfullcite] = ACTIONS(5265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), + [anon_sym_BSLASHcitealt] = ACTIONS(5265), + [anon_sym_BSLASHcitealp] = ACTIONS(5265), + [anon_sym_BSLASHcitetext] = ACTIONS(5265), + [anon_sym_BSLASHparencite] = ACTIONS(5265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHParencite] = ACTIONS(5265), + [anon_sym_BSLASHfootcite] = ACTIONS(5265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), + [anon_sym_BSLASHtextcite] = ACTIONS(5265), + [anon_sym_BSLASHTextcite] = ACTIONS(5265), + [anon_sym_BSLASHsmartcite] = ACTIONS(5265), + [anon_sym_BSLASHSmartcite] = ACTIONS(5265), + [anon_sym_BSLASHsupercite] = ACTIONS(5265), + [anon_sym_BSLASHautocite] = ACTIONS(5265), + [anon_sym_BSLASHAutocite] = ACTIONS(5265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHvolcite] = ACTIONS(5265), + [anon_sym_BSLASHVolcite] = ACTIONS(5265), + [anon_sym_BSLASHpvolcite] = ACTIONS(5265), + [anon_sym_BSLASHPvolcite] = ACTIONS(5265), + [anon_sym_BSLASHfvolcite] = ACTIONS(5265), + [anon_sym_BSLASHftvolcite] = ACTIONS(5265), + [anon_sym_BSLASHsvolcite] = ACTIONS(5265), + [anon_sym_BSLASHSvolcite] = ACTIONS(5265), + [anon_sym_BSLASHtvolcite] = ACTIONS(5265), + [anon_sym_BSLASHTvolcite] = ACTIONS(5265), + [anon_sym_BSLASHavolcite] = ACTIONS(5265), + [anon_sym_BSLASHAvolcite] = ACTIONS(5265), + [anon_sym_BSLASHnotecite] = ACTIONS(5265), + [anon_sym_BSLASHNotecite] = ACTIONS(5265), + [anon_sym_BSLASHpnotecite] = ACTIONS(5265), + [anon_sym_BSLASHPnotecite] = ACTIONS(5265), + [anon_sym_BSLASHfnotecite] = ACTIONS(5265), + [anon_sym_BSLASHlabel] = ACTIONS(5265), + [anon_sym_BSLASHref] = ACTIONS(5265), + [anon_sym_BSLASHeqref] = ACTIONS(5265), + [anon_sym_BSLASHvref] = ACTIONS(5265), + [anon_sym_BSLASHVref] = ACTIONS(5265), + [anon_sym_BSLASHautoref] = ACTIONS(5265), + [anon_sym_BSLASHpageref] = ACTIONS(5265), + [anon_sym_BSLASHcref] = ACTIONS(5265), + [anon_sym_BSLASHCref] = ACTIONS(5265), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnameCref] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHlabelcref] = ACTIONS(5265), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange] = ACTIONS(5265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnewlabel] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), + [anon_sym_BSLASHdef] = ACTIONS(5265), + [anon_sym_BSLASHlet] = ACTIONS(5265), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), + [anon_sym_BSLASHgls] = ACTIONS(5265), + [anon_sym_BSLASHGls] = ACTIONS(5265), + [anon_sym_BSLASHGLS] = ACTIONS(5265), + [anon_sym_BSLASHglspl] = ACTIONS(5265), + [anon_sym_BSLASHGlspl] = ACTIONS(5265), + [anon_sym_BSLASHGLSpl] = ACTIONS(5265), + [anon_sym_BSLASHglsdisp] = ACTIONS(5265), + [anon_sym_BSLASHglslink] = ACTIONS(5265), + [anon_sym_BSLASHglstext] = ACTIONS(5265), + [anon_sym_BSLASHGlstext] = ACTIONS(5265), + [anon_sym_BSLASHGLStext] = ACTIONS(5265), + [anon_sym_BSLASHglsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), + [anon_sym_BSLASHglsplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSplural] = ACTIONS(5265), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHglsname] = ACTIONS(5265), + [anon_sym_BSLASHGlsname] = ACTIONS(5265), + [anon_sym_BSLASHGLSname] = ACTIONS(5265), + [anon_sym_BSLASHglssymbol] = ACTIONS(5265), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), + [anon_sym_BSLASHglsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), + [anon_sym_BSLASHglsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), + [anon_sym_BSLASHglsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), + [anon_sym_BSLASHglsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), + [anon_sym_BSLASHglsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), + [anon_sym_BSLASHnewacronym] = ACTIONS(5265), + [anon_sym_BSLASHacrshort] = ACTIONS(5265), + [anon_sym_BSLASHAcrshort] = ACTIONS(5265), + [anon_sym_BSLASHACRshort] = ACTIONS(5265), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), + [anon_sym_BSLASHacrlong] = ACTIONS(5265), + [anon_sym_BSLASHAcrlong] = ACTIONS(5265), + [anon_sym_BSLASHACRlong] = ACTIONS(5265), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), + [anon_sym_BSLASHacrfull] = ACTIONS(5265), + [anon_sym_BSLASHAcrfull] = ACTIONS(5265), + [anon_sym_BSLASHACRfull] = ACTIONS(5265), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), + [anon_sym_BSLASHacs] = ACTIONS(5265), + [anon_sym_BSLASHAcs] = ACTIONS(5265), + [anon_sym_BSLASHacsp] = ACTIONS(5265), + [anon_sym_BSLASHAcsp] = ACTIONS(5265), + [anon_sym_BSLASHacl] = ACTIONS(5265), + [anon_sym_BSLASHAcl] = ACTIONS(5265), + [anon_sym_BSLASHaclp] = ACTIONS(5265), + [anon_sym_BSLASHAclp] = ACTIONS(5265), + [anon_sym_BSLASHacf] = ACTIONS(5265), + [anon_sym_BSLASHAcf] = ACTIONS(5265), + [anon_sym_BSLASHacfp] = ACTIONS(5265), + [anon_sym_BSLASHAcfp] = ACTIONS(5265), + [anon_sym_BSLASHac] = ACTIONS(5265), + [anon_sym_BSLASHAc] = ACTIONS(5265), + [anon_sym_BSLASHacp] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), + [anon_sym_BSLASHcolor] = ACTIONS(5265), + [anon_sym_BSLASHcolorbox] = ACTIONS(5265), + [anon_sym_BSLASHtextcolor] = ACTIONS(5265), + [anon_sym_BSLASHpagecolor] = ACTIONS(5265), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), + [anon_sym_BSLASHtext] = ACTIONS(5265), + [anon_sym_BSLASHintertext] = ACTIONS(5265), + [anon_sym_shortintertext] = ACTIONS(5265), + }, + [1435] = { + [sym_command_name] = ACTIONS(5269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5269), + [anon_sym_LPAREN] = ACTIONS(5267), + [anon_sym_RPAREN] = ACTIONS(5267), + [anon_sym_LBRACK] = ACTIONS(5267), + [anon_sym_RBRACK] = ACTIONS(5267), + [anon_sym_COMMA] = ACTIONS(5267), + [anon_sym_LBRACE] = ACTIONS(5267), + [anon_sym_RBRACE] = ACTIONS(5267), + [sym_word] = ACTIONS(5269), + [sym_placeholder] = ACTIONS(5267), + [anon_sym_PLUS] = ACTIONS(5269), + [anon_sym_DASH] = ACTIONS(5269), + [anon_sym_STAR] = ACTIONS(5269), + [anon_sym_SLASH] = ACTIONS(5269), + [anon_sym_CARET] = ACTIONS(5269), + [anon_sym__] = ACTIONS(5269), + [anon_sym_LT] = ACTIONS(5269), + [anon_sym_GT] = ACTIONS(5269), + [anon_sym_BANG] = ACTIONS(5269), + [anon_sym_PIPE] = ACTIONS(5269), + [anon_sym_COLON] = ACTIONS(5269), + [anon_sym_SQUOTE] = ACTIONS(5269), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5267), + [anon_sym_DOLLAR] = ACTIONS(5269), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5267), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5267), + [anon_sym_BSLASHusepackage] = ACTIONS(5269), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), + [anon_sym_BSLASHinclude] = ACTIONS(5269), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), + [anon_sym_BSLASHinput] = ACTIONS(5269), + [anon_sym_BSLASHsubfile] = ACTIONS(5269), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), + [anon_sym_BSLASHbibliography] = ACTIONS(5269), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), + [anon_sym_BSLASHincludesvg] = ACTIONS(5269), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), + [anon_sym_BSLASHimport] = ACTIONS(5269), + [anon_sym_BSLASHsubimport] = ACTIONS(5269), + [anon_sym_BSLASHinputfrom] = ACTIONS(5269), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), + [anon_sym_BSLASHincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHcaption] = ACTIONS(5269), + [anon_sym_BSLASHcite] = ACTIONS(5269), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCite] = ACTIONS(5269), + [anon_sym_BSLASHnocite] = ACTIONS(5269), + [anon_sym_BSLASHcitet] = ACTIONS(5269), + [anon_sym_BSLASHcitep] = ACTIONS(5269), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteauthor] = ACTIONS(5269), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitetitle] = ACTIONS(5269), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteyear] = ACTIONS(5269), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitedate] = ACTIONS(5269), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteurl] = ACTIONS(5269), + [anon_sym_BSLASHfullcite] = ACTIONS(5269), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), + [anon_sym_BSLASHcitealt] = ACTIONS(5269), + [anon_sym_BSLASHcitealp] = ACTIONS(5269), + [anon_sym_BSLASHcitetext] = ACTIONS(5269), + [anon_sym_BSLASHparencite] = ACTIONS(5269), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHParencite] = ACTIONS(5269), + [anon_sym_BSLASHfootcite] = ACTIONS(5269), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), + [anon_sym_BSLASHtextcite] = ACTIONS(5269), + [anon_sym_BSLASHTextcite] = ACTIONS(5269), + [anon_sym_BSLASHsmartcite] = ACTIONS(5269), + [anon_sym_BSLASHSmartcite] = ACTIONS(5269), + [anon_sym_BSLASHsupercite] = ACTIONS(5269), + [anon_sym_BSLASHautocite] = ACTIONS(5269), + [anon_sym_BSLASHAutocite] = ACTIONS(5269), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHvolcite] = ACTIONS(5269), + [anon_sym_BSLASHVolcite] = ACTIONS(5269), + [anon_sym_BSLASHpvolcite] = ACTIONS(5269), + [anon_sym_BSLASHPvolcite] = ACTIONS(5269), + [anon_sym_BSLASHfvolcite] = ACTIONS(5269), + [anon_sym_BSLASHftvolcite] = ACTIONS(5269), + [anon_sym_BSLASHsvolcite] = ACTIONS(5269), + [anon_sym_BSLASHSvolcite] = ACTIONS(5269), + [anon_sym_BSLASHtvolcite] = ACTIONS(5269), + [anon_sym_BSLASHTvolcite] = ACTIONS(5269), + [anon_sym_BSLASHavolcite] = ACTIONS(5269), + [anon_sym_BSLASHAvolcite] = ACTIONS(5269), + [anon_sym_BSLASHnotecite] = ACTIONS(5269), + [anon_sym_BSLASHNotecite] = ACTIONS(5269), + [anon_sym_BSLASHpnotecite] = ACTIONS(5269), + [anon_sym_BSLASHPnotecite] = ACTIONS(5269), + [anon_sym_BSLASHfnotecite] = ACTIONS(5269), + [anon_sym_BSLASHlabel] = ACTIONS(5269), + [anon_sym_BSLASHref] = ACTIONS(5269), + [anon_sym_BSLASHeqref] = ACTIONS(5269), + [anon_sym_BSLASHvref] = ACTIONS(5269), + [anon_sym_BSLASHVref] = ACTIONS(5269), + [anon_sym_BSLASHautoref] = ACTIONS(5269), + [anon_sym_BSLASHpageref] = ACTIONS(5269), + [anon_sym_BSLASHcref] = ACTIONS(5269), + [anon_sym_BSLASHCref] = ACTIONS(5269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnameCref] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHlabelcref] = ACTIONS(5269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCrefrange] = ACTIONS(5269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnewlabel] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), + [anon_sym_BSLASHdef] = ACTIONS(5269), + [anon_sym_BSLASHlet] = ACTIONS(5269), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), + [anon_sym_BSLASHgls] = ACTIONS(5269), + [anon_sym_BSLASHGls] = ACTIONS(5269), + [anon_sym_BSLASHGLS] = ACTIONS(5269), + [anon_sym_BSLASHglspl] = ACTIONS(5269), + [anon_sym_BSLASHGlspl] = ACTIONS(5269), + [anon_sym_BSLASHGLSpl] = ACTIONS(5269), + [anon_sym_BSLASHglsdisp] = ACTIONS(5269), + [anon_sym_BSLASHglslink] = ACTIONS(5269), + [anon_sym_BSLASHglstext] = ACTIONS(5269), + [anon_sym_BSLASHGlstext] = ACTIONS(5269), + [anon_sym_BSLASHGLStext] = ACTIONS(5269), + [anon_sym_BSLASHglsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), + [anon_sym_BSLASHglsplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSplural] = ACTIONS(5269), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHglsname] = ACTIONS(5269), + [anon_sym_BSLASHGlsname] = ACTIONS(5269), + [anon_sym_BSLASHGLSname] = ACTIONS(5269), + [anon_sym_BSLASHglssymbol] = ACTIONS(5269), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), + [anon_sym_BSLASHglsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), + [anon_sym_BSLASHglsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), + [anon_sym_BSLASHglsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), + [anon_sym_BSLASHglsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), + [anon_sym_BSLASHglsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), + [anon_sym_BSLASHnewacronym] = ACTIONS(5269), + [anon_sym_BSLASHacrshort] = ACTIONS(5269), + [anon_sym_BSLASHAcrshort] = ACTIONS(5269), + [anon_sym_BSLASHACRshort] = ACTIONS(5269), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), + [anon_sym_BSLASHacrlong] = ACTIONS(5269), + [anon_sym_BSLASHAcrlong] = ACTIONS(5269), + [anon_sym_BSLASHACRlong] = ACTIONS(5269), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), + [anon_sym_BSLASHacrfull] = ACTIONS(5269), + [anon_sym_BSLASHAcrfull] = ACTIONS(5269), + [anon_sym_BSLASHACRfull] = ACTIONS(5269), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), + [anon_sym_BSLASHacs] = ACTIONS(5269), + [anon_sym_BSLASHAcs] = ACTIONS(5269), + [anon_sym_BSLASHacsp] = ACTIONS(5269), + [anon_sym_BSLASHAcsp] = ACTIONS(5269), + [anon_sym_BSLASHacl] = ACTIONS(5269), + [anon_sym_BSLASHAcl] = ACTIONS(5269), + [anon_sym_BSLASHaclp] = ACTIONS(5269), + [anon_sym_BSLASHAclp] = ACTIONS(5269), + [anon_sym_BSLASHacf] = ACTIONS(5269), + [anon_sym_BSLASHAcf] = ACTIONS(5269), + [anon_sym_BSLASHacfp] = ACTIONS(5269), + [anon_sym_BSLASHAcfp] = ACTIONS(5269), + [anon_sym_BSLASHac] = ACTIONS(5269), + [anon_sym_BSLASHAc] = ACTIONS(5269), + [anon_sym_BSLASHacp] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), + [anon_sym_BSLASHcolor] = ACTIONS(5269), + [anon_sym_BSLASHcolorbox] = ACTIONS(5269), + [anon_sym_BSLASHtextcolor] = ACTIONS(5269), + [anon_sym_BSLASHpagecolor] = ACTIONS(5269), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), + [anon_sym_BSLASHtext] = ACTIONS(5269), + [anon_sym_BSLASHintertext] = ACTIONS(5269), + [anon_sym_shortintertext] = ACTIONS(5269), + }, + [1436] = { + [sym_command_name] = ACTIONS(5273), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5273), + [anon_sym_LPAREN] = ACTIONS(5271), + [anon_sym_RPAREN] = ACTIONS(5271), + [anon_sym_LBRACK] = ACTIONS(5271), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_COMMA] = ACTIONS(5271), + [anon_sym_LBRACE] = ACTIONS(5271), + [anon_sym_RBRACE] = ACTIONS(5271), + [sym_word] = ACTIONS(5273), + [sym_placeholder] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5273), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5273), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym__] = ACTIONS(5273), + [anon_sym_LT] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5273), + [anon_sym_BANG] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5273), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_SQUOTE] = ACTIONS(5273), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5271), + [anon_sym_DOLLAR] = ACTIONS(5273), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5271), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5271), + [anon_sym_BSLASHusepackage] = ACTIONS(5273), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), + [anon_sym_BSLASHinclude] = ACTIONS(5273), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), + [anon_sym_BSLASHinput] = ACTIONS(5273), + [anon_sym_BSLASHsubfile] = ACTIONS(5273), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), + [anon_sym_BSLASHbibliography] = ACTIONS(5273), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), + [anon_sym_BSLASHincludesvg] = ACTIONS(5273), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), + [anon_sym_BSLASHimport] = ACTIONS(5273), + [anon_sym_BSLASHsubimport] = ACTIONS(5273), + [anon_sym_BSLASHinputfrom] = ACTIONS(5273), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), + [anon_sym_BSLASHincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHcaption] = ACTIONS(5273), + [anon_sym_BSLASHcite] = ACTIONS(5273), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCite] = ACTIONS(5273), + [anon_sym_BSLASHnocite] = ACTIONS(5273), + [anon_sym_BSLASHcitet] = ACTIONS(5273), + [anon_sym_BSLASHcitep] = ACTIONS(5273), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteauthor] = ACTIONS(5273), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitetitle] = ACTIONS(5273), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteyear] = ACTIONS(5273), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitedate] = ACTIONS(5273), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteurl] = ACTIONS(5273), + [anon_sym_BSLASHfullcite] = ACTIONS(5273), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), + [anon_sym_BSLASHcitealt] = ACTIONS(5273), + [anon_sym_BSLASHcitealp] = ACTIONS(5273), + [anon_sym_BSLASHcitetext] = ACTIONS(5273), + [anon_sym_BSLASHparencite] = ACTIONS(5273), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHParencite] = ACTIONS(5273), + [anon_sym_BSLASHfootcite] = ACTIONS(5273), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), + [anon_sym_BSLASHtextcite] = ACTIONS(5273), + [anon_sym_BSLASHTextcite] = ACTIONS(5273), + [anon_sym_BSLASHsmartcite] = ACTIONS(5273), + [anon_sym_BSLASHSmartcite] = ACTIONS(5273), + [anon_sym_BSLASHsupercite] = ACTIONS(5273), + [anon_sym_BSLASHautocite] = ACTIONS(5273), + [anon_sym_BSLASHAutocite] = ACTIONS(5273), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHvolcite] = ACTIONS(5273), + [anon_sym_BSLASHVolcite] = ACTIONS(5273), + [anon_sym_BSLASHpvolcite] = ACTIONS(5273), + [anon_sym_BSLASHPvolcite] = ACTIONS(5273), + [anon_sym_BSLASHfvolcite] = ACTIONS(5273), + [anon_sym_BSLASHftvolcite] = ACTIONS(5273), + [anon_sym_BSLASHsvolcite] = ACTIONS(5273), + [anon_sym_BSLASHSvolcite] = ACTIONS(5273), + [anon_sym_BSLASHtvolcite] = ACTIONS(5273), + [anon_sym_BSLASHTvolcite] = ACTIONS(5273), + [anon_sym_BSLASHavolcite] = ACTIONS(5273), + [anon_sym_BSLASHAvolcite] = ACTIONS(5273), + [anon_sym_BSLASHnotecite] = ACTIONS(5273), + [anon_sym_BSLASHNotecite] = ACTIONS(5273), + [anon_sym_BSLASHpnotecite] = ACTIONS(5273), + [anon_sym_BSLASHPnotecite] = ACTIONS(5273), + [anon_sym_BSLASHfnotecite] = ACTIONS(5273), + [anon_sym_BSLASHlabel] = ACTIONS(5273), + [anon_sym_BSLASHref] = ACTIONS(5273), + [anon_sym_BSLASHeqref] = ACTIONS(5273), + [anon_sym_BSLASHvref] = ACTIONS(5273), + [anon_sym_BSLASHVref] = ACTIONS(5273), + [anon_sym_BSLASHautoref] = ACTIONS(5273), + [anon_sym_BSLASHpageref] = ACTIONS(5273), + [anon_sym_BSLASHcref] = ACTIONS(5273), + [anon_sym_BSLASHCref] = ACTIONS(5273), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnameCref] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHlabelcref] = ACTIONS(5273), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCrefrange] = ACTIONS(5273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdef] = ACTIONS(5273), + [anon_sym_BSLASHlet] = ACTIONS(5273), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), + [anon_sym_BSLASHgls] = ACTIONS(5273), + [anon_sym_BSLASHGls] = ACTIONS(5273), + [anon_sym_BSLASHGLS] = ACTIONS(5273), + [anon_sym_BSLASHglspl] = ACTIONS(5273), + [anon_sym_BSLASHGlspl] = ACTIONS(5273), + [anon_sym_BSLASHGLSpl] = ACTIONS(5273), + [anon_sym_BSLASHglsdisp] = ACTIONS(5273), + [anon_sym_BSLASHglslink] = ACTIONS(5273), + [anon_sym_BSLASHglstext] = ACTIONS(5273), + [anon_sym_BSLASHGlstext] = ACTIONS(5273), + [anon_sym_BSLASHGLStext] = ACTIONS(5273), + [anon_sym_BSLASHglsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), + [anon_sym_BSLASHglsplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSplural] = ACTIONS(5273), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHglsname] = ACTIONS(5273), + [anon_sym_BSLASHGlsname] = ACTIONS(5273), + [anon_sym_BSLASHGLSname] = ACTIONS(5273), + [anon_sym_BSLASHglssymbol] = ACTIONS(5273), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), + [anon_sym_BSLASHglsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), + [anon_sym_BSLASHglsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), + [anon_sym_BSLASHglsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), + [anon_sym_BSLASHglsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), + [anon_sym_BSLASHglsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), + [anon_sym_BSLASHnewacronym] = ACTIONS(5273), + [anon_sym_BSLASHacrshort] = ACTIONS(5273), + [anon_sym_BSLASHAcrshort] = ACTIONS(5273), + [anon_sym_BSLASHACRshort] = ACTIONS(5273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), + [anon_sym_BSLASHacrlong] = ACTIONS(5273), + [anon_sym_BSLASHAcrlong] = ACTIONS(5273), + [anon_sym_BSLASHACRlong] = ACTIONS(5273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), + [anon_sym_BSLASHacrfull] = ACTIONS(5273), + [anon_sym_BSLASHAcrfull] = ACTIONS(5273), + [anon_sym_BSLASHACRfull] = ACTIONS(5273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), + [anon_sym_BSLASHacs] = ACTIONS(5273), + [anon_sym_BSLASHAcs] = ACTIONS(5273), + [anon_sym_BSLASHacsp] = ACTIONS(5273), + [anon_sym_BSLASHAcsp] = ACTIONS(5273), + [anon_sym_BSLASHacl] = ACTIONS(5273), + [anon_sym_BSLASHAcl] = ACTIONS(5273), + [anon_sym_BSLASHaclp] = ACTIONS(5273), + [anon_sym_BSLASHAclp] = ACTIONS(5273), + [anon_sym_BSLASHacf] = ACTIONS(5273), + [anon_sym_BSLASHAcf] = ACTIONS(5273), + [anon_sym_BSLASHacfp] = ACTIONS(5273), + [anon_sym_BSLASHAcfp] = ACTIONS(5273), + [anon_sym_BSLASHac] = ACTIONS(5273), + [anon_sym_BSLASHAc] = ACTIONS(5273), + [anon_sym_BSLASHacp] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), + [anon_sym_BSLASHcolor] = ACTIONS(5273), + [anon_sym_BSLASHcolorbox] = ACTIONS(5273), + [anon_sym_BSLASHtextcolor] = ACTIONS(5273), + [anon_sym_BSLASHpagecolor] = ACTIONS(5273), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), + [anon_sym_BSLASHtext] = ACTIONS(5273), + [anon_sym_BSLASHintertext] = ACTIONS(5273), + [anon_sym_shortintertext] = ACTIONS(5273), + }, + [1437] = { + [sym_command_name] = ACTIONS(5277), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5277), + [anon_sym_LPAREN] = ACTIONS(5275), + [anon_sym_RPAREN] = ACTIONS(5275), + [anon_sym_LBRACK] = ACTIONS(5275), + [anon_sym_RBRACK] = ACTIONS(5275), + [anon_sym_COMMA] = ACTIONS(5275), + [anon_sym_LBRACE] = ACTIONS(5275), + [anon_sym_RBRACE] = ACTIONS(5275), + [sym_word] = ACTIONS(5277), + [sym_placeholder] = ACTIONS(5275), + [anon_sym_PLUS] = ACTIONS(5277), + [anon_sym_DASH] = ACTIONS(5277), + [anon_sym_STAR] = ACTIONS(5277), + [anon_sym_SLASH] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5277), + [anon_sym__] = ACTIONS(5277), + [anon_sym_LT] = ACTIONS(5277), + [anon_sym_GT] = ACTIONS(5277), + [anon_sym_BANG] = ACTIONS(5277), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_COLON] = ACTIONS(5277), + [anon_sym_SQUOTE] = ACTIONS(5277), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5275), + [anon_sym_DOLLAR] = ACTIONS(5277), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5275), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5275), + [anon_sym_BSLASHusepackage] = ACTIONS(5277), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), + [anon_sym_BSLASHinclude] = ACTIONS(5277), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), + [anon_sym_BSLASHinput] = ACTIONS(5277), + [anon_sym_BSLASHsubfile] = ACTIONS(5277), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), + [anon_sym_BSLASHbibliography] = ACTIONS(5277), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), + [anon_sym_BSLASHincludesvg] = ACTIONS(5277), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), + [anon_sym_BSLASHimport] = ACTIONS(5277), + [anon_sym_BSLASHsubimport] = ACTIONS(5277), + [anon_sym_BSLASHinputfrom] = ACTIONS(5277), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), + [anon_sym_BSLASHincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHcaption] = ACTIONS(5277), + [anon_sym_BSLASHcite] = ACTIONS(5277), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCite] = ACTIONS(5277), + [anon_sym_BSLASHnocite] = ACTIONS(5277), + [anon_sym_BSLASHcitet] = ACTIONS(5277), + [anon_sym_BSLASHcitep] = ACTIONS(5277), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteauthor] = ACTIONS(5277), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitetitle] = ACTIONS(5277), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteyear] = ACTIONS(5277), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitedate] = ACTIONS(5277), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteurl] = ACTIONS(5277), + [anon_sym_BSLASHfullcite] = ACTIONS(5277), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), + [anon_sym_BSLASHcitealt] = ACTIONS(5277), + [anon_sym_BSLASHcitealp] = ACTIONS(5277), + [anon_sym_BSLASHcitetext] = ACTIONS(5277), + [anon_sym_BSLASHparencite] = ACTIONS(5277), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHParencite] = ACTIONS(5277), + [anon_sym_BSLASHfootcite] = ACTIONS(5277), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), + [anon_sym_BSLASHtextcite] = ACTIONS(5277), + [anon_sym_BSLASHTextcite] = ACTIONS(5277), + [anon_sym_BSLASHsmartcite] = ACTIONS(5277), + [anon_sym_BSLASHSmartcite] = ACTIONS(5277), + [anon_sym_BSLASHsupercite] = ACTIONS(5277), + [anon_sym_BSLASHautocite] = ACTIONS(5277), + [anon_sym_BSLASHAutocite] = ACTIONS(5277), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHvolcite] = ACTIONS(5277), + [anon_sym_BSLASHVolcite] = ACTIONS(5277), + [anon_sym_BSLASHpvolcite] = ACTIONS(5277), + [anon_sym_BSLASHPvolcite] = ACTIONS(5277), + [anon_sym_BSLASHfvolcite] = ACTIONS(5277), + [anon_sym_BSLASHftvolcite] = ACTIONS(5277), + [anon_sym_BSLASHsvolcite] = ACTIONS(5277), + [anon_sym_BSLASHSvolcite] = ACTIONS(5277), + [anon_sym_BSLASHtvolcite] = ACTIONS(5277), + [anon_sym_BSLASHTvolcite] = ACTIONS(5277), + [anon_sym_BSLASHavolcite] = ACTIONS(5277), + [anon_sym_BSLASHAvolcite] = ACTIONS(5277), + [anon_sym_BSLASHnotecite] = ACTIONS(5277), + [anon_sym_BSLASHNotecite] = ACTIONS(5277), + [anon_sym_BSLASHpnotecite] = ACTIONS(5277), + [anon_sym_BSLASHPnotecite] = ACTIONS(5277), + [anon_sym_BSLASHfnotecite] = ACTIONS(5277), + [anon_sym_BSLASHlabel] = ACTIONS(5277), + [anon_sym_BSLASHref] = ACTIONS(5277), + [anon_sym_BSLASHeqref] = ACTIONS(5277), + [anon_sym_BSLASHvref] = ACTIONS(5277), + [anon_sym_BSLASHVref] = ACTIONS(5277), + [anon_sym_BSLASHautoref] = ACTIONS(5277), + [anon_sym_BSLASHpageref] = ACTIONS(5277), + [anon_sym_BSLASHcref] = ACTIONS(5277), + [anon_sym_BSLASHCref] = ACTIONS(5277), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnameCref] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHlabelcref] = ACTIONS(5277), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCrefrange] = ACTIONS(5277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnewlabel] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), + [anon_sym_BSLASHdef] = ACTIONS(5277), + [anon_sym_BSLASHlet] = ACTIONS(5277), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), + [anon_sym_BSLASHgls] = ACTIONS(5277), + [anon_sym_BSLASHGls] = ACTIONS(5277), + [anon_sym_BSLASHGLS] = ACTIONS(5277), + [anon_sym_BSLASHglspl] = ACTIONS(5277), + [anon_sym_BSLASHGlspl] = ACTIONS(5277), + [anon_sym_BSLASHGLSpl] = ACTIONS(5277), + [anon_sym_BSLASHglsdisp] = ACTIONS(5277), + [anon_sym_BSLASHglslink] = ACTIONS(5277), + [anon_sym_BSLASHglstext] = ACTIONS(5277), + [anon_sym_BSLASHGlstext] = ACTIONS(5277), + [anon_sym_BSLASHGLStext] = ACTIONS(5277), + [anon_sym_BSLASHglsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), + [anon_sym_BSLASHglsplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSplural] = ACTIONS(5277), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHglsname] = ACTIONS(5277), + [anon_sym_BSLASHGlsname] = ACTIONS(5277), + [anon_sym_BSLASHGLSname] = ACTIONS(5277), + [anon_sym_BSLASHglssymbol] = ACTIONS(5277), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), + [anon_sym_BSLASHglsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), + [anon_sym_BSLASHglsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), + [anon_sym_BSLASHglsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), + [anon_sym_BSLASHglsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), + [anon_sym_BSLASHglsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), + [anon_sym_BSLASHnewacronym] = ACTIONS(5277), + [anon_sym_BSLASHacrshort] = ACTIONS(5277), + [anon_sym_BSLASHAcrshort] = ACTIONS(5277), + [anon_sym_BSLASHACRshort] = ACTIONS(5277), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), + [anon_sym_BSLASHacrlong] = ACTIONS(5277), + [anon_sym_BSLASHAcrlong] = ACTIONS(5277), + [anon_sym_BSLASHACRlong] = ACTIONS(5277), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), + [anon_sym_BSLASHacrfull] = ACTIONS(5277), + [anon_sym_BSLASHAcrfull] = ACTIONS(5277), + [anon_sym_BSLASHACRfull] = ACTIONS(5277), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), + [anon_sym_BSLASHacs] = ACTIONS(5277), + [anon_sym_BSLASHAcs] = ACTIONS(5277), + [anon_sym_BSLASHacsp] = ACTIONS(5277), + [anon_sym_BSLASHAcsp] = ACTIONS(5277), + [anon_sym_BSLASHacl] = ACTIONS(5277), + [anon_sym_BSLASHAcl] = ACTIONS(5277), + [anon_sym_BSLASHaclp] = ACTIONS(5277), + [anon_sym_BSLASHAclp] = ACTIONS(5277), + [anon_sym_BSLASHacf] = ACTIONS(5277), + [anon_sym_BSLASHAcf] = ACTIONS(5277), + [anon_sym_BSLASHacfp] = ACTIONS(5277), + [anon_sym_BSLASHAcfp] = ACTIONS(5277), + [anon_sym_BSLASHac] = ACTIONS(5277), + [anon_sym_BSLASHAc] = ACTIONS(5277), + [anon_sym_BSLASHacp] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), + [anon_sym_BSLASHcolor] = ACTIONS(5277), + [anon_sym_BSLASHcolorbox] = ACTIONS(5277), + [anon_sym_BSLASHtextcolor] = ACTIONS(5277), + [anon_sym_BSLASHpagecolor] = ACTIONS(5277), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), + [anon_sym_BSLASHtext] = ACTIONS(5277), + [anon_sym_BSLASHintertext] = ACTIONS(5277), + [anon_sym_shortintertext] = ACTIONS(5277), + }, + [1438] = { + [sym_command_name] = ACTIONS(5281), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5281), + [anon_sym_LPAREN] = ACTIONS(5279), + [anon_sym_RPAREN] = ACTIONS(5279), + [anon_sym_LBRACK] = ACTIONS(5279), + [anon_sym_RBRACK] = ACTIONS(5279), + [anon_sym_COMMA] = ACTIONS(5279), + [anon_sym_LBRACE] = ACTIONS(5279), + [anon_sym_RBRACE] = ACTIONS(5279), + [sym_word] = ACTIONS(5281), + [sym_placeholder] = ACTIONS(5279), + [anon_sym_PLUS] = ACTIONS(5281), + [anon_sym_DASH] = ACTIONS(5281), + [anon_sym_STAR] = ACTIONS(5281), + [anon_sym_SLASH] = ACTIONS(5281), + [anon_sym_CARET] = ACTIONS(5281), + [anon_sym__] = ACTIONS(5281), + [anon_sym_LT] = ACTIONS(5281), + [anon_sym_GT] = ACTIONS(5281), + [anon_sym_BANG] = ACTIONS(5281), + [anon_sym_PIPE] = ACTIONS(5281), + [anon_sym_COLON] = ACTIONS(5281), + [anon_sym_SQUOTE] = ACTIONS(5281), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5279), + [anon_sym_DOLLAR] = ACTIONS(5281), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5279), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5279), + [anon_sym_BSLASHusepackage] = ACTIONS(5281), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), + [anon_sym_BSLASHinclude] = ACTIONS(5281), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), + [anon_sym_BSLASHinput] = ACTIONS(5281), + [anon_sym_BSLASHsubfile] = ACTIONS(5281), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), + [anon_sym_BSLASHbibliography] = ACTIONS(5281), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), + [anon_sym_BSLASHincludesvg] = ACTIONS(5281), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), + [anon_sym_BSLASHimport] = ACTIONS(5281), + [anon_sym_BSLASHsubimport] = ACTIONS(5281), + [anon_sym_BSLASHinputfrom] = ACTIONS(5281), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), + [anon_sym_BSLASHincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHcaption] = ACTIONS(5281), + [anon_sym_BSLASHcite] = ACTIONS(5281), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCite] = ACTIONS(5281), + [anon_sym_BSLASHnocite] = ACTIONS(5281), + [anon_sym_BSLASHcitet] = ACTIONS(5281), + [anon_sym_BSLASHcitep] = ACTIONS(5281), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteauthor] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitetitle] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteyear] = ACTIONS(5281), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitedate] = ACTIONS(5281), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteurl] = ACTIONS(5281), + [anon_sym_BSLASHfullcite] = ACTIONS(5281), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), + [anon_sym_BSLASHcitealt] = ACTIONS(5281), + [anon_sym_BSLASHcitealp] = ACTIONS(5281), + [anon_sym_BSLASHcitetext] = ACTIONS(5281), + [anon_sym_BSLASHparencite] = ACTIONS(5281), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHParencite] = ACTIONS(5281), + [anon_sym_BSLASHfootcite] = ACTIONS(5281), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), + [anon_sym_BSLASHtextcite] = ACTIONS(5281), + [anon_sym_BSLASHTextcite] = ACTIONS(5281), + [anon_sym_BSLASHsmartcite] = ACTIONS(5281), + [anon_sym_BSLASHSmartcite] = ACTIONS(5281), + [anon_sym_BSLASHsupercite] = ACTIONS(5281), + [anon_sym_BSLASHautocite] = ACTIONS(5281), + [anon_sym_BSLASHAutocite] = ACTIONS(5281), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHvolcite] = ACTIONS(5281), + [anon_sym_BSLASHVolcite] = ACTIONS(5281), + [anon_sym_BSLASHpvolcite] = ACTIONS(5281), + [anon_sym_BSLASHPvolcite] = ACTIONS(5281), + [anon_sym_BSLASHfvolcite] = ACTIONS(5281), + [anon_sym_BSLASHftvolcite] = ACTIONS(5281), + [anon_sym_BSLASHsvolcite] = ACTIONS(5281), + [anon_sym_BSLASHSvolcite] = ACTIONS(5281), + [anon_sym_BSLASHtvolcite] = ACTIONS(5281), + [anon_sym_BSLASHTvolcite] = ACTIONS(5281), + [anon_sym_BSLASHavolcite] = ACTIONS(5281), + [anon_sym_BSLASHAvolcite] = ACTIONS(5281), + [anon_sym_BSLASHnotecite] = ACTIONS(5281), + [anon_sym_BSLASHNotecite] = ACTIONS(5281), + [anon_sym_BSLASHpnotecite] = ACTIONS(5281), + [anon_sym_BSLASHPnotecite] = ACTIONS(5281), + [anon_sym_BSLASHfnotecite] = ACTIONS(5281), + [anon_sym_BSLASHlabel] = ACTIONS(5281), + [anon_sym_BSLASHref] = ACTIONS(5281), + [anon_sym_BSLASHeqref] = ACTIONS(5281), + [anon_sym_BSLASHvref] = ACTIONS(5281), + [anon_sym_BSLASHVref] = ACTIONS(5281), + [anon_sym_BSLASHautoref] = ACTIONS(5281), + [anon_sym_BSLASHpageref] = ACTIONS(5281), + [anon_sym_BSLASHcref] = ACTIONS(5281), + [anon_sym_BSLASHCref] = ACTIONS(5281), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnameCref] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHlabelcref] = ACTIONS(5281), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCrefrange] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnewlabel] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), + [anon_sym_BSLASHdef] = ACTIONS(5281), + [anon_sym_BSLASHlet] = ACTIONS(5281), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), + [anon_sym_BSLASHgls] = ACTIONS(5281), + [anon_sym_BSLASHGls] = ACTIONS(5281), + [anon_sym_BSLASHGLS] = ACTIONS(5281), + [anon_sym_BSLASHglspl] = ACTIONS(5281), + [anon_sym_BSLASHGlspl] = ACTIONS(5281), + [anon_sym_BSLASHGLSpl] = ACTIONS(5281), + [anon_sym_BSLASHglsdisp] = ACTIONS(5281), + [anon_sym_BSLASHglslink] = ACTIONS(5281), + [anon_sym_BSLASHglstext] = ACTIONS(5281), + [anon_sym_BSLASHGlstext] = ACTIONS(5281), + [anon_sym_BSLASHGLStext] = ACTIONS(5281), + [anon_sym_BSLASHglsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), + [anon_sym_BSLASHglsplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSplural] = ACTIONS(5281), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHglsname] = ACTIONS(5281), + [anon_sym_BSLASHGlsname] = ACTIONS(5281), + [anon_sym_BSLASHGLSname] = ACTIONS(5281), + [anon_sym_BSLASHglssymbol] = ACTIONS(5281), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), + [anon_sym_BSLASHglsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), + [anon_sym_BSLASHglsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), + [anon_sym_BSLASHglsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), + [anon_sym_BSLASHglsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), + [anon_sym_BSLASHglsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), + [anon_sym_BSLASHnewacronym] = ACTIONS(5281), + [anon_sym_BSLASHacrshort] = ACTIONS(5281), + [anon_sym_BSLASHAcrshort] = ACTIONS(5281), + [anon_sym_BSLASHACRshort] = ACTIONS(5281), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), + [anon_sym_BSLASHacrlong] = ACTIONS(5281), + [anon_sym_BSLASHAcrlong] = ACTIONS(5281), + [anon_sym_BSLASHACRlong] = ACTIONS(5281), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), + [anon_sym_BSLASHacrfull] = ACTIONS(5281), + [anon_sym_BSLASHAcrfull] = ACTIONS(5281), + [anon_sym_BSLASHACRfull] = ACTIONS(5281), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), + [anon_sym_BSLASHacs] = ACTIONS(5281), + [anon_sym_BSLASHAcs] = ACTIONS(5281), + [anon_sym_BSLASHacsp] = ACTIONS(5281), + [anon_sym_BSLASHAcsp] = ACTIONS(5281), + [anon_sym_BSLASHacl] = ACTIONS(5281), + [anon_sym_BSLASHAcl] = ACTIONS(5281), + [anon_sym_BSLASHaclp] = ACTIONS(5281), + [anon_sym_BSLASHAclp] = ACTIONS(5281), + [anon_sym_BSLASHacf] = ACTIONS(5281), + [anon_sym_BSLASHAcf] = ACTIONS(5281), + [anon_sym_BSLASHacfp] = ACTIONS(5281), + [anon_sym_BSLASHAcfp] = ACTIONS(5281), + [anon_sym_BSLASHac] = ACTIONS(5281), + [anon_sym_BSLASHAc] = ACTIONS(5281), + [anon_sym_BSLASHacp] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), + [anon_sym_BSLASHcolor] = ACTIONS(5281), + [anon_sym_BSLASHcolorbox] = ACTIONS(5281), + [anon_sym_BSLASHtextcolor] = ACTIONS(5281), + [anon_sym_BSLASHpagecolor] = ACTIONS(5281), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), + [anon_sym_BSLASHtext] = ACTIONS(5281), + [anon_sym_BSLASHintertext] = ACTIONS(5281), + [anon_sym_shortintertext] = ACTIONS(5281), + }, + [1439] = { + [sym_command_name] = ACTIONS(5309), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4967), - [anon_sym_LPAREN] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4965), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_LBRACE] = ACTIONS(4965), - [anon_sym_RBRACE] = ACTIONS(4965), - [sym_word] = ACTIONS(4967), - [sym_placeholder] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_CARET] = ACTIONS(4967), - [anon_sym__] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4965), - [anon_sym_DOLLAR] = ACTIONS(4967), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4965), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4965), - [anon_sym_BSLASHusepackage] = ACTIONS(4967), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4967), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4967), - [anon_sym_BSLASHinclude] = ACTIONS(4967), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4967), - [anon_sym_BSLASHinput] = ACTIONS(4967), - [anon_sym_BSLASHsubfile] = ACTIONS(4967), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4967), - [anon_sym_BSLASHbibliography] = ACTIONS(4967), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4967), - [anon_sym_BSLASHincludesvg] = ACTIONS(4967), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4967), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4967), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4967), - [anon_sym_BSLASHimport] = ACTIONS(4967), - [anon_sym_BSLASHsubimport] = ACTIONS(4967), - [anon_sym_BSLASHinputfrom] = ACTIONS(4967), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4967), - [anon_sym_BSLASHincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHcaption] = ACTIONS(4967), - [anon_sym_BSLASHcite] = ACTIONS(4967), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCite] = ACTIONS(4967), - [anon_sym_BSLASHnocite] = ACTIONS(4967), - [anon_sym_BSLASHcitet] = ACTIONS(4967), - [anon_sym_BSLASHcitep] = ACTIONS(4967), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteauthor] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitetitle] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteyear] = ACTIONS(4967), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitedate] = ACTIONS(4967), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteurl] = ACTIONS(4967), - [anon_sym_BSLASHfullcite] = ACTIONS(4967), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4967), - [anon_sym_BSLASHcitealt] = ACTIONS(4967), - [anon_sym_BSLASHcitealp] = ACTIONS(4967), - [anon_sym_BSLASHcitetext] = ACTIONS(4967), - [anon_sym_BSLASHparencite] = ACTIONS(4967), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHParencite] = ACTIONS(4967), - [anon_sym_BSLASHfootcite] = ACTIONS(4967), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4967), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4967), - [anon_sym_BSLASHtextcite] = ACTIONS(4967), - [anon_sym_BSLASHTextcite] = ACTIONS(4967), - [anon_sym_BSLASHsmartcite] = ACTIONS(4967), - [anon_sym_BSLASHSmartcite] = ACTIONS(4967), - [anon_sym_BSLASHsupercite] = ACTIONS(4967), - [anon_sym_BSLASHautocite] = ACTIONS(4967), - [anon_sym_BSLASHAutocite] = ACTIONS(4967), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHvolcite] = ACTIONS(4967), - [anon_sym_BSLASHVolcite] = ACTIONS(4967), - [anon_sym_BSLASHpvolcite] = ACTIONS(4967), - [anon_sym_BSLASHPvolcite] = ACTIONS(4967), - [anon_sym_BSLASHfvolcite] = ACTIONS(4967), - [anon_sym_BSLASHftvolcite] = ACTIONS(4967), - [anon_sym_BSLASHsvolcite] = ACTIONS(4967), - [anon_sym_BSLASHSvolcite] = ACTIONS(4967), - [anon_sym_BSLASHtvolcite] = ACTIONS(4967), - [anon_sym_BSLASHTvolcite] = ACTIONS(4967), - [anon_sym_BSLASHavolcite] = ACTIONS(4967), - [anon_sym_BSLASHAvolcite] = ACTIONS(4967), - [anon_sym_BSLASHnotecite] = ACTIONS(4967), - [anon_sym_BSLASHNotecite] = ACTIONS(4967), - [anon_sym_BSLASHpnotecite] = ACTIONS(4967), - [anon_sym_BSLASHPnotecite] = ACTIONS(4967), - [anon_sym_BSLASHfnotecite] = ACTIONS(4967), - [anon_sym_BSLASHlabel] = ACTIONS(4967), - [anon_sym_BSLASHref] = ACTIONS(4967), - [anon_sym_BSLASHeqref] = ACTIONS(4967), - [anon_sym_BSLASHvref] = ACTIONS(4967), - [anon_sym_BSLASHVref] = ACTIONS(4967), - [anon_sym_BSLASHautoref] = ACTIONS(4967), - [anon_sym_BSLASHpageref] = ACTIONS(4967), - [anon_sym_BSLASHcref] = ACTIONS(4967), - [anon_sym_BSLASHCref] = ACTIONS(4967), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnameCref] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHlabelcref] = ACTIONS(4967), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCrefrange] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnewlabel] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4965), - [anon_sym_BSLASHdef] = ACTIONS(4967), - [anon_sym_BSLASHlet] = ACTIONS(4967), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4967), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4967), - [anon_sym_BSLASHgls] = ACTIONS(4967), - [anon_sym_BSLASHGls] = ACTIONS(4967), - [anon_sym_BSLASHGLS] = ACTIONS(4967), - [anon_sym_BSLASHglspl] = ACTIONS(4967), - [anon_sym_BSLASHGlspl] = ACTIONS(4967), - [anon_sym_BSLASHGLSpl] = ACTIONS(4967), - [anon_sym_BSLASHglsdisp] = ACTIONS(4967), - [anon_sym_BSLASHglslink] = ACTIONS(4967), - [anon_sym_BSLASHglstext] = ACTIONS(4967), - [anon_sym_BSLASHGlstext] = ACTIONS(4967), - [anon_sym_BSLASHGLStext] = ACTIONS(4967), - [anon_sym_BSLASHglsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4967), - [anon_sym_BSLASHglsplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSplural] = ACTIONS(4967), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHglsname] = ACTIONS(4967), - [anon_sym_BSLASHGlsname] = ACTIONS(4967), - [anon_sym_BSLASHGLSname] = ACTIONS(4967), - [anon_sym_BSLASHglssymbol] = ACTIONS(4967), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4967), - [anon_sym_BSLASHglsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4967), - [anon_sym_BSLASHglsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4967), - [anon_sym_BSLASHglsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4967), - [anon_sym_BSLASHglsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4967), - [anon_sym_BSLASHglsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4967), - [anon_sym_BSLASHnewacronym] = ACTIONS(4967), - [anon_sym_BSLASHacrshort] = ACTIONS(4967), - [anon_sym_BSLASHAcrshort] = ACTIONS(4967), - [anon_sym_BSLASHACRshort] = ACTIONS(4967), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4967), - [anon_sym_BSLASHacrlong] = ACTIONS(4967), - [anon_sym_BSLASHAcrlong] = ACTIONS(4967), - [anon_sym_BSLASHACRlong] = ACTIONS(4967), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4967), - [anon_sym_BSLASHacrfull] = ACTIONS(4967), - [anon_sym_BSLASHAcrfull] = ACTIONS(4967), - [anon_sym_BSLASHACRfull] = ACTIONS(4967), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4967), - [anon_sym_BSLASHacs] = ACTIONS(4967), - [anon_sym_BSLASHAcs] = ACTIONS(4967), - [anon_sym_BSLASHacsp] = ACTIONS(4967), - [anon_sym_BSLASHAcsp] = ACTIONS(4967), - [anon_sym_BSLASHacl] = ACTIONS(4967), - [anon_sym_BSLASHAcl] = ACTIONS(4967), - [anon_sym_BSLASHaclp] = ACTIONS(4967), - [anon_sym_BSLASHAclp] = ACTIONS(4967), - [anon_sym_BSLASHacf] = ACTIONS(4967), - [anon_sym_BSLASHAcf] = ACTIONS(4967), - [anon_sym_BSLASHacfp] = ACTIONS(4967), - [anon_sym_BSLASHAcfp] = ACTIONS(4967), - [anon_sym_BSLASHac] = ACTIONS(4967), - [anon_sym_BSLASHAc] = ACTIONS(4967), - [anon_sym_BSLASHacp] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4967), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4967), - [anon_sym_BSLASHcolor] = ACTIONS(4967), - [anon_sym_BSLASHcolorbox] = ACTIONS(4967), - [anon_sym_BSLASHtextcolor] = ACTIONS(4967), - [anon_sym_BSLASHpagecolor] = ACTIONS(4967), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4967), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4967), + [anon_sym_BSLASHiffalse] = ACTIONS(5309), + [anon_sym_LPAREN] = ACTIONS(5307), + [anon_sym_RPAREN] = ACTIONS(5307), + [anon_sym_LBRACK] = ACTIONS(5307), + [anon_sym_RBRACK] = ACTIONS(5307), + [anon_sym_COMMA] = ACTIONS(5307), + [anon_sym_LBRACE] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(5307), + [sym_word] = ACTIONS(5309), + [sym_placeholder] = ACTIONS(5307), + [anon_sym_PLUS] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5309), + [anon_sym_STAR] = ACTIONS(5309), + [anon_sym_SLASH] = ACTIONS(5309), + [anon_sym_CARET] = ACTIONS(5309), + [anon_sym__] = ACTIONS(5309), + [anon_sym_LT] = ACTIONS(5309), + [anon_sym_GT] = ACTIONS(5309), + [anon_sym_BANG] = ACTIONS(5309), + [anon_sym_PIPE] = ACTIONS(5309), + [anon_sym_COLON] = ACTIONS(5309), + [anon_sym_SQUOTE] = ACTIONS(5309), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5307), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5307), + [anon_sym_BSLASHusepackage] = ACTIONS(5309), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), + [anon_sym_BSLASHinclude] = ACTIONS(5309), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), + [anon_sym_BSLASHinput] = ACTIONS(5309), + [anon_sym_BSLASHsubfile] = ACTIONS(5309), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), + [anon_sym_BSLASHbibliography] = ACTIONS(5309), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), + [anon_sym_BSLASHincludesvg] = ACTIONS(5309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), + [anon_sym_BSLASHimport] = ACTIONS(5309), + [anon_sym_BSLASHsubimport] = ACTIONS(5309), + [anon_sym_BSLASHinputfrom] = ACTIONS(5309), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), + [anon_sym_BSLASHincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHcaption] = ACTIONS(5309), + [anon_sym_BSLASHcite] = ACTIONS(5309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCite] = ACTIONS(5309), + [anon_sym_BSLASHnocite] = ACTIONS(5309), + [anon_sym_BSLASHcitet] = ACTIONS(5309), + [anon_sym_BSLASHcitep] = ACTIONS(5309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteauthor] = ACTIONS(5309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitetitle] = ACTIONS(5309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteyear] = ACTIONS(5309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitedate] = ACTIONS(5309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteurl] = ACTIONS(5309), + [anon_sym_BSLASHfullcite] = ACTIONS(5309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), + [anon_sym_BSLASHcitealt] = ACTIONS(5309), + [anon_sym_BSLASHcitealp] = ACTIONS(5309), + [anon_sym_BSLASHcitetext] = ACTIONS(5309), + [anon_sym_BSLASHparencite] = ACTIONS(5309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHParencite] = ACTIONS(5309), + [anon_sym_BSLASHfootcite] = ACTIONS(5309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), + [anon_sym_BSLASHtextcite] = ACTIONS(5309), + [anon_sym_BSLASHTextcite] = ACTIONS(5309), + [anon_sym_BSLASHsmartcite] = ACTIONS(5309), + [anon_sym_BSLASHSmartcite] = ACTIONS(5309), + [anon_sym_BSLASHsupercite] = ACTIONS(5309), + [anon_sym_BSLASHautocite] = ACTIONS(5309), + [anon_sym_BSLASHAutocite] = ACTIONS(5309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHvolcite] = ACTIONS(5309), + [anon_sym_BSLASHVolcite] = ACTIONS(5309), + [anon_sym_BSLASHpvolcite] = ACTIONS(5309), + [anon_sym_BSLASHPvolcite] = ACTIONS(5309), + [anon_sym_BSLASHfvolcite] = ACTIONS(5309), + [anon_sym_BSLASHftvolcite] = ACTIONS(5309), + [anon_sym_BSLASHsvolcite] = ACTIONS(5309), + [anon_sym_BSLASHSvolcite] = ACTIONS(5309), + [anon_sym_BSLASHtvolcite] = ACTIONS(5309), + [anon_sym_BSLASHTvolcite] = ACTIONS(5309), + [anon_sym_BSLASHavolcite] = ACTIONS(5309), + [anon_sym_BSLASHAvolcite] = ACTIONS(5309), + [anon_sym_BSLASHnotecite] = ACTIONS(5309), + [anon_sym_BSLASHNotecite] = ACTIONS(5309), + [anon_sym_BSLASHpnotecite] = ACTIONS(5309), + [anon_sym_BSLASHPnotecite] = ACTIONS(5309), + [anon_sym_BSLASHfnotecite] = ACTIONS(5309), + [anon_sym_BSLASHlabel] = ACTIONS(5309), + [anon_sym_BSLASHref] = ACTIONS(5309), + [anon_sym_BSLASHeqref] = ACTIONS(5309), + [anon_sym_BSLASHvref] = ACTIONS(5309), + [anon_sym_BSLASHVref] = ACTIONS(5309), + [anon_sym_BSLASHautoref] = ACTIONS(5309), + [anon_sym_BSLASHpageref] = ACTIONS(5309), + [anon_sym_BSLASHcref] = ACTIONS(5309), + [anon_sym_BSLASHCref] = ACTIONS(5309), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnameCref] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHlabelcref] = ACTIONS(5309), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCrefrange] = ACTIONS(5309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnewlabel] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), + [anon_sym_BSLASHdef] = ACTIONS(5309), + [anon_sym_BSLASHlet] = ACTIONS(5309), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), + [anon_sym_BSLASHgls] = ACTIONS(5309), + [anon_sym_BSLASHGls] = ACTIONS(5309), + [anon_sym_BSLASHGLS] = ACTIONS(5309), + [anon_sym_BSLASHglspl] = ACTIONS(5309), + [anon_sym_BSLASHGlspl] = ACTIONS(5309), + [anon_sym_BSLASHGLSpl] = ACTIONS(5309), + [anon_sym_BSLASHglsdisp] = ACTIONS(5309), + [anon_sym_BSLASHglslink] = ACTIONS(5309), + [anon_sym_BSLASHglstext] = ACTIONS(5309), + [anon_sym_BSLASHGlstext] = ACTIONS(5309), + [anon_sym_BSLASHGLStext] = ACTIONS(5309), + [anon_sym_BSLASHglsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), + [anon_sym_BSLASHglsplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSplural] = ACTIONS(5309), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHglsname] = ACTIONS(5309), + [anon_sym_BSLASHGlsname] = ACTIONS(5309), + [anon_sym_BSLASHGLSname] = ACTIONS(5309), + [anon_sym_BSLASHglssymbol] = ACTIONS(5309), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), + [anon_sym_BSLASHglsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), + [anon_sym_BSLASHglsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), + [anon_sym_BSLASHglsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), + [anon_sym_BSLASHglsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), + [anon_sym_BSLASHglsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), + [anon_sym_BSLASHnewacronym] = ACTIONS(5309), + [anon_sym_BSLASHacrshort] = ACTIONS(5309), + [anon_sym_BSLASHAcrshort] = ACTIONS(5309), + [anon_sym_BSLASHACRshort] = ACTIONS(5309), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), + [anon_sym_BSLASHacrlong] = ACTIONS(5309), + [anon_sym_BSLASHAcrlong] = ACTIONS(5309), + [anon_sym_BSLASHACRlong] = ACTIONS(5309), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), + [anon_sym_BSLASHacrfull] = ACTIONS(5309), + [anon_sym_BSLASHAcrfull] = ACTIONS(5309), + [anon_sym_BSLASHACRfull] = ACTIONS(5309), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), + [anon_sym_BSLASHacs] = ACTIONS(5309), + [anon_sym_BSLASHAcs] = ACTIONS(5309), + [anon_sym_BSLASHacsp] = ACTIONS(5309), + [anon_sym_BSLASHAcsp] = ACTIONS(5309), + [anon_sym_BSLASHacl] = ACTIONS(5309), + [anon_sym_BSLASHAcl] = ACTIONS(5309), + [anon_sym_BSLASHaclp] = ACTIONS(5309), + [anon_sym_BSLASHAclp] = ACTIONS(5309), + [anon_sym_BSLASHacf] = ACTIONS(5309), + [anon_sym_BSLASHAcf] = ACTIONS(5309), + [anon_sym_BSLASHacfp] = ACTIONS(5309), + [anon_sym_BSLASHAcfp] = ACTIONS(5309), + [anon_sym_BSLASHac] = ACTIONS(5309), + [anon_sym_BSLASHAc] = ACTIONS(5309), + [anon_sym_BSLASHacp] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), + [anon_sym_BSLASHcolor] = ACTIONS(5309), + [anon_sym_BSLASHcolorbox] = ACTIONS(5309), + [anon_sym_BSLASHtextcolor] = ACTIONS(5309), + [anon_sym_BSLASHpagecolor] = ACTIONS(5309), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), + [anon_sym_BSLASHtext] = ACTIONS(5309), + [anon_sym_BSLASHintertext] = ACTIONS(5309), + [anon_sym_shortintertext] = ACTIONS(5309), }, - [1484] = { - [sym_command_name] = ACTIONS(4971), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4971), - [anon_sym_LPAREN] = ACTIONS(4969), - [anon_sym_RPAREN] = ACTIONS(4969), - [anon_sym_LBRACK] = ACTIONS(4969), - [anon_sym_RBRACK] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_LBRACE] = ACTIONS(4969), - [anon_sym_RBRACE] = ACTIONS(4969), - [sym_word] = ACTIONS(4971), - [sym_placeholder] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_CARET] = ACTIONS(4971), - [anon_sym__] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4969), - [anon_sym_DOLLAR] = ACTIONS(4971), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4969), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4969), - [anon_sym_BSLASHusepackage] = ACTIONS(4971), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4971), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4971), - [anon_sym_BSLASHinclude] = ACTIONS(4971), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4971), - [anon_sym_BSLASHinput] = ACTIONS(4971), - [anon_sym_BSLASHsubfile] = ACTIONS(4971), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4971), - [anon_sym_BSLASHbibliography] = ACTIONS(4971), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4971), - [anon_sym_BSLASHincludesvg] = ACTIONS(4971), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4971), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4971), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4971), - [anon_sym_BSLASHimport] = ACTIONS(4971), - [anon_sym_BSLASHsubimport] = ACTIONS(4971), - [anon_sym_BSLASHinputfrom] = ACTIONS(4971), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4971), - [anon_sym_BSLASHincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHcaption] = ACTIONS(4971), - [anon_sym_BSLASHcite] = ACTIONS(4971), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCite] = ACTIONS(4971), - [anon_sym_BSLASHnocite] = ACTIONS(4971), - [anon_sym_BSLASHcitet] = ACTIONS(4971), - [anon_sym_BSLASHcitep] = ACTIONS(4971), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteyear] = ACTIONS(4971), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitedate] = ACTIONS(4971), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteurl] = ACTIONS(4971), - [anon_sym_BSLASHfullcite] = ACTIONS(4971), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4971), - [anon_sym_BSLASHcitealt] = ACTIONS(4971), - [anon_sym_BSLASHcitealp] = ACTIONS(4971), - [anon_sym_BSLASHcitetext] = ACTIONS(4971), - [anon_sym_BSLASHparencite] = ACTIONS(4971), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHParencite] = ACTIONS(4971), - [anon_sym_BSLASHfootcite] = ACTIONS(4971), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4971), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4971), - [anon_sym_BSLASHtextcite] = ACTIONS(4971), - [anon_sym_BSLASHTextcite] = ACTIONS(4971), - [anon_sym_BSLASHsmartcite] = ACTIONS(4971), - [anon_sym_BSLASHSmartcite] = ACTIONS(4971), - [anon_sym_BSLASHsupercite] = ACTIONS(4971), - [anon_sym_BSLASHautocite] = ACTIONS(4971), - [anon_sym_BSLASHAutocite] = ACTIONS(4971), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHvolcite] = ACTIONS(4971), - [anon_sym_BSLASHVolcite] = ACTIONS(4971), - [anon_sym_BSLASHpvolcite] = ACTIONS(4971), - [anon_sym_BSLASHPvolcite] = ACTIONS(4971), - [anon_sym_BSLASHfvolcite] = ACTIONS(4971), - [anon_sym_BSLASHftvolcite] = ACTIONS(4971), - [anon_sym_BSLASHsvolcite] = ACTIONS(4971), - [anon_sym_BSLASHSvolcite] = ACTIONS(4971), - [anon_sym_BSLASHtvolcite] = ACTIONS(4971), - [anon_sym_BSLASHTvolcite] = ACTIONS(4971), - [anon_sym_BSLASHavolcite] = ACTIONS(4971), - [anon_sym_BSLASHAvolcite] = ACTIONS(4971), - [anon_sym_BSLASHnotecite] = ACTIONS(4971), - [anon_sym_BSLASHNotecite] = ACTIONS(4971), - [anon_sym_BSLASHpnotecite] = ACTIONS(4971), - [anon_sym_BSLASHPnotecite] = ACTIONS(4971), - [anon_sym_BSLASHfnotecite] = ACTIONS(4971), - [anon_sym_BSLASHlabel] = ACTIONS(4971), - [anon_sym_BSLASHref] = ACTIONS(4971), - [anon_sym_BSLASHeqref] = ACTIONS(4971), - [anon_sym_BSLASHvref] = ACTIONS(4971), - [anon_sym_BSLASHVref] = ACTIONS(4971), - [anon_sym_BSLASHautoref] = ACTIONS(4971), - [anon_sym_BSLASHpageref] = ACTIONS(4971), - [anon_sym_BSLASHcref] = ACTIONS(4971), - [anon_sym_BSLASHCref] = ACTIONS(4971), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnameCref] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHlabelcref] = ACTIONS(4971), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnewlabel] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4969), - [anon_sym_BSLASHdef] = ACTIONS(4971), - [anon_sym_BSLASHlet] = ACTIONS(4971), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4971), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4971), - [anon_sym_BSLASHgls] = ACTIONS(4971), - [anon_sym_BSLASHGls] = ACTIONS(4971), - [anon_sym_BSLASHGLS] = ACTIONS(4971), - [anon_sym_BSLASHglspl] = ACTIONS(4971), - [anon_sym_BSLASHGlspl] = ACTIONS(4971), - [anon_sym_BSLASHGLSpl] = ACTIONS(4971), - [anon_sym_BSLASHglsdisp] = ACTIONS(4971), - [anon_sym_BSLASHglslink] = ACTIONS(4971), - [anon_sym_BSLASHglstext] = ACTIONS(4971), - [anon_sym_BSLASHGlstext] = ACTIONS(4971), - [anon_sym_BSLASHGLStext] = ACTIONS(4971), - [anon_sym_BSLASHglsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4971), - [anon_sym_BSLASHglsplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSplural] = ACTIONS(4971), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHglsname] = ACTIONS(4971), - [anon_sym_BSLASHGlsname] = ACTIONS(4971), - [anon_sym_BSLASHGLSname] = ACTIONS(4971), - [anon_sym_BSLASHglssymbol] = ACTIONS(4971), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4971), - [anon_sym_BSLASHglsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4971), - [anon_sym_BSLASHglsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4971), - [anon_sym_BSLASHglsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4971), - [anon_sym_BSLASHglsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4971), - [anon_sym_BSLASHglsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4971), - [anon_sym_BSLASHnewacronym] = ACTIONS(4971), - [anon_sym_BSLASHacrshort] = ACTIONS(4971), - [anon_sym_BSLASHAcrshort] = ACTIONS(4971), - [anon_sym_BSLASHACRshort] = ACTIONS(4971), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4971), - [anon_sym_BSLASHacrlong] = ACTIONS(4971), - [anon_sym_BSLASHAcrlong] = ACTIONS(4971), - [anon_sym_BSLASHACRlong] = ACTIONS(4971), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4971), - [anon_sym_BSLASHacrfull] = ACTIONS(4971), - [anon_sym_BSLASHAcrfull] = ACTIONS(4971), - [anon_sym_BSLASHACRfull] = ACTIONS(4971), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4971), - [anon_sym_BSLASHacs] = ACTIONS(4971), - [anon_sym_BSLASHAcs] = ACTIONS(4971), - [anon_sym_BSLASHacsp] = ACTIONS(4971), - [anon_sym_BSLASHAcsp] = ACTIONS(4971), - [anon_sym_BSLASHacl] = ACTIONS(4971), - [anon_sym_BSLASHAcl] = ACTIONS(4971), - [anon_sym_BSLASHaclp] = ACTIONS(4971), - [anon_sym_BSLASHAclp] = ACTIONS(4971), - [anon_sym_BSLASHacf] = ACTIONS(4971), - [anon_sym_BSLASHAcf] = ACTIONS(4971), - [anon_sym_BSLASHacfp] = ACTIONS(4971), - [anon_sym_BSLASHAcfp] = ACTIONS(4971), - [anon_sym_BSLASHac] = ACTIONS(4971), - [anon_sym_BSLASHAc] = ACTIONS(4971), - [anon_sym_BSLASHacp] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4971), - [anon_sym_BSLASHcolor] = ACTIONS(4971), - [anon_sym_BSLASHcolorbox] = ACTIONS(4971), - [anon_sym_BSLASHtextcolor] = ACTIONS(4971), - [anon_sym_BSLASHpagecolor] = ACTIONS(4971), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4971), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4971), + [1440] = { + [sym_command_name] = ACTIONS(5285), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5285), + [anon_sym_LPAREN] = ACTIONS(5283), + [anon_sym_RPAREN] = ACTIONS(5283), + [anon_sym_LBRACK] = ACTIONS(5283), + [anon_sym_RBRACK] = ACTIONS(5283), + [anon_sym_COMMA] = ACTIONS(5283), + [anon_sym_LBRACE] = ACTIONS(5283), + [anon_sym_RBRACE] = ACTIONS(5283), + [sym_word] = ACTIONS(5285), + [sym_placeholder] = ACTIONS(5283), + [anon_sym_PLUS] = ACTIONS(5285), + [anon_sym_DASH] = ACTIONS(5285), + [anon_sym_STAR] = ACTIONS(5285), + [anon_sym_SLASH] = ACTIONS(5285), + [anon_sym_CARET] = ACTIONS(5285), + [anon_sym__] = ACTIONS(5285), + [anon_sym_LT] = ACTIONS(5285), + [anon_sym_GT] = ACTIONS(5285), + [anon_sym_BANG] = ACTIONS(5285), + [anon_sym_PIPE] = ACTIONS(5285), + [anon_sym_COLON] = ACTIONS(5285), + [anon_sym_SQUOTE] = ACTIONS(5285), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5283), + [anon_sym_DOLLAR] = ACTIONS(5285), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5283), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5283), + [anon_sym_BSLASHusepackage] = ACTIONS(5285), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5285), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5285), + [anon_sym_BSLASHinclude] = ACTIONS(5285), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5285), + [anon_sym_BSLASHinput] = ACTIONS(5285), + [anon_sym_BSLASHsubfile] = ACTIONS(5285), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5285), + [anon_sym_BSLASHbibliography] = ACTIONS(5285), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5285), + [anon_sym_BSLASHincludesvg] = ACTIONS(5285), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5285), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5285), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5285), + [anon_sym_BSLASHimport] = ACTIONS(5285), + [anon_sym_BSLASHsubimport] = ACTIONS(5285), + [anon_sym_BSLASHinputfrom] = ACTIONS(5285), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5285), + [anon_sym_BSLASHincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5285), + [anon_sym_BSLASHcaption] = ACTIONS(5285), + [anon_sym_BSLASHcite] = ACTIONS(5285), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCite] = ACTIONS(5285), + [anon_sym_BSLASHnocite] = ACTIONS(5285), + [anon_sym_BSLASHcitet] = ACTIONS(5285), + [anon_sym_BSLASHcitep] = ACTIONS(5285), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteauthor] = ACTIONS(5285), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5285), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitetitle] = ACTIONS(5285), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteyear] = ACTIONS(5285), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5283), + [anon_sym_BSLASHcitedate] = ACTIONS(5285), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5283), + [anon_sym_BSLASHciteurl] = ACTIONS(5285), + [anon_sym_BSLASHfullcite] = ACTIONS(5285), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5285), + [anon_sym_BSLASHcitealt] = ACTIONS(5285), + [anon_sym_BSLASHcitealp] = ACTIONS(5285), + [anon_sym_BSLASHcitetext] = ACTIONS(5285), + [anon_sym_BSLASHparencite] = ACTIONS(5285), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHParencite] = ACTIONS(5285), + [anon_sym_BSLASHfootcite] = ACTIONS(5285), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5285), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5285), + [anon_sym_BSLASHtextcite] = ACTIONS(5285), + [anon_sym_BSLASHTextcite] = ACTIONS(5285), + [anon_sym_BSLASHsmartcite] = ACTIONS(5285), + [anon_sym_BSLASHSmartcite] = ACTIONS(5285), + [anon_sym_BSLASHsupercite] = ACTIONS(5285), + [anon_sym_BSLASHautocite] = ACTIONS(5285), + [anon_sym_BSLASHAutocite] = ACTIONS(5285), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5283), + [anon_sym_BSLASHvolcite] = ACTIONS(5285), + [anon_sym_BSLASHVolcite] = ACTIONS(5285), + [anon_sym_BSLASHpvolcite] = ACTIONS(5285), + [anon_sym_BSLASHPvolcite] = ACTIONS(5285), + [anon_sym_BSLASHfvolcite] = ACTIONS(5285), + [anon_sym_BSLASHftvolcite] = ACTIONS(5285), + [anon_sym_BSLASHsvolcite] = ACTIONS(5285), + [anon_sym_BSLASHSvolcite] = ACTIONS(5285), + [anon_sym_BSLASHtvolcite] = ACTIONS(5285), + [anon_sym_BSLASHTvolcite] = ACTIONS(5285), + [anon_sym_BSLASHavolcite] = ACTIONS(5285), + [anon_sym_BSLASHAvolcite] = ACTIONS(5285), + [anon_sym_BSLASHnotecite] = ACTIONS(5285), + [anon_sym_BSLASHNotecite] = ACTIONS(5285), + [anon_sym_BSLASHpnotecite] = ACTIONS(5285), + [anon_sym_BSLASHPnotecite] = ACTIONS(5285), + [anon_sym_BSLASHfnotecite] = ACTIONS(5285), + [anon_sym_BSLASHlabel] = ACTIONS(5285), + [anon_sym_BSLASHref] = ACTIONS(5285), + [anon_sym_BSLASHeqref] = ACTIONS(5285), + [anon_sym_BSLASHvref] = ACTIONS(5285), + [anon_sym_BSLASHVref] = ACTIONS(5285), + [anon_sym_BSLASHautoref] = ACTIONS(5285), + [anon_sym_BSLASHpageref] = ACTIONS(5285), + [anon_sym_BSLASHcref] = ACTIONS(5285), + [anon_sym_BSLASHCref] = ACTIONS(5285), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnameCref] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5285), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5285), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5285), + [anon_sym_BSLASHlabelcref] = ACTIONS(5285), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange] = ACTIONS(5285), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHCrefrange] = ACTIONS(5285), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5283), + [anon_sym_BSLASHnewlabel] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand] = ACTIONS(5285), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5285), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5285), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5283), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5285), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5283), + [anon_sym_BSLASHdef] = ACTIONS(5285), + [anon_sym_BSLASHlet] = ACTIONS(5285), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5285), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5285), + [anon_sym_BSLASHgls] = ACTIONS(5285), + [anon_sym_BSLASHGls] = ACTIONS(5285), + [anon_sym_BSLASHGLS] = ACTIONS(5285), + [anon_sym_BSLASHglspl] = ACTIONS(5285), + [anon_sym_BSLASHGlspl] = ACTIONS(5285), + [anon_sym_BSLASHGLSpl] = ACTIONS(5285), + [anon_sym_BSLASHglsdisp] = ACTIONS(5285), + [anon_sym_BSLASHglslink] = ACTIONS(5285), + [anon_sym_BSLASHglstext] = ACTIONS(5285), + [anon_sym_BSLASHGlstext] = ACTIONS(5285), + [anon_sym_BSLASHGLStext] = ACTIONS(5285), + [anon_sym_BSLASHglsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5285), + [anon_sym_BSLASHglsplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSplural] = ACTIONS(5285), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5285), + [anon_sym_BSLASHglsname] = ACTIONS(5285), + [anon_sym_BSLASHGlsname] = ACTIONS(5285), + [anon_sym_BSLASHGLSname] = ACTIONS(5285), + [anon_sym_BSLASHglssymbol] = ACTIONS(5285), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5285), + [anon_sym_BSLASHglsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5285), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5285), + [anon_sym_BSLASHglsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5285), + [anon_sym_BSLASHglsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5285), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5285), + [anon_sym_BSLASHglsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5285), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5285), + [anon_sym_BSLASHglsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5285), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5285), + [anon_sym_BSLASHnewacronym] = ACTIONS(5285), + [anon_sym_BSLASHacrshort] = ACTIONS(5285), + [anon_sym_BSLASHAcrshort] = ACTIONS(5285), + [anon_sym_BSLASHACRshort] = ACTIONS(5285), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5285), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5285), + [anon_sym_BSLASHacrlong] = ACTIONS(5285), + [anon_sym_BSLASHAcrlong] = ACTIONS(5285), + [anon_sym_BSLASHACRlong] = ACTIONS(5285), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5285), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5285), + [anon_sym_BSLASHacrfull] = ACTIONS(5285), + [anon_sym_BSLASHAcrfull] = ACTIONS(5285), + [anon_sym_BSLASHACRfull] = ACTIONS(5285), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5285), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5285), + [anon_sym_BSLASHacs] = ACTIONS(5285), + [anon_sym_BSLASHAcs] = ACTIONS(5285), + [anon_sym_BSLASHacsp] = ACTIONS(5285), + [anon_sym_BSLASHAcsp] = ACTIONS(5285), + [anon_sym_BSLASHacl] = ACTIONS(5285), + [anon_sym_BSLASHAcl] = ACTIONS(5285), + [anon_sym_BSLASHaclp] = ACTIONS(5285), + [anon_sym_BSLASHAclp] = ACTIONS(5285), + [anon_sym_BSLASHacf] = ACTIONS(5285), + [anon_sym_BSLASHAcf] = ACTIONS(5285), + [anon_sym_BSLASHacfp] = ACTIONS(5285), + [anon_sym_BSLASHAcfp] = ACTIONS(5285), + [anon_sym_BSLASHac] = ACTIONS(5285), + [anon_sym_BSLASHAc] = ACTIONS(5285), + [anon_sym_BSLASHacp] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5285), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5285), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5285), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5285), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5285), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5285), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5285), + [anon_sym_BSLASHcolor] = ACTIONS(5285), + [anon_sym_BSLASHcolorbox] = ACTIONS(5285), + [anon_sym_BSLASHtextcolor] = ACTIONS(5285), + [anon_sym_BSLASHpagecolor] = ACTIONS(5285), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5285), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5285), + [anon_sym_BSLASHtext] = ACTIONS(5285), + [anon_sym_BSLASHintertext] = ACTIONS(5285), + [anon_sym_shortintertext] = ACTIONS(5285), }, - [1485] = { - [sym_command_name] = ACTIONS(4975), + [1441] = { + [sym_command_name] = ACTIONS(5157), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5157), + [anon_sym_LPAREN] = ACTIONS(5155), + [anon_sym_RPAREN] = ACTIONS(5155), + [anon_sym_LBRACK] = ACTIONS(5155), + [anon_sym_RBRACK] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_LBRACE] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [sym_word] = ACTIONS(5157), + [sym_placeholder] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(5157), + [anon_sym_STAR] = ACTIONS(5157), + [anon_sym_SLASH] = ACTIONS(5157), + [anon_sym_CARET] = ACTIONS(5157), + [anon_sym__] = ACTIONS(5157), + [anon_sym_LT] = ACTIONS(5157), + [anon_sym_GT] = ACTIONS(5157), + [anon_sym_BANG] = ACTIONS(5157), + [anon_sym_PIPE] = ACTIONS(5157), + [anon_sym_COLON] = ACTIONS(5157), + [anon_sym_SQUOTE] = ACTIONS(5157), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5155), + [anon_sym_DOLLAR] = ACTIONS(5157), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5155), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5155), + [anon_sym_BSLASHusepackage] = ACTIONS(5157), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), + [anon_sym_BSLASHinclude] = ACTIONS(5157), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), + [anon_sym_BSLASHinput] = ACTIONS(5157), + [anon_sym_BSLASHsubfile] = ACTIONS(5157), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), + [anon_sym_BSLASHbibliography] = ACTIONS(5157), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5157), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), + [anon_sym_BSLASHimport] = ACTIONS(5157), + [anon_sym_BSLASHsubimport] = ACTIONS(5157), + [anon_sym_BSLASHinputfrom] = ACTIONS(5157), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), + [anon_sym_BSLASHincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHcaption] = ACTIONS(5157), + [anon_sym_BSLASHcite] = ACTIONS(5157), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCite] = ACTIONS(5157), + [anon_sym_BSLASHnocite] = ACTIONS(5157), + [anon_sym_BSLASHcitet] = ACTIONS(5157), + [anon_sym_BSLASHcitep] = ACTIONS(5157), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteauthor] = ACTIONS(5157), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitetitle] = ACTIONS(5157), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteyear] = ACTIONS(5157), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitedate] = ACTIONS(5157), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteurl] = ACTIONS(5157), + [anon_sym_BSLASHfullcite] = ACTIONS(5157), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), + [anon_sym_BSLASHcitealt] = ACTIONS(5157), + [anon_sym_BSLASHcitealp] = ACTIONS(5157), + [anon_sym_BSLASHcitetext] = ACTIONS(5157), + [anon_sym_BSLASHparencite] = ACTIONS(5157), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHParencite] = ACTIONS(5157), + [anon_sym_BSLASHfootcite] = ACTIONS(5157), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), + [anon_sym_BSLASHtextcite] = ACTIONS(5157), + [anon_sym_BSLASHTextcite] = ACTIONS(5157), + [anon_sym_BSLASHsmartcite] = ACTIONS(5157), + [anon_sym_BSLASHSmartcite] = ACTIONS(5157), + [anon_sym_BSLASHsupercite] = ACTIONS(5157), + [anon_sym_BSLASHautocite] = ACTIONS(5157), + [anon_sym_BSLASHAutocite] = ACTIONS(5157), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHvolcite] = ACTIONS(5157), + [anon_sym_BSLASHVolcite] = ACTIONS(5157), + [anon_sym_BSLASHpvolcite] = ACTIONS(5157), + [anon_sym_BSLASHPvolcite] = ACTIONS(5157), + [anon_sym_BSLASHfvolcite] = ACTIONS(5157), + [anon_sym_BSLASHftvolcite] = ACTIONS(5157), + [anon_sym_BSLASHsvolcite] = ACTIONS(5157), + [anon_sym_BSLASHSvolcite] = ACTIONS(5157), + [anon_sym_BSLASHtvolcite] = ACTIONS(5157), + [anon_sym_BSLASHTvolcite] = ACTIONS(5157), + [anon_sym_BSLASHavolcite] = ACTIONS(5157), + [anon_sym_BSLASHAvolcite] = ACTIONS(5157), + [anon_sym_BSLASHnotecite] = ACTIONS(5157), + [anon_sym_BSLASHNotecite] = ACTIONS(5157), + [anon_sym_BSLASHpnotecite] = ACTIONS(5157), + [anon_sym_BSLASHPnotecite] = ACTIONS(5157), + [anon_sym_BSLASHfnotecite] = ACTIONS(5157), + [anon_sym_BSLASHlabel] = ACTIONS(5157), + [anon_sym_BSLASHref] = ACTIONS(5157), + [anon_sym_BSLASHeqref] = ACTIONS(5157), + [anon_sym_BSLASHvref] = ACTIONS(5157), + [anon_sym_BSLASHVref] = ACTIONS(5157), + [anon_sym_BSLASHautoref] = ACTIONS(5157), + [anon_sym_BSLASHpageref] = ACTIONS(5157), + [anon_sym_BSLASHcref] = ACTIONS(5157), + [anon_sym_BSLASHCref] = ACTIONS(5157), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnameCref] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHlabelcref] = ACTIONS(5157), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCrefrange] = ACTIONS(5157), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnewlabel] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), + [anon_sym_BSLASHdef] = ACTIONS(5157), + [anon_sym_BSLASHlet] = ACTIONS(5157), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), + [anon_sym_BSLASHgls] = ACTIONS(5157), + [anon_sym_BSLASHGls] = ACTIONS(5157), + [anon_sym_BSLASHGLS] = ACTIONS(5157), + [anon_sym_BSLASHglspl] = ACTIONS(5157), + [anon_sym_BSLASHGlspl] = ACTIONS(5157), + [anon_sym_BSLASHGLSpl] = ACTIONS(5157), + [anon_sym_BSLASHglsdisp] = ACTIONS(5157), + [anon_sym_BSLASHglslink] = ACTIONS(5157), + [anon_sym_BSLASHglstext] = ACTIONS(5157), + [anon_sym_BSLASHGlstext] = ACTIONS(5157), + [anon_sym_BSLASHGLStext] = ACTIONS(5157), + [anon_sym_BSLASHglsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), + [anon_sym_BSLASHglsplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSplural] = ACTIONS(5157), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHglsname] = ACTIONS(5157), + [anon_sym_BSLASHGlsname] = ACTIONS(5157), + [anon_sym_BSLASHGLSname] = ACTIONS(5157), + [anon_sym_BSLASHglssymbol] = ACTIONS(5157), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), + [anon_sym_BSLASHglsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), + [anon_sym_BSLASHglsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), + [anon_sym_BSLASHglsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), + [anon_sym_BSLASHglsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), + [anon_sym_BSLASHglsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), + [anon_sym_BSLASHnewacronym] = ACTIONS(5157), + [anon_sym_BSLASHacrshort] = ACTIONS(5157), + [anon_sym_BSLASHAcrshort] = ACTIONS(5157), + [anon_sym_BSLASHACRshort] = ACTIONS(5157), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), + [anon_sym_BSLASHacrlong] = ACTIONS(5157), + [anon_sym_BSLASHAcrlong] = ACTIONS(5157), + [anon_sym_BSLASHACRlong] = ACTIONS(5157), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), + [anon_sym_BSLASHacrfull] = ACTIONS(5157), + [anon_sym_BSLASHAcrfull] = ACTIONS(5157), + [anon_sym_BSLASHACRfull] = ACTIONS(5157), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), + [anon_sym_BSLASHacs] = ACTIONS(5157), + [anon_sym_BSLASHAcs] = ACTIONS(5157), + [anon_sym_BSLASHacsp] = ACTIONS(5157), + [anon_sym_BSLASHAcsp] = ACTIONS(5157), + [anon_sym_BSLASHacl] = ACTIONS(5157), + [anon_sym_BSLASHAcl] = ACTIONS(5157), + [anon_sym_BSLASHaclp] = ACTIONS(5157), + [anon_sym_BSLASHAclp] = ACTIONS(5157), + [anon_sym_BSLASHacf] = ACTIONS(5157), + [anon_sym_BSLASHAcf] = ACTIONS(5157), + [anon_sym_BSLASHacfp] = ACTIONS(5157), + [anon_sym_BSLASHAcfp] = ACTIONS(5157), + [anon_sym_BSLASHac] = ACTIONS(5157), + [anon_sym_BSLASHAc] = ACTIONS(5157), + [anon_sym_BSLASHacp] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), + [anon_sym_BSLASHcolor] = ACTIONS(5157), + [anon_sym_BSLASHcolorbox] = ACTIONS(5157), + [anon_sym_BSLASHtextcolor] = ACTIONS(5157), + [anon_sym_BSLASHpagecolor] = ACTIONS(5157), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), + [anon_sym_BSLASHtext] = ACTIONS(5157), + [anon_sym_BSLASHintertext] = ACTIONS(5157), + [anon_sym_shortintertext] = ACTIONS(5157), + }, + [1442] = { + [sym_command_name] = ACTIONS(5135), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4975), - [anon_sym_LPAREN] = ACTIONS(4973), - [anon_sym_RPAREN] = ACTIONS(4973), - [anon_sym_LBRACK] = ACTIONS(4973), - [anon_sym_RBRACK] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4973), - [anon_sym_LBRACE] = ACTIONS(4973), - [anon_sym_RBRACE] = ACTIONS(4973), - [sym_word] = ACTIONS(4975), - [sym_placeholder] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym__] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4973), - [anon_sym_DOLLAR] = ACTIONS(4975), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4973), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4973), - [anon_sym_BSLASHusepackage] = ACTIONS(4975), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4975), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4975), - [anon_sym_BSLASHinclude] = ACTIONS(4975), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4975), - [anon_sym_BSLASHinput] = ACTIONS(4975), - [anon_sym_BSLASHsubfile] = ACTIONS(4975), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4975), - [anon_sym_BSLASHbibliography] = ACTIONS(4975), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4975), - [anon_sym_BSLASHincludesvg] = ACTIONS(4975), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4975), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4975), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4975), - [anon_sym_BSLASHimport] = ACTIONS(4975), - [anon_sym_BSLASHsubimport] = ACTIONS(4975), - [anon_sym_BSLASHinputfrom] = ACTIONS(4975), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4975), - [anon_sym_BSLASHincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHcaption] = ACTIONS(4975), - [anon_sym_BSLASHcite] = ACTIONS(4975), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCite] = ACTIONS(4975), - [anon_sym_BSLASHnocite] = ACTIONS(4975), - [anon_sym_BSLASHcitet] = ACTIONS(4975), - [anon_sym_BSLASHcitep] = ACTIONS(4975), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor] = ACTIONS(4975), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4975), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle] = ACTIONS(4975), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteyear] = ACTIONS(4975), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitedate] = ACTIONS(4975), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteurl] = ACTIONS(4975), - [anon_sym_BSLASHfullcite] = ACTIONS(4975), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4975), - [anon_sym_BSLASHcitealt] = ACTIONS(4975), - [anon_sym_BSLASHcitealp] = ACTIONS(4975), - [anon_sym_BSLASHcitetext] = ACTIONS(4975), - [anon_sym_BSLASHparencite] = ACTIONS(4975), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHParencite] = ACTIONS(4975), - [anon_sym_BSLASHfootcite] = ACTIONS(4975), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4975), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4975), - [anon_sym_BSLASHtextcite] = ACTIONS(4975), - [anon_sym_BSLASHTextcite] = ACTIONS(4975), - [anon_sym_BSLASHsmartcite] = ACTIONS(4975), - [anon_sym_BSLASHSmartcite] = ACTIONS(4975), - [anon_sym_BSLASHsupercite] = ACTIONS(4975), - [anon_sym_BSLASHautocite] = ACTIONS(4975), - [anon_sym_BSLASHAutocite] = ACTIONS(4975), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHvolcite] = ACTIONS(4975), - [anon_sym_BSLASHVolcite] = ACTIONS(4975), - [anon_sym_BSLASHpvolcite] = ACTIONS(4975), - [anon_sym_BSLASHPvolcite] = ACTIONS(4975), - [anon_sym_BSLASHfvolcite] = ACTIONS(4975), - [anon_sym_BSLASHftvolcite] = ACTIONS(4975), - [anon_sym_BSLASHsvolcite] = ACTIONS(4975), - [anon_sym_BSLASHSvolcite] = ACTIONS(4975), - [anon_sym_BSLASHtvolcite] = ACTIONS(4975), - [anon_sym_BSLASHTvolcite] = ACTIONS(4975), - [anon_sym_BSLASHavolcite] = ACTIONS(4975), - [anon_sym_BSLASHAvolcite] = ACTIONS(4975), - [anon_sym_BSLASHnotecite] = ACTIONS(4975), - [anon_sym_BSLASHNotecite] = ACTIONS(4975), - [anon_sym_BSLASHpnotecite] = ACTIONS(4975), - [anon_sym_BSLASHPnotecite] = ACTIONS(4975), - [anon_sym_BSLASHfnotecite] = ACTIONS(4975), - [anon_sym_BSLASHlabel] = ACTIONS(4975), - [anon_sym_BSLASHref] = ACTIONS(4975), - [anon_sym_BSLASHeqref] = ACTIONS(4975), - [anon_sym_BSLASHvref] = ACTIONS(4975), - [anon_sym_BSLASHVref] = ACTIONS(4975), - [anon_sym_BSLASHautoref] = ACTIONS(4975), - [anon_sym_BSLASHpageref] = ACTIONS(4975), - [anon_sym_BSLASHcref] = ACTIONS(4975), - [anon_sym_BSLASHCref] = ACTIONS(4975), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnameCref] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHlabelcref] = ACTIONS(4975), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange] = ACTIONS(4975), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnewlabel] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4975), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4975), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4975), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4973), - [anon_sym_BSLASHdef] = ACTIONS(4975), - [anon_sym_BSLASHlet] = ACTIONS(4975), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4975), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4975), - [anon_sym_BSLASHgls] = ACTIONS(4975), - [anon_sym_BSLASHGls] = ACTIONS(4975), - [anon_sym_BSLASHGLS] = ACTIONS(4975), - [anon_sym_BSLASHglspl] = ACTIONS(4975), - [anon_sym_BSLASHGlspl] = ACTIONS(4975), - [anon_sym_BSLASHGLSpl] = ACTIONS(4975), - [anon_sym_BSLASHglsdisp] = ACTIONS(4975), - [anon_sym_BSLASHglslink] = ACTIONS(4975), - [anon_sym_BSLASHglstext] = ACTIONS(4975), - [anon_sym_BSLASHGlstext] = ACTIONS(4975), - [anon_sym_BSLASHGLStext] = ACTIONS(4975), - [anon_sym_BSLASHglsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4975), - [anon_sym_BSLASHglsplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSplural] = ACTIONS(4975), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHglsname] = ACTIONS(4975), - [anon_sym_BSLASHGlsname] = ACTIONS(4975), - [anon_sym_BSLASHGLSname] = ACTIONS(4975), - [anon_sym_BSLASHglssymbol] = ACTIONS(4975), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4975), - [anon_sym_BSLASHglsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4975), - [anon_sym_BSLASHglsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4975), - [anon_sym_BSLASHglsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4975), - [anon_sym_BSLASHglsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4975), - [anon_sym_BSLASHglsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4975), - [anon_sym_BSLASHnewacronym] = ACTIONS(4975), - [anon_sym_BSLASHacrshort] = ACTIONS(4975), - [anon_sym_BSLASHAcrshort] = ACTIONS(4975), - [anon_sym_BSLASHACRshort] = ACTIONS(4975), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4975), - [anon_sym_BSLASHacrlong] = ACTIONS(4975), - [anon_sym_BSLASHAcrlong] = ACTIONS(4975), - [anon_sym_BSLASHACRlong] = ACTIONS(4975), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4975), - [anon_sym_BSLASHacrfull] = ACTIONS(4975), - [anon_sym_BSLASHAcrfull] = ACTIONS(4975), - [anon_sym_BSLASHACRfull] = ACTIONS(4975), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4975), - [anon_sym_BSLASHacs] = ACTIONS(4975), - [anon_sym_BSLASHAcs] = ACTIONS(4975), - [anon_sym_BSLASHacsp] = ACTIONS(4975), - [anon_sym_BSLASHAcsp] = ACTIONS(4975), - [anon_sym_BSLASHacl] = ACTIONS(4975), - [anon_sym_BSLASHAcl] = ACTIONS(4975), - [anon_sym_BSLASHaclp] = ACTIONS(4975), - [anon_sym_BSLASHAclp] = ACTIONS(4975), - [anon_sym_BSLASHacf] = ACTIONS(4975), - [anon_sym_BSLASHAcf] = ACTIONS(4975), - [anon_sym_BSLASHacfp] = ACTIONS(4975), - [anon_sym_BSLASHAcfp] = ACTIONS(4975), - [anon_sym_BSLASHac] = ACTIONS(4975), - [anon_sym_BSLASHAc] = ACTIONS(4975), - [anon_sym_BSLASHacp] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4975), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4975), - [anon_sym_BSLASHcolor] = ACTIONS(4975), - [anon_sym_BSLASHcolorbox] = ACTIONS(4975), - [anon_sym_BSLASHtextcolor] = ACTIONS(4975), - [anon_sym_BSLASHpagecolor] = ACTIONS(4975), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4975), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4975), + [anon_sym_BSLASHiffalse] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_RPAREN] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_RBRACK] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [sym_word] = ACTIONS(5135), + [sym_placeholder] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_CARET] = ACTIONS(5135), + [anon_sym__] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_PIPE] = ACTIONS(5135), + [anon_sym_COLON] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5135), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5133), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5133), + [anon_sym_DOLLAR] = ACTIONS(5135), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5133), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5133), + [anon_sym_BSLASHusepackage] = ACTIONS(5135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), + [anon_sym_BSLASHinclude] = ACTIONS(5135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), + [anon_sym_BSLASHinput] = ACTIONS(5135), + [anon_sym_BSLASHsubfile] = ACTIONS(5135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), + [anon_sym_BSLASHbibliography] = ACTIONS(5135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), + [anon_sym_BSLASHincludesvg] = ACTIONS(5135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), + [anon_sym_BSLASHimport] = ACTIONS(5135), + [anon_sym_BSLASHsubimport] = ACTIONS(5135), + [anon_sym_BSLASHinputfrom] = ACTIONS(5135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), + [anon_sym_BSLASHincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHcaption] = ACTIONS(5135), + [anon_sym_BSLASHcite] = ACTIONS(5135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCite] = ACTIONS(5135), + [anon_sym_BSLASHnocite] = ACTIONS(5135), + [anon_sym_BSLASHcitet] = ACTIONS(5135), + [anon_sym_BSLASHcitep] = ACTIONS(5135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteauthor] = ACTIONS(5135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitetitle] = ACTIONS(5135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteyear] = ACTIONS(5135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitedate] = ACTIONS(5135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteurl] = ACTIONS(5135), + [anon_sym_BSLASHfullcite] = ACTIONS(5135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), + [anon_sym_BSLASHcitealt] = ACTIONS(5135), + [anon_sym_BSLASHcitealp] = ACTIONS(5135), + [anon_sym_BSLASHcitetext] = ACTIONS(5135), + [anon_sym_BSLASHparencite] = ACTIONS(5135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHParencite] = ACTIONS(5135), + [anon_sym_BSLASHfootcite] = ACTIONS(5135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), + [anon_sym_BSLASHtextcite] = ACTIONS(5135), + [anon_sym_BSLASHTextcite] = ACTIONS(5135), + [anon_sym_BSLASHsmartcite] = ACTIONS(5135), + [anon_sym_BSLASHSmartcite] = ACTIONS(5135), + [anon_sym_BSLASHsupercite] = ACTIONS(5135), + [anon_sym_BSLASHautocite] = ACTIONS(5135), + [anon_sym_BSLASHAutocite] = ACTIONS(5135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHvolcite] = ACTIONS(5135), + [anon_sym_BSLASHVolcite] = ACTIONS(5135), + [anon_sym_BSLASHpvolcite] = ACTIONS(5135), + [anon_sym_BSLASHPvolcite] = ACTIONS(5135), + [anon_sym_BSLASHfvolcite] = ACTIONS(5135), + [anon_sym_BSLASHftvolcite] = ACTIONS(5135), + [anon_sym_BSLASHsvolcite] = ACTIONS(5135), + [anon_sym_BSLASHSvolcite] = ACTIONS(5135), + [anon_sym_BSLASHtvolcite] = ACTIONS(5135), + [anon_sym_BSLASHTvolcite] = ACTIONS(5135), + [anon_sym_BSLASHavolcite] = ACTIONS(5135), + [anon_sym_BSLASHAvolcite] = ACTIONS(5135), + [anon_sym_BSLASHnotecite] = ACTIONS(5135), + [anon_sym_BSLASHNotecite] = ACTIONS(5135), + [anon_sym_BSLASHpnotecite] = ACTIONS(5135), + [anon_sym_BSLASHPnotecite] = ACTIONS(5135), + [anon_sym_BSLASHfnotecite] = ACTIONS(5135), + [anon_sym_BSLASHlabel] = ACTIONS(5135), + [anon_sym_BSLASHref] = ACTIONS(5135), + [anon_sym_BSLASHeqref] = ACTIONS(5135), + [anon_sym_BSLASHvref] = ACTIONS(5135), + [anon_sym_BSLASHVref] = ACTIONS(5135), + [anon_sym_BSLASHautoref] = ACTIONS(5135), + [anon_sym_BSLASHpageref] = ACTIONS(5135), + [anon_sym_BSLASHcref] = ACTIONS(5135), + [anon_sym_BSLASHCref] = ACTIONS(5135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnameCref] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHlabelcref] = ACTIONS(5135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCrefrange] = ACTIONS(5135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnewlabel] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), + [anon_sym_BSLASHdef] = ACTIONS(5135), + [anon_sym_BSLASHlet] = ACTIONS(5135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), + [anon_sym_BSLASHgls] = ACTIONS(5135), + [anon_sym_BSLASHGls] = ACTIONS(5135), + [anon_sym_BSLASHGLS] = ACTIONS(5135), + [anon_sym_BSLASHglspl] = ACTIONS(5135), + [anon_sym_BSLASHGlspl] = ACTIONS(5135), + [anon_sym_BSLASHGLSpl] = ACTIONS(5135), + [anon_sym_BSLASHglsdisp] = ACTIONS(5135), + [anon_sym_BSLASHglslink] = ACTIONS(5135), + [anon_sym_BSLASHglstext] = ACTIONS(5135), + [anon_sym_BSLASHGlstext] = ACTIONS(5135), + [anon_sym_BSLASHGLStext] = ACTIONS(5135), + [anon_sym_BSLASHglsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), + [anon_sym_BSLASHglsplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSplural] = ACTIONS(5135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHglsname] = ACTIONS(5135), + [anon_sym_BSLASHGlsname] = ACTIONS(5135), + [anon_sym_BSLASHGLSname] = ACTIONS(5135), + [anon_sym_BSLASHglssymbol] = ACTIONS(5135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), + [anon_sym_BSLASHglsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), + [anon_sym_BSLASHglsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), + [anon_sym_BSLASHglsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), + [anon_sym_BSLASHglsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), + [anon_sym_BSLASHglsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), + [anon_sym_BSLASHnewacronym] = ACTIONS(5135), + [anon_sym_BSLASHacrshort] = ACTIONS(5135), + [anon_sym_BSLASHAcrshort] = ACTIONS(5135), + [anon_sym_BSLASHACRshort] = ACTIONS(5135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), + [anon_sym_BSLASHacrlong] = ACTIONS(5135), + [anon_sym_BSLASHAcrlong] = ACTIONS(5135), + [anon_sym_BSLASHACRlong] = ACTIONS(5135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), + [anon_sym_BSLASHacrfull] = ACTIONS(5135), + [anon_sym_BSLASHAcrfull] = ACTIONS(5135), + [anon_sym_BSLASHACRfull] = ACTIONS(5135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), + [anon_sym_BSLASHacs] = ACTIONS(5135), + [anon_sym_BSLASHAcs] = ACTIONS(5135), + [anon_sym_BSLASHacsp] = ACTIONS(5135), + [anon_sym_BSLASHAcsp] = ACTIONS(5135), + [anon_sym_BSLASHacl] = ACTIONS(5135), + [anon_sym_BSLASHAcl] = ACTIONS(5135), + [anon_sym_BSLASHaclp] = ACTIONS(5135), + [anon_sym_BSLASHAclp] = ACTIONS(5135), + [anon_sym_BSLASHacf] = ACTIONS(5135), + [anon_sym_BSLASHAcf] = ACTIONS(5135), + [anon_sym_BSLASHacfp] = ACTIONS(5135), + [anon_sym_BSLASHAcfp] = ACTIONS(5135), + [anon_sym_BSLASHac] = ACTIONS(5135), + [anon_sym_BSLASHAc] = ACTIONS(5135), + [anon_sym_BSLASHacp] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), + [anon_sym_BSLASHcolor] = ACTIONS(5135), + [anon_sym_BSLASHcolorbox] = ACTIONS(5135), + [anon_sym_BSLASHtextcolor] = ACTIONS(5135), + [anon_sym_BSLASHpagecolor] = ACTIONS(5135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [anon_sym_BSLASHtext] = ACTIONS(5135), + [anon_sym_BSLASHintertext] = ACTIONS(5135), + [anon_sym_shortintertext] = ACTIONS(5135), }, - [1486] = { - [sym_command_name] = ACTIONS(4983), + [1443] = { + [sym_command_name] = ACTIONS(4887), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4887), + [anon_sym_LPAREN] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_LBRACK] = ACTIONS(4885), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_LBRACE] = ACTIONS(4885), + [anon_sym_RBRACE] = ACTIONS(4885), + [sym_word] = ACTIONS(4887), + [sym_placeholder] = ACTIONS(4885), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym__] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_COLON] = ACTIONS(4887), + [anon_sym_SQUOTE] = ACTIONS(4887), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4887), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4885), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4885), + [anon_sym_BSLASHusepackage] = ACTIONS(4887), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), + [anon_sym_BSLASHinclude] = ACTIONS(4887), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), + [anon_sym_BSLASHinput] = ACTIONS(4887), + [anon_sym_BSLASHsubfile] = ACTIONS(4887), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), + [anon_sym_BSLASHbibliography] = ACTIONS(4887), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), + [anon_sym_BSLASHincludesvg] = ACTIONS(4887), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), + [anon_sym_BSLASHimport] = ACTIONS(4887), + [anon_sym_BSLASHsubimport] = ACTIONS(4887), + [anon_sym_BSLASHinputfrom] = ACTIONS(4887), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), + [anon_sym_BSLASHincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHcaption] = ACTIONS(4887), + [anon_sym_BSLASHcite] = ACTIONS(4887), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCite] = ACTIONS(4887), + [anon_sym_BSLASHnocite] = ACTIONS(4887), + [anon_sym_BSLASHcitet] = ACTIONS(4887), + [anon_sym_BSLASHcitep] = ACTIONS(4887), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteauthor] = ACTIONS(4887), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitetitle] = ACTIONS(4887), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteyear] = ACTIONS(4887), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitedate] = ACTIONS(4887), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteurl] = ACTIONS(4887), + [anon_sym_BSLASHfullcite] = ACTIONS(4887), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), + [anon_sym_BSLASHcitealt] = ACTIONS(4887), + [anon_sym_BSLASHcitealp] = ACTIONS(4887), + [anon_sym_BSLASHcitetext] = ACTIONS(4887), + [anon_sym_BSLASHparencite] = ACTIONS(4887), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHParencite] = ACTIONS(4887), + [anon_sym_BSLASHfootcite] = ACTIONS(4887), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), + [anon_sym_BSLASHtextcite] = ACTIONS(4887), + [anon_sym_BSLASHTextcite] = ACTIONS(4887), + [anon_sym_BSLASHsmartcite] = ACTIONS(4887), + [anon_sym_BSLASHSmartcite] = ACTIONS(4887), + [anon_sym_BSLASHsupercite] = ACTIONS(4887), + [anon_sym_BSLASHautocite] = ACTIONS(4887), + [anon_sym_BSLASHAutocite] = ACTIONS(4887), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHvolcite] = ACTIONS(4887), + [anon_sym_BSLASHVolcite] = ACTIONS(4887), + [anon_sym_BSLASHpvolcite] = ACTIONS(4887), + [anon_sym_BSLASHPvolcite] = ACTIONS(4887), + [anon_sym_BSLASHfvolcite] = ACTIONS(4887), + [anon_sym_BSLASHftvolcite] = ACTIONS(4887), + [anon_sym_BSLASHsvolcite] = ACTIONS(4887), + [anon_sym_BSLASHSvolcite] = ACTIONS(4887), + [anon_sym_BSLASHtvolcite] = ACTIONS(4887), + [anon_sym_BSLASHTvolcite] = ACTIONS(4887), + [anon_sym_BSLASHavolcite] = ACTIONS(4887), + [anon_sym_BSLASHAvolcite] = ACTIONS(4887), + [anon_sym_BSLASHnotecite] = ACTIONS(4887), + [anon_sym_BSLASHNotecite] = ACTIONS(4887), + [anon_sym_BSLASHpnotecite] = ACTIONS(4887), + [anon_sym_BSLASHPnotecite] = ACTIONS(4887), + [anon_sym_BSLASHfnotecite] = ACTIONS(4887), + [anon_sym_BSLASHlabel] = ACTIONS(4887), + [anon_sym_BSLASHref] = ACTIONS(4887), + [anon_sym_BSLASHeqref] = ACTIONS(4887), + [anon_sym_BSLASHvref] = ACTIONS(4887), + [anon_sym_BSLASHVref] = ACTIONS(4887), + [anon_sym_BSLASHautoref] = ACTIONS(4887), + [anon_sym_BSLASHpageref] = ACTIONS(4887), + [anon_sym_BSLASHcref] = ACTIONS(4887), + [anon_sym_BSLASHCref] = ACTIONS(4887), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnameCref] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHlabelcref] = ACTIONS(4887), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCrefrange] = ACTIONS(4887), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnewlabel] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), + [anon_sym_BSLASHdef] = ACTIONS(4887), + [anon_sym_BSLASHlet] = ACTIONS(4887), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), + [anon_sym_BSLASHgls] = ACTIONS(4887), + [anon_sym_BSLASHGls] = ACTIONS(4887), + [anon_sym_BSLASHGLS] = ACTIONS(4887), + [anon_sym_BSLASHglspl] = ACTIONS(4887), + [anon_sym_BSLASHGlspl] = ACTIONS(4887), + [anon_sym_BSLASHGLSpl] = ACTIONS(4887), + [anon_sym_BSLASHglsdisp] = ACTIONS(4887), + [anon_sym_BSLASHglslink] = ACTIONS(4887), + [anon_sym_BSLASHglstext] = ACTIONS(4887), + [anon_sym_BSLASHGlstext] = ACTIONS(4887), + [anon_sym_BSLASHGLStext] = ACTIONS(4887), + [anon_sym_BSLASHglsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), + [anon_sym_BSLASHglsplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSplural] = ACTIONS(4887), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHglsname] = ACTIONS(4887), + [anon_sym_BSLASHGlsname] = ACTIONS(4887), + [anon_sym_BSLASHGLSname] = ACTIONS(4887), + [anon_sym_BSLASHglssymbol] = ACTIONS(4887), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), + [anon_sym_BSLASHglsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), + [anon_sym_BSLASHglsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), + [anon_sym_BSLASHglsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), + [anon_sym_BSLASHglsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), + [anon_sym_BSLASHglsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), + [anon_sym_BSLASHnewacronym] = ACTIONS(4887), + [anon_sym_BSLASHacrshort] = ACTIONS(4887), + [anon_sym_BSLASHAcrshort] = ACTIONS(4887), + [anon_sym_BSLASHACRshort] = ACTIONS(4887), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), + [anon_sym_BSLASHacrlong] = ACTIONS(4887), + [anon_sym_BSLASHAcrlong] = ACTIONS(4887), + [anon_sym_BSLASHACRlong] = ACTIONS(4887), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), + [anon_sym_BSLASHacrfull] = ACTIONS(4887), + [anon_sym_BSLASHAcrfull] = ACTIONS(4887), + [anon_sym_BSLASHACRfull] = ACTIONS(4887), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), + [anon_sym_BSLASHacs] = ACTIONS(4887), + [anon_sym_BSLASHAcs] = ACTIONS(4887), + [anon_sym_BSLASHacsp] = ACTIONS(4887), + [anon_sym_BSLASHAcsp] = ACTIONS(4887), + [anon_sym_BSLASHacl] = ACTIONS(4887), + [anon_sym_BSLASHAcl] = ACTIONS(4887), + [anon_sym_BSLASHaclp] = ACTIONS(4887), + [anon_sym_BSLASHAclp] = ACTIONS(4887), + [anon_sym_BSLASHacf] = ACTIONS(4887), + [anon_sym_BSLASHAcf] = ACTIONS(4887), + [anon_sym_BSLASHacfp] = ACTIONS(4887), + [anon_sym_BSLASHAcfp] = ACTIONS(4887), + [anon_sym_BSLASHac] = ACTIONS(4887), + [anon_sym_BSLASHAc] = ACTIONS(4887), + [anon_sym_BSLASHacp] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), + [anon_sym_BSLASHcolor] = ACTIONS(4887), + [anon_sym_BSLASHcolorbox] = ACTIONS(4887), + [anon_sym_BSLASHtextcolor] = ACTIONS(4887), + [anon_sym_BSLASHpagecolor] = ACTIONS(4887), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), + [anon_sym_BSLASHtext] = ACTIONS(4887), + [anon_sym_BSLASHintertext] = ACTIONS(4887), + [anon_sym_shortintertext] = ACTIONS(4887), + }, + [1444] = { + [sym_command_name] = ACTIONS(5057), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_RPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4981), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), - [anon_sym_DOLLAR] = ACTIONS(4983), - [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), - [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHiffalse] = ACTIONS(5057), + [anon_sym_LPAREN] = ACTIONS(5055), + [anon_sym_RPAREN] = ACTIONS(5055), + [anon_sym_LBRACK] = ACTIONS(5055), + [anon_sym_RBRACK] = ACTIONS(5055), + [anon_sym_COMMA] = ACTIONS(5055), + [anon_sym_LBRACE] = ACTIONS(5055), + [anon_sym_RBRACE] = ACTIONS(5055), + [sym_word] = ACTIONS(5057), + [sym_placeholder] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_STAR] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5057), + [anon_sym_CARET] = ACTIONS(5057), + [anon_sym__] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5057), + [anon_sym_BANG] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5057), + [anon_sym_COLON] = ACTIONS(5057), + [anon_sym_SQUOTE] = ACTIONS(5057), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5055), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5055), + [anon_sym_DOLLAR] = ACTIONS(5057), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5055), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5055), + [anon_sym_BSLASHusepackage] = ACTIONS(5057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), + [anon_sym_BSLASHinclude] = ACTIONS(5057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), + [anon_sym_BSLASHinput] = ACTIONS(5057), + [anon_sym_BSLASHsubfile] = ACTIONS(5057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), + [anon_sym_BSLASHbibliography] = ACTIONS(5057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), + [anon_sym_BSLASHincludesvg] = ACTIONS(5057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), + [anon_sym_BSLASHimport] = ACTIONS(5057), + [anon_sym_BSLASHsubimport] = ACTIONS(5057), + [anon_sym_BSLASHinputfrom] = ACTIONS(5057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), + [anon_sym_BSLASHincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHcaption] = ACTIONS(5057), + [anon_sym_BSLASHcite] = ACTIONS(5057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCite] = ACTIONS(5057), + [anon_sym_BSLASHnocite] = ACTIONS(5057), + [anon_sym_BSLASHcitet] = ACTIONS(5057), + [anon_sym_BSLASHcitep] = ACTIONS(5057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteauthor] = ACTIONS(5057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitetitle] = ACTIONS(5057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteyear] = ACTIONS(5057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitedate] = ACTIONS(5057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteurl] = ACTIONS(5057), + [anon_sym_BSLASHfullcite] = ACTIONS(5057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), + [anon_sym_BSLASHcitealt] = ACTIONS(5057), + [anon_sym_BSLASHcitealp] = ACTIONS(5057), + [anon_sym_BSLASHcitetext] = ACTIONS(5057), + [anon_sym_BSLASHparencite] = ACTIONS(5057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHParencite] = ACTIONS(5057), + [anon_sym_BSLASHfootcite] = ACTIONS(5057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), + [anon_sym_BSLASHtextcite] = ACTIONS(5057), + [anon_sym_BSLASHTextcite] = ACTIONS(5057), + [anon_sym_BSLASHsmartcite] = ACTIONS(5057), + [anon_sym_BSLASHSmartcite] = ACTIONS(5057), + [anon_sym_BSLASHsupercite] = ACTIONS(5057), + [anon_sym_BSLASHautocite] = ACTIONS(5057), + [anon_sym_BSLASHAutocite] = ACTIONS(5057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHvolcite] = ACTIONS(5057), + [anon_sym_BSLASHVolcite] = ACTIONS(5057), + [anon_sym_BSLASHpvolcite] = ACTIONS(5057), + [anon_sym_BSLASHPvolcite] = ACTIONS(5057), + [anon_sym_BSLASHfvolcite] = ACTIONS(5057), + [anon_sym_BSLASHftvolcite] = ACTIONS(5057), + [anon_sym_BSLASHsvolcite] = ACTIONS(5057), + [anon_sym_BSLASHSvolcite] = ACTIONS(5057), + [anon_sym_BSLASHtvolcite] = ACTIONS(5057), + [anon_sym_BSLASHTvolcite] = ACTIONS(5057), + [anon_sym_BSLASHavolcite] = ACTIONS(5057), + [anon_sym_BSLASHAvolcite] = ACTIONS(5057), + [anon_sym_BSLASHnotecite] = ACTIONS(5057), + [anon_sym_BSLASHNotecite] = ACTIONS(5057), + [anon_sym_BSLASHpnotecite] = ACTIONS(5057), + [anon_sym_BSLASHPnotecite] = ACTIONS(5057), + [anon_sym_BSLASHfnotecite] = ACTIONS(5057), + [anon_sym_BSLASHlabel] = ACTIONS(5057), + [anon_sym_BSLASHref] = ACTIONS(5057), + [anon_sym_BSLASHeqref] = ACTIONS(5057), + [anon_sym_BSLASHvref] = ACTIONS(5057), + [anon_sym_BSLASHVref] = ACTIONS(5057), + [anon_sym_BSLASHautoref] = ACTIONS(5057), + [anon_sym_BSLASHpageref] = ACTIONS(5057), + [anon_sym_BSLASHcref] = ACTIONS(5057), + [anon_sym_BSLASHCref] = ACTIONS(5057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnameCref] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHlabelcref] = ACTIONS(5057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCrefrange] = ACTIONS(5057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnewlabel] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), + [anon_sym_BSLASHdef] = ACTIONS(5057), + [anon_sym_BSLASHlet] = ACTIONS(5057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), + [anon_sym_BSLASHgls] = ACTIONS(5057), + [anon_sym_BSLASHGls] = ACTIONS(5057), + [anon_sym_BSLASHGLS] = ACTIONS(5057), + [anon_sym_BSLASHglspl] = ACTIONS(5057), + [anon_sym_BSLASHGlspl] = ACTIONS(5057), + [anon_sym_BSLASHGLSpl] = ACTIONS(5057), + [anon_sym_BSLASHglsdisp] = ACTIONS(5057), + [anon_sym_BSLASHglslink] = ACTIONS(5057), + [anon_sym_BSLASHglstext] = ACTIONS(5057), + [anon_sym_BSLASHGlstext] = ACTIONS(5057), + [anon_sym_BSLASHGLStext] = ACTIONS(5057), + [anon_sym_BSLASHglsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), + [anon_sym_BSLASHglsplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSplural] = ACTIONS(5057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHglsname] = ACTIONS(5057), + [anon_sym_BSLASHGlsname] = ACTIONS(5057), + [anon_sym_BSLASHGLSname] = ACTIONS(5057), + [anon_sym_BSLASHglssymbol] = ACTIONS(5057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), + [anon_sym_BSLASHglsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), + [anon_sym_BSLASHglsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), + [anon_sym_BSLASHglsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), + [anon_sym_BSLASHglsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), + [anon_sym_BSLASHglsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), + [anon_sym_BSLASHnewacronym] = ACTIONS(5057), + [anon_sym_BSLASHacrshort] = ACTIONS(5057), + [anon_sym_BSLASHAcrshort] = ACTIONS(5057), + [anon_sym_BSLASHACRshort] = ACTIONS(5057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), + [anon_sym_BSLASHacrlong] = ACTIONS(5057), + [anon_sym_BSLASHAcrlong] = ACTIONS(5057), + [anon_sym_BSLASHACRlong] = ACTIONS(5057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), + [anon_sym_BSLASHacrfull] = ACTIONS(5057), + [anon_sym_BSLASHAcrfull] = ACTIONS(5057), + [anon_sym_BSLASHACRfull] = ACTIONS(5057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), + [anon_sym_BSLASHacs] = ACTIONS(5057), + [anon_sym_BSLASHAcs] = ACTIONS(5057), + [anon_sym_BSLASHacsp] = ACTIONS(5057), + [anon_sym_BSLASHAcsp] = ACTIONS(5057), + [anon_sym_BSLASHacl] = ACTIONS(5057), + [anon_sym_BSLASHAcl] = ACTIONS(5057), + [anon_sym_BSLASHaclp] = ACTIONS(5057), + [anon_sym_BSLASHAclp] = ACTIONS(5057), + [anon_sym_BSLASHacf] = ACTIONS(5057), + [anon_sym_BSLASHAcf] = ACTIONS(5057), + [anon_sym_BSLASHacfp] = ACTIONS(5057), + [anon_sym_BSLASHAcfp] = ACTIONS(5057), + [anon_sym_BSLASHac] = ACTIONS(5057), + [anon_sym_BSLASHAc] = ACTIONS(5057), + [anon_sym_BSLASHacp] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), + [anon_sym_BSLASHcolor] = ACTIONS(5057), + [anon_sym_BSLASHcolorbox] = ACTIONS(5057), + [anon_sym_BSLASHtextcolor] = ACTIONS(5057), + [anon_sym_BSLASHpagecolor] = ACTIONS(5057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [anon_sym_BSLASHtext] = ACTIONS(5057), + [anon_sym_BSLASHintertext] = ACTIONS(5057), + [anon_sym_shortintertext] = ACTIONS(5057), }, - [1487] = { - [sym_curly_group] = STATE(1492), - [sym_mixed_group] = STATE(1492), - [aux_sym_generic_command_repeat1] = STATE(1489), - [sym_command_name] = ACTIONS(4449), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4449), - [anon_sym_LPAREN] = ACTIONS(5445), - [anon_sym_LBRACK] = ACTIONS(5445), - [anon_sym_RBRACK] = ACTIONS(4447), - [anon_sym_COMMA] = ACTIONS(4447), - [anon_sym_EQ] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(5447), - [anon_sym_RBRACE] = ACTIONS(4447), - [sym_word] = ACTIONS(4449), - [sym_placeholder] = ACTIONS(4447), - [anon_sym_PLUS] = ACTIONS(4449), - [anon_sym_DASH] = ACTIONS(4449), - [anon_sym_STAR] = ACTIONS(4449), - [anon_sym_SLASH] = ACTIONS(4449), - [anon_sym_CARET] = ACTIONS(4449), - [anon_sym__] = ACTIONS(4449), - [anon_sym_LT] = ACTIONS(4449), - [anon_sym_GT] = ACTIONS(4449), - [anon_sym_BANG] = ACTIONS(4449), - [anon_sym_PIPE] = ACTIONS(4449), - [anon_sym_COLON] = ACTIONS(4449), - [anon_sym_SQUOTE] = ACTIONS(4449), - [anon_sym_BSLASHusepackage] = ACTIONS(4449), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4449), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4449), - [anon_sym_BSLASHinclude] = ACTIONS(4449), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4449), - [anon_sym_BSLASHinput] = ACTIONS(4449), - [anon_sym_BSLASHsubfile] = ACTIONS(4449), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4449), - [anon_sym_BSLASHbibliography] = ACTIONS(4449), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4449), - [anon_sym_BSLASHincludesvg] = ACTIONS(4449), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4449), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4449), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4449), - [anon_sym_BSLASHimport] = ACTIONS(4449), - [anon_sym_BSLASHsubimport] = ACTIONS(4449), - [anon_sym_BSLASHinputfrom] = ACTIONS(4449), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4449), - [anon_sym_BSLASHincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4449), - [anon_sym_BSLASHcaption] = ACTIONS(4449), - [anon_sym_BSLASHcite] = ACTIONS(4449), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCite] = ACTIONS(4449), - [anon_sym_BSLASHnocite] = ACTIONS(4449), - [anon_sym_BSLASHcitet] = ACTIONS(4449), - [anon_sym_BSLASHcitep] = ACTIONS(4449), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteauthor] = ACTIONS(4449), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4449), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitetitle] = ACTIONS(4449), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteyear] = ACTIONS(4449), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4447), - [anon_sym_BSLASHcitedate] = ACTIONS(4449), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4447), - [anon_sym_BSLASHciteurl] = ACTIONS(4449), - [anon_sym_BSLASHfullcite] = ACTIONS(4449), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4449), - [anon_sym_BSLASHcitealt] = ACTIONS(4449), - [anon_sym_BSLASHcitealp] = ACTIONS(4449), - [anon_sym_BSLASHcitetext] = ACTIONS(4449), - [anon_sym_BSLASHparencite] = ACTIONS(4449), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHParencite] = ACTIONS(4449), - [anon_sym_BSLASHfootcite] = ACTIONS(4449), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4449), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4449), - [anon_sym_BSLASHtextcite] = ACTIONS(4449), - [anon_sym_BSLASHTextcite] = ACTIONS(4449), - [anon_sym_BSLASHsmartcite] = ACTIONS(4449), - [anon_sym_BSLASHSmartcite] = ACTIONS(4449), - [anon_sym_BSLASHsupercite] = ACTIONS(4449), - [anon_sym_BSLASHautocite] = ACTIONS(4449), - [anon_sym_BSLASHAutocite] = ACTIONS(4449), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4447), - [anon_sym_BSLASHvolcite] = ACTIONS(4449), - [anon_sym_BSLASHVolcite] = ACTIONS(4449), - [anon_sym_BSLASHpvolcite] = ACTIONS(4449), - [anon_sym_BSLASHPvolcite] = ACTIONS(4449), - [anon_sym_BSLASHfvolcite] = ACTIONS(4449), - [anon_sym_BSLASHftvolcite] = ACTIONS(4449), - [anon_sym_BSLASHsvolcite] = ACTIONS(4449), - [anon_sym_BSLASHSvolcite] = ACTIONS(4449), - [anon_sym_BSLASHtvolcite] = ACTIONS(4449), - [anon_sym_BSLASHTvolcite] = ACTIONS(4449), - [anon_sym_BSLASHavolcite] = ACTIONS(4449), - [anon_sym_BSLASHAvolcite] = ACTIONS(4449), - [anon_sym_BSLASHnotecite] = ACTIONS(4449), - [anon_sym_BSLASHNotecite] = ACTIONS(4449), - [anon_sym_BSLASHpnotecite] = ACTIONS(4449), - [anon_sym_BSLASHPnotecite] = ACTIONS(4449), - [anon_sym_BSLASHfnotecite] = ACTIONS(4449), - [anon_sym_BSLASHlabel] = ACTIONS(4449), - [anon_sym_BSLASHref] = ACTIONS(4449), - [anon_sym_BSLASHeqref] = ACTIONS(4449), - [anon_sym_BSLASHvref] = ACTIONS(4449), - [anon_sym_BSLASHVref] = ACTIONS(4449), - [anon_sym_BSLASHautoref] = ACTIONS(4449), - [anon_sym_BSLASHpageref] = ACTIONS(4449), - [anon_sym_BSLASHcref] = ACTIONS(4449), - [anon_sym_BSLASHCref] = ACTIONS(4449), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnameCref] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4449), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4449), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4449), - [anon_sym_BSLASHlabelcref] = ACTIONS(4449), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange] = ACTIONS(4449), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHCrefrange] = ACTIONS(4449), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4447), - [anon_sym_BSLASHnewlabel] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand] = ACTIONS(4449), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4449), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4449), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4447), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4449), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4447), - [anon_sym_BSLASHdef] = ACTIONS(4449), - [anon_sym_BSLASHlet] = ACTIONS(4449), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4449), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4449), - [anon_sym_BSLASHgls] = ACTIONS(4449), - [anon_sym_BSLASHGls] = ACTIONS(4449), - [anon_sym_BSLASHGLS] = ACTIONS(4449), - [anon_sym_BSLASHglspl] = ACTIONS(4449), - [anon_sym_BSLASHGlspl] = ACTIONS(4449), - [anon_sym_BSLASHGLSpl] = ACTIONS(4449), - [anon_sym_BSLASHglsdisp] = ACTIONS(4449), - [anon_sym_BSLASHglslink] = ACTIONS(4449), - [anon_sym_BSLASHglstext] = ACTIONS(4449), - [anon_sym_BSLASHGlstext] = ACTIONS(4449), - [anon_sym_BSLASHGLStext] = ACTIONS(4449), - [anon_sym_BSLASHglsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4449), - [anon_sym_BSLASHglsplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSplural] = ACTIONS(4449), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4449), - [anon_sym_BSLASHglsname] = ACTIONS(4449), - [anon_sym_BSLASHGlsname] = ACTIONS(4449), - [anon_sym_BSLASHGLSname] = ACTIONS(4449), - [anon_sym_BSLASHglssymbol] = ACTIONS(4449), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4449), - [anon_sym_BSLASHglsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4449), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4449), - [anon_sym_BSLASHglsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4449), - [anon_sym_BSLASHglsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4449), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4449), - [anon_sym_BSLASHglsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4449), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4449), - [anon_sym_BSLASHglsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4449), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4449), - [anon_sym_BSLASHnewacronym] = ACTIONS(4449), - [anon_sym_BSLASHacrshort] = ACTIONS(4449), - [anon_sym_BSLASHAcrshort] = ACTIONS(4449), - [anon_sym_BSLASHACRshort] = ACTIONS(4449), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4449), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4449), - [anon_sym_BSLASHacrlong] = ACTIONS(4449), - [anon_sym_BSLASHAcrlong] = ACTIONS(4449), - [anon_sym_BSLASHACRlong] = ACTIONS(4449), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4449), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4449), - [anon_sym_BSLASHacrfull] = ACTIONS(4449), - [anon_sym_BSLASHAcrfull] = ACTIONS(4449), - [anon_sym_BSLASHACRfull] = ACTIONS(4449), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4449), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4449), - [anon_sym_BSLASHacs] = ACTIONS(4449), - [anon_sym_BSLASHAcs] = ACTIONS(4449), - [anon_sym_BSLASHacsp] = ACTIONS(4449), - [anon_sym_BSLASHAcsp] = ACTIONS(4449), - [anon_sym_BSLASHacl] = ACTIONS(4449), - [anon_sym_BSLASHAcl] = ACTIONS(4449), - [anon_sym_BSLASHaclp] = ACTIONS(4449), - [anon_sym_BSLASHAclp] = ACTIONS(4449), - [anon_sym_BSLASHacf] = ACTIONS(4449), - [anon_sym_BSLASHAcf] = ACTIONS(4449), - [anon_sym_BSLASHacfp] = ACTIONS(4449), - [anon_sym_BSLASHAcfp] = ACTIONS(4449), - [anon_sym_BSLASHac] = ACTIONS(4449), - [anon_sym_BSLASHAc] = ACTIONS(4449), - [anon_sym_BSLASHacp] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4449), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4449), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4449), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4449), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4449), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4449), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4449), - [anon_sym_BSLASHcolor] = ACTIONS(4449), - [anon_sym_BSLASHcolorbox] = ACTIONS(4449), - [anon_sym_BSLASHtextcolor] = ACTIONS(4449), - [anon_sym_BSLASHpagecolor] = ACTIONS(4449), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4449), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4449), + [1445] = { + [sym_command_name] = ACTIONS(133), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(131), + [anon_sym_RPAREN] = ACTIONS(131), + [anon_sym_LBRACK] = ACTIONS(131), + [anon_sym_RBRACK] = ACTIONS(131), + [anon_sym_COMMA] = ACTIONS(131), + [anon_sym_LBRACE] = ACTIONS(131), + [anon_sym_RBRACE] = ACTIONS(131), + [sym_word] = ACTIONS(133), + [sym_placeholder] = ACTIONS(131), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_STAR] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(133), + [anon_sym_CARET] = ACTIONS(133), + [anon_sym__] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(133), + [anon_sym_GT] = ACTIONS(133), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_PIPE] = ACTIONS(133), + [anon_sym_COLON] = ACTIONS(133), + [anon_sym_SQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(131), + [anon_sym_BSLASH_LBRACK] = ACTIONS(131), + [anon_sym_DOLLAR] = ACTIONS(133), + [anon_sym_BSLASH_LPAREN] = ACTIONS(131), + [anon_sym_BSLASH_LBRACE] = ACTIONS(131), + [anon_sym_BSLASHusepackage] = ACTIONS(133), + [anon_sym_BSLASHRequirePackage] = ACTIONS(133), + [anon_sym_BSLASHdocumentclass] = ACTIONS(133), + [anon_sym_BSLASHinclude] = ACTIONS(133), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(133), + [anon_sym_BSLASHinput] = ACTIONS(133), + [anon_sym_BSLASHsubfile] = ACTIONS(133), + [anon_sym_BSLASHaddbibresource] = ACTIONS(133), + [anon_sym_BSLASHbibliography] = ACTIONS(133), + [anon_sym_BSLASHincludegraphics] = ACTIONS(133), + [anon_sym_BSLASHincludesvg] = ACTIONS(133), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(133), + [anon_sym_BSLASHverbatiminput] = ACTIONS(133), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(133), + [anon_sym_BSLASHimport] = ACTIONS(133), + [anon_sym_BSLASHsubimport] = ACTIONS(133), + [anon_sym_BSLASHinputfrom] = ACTIONS(133), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(133), + [anon_sym_BSLASHincludefrom] = ACTIONS(133), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(133), + [anon_sym_BSLASHcaption] = ACTIONS(133), + [anon_sym_BSLASHcite] = ACTIONS(133), + [anon_sym_BSLASHcite_STAR] = ACTIONS(131), + [anon_sym_BSLASHCite] = ACTIONS(133), + [anon_sym_BSLASHnocite] = ACTIONS(133), + [anon_sym_BSLASHcitet] = ACTIONS(133), + [anon_sym_BSLASHcitep] = ACTIONS(133), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteauthor] = ACTIONS(133), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHCiteauthor] = ACTIONS(133), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitetitle] = ACTIONS(133), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteyear] = ACTIONS(133), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(131), + [anon_sym_BSLASHcitedate] = ACTIONS(133), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(131), + [anon_sym_BSLASHciteurl] = ACTIONS(133), + [anon_sym_BSLASHfullcite] = ACTIONS(133), + [anon_sym_BSLASHciteyearpar] = ACTIONS(133), + [anon_sym_BSLASHcitealt] = ACTIONS(133), + [anon_sym_BSLASHcitealp] = ACTIONS(133), + [anon_sym_BSLASHcitetext] = ACTIONS(133), + [anon_sym_BSLASHparencite] = ACTIONS(133), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(131), + [anon_sym_BSLASHParencite] = ACTIONS(133), + [anon_sym_BSLASHfootcite] = ACTIONS(133), + [anon_sym_BSLASHfootfullcite] = ACTIONS(133), + [anon_sym_BSLASHfootcitetext] = ACTIONS(133), + [anon_sym_BSLASHtextcite] = ACTIONS(133), + [anon_sym_BSLASHTextcite] = ACTIONS(133), + [anon_sym_BSLASHsmartcite] = ACTIONS(133), + [anon_sym_BSLASHSmartcite] = ACTIONS(133), + [anon_sym_BSLASHsupercite] = ACTIONS(133), + [anon_sym_BSLASHautocite] = ACTIONS(133), + [anon_sym_BSLASHAutocite] = ACTIONS(133), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(131), + [anon_sym_BSLASHvolcite] = ACTIONS(133), + [anon_sym_BSLASHVolcite] = ACTIONS(133), + [anon_sym_BSLASHpvolcite] = ACTIONS(133), + [anon_sym_BSLASHPvolcite] = ACTIONS(133), + [anon_sym_BSLASHfvolcite] = ACTIONS(133), + [anon_sym_BSLASHftvolcite] = ACTIONS(133), + [anon_sym_BSLASHsvolcite] = ACTIONS(133), + [anon_sym_BSLASHSvolcite] = ACTIONS(133), + [anon_sym_BSLASHtvolcite] = ACTIONS(133), + [anon_sym_BSLASHTvolcite] = ACTIONS(133), + [anon_sym_BSLASHavolcite] = ACTIONS(133), + [anon_sym_BSLASHAvolcite] = ACTIONS(133), + [anon_sym_BSLASHnotecite] = ACTIONS(133), + [anon_sym_BSLASHNotecite] = ACTIONS(133), + [anon_sym_BSLASHpnotecite] = ACTIONS(133), + [anon_sym_BSLASHPnotecite] = ACTIONS(133), + [anon_sym_BSLASHfnotecite] = ACTIONS(133), + [anon_sym_BSLASHlabel] = ACTIONS(133), + [anon_sym_BSLASHref] = ACTIONS(133), + [anon_sym_BSLASHeqref] = ACTIONS(133), + [anon_sym_BSLASHvref] = ACTIONS(133), + [anon_sym_BSLASHVref] = ACTIONS(133), + [anon_sym_BSLASHautoref] = ACTIONS(133), + [anon_sym_BSLASHpageref] = ACTIONS(133), + [anon_sym_BSLASHcref] = ACTIONS(133), + [anon_sym_BSLASHCref] = ACTIONS(133), + [anon_sym_BSLASHcref_STAR] = ACTIONS(131), + [anon_sym_BSLASHCref_STAR] = ACTIONS(131), + [anon_sym_BSLASHnamecref] = ACTIONS(133), + [anon_sym_BSLASHnameCref] = ACTIONS(133), + [anon_sym_BSLASHlcnamecref] = ACTIONS(133), + [anon_sym_BSLASHnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHnameCrefs] = ACTIONS(133), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(133), + [anon_sym_BSLASHlabelcref] = ACTIONS(133), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(133), + [anon_sym_BSLASHcrefrange] = ACTIONS(133), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHCrefrange] = ACTIONS(133), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(131), + [anon_sym_BSLASHnewlabel] = ACTIONS(133), + [anon_sym_BSLASHnewcommand] = ACTIONS(133), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHrenewcommand] = ACTIONS(133), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(133), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(131), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(133), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(131), + [anon_sym_BSLASHdef] = ACTIONS(133), + [anon_sym_BSLASHlet] = ACTIONS(133), + [anon_sym_BSLASHnewenvironment] = ACTIONS(133), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(133), + [anon_sym_BSLASHgls] = ACTIONS(133), + [anon_sym_BSLASHGls] = ACTIONS(133), + [anon_sym_BSLASHGLS] = ACTIONS(133), + [anon_sym_BSLASHglspl] = ACTIONS(133), + [anon_sym_BSLASHGlspl] = ACTIONS(133), + [anon_sym_BSLASHGLSpl] = ACTIONS(133), + [anon_sym_BSLASHglsdisp] = ACTIONS(133), + [anon_sym_BSLASHglslink] = ACTIONS(133), + [anon_sym_BSLASHglstext] = ACTIONS(133), + [anon_sym_BSLASHGlstext] = ACTIONS(133), + [anon_sym_BSLASHGLStext] = ACTIONS(133), + [anon_sym_BSLASHglsfirst] = ACTIONS(133), + [anon_sym_BSLASHGlsfirst] = ACTIONS(133), + [anon_sym_BSLASHGLSfirst] = ACTIONS(133), + [anon_sym_BSLASHglsplural] = ACTIONS(133), + [anon_sym_BSLASHGlsplural] = ACTIONS(133), + [anon_sym_BSLASHGLSplural] = ACTIONS(133), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(133), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(133), + [anon_sym_BSLASHglsname] = ACTIONS(133), + [anon_sym_BSLASHGlsname] = ACTIONS(133), + [anon_sym_BSLASHGLSname] = ACTIONS(133), + [anon_sym_BSLASHglssymbol] = ACTIONS(133), + [anon_sym_BSLASHGlssymbol] = ACTIONS(133), + [anon_sym_BSLASHglsdesc] = ACTIONS(133), + [anon_sym_BSLASHGlsdesc] = ACTIONS(133), + [anon_sym_BSLASHGLSdesc] = ACTIONS(133), + [anon_sym_BSLASHglsuseri] = ACTIONS(133), + [anon_sym_BSLASHGlsuseri] = ACTIONS(133), + [anon_sym_BSLASHGLSuseri] = ACTIONS(133), + [anon_sym_BSLASHglsuserii] = ACTIONS(133), + [anon_sym_BSLASHGlsuserii] = ACTIONS(133), + [anon_sym_BSLASHGLSuserii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(133), + [anon_sym_BSLASHglsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(133), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(133), + [anon_sym_BSLASHglsuserv] = ACTIONS(133), + [anon_sym_BSLASHGlsuserv] = ACTIONS(133), + [anon_sym_BSLASHGLSuserv] = ACTIONS(133), + [anon_sym_BSLASHglsuservi] = ACTIONS(133), + [anon_sym_BSLASHGlsuservi] = ACTIONS(133), + [anon_sym_BSLASHGLSuservi] = ACTIONS(133), + [anon_sym_BSLASHnewacronym] = ACTIONS(133), + [anon_sym_BSLASHacrshort] = ACTIONS(133), + [anon_sym_BSLASHAcrshort] = ACTIONS(133), + [anon_sym_BSLASHACRshort] = ACTIONS(133), + [anon_sym_BSLASHacrshortpl] = ACTIONS(133), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(133), + [anon_sym_BSLASHACRshortpl] = ACTIONS(133), + [anon_sym_BSLASHacrlong] = ACTIONS(133), + [anon_sym_BSLASHAcrlong] = ACTIONS(133), + [anon_sym_BSLASHACRlong] = ACTIONS(133), + [anon_sym_BSLASHacrlongpl] = ACTIONS(133), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(133), + [anon_sym_BSLASHACRlongpl] = ACTIONS(133), + [anon_sym_BSLASHacrfull] = ACTIONS(133), + [anon_sym_BSLASHAcrfull] = ACTIONS(133), + [anon_sym_BSLASHACRfull] = ACTIONS(133), + [anon_sym_BSLASHacrfullpl] = ACTIONS(133), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(133), + [anon_sym_BSLASHACRfullpl] = ACTIONS(133), + [anon_sym_BSLASHacs] = ACTIONS(133), + [anon_sym_BSLASHAcs] = ACTIONS(133), + [anon_sym_BSLASHacsp] = ACTIONS(133), + [anon_sym_BSLASHAcsp] = ACTIONS(133), + [anon_sym_BSLASHacl] = ACTIONS(133), + [anon_sym_BSLASHAcl] = ACTIONS(133), + [anon_sym_BSLASHaclp] = ACTIONS(133), + [anon_sym_BSLASHAclp] = ACTIONS(133), + [anon_sym_BSLASHacf] = ACTIONS(133), + [anon_sym_BSLASHAcf] = ACTIONS(133), + [anon_sym_BSLASHacfp] = ACTIONS(133), + [anon_sym_BSLASHAcfp] = ACTIONS(133), + [anon_sym_BSLASHac] = ACTIONS(133), + [anon_sym_BSLASHAc] = ACTIONS(133), + [anon_sym_BSLASHacp] = ACTIONS(133), + [anon_sym_BSLASHglsentrylong] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(133), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryshort] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(133), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(133), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(133), + [anon_sym_BSLASHnewtheorem] = ACTIONS(133), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(133), + [anon_sym_BSLASHdefinecolor] = ACTIONS(133), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(133), + [anon_sym_BSLASHcolor] = ACTIONS(133), + [anon_sym_BSLASHcolorbox] = ACTIONS(133), + [anon_sym_BSLASHtextcolor] = ACTIONS(133), + [anon_sym_BSLASHpagecolor] = ACTIONS(133), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(133), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(133), + [anon_sym_BSLASHtext] = ACTIONS(133), + [anon_sym_BSLASHintertext] = ACTIONS(133), + [anon_sym_shortintertext] = ACTIONS(133), }, - [1488] = { - [sym_curly_group] = STATE(1492), - [sym_mixed_group] = STATE(1492), - [aux_sym_generic_command_repeat1] = STATE(1488), - [sym_command_name] = ACTIONS(4469), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4469), - [anon_sym_LPAREN] = ACTIONS(5449), - [anon_sym_LBRACK] = ACTIONS(5449), - [anon_sym_RBRACK] = ACTIONS(4467), - [anon_sym_COMMA] = ACTIONS(4467), - [anon_sym_EQ] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(5452), - [anon_sym_RBRACE] = ACTIONS(4467), - [sym_word] = ACTIONS(4469), - [sym_placeholder] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4469), - [anon_sym_DASH] = ACTIONS(4469), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_SLASH] = ACTIONS(4469), - [anon_sym_CARET] = ACTIONS(4469), - [anon_sym__] = ACTIONS(4469), - [anon_sym_LT] = ACTIONS(4469), - [anon_sym_GT] = ACTIONS(4469), - [anon_sym_BANG] = ACTIONS(4469), - [anon_sym_PIPE] = ACTIONS(4469), - [anon_sym_COLON] = ACTIONS(4469), - [anon_sym_SQUOTE] = ACTIONS(4469), - [anon_sym_BSLASHusepackage] = ACTIONS(4469), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4469), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4469), - [anon_sym_BSLASHinclude] = ACTIONS(4469), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4469), - [anon_sym_BSLASHinput] = ACTIONS(4469), - [anon_sym_BSLASHsubfile] = ACTIONS(4469), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4469), - [anon_sym_BSLASHbibliography] = ACTIONS(4469), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4469), - [anon_sym_BSLASHincludesvg] = ACTIONS(4469), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4469), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4469), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4469), - [anon_sym_BSLASHimport] = ACTIONS(4469), - [anon_sym_BSLASHsubimport] = ACTIONS(4469), - [anon_sym_BSLASHinputfrom] = ACTIONS(4469), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4469), - [anon_sym_BSLASHincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4469), - [anon_sym_BSLASHcaption] = ACTIONS(4469), - [anon_sym_BSLASHcite] = ACTIONS(4469), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCite] = ACTIONS(4469), - [anon_sym_BSLASHnocite] = ACTIONS(4469), - [anon_sym_BSLASHcitet] = ACTIONS(4469), - [anon_sym_BSLASHcitep] = ACTIONS(4469), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteauthor] = ACTIONS(4469), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4469), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitetitle] = ACTIONS(4469), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteyear] = ACTIONS(4469), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4467), - [anon_sym_BSLASHcitedate] = ACTIONS(4469), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4467), - [anon_sym_BSLASHciteurl] = ACTIONS(4469), - [anon_sym_BSLASHfullcite] = ACTIONS(4469), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4469), - [anon_sym_BSLASHcitealt] = ACTIONS(4469), - [anon_sym_BSLASHcitealp] = ACTIONS(4469), - [anon_sym_BSLASHcitetext] = ACTIONS(4469), - [anon_sym_BSLASHparencite] = ACTIONS(4469), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHParencite] = ACTIONS(4469), - [anon_sym_BSLASHfootcite] = ACTIONS(4469), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4469), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4469), - [anon_sym_BSLASHtextcite] = ACTIONS(4469), - [anon_sym_BSLASHTextcite] = ACTIONS(4469), - [anon_sym_BSLASHsmartcite] = ACTIONS(4469), - [anon_sym_BSLASHSmartcite] = ACTIONS(4469), - [anon_sym_BSLASHsupercite] = ACTIONS(4469), - [anon_sym_BSLASHautocite] = ACTIONS(4469), - [anon_sym_BSLASHAutocite] = ACTIONS(4469), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4467), - [anon_sym_BSLASHvolcite] = ACTIONS(4469), - [anon_sym_BSLASHVolcite] = ACTIONS(4469), - [anon_sym_BSLASHpvolcite] = ACTIONS(4469), - [anon_sym_BSLASHPvolcite] = ACTIONS(4469), - [anon_sym_BSLASHfvolcite] = ACTIONS(4469), - [anon_sym_BSLASHftvolcite] = ACTIONS(4469), - [anon_sym_BSLASHsvolcite] = ACTIONS(4469), - [anon_sym_BSLASHSvolcite] = ACTIONS(4469), - [anon_sym_BSLASHtvolcite] = ACTIONS(4469), - [anon_sym_BSLASHTvolcite] = ACTIONS(4469), - [anon_sym_BSLASHavolcite] = ACTIONS(4469), - [anon_sym_BSLASHAvolcite] = ACTIONS(4469), - [anon_sym_BSLASHnotecite] = ACTIONS(4469), - [anon_sym_BSLASHNotecite] = ACTIONS(4469), - [anon_sym_BSLASHpnotecite] = ACTIONS(4469), - [anon_sym_BSLASHPnotecite] = ACTIONS(4469), - [anon_sym_BSLASHfnotecite] = ACTIONS(4469), - [anon_sym_BSLASHlabel] = ACTIONS(4469), - [anon_sym_BSLASHref] = ACTIONS(4469), - [anon_sym_BSLASHeqref] = ACTIONS(4469), - [anon_sym_BSLASHvref] = ACTIONS(4469), - [anon_sym_BSLASHVref] = ACTIONS(4469), - [anon_sym_BSLASHautoref] = ACTIONS(4469), - [anon_sym_BSLASHpageref] = ACTIONS(4469), - [anon_sym_BSLASHcref] = ACTIONS(4469), - [anon_sym_BSLASHCref] = ACTIONS(4469), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnameCref] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4469), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4469), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4469), - [anon_sym_BSLASHlabelcref] = ACTIONS(4469), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange] = ACTIONS(4469), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHCrefrange] = ACTIONS(4469), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4467), - [anon_sym_BSLASHnewlabel] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand] = ACTIONS(4469), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4469), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4469), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4467), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4469), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4467), - [anon_sym_BSLASHdef] = ACTIONS(4469), - [anon_sym_BSLASHlet] = ACTIONS(4469), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4469), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4469), - [anon_sym_BSLASHgls] = ACTIONS(4469), - [anon_sym_BSLASHGls] = ACTIONS(4469), - [anon_sym_BSLASHGLS] = ACTIONS(4469), - [anon_sym_BSLASHglspl] = ACTIONS(4469), - [anon_sym_BSLASHGlspl] = ACTIONS(4469), - [anon_sym_BSLASHGLSpl] = ACTIONS(4469), - [anon_sym_BSLASHglsdisp] = ACTIONS(4469), - [anon_sym_BSLASHglslink] = ACTIONS(4469), - [anon_sym_BSLASHglstext] = ACTIONS(4469), - [anon_sym_BSLASHGlstext] = ACTIONS(4469), - [anon_sym_BSLASHGLStext] = ACTIONS(4469), - [anon_sym_BSLASHglsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4469), - [anon_sym_BSLASHglsplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSplural] = ACTIONS(4469), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4469), - [anon_sym_BSLASHglsname] = ACTIONS(4469), - [anon_sym_BSLASHGlsname] = ACTIONS(4469), - [anon_sym_BSLASHGLSname] = ACTIONS(4469), - [anon_sym_BSLASHglssymbol] = ACTIONS(4469), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4469), - [anon_sym_BSLASHglsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4469), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4469), - [anon_sym_BSLASHglsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4469), - [anon_sym_BSLASHglsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4469), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4469), - [anon_sym_BSLASHglsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4469), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4469), - [anon_sym_BSLASHglsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4469), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4469), - [anon_sym_BSLASHnewacronym] = ACTIONS(4469), - [anon_sym_BSLASHacrshort] = ACTIONS(4469), - [anon_sym_BSLASHAcrshort] = ACTIONS(4469), - [anon_sym_BSLASHACRshort] = ACTIONS(4469), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4469), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4469), - [anon_sym_BSLASHacrlong] = ACTIONS(4469), - [anon_sym_BSLASHAcrlong] = ACTIONS(4469), - [anon_sym_BSLASHACRlong] = ACTIONS(4469), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4469), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4469), - [anon_sym_BSLASHacrfull] = ACTIONS(4469), - [anon_sym_BSLASHAcrfull] = ACTIONS(4469), - [anon_sym_BSLASHACRfull] = ACTIONS(4469), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4469), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4469), - [anon_sym_BSLASHacs] = ACTIONS(4469), - [anon_sym_BSLASHAcs] = ACTIONS(4469), - [anon_sym_BSLASHacsp] = ACTIONS(4469), - [anon_sym_BSLASHAcsp] = ACTIONS(4469), - [anon_sym_BSLASHacl] = ACTIONS(4469), - [anon_sym_BSLASHAcl] = ACTIONS(4469), - [anon_sym_BSLASHaclp] = ACTIONS(4469), - [anon_sym_BSLASHAclp] = ACTIONS(4469), - [anon_sym_BSLASHacf] = ACTIONS(4469), - [anon_sym_BSLASHAcf] = ACTIONS(4469), - [anon_sym_BSLASHacfp] = ACTIONS(4469), - [anon_sym_BSLASHAcfp] = ACTIONS(4469), - [anon_sym_BSLASHac] = ACTIONS(4469), - [anon_sym_BSLASHAc] = ACTIONS(4469), - [anon_sym_BSLASHacp] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4469), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4469), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4469), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4469), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4469), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4469), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4469), - [anon_sym_BSLASHcolor] = ACTIONS(4469), - [anon_sym_BSLASHcolorbox] = ACTIONS(4469), - [anon_sym_BSLASHtextcolor] = ACTIONS(4469), - [anon_sym_BSLASHpagecolor] = ACTIONS(4469), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4469), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4469), + [1446] = { + [sym_command_name] = ACTIONS(5053), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5053), + [anon_sym_LPAREN] = ACTIONS(5051), + [anon_sym_RPAREN] = ACTIONS(5051), + [anon_sym_LBRACK] = ACTIONS(5051), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_LBRACE] = ACTIONS(5051), + [anon_sym_RBRACE] = ACTIONS(5051), + [sym_word] = ACTIONS(5053), + [sym_placeholder] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5053), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5053), + [anon_sym__] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_COLON] = ACTIONS(5053), + [anon_sym_SQUOTE] = ACTIONS(5053), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5051), + [anon_sym_DOLLAR] = ACTIONS(5053), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5051), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5051), + [anon_sym_BSLASHusepackage] = ACTIONS(5053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), + [anon_sym_BSLASHinclude] = ACTIONS(5053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), + [anon_sym_BSLASHinput] = ACTIONS(5053), + [anon_sym_BSLASHsubfile] = ACTIONS(5053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), + [anon_sym_BSLASHbibliography] = ACTIONS(5053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), + [anon_sym_BSLASHincludesvg] = ACTIONS(5053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), + [anon_sym_BSLASHimport] = ACTIONS(5053), + [anon_sym_BSLASHsubimport] = ACTIONS(5053), + [anon_sym_BSLASHinputfrom] = ACTIONS(5053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), + [anon_sym_BSLASHincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHcaption] = ACTIONS(5053), + [anon_sym_BSLASHcite] = ACTIONS(5053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCite] = ACTIONS(5053), + [anon_sym_BSLASHnocite] = ACTIONS(5053), + [anon_sym_BSLASHcitet] = ACTIONS(5053), + [anon_sym_BSLASHcitep] = ACTIONS(5053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteauthor] = ACTIONS(5053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitetitle] = ACTIONS(5053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteyear] = ACTIONS(5053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitedate] = ACTIONS(5053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteurl] = ACTIONS(5053), + [anon_sym_BSLASHfullcite] = ACTIONS(5053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), + [anon_sym_BSLASHcitealt] = ACTIONS(5053), + [anon_sym_BSLASHcitealp] = ACTIONS(5053), + [anon_sym_BSLASHcitetext] = ACTIONS(5053), + [anon_sym_BSLASHparencite] = ACTIONS(5053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHParencite] = ACTIONS(5053), + [anon_sym_BSLASHfootcite] = ACTIONS(5053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), + [anon_sym_BSLASHtextcite] = ACTIONS(5053), + [anon_sym_BSLASHTextcite] = ACTIONS(5053), + [anon_sym_BSLASHsmartcite] = ACTIONS(5053), + [anon_sym_BSLASHSmartcite] = ACTIONS(5053), + [anon_sym_BSLASHsupercite] = ACTIONS(5053), + [anon_sym_BSLASHautocite] = ACTIONS(5053), + [anon_sym_BSLASHAutocite] = ACTIONS(5053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHvolcite] = ACTIONS(5053), + [anon_sym_BSLASHVolcite] = ACTIONS(5053), + [anon_sym_BSLASHpvolcite] = ACTIONS(5053), + [anon_sym_BSLASHPvolcite] = ACTIONS(5053), + [anon_sym_BSLASHfvolcite] = ACTIONS(5053), + [anon_sym_BSLASHftvolcite] = ACTIONS(5053), + [anon_sym_BSLASHsvolcite] = ACTIONS(5053), + [anon_sym_BSLASHSvolcite] = ACTIONS(5053), + [anon_sym_BSLASHtvolcite] = ACTIONS(5053), + [anon_sym_BSLASHTvolcite] = ACTIONS(5053), + [anon_sym_BSLASHavolcite] = ACTIONS(5053), + [anon_sym_BSLASHAvolcite] = ACTIONS(5053), + [anon_sym_BSLASHnotecite] = ACTIONS(5053), + [anon_sym_BSLASHNotecite] = ACTIONS(5053), + [anon_sym_BSLASHpnotecite] = ACTIONS(5053), + [anon_sym_BSLASHPnotecite] = ACTIONS(5053), + [anon_sym_BSLASHfnotecite] = ACTIONS(5053), + [anon_sym_BSLASHlabel] = ACTIONS(5053), + [anon_sym_BSLASHref] = ACTIONS(5053), + [anon_sym_BSLASHeqref] = ACTIONS(5053), + [anon_sym_BSLASHvref] = ACTIONS(5053), + [anon_sym_BSLASHVref] = ACTIONS(5053), + [anon_sym_BSLASHautoref] = ACTIONS(5053), + [anon_sym_BSLASHpageref] = ACTIONS(5053), + [anon_sym_BSLASHcref] = ACTIONS(5053), + [anon_sym_BSLASHCref] = ACTIONS(5053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnameCref] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHlabelcref] = ACTIONS(5053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCrefrange] = ACTIONS(5053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnewlabel] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), + [anon_sym_BSLASHdef] = ACTIONS(5053), + [anon_sym_BSLASHlet] = ACTIONS(5053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), + [anon_sym_BSLASHgls] = ACTIONS(5053), + [anon_sym_BSLASHGls] = ACTIONS(5053), + [anon_sym_BSLASHGLS] = ACTIONS(5053), + [anon_sym_BSLASHglspl] = ACTIONS(5053), + [anon_sym_BSLASHGlspl] = ACTIONS(5053), + [anon_sym_BSLASHGLSpl] = ACTIONS(5053), + [anon_sym_BSLASHglsdisp] = ACTIONS(5053), + [anon_sym_BSLASHglslink] = ACTIONS(5053), + [anon_sym_BSLASHglstext] = ACTIONS(5053), + [anon_sym_BSLASHGlstext] = ACTIONS(5053), + [anon_sym_BSLASHGLStext] = ACTIONS(5053), + [anon_sym_BSLASHglsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), + [anon_sym_BSLASHglsplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSplural] = ACTIONS(5053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHglsname] = ACTIONS(5053), + [anon_sym_BSLASHGlsname] = ACTIONS(5053), + [anon_sym_BSLASHGLSname] = ACTIONS(5053), + [anon_sym_BSLASHglssymbol] = ACTIONS(5053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), + [anon_sym_BSLASHglsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), + [anon_sym_BSLASHglsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), + [anon_sym_BSLASHglsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), + [anon_sym_BSLASHglsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), + [anon_sym_BSLASHglsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), + [anon_sym_BSLASHnewacronym] = ACTIONS(5053), + [anon_sym_BSLASHacrshort] = ACTIONS(5053), + [anon_sym_BSLASHAcrshort] = ACTIONS(5053), + [anon_sym_BSLASHACRshort] = ACTIONS(5053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), + [anon_sym_BSLASHacrlong] = ACTIONS(5053), + [anon_sym_BSLASHAcrlong] = ACTIONS(5053), + [anon_sym_BSLASHACRlong] = ACTIONS(5053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), + [anon_sym_BSLASHacrfull] = ACTIONS(5053), + [anon_sym_BSLASHAcrfull] = ACTIONS(5053), + [anon_sym_BSLASHACRfull] = ACTIONS(5053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), + [anon_sym_BSLASHacs] = ACTIONS(5053), + [anon_sym_BSLASHAcs] = ACTIONS(5053), + [anon_sym_BSLASHacsp] = ACTIONS(5053), + [anon_sym_BSLASHAcsp] = ACTIONS(5053), + [anon_sym_BSLASHacl] = ACTIONS(5053), + [anon_sym_BSLASHAcl] = ACTIONS(5053), + [anon_sym_BSLASHaclp] = ACTIONS(5053), + [anon_sym_BSLASHAclp] = ACTIONS(5053), + [anon_sym_BSLASHacf] = ACTIONS(5053), + [anon_sym_BSLASHAcf] = ACTIONS(5053), + [anon_sym_BSLASHacfp] = ACTIONS(5053), + [anon_sym_BSLASHAcfp] = ACTIONS(5053), + [anon_sym_BSLASHac] = ACTIONS(5053), + [anon_sym_BSLASHAc] = ACTIONS(5053), + [anon_sym_BSLASHacp] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), + [anon_sym_BSLASHcolor] = ACTIONS(5053), + [anon_sym_BSLASHcolorbox] = ACTIONS(5053), + [anon_sym_BSLASHtextcolor] = ACTIONS(5053), + [anon_sym_BSLASHpagecolor] = ACTIONS(5053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [anon_sym_BSLASHtext] = ACTIONS(5053), + [anon_sym_BSLASHintertext] = ACTIONS(5053), + [anon_sym_shortintertext] = ACTIONS(5053), }, - [1489] = { - [sym_curly_group] = STATE(1492), - [sym_mixed_group] = STATE(1492), - [aux_sym_generic_command_repeat1] = STATE(1488), - [sym_command_name] = ACTIONS(4465), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4465), - [anon_sym_LPAREN] = ACTIONS(5445), - [anon_sym_LBRACK] = ACTIONS(5445), - [anon_sym_RBRACK] = ACTIONS(4463), - [anon_sym_COMMA] = ACTIONS(4463), - [anon_sym_EQ] = ACTIONS(4463), - [anon_sym_LBRACE] = ACTIONS(5447), - [anon_sym_RBRACE] = ACTIONS(4463), - [sym_word] = ACTIONS(4465), - [sym_placeholder] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4465), - [anon_sym_DASH] = ACTIONS(4465), - [anon_sym_STAR] = ACTIONS(4465), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_CARET] = ACTIONS(4465), - [anon_sym__] = ACTIONS(4465), - [anon_sym_LT] = ACTIONS(4465), - [anon_sym_GT] = ACTIONS(4465), - [anon_sym_BANG] = ACTIONS(4465), - [anon_sym_PIPE] = ACTIONS(4465), - [anon_sym_COLON] = ACTIONS(4465), - [anon_sym_SQUOTE] = ACTIONS(4465), - [anon_sym_BSLASHusepackage] = ACTIONS(4465), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4465), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4465), - [anon_sym_BSLASHinclude] = ACTIONS(4465), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4465), - [anon_sym_BSLASHinput] = ACTIONS(4465), - [anon_sym_BSLASHsubfile] = ACTIONS(4465), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4465), - [anon_sym_BSLASHbibliography] = ACTIONS(4465), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4465), - [anon_sym_BSLASHincludesvg] = ACTIONS(4465), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4465), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4465), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4465), - [anon_sym_BSLASHimport] = ACTIONS(4465), - [anon_sym_BSLASHsubimport] = ACTIONS(4465), - [anon_sym_BSLASHinputfrom] = ACTIONS(4465), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4465), - [anon_sym_BSLASHincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4465), - [anon_sym_BSLASHcaption] = ACTIONS(4465), - [anon_sym_BSLASHcite] = ACTIONS(4465), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCite] = ACTIONS(4465), - [anon_sym_BSLASHnocite] = ACTIONS(4465), - [anon_sym_BSLASHcitet] = ACTIONS(4465), - [anon_sym_BSLASHcitep] = ACTIONS(4465), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteauthor] = ACTIONS(4465), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4465), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitetitle] = ACTIONS(4465), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteyear] = ACTIONS(4465), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4463), - [anon_sym_BSLASHcitedate] = ACTIONS(4465), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4463), - [anon_sym_BSLASHciteurl] = ACTIONS(4465), - [anon_sym_BSLASHfullcite] = ACTIONS(4465), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4465), - [anon_sym_BSLASHcitealt] = ACTIONS(4465), - [anon_sym_BSLASHcitealp] = ACTIONS(4465), - [anon_sym_BSLASHcitetext] = ACTIONS(4465), - [anon_sym_BSLASHparencite] = ACTIONS(4465), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHParencite] = ACTIONS(4465), - [anon_sym_BSLASHfootcite] = ACTIONS(4465), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4465), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4465), - [anon_sym_BSLASHtextcite] = ACTIONS(4465), - [anon_sym_BSLASHTextcite] = ACTIONS(4465), - [anon_sym_BSLASHsmartcite] = ACTIONS(4465), - [anon_sym_BSLASHSmartcite] = ACTIONS(4465), - [anon_sym_BSLASHsupercite] = ACTIONS(4465), - [anon_sym_BSLASHautocite] = ACTIONS(4465), - [anon_sym_BSLASHAutocite] = ACTIONS(4465), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4463), - [anon_sym_BSLASHvolcite] = ACTIONS(4465), - [anon_sym_BSLASHVolcite] = ACTIONS(4465), - [anon_sym_BSLASHpvolcite] = ACTIONS(4465), - [anon_sym_BSLASHPvolcite] = ACTIONS(4465), - [anon_sym_BSLASHfvolcite] = ACTIONS(4465), - [anon_sym_BSLASHftvolcite] = ACTIONS(4465), - [anon_sym_BSLASHsvolcite] = ACTIONS(4465), - [anon_sym_BSLASHSvolcite] = ACTIONS(4465), - [anon_sym_BSLASHtvolcite] = ACTIONS(4465), - [anon_sym_BSLASHTvolcite] = ACTIONS(4465), - [anon_sym_BSLASHavolcite] = ACTIONS(4465), - [anon_sym_BSLASHAvolcite] = ACTIONS(4465), - [anon_sym_BSLASHnotecite] = ACTIONS(4465), - [anon_sym_BSLASHNotecite] = ACTIONS(4465), - [anon_sym_BSLASHpnotecite] = ACTIONS(4465), - [anon_sym_BSLASHPnotecite] = ACTIONS(4465), - [anon_sym_BSLASHfnotecite] = ACTIONS(4465), - [anon_sym_BSLASHlabel] = ACTIONS(4465), - [anon_sym_BSLASHref] = ACTIONS(4465), - [anon_sym_BSLASHeqref] = ACTIONS(4465), - [anon_sym_BSLASHvref] = ACTIONS(4465), - [anon_sym_BSLASHVref] = ACTIONS(4465), - [anon_sym_BSLASHautoref] = ACTIONS(4465), - [anon_sym_BSLASHpageref] = ACTIONS(4465), - [anon_sym_BSLASHcref] = ACTIONS(4465), - [anon_sym_BSLASHCref] = ACTIONS(4465), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnameCref] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4465), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4465), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4465), - [anon_sym_BSLASHlabelcref] = ACTIONS(4465), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange] = ACTIONS(4465), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHCrefrange] = ACTIONS(4465), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4463), - [anon_sym_BSLASHnewlabel] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand] = ACTIONS(4465), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4465), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4465), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4463), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4465), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4463), - [anon_sym_BSLASHdef] = ACTIONS(4465), - [anon_sym_BSLASHlet] = ACTIONS(4465), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4465), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4465), - [anon_sym_BSLASHgls] = ACTIONS(4465), - [anon_sym_BSLASHGls] = ACTIONS(4465), - [anon_sym_BSLASHGLS] = ACTIONS(4465), - [anon_sym_BSLASHglspl] = ACTIONS(4465), - [anon_sym_BSLASHGlspl] = ACTIONS(4465), - [anon_sym_BSLASHGLSpl] = ACTIONS(4465), - [anon_sym_BSLASHglsdisp] = ACTIONS(4465), - [anon_sym_BSLASHglslink] = ACTIONS(4465), - [anon_sym_BSLASHglstext] = ACTIONS(4465), - [anon_sym_BSLASHGlstext] = ACTIONS(4465), - [anon_sym_BSLASHGLStext] = ACTIONS(4465), - [anon_sym_BSLASHglsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4465), - [anon_sym_BSLASHglsplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSplural] = ACTIONS(4465), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4465), - [anon_sym_BSLASHglsname] = ACTIONS(4465), - [anon_sym_BSLASHGlsname] = ACTIONS(4465), - [anon_sym_BSLASHGLSname] = ACTIONS(4465), - [anon_sym_BSLASHglssymbol] = ACTIONS(4465), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4465), - [anon_sym_BSLASHglsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4465), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4465), - [anon_sym_BSLASHglsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4465), - [anon_sym_BSLASHglsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4465), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4465), - [anon_sym_BSLASHglsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4465), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4465), - [anon_sym_BSLASHglsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4465), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4465), - [anon_sym_BSLASHnewacronym] = ACTIONS(4465), - [anon_sym_BSLASHacrshort] = ACTIONS(4465), - [anon_sym_BSLASHAcrshort] = ACTIONS(4465), - [anon_sym_BSLASHACRshort] = ACTIONS(4465), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4465), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4465), - [anon_sym_BSLASHacrlong] = ACTIONS(4465), - [anon_sym_BSLASHAcrlong] = ACTIONS(4465), - [anon_sym_BSLASHACRlong] = ACTIONS(4465), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4465), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4465), - [anon_sym_BSLASHacrfull] = ACTIONS(4465), - [anon_sym_BSLASHAcrfull] = ACTIONS(4465), - [anon_sym_BSLASHACRfull] = ACTIONS(4465), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4465), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4465), - [anon_sym_BSLASHacs] = ACTIONS(4465), - [anon_sym_BSLASHAcs] = ACTIONS(4465), - [anon_sym_BSLASHacsp] = ACTIONS(4465), - [anon_sym_BSLASHAcsp] = ACTIONS(4465), - [anon_sym_BSLASHacl] = ACTIONS(4465), - [anon_sym_BSLASHAcl] = ACTIONS(4465), - [anon_sym_BSLASHaclp] = ACTIONS(4465), - [anon_sym_BSLASHAclp] = ACTIONS(4465), - [anon_sym_BSLASHacf] = ACTIONS(4465), - [anon_sym_BSLASHAcf] = ACTIONS(4465), - [anon_sym_BSLASHacfp] = ACTIONS(4465), - [anon_sym_BSLASHAcfp] = ACTIONS(4465), - [anon_sym_BSLASHac] = ACTIONS(4465), - [anon_sym_BSLASHAc] = ACTIONS(4465), - [anon_sym_BSLASHacp] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4465), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4465), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4465), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4465), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4465), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4465), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4465), - [anon_sym_BSLASHcolor] = ACTIONS(4465), - [anon_sym_BSLASHcolorbox] = ACTIONS(4465), - [anon_sym_BSLASHtextcolor] = ACTIONS(4465), - [anon_sym_BSLASHpagecolor] = ACTIONS(4465), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4465), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4465), + [1447] = { + [sym_command_name] = ACTIONS(149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(149), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_RPAREN] = ACTIONS(147), + [anon_sym_LBRACK] = ACTIONS(147), + [anon_sym_RBRACK] = ACTIONS(147), + [anon_sym_COMMA] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(147), + [anon_sym_RBRACE] = ACTIONS(147), + [sym_word] = ACTIONS(149), + [sym_placeholder] = ACTIONS(147), + [anon_sym_PLUS] = ACTIONS(149), + [anon_sym_DASH] = ACTIONS(149), + [anon_sym_STAR] = ACTIONS(149), + [anon_sym_SLASH] = ACTIONS(149), + [anon_sym_CARET] = ACTIONS(149), + [anon_sym__] = ACTIONS(149), + [anon_sym_LT] = ACTIONS(149), + [anon_sym_GT] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(149), + [anon_sym_PIPE] = ACTIONS(149), + [anon_sym_COLON] = ACTIONS(149), + [anon_sym_SQUOTE] = ACTIONS(149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(147), + [anon_sym_DOLLAR] = ACTIONS(149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(147), + [anon_sym_BSLASHusepackage] = ACTIONS(149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(149), + [anon_sym_BSLASHinclude] = ACTIONS(149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(149), + [anon_sym_BSLASHinput] = ACTIONS(149), + [anon_sym_BSLASHsubfile] = ACTIONS(149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(149), + [anon_sym_BSLASHbibliography] = ACTIONS(149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(149), + [anon_sym_BSLASHincludesvg] = ACTIONS(149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(149), + [anon_sym_BSLASHimport] = ACTIONS(149), + [anon_sym_BSLASHsubimport] = ACTIONS(149), + [anon_sym_BSLASHinputfrom] = ACTIONS(149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(149), + [anon_sym_BSLASHincludefrom] = ACTIONS(149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(149), + [anon_sym_BSLASHcaption] = ACTIONS(149), + [anon_sym_BSLASHcite] = ACTIONS(149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(147), + [anon_sym_BSLASHCite] = ACTIONS(149), + [anon_sym_BSLASHnocite] = ACTIONS(149), + [anon_sym_BSLASHcitet] = ACTIONS(149), + [anon_sym_BSLASHcitep] = ACTIONS(149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteauthor] = ACTIONS(149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitetitle] = ACTIONS(149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteyear] = ACTIONS(149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(147), + [anon_sym_BSLASHcitedate] = ACTIONS(149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(147), + [anon_sym_BSLASHciteurl] = ACTIONS(149), + [anon_sym_BSLASHfullcite] = ACTIONS(149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(149), + [anon_sym_BSLASHcitealt] = ACTIONS(149), + [anon_sym_BSLASHcitealp] = ACTIONS(149), + [anon_sym_BSLASHcitetext] = ACTIONS(149), + [anon_sym_BSLASHparencite] = ACTIONS(149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(147), + [anon_sym_BSLASHParencite] = ACTIONS(149), + [anon_sym_BSLASHfootcite] = ACTIONS(149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(149), + [anon_sym_BSLASHtextcite] = ACTIONS(149), + [anon_sym_BSLASHTextcite] = ACTIONS(149), + [anon_sym_BSLASHsmartcite] = ACTIONS(149), + [anon_sym_BSLASHSmartcite] = ACTIONS(149), + [anon_sym_BSLASHsupercite] = ACTIONS(149), + [anon_sym_BSLASHautocite] = ACTIONS(149), + [anon_sym_BSLASHAutocite] = ACTIONS(149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(147), + [anon_sym_BSLASHvolcite] = ACTIONS(149), + [anon_sym_BSLASHVolcite] = ACTIONS(149), + [anon_sym_BSLASHpvolcite] = ACTIONS(149), + [anon_sym_BSLASHPvolcite] = ACTIONS(149), + [anon_sym_BSLASHfvolcite] = ACTIONS(149), + [anon_sym_BSLASHftvolcite] = ACTIONS(149), + [anon_sym_BSLASHsvolcite] = ACTIONS(149), + [anon_sym_BSLASHSvolcite] = ACTIONS(149), + [anon_sym_BSLASHtvolcite] = ACTIONS(149), + [anon_sym_BSLASHTvolcite] = ACTIONS(149), + [anon_sym_BSLASHavolcite] = ACTIONS(149), + [anon_sym_BSLASHAvolcite] = ACTIONS(149), + [anon_sym_BSLASHnotecite] = ACTIONS(149), + [anon_sym_BSLASHNotecite] = ACTIONS(149), + [anon_sym_BSLASHpnotecite] = ACTIONS(149), + [anon_sym_BSLASHPnotecite] = ACTIONS(149), + [anon_sym_BSLASHfnotecite] = ACTIONS(149), + [anon_sym_BSLASHlabel] = ACTIONS(149), + [anon_sym_BSLASHref] = ACTIONS(149), + [anon_sym_BSLASHeqref] = ACTIONS(149), + [anon_sym_BSLASHvref] = ACTIONS(149), + [anon_sym_BSLASHVref] = ACTIONS(149), + [anon_sym_BSLASHautoref] = ACTIONS(149), + [anon_sym_BSLASHpageref] = ACTIONS(149), + [anon_sym_BSLASHcref] = ACTIONS(149), + [anon_sym_BSLASHCref] = ACTIONS(149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(147), + [anon_sym_BSLASHnamecref] = ACTIONS(149), + [anon_sym_BSLASHnameCref] = ACTIONS(149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(149), + [anon_sym_BSLASHlabelcref] = ACTIONS(149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(149), + [anon_sym_BSLASHcrefrange] = ACTIONS(149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHCrefrange] = ACTIONS(149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(147), + [anon_sym_BSLASHnewlabel] = ACTIONS(149), + [anon_sym_BSLASHnewcommand] = ACTIONS(149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(147), + [anon_sym_BSLASHdef] = ACTIONS(149), + [anon_sym_BSLASHlet] = ACTIONS(149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(149), + [anon_sym_BSLASHgls] = ACTIONS(149), + [anon_sym_BSLASHGls] = ACTIONS(149), + [anon_sym_BSLASHGLS] = ACTIONS(149), + [anon_sym_BSLASHglspl] = ACTIONS(149), + [anon_sym_BSLASHGlspl] = ACTIONS(149), + [anon_sym_BSLASHGLSpl] = ACTIONS(149), + [anon_sym_BSLASHglsdisp] = ACTIONS(149), + [anon_sym_BSLASHglslink] = ACTIONS(149), + [anon_sym_BSLASHglstext] = ACTIONS(149), + [anon_sym_BSLASHGlstext] = ACTIONS(149), + [anon_sym_BSLASHGLStext] = ACTIONS(149), + [anon_sym_BSLASHglsfirst] = ACTIONS(149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(149), + [anon_sym_BSLASHglsplural] = ACTIONS(149), + [anon_sym_BSLASHGlsplural] = ACTIONS(149), + [anon_sym_BSLASHGLSplural] = ACTIONS(149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(149), + [anon_sym_BSLASHglsname] = ACTIONS(149), + [anon_sym_BSLASHGlsname] = ACTIONS(149), + [anon_sym_BSLASHGLSname] = ACTIONS(149), + [anon_sym_BSLASHglssymbol] = ACTIONS(149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(149), + [anon_sym_BSLASHglsdesc] = ACTIONS(149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(149), + [anon_sym_BSLASHglsuseri] = ACTIONS(149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(149), + [anon_sym_BSLASHglsuserii] = ACTIONS(149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(149), + [anon_sym_BSLASHglsuserv] = ACTIONS(149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(149), + [anon_sym_BSLASHglsuservi] = ACTIONS(149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(149), + [anon_sym_BSLASHnewacronym] = ACTIONS(149), + [anon_sym_BSLASHacrshort] = ACTIONS(149), + [anon_sym_BSLASHAcrshort] = ACTIONS(149), + [anon_sym_BSLASHACRshort] = ACTIONS(149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(149), + [anon_sym_BSLASHacrlong] = ACTIONS(149), + [anon_sym_BSLASHAcrlong] = ACTIONS(149), + [anon_sym_BSLASHACRlong] = ACTIONS(149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(149), + [anon_sym_BSLASHacrfull] = ACTIONS(149), + [anon_sym_BSLASHAcrfull] = ACTIONS(149), + [anon_sym_BSLASHACRfull] = ACTIONS(149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(149), + [anon_sym_BSLASHacs] = ACTIONS(149), + [anon_sym_BSLASHAcs] = ACTIONS(149), + [anon_sym_BSLASHacsp] = ACTIONS(149), + [anon_sym_BSLASHAcsp] = ACTIONS(149), + [anon_sym_BSLASHacl] = ACTIONS(149), + [anon_sym_BSLASHAcl] = ACTIONS(149), + [anon_sym_BSLASHaclp] = ACTIONS(149), + [anon_sym_BSLASHAclp] = ACTIONS(149), + [anon_sym_BSLASHacf] = ACTIONS(149), + [anon_sym_BSLASHAcf] = ACTIONS(149), + [anon_sym_BSLASHacfp] = ACTIONS(149), + [anon_sym_BSLASHAcfp] = ACTIONS(149), + [anon_sym_BSLASHac] = ACTIONS(149), + [anon_sym_BSLASHAc] = ACTIONS(149), + [anon_sym_BSLASHacp] = ACTIONS(149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(149), + [anon_sym_BSLASHcolor] = ACTIONS(149), + [anon_sym_BSLASHcolorbox] = ACTIONS(149), + [anon_sym_BSLASHtextcolor] = ACTIONS(149), + [anon_sym_BSLASHpagecolor] = ACTIONS(149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(149), + [anon_sym_BSLASHtext] = ACTIONS(149), + [anon_sym_BSLASHintertext] = ACTIONS(149), + [anon_sym_shortintertext] = ACTIONS(149), }, - [1490] = { - [sym_curly_group] = STATE(1499), - [sym_brack_group_text] = STATE(2047), - [sym_command_name] = ACTIONS(4749), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4749), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4747), - [anon_sym_COMMA] = ACTIONS(4747), - [anon_sym_EQ] = ACTIONS(4747), - [anon_sym_LBRACE] = ACTIONS(5447), - [anon_sym_RBRACE] = ACTIONS(4747), - [sym_word] = ACTIONS(4749), - [sym_placeholder] = ACTIONS(4747), - [anon_sym_PLUS] = ACTIONS(4749), - [anon_sym_DASH] = ACTIONS(4749), - [anon_sym_STAR] = ACTIONS(4749), - [anon_sym_SLASH] = ACTIONS(4749), - [anon_sym_CARET] = ACTIONS(4749), - [anon_sym__] = ACTIONS(4749), - [anon_sym_LT] = ACTIONS(4749), - [anon_sym_GT] = ACTIONS(4749), - [anon_sym_BANG] = ACTIONS(4749), - [anon_sym_PIPE] = ACTIONS(4749), - [anon_sym_COLON] = ACTIONS(4749), - [anon_sym_SQUOTE] = ACTIONS(4749), - [anon_sym_BSLASHusepackage] = ACTIONS(4749), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4749), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4749), - [anon_sym_BSLASHinclude] = ACTIONS(4749), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4749), - [anon_sym_BSLASHinput] = ACTIONS(4749), - [anon_sym_BSLASHsubfile] = ACTIONS(4749), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4749), - [anon_sym_BSLASHbibliography] = ACTIONS(4749), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4749), - [anon_sym_BSLASHincludesvg] = ACTIONS(4749), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4749), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4749), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4749), - [anon_sym_BSLASHimport] = ACTIONS(4749), - [anon_sym_BSLASHsubimport] = ACTIONS(4749), - [anon_sym_BSLASHinputfrom] = ACTIONS(4749), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4749), - [anon_sym_BSLASHincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4749), - [anon_sym_BSLASHcaption] = ACTIONS(4749), - [anon_sym_BSLASHcite] = ACTIONS(4749), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCite] = ACTIONS(4749), - [anon_sym_BSLASHnocite] = ACTIONS(4749), - [anon_sym_BSLASHcitet] = ACTIONS(4749), - [anon_sym_BSLASHcitep] = ACTIONS(4749), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteauthor] = ACTIONS(4749), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4749), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitetitle] = ACTIONS(4749), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteyear] = ACTIONS(4749), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4747), - [anon_sym_BSLASHcitedate] = ACTIONS(4749), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4747), - [anon_sym_BSLASHciteurl] = ACTIONS(4749), - [anon_sym_BSLASHfullcite] = ACTIONS(4749), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4749), - [anon_sym_BSLASHcitealt] = ACTIONS(4749), - [anon_sym_BSLASHcitealp] = ACTIONS(4749), - [anon_sym_BSLASHcitetext] = ACTIONS(4749), - [anon_sym_BSLASHparencite] = ACTIONS(4749), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHParencite] = ACTIONS(4749), - [anon_sym_BSLASHfootcite] = ACTIONS(4749), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4749), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4749), - [anon_sym_BSLASHtextcite] = ACTIONS(4749), - [anon_sym_BSLASHTextcite] = ACTIONS(4749), - [anon_sym_BSLASHsmartcite] = ACTIONS(4749), - [anon_sym_BSLASHSmartcite] = ACTIONS(4749), - [anon_sym_BSLASHsupercite] = ACTIONS(4749), - [anon_sym_BSLASHautocite] = ACTIONS(4749), - [anon_sym_BSLASHAutocite] = ACTIONS(4749), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4747), - [anon_sym_BSLASHvolcite] = ACTIONS(4749), - [anon_sym_BSLASHVolcite] = ACTIONS(4749), - [anon_sym_BSLASHpvolcite] = ACTIONS(4749), - [anon_sym_BSLASHPvolcite] = ACTIONS(4749), - [anon_sym_BSLASHfvolcite] = ACTIONS(4749), - [anon_sym_BSLASHftvolcite] = ACTIONS(4749), - [anon_sym_BSLASHsvolcite] = ACTIONS(4749), - [anon_sym_BSLASHSvolcite] = ACTIONS(4749), - [anon_sym_BSLASHtvolcite] = ACTIONS(4749), - [anon_sym_BSLASHTvolcite] = ACTIONS(4749), - [anon_sym_BSLASHavolcite] = ACTIONS(4749), - [anon_sym_BSLASHAvolcite] = ACTIONS(4749), - [anon_sym_BSLASHnotecite] = ACTIONS(4749), - [anon_sym_BSLASHNotecite] = ACTIONS(4749), - [anon_sym_BSLASHpnotecite] = ACTIONS(4749), - [anon_sym_BSLASHPnotecite] = ACTIONS(4749), - [anon_sym_BSLASHfnotecite] = ACTIONS(4749), - [anon_sym_BSLASHlabel] = ACTIONS(4749), - [anon_sym_BSLASHref] = ACTIONS(4749), - [anon_sym_BSLASHeqref] = ACTIONS(4749), - [anon_sym_BSLASHvref] = ACTIONS(4749), - [anon_sym_BSLASHVref] = ACTIONS(4749), - [anon_sym_BSLASHautoref] = ACTIONS(4749), - [anon_sym_BSLASHpageref] = ACTIONS(4749), - [anon_sym_BSLASHcref] = ACTIONS(4749), - [anon_sym_BSLASHCref] = ACTIONS(4749), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnameCref] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4749), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4749), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4749), - [anon_sym_BSLASHlabelcref] = ACTIONS(4749), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange] = ACTIONS(4749), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHCrefrange] = ACTIONS(4749), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4747), - [anon_sym_BSLASHnewlabel] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand] = ACTIONS(4749), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4749), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4749), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4747), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4749), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4747), - [anon_sym_BSLASHdef] = ACTIONS(4749), - [anon_sym_BSLASHlet] = ACTIONS(4749), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4749), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4749), - [anon_sym_BSLASHgls] = ACTIONS(4749), - [anon_sym_BSLASHGls] = ACTIONS(4749), - [anon_sym_BSLASHGLS] = ACTIONS(4749), - [anon_sym_BSLASHglspl] = ACTIONS(4749), - [anon_sym_BSLASHGlspl] = ACTIONS(4749), - [anon_sym_BSLASHGLSpl] = ACTIONS(4749), - [anon_sym_BSLASHglsdisp] = ACTIONS(4749), - [anon_sym_BSLASHglslink] = ACTIONS(4749), - [anon_sym_BSLASHglstext] = ACTIONS(4749), - [anon_sym_BSLASHGlstext] = ACTIONS(4749), - [anon_sym_BSLASHGLStext] = ACTIONS(4749), - [anon_sym_BSLASHglsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4749), - [anon_sym_BSLASHglsplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSplural] = ACTIONS(4749), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4749), - [anon_sym_BSLASHglsname] = ACTIONS(4749), - [anon_sym_BSLASHGlsname] = ACTIONS(4749), - [anon_sym_BSLASHGLSname] = ACTIONS(4749), - [anon_sym_BSLASHglssymbol] = ACTIONS(4749), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4749), - [anon_sym_BSLASHglsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4749), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4749), - [anon_sym_BSLASHglsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4749), - [anon_sym_BSLASHglsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4749), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4749), - [anon_sym_BSLASHglsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4749), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4749), - [anon_sym_BSLASHglsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4749), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4749), - [anon_sym_BSLASHnewacronym] = ACTIONS(4749), - [anon_sym_BSLASHacrshort] = ACTIONS(4749), - [anon_sym_BSLASHAcrshort] = ACTIONS(4749), - [anon_sym_BSLASHACRshort] = ACTIONS(4749), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4749), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4749), - [anon_sym_BSLASHacrlong] = ACTIONS(4749), - [anon_sym_BSLASHAcrlong] = ACTIONS(4749), - [anon_sym_BSLASHACRlong] = ACTIONS(4749), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4749), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4749), - [anon_sym_BSLASHacrfull] = ACTIONS(4749), - [anon_sym_BSLASHAcrfull] = ACTIONS(4749), - [anon_sym_BSLASHACRfull] = ACTIONS(4749), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4749), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4749), - [anon_sym_BSLASHacs] = ACTIONS(4749), - [anon_sym_BSLASHAcs] = ACTIONS(4749), - [anon_sym_BSLASHacsp] = ACTIONS(4749), - [anon_sym_BSLASHAcsp] = ACTIONS(4749), - [anon_sym_BSLASHacl] = ACTIONS(4749), - [anon_sym_BSLASHAcl] = ACTIONS(4749), - [anon_sym_BSLASHaclp] = ACTIONS(4749), - [anon_sym_BSLASHAclp] = ACTIONS(4749), - [anon_sym_BSLASHacf] = ACTIONS(4749), - [anon_sym_BSLASHAcf] = ACTIONS(4749), - [anon_sym_BSLASHacfp] = ACTIONS(4749), - [anon_sym_BSLASHAcfp] = ACTIONS(4749), - [anon_sym_BSLASHac] = ACTIONS(4749), - [anon_sym_BSLASHAc] = ACTIONS(4749), - [anon_sym_BSLASHacp] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4749), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4749), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4749), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4749), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4749), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4749), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4749), - [anon_sym_BSLASHcolor] = ACTIONS(4749), - [anon_sym_BSLASHcolorbox] = ACTIONS(4749), - [anon_sym_BSLASHtextcolor] = ACTIONS(4749), - [anon_sym_BSLASHpagecolor] = ACTIONS(4749), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4749), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4749), + [1448] = { + [sym_command_name] = ACTIONS(4969), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4969), + [anon_sym_LPAREN] = ACTIONS(4967), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4967), + [anon_sym_RBRACK] = ACTIONS(4967), + [anon_sym_COMMA] = ACTIONS(4967), + [anon_sym_LBRACE] = ACTIONS(4967), + [anon_sym_RBRACE] = ACTIONS(4967), + [sym_word] = ACTIONS(4969), + [sym_placeholder] = ACTIONS(4967), + [anon_sym_PLUS] = ACTIONS(4969), + [anon_sym_DASH] = ACTIONS(4969), + [anon_sym_STAR] = ACTIONS(4969), + [anon_sym_SLASH] = ACTIONS(4969), + [anon_sym_CARET] = ACTIONS(4969), + [anon_sym__] = ACTIONS(4969), + [anon_sym_LT] = ACTIONS(4969), + [anon_sym_GT] = ACTIONS(4969), + [anon_sym_BANG] = ACTIONS(4969), + [anon_sym_PIPE] = ACTIONS(4969), + [anon_sym_COLON] = ACTIONS(4969), + [anon_sym_SQUOTE] = ACTIONS(4969), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4967), + [anon_sym_DOLLAR] = ACTIONS(4969), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4967), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4967), + [anon_sym_BSLASHusepackage] = ACTIONS(4969), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4969), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4969), + [anon_sym_BSLASHinclude] = ACTIONS(4969), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4969), + [anon_sym_BSLASHinput] = ACTIONS(4969), + [anon_sym_BSLASHsubfile] = ACTIONS(4969), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4969), + [anon_sym_BSLASHbibliography] = ACTIONS(4969), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4969), + [anon_sym_BSLASHincludesvg] = ACTIONS(4969), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4969), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4969), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4969), + [anon_sym_BSLASHimport] = ACTIONS(4969), + [anon_sym_BSLASHsubimport] = ACTIONS(4969), + [anon_sym_BSLASHinputfrom] = ACTIONS(4969), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4969), + [anon_sym_BSLASHincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4969), + [anon_sym_BSLASHcaption] = ACTIONS(4969), + [anon_sym_BSLASHcite] = ACTIONS(4969), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCite] = ACTIONS(4969), + [anon_sym_BSLASHnocite] = ACTIONS(4969), + [anon_sym_BSLASHcitet] = ACTIONS(4969), + [anon_sym_BSLASHcitep] = ACTIONS(4969), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteauthor] = ACTIONS(4969), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4969), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitetitle] = ACTIONS(4969), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteyear] = ACTIONS(4969), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4967), + [anon_sym_BSLASHcitedate] = ACTIONS(4969), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4967), + [anon_sym_BSLASHciteurl] = ACTIONS(4969), + [anon_sym_BSLASHfullcite] = ACTIONS(4969), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4969), + [anon_sym_BSLASHcitealt] = ACTIONS(4969), + [anon_sym_BSLASHcitealp] = ACTIONS(4969), + [anon_sym_BSLASHcitetext] = ACTIONS(4969), + [anon_sym_BSLASHparencite] = ACTIONS(4969), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHParencite] = ACTIONS(4969), + [anon_sym_BSLASHfootcite] = ACTIONS(4969), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4969), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4969), + [anon_sym_BSLASHtextcite] = ACTIONS(4969), + [anon_sym_BSLASHTextcite] = ACTIONS(4969), + [anon_sym_BSLASHsmartcite] = ACTIONS(4969), + [anon_sym_BSLASHSmartcite] = ACTIONS(4969), + [anon_sym_BSLASHsupercite] = ACTIONS(4969), + [anon_sym_BSLASHautocite] = ACTIONS(4969), + [anon_sym_BSLASHAutocite] = ACTIONS(4969), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4967), + [anon_sym_BSLASHvolcite] = ACTIONS(4969), + [anon_sym_BSLASHVolcite] = ACTIONS(4969), + [anon_sym_BSLASHpvolcite] = ACTIONS(4969), + [anon_sym_BSLASHPvolcite] = ACTIONS(4969), + [anon_sym_BSLASHfvolcite] = ACTIONS(4969), + [anon_sym_BSLASHftvolcite] = ACTIONS(4969), + [anon_sym_BSLASHsvolcite] = ACTIONS(4969), + [anon_sym_BSLASHSvolcite] = ACTIONS(4969), + [anon_sym_BSLASHtvolcite] = ACTIONS(4969), + [anon_sym_BSLASHTvolcite] = ACTIONS(4969), + [anon_sym_BSLASHavolcite] = ACTIONS(4969), + [anon_sym_BSLASHAvolcite] = ACTIONS(4969), + [anon_sym_BSLASHnotecite] = ACTIONS(4969), + [anon_sym_BSLASHNotecite] = ACTIONS(4969), + [anon_sym_BSLASHpnotecite] = ACTIONS(4969), + [anon_sym_BSLASHPnotecite] = ACTIONS(4969), + [anon_sym_BSLASHfnotecite] = ACTIONS(4969), + [anon_sym_BSLASHlabel] = ACTIONS(4969), + [anon_sym_BSLASHref] = ACTIONS(4969), + [anon_sym_BSLASHeqref] = ACTIONS(4969), + [anon_sym_BSLASHvref] = ACTIONS(4969), + [anon_sym_BSLASHVref] = ACTIONS(4969), + [anon_sym_BSLASHautoref] = ACTIONS(4969), + [anon_sym_BSLASHpageref] = ACTIONS(4969), + [anon_sym_BSLASHcref] = ACTIONS(4969), + [anon_sym_BSLASHCref] = ACTIONS(4969), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnameCref] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4969), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4969), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4969), + [anon_sym_BSLASHlabelcref] = ACTIONS(4969), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange] = ACTIONS(4969), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHCrefrange] = ACTIONS(4969), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4967), + [anon_sym_BSLASHnewlabel] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand] = ACTIONS(4969), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4969), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4969), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4967), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4969), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4967), + [anon_sym_BSLASHdef] = ACTIONS(4969), + [anon_sym_BSLASHlet] = ACTIONS(4969), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4969), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4969), + [anon_sym_BSLASHgls] = ACTIONS(4969), + [anon_sym_BSLASHGls] = ACTIONS(4969), + [anon_sym_BSLASHGLS] = ACTIONS(4969), + [anon_sym_BSLASHglspl] = ACTIONS(4969), + [anon_sym_BSLASHGlspl] = ACTIONS(4969), + [anon_sym_BSLASHGLSpl] = ACTIONS(4969), + [anon_sym_BSLASHglsdisp] = ACTIONS(4969), + [anon_sym_BSLASHglslink] = ACTIONS(4969), + [anon_sym_BSLASHglstext] = ACTIONS(4969), + [anon_sym_BSLASHGlstext] = ACTIONS(4969), + [anon_sym_BSLASHGLStext] = ACTIONS(4969), + [anon_sym_BSLASHglsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4969), + [anon_sym_BSLASHglsplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSplural] = ACTIONS(4969), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4969), + [anon_sym_BSLASHglsname] = ACTIONS(4969), + [anon_sym_BSLASHGlsname] = ACTIONS(4969), + [anon_sym_BSLASHGLSname] = ACTIONS(4969), + [anon_sym_BSLASHglssymbol] = ACTIONS(4969), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4969), + [anon_sym_BSLASHglsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4969), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4969), + [anon_sym_BSLASHglsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4969), + [anon_sym_BSLASHglsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4969), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4969), + [anon_sym_BSLASHglsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4969), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4969), + [anon_sym_BSLASHglsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4969), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4969), + [anon_sym_BSLASHnewacronym] = ACTIONS(4969), + [anon_sym_BSLASHacrshort] = ACTIONS(4969), + [anon_sym_BSLASHAcrshort] = ACTIONS(4969), + [anon_sym_BSLASHACRshort] = ACTIONS(4969), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4969), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4969), + [anon_sym_BSLASHacrlong] = ACTIONS(4969), + [anon_sym_BSLASHAcrlong] = ACTIONS(4969), + [anon_sym_BSLASHACRlong] = ACTIONS(4969), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4969), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4969), + [anon_sym_BSLASHacrfull] = ACTIONS(4969), + [anon_sym_BSLASHAcrfull] = ACTIONS(4969), + [anon_sym_BSLASHACRfull] = ACTIONS(4969), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4969), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4969), + [anon_sym_BSLASHacs] = ACTIONS(4969), + [anon_sym_BSLASHAcs] = ACTIONS(4969), + [anon_sym_BSLASHacsp] = ACTIONS(4969), + [anon_sym_BSLASHAcsp] = ACTIONS(4969), + [anon_sym_BSLASHacl] = ACTIONS(4969), + [anon_sym_BSLASHAcl] = ACTIONS(4969), + [anon_sym_BSLASHaclp] = ACTIONS(4969), + [anon_sym_BSLASHAclp] = ACTIONS(4969), + [anon_sym_BSLASHacf] = ACTIONS(4969), + [anon_sym_BSLASHAcf] = ACTIONS(4969), + [anon_sym_BSLASHacfp] = ACTIONS(4969), + [anon_sym_BSLASHAcfp] = ACTIONS(4969), + [anon_sym_BSLASHac] = ACTIONS(4969), + [anon_sym_BSLASHAc] = ACTIONS(4969), + [anon_sym_BSLASHacp] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4969), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4969), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4969), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4969), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4969), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4969), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4969), + [anon_sym_BSLASHcolor] = ACTIONS(4969), + [anon_sym_BSLASHcolorbox] = ACTIONS(4969), + [anon_sym_BSLASHtextcolor] = ACTIONS(4969), + [anon_sym_BSLASHpagecolor] = ACTIONS(4969), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4969), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4969), + [anon_sym_BSLASHtext] = ACTIONS(4969), + [anon_sym_BSLASHintertext] = ACTIONS(4969), + [anon_sym_shortintertext] = ACTIONS(4969), + }, + [1449] = { + [sym_command_name] = ACTIONS(5045), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5045), + [anon_sym_LPAREN] = ACTIONS(5043), + [anon_sym_RPAREN] = ACTIONS(5043), + [anon_sym_LBRACK] = ACTIONS(5043), + [anon_sym_RBRACK] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_LBRACE] = ACTIONS(5043), + [anon_sym_RBRACE] = ACTIONS(5043), + [sym_word] = ACTIONS(5045), + [sym_placeholder] = ACTIONS(5043), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_CARET] = ACTIONS(5045), + [anon_sym__] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_COLON] = ACTIONS(5045), + [anon_sym_SQUOTE] = ACTIONS(5045), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5043), + [anon_sym_DOLLAR] = ACTIONS(5045), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5043), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5043), + [anon_sym_BSLASHusepackage] = ACTIONS(5045), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), + [anon_sym_BSLASHinclude] = ACTIONS(5045), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), + [anon_sym_BSLASHinput] = ACTIONS(5045), + [anon_sym_BSLASHsubfile] = ACTIONS(5045), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), + [anon_sym_BSLASHbibliography] = ACTIONS(5045), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), + [anon_sym_BSLASHincludesvg] = ACTIONS(5045), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), + [anon_sym_BSLASHimport] = ACTIONS(5045), + [anon_sym_BSLASHsubimport] = ACTIONS(5045), + [anon_sym_BSLASHinputfrom] = ACTIONS(5045), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), + [anon_sym_BSLASHincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHcaption] = ACTIONS(5045), + [anon_sym_BSLASHcite] = ACTIONS(5045), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCite] = ACTIONS(5045), + [anon_sym_BSLASHnocite] = ACTIONS(5045), + [anon_sym_BSLASHcitet] = ACTIONS(5045), + [anon_sym_BSLASHcitep] = ACTIONS(5045), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteauthor] = ACTIONS(5045), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitetitle] = ACTIONS(5045), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteyear] = ACTIONS(5045), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitedate] = ACTIONS(5045), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteurl] = ACTIONS(5045), + [anon_sym_BSLASHfullcite] = ACTIONS(5045), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), + [anon_sym_BSLASHcitealt] = ACTIONS(5045), + [anon_sym_BSLASHcitealp] = ACTIONS(5045), + [anon_sym_BSLASHcitetext] = ACTIONS(5045), + [anon_sym_BSLASHparencite] = ACTIONS(5045), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHParencite] = ACTIONS(5045), + [anon_sym_BSLASHfootcite] = ACTIONS(5045), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), + [anon_sym_BSLASHtextcite] = ACTIONS(5045), + [anon_sym_BSLASHTextcite] = ACTIONS(5045), + [anon_sym_BSLASHsmartcite] = ACTIONS(5045), + [anon_sym_BSLASHSmartcite] = ACTIONS(5045), + [anon_sym_BSLASHsupercite] = ACTIONS(5045), + [anon_sym_BSLASHautocite] = ACTIONS(5045), + [anon_sym_BSLASHAutocite] = ACTIONS(5045), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHvolcite] = ACTIONS(5045), + [anon_sym_BSLASHVolcite] = ACTIONS(5045), + [anon_sym_BSLASHpvolcite] = ACTIONS(5045), + [anon_sym_BSLASHPvolcite] = ACTIONS(5045), + [anon_sym_BSLASHfvolcite] = ACTIONS(5045), + [anon_sym_BSLASHftvolcite] = ACTIONS(5045), + [anon_sym_BSLASHsvolcite] = ACTIONS(5045), + [anon_sym_BSLASHSvolcite] = ACTIONS(5045), + [anon_sym_BSLASHtvolcite] = ACTIONS(5045), + [anon_sym_BSLASHTvolcite] = ACTIONS(5045), + [anon_sym_BSLASHavolcite] = ACTIONS(5045), + [anon_sym_BSLASHAvolcite] = ACTIONS(5045), + [anon_sym_BSLASHnotecite] = ACTIONS(5045), + [anon_sym_BSLASHNotecite] = ACTIONS(5045), + [anon_sym_BSLASHpnotecite] = ACTIONS(5045), + [anon_sym_BSLASHPnotecite] = ACTIONS(5045), + [anon_sym_BSLASHfnotecite] = ACTIONS(5045), + [anon_sym_BSLASHlabel] = ACTIONS(5045), + [anon_sym_BSLASHref] = ACTIONS(5045), + [anon_sym_BSLASHeqref] = ACTIONS(5045), + [anon_sym_BSLASHvref] = ACTIONS(5045), + [anon_sym_BSLASHVref] = ACTIONS(5045), + [anon_sym_BSLASHautoref] = ACTIONS(5045), + [anon_sym_BSLASHpageref] = ACTIONS(5045), + [anon_sym_BSLASHcref] = ACTIONS(5045), + [anon_sym_BSLASHCref] = ACTIONS(5045), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnameCref] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHlabelcref] = ACTIONS(5045), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCrefrange] = ACTIONS(5045), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnewlabel] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), + [anon_sym_BSLASHdef] = ACTIONS(5045), + [anon_sym_BSLASHlet] = ACTIONS(5045), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), + [anon_sym_BSLASHgls] = ACTIONS(5045), + [anon_sym_BSLASHGls] = ACTIONS(5045), + [anon_sym_BSLASHGLS] = ACTIONS(5045), + [anon_sym_BSLASHglspl] = ACTIONS(5045), + [anon_sym_BSLASHGlspl] = ACTIONS(5045), + [anon_sym_BSLASHGLSpl] = ACTIONS(5045), + [anon_sym_BSLASHglsdisp] = ACTIONS(5045), + [anon_sym_BSLASHglslink] = ACTIONS(5045), + [anon_sym_BSLASHglstext] = ACTIONS(5045), + [anon_sym_BSLASHGlstext] = ACTIONS(5045), + [anon_sym_BSLASHGLStext] = ACTIONS(5045), + [anon_sym_BSLASHglsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), + [anon_sym_BSLASHglsplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSplural] = ACTIONS(5045), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHglsname] = ACTIONS(5045), + [anon_sym_BSLASHGlsname] = ACTIONS(5045), + [anon_sym_BSLASHGLSname] = ACTIONS(5045), + [anon_sym_BSLASHglssymbol] = ACTIONS(5045), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), + [anon_sym_BSLASHglsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), + [anon_sym_BSLASHglsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), + [anon_sym_BSLASHglsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), + [anon_sym_BSLASHglsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), + [anon_sym_BSLASHglsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), + [anon_sym_BSLASHnewacronym] = ACTIONS(5045), + [anon_sym_BSLASHacrshort] = ACTIONS(5045), + [anon_sym_BSLASHAcrshort] = ACTIONS(5045), + [anon_sym_BSLASHACRshort] = ACTIONS(5045), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), + [anon_sym_BSLASHacrlong] = ACTIONS(5045), + [anon_sym_BSLASHAcrlong] = ACTIONS(5045), + [anon_sym_BSLASHACRlong] = ACTIONS(5045), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), + [anon_sym_BSLASHacrfull] = ACTIONS(5045), + [anon_sym_BSLASHAcrfull] = ACTIONS(5045), + [anon_sym_BSLASHACRfull] = ACTIONS(5045), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), + [anon_sym_BSLASHacs] = ACTIONS(5045), + [anon_sym_BSLASHAcs] = ACTIONS(5045), + [anon_sym_BSLASHacsp] = ACTIONS(5045), + [anon_sym_BSLASHAcsp] = ACTIONS(5045), + [anon_sym_BSLASHacl] = ACTIONS(5045), + [anon_sym_BSLASHAcl] = ACTIONS(5045), + [anon_sym_BSLASHaclp] = ACTIONS(5045), + [anon_sym_BSLASHAclp] = ACTIONS(5045), + [anon_sym_BSLASHacf] = ACTIONS(5045), + [anon_sym_BSLASHAcf] = ACTIONS(5045), + [anon_sym_BSLASHacfp] = ACTIONS(5045), + [anon_sym_BSLASHAcfp] = ACTIONS(5045), + [anon_sym_BSLASHac] = ACTIONS(5045), + [anon_sym_BSLASHAc] = ACTIONS(5045), + [anon_sym_BSLASHacp] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), + [anon_sym_BSLASHcolor] = ACTIONS(5045), + [anon_sym_BSLASHcolorbox] = ACTIONS(5045), + [anon_sym_BSLASHtextcolor] = ACTIONS(5045), + [anon_sym_BSLASHpagecolor] = ACTIONS(5045), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), + [anon_sym_BSLASHtext] = ACTIONS(5045), + [anon_sym_BSLASHintertext] = ACTIONS(5045), + [anon_sym_shortintertext] = ACTIONS(5045), + }, + [1450] = { + [sym_command_name] = ACTIONS(5041), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5041), + [anon_sym_LPAREN] = ACTIONS(5039), + [anon_sym_RPAREN] = ACTIONS(5039), + [anon_sym_LBRACK] = ACTIONS(5039), + [anon_sym_RBRACK] = ACTIONS(5039), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_LBRACE] = ACTIONS(5039), + [anon_sym_RBRACE] = ACTIONS(5039), + [sym_word] = ACTIONS(5041), + [sym_placeholder] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_SLASH] = ACTIONS(5041), + [anon_sym_CARET] = ACTIONS(5041), + [anon_sym__] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5041), + [anon_sym_PIPE] = ACTIONS(5041), + [anon_sym_COLON] = ACTIONS(5041), + [anon_sym_SQUOTE] = ACTIONS(5041), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5039), + [anon_sym_DOLLAR] = ACTIONS(5041), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5039), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5039), + [anon_sym_BSLASHusepackage] = ACTIONS(5041), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), + [anon_sym_BSLASHinclude] = ACTIONS(5041), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), + [anon_sym_BSLASHinput] = ACTIONS(5041), + [anon_sym_BSLASHsubfile] = ACTIONS(5041), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), + [anon_sym_BSLASHbibliography] = ACTIONS(5041), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), + [anon_sym_BSLASHincludesvg] = ACTIONS(5041), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), + [anon_sym_BSLASHimport] = ACTIONS(5041), + [anon_sym_BSLASHsubimport] = ACTIONS(5041), + [anon_sym_BSLASHinputfrom] = ACTIONS(5041), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), + [anon_sym_BSLASHincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHcaption] = ACTIONS(5041), + [anon_sym_BSLASHcite] = ACTIONS(5041), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCite] = ACTIONS(5041), + [anon_sym_BSLASHnocite] = ACTIONS(5041), + [anon_sym_BSLASHcitet] = ACTIONS(5041), + [anon_sym_BSLASHcitep] = ACTIONS(5041), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteauthor] = ACTIONS(5041), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitetitle] = ACTIONS(5041), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteyear] = ACTIONS(5041), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitedate] = ACTIONS(5041), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteurl] = ACTIONS(5041), + [anon_sym_BSLASHfullcite] = ACTIONS(5041), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), + [anon_sym_BSLASHcitealt] = ACTIONS(5041), + [anon_sym_BSLASHcitealp] = ACTIONS(5041), + [anon_sym_BSLASHcitetext] = ACTIONS(5041), + [anon_sym_BSLASHparencite] = ACTIONS(5041), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHParencite] = ACTIONS(5041), + [anon_sym_BSLASHfootcite] = ACTIONS(5041), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), + [anon_sym_BSLASHtextcite] = ACTIONS(5041), + [anon_sym_BSLASHTextcite] = ACTIONS(5041), + [anon_sym_BSLASHsmartcite] = ACTIONS(5041), + [anon_sym_BSLASHSmartcite] = ACTIONS(5041), + [anon_sym_BSLASHsupercite] = ACTIONS(5041), + [anon_sym_BSLASHautocite] = ACTIONS(5041), + [anon_sym_BSLASHAutocite] = ACTIONS(5041), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHvolcite] = ACTIONS(5041), + [anon_sym_BSLASHVolcite] = ACTIONS(5041), + [anon_sym_BSLASHpvolcite] = ACTIONS(5041), + [anon_sym_BSLASHPvolcite] = ACTIONS(5041), + [anon_sym_BSLASHfvolcite] = ACTIONS(5041), + [anon_sym_BSLASHftvolcite] = ACTIONS(5041), + [anon_sym_BSLASHsvolcite] = ACTIONS(5041), + [anon_sym_BSLASHSvolcite] = ACTIONS(5041), + [anon_sym_BSLASHtvolcite] = ACTIONS(5041), + [anon_sym_BSLASHTvolcite] = ACTIONS(5041), + [anon_sym_BSLASHavolcite] = ACTIONS(5041), + [anon_sym_BSLASHAvolcite] = ACTIONS(5041), + [anon_sym_BSLASHnotecite] = ACTIONS(5041), + [anon_sym_BSLASHNotecite] = ACTIONS(5041), + [anon_sym_BSLASHpnotecite] = ACTIONS(5041), + [anon_sym_BSLASHPnotecite] = ACTIONS(5041), + [anon_sym_BSLASHfnotecite] = ACTIONS(5041), + [anon_sym_BSLASHlabel] = ACTIONS(5041), + [anon_sym_BSLASHref] = ACTIONS(5041), + [anon_sym_BSLASHeqref] = ACTIONS(5041), + [anon_sym_BSLASHvref] = ACTIONS(5041), + [anon_sym_BSLASHVref] = ACTIONS(5041), + [anon_sym_BSLASHautoref] = ACTIONS(5041), + [anon_sym_BSLASHpageref] = ACTIONS(5041), + [anon_sym_BSLASHcref] = ACTIONS(5041), + [anon_sym_BSLASHCref] = ACTIONS(5041), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnameCref] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHlabelcref] = ACTIONS(5041), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCrefrange] = ACTIONS(5041), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnewlabel] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), + [anon_sym_BSLASHdef] = ACTIONS(5041), + [anon_sym_BSLASHlet] = ACTIONS(5041), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), + [anon_sym_BSLASHgls] = ACTIONS(5041), + [anon_sym_BSLASHGls] = ACTIONS(5041), + [anon_sym_BSLASHGLS] = ACTIONS(5041), + [anon_sym_BSLASHglspl] = ACTIONS(5041), + [anon_sym_BSLASHGlspl] = ACTIONS(5041), + [anon_sym_BSLASHGLSpl] = ACTIONS(5041), + [anon_sym_BSLASHglsdisp] = ACTIONS(5041), + [anon_sym_BSLASHglslink] = ACTIONS(5041), + [anon_sym_BSLASHglstext] = ACTIONS(5041), + [anon_sym_BSLASHGlstext] = ACTIONS(5041), + [anon_sym_BSLASHGLStext] = ACTIONS(5041), + [anon_sym_BSLASHglsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), + [anon_sym_BSLASHglsplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSplural] = ACTIONS(5041), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHglsname] = ACTIONS(5041), + [anon_sym_BSLASHGlsname] = ACTIONS(5041), + [anon_sym_BSLASHGLSname] = ACTIONS(5041), + [anon_sym_BSLASHglssymbol] = ACTIONS(5041), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), + [anon_sym_BSLASHglsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), + [anon_sym_BSLASHglsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), + [anon_sym_BSLASHglsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), + [anon_sym_BSLASHglsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), + [anon_sym_BSLASHglsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), + [anon_sym_BSLASHnewacronym] = ACTIONS(5041), + [anon_sym_BSLASHacrshort] = ACTIONS(5041), + [anon_sym_BSLASHAcrshort] = ACTIONS(5041), + [anon_sym_BSLASHACRshort] = ACTIONS(5041), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), + [anon_sym_BSLASHacrlong] = ACTIONS(5041), + [anon_sym_BSLASHAcrlong] = ACTIONS(5041), + [anon_sym_BSLASHACRlong] = ACTIONS(5041), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), + [anon_sym_BSLASHacrfull] = ACTIONS(5041), + [anon_sym_BSLASHAcrfull] = ACTIONS(5041), + [anon_sym_BSLASHACRfull] = ACTIONS(5041), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), + [anon_sym_BSLASHacs] = ACTIONS(5041), + [anon_sym_BSLASHAcs] = ACTIONS(5041), + [anon_sym_BSLASHacsp] = ACTIONS(5041), + [anon_sym_BSLASHAcsp] = ACTIONS(5041), + [anon_sym_BSLASHacl] = ACTIONS(5041), + [anon_sym_BSLASHAcl] = ACTIONS(5041), + [anon_sym_BSLASHaclp] = ACTIONS(5041), + [anon_sym_BSLASHAclp] = ACTIONS(5041), + [anon_sym_BSLASHacf] = ACTIONS(5041), + [anon_sym_BSLASHAcf] = ACTIONS(5041), + [anon_sym_BSLASHacfp] = ACTIONS(5041), + [anon_sym_BSLASHAcfp] = ACTIONS(5041), + [anon_sym_BSLASHac] = ACTIONS(5041), + [anon_sym_BSLASHAc] = ACTIONS(5041), + [anon_sym_BSLASHacp] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), + [anon_sym_BSLASHcolor] = ACTIONS(5041), + [anon_sym_BSLASHcolorbox] = ACTIONS(5041), + [anon_sym_BSLASHtextcolor] = ACTIONS(5041), + [anon_sym_BSLASHpagecolor] = ACTIONS(5041), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + [anon_sym_BSLASHtext] = ACTIONS(5041), + [anon_sym_BSLASHintertext] = ACTIONS(5041), + [anon_sym_shortintertext] = ACTIONS(5041), }, - [1491] = { - [sym_curly_group] = STATE(1498), - [sym_brack_group_text] = STATE(2061), - [sym_command_name] = ACTIONS(4587), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4587), - [anon_sym_LBRACK] = ACTIONS(4589), - [anon_sym_RBRACK] = ACTIONS(4585), - [anon_sym_COMMA] = ACTIONS(4585), - [anon_sym_EQ] = ACTIONS(4585), - [anon_sym_LBRACE] = ACTIONS(5447), - [anon_sym_RBRACE] = ACTIONS(4585), - [sym_word] = ACTIONS(4587), - [sym_placeholder] = ACTIONS(4585), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [anon_sym_SLASH] = ACTIONS(4587), - [anon_sym_CARET] = ACTIONS(4587), - [anon_sym__] = ACTIONS(4587), - [anon_sym_LT] = ACTIONS(4587), - [anon_sym_GT] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_PIPE] = ACTIONS(4587), - [anon_sym_COLON] = ACTIONS(4587), - [anon_sym_SQUOTE] = ACTIONS(4587), - [anon_sym_BSLASHusepackage] = ACTIONS(4587), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4587), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4587), - [anon_sym_BSLASHinclude] = ACTIONS(4587), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4587), - [anon_sym_BSLASHinput] = ACTIONS(4587), - [anon_sym_BSLASHsubfile] = ACTIONS(4587), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4587), - [anon_sym_BSLASHbibliography] = ACTIONS(4587), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4587), - [anon_sym_BSLASHincludesvg] = ACTIONS(4587), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4587), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4587), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4587), - [anon_sym_BSLASHimport] = ACTIONS(4587), - [anon_sym_BSLASHsubimport] = ACTIONS(4587), - [anon_sym_BSLASHinputfrom] = ACTIONS(4587), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4587), - [anon_sym_BSLASHincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4587), - [anon_sym_BSLASHcaption] = ACTIONS(4587), - [anon_sym_BSLASHcite] = ACTIONS(4587), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCite] = ACTIONS(4587), - [anon_sym_BSLASHnocite] = ACTIONS(4587), - [anon_sym_BSLASHcitet] = ACTIONS(4587), - [anon_sym_BSLASHcitep] = ACTIONS(4587), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteauthor] = ACTIONS(4587), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4587), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitetitle] = ACTIONS(4587), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteyear] = ACTIONS(4587), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4585), - [anon_sym_BSLASHcitedate] = ACTIONS(4587), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4585), - [anon_sym_BSLASHciteurl] = ACTIONS(4587), - [anon_sym_BSLASHfullcite] = ACTIONS(4587), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4587), - [anon_sym_BSLASHcitealt] = ACTIONS(4587), - [anon_sym_BSLASHcitealp] = ACTIONS(4587), - [anon_sym_BSLASHcitetext] = ACTIONS(4587), - [anon_sym_BSLASHparencite] = ACTIONS(4587), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHParencite] = ACTIONS(4587), - [anon_sym_BSLASHfootcite] = ACTIONS(4587), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4587), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4587), - [anon_sym_BSLASHtextcite] = ACTIONS(4587), - [anon_sym_BSLASHTextcite] = ACTIONS(4587), - [anon_sym_BSLASHsmartcite] = ACTIONS(4587), - [anon_sym_BSLASHSmartcite] = ACTIONS(4587), - [anon_sym_BSLASHsupercite] = ACTIONS(4587), - [anon_sym_BSLASHautocite] = ACTIONS(4587), - [anon_sym_BSLASHAutocite] = ACTIONS(4587), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4585), - [anon_sym_BSLASHvolcite] = ACTIONS(4587), - [anon_sym_BSLASHVolcite] = ACTIONS(4587), - [anon_sym_BSLASHpvolcite] = ACTIONS(4587), - [anon_sym_BSLASHPvolcite] = ACTIONS(4587), - [anon_sym_BSLASHfvolcite] = ACTIONS(4587), - [anon_sym_BSLASHftvolcite] = ACTIONS(4587), - [anon_sym_BSLASHsvolcite] = ACTIONS(4587), - [anon_sym_BSLASHSvolcite] = ACTIONS(4587), - [anon_sym_BSLASHtvolcite] = ACTIONS(4587), - [anon_sym_BSLASHTvolcite] = ACTIONS(4587), - [anon_sym_BSLASHavolcite] = ACTIONS(4587), - [anon_sym_BSLASHAvolcite] = ACTIONS(4587), - [anon_sym_BSLASHnotecite] = ACTIONS(4587), - [anon_sym_BSLASHNotecite] = ACTIONS(4587), - [anon_sym_BSLASHpnotecite] = ACTIONS(4587), - [anon_sym_BSLASHPnotecite] = ACTIONS(4587), - [anon_sym_BSLASHfnotecite] = ACTIONS(4587), - [anon_sym_BSLASHlabel] = ACTIONS(4587), - [anon_sym_BSLASHref] = ACTIONS(4587), - [anon_sym_BSLASHeqref] = ACTIONS(4587), - [anon_sym_BSLASHvref] = ACTIONS(4587), - [anon_sym_BSLASHVref] = ACTIONS(4587), - [anon_sym_BSLASHautoref] = ACTIONS(4587), - [anon_sym_BSLASHpageref] = ACTIONS(4587), - [anon_sym_BSLASHcref] = ACTIONS(4587), - [anon_sym_BSLASHCref] = ACTIONS(4587), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnameCref] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4587), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4587), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4587), - [anon_sym_BSLASHlabelcref] = ACTIONS(4587), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange] = ACTIONS(4587), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHCrefrange] = ACTIONS(4587), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4585), - [anon_sym_BSLASHnewlabel] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand] = ACTIONS(4587), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4587), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4587), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4585), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4587), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4585), - [anon_sym_BSLASHdef] = ACTIONS(4587), - [anon_sym_BSLASHlet] = ACTIONS(4587), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4587), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4587), - [anon_sym_BSLASHgls] = ACTIONS(4587), - [anon_sym_BSLASHGls] = ACTIONS(4587), - [anon_sym_BSLASHGLS] = ACTIONS(4587), - [anon_sym_BSLASHglspl] = ACTIONS(4587), - [anon_sym_BSLASHGlspl] = ACTIONS(4587), - [anon_sym_BSLASHGLSpl] = ACTIONS(4587), - [anon_sym_BSLASHglsdisp] = ACTIONS(4587), - [anon_sym_BSLASHglslink] = ACTIONS(4587), - [anon_sym_BSLASHglstext] = ACTIONS(4587), - [anon_sym_BSLASHGlstext] = ACTIONS(4587), - [anon_sym_BSLASHGLStext] = ACTIONS(4587), - [anon_sym_BSLASHglsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4587), - [anon_sym_BSLASHglsplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSplural] = ACTIONS(4587), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4587), - [anon_sym_BSLASHglsname] = ACTIONS(4587), - [anon_sym_BSLASHGlsname] = ACTIONS(4587), - [anon_sym_BSLASHGLSname] = ACTIONS(4587), - [anon_sym_BSLASHglssymbol] = ACTIONS(4587), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4587), - [anon_sym_BSLASHglsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4587), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4587), - [anon_sym_BSLASHglsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4587), - [anon_sym_BSLASHglsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4587), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4587), - [anon_sym_BSLASHglsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4587), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4587), - [anon_sym_BSLASHglsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4587), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4587), - [anon_sym_BSLASHnewacronym] = ACTIONS(4587), - [anon_sym_BSLASHacrshort] = ACTIONS(4587), - [anon_sym_BSLASHAcrshort] = ACTIONS(4587), - [anon_sym_BSLASHACRshort] = ACTIONS(4587), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4587), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4587), - [anon_sym_BSLASHacrlong] = ACTIONS(4587), - [anon_sym_BSLASHAcrlong] = ACTIONS(4587), - [anon_sym_BSLASHACRlong] = ACTIONS(4587), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4587), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4587), - [anon_sym_BSLASHacrfull] = ACTIONS(4587), - [anon_sym_BSLASHAcrfull] = ACTIONS(4587), - [anon_sym_BSLASHACRfull] = ACTIONS(4587), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4587), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4587), - [anon_sym_BSLASHacs] = ACTIONS(4587), - [anon_sym_BSLASHAcs] = ACTIONS(4587), - [anon_sym_BSLASHacsp] = ACTIONS(4587), - [anon_sym_BSLASHAcsp] = ACTIONS(4587), - [anon_sym_BSLASHacl] = ACTIONS(4587), - [anon_sym_BSLASHAcl] = ACTIONS(4587), - [anon_sym_BSLASHaclp] = ACTIONS(4587), - [anon_sym_BSLASHAclp] = ACTIONS(4587), - [anon_sym_BSLASHacf] = ACTIONS(4587), - [anon_sym_BSLASHAcf] = ACTIONS(4587), - [anon_sym_BSLASHacfp] = ACTIONS(4587), - [anon_sym_BSLASHAcfp] = ACTIONS(4587), - [anon_sym_BSLASHac] = ACTIONS(4587), - [anon_sym_BSLASHAc] = ACTIONS(4587), - [anon_sym_BSLASHacp] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4587), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4587), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4587), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4587), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4587), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4587), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4587), - [anon_sym_BSLASHcolor] = ACTIONS(4587), - [anon_sym_BSLASHcolorbox] = ACTIONS(4587), - [anon_sym_BSLASHtextcolor] = ACTIONS(4587), - [anon_sym_BSLASHpagecolor] = ACTIONS(4587), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4587), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4587), + [1451] = { + [sym_command_name] = ACTIONS(5037), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5037), + [anon_sym_LPAREN] = ACTIONS(5035), + [anon_sym_RPAREN] = ACTIONS(5035), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_RBRACK] = ACTIONS(5035), + [anon_sym_COMMA] = ACTIONS(5035), + [anon_sym_LBRACE] = ACTIONS(5035), + [anon_sym_RBRACE] = ACTIONS(5035), + [sym_word] = ACTIONS(5037), + [sym_placeholder] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5037), + [anon_sym_STAR] = ACTIONS(5037), + [anon_sym_SLASH] = ACTIONS(5037), + [anon_sym_CARET] = ACTIONS(5037), + [anon_sym__] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_COLON] = ACTIONS(5037), + [anon_sym_SQUOTE] = ACTIONS(5037), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5035), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5035), + [anon_sym_DOLLAR] = ACTIONS(5037), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5035), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5035), + [anon_sym_BSLASHusepackage] = ACTIONS(5037), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), + [anon_sym_BSLASHinclude] = ACTIONS(5037), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), + [anon_sym_BSLASHinput] = ACTIONS(5037), + [anon_sym_BSLASHsubfile] = ACTIONS(5037), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), + [anon_sym_BSLASHbibliography] = ACTIONS(5037), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), + [anon_sym_BSLASHincludesvg] = ACTIONS(5037), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), + [anon_sym_BSLASHimport] = ACTIONS(5037), + [anon_sym_BSLASHsubimport] = ACTIONS(5037), + [anon_sym_BSLASHinputfrom] = ACTIONS(5037), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), + [anon_sym_BSLASHincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHcaption] = ACTIONS(5037), + [anon_sym_BSLASHcite] = ACTIONS(5037), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCite] = ACTIONS(5037), + [anon_sym_BSLASHnocite] = ACTIONS(5037), + [anon_sym_BSLASHcitet] = ACTIONS(5037), + [anon_sym_BSLASHcitep] = ACTIONS(5037), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteauthor] = ACTIONS(5037), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitetitle] = ACTIONS(5037), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteyear] = ACTIONS(5037), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitedate] = ACTIONS(5037), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteurl] = ACTIONS(5037), + [anon_sym_BSLASHfullcite] = ACTIONS(5037), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), + [anon_sym_BSLASHcitealt] = ACTIONS(5037), + [anon_sym_BSLASHcitealp] = ACTIONS(5037), + [anon_sym_BSLASHcitetext] = ACTIONS(5037), + [anon_sym_BSLASHparencite] = ACTIONS(5037), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHParencite] = ACTIONS(5037), + [anon_sym_BSLASHfootcite] = ACTIONS(5037), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), + [anon_sym_BSLASHtextcite] = ACTIONS(5037), + [anon_sym_BSLASHTextcite] = ACTIONS(5037), + [anon_sym_BSLASHsmartcite] = ACTIONS(5037), + [anon_sym_BSLASHSmartcite] = ACTIONS(5037), + [anon_sym_BSLASHsupercite] = ACTIONS(5037), + [anon_sym_BSLASHautocite] = ACTIONS(5037), + [anon_sym_BSLASHAutocite] = ACTIONS(5037), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHvolcite] = ACTIONS(5037), + [anon_sym_BSLASHVolcite] = ACTIONS(5037), + [anon_sym_BSLASHpvolcite] = ACTIONS(5037), + [anon_sym_BSLASHPvolcite] = ACTIONS(5037), + [anon_sym_BSLASHfvolcite] = ACTIONS(5037), + [anon_sym_BSLASHftvolcite] = ACTIONS(5037), + [anon_sym_BSLASHsvolcite] = ACTIONS(5037), + [anon_sym_BSLASHSvolcite] = ACTIONS(5037), + [anon_sym_BSLASHtvolcite] = ACTIONS(5037), + [anon_sym_BSLASHTvolcite] = ACTIONS(5037), + [anon_sym_BSLASHavolcite] = ACTIONS(5037), + [anon_sym_BSLASHAvolcite] = ACTIONS(5037), + [anon_sym_BSLASHnotecite] = ACTIONS(5037), + [anon_sym_BSLASHNotecite] = ACTIONS(5037), + [anon_sym_BSLASHpnotecite] = ACTIONS(5037), + [anon_sym_BSLASHPnotecite] = ACTIONS(5037), + [anon_sym_BSLASHfnotecite] = ACTIONS(5037), + [anon_sym_BSLASHlabel] = ACTIONS(5037), + [anon_sym_BSLASHref] = ACTIONS(5037), + [anon_sym_BSLASHeqref] = ACTIONS(5037), + [anon_sym_BSLASHvref] = ACTIONS(5037), + [anon_sym_BSLASHVref] = ACTIONS(5037), + [anon_sym_BSLASHautoref] = ACTIONS(5037), + [anon_sym_BSLASHpageref] = ACTIONS(5037), + [anon_sym_BSLASHcref] = ACTIONS(5037), + [anon_sym_BSLASHCref] = ACTIONS(5037), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnameCref] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHlabelcref] = ACTIONS(5037), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCrefrange] = ACTIONS(5037), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnewlabel] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), + [anon_sym_BSLASHdef] = ACTIONS(5037), + [anon_sym_BSLASHlet] = ACTIONS(5037), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), + [anon_sym_BSLASHgls] = ACTIONS(5037), + [anon_sym_BSLASHGls] = ACTIONS(5037), + [anon_sym_BSLASHGLS] = ACTIONS(5037), + [anon_sym_BSLASHglspl] = ACTIONS(5037), + [anon_sym_BSLASHGlspl] = ACTIONS(5037), + [anon_sym_BSLASHGLSpl] = ACTIONS(5037), + [anon_sym_BSLASHglsdisp] = ACTIONS(5037), + [anon_sym_BSLASHglslink] = ACTIONS(5037), + [anon_sym_BSLASHglstext] = ACTIONS(5037), + [anon_sym_BSLASHGlstext] = ACTIONS(5037), + [anon_sym_BSLASHGLStext] = ACTIONS(5037), + [anon_sym_BSLASHglsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), + [anon_sym_BSLASHglsplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSplural] = ACTIONS(5037), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHglsname] = ACTIONS(5037), + [anon_sym_BSLASHGlsname] = ACTIONS(5037), + [anon_sym_BSLASHGLSname] = ACTIONS(5037), + [anon_sym_BSLASHglssymbol] = ACTIONS(5037), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), + [anon_sym_BSLASHglsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), + [anon_sym_BSLASHglsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), + [anon_sym_BSLASHglsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), + [anon_sym_BSLASHglsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), + [anon_sym_BSLASHglsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), + [anon_sym_BSLASHnewacronym] = ACTIONS(5037), + [anon_sym_BSLASHacrshort] = ACTIONS(5037), + [anon_sym_BSLASHAcrshort] = ACTIONS(5037), + [anon_sym_BSLASHACRshort] = ACTIONS(5037), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), + [anon_sym_BSLASHacrlong] = ACTIONS(5037), + [anon_sym_BSLASHAcrlong] = ACTIONS(5037), + [anon_sym_BSLASHACRlong] = ACTIONS(5037), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), + [anon_sym_BSLASHacrfull] = ACTIONS(5037), + [anon_sym_BSLASHAcrfull] = ACTIONS(5037), + [anon_sym_BSLASHACRfull] = ACTIONS(5037), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), + [anon_sym_BSLASHacs] = ACTIONS(5037), + [anon_sym_BSLASHAcs] = ACTIONS(5037), + [anon_sym_BSLASHacsp] = ACTIONS(5037), + [anon_sym_BSLASHAcsp] = ACTIONS(5037), + [anon_sym_BSLASHacl] = ACTIONS(5037), + [anon_sym_BSLASHAcl] = ACTIONS(5037), + [anon_sym_BSLASHaclp] = ACTIONS(5037), + [anon_sym_BSLASHAclp] = ACTIONS(5037), + [anon_sym_BSLASHacf] = ACTIONS(5037), + [anon_sym_BSLASHAcf] = ACTIONS(5037), + [anon_sym_BSLASHacfp] = ACTIONS(5037), + [anon_sym_BSLASHAcfp] = ACTIONS(5037), + [anon_sym_BSLASHac] = ACTIONS(5037), + [anon_sym_BSLASHAc] = ACTIONS(5037), + [anon_sym_BSLASHacp] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), + [anon_sym_BSLASHcolor] = ACTIONS(5037), + [anon_sym_BSLASHcolorbox] = ACTIONS(5037), + [anon_sym_BSLASHtextcolor] = ACTIONS(5037), + [anon_sym_BSLASHpagecolor] = ACTIONS(5037), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [anon_sym_BSLASHtext] = ACTIONS(5037), + [anon_sym_BSLASHintertext] = ACTIONS(5037), + [anon_sym_shortintertext] = ACTIONS(5037), }, - [1492] = { - [sym_command_name] = ACTIONS(4983), + [1452] = { + [sym_command_name] = ACTIONS(5033), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4983), - [anon_sym_LPAREN] = ACTIONS(4981), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_RBRACK] = ACTIONS(4981), - [anon_sym_COMMA] = ACTIONS(4981), - [anon_sym_EQ] = ACTIONS(4981), - [anon_sym_LBRACE] = ACTIONS(4981), - [anon_sym_RBRACE] = ACTIONS(4981), - [sym_word] = ACTIONS(4983), - [sym_placeholder] = ACTIONS(4981), - [anon_sym_PLUS] = ACTIONS(4983), - [anon_sym_DASH] = ACTIONS(4983), - [anon_sym_STAR] = ACTIONS(4983), - [anon_sym_SLASH] = ACTIONS(4983), - [anon_sym_CARET] = ACTIONS(4983), - [anon_sym__] = ACTIONS(4983), - [anon_sym_LT] = ACTIONS(4983), - [anon_sym_GT] = ACTIONS(4983), - [anon_sym_BANG] = ACTIONS(4983), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_COLON] = ACTIONS(4983), - [anon_sym_SQUOTE] = ACTIONS(4983), - [anon_sym_BSLASHusepackage] = ACTIONS(4983), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), - [anon_sym_BSLASHinclude] = ACTIONS(4983), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), - [anon_sym_BSLASHinput] = ACTIONS(4983), - [anon_sym_BSLASHsubfile] = ACTIONS(4983), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), - [anon_sym_BSLASHbibliography] = ACTIONS(4983), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), - [anon_sym_BSLASHincludesvg] = ACTIONS(4983), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), - [anon_sym_BSLASHimport] = ACTIONS(4983), - [anon_sym_BSLASHsubimport] = ACTIONS(4983), - [anon_sym_BSLASHinputfrom] = ACTIONS(4983), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), - [anon_sym_BSLASHincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), - [anon_sym_BSLASHcaption] = ACTIONS(4983), - [anon_sym_BSLASHcite] = ACTIONS(4983), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCite] = ACTIONS(4983), - [anon_sym_BSLASHnocite] = ACTIONS(4983), - [anon_sym_BSLASHcitet] = ACTIONS(4983), - [anon_sym_BSLASHcitep] = ACTIONS(4983), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteauthor] = ACTIONS(4983), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitetitle] = ACTIONS(4983), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteyear] = ACTIONS(4983), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), - [anon_sym_BSLASHcitedate] = ACTIONS(4983), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), - [anon_sym_BSLASHciteurl] = ACTIONS(4983), - [anon_sym_BSLASHfullcite] = ACTIONS(4983), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), - [anon_sym_BSLASHcitealt] = ACTIONS(4983), - [anon_sym_BSLASHcitealp] = ACTIONS(4983), - [anon_sym_BSLASHcitetext] = ACTIONS(4983), - [anon_sym_BSLASHparencite] = ACTIONS(4983), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHParencite] = ACTIONS(4983), - [anon_sym_BSLASHfootcite] = ACTIONS(4983), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), - [anon_sym_BSLASHtextcite] = ACTIONS(4983), - [anon_sym_BSLASHTextcite] = ACTIONS(4983), - [anon_sym_BSLASHsmartcite] = ACTIONS(4983), - [anon_sym_BSLASHSmartcite] = ACTIONS(4983), - [anon_sym_BSLASHsupercite] = ACTIONS(4983), - [anon_sym_BSLASHautocite] = ACTIONS(4983), - [anon_sym_BSLASHAutocite] = ACTIONS(4983), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), - [anon_sym_BSLASHvolcite] = ACTIONS(4983), - [anon_sym_BSLASHVolcite] = ACTIONS(4983), - [anon_sym_BSLASHpvolcite] = ACTIONS(4983), - [anon_sym_BSLASHPvolcite] = ACTIONS(4983), - [anon_sym_BSLASHfvolcite] = ACTIONS(4983), - [anon_sym_BSLASHftvolcite] = ACTIONS(4983), - [anon_sym_BSLASHsvolcite] = ACTIONS(4983), - [anon_sym_BSLASHSvolcite] = ACTIONS(4983), - [anon_sym_BSLASHtvolcite] = ACTIONS(4983), - [anon_sym_BSLASHTvolcite] = ACTIONS(4983), - [anon_sym_BSLASHavolcite] = ACTIONS(4983), - [anon_sym_BSLASHAvolcite] = ACTIONS(4983), - [anon_sym_BSLASHnotecite] = ACTIONS(4983), - [anon_sym_BSLASHNotecite] = ACTIONS(4983), - [anon_sym_BSLASHpnotecite] = ACTIONS(4983), - [anon_sym_BSLASHPnotecite] = ACTIONS(4983), - [anon_sym_BSLASHfnotecite] = ACTIONS(4983), - [anon_sym_BSLASHlabel] = ACTIONS(4983), - [anon_sym_BSLASHref] = ACTIONS(4983), - [anon_sym_BSLASHeqref] = ACTIONS(4983), - [anon_sym_BSLASHvref] = ACTIONS(4983), - [anon_sym_BSLASHVref] = ACTIONS(4983), - [anon_sym_BSLASHautoref] = ACTIONS(4983), - [anon_sym_BSLASHpageref] = ACTIONS(4983), - [anon_sym_BSLASHcref] = ACTIONS(4983), - [anon_sym_BSLASHCref] = ACTIONS(4983), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnameCref] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), - [anon_sym_BSLASHlabelcref] = ACTIONS(4983), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange] = ACTIONS(4983), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHCrefrange] = ACTIONS(4983), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), - [anon_sym_BSLASHnewlabel] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand] = ACTIONS(4983), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), - [anon_sym_BSLASHdef] = ACTIONS(4983), - [anon_sym_BSLASHlet] = ACTIONS(4983), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), - [anon_sym_BSLASHgls] = ACTIONS(4983), - [anon_sym_BSLASHGls] = ACTIONS(4983), - [anon_sym_BSLASHGLS] = ACTIONS(4983), - [anon_sym_BSLASHglspl] = ACTIONS(4983), - [anon_sym_BSLASHGlspl] = ACTIONS(4983), - [anon_sym_BSLASHGLSpl] = ACTIONS(4983), - [anon_sym_BSLASHglsdisp] = ACTIONS(4983), - [anon_sym_BSLASHglslink] = ACTIONS(4983), - [anon_sym_BSLASHglstext] = ACTIONS(4983), - [anon_sym_BSLASHGlstext] = ACTIONS(4983), - [anon_sym_BSLASHGLStext] = ACTIONS(4983), - [anon_sym_BSLASHglsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), - [anon_sym_BSLASHglsplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSplural] = ACTIONS(4983), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), - [anon_sym_BSLASHglsname] = ACTIONS(4983), - [anon_sym_BSLASHGlsname] = ACTIONS(4983), - [anon_sym_BSLASHGLSname] = ACTIONS(4983), - [anon_sym_BSLASHglssymbol] = ACTIONS(4983), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), - [anon_sym_BSLASHglsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), - [anon_sym_BSLASHglsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), - [anon_sym_BSLASHglsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), - [anon_sym_BSLASHglsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), - [anon_sym_BSLASHglsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), - [anon_sym_BSLASHnewacronym] = ACTIONS(4983), - [anon_sym_BSLASHacrshort] = ACTIONS(4983), - [anon_sym_BSLASHAcrshort] = ACTIONS(4983), - [anon_sym_BSLASHACRshort] = ACTIONS(4983), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), - [anon_sym_BSLASHacrlong] = ACTIONS(4983), - [anon_sym_BSLASHAcrlong] = ACTIONS(4983), - [anon_sym_BSLASHACRlong] = ACTIONS(4983), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), - [anon_sym_BSLASHacrfull] = ACTIONS(4983), - [anon_sym_BSLASHAcrfull] = ACTIONS(4983), - [anon_sym_BSLASHACRfull] = ACTIONS(4983), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), - [anon_sym_BSLASHacs] = ACTIONS(4983), - [anon_sym_BSLASHAcs] = ACTIONS(4983), - [anon_sym_BSLASHacsp] = ACTIONS(4983), - [anon_sym_BSLASHAcsp] = ACTIONS(4983), - [anon_sym_BSLASHacl] = ACTIONS(4983), - [anon_sym_BSLASHAcl] = ACTIONS(4983), - [anon_sym_BSLASHaclp] = ACTIONS(4983), - [anon_sym_BSLASHAclp] = ACTIONS(4983), - [anon_sym_BSLASHacf] = ACTIONS(4983), - [anon_sym_BSLASHAcf] = ACTIONS(4983), - [anon_sym_BSLASHacfp] = ACTIONS(4983), - [anon_sym_BSLASHAcfp] = ACTIONS(4983), - [anon_sym_BSLASHac] = ACTIONS(4983), - [anon_sym_BSLASHAc] = ACTIONS(4983), - [anon_sym_BSLASHacp] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), - [anon_sym_BSLASHcolor] = ACTIONS(4983), - [anon_sym_BSLASHcolorbox] = ACTIONS(4983), - [anon_sym_BSLASHtextcolor] = ACTIONS(4983), - [anon_sym_BSLASHpagecolor] = ACTIONS(4983), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHiffalse] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(5031), + [anon_sym_RPAREN] = ACTIONS(5031), + [anon_sym_LBRACK] = ACTIONS(5031), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_LBRACE] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [sym_word] = ACTIONS(5033), + [sym_placeholder] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5033), + [anon_sym_DASH] = ACTIONS(5033), + [anon_sym_STAR] = ACTIONS(5033), + [anon_sym_SLASH] = ACTIONS(5033), + [anon_sym_CARET] = ACTIONS(5033), + [anon_sym__] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5033), + [anon_sym_PIPE] = ACTIONS(5033), + [anon_sym_COLON] = ACTIONS(5033), + [anon_sym_SQUOTE] = ACTIONS(5033), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5031), + [anon_sym_DOLLAR] = ACTIONS(5033), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5031), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5031), + [anon_sym_BSLASHusepackage] = ACTIONS(5033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), + [anon_sym_BSLASHinclude] = ACTIONS(5033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), + [anon_sym_BSLASHinput] = ACTIONS(5033), + [anon_sym_BSLASHsubfile] = ACTIONS(5033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), + [anon_sym_BSLASHbibliography] = ACTIONS(5033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), + [anon_sym_BSLASHincludesvg] = ACTIONS(5033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), + [anon_sym_BSLASHimport] = ACTIONS(5033), + [anon_sym_BSLASHsubimport] = ACTIONS(5033), + [anon_sym_BSLASHinputfrom] = ACTIONS(5033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), + [anon_sym_BSLASHincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHcaption] = ACTIONS(5033), + [anon_sym_BSLASHcite] = ACTIONS(5033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCite] = ACTIONS(5033), + [anon_sym_BSLASHnocite] = ACTIONS(5033), + [anon_sym_BSLASHcitet] = ACTIONS(5033), + [anon_sym_BSLASHcitep] = ACTIONS(5033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteauthor] = ACTIONS(5033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitetitle] = ACTIONS(5033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteyear] = ACTIONS(5033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitedate] = ACTIONS(5033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteurl] = ACTIONS(5033), + [anon_sym_BSLASHfullcite] = ACTIONS(5033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), + [anon_sym_BSLASHcitealt] = ACTIONS(5033), + [anon_sym_BSLASHcitealp] = ACTIONS(5033), + [anon_sym_BSLASHcitetext] = ACTIONS(5033), + [anon_sym_BSLASHparencite] = ACTIONS(5033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHParencite] = ACTIONS(5033), + [anon_sym_BSLASHfootcite] = ACTIONS(5033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), + [anon_sym_BSLASHtextcite] = ACTIONS(5033), + [anon_sym_BSLASHTextcite] = ACTIONS(5033), + [anon_sym_BSLASHsmartcite] = ACTIONS(5033), + [anon_sym_BSLASHSmartcite] = ACTIONS(5033), + [anon_sym_BSLASHsupercite] = ACTIONS(5033), + [anon_sym_BSLASHautocite] = ACTIONS(5033), + [anon_sym_BSLASHAutocite] = ACTIONS(5033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHvolcite] = ACTIONS(5033), + [anon_sym_BSLASHVolcite] = ACTIONS(5033), + [anon_sym_BSLASHpvolcite] = ACTIONS(5033), + [anon_sym_BSLASHPvolcite] = ACTIONS(5033), + [anon_sym_BSLASHfvolcite] = ACTIONS(5033), + [anon_sym_BSLASHftvolcite] = ACTIONS(5033), + [anon_sym_BSLASHsvolcite] = ACTIONS(5033), + [anon_sym_BSLASHSvolcite] = ACTIONS(5033), + [anon_sym_BSLASHtvolcite] = ACTIONS(5033), + [anon_sym_BSLASHTvolcite] = ACTIONS(5033), + [anon_sym_BSLASHavolcite] = ACTIONS(5033), + [anon_sym_BSLASHAvolcite] = ACTIONS(5033), + [anon_sym_BSLASHnotecite] = ACTIONS(5033), + [anon_sym_BSLASHNotecite] = ACTIONS(5033), + [anon_sym_BSLASHpnotecite] = ACTIONS(5033), + [anon_sym_BSLASHPnotecite] = ACTIONS(5033), + [anon_sym_BSLASHfnotecite] = ACTIONS(5033), + [anon_sym_BSLASHlabel] = ACTIONS(5033), + [anon_sym_BSLASHref] = ACTIONS(5033), + [anon_sym_BSLASHeqref] = ACTIONS(5033), + [anon_sym_BSLASHvref] = ACTIONS(5033), + [anon_sym_BSLASHVref] = ACTIONS(5033), + [anon_sym_BSLASHautoref] = ACTIONS(5033), + [anon_sym_BSLASHpageref] = ACTIONS(5033), + [anon_sym_BSLASHcref] = ACTIONS(5033), + [anon_sym_BSLASHCref] = ACTIONS(5033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnameCref] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHlabelcref] = ACTIONS(5033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCrefrange] = ACTIONS(5033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnewlabel] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), + [anon_sym_BSLASHdef] = ACTIONS(5033), + [anon_sym_BSLASHlet] = ACTIONS(5033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), + [anon_sym_BSLASHgls] = ACTIONS(5033), + [anon_sym_BSLASHGls] = ACTIONS(5033), + [anon_sym_BSLASHGLS] = ACTIONS(5033), + [anon_sym_BSLASHglspl] = ACTIONS(5033), + [anon_sym_BSLASHGlspl] = ACTIONS(5033), + [anon_sym_BSLASHGLSpl] = ACTIONS(5033), + [anon_sym_BSLASHglsdisp] = ACTIONS(5033), + [anon_sym_BSLASHglslink] = ACTIONS(5033), + [anon_sym_BSLASHglstext] = ACTIONS(5033), + [anon_sym_BSLASHGlstext] = ACTIONS(5033), + [anon_sym_BSLASHGLStext] = ACTIONS(5033), + [anon_sym_BSLASHglsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), + [anon_sym_BSLASHglsplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSplural] = ACTIONS(5033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHglsname] = ACTIONS(5033), + [anon_sym_BSLASHGlsname] = ACTIONS(5033), + [anon_sym_BSLASHGLSname] = ACTIONS(5033), + [anon_sym_BSLASHglssymbol] = ACTIONS(5033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), + [anon_sym_BSLASHglsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), + [anon_sym_BSLASHglsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), + [anon_sym_BSLASHglsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), + [anon_sym_BSLASHglsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), + [anon_sym_BSLASHglsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), + [anon_sym_BSLASHnewacronym] = ACTIONS(5033), + [anon_sym_BSLASHacrshort] = ACTIONS(5033), + [anon_sym_BSLASHAcrshort] = ACTIONS(5033), + [anon_sym_BSLASHACRshort] = ACTIONS(5033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), + [anon_sym_BSLASHacrlong] = ACTIONS(5033), + [anon_sym_BSLASHAcrlong] = ACTIONS(5033), + [anon_sym_BSLASHACRlong] = ACTIONS(5033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), + [anon_sym_BSLASHacrfull] = ACTIONS(5033), + [anon_sym_BSLASHAcrfull] = ACTIONS(5033), + [anon_sym_BSLASHACRfull] = ACTIONS(5033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), + [anon_sym_BSLASHacs] = ACTIONS(5033), + [anon_sym_BSLASHAcs] = ACTIONS(5033), + [anon_sym_BSLASHacsp] = ACTIONS(5033), + [anon_sym_BSLASHAcsp] = ACTIONS(5033), + [anon_sym_BSLASHacl] = ACTIONS(5033), + [anon_sym_BSLASHAcl] = ACTIONS(5033), + [anon_sym_BSLASHaclp] = ACTIONS(5033), + [anon_sym_BSLASHAclp] = ACTIONS(5033), + [anon_sym_BSLASHacf] = ACTIONS(5033), + [anon_sym_BSLASHAcf] = ACTIONS(5033), + [anon_sym_BSLASHacfp] = ACTIONS(5033), + [anon_sym_BSLASHAcfp] = ACTIONS(5033), + [anon_sym_BSLASHac] = ACTIONS(5033), + [anon_sym_BSLASHAc] = ACTIONS(5033), + [anon_sym_BSLASHacp] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), + [anon_sym_BSLASHcolor] = ACTIONS(5033), + [anon_sym_BSLASHcolorbox] = ACTIONS(5033), + [anon_sym_BSLASHtextcolor] = ACTIONS(5033), + [anon_sym_BSLASHpagecolor] = ACTIONS(5033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), + [anon_sym_BSLASHtext] = ACTIONS(5033), + [anon_sym_BSLASHintertext] = ACTIONS(5033), + [anon_sym_shortintertext] = ACTIONS(5033), }, - [1493] = { + [1453] = { + [sym_command_name] = ACTIONS(5119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5119), + [anon_sym_LPAREN] = ACTIONS(5117), + [anon_sym_RPAREN] = ACTIONS(5117), + [anon_sym_LBRACK] = ACTIONS(5117), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_LBRACE] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5117), + [sym_word] = ACTIONS(5119), + [sym_placeholder] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5119), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_CARET] = ACTIONS(5119), + [anon_sym__] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_COLON] = ACTIONS(5119), + [anon_sym_SQUOTE] = ACTIONS(5119), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5117), + [anon_sym_DOLLAR] = ACTIONS(5119), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5117), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5117), + [anon_sym_BSLASHusepackage] = ACTIONS(5119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), + [anon_sym_BSLASHinclude] = ACTIONS(5119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), + [anon_sym_BSLASHinput] = ACTIONS(5119), + [anon_sym_BSLASHsubfile] = ACTIONS(5119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), + [anon_sym_BSLASHbibliography] = ACTIONS(5119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), + [anon_sym_BSLASHincludesvg] = ACTIONS(5119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), + [anon_sym_BSLASHimport] = ACTIONS(5119), + [anon_sym_BSLASHsubimport] = ACTIONS(5119), + [anon_sym_BSLASHinputfrom] = ACTIONS(5119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), + [anon_sym_BSLASHincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHcaption] = ACTIONS(5119), + [anon_sym_BSLASHcite] = ACTIONS(5119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCite] = ACTIONS(5119), + [anon_sym_BSLASHnocite] = ACTIONS(5119), + [anon_sym_BSLASHcitet] = ACTIONS(5119), + [anon_sym_BSLASHcitep] = ACTIONS(5119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteauthor] = ACTIONS(5119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitetitle] = ACTIONS(5119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteyear] = ACTIONS(5119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitedate] = ACTIONS(5119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteurl] = ACTIONS(5119), + [anon_sym_BSLASHfullcite] = ACTIONS(5119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), + [anon_sym_BSLASHcitealt] = ACTIONS(5119), + [anon_sym_BSLASHcitealp] = ACTIONS(5119), + [anon_sym_BSLASHcitetext] = ACTIONS(5119), + [anon_sym_BSLASHparencite] = ACTIONS(5119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHParencite] = ACTIONS(5119), + [anon_sym_BSLASHfootcite] = ACTIONS(5119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), + [anon_sym_BSLASHtextcite] = ACTIONS(5119), + [anon_sym_BSLASHTextcite] = ACTIONS(5119), + [anon_sym_BSLASHsmartcite] = ACTIONS(5119), + [anon_sym_BSLASHSmartcite] = ACTIONS(5119), + [anon_sym_BSLASHsupercite] = ACTIONS(5119), + [anon_sym_BSLASHautocite] = ACTIONS(5119), + [anon_sym_BSLASHAutocite] = ACTIONS(5119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHvolcite] = ACTIONS(5119), + [anon_sym_BSLASHVolcite] = ACTIONS(5119), + [anon_sym_BSLASHpvolcite] = ACTIONS(5119), + [anon_sym_BSLASHPvolcite] = ACTIONS(5119), + [anon_sym_BSLASHfvolcite] = ACTIONS(5119), + [anon_sym_BSLASHftvolcite] = ACTIONS(5119), + [anon_sym_BSLASHsvolcite] = ACTIONS(5119), + [anon_sym_BSLASHSvolcite] = ACTIONS(5119), + [anon_sym_BSLASHtvolcite] = ACTIONS(5119), + [anon_sym_BSLASHTvolcite] = ACTIONS(5119), + [anon_sym_BSLASHavolcite] = ACTIONS(5119), + [anon_sym_BSLASHAvolcite] = ACTIONS(5119), + [anon_sym_BSLASHnotecite] = ACTIONS(5119), + [anon_sym_BSLASHNotecite] = ACTIONS(5119), + [anon_sym_BSLASHpnotecite] = ACTIONS(5119), + [anon_sym_BSLASHPnotecite] = ACTIONS(5119), + [anon_sym_BSLASHfnotecite] = ACTIONS(5119), + [anon_sym_BSLASHlabel] = ACTIONS(5119), + [anon_sym_BSLASHref] = ACTIONS(5119), + [anon_sym_BSLASHeqref] = ACTIONS(5119), + [anon_sym_BSLASHvref] = ACTIONS(5119), + [anon_sym_BSLASHVref] = ACTIONS(5119), + [anon_sym_BSLASHautoref] = ACTIONS(5119), + [anon_sym_BSLASHpageref] = ACTIONS(5119), + [anon_sym_BSLASHcref] = ACTIONS(5119), + [anon_sym_BSLASHCref] = ACTIONS(5119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnameCref] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHlabelcref] = ACTIONS(5119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCrefrange] = ACTIONS(5119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnewlabel] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), + [anon_sym_BSLASHdef] = ACTIONS(5119), + [anon_sym_BSLASHlet] = ACTIONS(5119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), + [anon_sym_BSLASHgls] = ACTIONS(5119), + [anon_sym_BSLASHGls] = ACTIONS(5119), + [anon_sym_BSLASHGLS] = ACTIONS(5119), + [anon_sym_BSLASHglspl] = ACTIONS(5119), + [anon_sym_BSLASHGlspl] = ACTIONS(5119), + [anon_sym_BSLASHGLSpl] = ACTIONS(5119), + [anon_sym_BSLASHglsdisp] = ACTIONS(5119), + [anon_sym_BSLASHglslink] = ACTIONS(5119), + [anon_sym_BSLASHglstext] = ACTIONS(5119), + [anon_sym_BSLASHGlstext] = ACTIONS(5119), + [anon_sym_BSLASHGLStext] = ACTIONS(5119), + [anon_sym_BSLASHglsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), + [anon_sym_BSLASHglsplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSplural] = ACTIONS(5119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHglsname] = ACTIONS(5119), + [anon_sym_BSLASHGlsname] = ACTIONS(5119), + [anon_sym_BSLASHGLSname] = ACTIONS(5119), + [anon_sym_BSLASHglssymbol] = ACTIONS(5119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), + [anon_sym_BSLASHglsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), + [anon_sym_BSLASHglsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), + [anon_sym_BSLASHglsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), + [anon_sym_BSLASHglsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), + [anon_sym_BSLASHglsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), + [anon_sym_BSLASHnewacronym] = ACTIONS(5119), + [anon_sym_BSLASHacrshort] = ACTIONS(5119), + [anon_sym_BSLASHAcrshort] = ACTIONS(5119), + [anon_sym_BSLASHACRshort] = ACTIONS(5119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), + [anon_sym_BSLASHacrlong] = ACTIONS(5119), + [anon_sym_BSLASHAcrlong] = ACTIONS(5119), + [anon_sym_BSLASHACRlong] = ACTIONS(5119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), + [anon_sym_BSLASHacrfull] = ACTIONS(5119), + [anon_sym_BSLASHAcrfull] = ACTIONS(5119), + [anon_sym_BSLASHACRfull] = ACTIONS(5119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), + [anon_sym_BSLASHacs] = ACTIONS(5119), + [anon_sym_BSLASHAcs] = ACTIONS(5119), + [anon_sym_BSLASHacsp] = ACTIONS(5119), + [anon_sym_BSLASHAcsp] = ACTIONS(5119), + [anon_sym_BSLASHacl] = ACTIONS(5119), + [anon_sym_BSLASHAcl] = ACTIONS(5119), + [anon_sym_BSLASHaclp] = ACTIONS(5119), + [anon_sym_BSLASHAclp] = ACTIONS(5119), + [anon_sym_BSLASHacf] = ACTIONS(5119), + [anon_sym_BSLASHAcf] = ACTIONS(5119), + [anon_sym_BSLASHacfp] = ACTIONS(5119), + [anon_sym_BSLASHAcfp] = ACTIONS(5119), + [anon_sym_BSLASHac] = ACTIONS(5119), + [anon_sym_BSLASHAc] = ACTIONS(5119), + [anon_sym_BSLASHacp] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), + [anon_sym_BSLASHcolor] = ACTIONS(5119), + [anon_sym_BSLASHcolorbox] = ACTIONS(5119), + [anon_sym_BSLASHtextcolor] = ACTIONS(5119), + [anon_sym_BSLASHpagecolor] = ACTIONS(5119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), + [anon_sym_BSLASHtext] = ACTIONS(5119), + [anon_sym_BSLASHintertext] = ACTIONS(5119), + [anon_sym_shortintertext] = ACTIONS(5119), + }, + [1454] = { + [sym_command_name] = ACTIONS(5161), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5161), + [anon_sym_LPAREN] = ACTIONS(5159), + [anon_sym_RPAREN] = ACTIONS(5159), + [anon_sym_LBRACK] = ACTIONS(5159), + [anon_sym_RBRACK] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_LBRACE] = ACTIONS(5159), + [anon_sym_RBRACE] = ACTIONS(5159), + [sym_word] = ACTIONS(5161), + [sym_placeholder] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_CARET] = ACTIONS(5161), + [anon_sym__] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_COLON] = ACTIONS(5161), + [anon_sym_SQUOTE] = ACTIONS(5161), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5159), + [anon_sym_DOLLAR] = ACTIONS(5161), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5159), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5159), + [anon_sym_BSLASHusepackage] = ACTIONS(5161), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), + [anon_sym_BSLASHinclude] = ACTIONS(5161), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), + [anon_sym_BSLASHinput] = ACTIONS(5161), + [anon_sym_BSLASHsubfile] = ACTIONS(5161), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), + [anon_sym_BSLASHbibliography] = ACTIONS(5161), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), + [anon_sym_BSLASHincludesvg] = ACTIONS(5161), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), + [anon_sym_BSLASHimport] = ACTIONS(5161), + [anon_sym_BSLASHsubimport] = ACTIONS(5161), + [anon_sym_BSLASHinputfrom] = ACTIONS(5161), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), + [anon_sym_BSLASHincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHcaption] = ACTIONS(5161), + [anon_sym_BSLASHcite] = ACTIONS(5161), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCite] = ACTIONS(5161), + [anon_sym_BSLASHnocite] = ACTIONS(5161), + [anon_sym_BSLASHcitet] = ACTIONS(5161), + [anon_sym_BSLASHcitep] = ACTIONS(5161), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteauthor] = ACTIONS(5161), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitetitle] = ACTIONS(5161), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteyear] = ACTIONS(5161), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitedate] = ACTIONS(5161), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteurl] = ACTIONS(5161), + [anon_sym_BSLASHfullcite] = ACTIONS(5161), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), + [anon_sym_BSLASHcitealt] = ACTIONS(5161), + [anon_sym_BSLASHcitealp] = ACTIONS(5161), + [anon_sym_BSLASHcitetext] = ACTIONS(5161), + [anon_sym_BSLASHparencite] = ACTIONS(5161), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHParencite] = ACTIONS(5161), + [anon_sym_BSLASHfootcite] = ACTIONS(5161), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), + [anon_sym_BSLASHtextcite] = ACTIONS(5161), + [anon_sym_BSLASHTextcite] = ACTIONS(5161), + [anon_sym_BSLASHsmartcite] = ACTIONS(5161), + [anon_sym_BSLASHSmartcite] = ACTIONS(5161), + [anon_sym_BSLASHsupercite] = ACTIONS(5161), + [anon_sym_BSLASHautocite] = ACTIONS(5161), + [anon_sym_BSLASHAutocite] = ACTIONS(5161), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHvolcite] = ACTIONS(5161), + [anon_sym_BSLASHVolcite] = ACTIONS(5161), + [anon_sym_BSLASHpvolcite] = ACTIONS(5161), + [anon_sym_BSLASHPvolcite] = ACTIONS(5161), + [anon_sym_BSLASHfvolcite] = ACTIONS(5161), + [anon_sym_BSLASHftvolcite] = ACTIONS(5161), + [anon_sym_BSLASHsvolcite] = ACTIONS(5161), + [anon_sym_BSLASHSvolcite] = ACTIONS(5161), + [anon_sym_BSLASHtvolcite] = ACTIONS(5161), + [anon_sym_BSLASHTvolcite] = ACTIONS(5161), + [anon_sym_BSLASHavolcite] = ACTIONS(5161), + [anon_sym_BSLASHAvolcite] = ACTIONS(5161), + [anon_sym_BSLASHnotecite] = ACTIONS(5161), + [anon_sym_BSLASHNotecite] = ACTIONS(5161), + [anon_sym_BSLASHpnotecite] = ACTIONS(5161), + [anon_sym_BSLASHPnotecite] = ACTIONS(5161), + [anon_sym_BSLASHfnotecite] = ACTIONS(5161), + [anon_sym_BSLASHlabel] = ACTIONS(5161), + [anon_sym_BSLASHref] = ACTIONS(5161), + [anon_sym_BSLASHeqref] = ACTIONS(5161), + [anon_sym_BSLASHvref] = ACTIONS(5161), + [anon_sym_BSLASHVref] = ACTIONS(5161), + [anon_sym_BSLASHautoref] = ACTIONS(5161), + [anon_sym_BSLASHpageref] = ACTIONS(5161), + [anon_sym_BSLASHcref] = ACTIONS(5161), + [anon_sym_BSLASHCref] = ACTIONS(5161), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnameCref] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHlabelcref] = ACTIONS(5161), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCrefrange] = ACTIONS(5161), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnewlabel] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), + [anon_sym_BSLASHdef] = ACTIONS(5161), + [anon_sym_BSLASHlet] = ACTIONS(5161), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), + [anon_sym_BSLASHgls] = ACTIONS(5161), + [anon_sym_BSLASHGls] = ACTIONS(5161), + [anon_sym_BSLASHGLS] = ACTIONS(5161), + [anon_sym_BSLASHglspl] = ACTIONS(5161), + [anon_sym_BSLASHGlspl] = ACTIONS(5161), + [anon_sym_BSLASHGLSpl] = ACTIONS(5161), + [anon_sym_BSLASHglsdisp] = ACTIONS(5161), + [anon_sym_BSLASHglslink] = ACTIONS(5161), + [anon_sym_BSLASHglstext] = ACTIONS(5161), + [anon_sym_BSLASHGlstext] = ACTIONS(5161), + [anon_sym_BSLASHGLStext] = ACTIONS(5161), + [anon_sym_BSLASHglsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), + [anon_sym_BSLASHglsplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSplural] = ACTIONS(5161), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHglsname] = ACTIONS(5161), + [anon_sym_BSLASHGlsname] = ACTIONS(5161), + [anon_sym_BSLASHGLSname] = ACTIONS(5161), + [anon_sym_BSLASHglssymbol] = ACTIONS(5161), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), + [anon_sym_BSLASHglsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), + [anon_sym_BSLASHglsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), + [anon_sym_BSLASHglsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), + [anon_sym_BSLASHglsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), + [anon_sym_BSLASHglsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), + [anon_sym_BSLASHnewacronym] = ACTIONS(5161), + [anon_sym_BSLASHacrshort] = ACTIONS(5161), + [anon_sym_BSLASHAcrshort] = ACTIONS(5161), + [anon_sym_BSLASHACRshort] = ACTIONS(5161), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), + [anon_sym_BSLASHacrlong] = ACTIONS(5161), + [anon_sym_BSLASHAcrlong] = ACTIONS(5161), + [anon_sym_BSLASHACRlong] = ACTIONS(5161), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), + [anon_sym_BSLASHacrfull] = ACTIONS(5161), + [anon_sym_BSLASHAcrfull] = ACTIONS(5161), + [anon_sym_BSLASHACRfull] = ACTIONS(5161), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), + [anon_sym_BSLASHacs] = ACTIONS(5161), + [anon_sym_BSLASHAcs] = ACTIONS(5161), + [anon_sym_BSLASHacsp] = ACTIONS(5161), + [anon_sym_BSLASHAcsp] = ACTIONS(5161), + [anon_sym_BSLASHacl] = ACTIONS(5161), + [anon_sym_BSLASHAcl] = ACTIONS(5161), + [anon_sym_BSLASHaclp] = ACTIONS(5161), + [anon_sym_BSLASHAclp] = ACTIONS(5161), + [anon_sym_BSLASHacf] = ACTIONS(5161), + [anon_sym_BSLASHAcf] = ACTIONS(5161), + [anon_sym_BSLASHacfp] = ACTIONS(5161), + [anon_sym_BSLASHAcfp] = ACTIONS(5161), + [anon_sym_BSLASHac] = ACTIONS(5161), + [anon_sym_BSLASHAc] = ACTIONS(5161), + [anon_sym_BSLASHacp] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), + [anon_sym_BSLASHcolor] = ACTIONS(5161), + [anon_sym_BSLASHcolorbox] = ACTIONS(5161), + [anon_sym_BSLASHtextcolor] = ACTIONS(5161), + [anon_sym_BSLASHpagecolor] = ACTIONS(5161), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), + [anon_sym_BSLASHtext] = ACTIONS(5161), + [anon_sym_BSLASHintertext] = ACTIONS(5161), + [anon_sym_shortintertext] = ACTIONS(5161), + }, + [1455] = { [sym_command_name] = ACTIONS(5025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(5025), [anon_sym_LPAREN] = ACTIONS(5023), + [anon_sym_RPAREN] = ACTIONS(5023), [anon_sym_LBRACK] = ACTIONS(5023), [anon_sym_RBRACK] = ACTIONS(5023), [anon_sym_COMMA] = ACTIONS(5023), - [anon_sym_EQ] = ACTIONS(5023), [anon_sym_LBRACE] = ACTIONS(5023), [anon_sym_RBRACE] = ACTIONS(5023), [sym_word] = ACTIONS(5025), @@ -434902,6 +428021,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(5025), [anon_sym_COLON] = ACTIONS(5025), [anon_sym_SQUOTE] = ACTIONS(5025), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5023), + [anon_sym_DOLLAR] = ACTIONS(5025), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5023), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5023), [anon_sym_BSLASHusepackage] = ACTIONS(5025), [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), @@ -435115,7617 +428239,9197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHpagecolor] = ACTIONS(5025), [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + [anon_sym_BSLASHtext] = ACTIONS(5025), + [anon_sym_BSLASHintertext] = ACTIONS(5025), + [anon_sym_shortintertext] = ACTIONS(5025), }, - [1494] = { - [sym_command_name] = ACTIONS(5037), + [1456] = { + [sym_command_name] = ACTIONS(5021), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5037), - [anon_sym_LPAREN] = ACTIONS(5035), - [anon_sym_LBRACK] = ACTIONS(5035), - [anon_sym_RBRACK] = ACTIONS(5035), - [anon_sym_COMMA] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(5035), - [anon_sym_LBRACE] = ACTIONS(5035), - [anon_sym_RBRACE] = ACTIONS(5035), - [sym_word] = ACTIONS(5037), - [sym_placeholder] = ACTIONS(5035), - [anon_sym_PLUS] = ACTIONS(5037), - [anon_sym_DASH] = ACTIONS(5037), - [anon_sym_STAR] = ACTIONS(5037), - [anon_sym_SLASH] = ACTIONS(5037), - [anon_sym_CARET] = ACTIONS(5037), - [anon_sym__] = ACTIONS(5037), - [anon_sym_LT] = ACTIONS(5037), - [anon_sym_GT] = ACTIONS(5037), - [anon_sym_BANG] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5037), - [anon_sym_COLON] = ACTIONS(5037), - [anon_sym_SQUOTE] = ACTIONS(5037), - [anon_sym_BSLASHusepackage] = ACTIONS(5037), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), - [anon_sym_BSLASHinclude] = ACTIONS(5037), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), - [anon_sym_BSLASHinput] = ACTIONS(5037), - [anon_sym_BSLASHsubfile] = ACTIONS(5037), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), - [anon_sym_BSLASHbibliography] = ACTIONS(5037), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), - [anon_sym_BSLASHincludesvg] = ACTIONS(5037), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), - [anon_sym_BSLASHimport] = ACTIONS(5037), - [anon_sym_BSLASHsubimport] = ACTIONS(5037), - [anon_sym_BSLASHinputfrom] = ACTIONS(5037), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), - [anon_sym_BSLASHincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), - [anon_sym_BSLASHcaption] = ACTIONS(5037), - [anon_sym_BSLASHcite] = ACTIONS(5037), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCite] = ACTIONS(5037), - [anon_sym_BSLASHnocite] = ACTIONS(5037), - [anon_sym_BSLASHcitet] = ACTIONS(5037), - [anon_sym_BSLASHcitep] = ACTIONS(5037), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteauthor] = ACTIONS(5037), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitetitle] = ACTIONS(5037), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteyear] = ACTIONS(5037), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), - [anon_sym_BSLASHcitedate] = ACTIONS(5037), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), - [anon_sym_BSLASHciteurl] = ACTIONS(5037), - [anon_sym_BSLASHfullcite] = ACTIONS(5037), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), - [anon_sym_BSLASHcitealt] = ACTIONS(5037), - [anon_sym_BSLASHcitealp] = ACTIONS(5037), - [anon_sym_BSLASHcitetext] = ACTIONS(5037), - [anon_sym_BSLASHparencite] = ACTIONS(5037), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHParencite] = ACTIONS(5037), - [anon_sym_BSLASHfootcite] = ACTIONS(5037), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), - [anon_sym_BSLASHtextcite] = ACTIONS(5037), - [anon_sym_BSLASHTextcite] = ACTIONS(5037), - [anon_sym_BSLASHsmartcite] = ACTIONS(5037), - [anon_sym_BSLASHSmartcite] = ACTIONS(5037), - [anon_sym_BSLASHsupercite] = ACTIONS(5037), - [anon_sym_BSLASHautocite] = ACTIONS(5037), - [anon_sym_BSLASHAutocite] = ACTIONS(5037), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), - [anon_sym_BSLASHvolcite] = ACTIONS(5037), - [anon_sym_BSLASHVolcite] = ACTIONS(5037), - [anon_sym_BSLASHpvolcite] = ACTIONS(5037), - [anon_sym_BSLASHPvolcite] = ACTIONS(5037), - [anon_sym_BSLASHfvolcite] = ACTIONS(5037), - [anon_sym_BSLASHftvolcite] = ACTIONS(5037), - [anon_sym_BSLASHsvolcite] = ACTIONS(5037), - [anon_sym_BSLASHSvolcite] = ACTIONS(5037), - [anon_sym_BSLASHtvolcite] = ACTIONS(5037), - [anon_sym_BSLASHTvolcite] = ACTIONS(5037), - [anon_sym_BSLASHavolcite] = ACTIONS(5037), - [anon_sym_BSLASHAvolcite] = ACTIONS(5037), - [anon_sym_BSLASHnotecite] = ACTIONS(5037), - [anon_sym_BSLASHNotecite] = ACTIONS(5037), - [anon_sym_BSLASHpnotecite] = ACTIONS(5037), - [anon_sym_BSLASHPnotecite] = ACTIONS(5037), - [anon_sym_BSLASHfnotecite] = ACTIONS(5037), - [anon_sym_BSLASHlabel] = ACTIONS(5037), - [anon_sym_BSLASHref] = ACTIONS(5037), - [anon_sym_BSLASHeqref] = ACTIONS(5037), - [anon_sym_BSLASHvref] = ACTIONS(5037), - [anon_sym_BSLASHVref] = ACTIONS(5037), - [anon_sym_BSLASHautoref] = ACTIONS(5037), - [anon_sym_BSLASHpageref] = ACTIONS(5037), - [anon_sym_BSLASHcref] = ACTIONS(5037), - [anon_sym_BSLASHCref] = ACTIONS(5037), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnameCref] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), - [anon_sym_BSLASHlabelcref] = ACTIONS(5037), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange] = ACTIONS(5037), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHCrefrange] = ACTIONS(5037), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), - [anon_sym_BSLASHnewlabel] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand] = ACTIONS(5037), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), - [anon_sym_BSLASHdef] = ACTIONS(5037), - [anon_sym_BSLASHlet] = ACTIONS(5037), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), - [anon_sym_BSLASHgls] = ACTIONS(5037), - [anon_sym_BSLASHGls] = ACTIONS(5037), - [anon_sym_BSLASHGLS] = ACTIONS(5037), - [anon_sym_BSLASHglspl] = ACTIONS(5037), - [anon_sym_BSLASHGlspl] = ACTIONS(5037), - [anon_sym_BSLASHGLSpl] = ACTIONS(5037), - [anon_sym_BSLASHglsdisp] = ACTIONS(5037), - [anon_sym_BSLASHglslink] = ACTIONS(5037), - [anon_sym_BSLASHglstext] = ACTIONS(5037), - [anon_sym_BSLASHGlstext] = ACTIONS(5037), - [anon_sym_BSLASHGLStext] = ACTIONS(5037), - [anon_sym_BSLASHglsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), - [anon_sym_BSLASHglsplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSplural] = ACTIONS(5037), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), - [anon_sym_BSLASHglsname] = ACTIONS(5037), - [anon_sym_BSLASHGlsname] = ACTIONS(5037), - [anon_sym_BSLASHGLSname] = ACTIONS(5037), - [anon_sym_BSLASHglssymbol] = ACTIONS(5037), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), - [anon_sym_BSLASHglsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), - [anon_sym_BSLASHglsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), - [anon_sym_BSLASHglsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), - [anon_sym_BSLASHglsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), - [anon_sym_BSLASHglsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), - [anon_sym_BSLASHnewacronym] = ACTIONS(5037), - [anon_sym_BSLASHacrshort] = ACTIONS(5037), - [anon_sym_BSLASHAcrshort] = ACTIONS(5037), - [anon_sym_BSLASHACRshort] = ACTIONS(5037), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), - [anon_sym_BSLASHacrlong] = ACTIONS(5037), - [anon_sym_BSLASHAcrlong] = ACTIONS(5037), - [anon_sym_BSLASHACRlong] = ACTIONS(5037), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), - [anon_sym_BSLASHacrfull] = ACTIONS(5037), - [anon_sym_BSLASHAcrfull] = ACTIONS(5037), - [anon_sym_BSLASHACRfull] = ACTIONS(5037), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), - [anon_sym_BSLASHacs] = ACTIONS(5037), - [anon_sym_BSLASHAcs] = ACTIONS(5037), - [anon_sym_BSLASHacsp] = ACTIONS(5037), - [anon_sym_BSLASHAcsp] = ACTIONS(5037), - [anon_sym_BSLASHacl] = ACTIONS(5037), - [anon_sym_BSLASHAcl] = ACTIONS(5037), - [anon_sym_BSLASHaclp] = ACTIONS(5037), - [anon_sym_BSLASHAclp] = ACTIONS(5037), - [anon_sym_BSLASHacf] = ACTIONS(5037), - [anon_sym_BSLASHAcf] = ACTIONS(5037), - [anon_sym_BSLASHacfp] = ACTIONS(5037), - [anon_sym_BSLASHAcfp] = ACTIONS(5037), - [anon_sym_BSLASHac] = ACTIONS(5037), - [anon_sym_BSLASHAc] = ACTIONS(5037), - [anon_sym_BSLASHacp] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), - [anon_sym_BSLASHcolor] = ACTIONS(5037), - [anon_sym_BSLASHcolorbox] = ACTIONS(5037), - [anon_sym_BSLASHtextcolor] = ACTIONS(5037), - [anon_sym_BSLASHpagecolor] = ACTIONS(5037), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), + [anon_sym_BSLASHiffalse] = ACTIONS(5021), + [anon_sym_LPAREN] = ACTIONS(5019), + [anon_sym_RPAREN] = ACTIONS(5019), + [anon_sym_LBRACK] = ACTIONS(5019), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_LBRACE] = ACTIONS(5019), + [anon_sym_RBRACE] = ACTIONS(5019), + [sym_word] = ACTIONS(5021), + [sym_placeholder] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5021), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_CARET] = ACTIONS(5021), + [anon_sym__] = ACTIONS(5021), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_COLON] = ACTIONS(5021), + [anon_sym_SQUOTE] = ACTIONS(5021), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5019), + [anon_sym_DOLLAR] = ACTIONS(5021), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5019), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5019), + [anon_sym_BSLASHusepackage] = ACTIONS(5021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), + [anon_sym_BSLASHinclude] = ACTIONS(5021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), + [anon_sym_BSLASHinput] = ACTIONS(5021), + [anon_sym_BSLASHsubfile] = ACTIONS(5021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), + [anon_sym_BSLASHbibliography] = ACTIONS(5021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), + [anon_sym_BSLASHincludesvg] = ACTIONS(5021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), + [anon_sym_BSLASHimport] = ACTIONS(5021), + [anon_sym_BSLASHsubimport] = ACTIONS(5021), + [anon_sym_BSLASHinputfrom] = ACTIONS(5021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), + [anon_sym_BSLASHincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHcaption] = ACTIONS(5021), + [anon_sym_BSLASHcite] = ACTIONS(5021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCite] = ACTIONS(5021), + [anon_sym_BSLASHnocite] = ACTIONS(5021), + [anon_sym_BSLASHcitet] = ACTIONS(5021), + [anon_sym_BSLASHcitep] = ACTIONS(5021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteauthor] = ACTIONS(5021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitetitle] = ACTIONS(5021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteyear] = ACTIONS(5021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitedate] = ACTIONS(5021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteurl] = ACTIONS(5021), + [anon_sym_BSLASHfullcite] = ACTIONS(5021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), + [anon_sym_BSLASHcitealt] = ACTIONS(5021), + [anon_sym_BSLASHcitealp] = ACTIONS(5021), + [anon_sym_BSLASHcitetext] = ACTIONS(5021), + [anon_sym_BSLASHparencite] = ACTIONS(5021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHParencite] = ACTIONS(5021), + [anon_sym_BSLASHfootcite] = ACTIONS(5021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), + [anon_sym_BSLASHtextcite] = ACTIONS(5021), + [anon_sym_BSLASHTextcite] = ACTIONS(5021), + [anon_sym_BSLASHsmartcite] = ACTIONS(5021), + [anon_sym_BSLASHSmartcite] = ACTIONS(5021), + [anon_sym_BSLASHsupercite] = ACTIONS(5021), + [anon_sym_BSLASHautocite] = ACTIONS(5021), + [anon_sym_BSLASHAutocite] = ACTIONS(5021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHvolcite] = ACTIONS(5021), + [anon_sym_BSLASHVolcite] = ACTIONS(5021), + [anon_sym_BSLASHpvolcite] = ACTIONS(5021), + [anon_sym_BSLASHPvolcite] = ACTIONS(5021), + [anon_sym_BSLASHfvolcite] = ACTIONS(5021), + [anon_sym_BSLASHftvolcite] = ACTIONS(5021), + [anon_sym_BSLASHsvolcite] = ACTIONS(5021), + [anon_sym_BSLASHSvolcite] = ACTIONS(5021), + [anon_sym_BSLASHtvolcite] = ACTIONS(5021), + [anon_sym_BSLASHTvolcite] = ACTIONS(5021), + [anon_sym_BSLASHavolcite] = ACTIONS(5021), + [anon_sym_BSLASHAvolcite] = ACTIONS(5021), + [anon_sym_BSLASHnotecite] = ACTIONS(5021), + [anon_sym_BSLASHNotecite] = ACTIONS(5021), + [anon_sym_BSLASHpnotecite] = ACTIONS(5021), + [anon_sym_BSLASHPnotecite] = ACTIONS(5021), + [anon_sym_BSLASHfnotecite] = ACTIONS(5021), + [anon_sym_BSLASHlabel] = ACTIONS(5021), + [anon_sym_BSLASHref] = ACTIONS(5021), + [anon_sym_BSLASHeqref] = ACTIONS(5021), + [anon_sym_BSLASHvref] = ACTIONS(5021), + [anon_sym_BSLASHVref] = ACTIONS(5021), + [anon_sym_BSLASHautoref] = ACTIONS(5021), + [anon_sym_BSLASHpageref] = ACTIONS(5021), + [anon_sym_BSLASHcref] = ACTIONS(5021), + [anon_sym_BSLASHCref] = ACTIONS(5021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnameCref] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHlabelcref] = ACTIONS(5021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCrefrange] = ACTIONS(5021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnewlabel] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), + [anon_sym_BSLASHdef] = ACTIONS(5021), + [anon_sym_BSLASHlet] = ACTIONS(5021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), + [anon_sym_BSLASHgls] = ACTIONS(5021), + [anon_sym_BSLASHGls] = ACTIONS(5021), + [anon_sym_BSLASHGLS] = ACTIONS(5021), + [anon_sym_BSLASHglspl] = ACTIONS(5021), + [anon_sym_BSLASHGlspl] = ACTIONS(5021), + [anon_sym_BSLASHGLSpl] = ACTIONS(5021), + [anon_sym_BSLASHglsdisp] = ACTIONS(5021), + [anon_sym_BSLASHglslink] = ACTIONS(5021), + [anon_sym_BSLASHglstext] = ACTIONS(5021), + [anon_sym_BSLASHGlstext] = ACTIONS(5021), + [anon_sym_BSLASHGLStext] = ACTIONS(5021), + [anon_sym_BSLASHglsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), + [anon_sym_BSLASHglsplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSplural] = ACTIONS(5021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHglsname] = ACTIONS(5021), + [anon_sym_BSLASHGlsname] = ACTIONS(5021), + [anon_sym_BSLASHGLSname] = ACTIONS(5021), + [anon_sym_BSLASHglssymbol] = ACTIONS(5021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), + [anon_sym_BSLASHglsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), + [anon_sym_BSLASHglsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), + [anon_sym_BSLASHglsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), + [anon_sym_BSLASHglsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), + [anon_sym_BSLASHglsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), + [anon_sym_BSLASHnewacronym] = ACTIONS(5021), + [anon_sym_BSLASHacrshort] = ACTIONS(5021), + [anon_sym_BSLASHAcrshort] = ACTIONS(5021), + [anon_sym_BSLASHACRshort] = ACTIONS(5021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), + [anon_sym_BSLASHacrlong] = ACTIONS(5021), + [anon_sym_BSLASHAcrlong] = ACTIONS(5021), + [anon_sym_BSLASHACRlong] = ACTIONS(5021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), + [anon_sym_BSLASHacrfull] = ACTIONS(5021), + [anon_sym_BSLASHAcrfull] = ACTIONS(5021), + [anon_sym_BSLASHACRfull] = ACTIONS(5021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), + [anon_sym_BSLASHacs] = ACTIONS(5021), + [anon_sym_BSLASHAcs] = ACTIONS(5021), + [anon_sym_BSLASHacsp] = ACTIONS(5021), + [anon_sym_BSLASHAcsp] = ACTIONS(5021), + [anon_sym_BSLASHacl] = ACTIONS(5021), + [anon_sym_BSLASHAcl] = ACTIONS(5021), + [anon_sym_BSLASHaclp] = ACTIONS(5021), + [anon_sym_BSLASHAclp] = ACTIONS(5021), + [anon_sym_BSLASHacf] = ACTIONS(5021), + [anon_sym_BSLASHAcf] = ACTIONS(5021), + [anon_sym_BSLASHacfp] = ACTIONS(5021), + [anon_sym_BSLASHAcfp] = ACTIONS(5021), + [anon_sym_BSLASHac] = ACTIONS(5021), + [anon_sym_BSLASHAc] = ACTIONS(5021), + [anon_sym_BSLASHacp] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), + [anon_sym_BSLASHcolor] = ACTIONS(5021), + [anon_sym_BSLASHcolorbox] = ACTIONS(5021), + [anon_sym_BSLASHtextcolor] = ACTIONS(5021), + [anon_sym_BSLASHpagecolor] = ACTIONS(5021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHtext] = ACTIONS(5021), + [anon_sym_BSLASHintertext] = ACTIONS(5021), + [anon_sym_shortintertext] = ACTIONS(5021), }, - [1495] = { - [sym_command_name] = ACTIONS(5085), + [1457] = { + [sym_command_name] = ACTIONS(5017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5017), + [anon_sym_LPAREN] = ACTIONS(5015), + [anon_sym_RPAREN] = ACTIONS(5015), + [anon_sym_LBRACK] = ACTIONS(5015), + [anon_sym_RBRACK] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_LBRACE] = ACTIONS(5015), + [anon_sym_RBRACE] = ACTIONS(5015), + [sym_word] = ACTIONS(5017), + [sym_placeholder] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5017), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_CARET] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5017), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_COLON] = ACTIONS(5017), + [anon_sym_SQUOTE] = ACTIONS(5017), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5015), + [anon_sym_DOLLAR] = ACTIONS(5017), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5015), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5015), + [anon_sym_BSLASHusepackage] = ACTIONS(5017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), + [anon_sym_BSLASHinclude] = ACTIONS(5017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), + [anon_sym_BSLASHinput] = ACTIONS(5017), + [anon_sym_BSLASHsubfile] = ACTIONS(5017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), + [anon_sym_BSLASHbibliography] = ACTIONS(5017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), + [anon_sym_BSLASHincludesvg] = ACTIONS(5017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), + [anon_sym_BSLASHimport] = ACTIONS(5017), + [anon_sym_BSLASHsubimport] = ACTIONS(5017), + [anon_sym_BSLASHinputfrom] = ACTIONS(5017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), + [anon_sym_BSLASHincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHcaption] = ACTIONS(5017), + [anon_sym_BSLASHcite] = ACTIONS(5017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCite] = ACTIONS(5017), + [anon_sym_BSLASHnocite] = ACTIONS(5017), + [anon_sym_BSLASHcitet] = ACTIONS(5017), + [anon_sym_BSLASHcitep] = ACTIONS(5017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteauthor] = ACTIONS(5017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitetitle] = ACTIONS(5017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteyear] = ACTIONS(5017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitedate] = ACTIONS(5017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteurl] = ACTIONS(5017), + [anon_sym_BSLASHfullcite] = ACTIONS(5017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), + [anon_sym_BSLASHcitealt] = ACTIONS(5017), + [anon_sym_BSLASHcitealp] = ACTIONS(5017), + [anon_sym_BSLASHcitetext] = ACTIONS(5017), + [anon_sym_BSLASHparencite] = ACTIONS(5017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHParencite] = ACTIONS(5017), + [anon_sym_BSLASHfootcite] = ACTIONS(5017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), + [anon_sym_BSLASHtextcite] = ACTIONS(5017), + [anon_sym_BSLASHTextcite] = ACTIONS(5017), + [anon_sym_BSLASHsmartcite] = ACTIONS(5017), + [anon_sym_BSLASHSmartcite] = ACTIONS(5017), + [anon_sym_BSLASHsupercite] = ACTIONS(5017), + [anon_sym_BSLASHautocite] = ACTIONS(5017), + [anon_sym_BSLASHAutocite] = ACTIONS(5017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHvolcite] = ACTIONS(5017), + [anon_sym_BSLASHVolcite] = ACTIONS(5017), + [anon_sym_BSLASHpvolcite] = ACTIONS(5017), + [anon_sym_BSLASHPvolcite] = ACTIONS(5017), + [anon_sym_BSLASHfvolcite] = ACTIONS(5017), + [anon_sym_BSLASHftvolcite] = ACTIONS(5017), + [anon_sym_BSLASHsvolcite] = ACTIONS(5017), + [anon_sym_BSLASHSvolcite] = ACTIONS(5017), + [anon_sym_BSLASHtvolcite] = ACTIONS(5017), + [anon_sym_BSLASHTvolcite] = ACTIONS(5017), + [anon_sym_BSLASHavolcite] = ACTIONS(5017), + [anon_sym_BSLASHAvolcite] = ACTIONS(5017), + [anon_sym_BSLASHnotecite] = ACTIONS(5017), + [anon_sym_BSLASHNotecite] = ACTIONS(5017), + [anon_sym_BSLASHpnotecite] = ACTIONS(5017), + [anon_sym_BSLASHPnotecite] = ACTIONS(5017), + [anon_sym_BSLASHfnotecite] = ACTIONS(5017), + [anon_sym_BSLASHlabel] = ACTIONS(5017), + [anon_sym_BSLASHref] = ACTIONS(5017), + [anon_sym_BSLASHeqref] = ACTIONS(5017), + [anon_sym_BSLASHvref] = ACTIONS(5017), + [anon_sym_BSLASHVref] = ACTIONS(5017), + [anon_sym_BSLASHautoref] = ACTIONS(5017), + [anon_sym_BSLASHpageref] = ACTIONS(5017), + [anon_sym_BSLASHcref] = ACTIONS(5017), + [anon_sym_BSLASHCref] = ACTIONS(5017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnameCref] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHlabelcref] = ACTIONS(5017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCrefrange] = ACTIONS(5017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnewlabel] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), + [anon_sym_BSLASHdef] = ACTIONS(5017), + [anon_sym_BSLASHlet] = ACTIONS(5017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), + [anon_sym_BSLASHgls] = ACTIONS(5017), + [anon_sym_BSLASHGls] = ACTIONS(5017), + [anon_sym_BSLASHGLS] = ACTIONS(5017), + [anon_sym_BSLASHglspl] = ACTIONS(5017), + [anon_sym_BSLASHGlspl] = ACTIONS(5017), + [anon_sym_BSLASHGLSpl] = ACTIONS(5017), + [anon_sym_BSLASHglsdisp] = ACTIONS(5017), + [anon_sym_BSLASHglslink] = ACTIONS(5017), + [anon_sym_BSLASHglstext] = ACTIONS(5017), + [anon_sym_BSLASHGlstext] = ACTIONS(5017), + [anon_sym_BSLASHGLStext] = ACTIONS(5017), + [anon_sym_BSLASHglsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), + [anon_sym_BSLASHglsplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSplural] = ACTIONS(5017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHglsname] = ACTIONS(5017), + [anon_sym_BSLASHGlsname] = ACTIONS(5017), + [anon_sym_BSLASHGLSname] = ACTIONS(5017), + [anon_sym_BSLASHglssymbol] = ACTIONS(5017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), + [anon_sym_BSLASHglsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), + [anon_sym_BSLASHglsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), + [anon_sym_BSLASHglsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), + [anon_sym_BSLASHglsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), + [anon_sym_BSLASHglsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), + [anon_sym_BSLASHnewacronym] = ACTIONS(5017), + [anon_sym_BSLASHacrshort] = ACTIONS(5017), + [anon_sym_BSLASHAcrshort] = ACTIONS(5017), + [anon_sym_BSLASHACRshort] = ACTIONS(5017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), + [anon_sym_BSLASHacrlong] = ACTIONS(5017), + [anon_sym_BSLASHAcrlong] = ACTIONS(5017), + [anon_sym_BSLASHACRlong] = ACTIONS(5017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), + [anon_sym_BSLASHacrfull] = ACTIONS(5017), + [anon_sym_BSLASHAcrfull] = ACTIONS(5017), + [anon_sym_BSLASHACRfull] = ACTIONS(5017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), + [anon_sym_BSLASHacs] = ACTIONS(5017), + [anon_sym_BSLASHAcs] = ACTIONS(5017), + [anon_sym_BSLASHacsp] = ACTIONS(5017), + [anon_sym_BSLASHAcsp] = ACTIONS(5017), + [anon_sym_BSLASHacl] = ACTIONS(5017), + [anon_sym_BSLASHAcl] = ACTIONS(5017), + [anon_sym_BSLASHaclp] = ACTIONS(5017), + [anon_sym_BSLASHAclp] = ACTIONS(5017), + [anon_sym_BSLASHacf] = ACTIONS(5017), + [anon_sym_BSLASHAcf] = ACTIONS(5017), + [anon_sym_BSLASHacfp] = ACTIONS(5017), + [anon_sym_BSLASHAcfp] = ACTIONS(5017), + [anon_sym_BSLASHac] = ACTIONS(5017), + [anon_sym_BSLASHAc] = ACTIONS(5017), + [anon_sym_BSLASHacp] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), + [anon_sym_BSLASHcolor] = ACTIONS(5017), + [anon_sym_BSLASHcolorbox] = ACTIONS(5017), + [anon_sym_BSLASHtextcolor] = ACTIONS(5017), + [anon_sym_BSLASHpagecolor] = ACTIONS(5017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), + [anon_sym_BSLASHtext] = ACTIONS(5017), + [anon_sym_BSLASHintertext] = ACTIONS(5017), + [anon_sym_shortintertext] = ACTIONS(5017), + }, + [1458] = { + [sym_command_name] = ACTIONS(5013), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5013), + [anon_sym_LPAREN] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5011), + [anon_sym_LBRACK] = ACTIONS(5011), + [anon_sym_RBRACK] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_LBRACE] = ACTIONS(5011), + [anon_sym_RBRACE] = ACTIONS(5011), + [sym_word] = ACTIONS(5013), + [sym_placeholder] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5013), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_CARET] = ACTIONS(5013), + [anon_sym__] = ACTIONS(5013), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_PIPE] = ACTIONS(5013), + [anon_sym_COLON] = ACTIONS(5013), + [anon_sym_SQUOTE] = ACTIONS(5013), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5011), + [anon_sym_DOLLAR] = ACTIONS(5013), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5011), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5011), + [anon_sym_BSLASHusepackage] = ACTIONS(5013), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), + [anon_sym_BSLASHinclude] = ACTIONS(5013), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), + [anon_sym_BSLASHinput] = ACTIONS(5013), + [anon_sym_BSLASHsubfile] = ACTIONS(5013), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), + [anon_sym_BSLASHbibliography] = ACTIONS(5013), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), + [anon_sym_BSLASHincludesvg] = ACTIONS(5013), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), + [anon_sym_BSLASHimport] = ACTIONS(5013), + [anon_sym_BSLASHsubimport] = ACTIONS(5013), + [anon_sym_BSLASHinputfrom] = ACTIONS(5013), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), + [anon_sym_BSLASHincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHcaption] = ACTIONS(5013), + [anon_sym_BSLASHcite] = ACTIONS(5013), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCite] = ACTIONS(5013), + [anon_sym_BSLASHnocite] = ACTIONS(5013), + [anon_sym_BSLASHcitet] = ACTIONS(5013), + [anon_sym_BSLASHcitep] = ACTIONS(5013), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteauthor] = ACTIONS(5013), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitetitle] = ACTIONS(5013), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteyear] = ACTIONS(5013), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitedate] = ACTIONS(5013), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteurl] = ACTIONS(5013), + [anon_sym_BSLASHfullcite] = ACTIONS(5013), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), + [anon_sym_BSLASHcitealt] = ACTIONS(5013), + [anon_sym_BSLASHcitealp] = ACTIONS(5013), + [anon_sym_BSLASHcitetext] = ACTIONS(5013), + [anon_sym_BSLASHparencite] = ACTIONS(5013), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHParencite] = ACTIONS(5013), + [anon_sym_BSLASHfootcite] = ACTIONS(5013), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), + [anon_sym_BSLASHtextcite] = ACTIONS(5013), + [anon_sym_BSLASHTextcite] = ACTIONS(5013), + [anon_sym_BSLASHsmartcite] = ACTIONS(5013), + [anon_sym_BSLASHSmartcite] = ACTIONS(5013), + [anon_sym_BSLASHsupercite] = ACTIONS(5013), + [anon_sym_BSLASHautocite] = ACTIONS(5013), + [anon_sym_BSLASHAutocite] = ACTIONS(5013), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHvolcite] = ACTIONS(5013), + [anon_sym_BSLASHVolcite] = ACTIONS(5013), + [anon_sym_BSLASHpvolcite] = ACTIONS(5013), + [anon_sym_BSLASHPvolcite] = ACTIONS(5013), + [anon_sym_BSLASHfvolcite] = ACTIONS(5013), + [anon_sym_BSLASHftvolcite] = ACTIONS(5013), + [anon_sym_BSLASHsvolcite] = ACTIONS(5013), + [anon_sym_BSLASHSvolcite] = ACTIONS(5013), + [anon_sym_BSLASHtvolcite] = ACTIONS(5013), + [anon_sym_BSLASHTvolcite] = ACTIONS(5013), + [anon_sym_BSLASHavolcite] = ACTIONS(5013), + [anon_sym_BSLASHAvolcite] = ACTIONS(5013), + [anon_sym_BSLASHnotecite] = ACTIONS(5013), + [anon_sym_BSLASHNotecite] = ACTIONS(5013), + [anon_sym_BSLASHpnotecite] = ACTIONS(5013), + [anon_sym_BSLASHPnotecite] = ACTIONS(5013), + [anon_sym_BSLASHfnotecite] = ACTIONS(5013), + [anon_sym_BSLASHlabel] = ACTIONS(5013), + [anon_sym_BSLASHref] = ACTIONS(5013), + [anon_sym_BSLASHeqref] = ACTIONS(5013), + [anon_sym_BSLASHvref] = ACTIONS(5013), + [anon_sym_BSLASHVref] = ACTIONS(5013), + [anon_sym_BSLASHautoref] = ACTIONS(5013), + [anon_sym_BSLASHpageref] = ACTIONS(5013), + [anon_sym_BSLASHcref] = ACTIONS(5013), + [anon_sym_BSLASHCref] = ACTIONS(5013), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnameCref] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHlabelcref] = ACTIONS(5013), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCrefrange] = ACTIONS(5013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnewlabel] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), + [anon_sym_BSLASHdef] = ACTIONS(5013), + [anon_sym_BSLASHlet] = ACTIONS(5013), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), + [anon_sym_BSLASHgls] = ACTIONS(5013), + [anon_sym_BSLASHGls] = ACTIONS(5013), + [anon_sym_BSLASHGLS] = ACTIONS(5013), + [anon_sym_BSLASHglspl] = ACTIONS(5013), + [anon_sym_BSLASHGlspl] = ACTIONS(5013), + [anon_sym_BSLASHGLSpl] = ACTIONS(5013), + [anon_sym_BSLASHglsdisp] = ACTIONS(5013), + [anon_sym_BSLASHglslink] = ACTIONS(5013), + [anon_sym_BSLASHglstext] = ACTIONS(5013), + [anon_sym_BSLASHGlstext] = ACTIONS(5013), + [anon_sym_BSLASHGLStext] = ACTIONS(5013), + [anon_sym_BSLASHglsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), + [anon_sym_BSLASHglsplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSplural] = ACTIONS(5013), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHglsname] = ACTIONS(5013), + [anon_sym_BSLASHGlsname] = ACTIONS(5013), + [anon_sym_BSLASHGLSname] = ACTIONS(5013), + [anon_sym_BSLASHglssymbol] = ACTIONS(5013), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), + [anon_sym_BSLASHglsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), + [anon_sym_BSLASHglsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), + [anon_sym_BSLASHglsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), + [anon_sym_BSLASHglsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), + [anon_sym_BSLASHglsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), + [anon_sym_BSLASHnewacronym] = ACTIONS(5013), + [anon_sym_BSLASHacrshort] = ACTIONS(5013), + [anon_sym_BSLASHAcrshort] = ACTIONS(5013), + [anon_sym_BSLASHACRshort] = ACTIONS(5013), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), + [anon_sym_BSLASHacrlong] = ACTIONS(5013), + [anon_sym_BSLASHAcrlong] = ACTIONS(5013), + [anon_sym_BSLASHACRlong] = ACTIONS(5013), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), + [anon_sym_BSLASHacrfull] = ACTIONS(5013), + [anon_sym_BSLASHAcrfull] = ACTIONS(5013), + [anon_sym_BSLASHACRfull] = ACTIONS(5013), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), + [anon_sym_BSLASHacs] = ACTIONS(5013), + [anon_sym_BSLASHAcs] = ACTIONS(5013), + [anon_sym_BSLASHacsp] = ACTIONS(5013), + [anon_sym_BSLASHAcsp] = ACTIONS(5013), + [anon_sym_BSLASHacl] = ACTIONS(5013), + [anon_sym_BSLASHAcl] = ACTIONS(5013), + [anon_sym_BSLASHaclp] = ACTIONS(5013), + [anon_sym_BSLASHAclp] = ACTIONS(5013), + [anon_sym_BSLASHacf] = ACTIONS(5013), + [anon_sym_BSLASHAcf] = ACTIONS(5013), + [anon_sym_BSLASHacfp] = ACTIONS(5013), + [anon_sym_BSLASHAcfp] = ACTIONS(5013), + [anon_sym_BSLASHac] = ACTIONS(5013), + [anon_sym_BSLASHAc] = ACTIONS(5013), + [anon_sym_BSLASHacp] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), + [anon_sym_BSLASHcolor] = ACTIONS(5013), + [anon_sym_BSLASHcolorbox] = ACTIONS(5013), + [anon_sym_BSLASHtextcolor] = ACTIONS(5013), + [anon_sym_BSLASHpagecolor] = ACTIONS(5013), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), + [anon_sym_BSLASHtext] = ACTIONS(5013), + [anon_sym_BSLASHintertext] = ACTIONS(5013), + [anon_sym_shortintertext] = ACTIONS(5013), + }, + [1459] = { + [sym_command_name] = ACTIONS(5003), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5085), - [anon_sym_LPAREN] = ACTIONS(5083), - [anon_sym_LBRACK] = ACTIONS(5083), - [anon_sym_RBRACK] = ACTIONS(5083), - [anon_sym_COMMA] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(5083), - [anon_sym_LBRACE] = ACTIONS(5083), - [anon_sym_RBRACE] = ACTIONS(5083), - [sym_word] = ACTIONS(5085), - [sym_placeholder] = ACTIONS(5083), - [anon_sym_PLUS] = ACTIONS(5085), - [anon_sym_DASH] = ACTIONS(5085), - [anon_sym_STAR] = ACTIONS(5085), - [anon_sym_SLASH] = ACTIONS(5085), - [anon_sym_CARET] = ACTIONS(5085), - [anon_sym__] = ACTIONS(5085), - [anon_sym_LT] = ACTIONS(5085), - [anon_sym_GT] = ACTIONS(5085), - [anon_sym_BANG] = ACTIONS(5085), - [anon_sym_PIPE] = ACTIONS(5085), - [anon_sym_COLON] = ACTIONS(5085), - [anon_sym_SQUOTE] = ACTIONS(5085), - [anon_sym_BSLASHusepackage] = ACTIONS(5085), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5085), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5085), - [anon_sym_BSLASHinclude] = ACTIONS(5085), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5085), - [anon_sym_BSLASHinput] = ACTIONS(5085), - [anon_sym_BSLASHsubfile] = ACTIONS(5085), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5085), - [anon_sym_BSLASHbibliography] = ACTIONS(5085), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5085), - [anon_sym_BSLASHincludesvg] = ACTIONS(5085), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5085), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5085), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5085), - [anon_sym_BSLASHimport] = ACTIONS(5085), - [anon_sym_BSLASHsubimport] = ACTIONS(5085), - [anon_sym_BSLASHinputfrom] = ACTIONS(5085), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5085), - [anon_sym_BSLASHincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5085), - [anon_sym_BSLASHcaption] = ACTIONS(5085), - [anon_sym_BSLASHcite] = ACTIONS(5085), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCite] = ACTIONS(5085), - [anon_sym_BSLASHnocite] = ACTIONS(5085), - [anon_sym_BSLASHcitet] = ACTIONS(5085), - [anon_sym_BSLASHcitep] = ACTIONS(5085), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteauthor] = ACTIONS(5085), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5085), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitetitle] = ACTIONS(5085), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteyear] = ACTIONS(5085), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5083), - [anon_sym_BSLASHcitedate] = ACTIONS(5085), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5083), - [anon_sym_BSLASHciteurl] = ACTIONS(5085), - [anon_sym_BSLASHfullcite] = ACTIONS(5085), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5085), - [anon_sym_BSLASHcitealt] = ACTIONS(5085), - [anon_sym_BSLASHcitealp] = ACTIONS(5085), - [anon_sym_BSLASHcitetext] = ACTIONS(5085), - [anon_sym_BSLASHparencite] = ACTIONS(5085), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHParencite] = ACTIONS(5085), - [anon_sym_BSLASHfootcite] = ACTIONS(5085), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5085), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5085), - [anon_sym_BSLASHtextcite] = ACTIONS(5085), - [anon_sym_BSLASHTextcite] = ACTIONS(5085), - [anon_sym_BSLASHsmartcite] = ACTIONS(5085), - [anon_sym_BSLASHSmartcite] = ACTIONS(5085), - [anon_sym_BSLASHsupercite] = ACTIONS(5085), - [anon_sym_BSLASHautocite] = ACTIONS(5085), - [anon_sym_BSLASHAutocite] = ACTIONS(5085), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5083), - [anon_sym_BSLASHvolcite] = ACTIONS(5085), - [anon_sym_BSLASHVolcite] = ACTIONS(5085), - [anon_sym_BSLASHpvolcite] = ACTIONS(5085), - [anon_sym_BSLASHPvolcite] = ACTIONS(5085), - [anon_sym_BSLASHfvolcite] = ACTIONS(5085), - [anon_sym_BSLASHftvolcite] = ACTIONS(5085), - [anon_sym_BSLASHsvolcite] = ACTIONS(5085), - [anon_sym_BSLASHSvolcite] = ACTIONS(5085), - [anon_sym_BSLASHtvolcite] = ACTIONS(5085), - [anon_sym_BSLASHTvolcite] = ACTIONS(5085), - [anon_sym_BSLASHavolcite] = ACTIONS(5085), - [anon_sym_BSLASHAvolcite] = ACTIONS(5085), - [anon_sym_BSLASHnotecite] = ACTIONS(5085), - [anon_sym_BSLASHNotecite] = ACTIONS(5085), - [anon_sym_BSLASHpnotecite] = ACTIONS(5085), - [anon_sym_BSLASHPnotecite] = ACTIONS(5085), - [anon_sym_BSLASHfnotecite] = ACTIONS(5085), - [anon_sym_BSLASHlabel] = ACTIONS(5085), - [anon_sym_BSLASHref] = ACTIONS(5085), - [anon_sym_BSLASHeqref] = ACTIONS(5085), - [anon_sym_BSLASHvref] = ACTIONS(5085), - [anon_sym_BSLASHVref] = ACTIONS(5085), - [anon_sym_BSLASHautoref] = ACTIONS(5085), - [anon_sym_BSLASHpageref] = ACTIONS(5085), - [anon_sym_BSLASHcref] = ACTIONS(5085), - [anon_sym_BSLASHCref] = ACTIONS(5085), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnameCref] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5085), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5085), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5085), - [anon_sym_BSLASHlabelcref] = ACTIONS(5085), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange] = ACTIONS(5085), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHCrefrange] = ACTIONS(5085), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5083), - [anon_sym_BSLASHnewlabel] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand] = ACTIONS(5085), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5085), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5085), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5083), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5085), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5083), - [anon_sym_BSLASHdef] = ACTIONS(5085), - [anon_sym_BSLASHlet] = ACTIONS(5085), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5085), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5085), - [anon_sym_BSLASHgls] = ACTIONS(5085), - [anon_sym_BSLASHGls] = ACTIONS(5085), - [anon_sym_BSLASHGLS] = ACTIONS(5085), - [anon_sym_BSLASHglspl] = ACTIONS(5085), - [anon_sym_BSLASHGlspl] = ACTIONS(5085), - [anon_sym_BSLASHGLSpl] = ACTIONS(5085), - [anon_sym_BSLASHglsdisp] = ACTIONS(5085), - [anon_sym_BSLASHglslink] = ACTIONS(5085), - [anon_sym_BSLASHglstext] = ACTIONS(5085), - [anon_sym_BSLASHGlstext] = ACTIONS(5085), - [anon_sym_BSLASHGLStext] = ACTIONS(5085), - [anon_sym_BSLASHglsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5085), - [anon_sym_BSLASHglsplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSplural] = ACTIONS(5085), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5085), - [anon_sym_BSLASHglsname] = ACTIONS(5085), - [anon_sym_BSLASHGlsname] = ACTIONS(5085), - [anon_sym_BSLASHGLSname] = ACTIONS(5085), - [anon_sym_BSLASHglssymbol] = ACTIONS(5085), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5085), - [anon_sym_BSLASHglsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5085), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5085), - [anon_sym_BSLASHglsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5085), - [anon_sym_BSLASHglsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5085), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5085), - [anon_sym_BSLASHglsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5085), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5085), - [anon_sym_BSLASHglsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5085), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5085), - [anon_sym_BSLASHnewacronym] = ACTIONS(5085), - [anon_sym_BSLASHacrshort] = ACTIONS(5085), - [anon_sym_BSLASHAcrshort] = ACTIONS(5085), - [anon_sym_BSLASHACRshort] = ACTIONS(5085), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5085), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5085), - [anon_sym_BSLASHacrlong] = ACTIONS(5085), - [anon_sym_BSLASHAcrlong] = ACTIONS(5085), - [anon_sym_BSLASHACRlong] = ACTIONS(5085), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5085), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5085), - [anon_sym_BSLASHacrfull] = ACTIONS(5085), - [anon_sym_BSLASHAcrfull] = ACTIONS(5085), - [anon_sym_BSLASHACRfull] = ACTIONS(5085), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5085), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5085), - [anon_sym_BSLASHacs] = ACTIONS(5085), - [anon_sym_BSLASHAcs] = ACTIONS(5085), - [anon_sym_BSLASHacsp] = ACTIONS(5085), - [anon_sym_BSLASHAcsp] = ACTIONS(5085), - [anon_sym_BSLASHacl] = ACTIONS(5085), - [anon_sym_BSLASHAcl] = ACTIONS(5085), - [anon_sym_BSLASHaclp] = ACTIONS(5085), - [anon_sym_BSLASHAclp] = ACTIONS(5085), - [anon_sym_BSLASHacf] = ACTIONS(5085), - [anon_sym_BSLASHAcf] = ACTIONS(5085), - [anon_sym_BSLASHacfp] = ACTIONS(5085), - [anon_sym_BSLASHAcfp] = ACTIONS(5085), - [anon_sym_BSLASHac] = ACTIONS(5085), - [anon_sym_BSLASHAc] = ACTIONS(5085), - [anon_sym_BSLASHacp] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5085), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5085), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5085), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5085), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5085), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5085), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5085), - [anon_sym_BSLASHcolor] = ACTIONS(5085), - [anon_sym_BSLASHcolorbox] = ACTIONS(5085), - [anon_sym_BSLASHtextcolor] = ACTIONS(5085), - [anon_sym_BSLASHpagecolor] = ACTIONS(5085), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5085), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5085), + [anon_sym_BSLASHiffalse] = ACTIONS(5003), + [anon_sym_LPAREN] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5001), + [anon_sym_LBRACK] = ACTIONS(5001), + [anon_sym_RBRACK] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_LBRACE] = ACTIONS(5001), + [anon_sym_RBRACE] = ACTIONS(5001), + [sym_word] = ACTIONS(5003), + [sym_placeholder] = ACTIONS(5001), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym__] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_BANG] = ACTIONS(5003), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_SQUOTE] = ACTIONS(5003), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5001), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5001), + [anon_sym_DOLLAR] = ACTIONS(5003), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5001), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5001), + [anon_sym_BSLASHusepackage] = ACTIONS(5003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), + [anon_sym_BSLASHinclude] = ACTIONS(5003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), + [anon_sym_BSLASHinput] = ACTIONS(5003), + [anon_sym_BSLASHsubfile] = ACTIONS(5003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), + [anon_sym_BSLASHbibliography] = ACTIONS(5003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), + [anon_sym_BSLASHincludesvg] = ACTIONS(5003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), + [anon_sym_BSLASHimport] = ACTIONS(5003), + [anon_sym_BSLASHsubimport] = ACTIONS(5003), + [anon_sym_BSLASHinputfrom] = ACTIONS(5003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), + [anon_sym_BSLASHincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHcaption] = ACTIONS(5003), + [anon_sym_BSLASHcite] = ACTIONS(5003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCite] = ACTIONS(5003), + [anon_sym_BSLASHnocite] = ACTIONS(5003), + [anon_sym_BSLASHcitet] = ACTIONS(5003), + [anon_sym_BSLASHcitep] = ACTIONS(5003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteauthor] = ACTIONS(5003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitetitle] = ACTIONS(5003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteyear] = ACTIONS(5003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitedate] = ACTIONS(5003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteurl] = ACTIONS(5003), + [anon_sym_BSLASHfullcite] = ACTIONS(5003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), + [anon_sym_BSLASHcitealt] = ACTIONS(5003), + [anon_sym_BSLASHcitealp] = ACTIONS(5003), + [anon_sym_BSLASHcitetext] = ACTIONS(5003), + [anon_sym_BSLASHparencite] = ACTIONS(5003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHParencite] = ACTIONS(5003), + [anon_sym_BSLASHfootcite] = ACTIONS(5003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), + [anon_sym_BSLASHtextcite] = ACTIONS(5003), + [anon_sym_BSLASHTextcite] = ACTIONS(5003), + [anon_sym_BSLASHsmartcite] = ACTIONS(5003), + [anon_sym_BSLASHSmartcite] = ACTIONS(5003), + [anon_sym_BSLASHsupercite] = ACTIONS(5003), + [anon_sym_BSLASHautocite] = ACTIONS(5003), + [anon_sym_BSLASHAutocite] = ACTIONS(5003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHvolcite] = ACTIONS(5003), + [anon_sym_BSLASHVolcite] = ACTIONS(5003), + [anon_sym_BSLASHpvolcite] = ACTIONS(5003), + [anon_sym_BSLASHPvolcite] = ACTIONS(5003), + [anon_sym_BSLASHfvolcite] = ACTIONS(5003), + [anon_sym_BSLASHftvolcite] = ACTIONS(5003), + [anon_sym_BSLASHsvolcite] = ACTIONS(5003), + [anon_sym_BSLASHSvolcite] = ACTIONS(5003), + [anon_sym_BSLASHtvolcite] = ACTIONS(5003), + [anon_sym_BSLASHTvolcite] = ACTIONS(5003), + [anon_sym_BSLASHavolcite] = ACTIONS(5003), + [anon_sym_BSLASHAvolcite] = ACTIONS(5003), + [anon_sym_BSLASHnotecite] = ACTIONS(5003), + [anon_sym_BSLASHNotecite] = ACTIONS(5003), + [anon_sym_BSLASHpnotecite] = ACTIONS(5003), + [anon_sym_BSLASHPnotecite] = ACTIONS(5003), + [anon_sym_BSLASHfnotecite] = ACTIONS(5003), + [anon_sym_BSLASHlabel] = ACTIONS(5003), + [anon_sym_BSLASHref] = ACTIONS(5003), + [anon_sym_BSLASHeqref] = ACTIONS(5003), + [anon_sym_BSLASHvref] = ACTIONS(5003), + [anon_sym_BSLASHVref] = ACTIONS(5003), + [anon_sym_BSLASHautoref] = ACTIONS(5003), + [anon_sym_BSLASHpageref] = ACTIONS(5003), + [anon_sym_BSLASHcref] = ACTIONS(5003), + [anon_sym_BSLASHCref] = ACTIONS(5003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnameCref] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHlabelcref] = ACTIONS(5003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCrefrange] = ACTIONS(5003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnewlabel] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), + [anon_sym_BSLASHdef] = ACTIONS(5003), + [anon_sym_BSLASHlet] = ACTIONS(5003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), + [anon_sym_BSLASHgls] = ACTIONS(5003), + [anon_sym_BSLASHGls] = ACTIONS(5003), + [anon_sym_BSLASHGLS] = ACTIONS(5003), + [anon_sym_BSLASHglspl] = ACTIONS(5003), + [anon_sym_BSLASHGlspl] = ACTIONS(5003), + [anon_sym_BSLASHGLSpl] = ACTIONS(5003), + [anon_sym_BSLASHglsdisp] = ACTIONS(5003), + [anon_sym_BSLASHglslink] = ACTIONS(5003), + [anon_sym_BSLASHglstext] = ACTIONS(5003), + [anon_sym_BSLASHGlstext] = ACTIONS(5003), + [anon_sym_BSLASHGLStext] = ACTIONS(5003), + [anon_sym_BSLASHglsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), + [anon_sym_BSLASHglsplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSplural] = ACTIONS(5003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHglsname] = ACTIONS(5003), + [anon_sym_BSLASHGlsname] = ACTIONS(5003), + [anon_sym_BSLASHGLSname] = ACTIONS(5003), + [anon_sym_BSLASHglssymbol] = ACTIONS(5003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), + [anon_sym_BSLASHglsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), + [anon_sym_BSLASHglsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), + [anon_sym_BSLASHglsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), + [anon_sym_BSLASHglsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), + [anon_sym_BSLASHglsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), + [anon_sym_BSLASHnewacronym] = ACTIONS(5003), + [anon_sym_BSLASHacrshort] = ACTIONS(5003), + [anon_sym_BSLASHAcrshort] = ACTIONS(5003), + [anon_sym_BSLASHACRshort] = ACTIONS(5003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), + [anon_sym_BSLASHacrlong] = ACTIONS(5003), + [anon_sym_BSLASHAcrlong] = ACTIONS(5003), + [anon_sym_BSLASHACRlong] = ACTIONS(5003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), + [anon_sym_BSLASHacrfull] = ACTIONS(5003), + [anon_sym_BSLASHAcrfull] = ACTIONS(5003), + [anon_sym_BSLASHACRfull] = ACTIONS(5003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), + [anon_sym_BSLASHacs] = ACTIONS(5003), + [anon_sym_BSLASHAcs] = ACTIONS(5003), + [anon_sym_BSLASHacsp] = ACTIONS(5003), + [anon_sym_BSLASHAcsp] = ACTIONS(5003), + [anon_sym_BSLASHacl] = ACTIONS(5003), + [anon_sym_BSLASHAcl] = ACTIONS(5003), + [anon_sym_BSLASHaclp] = ACTIONS(5003), + [anon_sym_BSLASHAclp] = ACTIONS(5003), + [anon_sym_BSLASHacf] = ACTIONS(5003), + [anon_sym_BSLASHAcf] = ACTIONS(5003), + [anon_sym_BSLASHacfp] = ACTIONS(5003), + [anon_sym_BSLASHAcfp] = ACTIONS(5003), + [anon_sym_BSLASHac] = ACTIONS(5003), + [anon_sym_BSLASHAc] = ACTIONS(5003), + [anon_sym_BSLASHacp] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), + [anon_sym_BSLASHcolor] = ACTIONS(5003), + [anon_sym_BSLASHcolorbox] = ACTIONS(5003), + [anon_sym_BSLASHtextcolor] = ACTIONS(5003), + [anon_sym_BSLASHpagecolor] = ACTIONS(5003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), + [anon_sym_BSLASHtext] = ACTIONS(5003), + [anon_sym_BSLASHintertext] = ACTIONS(5003), + [anon_sym_shortintertext] = ACTIONS(5003), }, - [1496] = { - [sym_command_name] = ACTIONS(5201), + [1460] = { + [sym_command_name] = ACTIONS(4995), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5201), - [anon_sym_LPAREN] = ACTIONS(5199), - [anon_sym_LBRACK] = ACTIONS(5199), - [anon_sym_RBRACK] = ACTIONS(5199), - [anon_sym_COMMA] = ACTIONS(5199), - [anon_sym_EQ] = ACTIONS(5199), - [anon_sym_LBRACE] = ACTIONS(5199), - [anon_sym_RBRACE] = ACTIONS(5199), - [sym_word] = ACTIONS(5201), - [sym_placeholder] = ACTIONS(5199), - [anon_sym_PLUS] = ACTIONS(5201), - [anon_sym_DASH] = ACTIONS(5201), - [anon_sym_STAR] = ACTIONS(5201), - [anon_sym_SLASH] = ACTIONS(5201), - [anon_sym_CARET] = ACTIONS(5201), - [anon_sym__] = ACTIONS(5201), - [anon_sym_LT] = ACTIONS(5201), - [anon_sym_GT] = ACTIONS(5201), - [anon_sym_BANG] = ACTIONS(5201), - [anon_sym_PIPE] = ACTIONS(5201), - [anon_sym_COLON] = ACTIONS(5201), - [anon_sym_SQUOTE] = ACTIONS(5201), - [anon_sym_BSLASHusepackage] = ACTIONS(5201), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), - [anon_sym_BSLASHinclude] = ACTIONS(5201), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), - [anon_sym_BSLASHinput] = ACTIONS(5201), - [anon_sym_BSLASHsubfile] = ACTIONS(5201), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), - [anon_sym_BSLASHbibliography] = ACTIONS(5201), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), - [anon_sym_BSLASHincludesvg] = ACTIONS(5201), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), - [anon_sym_BSLASHimport] = ACTIONS(5201), - [anon_sym_BSLASHsubimport] = ACTIONS(5201), - [anon_sym_BSLASHinputfrom] = ACTIONS(5201), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), - [anon_sym_BSLASHincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), - [anon_sym_BSLASHcaption] = ACTIONS(5201), - [anon_sym_BSLASHcite] = ACTIONS(5201), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCite] = ACTIONS(5201), - [anon_sym_BSLASHnocite] = ACTIONS(5201), - [anon_sym_BSLASHcitet] = ACTIONS(5201), - [anon_sym_BSLASHcitep] = ACTIONS(5201), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteauthor] = ACTIONS(5201), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitetitle] = ACTIONS(5201), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteyear] = ACTIONS(5201), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), - [anon_sym_BSLASHcitedate] = ACTIONS(5201), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), - [anon_sym_BSLASHciteurl] = ACTIONS(5201), - [anon_sym_BSLASHfullcite] = ACTIONS(5201), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), - [anon_sym_BSLASHcitealt] = ACTIONS(5201), - [anon_sym_BSLASHcitealp] = ACTIONS(5201), - [anon_sym_BSLASHcitetext] = ACTIONS(5201), - [anon_sym_BSLASHparencite] = ACTIONS(5201), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHParencite] = ACTIONS(5201), - [anon_sym_BSLASHfootcite] = ACTIONS(5201), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), - [anon_sym_BSLASHtextcite] = ACTIONS(5201), - [anon_sym_BSLASHTextcite] = ACTIONS(5201), - [anon_sym_BSLASHsmartcite] = ACTIONS(5201), - [anon_sym_BSLASHSmartcite] = ACTIONS(5201), - [anon_sym_BSLASHsupercite] = ACTIONS(5201), - [anon_sym_BSLASHautocite] = ACTIONS(5201), - [anon_sym_BSLASHAutocite] = ACTIONS(5201), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), - [anon_sym_BSLASHvolcite] = ACTIONS(5201), - [anon_sym_BSLASHVolcite] = ACTIONS(5201), - [anon_sym_BSLASHpvolcite] = ACTIONS(5201), - [anon_sym_BSLASHPvolcite] = ACTIONS(5201), - [anon_sym_BSLASHfvolcite] = ACTIONS(5201), - [anon_sym_BSLASHftvolcite] = ACTIONS(5201), - [anon_sym_BSLASHsvolcite] = ACTIONS(5201), - [anon_sym_BSLASHSvolcite] = ACTIONS(5201), - [anon_sym_BSLASHtvolcite] = ACTIONS(5201), - [anon_sym_BSLASHTvolcite] = ACTIONS(5201), - [anon_sym_BSLASHavolcite] = ACTIONS(5201), - [anon_sym_BSLASHAvolcite] = ACTIONS(5201), - [anon_sym_BSLASHnotecite] = ACTIONS(5201), - [anon_sym_BSLASHNotecite] = ACTIONS(5201), - [anon_sym_BSLASHpnotecite] = ACTIONS(5201), - [anon_sym_BSLASHPnotecite] = ACTIONS(5201), - [anon_sym_BSLASHfnotecite] = ACTIONS(5201), - [anon_sym_BSLASHlabel] = ACTIONS(5201), - [anon_sym_BSLASHref] = ACTIONS(5201), - [anon_sym_BSLASHeqref] = ACTIONS(5201), - [anon_sym_BSLASHvref] = ACTIONS(5201), - [anon_sym_BSLASHVref] = ACTIONS(5201), - [anon_sym_BSLASHautoref] = ACTIONS(5201), - [anon_sym_BSLASHpageref] = ACTIONS(5201), - [anon_sym_BSLASHcref] = ACTIONS(5201), - [anon_sym_BSLASHCref] = ACTIONS(5201), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnameCref] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), - [anon_sym_BSLASHlabelcref] = ACTIONS(5201), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange] = ACTIONS(5201), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHCrefrange] = ACTIONS(5201), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), - [anon_sym_BSLASHnewlabel] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand] = ACTIONS(5201), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), - [anon_sym_BSLASHdef] = ACTIONS(5201), - [anon_sym_BSLASHlet] = ACTIONS(5201), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), - [anon_sym_BSLASHgls] = ACTIONS(5201), - [anon_sym_BSLASHGls] = ACTIONS(5201), - [anon_sym_BSLASHGLS] = ACTIONS(5201), - [anon_sym_BSLASHglspl] = ACTIONS(5201), - [anon_sym_BSLASHGlspl] = ACTIONS(5201), - [anon_sym_BSLASHGLSpl] = ACTIONS(5201), - [anon_sym_BSLASHglsdisp] = ACTIONS(5201), - [anon_sym_BSLASHglslink] = ACTIONS(5201), - [anon_sym_BSLASHglstext] = ACTIONS(5201), - [anon_sym_BSLASHGlstext] = ACTIONS(5201), - [anon_sym_BSLASHGLStext] = ACTIONS(5201), - [anon_sym_BSLASHglsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), - [anon_sym_BSLASHglsplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSplural] = ACTIONS(5201), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), - [anon_sym_BSLASHglsname] = ACTIONS(5201), - [anon_sym_BSLASHGlsname] = ACTIONS(5201), - [anon_sym_BSLASHGLSname] = ACTIONS(5201), - [anon_sym_BSLASHglssymbol] = ACTIONS(5201), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), - [anon_sym_BSLASHglsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), - [anon_sym_BSLASHglsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), - [anon_sym_BSLASHglsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), - [anon_sym_BSLASHglsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), - [anon_sym_BSLASHglsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), - [anon_sym_BSLASHnewacronym] = ACTIONS(5201), - [anon_sym_BSLASHacrshort] = ACTIONS(5201), - [anon_sym_BSLASHAcrshort] = ACTIONS(5201), - [anon_sym_BSLASHACRshort] = ACTIONS(5201), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), - [anon_sym_BSLASHacrlong] = ACTIONS(5201), - [anon_sym_BSLASHAcrlong] = ACTIONS(5201), - [anon_sym_BSLASHACRlong] = ACTIONS(5201), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), - [anon_sym_BSLASHacrfull] = ACTIONS(5201), - [anon_sym_BSLASHAcrfull] = ACTIONS(5201), - [anon_sym_BSLASHACRfull] = ACTIONS(5201), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), - [anon_sym_BSLASHacs] = ACTIONS(5201), - [anon_sym_BSLASHAcs] = ACTIONS(5201), - [anon_sym_BSLASHacsp] = ACTIONS(5201), - [anon_sym_BSLASHAcsp] = ACTIONS(5201), - [anon_sym_BSLASHacl] = ACTIONS(5201), - [anon_sym_BSLASHAcl] = ACTIONS(5201), - [anon_sym_BSLASHaclp] = ACTIONS(5201), - [anon_sym_BSLASHAclp] = ACTIONS(5201), - [anon_sym_BSLASHacf] = ACTIONS(5201), - [anon_sym_BSLASHAcf] = ACTIONS(5201), - [anon_sym_BSLASHacfp] = ACTIONS(5201), - [anon_sym_BSLASHAcfp] = ACTIONS(5201), - [anon_sym_BSLASHac] = ACTIONS(5201), - [anon_sym_BSLASHAc] = ACTIONS(5201), - [anon_sym_BSLASHacp] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), - [anon_sym_BSLASHcolor] = ACTIONS(5201), - [anon_sym_BSLASHcolorbox] = ACTIONS(5201), - [anon_sym_BSLASHtextcolor] = ACTIONS(5201), - [anon_sym_BSLASHpagecolor] = ACTIONS(5201), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), - }, - [1497] = { - [sym_command_name] = ACTIONS(4697), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4697), - [anon_sym_BSLASHfi] = ACTIONS(5455), - [anon_sym_RBRACK] = ACTIONS(4695), - [anon_sym_COMMA] = ACTIONS(4695), - [anon_sym_EQ] = ACTIONS(4695), - [anon_sym_RBRACE] = ACTIONS(4695), - [sym_word] = ACTIONS(4697), - [sym_placeholder] = ACTIONS(4695), - [anon_sym_PLUS] = ACTIONS(4697), - [anon_sym_DASH] = ACTIONS(4697), - [anon_sym_STAR] = ACTIONS(4697), - [anon_sym_SLASH] = ACTIONS(4697), - [anon_sym_CARET] = ACTIONS(4697), - [anon_sym__] = ACTIONS(4697), - [anon_sym_LT] = ACTIONS(4697), - [anon_sym_GT] = ACTIONS(4697), - [anon_sym_BANG] = ACTIONS(4697), - [anon_sym_PIPE] = ACTIONS(4697), - [anon_sym_COLON] = ACTIONS(4697), - [anon_sym_SQUOTE] = ACTIONS(4697), - [anon_sym_BSLASHusepackage] = ACTIONS(4697), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4697), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4697), - [anon_sym_BSLASHinclude] = ACTIONS(4697), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4697), - [anon_sym_BSLASHinput] = ACTIONS(4697), - [anon_sym_BSLASHsubfile] = ACTIONS(4697), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4697), - [anon_sym_BSLASHbibliography] = ACTIONS(4697), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4697), - [anon_sym_BSLASHincludesvg] = ACTIONS(4697), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4697), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4697), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4697), - [anon_sym_BSLASHimport] = ACTIONS(4697), - [anon_sym_BSLASHsubimport] = ACTIONS(4697), - [anon_sym_BSLASHinputfrom] = ACTIONS(4697), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4697), - [anon_sym_BSLASHincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4697), - [anon_sym_BSLASHcaption] = ACTIONS(4697), - [anon_sym_BSLASHcite] = ACTIONS(4697), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCite] = ACTIONS(4697), - [anon_sym_BSLASHnocite] = ACTIONS(4697), - [anon_sym_BSLASHcitet] = ACTIONS(4697), - [anon_sym_BSLASHcitep] = ACTIONS(4697), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteauthor] = ACTIONS(4697), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4697), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitetitle] = ACTIONS(4697), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteyear] = ACTIONS(4697), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4695), - [anon_sym_BSLASHcitedate] = ACTIONS(4697), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4695), - [anon_sym_BSLASHciteurl] = ACTIONS(4697), - [anon_sym_BSLASHfullcite] = ACTIONS(4697), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4697), - [anon_sym_BSLASHcitealt] = ACTIONS(4697), - [anon_sym_BSLASHcitealp] = ACTIONS(4697), - [anon_sym_BSLASHcitetext] = ACTIONS(4697), - [anon_sym_BSLASHparencite] = ACTIONS(4697), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHParencite] = ACTIONS(4697), - [anon_sym_BSLASHfootcite] = ACTIONS(4697), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4697), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4697), - [anon_sym_BSLASHtextcite] = ACTIONS(4697), - [anon_sym_BSLASHTextcite] = ACTIONS(4697), - [anon_sym_BSLASHsmartcite] = ACTIONS(4697), - [anon_sym_BSLASHSmartcite] = ACTIONS(4697), - [anon_sym_BSLASHsupercite] = ACTIONS(4697), - [anon_sym_BSLASHautocite] = ACTIONS(4697), - [anon_sym_BSLASHAutocite] = ACTIONS(4697), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4695), - [anon_sym_BSLASHvolcite] = ACTIONS(4697), - [anon_sym_BSLASHVolcite] = ACTIONS(4697), - [anon_sym_BSLASHpvolcite] = ACTIONS(4697), - [anon_sym_BSLASHPvolcite] = ACTIONS(4697), - [anon_sym_BSLASHfvolcite] = ACTIONS(4697), - [anon_sym_BSLASHftvolcite] = ACTIONS(4697), - [anon_sym_BSLASHsvolcite] = ACTIONS(4697), - [anon_sym_BSLASHSvolcite] = ACTIONS(4697), - [anon_sym_BSLASHtvolcite] = ACTIONS(4697), - [anon_sym_BSLASHTvolcite] = ACTIONS(4697), - [anon_sym_BSLASHavolcite] = ACTIONS(4697), - [anon_sym_BSLASHAvolcite] = ACTIONS(4697), - [anon_sym_BSLASHnotecite] = ACTIONS(4697), - [anon_sym_BSLASHNotecite] = ACTIONS(4697), - [anon_sym_BSLASHpnotecite] = ACTIONS(4697), - [anon_sym_BSLASHPnotecite] = ACTIONS(4697), - [anon_sym_BSLASHfnotecite] = ACTIONS(4697), - [anon_sym_BSLASHlabel] = ACTIONS(4697), - [anon_sym_BSLASHref] = ACTIONS(4697), - [anon_sym_BSLASHeqref] = ACTIONS(4697), - [anon_sym_BSLASHvref] = ACTIONS(4697), - [anon_sym_BSLASHVref] = ACTIONS(4697), - [anon_sym_BSLASHautoref] = ACTIONS(4697), - [anon_sym_BSLASHpageref] = ACTIONS(4697), - [anon_sym_BSLASHcref] = ACTIONS(4697), - [anon_sym_BSLASHCref] = ACTIONS(4697), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnameCref] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4697), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4697), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4697), - [anon_sym_BSLASHlabelcref] = ACTIONS(4697), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange] = ACTIONS(4697), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHCrefrange] = ACTIONS(4697), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4695), - [anon_sym_BSLASHnewlabel] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand] = ACTIONS(4697), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4697), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4697), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4695), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4697), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4695), - [anon_sym_BSLASHdef] = ACTIONS(4697), - [anon_sym_BSLASHlet] = ACTIONS(4697), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4697), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4697), - [anon_sym_BSLASHgls] = ACTIONS(4697), - [anon_sym_BSLASHGls] = ACTIONS(4697), - [anon_sym_BSLASHGLS] = ACTIONS(4697), - [anon_sym_BSLASHglspl] = ACTIONS(4697), - [anon_sym_BSLASHGlspl] = ACTIONS(4697), - [anon_sym_BSLASHGLSpl] = ACTIONS(4697), - [anon_sym_BSLASHglsdisp] = ACTIONS(4697), - [anon_sym_BSLASHglslink] = ACTIONS(4697), - [anon_sym_BSLASHglstext] = ACTIONS(4697), - [anon_sym_BSLASHGlstext] = ACTIONS(4697), - [anon_sym_BSLASHGLStext] = ACTIONS(4697), - [anon_sym_BSLASHglsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4697), - [anon_sym_BSLASHglsplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSplural] = ACTIONS(4697), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4697), - [anon_sym_BSLASHglsname] = ACTIONS(4697), - [anon_sym_BSLASHGlsname] = ACTIONS(4697), - [anon_sym_BSLASHGLSname] = ACTIONS(4697), - [anon_sym_BSLASHglssymbol] = ACTIONS(4697), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4697), - [anon_sym_BSLASHglsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4697), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4697), - [anon_sym_BSLASHglsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4697), - [anon_sym_BSLASHglsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4697), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4697), - [anon_sym_BSLASHglsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4697), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4697), - [anon_sym_BSLASHglsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4697), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4697), - [anon_sym_BSLASHnewacronym] = ACTIONS(4697), - [anon_sym_BSLASHacrshort] = ACTIONS(4697), - [anon_sym_BSLASHAcrshort] = ACTIONS(4697), - [anon_sym_BSLASHACRshort] = ACTIONS(4697), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4697), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4697), - [anon_sym_BSLASHacrlong] = ACTIONS(4697), - [anon_sym_BSLASHAcrlong] = ACTIONS(4697), - [anon_sym_BSLASHACRlong] = ACTIONS(4697), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4697), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4697), - [anon_sym_BSLASHacrfull] = ACTIONS(4697), - [anon_sym_BSLASHAcrfull] = ACTIONS(4697), - [anon_sym_BSLASHACRfull] = ACTIONS(4697), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4697), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4697), - [anon_sym_BSLASHacs] = ACTIONS(4697), - [anon_sym_BSLASHAcs] = ACTIONS(4697), - [anon_sym_BSLASHacsp] = ACTIONS(4697), - [anon_sym_BSLASHAcsp] = ACTIONS(4697), - [anon_sym_BSLASHacl] = ACTIONS(4697), - [anon_sym_BSLASHAcl] = ACTIONS(4697), - [anon_sym_BSLASHaclp] = ACTIONS(4697), - [anon_sym_BSLASHAclp] = ACTIONS(4697), - [anon_sym_BSLASHacf] = ACTIONS(4697), - [anon_sym_BSLASHAcf] = ACTIONS(4697), - [anon_sym_BSLASHacfp] = ACTIONS(4697), - [anon_sym_BSLASHAcfp] = ACTIONS(4697), - [anon_sym_BSLASHac] = ACTIONS(4697), - [anon_sym_BSLASHAc] = ACTIONS(4697), - [anon_sym_BSLASHacp] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4697), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4697), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4697), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4697), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4697), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4697), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4697), - [anon_sym_BSLASHcolor] = ACTIONS(4697), - [anon_sym_BSLASHcolorbox] = ACTIONS(4697), - [anon_sym_BSLASHtextcolor] = ACTIONS(4697), - [anon_sym_BSLASHpagecolor] = ACTIONS(4697), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4697), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4697), - [sym__trivia_raw_fi] = ACTIONS(5457), - }, - [1498] = { - [sym_brack_group_text] = STATE(1544), - [sym_command_name] = ACTIONS(4797), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4797), - [anon_sym_LBRACK] = ACTIONS(5459), - [anon_sym_RBRACK] = ACTIONS(4795), - [anon_sym_COMMA] = ACTIONS(4795), - [anon_sym_EQ] = ACTIONS(4795), - [anon_sym_RBRACE] = ACTIONS(4795), - [sym_word] = ACTIONS(4797), - [sym_placeholder] = ACTIONS(4795), - [anon_sym_PLUS] = ACTIONS(4797), - [anon_sym_DASH] = ACTIONS(4797), - [anon_sym_STAR] = ACTIONS(4797), - [anon_sym_SLASH] = ACTIONS(4797), - [anon_sym_CARET] = ACTIONS(4797), - [anon_sym__] = ACTIONS(4797), - [anon_sym_LT] = ACTIONS(4797), - [anon_sym_GT] = ACTIONS(4797), - [anon_sym_BANG] = ACTIONS(4797), - [anon_sym_PIPE] = ACTIONS(4797), - [anon_sym_COLON] = ACTIONS(4797), - [anon_sym_SQUOTE] = ACTIONS(4797), - [anon_sym_BSLASHusepackage] = ACTIONS(4797), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4797), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4797), - [anon_sym_BSLASHinclude] = ACTIONS(4797), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4797), - [anon_sym_BSLASHinput] = ACTIONS(4797), - [anon_sym_BSLASHsubfile] = ACTIONS(4797), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4797), - [anon_sym_BSLASHbibliography] = ACTIONS(4797), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4797), - [anon_sym_BSLASHincludesvg] = ACTIONS(4797), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4797), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4797), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4797), - [anon_sym_BSLASHimport] = ACTIONS(4797), - [anon_sym_BSLASHsubimport] = ACTIONS(4797), - [anon_sym_BSLASHinputfrom] = ACTIONS(4797), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4797), - [anon_sym_BSLASHincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4797), - [anon_sym_BSLASHcaption] = ACTIONS(4797), - [anon_sym_BSLASHcite] = ACTIONS(4797), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCite] = ACTIONS(4797), - [anon_sym_BSLASHnocite] = ACTIONS(4797), - [anon_sym_BSLASHcitet] = ACTIONS(4797), - [anon_sym_BSLASHcitep] = ACTIONS(4797), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteauthor] = ACTIONS(4797), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4797), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitetitle] = ACTIONS(4797), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteyear] = ACTIONS(4797), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4795), - [anon_sym_BSLASHcitedate] = ACTIONS(4797), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4795), - [anon_sym_BSLASHciteurl] = ACTIONS(4797), - [anon_sym_BSLASHfullcite] = ACTIONS(4797), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4797), - [anon_sym_BSLASHcitealt] = ACTIONS(4797), - [anon_sym_BSLASHcitealp] = ACTIONS(4797), - [anon_sym_BSLASHcitetext] = ACTIONS(4797), - [anon_sym_BSLASHparencite] = ACTIONS(4797), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHParencite] = ACTIONS(4797), - [anon_sym_BSLASHfootcite] = ACTIONS(4797), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4797), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4797), - [anon_sym_BSLASHtextcite] = ACTIONS(4797), - [anon_sym_BSLASHTextcite] = ACTIONS(4797), - [anon_sym_BSLASHsmartcite] = ACTIONS(4797), - [anon_sym_BSLASHSmartcite] = ACTIONS(4797), - [anon_sym_BSLASHsupercite] = ACTIONS(4797), - [anon_sym_BSLASHautocite] = ACTIONS(4797), - [anon_sym_BSLASHAutocite] = ACTIONS(4797), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4795), - [anon_sym_BSLASHvolcite] = ACTIONS(4797), - [anon_sym_BSLASHVolcite] = ACTIONS(4797), - [anon_sym_BSLASHpvolcite] = ACTIONS(4797), - [anon_sym_BSLASHPvolcite] = ACTIONS(4797), - [anon_sym_BSLASHfvolcite] = ACTIONS(4797), - [anon_sym_BSLASHftvolcite] = ACTIONS(4797), - [anon_sym_BSLASHsvolcite] = ACTIONS(4797), - [anon_sym_BSLASHSvolcite] = ACTIONS(4797), - [anon_sym_BSLASHtvolcite] = ACTIONS(4797), - [anon_sym_BSLASHTvolcite] = ACTIONS(4797), - [anon_sym_BSLASHavolcite] = ACTIONS(4797), - [anon_sym_BSLASHAvolcite] = ACTIONS(4797), - [anon_sym_BSLASHnotecite] = ACTIONS(4797), - [anon_sym_BSLASHNotecite] = ACTIONS(4797), - [anon_sym_BSLASHpnotecite] = ACTIONS(4797), - [anon_sym_BSLASHPnotecite] = ACTIONS(4797), - [anon_sym_BSLASHfnotecite] = ACTIONS(4797), - [anon_sym_BSLASHlabel] = ACTIONS(4797), - [anon_sym_BSLASHref] = ACTIONS(4797), - [anon_sym_BSLASHeqref] = ACTIONS(4797), - [anon_sym_BSLASHvref] = ACTIONS(4797), - [anon_sym_BSLASHVref] = ACTIONS(4797), - [anon_sym_BSLASHautoref] = ACTIONS(4797), - [anon_sym_BSLASHpageref] = ACTIONS(4797), - [anon_sym_BSLASHcref] = ACTIONS(4797), - [anon_sym_BSLASHCref] = ACTIONS(4797), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnameCref] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4797), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4797), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4797), - [anon_sym_BSLASHlabelcref] = ACTIONS(4797), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange] = ACTIONS(4797), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHCrefrange] = ACTIONS(4797), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4795), - [anon_sym_BSLASHnewlabel] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand] = ACTIONS(4797), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4797), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4797), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4795), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4797), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4795), - [anon_sym_BSLASHdef] = ACTIONS(4797), - [anon_sym_BSLASHlet] = ACTIONS(4797), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4797), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4797), - [anon_sym_BSLASHgls] = ACTIONS(4797), - [anon_sym_BSLASHGls] = ACTIONS(4797), - [anon_sym_BSLASHGLS] = ACTIONS(4797), - [anon_sym_BSLASHglspl] = ACTIONS(4797), - [anon_sym_BSLASHGlspl] = ACTIONS(4797), - [anon_sym_BSLASHGLSpl] = ACTIONS(4797), - [anon_sym_BSLASHglsdisp] = ACTIONS(4797), - [anon_sym_BSLASHglslink] = ACTIONS(4797), - [anon_sym_BSLASHglstext] = ACTIONS(4797), - [anon_sym_BSLASHGlstext] = ACTIONS(4797), - [anon_sym_BSLASHGLStext] = ACTIONS(4797), - [anon_sym_BSLASHglsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4797), - [anon_sym_BSLASHglsplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSplural] = ACTIONS(4797), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4797), - [anon_sym_BSLASHglsname] = ACTIONS(4797), - [anon_sym_BSLASHGlsname] = ACTIONS(4797), - [anon_sym_BSLASHGLSname] = ACTIONS(4797), - [anon_sym_BSLASHglssymbol] = ACTIONS(4797), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4797), - [anon_sym_BSLASHglsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4797), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4797), - [anon_sym_BSLASHglsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4797), - [anon_sym_BSLASHglsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4797), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4797), - [anon_sym_BSLASHglsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4797), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4797), - [anon_sym_BSLASHglsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4797), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4797), - [anon_sym_BSLASHnewacronym] = ACTIONS(4797), - [anon_sym_BSLASHacrshort] = ACTIONS(4797), - [anon_sym_BSLASHAcrshort] = ACTIONS(4797), - [anon_sym_BSLASHACRshort] = ACTIONS(4797), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4797), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4797), - [anon_sym_BSLASHacrlong] = ACTIONS(4797), - [anon_sym_BSLASHAcrlong] = ACTIONS(4797), - [anon_sym_BSLASHACRlong] = ACTIONS(4797), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4797), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4797), - [anon_sym_BSLASHacrfull] = ACTIONS(4797), - [anon_sym_BSLASHAcrfull] = ACTIONS(4797), - [anon_sym_BSLASHACRfull] = ACTIONS(4797), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4797), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4797), - [anon_sym_BSLASHacs] = ACTIONS(4797), - [anon_sym_BSLASHAcs] = ACTIONS(4797), - [anon_sym_BSLASHacsp] = ACTIONS(4797), - [anon_sym_BSLASHAcsp] = ACTIONS(4797), - [anon_sym_BSLASHacl] = ACTIONS(4797), - [anon_sym_BSLASHAcl] = ACTIONS(4797), - [anon_sym_BSLASHaclp] = ACTIONS(4797), - [anon_sym_BSLASHAclp] = ACTIONS(4797), - [anon_sym_BSLASHacf] = ACTIONS(4797), - [anon_sym_BSLASHAcf] = ACTIONS(4797), - [anon_sym_BSLASHacfp] = ACTIONS(4797), - [anon_sym_BSLASHAcfp] = ACTIONS(4797), - [anon_sym_BSLASHac] = ACTIONS(4797), - [anon_sym_BSLASHAc] = ACTIONS(4797), - [anon_sym_BSLASHacp] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4797), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4797), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4797), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4797), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4797), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4797), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4797), - [anon_sym_BSLASHcolor] = ACTIONS(4797), - [anon_sym_BSLASHcolorbox] = ACTIONS(4797), - [anon_sym_BSLASHtextcolor] = ACTIONS(4797), - [anon_sym_BSLASHpagecolor] = ACTIONS(4797), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4797), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4797), + [anon_sym_BSLASHiffalse] = ACTIONS(4995), + [anon_sym_LPAREN] = ACTIONS(4993), + [anon_sym_RPAREN] = ACTIONS(4993), + [anon_sym_LBRACK] = ACTIONS(4993), + [anon_sym_RBRACK] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_LBRACE] = ACTIONS(4993), + [anon_sym_RBRACE] = ACTIONS(4993), + [sym_word] = ACTIONS(4995), + [sym_placeholder] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym__] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_BANG] = ACTIONS(4995), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_SQUOTE] = ACTIONS(4995), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4993), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4993), + [anon_sym_DOLLAR] = ACTIONS(4995), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4993), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4993), + [anon_sym_BSLASHusepackage] = ACTIONS(4995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), + [anon_sym_BSLASHinclude] = ACTIONS(4995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), + [anon_sym_BSLASHinput] = ACTIONS(4995), + [anon_sym_BSLASHsubfile] = ACTIONS(4995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), + [anon_sym_BSLASHbibliography] = ACTIONS(4995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), + [anon_sym_BSLASHincludesvg] = ACTIONS(4995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), + [anon_sym_BSLASHimport] = ACTIONS(4995), + [anon_sym_BSLASHsubimport] = ACTIONS(4995), + [anon_sym_BSLASHinputfrom] = ACTIONS(4995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), + [anon_sym_BSLASHincludefrom] = ACTIONS(4995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), + [anon_sym_BSLASHcaption] = ACTIONS(4995), + [anon_sym_BSLASHcite] = ACTIONS(4995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCite] = ACTIONS(4995), + [anon_sym_BSLASHnocite] = ACTIONS(4995), + [anon_sym_BSLASHcitet] = ACTIONS(4995), + [anon_sym_BSLASHcitep] = ACTIONS(4995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteauthor] = ACTIONS(4995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitetitle] = ACTIONS(4995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteyear] = ACTIONS(4995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitedate] = ACTIONS(4995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteurl] = ACTIONS(4995), + [anon_sym_BSLASHfullcite] = ACTIONS(4995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), + [anon_sym_BSLASHcitealt] = ACTIONS(4995), + [anon_sym_BSLASHcitealp] = ACTIONS(4995), + [anon_sym_BSLASHcitetext] = ACTIONS(4995), + [anon_sym_BSLASHparencite] = ACTIONS(4995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHParencite] = ACTIONS(4995), + [anon_sym_BSLASHfootcite] = ACTIONS(4995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), + [anon_sym_BSLASHtextcite] = ACTIONS(4995), + [anon_sym_BSLASHTextcite] = ACTIONS(4995), + [anon_sym_BSLASHsmartcite] = ACTIONS(4995), + [anon_sym_BSLASHSmartcite] = ACTIONS(4995), + [anon_sym_BSLASHsupercite] = ACTIONS(4995), + [anon_sym_BSLASHautocite] = ACTIONS(4995), + [anon_sym_BSLASHAutocite] = ACTIONS(4995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHvolcite] = ACTIONS(4995), + [anon_sym_BSLASHVolcite] = ACTIONS(4995), + [anon_sym_BSLASHpvolcite] = ACTIONS(4995), + [anon_sym_BSLASHPvolcite] = ACTIONS(4995), + [anon_sym_BSLASHfvolcite] = ACTIONS(4995), + [anon_sym_BSLASHftvolcite] = ACTIONS(4995), + [anon_sym_BSLASHsvolcite] = ACTIONS(4995), + [anon_sym_BSLASHSvolcite] = ACTIONS(4995), + [anon_sym_BSLASHtvolcite] = ACTIONS(4995), + [anon_sym_BSLASHTvolcite] = ACTIONS(4995), + [anon_sym_BSLASHavolcite] = ACTIONS(4995), + [anon_sym_BSLASHAvolcite] = ACTIONS(4995), + [anon_sym_BSLASHnotecite] = ACTIONS(4995), + [anon_sym_BSLASHNotecite] = ACTIONS(4995), + [anon_sym_BSLASHpnotecite] = ACTIONS(4995), + [anon_sym_BSLASHPnotecite] = ACTIONS(4995), + [anon_sym_BSLASHfnotecite] = ACTIONS(4995), + [anon_sym_BSLASHlabel] = ACTIONS(4995), + [anon_sym_BSLASHref] = ACTIONS(4995), + [anon_sym_BSLASHeqref] = ACTIONS(4995), + [anon_sym_BSLASHvref] = ACTIONS(4995), + [anon_sym_BSLASHVref] = ACTIONS(4995), + [anon_sym_BSLASHautoref] = ACTIONS(4995), + [anon_sym_BSLASHpageref] = ACTIONS(4995), + [anon_sym_BSLASHcref] = ACTIONS(4995), + [anon_sym_BSLASHCref] = ACTIONS(4995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), + [anon_sym_BSLASHnamecref] = ACTIONS(4995), + [anon_sym_BSLASHnameCref] = ACTIONS(4995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), + [anon_sym_BSLASHlabelcref] = ACTIONS(4995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), + [anon_sym_BSLASHcrefrange] = ACTIONS(4995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCrefrange] = ACTIONS(4995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), + [anon_sym_BSLASHnewlabel] = ACTIONS(4995), + [anon_sym_BSLASHnewcommand] = ACTIONS(4995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), + [anon_sym_BSLASHdef] = ACTIONS(4995), + [anon_sym_BSLASHlet] = ACTIONS(4995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), + [anon_sym_BSLASHgls] = ACTIONS(4995), + [anon_sym_BSLASHGls] = ACTIONS(4995), + [anon_sym_BSLASHGLS] = ACTIONS(4995), + [anon_sym_BSLASHglspl] = ACTIONS(4995), + [anon_sym_BSLASHGlspl] = ACTIONS(4995), + [anon_sym_BSLASHGLSpl] = ACTIONS(4995), + [anon_sym_BSLASHglsdisp] = ACTIONS(4995), + [anon_sym_BSLASHglslink] = ACTIONS(4995), + [anon_sym_BSLASHglstext] = ACTIONS(4995), + [anon_sym_BSLASHGlstext] = ACTIONS(4995), + [anon_sym_BSLASHGLStext] = ACTIONS(4995), + [anon_sym_BSLASHglsfirst] = ACTIONS(4995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), + [anon_sym_BSLASHglsplural] = ACTIONS(4995), + [anon_sym_BSLASHGlsplural] = ACTIONS(4995), + [anon_sym_BSLASHGLSplural] = ACTIONS(4995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHglsname] = ACTIONS(4995), + [anon_sym_BSLASHGlsname] = ACTIONS(4995), + [anon_sym_BSLASHGLSname] = ACTIONS(4995), + [anon_sym_BSLASHglssymbol] = ACTIONS(4995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), + [anon_sym_BSLASHglsdesc] = ACTIONS(4995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), + [anon_sym_BSLASHglsuseri] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), + [anon_sym_BSLASHglsuserii] = ACTIONS(4995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), + [anon_sym_BSLASHglsuserv] = ACTIONS(4995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), + [anon_sym_BSLASHglsuservi] = ACTIONS(4995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), + [anon_sym_BSLASHnewacronym] = ACTIONS(4995), + [anon_sym_BSLASHacrshort] = ACTIONS(4995), + [anon_sym_BSLASHAcrshort] = ACTIONS(4995), + [anon_sym_BSLASHACRshort] = ACTIONS(4995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), + [anon_sym_BSLASHacrlong] = ACTIONS(4995), + [anon_sym_BSLASHAcrlong] = ACTIONS(4995), + [anon_sym_BSLASHACRlong] = ACTIONS(4995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), + [anon_sym_BSLASHacrfull] = ACTIONS(4995), + [anon_sym_BSLASHAcrfull] = ACTIONS(4995), + [anon_sym_BSLASHACRfull] = ACTIONS(4995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), + [anon_sym_BSLASHacs] = ACTIONS(4995), + [anon_sym_BSLASHAcs] = ACTIONS(4995), + [anon_sym_BSLASHacsp] = ACTIONS(4995), + [anon_sym_BSLASHAcsp] = ACTIONS(4995), + [anon_sym_BSLASHacl] = ACTIONS(4995), + [anon_sym_BSLASHAcl] = ACTIONS(4995), + [anon_sym_BSLASHaclp] = ACTIONS(4995), + [anon_sym_BSLASHAclp] = ACTIONS(4995), + [anon_sym_BSLASHacf] = ACTIONS(4995), + [anon_sym_BSLASHAcf] = ACTIONS(4995), + [anon_sym_BSLASHacfp] = ACTIONS(4995), + [anon_sym_BSLASHAcfp] = ACTIONS(4995), + [anon_sym_BSLASHac] = ACTIONS(4995), + [anon_sym_BSLASHAc] = ACTIONS(4995), + [anon_sym_BSLASHacp] = ACTIONS(4995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), + [anon_sym_BSLASHcolor] = ACTIONS(4995), + [anon_sym_BSLASHcolorbox] = ACTIONS(4995), + [anon_sym_BSLASHtextcolor] = ACTIONS(4995), + [anon_sym_BSLASHpagecolor] = ACTIONS(4995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), + [anon_sym_BSLASHtext] = ACTIONS(4995), + [anon_sym_BSLASHintertext] = ACTIONS(4995), + [anon_sym_shortintertext] = ACTIONS(4995), }, - [1499] = { - [sym_brack_group_text] = STATE(1565), - [sym_command_name] = ACTIONS(4929), + [1461] = { + [sym_command_name] = ACTIONS(4991), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4929), - [anon_sym_LBRACK] = ACTIONS(5459), - [anon_sym_RBRACK] = ACTIONS(4927), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_EQ] = ACTIONS(4927), - [anon_sym_RBRACE] = ACTIONS(4927), - [sym_word] = ACTIONS(4929), - [sym_placeholder] = ACTIONS(4927), - [anon_sym_PLUS] = ACTIONS(4929), - [anon_sym_DASH] = ACTIONS(4929), - [anon_sym_STAR] = ACTIONS(4929), - [anon_sym_SLASH] = ACTIONS(4929), - [anon_sym_CARET] = ACTIONS(4929), - [anon_sym__] = ACTIONS(4929), - [anon_sym_LT] = ACTIONS(4929), - [anon_sym_GT] = ACTIONS(4929), - [anon_sym_BANG] = ACTIONS(4929), - [anon_sym_PIPE] = ACTIONS(4929), - [anon_sym_COLON] = ACTIONS(4929), - [anon_sym_SQUOTE] = ACTIONS(4929), - [anon_sym_BSLASHusepackage] = ACTIONS(4929), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), - [anon_sym_BSLASHinclude] = ACTIONS(4929), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), - [anon_sym_BSLASHinput] = ACTIONS(4929), - [anon_sym_BSLASHsubfile] = ACTIONS(4929), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), - [anon_sym_BSLASHbibliography] = ACTIONS(4929), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), - [anon_sym_BSLASHincludesvg] = ACTIONS(4929), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), - [anon_sym_BSLASHimport] = ACTIONS(4929), - [anon_sym_BSLASHsubimport] = ACTIONS(4929), - [anon_sym_BSLASHinputfrom] = ACTIONS(4929), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), - [anon_sym_BSLASHincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), - [anon_sym_BSLASHcaption] = ACTIONS(4929), - [anon_sym_BSLASHcite] = ACTIONS(4929), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCite] = ACTIONS(4929), - [anon_sym_BSLASHnocite] = ACTIONS(4929), - [anon_sym_BSLASHcitet] = ACTIONS(4929), - [anon_sym_BSLASHcitep] = ACTIONS(4929), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteauthor] = ACTIONS(4929), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitetitle] = ACTIONS(4929), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteyear] = ACTIONS(4929), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), - [anon_sym_BSLASHcitedate] = ACTIONS(4929), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), - [anon_sym_BSLASHciteurl] = ACTIONS(4929), - [anon_sym_BSLASHfullcite] = ACTIONS(4929), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), - [anon_sym_BSLASHcitealt] = ACTIONS(4929), - [anon_sym_BSLASHcitealp] = ACTIONS(4929), - [anon_sym_BSLASHcitetext] = ACTIONS(4929), - [anon_sym_BSLASHparencite] = ACTIONS(4929), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHParencite] = ACTIONS(4929), - [anon_sym_BSLASHfootcite] = ACTIONS(4929), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), - [anon_sym_BSLASHtextcite] = ACTIONS(4929), - [anon_sym_BSLASHTextcite] = ACTIONS(4929), - [anon_sym_BSLASHsmartcite] = ACTIONS(4929), - [anon_sym_BSLASHSmartcite] = ACTIONS(4929), - [anon_sym_BSLASHsupercite] = ACTIONS(4929), - [anon_sym_BSLASHautocite] = ACTIONS(4929), - [anon_sym_BSLASHAutocite] = ACTIONS(4929), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), - [anon_sym_BSLASHvolcite] = ACTIONS(4929), - [anon_sym_BSLASHVolcite] = ACTIONS(4929), - [anon_sym_BSLASHpvolcite] = ACTIONS(4929), - [anon_sym_BSLASHPvolcite] = ACTIONS(4929), - [anon_sym_BSLASHfvolcite] = ACTIONS(4929), - [anon_sym_BSLASHftvolcite] = ACTIONS(4929), - [anon_sym_BSLASHsvolcite] = ACTIONS(4929), - [anon_sym_BSLASHSvolcite] = ACTIONS(4929), - [anon_sym_BSLASHtvolcite] = ACTIONS(4929), - [anon_sym_BSLASHTvolcite] = ACTIONS(4929), - [anon_sym_BSLASHavolcite] = ACTIONS(4929), - [anon_sym_BSLASHAvolcite] = ACTIONS(4929), - [anon_sym_BSLASHnotecite] = ACTIONS(4929), - [anon_sym_BSLASHNotecite] = ACTIONS(4929), - [anon_sym_BSLASHpnotecite] = ACTIONS(4929), - [anon_sym_BSLASHPnotecite] = ACTIONS(4929), - [anon_sym_BSLASHfnotecite] = ACTIONS(4929), - [anon_sym_BSLASHlabel] = ACTIONS(4929), - [anon_sym_BSLASHref] = ACTIONS(4929), - [anon_sym_BSLASHeqref] = ACTIONS(4929), - [anon_sym_BSLASHvref] = ACTIONS(4929), - [anon_sym_BSLASHVref] = ACTIONS(4929), - [anon_sym_BSLASHautoref] = ACTIONS(4929), - [anon_sym_BSLASHpageref] = ACTIONS(4929), - [anon_sym_BSLASHcref] = ACTIONS(4929), - [anon_sym_BSLASHCref] = ACTIONS(4929), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnameCref] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), - [anon_sym_BSLASHlabelcref] = ACTIONS(4929), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange] = ACTIONS(4929), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHCrefrange] = ACTIONS(4929), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), - [anon_sym_BSLASHnewlabel] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand] = ACTIONS(4929), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), - [anon_sym_BSLASHdef] = ACTIONS(4929), - [anon_sym_BSLASHlet] = ACTIONS(4929), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), - [anon_sym_BSLASHgls] = ACTIONS(4929), - [anon_sym_BSLASHGls] = ACTIONS(4929), - [anon_sym_BSLASHGLS] = ACTIONS(4929), - [anon_sym_BSLASHglspl] = ACTIONS(4929), - [anon_sym_BSLASHGlspl] = ACTIONS(4929), - [anon_sym_BSLASHGLSpl] = ACTIONS(4929), - [anon_sym_BSLASHglsdisp] = ACTIONS(4929), - [anon_sym_BSLASHglslink] = ACTIONS(4929), - [anon_sym_BSLASHglstext] = ACTIONS(4929), - [anon_sym_BSLASHGlstext] = ACTIONS(4929), - [anon_sym_BSLASHGLStext] = ACTIONS(4929), - [anon_sym_BSLASHglsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), - [anon_sym_BSLASHglsplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSplural] = ACTIONS(4929), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), - [anon_sym_BSLASHglsname] = ACTIONS(4929), - [anon_sym_BSLASHGlsname] = ACTIONS(4929), - [anon_sym_BSLASHGLSname] = ACTIONS(4929), - [anon_sym_BSLASHglssymbol] = ACTIONS(4929), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), - [anon_sym_BSLASHglsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), - [anon_sym_BSLASHglsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), - [anon_sym_BSLASHglsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), - [anon_sym_BSLASHglsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), - [anon_sym_BSLASHglsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), - [anon_sym_BSLASHnewacronym] = ACTIONS(4929), - [anon_sym_BSLASHacrshort] = ACTIONS(4929), - [anon_sym_BSLASHAcrshort] = ACTIONS(4929), - [anon_sym_BSLASHACRshort] = ACTIONS(4929), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), - [anon_sym_BSLASHacrlong] = ACTIONS(4929), - [anon_sym_BSLASHAcrlong] = ACTIONS(4929), - [anon_sym_BSLASHACRlong] = ACTIONS(4929), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), - [anon_sym_BSLASHacrfull] = ACTIONS(4929), - [anon_sym_BSLASHAcrfull] = ACTIONS(4929), - [anon_sym_BSLASHACRfull] = ACTIONS(4929), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), - [anon_sym_BSLASHacs] = ACTIONS(4929), - [anon_sym_BSLASHAcs] = ACTIONS(4929), - [anon_sym_BSLASHacsp] = ACTIONS(4929), - [anon_sym_BSLASHAcsp] = ACTIONS(4929), - [anon_sym_BSLASHacl] = ACTIONS(4929), - [anon_sym_BSLASHAcl] = ACTIONS(4929), - [anon_sym_BSLASHaclp] = ACTIONS(4929), - [anon_sym_BSLASHAclp] = ACTIONS(4929), - [anon_sym_BSLASHacf] = ACTIONS(4929), - [anon_sym_BSLASHAcf] = ACTIONS(4929), - [anon_sym_BSLASHacfp] = ACTIONS(4929), - [anon_sym_BSLASHAcfp] = ACTIONS(4929), - [anon_sym_BSLASHac] = ACTIONS(4929), - [anon_sym_BSLASHAc] = ACTIONS(4929), - [anon_sym_BSLASHacp] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), - [anon_sym_BSLASHcolor] = ACTIONS(4929), - [anon_sym_BSLASHcolorbox] = ACTIONS(4929), - [anon_sym_BSLASHtextcolor] = ACTIONS(4929), - [anon_sym_BSLASHpagecolor] = ACTIONS(4929), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), - }, - [1500] = { - [sym_command_name] = ACTIONS(5015), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5015), - [anon_sym_LBRACK] = ACTIONS(5013), - [anon_sym_RBRACK] = ACTIONS(5013), - [anon_sym_COMMA] = ACTIONS(5013), - [anon_sym_EQ] = ACTIONS(5013), - [anon_sym_LBRACE] = ACTIONS(5013), - [anon_sym_RBRACE] = ACTIONS(5013), - [sym_word] = ACTIONS(5015), - [sym_placeholder] = ACTIONS(5013), - [anon_sym_PLUS] = ACTIONS(5015), - [anon_sym_DASH] = ACTIONS(5015), - [anon_sym_STAR] = ACTIONS(5015), - [anon_sym_SLASH] = ACTIONS(5015), - [anon_sym_CARET] = ACTIONS(5015), - [anon_sym__] = ACTIONS(5015), - [anon_sym_LT] = ACTIONS(5015), - [anon_sym_GT] = ACTIONS(5015), - [anon_sym_BANG] = ACTIONS(5015), - [anon_sym_PIPE] = ACTIONS(5015), - [anon_sym_COLON] = ACTIONS(5015), - [anon_sym_SQUOTE] = ACTIONS(5015), - [anon_sym_BSLASHusepackage] = ACTIONS(5015), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5015), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5015), - [anon_sym_BSLASHinclude] = ACTIONS(5015), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5015), - [anon_sym_BSLASHinput] = ACTIONS(5015), - [anon_sym_BSLASHsubfile] = ACTIONS(5015), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5015), - [anon_sym_BSLASHbibliography] = ACTIONS(5015), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5015), - [anon_sym_BSLASHincludesvg] = ACTIONS(5015), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5015), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5015), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5015), - [anon_sym_BSLASHimport] = ACTIONS(5015), - [anon_sym_BSLASHsubimport] = ACTIONS(5015), - [anon_sym_BSLASHinputfrom] = ACTIONS(5015), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5015), - [anon_sym_BSLASHincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5015), - [anon_sym_BSLASHcaption] = ACTIONS(5015), - [anon_sym_BSLASHcite] = ACTIONS(5015), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCite] = ACTIONS(5015), - [anon_sym_BSLASHnocite] = ACTIONS(5015), - [anon_sym_BSLASHcitet] = ACTIONS(5015), - [anon_sym_BSLASHcitep] = ACTIONS(5015), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteauthor] = ACTIONS(5015), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5015), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitetitle] = ACTIONS(5015), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteyear] = ACTIONS(5015), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5013), - [anon_sym_BSLASHcitedate] = ACTIONS(5015), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5013), - [anon_sym_BSLASHciteurl] = ACTIONS(5015), - [anon_sym_BSLASHfullcite] = ACTIONS(5015), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5015), - [anon_sym_BSLASHcitealt] = ACTIONS(5015), - [anon_sym_BSLASHcitealp] = ACTIONS(5015), - [anon_sym_BSLASHcitetext] = ACTIONS(5015), - [anon_sym_BSLASHparencite] = ACTIONS(5015), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHParencite] = ACTIONS(5015), - [anon_sym_BSLASHfootcite] = ACTIONS(5015), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5015), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5015), - [anon_sym_BSLASHtextcite] = ACTIONS(5015), - [anon_sym_BSLASHTextcite] = ACTIONS(5015), - [anon_sym_BSLASHsmartcite] = ACTIONS(5015), - [anon_sym_BSLASHSmartcite] = ACTIONS(5015), - [anon_sym_BSLASHsupercite] = ACTIONS(5015), - [anon_sym_BSLASHautocite] = ACTIONS(5015), - [anon_sym_BSLASHAutocite] = ACTIONS(5015), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5013), - [anon_sym_BSLASHvolcite] = ACTIONS(5015), - [anon_sym_BSLASHVolcite] = ACTIONS(5015), - [anon_sym_BSLASHpvolcite] = ACTIONS(5015), - [anon_sym_BSLASHPvolcite] = ACTIONS(5015), - [anon_sym_BSLASHfvolcite] = ACTIONS(5015), - [anon_sym_BSLASHftvolcite] = ACTIONS(5015), - [anon_sym_BSLASHsvolcite] = ACTIONS(5015), - [anon_sym_BSLASHSvolcite] = ACTIONS(5015), - [anon_sym_BSLASHtvolcite] = ACTIONS(5015), - [anon_sym_BSLASHTvolcite] = ACTIONS(5015), - [anon_sym_BSLASHavolcite] = ACTIONS(5015), - [anon_sym_BSLASHAvolcite] = ACTIONS(5015), - [anon_sym_BSLASHnotecite] = ACTIONS(5015), - [anon_sym_BSLASHNotecite] = ACTIONS(5015), - [anon_sym_BSLASHpnotecite] = ACTIONS(5015), - [anon_sym_BSLASHPnotecite] = ACTIONS(5015), - [anon_sym_BSLASHfnotecite] = ACTIONS(5015), - [anon_sym_BSLASHlabel] = ACTIONS(5015), - [anon_sym_BSLASHref] = ACTIONS(5015), - [anon_sym_BSLASHeqref] = ACTIONS(5015), - [anon_sym_BSLASHvref] = ACTIONS(5015), - [anon_sym_BSLASHVref] = ACTIONS(5015), - [anon_sym_BSLASHautoref] = ACTIONS(5015), - [anon_sym_BSLASHpageref] = ACTIONS(5015), - [anon_sym_BSLASHcref] = ACTIONS(5015), - [anon_sym_BSLASHCref] = ACTIONS(5015), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnameCref] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5015), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5015), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5015), - [anon_sym_BSLASHlabelcref] = ACTIONS(5015), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange] = ACTIONS(5015), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHCrefrange] = ACTIONS(5015), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5013), - [anon_sym_BSLASHnewlabel] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand] = ACTIONS(5015), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5015), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5015), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5013), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5015), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5013), - [anon_sym_BSLASHdef] = ACTIONS(5015), - [anon_sym_BSLASHlet] = ACTIONS(5015), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5015), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5015), - [anon_sym_BSLASHgls] = ACTIONS(5015), - [anon_sym_BSLASHGls] = ACTIONS(5015), - [anon_sym_BSLASHGLS] = ACTIONS(5015), - [anon_sym_BSLASHglspl] = ACTIONS(5015), - [anon_sym_BSLASHGlspl] = ACTIONS(5015), - [anon_sym_BSLASHGLSpl] = ACTIONS(5015), - [anon_sym_BSLASHglsdisp] = ACTIONS(5015), - [anon_sym_BSLASHglslink] = ACTIONS(5015), - [anon_sym_BSLASHglstext] = ACTIONS(5015), - [anon_sym_BSLASHGlstext] = ACTIONS(5015), - [anon_sym_BSLASHGLStext] = ACTIONS(5015), - [anon_sym_BSLASHglsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5015), - [anon_sym_BSLASHglsplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSplural] = ACTIONS(5015), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5015), - [anon_sym_BSLASHglsname] = ACTIONS(5015), - [anon_sym_BSLASHGlsname] = ACTIONS(5015), - [anon_sym_BSLASHGLSname] = ACTIONS(5015), - [anon_sym_BSLASHglssymbol] = ACTIONS(5015), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5015), - [anon_sym_BSLASHglsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5015), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5015), - [anon_sym_BSLASHglsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5015), - [anon_sym_BSLASHglsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5015), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5015), - [anon_sym_BSLASHglsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5015), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5015), - [anon_sym_BSLASHglsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5015), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5015), - [anon_sym_BSLASHnewacronym] = ACTIONS(5015), - [anon_sym_BSLASHacrshort] = ACTIONS(5015), - [anon_sym_BSLASHAcrshort] = ACTIONS(5015), - [anon_sym_BSLASHACRshort] = ACTIONS(5015), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5015), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5015), - [anon_sym_BSLASHacrlong] = ACTIONS(5015), - [anon_sym_BSLASHAcrlong] = ACTIONS(5015), - [anon_sym_BSLASHACRlong] = ACTIONS(5015), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5015), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5015), - [anon_sym_BSLASHacrfull] = ACTIONS(5015), - [anon_sym_BSLASHAcrfull] = ACTIONS(5015), - [anon_sym_BSLASHACRfull] = ACTIONS(5015), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5015), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5015), - [anon_sym_BSLASHacs] = ACTIONS(5015), - [anon_sym_BSLASHAcs] = ACTIONS(5015), - [anon_sym_BSLASHacsp] = ACTIONS(5015), - [anon_sym_BSLASHAcsp] = ACTIONS(5015), - [anon_sym_BSLASHacl] = ACTIONS(5015), - [anon_sym_BSLASHAcl] = ACTIONS(5015), - [anon_sym_BSLASHaclp] = ACTIONS(5015), - [anon_sym_BSLASHAclp] = ACTIONS(5015), - [anon_sym_BSLASHacf] = ACTIONS(5015), - [anon_sym_BSLASHAcf] = ACTIONS(5015), - [anon_sym_BSLASHacfp] = ACTIONS(5015), - [anon_sym_BSLASHAcfp] = ACTIONS(5015), - [anon_sym_BSLASHac] = ACTIONS(5015), - [anon_sym_BSLASHAc] = ACTIONS(5015), - [anon_sym_BSLASHacp] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5015), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5015), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5015), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5015), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5015), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5015), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5015), - [anon_sym_BSLASHcolor] = ACTIONS(5015), - [anon_sym_BSLASHcolorbox] = ACTIONS(5015), - [anon_sym_BSLASHtextcolor] = ACTIONS(5015), - [anon_sym_BSLASHpagecolor] = ACTIONS(5015), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5015), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5015), - }, - [1501] = { - [sym_command_name] = ACTIONS(4923), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4923), - [anon_sym_BSLASHfi] = ACTIONS(5461), - [anon_sym_RBRACK] = ACTIONS(4921), - [anon_sym_COMMA] = ACTIONS(4921), - [anon_sym_EQ] = ACTIONS(4921), - [anon_sym_RBRACE] = ACTIONS(4921), - [sym_word] = ACTIONS(4923), - [sym_placeholder] = ACTIONS(4921), - [anon_sym_PLUS] = ACTIONS(4923), - [anon_sym_DASH] = ACTIONS(4923), - [anon_sym_STAR] = ACTIONS(4923), - [anon_sym_SLASH] = ACTIONS(4923), - [anon_sym_CARET] = ACTIONS(4923), - [anon_sym__] = ACTIONS(4923), - [anon_sym_LT] = ACTIONS(4923), - [anon_sym_GT] = ACTIONS(4923), - [anon_sym_BANG] = ACTIONS(4923), - [anon_sym_PIPE] = ACTIONS(4923), - [anon_sym_COLON] = ACTIONS(4923), - [anon_sym_SQUOTE] = ACTIONS(4923), - [anon_sym_BSLASHusepackage] = ACTIONS(4923), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4923), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4923), - [anon_sym_BSLASHinclude] = ACTIONS(4923), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4923), - [anon_sym_BSLASHinput] = ACTIONS(4923), - [anon_sym_BSLASHsubfile] = ACTIONS(4923), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4923), - [anon_sym_BSLASHbibliography] = ACTIONS(4923), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4923), - [anon_sym_BSLASHincludesvg] = ACTIONS(4923), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4923), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4923), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4923), - [anon_sym_BSLASHimport] = ACTIONS(4923), - [anon_sym_BSLASHsubimport] = ACTIONS(4923), - [anon_sym_BSLASHinputfrom] = ACTIONS(4923), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4923), - [anon_sym_BSLASHincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4923), - [anon_sym_BSLASHcaption] = ACTIONS(4923), - [anon_sym_BSLASHcite] = ACTIONS(4923), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCite] = ACTIONS(4923), - [anon_sym_BSLASHnocite] = ACTIONS(4923), - [anon_sym_BSLASHcitet] = ACTIONS(4923), - [anon_sym_BSLASHcitep] = ACTIONS(4923), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteauthor] = ACTIONS(4923), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4923), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitetitle] = ACTIONS(4923), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteyear] = ACTIONS(4923), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4921), - [anon_sym_BSLASHcitedate] = ACTIONS(4923), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4921), - [anon_sym_BSLASHciteurl] = ACTIONS(4923), - [anon_sym_BSLASHfullcite] = ACTIONS(4923), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4923), - [anon_sym_BSLASHcitealt] = ACTIONS(4923), - [anon_sym_BSLASHcitealp] = ACTIONS(4923), - [anon_sym_BSLASHcitetext] = ACTIONS(4923), - [anon_sym_BSLASHparencite] = ACTIONS(4923), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHParencite] = ACTIONS(4923), - [anon_sym_BSLASHfootcite] = ACTIONS(4923), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4923), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4923), - [anon_sym_BSLASHtextcite] = ACTIONS(4923), - [anon_sym_BSLASHTextcite] = ACTIONS(4923), - [anon_sym_BSLASHsmartcite] = ACTIONS(4923), - [anon_sym_BSLASHSmartcite] = ACTIONS(4923), - [anon_sym_BSLASHsupercite] = ACTIONS(4923), - [anon_sym_BSLASHautocite] = ACTIONS(4923), - [anon_sym_BSLASHAutocite] = ACTIONS(4923), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4921), - [anon_sym_BSLASHvolcite] = ACTIONS(4923), - [anon_sym_BSLASHVolcite] = ACTIONS(4923), - [anon_sym_BSLASHpvolcite] = ACTIONS(4923), - [anon_sym_BSLASHPvolcite] = ACTIONS(4923), - [anon_sym_BSLASHfvolcite] = ACTIONS(4923), - [anon_sym_BSLASHftvolcite] = ACTIONS(4923), - [anon_sym_BSLASHsvolcite] = ACTIONS(4923), - [anon_sym_BSLASHSvolcite] = ACTIONS(4923), - [anon_sym_BSLASHtvolcite] = ACTIONS(4923), - [anon_sym_BSLASHTvolcite] = ACTIONS(4923), - [anon_sym_BSLASHavolcite] = ACTIONS(4923), - [anon_sym_BSLASHAvolcite] = ACTIONS(4923), - [anon_sym_BSLASHnotecite] = ACTIONS(4923), - [anon_sym_BSLASHNotecite] = ACTIONS(4923), - [anon_sym_BSLASHpnotecite] = ACTIONS(4923), - [anon_sym_BSLASHPnotecite] = ACTIONS(4923), - [anon_sym_BSLASHfnotecite] = ACTIONS(4923), - [anon_sym_BSLASHlabel] = ACTIONS(4923), - [anon_sym_BSLASHref] = ACTIONS(4923), - [anon_sym_BSLASHeqref] = ACTIONS(4923), - [anon_sym_BSLASHvref] = ACTIONS(4923), - [anon_sym_BSLASHVref] = ACTIONS(4923), - [anon_sym_BSLASHautoref] = ACTIONS(4923), - [anon_sym_BSLASHpageref] = ACTIONS(4923), - [anon_sym_BSLASHcref] = ACTIONS(4923), - [anon_sym_BSLASHCref] = ACTIONS(4923), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnameCref] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4923), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4923), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4923), - [anon_sym_BSLASHlabelcref] = ACTIONS(4923), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange] = ACTIONS(4923), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHCrefrange] = ACTIONS(4923), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4921), - [anon_sym_BSLASHnewlabel] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand] = ACTIONS(4923), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4923), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4923), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4921), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4923), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4921), - [anon_sym_BSLASHdef] = ACTIONS(4923), - [anon_sym_BSLASHlet] = ACTIONS(4923), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4923), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4923), - [anon_sym_BSLASHgls] = ACTIONS(4923), - [anon_sym_BSLASHGls] = ACTIONS(4923), - [anon_sym_BSLASHGLS] = ACTIONS(4923), - [anon_sym_BSLASHglspl] = ACTIONS(4923), - [anon_sym_BSLASHGlspl] = ACTIONS(4923), - [anon_sym_BSLASHGLSpl] = ACTIONS(4923), - [anon_sym_BSLASHglsdisp] = ACTIONS(4923), - [anon_sym_BSLASHglslink] = ACTIONS(4923), - [anon_sym_BSLASHglstext] = ACTIONS(4923), - [anon_sym_BSLASHGlstext] = ACTIONS(4923), - [anon_sym_BSLASHGLStext] = ACTIONS(4923), - [anon_sym_BSLASHglsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4923), - [anon_sym_BSLASHglsplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSplural] = ACTIONS(4923), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4923), - [anon_sym_BSLASHglsname] = ACTIONS(4923), - [anon_sym_BSLASHGlsname] = ACTIONS(4923), - [anon_sym_BSLASHGLSname] = ACTIONS(4923), - [anon_sym_BSLASHglssymbol] = ACTIONS(4923), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4923), - [anon_sym_BSLASHglsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4923), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4923), - [anon_sym_BSLASHglsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4923), - [anon_sym_BSLASHglsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4923), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4923), - [anon_sym_BSLASHglsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4923), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4923), - [anon_sym_BSLASHglsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4923), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4923), - [anon_sym_BSLASHnewacronym] = ACTIONS(4923), - [anon_sym_BSLASHacrshort] = ACTIONS(4923), - [anon_sym_BSLASHAcrshort] = ACTIONS(4923), - [anon_sym_BSLASHACRshort] = ACTIONS(4923), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4923), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4923), - [anon_sym_BSLASHacrlong] = ACTIONS(4923), - [anon_sym_BSLASHAcrlong] = ACTIONS(4923), - [anon_sym_BSLASHACRlong] = ACTIONS(4923), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4923), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4923), - [anon_sym_BSLASHacrfull] = ACTIONS(4923), - [anon_sym_BSLASHAcrfull] = ACTIONS(4923), - [anon_sym_BSLASHACRfull] = ACTIONS(4923), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4923), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4923), - [anon_sym_BSLASHacs] = ACTIONS(4923), - [anon_sym_BSLASHAcs] = ACTIONS(4923), - [anon_sym_BSLASHacsp] = ACTIONS(4923), - [anon_sym_BSLASHAcsp] = ACTIONS(4923), - [anon_sym_BSLASHacl] = ACTIONS(4923), - [anon_sym_BSLASHAcl] = ACTIONS(4923), - [anon_sym_BSLASHaclp] = ACTIONS(4923), - [anon_sym_BSLASHAclp] = ACTIONS(4923), - [anon_sym_BSLASHacf] = ACTIONS(4923), - [anon_sym_BSLASHAcf] = ACTIONS(4923), - [anon_sym_BSLASHacfp] = ACTIONS(4923), - [anon_sym_BSLASHAcfp] = ACTIONS(4923), - [anon_sym_BSLASHac] = ACTIONS(4923), - [anon_sym_BSLASHAc] = ACTIONS(4923), - [anon_sym_BSLASHacp] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4923), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4923), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4923), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4923), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4923), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4923), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4923), - [anon_sym_BSLASHcolor] = ACTIONS(4923), - [anon_sym_BSLASHcolorbox] = ACTIONS(4923), - [anon_sym_BSLASHtextcolor] = ACTIONS(4923), - [anon_sym_BSLASHpagecolor] = ACTIONS(4923), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4923), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4923), + [anon_sym_BSLASHiffalse] = ACTIONS(4991), + [anon_sym_LPAREN] = ACTIONS(4989), + [anon_sym_RPAREN] = ACTIONS(4989), + [anon_sym_LBRACK] = ACTIONS(4989), + [anon_sym_RBRACK] = ACTIONS(4989), + [anon_sym_COMMA] = ACTIONS(4989), + [anon_sym_LBRACE] = ACTIONS(4989), + [anon_sym_RBRACE] = ACTIONS(4989), + [sym_word] = ACTIONS(4991), + [sym_placeholder] = ACTIONS(4989), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym__] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_BANG] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_SQUOTE] = ACTIONS(4991), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4989), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4989), + [anon_sym_DOLLAR] = ACTIONS(4991), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4989), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4989), + [anon_sym_BSLASHusepackage] = ACTIONS(4991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), + [anon_sym_BSLASHinclude] = ACTIONS(4991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), + [anon_sym_BSLASHinput] = ACTIONS(4991), + [anon_sym_BSLASHsubfile] = ACTIONS(4991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), + [anon_sym_BSLASHbibliography] = ACTIONS(4991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), + [anon_sym_BSLASHincludesvg] = ACTIONS(4991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), + [anon_sym_BSLASHimport] = ACTIONS(4991), + [anon_sym_BSLASHsubimport] = ACTIONS(4991), + [anon_sym_BSLASHinputfrom] = ACTIONS(4991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), + [anon_sym_BSLASHincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHcaption] = ACTIONS(4991), + [anon_sym_BSLASHcite] = ACTIONS(4991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCite] = ACTIONS(4991), + [anon_sym_BSLASHnocite] = ACTIONS(4991), + [anon_sym_BSLASHcitet] = ACTIONS(4991), + [anon_sym_BSLASHcitep] = ACTIONS(4991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteauthor] = ACTIONS(4991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitetitle] = ACTIONS(4991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteyear] = ACTIONS(4991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitedate] = ACTIONS(4991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteurl] = ACTIONS(4991), + [anon_sym_BSLASHfullcite] = ACTIONS(4991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), + [anon_sym_BSLASHcitealt] = ACTIONS(4991), + [anon_sym_BSLASHcitealp] = ACTIONS(4991), + [anon_sym_BSLASHcitetext] = ACTIONS(4991), + [anon_sym_BSLASHparencite] = ACTIONS(4991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHParencite] = ACTIONS(4991), + [anon_sym_BSLASHfootcite] = ACTIONS(4991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), + [anon_sym_BSLASHtextcite] = ACTIONS(4991), + [anon_sym_BSLASHTextcite] = ACTIONS(4991), + [anon_sym_BSLASHsmartcite] = ACTIONS(4991), + [anon_sym_BSLASHSmartcite] = ACTIONS(4991), + [anon_sym_BSLASHsupercite] = ACTIONS(4991), + [anon_sym_BSLASHautocite] = ACTIONS(4991), + [anon_sym_BSLASHAutocite] = ACTIONS(4991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHvolcite] = ACTIONS(4991), + [anon_sym_BSLASHVolcite] = ACTIONS(4991), + [anon_sym_BSLASHpvolcite] = ACTIONS(4991), + [anon_sym_BSLASHPvolcite] = ACTIONS(4991), + [anon_sym_BSLASHfvolcite] = ACTIONS(4991), + [anon_sym_BSLASHftvolcite] = ACTIONS(4991), + [anon_sym_BSLASHsvolcite] = ACTIONS(4991), + [anon_sym_BSLASHSvolcite] = ACTIONS(4991), + [anon_sym_BSLASHtvolcite] = ACTIONS(4991), + [anon_sym_BSLASHTvolcite] = ACTIONS(4991), + [anon_sym_BSLASHavolcite] = ACTIONS(4991), + [anon_sym_BSLASHAvolcite] = ACTIONS(4991), + [anon_sym_BSLASHnotecite] = ACTIONS(4991), + [anon_sym_BSLASHNotecite] = ACTIONS(4991), + [anon_sym_BSLASHpnotecite] = ACTIONS(4991), + [anon_sym_BSLASHPnotecite] = ACTIONS(4991), + [anon_sym_BSLASHfnotecite] = ACTIONS(4991), + [anon_sym_BSLASHlabel] = ACTIONS(4991), + [anon_sym_BSLASHref] = ACTIONS(4991), + [anon_sym_BSLASHeqref] = ACTIONS(4991), + [anon_sym_BSLASHvref] = ACTIONS(4991), + [anon_sym_BSLASHVref] = ACTIONS(4991), + [anon_sym_BSLASHautoref] = ACTIONS(4991), + [anon_sym_BSLASHpageref] = ACTIONS(4991), + [anon_sym_BSLASHcref] = ACTIONS(4991), + [anon_sym_BSLASHCref] = ACTIONS(4991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnameCref] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHlabelcref] = ACTIONS(4991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCrefrange] = ACTIONS(4991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnewlabel] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), + [anon_sym_BSLASHdef] = ACTIONS(4991), + [anon_sym_BSLASHlet] = ACTIONS(4991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), + [anon_sym_BSLASHgls] = ACTIONS(4991), + [anon_sym_BSLASHGls] = ACTIONS(4991), + [anon_sym_BSLASHGLS] = ACTIONS(4991), + [anon_sym_BSLASHglspl] = ACTIONS(4991), + [anon_sym_BSLASHGlspl] = ACTIONS(4991), + [anon_sym_BSLASHGLSpl] = ACTIONS(4991), + [anon_sym_BSLASHglsdisp] = ACTIONS(4991), + [anon_sym_BSLASHglslink] = ACTIONS(4991), + [anon_sym_BSLASHglstext] = ACTIONS(4991), + [anon_sym_BSLASHGlstext] = ACTIONS(4991), + [anon_sym_BSLASHGLStext] = ACTIONS(4991), + [anon_sym_BSLASHglsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), + [anon_sym_BSLASHglsplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSplural] = ACTIONS(4991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHglsname] = ACTIONS(4991), + [anon_sym_BSLASHGlsname] = ACTIONS(4991), + [anon_sym_BSLASHGLSname] = ACTIONS(4991), + [anon_sym_BSLASHglssymbol] = ACTIONS(4991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), + [anon_sym_BSLASHglsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), + [anon_sym_BSLASHglsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), + [anon_sym_BSLASHglsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), + [anon_sym_BSLASHglsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), + [anon_sym_BSLASHglsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), + [anon_sym_BSLASHnewacronym] = ACTIONS(4991), + [anon_sym_BSLASHacrshort] = ACTIONS(4991), + [anon_sym_BSLASHAcrshort] = ACTIONS(4991), + [anon_sym_BSLASHACRshort] = ACTIONS(4991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), + [anon_sym_BSLASHacrlong] = ACTIONS(4991), + [anon_sym_BSLASHAcrlong] = ACTIONS(4991), + [anon_sym_BSLASHACRlong] = ACTIONS(4991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), + [anon_sym_BSLASHacrfull] = ACTIONS(4991), + [anon_sym_BSLASHAcrfull] = ACTIONS(4991), + [anon_sym_BSLASHACRfull] = ACTIONS(4991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), + [anon_sym_BSLASHacs] = ACTIONS(4991), + [anon_sym_BSLASHAcs] = ACTIONS(4991), + [anon_sym_BSLASHacsp] = ACTIONS(4991), + [anon_sym_BSLASHAcsp] = ACTIONS(4991), + [anon_sym_BSLASHacl] = ACTIONS(4991), + [anon_sym_BSLASHAcl] = ACTIONS(4991), + [anon_sym_BSLASHaclp] = ACTIONS(4991), + [anon_sym_BSLASHAclp] = ACTIONS(4991), + [anon_sym_BSLASHacf] = ACTIONS(4991), + [anon_sym_BSLASHAcf] = ACTIONS(4991), + [anon_sym_BSLASHacfp] = ACTIONS(4991), + [anon_sym_BSLASHAcfp] = ACTIONS(4991), + [anon_sym_BSLASHac] = ACTIONS(4991), + [anon_sym_BSLASHAc] = ACTIONS(4991), + [anon_sym_BSLASHacp] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), + [anon_sym_BSLASHcolor] = ACTIONS(4991), + [anon_sym_BSLASHcolorbox] = ACTIONS(4991), + [anon_sym_BSLASHtextcolor] = ACTIONS(4991), + [anon_sym_BSLASHpagecolor] = ACTIONS(4991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [anon_sym_BSLASHtext] = ACTIONS(4991), + [anon_sym_BSLASHintertext] = ACTIONS(4991), + [anon_sym_shortintertext] = ACTIONS(4991), }, - [1502] = { - [sym_command_name] = ACTIONS(5077), + [1462] = { + [sym_command_name] = ACTIONS(4987), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5077), - [anon_sym_RBRACK] = ACTIONS(5075), - [anon_sym_COMMA] = ACTIONS(5075), - [anon_sym_EQ] = ACTIONS(5075), - [anon_sym_RBRACE] = ACTIONS(5075), - [sym_word] = ACTIONS(5077), - [sym_placeholder] = ACTIONS(5075), - [anon_sym_PLUS] = ACTIONS(5077), - [anon_sym_DASH] = ACTIONS(5077), - [anon_sym_STAR] = ACTIONS(5077), - [anon_sym_SLASH] = ACTIONS(5077), - [anon_sym_CARET] = ACTIONS(5077), - [anon_sym__] = ACTIONS(5077), - [anon_sym_LT] = ACTIONS(5077), - [anon_sym_GT] = ACTIONS(5077), - [anon_sym_BANG] = ACTIONS(5077), - [anon_sym_PIPE] = ACTIONS(5077), - [anon_sym_COLON] = ACTIONS(5077), - [anon_sym_SQUOTE] = ACTIONS(5077), - [anon_sym_BSLASHusepackage] = ACTIONS(5077), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5077), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5077), - [anon_sym_BSLASHinclude] = ACTIONS(5077), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5077), - [anon_sym_BSLASHinput] = ACTIONS(5077), - [anon_sym_BSLASHsubfile] = ACTIONS(5077), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5077), - [anon_sym_BSLASHbibliography] = ACTIONS(5077), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5077), - [anon_sym_BSLASHincludesvg] = ACTIONS(5077), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5077), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5077), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5077), - [anon_sym_BSLASHimport] = ACTIONS(5077), - [anon_sym_BSLASHsubimport] = ACTIONS(5077), - [anon_sym_BSLASHinputfrom] = ACTIONS(5077), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5077), - [anon_sym_BSLASHincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5077), - [anon_sym_BSLASHcaption] = ACTIONS(5077), - [anon_sym_BSLASHcite] = ACTIONS(5077), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCite] = ACTIONS(5077), - [anon_sym_BSLASHnocite] = ACTIONS(5077), - [anon_sym_BSLASHcitet] = ACTIONS(5077), - [anon_sym_BSLASHcitep] = ACTIONS(5077), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteauthor] = ACTIONS(5077), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5077), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitetitle] = ACTIONS(5077), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteyear] = ACTIONS(5077), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5075), - [anon_sym_BSLASHcitedate] = ACTIONS(5077), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5075), - [anon_sym_BSLASHciteurl] = ACTIONS(5077), - [anon_sym_BSLASHfullcite] = ACTIONS(5077), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5077), - [anon_sym_BSLASHcitealt] = ACTIONS(5077), - [anon_sym_BSLASHcitealp] = ACTIONS(5077), - [anon_sym_BSLASHcitetext] = ACTIONS(5077), - [anon_sym_BSLASHparencite] = ACTIONS(5077), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHParencite] = ACTIONS(5077), - [anon_sym_BSLASHfootcite] = ACTIONS(5077), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5077), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5077), - [anon_sym_BSLASHtextcite] = ACTIONS(5077), - [anon_sym_BSLASHTextcite] = ACTIONS(5077), - [anon_sym_BSLASHsmartcite] = ACTIONS(5077), - [anon_sym_BSLASHSmartcite] = ACTIONS(5077), - [anon_sym_BSLASHsupercite] = ACTIONS(5077), - [anon_sym_BSLASHautocite] = ACTIONS(5077), - [anon_sym_BSLASHAutocite] = ACTIONS(5077), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5075), - [anon_sym_BSLASHvolcite] = ACTIONS(5077), - [anon_sym_BSLASHVolcite] = ACTIONS(5077), - [anon_sym_BSLASHpvolcite] = ACTIONS(5077), - [anon_sym_BSLASHPvolcite] = ACTIONS(5077), - [anon_sym_BSLASHfvolcite] = ACTIONS(5077), - [anon_sym_BSLASHftvolcite] = ACTIONS(5077), - [anon_sym_BSLASHsvolcite] = ACTIONS(5077), - [anon_sym_BSLASHSvolcite] = ACTIONS(5077), - [anon_sym_BSLASHtvolcite] = ACTIONS(5077), - [anon_sym_BSLASHTvolcite] = ACTIONS(5077), - [anon_sym_BSLASHavolcite] = ACTIONS(5077), - [anon_sym_BSLASHAvolcite] = ACTIONS(5077), - [anon_sym_BSLASHnotecite] = ACTIONS(5077), - [anon_sym_BSLASHNotecite] = ACTIONS(5077), - [anon_sym_BSLASHpnotecite] = ACTIONS(5077), - [anon_sym_BSLASHPnotecite] = ACTIONS(5077), - [anon_sym_BSLASHfnotecite] = ACTIONS(5077), - [anon_sym_BSLASHlabel] = ACTIONS(5077), - [anon_sym_BSLASHref] = ACTIONS(5077), - [anon_sym_BSLASHeqref] = ACTIONS(5077), - [anon_sym_BSLASHvref] = ACTIONS(5077), - [anon_sym_BSLASHVref] = ACTIONS(5077), - [anon_sym_BSLASHautoref] = ACTIONS(5077), - [anon_sym_BSLASHpageref] = ACTIONS(5077), - [anon_sym_BSLASHcref] = ACTIONS(5077), - [anon_sym_BSLASHCref] = ACTIONS(5077), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnameCref] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5077), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5077), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5077), - [anon_sym_BSLASHlabelcref] = ACTIONS(5077), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange] = ACTIONS(5077), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHCrefrange] = ACTIONS(5077), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5075), - [anon_sym_BSLASHnewlabel] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand] = ACTIONS(5077), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5077), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5077), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5075), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5077), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5075), - [anon_sym_BSLASHdef] = ACTIONS(5077), - [anon_sym_BSLASHlet] = ACTIONS(5077), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5077), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5077), - [anon_sym_BSLASHgls] = ACTIONS(5077), - [anon_sym_BSLASHGls] = ACTIONS(5077), - [anon_sym_BSLASHGLS] = ACTIONS(5077), - [anon_sym_BSLASHglspl] = ACTIONS(5077), - [anon_sym_BSLASHGlspl] = ACTIONS(5077), - [anon_sym_BSLASHGLSpl] = ACTIONS(5077), - [anon_sym_BSLASHglsdisp] = ACTIONS(5077), - [anon_sym_BSLASHglslink] = ACTIONS(5077), - [anon_sym_BSLASHglstext] = ACTIONS(5077), - [anon_sym_BSLASHGlstext] = ACTIONS(5077), - [anon_sym_BSLASHGLStext] = ACTIONS(5077), - [anon_sym_BSLASHglsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5077), - [anon_sym_BSLASHglsplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSplural] = ACTIONS(5077), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5077), - [anon_sym_BSLASHglsname] = ACTIONS(5077), - [anon_sym_BSLASHGlsname] = ACTIONS(5077), - [anon_sym_BSLASHGLSname] = ACTIONS(5077), - [anon_sym_BSLASHglssymbol] = ACTIONS(5077), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5077), - [anon_sym_BSLASHglsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5077), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5077), - [anon_sym_BSLASHglsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5077), - [anon_sym_BSLASHglsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5077), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5077), - [anon_sym_BSLASHglsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5077), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5077), - [anon_sym_BSLASHglsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5077), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5077), - [anon_sym_BSLASHnewacronym] = ACTIONS(5077), - [anon_sym_BSLASHacrshort] = ACTIONS(5077), - [anon_sym_BSLASHAcrshort] = ACTIONS(5077), - [anon_sym_BSLASHACRshort] = ACTIONS(5077), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5077), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5077), - [anon_sym_BSLASHacrlong] = ACTIONS(5077), - [anon_sym_BSLASHAcrlong] = ACTIONS(5077), - [anon_sym_BSLASHACRlong] = ACTIONS(5077), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5077), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5077), - [anon_sym_BSLASHacrfull] = ACTIONS(5077), - [anon_sym_BSLASHAcrfull] = ACTIONS(5077), - [anon_sym_BSLASHACRfull] = ACTIONS(5077), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5077), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5077), - [anon_sym_BSLASHacs] = ACTIONS(5077), - [anon_sym_BSLASHAcs] = ACTIONS(5077), - [anon_sym_BSLASHacsp] = ACTIONS(5077), - [anon_sym_BSLASHAcsp] = ACTIONS(5077), - [anon_sym_BSLASHacl] = ACTIONS(5077), - [anon_sym_BSLASHAcl] = ACTIONS(5077), - [anon_sym_BSLASHaclp] = ACTIONS(5077), - [anon_sym_BSLASHAclp] = ACTIONS(5077), - [anon_sym_BSLASHacf] = ACTIONS(5077), - [anon_sym_BSLASHAcf] = ACTIONS(5077), - [anon_sym_BSLASHacfp] = ACTIONS(5077), - [anon_sym_BSLASHAcfp] = ACTIONS(5077), - [anon_sym_BSLASHac] = ACTIONS(5077), - [anon_sym_BSLASHAc] = ACTIONS(5077), - [anon_sym_BSLASHacp] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5077), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5077), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5077), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5077), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5077), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5077), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5077), - [anon_sym_BSLASHcolor] = ACTIONS(5077), - [anon_sym_BSLASHcolorbox] = ACTIONS(5077), - [anon_sym_BSLASHtextcolor] = ACTIONS(5077), - [anon_sym_BSLASHpagecolor] = ACTIONS(5077), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5077), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5077), - }, - [1503] = { - [sym_command_name] = ACTIONS(5329), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5329), - [anon_sym_RBRACK] = ACTIONS(5327), - [anon_sym_COMMA] = ACTIONS(5327), - [anon_sym_EQ] = ACTIONS(5327), - [anon_sym_RBRACE] = ACTIONS(5327), - [sym_word] = ACTIONS(5329), - [sym_placeholder] = ACTIONS(5327), - [anon_sym_PLUS] = ACTIONS(5329), - [anon_sym_DASH] = ACTIONS(5329), - [anon_sym_STAR] = ACTIONS(5329), - [anon_sym_SLASH] = ACTIONS(5329), - [anon_sym_CARET] = ACTIONS(5329), - [anon_sym__] = ACTIONS(5329), - [anon_sym_LT] = ACTIONS(5329), - [anon_sym_GT] = ACTIONS(5329), - [anon_sym_BANG] = ACTIONS(5329), - [anon_sym_PIPE] = ACTIONS(5329), - [anon_sym_COLON] = ACTIONS(5329), - [anon_sym_SQUOTE] = ACTIONS(5329), - [anon_sym_BSLASHusepackage] = ACTIONS(5329), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5329), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5329), - [anon_sym_BSLASHinclude] = ACTIONS(5329), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5329), - [anon_sym_BSLASHinput] = ACTIONS(5329), - [anon_sym_BSLASHsubfile] = ACTIONS(5329), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5329), - [anon_sym_BSLASHbibliography] = ACTIONS(5329), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5329), - [anon_sym_BSLASHincludesvg] = ACTIONS(5329), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5329), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5329), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5329), - [anon_sym_BSLASHimport] = ACTIONS(5329), - [anon_sym_BSLASHsubimport] = ACTIONS(5329), - [anon_sym_BSLASHinputfrom] = ACTIONS(5329), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5329), - [anon_sym_BSLASHincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5329), - [anon_sym_BSLASHcaption] = ACTIONS(5329), - [anon_sym_BSLASHcite] = ACTIONS(5329), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCite] = ACTIONS(5329), - [anon_sym_BSLASHnocite] = ACTIONS(5329), - [anon_sym_BSLASHcitet] = ACTIONS(5329), - [anon_sym_BSLASHcitep] = ACTIONS(5329), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteauthor] = ACTIONS(5329), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5329), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitetitle] = ACTIONS(5329), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteyear] = ACTIONS(5329), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5327), - [anon_sym_BSLASHcitedate] = ACTIONS(5329), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5327), - [anon_sym_BSLASHciteurl] = ACTIONS(5329), - [anon_sym_BSLASHfullcite] = ACTIONS(5329), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5329), - [anon_sym_BSLASHcitealt] = ACTIONS(5329), - [anon_sym_BSLASHcitealp] = ACTIONS(5329), - [anon_sym_BSLASHcitetext] = ACTIONS(5329), - [anon_sym_BSLASHparencite] = ACTIONS(5329), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHParencite] = ACTIONS(5329), - [anon_sym_BSLASHfootcite] = ACTIONS(5329), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5329), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5329), - [anon_sym_BSLASHtextcite] = ACTIONS(5329), - [anon_sym_BSLASHTextcite] = ACTIONS(5329), - [anon_sym_BSLASHsmartcite] = ACTIONS(5329), - [anon_sym_BSLASHSmartcite] = ACTIONS(5329), - [anon_sym_BSLASHsupercite] = ACTIONS(5329), - [anon_sym_BSLASHautocite] = ACTIONS(5329), - [anon_sym_BSLASHAutocite] = ACTIONS(5329), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5327), - [anon_sym_BSLASHvolcite] = ACTIONS(5329), - [anon_sym_BSLASHVolcite] = ACTIONS(5329), - [anon_sym_BSLASHpvolcite] = ACTIONS(5329), - [anon_sym_BSLASHPvolcite] = ACTIONS(5329), - [anon_sym_BSLASHfvolcite] = ACTIONS(5329), - [anon_sym_BSLASHftvolcite] = ACTIONS(5329), - [anon_sym_BSLASHsvolcite] = ACTIONS(5329), - [anon_sym_BSLASHSvolcite] = ACTIONS(5329), - [anon_sym_BSLASHtvolcite] = ACTIONS(5329), - [anon_sym_BSLASHTvolcite] = ACTIONS(5329), - [anon_sym_BSLASHavolcite] = ACTIONS(5329), - [anon_sym_BSLASHAvolcite] = ACTIONS(5329), - [anon_sym_BSLASHnotecite] = ACTIONS(5329), - [anon_sym_BSLASHNotecite] = ACTIONS(5329), - [anon_sym_BSLASHpnotecite] = ACTIONS(5329), - [anon_sym_BSLASHPnotecite] = ACTIONS(5329), - [anon_sym_BSLASHfnotecite] = ACTIONS(5329), - [anon_sym_BSLASHlabel] = ACTIONS(5329), - [anon_sym_BSLASHref] = ACTIONS(5329), - [anon_sym_BSLASHeqref] = ACTIONS(5329), - [anon_sym_BSLASHvref] = ACTIONS(5329), - [anon_sym_BSLASHVref] = ACTIONS(5329), - [anon_sym_BSLASHautoref] = ACTIONS(5329), - [anon_sym_BSLASHpageref] = ACTIONS(5329), - [anon_sym_BSLASHcref] = ACTIONS(5329), - [anon_sym_BSLASHCref] = ACTIONS(5329), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnameCref] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5329), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5329), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5329), - [anon_sym_BSLASHlabelcref] = ACTIONS(5329), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange] = ACTIONS(5329), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHCrefrange] = ACTIONS(5329), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5327), - [anon_sym_BSLASHnewlabel] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand] = ACTIONS(5329), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5329), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5329), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5327), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5329), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5327), - [anon_sym_BSLASHdef] = ACTIONS(5329), - [anon_sym_BSLASHlet] = ACTIONS(5329), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5329), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5329), - [anon_sym_BSLASHgls] = ACTIONS(5329), - [anon_sym_BSLASHGls] = ACTIONS(5329), - [anon_sym_BSLASHGLS] = ACTIONS(5329), - [anon_sym_BSLASHglspl] = ACTIONS(5329), - [anon_sym_BSLASHGlspl] = ACTIONS(5329), - [anon_sym_BSLASHGLSpl] = ACTIONS(5329), - [anon_sym_BSLASHglsdisp] = ACTIONS(5329), - [anon_sym_BSLASHglslink] = ACTIONS(5329), - [anon_sym_BSLASHglstext] = ACTIONS(5329), - [anon_sym_BSLASHGlstext] = ACTIONS(5329), - [anon_sym_BSLASHGLStext] = ACTIONS(5329), - [anon_sym_BSLASHglsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5329), - [anon_sym_BSLASHglsplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSplural] = ACTIONS(5329), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5329), - [anon_sym_BSLASHglsname] = ACTIONS(5329), - [anon_sym_BSLASHGlsname] = ACTIONS(5329), - [anon_sym_BSLASHGLSname] = ACTIONS(5329), - [anon_sym_BSLASHglssymbol] = ACTIONS(5329), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5329), - [anon_sym_BSLASHglsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5329), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5329), - [anon_sym_BSLASHglsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5329), - [anon_sym_BSLASHglsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5329), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5329), - [anon_sym_BSLASHglsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5329), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5329), - [anon_sym_BSLASHglsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5329), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5329), - [anon_sym_BSLASHnewacronym] = ACTIONS(5329), - [anon_sym_BSLASHacrshort] = ACTIONS(5329), - [anon_sym_BSLASHAcrshort] = ACTIONS(5329), - [anon_sym_BSLASHACRshort] = ACTIONS(5329), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5329), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5329), - [anon_sym_BSLASHacrlong] = ACTIONS(5329), - [anon_sym_BSLASHAcrlong] = ACTIONS(5329), - [anon_sym_BSLASHACRlong] = ACTIONS(5329), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5329), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5329), - [anon_sym_BSLASHacrfull] = ACTIONS(5329), - [anon_sym_BSLASHAcrfull] = ACTIONS(5329), - [anon_sym_BSLASHACRfull] = ACTIONS(5329), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5329), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5329), - [anon_sym_BSLASHacs] = ACTIONS(5329), - [anon_sym_BSLASHAcs] = ACTIONS(5329), - [anon_sym_BSLASHacsp] = ACTIONS(5329), - [anon_sym_BSLASHAcsp] = ACTIONS(5329), - [anon_sym_BSLASHacl] = ACTIONS(5329), - [anon_sym_BSLASHAcl] = ACTIONS(5329), - [anon_sym_BSLASHaclp] = ACTIONS(5329), - [anon_sym_BSLASHAclp] = ACTIONS(5329), - [anon_sym_BSLASHacf] = ACTIONS(5329), - [anon_sym_BSLASHAcf] = ACTIONS(5329), - [anon_sym_BSLASHacfp] = ACTIONS(5329), - [anon_sym_BSLASHAcfp] = ACTIONS(5329), - [anon_sym_BSLASHac] = ACTIONS(5329), - [anon_sym_BSLASHAc] = ACTIONS(5329), - [anon_sym_BSLASHacp] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5329), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5329), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5329), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5329), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5329), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5329), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5329), - [anon_sym_BSLASHcolor] = ACTIONS(5329), - [anon_sym_BSLASHcolorbox] = ACTIONS(5329), - [anon_sym_BSLASHtextcolor] = ACTIONS(5329), - [anon_sym_BSLASHpagecolor] = ACTIONS(5329), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5329), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5329), - }, - [1504] = { - [sym_command_name] = ACTIONS(4967), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4967), - [anon_sym_RBRACK] = ACTIONS(4965), - [anon_sym_COMMA] = ACTIONS(4965), - [anon_sym_EQ] = ACTIONS(4965), - [anon_sym_RBRACE] = ACTIONS(4965), - [sym_word] = ACTIONS(4967), - [sym_placeholder] = ACTIONS(4965), - [anon_sym_PLUS] = ACTIONS(4967), - [anon_sym_DASH] = ACTIONS(4967), - [anon_sym_STAR] = ACTIONS(4967), - [anon_sym_SLASH] = ACTIONS(4967), - [anon_sym_CARET] = ACTIONS(4967), - [anon_sym__] = ACTIONS(4967), - [anon_sym_LT] = ACTIONS(4967), - [anon_sym_GT] = ACTIONS(4967), - [anon_sym_BANG] = ACTIONS(4967), - [anon_sym_PIPE] = ACTIONS(4967), - [anon_sym_COLON] = ACTIONS(4967), - [anon_sym_SQUOTE] = ACTIONS(4967), - [anon_sym_BSLASHusepackage] = ACTIONS(4967), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4967), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4967), - [anon_sym_BSLASHinclude] = ACTIONS(4967), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4967), - [anon_sym_BSLASHinput] = ACTIONS(4967), - [anon_sym_BSLASHsubfile] = ACTIONS(4967), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4967), - [anon_sym_BSLASHbibliography] = ACTIONS(4967), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4967), - [anon_sym_BSLASHincludesvg] = ACTIONS(4967), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4967), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4967), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4967), - [anon_sym_BSLASHimport] = ACTIONS(4967), - [anon_sym_BSLASHsubimport] = ACTIONS(4967), - [anon_sym_BSLASHinputfrom] = ACTIONS(4967), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4967), - [anon_sym_BSLASHincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4967), - [anon_sym_BSLASHcaption] = ACTIONS(4967), - [anon_sym_BSLASHcite] = ACTIONS(4967), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCite] = ACTIONS(4967), - [anon_sym_BSLASHnocite] = ACTIONS(4967), - [anon_sym_BSLASHcitet] = ACTIONS(4967), - [anon_sym_BSLASHcitep] = ACTIONS(4967), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteauthor] = ACTIONS(4967), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4967), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitetitle] = ACTIONS(4967), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteyear] = ACTIONS(4967), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4965), - [anon_sym_BSLASHcitedate] = ACTIONS(4967), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4965), - [anon_sym_BSLASHciteurl] = ACTIONS(4967), - [anon_sym_BSLASHfullcite] = ACTIONS(4967), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4967), - [anon_sym_BSLASHcitealt] = ACTIONS(4967), - [anon_sym_BSLASHcitealp] = ACTIONS(4967), - [anon_sym_BSLASHcitetext] = ACTIONS(4967), - [anon_sym_BSLASHparencite] = ACTIONS(4967), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHParencite] = ACTIONS(4967), - [anon_sym_BSLASHfootcite] = ACTIONS(4967), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4967), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4967), - [anon_sym_BSLASHtextcite] = ACTIONS(4967), - [anon_sym_BSLASHTextcite] = ACTIONS(4967), - [anon_sym_BSLASHsmartcite] = ACTIONS(4967), - [anon_sym_BSLASHSmartcite] = ACTIONS(4967), - [anon_sym_BSLASHsupercite] = ACTIONS(4967), - [anon_sym_BSLASHautocite] = ACTIONS(4967), - [anon_sym_BSLASHAutocite] = ACTIONS(4967), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4965), - [anon_sym_BSLASHvolcite] = ACTIONS(4967), - [anon_sym_BSLASHVolcite] = ACTIONS(4967), - [anon_sym_BSLASHpvolcite] = ACTIONS(4967), - [anon_sym_BSLASHPvolcite] = ACTIONS(4967), - [anon_sym_BSLASHfvolcite] = ACTIONS(4967), - [anon_sym_BSLASHftvolcite] = ACTIONS(4967), - [anon_sym_BSLASHsvolcite] = ACTIONS(4967), - [anon_sym_BSLASHSvolcite] = ACTIONS(4967), - [anon_sym_BSLASHtvolcite] = ACTIONS(4967), - [anon_sym_BSLASHTvolcite] = ACTIONS(4967), - [anon_sym_BSLASHavolcite] = ACTIONS(4967), - [anon_sym_BSLASHAvolcite] = ACTIONS(4967), - [anon_sym_BSLASHnotecite] = ACTIONS(4967), - [anon_sym_BSLASHNotecite] = ACTIONS(4967), - [anon_sym_BSLASHpnotecite] = ACTIONS(4967), - [anon_sym_BSLASHPnotecite] = ACTIONS(4967), - [anon_sym_BSLASHfnotecite] = ACTIONS(4967), - [anon_sym_BSLASHlabel] = ACTIONS(4967), - [anon_sym_BSLASHref] = ACTIONS(4967), - [anon_sym_BSLASHeqref] = ACTIONS(4967), - [anon_sym_BSLASHvref] = ACTIONS(4967), - [anon_sym_BSLASHVref] = ACTIONS(4967), - [anon_sym_BSLASHautoref] = ACTIONS(4967), - [anon_sym_BSLASHpageref] = ACTIONS(4967), - [anon_sym_BSLASHcref] = ACTIONS(4967), - [anon_sym_BSLASHCref] = ACTIONS(4967), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnameCref] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4967), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4967), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4967), - [anon_sym_BSLASHlabelcref] = ACTIONS(4967), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange] = ACTIONS(4967), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHCrefrange] = ACTIONS(4967), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4965), - [anon_sym_BSLASHnewlabel] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand] = ACTIONS(4967), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4967), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4967), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4965), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4967), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4965), - [anon_sym_BSLASHdef] = ACTIONS(4967), - [anon_sym_BSLASHlet] = ACTIONS(4967), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4967), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4967), - [anon_sym_BSLASHgls] = ACTIONS(4967), - [anon_sym_BSLASHGls] = ACTIONS(4967), - [anon_sym_BSLASHGLS] = ACTIONS(4967), - [anon_sym_BSLASHglspl] = ACTIONS(4967), - [anon_sym_BSLASHGlspl] = ACTIONS(4967), - [anon_sym_BSLASHGLSpl] = ACTIONS(4967), - [anon_sym_BSLASHglsdisp] = ACTIONS(4967), - [anon_sym_BSLASHglslink] = ACTIONS(4967), - [anon_sym_BSLASHglstext] = ACTIONS(4967), - [anon_sym_BSLASHGlstext] = ACTIONS(4967), - [anon_sym_BSLASHGLStext] = ACTIONS(4967), - [anon_sym_BSLASHglsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4967), - [anon_sym_BSLASHglsplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSplural] = ACTIONS(4967), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4967), - [anon_sym_BSLASHglsname] = ACTIONS(4967), - [anon_sym_BSLASHGlsname] = ACTIONS(4967), - [anon_sym_BSLASHGLSname] = ACTIONS(4967), - [anon_sym_BSLASHglssymbol] = ACTIONS(4967), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4967), - [anon_sym_BSLASHglsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4967), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4967), - [anon_sym_BSLASHglsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4967), - [anon_sym_BSLASHglsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4967), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4967), - [anon_sym_BSLASHglsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4967), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4967), - [anon_sym_BSLASHglsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4967), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4967), - [anon_sym_BSLASHnewacronym] = ACTIONS(4967), - [anon_sym_BSLASHacrshort] = ACTIONS(4967), - [anon_sym_BSLASHAcrshort] = ACTIONS(4967), - [anon_sym_BSLASHACRshort] = ACTIONS(4967), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4967), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4967), - [anon_sym_BSLASHacrlong] = ACTIONS(4967), - [anon_sym_BSLASHAcrlong] = ACTIONS(4967), - [anon_sym_BSLASHACRlong] = ACTIONS(4967), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4967), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4967), - [anon_sym_BSLASHacrfull] = ACTIONS(4967), - [anon_sym_BSLASHAcrfull] = ACTIONS(4967), - [anon_sym_BSLASHACRfull] = ACTIONS(4967), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4967), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4967), - [anon_sym_BSLASHacs] = ACTIONS(4967), - [anon_sym_BSLASHAcs] = ACTIONS(4967), - [anon_sym_BSLASHacsp] = ACTIONS(4967), - [anon_sym_BSLASHAcsp] = ACTIONS(4967), - [anon_sym_BSLASHacl] = ACTIONS(4967), - [anon_sym_BSLASHAcl] = ACTIONS(4967), - [anon_sym_BSLASHaclp] = ACTIONS(4967), - [anon_sym_BSLASHAclp] = ACTIONS(4967), - [anon_sym_BSLASHacf] = ACTIONS(4967), - [anon_sym_BSLASHAcf] = ACTIONS(4967), - [anon_sym_BSLASHacfp] = ACTIONS(4967), - [anon_sym_BSLASHAcfp] = ACTIONS(4967), - [anon_sym_BSLASHac] = ACTIONS(4967), - [anon_sym_BSLASHAc] = ACTIONS(4967), - [anon_sym_BSLASHacp] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4967), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4967), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4967), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4967), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4967), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4967), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4967), - [anon_sym_BSLASHcolor] = ACTIONS(4967), - [anon_sym_BSLASHcolorbox] = ACTIONS(4967), - [anon_sym_BSLASHtextcolor] = ACTIONS(4967), - [anon_sym_BSLASHpagecolor] = ACTIONS(4967), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4967), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4967), - }, - [1505] = { - [sym_command_name] = ACTIONS(5235), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5235), - [anon_sym_RBRACK] = ACTIONS(5233), - [anon_sym_COMMA] = ACTIONS(5233), - [anon_sym_EQ] = ACTIONS(5233), - [anon_sym_RBRACE] = ACTIONS(5233), - [sym_word] = ACTIONS(5235), - [sym_placeholder] = ACTIONS(5233), - [anon_sym_PLUS] = ACTIONS(5235), - [anon_sym_DASH] = ACTIONS(5235), - [anon_sym_STAR] = ACTIONS(5235), - [anon_sym_SLASH] = ACTIONS(5235), - [anon_sym_CARET] = ACTIONS(5235), - [anon_sym__] = ACTIONS(5235), - [anon_sym_LT] = ACTIONS(5235), - [anon_sym_GT] = ACTIONS(5235), - [anon_sym_BANG] = ACTIONS(5235), - [anon_sym_PIPE] = ACTIONS(5235), - [anon_sym_COLON] = ACTIONS(5235), - [anon_sym_SQUOTE] = ACTIONS(5235), - [anon_sym_BSLASHusepackage] = ACTIONS(5235), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5235), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5235), - [anon_sym_BSLASHinclude] = ACTIONS(5235), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5235), - [anon_sym_BSLASHinput] = ACTIONS(5235), - [anon_sym_BSLASHsubfile] = ACTIONS(5235), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5235), - [anon_sym_BSLASHbibliography] = ACTIONS(5235), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5235), - [anon_sym_BSLASHincludesvg] = ACTIONS(5235), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5235), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5235), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5235), - [anon_sym_BSLASHimport] = ACTIONS(5235), - [anon_sym_BSLASHsubimport] = ACTIONS(5235), - [anon_sym_BSLASHinputfrom] = ACTIONS(5235), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5235), - [anon_sym_BSLASHincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5235), - [anon_sym_BSLASHcaption] = ACTIONS(5235), - [anon_sym_BSLASHcite] = ACTIONS(5235), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCite] = ACTIONS(5235), - [anon_sym_BSLASHnocite] = ACTIONS(5235), - [anon_sym_BSLASHcitet] = ACTIONS(5235), - [anon_sym_BSLASHcitep] = ACTIONS(5235), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteauthor] = ACTIONS(5235), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5235), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitetitle] = ACTIONS(5235), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteyear] = ACTIONS(5235), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5233), - [anon_sym_BSLASHcitedate] = ACTIONS(5235), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5233), - [anon_sym_BSLASHciteurl] = ACTIONS(5235), - [anon_sym_BSLASHfullcite] = ACTIONS(5235), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5235), - [anon_sym_BSLASHcitealt] = ACTIONS(5235), - [anon_sym_BSLASHcitealp] = ACTIONS(5235), - [anon_sym_BSLASHcitetext] = ACTIONS(5235), - [anon_sym_BSLASHparencite] = ACTIONS(5235), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHParencite] = ACTIONS(5235), - [anon_sym_BSLASHfootcite] = ACTIONS(5235), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5235), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5235), - [anon_sym_BSLASHtextcite] = ACTIONS(5235), - [anon_sym_BSLASHTextcite] = ACTIONS(5235), - [anon_sym_BSLASHsmartcite] = ACTIONS(5235), - [anon_sym_BSLASHSmartcite] = ACTIONS(5235), - [anon_sym_BSLASHsupercite] = ACTIONS(5235), - [anon_sym_BSLASHautocite] = ACTIONS(5235), - [anon_sym_BSLASHAutocite] = ACTIONS(5235), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5233), - [anon_sym_BSLASHvolcite] = ACTIONS(5235), - [anon_sym_BSLASHVolcite] = ACTIONS(5235), - [anon_sym_BSLASHpvolcite] = ACTIONS(5235), - [anon_sym_BSLASHPvolcite] = ACTIONS(5235), - [anon_sym_BSLASHfvolcite] = ACTIONS(5235), - [anon_sym_BSLASHftvolcite] = ACTIONS(5235), - [anon_sym_BSLASHsvolcite] = ACTIONS(5235), - [anon_sym_BSLASHSvolcite] = ACTIONS(5235), - [anon_sym_BSLASHtvolcite] = ACTIONS(5235), - [anon_sym_BSLASHTvolcite] = ACTIONS(5235), - [anon_sym_BSLASHavolcite] = ACTIONS(5235), - [anon_sym_BSLASHAvolcite] = ACTIONS(5235), - [anon_sym_BSLASHnotecite] = ACTIONS(5235), - [anon_sym_BSLASHNotecite] = ACTIONS(5235), - [anon_sym_BSLASHpnotecite] = ACTIONS(5235), - [anon_sym_BSLASHPnotecite] = ACTIONS(5235), - [anon_sym_BSLASHfnotecite] = ACTIONS(5235), - [anon_sym_BSLASHlabel] = ACTIONS(5235), - [anon_sym_BSLASHref] = ACTIONS(5235), - [anon_sym_BSLASHeqref] = ACTIONS(5235), - [anon_sym_BSLASHvref] = ACTIONS(5235), - [anon_sym_BSLASHVref] = ACTIONS(5235), - [anon_sym_BSLASHautoref] = ACTIONS(5235), - [anon_sym_BSLASHpageref] = ACTIONS(5235), - [anon_sym_BSLASHcref] = ACTIONS(5235), - [anon_sym_BSLASHCref] = ACTIONS(5235), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnameCref] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5235), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5235), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5235), - [anon_sym_BSLASHlabelcref] = ACTIONS(5235), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange] = ACTIONS(5235), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHCrefrange] = ACTIONS(5235), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5233), - [anon_sym_BSLASHnewlabel] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand] = ACTIONS(5235), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5235), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5235), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5233), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5235), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5233), - [anon_sym_BSLASHdef] = ACTIONS(5235), - [anon_sym_BSLASHlet] = ACTIONS(5235), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5235), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5235), - [anon_sym_BSLASHgls] = ACTIONS(5235), - [anon_sym_BSLASHGls] = ACTIONS(5235), - [anon_sym_BSLASHGLS] = ACTIONS(5235), - [anon_sym_BSLASHglspl] = ACTIONS(5235), - [anon_sym_BSLASHGlspl] = ACTIONS(5235), - [anon_sym_BSLASHGLSpl] = ACTIONS(5235), - [anon_sym_BSLASHglsdisp] = ACTIONS(5235), - [anon_sym_BSLASHglslink] = ACTIONS(5235), - [anon_sym_BSLASHglstext] = ACTIONS(5235), - [anon_sym_BSLASHGlstext] = ACTIONS(5235), - [anon_sym_BSLASHGLStext] = ACTIONS(5235), - [anon_sym_BSLASHglsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5235), - [anon_sym_BSLASHglsplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSplural] = ACTIONS(5235), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5235), - [anon_sym_BSLASHglsname] = ACTIONS(5235), - [anon_sym_BSLASHGlsname] = ACTIONS(5235), - [anon_sym_BSLASHGLSname] = ACTIONS(5235), - [anon_sym_BSLASHglssymbol] = ACTIONS(5235), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5235), - [anon_sym_BSLASHglsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5235), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5235), - [anon_sym_BSLASHglsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5235), - [anon_sym_BSLASHglsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5235), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5235), - [anon_sym_BSLASHglsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5235), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5235), - [anon_sym_BSLASHglsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5235), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5235), - [anon_sym_BSLASHnewacronym] = ACTIONS(5235), - [anon_sym_BSLASHacrshort] = ACTIONS(5235), - [anon_sym_BSLASHAcrshort] = ACTIONS(5235), - [anon_sym_BSLASHACRshort] = ACTIONS(5235), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5235), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5235), - [anon_sym_BSLASHacrlong] = ACTIONS(5235), - [anon_sym_BSLASHAcrlong] = ACTIONS(5235), - [anon_sym_BSLASHACRlong] = ACTIONS(5235), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5235), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5235), - [anon_sym_BSLASHacrfull] = ACTIONS(5235), - [anon_sym_BSLASHAcrfull] = ACTIONS(5235), - [anon_sym_BSLASHACRfull] = ACTIONS(5235), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5235), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5235), - [anon_sym_BSLASHacs] = ACTIONS(5235), - [anon_sym_BSLASHAcs] = ACTIONS(5235), - [anon_sym_BSLASHacsp] = ACTIONS(5235), - [anon_sym_BSLASHAcsp] = ACTIONS(5235), - [anon_sym_BSLASHacl] = ACTIONS(5235), - [anon_sym_BSLASHAcl] = ACTIONS(5235), - [anon_sym_BSLASHaclp] = ACTIONS(5235), - [anon_sym_BSLASHAclp] = ACTIONS(5235), - [anon_sym_BSLASHacf] = ACTIONS(5235), - [anon_sym_BSLASHAcf] = ACTIONS(5235), - [anon_sym_BSLASHacfp] = ACTIONS(5235), - [anon_sym_BSLASHAcfp] = ACTIONS(5235), - [anon_sym_BSLASHac] = ACTIONS(5235), - [anon_sym_BSLASHAc] = ACTIONS(5235), - [anon_sym_BSLASHacp] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5235), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5235), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5235), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5235), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5235), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5235), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5235), - [anon_sym_BSLASHcolor] = ACTIONS(5235), - [anon_sym_BSLASHcolorbox] = ACTIONS(5235), - [anon_sym_BSLASHtextcolor] = ACTIONS(5235), - [anon_sym_BSLASHpagecolor] = ACTIONS(5235), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5235), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5235), - }, - [1506] = { - [sym_command_name] = ACTIONS(5311), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5311), - [anon_sym_RBRACK] = ACTIONS(5309), - [anon_sym_COMMA] = ACTIONS(5309), - [anon_sym_EQ] = ACTIONS(5309), - [anon_sym_RBRACE] = ACTIONS(5309), - [sym_word] = ACTIONS(5311), - [sym_placeholder] = ACTIONS(5309), - [anon_sym_PLUS] = ACTIONS(5311), - [anon_sym_DASH] = ACTIONS(5311), - [anon_sym_STAR] = ACTIONS(5311), - [anon_sym_SLASH] = ACTIONS(5311), - [anon_sym_CARET] = ACTIONS(5311), - [anon_sym__] = ACTIONS(5311), - [anon_sym_LT] = ACTIONS(5311), - [anon_sym_GT] = ACTIONS(5311), - [anon_sym_BANG] = ACTIONS(5311), - [anon_sym_PIPE] = ACTIONS(5311), - [anon_sym_COLON] = ACTIONS(5311), - [anon_sym_SQUOTE] = ACTIONS(5311), - [anon_sym_BSLASHusepackage] = ACTIONS(5311), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5311), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5311), - [anon_sym_BSLASHinclude] = ACTIONS(5311), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5311), - [anon_sym_BSLASHinput] = ACTIONS(5311), - [anon_sym_BSLASHsubfile] = ACTIONS(5311), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5311), - [anon_sym_BSLASHbibliography] = ACTIONS(5311), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5311), - [anon_sym_BSLASHincludesvg] = ACTIONS(5311), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5311), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5311), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5311), - [anon_sym_BSLASHimport] = ACTIONS(5311), - [anon_sym_BSLASHsubimport] = ACTIONS(5311), - [anon_sym_BSLASHinputfrom] = ACTIONS(5311), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5311), - [anon_sym_BSLASHincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5311), - [anon_sym_BSLASHcaption] = ACTIONS(5311), - [anon_sym_BSLASHcite] = ACTIONS(5311), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCite] = ACTIONS(5311), - [anon_sym_BSLASHnocite] = ACTIONS(5311), - [anon_sym_BSLASHcitet] = ACTIONS(5311), - [anon_sym_BSLASHcitep] = ACTIONS(5311), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteauthor] = ACTIONS(5311), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5311), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitetitle] = ACTIONS(5311), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteyear] = ACTIONS(5311), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5309), - [anon_sym_BSLASHcitedate] = ACTIONS(5311), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5309), - [anon_sym_BSLASHciteurl] = ACTIONS(5311), - [anon_sym_BSLASHfullcite] = ACTIONS(5311), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5311), - [anon_sym_BSLASHcitealt] = ACTIONS(5311), - [anon_sym_BSLASHcitealp] = ACTIONS(5311), - [anon_sym_BSLASHcitetext] = ACTIONS(5311), - [anon_sym_BSLASHparencite] = ACTIONS(5311), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHParencite] = ACTIONS(5311), - [anon_sym_BSLASHfootcite] = ACTIONS(5311), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5311), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5311), - [anon_sym_BSLASHtextcite] = ACTIONS(5311), - [anon_sym_BSLASHTextcite] = ACTIONS(5311), - [anon_sym_BSLASHsmartcite] = ACTIONS(5311), - [anon_sym_BSLASHSmartcite] = ACTIONS(5311), - [anon_sym_BSLASHsupercite] = ACTIONS(5311), - [anon_sym_BSLASHautocite] = ACTIONS(5311), - [anon_sym_BSLASHAutocite] = ACTIONS(5311), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5309), - [anon_sym_BSLASHvolcite] = ACTIONS(5311), - [anon_sym_BSLASHVolcite] = ACTIONS(5311), - [anon_sym_BSLASHpvolcite] = ACTIONS(5311), - [anon_sym_BSLASHPvolcite] = ACTIONS(5311), - [anon_sym_BSLASHfvolcite] = ACTIONS(5311), - [anon_sym_BSLASHftvolcite] = ACTIONS(5311), - [anon_sym_BSLASHsvolcite] = ACTIONS(5311), - [anon_sym_BSLASHSvolcite] = ACTIONS(5311), - [anon_sym_BSLASHtvolcite] = ACTIONS(5311), - [anon_sym_BSLASHTvolcite] = ACTIONS(5311), - [anon_sym_BSLASHavolcite] = ACTIONS(5311), - [anon_sym_BSLASHAvolcite] = ACTIONS(5311), - [anon_sym_BSLASHnotecite] = ACTIONS(5311), - [anon_sym_BSLASHNotecite] = ACTIONS(5311), - [anon_sym_BSLASHpnotecite] = ACTIONS(5311), - [anon_sym_BSLASHPnotecite] = ACTIONS(5311), - [anon_sym_BSLASHfnotecite] = ACTIONS(5311), - [anon_sym_BSLASHlabel] = ACTIONS(5311), - [anon_sym_BSLASHref] = ACTIONS(5311), - [anon_sym_BSLASHeqref] = ACTIONS(5311), - [anon_sym_BSLASHvref] = ACTIONS(5311), - [anon_sym_BSLASHVref] = ACTIONS(5311), - [anon_sym_BSLASHautoref] = ACTIONS(5311), - [anon_sym_BSLASHpageref] = ACTIONS(5311), - [anon_sym_BSLASHcref] = ACTIONS(5311), - [anon_sym_BSLASHCref] = ACTIONS(5311), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnameCref] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5311), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5311), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5311), - [anon_sym_BSLASHlabelcref] = ACTIONS(5311), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange] = ACTIONS(5311), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHCrefrange] = ACTIONS(5311), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5309), - [anon_sym_BSLASHnewlabel] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand] = ACTIONS(5311), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5311), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5311), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5309), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5311), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5309), - [anon_sym_BSLASHdef] = ACTIONS(5311), - [anon_sym_BSLASHlet] = ACTIONS(5311), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5311), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5311), - [anon_sym_BSLASHgls] = ACTIONS(5311), - [anon_sym_BSLASHGls] = ACTIONS(5311), - [anon_sym_BSLASHGLS] = ACTIONS(5311), - [anon_sym_BSLASHglspl] = ACTIONS(5311), - [anon_sym_BSLASHGlspl] = ACTIONS(5311), - [anon_sym_BSLASHGLSpl] = ACTIONS(5311), - [anon_sym_BSLASHglsdisp] = ACTIONS(5311), - [anon_sym_BSLASHglslink] = ACTIONS(5311), - [anon_sym_BSLASHglstext] = ACTIONS(5311), - [anon_sym_BSLASHGlstext] = ACTIONS(5311), - [anon_sym_BSLASHGLStext] = ACTIONS(5311), - [anon_sym_BSLASHglsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5311), - [anon_sym_BSLASHglsplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSplural] = ACTIONS(5311), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5311), - [anon_sym_BSLASHglsname] = ACTIONS(5311), - [anon_sym_BSLASHGlsname] = ACTIONS(5311), - [anon_sym_BSLASHGLSname] = ACTIONS(5311), - [anon_sym_BSLASHglssymbol] = ACTIONS(5311), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5311), - [anon_sym_BSLASHglsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5311), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5311), - [anon_sym_BSLASHglsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5311), - [anon_sym_BSLASHglsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5311), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5311), - [anon_sym_BSLASHglsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5311), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5311), - [anon_sym_BSLASHglsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5311), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5311), - [anon_sym_BSLASHnewacronym] = ACTIONS(5311), - [anon_sym_BSLASHacrshort] = ACTIONS(5311), - [anon_sym_BSLASHAcrshort] = ACTIONS(5311), - [anon_sym_BSLASHACRshort] = ACTIONS(5311), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5311), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5311), - [anon_sym_BSLASHacrlong] = ACTIONS(5311), - [anon_sym_BSLASHAcrlong] = ACTIONS(5311), - [anon_sym_BSLASHACRlong] = ACTIONS(5311), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5311), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5311), - [anon_sym_BSLASHacrfull] = ACTIONS(5311), - [anon_sym_BSLASHAcrfull] = ACTIONS(5311), - [anon_sym_BSLASHACRfull] = ACTIONS(5311), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5311), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5311), - [anon_sym_BSLASHacs] = ACTIONS(5311), - [anon_sym_BSLASHAcs] = ACTIONS(5311), - [anon_sym_BSLASHacsp] = ACTIONS(5311), - [anon_sym_BSLASHAcsp] = ACTIONS(5311), - [anon_sym_BSLASHacl] = ACTIONS(5311), - [anon_sym_BSLASHAcl] = ACTIONS(5311), - [anon_sym_BSLASHaclp] = ACTIONS(5311), - [anon_sym_BSLASHAclp] = ACTIONS(5311), - [anon_sym_BSLASHacf] = ACTIONS(5311), - [anon_sym_BSLASHAcf] = ACTIONS(5311), - [anon_sym_BSLASHacfp] = ACTIONS(5311), - [anon_sym_BSLASHAcfp] = ACTIONS(5311), - [anon_sym_BSLASHac] = ACTIONS(5311), - [anon_sym_BSLASHAc] = ACTIONS(5311), - [anon_sym_BSLASHacp] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5311), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5311), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5311), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5311), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5311), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5311), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5311), - [anon_sym_BSLASHcolor] = ACTIONS(5311), - [anon_sym_BSLASHcolorbox] = ACTIONS(5311), - [anon_sym_BSLASHtextcolor] = ACTIONS(5311), - [anon_sym_BSLASHpagecolor] = ACTIONS(5311), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5311), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5311), + [anon_sym_BSLASHiffalse] = ACTIONS(4987), + [anon_sym_LPAREN] = ACTIONS(4985), + [anon_sym_RPAREN] = ACTIONS(4985), + [anon_sym_LBRACK] = ACTIONS(4985), + [anon_sym_RBRACK] = ACTIONS(4985), + [anon_sym_COMMA] = ACTIONS(4985), + [anon_sym_LBRACE] = ACTIONS(4985), + [anon_sym_RBRACE] = ACTIONS(4985), + [sym_word] = ACTIONS(4987), + [sym_placeholder] = ACTIONS(4985), + [anon_sym_PLUS] = ACTIONS(4987), + [anon_sym_DASH] = ACTIONS(4987), + [anon_sym_STAR] = ACTIONS(4987), + [anon_sym_SLASH] = ACTIONS(4987), + [anon_sym_CARET] = ACTIONS(4987), + [anon_sym__] = ACTIONS(4987), + [anon_sym_LT] = ACTIONS(4987), + [anon_sym_GT] = ACTIONS(4987), + [anon_sym_BANG] = ACTIONS(4987), + [anon_sym_PIPE] = ACTIONS(4987), + [anon_sym_COLON] = ACTIONS(4987), + [anon_sym_SQUOTE] = ACTIONS(4987), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(4987), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4985), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4985), + [anon_sym_BSLASHusepackage] = ACTIONS(4987), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4987), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4987), + [anon_sym_BSLASHinclude] = ACTIONS(4987), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4987), + [anon_sym_BSLASHinput] = ACTIONS(4987), + [anon_sym_BSLASHsubfile] = ACTIONS(4987), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4987), + [anon_sym_BSLASHbibliography] = ACTIONS(4987), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4987), + [anon_sym_BSLASHincludesvg] = ACTIONS(4987), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4987), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4987), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4987), + [anon_sym_BSLASHimport] = ACTIONS(4987), + [anon_sym_BSLASHsubimport] = ACTIONS(4987), + [anon_sym_BSLASHinputfrom] = ACTIONS(4987), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4987), + [anon_sym_BSLASHincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4987), + [anon_sym_BSLASHcaption] = ACTIONS(4987), + [anon_sym_BSLASHcite] = ACTIONS(4987), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCite] = ACTIONS(4987), + [anon_sym_BSLASHnocite] = ACTIONS(4987), + [anon_sym_BSLASHcitet] = ACTIONS(4987), + [anon_sym_BSLASHcitep] = ACTIONS(4987), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteauthor] = ACTIONS(4987), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4987), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitetitle] = ACTIONS(4987), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteyear] = ACTIONS(4987), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4985), + [anon_sym_BSLASHcitedate] = ACTIONS(4987), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4985), + [anon_sym_BSLASHciteurl] = ACTIONS(4987), + [anon_sym_BSLASHfullcite] = ACTIONS(4987), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4987), + [anon_sym_BSLASHcitealt] = ACTIONS(4987), + [anon_sym_BSLASHcitealp] = ACTIONS(4987), + [anon_sym_BSLASHcitetext] = ACTIONS(4987), + [anon_sym_BSLASHparencite] = ACTIONS(4987), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHParencite] = ACTIONS(4987), + [anon_sym_BSLASHfootcite] = ACTIONS(4987), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4987), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4987), + [anon_sym_BSLASHtextcite] = ACTIONS(4987), + [anon_sym_BSLASHTextcite] = ACTIONS(4987), + [anon_sym_BSLASHsmartcite] = ACTIONS(4987), + [anon_sym_BSLASHSmartcite] = ACTIONS(4987), + [anon_sym_BSLASHsupercite] = ACTIONS(4987), + [anon_sym_BSLASHautocite] = ACTIONS(4987), + [anon_sym_BSLASHAutocite] = ACTIONS(4987), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4985), + [anon_sym_BSLASHvolcite] = ACTIONS(4987), + [anon_sym_BSLASHVolcite] = ACTIONS(4987), + [anon_sym_BSLASHpvolcite] = ACTIONS(4987), + [anon_sym_BSLASHPvolcite] = ACTIONS(4987), + [anon_sym_BSLASHfvolcite] = ACTIONS(4987), + [anon_sym_BSLASHftvolcite] = ACTIONS(4987), + [anon_sym_BSLASHsvolcite] = ACTIONS(4987), + [anon_sym_BSLASHSvolcite] = ACTIONS(4987), + [anon_sym_BSLASHtvolcite] = ACTIONS(4987), + [anon_sym_BSLASHTvolcite] = ACTIONS(4987), + [anon_sym_BSLASHavolcite] = ACTIONS(4987), + [anon_sym_BSLASHAvolcite] = ACTIONS(4987), + [anon_sym_BSLASHnotecite] = ACTIONS(4987), + [anon_sym_BSLASHNotecite] = ACTIONS(4987), + [anon_sym_BSLASHpnotecite] = ACTIONS(4987), + [anon_sym_BSLASHPnotecite] = ACTIONS(4987), + [anon_sym_BSLASHfnotecite] = ACTIONS(4987), + [anon_sym_BSLASHlabel] = ACTIONS(4987), + [anon_sym_BSLASHref] = ACTIONS(4987), + [anon_sym_BSLASHeqref] = ACTIONS(4987), + [anon_sym_BSLASHvref] = ACTIONS(4987), + [anon_sym_BSLASHVref] = ACTIONS(4987), + [anon_sym_BSLASHautoref] = ACTIONS(4987), + [anon_sym_BSLASHpageref] = ACTIONS(4987), + [anon_sym_BSLASHcref] = ACTIONS(4987), + [anon_sym_BSLASHCref] = ACTIONS(4987), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnameCref] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4987), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4987), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4987), + [anon_sym_BSLASHlabelcref] = ACTIONS(4987), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange] = ACTIONS(4987), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHCrefrange] = ACTIONS(4987), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4985), + [anon_sym_BSLASHnewlabel] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand] = ACTIONS(4987), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4987), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4987), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4985), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4987), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4985), + [anon_sym_BSLASHdef] = ACTIONS(4987), + [anon_sym_BSLASHlet] = ACTIONS(4987), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4987), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4987), + [anon_sym_BSLASHgls] = ACTIONS(4987), + [anon_sym_BSLASHGls] = ACTIONS(4987), + [anon_sym_BSLASHGLS] = ACTIONS(4987), + [anon_sym_BSLASHglspl] = ACTIONS(4987), + [anon_sym_BSLASHGlspl] = ACTIONS(4987), + [anon_sym_BSLASHGLSpl] = ACTIONS(4987), + [anon_sym_BSLASHglsdisp] = ACTIONS(4987), + [anon_sym_BSLASHglslink] = ACTIONS(4987), + [anon_sym_BSLASHglstext] = ACTIONS(4987), + [anon_sym_BSLASHGlstext] = ACTIONS(4987), + [anon_sym_BSLASHGLStext] = ACTIONS(4987), + [anon_sym_BSLASHglsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4987), + [anon_sym_BSLASHglsplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSplural] = ACTIONS(4987), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4987), + [anon_sym_BSLASHglsname] = ACTIONS(4987), + [anon_sym_BSLASHGlsname] = ACTIONS(4987), + [anon_sym_BSLASHGLSname] = ACTIONS(4987), + [anon_sym_BSLASHglssymbol] = ACTIONS(4987), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4987), + [anon_sym_BSLASHglsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4987), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4987), + [anon_sym_BSLASHglsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4987), + [anon_sym_BSLASHglsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4987), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4987), + [anon_sym_BSLASHglsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4987), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4987), + [anon_sym_BSLASHglsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4987), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4987), + [anon_sym_BSLASHnewacronym] = ACTIONS(4987), + [anon_sym_BSLASHacrshort] = ACTIONS(4987), + [anon_sym_BSLASHAcrshort] = ACTIONS(4987), + [anon_sym_BSLASHACRshort] = ACTIONS(4987), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4987), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4987), + [anon_sym_BSLASHacrlong] = ACTIONS(4987), + [anon_sym_BSLASHAcrlong] = ACTIONS(4987), + [anon_sym_BSLASHACRlong] = ACTIONS(4987), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4987), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4987), + [anon_sym_BSLASHacrfull] = ACTIONS(4987), + [anon_sym_BSLASHAcrfull] = ACTIONS(4987), + [anon_sym_BSLASHACRfull] = ACTIONS(4987), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4987), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4987), + [anon_sym_BSLASHacs] = ACTIONS(4987), + [anon_sym_BSLASHAcs] = ACTIONS(4987), + [anon_sym_BSLASHacsp] = ACTIONS(4987), + [anon_sym_BSLASHAcsp] = ACTIONS(4987), + [anon_sym_BSLASHacl] = ACTIONS(4987), + [anon_sym_BSLASHAcl] = ACTIONS(4987), + [anon_sym_BSLASHaclp] = ACTIONS(4987), + [anon_sym_BSLASHAclp] = ACTIONS(4987), + [anon_sym_BSLASHacf] = ACTIONS(4987), + [anon_sym_BSLASHAcf] = ACTIONS(4987), + [anon_sym_BSLASHacfp] = ACTIONS(4987), + [anon_sym_BSLASHAcfp] = ACTIONS(4987), + [anon_sym_BSLASHac] = ACTIONS(4987), + [anon_sym_BSLASHAc] = ACTIONS(4987), + [anon_sym_BSLASHacp] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4987), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4987), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4987), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4987), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4987), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4987), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4987), + [anon_sym_BSLASHcolor] = ACTIONS(4987), + [anon_sym_BSLASHcolorbox] = ACTIONS(4987), + [anon_sym_BSLASHtextcolor] = ACTIONS(4987), + [anon_sym_BSLASHpagecolor] = ACTIONS(4987), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), + [anon_sym_BSLASHtext] = ACTIONS(4987), + [anon_sym_BSLASHintertext] = ACTIONS(4987), + [anon_sym_shortintertext] = ACTIONS(4987), }, - [1507] = { - [sym_command_name] = ACTIONS(4959), + [1463] = { + [sym_command_name] = ACTIONS(4983), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4959), - [anon_sym_RBRACK] = ACTIONS(4957), - [anon_sym_COMMA] = ACTIONS(4957), - [anon_sym_EQ] = ACTIONS(4957), - [anon_sym_RBRACE] = ACTIONS(4957), - [sym_word] = ACTIONS(4959), - [sym_placeholder] = ACTIONS(4957), - [anon_sym_PLUS] = ACTIONS(4959), - [anon_sym_DASH] = ACTIONS(4959), - [anon_sym_STAR] = ACTIONS(4959), - [anon_sym_SLASH] = ACTIONS(4959), - [anon_sym_CARET] = ACTIONS(4959), - [anon_sym__] = ACTIONS(4959), - [anon_sym_LT] = ACTIONS(4959), - [anon_sym_GT] = ACTIONS(4959), - [anon_sym_BANG] = ACTIONS(4959), - [anon_sym_PIPE] = ACTIONS(4959), - [anon_sym_COLON] = ACTIONS(4959), - [anon_sym_SQUOTE] = ACTIONS(4959), - [anon_sym_BSLASHusepackage] = ACTIONS(4959), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), - [anon_sym_BSLASHinclude] = ACTIONS(4959), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), - [anon_sym_BSLASHinput] = ACTIONS(4959), - [anon_sym_BSLASHsubfile] = ACTIONS(4959), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), - [anon_sym_BSLASHbibliography] = ACTIONS(4959), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), - [anon_sym_BSLASHincludesvg] = ACTIONS(4959), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), - [anon_sym_BSLASHimport] = ACTIONS(4959), - [anon_sym_BSLASHsubimport] = ACTIONS(4959), - [anon_sym_BSLASHinputfrom] = ACTIONS(4959), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), - [anon_sym_BSLASHincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), - [anon_sym_BSLASHcaption] = ACTIONS(4959), - [anon_sym_BSLASHcite] = ACTIONS(4959), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCite] = ACTIONS(4959), - [anon_sym_BSLASHnocite] = ACTIONS(4959), - [anon_sym_BSLASHcitet] = ACTIONS(4959), - [anon_sym_BSLASHcitep] = ACTIONS(4959), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteauthor] = ACTIONS(4959), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitetitle] = ACTIONS(4959), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteyear] = ACTIONS(4959), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), - [anon_sym_BSLASHcitedate] = ACTIONS(4959), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), - [anon_sym_BSLASHciteurl] = ACTIONS(4959), - [anon_sym_BSLASHfullcite] = ACTIONS(4959), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), - [anon_sym_BSLASHcitealt] = ACTIONS(4959), - [anon_sym_BSLASHcitealp] = ACTIONS(4959), - [anon_sym_BSLASHcitetext] = ACTIONS(4959), - [anon_sym_BSLASHparencite] = ACTIONS(4959), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHParencite] = ACTIONS(4959), - [anon_sym_BSLASHfootcite] = ACTIONS(4959), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), - [anon_sym_BSLASHtextcite] = ACTIONS(4959), - [anon_sym_BSLASHTextcite] = ACTIONS(4959), - [anon_sym_BSLASHsmartcite] = ACTIONS(4959), - [anon_sym_BSLASHSmartcite] = ACTIONS(4959), - [anon_sym_BSLASHsupercite] = ACTIONS(4959), - [anon_sym_BSLASHautocite] = ACTIONS(4959), - [anon_sym_BSLASHAutocite] = ACTIONS(4959), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), - [anon_sym_BSLASHvolcite] = ACTIONS(4959), - [anon_sym_BSLASHVolcite] = ACTIONS(4959), - [anon_sym_BSLASHpvolcite] = ACTIONS(4959), - [anon_sym_BSLASHPvolcite] = ACTIONS(4959), - [anon_sym_BSLASHfvolcite] = ACTIONS(4959), - [anon_sym_BSLASHftvolcite] = ACTIONS(4959), - [anon_sym_BSLASHsvolcite] = ACTIONS(4959), - [anon_sym_BSLASHSvolcite] = ACTIONS(4959), - [anon_sym_BSLASHtvolcite] = ACTIONS(4959), - [anon_sym_BSLASHTvolcite] = ACTIONS(4959), - [anon_sym_BSLASHavolcite] = ACTIONS(4959), - [anon_sym_BSLASHAvolcite] = ACTIONS(4959), - [anon_sym_BSLASHnotecite] = ACTIONS(4959), - [anon_sym_BSLASHNotecite] = ACTIONS(4959), - [anon_sym_BSLASHpnotecite] = ACTIONS(4959), - [anon_sym_BSLASHPnotecite] = ACTIONS(4959), - [anon_sym_BSLASHfnotecite] = ACTIONS(4959), - [anon_sym_BSLASHlabel] = ACTIONS(4959), - [anon_sym_BSLASHref] = ACTIONS(4959), - [anon_sym_BSLASHeqref] = ACTIONS(4959), - [anon_sym_BSLASHvref] = ACTIONS(4959), - [anon_sym_BSLASHVref] = ACTIONS(4959), - [anon_sym_BSLASHautoref] = ACTIONS(4959), - [anon_sym_BSLASHpageref] = ACTIONS(4959), - [anon_sym_BSLASHcref] = ACTIONS(4959), - [anon_sym_BSLASHCref] = ACTIONS(4959), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnameCref] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), - [anon_sym_BSLASHlabelcref] = ACTIONS(4959), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange] = ACTIONS(4959), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHCrefrange] = ACTIONS(4959), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), - [anon_sym_BSLASHnewlabel] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand] = ACTIONS(4959), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), - [anon_sym_BSLASHdef] = ACTIONS(4959), - [anon_sym_BSLASHlet] = ACTIONS(4959), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), - [anon_sym_BSLASHgls] = ACTIONS(4959), - [anon_sym_BSLASHGls] = ACTIONS(4959), - [anon_sym_BSLASHGLS] = ACTIONS(4959), - [anon_sym_BSLASHglspl] = ACTIONS(4959), - [anon_sym_BSLASHGlspl] = ACTIONS(4959), - [anon_sym_BSLASHGLSpl] = ACTIONS(4959), - [anon_sym_BSLASHglsdisp] = ACTIONS(4959), - [anon_sym_BSLASHglslink] = ACTIONS(4959), - [anon_sym_BSLASHglstext] = ACTIONS(4959), - [anon_sym_BSLASHGlstext] = ACTIONS(4959), - [anon_sym_BSLASHGLStext] = ACTIONS(4959), - [anon_sym_BSLASHglsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), - [anon_sym_BSLASHglsplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSplural] = ACTIONS(4959), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), - [anon_sym_BSLASHglsname] = ACTIONS(4959), - [anon_sym_BSLASHGlsname] = ACTIONS(4959), - [anon_sym_BSLASHGLSname] = ACTIONS(4959), - [anon_sym_BSLASHglssymbol] = ACTIONS(4959), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), - [anon_sym_BSLASHglsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), - [anon_sym_BSLASHglsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), - [anon_sym_BSLASHglsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), - [anon_sym_BSLASHglsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), - [anon_sym_BSLASHglsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), - [anon_sym_BSLASHnewacronym] = ACTIONS(4959), - [anon_sym_BSLASHacrshort] = ACTIONS(4959), - [anon_sym_BSLASHAcrshort] = ACTIONS(4959), - [anon_sym_BSLASHACRshort] = ACTIONS(4959), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), - [anon_sym_BSLASHacrlong] = ACTIONS(4959), - [anon_sym_BSLASHAcrlong] = ACTIONS(4959), - [anon_sym_BSLASHACRlong] = ACTIONS(4959), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), - [anon_sym_BSLASHacrfull] = ACTIONS(4959), - [anon_sym_BSLASHAcrfull] = ACTIONS(4959), - [anon_sym_BSLASHACRfull] = ACTIONS(4959), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), - [anon_sym_BSLASHacs] = ACTIONS(4959), - [anon_sym_BSLASHAcs] = ACTIONS(4959), - [anon_sym_BSLASHacsp] = ACTIONS(4959), - [anon_sym_BSLASHAcsp] = ACTIONS(4959), - [anon_sym_BSLASHacl] = ACTIONS(4959), - [anon_sym_BSLASHAcl] = ACTIONS(4959), - [anon_sym_BSLASHaclp] = ACTIONS(4959), - [anon_sym_BSLASHAclp] = ACTIONS(4959), - [anon_sym_BSLASHacf] = ACTIONS(4959), - [anon_sym_BSLASHAcf] = ACTIONS(4959), - [anon_sym_BSLASHacfp] = ACTIONS(4959), - [anon_sym_BSLASHAcfp] = ACTIONS(4959), - [anon_sym_BSLASHac] = ACTIONS(4959), - [anon_sym_BSLASHAc] = ACTIONS(4959), - [anon_sym_BSLASHacp] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), - [anon_sym_BSLASHcolor] = ACTIONS(4959), - [anon_sym_BSLASHcolorbox] = ACTIONS(4959), - [anon_sym_BSLASHtextcolor] = ACTIONS(4959), - [anon_sym_BSLASHpagecolor] = ACTIONS(4959), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHiffalse] = ACTIONS(4983), + [anon_sym_LPAREN] = ACTIONS(4981), + [anon_sym_RPAREN] = ACTIONS(4981), + [anon_sym_LBRACK] = ACTIONS(4981), + [anon_sym_RBRACK] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_LBRACE] = ACTIONS(4981), + [anon_sym_RBRACE] = ACTIONS(4981), + [sym_word] = ACTIONS(4983), + [sym_placeholder] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym__] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_SQUOTE] = ACTIONS(4983), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4981), + [anon_sym_DOLLAR] = ACTIONS(4983), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4981), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4981), + [anon_sym_BSLASHusepackage] = ACTIONS(4983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), + [anon_sym_BSLASHinclude] = ACTIONS(4983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), + [anon_sym_BSLASHinput] = ACTIONS(4983), + [anon_sym_BSLASHsubfile] = ACTIONS(4983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), + [anon_sym_BSLASHbibliography] = ACTIONS(4983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), + [anon_sym_BSLASHincludesvg] = ACTIONS(4983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), + [anon_sym_BSLASHimport] = ACTIONS(4983), + [anon_sym_BSLASHsubimport] = ACTIONS(4983), + [anon_sym_BSLASHinputfrom] = ACTIONS(4983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), + [anon_sym_BSLASHincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHcaption] = ACTIONS(4983), + [anon_sym_BSLASHcite] = ACTIONS(4983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCite] = ACTIONS(4983), + [anon_sym_BSLASHnocite] = ACTIONS(4983), + [anon_sym_BSLASHcitet] = ACTIONS(4983), + [anon_sym_BSLASHcitep] = ACTIONS(4983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteauthor] = ACTIONS(4983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitetitle] = ACTIONS(4983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteyear] = ACTIONS(4983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitedate] = ACTIONS(4983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteurl] = ACTIONS(4983), + [anon_sym_BSLASHfullcite] = ACTIONS(4983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), + [anon_sym_BSLASHcitealt] = ACTIONS(4983), + [anon_sym_BSLASHcitealp] = ACTIONS(4983), + [anon_sym_BSLASHcitetext] = ACTIONS(4983), + [anon_sym_BSLASHparencite] = ACTIONS(4983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHParencite] = ACTIONS(4983), + [anon_sym_BSLASHfootcite] = ACTIONS(4983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), + [anon_sym_BSLASHtextcite] = ACTIONS(4983), + [anon_sym_BSLASHTextcite] = ACTIONS(4983), + [anon_sym_BSLASHsmartcite] = ACTIONS(4983), + [anon_sym_BSLASHSmartcite] = ACTIONS(4983), + [anon_sym_BSLASHsupercite] = ACTIONS(4983), + [anon_sym_BSLASHautocite] = ACTIONS(4983), + [anon_sym_BSLASHAutocite] = ACTIONS(4983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHvolcite] = ACTIONS(4983), + [anon_sym_BSLASHVolcite] = ACTIONS(4983), + [anon_sym_BSLASHpvolcite] = ACTIONS(4983), + [anon_sym_BSLASHPvolcite] = ACTIONS(4983), + [anon_sym_BSLASHfvolcite] = ACTIONS(4983), + [anon_sym_BSLASHftvolcite] = ACTIONS(4983), + [anon_sym_BSLASHsvolcite] = ACTIONS(4983), + [anon_sym_BSLASHSvolcite] = ACTIONS(4983), + [anon_sym_BSLASHtvolcite] = ACTIONS(4983), + [anon_sym_BSLASHTvolcite] = ACTIONS(4983), + [anon_sym_BSLASHavolcite] = ACTIONS(4983), + [anon_sym_BSLASHAvolcite] = ACTIONS(4983), + [anon_sym_BSLASHnotecite] = ACTIONS(4983), + [anon_sym_BSLASHNotecite] = ACTIONS(4983), + [anon_sym_BSLASHpnotecite] = ACTIONS(4983), + [anon_sym_BSLASHPnotecite] = ACTIONS(4983), + [anon_sym_BSLASHfnotecite] = ACTIONS(4983), + [anon_sym_BSLASHlabel] = ACTIONS(4983), + [anon_sym_BSLASHref] = ACTIONS(4983), + [anon_sym_BSLASHeqref] = ACTIONS(4983), + [anon_sym_BSLASHvref] = ACTIONS(4983), + [anon_sym_BSLASHVref] = ACTIONS(4983), + [anon_sym_BSLASHautoref] = ACTIONS(4983), + [anon_sym_BSLASHpageref] = ACTIONS(4983), + [anon_sym_BSLASHcref] = ACTIONS(4983), + [anon_sym_BSLASHCref] = ACTIONS(4983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnameCref] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHlabelcref] = ACTIONS(4983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCrefrange] = ACTIONS(4983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnewlabel] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), + [anon_sym_BSLASHdef] = ACTIONS(4983), + [anon_sym_BSLASHlet] = ACTIONS(4983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), + [anon_sym_BSLASHgls] = ACTIONS(4983), + [anon_sym_BSLASHGls] = ACTIONS(4983), + [anon_sym_BSLASHGLS] = ACTIONS(4983), + [anon_sym_BSLASHglspl] = ACTIONS(4983), + [anon_sym_BSLASHGlspl] = ACTIONS(4983), + [anon_sym_BSLASHGLSpl] = ACTIONS(4983), + [anon_sym_BSLASHglsdisp] = ACTIONS(4983), + [anon_sym_BSLASHglslink] = ACTIONS(4983), + [anon_sym_BSLASHglstext] = ACTIONS(4983), + [anon_sym_BSLASHGlstext] = ACTIONS(4983), + [anon_sym_BSLASHGLStext] = ACTIONS(4983), + [anon_sym_BSLASHglsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), + [anon_sym_BSLASHglsplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSplural] = ACTIONS(4983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHglsname] = ACTIONS(4983), + [anon_sym_BSLASHGlsname] = ACTIONS(4983), + [anon_sym_BSLASHGLSname] = ACTIONS(4983), + [anon_sym_BSLASHglssymbol] = ACTIONS(4983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), + [anon_sym_BSLASHglsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), + [anon_sym_BSLASHglsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), + [anon_sym_BSLASHglsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), + [anon_sym_BSLASHglsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), + [anon_sym_BSLASHglsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), + [anon_sym_BSLASHnewacronym] = ACTIONS(4983), + [anon_sym_BSLASHacrshort] = ACTIONS(4983), + [anon_sym_BSLASHAcrshort] = ACTIONS(4983), + [anon_sym_BSLASHACRshort] = ACTIONS(4983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), + [anon_sym_BSLASHacrlong] = ACTIONS(4983), + [anon_sym_BSLASHAcrlong] = ACTIONS(4983), + [anon_sym_BSLASHACRlong] = ACTIONS(4983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), + [anon_sym_BSLASHacrfull] = ACTIONS(4983), + [anon_sym_BSLASHAcrfull] = ACTIONS(4983), + [anon_sym_BSLASHACRfull] = ACTIONS(4983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), + [anon_sym_BSLASHacs] = ACTIONS(4983), + [anon_sym_BSLASHAcs] = ACTIONS(4983), + [anon_sym_BSLASHacsp] = ACTIONS(4983), + [anon_sym_BSLASHAcsp] = ACTIONS(4983), + [anon_sym_BSLASHacl] = ACTIONS(4983), + [anon_sym_BSLASHAcl] = ACTIONS(4983), + [anon_sym_BSLASHaclp] = ACTIONS(4983), + [anon_sym_BSLASHAclp] = ACTIONS(4983), + [anon_sym_BSLASHacf] = ACTIONS(4983), + [anon_sym_BSLASHAcf] = ACTIONS(4983), + [anon_sym_BSLASHacfp] = ACTIONS(4983), + [anon_sym_BSLASHAcfp] = ACTIONS(4983), + [anon_sym_BSLASHac] = ACTIONS(4983), + [anon_sym_BSLASHAc] = ACTIONS(4983), + [anon_sym_BSLASHacp] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), + [anon_sym_BSLASHcolor] = ACTIONS(4983), + [anon_sym_BSLASHcolorbox] = ACTIONS(4983), + [anon_sym_BSLASHtextcolor] = ACTIONS(4983), + [anon_sym_BSLASHpagecolor] = ACTIONS(4983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), + [anon_sym_BSLASHtext] = ACTIONS(4983), + [anon_sym_BSLASHintertext] = ACTIONS(4983), + [anon_sym_shortintertext] = ACTIONS(4983), }, - [1508] = { - [sym_command_name] = ACTIONS(4953), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4953), - [anon_sym_RBRACK] = ACTIONS(4951), - [anon_sym_COMMA] = ACTIONS(4951), - [anon_sym_EQ] = ACTIONS(4951), - [anon_sym_RBRACE] = ACTIONS(4951), - [sym_word] = ACTIONS(4953), - [sym_placeholder] = ACTIONS(4951), - [anon_sym_PLUS] = ACTIONS(4953), - [anon_sym_DASH] = ACTIONS(4953), - [anon_sym_STAR] = ACTIONS(4953), - [anon_sym_SLASH] = ACTIONS(4953), - [anon_sym_CARET] = ACTIONS(4953), - [anon_sym__] = ACTIONS(4953), - [anon_sym_LT] = ACTIONS(4953), - [anon_sym_GT] = ACTIONS(4953), - [anon_sym_BANG] = ACTIONS(4953), - [anon_sym_PIPE] = ACTIONS(4953), - [anon_sym_COLON] = ACTIONS(4953), - [anon_sym_SQUOTE] = ACTIONS(4953), - [anon_sym_BSLASHusepackage] = ACTIONS(4953), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4953), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4953), - [anon_sym_BSLASHinclude] = ACTIONS(4953), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4953), - [anon_sym_BSLASHinput] = ACTIONS(4953), - [anon_sym_BSLASHsubfile] = ACTIONS(4953), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4953), - [anon_sym_BSLASHbibliography] = ACTIONS(4953), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4953), - [anon_sym_BSLASHincludesvg] = ACTIONS(4953), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4953), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4953), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4953), - [anon_sym_BSLASHimport] = ACTIONS(4953), - [anon_sym_BSLASHsubimport] = ACTIONS(4953), - [anon_sym_BSLASHinputfrom] = ACTIONS(4953), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4953), - [anon_sym_BSLASHincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4953), - [anon_sym_BSLASHcaption] = ACTIONS(4953), - [anon_sym_BSLASHcite] = ACTIONS(4953), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCite] = ACTIONS(4953), - [anon_sym_BSLASHnocite] = ACTIONS(4953), - [anon_sym_BSLASHcitet] = ACTIONS(4953), - [anon_sym_BSLASHcitep] = ACTIONS(4953), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteauthor] = ACTIONS(4953), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4953), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitetitle] = ACTIONS(4953), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteyear] = ACTIONS(4953), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4951), - [anon_sym_BSLASHcitedate] = ACTIONS(4953), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4951), - [anon_sym_BSLASHciteurl] = ACTIONS(4953), - [anon_sym_BSLASHfullcite] = ACTIONS(4953), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4953), - [anon_sym_BSLASHcitealt] = ACTIONS(4953), - [anon_sym_BSLASHcitealp] = ACTIONS(4953), - [anon_sym_BSLASHcitetext] = ACTIONS(4953), - [anon_sym_BSLASHparencite] = ACTIONS(4953), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHParencite] = ACTIONS(4953), - [anon_sym_BSLASHfootcite] = ACTIONS(4953), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4953), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4953), - [anon_sym_BSLASHtextcite] = ACTIONS(4953), - [anon_sym_BSLASHTextcite] = ACTIONS(4953), - [anon_sym_BSLASHsmartcite] = ACTIONS(4953), - [anon_sym_BSLASHSmartcite] = ACTIONS(4953), - [anon_sym_BSLASHsupercite] = ACTIONS(4953), - [anon_sym_BSLASHautocite] = ACTIONS(4953), - [anon_sym_BSLASHAutocite] = ACTIONS(4953), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4951), - [anon_sym_BSLASHvolcite] = ACTIONS(4953), - [anon_sym_BSLASHVolcite] = ACTIONS(4953), - [anon_sym_BSLASHpvolcite] = ACTIONS(4953), - [anon_sym_BSLASHPvolcite] = ACTIONS(4953), - [anon_sym_BSLASHfvolcite] = ACTIONS(4953), - [anon_sym_BSLASHftvolcite] = ACTIONS(4953), - [anon_sym_BSLASHsvolcite] = ACTIONS(4953), - [anon_sym_BSLASHSvolcite] = ACTIONS(4953), - [anon_sym_BSLASHtvolcite] = ACTIONS(4953), - [anon_sym_BSLASHTvolcite] = ACTIONS(4953), - [anon_sym_BSLASHavolcite] = ACTIONS(4953), - [anon_sym_BSLASHAvolcite] = ACTIONS(4953), - [anon_sym_BSLASHnotecite] = ACTIONS(4953), - [anon_sym_BSLASHNotecite] = ACTIONS(4953), - [anon_sym_BSLASHpnotecite] = ACTIONS(4953), - [anon_sym_BSLASHPnotecite] = ACTIONS(4953), - [anon_sym_BSLASHfnotecite] = ACTIONS(4953), - [anon_sym_BSLASHlabel] = ACTIONS(4953), - [anon_sym_BSLASHref] = ACTIONS(4953), - [anon_sym_BSLASHeqref] = ACTIONS(4953), - [anon_sym_BSLASHvref] = ACTIONS(4953), - [anon_sym_BSLASHVref] = ACTIONS(4953), - [anon_sym_BSLASHautoref] = ACTIONS(4953), - [anon_sym_BSLASHpageref] = ACTIONS(4953), - [anon_sym_BSLASHcref] = ACTIONS(4953), - [anon_sym_BSLASHCref] = ACTIONS(4953), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnameCref] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4953), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4953), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4953), - [anon_sym_BSLASHlabelcref] = ACTIONS(4953), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange] = ACTIONS(4953), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHCrefrange] = ACTIONS(4953), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4951), - [anon_sym_BSLASHnewlabel] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand] = ACTIONS(4953), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4953), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4953), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4951), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4953), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4951), - [anon_sym_BSLASHdef] = ACTIONS(4953), - [anon_sym_BSLASHlet] = ACTIONS(4953), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4953), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4953), - [anon_sym_BSLASHgls] = ACTIONS(4953), - [anon_sym_BSLASHGls] = ACTIONS(4953), - [anon_sym_BSLASHGLS] = ACTIONS(4953), - [anon_sym_BSLASHglspl] = ACTIONS(4953), - [anon_sym_BSLASHGlspl] = ACTIONS(4953), - [anon_sym_BSLASHGLSpl] = ACTIONS(4953), - [anon_sym_BSLASHglsdisp] = ACTIONS(4953), - [anon_sym_BSLASHglslink] = ACTIONS(4953), - [anon_sym_BSLASHglstext] = ACTIONS(4953), - [anon_sym_BSLASHGlstext] = ACTIONS(4953), - [anon_sym_BSLASHGLStext] = ACTIONS(4953), - [anon_sym_BSLASHglsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4953), - [anon_sym_BSLASHglsplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSplural] = ACTIONS(4953), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4953), - [anon_sym_BSLASHglsname] = ACTIONS(4953), - [anon_sym_BSLASHGlsname] = ACTIONS(4953), - [anon_sym_BSLASHGLSname] = ACTIONS(4953), - [anon_sym_BSLASHglssymbol] = ACTIONS(4953), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4953), - [anon_sym_BSLASHglsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4953), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4953), - [anon_sym_BSLASHglsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4953), - [anon_sym_BSLASHglsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4953), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4953), - [anon_sym_BSLASHglsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4953), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4953), - [anon_sym_BSLASHglsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4953), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4953), - [anon_sym_BSLASHnewacronym] = ACTIONS(4953), - [anon_sym_BSLASHacrshort] = ACTIONS(4953), - [anon_sym_BSLASHAcrshort] = ACTIONS(4953), - [anon_sym_BSLASHACRshort] = ACTIONS(4953), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4953), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4953), - [anon_sym_BSLASHacrlong] = ACTIONS(4953), - [anon_sym_BSLASHAcrlong] = ACTIONS(4953), - [anon_sym_BSLASHACRlong] = ACTIONS(4953), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4953), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4953), - [anon_sym_BSLASHacrfull] = ACTIONS(4953), - [anon_sym_BSLASHAcrfull] = ACTIONS(4953), - [anon_sym_BSLASHACRfull] = ACTIONS(4953), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4953), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4953), - [anon_sym_BSLASHacs] = ACTIONS(4953), - [anon_sym_BSLASHAcs] = ACTIONS(4953), - [anon_sym_BSLASHacsp] = ACTIONS(4953), - [anon_sym_BSLASHAcsp] = ACTIONS(4953), - [anon_sym_BSLASHacl] = ACTIONS(4953), - [anon_sym_BSLASHAcl] = ACTIONS(4953), - [anon_sym_BSLASHaclp] = ACTIONS(4953), - [anon_sym_BSLASHAclp] = ACTIONS(4953), - [anon_sym_BSLASHacf] = ACTIONS(4953), - [anon_sym_BSLASHAcf] = ACTIONS(4953), - [anon_sym_BSLASHacfp] = ACTIONS(4953), - [anon_sym_BSLASHAcfp] = ACTIONS(4953), - [anon_sym_BSLASHac] = ACTIONS(4953), - [anon_sym_BSLASHAc] = ACTIONS(4953), - [anon_sym_BSLASHacp] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4953), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4953), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4953), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4953), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4953), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4953), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4953), - [anon_sym_BSLASHcolor] = ACTIONS(4953), - [anon_sym_BSLASHcolorbox] = ACTIONS(4953), - [anon_sym_BSLASHtextcolor] = ACTIONS(4953), - [anon_sym_BSLASHpagecolor] = ACTIONS(4953), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4953), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4953), + [1464] = { + [sym_command_name] = ACTIONS(4973), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4971), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), + [anon_sym_RBRACK] = ACTIONS(4971), + [anon_sym_COMMA] = ACTIONS(4971), + [anon_sym_LBRACE] = ACTIONS(4971), + [anon_sym_RBRACE] = ACTIONS(4971), + [sym_word] = ACTIONS(4973), + [sym_placeholder] = ACTIONS(4971), + [anon_sym_PLUS] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym__] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4973), + [anon_sym_GT] = ACTIONS(4973), + [anon_sym_BANG] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_SQUOTE] = ACTIONS(4973), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4971), + [anon_sym_DOLLAR] = ACTIONS(4973), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4971), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4971), + [anon_sym_BSLASHusepackage] = ACTIONS(4973), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), + [anon_sym_BSLASHinclude] = ACTIONS(4973), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), + [anon_sym_BSLASHinput] = ACTIONS(4973), + [anon_sym_BSLASHsubfile] = ACTIONS(4973), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), + [anon_sym_BSLASHbibliography] = ACTIONS(4973), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), + [anon_sym_BSLASHincludesvg] = ACTIONS(4973), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), + [anon_sym_BSLASHimport] = ACTIONS(4973), + [anon_sym_BSLASHsubimport] = ACTIONS(4973), + [anon_sym_BSLASHinputfrom] = ACTIONS(4973), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), + [anon_sym_BSLASHincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHcaption] = ACTIONS(4973), + [anon_sym_BSLASHcite] = ACTIONS(4973), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCite] = ACTIONS(4973), + [anon_sym_BSLASHnocite] = ACTIONS(4973), + [anon_sym_BSLASHcitet] = ACTIONS(4973), + [anon_sym_BSLASHcitep] = ACTIONS(4973), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteauthor] = ACTIONS(4973), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitetitle] = ACTIONS(4973), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteyear] = ACTIONS(4973), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitedate] = ACTIONS(4973), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteurl] = ACTIONS(4973), + [anon_sym_BSLASHfullcite] = ACTIONS(4973), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), + [anon_sym_BSLASHcitealt] = ACTIONS(4973), + [anon_sym_BSLASHcitealp] = ACTIONS(4973), + [anon_sym_BSLASHcitetext] = ACTIONS(4973), + [anon_sym_BSLASHparencite] = ACTIONS(4973), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHParencite] = ACTIONS(4973), + [anon_sym_BSLASHfootcite] = ACTIONS(4973), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), + [anon_sym_BSLASHtextcite] = ACTIONS(4973), + [anon_sym_BSLASHTextcite] = ACTIONS(4973), + [anon_sym_BSLASHsmartcite] = ACTIONS(4973), + [anon_sym_BSLASHSmartcite] = ACTIONS(4973), + [anon_sym_BSLASHsupercite] = ACTIONS(4973), + [anon_sym_BSLASHautocite] = ACTIONS(4973), + [anon_sym_BSLASHAutocite] = ACTIONS(4973), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHvolcite] = ACTIONS(4973), + [anon_sym_BSLASHVolcite] = ACTIONS(4973), + [anon_sym_BSLASHpvolcite] = ACTIONS(4973), + [anon_sym_BSLASHPvolcite] = ACTIONS(4973), + [anon_sym_BSLASHfvolcite] = ACTIONS(4973), + [anon_sym_BSLASHftvolcite] = ACTIONS(4973), + [anon_sym_BSLASHsvolcite] = ACTIONS(4973), + [anon_sym_BSLASHSvolcite] = ACTIONS(4973), + [anon_sym_BSLASHtvolcite] = ACTIONS(4973), + [anon_sym_BSLASHTvolcite] = ACTIONS(4973), + [anon_sym_BSLASHavolcite] = ACTIONS(4973), + [anon_sym_BSLASHAvolcite] = ACTIONS(4973), + [anon_sym_BSLASHnotecite] = ACTIONS(4973), + [anon_sym_BSLASHNotecite] = ACTIONS(4973), + [anon_sym_BSLASHpnotecite] = ACTIONS(4973), + [anon_sym_BSLASHPnotecite] = ACTIONS(4973), + [anon_sym_BSLASHfnotecite] = ACTIONS(4973), + [anon_sym_BSLASHlabel] = ACTIONS(4973), + [anon_sym_BSLASHref] = ACTIONS(4973), + [anon_sym_BSLASHeqref] = ACTIONS(4973), + [anon_sym_BSLASHvref] = ACTIONS(4973), + [anon_sym_BSLASHVref] = ACTIONS(4973), + [anon_sym_BSLASHautoref] = ACTIONS(4973), + [anon_sym_BSLASHpageref] = ACTIONS(4973), + [anon_sym_BSLASHcref] = ACTIONS(4973), + [anon_sym_BSLASHCref] = ACTIONS(4973), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnameCref] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHlabelcref] = ACTIONS(4973), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCrefrange] = ACTIONS(4973), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnewlabel] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), + [anon_sym_BSLASHdef] = ACTIONS(4973), + [anon_sym_BSLASHlet] = ACTIONS(4973), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), + [anon_sym_BSLASHgls] = ACTIONS(4973), + [anon_sym_BSLASHGls] = ACTIONS(4973), + [anon_sym_BSLASHGLS] = ACTIONS(4973), + [anon_sym_BSLASHglspl] = ACTIONS(4973), + [anon_sym_BSLASHGlspl] = ACTIONS(4973), + [anon_sym_BSLASHGLSpl] = ACTIONS(4973), + [anon_sym_BSLASHglsdisp] = ACTIONS(4973), + [anon_sym_BSLASHglslink] = ACTIONS(4973), + [anon_sym_BSLASHglstext] = ACTIONS(4973), + [anon_sym_BSLASHGlstext] = ACTIONS(4973), + [anon_sym_BSLASHGLStext] = ACTIONS(4973), + [anon_sym_BSLASHglsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), + [anon_sym_BSLASHglsplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSplural] = ACTIONS(4973), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHglsname] = ACTIONS(4973), + [anon_sym_BSLASHGlsname] = ACTIONS(4973), + [anon_sym_BSLASHGLSname] = ACTIONS(4973), + [anon_sym_BSLASHglssymbol] = ACTIONS(4973), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), + [anon_sym_BSLASHglsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), + [anon_sym_BSLASHglsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), + [anon_sym_BSLASHglsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), + [anon_sym_BSLASHglsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), + [anon_sym_BSLASHglsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), + [anon_sym_BSLASHnewacronym] = ACTIONS(4973), + [anon_sym_BSLASHacrshort] = ACTIONS(4973), + [anon_sym_BSLASHAcrshort] = ACTIONS(4973), + [anon_sym_BSLASHACRshort] = ACTIONS(4973), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), + [anon_sym_BSLASHacrlong] = ACTIONS(4973), + [anon_sym_BSLASHAcrlong] = ACTIONS(4973), + [anon_sym_BSLASHACRlong] = ACTIONS(4973), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), + [anon_sym_BSLASHacrfull] = ACTIONS(4973), + [anon_sym_BSLASHAcrfull] = ACTIONS(4973), + [anon_sym_BSLASHACRfull] = ACTIONS(4973), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), + [anon_sym_BSLASHacs] = ACTIONS(4973), + [anon_sym_BSLASHAcs] = ACTIONS(4973), + [anon_sym_BSLASHacsp] = ACTIONS(4973), + [anon_sym_BSLASHAcsp] = ACTIONS(4973), + [anon_sym_BSLASHacl] = ACTIONS(4973), + [anon_sym_BSLASHAcl] = ACTIONS(4973), + [anon_sym_BSLASHaclp] = ACTIONS(4973), + [anon_sym_BSLASHAclp] = ACTIONS(4973), + [anon_sym_BSLASHacf] = ACTIONS(4973), + [anon_sym_BSLASHAcf] = ACTIONS(4973), + [anon_sym_BSLASHacfp] = ACTIONS(4973), + [anon_sym_BSLASHAcfp] = ACTIONS(4973), + [anon_sym_BSLASHac] = ACTIONS(4973), + [anon_sym_BSLASHAc] = ACTIONS(4973), + [anon_sym_BSLASHacp] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), + [anon_sym_BSLASHcolor] = ACTIONS(4973), + [anon_sym_BSLASHcolorbox] = ACTIONS(4973), + [anon_sym_BSLASHtextcolor] = ACTIONS(4973), + [anon_sym_BSLASHpagecolor] = ACTIONS(4973), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), + [anon_sym_BSLASHtext] = ACTIONS(4973), + [anon_sym_BSLASHintertext] = ACTIONS(4973), + [anon_sym_shortintertext] = ACTIONS(4973), }, - [1509] = { - [sym_command_name] = ACTIONS(5317), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5317), - [anon_sym_RBRACK] = ACTIONS(5315), - [anon_sym_COMMA] = ACTIONS(5315), - [anon_sym_EQ] = ACTIONS(5315), - [anon_sym_RBRACE] = ACTIONS(5315), - [sym_word] = ACTIONS(5317), - [sym_placeholder] = ACTIONS(5315), - [anon_sym_PLUS] = ACTIONS(5317), - [anon_sym_DASH] = ACTIONS(5317), - [anon_sym_STAR] = ACTIONS(5317), - [anon_sym_SLASH] = ACTIONS(5317), - [anon_sym_CARET] = ACTIONS(5317), - [anon_sym__] = ACTIONS(5317), - [anon_sym_LT] = ACTIONS(5317), - [anon_sym_GT] = ACTIONS(5317), - [anon_sym_BANG] = ACTIONS(5317), - [anon_sym_PIPE] = ACTIONS(5317), - [anon_sym_COLON] = ACTIONS(5317), - [anon_sym_SQUOTE] = ACTIONS(5317), - [anon_sym_BSLASHusepackage] = ACTIONS(5317), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5317), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5317), - [anon_sym_BSLASHinclude] = ACTIONS(5317), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5317), - [anon_sym_BSLASHinput] = ACTIONS(5317), - [anon_sym_BSLASHsubfile] = ACTIONS(5317), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5317), - [anon_sym_BSLASHbibliography] = ACTIONS(5317), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5317), - [anon_sym_BSLASHincludesvg] = ACTIONS(5317), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5317), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5317), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5317), - [anon_sym_BSLASHimport] = ACTIONS(5317), - [anon_sym_BSLASHsubimport] = ACTIONS(5317), - [anon_sym_BSLASHinputfrom] = ACTIONS(5317), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5317), - [anon_sym_BSLASHincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5317), - [anon_sym_BSLASHcaption] = ACTIONS(5317), - [anon_sym_BSLASHcite] = ACTIONS(5317), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCite] = ACTIONS(5317), - [anon_sym_BSLASHnocite] = ACTIONS(5317), - [anon_sym_BSLASHcitet] = ACTIONS(5317), - [anon_sym_BSLASHcitep] = ACTIONS(5317), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteauthor] = ACTIONS(5317), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5317), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitetitle] = ACTIONS(5317), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteyear] = ACTIONS(5317), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5315), - [anon_sym_BSLASHcitedate] = ACTIONS(5317), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5315), - [anon_sym_BSLASHciteurl] = ACTIONS(5317), - [anon_sym_BSLASHfullcite] = ACTIONS(5317), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5317), - [anon_sym_BSLASHcitealt] = ACTIONS(5317), - [anon_sym_BSLASHcitealp] = ACTIONS(5317), - [anon_sym_BSLASHcitetext] = ACTIONS(5317), - [anon_sym_BSLASHparencite] = ACTIONS(5317), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHParencite] = ACTIONS(5317), - [anon_sym_BSLASHfootcite] = ACTIONS(5317), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5317), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5317), - [anon_sym_BSLASHtextcite] = ACTIONS(5317), - [anon_sym_BSLASHTextcite] = ACTIONS(5317), - [anon_sym_BSLASHsmartcite] = ACTIONS(5317), - [anon_sym_BSLASHSmartcite] = ACTIONS(5317), - [anon_sym_BSLASHsupercite] = ACTIONS(5317), - [anon_sym_BSLASHautocite] = ACTIONS(5317), - [anon_sym_BSLASHAutocite] = ACTIONS(5317), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5315), - [anon_sym_BSLASHvolcite] = ACTIONS(5317), - [anon_sym_BSLASHVolcite] = ACTIONS(5317), - [anon_sym_BSLASHpvolcite] = ACTIONS(5317), - [anon_sym_BSLASHPvolcite] = ACTIONS(5317), - [anon_sym_BSLASHfvolcite] = ACTIONS(5317), - [anon_sym_BSLASHftvolcite] = ACTIONS(5317), - [anon_sym_BSLASHsvolcite] = ACTIONS(5317), - [anon_sym_BSLASHSvolcite] = ACTIONS(5317), - [anon_sym_BSLASHtvolcite] = ACTIONS(5317), - [anon_sym_BSLASHTvolcite] = ACTIONS(5317), - [anon_sym_BSLASHavolcite] = ACTIONS(5317), - [anon_sym_BSLASHAvolcite] = ACTIONS(5317), - [anon_sym_BSLASHnotecite] = ACTIONS(5317), - [anon_sym_BSLASHNotecite] = ACTIONS(5317), - [anon_sym_BSLASHpnotecite] = ACTIONS(5317), - [anon_sym_BSLASHPnotecite] = ACTIONS(5317), - [anon_sym_BSLASHfnotecite] = ACTIONS(5317), - [anon_sym_BSLASHlabel] = ACTIONS(5317), - [anon_sym_BSLASHref] = ACTIONS(5317), - [anon_sym_BSLASHeqref] = ACTIONS(5317), - [anon_sym_BSLASHvref] = ACTIONS(5317), - [anon_sym_BSLASHVref] = ACTIONS(5317), - [anon_sym_BSLASHautoref] = ACTIONS(5317), - [anon_sym_BSLASHpageref] = ACTIONS(5317), - [anon_sym_BSLASHcref] = ACTIONS(5317), - [anon_sym_BSLASHCref] = ACTIONS(5317), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnameCref] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5317), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5317), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5317), - [anon_sym_BSLASHlabelcref] = ACTIONS(5317), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange] = ACTIONS(5317), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHCrefrange] = ACTIONS(5317), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5315), - [anon_sym_BSLASHnewlabel] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand] = ACTIONS(5317), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5317), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5317), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5315), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5317), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5315), - [anon_sym_BSLASHdef] = ACTIONS(5317), - [anon_sym_BSLASHlet] = ACTIONS(5317), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5317), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5317), - [anon_sym_BSLASHgls] = ACTIONS(5317), - [anon_sym_BSLASHGls] = ACTIONS(5317), - [anon_sym_BSLASHGLS] = ACTIONS(5317), - [anon_sym_BSLASHglspl] = ACTIONS(5317), - [anon_sym_BSLASHGlspl] = ACTIONS(5317), - [anon_sym_BSLASHGLSpl] = ACTIONS(5317), - [anon_sym_BSLASHglsdisp] = ACTIONS(5317), - [anon_sym_BSLASHglslink] = ACTIONS(5317), - [anon_sym_BSLASHglstext] = ACTIONS(5317), - [anon_sym_BSLASHGlstext] = ACTIONS(5317), - [anon_sym_BSLASHGLStext] = ACTIONS(5317), - [anon_sym_BSLASHglsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5317), - [anon_sym_BSLASHglsplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSplural] = ACTIONS(5317), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5317), - [anon_sym_BSLASHglsname] = ACTIONS(5317), - [anon_sym_BSLASHGlsname] = ACTIONS(5317), - [anon_sym_BSLASHGLSname] = ACTIONS(5317), - [anon_sym_BSLASHglssymbol] = ACTIONS(5317), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5317), - [anon_sym_BSLASHglsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5317), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5317), - [anon_sym_BSLASHglsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5317), - [anon_sym_BSLASHglsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5317), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5317), - [anon_sym_BSLASHglsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5317), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5317), - [anon_sym_BSLASHglsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5317), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5317), - [anon_sym_BSLASHnewacronym] = ACTIONS(5317), - [anon_sym_BSLASHacrshort] = ACTIONS(5317), - [anon_sym_BSLASHAcrshort] = ACTIONS(5317), - [anon_sym_BSLASHACRshort] = ACTIONS(5317), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5317), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5317), - [anon_sym_BSLASHacrlong] = ACTIONS(5317), - [anon_sym_BSLASHAcrlong] = ACTIONS(5317), - [anon_sym_BSLASHACRlong] = ACTIONS(5317), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5317), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5317), - [anon_sym_BSLASHacrfull] = ACTIONS(5317), - [anon_sym_BSLASHAcrfull] = ACTIONS(5317), - [anon_sym_BSLASHACRfull] = ACTIONS(5317), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5317), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5317), - [anon_sym_BSLASHacs] = ACTIONS(5317), - [anon_sym_BSLASHAcs] = ACTIONS(5317), - [anon_sym_BSLASHacsp] = ACTIONS(5317), - [anon_sym_BSLASHAcsp] = ACTIONS(5317), - [anon_sym_BSLASHacl] = ACTIONS(5317), - [anon_sym_BSLASHAcl] = ACTIONS(5317), - [anon_sym_BSLASHaclp] = ACTIONS(5317), - [anon_sym_BSLASHAclp] = ACTIONS(5317), - [anon_sym_BSLASHacf] = ACTIONS(5317), - [anon_sym_BSLASHAcf] = ACTIONS(5317), - [anon_sym_BSLASHacfp] = ACTIONS(5317), - [anon_sym_BSLASHAcfp] = ACTIONS(5317), - [anon_sym_BSLASHac] = ACTIONS(5317), - [anon_sym_BSLASHAc] = ACTIONS(5317), - [anon_sym_BSLASHacp] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5317), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5317), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5317), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5317), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5317), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5317), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5317), - [anon_sym_BSLASHcolor] = ACTIONS(5317), - [anon_sym_BSLASHcolorbox] = ACTIONS(5317), - [anon_sym_BSLASHtextcolor] = ACTIONS(5317), - [anon_sym_BSLASHpagecolor] = ACTIONS(5317), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5317), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5317), + [1465] = { + [sym_command_name] = ACTIONS(5149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(5147), + [anon_sym_RPAREN] = ACTIONS(5147), + [anon_sym_LBRACK] = ACTIONS(5147), + [anon_sym_RBRACK] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_LBRACE] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [sym_word] = ACTIONS(5149), + [sym_placeholder] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym__] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_COLON] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5149), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5147), + [anon_sym_DOLLAR] = ACTIONS(5149), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5147), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5147), + [anon_sym_BSLASHusepackage] = ACTIONS(5149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), + [anon_sym_BSLASHinput] = ACTIONS(5149), + [anon_sym_BSLASHsubfile] = ACTIONS(5149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), + [anon_sym_BSLASHbibliography] = ACTIONS(5149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), + [anon_sym_BSLASHincludesvg] = ACTIONS(5149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), + [anon_sym_BSLASHimport] = ACTIONS(5149), + [anon_sym_BSLASHsubimport] = ACTIONS(5149), + [anon_sym_BSLASHinputfrom] = ACTIONS(5149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), + [anon_sym_BSLASHincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHcaption] = ACTIONS(5149), + [anon_sym_BSLASHcite] = ACTIONS(5149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCite] = ACTIONS(5149), + [anon_sym_BSLASHnocite] = ACTIONS(5149), + [anon_sym_BSLASHcitet] = ACTIONS(5149), + [anon_sym_BSLASHcitep] = ACTIONS(5149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteauthor] = ACTIONS(5149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitetitle] = ACTIONS(5149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteyear] = ACTIONS(5149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitedate] = ACTIONS(5149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteurl] = ACTIONS(5149), + [anon_sym_BSLASHfullcite] = ACTIONS(5149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), + [anon_sym_BSLASHcitealt] = ACTIONS(5149), + [anon_sym_BSLASHcitealp] = ACTIONS(5149), + [anon_sym_BSLASHcitetext] = ACTIONS(5149), + [anon_sym_BSLASHparencite] = ACTIONS(5149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHParencite] = ACTIONS(5149), + [anon_sym_BSLASHfootcite] = ACTIONS(5149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), + [anon_sym_BSLASHtextcite] = ACTIONS(5149), + [anon_sym_BSLASHTextcite] = ACTIONS(5149), + [anon_sym_BSLASHsmartcite] = ACTIONS(5149), + [anon_sym_BSLASHSmartcite] = ACTIONS(5149), + [anon_sym_BSLASHsupercite] = ACTIONS(5149), + [anon_sym_BSLASHautocite] = ACTIONS(5149), + [anon_sym_BSLASHAutocite] = ACTIONS(5149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHvolcite] = ACTIONS(5149), + [anon_sym_BSLASHVolcite] = ACTIONS(5149), + [anon_sym_BSLASHpvolcite] = ACTIONS(5149), + [anon_sym_BSLASHPvolcite] = ACTIONS(5149), + [anon_sym_BSLASHfvolcite] = ACTIONS(5149), + [anon_sym_BSLASHftvolcite] = ACTIONS(5149), + [anon_sym_BSLASHsvolcite] = ACTIONS(5149), + [anon_sym_BSLASHSvolcite] = ACTIONS(5149), + [anon_sym_BSLASHtvolcite] = ACTIONS(5149), + [anon_sym_BSLASHTvolcite] = ACTIONS(5149), + [anon_sym_BSLASHavolcite] = ACTIONS(5149), + [anon_sym_BSLASHAvolcite] = ACTIONS(5149), + [anon_sym_BSLASHnotecite] = ACTIONS(5149), + [anon_sym_BSLASHNotecite] = ACTIONS(5149), + [anon_sym_BSLASHpnotecite] = ACTIONS(5149), + [anon_sym_BSLASHPnotecite] = ACTIONS(5149), + [anon_sym_BSLASHfnotecite] = ACTIONS(5149), + [anon_sym_BSLASHlabel] = ACTIONS(5149), + [anon_sym_BSLASHref] = ACTIONS(5149), + [anon_sym_BSLASHeqref] = ACTIONS(5149), + [anon_sym_BSLASHvref] = ACTIONS(5149), + [anon_sym_BSLASHVref] = ACTIONS(5149), + [anon_sym_BSLASHautoref] = ACTIONS(5149), + [anon_sym_BSLASHpageref] = ACTIONS(5149), + [anon_sym_BSLASHcref] = ACTIONS(5149), + [anon_sym_BSLASHCref] = ACTIONS(5149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnameCref] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHlabelcref] = ACTIONS(5149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCrefrange] = ACTIONS(5149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnewlabel] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), + [anon_sym_BSLASHdef] = ACTIONS(5149), + [anon_sym_BSLASHlet] = ACTIONS(5149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), + [anon_sym_BSLASHgls] = ACTIONS(5149), + [anon_sym_BSLASHGls] = ACTIONS(5149), + [anon_sym_BSLASHGLS] = ACTIONS(5149), + [anon_sym_BSLASHglspl] = ACTIONS(5149), + [anon_sym_BSLASHGlspl] = ACTIONS(5149), + [anon_sym_BSLASHGLSpl] = ACTIONS(5149), + [anon_sym_BSLASHglsdisp] = ACTIONS(5149), + [anon_sym_BSLASHglslink] = ACTIONS(5149), + [anon_sym_BSLASHglstext] = ACTIONS(5149), + [anon_sym_BSLASHGlstext] = ACTIONS(5149), + [anon_sym_BSLASHGLStext] = ACTIONS(5149), + [anon_sym_BSLASHglsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), + [anon_sym_BSLASHglsplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSplural] = ACTIONS(5149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHglsname] = ACTIONS(5149), + [anon_sym_BSLASHGlsname] = ACTIONS(5149), + [anon_sym_BSLASHGLSname] = ACTIONS(5149), + [anon_sym_BSLASHglssymbol] = ACTIONS(5149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), + [anon_sym_BSLASHglsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), + [anon_sym_BSLASHglsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), + [anon_sym_BSLASHglsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), + [anon_sym_BSLASHglsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), + [anon_sym_BSLASHglsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), + [anon_sym_BSLASHnewacronym] = ACTIONS(5149), + [anon_sym_BSLASHacrshort] = ACTIONS(5149), + [anon_sym_BSLASHAcrshort] = ACTIONS(5149), + [anon_sym_BSLASHACRshort] = ACTIONS(5149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), + [anon_sym_BSLASHacrlong] = ACTIONS(5149), + [anon_sym_BSLASHAcrlong] = ACTIONS(5149), + [anon_sym_BSLASHACRlong] = ACTIONS(5149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), + [anon_sym_BSLASHacrfull] = ACTIONS(5149), + [anon_sym_BSLASHAcrfull] = ACTIONS(5149), + [anon_sym_BSLASHACRfull] = ACTIONS(5149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), + [anon_sym_BSLASHacs] = ACTIONS(5149), + [anon_sym_BSLASHAcs] = ACTIONS(5149), + [anon_sym_BSLASHacsp] = ACTIONS(5149), + [anon_sym_BSLASHAcsp] = ACTIONS(5149), + [anon_sym_BSLASHacl] = ACTIONS(5149), + [anon_sym_BSLASHAcl] = ACTIONS(5149), + [anon_sym_BSLASHaclp] = ACTIONS(5149), + [anon_sym_BSLASHAclp] = ACTIONS(5149), + [anon_sym_BSLASHacf] = ACTIONS(5149), + [anon_sym_BSLASHAcf] = ACTIONS(5149), + [anon_sym_BSLASHacfp] = ACTIONS(5149), + [anon_sym_BSLASHAcfp] = ACTIONS(5149), + [anon_sym_BSLASHac] = ACTIONS(5149), + [anon_sym_BSLASHAc] = ACTIONS(5149), + [anon_sym_BSLASHacp] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), + [anon_sym_BSLASHcolor] = ACTIONS(5149), + [anon_sym_BSLASHcolorbox] = ACTIONS(5149), + [anon_sym_BSLASHtextcolor] = ACTIONS(5149), + [anon_sym_BSLASHpagecolor] = ACTIONS(5149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), + [anon_sym_BSLASHtext] = ACTIONS(5149), + [anon_sym_BSLASHintertext] = ACTIONS(5149), + [anon_sym_shortintertext] = ACTIONS(5149), }, - [1510] = { - [sym_command_name] = ACTIONS(5231), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5231), - [anon_sym_RBRACK] = ACTIONS(5229), - [anon_sym_COMMA] = ACTIONS(5229), - [anon_sym_EQ] = ACTIONS(5229), - [anon_sym_RBRACE] = ACTIONS(5229), - [sym_word] = ACTIONS(5231), - [sym_placeholder] = ACTIONS(5229), - [anon_sym_PLUS] = ACTIONS(5231), - [anon_sym_DASH] = ACTIONS(5231), - [anon_sym_STAR] = ACTIONS(5231), - [anon_sym_SLASH] = ACTIONS(5231), - [anon_sym_CARET] = ACTIONS(5231), - [anon_sym__] = ACTIONS(5231), - [anon_sym_LT] = ACTIONS(5231), - [anon_sym_GT] = ACTIONS(5231), - [anon_sym_BANG] = ACTIONS(5231), - [anon_sym_PIPE] = ACTIONS(5231), - [anon_sym_COLON] = ACTIONS(5231), - [anon_sym_SQUOTE] = ACTIONS(5231), - [anon_sym_BSLASHusepackage] = ACTIONS(5231), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5231), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5231), - [anon_sym_BSLASHinclude] = ACTIONS(5231), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5231), - [anon_sym_BSLASHinput] = ACTIONS(5231), - [anon_sym_BSLASHsubfile] = ACTIONS(5231), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5231), - [anon_sym_BSLASHbibliography] = ACTIONS(5231), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5231), - [anon_sym_BSLASHincludesvg] = ACTIONS(5231), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5231), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5231), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5231), - [anon_sym_BSLASHimport] = ACTIONS(5231), - [anon_sym_BSLASHsubimport] = ACTIONS(5231), - [anon_sym_BSLASHinputfrom] = ACTIONS(5231), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5231), - [anon_sym_BSLASHincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5231), - [anon_sym_BSLASHcaption] = ACTIONS(5231), - [anon_sym_BSLASHcite] = ACTIONS(5231), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCite] = ACTIONS(5231), - [anon_sym_BSLASHnocite] = ACTIONS(5231), - [anon_sym_BSLASHcitet] = ACTIONS(5231), - [anon_sym_BSLASHcitep] = ACTIONS(5231), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteauthor] = ACTIONS(5231), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5231), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitetitle] = ACTIONS(5231), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteyear] = ACTIONS(5231), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5229), - [anon_sym_BSLASHcitedate] = ACTIONS(5231), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5229), - [anon_sym_BSLASHciteurl] = ACTIONS(5231), - [anon_sym_BSLASHfullcite] = ACTIONS(5231), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5231), - [anon_sym_BSLASHcitealt] = ACTIONS(5231), - [anon_sym_BSLASHcitealp] = ACTIONS(5231), - [anon_sym_BSLASHcitetext] = ACTIONS(5231), - [anon_sym_BSLASHparencite] = ACTIONS(5231), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHParencite] = ACTIONS(5231), - [anon_sym_BSLASHfootcite] = ACTIONS(5231), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5231), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5231), - [anon_sym_BSLASHtextcite] = ACTIONS(5231), - [anon_sym_BSLASHTextcite] = ACTIONS(5231), - [anon_sym_BSLASHsmartcite] = ACTIONS(5231), - [anon_sym_BSLASHSmartcite] = ACTIONS(5231), - [anon_sym_BSLASHsupercite] = ACTIONS(5231), - [anon_sym_BSLASHautocite] = ACTIONS(5231), - [anon_sym_BSLASHAutocite] = ACTIONS(5231), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5229), - [anon_sym_BSLASHvolcite] = ACTIONS(5231), - [anon_sym_BSLASHVolcite] = ACTIONS(5231), - [anon_sym_BSLASHpvolcite] = ACTIONS(5231), - [anon_sym_BSLASHPvolcite] = ACTIONS(5231), - [anon_sym_BSLASHfvolcite] = ACTIONS(5231), - [anon_sym_BSLASHftvolcite] = ACTIONS(5231), - [anon_sym_BSLASHsvolcite] = ACTIONS(5231), - [anon_sym_BSLASHSvolcite] = ACTIONS(5231), - [anon_sym_BSLASHtvolcite] = ACTIONS(5231), - [anon_sym_BSLASHTvolcite] = ACTIONS(5231), - [anon_sym_BSLASHavolcite] = ACTIONS(5231), - [anon_sym_BSLASHAvolcite] = ACTIONS(5231), - [anon_sym_BSLASHnotecite] = ACTIONS(5231), - [anon_sym_BSLASHNotecite] = ACTIONS(5231), - [anon_sym_BSLASHpnotecite] = ACTIONS(5231), - [anon_sym_BSLASHPnotecite] = ACTIONS(5231), - [anon_sym_BSLASHfnotecite] = ACTIONS(5231), - [anon_sym_BSLASHlabel] = ACTIONS(5231), - [anon_sym_BSLASHref] = ACTIONS(5231), - [anon_sym_BSLASHeqref] = ACTIONS(5231), - [anon_sym_BSLASHvref] = ACTIONS(5231), - [anon_sym_BSLASHVref] = ACTIONS(5231), - [anon_sym_BSLASHautoref] = ACTIONS(5231), - [anon_sym_BSLASHpageref] = ACTIONS(5231), - [anon_sym_BSLASHcref] = ACTIONS(5231), - [anon_sym_BSLASHCref] = ACTIONS(5231), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnameCref] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5231), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5231), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5231), - [anon_sym_BSLASHlabelcref] = ACTIONS(5231), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange] = ACTIONS(5231), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHCrefrange] = ACTIONS(5231), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5229), - [anon_sym_BSLASHnewlabel] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand] = ACTIONS(5231), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5231), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5231), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5229), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5231), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5229), - [anon_sym_BSLASHdef] = ACTIONS(5231), - [anon_sym_BSLASHlet] = ACTIONS(5231), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5231), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5231), - [anon_sym_BSLASHgls] = ACTIONS(5231), - [anon_sym_BSLASHGls] = ACTIONS(5231), - [anon_sym_BSLASHGLS] = ACTIONS(5231), - [anon_sym_BSLASHglspl] = ACTIONS(5231), - [anon_sym_BSLASHGlspl] = ACTIONS(5231), - [anon_sym_BSLASHGLSpl] = ACTIONS(5231), - [anon_sym_BSLASHglsdisp] = ACTIONS(5231), - [anon_sym_BSLASHglslink] = ACTIONS(5231), - [anon_sym_BSLASHglstext] = ACTIONS(5231), - [anon_sym_BSLASHGlstext] = ACTIONS(5231), - [anon_sym_BSLASHGLStext] = ACTIONS(5231), - [anon_sym_BSLASHglsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5231), - [anon_sym_BSLASHglsplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSplural] = ACTIONS(5231), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5231), - [anon_sym_BSLASHglsname] = ACTIONS(5231), - [anon_sym_BSLASHGlsname] = ACTIONS(5231), - [anon_sym_BSLASHGLSname] = ACTIONS(5231), - [anon_sym_BSLASHglssymbol] = ACTIONS(5231), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5231), - [anon_sym_BSLASHglsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5231), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5231), - [anon_sym_BSLASHglsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5231), - [anon_sym_BSLASHglsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5231), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5231), - [anon_sym_BSLASHglsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5231), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5231), - [anon_sym_BSLASHglsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5231), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5231), - [anon_sym_BSLASHnewacronym] = ACTIONS(5231), - [anon_sym_BSLASHacrshort] = ACTIONS(5231), - [anon_sym_BSLASHAcrshort] = ACTIONS(5231), - [anon_sym_BSLASHACRshort] = ACTIONS(5231), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5231), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5231), - [anon_sym_BSLASHacrlong] = ACTIONS(5231), - [anon_sym_BSLASHAcrlong] = ACTIONS(5231), - [anon_sym_BSLASHACRlong] = ACTIONS(5231), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5231), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5231), - [anon_sym_BSLASHacrfull] = ACTIONS(5231), - [anon_sym_BSLASHAcrfull] = ACTIONS(5231), - [anon_sym_BSLASHACRfull] = ACTIONS(5231), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5231), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5231), - [anon_sym_BSLASHacs] = ACTIONS(5231), - [anon_sym_BSLASHAcs] = ACTIONS(5231), - [anon_sym_BSLASHacsp] = ACTIONS(5231), - [anon_sym_BSLASHAcsp] = ACTIONS(5231), - [anon_sym_BSLASHacl] = ACTIONS(5231), - [anon_sym_BSLASHAcl] = ACTIONS(5231), - [anon_sym_BSLASHaclp] = ACTIONS(5231), - [anon_sym_BSLASHAclp] = ACTIONS(5231), - [anon_sym_BSLASHacf] = ACTIONS(5231), - [anon_sym_BSLASHAcf] = ACTIONS(5231), - [anon_sym_BSLASHacfp] = ACTIONS(5231), - [anon_sym_BSLASHAcfp] = ACTIONS(5231), - [anon_sym_BSLASHac] = ACTIONS(5231), - [anon_sym_BSLASHAc] = ACTIONS(5231), - [anon_sym_BSLASHacp] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5231), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5231), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5231), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5231), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5231), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5231), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5231), - [anon_sym_BSLASHcolor] = ACTIONS(5231), - [anon_sym_BSLASHcolorbox] = ACTIONS(5231), - [anon_sym_BSLASHtextcolor] = ACTIONS(5231), - [anon_sym_BSLASHpagecolor] = ACTIONS(5231), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5231), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5231), + [1466] = { + [sym_command_name] = ACTIONS(4925), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_RPAREN] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_RBRACK] = ACTIONS(4923), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4923), + [anon_sym_RBRACE] = ACTIONS(4923), + [sym_word] = ACTIONS(4925), + [sym_placeholder] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym__] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_BANG] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_SQUOTE] = ACTIONS(4925), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4923), + [anon_sym_DOLLAR] = ACTIONS(4925), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4923), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4923), + [anon_sym_BSLASHusepackage] = ACTIONS(4925), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), + [anon_sym_BSLASHinclude] = ACTIONS(4925), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), + [anon_sym_BSLASHinput] = ACTIONS(4925), + [anon_sym_BSLASHsubfile] = ACTIONS(4925), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), + [anon_sym_BSLASHbibliography] = ACTIONS(4925), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), + [anon_sym_BSLASHincludesvg] = ACTIONS(4925), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), + [anon_sym_BSLASHimport] = ACTIONS(4925), + [anon_sym_BSLASHsubimport] = ACTIONS(4925), + [anon_sym_BSLASHinputfrom] = ACTIONS(4925), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), + [anon_sym_BSLASHincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHcaption] = ACTIONS(4925), + [anon_sym_BSLASHcite] = ACTIONS(4925), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCite] = ACTIONS(4925), + [anon_sym_BSLASHnocite] = ACTIONS(4925), + [anon_sym_BSLASHcitet] = ACTIONS(4925), + [anon_sym_BSLASHcitep] = ACTIONS(4925), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteauthor] = ACTIONS(4925), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitetitle] = ACTIONS(4925), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteyear] = ACTIONS(4925), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitedate] = ACTIONS(4925), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteurl] = ACTIONS(4925), + [anon_sym_BSLASHfullcite] = ACTIONS(4925), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4925), + [anon_sym_BSLASHcitealt] = ACTIONS(4925), + [anon_sym_BSLASHcitealp] = ACTIONS(4925), + [anon_sym_BSLASHcitetext] = ACTIONS(4925), + [anon_sym_BSLASHparencite] = ACTIONS(4925), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHParencite] = ACTIONS(4925), + [anon_sym_BSLASHfootcite] = ACTIONS(4925), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4925), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4925), + [anon_sym_BSLASHtextcite] = ACTIONS(4925), + [anon_sym_BSLASHTextcite] = ACTIONS(4925), + [anon_sym_BSLASHsmartcite] = ACTIONS(4925), + [anon_sym_BSLASHSmartcite] = ACTIONS(4925), + [anon_sym_BSLASHsupercite] = ACTIONS(4925), + [anon_sym_BSLASHautocite] = ACTIONS(4925), + [anon_sym_BSLASHAutocite] = ACTIONS(4925), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHvolcite] = ACTIONS(4925), + [anon_sym_BSLASHVolcite] = ACTIONS(4925), + [anon_sym_BSLASHpvolcite] = ACTIONS(4925), + [anon_sym_BSLASHPvolcite] = ACTIONS(4925), + [anon_sym_BSLASHfvolcite] = ACTIONS(4925), + [anon_sym_BSLASHftvolcite] = ACTIONS(4925), + [anon_sym_BSLASHsvolcite] = ACTIONS(4925), + [anon_sym_BSLASHSvolcite] = ACTIONS(4925), + [anon_sym_BSLASHtvolcite] = ACTIONS(4925), + [anon_sym_BSLASHTvolcite] = ACTIONS(4925), + [anon_sym_BSLASHavolcite] = ACTIONS(4925), + [anon_sym_BSLASHAvolcite] = ACTIONS(4925), + [anon_sym_BSLASHnotecite] = ACTIONS(4925), + [anon_sym_BSLASHNotecite] = ACTIONS(4925), + [anon_sym_BSLASHpnotecite] = ACTIONS(4925), + [anon_sym_BSLASHPnotecite] = ACTIONS(4925), + [anon_sym_BSLASHfnotecite] = ACTIONS(4925), + [anon_sym_BSLASHlabel] = ACTIONS(4925), + [anon_sym_BSLASHref] = ACTIONS(4925), + [anon_sym_BSLASHeqref] = ACTIONS(4925), + [anon_sym_BSLASHvref] = ACTIONS(4925), + [anon_sym_BSLASHVref] = ACTIONS(4925), + [anon_sym_BSLASHautoref] = ACTIONS(4925), + [anon_sym_BSLASHpageref] = ACTIONS(4925), + [anon_sym_BSLASHcref] = ACTIONS(4925), + [anon_sym_BSLASHCref] = ACTIONS(4925), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnameCref] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHlabelcref] = ACTIONS(4925), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCrefrange] = ACTIONS(4925), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnewlabel] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), + [anon_sym_BSLASHdef] = ACTIONS(4925), + [anon_sym_BSLASHlet] = ACTIONS(4925), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), + [anon_sym_BSLASHgls] = ACTIONS(4925), + [anon_sym_BSLASHGls] = ACTIONS(4925), + [anon_sym_BSLASHGLS] = ACTIONS(4925), + [anon_sym_BSLASHglspl] = ACTIONS(4925), + [anon_sym_BSLASHGlspl] = ACTIONS(4925), + [anon_sym_BSLASHGLSpl] = ACTIONS(4925), + [anon_sym_BSLASHglsdisp] = ACTIONS(4925), + [anon_sym_BSLASHglslink] = ACTIONS(4925), + [anon_sym_BSLASHglstext] = ACTIONS(4925), + [anon_sym_BSLASHGlstext] = ACTIONS(4925), + [anon_sym_BSLASHGLStext] = ACTIONS(4925), + [anon_sym_BSLASHglsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), + [anon_sym_BSLASHglsplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSplural] = ACTIONS(4925), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHglsname] = ACTIONS(4925), + [anon_sym_BSLASHGlsname] = ACTIONS(4925), + [anon_sym_BSLASHGLSname] = ACTIONS(4925), + [anon_sym_BSLASHglssymbol] = ACTIONS(4925), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), + [anon_sym_BSLASHglsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), + [anon_sym_BSLASHglsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), + [anon_sym_BSLASHglsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), + [anon_sym_BSLASHglsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), + [anon_sym_BSLASHglsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), + [anon_sym_BSLASHnewacronym] = ACTIONS(4925), + [anon_sym_BSLASHacrshort] = ACTIONS(4925), + [anon_sym_BSLASHAcrshort] = ACTIONS(4925), + [anon_sym_BSLASHACRshort] = ACTIONS(4925), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), + [anon_sym_BSLASHacrlong] = ACTIONS(4925), + [anon_sym_BSLASHAcrlong] = ACTIONS(4925), + [anon_sym_BSLASHACRlong] = ACTIONS(4925), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), + [anon_sym_BSLASHacrfull] = ACTIONS(4925), + [anon_sym_BSLASHAcrfull] = ACTIONS(4925), + [anon_sym_BSLASHACRfull] = ACTIONS(4925), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), + [anon_sym_BSLASHacs] = ACTIONS(4925), + [anon_sym_BSLASHAcs] = ACTIONS(4925), + [anon_sym_BSLASHacsp] = ACTIONS(4925), + [anon_sym_BSLASHAcsp] = ACTIONS(4925), + [anon_sym_BSLASHacl] = ACTIONS(4925), + [anon_sym_BSLASHAcl] = ACTIONS(4925), + [anon_sym_BSLASHaclp] = ACTIONS(4925), + [anon_sym_BSLASHAclp] = ACTIONS(4925), + [anon_sym_BSLASHacf] = ACTIONS(4925), + [anon_sym_BSLASHAcf] = ACTIONS(4925), + [anon_sym_BSLASHacfp] = ACTIONS(4925), + [anon_sym_BSLASHAcfp] = ACTIONS(4925), + [anon_sym_BSLASHac] = ACTIONS(4925), + [anon_sym_BSLASHAc] = ACTIONS(4925), + [anon_sym_BSLASHacp] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), + [anon_sym_BSLASHcolor] = ACTIONS(4925), + [anon_sym_BSLASHcolorbox] = ACTIONS(4925), + [anon_sym_BSLASHtextcolor] = ACTIONS(4925), + [anon_sym_BSLASHpagecolor] = ACTIONS(4925), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), + [anon_sym_BSLASHtext] = ACTIONS(4925), + [anon_sym_BSLASHintertext] = ACTIONS(4925), + [anon_sym_shortintertext] = ACTIONS(4925), }, - [1511] = { - [sym_command_name] = ACTIONS(4949), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4949), - [anon_sym_RBRACK] = ACTIONS(4947), - [anon_sym_COMMA] = ACTIONS(4947), - [anon_sym_EQ] = ACTIONS(4947), - [anon_sym_RBRACE] = ACTIONS(4947), - [sym_word] = ACTIONS(4949), - [sym_placeholder] = ACTIONS(4947), - [anon_sym_PLUS] = ACTIONS(4949), - [anon_sym_DASH] = ACTIONS(4949), - [anon_sym_STAR] = ACTIONS(4949), - [anon_sym_SLASH] = ACTIONS(4949), - [anon_sym_CARET] = ACTIONS(4949), - [anon_sym__] = ACTIONS(4949), - [anon_sym_LT] = ACTIONS(4949), - [anon_sym_GT] = ACTIONS(4949), - [anon_sym_BANG] = ACTIONS(4949), - [anon_sym_PIPE] = ACTIONS(4949), - [anon_sym_COLON] = ACTIONS(4949), - [anon_sym_SQUOTE] = ACTIONS(4949), - [anon_sym_BSLASHusepackage] = ACTIONS(4949), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4949), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4949), - [anon_sym_BSLASHinclude] = ACTIONS(4949), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4949), - [anon_sym_BSLASHinput] = ACTIONS(4949), - [anon_sym_BSLASHsubfile] = ACTIONS(4949), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4949), - [anon_sym_BSLASHbibliography] = ACTIONS(4949), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4949), - [anon_sym_BSLASHincludesvg] = ACTIONS(4949), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4949), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4949), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4949), - [anon_sym_BSLASHimport] = ACTIONS(4949), - [anon_sym_BSLASHsubimport] = ACTIONS(4949), - [anon_sym_BSLASHinputfrom] = ACTIONS(4949), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4949), - [anon_sym_BSLASHincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4949), - [anon_sym_BSLASHcaption] = ACTIONS(4949), - [anon_sym_BSLASHcite] = ACTIONS(4949), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCite] = ACTIONS(4949), - [anon_sym_BSLASHnocite] = ACTIONS(4949), - [anon_sym_BSLASHcitet] = ACTIONS(4949), - [anon_sym_BSLASHcitep] = ACTIONS(4949), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteauthor] = ACTIONS(4949), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4949), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitetitle] = ACTIONS(4949), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteyear] = ACTIONS(4949), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4947), - [anon_sym_BSLASHcitedate] = ACTIONS(4949), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4947), - [anon_sym_BSLASHciteurl] = ACTIONS(4949), - [anon_sym_BSLASHfullcite] = ACTIONS(4949), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4949), - [anon_sym_BSLASHcitealt] = ACTIONS(4949), - [anon_sym_BSLASHcitealp] = ACTIONS(4949), - [anon_sym_BSLASHcitetext] = ACTIONS(4949), - [anon_sym_BSLASHparencite] = ACTIONS(4949), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHParencite] = ACTIONS(4949), - [anon_sym_BSLASHfootcite] = ACTIONS(4949), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4949), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4949), - [anon_sym_BSLASHtextcite] = ACTIONS(4949), - [anon_sym_BSLASHTextcite] = ACTIONS(4949), - [anon_sym_BSLASHsmartcite] = ACTIONS(4949), - [anon_sym_BSLASHSmartcite] = ACTIONS(4949), - [anon_sym_BSLASHsupercite] = ACTIONS(4949), - [anon_sym_BSLASHautocite] = ACTIONS(4949), - [anon_sym_BSLASHAutocite] = ACTIONS(4949), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4947), - [anon_sym_BSLASHvolcite] = ACTIONS(4949), - [anon_sym_BSLASHVolcite] = ACTIONS(4949), - [anon_sym_BSLASHpvolcite] = ACTIONS(4949), - [anon_sym_BSLASHPvolcite] = ACTIONS(4949), - [anon_sym_BSLASHfvolcite] = ACTIONS(4949), - [anon_sym_BSLASHftvolcite] = ACTIONS(4949), - [anon_sym_BSLASHsvolcite] = ACTIONS(4949), - [anon_sym_BSLASHSvolcite] = ACTIONS(4949), - [anon_sym_BSLASHtvolcite] = ACTIONS(4949), - [anon_sym_BSLASHTvolcite] = ACTIONS(4949), - [anon_sym_BSLASHavolcite] = ACTIONS(4949), - [anon_sym_BSLASHAvolcite] = ACTIONS(4949), - [anon_sym_BSLASHnotecite] = ACTIONS(4949), - [anon_sym_BSLASHNotecite] = ACTIONS(4949), - [anon_sym_BSLASHpnotecite] = ACTIONS(4949), - [anon_sym_BSLASHPnotecite] = ACTIONS(4949), - [anon_sym_BSLASHfnotecite] = ACTIONS(4949), - [anon_sym_BSLASHlabel] = ACTIONS(4949), - [anon_sym_BSLASHref] = ACTIONS(4949), - [anon_sym_BSLASHeqref] = ACTIONS(4949), - [anon_sym_BSLASHvref] = ACTIONS(4949), - [anon_sym_BSLASHVref] = ACTIONS(4949), - [anon_sym_BSLASHautoref] = ACTIONS(4949), - [anon_sym_BSLASHpageref] = ACTIONS(4949), - [anon_sym_BSLASHcref] = ACTIONS(4949), - [anon_sym_BSLASHCref] = ACTIONS(4949), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnameCref] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4949), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4949), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4949), - [anon_sym_BSLASHlabelcref] = ACTIONS(4949), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange] = ACTIONS(4949), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHCrefrange] = ACTIONS(4949), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4947), - [anon_sym_BSLASHnewlabel] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand] = ACTIONS(4949), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4949), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4949), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4947), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4949), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4947), - [anon_sym_BSLASHdef] = ACTIONS(4949), - [anon_sym_BSLASHlet] = ACTIONS(4949), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4949), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4949), - [anon_sym_BSLASHgls] = ACTIONS(4949), - [anon_sym_BSLASHGls] = ACTIONS(4949), - [anon_sym_BSLASHGLS] = ACTIONS(4949), - [anon_sym_BSLASHglspl] = ACTIONS(4949), - [anon_sym_BSLASHGlspl] = ACTIONS(4949), - [anon_sym_BSLASHGLSpl] = ACTIONS(4949), - [anon_sym_BSLASHglsdisp] = ACTIONS(4949), - [anon_sym_BSLASHglslink] = ACTIONS(4949), - [anon_sym_BSLASHglstext] = ACTIONS(4949), - [anon_sym_BSLASHGlstext] = ACTIONS(4949), - [anon_sym_BSLASHGLStext] = ACTIONS(4949), - [anon_sym_BSLASHglsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4949), - [anon_sym_BSLASHglsplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSplural] = ACTIONS(4949), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4949), - [anon_sym_BSLASHglsname] = ACTIONS(4949), - [anon_sym_BSLASHGlsname] = ACTIONS(4949), - [anon_sym_BSLASHGLSname] = ACTIONS(4949), - [anon_sym_BSLASHglssymbol] = ACTIONS(4949), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4949), - [anon_sym_BSLASHglsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4949), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4949), - [anon_sym_BSLASHglsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4949), - [anon_sym_BSLASHglsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4949), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4949), - [anon_sym_BSLASHglsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4949), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4949), - [anon_sym_BSLASHglsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4949), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4949), - [anon_sym_BSLASHnewacronym] = ACTIONS(4949), - [anon_sym_BSLASHacrshort] = ACTIONS(4949), - [anon_sym_BSLASHAcrshort] = ACTIONS(4949), - [anon_sym_BSLASHACRshort] = ACTIONS(4949), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4949), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4949), - [anon_sym_BSLASHacrlong] = ACTIONS(4949), - [anon_sym_BSLASHAcrlong] = ACTIONS(4949), - [anon_sym_BSLASHACRlong] = ACTIONS(4949), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4949), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4949), - [anon_sym_BSLASHacrfull] = ACTIONS(4949), - [anon_sym_BSLASHAcrfull] = ACTIONS(4949), - [anon_sym_BSLASHACRfull] = ACTIONS(4949), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4949), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4949), - [anon_sym_BSLASHacs] = ACTIONS(4949), - [anon_sym_BSLASHAcs] = ACTIONS(4949), - [anon_sym_BSLASHacsp] = ACTIONS(4949), - [anon_sym_BSLASHAcsp] = ACTIONS(4949), - [anon_sym_BSLASHacl] = ACTIONS(4949), - [anon_sym_BSLASHAcl] = ACTIONS(4949), - [anon_sym_BSLASHaclp] = ACTIONS(4949), - [anon_sym_BSLASHAclp] = ACTIONS(4949), - [anon_sym_BSLASHacf] = ACTIONS(4949), - [anon_sym_BSLASHAcf] = ACTIONS(4949), - [anon_sym_BSLASHacfp] = ACTIONS(4949), - [anon_sym_BSLASHAcfp] = ACTIONS(4949), - [anon_sym_BSLASHac] = ACTIONS(4949), - [anon_sym_BSLASHAc] = ACTIONS(4949), - [anon_sym_BSLASHacp] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4949), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4949), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4949), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4949), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4949), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4949), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4949), - [anon_sym_BSLASHcolor] = ACTIONS(4949), - [anon_sym_BSLASHcolorbox] = ACTIONS(4949), - [anon_sym_BSLASHtextcolor] = ACTIONS(4949), - [anon_sym_BSLASHpagecolor] = ACTIONS(4949), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4949), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4949), + [1467] = { + [sym_command_name] = ACTIONS(4921), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4921), + [anon_sym_LPAREN] = ACTIONS(4919), + [anon_sym_RPAREN] = ACTIONS(4919), + [anon_sym_LBRACK] = ACTIONS(4919), + [anon_sym_RBRACK] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_LBRACE] = ACTIONS(4919), + [anon_sym_RBRACE] = ACTIONS(4919), + [sym_word] = ACTIONS(4921), + [sym_placeholder] = ACTIONS(4919), + [anon_sym_PLUS] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4921), + [anon_sym_CARET] = ACTIONS(4921), + [anon_sym__] = ACTIONS(4921), + [anon_sym_LT] = ACTIONS(4921), + [anon_sym_GT] = ACTIONS(4921), + [anon_sym_BANG] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_COLON] = ACTIONS(4921), + [anon_sym_SQUOTE] = ACTIONS(4921), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4919), + [anon_sym_DOLLAR] = ACTIONS(4921), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4919), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4919), + [anon_sym_BSLASHusepackage] = ACTIONS(4921), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), + [anon_sym_BSLASHinclude] = ACTIONS(4921), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), + [anon_sym_BSLASHinput] = ACTIONS(4921), + [anon_sym_BSLASHsubfile] = ACTIONS(4921), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), + [anon_sym_BSLASHbibliography] = ACTIONS(4921), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), + [anon_sym_BSLASHincludesvg] = ACTIONS(4921), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), + [anon_sym_BSLASHimport] = ACTIONS(4921), + [anon_sym_BSLASHsubimport] = ACTIONS(4921), + [anon_sym_BSLASHinputfrom] = ACTIONS(4921), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), + [anon_sym_BSLASHincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHcaption] = ACTIONS(4921), + [anon_sym_BSLASHcite] = ACTIONS(4921), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCite] = ACTIONS(4921), + [anon_sym_BSLASHnocite] = ACTIONS(4921), + [anon_sym_BSLASHcitet] = ACTIONS(4921), + [anon_sym_BSLASHcitep] = ACTIONS(4921), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteauthor] = ACTIONS(4921), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitetitle] = ACTIONS(4921), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteyear] = ACTIONS(4921), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitedate] = ACTIONS(4921), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteurl] = ACTIONS(4921), + [anon_sym_BSLASHfullcite] = ACTIONS(4921), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), + [anon_sym_BSLASHcitealt] = ACTIONS(4921), + [anon_sym_BSLASHcitealp] = ACTIONS(4921), + [anon_sym_BSLASHcitetext] = ACTIONS(4921), + [anon_sym_BSLASHparencite] = ACTIONS(4921), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHParencite] = ACTIONS(4921), + [anon_sym_BSLASHfootcite] = ACTIONS(4921), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), + [anon_sym_BSLASHtextcite] = ACTIONS(4921), + [anon_sym_BSLASHTextcite] = ACTIONS(4921), + [anon_sym_BSLASHsmartcite] = ACTIONS(4921), + [anon_sym_BSLASHSmartcite] = ACTIONS(4921), + [anon_sym_BSLASHsupercite] = ACTIONS(4921), + [anon_sym_BSLASHautocite] = ACTIONS(4921), + [anon_sym_BSLASHAutocite] = ACTIONS(4921), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHvolcite] = ACTIONS(4921), + [anon_sym_BSLASHVolcite] = ACTIONS(4921), + [anon_sym_BSLASHpvolcite] = ACTIONS(4921), + [anon_sym_BSLASHPvolcite] = ACTIONS(4921), + [anon_sym_BSLASHfvolcite] = ACTIONS(4921), + [anon_sym_BSLASHftvolcite] = ACTIONS(4921), + [anon_sym_BSLASHsvolcite] = ACTIONS(4921), + [anon_sym_BSLASHSvolcite] = ACTIONS(4921), + [anon_sym_BSLASHtvolcite] = ACTIONS(4921), + [anon_sym_BSLASHTvolcite] = ACTIONS(4921), + [anon_sym_BSLASHavolcite] = ACTIONS(4921), + [anon_sym_BSLASHAvolcite] = ACTIONS(4921), + [anon_sym_BSLASHnotecite] = ACTIONS(4921), + [anon_sym_BSLASHNotecite] = ACTIONS(4921), + [anon_sym_BSLASHpnotecite] = ACTIONS(4921), + [anon_sym_BSLASHPnotecite] = ACTIONS(4921), + [anon_sym_BSLASHfnotecite] = ACTIONS(4921), + [anon_sym_BSLASHlabel] = ACTIONS(4921), + [anon_sym_BSLASHref] = ACTIONS(4921), + [anon_sym_BSLASHeqref] = ACTIONS(4921), + [anon_sym_BSLASHvref] = ACTIONS(4921), + [anon_sym_BSLASHVref] = ACTIONS(4921), + [anon_sym_BSLASHautoref] = ACTIONS(4921), + [anon_sym_BSLASHpageref] = ACTIONS(4921), + [anon_sym_BSLASHcref] = ACTIONS(4921), + [anon_sym_BSLASHCref] = ACTIONS(4921), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnameCref] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHlabelcref] = ACTIONS(4921), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCrefrange] = ACTIONS(4921), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnewlabel] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), + [anon_sym_BSLASHdef] = ACTIONS(4921), + [anon_sym_BSLASHlet] = ACTIONS(4921), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), + [anon_sym_BSLASHgls] = ACTIONS(4921), + [anon_sym_BSLASHGls] = ACTIONS(4921), + [anon_sym_BSLASHGLS] = ACTIONS(4921), + [anon_sym_BSLASHglspl] = ACTIONS(4921), + [anon_sym_BSLASHGlspl] = ACTIONS(4921), + [anon_sym_BSLASHGLSpl] = ACTIONS(4921), + [anon_sym_BSLASHglsdisp] = ACTIONS(4921), + [anon_sym_BSLASHglslink] = ACTIONS(4921), + [anon_sym_BSLASHglstext] = ACTIONS(4921), + [anon_sym_BSLASHGlstext] = ACTIONS(4921), + [anon_sym_BSLASHGLStext] = ACTIONS(4921), + [anon_sym_BSLASHglsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), + [anon_sym_BSLASHglsplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSplural] = ACTIONS(4921), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHglsname] = ACTIONS(4921), + [anon_sym_BSLASHGlsname] = ACTIONS(4921), + [anon_sym_BSLASHGLSname] = ACTIONS(4921), + [anon_sym_BSLASHglssymbol] = ACTIONS(4921), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), + [anon_sym_BSLASHglsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), + [anon_sym_BSLASHglsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), + [anon_sym_BSLASHglsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), + [anon_sym_BSLASHglsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), + [anon_sym_BSLASHglsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), + [anon_sym_BSLASHnewacronym] = ACTIONS(4921), + [anon_sym_BSLASHacrshort] = ACTIONS(4921), + [anon_sym_BSLASHAcrshort] = ACTIONS(4921), + [anon_sym_BSLASHACRshort] = ACTIONS(4921), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), + [anon_sym_BSLASHacrlong] = ACTIONS(4921), + [anon_sym_BSLASHAcrlong] = ACTIONS(4921), + [anon_sym_BSLASHACRlong] = ACTIONS(4921), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), + [anon_sym_BSLASHacrfull] = ACTIONS(4921), + [anon_sym_BSLASHAcrfull] = ACTIONS(4921), + [anon_sym_BSLASHACRfull] = ACTIONS(4921), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), + [anon_sym_BSLASHacs] = ACTIONS(4921), + [anon_sym_BSLASHAcs] = ACTIONS(4921), + [anon_sym_BSLASHacsp] = ACTIONS(4921), + [anon_sym_BSLASHAcsp] = ACTIONS(4921), + [anon_sym_BSLASHacl] = ACTIONS(4921), + [anon_sym_BSLASHAcl] = ACTIONS(4921), + [anon_sym_BSLASHaclp] = ACTIONS(4921), + [anon_sym_BSLASHAclp] = ACTIONS(4921), + [anon_sym_BSLASHacf] = ACTIONS(4921), + [anon_sym_BSLASHAcf] = ACTIONS(4921), + [anon_sym_BSLASHacfp] = ACTIONS(4921), + [anon_sym_BSLASHAcfp] = ACTIONS(4921), + [anon_sym_BSLASHac] = ACTIONS(4921), + [anon_sym_BSLASHAc] = ACTIONS(4921), + [anon_sym_BSLASHacp] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), + [anon_sym_BSLASHcolor] = ACTIONS(4921), + [anon_sym_BSLASHcolorbox] = ACTIONS(4921), + [anon_sym_BSLASHtextcolor] = ACTIONS(4921), + [anon_sym_BSLASHpagecolor] = ACTIONS(4921), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), + [anon_sym_BSLASHtext] = ACTIONS(4921), + [anon_sym_BSLASHintertext] = ACTIONS(4921), + [anon_sym_shortintertext] = ACTIONS(4921), + }, + [1468] = { + [sym_command_name] = ACTIONS(5289), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5289), + [anon_sym_LPAREN] = ACTIONS(5287), + [anon_sym_RPAREN] = ACTIONS(5287), + [anon_sym_LBRACK] = ACTIONS(5287), + [anon_sym_RBRACK] = ACTIONS(5287), + [anon_sym_COMMA] = ACTIONS(5287), + [anon_sym_LBRACE] = ACTIONS(5287), + [anon_sym_RBRACE] = ACTIONS(5287), + [sym_word] = ACTIONS(5289), + [sym_placeholder] = ACTIONS(5287), + [anon_sym_PLUS] = ACTIONS(5289), + [anon_sym_DASH] = ACTIONS(5289), + [anon_sym_STAR] = ACTIONS(5289), + [anon_sym_SLASH] = ACTIONS(5289), + [anon_sym_CARET] = ACTIONS(5289), + [anon_sym__] = ACTIONS(5289), + [anon_sym_LT] = ACTIONS(5289), + [anon_sym_GT] = ACTIONS(5289), + [anon_sym_BANG] = ACTIONS(5289), + [anon_sym_PIPE] = ACTIONS(5289), + [anon_sym_COLON] = ACTIONS(5289), + [anon_sym_SQUOTE] = ACTIONS(5289), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5287), + [anon_sym_DOLLAR] = ACTIONS(5289), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5287), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5287), + [anon_sym_BSLASHusepackage] = ACTIONS(5289), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), + [anon_sym_BSLASHinclude] = ACTIONS(5289), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), + [anon_sym_BSLASHinput] = ACTIONS(5289), + [anon_sym_BSLASHsubfile] = ACTIONS(5289), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), + [anon_sym_BSLASHbibliography] = ACTIONS(5289), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), + [anon_sym_BSLASHincludesvg] = ACTIONS(5289), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), + [anon_sym_BSLASHimport] = ACTIONS(5289), + [anon_sym_BSLASHsubimport] = ACTIONS(5289), + [anon_sym_BSLASHinputfrom] = ACTIONS(5289), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), + [anon_sym_BSLASHincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHcaption] = ACTIONS(5289), + [anon_sym_BSLASHcite] = ACTIONS(5289), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCite] = ACTIONS(5289), + [anon_sym_BSLASHnocite] = ACTIONS(5289), + [anon_sym_BSLASHcitet] = ACTIONS(5289), + [anon_sym_BSLASHcitep] = ACTIONS(5289), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteauthor] = ACTIONS(5289), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitetitle] = ACTIONS(5289), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteyear] = ACTIONS(5289), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitedate] = ACTIONS(5289), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteurl] = ACTIONS(5289), + [anon_sym_BSLASHfullcite] = ACTIONS(5289), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), + [anon_sym_BSLASHcitealt] = ACTIONS(5289), + [anon_sym_BSLASHcitealp] = ACTIONS(5289), + [anon_sym_BSLASHcitetext] = ACTIONS(5289), + [anon_sym_BSLASHparencite] = ACTIONS(5289), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHParencite] = ACTIONS(5289), + [anon_sym_BSLASHfootcite] = ACTIONS(5289), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), + [anon_sym_BSLASHtextcite] = ACTIONS(5289), + [anon_sym_BSLASHTextcite] = ACTIONS(5289), + [anon_sym_BSLASHsmartcite] = ACTIONS(5289), + [anon_sym_BSLASHSmartcite] = ACTIONS(5289), + [anon_sym_BSLASHsupercite] = ACTIONS(5289), + [anon_sym_BSLASHautocite] = ACTIONS(5289), + [anon_sym_BSLASHAutocite] = ACTIONS(5289), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHvolcite] = ACTIONS(5289), + [anon_sym_BSLASHVolcite] = ACTIONS(5289), + [anon_sym_BSLASHpvolcite] = ACTIONS(5289), + [anon_sym_BSLASHPvolcite] = ACTIONS(5289), + [anon_sym_BSLASHfvolcite] = ACTIONS(5289), + [anon_sym_BSLASHftvolcite] = ACTIONS(5289), + [anon_sym_BSLASHsvolcite] = ACTIONS(5289), + [anon_sym_BSLASHSvolcite] = ACTIONS(5289), + [anon_sym_BSLASHtvolcite] = ACTIONS(5289), + [anon_sym_BSLASHTvolcite] = ACTIONS(5289), + [anon_sym_BSLASHavolcite] = ACTIONS(5289), + [anon_sym_BSLASHAvolcite] = ACTIONS(5289), + [anon_sym_BSLASHnotecite] = ACTIONS(5289), + [anon_sym_BSLASHNotecite] = ACTIONS(5289), + [anon_sym_BSLASHpnotecite] = ACTIONS(5289), + [anon_sym_BSLASHPnotecite] = ACTIONS(5289), + [anon_sym_BSLASHfnotecite] = ACTIONS(5289), + [anon_sym_BSLASHlabel] = ACTIONS(5289), + [anon_sym_BSLASHref] = ACTIONS(5289), + [anon_sym_BSLASHeqref] = ACTIONS(5289), + [anon_sym_BSLASHvref] = ACTIONS(5289), + [anon_sym_BSLASHVref] = ACTIONS(5289), + [anon_sym_BSLASHautoref] = ACTIONS(5289), + [anon_sym_BSLASHpageref] = ACTIONS(5289), + [anon_sym_BSLASHcref] = ACTIONS(5289), + [anon_sym_BSLASHCref] = ACTIONS(5289), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnameCref] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHlabelcref] = ACTIONS(5289), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCrefrange] = ACTIONS(5289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnewlabel] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), + [anon_sym_BSLASHdef] = ACTIONS(5289), + [anon_sym_BSLASHlet] = ACTIONS(5289), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), + [anon_sym_BSLASHgls] = ACTIONS(5289), + [anon_sym_BSLASHGls] = ACTIONS(5289), + [anon_sym_BSLASHGLS] = ACTIONS(5289), + [anon_sym_BSLASHglspl] = ACTIONS(5289), + [anon_sym_BSLASHGlspl] = ACTIONS(5289), + [anon_sym_BSLASHGLSpl] = ACTIONS(5289), + [anon_sym_BSLASHglsdisp] = ACTIONS(5289), + [anon_sym_BSLASHglslink] = ACTIONS(5289), + [anon_sym_BSLASHglstext] = ACTIONS(5289), + [anon_sym_BSLASHGlstext] = ACTIONS(5289), + [anon_sym_BSLASHGLStext] = ACTIONS(5289), + [anon_sym_BSLASHglsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), + [anon_sym_BSLASHglsplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSplural] = ACTIONS(5289), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHglsname] = ACTIONS(5289), + [anon_sym_BSLASHGlsname] = ACTIONS(5289), + [anon_sym_BSLASHGLSname] = ACTIONS(5289), + [anon_sym_BSLASHglssymbol] = ACTIONS(5289), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), + [anon_sym_BSLASHglsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), + [anon_sym_BSLASHglsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), + [anon_sym_BSLASHglsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), + [anon_sym_BSLASHglsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), + [anon_sym_BSLASHglsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), + [anon_sym_BSLASHnewacronym] = ACTIONS(5289), + [anon_sym_BSLASHacrshort] = ACTIONS(5289), + [anon_sym_BSLASHAcrshort] = ACTIONS(5289), + [anon_sym_BSLASHACRshort] = ACTIONS(5289), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), + [anon_sym_BSLASHacrlong] = ACTIONS(5289), + [anon_sym_BSLASHAcrlong] = ACTIONS(5289), + [anon_sym_BSLASHACRlong] = ACTIONS(5289), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), + [anon_sym_BSLASHacrfull] = ACTIONS(5289), + [anon_sym_BSLASHAcrfull] = ACTIONS(5289), + [anon_sym_BSLASHACRfull] = ACTIONS(5289), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), + [anon_sym_BSLASHacs] = ACTIONS(5289), + [anon_sym_BSLASHAcs] = ACTIONS(5289), + [anon_sym_BSLASHacsp] = ACTIONS(5289), + [anon_sym_BSLASHAcsp] = ACTIONS(5289), + [anon_sym_BSLASHacl] = ACTIONS(5289), + [anon_sym_BSLASHAcl] = ACTIONS(5289), + [anon_sym_BSLASHaclp] = ACTIONS(5289), + [anon_sym_BSLASHAclp] = ACTIONS(5289), + [anon_sym_BSLASHacf] = ACTIONS(5289), + [anon_sym_BSLASHAcf] = ACTIONS(5289), + [anon_sym_BSLASHacfp] = ACTIONS(5289), + [anon_sym_BSLASHAcfp] = ACTIONS(5289), + [anon_sym_BSLASHac] = ACTIONS(5289), + [anon_sym_BSLASHAc] = ACTIONS(5289), + [anon_sym_BSLASHacp] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), + [anon_sym_BSLASHcolor] = ACTIONS(5289), + [anon_sym_BSLASHcolorbox] = ACTIONS(5289), + [anon_sym_BSLASHtextcolor] = ACTIONS(5289), + [anon_sym_BSLASHpagecolor] = ACTIONS(5289), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), + [anon_sym_BSLASHtext] = ACTIONS(5289), + [anon_sym_BSLASHintertext] = ACTIONS(5289), + [anon_sym_shortintertext] = ACTIONS(5289), + }, + [1469] = { + [sym_command_name] = ACTIONS(5323), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5323), + [anon_sym_LPAREN] = ACTIONS(5325), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_LBRACK] = ACTIONS(5325), + [anon_sym_RBRACK] = ACTIONS(5325), + [anon_sym_COMMA] = ACTIONS(5325), + [anon_sym_LBRACE] = ACTIONS(5325), + [anon_sym_RBRACE] = ACTIONS(5325), + [sym_word] = ACTIONS(5323), + [sym_placeholder] = ACTIONS(5325), + [anon_sym_PLUS] = ACTIONS(5323), + [anon_sym_DASH] = ACTIONS(5323), + [anon_sym_STAR] = ACTIONS(5323), + [anon_sym_SLASH] = ACTIONS(5323), + [anon_sym_CARET] = ACTIONS(5323), + [anon_sym__] = ACTIONS(5323), + [anon_sym_LT] = ACTIONS(5323), + [anon_sym_GT] = ACTIONS(5323), + [anon_sym_BANG] = ACTIONS(5323), + [anon_sym_PIPE] = ACTIONS(5323), + [anon_sym_COLON] = ACTIONS(5323), + [anon_sym_SQUOTE] = ACTIONS(5323), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5325), + [anon_sym_DOLLAR] = ACTIONS(5323), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5325), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5325), + [anon_sym_BSLASHusepackage] = ACTIONS(5323), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5323), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5323), + [anon_sym_BSLASHinclude] = ACTIONS(5323), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5323), + [anon_sym_BSLASHinput] = ACTIONS(5323), + [anon_sym_BSLASHsubfile] = ACTIONS(5323), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5323), + [anon_sym_BSLASHbibliography] = ACTIONS(5323), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5323), + [anon_sym_BSLASHincludesvg] = ACTIONS(5323), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5323), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5323), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5323), + [anon_sym_BSLASHimport] = ACTIONS(5323), + [anon_sym_BSLASHsubimport] = ACTIONS(5323), + [anon_sym_BSLASHinputfrom] = ACTIONS(5323), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5323), + [anon_sym_BSLASHincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5323), + [anon_sym_BSLASHcaption] = ACTIONS(5323), + [anon_sym_BSLASHcite] = ACTIONS(5323), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCite] = ACTIONS(5323), + [anon_sym_BSLASHnocite] = ACTIONS(5323), + [anon_sym_BSLASHcitet] = ACTIONS(5323), + [anon_sym_BSLASHcitep] = ACTIONS(5323), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteauthor] = ACTIONS(5323), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5323), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitetitle] = ACTIONS(5323), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteyear] = ACTIONS(5323), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5325), + [anon_sym_BSLASHcitedate] = ACTIONS(5323), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5325), + [anon_sym_BSLASHciteurl] = ACTIONS(5323), + [anon_sym_BSLASHfullcite] = ACTIONS(5323), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5323), + [anon_sym_BSLASHcitealt] = ACTIONS(5323), + [anon_sym_BSLASHcitealp] = ACTIONS(5323), + [anon_sym_BSLASHcitetext] = ACTIONS(5323), + [anon_sym_BSLASHparencite] = ACTIONS(5323), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHParencite] = ACTIONS(5323), + [anon_sym_BSLASHfootcite] = ACTIONS(5323), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5323), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5323), + [anon_sym_BSLASHtextcite] = ACTIONS(5323), + [anon_sym_BSLASHTextcite] = ACTIONS(5323), + [anon_sym_BSLASHsmartcite] = ACTIONS(5323), + [anon_sym_BSLASHSmartcite] = ACTIONS(5323), + [anon_sym_BSLASHsupercite] = ACTIONS(5323), + [anon_sym_BSLASHautocite] = ACTIONS(5323), + [anon_sym_BSLASHAutocite] = ACTIONS(5323), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5325), + [anon_sym_BSLASHvolcite] = ACTIONS(5323), + [anon_sym_BSLASHVolcite] = ACTIONS(5323), + [anon_sym_BSLASHpvolcite] = ACTIONS(5323), + [anon_sym_BSLASHPvolcite] = ACTIONS(5323), + [anon_sym_BSLASHfvolcite] = ACTIONS(5323), + [anon_sym_BSLASHftvolcite] = ACTIONS(5323), + [anon_sym_BSLASHsvolcite] = ACTIONS(5323), + [anon_sym_BSLASHSvolcite] = ACTIONS(5323), + [anon_sym_BSLASHtvolcite] = ACTIONS(5323), + [anon_sym_BSLASHTvolcite] = ACTIONS(5323), + [anon_sym_BSLASHavolcite] = ACTIONS(5323), + [anon_sym_BSLASHAvolcite] = ACTIONS(5323), + [anon_sym_BSLASHnotecite] = ACTIONS(5323), + [anon_sym_BSLASHNotecite] = ACTIONS(5323), + [anon_sym_BSLASHpnotecite] = ACTIONS(5323), + [anon_sym_BSLASHPnotecite] = ACTIONS(5323), + [anon_sym_BSLASHfnotecite] = ACTIONS(5323), + [anon_sym_BSLASHlabel] = ACTIONS(5323), + [anon_sym_BSLASHref] = ACTIONS(5323), + [anon_sym_BSLASHeqref] = ACTIONS(5323), + [anon_sym_BSLASHvref] = ACTIONS(5323), + [anon_sym_BSLASHVref] = ACTIONS(5323), + [anon_sym_BSLASHautoref] = ACTIONS(5323), + [anon_sym_BSLASHpageref] = ACTIONS(5323), + [anon_sym_BSLASHcref] = ACTIONS(5323), + [anon_sym_BSLASHCref] = ACTIONS(5323), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnameCref] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5323), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5323), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5323), + [anon_sym_BSLASHlabelcref] = ACTIONS(5323), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange] = ACTIONS(5323), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHCrefrange] = ACTIONS(5323), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5325), + [anon_sym_BSLASHnewlabel] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand] = ACTIONS(5323), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5323), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5323), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5325), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5323), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5325), + [anon_sym_BSLASHdef] = ACTIONS(5323), + [anon_sym_BSLASHlet] = ACTIONS(5323), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5323), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5323), + [anon_sym_BSLASHgls] = ACTIONS(5323), + [anon_sym_BSLASHGls] = ACTIONS(5323), + [anon_sym_BSLASHGLS] = ACTIONS(5323), + [anon_sym_BSLASHglspl] = ACTIONS(5323), + [anon_sym_BSLASHGlspl] = ACTIONS(5323), + [anon_sym_BSLASHGLSpl] = ACTIONS(5323), + [anon_sym_BSLASHglsdisp] = ACTIONS(5323), + [anon_sym_BSLASHglslink] = ACTIONS(5323), + [anon_sym_BSLASHglstext] = ACTIONS(5323), + [anon_sym_BSLASHGlstext] = ACTIONS(5323), + [anon_sym_BSLASHGLStext] = ACTIONS(5323), + [anon_sym_BSLASHglsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5323), + [anon_sym_BSLASHglsplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSplural] = ACTIONS(5323), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5323), + [anon_sym_BSLASHglsname] = ACTIONS(5323), + [anon_sym_BSLASHGlsname] = ACTIONS(5323), + [anon_sym_BSLASHGLSname] = ACTIONS(5323), + [anon_sym_BSLASHglssymbol] = ACTIONS(5323), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5323), + [anon_sym_BSLASHglsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5323), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5323), + [anon_sym_BSLASHglsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5323), + [anon_sym_BSLASHglsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5323), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5323), + [anon_sym_BSLASHglsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5323), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5323), + [anon_sym_BSLASHglsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5323), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5323), + [anon_sym_BSLASHnewacronym] = ACTIONS(5323), + [anon_sym_BSLASHacrshort] = ACTIONS(5323), + [anon_sym_BSLASHAcrshort] = ACTIONS(5323), + [anon_sym_BSLASHACRshort] = ACTIONS(5323), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5323), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5323), + [anon_sym_BSLASHacrlong] = ACTIONS(5323), + [anon_sym_BSLASHAcrlong] = ACTIONS(5323), + [anon_sym_BSLASHACRlong] = ACTIONS(5323), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5323), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5323), + [anon_sym_BSLASHacrfull] = ACTIONS(5323), + [anon_sym_BSLASHAcrfull] = ACTIONS(5323), + [anon_sym_BSLASHACRfull] = ACTIONS(5323), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5323), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5323), + [anon_sym_BSLASHacs] = ACTIONS(5323), + [anon_sym_BSLASHAcs] = ACTIONS(5323), + [anon_sym_BSLASHacsp] = ACTIONS(5323), + [anon_sym_BSLASHAcsp] = ACTIONS(5323), + [anon_sym_BSLASHacl] = ACTIONS(5323), + [anon_sym_BSLASHAcl] = ACTIONS(5323), + [anon_sym_BSLASHaclp] = ACTIONS(5323), + [anon_sym_BSLASHAclp] = ACTIONS(5323), + [anon_sym_BSLASHacf] = ACTIONS(5323), + [anon_sym_BSLASHAcf] = ACTIONS(5323), + [anon_sym_BSLASHacfp] = ACTIONS(5323), + [anon_sym_BSLASHAcfp] = ACTIONS(5323), + [anon_sym_BSLASHac] = ACTIONS(5323), + [anon_sym_BSLASHAc] = ACTIONS(5323), + [anon_sym_BSLASHacp] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5323), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5323), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5323), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5323), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5323), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5323), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5323), + [anon_sym_BSLASHcolor] = ACTIONS(5323), + [anon_sym_BSLASHcolorbox] = ACTIONS(5323), + [anon_sym_BSLASHtextcolor] = ACTIONS(5323), + [anon_sym_BSLASHpagecolor] = ACTIONS(5323), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5323), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5323), + [anon_sym_BSLASHtext] = ACTIONS(5323), + [anon_sym_BSLASHintertext] = ACTIONS(5323), + [anon_sym_shortintertext] = ACTIONS(5323), + }, + [1470] = { + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_LPAREN] = ACTIONS(5291), + [anon_sym_RPAREN] = ACTIONS(5291), + [anon_sym_LBRACK] = ACTIONS(5291), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_LBRACE] = ACTIONS(5291), + [anon_sym_RBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5291), + [anon_sym_DOLLAR] = ACTIONS(5293), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5291), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5291), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + [anon_sym_BSLASHtext] = ACTIONS(5293), + [anon_sym_BSLASHintertext] = ACTIONS(5293), + [anon_sym_shortintertext] = ACTIONS(5293), + }, + [1471] = { + [sym_command_name] = ACTIONS(4955), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4955), + [anon_sym_LPAREN] = ACTIONS(4953), + [anon_sym_RPAREN] = ACTIONS(4953), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4953), + [anon_sym_RBRACE] = ACTIONS(4953), + [sym_word] = ACTIONS(4955), + [sym_placeholder] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4955), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), + [anon_sym__] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(4955), + [anon_sym_SQUOTE] = ACTIONS(4955), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4953), + [anon_sym_DOLLAR] = ACTIONS(4955), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4953), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4953), + [anon_sym_BSLASHusepackage] = ACTIONS(4955), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), + [anon_sym_BSLASHinclude] = ACTIONS(4955), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), + [anon_sym_BSLASHinput] = ACTIONS(4955), + [anon_sym_BSLASHsubfile] = ACTIONS(4955), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), + [anon_sym_BSLASHbibliography] = ACTIONS(4955), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), + [anon_sym_BSLASHincludesvg] = ACTIONS(4955), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), + [anon_sym_BSLASHimport] = ACTIONS(4955), + [anon_sym_BSLASHsubimport] = ACTIONS(4955), + [anon_sym_BSLASHinputfrom] = ACTIONS(4955), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), + [anon_sym_BSLASHincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHcaption] = ACTIONS(4955), + [anon_sym_BSLASHcite] = ACTIONS(4955), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCite] = ACTIONS(4955), + [anon_sym_BSLASHnocite] = ACTIONS(4955), + [anon_sym_BSLASHcitet] = ACTIONS(4955), + [anon_sym_BSLASHcitep] = ACTIONS(4955), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteauthor] = ACTIONS(4955), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitetitle] = ACTIONS(4955), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteyear] = ACTIONS(4955), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitedate] = ACTIONS(4955), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteurl] = ACTIONS(4955), + [anon_sym_BSLASHfullcite] = ACTIONS(4955), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), + [anon_sym_BSLASHcitealt] = ACTIONS(4955), + [anon_sym_BSLASHcitealp] = ACTIONS(4955), + [anon_sym_BSLASHcitetext] = ACTIONS(4955), + [anon_sym_BSLASHparencite] = ACTIONS(4955), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHParencite] = ACTIONS(4955), + [anon_sym_BSLASHfootcite] = ACTIONS(4955), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), + [anon_sym_BSLASHtextcite] = ACTIONS(4955), + [anon_sym_BSLASHTextcite] = ACTIONS(4955), + [anon_sym_BSLASHsmartcite] = ACTIONS(4955), + [anon_sym_BSLASHSmartcite] = ACTIONS(4955), + [anon_sym_BSLASHsupercite] = ACTIONS(4955), + [anon_sym_BSLASHautocite] = ACTIONS(4955), + [anon_sym_BSLASHAutocite] = ACTIONS(4955), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHvolcite] = ACTIONS(4955), + [anon_sym_BSLASHVolcite] = ACTIONS(4955), + [anon_sym_BSLASHpvolcite] = ACTIONS(4955), + [anon_sym_BSLASHPvolcite] = ACTIONS(4955), + [anon_sym_BSLASHfvolcite] = ACTIONS(4955), + [anon_sym_BSLASHftvolcite] = ACTIONS(4955), + [anon_sym_BSLASHsvolcite] = ACTIONS(4955), + [anon_sym_BSLASHSvolcite] = ACTIONS(4955), + [anon_sym_BSLASHtvolcite] = ACTIONS(4955), + [anon_sym_BSLASHTvolcite] = ACTIONS(4955), + [anon_sym_BSLASHavolcite] = ACTIONS(4955), + [anon_sym_BSLASHAvolcite] = ACTIONS(4955), + [anon_sym_BSLASHnotecite] = ACTIONS(4955), + [anon_sym_BSLASHNotecite] = ACTIONS(4955), + [anon_sym_BSLASHpnotecite] = ACTIONS(4955), + [anon_sym_BSLASHPnotecite] = ACTIONS(4955), + [anon_sym_BSLASHfnotecite] = ACTIONS(4955), + [anon_sym_BSLASHlabel] = ACTIONS(4955), + [anon_sym_BSLASHref] = ACTIONS(4955), + [anon_sym_BSLASHeqref] = ACTIONS(4955), + [anon_sym_BSLASHvref] = ACTIONS(4955), + [anon_sym_BSLASHVref] = ACTIONS(4955), + [anon_sym_BSLASHautoref] = ACTIONS(4955), + [anon_sym_BSLASHpageref] = ACTIONS(4955), + [anon_sym_BSLASHcref] = ACTIONS(4955), + [anon_sym_BSLASHCref] = ACTIONS(4955), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnameCref] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHlabelcref] = ACTIONS(4955), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCrefrange] = ACTIONS(4955), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnewlabel] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), + [anon_sym_BSLASHdef] = ACTIONS(4955), + [anon_sym_BSLASHlet] = ACTIONS(4955), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), + [anon_sym_BSLASHgls] = ACTIONS(4955), + [anon_sym_BSLASHGls] = ACTIONS(4955), + [anon_sym_BSLASHGLS] = ACTIONS(4955), + [anon_sym_BSLASHglspl] = ACTIONS(4955), + [anon_sym_BSLASHGlspl] = ACTIONS(4955), + [anon_sym_BSLASHGLSpl] = ACTIONS(4955), + [anon_sym_BSLASHglsdisp] = ACTIONS(4955), + [anon_sym_BSLASHglslink] = ACTIONS(4955), + [anon_sym_BSLASHglstext] = ACTIONS(4955), + [anon_sym_BSLASHGlstext] = ACTIONS(4955), + [anon_sym_BSLASHGLStext] = ACTIONS(4955), + [anon_sym_BSLASHglsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), + [anon_sym_BSLASHglsplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSplural] = ACTIONS(4955), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHglsname] = ACTIONS(4955), + [anon_sym_BSLASHGlsname] = ACTIONS(4955), + [anon_sym_BSLASHGLSname] = ACTIONS(4955), + [anon_sym_BSLASHglssymbol] = ACTIONS(4955), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), + [anon_sym_BSLASHglsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), + [anon_sym_BSLASHglsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), + [anon_sym_BSLASHglsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), + [anon_sym_BSLASHglsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), + [anon_sym_BSLASHglsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), + [anon_sym_BSLASHnewacronym] = ACTIONS(4955), + [anon_sym_BSLASHacrshort] = ACTIONS(4955), + [anon_sym_BSLASHAcrshort] = ACTIONS(4955), + [anon_sym_BSLASHACRshort] = ACTIONS(4955), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), + [anon_sym_BSLASHacrlong] = ACTIONS(4955), + [anon_sym_BSLASHAcrlong] = ACTIONS(4955), + [anon_sym_BSLASHACRlong] = ACTIONS(4955), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), + [anon_sym_BSLASHacrfull] = ACTIONS(4955), + [anon_sym_BSLASHAcrfull] = ACTIONS(4955), + [anon_sym_BSLASHACRfull] = ACTIONS(4955), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), + [anon_sym_BSLASHacs] = ACTIONS(4955), + [anon_sym_BSLASHAcs] = ACTIONS(4955), + [anon_sym_BSLASHacsp] = ACTIONS(4955), + [anon_sym_BSLASHAcsp] = ACTIONS(4955), + [anon_sym_BSLASHacl] = ACTIONS(4955), + [anon_sym_BSLASHAcl] = ACTIONS(4955), + [anon_sym_BSLASHaclp] = ACTIONS(4955), + [anon_sym_BSLASHAclp] = ACTIONS(4955), + [anon_sym_BSLASHacf] = ACTIONS(4955), + [anon_sym_BSLASHAcf] = ACTIONS(4955), + [anon_sym_BSLASHacfp] = ACTIONS(4955), + [anon_sym_BSLASHAcfp] = ACTIONS(4955), + [anon_sym_BSLASHac] = ACTIONS(4955), + [anon_sym_BSLASHAc] = ACTIONS(4955), + [anon_sym_BSLASHacp] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), + [anon_sym_BSLASHcolor] = ACTIONS(4955), + [anon_sym_BSLASHcolorbox] = ACTIONS(4955), + [anon_sym_BSLASHtextcolor] = ACTIONS(4955), + [anon_sym_BSLASHpagecolor] = ACTIONS(4955), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), + [anon_sym_BSLASHtext] = ACTIONS(4955), + [anon_sym_BSLASHintertext] = ACTIONS(4955), + [anon_sym_shortintertext] = ACTIONS(4955), + }, + [1472] = { + [sym_command_name] = ACTIONS(5297), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5297), + [anon_sym_LPAREN] = ACTIONS(5295), + [anon_sym_RPAREN] = ACTIONS(5295), + [anon_sym_LBRACK] = ACTIONS(5295), + [anon_sym_RBRACK] = ACTIONS(5295), + [anon_sym_COMMA] = ACTIONS(5295), + [anon_sym_LBRACE] = ACTIONS(5295), + [anon_sym_RBRACE] = ACTIONS(5295), + [sym_word] = ACTIONS(5297), + [sym_placeholder] = ACTIONS(5295), + [anon_sym_PLUS] = ACTIONS(5297), + [anon_sym_DASH] = ACTIONS(5297), + [anon_sym_STAR] = ACTIONS(5297), + [anon_sym_SLASH] = ACTIONS(5297), + [anon_sym_CARET] = ACTIONS(5297), + [anon_sym__] = ACTIONS(5297), + [anon_sym_LT] = ACTIONS(5297), + [anon_sym_GT] = ACTIONS(5297), + [anon_sym_BANG] = ACTIONS(5297), + [anon_sym_PIPE] = ACTIONS(5297), + [anon_sym_COLON] = ACTIONS(5297), + [anon_sym_SQUOTE] = ACTIONS(5297), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5295), + [anon_sym_DOLLAR] = ACTIONS(5297), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5295), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5295), + [anon_sym_BSLASHusepackage] = ACTIONS(5297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), + [anon_sym_BSLASHinclude] = ACTIONS(5297), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), + [anon_sym_BSLASHinput] = ACTIONS(5297), + [anon_sym_BSLASHsubfile] = ACTIONS(5297), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), + [anon_sym_BSLASHbibliography] = ACTIONS(5297), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), + [anon_sym_BSLASHincludesvg] = ACTIONS(5297), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), + [anon_sym_BSLASHimport] = ACTIONS(5297), + [anon_sym_BSLASHsubimport] = ACTIONS(5297), + [anon_sym_BSLASHinputfrom] = ACTIONS(5297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), + [anon_sym_BSLASHincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHcaption] = ACTIONS(5297), + [anon_sym_BSLASHcite] = ACTIONS(5297), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCite] = ACTIONS(5297), + [anon_sym_BSLASHnocite] = ACTIONS(5297), + [anon_sym_BSLASHcitet] = ACTIONS(5297), + [anon_sym_BSLASHcitep] = ACTIONS(5297), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteauthor] = ACTIONS(5297), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitetitle] = ACTIONS(5297), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteyear] = ACTIONS(5297), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitedate] = ACTIONS(5297), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteurl] = ACTIONS(5297), + [anon_sym_BSLASHfullcite] = ACTIONS(5297), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), + [anon_sym_BSLASHcitealt] = ACTIONS(5297), + [anon_sym_BSLASHcitealp] = ACTIONS(5297), + [anon_sym_BSLASHcitetext] = ACTIONS(5297), + [anon_sym_BSLASHparencite] = ACTIONS(5297), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHParencite] = ACTIONS(5297), + [anon_sym_BSLASHfootcite] = ACTIONS(5297), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), + [anon_sym_BSLASHtextcite] = ACTIONS(5297), + [anon_sym_BSLASHTextcite] = ACTIONS(5297), + [anon_sym_BSLASHsmartcite] = ACTIONS(5297), + [anon_sym_BSLASHSmartcite] = ACTIONS(5297), + [anon_sym_BSLASHsupercite] = ACTIONS(5297), + [anon_sym_BSLASHautocite] = ACTIONS(5297), + [anon_sym_BSLASHAutocite] = ACTIONS(5297), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHvolcite] = ACTIONS(5297), + [anon_sym_BSLASHVolcite] = ACTIONS(5297), + [anon_sym_BSLASHpvolcite] = ACTIONS(5297), + [anon_sym_BSLASHPvolcite] = ACTIONS(5297), + [anon_sym_BSLASHfvolcite] = ACTIONS(5297), + [anon_sym_BSLASHftvolcite] = ACTIONS(5297), + [anon_sym_BSLASHsvolcite] = ACTIONS(5297), + [anon_sym_BSLASHSvolcite] = ACTIONS(5297), + [anon_sym_BSLASHtvolcite] = ACTIONS(5297), + [anon_sym_BSLASHTvolcite] = ACTIONS(5297), + [anon_sym_BSLASHavolcite] = ACTIONS(5297), + [anon_sym_BSLASHAvolcite] = ACTIONS(5297), + [anon_sym_BSLASHnotecite] = ACTIONS(5297), + [anon_sym_BSLASHNotecite] = ACTIONS(5297), + [anon_sym_BSLASHpnotecite] = ACTIONS(5297), + [anon_sym_BSLASHPnotecite] = ACTIONS(5297), + [anon_sym_BSLASHfnotecite] = ACTIONS(5297), + [anon_sym_BSLASHlabel] = ACTIONS(5297), + [anon_sym_BSLASHref] = ACTIONS(5297), + [anon_sym_BSLASHeqref] = ACTIONS(5297), + [anon_sym_BSLASHvref] = ACTIONS(5297), + [anon_sym_BSLASHVref] = ACTIONS(5297), + [anon_sym_BSLASHautoref] = ACTIONS(5297), + [anon_sym_BSLASHpageref] = ACTIONS(5297), + [anon_sym_BSLASHcref] = ACTIONS(5297), + [anon_sym_BSLASHCref] = ACTIONS(5297), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnameCref] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHlabelcref] = ACTIONS(5297), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCrefrange] = ACTIONS(5297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnewlabel] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), + [anon_sym_BSLASHdef] = ACTIONS(5297), + [anon_sym_BSLASHlet] = ACTIONS(5297), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), + [anon_sym_BSLASHgls] = ACTIONS(5297), + [anon_sym_BSLASHGls] = ACTIONS(5297), + [anon_sym_BSLASHGLS] = ACTIONS(5297), + [anon_sym_BSLASHglspl] = ACTIONS(5297), + [anon_sym_BSLASHGlspl] = ACTIONS(5297), + [anon_sym_BSLASHGLSpl] = ACTIONS(5297), + [anon_sym_BSLASHglsdisp] = ACTIONS(5297), + [anon_sym_BSLASHglslink] = ACTIONS(5297), + [anon_sym_BSLASHglstext] = ACTIONS(5297), + [anon_sym_BSLASHGlstext] = ACTIONS(5297), + [anon_sym_BSLASHGLStext] = ACTIONS(5297), + [anon_sym_BSLASHglsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), + [anon_sym_BSLASHglsplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSplural] = ACTIONS(5297), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHglsname] = ACTIONS(5297), + [anon_sym_BSLASHGlsname] = ACTIONS(5297), + [anon_sym_BSLASHGLSname] = ACTIONS(5297), + [anon_sym_BSLASHglssymbol] = ACTIONS(5297), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), + [anon_sym_BSLASHglsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), + [anon_sym_BSLASHglsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), + [anon_sym_BSLASHglsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), + [anon_sym_BSLASHglsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), + [anon_sym_BSLASHglsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), + [anon_sym_BSLASHnewacronym] = ACTIONS(5297), + [anon_sym_BSLASHacrshort] = ACTIONS(5297), + [anon_sym_BSLASHAcrshort] = ACTIONS(5297), + [anon_sym_BSLASHACRshort] = ACTIONS(5297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), + [anon_sym_BSLASHacrlong] = ACTIONS(5297), + [anon_sym_BSLASHAcrlong] = ACTIONS(5297), + [anon_sym_BSLASHACRlong] = ACTIONS(5297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), + [anon_sym_BSLASHacrfull] = ACTIONS(5297), + [anon_sym_BSLASHAcrfull] = ACTIONS(5297), + [anon_sym_BSLASHACRfull] = ACTIONS(5297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), + [anon_sym_BSLASHacs] = ACTIONS(5297), + [anon_sym_BSLASHAcs] = ACTIONS(5297), + [anon_sym_BSLASHacsp] = ACTIONS(5297), + [anon_sym_BSLASHAcsp] = ACTIONS(5297), + [anon_sym_BSLASHacl] = ACTIONS(5297), + [anon_sym_BSLASHAcl] = ACTIONS(5297), + [anon_sym_BSLASHaclp] = ACTIONS(5297), + [anon_sym_BSLASHAclp] = ACTIONS(5297), + [anon_sym_BSLASHacf] = ACTIONS(5297), + [anon_sym_BSLASHAcf] = ACTIONS(5297), + [anon_sym_BSLASHacfp] = ACTIONS(5297), + [anon_sym_BSLASHAcfp] = ACTIONS(5297), + [anon_sym_BSLASHac] = ACTIONS(5297), + [anon_sym_BSLASHAc] = ACTIONS(5297), + [anon_sym_BSLASHacp] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), + [anon_sym_BSLASHcolor] = ACTIONS(5297), + [anon_sym_BSLASHcolorbox] = ACTIONS(5297), + [anon_sym_BSLASHtextcolor] = ACTIONS(5297), + [anon_sym_BSLASHpagecolor] = ACTIONS(5297), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), + [anon_sym_BSLASHtext] = ACTIONS(5297), + [anon_sym_BSLASHintertext] = ACTIONS(5297), + [anon_sym_shortintertext] = ACTIONS(5297), + }, + [1473] = { + [sym_command_name] = ACTIONS(5301), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5301), + [anon_sym_LPAREN] = ACTIONS(5299), + [anon_sym_RPAREN] = ACTIONS(5299), + [anon_sym_LBRACK] = ACTIONS(5299), + [anon_sym_RBRACK] = ACTIONS(5299), + [anon_sym_COMMA] = ACTIONS(5299), + [anon_sym_LBRACE] = ACTIONS(5299), + [anon_sym_RBRACE] = ACTIONS(5299), + [sym_word] = ACTIONS(5301), + [sym_placeholder] = ACTIONS(5299), + [anon_sym_PLUS] = ACTIONS(5301), + [anon_sym_DASH] = ACTIONS(5301), + [anon_sym_STAR] = ACTIONS(5301), + [anon_sym_SLASH] = ACTIONS(5301), + [anon_sym_CARET] = ACTIONS(5301), + [anon_sym__] = ACTIONS(5301), + [anon_sym_LT] = ACTIONS(5301), + [anon_sym_GT] = ACTIONS(5301), + [anon_sym_BANG] = ACTIONS(5301), + [anon_sym_PIPE] = ACTIONS(5301), + [anon_sym_COLON] = ACTIONS(5301), + [anon_sym_SQUOTE] = ACTIONS(5301), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5299), + [anon_sym_DOLLAR] = ACTIONS(5301), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5299), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5299), + [anon_sym_BSLASHusepackage] = ACTIONS(5301), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), + [anon_sym_BSLASHinclude] = ACTIONS(5301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), + [anon_sym_BSLASHinput] = ACTIONS(5301), + [anon_sym_BSLASHsubfile] = ACTIONS(5301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), + [anon_sym_BSLASHbibliography] = ACTIONS(5301), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), + [anon_sym_BSLASHincludesvg] = ACTIONS(5301), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), + [anon_sym_BSLASHimport] = ACTIONS(5301), + [anon_sym_BSLASHsubimport] = ACTIONS(5301), + [anon_sym_BSLASHinputfrom] = ACTIONS(5301), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), + [anon_sym_BSLASHincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHcaption] = ACTIONS(5301), + [anon_sym_BSLASHcite] = ACTIONS(5301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCite] = ACTIONS(5301), + [anon_sym_BSLASHnocite] = ACTIONS(5301), + [anon_sym_BSLASHcitet] = ACTIONS(5301), + [anon_sym_BSLASHcitep] = ACTIONS(5301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteauthor] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitetitle] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteyear] = ACTIONS(5301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitedate] = ACTIONS(5301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteurl] = ACTIONS(5301), + [anon_sym_BSLASHfullcite] = ACTIONS(5301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), + [anon_sym_BSLASHcitealt] = ACTIONS(5301), + [anon_sym_BSLASHcitealp] = ACTIONS(5301), + [anon_sym_BSLASHcitetext] = ACTIONS(5301), + [anon_sym_BSLASHparencite] = ACTIONS(5301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHParencite] = ACTIONS(5301), + [anon_sym_BSLASHfootcite] = ACTIONS(5301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), + [anon_sym_BSLASHtextcite] = ACTIONS(5301), + [anon_sym_BSLASHTextcite] = ACTIONS(5301), + [anon_sym_BSLASHsmartcite] = ACTIONS(5301), + [anon_sym_BSLASHSmartcite] = ACTIONS(5301), + [anon_sym_BSLASHsupercite] = ACTIONS(5301), + [anon_sym_BSLASHautocite] = ACTIONS(5301), + [anon_sym_BSLASHAutocite] = ACTIONS(5301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHvolcite] = ACTIONS(5301), + [anon_sym_BSLASHVolcite] = ACTIONS(5301), + [anon_sym_BSLASHpvolcite] = ACTIONS(5301), + [anon_sym_BSLASHPvolcite] = ACTIONS(5301), + [anon_sym_BSLASHfvolcite] = ACTIONS(5301), + [anon_sym_BSLASHftvolcite] = ACTIONS(5301), + [anon_sym_BSLASHsvolcite] = ACTIONS(5301), + [anon_sym_BSLASHSvolcite] = ACTIONS(5301), + [anon_sym_BSLASHtvolcite] = ACTIONS(5301), + [anon_sym_BSLASHTvolcite] = ACTIONS(5301), + [anon_sym_BSLASHavolcite] = ACTIONS(5301), + [anon_sym_BSLASHAvolcite] = ACTIONS(5301), + [anon_sym_BSLASHnotecite] = ACTIONS(5301), + [anon_sym_BSLASHNotecite] = ACTIONS(5301), + [anon_sym_BSLASHpnotecite] = ACTIONS(5301), + [anon_sym_BSLASHPnotecite] = ACTIONS(5301), + [anon_sym_BSLASHfnotecite] = ACTIONS(5301), + [anon_sym_BSLASHlabel] = ACTIONS(5301), + [anon_sym_BSLASHref] = ACTIONS(5301), + [anon_sym_BSLASHeqref] = ACTIONS(5301), + [anon_sym_BSLASHvref] = ACTIONS(5301), + [anon_sym_BSLASHVref] = ACTIONS(5301), + [anon_sym_BSLASHautoref] = ACTIONS(5301), + [anon_sym_BSLASHpageref] = ACTIONS(5301), + [anon_sym_BSLASHcref] = ACTIONS(5301), + [anon_sym_BSLASHCref] = ACTIONS(5301), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnameCref] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHlabelcref] = ACTIONS(5301), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCrefrange] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnewlabel] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), + [anon_sym_BSLASHdef] = ACTIONS(5301), + [anon_sym_BSLASHlet] = ACTIONS(5301), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), + [anon_sym_BSLASHgls] = ACTIONS(5301), + [anon_sym_BSLASHGls] = ACTIONS(5301), + [anon_sym_BSLASHGLS] = ACTIONS(5301), + [anon_sym_BSLASHglspl] = ACTIONS(5301), + [anon_sym_BSLASHGlspl] = ACTIONS(5301), + [anon_sym_BSLASHGLSpl] = ACTIONS(5301), + [anon_sym_BSLASHglsdisp] = ACTIONS(5301), + [anon_sym_BSLASHglslink] = ACTIONS(5301), + [anon_sym_BSLASHglstext] = ACTIONS(5301), + [anon_sym_BSLASHGlstext] = ACTIONS(5301), + [anon_sym_BSLASHGLStext] = ACTIONS(5301), + [anon_sym_BSLASHglsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), + [anon_sym_BSLASHglsplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSplural] = ACTIONS(5301), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHglsname] = ACTIONS(5301), + [anon_sym_BSLASHGlsname] = ACTIONS(5301), + [anon_sym_BSLASHGLSname] = ACTIONS(5301), + [anon_sym_BSLASHglssymbol] = ACTIONS(5301), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), + [anon_sym_BSLASHglsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), + [anon_sym_BSLASHglsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), + [anon_sym_BSLASHglsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), + [anon_sym_BSLASHglsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), + [anon_sym_BSLASHglsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), + [anon_sym_BSLASHnewacronym] = ACTIONS(5301), + [anon_sym_BSLASHacrshort] = ACTIONS(5301), + [anon_sym_BSLASHAcrshort] = ACTIONS(5301), + [anon_sym_BSLASHACRshort] = ACTIONS(5301), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), + [anon_sym_BSLASHacrlong] = ACTIONS(5301), + [anon_sym_BSLASHAcrlong] = ACTIONS(5301), + [anon_sym_BSLASHACRlong] = ACTIONS(5301), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), + [anon_sym_BSLASHacrfull] = ACTIONS(5301), + [anon_sym_BSLASHAcrfull] = ACTIONS(5301), + [anon_sym_BSLASHACRfull] = ACTIONS(5301), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), + [anon_sym_BSLASHacs] = ACTIONS(5301), + [anon_sym_BSLASHAcs] = ACTIONS(5301), + [anon_sym_BSLASHacsp] = ACTIONS(5301), + [anon_sym_BSLASHAcsp] = ACTIONS(5301), + [anon_sym_BSLASHacl] = ACTIONS(5301), + [anon_sym_BSLASHAcl] = ACTIONS(5301), + [anon_sym_BSLASHaclp] = ACTIONS(5301), + [anon_sym_BSLASHAclp] = ACTIONS(5301), + [anon_sym_BSLASHacf] = ACTIONS(5301), + [anon_sym_BSLASHAcf] = ACTIONS(5301), + [anon_sym_BSLASHacfp] = ACTIONS(5301), + [anon_sym_BSLASHAcfp] = ACTIONS(5301), + [anon_sym_BSLASHac] = ACTIONS(5301), + [anon_sym_BSLASHAc] = ACTIONS(5301), + [anon_sym_BSLASHacp] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), + [anon_sym_BSLASHcolor] = ACTIONS(5301), + [anon_sym_BSLASHcolorbox] = ACTIONS(5301), + [anon_sym_BSLASHtextcolor] = ACTIONS(5301), + [anon_sym_BSLASHpagecolor] = ACTIONS(5301), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), + [anon_sym_BSLASHtext] = ACTIONS(5301), + [anon_sym_BSLASHintertext] = ACTIONS(5301), + [anon_sym_shortintertext] = ACTIONS(5301), + }, + [1474] = { + [sym_command_name] = ACTIONS(5065), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5065), + [anon_sym_LPAREN] = ACTIONS(5063), + [anon_sym_RPAREN] = ACTIONS(5063), + [anon_sym_LBRACK] = ACTIONS(5063), + [anon_sym_RBRACK] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_LBRACE] = ACTIONS(5063), + [anon_sym_RBRACE] = ACTIONS(5063), + [sym_word] = ACTIONS(5065), + [sym_placeholder] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_CARET] = ACTIONS(5065), + [anon_sym__] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_COLON] = ACTIONS(5065), + [anon_sym_SQUOTE] = ACTIONS(5065), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5063), + [anon_sym_DOLLAR] = ACTIONS(5065), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5063), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5063), + [anon_sym_BSLASHusepackage] = ACTIONS(5065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), + [anon_sym_BSLASHinclude] = ACTIONS(5065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), + [anon_sym_BSLASHinput] = ACTIONS(5065), + [anon_sym_BSLASHsubfile] = ACTIONS(5065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), + [anon_sym_BSLASHbibliography] = ACTIONS(5065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), + [anon_sym_BSLASHincludesvg] = ACTIONS(5065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), + [anon_sym_BSLASHimport] = ACTIONS(5065), + [anon_sym_BSLASHsubimport] = ACTIONS(5065), + [anon_sym_BSLASHinputfrom] = ACTIONS(5065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), + [anon_sym_BSLASHincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHcaption] = ACTIONS(5065), + [anon_sym_BSLASHcite] = ACTIONS(5065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCite] = ACTIONS(5065), + [anon_sym_BSLASHnocite] = ACTIONS(5065), + [anon_sym_BSLASHcitet] = ACTIONS(5065), + [anon_sym_BSLASHcitep] = ACTIONS(5065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteauthor] = ACTIONS(5065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitetitle] = ACTIONS(5065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteyear] = ACTIONS(5065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitedate] = ACTIONS(5065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteurl] = ACTIONS(5065), + [anon_sym_BSLASHfullcite] = ACTIONS(5065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), + [anon_sym_BSLASHcitealt] = ACTIONS(5065), + [anon_sym_BSLASHcitealp] = ACTIONS(5065), + [anon_sym_BSLASHcitetext] = ACTIONS(5065), + [anon_sym_BSLASHparencite] = ACTIONS(5065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHParencite] = ACTIONS(5065), + [anon_sym_BSLASHfootcite] = ACTIONS(5065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), + [anon_sym_BSLASHtextcite] = ACTIONS(5065), + [anon_sym_BSLASHTextcite] = ACTIONS(5065), + [anon_sym_BSLASHsmartcite] = ACTIONS(5065), + [anon_sym_BSLASHSmartcite] = ACTIONS(5065), + [anon_sym_BSLASHsupercite] = ACTIONS(5065), + [anon_sym_BSLASHautocite] = ACTIONS(5065), + [anon_sym_BSLASHAutocite] = ACTIONS(5065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHvolcite] = ACTIONS(5065), + [anon_sym_BSLASHVolcite] = ACTIONS(5065), + [anon_sym_BSLASHpvolcite] = ACTIONS(5065), + [anon_sym_BSLASHPvolcite] = ACTIONS(5065), + [anon_sym_BSLASHfvolcite] = ACTIONS(5065), + [anon_sym_BSLASHftvolcite] = ACTIONS(5065), + [anon_sym_BSLASHsvolcite] = ACTIONS(5065), + [anon_sym_BSLASHSvolcite] = ACTIONS(5065), + [anon_sym_BSLASHtvolcite] = ACTIONS(5065), + [anon_sym_BSLASHTvolcite] = ACTIONS(5065), + [anon_sym_BSLASHavolcite] = ACTIONS(5065), + [anon_sym_BSLASHAvolcite] = ACTIONS(5065), + [anon_sym_BSLASHnotecite] = ACTIONS(5065), + [anon_sym_BSLASHNotecite] = ACTIONS(5065), + [anon_sym_BSLASHpnotecite] = ACTIONS(5065), + [anon_sym_BSLASHPnotecite] = ACTIONS(5065), + [anon_sym_BSLASHfnotecite] = ACTIONS(5065), + [anon_sym_BSLASHlabel] = ACTIONS(5065), + [anon_sym_BSLASHref] = ACTIONS(5065), + [anon_sym_BSLASHeqref] = ACTIONS(5065), + [anon_sym_BSLASHvref] = ACTIONS(5065), + [anon_sym_BSLASHVref] = ACTIONS(5065), + [anon_sym_BSLASHautoref] = ACTIONS(5065), + [anon_sym_BSLASHpageref] = ACTIONS(5065), + [anon_sym_BSLASHcref] = ACTIONS(5065), + [anon_sym_BSLASHCref] = ACTIONS(5065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnameCref] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHlabelcref] = ACTIONS(5065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCrefrange] = ACTIONS(5065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnewlabel] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), + [anon_sym_BSLASHdef] = ACTIONS(5065), + [anon_sym_BSLASHlet] = ACTIONS(5065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), + [anon_sym_BSLASHgls] = ACTIONS(5065), + [anon_sym_BSLASHGls] = ACTIONS(5065), + [anon_sym_BSLASHGLS] = ACTIONS(5065), + [anon_sym_BSLASHglspl] = ACTIONS(5065), + [anon_sym_BSLASHGlspl] = ACTIONS(5065), + [anon_sym_BSLASHGLSpl] = ACTIONS(5065), + [anon_sym_BSLASHglsdisp] = ACTIONS(5065), + [anon_sym_BSLASHglslink] = ACTIONS(5065), + [anon_sym_BSLASHglstext] = ACTIONS(5065), + [anon_sym_BSLASHGlstext] = ACTIONS(5065), + [anon_sym_BSLASHGLStext] = ACTIONS(5065), + [anon_sym_BSLASHglsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), + [anon_sym_BSLASHglsplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSplural] = ACTIONS(5065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHglsname] = ACTIONS(5065), + [anon_sym_BSLASHGlsname] = ACTIONS(5065), + [anon_sym_BSLASHGLSname] = ACTIONS(5065), + [anon_sym_BSLASHglssymbol] = ACTIONS(5065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), + [anon_sym_BSLASHglsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), + [anon_sym_BSLASHglsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), + [anon_sym_BSLASHglsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), + [anon_sym_BSLASHglsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), + [anon_sym_BSLASHglsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), + [anon_sym_BSLASHnewacronym] = ACTIONS(5065), + [anon_sym_BSLASHacrshort] = ACTIONS(5065), + [anon_sym_BSLASHAcrshort] = ACTIONS(5065), + [anon_sym_BSLASHACRshort] = ACTIONS(5065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), + [anon_sym_BSLASHacrlong] = ACTIONS(5065), + [anon_sym_BSLASHAcrlong] = ACTIONS(5065), + [anon_sym_BSLASHACRlong] = ACTIONS(5065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), + [anon_sym_BSLASHacrfull] = ACTIONS(5065), + [anon_sym_BSLASHAcrfull] = ACTIONS(5065), + [anon_sym_BSLASHACRfull] = ACTIONS(5065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), + [anon_sym_BSLASHacs] = ACTIONS(5065), + [anon_sym_BSLASHAcs] = ACTIONS(5065), + [anon_sym_BSLASHacsp] = ACTIONS(5065), + [anon_sym_BSLASHAcsp] = ACTIONS(5065), + [anon_sym_BSLASHacl] = ACTIONS(5065), + [anon_sym_BSLASHAcl] = ACTIONS(5065), + [anon_sym_BSLASHaclp] = ACTIONS(5065), + [anon_sym_BSLASHAclp] = ACTIONS(5065), + [anon_sym_BSLASHacf] = ACTIONS(5065), + [anon_sym_BSLASHAcf] = ACTIONS(5065), + [anon_sym_BSLASHacfp] = ACTIONS(5065), + [anon_sym_BSLASHAcfp] = ACTIONS(5065), + [anon_sym_BSLASHac] = ACTIONS(5065), + [anon_sym_BSLASHAc] = ACTIONS(5065), + [anon_sym_BSLASHacp] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), + [anon_sym_BSLASHcolor] = ACTIONS(5065), + [anon_sym_BSLASHcolorbox] = ACTIONS(5065), + [anon_sym_BSLASHtextcolor] = ACTIONS(5065), + [anon_sym_BSLASHpagecolor] = ACTIONS(5065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHtext] = ACTIONS(5065), + [anon_sym_BSLASHintertext] = ACTIONS(5065), + [anon_sym_shortintertext] = ACTIONS(5065), + }, + [1475] = { + [sym_command_name] = ACTIONS(5073), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5073), + [anon_sym_LPAREN] = ACTIONS(5071), + [anon_sym_RPAREN] = ACTIONS(5071), + [anon_sym_LBRACK] = ACTIONS(5071), + [anon_sym_RBRACK] = ACTIONS(5071), + [anon_sym_COMMA] = ACTIONS(5071), + [anon_sym_LBRACE] = ACTIONS(5071), + [anon_sym_RBRACE] = ACTIONS(5071), + [sym_word] = ACTIONS(5073), + [sym_placeholder] = ACTIONS(5071), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_CARET] = ACTIONS(5073), + [anon_sym__] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_PIPE] = ACTIONS(5073), + [anon_sym_COLON] = ACTIONS(5073), + [anon_sym_SQUOTE] = ACTIONS(5073), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5071), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5071), + [anon_sym_DOLLAR] = ACTIONS(5073), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5071), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5071), + [anon_sym_BSLASHusepackage] = ACTIONS(5073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), + [anon_sym_BSLASHinclude] = ACTIONS(5073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), + [anon_sym_BSLASHinput] = ACTIONS(5073), + [anon_sym_BSLASHsubfile] = ACTIONS(5073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), + [anon_sym_BSLASHbibliography] = ACTIONS(5073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), + [anon_sym_BSLASHincludesvg] = ACTIONS(5073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), + [anon_sym_BSLASHimport] = ACTIONS(5073), + [anon_sym_BSLASHsubimport] = ACTIONS(5073), + [anon_sym_BSLASHinputfrom] = ACTIONS(5073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), + [anon_sym_BSLASHincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHcaption] = ACTIONS(5073), + [anon_sym_BSLASHcite] = ACTIONS(5073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCite] = ACTIONS(5073), + [anon_sym_BSLASHnocite] = ACTIONS(5073), + [anon_sym_BSLASHcitet] = ACTIONS(5073), + [anon_sym_BSLASHcitep] = ACTIONS(5073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteauthor] = ACTIONS(5073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitetitle] = ACTIONS(5073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteyear] = ACTIONS(5073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitedate] = ACTIONS(5073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteurl] = ACTIONS(5073), + [anon_sym_BSLASHfullcite] = ACTIONS(5073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), + [anon_sym_BSLASHcitealt] = ACTIONS(5073), + [anon_sym_BSLASHcitealp] = ACTIONS(5073), + [anon_sym_BSLASHcitetext] = ACTIONS(5073), + [anon_sym_BSLASHparencite] = ACTIONS(5073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHParencite] = ACTIONS(5073), + [anon_sym_BSLASHfootcite] = ACTIONS(5073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), + [anon_sym_BSLASHtextcite] = ACTIONS(5073), + [anon_sym_BSLASHTextcite] = ACTIONS(5073), + [anon_sym_BSLASHsmartcite] = ACTIONS(5073), + [anon_sym_BSLASHSmartcite] = ACTIONS(5073), + [anon_sym_BSLASHsupercite] = ACTIONS(5073), + [anon_sym_BSLASHautocite] = ACTIONS(5073), + [anon_sym_BSLASHAutocite] = ACTIONS(5073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHvolcite] = ACTIONS(5073), + [anon_sym_BSLASHVolcite] = ACTIONS(5073), + [anon_sym_BSLASHpvolcite] = ACTIONS(5073), + [anon_sym_BSLASHPvolcite] = ACTIONS(5073), + [anon_sym_BSLASHfvolcite] = ACTIONS(5073), + [anon_sym_BSLASHftvolcite] = ACTIONS(5073), + [anon_sym_BSLASHsvolcite] = ACTIONS(5073), + [anon_sym_BSLASHSvolcite] = ACTIONS(5073), + [anon_sym_BSLASHtvolcite] = ACTIONS(5073), + [anon_sym_BSLASHTvolcite] = ACTIONS(5073), + [anon_sym_BSLASHavolcite] = ACTIONS(5073), + [anon_sym_BSLASHAvolcite] = ACTIONS(5073), + [anon_sym_BSLASHnotecite] = ACTIONS(5073), + [anon_sym_BSLASHNotecite] = ACTIONS(5073), + [anon_sym_BSLASHpnotecite] = ACTIONS(5073), + [anon_sym_BSLASHPnotecite] = ACTIONS(5073), + [anon_sym_BSLASHfnotecite] = ACTIONS(5073), + [anon_sym_BSLASHlabel] = ACTIONS(5073), + [anon_sym_BSLASHref] = ACTIONS(5073), + [anon_sym_BSLASHeqref] = ACTIONS(5073), + [anon_sym_BSLASHvref] = ACTIONS(5073), + [anon_sym_BSLASHVref] = ACTIONS(5073), + [anon_sym_BSLASHautoref] = ACTIONS(5073), + [anon_sym_BSLASHpageref] = ACTIONS(5073), + [anon_sym_BSLASHcref] = ACTIONS(5073), + [anon_sym_BSLASHCref] = ACTIONS(5073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnameCref] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHlabelcref] = ACTIONS(5073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCrefrange] = ACTIONS(5073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnewlabel] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), + [anon_sym_BSLASHdef] = ACTIONS(5073), + [anon_sym_BSLASHlet] = ACTIONS(5073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), + [anon_sym_BSLASHgls] = ACTIONS(5073), + [anon_sym_BSLASHGls] = ACTIONS(5073), + [anon_sym_BSLASHGLS] = ACTIONS(5073), + [anon_sym_BSLASHglspl] = ACTIONS(5073), + [anon_sym_BSLASHGlspl] = ACTIONS(5073), + [anon_sym_BSLASHGLSpl] = ACTIONS(5073), + [anon_sym_BSLASHglsdisp] = ACTIONS(5073), + [anon_sym_BSLASHglslink] = ACTIONS(5073), + [anon_sym_BSLASHglstext] = ACTIONS(5073), + [anon_sym_BSLASHGlstext] = ACTIONS(5073), + [anon_sym_BSLASHGLStext] = ACTIONS(5073), + [anon_sym_BSLASHglsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), + [anon_sym_BSLASHglsplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSplural] = ACTIONS(5073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHglsname] = ACTIONS(5073), + [anon_sym_BSLASHGlsname] = ACTIONS(5073), + [anon_sym_BSLASHGLSname] = ACTIONS(5073), + [anon_sym_BSLASHglssymbol] = ACTIONS(5073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), + [anon_sym_BSLASHglsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), + [anon_sym_BSLASHglsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), + [anon_sym_BSLASHglsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), + [anon_sym_BSLASHglsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), + [anon_sym_BSLASHglsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), + [anon_sym_BSLASHnewacronym] = ACTIONS(5073), + [anon_sym_BSLASHacrshort] = ACTIONS(5073), + [anon_sym_BSLASHAcrshort] = ACTIONS(5073), + [anon_sym_BSLASHACRshort] = ACTIONS(5073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), + [anon_sym_BSLASHacrlong] = ACTIONS(5073), + [anon_sym_BSLASHAcrlong] = ACTIONS(5073), + [anon_sym_BSLASHACRlong] = ACTIONS(5073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), + [anon_sym_BSLASHacrfull] = ACTIONS(5073), + [anon_sym_BSLASHAcrfull] = ACTIONS(5073), + [anon_sym_BSLASHACRfull] = ACTIONS(5073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), + [anon_sym_BSLASHacs] = ACTIONS(5073), + [anon_sym_BSLASHAcs] = ACTIONS(5073), + [anon_sym_BSLASHacsp] = ACTIONS(5073), + [anon_sym_BSLASHAcsp] = ACTIONS(5073), + [anon_sym_BSLASHacl] = ACTIONS(5073), + [anon_sym_BSLASHAcl] = ACTIONS(5073), + [anon_sym_BSLASHaclp] = ACTIONS(5073), + [anon_sym_BSLASHAclp] = ACTIONS(5073), + [anon_sym_BSLASHacf] = ACTIONS(5073), + [anon_sym_BSLASHAcf] = ACTIONS(5073), + [anon_sym_BSLASHacfp] = ACTIONS(5073), + [anon_sym_BSLASHAcfp] = ACTIONS(5073), + [anon_sym_BSLASHac] = ACTIONS(5073), + [anon_sym_BSLASHAc] = ACTIONS(5073), + [anon_sym_BSLASHacp] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), + [anon_sym_BSLASHcolor] = ACTIONS(5073), + [anon_sym_BSLASHcolorbox] = ACTIONS(5073), + [anon_sym_BSLASHtextcolor] = ACTIONS(5073), + [anon_sym_BSLASHpagecolor] = ACTIONS(5073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHtext] = ACTIONS(5073), + [anon_sym_BSLASHintertext] = ACTIONS(5073), + [anon_sym_shortintertext] = ACTIONS(5073), }, - [1512] = { - [sym_command_name] = ACTIONS(5185), + [1476] = { + [sym_command_name] = ACTIONS(4963), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5185), - [anon_sym_RBRACK] = ACTIONS(5183), - [anon_sym_COMMA] = ACTIONS(5183), - [anon_sym_EQ] = ACTIONS(5183), - [anon_sym_RBRACE] = ACTIONS(5183), - [sym_word] = ACTIONS(5185), - [sym_placeholder] = ACTIONS(5183), - [anon_sym_PLUS] = ACTIONS(5185), - [anon_sym_DASH] = ACTIONS(5185), - [anon_sym_STAR] = ACTIONS(5185), - [anon_sym_SLASH] = ACTIONS(5185), - [anon_sym_CARET] = ACTIONS(5185), - [anon_sym__] = ACTIONS(5185), - [anon_sym_LT] = ACTIONS(5185), - [anon_sym_GT] = ACTIONS(5185), - [anon_sym_BANG] = ACTIONS(5185), - [anon_sym_PIPE] = ACTIONS(5185), - [anon_sym_COLON] = ACTIONS(5185), - [anon_sym_SQUOTE] = ACTIONS(5185), - [anon_sym_BSLASHusepackage] = ACTIONS(5185), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), - [anon_sym_BSLASHinclude] = ACTIONS(5185), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), - [anon_sym_BSLASHinput] = ACTIONS(5185), - [anon_sym_BSLASHsubfile] = ACTIONS(5185), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), - [anon_sym_BSLASHbibliography] = ACTIONS(5185), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), - [anon_sym_BSLASHincludesvg] = ACTIONS(5185), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), - [anon_sym_BSLASHimport] = ACTIONS(5185), - [anon_sym_BSLASHsubimport] = ACTIONS(5185), - [anon_sym_BSLASHinputfrom] = ACTIONS(5185), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), - [anon_sym_BSLASHincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), - [anon_sym_BSLASHcaption] = ACTIONS(5185), - [anon_sym_BSLASHcite] = ACTIONS(5185), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCite] = ACTIONS(5185), - [anon_sym_BSLASHnocite] = ACTIONS(5185), - [anon_sym_BSLASHcitet] = ACTIONS(5185), - [anon_sym_BSLASHcitep] = ACTIONS(5185), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteauthor] = ACTIONS(5185), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitetitle] = ACTIONS(5185), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteyear] = ACTIONS(5185), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), - [anon_sym_BSLASHcitedate] = ACTIONS(5185), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), - [anon_sym_BSLASHciteurl] = ACTIONS(5185), - [anon_sym_BSLASHfullcite] = ACTIONS(5185), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), - [anon_sym_BSLASHcitealt] = ACTIONS(5185), - [anon_sym_BSLASHcitealp] = ACTIONS(5185), - [anon_sym_BSLASHcitetext] = ACTIONS(5185), - [anon_sym_BSLASHparencite] = ACTIONS(5185), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHParencite] = ACTIONS(5185), - [anon_sym_BSLASHfootcite] = ACTIONS(5185), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), - [anon_sym_BSLASHtextcite] = ACTIONS(5185), - [anon_sym_BSLASHTextcite] = ACTIONS(5185), - [anon_sym_BSLASHsmartcite] = ACTIONS(5185), - [anon_sym_BSLASHSmartcite] = ACTIONS(5185), - [anon_sym_BSLASHsupercite] = ACTIONS(5185), - [anon_sym_BSLASHautocite] = ACTIONS(5185), - [anon_sym_BSLASHAutocite] = ACTIONS(5185), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), - [anon_sym_BSLASHvolcite] = ACTIONS(5185), - [anon_sym_BSLASHVolcite] = ACTIONS(5185), - [anon_sym_BSLASHpvolcite] = ACTIONS(5185), - [anon_sym_BSLASHPvolcite] = ACTIONS(5185), - [anon_sym_BSLASHfvolcite] = ACTIONS(5185), - [anon_sym_BSLASHftvolcite] = ACTIONS(5185), - [anon_sym_BSLASHsvolcite] = ACTIONS(5185), - [anon_sym_BSLASHSvolcite] = ACTIONS(5185), - [anon_sym_BSLASHtvolcite] = ACTIONS(5185), - [anon_sym_BSLASHTvolcite] = ACTIONS(5185), - [anon_sym_BSLASHavolcite] = ACTIONS(5185), - [anon_sym_BSLASHAvolcite] = ACTIONS(5185), - [anon_sym_BSLASHnotecite] = ACTIONS(5185), - [anon_sym_BSLASHNotecite] = ACTIONS(5185), - [anon_sym_BSLASHpnotecite] = ACTIONS(5185), - [anon_sym_BSLASHPnotecite] = ACTIONS(5185), - [anon_sym_BSLASHfnotecite] = ACTIONS(5185), - [anon_sym_BSLASHlabel] = ACTIONS(5185), - [anon_sym_BSLASHref] = ACTIONS(5185), - [anon_sym_BSLASHeqref] = ACTIONS(5185), - [anon_sym_BSLASHvref] = ACTIONS(5185), - [anon_sym_BSLASHVref] = ACTIONS(5185), - [anon_sym_BSLASHautoref] = ACTIONS(5185), - [anon_sym_BSLASHpageref] = ACTIONS(5185), - [anon_sym_BSLASHcref] = ACTIONS(5185), - [anon_sym_BSLASHCref] = ACTIONS(5185), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnameCref] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), - [anon_sym_BSLASHlabelcref] = ACTIONS(5185), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange] = ACTIONS(5185), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHCrefrange] = ACTIONS(5185), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), - [anon_sym_BSLASHnewlabel] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand] = ACTIONS(5185), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), - [anon_sym_BSLASHdef] = ACTIONS(5185), - [anon_sym_BSLASHlet] = ACTIONS(5185), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), - [anon_sym_BSLASHgls] = ACTIONS(5185), - [anon_sym_BSLASHGls] = ACTIONS(5185), - [anon_sym_BSLASHGLS] = ACTIONS(5185), - [anon_sym_BSLASHglspl] = ACTIONS(5185), - [anon_sym_BSLASHGlspl] = ACTIONS(5185), - [anon_sym_BSLASHGLSpl] = ACTIONS(5185), - [anon_sym_BSLASHglsdisp] = ACTIONS(5185), - [anon_sym_BSLASHglslink] = ACTIONS(5185), - [anon_sym_BSLASHglstext] = ACTIONS(5185), - [anon_sym_BSLASHGlstext] = ACTIONS(5185), - [anon_sym_BSLASHGLStext] = ACTIONS(5185), - [anon_sym_BSLASHglsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), - [anon_sym_BSLASHglsplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSplural] = ACTIONS(5185), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), - [anon_sym_BSLASHglsname] = ACTIONS(5185), - [anon_sym_BSLASHGlsname] = ACTIONS(5185), - [anon_sym_BSLASHGLSname] = ACTIONS(5185), - [anon_sym_BSLASHglssymbol] = ACTIONS(5185), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), - [anon_sym_BSLASHglsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), - [anon_sym_BSLASHglsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), - [anon_sym_BSLASHglsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), - [anon_sym_BSLASHglsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), - [anon_sym_BSLASHglsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), - [anon_sym_BSLASHnewacronym] = ACTIONS(5185), - [anon_sym_BSLASHacrshort] = ACTIONS(5185), - [anon_sym_BSLASHAcrshort] = ACTIONS(5185), - [anon_sym_BSLASHACRshort] = ACTIONS(5185), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), - [anon_sym_BSLASHacrlong] = ACTIONS(5185), - [anon_sym_BSLASHAcrlong] = ACTIONS(5185), - [anon_sym_BSLASHACRlong] = ACTIONS(5185), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), - [anon_sym_BSLASHacrfull] = ACTIONS(5185), - [anon_sym_BSLASHAcrfull] = ACTIONS(5185), - [anon_sym_BSLASHACRfull] = ACTIONS(5185), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), - [anon_sym_BSLASHacs] = ACTIONS(5185), - [anon_sym_BSLASHAcs] = ACTIONS(5185), - [anon_sym_BSLASHacsp] = ACTIONS(5185), - [anon_sym_BSLASHAcsp] = ACTIONS(5185), - [anon_sym_BSLASHacl] = ACTIONS(5185), - [anon_sym_BSLASHAcl] = ACTIONS(5185), - [anon_sym_BSLASHaclp] = ACTIONS(5185), - [anon_sym_BSLASHAclp] = ACTIONS(5185), - [anon_sym_BSLASHacf] = ACTIONS(5185), - [anon_sym_BSLASHAcf] = ACTIONS(5185), - [anon_sym_BSLASHacfp] = ACTIONS(5185), - [anon_sym_BSLASHAcfp] = ACTIONS(5185), - [anon_sym_BSLASHac] = ACTIONS(5185), - [anon_sym_BSLASHAc] = ACTIONS(5185), - [anon_sym_BSLASHacp] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), - [anon_sym_BSLASHcolor] = ACTIONS(5185), - [anon_sym_BSLASHcolorbox] = ACTIONS(5185), - [anon_sym_BSLASHtextcolor] = ACTIONS(5185), - [anon_sym_BSLASHpagecolor] = ACTIONS(5185), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), - }, - [1513] = { - [sym_command_name] = ACTIONS(5353), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5353), - [anon_sym_RBRACK] = ACTIONS(5351), - [anon_sym_COMMA] = ACTIONS(5351), - [anon_sym_EQ] = ACTIONS(5351), - [anon_sym_RBRACE] = ACTIONS(5351), - [sym_word] = ACTIONS(5353), - [sym_placeholder] = ACTIONS(5351), - [anon_sym_PLUS] = ACTIONS(5353), - [anon_sym_DASH] = ACTIONS(5353), - [anon_sym_STAR] = ACTIONS(5353), - [anon_sym_SLASH] = ACTIONS(5353), - [anon_sym_CARET] = ACTIONS(5353), - [anon_sym__] = ACTIONS(5353), - [anon_sym_LT] = ACTIONS(5353), - [anon_sym_GT] = ACTIONS(5353), - [anon_sym_BANG] = ACTIONS(5353), - [anon_sym_PIPE] = ACTIONS(5353), - [anon_sym_COLON] = ACTIONS(5353), - [anon_sym_SQUOTE] = ACTIONS(5353), - [anon_sym_BSLASHusepackage] = ACTIONS(5353), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5353), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5353), - [anon_sym_BSLASHinclude] = ACTIONS(5353), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5353), - [anon_sym_BSLASHinput] = ACTIONS(5353), - [anon_sym_BSLASHsubfile] = ACTIONS(5353), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5353), - [anon_sym_BSLASHbibliography] = ACTIONS(5353), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5353), - [anon_sym_BSLASHincludesvg] = ACTIONS(5353), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5353), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5353), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5353), - [anon_sym_BSLASHimport] = ACTIONS(5353), - [anon_sym_BSLASHsubimport] = ACTIONS(5353), - [anon_sym_BSLASHinputfrom] = ACTIONS(5353), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5353), - [anon_sym_BSLASHincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5353), - [anon_sym_BSLASHcaption] = ACTIONS(5353), - [anon_sym_BSLASHcite] = ACTIONS(5353), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCite] = ACTIONS(5353), - [anon_sym_BSLASHnocite] = ACTIONS(5353), - [anon_sym_BSLASHcitet] = ACTIONS(5353), - [anon_sym_BSLASHcitep] = ACTIONS(5353), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteauthor] = ACTIONS(5353), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5353), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitetitle] = ACTIONS(5353), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteyear] = ACTIONS(5353), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5351), - [anon_sym_BSLASHcitedate] = ACTIONS(5353), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5351), - [anon_sym_BSLASHciteurl] = ACTIONS(5353), - [anon_sym_BSLASHfullcite] = ACTIONS(5353), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5353), - [anon_sym_BSLASHcitealt] = ACTIONS(5353), - [anon_sym_BSLASHcitealp] = ACTIONS(5353), - [anon_sym_BSLASHcitetext] = ACTIONS(5353), - [anon_sym_BSLASHparencite] = ACTIONS(5353), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHParencite] = ACTIONS(5353), - [anon_sym_BSLASHfootcite] = ACTIONS(5353), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5353), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5353), - [anon_sym_BSLASHtextcite] = ACTIONS(5353), - [anon_sym_BSLASHTextcite] = ACTIONS(5353), - [anon_sym_BSLASHsmartcite] = ACTIONS(5353), - [anon_sym_BSLASHSmartcite] = ACTIONS(5353), - [anon_sym_BSLASHsupercite] = ACTIONS(5353), - [anon_sym_BSLASHautocite] = ACTIONS(5353), - [anon_sym_BSLASHAutocite] = ACTIONS(5353), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5351), - [anon_sym_BSLASHvolcite] = ACTIONS(5353), - [anon_sym_BSLASHVolcite] = ACTIONS(5353), - [anon_sym_BSLASHpvolcite] = ACTIONS(5353), - [anon_sym_BSLASHPvolcite] = ACTIONS(5353), - [anon_sym_BSLASHfvolcite] = ACTIONS(5353), - [anon_sym_BSLASHftvolcite] = ACTIONS(5353), - [anon_sym_BSLASHsvolcite] = ACTIONS(5353), - [anon_sym_BSLASHSvolcite] = ACTIONS(5353), - [anon_sym_BSLASHtvolcite] = ACTIONS(5353), - [anon_sym_BSLASHTvolcite] = ACTIONS(5353), - [anon_sym_BSLASHavolcite] = ACTIONS(5353), - [anon_sym_BSLASHAvolcite] = ACTIONS(5353), - [anon_sym_BSLASHnotecite] = ACTIONS(5353), - [anon_sym_BSLASHNotecite] = ACTIONS(5353), - [anon_sym_BSLASHpnotecite] = ACTIONS(5353), - [anon_sym_BSLASHPnotecite] = ACTIONS(5353), - [anon_sym_BSLASHfnotecite] = ACTIONS(5353), - [anon_sym_BSLASHlabel] = ACTIONS(5353), - [anon_sym_BSLASHref] = ACTIONS(5353), - [anon_sym_BSLASHeqref] = ACTIONS(5353), - [anon_sym_BSLASHvref] = ACTIONS(5353), - [anon_sym_BSLASHVref] = ACTIONS(5353), - [anon_sym_BSLASHautoref] = ACTIONS(5353), - [anon_sym_BSLASHpageref] = ACTIONS(5353), - [anon_sym_BSLASHcref] = ACTIONS(5353), - [anon_sym_BSLASHCref] = ACTIONS(5353), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnameCref] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5353), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5353), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5353), - [anon_sym_BSLASHlabelcref] = ACTIONS(5353), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange] = ACTIONS(5353), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHCrefrange] = ACTIONS(5353), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5351), - [anon_sym_BSLASHnewlabel] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand] = ACTIONS(5353), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5353), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5353), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5351), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5353), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5351), - [anon_sym_BSLASHdef] = ACTIONS(5353), - [anon_sym_BSLASHlet] = ACTIONS(5353), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5353), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5353), - [anon_sym_BSLASHgls] = ACTIONS(5353), - [anon_sym_BSLASHGls] = ACTIONS(5353), - [anon_sym_BSLASHGLS] = ACTIONS(5353), - [anon_sym_BSLASHglspl] = ACTIONS(5353), - [anon_sym_BSLASHGlspl] = ACTIONS(5353), - [anon_sym_BSLASHGLSpl] = ACTIONS(5353), - [anon_sym_BSLASHglsdisp] = ACTIONS(5353), - [anon_sym_BSLASHglslink] = ACTIONS(5353), - [anon_sym_BSLASHglstext] = ACTIONS(5353), - [anon_sym_BSLASHGlstext] = ACTIONS(5353), - [anon_sym_BSLASHGLStext] = ACTIONS(5353), - [anon_sym_BSLASHglsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5353), - [anon_sym_BSLASHglsplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSplural] = ACTIONS(5353), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5353), - [anon_sym_BSLASHglsname] = ACTIONS(5353), - [anon_sym_BSLASHGlsname] = ACTIONS(5353), - [anon_sym_BSLASHGLSname] = ACTIONS(5353), - [anon_sym_BSLASHglssymbol] = ACTIONS(5353), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5353), - [anon_sym_BSLASHglsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5353), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5353), - [anon_sym_BSLASHglsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5353), - [anon_sym_BSLASHglsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5353), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5353), - [anon_sym_BSLASHglsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5353), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5353), - [anon_sym_BSLASHglsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5353), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5353), - [anon_sym_BSLASHnewacronym] = ACTIONS(5353), - [anon_sym_BSLASHacrshort] = ACTIONS(5353), - [anon_sym_BSLASHAcrshort] = ACTIONS(5353), - [anon_sym_BSLASHACRshort] = ACTIONS(5353), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5353), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5353), - [anon_sym_BSLASHacrlong] = ACTIONS(5353), - [anon_sym_BSLASHAcrlong] = ACTIONS(5353), - [anon_sym_BSLASHACRlong] = ACTIONS(5353), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5353), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5353), - [anon_sym_BSLASHacrfull] = ACTIONS(5353), - [anon_sym_BSLASHAcrfull] = ACTIONS(5353), - [anon_sym_BSLASHACRfull] = ACTIONS(5353), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5353), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5353), - [anon_sym_BSLASHacs] = ACTIONS(5353), - [anon_sym_BSLASHAcs] = ACTIONS(5353), - [anon_sym_BSLASHacsp] = ACTIONS(5353), - [anon_sym_BSLASHAcsp] = ACTIONS(5353), - [anon_sym_BSLASHacl] = ACTIONS(5353), - [anon_sym_BSLASHAcl] = ACTIONS(5353), - [anon_sym_BSLASHaclp] = ACTIONS(5353), - [anon_sym_BSLASHAclp] = ACTIONS(5353), - [anon_sym_BSLASHacf] = ACTIONS(5353), - [anon_sym_BSLASHAcf] = ACTIONS(5353), - [anon_sym_BSLASHacfp] = ACTIONS(5353), - [anon_sym_BSLASHAcfp] = ACTIONS(5353), - [anon_sym_BSLASHac] = ACTIONS(5353), - [anon_sym_BSLASHAc] = ACTIONS(5353), - [anon_sym_BSLASHacp] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5353), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5353), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5353), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5353), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5353), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5353), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5353), - [anon_sym_BSLASHcolor] = ACTIONS(5353), - [anon_sym_BSLASHcolorbox] = ACTIONS(5353), - [anon_sym_BSLASHtextcolor] = ACTIONS(5353), - [anon_sym_BSLASHpagecolor] = ACTIONS(5353), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5353), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5353), + [anon_sym_BSLASHiffalse] = ACTIONS(4963), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_LBRACK] = ACTIONS(4961), + [anon_sym_RBRACK] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_LBRACE] = ACTIONS(4961), + [anon_sym_RBRACE] = ACTIONS(4961), + [sym_word] = ACTIONS(4963), + [sym_placeholder] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), + [anon_sym__] = ACTIONS(4963), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_COLON] = ACTIONS(4963), + [anon_sym_SQUOTE] = ACTIONS(4963), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4961), + [anon_sym_DOLLAR] = ACTIONS(4963), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4961), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4961), + [anon_sym_BSLASHusepackage] = ACTIONS(4963), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), + [anon_sym_BSLASHinclude] = ACTIONS(4963), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), + [anon_sym_BSLASHinput] = ACTIONS(4963), + [anon_sym_BSLASHsubfile] = ACTIONS(4963), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), + [anon_sym_BSLASHbibliography] = ACTIONS(4963), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), + [anon_sym_BSLASHincludesvg] = ACTIONS(4963), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), + [anon_sym_BSLASHimport] = ACTIONS(4963), + [anon_sym_BSLASHsubimport] = ACTIONS(4963), + [anon_sym_BSLASHinputfrom] = ACTIONS(4963), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), + [anon_sym_BSLASHincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHcaption] = ACTIONS(4963), + [anon_sym_BSLASHcite] = ACTIONS(4963), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCite] = ACTIONS(4963), + [anon_sym_BSLASHnocite] = ACTIONS(4963), + [anon_sym_BSLASHcitet] = ACTIONS(4963), + [anon_sym_BSLASHcitep] = ACTIONS(4963), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteauthor] = ACTIONS(4963), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitetitle] = ACTIONS(4963), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteyear] = ACTIONS(4963), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitedate] = ACTIONS(4963), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteurl] = ACTIONS(4963), + [anon_sym_BSLASHfullcite] = ACTIONS(4963), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), + [anon_sym_BSLASHcitealt] = ACTIONS(4963), + [anon_sym_BSLASHcitealp] = ACTIONS(4963), + [anon_sym_BSLASHcitetext] = ACTIONS(4963), + [anon_sym_BSLASHparencite] = ACTIONS(4963), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHParencite] = ACTIONS(4963), + [anon_sym_BSLASHfootcite] = ACTIONS(4963), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), + [anon_sym_BSLASHtextcite] = ACTIONS(4963), + [anon_sym_BSLASHTextcite] = ACTIONS(4963), + [anon_sym_BSLASHsmartcite] = ACTIONS(4963), + [anon_sym_BSLASHSmartcite] = ACTIONS(4963), + [anon_sym_BSLASHsupercite] = ACTIONS(4963), + [anon_sym_BSLASHautocite] = ACTIONS(4963), + [anon_sym_BSLASHAutocite] = ACTIONS(4963), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHvolcite] = ACTIONS(4963), + [anon_sym_BSLASHVolcite] = ACTIONS(4963), + [anon_sym_BSLASHpvolcite] = ACTIONS(4963), + [anon_sym_BSLASHPvolcite] = ACTIONS(4963), + [anon_sym_BSLASHfvolcite] = ACTIONS(4963), + [anon_sym_BSLASHftvolcite] = ACTIONS(4963), + [anon_sym_BSLASHsvolcite] = ACTIONS(4963), + [anon_sym_BSLASHSvolcite] = ACTIONS(4963), + [anon_sym_BSLASHtvolcite] = ACTIONS(4963), + [anon_sym_BSLASHTvolcite] = ACTIONS(4963), + [anon_sym_BSLASHavolcite] = ACTIONS(4963), + [anon_sym_BSLASHAvolcite] = ACTIONS(4963), + [anon_sym_BSLASHnotecite] = ACTIONS(4963), + [anon_sym_BSLASHNotecite] = ACTIONS(4963), + [anon_sym_BSLASHpnotecite] = ACTIONS(4963), + [anon_sym_BSLASHPnotecite] = ACTIONS(4963), + [anon_sym_BSLASHfnotecite] = ACTIONS(4963), + [anon_sym_BSLASHlabel] = ACTIONS(4963), + [anon_sym_BSLASHref] = ACTIONS(4963), + [anon_sym_BSLASHeqref] = ACTIONS(4963), + [anon_sym_BSLASHvref] = ACTIONS(4963), + [anon_sym_BSLASHVref] = ACTIONS(4963), + [anon_sym_BSLASHautoref] = ACTIONS(4963), + [anon_sym_BSLASHpageref] = ACTIONS(4963), + [anon_sym_BSLASHcref] = ACTIONS(4963), + [anon_sym_BSLASHCref] = ACTIONS(4963), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnameCref] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHlabelcref] = ACTIONS(4963), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCrefrange] = ACTIONS(4963), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnewlabel] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), + [anon_sym_BSLASHdef] = ACTIONS(4963), + [anon_sym_BSLASHlet] = ACTIONS(4963), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), + [anon_sym_BSLASHgls] = ACTIONS(4963), + [anon_sym_BSLASHGls] = ACTIONS(4963), + [anon_sym_BSLASHGLS] = ACTIONS(4963), + [anon_sym_BSLASHglspl] = ACTIONS(4963), + [anon_sym_BSLASHGlspl] = ACTIONS(4963), + [anon_sym_BSLASHGLSpl] = ACTIONS(4963), + [anon_sym_BSLASHglsdisp] = ACTIONS(4963), + [anon_sym_BSLASHglslink] = ACTIONS(4963), + [anon_sym_BSLASHglstext] = ACTIONS(4963), + [anon_sym_BSLASHGlstext] = ACTIONS(4963), + [anon_sym_BSLASHGLStext] = ACTIONS(4963), + [anon_sym_BSLASHglsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), + [anon_sym_BSLASHglsplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSplural] = ACTIONS(4963), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHglsname] = ACTIONS(4963), + [anon_sym_BSLASHGlsname] = ACTIONS(4963), + [anon_sym_BSLASHGLSname] = ACTIONS(4963), + [anon_sym_BSLASHglssymbol] = ACTIONS(4963), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), + [anon_sym_BSLASHglsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), + [anon_sym_BSLASHglsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), + [anon_sym_BSLASHglsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), + [anon_sym_BSLASHglsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), + [anon_sym_BSLASHglsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), + [anon_sym_BSLASHnewacronym] = ACTIONS(4963), + [anon_sym_BSLASHacrshort] = ACTIONS(4963), + [anon_sym_BSLASHAcrshort] = ACTIONS(4963), + [anon_sym_BSLASHACRshort] = ACTIONS(4963), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), + [anon_sym_BSLASHacrlong] = ACTIONS(4963), + [anon_sym_BSLASHAcrlong] = ACTIONS(4963), + [anon_sym_BSLASHACRlong] = ACTIONS(4963), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), + [anon_sym_BSLASHacrfull] = ACTIONS(4963), + [anon_sym_BSLASHAcrfull] = ACTIONS(4963), + [anon_sym_BSLASHACRfull] = ACTIONS(4963), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), + [anon_sym_BSLASHacs] = ACTIONS(4963), + [anon_sym_BSLASHAcs] = ACTIONS(4963), + [anon_sym_BSLASHacsp] = ACTIONS(4963), + [anon_sym_BSLASHAcsp] = ACTIONS(4963), + [anon_sym_BSLASHacl] = ACTIONS(4963), + [anon_sym_BSLASHAcl] = ACTIONS(4963), + [anon_sym_BSLASHaclp] = ACTIONS(4963), + [anon_sym_BSLASHAclp] = ACTIONS(4963), + [anon_sym_BSLASHacf] = ACTIONS(4963), + [anon_sym_BSLASHAcf] = ACTIONS(4963), + [anon_sym_BSLASHacfp] = ACTIONS(4963), + [anon_sym_BSLASHAcfp] = ACTIONS(4963), + [anon_sym_BSLASHac] = ACTIONS(4963), + [anon_sym_BSLASHAc] = ACTIONS(4963), + [anon_sym_BSLASHacp] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), + [anon_sym_BSLASHcolor] = ACTIONS(4963), + [anon_sym_BSLASHcolorbox] = ACTIONS(4963), + [anon_sym_BSLASHtextcolor] = ACTIONS(4963), + [anon_sym_BSLASHpagecolor] = ACTIONS(4963), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), + [anon_sym_BSLASHtext] = ACTIONS(4963), + [anon_sym_BSLASHintertext] = ACTIONS(4963), + [anon_sym_shortintertext] = ACTIONS(4963), }, - [1514] = { - [sym_command_name] = ACTIONS(5143), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5143), - [anon_sym_RBRACK] = ACTIONS(5141), - [anon_sym_COMMA] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(5141), - [anon_sym_RBRACE] = ACTIONS(5141), - [sym_word] = ACTIONS(5143), - [sym_placeholder] = ACTIONS(5141), - [anon_sym_PLUS] = ACTIONS(5143), - [anon_sym_DASH] = ACTIONS(5143), - [anon_sym_STAR] = ACTIONS(5143), - [anon_sym_SLASH] = ACTIONS(5143), - [anon_sym_CARET] = ACTIONS(5143), - [anon_sym__] = ACTIONS(5143), - [anon_sym_LT] = ACTIONS(5143), - [anon_sym_GT] = ACTIONS(5143), - [anon_sym_BANG] = ACTIONS(5143), - [anon_sym_PIPE] = ACTIONS(5143), - [anon_sym_COLON] = ACTIONS(5143), - [anon_sym_SQUOTE] = ACTIONS(5143), - [anon_sym_BSLASHusepackage] = ACTIONS(5143), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5143), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5143), - [anon_sym_BSLASHinclude] = ACTIONS(5143), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5143), - [anon_sym_BSLASHinput] = ACTIONS(5143), - [anon_sym_BSLASHsubfile] = ACTIONS(5143), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5143), - [anon_sym_BSLASHbibliography] = ACTIONS(5143), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5143), - [anon_sym_BSLASHincludesvg] = ACTIONS(5143), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5143), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5143), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5143), - [anon_sym_BSLASHimport] = ACTIONS(5143), - [anon_sym_BSLASHsubimport] = ACTIONS(5143), - [anon_sym_BSLASHinputfrom] = ACTIONS(5143), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5143), - [anon_sym_BSLASHincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5143), - [anon_sym_BSLASHcaption] = ACTIONS(5143), - [anon_sym_BSLASHcite] = ACTIONS(5143), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCite] = ACTIONS(5143), - [anon_sym_BSLASHnocite] = ACTIONS(5143), - [anon_sym_BSLASHcitet] = ACTIONS(5143), - [anon_sym_BSLASHcitep] = ACTIONS(5143), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteauthor] = ACTIONS(5143), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5143), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitetitle] = ACTIONS(5143), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteyear] = ACTIONS(5143), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5141), - [anon_sym_BSLASHcitedate] = ACTIONS(5143), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5141), - [anon_sym_BSLASHciteurl] = ACTIONS(5143), - [anon_sym_BSLASHfullcite] = ACTIONS(5143), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5143), - [anon_sym_BSLASHcitealt] = ACTIONS(5143), - [anon_sym_BSLASHcitealp] = ACTIONS(5143), - [anon_sym_BSLASHcitetext] = ACTIONS(5143), - [anon_sym_BSLASHparencite] = ACTIONS(5143), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHParencite] = ACTIONS(5143), - [anon_sym_BSLASHfootcite] = ACTIONS(5143), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5143), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5143), - [anon_sym_BSLASHtextcite] = ACTIONS(5143), - [anon_sym_BSLASHTextcite] = ACTIONS(5143), - [anon_sym_BSLASHsmartcite] = ACTIONS(5143), - [anon_sym_BSLASHSmartcite] = ACTIONS(5143), - [anon_sym_BSLASHsupercite] = ACTIONS(5143), - [anon_sym_BSLASHautocite] = ACTIONS(5143), - [anon_sym_BSLASHAutocite] = ACTIONS(5143), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5141), - [anon_sym_BSLASHvolcite] = ACTIONS(5143), - [anon_sym_BSLASHVolcite] = ACTIONS(5143), - [anon_sym_BSLASHpvolcite] = ACTIONS(5143), - [anon_sym_BSLASHPvolcite] = ACTIONS(5143), - [anon_sym_BSLASHfvolcite] = ACTIONS(5143), - [anon_sym_BSLASHftvolcite] = ACTIONS(5143), - [anon_sym_BSLASHsvolcite] = ACTIONS(5143), - [anon_sym_BSLASHSvolcite] = ACTIONS(5143), - [anon_sym_BSLASHtvolcite] = ACTIONS(5143), - [anon_sym_BSLASHTvolcite] = ACTIONS(5143), - [anon_sym_BSLASHavolcite] = ACTIONS(5143), - [anon_sym_BSLASHAvolcite] = ACTIONS(5143), - [anon_sym_BSLASHnotecite] = ACTIONS(5143), - [anon_sym_BSLASHNotecite] = ACTIONS(5143), - [anon_sym_BSLASHpnotecite] = ACTIONS(5143), - [anon_sym_BSLASHPnotecite] = ACTIONS(5143), - [anon_sym_BSLASHfnotecite] = ACTIONS(5143), - [anon_sym_BSLASHlabel] = ACTIONS(5143), - [anon_sym_BSLASHref] = ACTIONS(5143), - [anon_sym_BSLASHeqref] = ACTIONS(5143), - [anon_sym_BSLASHvref] = ACTIONS(5143), - [anon_sym_BSLASHVref] = ACTIONS(5143), - [anon_sym_BSLASHautoref] = ACTIONS(5143), - [anon_sym_BSLASHpageref] = ACTIONS(5143), - [anon_sym_BSLASHcref] = ACTIONS(5143), - [anon_sym_BSLASHCref] = ACTIONS(5143), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnameCref] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5143), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5143), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5143), - [anon_sym_BSLASHlabelcref] = ACTIONS(5143), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange] = ACTIONS(5143), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHCrefrange] = ACTIONS(5143), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5141), - [anon_sym_BSLASHnewlabel] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand] = ACTIONS(5143), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5143), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5143), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5141), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5143), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5141), - [anon_sym_BSLASHdef] = ACTIONS(5143), - [anon_sym_BSLASHlet] = ACTIONS(5143), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5143), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5143), - [anon_sym_BSLASHgls] = ACTIONS(5143), - [anon_sym_BSLASHGls] = ACTIONS(5143), - [anon_sym_BSLASHGLS] = ACTIONS(5143), - [anon_sym_BSLASHglspl] = ACTIONS(5143), - [anon_sym_BSLASHGlspl] = ACTIONS(5143), - [anon_sym_BSLASHGLSpl] = ACTIONS(5143), - [anon_sym_BSLASHglsdisp] = ACTIONS(5143), - [anon_sym_BSLASHglslink] = ACTIONS(5143), - [anon_sym_BSLASHglstext] = ACTIONS(5143), - [anon_sym_BSLASHGlstext] = ACTIONS(5143), - [anon_sym_BSLASHGLStext] = ACTIONS(5143), - [anon_sym_BSLASHglsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5143), - [anon_sym_BSLASHglsplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSplural] = ACTIONS(5143), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5143), - [anon_sym_BSLASHglsname] = ACTIONS(5143), - [anon_sym_BSLASHGlsname] = ACTIONS(5143), - [anon_sym_BSLASHGLSname] = ACTIONS(5143), - [anon_sym_BSLASHglssymbol] = ACTIONS(5143), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5143), - [anon_sym_BSLASHglsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5143), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5143), - [anon_sym_BSLASHglsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5143), - [anon_sym_BSLASHglsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5143), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5143), - [anon_sym_BSLASHglsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5143), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5143), - [anon_sym_BSLASHglsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5143), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5143), - [anon_sym_BSLASHnewacronym] = ACTIONS(5143), - [anon_sym_BSLASHacrshort] = ACTIONS(5143), - [anon_sym_BSLASHAcrshort] = ACTIONS(5143), - [anon_sym_BSLASHACRshort] = ACTIONS(5143), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5143), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5143), - [anon_sym_BSLASHacrlong] = ACTIONS(5143), - [anon_sym_BSLASHAcrlong] = ACTIONS(5143), - [anon_sym_BSLASHACRlong] = ACTIONS(5143), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5143), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5143), - [anon_sym_BSLASHacrfull] = ACTIONS(5143), - [anon_sym_BSLASHAcrfull] = ACTIONS(5143), - [anon_sym_BSLASHACRfull] = ACTIONS(5143), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5143), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5143), - [anon_sym_BSLASHacs] = ACTIONS(5143), - [anon_sym_BSLASHAcs] = ACTIONS(5143), - [anon_sym_BSLASHacsp] = ACTIONS(5143), - [anon_sym_BSLASHAcsp] = ACTIONS(5143), - [anon_sym_BSLASHacl] = ACTIONS(5143), - [anon_sym_BSLASHAcl] = ACTIONS(5143), - [anon_sym_BSLASHaclp] = ACTIONS(5143), - [anon_sym_BSLASHAclp] = ACTIONS(5143), - [anon_sym_BSLASHacf] = ACTIONS(5143), - [anon_sym_BSLASHAcf] = ACTIONS(5143), - [anon_sym_BSLASHacfp] = ACTIONS(5143), - [anon_sym_BSLASHAcfp] = ACTIONS(5143), - [anon_sym_BSLASHac] = ACTIONS(5143), - [anon_sym_BSLASHAc] = ACTIONS(5143), - [anon_sym_BSLASHacp] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5143), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5143), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5143), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5143), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5143), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5143), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5143), - [anon_sym_BSLASHcolor] = ACTIONS(5143), - [anon_sym_BSLASHcolorbox] = ACTIONS(5143), - [anon_sym_BSLASHtextcolor] = ACTIONS(5143), - [anon_sym_BSLASHpagecolor] = ACTIONS(5143), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5143), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5143), + [1477] = { + [sym_command_name] = ACTIONS(5305), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5305), + [anon_sym_LPAREN] = ACTIONS(5303), + [anon_sym_RPAREN] = ACTIONS(5303), + [anon_sym_LBRACK] = ACTIONS(5303), + [anon_sym_RBRACK] = ACTIONS(5303), + [anon_sym_COMMA] = ACTIONS(5303), + [anon_sym_LBRACE] = ACTIONS(5303), + [anon_sym_RBRACE] = ACTIONS(5303), + [sym_word] = ACTIONS(5305), + [sym_placeholder] = ACTIONS(5303), + [anon_sym_PLUS] = ACTIONS(5305), + [anon_sym_DASH] = ACTIONS(5305), + [anon_sym_STAR] = ACTIONS(5305), + [anon_sym_SLASH] = ACTIONS(5305), + [anon_sym_CARET] = ACTIONS(5305), + [anon_sym__] = ACTIONS(5305), + [anon_sym_LT] = ACTIONS(5305), + [anon_sym_GT] = ACTIONS(5305), + [anon_sym_BANG] = ACTIONS(5305), + [anon_sym_PIPE] = ACTIONS(5305), + [anon_sym_COLON] = ACTIONS(5305), + [anon_sym_SQUOTE] = ACTIONS(5305), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5303), + [anon_sym_DOLLAR] = ACTIONS(5305), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5303), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5303), + [anon_sym_BSLASHusepackage] = ACTIONS(5305), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), + [anon_sym_BSLASHinclude] = ACTIONS(5305), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), + [anon_sym_BSLASHinput] = ACTIONS(5305), + [anon_sym_BSLASHsubfile] = ACTIONS(5305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), + [anon_sym_BSLASHbibliography] = ACTIONS(5305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), + [anon_sym_BSLASHincludesvg] = ACTIONS(5305), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), + [anon_sym_BSLASHimport] = ACTIONS(5305), + [anon_sym_BSLASHsubimport] = ACTIONS(5305), + [anon_sym_BSLASHinputfrom] = ACTIONS(5305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), + [anon_sym_BSLASHincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHcaption] = ACTIONS(5305), + [anon_sym_BSLASHcite] = ACTIONS(5305), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCite] = ACTIONS(5305), + [anon_sym_BSLASHnocite] = ACTIONS(5305), + [anon_sym_BSLASHcitet] = ACTIONS(5305), + [anon_sym_BSLASHcitep] = ACTIONS(5305), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor] = ACTIONS(5305), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle] = ACTIONS(5305), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteyear] = ACTIONS(5305), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitedate] = ACTIONS(5305), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteurl] = ACTIONS(5305), + [anon_sym_BSLASHfullcite] = ACTIONS(5305), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), + [anon_sym_BSLASHcitealt] = ACTIONS(5305), + [anon_sym_BSLASHcitealp] = ACTIONS(5305), + [anon_sym_BSLASHcitetext] = ACTIONS(5305), + [anon_sym_BSLASHparencite] = ACTIONS(5305), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHParencite] = ACTIONS(5305), + [anon_sym_BSLASHfootcite] = ACTIONS(5305), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), + [anon_sym_BSLASHtextcite] = ACTIONS(5305), + [anon_sym_BSLASHTextcite] = ACTIONS(5305), + [anon_sym_BSLASHsmartcite] = ACTIONS(5305), + [anon_sym_BSLASHSmartcite] = ACTIONS(5305), + [anon_sym_BSLASHsupercite] = ACTIONS(5305), + [anon_sym_BSLASHautocite] = ACTIONS(5305), + [anon_sym_BSLASHAutocite] = ACTIONS(5305), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHvolcite] = ACTIONS(5305), + [anon_sym_BSLASHVolcite] = ACTIONS(5305), + [anon_sym_BSLASHpvolcite] = ACTIONS(5305), + [anon_sym_BSLASHPvolcite] = ACTIONS(5305), + [anon_sym_BSLASHfvolcite] = ACTIONS(5305), + [anon_sym_BSLASHftvolcite] = ACTIONS(5305), + [anon_sym_BSLASHsvolcite] = ACTIONS(5305), + [anon_sym_BSLASHSvolcite] = ACTIONS(5305), + [anon_sym_BSLASHtvolcite] = ACTIONS(5305), + [anon_sym_BSLASHTvolcite] = ACTIONS(5305), + [anon_sym_BSLASHavolcite] = ACTIONS(5305), + [anon_sym_BSLASHAvolcite] = ACTIONS(5305), + [anon_sym_BSLASHnotecite] = ACTIONS(5305), + [anon_sym_BSLASHNotecite] = ACTIONS(5305), + [anon_sym_BSLASHpnotecite] = ACTIONS(5305), + [anon_sym_BSLASHPnotecite] = ACTIONS(5305), + [anon_sym_BSLASHfnotecite] = ACTIONS(5305), + [anon_sym_BSLASHlabel] = ACTIONS(5305), + [anon_sym_BSLASHref] = ACTIONS(5305), + [anon_sym_BSLASHeqref] = ACTIONS(5305), + [anon_sym_BSLASHvref] = ACTIONS(5305), + [anon_sym_BSLASHVref] = ACTIONS(5305), + [anon_sym_BSLASHautoref] = ACTIONS(5305), + [anon_sym_BSLASHpageref] = ACTIONS(5305), + [anon_sym_BSLASHcref] = ACTIONS(5305), + [anon_sym_BSLASHCref] = ACTIONS(5305), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnameCref] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHlabelcref] = ACTIONS(5305), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange] = ACTIONS(5305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnewlabel] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), + [anon_sym_BSLASHdef] = ACTIONS(5305), + [anon_sym_BSLASHlet] = ACTIONS(5305), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), + [anon_sym_BSLASHgls] = ACTIONS(5305), + [anon_sym_BSLASHGls] = ACTIONS(5305), + [anon_sym_BSLASHGLS] = ACTIONS(5305), + [anon_sym_BSLASHglspl] = ACTIONS(5305), + [anon_sym_BSLASHGlspl] = ACTIONS(5305), + [anon_sym_BSLASHGLSpl] = ACTIONS(5305), + [anon_sym_BSLASHglsdisp] = ACTIONS(5305), + [anon_sym_BSLASHglslink] = ACTIONS(5305), + [anon_sym_BSLASHglstext] = ACTIONS(5305), + [anon_sym_BSLASHGlstext] = ACTIONS(5305), + [anon_sym_BSLASHGLStext] = ACTIONS(5305), + [anon_sym_BSLASHglsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), + [anon_sym_BSLASHglsplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSplural] = ACTIONS(5305), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHglsname] = ACTIONS(5305), + [anon_sym_BSLASHGlsname] = ACTIONS(5305), + [anon_sym_BSLASHGLSname] = ACTIONS(5305), + [anon_sym_BSLASHglssymbol] = ACTIONS(5305), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), + [anon_sym_BSLASHglsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), + [anon_sym_BSLASHglsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), + [anon_sym_BSLASHglsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), + [anon_sym_BSLASHglsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), + [anon_sym_BSLASHglsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), + [anon_sym_BSLASHnewacronym] = ACTIONS(5305), + [anon_sym_BSLASHacrshort] = ACTIONS(5305), + [anon_sym_BSLASHAcrshort] = ACTIONS(5305), + [anon_sym_BSLASHACRshort] = ACTIONS(5305), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), + [anon_sym_BSLASHacrlong] = ACTIONS(5305), + [anon_sym_BSLASHAcrlong] = ACTIONS(5305), + [anon_sym_BSLASHACRlong] = ACTIONS(5305), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), + [anon_sym_BSLASHacrfull] = ACTIONS(5305), + [anon_sym_BSLASHAcrfull] = ACTIONS(5305), + [anon_sym_BSLASHACRfull] = ACTIONS(5305), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), + [anon_sym_BSLASHacs] = ACTIONS(5305), + [anon_sym_BSLASHAcs] = ACTIONS(5305), + [anon_sym_BSLASHacsp] = ACTIONS(5305), + [anon_sym_BSLASHAcsp] = ACTIONS(5305), + [anon_sym_BSLASHacl] = ACTIONS(5305), + [anon_sym_BSLASHAcl] = ACTIONS(5305), + [anon_sym_BSLASHaclp] = ACTIONS(5305), + [anon_sym_BSLASHAclp] = ACTIONS(5305), + [anon_sym_BSLASHacf] = ACTIONS(5305), + [anon_sym_BSLASHAcf] = ACTIONS(5305), + [anon_sym_BSLASHacfp] = ACTIONS(5305), + [anon_sym_BSLASHAcfp] = ACTIONS(5305), + [anon_sym_BSLASHac] = ACTIONS(5305), + [anon_sym_BSLASHAc] = ACTIONS(5305), + [anon_sym_BSLASHacp] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), + [anon_sym_BSLASHcolor] = ACTIONS(5305), + [anon_sym_BSLASHcolorbox] = ACTIONS(5305), + [anon_sym_BSLASHtextcolor] = ACTIONS(5305), + [anon_sym_BSLASHpagecolor] = ACTIONS(5305), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), + [anon_sym_BSLASHtext] = ACTIONS(5305), + [anon_sym_BSLASHintertext] = ACTIONS(5305), + [anon_sym_shortintertext] = ACTIONS(5305), }, - [1515] = { - [sym_command_name] = ACTIONS(5129), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5129), - [anon_sym_RBRACK] = ACTIONS(5127), - [anon_sym_COMMA] = ACTIONS(5127), - [anon_sym_EQ] = ACTIONS(5127), - [anon_sym_RBRACE] = ACTIONS(5127), - [sym_word] = ACTIONS(5129), - [sym_placeholder] = ACTIONS(5127), - [anon_sym_PLUS] = ACTIONS(5129), - [anon_sym_DASH] = ACTIONS(5129), - [anon_sym_STAR] = ACTIONS(5129), - [anon_sym_SLASH] = ACTIONS(5129), - [anon_sym_CARET] = ACTIONS(5129), - [anon_sym__] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(5129), - [anon_sym_GT] = ACTIONS(5129), - [anon_sym_BANG] = ACTIONS(5129), - [anon_sym_PIPE] = ACTIONS(5129), - [anon_sym_COLON] = ACTIONS(5129), - [anon_sym_SQUOTE] = ACTIONS(5129), - [anon_sym_BSLASHusepackage] = ACTIONS(5129), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5129), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5129), - [anon_sym_BSLASHinclude] = ACTIONS(5129), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5129), - [anon_sym_BSLASHinput] = ACTIONS(5129), - [anon_sym_BSLASHsubfile] = ACTIONS(5129), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5129), - [anon_sym_BSLASHbibliography] = ACTIONS(5129), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5129), - [anon_sym_BSLASHincludesvg] = ACTIONS(5129), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5129), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5129), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5129), - [anon_sym_BSLASHimport] = ACTIONS(5129), - [anon_sym_BSLASHsubimport] = ACTIONS(5129), - [anon_sym_BSLASHinputfrom] = ACTIONS(5129), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5129), - [anon_sym_BSLASHincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5129), - [anon_sym_BSLASHcaption] = ACTIONS(5129), - [anon_sym_BSLASHcite] = ACTIONS(5129), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCite] = ACTIONS(5129), - [anon_sym_BSLASHnocite] = ACTIONS(5129), - [anon_sym_BSLASHcitet] = ACTIONS(5129), - [anon_sym_BSLASHcitep] = ACTIONS(5129), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteauthor] = ACTIONS(5129), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5129), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitetitle] = ACTIONS(5129), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteyear] = ACTIONS(5129), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5127), - [anon_sym_BSLASHcitedate] = ACTIONS(5129), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5127), - [anon_sym_BSLASHciteurl] = ACTIONS(5129), - [anon_sym_BSLASHfullcite] = ACTIONS(5129), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5129), - [anon_sym_BSLASHcitealt] = ACTIONS(5129), - [anon_sym_BSLASHcitealp] = ACTIONS(5129), - [anon_sym_BSLASHcitetext] = ACTIONS(5129), - [anon_sym_BSLASHparencite] = ACTIONS(5129), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHParencite] = ACTIONS(5129), - [anon_sym_BSLASHfootcite] = ACTIONS(5129), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5129), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5129), - [anon_sym_BSLASHtextcite] = ACTIONS(5129), - [anon_sym_BSLASHTextcite] = ACTIONS(5129), - [anon_sym_BSLASHsmartcite] = ACTIONS(5129), - [anon_sym_BSLASHSmartcite] = ACTIONS(5129), - [anon_sym_BSLASHsupercite] = ACTIONS(5129), - [anon_sym_BSLASHautocite] = ACTIONS(5129), - [anon_sym_BSLASHAutocite] = ACTIONS(5129), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5127), - [anon_sym_BSLASHvolcite] = ACTIONS(5129), - [anon_sym_BSLASHVolcite] = ACTIONS(5129), - [anon_sym_BSLASHpvolcite] = ACTIONS(5129), - [anon_sym_BSLASHPvolcite] = ACTIONS(5129), - [anon_sym_BSLASHfvolcite] = ACTIONS(5129), - [anon_sym_BSLASHftvolcite] = ACTIONS(5129), - [anon_sym_BSLASHsvolcite] = ACTIONS(5129), - [anon_sym_BSLASHSvolcite] = ACTIONS(5129), - [anon_sym_BSLASHtvolcite] = ACTIONS(5129), - [anon_sym_BSLASHTvolcite] = ACTIONS(5129), - [anon_sym_BSLASHavolcite] = ACTIONS(5129), - [anon_sym_BSLASHAvolcite] = ACTIONS(5129), - [anon_sym_BSLASHnotecite] = ACTIONS(5129), - [anon_sym_BSLASHNotecite] = ACTIONS(5129), - [anon_sym_BSLASHpnotecite] = ACTIONS(5129), - [anon_sym_BSLASHPnotecite] = ACTIONS(5129), - [anon_sym_BSLASHfnotecite] = ACTIONS(5129), - [anon_sym_BSLASHlabel] = ACTIONS(5129), - [anon_sym_BSLASHref] = ACTIONS(5129), - [anon_sym_BSLASHeqref] = ACTIONS(5129), - [anon_sym_BSLASHvref] = ACTIONS(5129), - [anon_sym_BSLASHVref] = ACTIONS(5129), - [anon_sym_BSLASHautoref] = ACTIONS(5129), - [anon_sym_BSLASHpageref] = ACTIONS(5129), - [anon_sym_BSLASHcref] = ACTIONS(5129), - [anon_sym_BSLASHCref] = ACTIONS(5129), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnameCref] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5129), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5129), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5129), - [anon_sym_BSLASHlabelcref] = ACTIONS(5129), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange] = ACTIONS(5129), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHCrefrange] = ACTIONS(5129), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5127), - [anon_sym_BSLASHnewlabel] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand] = ACTIONS(5129), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5129), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5129), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5127), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5129), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5127), - [anon_sym_BSLASHdef] = ACTIONS(5129), - [anon_sym_BSLASHlet] = ACTIONS(5129), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5129), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5129), - [anon_sym_BSLASHgls] = ACTIONS(5129), - [anon_sym_BSLASHGls] = ACTIONS(5129), - [anon_sym_BSLASHGLS] = ACTIONS(5129), - [anon_sym_BSLASHglspl] = ACTIONS(5129), - [anon_sym_BSLASHGlspl] = ACTIONS(5129), - [anon_sym_BSLASHGLSpl] = ACTIONS(5129), - [anon_sym_BSLASHglsdisp] = ACTIONS(5129), - [anon_sym_BSLASHglslink] = ACTIONS(5129), - [anon_sym_BSLASHglstext] = ACTIONS(5129), - [anon_sym_BSLASHGlstext] = ACTIONS(5129), - [anon_sym_BSLASHGLStext] = ACTIONS(5129), - [anon_sym_BSLASHglsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5129), - [anon_sym_BSLASHglsplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSplural] = ACTIONS(5129), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5129), - [anon_sym_BSLASHglsname] = ACTIONS(5129), - [anon_sym_BSLASHGlsname] = ACTIONS(5129), - [anon_sym_BSLASHGLSname] = ACTIONS(5129), - [anon_sym_BSLASHglssymbol] = ACTIONS(5129), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5129), - [anon_sym_BSLASHglsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5129), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5129), - [anon_sym_BSLASHglsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5129), - [anon_sym_BSLASHglsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5129), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5129), - [anon_sym_BSLASHglsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5129), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5129), - [anon_sym_BSLASHglsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5129), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5129), - [anon_sym_BSLASHnewacronym] = ACTIONS(5129), - [anon_sym_BSLASHacrshort] = ACTIONS(5129), - [anon_sym_BSLASHAcrshort] = ACTIONS(5129), - [anon_sym_BSLASHACRshort] = ACTIONS(5129), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5129), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5129), - [anon_sym_BSLASHacrlong] = ACTIONS(5129), - [anon_sym_BSLASHAcrlong] = ACTIONS(5129), - [anon_sym_BSLASHACRlong] = ACTIONS(5129), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5129), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5129), - [anon_sym_BSLASHacrfull] = ACTIONS(5129), - [anon_sym_BSLASHAcrfull] = ACTIONS(5129), - [anon_sym_BSLASHACRfull] = ACTIONS(5129), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5129), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5129), - [anon_sym_BSLASHacs] = ACTIONS(5129), - [anon_sym_BSLASHAcs] = ACTIONS(5129), - [anon_sym_BSLASHacsp] = ACTIONS(5129), - [anon_sym_BSLASHAcsp] = ACTIONS(5129), - [anon_sym_BSLASHacl] = ACTIONS(5129), - [anon_sym_BSLASHAcl] = ACTIONS(5129), - [anon_sym_BSLASHaclp] = ACTIONS(5129), - [anon_sym_BSLASHAclp] = ACTIONS(5129), - [anon_sym_BSLASHacf] = ACTIONS(5129), - [anon_sym_BSLASHAcf] = ACTIONS(5129), - [anon_sym_BSLASHacfp] = ACTIONS(5129), - [anon_sym_BSLASHAcfp] = ACTIONS(5129), - [anon_sym_BSLASHac] = ACTIONS(5129), - [anon_sym_BSLASHAc] = ACTIONS(5129), - [anon_sym_BSLASHacp] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5129), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5129), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5129), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5129), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5129), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5129), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5129), - [anon_sym_BSLASHcolor] = ACTIONS(5129), - [anon_sym_BSLASHcolorbox] = ACTIONS(5129), - [anon_sym_BSLASHtextcolor] = ACTIONS(5129), - [anon_sym_BSLASHpagecolor] = ACTIONS(5129), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5129), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5129), + [1478] = { + [sym_command_name] = ACTIONS(5221), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5221), + [anon_sym_LPAREN] = ACTIONS(5219), + [anon_sym_RPAREN] = ACTIONS(5219), + [anon_sym_LBRACK] = ACTIONS(5219), + [anon_sym_RBRACK] = ACTIONS(5219), + [anon_sym_COMMA] = ACTIONS(5219), + [anon_sym_LBRACE] = ACTIONS(5219), + [anon_sym_RBRACE] = ACTIONS(5219), + [sym_word] = ACTIONS(5221), + [sym_placeholder] = ACTIONS(5219), + [anon_sym_PLUS] = ACTIONS(5221), + [anon_sym_DASH] = ACTIONS(5221), + [anon_sym_STAR] = ACTIONS(5221), + [anon_sym_SLASH] = ACTIONS(5221), + [anon_sym_CARET] = ACTIONS(5221), + [anon_sym__] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5221), + [anon_sym_GT] = ACTIONS(5221), + [anon_sym_BANG] = ACTIONS(5221), + [anon_sym_PIPE] = ACTIONS(5221), + [anon_sym_COLON] = ACTIONS(5221), + [anon_sym_SQUOTE] = ACTIONS(5221), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5219), + [anon_sym_DOLLAR] = ACTIONS(5221), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5219), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5219), + [anon_sym_BSLASHusepackage] = ACTIONS(5221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), + [anon_sym_BSLASHinclude] = ACTIONS(5221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), + [anon_sym_BSLASHinput] = ACTIONS(5221), + [anon_sym_BSLASHsubfile] = ACTIONS(5221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), + [anon_sym_BSLASHbibliography] = ACTIONS(5221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), + [anon_sym_BSLASHincludesvg] = ACTIONS(5221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), + [anon_sym_BSLASHimport] = ACTIONS(5221), + [anon_sym_BSLASHsubimport] = ACTIONS(5221), + [anon_sym_BSLASHinputfrom] = ACTIONS(5221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), + [anon_sym_BSLASHincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHcaption] = ACTIONS(5221), + [anon_sym_BSLASHcite] = ACTIONS(5221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCite] = ACTIONS(5221), + [anon_sym_BSLASHnocite] = ACTIONS(5221), + [anon_sym_BSLASHcitet] = ACTIONS(5221), + [anon_sym_BSLASHcitep] = ACTIONS(5221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteyear] = ACTIONS(5221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitedate] = ACTIONS(5221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteurl] = ACTIONS(5221), + [anon_sym_BSLASHfullcite] = ACTIONS(5221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), + [anon_sym_BSLASHcitealt] = ACTIONS(5221), + [anon_sym_BSLASHcitealp] = ACTIONS(5221), + [anon_sym_BSLASHcitetext] = ACTIONS(5221), + [anon_sym_BSLASHparencite] = ACTIONS(5221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHParencite] = ACTIONS(5221), + [anon_sym_BSLASHfootcite] = ACTIONS(5221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), + [anon_sym_BSLASHtextcite] = ACTIONS(5221), + [anon_sym_BSLASHTextcite] = ACTIONS(5221), + [anon_sym_BSLASHsmartcite] = ACTIONS(5221), + [anon_sym_BSLASHSmartcite] = ACTIONS(5221), + [anon_sym_BSLASHsupercite] = ACTIONS(5221), + [anon_sym_BSLASHautocite] = ACTIONS(5221), + [anon_sym_BSLASHAutocite] = ACTIONS(5221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHvolcite] = ACTIONS(5221), + [anon_sym_BSLASHVolcite] = ACTIONS(5221), + [anon_sym_BSLASHpvolcite] = ACTIONS(5221), + [anon_sym_BSLASHPvolcite] = ACTIONS(5221), + [anon_sym_BSLASHfvolcite] = ACTIONS(5221), + [anon_sym_BSLASHftvolcite] = ACTIONS(5221), + [anon_sym_BSLASHsvolcite] = ACTIONS(5221), + [anon_sym_BSLASHSvolcite] = ACTIONS(5221), + [anon_sym_BSLASHtvolcite] = ACTIONS(5221), + [anon_sym_BSLASHTvolcite] = ACTIONS(5221), + [anon_sym_BSLASHavolcite] = ACTIONS(5221), + [anon_sym_BSLASHAvolcite] = ACTIONS(5221), + [anon_sym_BSLASHnotecite] = ACTIONS(5221), + [anon_sym_BSLASHNotecite] = ACTIONS(5221), + [anon_sym_BSLASHpnotecite] = ACTIONS(5221), + [anon_sym_BSLASHPnotecite] = ACTIONS(5221), + [anon_sym_BSLASHfnotecite] = ACTIONS(5221), + [anon_sym_BSLASHlabel] = ACTIONS(5221), + [anon_sym_BSLASHref] = ACTIONS(5221), + [anon_sym_BSLASHeqref] = ACTIONS(5221), + [anon_sym_BSLASHvref] = ACTIONS(5221), + [anon_sym_BSLASHVref] = ACTIONS(5221), + [anon_sym_BSLASHautoref] = ACTIONS(5221), + [anon_sym_BSLASHpageref] = ACTIONS(5221), + [anon_sym_BSLASHcref] = ACTIONS(5221), + [anon_sym_BSLASHCref] = ACTIONS(5221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnameCref] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHlabelcref] = ACTIONS(5221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnewlabel] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), + [anon_sym_BSLASHdef] = ACTIONS(5221), + [anon_sym_BSLASHlet] = ACTIONS(5221), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), + [anon_sym_BSLASHgls] = ACTIONS(5221), + [anon_sym_BSLASHGls] = ACTIONS(5221), + [anon_sym_BSLASHGLS] = ACTIONS(5221), + [anon_sym_BSLASHglspl] = ACTIONS(5221), + [anon_sym_BSLASHGlspl] = ACTIONS(5221), + [anon_sym_BSLASHGLSpl] = ACTIONS(5221), + [anon_sym_BSLASHglsdisp] = ACTIONS(5221), + [anon_sym_BSLASHglslink] = ACTIONS(5221), + [anon_sym_BSLASHglstext] = ACTIONS(5221), + [anon_sym_BSLASHGlstext] = ACTIONS(5221), + [anon_sym_BSLASHGLStext] = ACTIONS(5221), + [anon_sym_BSLASHglsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), + [anon_sym_BSLASHglsplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSplural] = ACTIONS(5221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHglsname] = ACTIONS(5221), + [anon_sym_BSLASHGlsname] = ACTIONS(5221), + [anon_sym_BSLASHGLSname] = ACTIONS(5221), + [anon_sym_BSLASHglssymbol] = ACTIONS(5221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), + [anon_sym_BSLASHglsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), + [anon_sym_BSLASHglsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), + [anon_sym_BSLASHglsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), + [anon_sym_BSLASHglsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), + [anon_sym_BSLASHglsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), + [anon_sym_BSLASHnewacronym] = ACTIONS(5221), + [anon_sym_BSLASHacrshort] = ACTIONS(5221), + [anon_sym_BSLASHAcrshort] = ACTIONS(5221), + [anon_sym_BSLASHACRshort] = ACTIONS(5221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), + [anon_sym_BSLASHacrlong] = ACTIONS(5221), + [anon_sym_BSLASHAcrlong] = ACTIONS(5221), + [anon_sym_BSLASHACRlong] = ACTIONS(5221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), + [anon_sym_BSLASHacrfull] = ACTIONS(5221), + [anon_sym_BSLASHAcrfull] = ACTIONS(5221), + [anon_sym_BSLASHACRfull] = ACTIONS(5221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), + [anon_sym_BSLASHacs] = ACTIONS(5221), + [anon_sym_BSLASHAcs] = ACTIONS(5221), + [anon_sym_BSLASHacsp] = ACTIONS(5221), + [anon_sym_BSLASHAcsp] = ACTIONS(5221), + [anon_sym_BSLASHacl] = ACTIONS(5221), + [anon_sym_BSLASHAcl] = ACTIONS(5221), + [anon_sym_BSLASHaclp] = ACTIONS(5221), + [anon_sym_BSLASHAclp] = ACTIONS(5221), + [anon_sym_BSLASHacf] = ACTIONS(5221), + [anon_sym_BSLASHAcf] = ACTIONS(5221), + [anon_sym_BSLASHacfp] = ACTIONS(5221), + [anon_sym_BSLASHAcfp] = ACTIONS(5221), + [anon_sym_BSLASHac] = ACTIONS(5221), + [anon_sym_BSLASHAc] = ACTIONS(5221), + [anon_sym_BSLASHacp] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), + [anon_sym_BSLASHcolor] = ACTIONS(5221), + [anon_sym_BSLASHcolorbox] = ACTIONS(5221), + [anon_sym_BSLASHtextcolor] = ACTIONS(5221), + [anon_sym_BSLASHpagecolor] = ACTIONS(5221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), + [anon_sym_BSLASHtext] = ACTIONS(5221), + [anon_sym_BSLASHintertext] = ACTIONS(5221), + [anon_sym_shortintertext] = ACTIONS(5221), }, - [1516] = { - [sym_command_name] = ACTIONS(5381), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5381), - [anon_sym_RBRACK] = ACTIONS(5379), - [anon_sym_COMMA] = ACTIONS(5379), - [anon_sym_EQ] = ACTIONS(5379), - [anon_sym_RBRACE] = ACTIONS(5379), - [sym_word] = ACTIONS(5381), - [sym_placeholder] = ACTIONS(5379), - [anon_sym_PLUS] = ACTIONS(5381), - [anon_sym_DASH] = ACTIONS(5381), - [anon_sym_STAR] = ACTIONS(5381), - [anon_sym_SLASH] = ACTIONS(5381), - [anon_sym_CARET] = ACTIONS(5381), - [anon_sym__] = ACTIONS(5381), - [anon_sym_LT] = ACTIONS(5381), - [anon_sym_GT] = ACTIONS(5381), - [anon_sym_BANG] = ACTIONS(5381), - [anon_sym_PIPE] = ACTIONS(5381), - [anon_sym_COLON] = ACTIONS(5381), - [anon_sym_SQUOTE] = ACTIONS(5381), - [anon_sym_BSLASHusepackage] = ACTIONS(5381), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5381), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5381), - [anon_sym_BSLASHinclude] = ACTIONS(5381), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5381), - [anon_sym_BSLASHinput] = ACTIONS(5381), - [anon_sym_BSLASHsubfile] = ACTIONS(5381), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5381), - [anon_sym_BSLASHbibliography] = ACTIONS(5381), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5381), - [anon_sym_BSLASHincludesvg] = ACTIONS(5381), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5381), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5381), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5381), - [anon_sym_BSLASHimport] = ACTIONS(5381), - [anon_sym_BSLASHsubimport] = ACTIONS(5381), - [anon_sym_BSLASHinputfrom] = ACTIONS(5381), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5381), - [anon_sym_BSLASHincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5381), - [anon_sym_BSLASHcaption] = ACTIONS(5381), - [anon_sym_BSLASHcite] = ACTIONS(5381), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCite] = ACTIONS(5381), - [anon_sym_BSLASHnocite] = ACTIONS(5381), - [anon_sym_BSLASHcitet] = ACTIONS(5381), - [anon_sym_BSLASHcitep] = ACTIONS(5381), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteauthor] = ACTIONS(5381), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5381), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitetitle] = ACTIONS(5381), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteyear] = ACTIONS(5381), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5379), - [anon_sym_BSLASHcitedate] = ACTIONS(5381), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5379), - [anon_sym_BSLASHciteurl] = ACTIONS(5381), - [anon_sym_BSLASHfullcite] = ACTIONS(5381), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5381), - [anon_sym_BSLASHcitealt] = ACTIONS(5381), - [anon_sym_BSLASHcitealp] = ACTIONS(5381), - [anon_sym_BSLASHcitetext] = ACTIONS(5381), - [anon_sym_BSLASHparencite] = ACTIONS(5381), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHParencite] = ACTIONS(5381), - [anon_sym_BSLASHfootcite] = ACTIONS(5381), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5381), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5381), - [anon_sym_BSLASHtextcite] = ACTIONS(5381), - [anon_sym_BSLASHTextcite] = ACTIONS(5381), - [anon_sym_BSLASHsmartcite] = ACTIONS(5381), - [anon_sym_BSLASHSmartcite] = ACTIONS(5381), - [anon_sym_BSLASHsupercite] = ACTIONS(5381), - [anon_sym_BSLASHautocite] = ACTIONS(5381), - [anon_sym_BSLASHAutocite] = ACTIONS(5381), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5379), - [anon_sym_BSLASHvolcite] = ACTIONS(5381), - [anon_sym_BSLASHVolcite] = ACTIONS(5381), - [anon_sym_BSLASHpvolcite] = ACTIONS(5381), - [anon_sym_BSLASHPvolcite] = ACTIONS(5381), - [anon_sym_BSLASHfvolcite] = ACTIONS(5381), - [anon_sym_BSLASHftvolcite] = ACTIONS(5381), - [anon_sym_BSLASHsvolcite] = ACTIONS(5381), - [anon_sym_BSLASHSvolcite] = ACTIONS(5381), - [anon_sym_BSLASHtvolcite] = ACTIONS(5381), - [anon_sym_BSLASHTvolcite] = ACTIONS(5381), - [anon_sym_BSLASHavolcite] = ACTIONS(5381), - [anon_sym_BSLASHAvolcite] = ACTIONS(5381), - [anon_sym_BSLASHnotecite] = ACTIONS(5381), - [anon_sym_BSLASHNotecite] = ACTIONS(5381), - [anon_sym_BSLASHpnotecite] = ACTIONS(5381), - [anon_sym_BSLASHPnotecite] = ACTIONS(5381), - [anon_sym_BSLASHfnotecite] = ACTIONS(5381), - [anon_sym_BSLASHlabel] = ACTIONS(5381), - [anon_sym_BSLASHref] = ACTIONS(5381), - [anon_sym_BSLASHeqref] = ACTIONS(5381), - [anon_sym_BSLASHvref] = ACTIONS(5381), - [anon_sym_BSLASHVref] = ACTIONS(5381), - [anon_sym_BSLASHautoref] = ACTIONS(5381), - [anon_sym_BSLASHpageref] = ACTIONS(5381), - [anon_sym_BSLASHcref] = ACTIONS(5381), - [anon_sym_BSLASHCref] = ACTIONS(5381), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnameCref] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5381), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5381), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5381), - [anon_sym_BSLASHlabelcref] = ACTIONS(5381), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange] = ACTIONS(5381), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHCrefrange] = ACTIONS(5381), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5379), - [anon_sym_BSLASHnewlabel] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand] = ACTIONS(5381), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5381), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5381), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5379), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5381), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5379), - [anon_sym_BSLASHdef] = ACTIONS(5381), - [anon_sym_BSLASHlet] = ACTIONS(5381), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5381), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5381), - [anon_sym_BSLASHgls] = ACTIONS(5381), - [anon_sym_BSLASHGls] = ACTIONS(5381), - [anon_sym_BSLASHGLS] = ACTIONS(5381), - [anon_sym_BSLASHglspl] = ACTIONS(5381), - [anon_sym_BSLASHGlspl] = ACTIONS(5381), - [anon_sym_BSLASHGLSpl] = ACTIONS(5381), - [anon_sym_BSLASHglsdisp] = ACTIONS(5381), - [anon_sym_BSLASHglslink] = ACTIONS(5381), - [anon_sym_BSLASHglstext] = ACTIONS(5381), - [anon_sym_BSLASHGlstext] = ACTIONS(5381), - [anon_sym_BSLASHGLStext] = ACTIONS(5381), - [anon_sym_BSLASHglsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5381), - [anon_sym_BSLASHglsplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSplural] = ACTIONS(5381), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5381), - [anon_sym_BSLASHglsname] = ACTIONS(5381), - [anon_sym_BSLASHGlsname] = ACTIONS(5381), - [anon_sym_BSLASHGLSname] = ACTIONS(5381), - [anon_sym_BSLASHglssymbol] = ACTIONS(5381), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5381), - [anon_sym_BSLASHglsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5381), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5381), - [anon_sym_BSLASHglsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5381), - [anon_sym_BSLASHglsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5381), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5381), - [anon_sym_BSLASHglsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5381), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5381), - [anon_sym_BSLASHglsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5381), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5381), - [anon_sym_BSLASHnewacronym] = ACTIONS(5381), - [anon_sym_BSLASHacrshort] = ACTIONS(5381), - [anon_sym_BSLASHAcrshort] = ACTIONS(5381), - [anon_sym_BSLASHACRshort] = ACTIONS(5381), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5381), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5381), - [anon_sym_BSLASHacrlong] = ACTIONS(5381), - [anon_sym_BSLASHAcrlong] = ACTIONS(5381), - [anon_sym_BSLASHACRlong] = ACTIONS(5381), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5381), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5381), - [anon_sym_BSLASHacrfull] = ACTIONS(5381), - [anon_sym_BSLASHAcrfull] = ACTIONS(5381), - [anon_sym_BSLASHACRfull] = ACTIONS(5381), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5381), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5381), - [anon_sym_BSLASHacs] = ACTIONS(5381), - [anon_sym_BSLASHAcs] = ACTIONS(5381), - [anon_sym_BSLASHacsp] = ACTIONS(5381), - [anon_sym_BSLASHAcsp] = ACTIONS(5381), - [anon_sym_BSLASHacl] = ACTIONS(5381), - [anon_sym_BSLASHAcl] = ACTIONS(5381), - [anon_sym_BSLASHaclp] = ACTIONS(5381), - [anon_sym_BSLASHAclp] = ACTIONS(5381), - [anon_sym_BSLASHacf] = ACTIONS(5381), - [anon_sym_BSLASHAcf] = ACTIONS(5381), - [anon_sym_BSLASHacfp] = ACTIONS(5381), - [anon_sym_BSLASHAcfp] = ACTIONS(5381), - [anon_sym_BSLASHac] = ACTIONS(5381), - [anon_sym_BSLASHAc] = ACTIONS(5381), - [anon_sym_BSLASHacp] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5381), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5381), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5381), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5381), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5381), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5381), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5381), - [anon_sym_BSLASHcolor] = ACTIONS(5381), - [anon_sym_BSLASHcolorbox] = ACTIONS(5381), - [anon_sym_BSLASHtextcolor] = ACTIONS(5381), - [anon_sym_BSLASHpagecolor] = ACTIONS(5381), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5381), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5381), + [1479] = { + [sym_command_name] = ACTIONS(5153), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5153), + [anon_sym_LPAREN] = ACTIONS(5151), + [anon_sym_RPAREN] = ACTIONS(5151), + [anon_sym_LBRACK] = ACTIONS(5151), + [anon_sym_RBRACK] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_LBRACE] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [sym_word] = ACTIONS(5153), + [sym_placeholder] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym__] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5153), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5151), + [anon_sym_DOLLAR] = ACTIONS(5153), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5151), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5151), + [anon_sym_BSLASHusepackage] = ACTIONS(5153), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), + [anon_sym_BSLASHinclude] = ACTIONS(5153), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), + [anon_sym_BSLASHinput] = ACTIONS(5153), + [anon_sym_BSLASHsubfile] = ACTIONS(5153), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5153), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), + [anon_sym_BSLASHincludesvg] = ACTIONS(5153), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), + [anon_sym_BSLASHimport] = ACTIONS(5153), + [anon_sym_BSLASHsubimport] = ACTIONS(5153), + [anon_sym_BSLASHinputfrom] = ACTIONS(5153), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), + [anon_sym_BSLASHincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHcaption] = ACTIONS(5153), + [anon_sym_BSLASHcite] = ACTIONS(5153), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCite] = ACTIONS(5153), + [anon_sym_BSLASHnocite] = ACTIONS(5153), + [anon_sym_BSLASHcitet] = ACTIONS(5153), + [anon_sym_BSLASHcitep] = ACTIONS(5153), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteauthor] = ACTIONS(5153), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitetitle] = ACTIONS(5153), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteyear] = ACTIONS(5153), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitedate] = ACTIONS(5153), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteurl] = ACTIONS(5153), + [anon_sym_BSLASHfullcite] = ACTIONS(5153), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), + [anon_sym_BSLASHcitealt] = ACTIONS(5153), + [anon_sym_BSLASHcitealp] = ACTIONS(5153), + [anon_sym_BSLASHcitetext] = ACTIONS(5153), + [anon_sym_BSLASHparencite] = ACTIONS(5153), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHParencite] = ACTIONS(5153), + [anon_sym_BSLASHfootcite] = ACTIONS(5153), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), + [anon_sym_BSLASHtextcite] = ACTIONS(5153), + [anon_sym_BSLASHTextcite] = ACTIONS(5153), + [anon_sym_BSLASHsmartcite] = ACTIONS(5153), + [anon_sym_BSLASHSmartcite] = ACTIONS(5153), + [anon_sym_BSLASHsupercite] = ACTIONS(5153), + [anon_sym_BSLASHautocite] = ACTIONS(5153), + [anon_sym_BSLASHAutocite] = ACTIONS(5153), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHvolcite] = ACTIONS(5153), + [anon_sym_BSLASHVolcite] = ACTIONS(5153), + [anon_sym_BSLASHpvolcite] = ACTIONS(5153), + [anon_sym_BSLASHPvolcite] = ACTIONS(5153), + [anon_sym_BSLASHfvolcite] = ACTIONS(5153), + [anon_sym_BSLASHftvolcite] = ACTIONS(5153), + [anon_sym_BSLASHsvolcite] = ACTIONS(5153), + [anon_sym_BSLASHSvolcite] = ACTIONS(5153), + [anon_sym_BSLASHtvolcite] = ACTIONS(5153), + [anon_sym_BSLASHTvolcite] = ACTIONS(5153), + [anon_sym_BSLASHavolcite] = ACTIONS(5153), + [anon_sym_BSLASHAvolcite] = ACTIONS(5153), + [anon_sym_BSLASHnotecite] = ACTIONS(5153), + [anon_sym_BSLASHNotecite] = ACTIONS(5153), + [anon_sym_BSLASHpnotecite] = ACTIONS(5153), + [anon_sym_BSLASHPnotecite] = ACTIONS(5153), + [anon_sym_BSLASHfnotecite] = ACTIONS(5153), + [anon_sym_BSLASHlabel] = ACTIONS(5153), + [anon_sym_BSLASHref] = ACTIONS(5153), + [anon_sym_BSLASHeqref] = ACTIONS(5153), + [anon_sym_BSLASHvref] = ACTIONS(5153), + [anon_sym_BSLASHVref] = ACTIONS(5153), + [anon_sym_BSLASHautoref] = ACTIONS(5153), + [anon_sym_BSLASHpageref] = ACTIONS(5153), + [anon_sym_BSLASHcref] = ACTIONS(5153), + [anon_sym_BSLASHCref] = ACTIONS(5153), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnameCref] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHlabelcref] = ACTIONS(5153), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCrefrange] = ACTIONS(5153), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnewlabel] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), + [anon_sym_BSLASHdef] = ACTIONS(5153), + [anon_sym_BSLASHlet] = ACTIONS(5153), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), + [anon_sym_BSLASHgls] = ACTIONS(5153), + [anon_sym_BSLASHGls] = ACTIONS(5153), + [anon_sym_BSLASHGLS] = ACTIONS(5153), + [anon_sym_BSLASHglspl] = ACTIONS(5153), + [anon_sym_BSLASHGlspl] = ACTIONS(5153), + [anon_sym_BSLASHGLSpl] = ACTIONS(5153), + [anon_sym_BSLASHglsdisp] = ACTIONS(5153), + [anon_sym_BSLASHglslink] = ACTIONS(5153), + [anon_sym_BSLASHglstext] = ACTIONS(5153), + [anon_sym_BSLASHGlstext] = ACTIONS(5153), + [anon_sym_BSLASHGLStext] = ACTIONS(5153), + [anon_sym_BSLASHglsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), + [anon_sym_BSLASHglsplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSplural] = ACTIONS(5153), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHglsname] = ACTIONS(5153), + [anon_sym_BSLASHGlsname] = ACTIONS(5153), + [anon_sym_BSLASHGLSname] = ACTIONS(5153), + [anon_sym_BSLASHglssymbol] = ACTIONS(5153), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), + [anon_sym_BSLASHglsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), + [anon_sym_BSLASHglsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), + [anon_sym_BSLASHglsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), + [anon_sym_BSLASHglsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), + [anon_sym_BSLASHglsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), + [anon_sym_BSLASHnewacronym] = ACTIONS(5153), + [anon_sym_BSLASHacrshort] = ACTIONS(5153), + [anon_sym_BSLASHAcrshort] = ACTIONS(5153), + [anon_sym_BSLASHACRshort] = ACTIONS(5153), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), + [anon_sym_BSLASHacrlong] = ACTIONS(5153), + [anon_sym_BSLASHAcrlong] = ACTIONS(5153), + [anon_sym_BSLASHACRlong] = ACTIONS(5153), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), + [anon_sym_BSLASHacrfull] = ACTIONS(5153), + [anon_sym_BSLASHAcrfull] = ACTIONS(5153), + [anon_sym_BSLASHACRfull] = ACTIONS(5153), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), + [anon_sym_BSLASHacs] = ACTIONS(5153), + [anon_sym_BSLASHAcs] = ACTIONS(5153), + [anon_sym_BSLASHacsp] = ACTIONS(5153), + [anon_sym_BSLASHAcsp] = ACTIONS(5153), + [anon_sym_BSLASHacl] = ACTIONS(5153), + [anon_sym_BSLASHAcl] = ACTIONS(5153), + [anon_sym_BSLASHaclp] = ACTIONS(5153), + [anon_sym_BSLASHAclp] = ACTIONS(5153), + [anon_sym_BSLASHacf] = ACTIONS(5153), + [anon_sym_BSLASHAcf] = ACTIONS(5153), + [anon_sym_BSLASHacfp] = ACTIONS(5153), + [anon_sym_BSLASHAcfp] = ACTIONS(5153), + [anon_sym_BSLASHac] = ACTIONS(5153), + [anon_sym_BSLASHAc] = ACTIONS(5153), + [anon_sym_BSLASHacp] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), + [anon_sym_BSLASHcolor] = ACTIONS(5153), + [anon_sym_BSLASHcolorbox] = ACTIONS(5153), + [anon_sym_BSLASHtextcolor] = ACTIONS(5153), + [anon_sym_BSLASHpagecolor] = ACTIONS(5153), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), + [anon_sym_BSLASHtext] = ACTIONS(5153), + [anon_sym_BSLASHintertext] = ACTIONS(5153), + [anon_sym_shortintertext] = ACTIONS(5153), }, - [1517] = { - [sym_command_name] = ACTIONS(5029), + [1480] = { + [sym_command_name] = ACTIONS(5205), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5029), - [anon_sym_RBRACK] = ACTIONS(5027), - [anon_sym_COMMA] = ACTIONS(5027), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_RBRACE] = ACTIONS(5027), - [sym_word] = ACTIONS(5029), - [sym_placeholder] = ACTIONS(5027), - [anon_sym_PLUS] = ACTIONS(5029), - [anon_sym_DASH] = ACTIONS(5029), - [anon_sym_STAR] = ACTIONS(5029), - [anon_sym_SLASH] = ACTIONS(5029), - [anon_sym_CARET] = ACTIONS(5029), - [anon_sym__] = ACTIONS(5029), - [anon_sym_LT] = ACTIONS(5029), - [anon_sym_GT] = ACTIONS(5029), - [anon_sym_BANG] = ACTIONS(5029), - [anon_sym_PIPE] = ACTIONS(5029), - [anon_sym_COLON] = ACTIONS(5029), - [anon_sym_SQUOTE] = ACTIONS(5029), - [anon_sym_BSLASHusepackage] = ACTIONS(5029), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), - [anon_sym_BSLASHinclude] = ACTIONS(5029), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), - [anon_sym_BSLASHinput] = ACTIONS(5029), - [anon_sym_BSLASHsubfile] = ACTIONS(5029), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), - [anon_sym_BSLASHbibliography] = ACTIONS(5029), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), - [anon_sym_BSLASHincludesvg] = ACTIONS(5029), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), - [anon_sym_BSLASHimport] = ACTIONS(5029), - [anon_sym_BSLASHsubimport] = ACTIONS(5029), - [anon_sym_BSLASHinputfrom] = ACTIONS(5029), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), - [anon_sym_BSLASHincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), - [anon_sym_BSLASHcaption] = ACTIONS(5029), - [anon_sym_BSLASHcite] = ACTIONS(5029), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCite] = ACTIONS(5029), - [anon_sym_BSLASHnocite] = ACTIONS(5029), - [anon_sym_BSLASHcitet] = ACTIONS(5029), - [anon_sym_BSLASHcitep] = ACTIONS(5029), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteauthor] = ACTIONS(5029), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitetitle] = ACTIONS(5029), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteyear] = ACTIONS(5029), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), - [anon_sym_BSLASHcitedate] = ACTIONS(5029), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), - [anon_sym_BSLASHciteurl] = ACTIONS(5029), - [anon_sym_BSLASHfullcite] = ACTIONS(5029), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), - [anon_sym_BSLASHcitealt] = ACTIONS(5029), - [anon_sym_BSLASHcitealp] = ACTIONS(5029), - [anon_sym_BSLASHcitetext] = ACTIONS(5029), - [anon_sym_BSLASHparencite] = ACTIONS(5029), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHParencite] = ACTIONS(5029), - [anon_sym_BSLASHfootcite] = ACTIONS(5029), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), - [anon_sym_BSLASHtextcite] = ACTIONS(5029), - [anon_sym_BSLASHTextcite] = ACTIONS(5029), - [anon_sym_BSLASHsmartcite] = ACTIONS(5029), - [anon_sym_BSLASHSmartcite] = ACTIONS(5029), - [anon_sym_BSLASHsupercite] = ACTIONS(5029), - [anon_sym_BSLASHautocite] = ACTIONS(5029), - [anon_sym_BSLASHAutocite] = ACTIONS(5029), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), - [anon_sym_BSLASHvolcite] = ACTIONS(5029), - [anon_sym_BSLASHVolcite] = ACTIONS(5029), - [anon_sym_BSLASHpvolcite] = ACTIONS(5029), - [anon_sym_BSLASHPvolcite] = ACTIONS(5029), - [anon_sym_BSLASHfvolcite] = ACTIONS(5029), - [anon_sym_BSLASHftvolcite] = ACTIONS(5029), - [anon_sym_BSLASHsvolcite] = ACTIONS(5029), - [anon_sym_BSLASHSvolcite] = ACTIONS(5029), - [anon_sym_BSLASHtvolcite] = ACTIONS(5029), - [anon_sym_BSLASHTvolcite] = ACTIONS(5029), - [anon_sym_BSLASHavolcite] = ACTIONS(5029), - [anon_sym_BSLASHAvolcite] = ACTIONS(5029), - [anon_sym_BSLASHnotecite] = ACTIONS(5029), - [anon_sym_BSLASHNotecite] = ACTIONS(5029), - [anon_sym_BSLASHpnotecite] = ACTIONS(5029), - [anon_sym_BSLASHPnotecite] = ACTIONS(5029), - [anon_sym_BSLASHfnotecite] = ACTIONS(5029), - [anon_sym_BSLASHlabel] = ACTIONS(5029), - [anon_sym_BSLASHref] = ACTIONS(5029), - [anon_sym_BSLASHeqref] = ACTIONS(5029), - [anon_sym_BSLASHvref] = ACTIONS(5029), - [anon_sym_BSLASHVref] = ACTIONS(5029), - [anon_sym_BSLASHautoref] = ACTIONS(5029), - [anon_sym_BSLASHpageref] = ACTIONS(5029), - [anon_sym_BSLASHcref] = ACTIONS(5029), - [anon_sym_BSLASHCref] = ACTIONS(5029), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnameCref] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), - [anon_sym_BSLASHlabelcref] = ACTIONS(5029), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange] = ACTIONS(5029), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHCrefrange] = ACTIONS(5029), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), - [anon_sym_BSLASHnewlabel] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand] = ACTIONS(5029), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), - [anon_sym_BSLASHdef] = ACTIONS(5029), - [anon_sym_BSLASHlet] = ACTIONS(5029), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), - [anon_sym_BSLASHgls] = ACTIONS(5029), - [anon_sym_BSLASHGls] = ACTIONS(5029), - [anon_sym_BSLASHGLS] = ACTIONS(5029), - [anon_sym_BSLASHglspl] = ACTIONS(5029), - [anon_sym_BSLASHGlspl] = ACTIONS(5029), - [anon_sym_BSLASHGLSpl] = ACTIONS(5029), - [anon_sym_BSLASHglsdisp] = ACTIONS(5029), - [anon_sym_BSLASHglslink] = ACTIONS(5029), - [anon_sym_BSLASHglstext] = ACTIONS(5029), - [anon_sym_BSLASHGlstext] = ACTIONS(5029), - [anon_sym_BSLASHGLStext] = ACTIONS(5029), - [anon_sym_BSLASHglsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), - [anon_sym_BSLASHglsplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSplural] = ACTIONS(5029), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), - [anon_sym_BSLASHglsname] = ACTIONS(5029), - [anon_sym_BSLASHGlsname] = ACTIONS(5029), - [anon_sym_BSLASHGLSname] = ACTIONS(5029), - [anon_sym_BSLASHglssymbol] = ACTIONS(5029), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), - [anon_sym_BSLASHglsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), - [anon_sym_BSLASHglsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), - [anon_sym_BSLASHglsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), - [anon_sym_BSLASHglsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), - [anon_sym_BSLASHglsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), - [anon_sym_BSLASHnewacronym] = ACTIONS(5029), - [anon_sym_BSLASHacrshort] = ACTIONS(5029), - [anon_sym_BSLASHAcrshort] = ACTIONS(5029), - [anon_sym_BSLASHACRshort] = ACTIONS(5029), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), - [anon_sym_BSLASHacrlong] = ACTIONS(5029), - [anon_sym_BSLASHAcrlong] = ACTIONS(5029), - [anon_sym_BSLASHACRlong] = ACTIONS(5029), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), - [anon_sym_BSLASHacrfull] = ACTIONS(5029), - [anon_sym_BSLASHAcrfull] = ACTIONS(5029), - [anon_sym_BSLASHACRfull] = ACTIONS(5029), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), - [anon_sym_BSLASHacs] = ACTIONS(5029), - [anon_sym_BSLASHAcs] = ACTIONS(5029), - [anon_sym_BSLASHacsp] = ACTIONS(5029), - [anon_sym_BSLASHAcsp] = ACTIONS(5029), - [anon_sym_BSLASHacl] = ACTIONS(5029), - [anon_sym_BSLASHAcl] = ACTIONS(5029), - [anon_sym_BSLASHaclp] = ACTIONS(5029), - [anon_sym_BSLASHAclp] = ACTIONS(5029), - [anon_sym_BSLASHacf] = ACTIONS(5029), - [anon_sym_BSLASHAcf] = ACTIONS(5029), - [anon_sym_BSLASHacfp] = ACTIONS(5029), - [anon_sym_BSLASHAcfp] = ACTIONS(5029), - [anon_sym_BSLASHac] = ACTIONS(5029), - [anon_sym_BSLASHAc] = ACTIONS(5029), - [anon_sym_BSLASHacp] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), - [anon_sym_BSLASHcolor] = ACTIONS(5029), - [anon_sym_BSLASHcolorbox] = ACTIONS(5029), - [anon_sym_BSLASHtextcolor] = ACTIONS(5029), - [anon_sym_BSLASHpagecolor] = ACTIONS(5029), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), + [anon_sym_BSLASHiffalse] = ACTIONS(5205), + [anon_sym_LPAREN] = ACTIONS(5203), + [anon_sym_RPAREN] = ACTIONS(5203), + [anon_sym_LBRACK] = ACTIONS(5203), + [anon_sym_RBRACK] = ACTIONS(5203), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_LBRACE] = ACTIONS(5203), + [anon_sym_RBRACE] = ACTIONS(5203), + [sym_word] = ACTIONS(5205), + [sym_placeholder] = ACTIONS(5203), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_CARET] = ACTIONS(5205), + [anon_sym__] = ACTIONS(5205), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_PIPE] = ACTIONS(5205), + [anon_sym_COLON] = ACTIONS(5205), + [anon_sym_SQUOTE] = ACTIONS(5205), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5203), + [anon_sym_DOLLAR] = ACTIONS(5205), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5203), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5203), + [anon_sym_BSLASHusepackage] = ACTIONS(5205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), + [anon_sym_BSLASHinclude] = ACTIONS(5205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), + [anon_sym_BSLASHinput] = ACTIONS(5205), + [anon_sym_BSLASHsubfile] = ACTIONS(5205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), + [anon_sym_BSLASHbibliography] = ACTIONS(5205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), + [anon_sym_BSLASHincludesvg] = ACTIONS(5205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), + [anon_sym_BSLASHimport] = ACTIONS(5205), + [anon_sym_BSLASHsubimport] = ACTIONS(5205), + [anon_sym_BSLASHinputfrom] = ACTIONS(5205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), + [anon_sym_BSLASHincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHcaption] = ACTIONS(5205), + [anon_sym_BSLASHcite] = ACTIONS(5205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCite] = ACTIONS(5205), + [anon_sym_BSLASHnocite] = ACTIONS(5205), + [anon_sym_BSLASHcitet] = ACTIONS(5205), + [anon_sym_BSLASHcitep] = ACTIONS(5205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteauthor] = ACTIONS(5205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitetitle] = ACTIONS(5205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteyear] = ACTIONS(5205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitedate] = ACTIONS(5205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteurl] = ACTIONS(5205), + [anon_sym_BSLASHfullcite] = ACTIONS(5205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), + [anon_sym_BSLASHcitealt] = ACTIONS(5205), + [anon_sym_BSLASHcitealp] = ACTIONS(5205), + [anon_sym_BSLASHcitetext] = ACTIONS(5205), + [anon_sym_BSLASHparencite] = ACTIONS(5205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHParencite] = ACTIONS(5205), + [anon_sym_BSLASHfootcite] = ACTIONS(5205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), + [anon_sym_BSLASHtextcite] = ACTIONS(5205), + [anon_sym_BSLASHTextcite] = ACTIONS(5205), + [anon_sym_BSLASHsmartcite] = ACTIONS(5205), + [anon_sym_BSLASHSmartcite] = ACTIONS(5205), + [anon_sym_BSLASHsupercite] = ACTIONS(5205), + [anon_sym_BSLASHautocite] = ACTIONS(5205), + [anon_sym_BSLASHAutocite] = ACTIONS(5205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHvolcite] = ACTIONS(5205), + [anon_sym_BSLASHVolcite] = ACTIONS(5205), + [anon_sym_BSLASHpvolcite] = ACTIONS(5205), + [anon_sym_BSLASHPvolcite] = ACTIONS(5205), + [anon_sym_BSLASHfvolcite] = ACTIONS(5205), + [anon_sym_BSLASHftvolcite] = ACTIONS(5205), + [anon_sym_BSLASHsvolcite] = ACTIONS(5205), + [anon_sym_BSLASHSvolcite] = ACTIONS(5205), + [anon_sym_BSLASHtvolcite] = ACTIONS(5205), + [anon_sym_BSLASHTvolcite] = ACTIONS(5205), + [anon_sym_BSLASHavolcite] = ACTIONS(5205), + [anon_sym_BSLASHAvolcite] = ACTIONS(5205), + [anon_sym_BSLASHnotecite] = ACTIONS(5205), + [anon_sym_BSLASHNotecite] = ACTIONS(5205), + [anon_sym_BSLASHpnotecite] = ACTIONS(5205), + [anon_sym_BSLASHPnotecite] = ACTIONS(5205), + [anon_sym_BSLASHfnotecite] = ACTIONS(5205), + [anon_sym_BSLASHlabel] = ACTIONS(5205), + [anon_sym_BSLASHref] = ACTIONS(5205), + [anon_sym_BSLASHeqref] = ACTIONS(5205), + [anon_sym_BSLASHvref] = ACTIONS(5205), + [anon_sym_BSLASHVref] = ACTIONS(5205), + [anon_sym_BSLASHautoref] = ACTIONS(5205), + [anon_sym_BSLASHpageref] = ACTIONS(5205), + [anon_sym_BSLASHcref] = ACTIONS(5205), + [anon_sym_BSLASHCref] = ACTIONS(5205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnameCref] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHlabelcref] = ACTIONS(5205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCrefrange] = ACTIONS(5205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnewlabel] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), + [anon_sym_BSLASHdef] = ACTIONS(5205), + [anon_sym_BSLASHlet] = ACTIONS(5205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), + [anon_sym_BSLASHgls] = ACTIONS(5205), + [anon_sym_BSLASHGls] = ACTIONS(5205), + [anon_sym_BSLASHGLS] = ACTIONS(5205), + [anon_sym_BSLASHglspl] = ACTIONS(5205), + [anon_sym_BSLASHGlspl] = ACTIONS(5205), + [anon_sym_BSLASHGLSpl] = ACTIONS(5205), + [anon_sym_BSLASHglsdisp] = ACTIONS(5205), + [anon_sym_BSLASHglslink] = ACTIONS(5205), + [anon_sym_BSLASHglstext] = ACTIONS(5205), + [anon_sym_BSLASHGlstext] = ACTIONS(5205), + [anon_sym_BSLASHGLStext] = ACTIONS(5205), + [anon_sym_BSLASHglsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), + [anon_sym_BSLASHglsplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSplural] = ACTIONS(5205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHglsname] = ACTIONS(5205), + [anon_sym_BSLASHGlsname] = ACTIONS(5205), + [anon_sym_BSLASHGLSname] = ACTIONS(5205), + [anon_sym_BSLASHglssymbol] = ACTIONS(5205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), + [anon_sym_BSLASHglsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), + [anon_sym_BSLASHglsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), + [anon_sym_BSLASHglsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), + [anon_sym_BSLASHglsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), + [anon_sym_BSLASHglsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), + [anon_sym_BSLASHnewacronym] = ACTIONS(5205), + [anon_sym_BSLASHacrshort] = ACTIONS(5205), + [anon_sym_BSLASHAcrshort] = ACTIONS(5205), + [anon_sym_BSLASHACRshort] = ACTIONS(5205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), + [anon_sym_BSLASHacrlong] = ACTIONS(5205), + [anon_sym_BSLASHAcrlong] = ACTIONS(5205), + [anon_sym_BSLASHACRlong] = ACTIONS(5205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), + [anon_sym_BSLASHacrfull] = ACTIONS(5205), + [anon_sym_BSLASHAcrfull] = ACTIONS(5205), + [anon_sym_BSLASHACRfull] = ACTIONS(5205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), + [anon_sym_BSLASHacs] = ACTIONS(5205), + [anon_sym_BSLASHAcs] = ACTIONS(5205), + [anon_sym_BSLASHacsp] = ACTIONS(5205), + [anon_sym_BSLASHAcsp] = ACTIONS(5205), + [anon_sym_BSLASHacl] = ACTIONS(5205), + [anon_sym_BSLASHAcl] = ACTIONS(5205), + [anon_sym_BSLASHaclp] = ACTIONS(5205), + [anon_sym_BSLASHAclp] = ACTIONS(5205), + [anon_sym_BSLASHacf] = ACTIONS(5205), + [anon_sym_BSLASHAcf] = ACTIONS(5205), + [anon_sym_BSLASHacfp] = ACTIONS(5205), + [anon_sym_BSLASHAcfp] = ACTIONS(5205), + [anon_sym_BSLASHac] = ACTIONS(5205), + [anon_sym_BSLASHAc] = ACTIONS(5205), + [anon_sym_BSLASHacp] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), + [anon_sym_BSLASHcolor] = ACTIONS(5205), + [anon_sym_BSLASHcolorbox] = ACTIONS(5205), + [anon_sym_BSLASHtextcolor] = ACTIONS(5205), + [anon_sym_BSLASHpagecolor] = ACTIONS(5205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), + [anon_sym_BSLASHtext] = ACTIONS(5205), + [anon_sym_BSLASHintertext] = ACTIONS(5205), + [anon_sym_shortintertext] = ACTIONS(5205), }, - [1518] = { - [sym_command_name] = ACTIONS(5371), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5371), - [anon_sym_RBRACK] = ACTIONS(5369), - [anon_sym_COMMA] = ACTIONS(5369), - [anon_sym_EQ] = ACTIONS(5369), - [anon_sym_RBRACE] = ACTIONS(5369), - [sym_word] = ACTIONS(5371), - [sym_placeholder] = ACTIONS(5369), - [anon_sym_PLUS] = ACTIONS(5371), - [anon_sym_DASH] = ACTIONS(5371), - [anon_sym_STAR] = ACTIONS(5371), - [anon_sym_SLASH] = ACTIONS(5371), - [anon_sym_CARET] = ACTIONS(5371), - [anon_sym__] = ACTIONS(5371), - [anon_sym_LT] = ACTIONS(5371), - [anon_sym_GT] = ACTIONS(5371), - [anon_sym_BANG] = ACTIONS(5371), - [anon_sym_PIPE] = ACTIONS(5371), - [anon_sym_COLON] = ACTIONS(5371), - [anon_sym_SQUOTE] = ACTIONS(5371), - [anon_sym_BSLASHusepackage] = ACTIONS(5371), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5371), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5371), - [anon_sym_BSLASHinclude] = ACTIONS(5371), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5371), - [anon_sym_BSLASHinput] = ACTIONS(5371), - [anon_sym_BSLASHsubfile] = ACTIONS(5371), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5371), - [anon_sym_BSLASHbibliography] = ACTIONS(5371), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5371), - [anon_sym_BSLASHincludesvg] = ACTIONS(5371), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5371), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5371), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5371), - [anon_sym_BSLASHimport] = ACTIONS(5371), - [anon_sym_BSLASHsubimport] = ACTIONS(5371), - [anon_sym_BSLASHinputfrom] = ACTIONS(5371), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5371), - [anon_sym_BSLASHincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5371), - [anon_sym_BSLASHcaption] = ACTIONS(5371), - [anon_sym_BSLASHcite] = ACTIONS(5371), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCite] = ACTIONS(5371), - [anon_sym_BSLASHnocite] = ACTIONS(5371), - [anon_sym_BSLASHcitet] = ACTIONS(5371), - [anon_sym_BSLASHcitep] = ACTIONS(5371), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteauthor] = ACTIONS(5371), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5371), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitetitle] = ACTIONS(5371), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteyear] = ACTIONS(5371), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5369), - [anon_sym_BSLASHcitedate] = ACTIONS(5371), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5369), - [anon_sym_BSLASHciteurl] = ACTIONS(5371), - [anon_sym_BSLASHfullcite] = ACTIONS(5371), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5371), - [anon_sym_BSLASHcitealt] = ACTIONS(5371), - [anon_sym_BSLASHcitealp] = ACTIONS(5371), - [anon_sym_BSLASHcitetext] = ACTIONS(5371), - [anon_sym_BSLASHparencite] = ACTIONS(5371), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHParencite] = ACTIONS(5371), - [anon_sym_BSLASHfootcite] = ACTIONS(5371), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5371), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5371), - [anon_sym_BSLASHtextcite] = ACTIONS(5371), - [anon_sym_BSLASHTextcite] = ACTIONS(5371), - [anon_sym_BSLASHsmartcite] = ACTIONS(5371), - [anon_sym_BSLASHSmartcite] = ACTIONS(5371), - [anon_sym_BSLASHsupercite] = ACTIONS(5371), - [anon_sym_BSLASHautocite] = ACTIONS(5371), - [anon_sym_BSLASHAutocite] = ACTIONS(5371), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5369), - [anon_sym_BSLASHvolcite] = ACTIONS(5371), - [anon_sym_BSLASHVolcite] = ACTIONS(5371), - [anon_sym_BSLASHpvolcite] = ACTIONS(5371), - [anon_sym_BSLASHPvolcite] = ACTIONS(5371), - [anon_sym_BSLASHfvolcite] = ACTIONS(5371), - [anon_sym_BSLASHftvolcite] = ACTIONS(5371), - [anon_sym_BSLASHsvolcite] = ACTIONS(5371), - [anon_sym_BSLASHSvolcite] = ACTIONS(5371), - [anon_sym_BSLASHtvolcite] = ACTIONS(5371), - [anon_sym_BSLASHTvolcite] = ACTIONS(5371), - [anon_sym_BSLASHavolcite] = ACTIONS(5371), - [anon_sym_BSLASHAvolcite] = ACTIONS(5371), - [anon_sym_BSLASHnotecite] = ACTIONS(5371), - [anon_sym_BSLASHNotecite] = ACTIONS(5371), - [anon_sym_BSLASHpnotecite] = ACTIONS(5371), - [anon_sym_BSLASHPnotecite] = ACTIONS(5371), - [anon_sym_BSLASHfnotecite] = ACTIONS(5371), - [anon_sym_BSLASHlabel] = ACTIONS(5371), - [anon_sym_BSLASHref] = ACTIONS(5371), - [anon_sym_BSLASHeqref] = ACTIONS(5371), - [anon_sym_BSLASHvref] = ACTIONS(5371), - [anon_sym_BSLASHVref] = ACTIONS(5371), - [anon_sym_BSLASHautoref] = ACTIONS(5371), - [anon_sym_BSLASHpageref] = ACTIONS(5371), - [anon_sym_BSLASHcref] = ACTIONS(5371), - [anon_sym_BSLASHCref] = ACTIONS(5371), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnameCref] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5371), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5371), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5371), - [anon_sym_BSLASHlabelcref] = ACTIONS(5371), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange] = ACTIONS(5371), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHCrefrange] = ACTIONS(5371), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5369), - [anon_sym_BSLASHnewlabel] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand] = ACTIONS(5371), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5371), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5371), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5369), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5371), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5369), - [anon_sym_BSLASHdef] = ACTIONS(5371), - [anon_sym_BSLASHlet] = ACTIONS(5371), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5371), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5371), - [anon_sym_BSLASHgls] = ACTIONS(5371), - [anon_sym_BSLASHGls] = ACTIONS(5371), - [anon_sym_BSLASHGLS] = ACTIONS(5371), - [anon_sym_BSLASHglspl] = ACTIONS(5371), - [anon_sym_BSLASHGlspl] = ACTIONS(5371), - [anon_sym_BSLASHGLSpl] = ACTIONS(5371), - [anon_sym_BSLASHglsdisp] = ACTIONS(5371), - [anon_sym_BSLASHglslink] = ACTIONS(5371), - [anon_sym_BSLASHglstext] = ACTIONS(5371), - [anon_sym_BSLASHGlstext] = ACTIONS(5371), - [anon_sym_BSLASHGLStext] = ACTIONS(5371), - [anon_sym_BSLASHglsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5371), - [anon_sym_BSLASHglsplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSplural] = ACTIONS(5371), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5371), - [anon_sym_BSLASHglsname] = ACTIONS(5371), - [anon_sym_BSLASHGlsname] = ACTIONS(5371), - [anon_sym_BSLASHGLSname] = ACTIONS(5371), - [anon_sym_BSLASHglssymbol] = ACTIONS(5371), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5371), - [anon_sym_BSLASHglsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5371), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5371), - [anon_sym_BSLASHglsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5371), - [anon_sym_BSLASHglsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5371), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5371), - [anon_sym_BSLASHglsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5371), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5371), - [anon_sym_BSLASHglsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5371), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5371), - [anon_sym_BSLASHnewacronym] = ACTIONS(5371), - [anon_sym_BSLASHacrshort] = ACTIONS(5371), - [anon_sym_BSLASHAcrshort] = ACTIONS(5371), - [anon_sym_BSLASHACRshort] = ACTIONS(5371), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5371), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5371), - [anon_sym_BSLASHacrlong] = ACTIONS(5371), - [anon_sym_BSLASHAcrlong] = ACTIONS(5371), - [anon_sym_BSLASHACRlong] = ACTIONS(5371), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5371), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5371), - [anon_sym_BSLASHacrfull] = ACTIONS(5371), - [anon_sym_BSLASHAcrfull] = ACTIONS(5371), - [anon_sym_BSLASHACRfull] = ACTIONS(5371), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5371), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5371), - [anon_sym_BSLASHacs] = ACTIONS(5371), - [anon_sym_BSLASHAcs] = ACTIONS(5371), - [anon_sym_BSLASHacsp] = ACTIONS(5371), - [anon_sym_BSLASHAcsp] = ACTIONS(5371), - [anon_sym_BSLASHacl] = ACTIONS(5371), - [anon_sym_BSLASHAcl] = ACTIONS(5371), - [anon_sym_BSLASHaclp] = ACTIONS(5371), - [anon_sym_BSLASHAclp] = ACTIONS(5371), - [anon_sym_BSLASHacf] = ACTIONS(5371), - [anon_sym_BSLASHAcf] = ACTIONS(5371), - [anon_sym_BSLASHacfp] = ACTIONS(5371), - [anon_sym_BSLASHAcfp] = ACTIONS(5371), - [anon_sym_BSLASHac] = ACTIONS(5371), - [anon_sym_BSLASHAc] = ACTIONS(5371), - [anon_sym_BSLASHacp] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5371), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5371), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5371), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5371), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5371), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5371), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5371), - [anon_sym_BSLASHcolor] = ACTIONS(5371), - [anon_sym_BSLASHcolorbox] = ACTIONS(5371), - [anon_sym_BSLASHtextcolor] = ACTIONS(5371), - [anon_sym_BSLASHpagecolor] = ACTIONS(5371), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5371), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5371), + [1481] = { + [sym_command_name] = ACTIONS(5145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5145), + [anon_sym_LPAREN] = ACTIONS(5143), + [anon_sym_RPAREN] = ACTIONS(5143), + [anon_sym_LBRACK] = ACTIONS(5143), + [anon_sym_RBRACK] = ACTIONS(5143), + [anon_sym_COMMA] = ACTIONS(5143), + [anon_sym_LBRACE] = ACTIONS(5143), + [anon_sym_RBRACE] = ACTIONS(5143), + [sym_word] = ACTIONS(5145), + [sym_placeholder] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym__] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5145), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5145), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5143), + [anon_sym_DOLLAR] = ACTIONS(5145), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5143), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5143), + [anon_sym_BSLASHusepackage] = ACTIONS(5145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5145), + [anon_sym_BSLASHinclude] = ACTIONS(5145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5145), + [anon_sym_BSLASHinput] = ACTIONS(5145), + [anon_sym_BSLASHsubfile] = ACTIONS(5145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5145), + [anon_sym_BSLASHbibliography] = ACTIONS(5145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5145), + [anon_sym_BSLASHincludesvg] = ACTIONS(5145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5145), + [anon_sym_BSLASHimport] = ACTIONS(5145), + [anon_sym_BSLASHsubimport] = ACTIONS(5145), + [anon_sym_BSLASHinputfrom] = ACTIONS(5145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5145), + [anon_sym_BSLASHincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHcaption] = ACTIONS(5145), + [anon_sym_BSLASHcite] = ACTIONS(5145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCite] = ACTIONS(5145), + [anon_sym_BSLASHnocite] = ACTIONS(5145), + [anon_sym_BSLASHcitet] = ACTIONS(5145), + [anon_sym_BSLASHcitep] = ACTIONS(5145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteauthor] = ACTIONS(5145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitetitle] = ACTIONS(5145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteyear] = ACTIONS(5145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitedate] = ACTIONS(5145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteurl] = ACTIONS(5145), + [anon_sym_BSLASHfullcite] = ACTIONS(5145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5145), + [anon_sym_BSLASHcitealt] = ACTIONS(5145), + [anon_sym_BSLASHcitealp] = ACTIONS(5145), + [anon_sym_BSLASHcitetext] = ACTIONS(5145), + [anon_sym_BSLASHparencite] = ACTIONS(5145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHParencite] = ACTIONS(5145), + [anon_sym_BSLASHfootcite] = ACTIONS(5145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5145), + [anon_sym_BSLASHtextcite] = ACTIONS(5145), + [anon_sym_BSLASHTextcite] = ACTIONS(5145), + [anon_sym_BSLASHsmartcite] = ACTIONS(5145), + [anon_sym_BSLASHSmartcite] = ACTIONS(5145), + [anon_sym_BSLASHsupercite] = ACTIONS(5145), + [anon_sym_BSLASHautocite] = ACTIONS(5145), + [anon_sym_BSLASHAutocite] = ACTIONS(5145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHvolcite] = ACTIONS(5145), + [anon_sym_BSLASHVolcite] = ACTIONS(5145), + [anon_sym_BSLASHpvolcite] = ACTIONS(5145), + [anon_sym_BSLASHPvolcite] = ACTIONS(5145), + [anon_sym_BSLASHfvolcite] = ACTIONS(5145), + [anon_sym_BSLASHftvolcite] = ACTIONS(5145), + [anon_sym_BSLASHsvolcite] = ACTIONS(5145), + [anon_sym_BSLASHSvolcite] = ACTIONS(5145), + [anon_sym_BSLASHtvolcite] = ACTIONS(5145), + [anon_sym_BSLASHTvolcite] = ACTIONS(5145), + [anon_sym_BSLASHavolcite] = ACTIONS(5145), + [anon_sym_BSLASHAvolcite] = ACTIONS(5145), + [anon_sym_BSLASHnotecite] = ACTIONS(5145), + [anon_sym_BSLASHNotecite] = ACTIONS(5145), + [anon_sym_BSLASHpnotecite] = ACTIONS(5145), + [anon_sym_BSLASHPnotecite] = ACTIONS(5145), + [anon_sym_BSLASHfnotecite] = ACTIONS(5145), + [anon_sym_BSLASHlabel] = ACTIONS(5145), + [anon_sym_BSLASHref] = ACTIONS(5145), + [anon_sym_BSLASHeqref] = ACTIONS(5145), + [anon_sym_BSLASHvref] = ACTIONS(5145), + [anon_sym_BSLASHVref] = ACTIONS(5145), + [anon_sym_BSLASHautoref] = ACTIONS(5145), + [anon_sym_BSLASHpageref] = ACTIONS(5145), + [anon_sym_BSLASHcref] = ACTIONS(5145), + [anon_sym_BSLASHCref] = ACTIONS(5145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnameCref] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHlabelcref] = ACTIONS(5145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCrefrange] = ACTIONS(5145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnewlabel] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), + [anon_sym_BSLASHdef] = ACTIONS(5145), + [anon_sym_BSLASHlet] = ACTIONS(5145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5145), + [anon_sym_BSLASHgls] = ACTIONS(5145), + [anon_sym_BSLASHGls] = ACTIONS(5145), + [anon_sym_BSLASHGLS] = ACTIONS(5145), + [anon_sym_BSLASHglspl] = ACTIONS(5145), + [anon_sym_BSLASHGlspl] = ACTIONS(5145), + [anon_sym_BSLASHGLSpl] = ACTIONS(5145), + [anon_sym_BSLASHglsdisp] = ACTIONS(5145), + [anon_sym_BSLASHglslink] = ACTIONS(5145), + [anon_sym_BSLASHglstext] = ACTIONS(5145), + [anon_sym_BSLASHGlstext] = ACTIONS(5145), + [anon_sym_BSLASHGLStext] = ACTIONS(5145), + [anon_sym_BSLASHglsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5145), + [anon_sym_BSLASHglsplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSplural] = ACTIONS(5145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHglsname] = ACTIONS(5145), + [anon_sym_BSLASHGlsname] = ACTIONS(5145), + [anon_sym_BSLASHGLSname] = ACTIONS(5145), + [anon_sym_BSLASHglssymbol] = ACTIONS(5145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5145), + [anon_sym_BSLASHglsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5145), + [anon_sym_BSLASHglsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5145), + [anon_sym_BSLASHglsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5145), + [anon_sym_BSLASHglsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5145), + [anon_sym_BSLASHglsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5145), + [anon_sym_BSLASHnewacronym] = ACTIONS(5145), + [anon_sym_BSLASHacrshort] = ACTIONS(5145), + [anon_sym_BSLASHAcrshort] = ACTIONS(5145), + [anon_sym_BSLASHACRshort] = ACTIONS(5145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5145), + [anon_sym_BSLASHacrlong] = ACTIONS(5145), + [anon_sym_BSLASHAcrlong] = ACTIONS(5145), + [anon_sym_BSLASHACRlong] = ACTIONS(5145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5145), + [anon_sym_BSLASHacrfull] = ACTIONS(5145), + [anon_sym_BSLASHAcrfull] = ACTIONS(5145), + [anon_sym_BSLASHACRfull] = ACTIONS(5145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5145), + [anon_sym_BSLASHacs] = ACTIONS(5145), + [anon_sym_BSLASHAcs] = ACTIONS(5145), + [anon_sym_BSLASHacsp] = ACTIONS(5145), + [anon_sym_BSLASHAcsp] = ACTIONS(5145), + [anon_sym_BSLASHacl] = ACTIONS(5145), + [anon_sym_BSLASHAcl] = ACTIONS(5145), + [anon_sym_BSLASHaclp] = ACTIONS(5145), + [anon_sym_BSLASHAclp] = ACTIONS(5145), + [anon_sym_BSLASHacf] = ACTIONS(5145), + [anon_sym_BSLASHAcf] = ACTIONS(5145), + [anon_sym_BSLASHacfp] = ACTIONS(5145), + [anon_sym_BSLASHAcfp] = ACTIONS(5145), + [anon_sym_BSLASHac] = ACTIONS(5145), + [anon_sym_BSLASHAc] = ACTIONS(5145), + [anon_sym_BSLASHacp] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5145), + [anon_sym_BSLASHcolor] = ACTIONS(5145), + [anon_sym_BSLASHcolorbox] = ACTIONS(5145), + [anon_sym_BSLASHtextcolor] = ACTIONS(5145), + [anon_sym_BSLASHpagecolor] = ACTIONS(5145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5145), + [anon_sym_BSLASHtext] = ACTIONS(5145), + [anon_sym_BSLASHintertext] = ACTIONS(5145), + [anon_sym_shortintertext] = ACTIONS(5145), + }, + [1482] = { + [sym_command_name] = ACTIONS(5139), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5139), + [anon_sym_LPAREN] = ACTIONS(5137), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_LBRACK] = ACTIONS(5137), + [anon_sym_RBRACK] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_LBRACE] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [sym_word] = ACTIONS(5139), + [sym_placeholder] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_CARET] = ACTIONS(5139), + [anon_sym__] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_PIPE] = ACTIONS(5139), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5139), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5137), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5137), + [anon_sym_DOLLAR] = ACTIONS(5139), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5137), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5137), + [anon_sym_BSLASHusepackage] = ACTIONS(5139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), + [anon_sym_BSLASHinclude] = ACTIONS(5139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), + [anon_sym_BSLASHinput] = ACTIONS(5139), + [anon_sym_BSLASHsubfile] = ACTIONS(5139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), + [anon_sym_BSLASHbibliography] = ACTIONS(5139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), + [anon_sym_BSLASHincludesvg] = ACTIONS(5139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), + [anon_sym_BSLASHimport] = ACTIONS(5139), + [anon_sym_BSLASHsubimport] = ACTIONS(5139), + [anon_sym_BSLASHinputfrom] = ACTIONS(5139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), + [anon_sym_BSLASHincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHcaption] = ACTIONS(5139), + [anon_sym_BSLASHcite] = ACTIONS(5139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCite] = ACTIONS(5139), + [anon_sym_BSLASHnocite] = ACTIONS(5139), + [anon_sym_BSLASHcitet] = ACTIONS(5139), + [anon_sym_BSLASHcitep] = ACTIONS(5139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteauthor] = ACTIONS(5139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitetitle] = ACTIONS(5139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteyear] = ACTIONS(5139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitedate] = ACTIONS(5139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteurl] = ACTIONS(5139), + [anon_sym_BSLASHfullcite] = ACTIONS(5139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), + [anon_sym_BSLASHcitealt] = ACTIONS(5139), + [anon_sym_BSLASHcitealp] = ACTIONS(5139), + [anon_sym_BSLASHcitetext] = ACTIONS(5139), + [anon_sym_BSLASHparencite] = ACTIONS(5139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHParencite] = ACTIONS(5139), + [anon_sym_BSLASHfootcite] = ACTIONS(5139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), + [anon_sym_BSLASHtextcite] = ACTIONS(5139), + [anon_sym_BSLASHTextcite] = ACTIONS(5139), + [anon_sym_BSLASHsmartcite] = ACTIONS(5139), + [anon_sym_BSLASHSmartcite] = ACTIONS(5139), + [anon_sym_BSLASHsupercite] = ACTIONS(5139), + [anon_sym_BSLASHautocite] = ACTIONS(5139), + [anon_sym_BSLASHAutocite] = ACTIONS(5139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHvolcite] = ACTIONS(5139), + [anon_sym_BSLASHVolcite] = ACTIONS(5139), + [anon_sym_BSLASHpvolcite] = ACTIONS(5139), + [anon_sym_BSLASHPvolcite] = ACTIONS(5139), + [anon_sym_BSLASHfvolcite] = ACTIONS(5139), + [anon_sym_BSLASHftvolcite] = ACTIONS(5139), + [anon_sym_BSLASHsvolcite] = ACTIONS(5139), + [anon_sym_BSLASHSvolcite] = ACTIONS(5139), + [anon_sym_BSLASHtvolcite] = ACTIONS(5139), + [anon_sym_BSLASHTvolcite] = ACTIONS(5139), + [anon_sym_BSLASHavolcite] = ACTIONS(5139), + [anon_sym_BSLASHAvolcite] = ACTIONS(5139), + [anon_sym_BSLASHnotecite] = ACTIONS(5139), + [anon_sym_BSLASHNotecite] = ACTIONS(5139), + [anon_sym_BSLASHpnotecite] = ACTIONS(5139), + [anon_sym_BSLASHPnotecite] = ACTIONS(5139), + [anon_sym_BSLASHfnotecite] = ACTIONS(5139), + [anon_sym_BSLASHlabel] = ACTIONS(5139), + [anon_sym_BSLASHref] = ACTIONS(5139), + [anon_sym_BSLASHeqref] = ACTIONS(5139), + [anon_sym_BSLASHvref] = ACTIONS(5139), + [anon_sym_BSLASHVref] = ACTIONS(5139), + [anon_sym_BSLASHautoref] = ACTIONS(5139), + [anon_sym_BSLASHpageref] = ACTIONS(5139), + [anon_sym_BSLASHcref] = ACTIONS(5139), + [anon_sym_BSLASHCref] = ACTIONS(5139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnameCref] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHlabelcref] = ACTIONS(5139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCrefrange] = ACTIONS(5139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnewlabel] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), + [anon_sym_BSLASHdef] = ACTIONS(5139), + [anon_sym_BSLASHlet] = ACTIONS(5139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), + [anon_sym_BSLASHgls] = ACTIONS(5139), + [anon_sym_BSLASHGls] = ACTIONS(5139), + [anon_sym_BSLASHGLS] = ACTIONS(5139), + [anon_sym_BSLASHglspl] = ACTIONS(5139), + [anon_sym_BSLASHGlspl] = ACTIONS(5139), + [anon_sym_BSLASHGLSpl] = ACTIONS(5139), + [anon_sym_BSLASHglsdisp] = ACTIONS(5139), + [anon_sym_BSLASHglslink] = ACTIONS(5139), + [anon_sym_BSLASHglstext] = ACTIONS(5139), + [anon_sym_BSLASHGlstext] = ACTIONS(5139), + [anon_sym_BSLASHGLStext] = ACTIONS(5139), + [anon_sym_BSLASHglsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), + [anon_sym_BSLASHglsplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSplural] = ACTIONS(5139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHglsname] = ACTIONS(5139), + [anon_sym_BSLASHGlsname] = ACTIONS(5139), + [anon_sym_BSLASHGLSname] = ACTIONS(5139), + [anon_sym_BSLASHglssymbol] = ACTIONS(5139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), + [anon_sym_BSLASHglsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), + [anon_sym_BSLASHglsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), + [anon_sym_BSLASHglsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), + [anon_sym_BSLASHglsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), + [anon_sym_BSLASHglsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), + [anon_sym_BSLASHnewacronym] = ACTIONS(5139), + [anon_sym_BSLASHacrshort] = ACTIONS(5139), + [anon_sym_BSLASHAcrshort] = ACTIONS(5139), + [anon_sym_BSLASHACRshort] = ACTIONS(5139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), + [anon_sym_BSLASHacrlong] = ACTIONS(5139), + [anon_sym_BSLASHAcrlong] = ACTIONS(5139), + [anon_sym_BSLASHACRlong] = ACTIONS(5139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), + [anon_sym_BSLASHacrfull] = ACTIONS(5139), + [anon_sym_BSLASHAcrfull] = ACTIONS(5139), + [anon_sym_BSLASHACRfull] = ACTIONS(5139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), + [anon_sym_BSLASHacs] = ACTIONS(5139), + [anon_sym_BSLASHAcs] = ACTIONS(5139), + [anon_sym_BSLASHacsp] = ACTIONS(5139), + [anon_sym_BSLASHAcsp] = ACTIONS(5139), + [anon_sym_BSLASHacl] = ACTIONS(5139), + [anon_sym_BSLASHAcl] = ACTIONS(5139), + [anon_sym_BSLASHaclp] = ACTIONS(5139), + [anon_sym_BSLASHAclp] = ACTIONS(5139), + [anon_sym_BSLASHacf] = ACTIONS(5139), + [anon_sym_BSLASHAcf] = ACTIONS(5139), + [anon_sym_BSLASHacfp] = ACTIONS(5139), + [anon_sym_BSLASHAcfp] = ACTIONS(5139), + [anon_sym_BSLASHac] = ACTIONS(5139), + [anon_sym_BSLASHAc] = ACTIONS(5139), + [anon_sym_BSLASHacp] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), + [anon_sym_BSLASHcolor] = ACTIONS(5139), + [anon_sym_BSLASHcolorbox] = ACTIONS(5139), + [anon_sym_BSLASHtextcolor] = ACTIONS(5139), + [anon_sym_BSLASHpagecolor] = ACTIONS(5139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHtext] = ACTIONS(5139), + [anon_sym_BSLASHintertext] = ACTIONS(5139), + [anon_sym_shortintertext] = ACTIONS(5139), + }, + [1483] = { + [sym_command_name] = ACTIONS(4897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4897), + [anon_sym_LPAREN] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_LBRACK] = ACTIONS(4895), + [anon_sym_RBRACK] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_LBRACE] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [sym_word] = ACTIONS(4897), + [sym_placeholder] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_STAR] = ACTIONS(4897), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_CARET] = ACTIONS(4897), + [anon_sym__] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_BANG] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_COLON] = ACTIONS(4897), + [anon_sym_SQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(4897), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4895), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4895), + [anon_sym_BSLASHusepackage] = ACTIONS(4897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), + [anon_sym_BSLASHinclude] = ACTIONS(4897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), + [anon_sym_BSLASHinput] = ACTIONS(4897), + [anon_sym_BSLASHsubfile] = ACTIONS(4897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), + [anon_sym_BSLASHbibliography] = ACTIONS(4897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), + [anon_sym_BSLASHincludesvg] = ACTIONS(4897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), + [anon_sym_BSLASHimport] = ACTIONS(4897), + [anon_sym_BSLASHsubimport] = ACTIONS(4897), + [anon_sym_BSLASHinputfrom] = ACTIONS(4897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), + [anon_sym_BSLASHincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHcaption] = ACTIONS(4897), + [anon_sym_BSLASHcite] = ACTIONS(4897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCite] = ACTIONS(4897), + [anon_sym_BSLASHnocite] = ACTIONS(4897), + [anon_sym_BSLASHcitet] = ACTIONS(4897), + [anon_sym_BSLASHcitep] = ACTIONS(4897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteauthor] = ACTIONS(4897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitetitle] = ACTIONS(4897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteyear] = ACTIONS(4897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitedate] = ACTIONS(4897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteurl] = ACTIONS(4897), + [anon_sym_BSLASHfullcite] = ACTIONS(4897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), + [anon_sym_BSLASHcitealt] = ACTIONS(4897), + [anon_sym_BSLASHcitealp] = ACTIONS(4897), + [anon_sym_BSLASHcitetext] = ACTIONS(4897), + [anon_sym_BSLASHparencite] = ACTIONS(4897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHParencite] = ACTIONS(4897), + [anon_sym_BSLASHfootcite] = ACTIONS(4897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), + [anon_sym_BSLASHtextcite] = ACTIONS(4897), + [anon_sym_BSLASHTextcite] = ACTIONS(4897), + [anon_sym_BSLASHsmartcite] = ACTIONS(4897), + [anon_sym_BSLASHSmartcite] = ACTIONS(4897), + [anon_sym_BSLASHsupercite] = ACTIONS(4897), + [anon_sym_BSLASHautocite] = ACTIONS(4897), + [anon_sym_BSLASHAutocite] = ACTIONS(4897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHvolcite] = ACTIONS(4897), + [anon_sym_BSLASHVolcite] = ACTIONS(4897), + [anon_sym_BSLASHpvolcite] = ACTIONS(4897), + [anon_sym_BSLASHPvolcite] = ACTIONS(4897), + [anon_sym_BSLASHfvolcite] = ACTIONS(4897), + [anon_sym_BSLASHftvolcite] = ACTIONS(4897), + [anon_sym_BSLASHsvolcite] = ACTIONS(4897), + [anon_sym_BSLASHSvolcite] = ACTIONS(4897), + [anon_sym_BSLASHtvolcite] = ACTIONS(4897), + [anon_sym_BSLASHTvolcite] = ACTIONS(4897), + [anon_sym_BSLASHavolcite] = ACTIONS(4897), + [anon_sym_BSLASHAvolcite] = ACTIONS(4897), + [anon_sym_BSLASHnotecite] = ACTIONS(4897), + [anon_sym_BSLASHNotecite] = ACTIONS(4897), + [anon_sym_BSLASHpnotecite] = ACTIONS(4897), + [anon_sym_BSLASHPnotecite] = ACTIONS(4897), + [anon_sym_BSLASHfnotecite] = ACTIONS(4897), + [anon_sym_BSLASHlabel] = ACTIONS(4897), + [anon_sym_BSLASHref] = ACTIONS(4897), + [anon_sym_BSLASHeqref] = ACTIONS(4897), + [anon_sym_BSLASHvref] = ACTIONS(4897), + [anon_sym_BSLASHVref] = ACTIONS(4897), + [anon_sym_BSLASHautoref] = ACTIONS(4897), + [anon_sym_BSLASHpageref] = ACTIONS(4897), + [anon_sym_BSLASHcref] = ACTIONS(4897), + [anon_sym_BSLASHCref] = ACTIONS(4897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnameCref] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHlabelcref] = ACTIONS(4897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCrefrange] = ACTIONS(4897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnewlabel] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), + [anon_sym_BSLASHdef] = ACTIONS(4897), + [anon_sym_BSLASHlet] = ACTIONS(4897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), + [anon_sym_BSLASHgls] = ACTIONS(4897), + [anon_sym_BSLASHGls] = ACTIONS(4897), + [anon_sym_BSLASHGLS] = ACTIONS(4897), + [anon_sym_BSLASHglspl] = ACTIONS(4897), + [anon_sym_BSLASHGlspl] = ACTIONS(4897), + [anon_sym_BSLASHGLSpl] = ACTIONS(4897), + [anon_sym_BSLASHglsdisp] = ACTIONS(4897), + [anon_sym_BSLASHglslink] = ACTIONS(4897), + [anon_sym_BSLASHglstext] = ACTIONS(4897), + [anon_sym_BSLASHGlstext] = ACTIONS(4897), + [anon_sym_BSLASHGLStext] = ACTIONS(4897), + [anon_sym_BSLASHglsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), + [anon_sym_BSLASHglsplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSplural] = ACTIONS(4897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHglsname] = ACTIONS(4897), + [anon_sym_BSLASHGlsname] = ACTIONS(4897), + [anon_sym_BSLASHGLSname] = ACTIONS(4897), + [anon_sym_BSLASHglssymbol] = ACTIONS(4897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), + [anon_sym_BSLASHglsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), + [anon_sym_BSLASHglsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), + [anon_sym_BSLASHglsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), + [anon_sym_BSLASHglsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), + [anon_sym_BSLASHglsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), + [anon_sym_BSLASHnewacronym] = ACTIONS(4897), + [anon_sym_BSLASHacrshort] = ACTIONS(4897), + [anon_sym_BSLASHAcrshort] = ACTIONS(4897), + [anon_sym_BSLASHACRshort] = ACTIONS(4897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), + [anon_sym_BSLASHacrlong] = ACTIONS(4897), + [anon_sym_BSLASHAcrlong] = ACTIONS(4897), + [anon_sym_BSLASHACRlong] = ACTIONS(4897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), + [anon_sym_BSLASHacrfull] = ACTIONS(4897), + [anon_sym_BSLASHAcrfull] = ACTIONS(4897), + [anon_sym_BSLASHACRfull] = ACTIONS(4897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), + [anon_sym_BSLASHacs] = ACTIONS(4897), + [anon_sym_BSLASHAcs] = ACTIONS(4897), + [anon_sym_BSLASHacsp] = ACTIONS(4897), + [anon_sym_BSLASHAcsp] = ACTIONS(4897), + [anon_sym_BSLASHacl] = ACTIONS(4897), + [anon_sym_BSLASHAcl] = ACTIONS(4897), + [anon_sym_BSLASHaclp] = ACTIONS(4897), + [anon_sym_BSLASHAclp] = ACTIONS(4897), + [anon_sym_BSLASHacf] = ACTIONS(4897), + [anon_sym_BSLASHAcf] = ACTIONS(4897), + [anon_sym_BSLASHacfp] = ACTIONS(4897), + [anon_sym_BSLASHAcfp] = ACTIONS(4897), + [anon_sym_BSLASHac] = ACTIONS(4897), + [anon_sym_BSLASHAc] = ACTIONS(4897), + [anon_sym_BSLASHacp] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), + [anon_sym_BSLASHcolor] = ACTIONS(4897), + [anon_sym_BSLASHcolorbox] = ACTIONS(4897), + [anon_sym_BSLASHtextcolor] = ACTIONS(4897), + [anon_sym_BSLASHpagecolor] = ACTIONS(4897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), + [anon_sym_BSLASHtext] = ACTIONS(4897), + [anon_sym_BSLASHintertext] = ACTIONS(4897), + [anon_sym_shortintertext] = ACTIONS(4897), }, - [1519] = { - [sym_command_name] = ACTIONS(5367), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5367), - [anon_sym_RBRACK] = ACTIONS(5365), - [anon_sym_COMMA] = ACTIONS(5365), - [anon_sym_EQ] = ACTIONS(5365), - [anon_sym_RBRACE] = ACTIONS(5365), - [sym_word] = ACTIONS(5367), - [sym_placeholder] = ACTIONS(5365), - [anon_sym_PLUS] = ACTIONS(5367), - [anon_sym_DASH] = ACTIONS(5367), - [anon_sym_STAR] = ACTIONS(5367), - [anon_sym_SLASH] = ACTIONS(5367), - [anon_sym_CARET] = ACTIONS(5367), - [anon_sym__] = ACTIONS(5367), - [anon_sym_LT] = ACTIONS(5367), - [anon_sym_GT] = ACTIONS(5367), - [anon_sym_BANG] = ACTIONS(5367), - [anon_sym_PIPE] = ACTIONS(5367), - [anon_sym_COLON] = ACTIONS(5367), - [anon_sym_SQUOTE] = ACTIONS(5367), - [anon_sym_BSLASHusepackage] = ACTIONS(5367), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5367), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5367), - [anon_sym_BSLASHinclude] = ACTIONS(5367), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5367), - [anon_sym_BSLASHinput] = ACTIONS(5367), - [anon_sym_BSLASHsubfile] = ACTIONS(5367), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5367), - [anon_sym_BSLASHbibliography] = ACTIONS(5367), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5367), - [anon_sym_BSLASHincludesvg] = ACTIONS(5367), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5367), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5367), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5367), - [anon_sym_BSLASHimport] = ACTIONS(5367), - [anon_sym_BSLASHsubimport] = ACTIONS(5367), - [anon_sym_BSLASHinputfrom] = ACTIONS(5367), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5367), - [anon_sym_BSLASHincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5367), - [anon_sym_BSLASHcaption] = ACTIONS(5367), - [anon_sym_BSLASHcite] = ACTIONS(5367), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCite] = ACTIONS(5367), - [anon_sym_BSLASHnocite] = ACTIONS(5367), - [anon_sym_BSLASHcitet] = ACTIONS(5367), - [anon_sym_BSLASHcitep] = ACTIONS(5367), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteauthor] = ACTIONS(5367), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5367), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitetitle] = ACTIONS(5367), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteyear] = ACTIONS(5367), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5365), - [anon_sym_BSLASHcitedate] = ACTIONS(5367), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5365), - [anon_sym_BSLASHciteurl] = ACTIONS(5367), - [anon_sym_BSLASHfullcite] = ACTIONS(5367), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5367), - [anon_sym_BSLASHcitealt] = ACTIONS(5367), - [anon_sym_BSLASHcitealp] = ACTIONS(5367), - [anon_sym_BSLASHcitetext] = ACTIONS(5367), - [anon_sym_BSLASHparencite] = ACTIONS(5367), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHParencite] = ACTIONS(5367), - [anon_sym_BSLASHfootcite] = ACTIONS(5367), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5367), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5367), - [anon_sym_BSLASHtextcite] = ACTIONS(5367), - [anon_sym_BSLASHTextcite] = ACTIONS(5367), - [anon_sym_BSLASHsmartcite] = ACTIONS(5367), - [anon_sym_BSLASHSmartcite] = ACTIONS(5367), - [anon_sym_BSLASHsupercite] = ACTIONS(5367), - [anon_sym_BSLASHautocite] = ACTIONS(5367), - [anon_sym_BSLASHAutocite] = ACTIONS(5367), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5365), - [anon_sym_BSLASHvolcite] = ACTIONS(5367), - [anon_sym_BSLASHVolcite] = ACTIONS(5367), - [anon_sym_BSLASHpvolcite] = ACTIONS(5367), - [anon_sym_BSLASHPvolcite] = ACTIONS(5367), - [anon_sym_BSLASHfvolcite] = ACTIONS(5367), - [anon_sym_BSLASHftvolcite] = ACTIONS(5367), - [anon_sym_BSLASHsvolcite] = ACTIONS(5367), - [anon_sym_BSLASHSvolcite] = ACTIONS(5367), - [anon_sym_BSLASHtvolcite] = ACTIONS(5367), - [anon_sym_BSLASHTvolcite] = ACTIONS(5367), - [anon_sym_BSLASHavolcite] = ACTIONS(5367), - [anon_sym_BSLASHAvolcite] = ACTIONS(5367), - [anon_sym_BSLASHnotecite] = ACTIONS(5367), - [anon_sym_BSLASHNotecite] = ACTIONS(5367), - [anon_sym_BSLASHpnotecite] = ACTIONS(5367), - [anon_sym_BSLASHPnotecite] = ACTIONS(5367), - [anon_sym_BSLASHfnotecite] = ACTIONS(5367), - [anon_sym_BSLASHlabel] = ACTIONS(5367), - [anon_sym_BSLASHref] = ACTIONS(5367), - [anon_sym_BSLASHeqref] = ACTIONS(5367), - [anon_sym_BSLASHvref] = ACTIONS(5367), - [anon_sym_BSLASHVref] = ACTIONS(5367), - [anon_sym_BSLASHautoref] = ACTIONS(5367), - [anon_sym_BSLASHpageref] = ACTIONS(5367), - [anon_sym_BSLASHcref] = ACTIONS(5367), - [anon_sym_BSLASHCref] = ACTIONS(5367), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnameCref] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5367), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5367), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5367), - [anon_sym_BSLASHlabelcref] = ACTIONS(5367), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange] = ACTIONS(5367), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHCrefrange] = ACTIONS(5367), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5365), - [anon_sym_BSLASHnewlabel] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand] = ACTIONS(5367), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5367), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5367), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5365), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5367), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5365), - [anon_sym_BSLASHdef] = ACTIONS(5367), - [anon_sym_BSLASHlet] = ACTIONS(5367), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5367), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5367), - [anon_sym_BSLASHgls] = ACTIONS(5367), - [anon_sym_BSLASHGls] = ACTIONS(5367), - [anon_sym_BSLASHGLS] = ACTIONS(5367), - [anon_sym_BSLASHglspl] = ACTIONS(5367), - [anon_sym_BSLASHGlspl] = ACTIONS(5367), - [anon_sym_BSLASHGLSpl] = ACTIONS(5367), - [anon_sym_BSLASHglsdisp] = ACTIONS(5367), - [anon_sym_BSLASHglslink] = ACTIONS(5367), - [anon_sym_BSLASHglstext] = ACTIONS(5367), - [anon_sym_BSLASHGlstext] = ACTIONS(5367), - [anon_sym_BSLASHGLStext] = ACTIONS(5367), - [anon_sym_BSLASHglsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5367), - [anon_sym_BSLASHglsplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSplural] = ACTIONS(5367), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5367), - [anon_sym_BSLASHglsname] = ACTIONS(5367), - [anon_sym_BSLASHGlsname] = ACTIONS(5367), - [anon_sym_BSLASHGLSname] = ACTIONS(5367), - [anon_sym_BSLASHglssymbol] = ACTIONS(5367), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5367), - [anon_sym_BSLASHglsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5367), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5367), - [anon_sym_BSLASHglsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5367), - [anon_sym_BSLASHglsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5367), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5367), - [anon_sym_BSLASHglsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5367), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5367), - [anon_sym_BSLASHglsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5367), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5367), - [anon_sym_BSLASHnewacronym] = ACTIONS(5367), - [anon_sym_BSLASHacrshort] = ACTIONS(5367), - [anon_sym_BSLASHAcrshort] = ACTIONS(5367), - [anon_sym_BSLASHACRshort] = ACTIONS(5367), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5367), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5367), - [anon_sym_BSLASHacrlong] = ACTIONS(5367), - [anon_sym_BSLASHAcrlong] = ACTIONS(5367), - [anon_sym_BSLASHACRlong] = ACTIONS(5367), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5367), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5367), - [anon_sym_BSLASHacrfull] = ACTIONS(5367), - [anon_sym_BSLASHAcrfull] = ACTIONS(5367), - [anon_sym_BSLASHACRfull] = ACTIONS(5367), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5367), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5367), - [anon_sym_BSLASHacs] = ACTIONS(5367), - [anon_sym_BSLASHAcs] = ACTIONS(5367), - [anon_sym_BSLASHacsp] = ACTIONS(5367), - [anon_sym_BSLASHAcsp] = ACTIONS(5367), - [anon_sym_BSLASHacl] = ACTIONS(5367), - [anon_sym_BSLASHAcl] = ACTIONS(5367), - [anon_sym_BSLASHaclp] = ACTIONS(5367), - [anon_sym_BSLASHAclp] = ACTIONS(5367), - [anon_sym_BSLASHacf] = ACTIONS(5367), - [anon_sym_BSLASHAcf] = ACTIONS(5367), - [anon_sym_BSLASHacfp] = ACTIONS(5367), - [anon_sym_BSLASHAcfp] = ACTIONS(5367), - [anon_sym_BSLASHac] = ACTIONS(5367), - [anon_sym_BSLASHAc] = ACTIONS(5367), - [anon_sym_BSLASHacp] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5367), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5367), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5367), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5367), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5367), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5367), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5367), - [anon_sym_BSLASHcolor] = ACTIONS(5367), - [anon_sym_BSLASHcolorbox] = ACTIONS(5367), - [anon_sym_BSLASHtextcolor] = ACTIONS(5367), - [anon_sym_BSLASHpagecolor] = ACTIONS(5367), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5367), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5367), + [1484] = { + [sym_command_name] = ACTIONS(4901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4901), + [anon_sym_LPAREN] = ACTIONS(4899), + [anon_sym_RPAREN] = ACTIONS(4899), + [anon_sym_LBRACK] = ACTIONS(4899), + [anon_sym_RBRACK] = ACTIONS(4899), + [anon_sym_COMMA] = ACTIONS(4899), + [anon_sym_LBRACE] = ACTIONS(4899), + [anon_sym_RBRACE] = ACTIONS(4899), + [sym_word] = ACTIONS(4901), + [sym_placeholder] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(4901), + [anon_sym_DASH] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4901), + [anon_sym_SLASH] = ACTIONS(4901), + [anon_sym_CARET] = ACTIONS(4901), + [anon_sym__] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_BANG] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_COLON] = ACTIONS(4901), + [anon_sym_SQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4899), + [anon_sym_DOLLAR] = ACTIONS(4901), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4899), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4899), + [anon_sym_BSLASHusepackage] = ACTIONS(4901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), + [anon_sym_BSLASHinclude] = ACTIONS(4901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), + [anon_sym_BSLASHinput] = ACTIONS(4901), + [anon_sym_BSLASHsubfile] = ACTIONS(4901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), + [anon_sym_BSLASHbibliography] = ACTIONS(4901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), + [anon_sym_BSLASHincludesvg] = ACTIONS(4901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), + [anon_sym_BSLASHimport] = ACTIONS(4901), + [anon_sym_BSLASHsubimport] = ACTIONS(4901), + [anon_sym_BSLASHinputfrom] = ACTIONS(4901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), + [anon_sym_BSLASHincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHcaption] = ACTIONS(4901), + [anon_sym_BSLASHcite] = ACTIONS(4901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCite] = ACTIONS(4901), + [anon_sym_BSLASHnocite] = ACTIONS(4901), + [anon_sym_BSLASHcitet] = ACTIONS(4901), + [anon_sym_BSLASHcitep] = ACTIONS(4901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteauthor] = ACTIONS(4901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitetitle] = ACTIONS(4901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteyear] = ACTIONS(4901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitedate] = ACTIONS(4901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteurl] = ACTIONS(4901), + [anon_sym_BSLASHfullcite] = ACTIONS(4901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), + [anon_sym_BSLASHcitealt] = ACTIONS(4901), + [anon_sym_BSLASHcitealp] = ACTIONS(4901), + [anon_sym_BSLASHcitetext] = ACTIONS(4901), + [anon_sym_BSLASHparencite] = ACTIONS(4901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHParencite] = ACTIONS(4901), + [anon_sym_BSLASHfootcite] = ACTIONS(4901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), + [anon_sym_BSLASHtextcite] = ACTIONS(4901), + [anon_sym_BSLASHTextcite] = ACTIONS(4901), + [anon_sym_BSLASHsmartcite] = ACTIONS(4901), + [anon_sym_BSLASHSmartcite] = ACTIONS(4901), + [anon_sym_BSLASHsupercite] = ACTIONS(4901), + [anon_sym_BSLASHautocite] = ACTIONS(4901), + [anon_sym_BSLASHAutocite] = ACTIONS(4901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHvolcite] = ACTIONS(4901), + [anon_sym_BSLASHVolcite] = ACTIONS(4901), + [anon_sym_BSLASHpvolcite] = ACTIONS(4901), + [anon_sym_BSLASHPvolcite] = ACTIONS(4901), + [anon_sym_BSLASHfvolcite] = ACTIONS(4901), + [anon_sym_BSLASHftvolcite] = ACTIONS(4901), + [anon_sym_BSLASHsvolcite] = ACTIONS(4901), + [anon_sym_BSLASHSvolcite] = ACTIONS(4901), + [anon_sym_BSLASHtvolcite] = ACTIONS(4901), + [anon_sym_BSLASHTvolcite] = ACTIONS(4901), + [anon_sym_BSLASHavolcite] = ACTIONS(4901), + [anon_sym_BSLASHAvolcite] = ACTIONS(4901), + [anon_sym_BSLASHnotecite] = ACTIONS(4901), + [anon_sym_BSLASHNotecite] = ACTIONS(4901), + [anon_sym_BSLASHpnotecite] = ACTIONS(4901), + [anon_sym_BSLASHPnotecite] = ACTIONS(4901), + [anon_sym_BSLASHfnotecite] = ACTIONS(4901), + [anon_sym_BSLASHlabel] = ACTIONS(4901), + [anon_sym_BSLASHref] = ACTIONS(4901), + [anon_sym_BSLASHeqref] = ACTIONS(4901), + [anon_sym_BSLASHvref] = ACTIONS(4901), + [anon_sym_BSLASHVref] = ACTIONS(4901), + [anon_sym_BSLASHautoref] = ACTIONS(4901), + [anon_sym_BSLASHpageref] = ACTIONS(4901), + [anon_sym_BSLASHcref] = ACTIONS(4901), + [anon_sym_BSLASHCref] = ACTIONS(4901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnameCref] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHlabelcref] = ACTIONS(4901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCrefrange] = ACTIONS(4901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnewlabel] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), + [anon_sym_BSLASHdef] = ACTIONS(4901), + [anon_sym_BSLASHlet] = ACTIONS(4901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), + [anon_sym_BSLASHgls] = ACTIONS(4901), + [anon_sym_BSLASHGls] = ACTIONS(4901), + [anon_sym_BSLASHGLS] = ACTIONS(4901), + [anon_sym_BSLASHglspl] = ACTIONS(4901), + [anon_sym_BSLASHGlspl] = ACTIONS(4901), + [anon_sym_BSLASHGLSpl] = ACTIONS(4901), + [anon_sym_BSLASHglsdisp] = ACTIONS(4901), + [anon_sym_BSLASHglslink] = ACTIONS(4901), + [anon_sym_BSLASHglstext] = ACTIONS(4901), + [anon_sym_BSLASHGlstext] = ACTIONS(4901), + [anon_sym_BSLASHGLStext] = ACTIONS(4901), + [anon_sym_BSLASHglsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), + [anon_sym_BSLASHglsplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSplural] = ACTIONS(4901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHglsname] = ACTIONS(4901), + [anon_sym_BSLASHGlsname] = ACTIONS(4901), + [anon_sym_BSLASHGLSname] = ACTIONS(4901), + [anon_sym_BSLASHglssymbol] = ACTIONS(4901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), + [anon_sym_BSLASHglsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), + [anon_sym_BSLASHglsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), + [anon_sym_BSLASHglsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), + [anon_sym_BSLASHglsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), + [anon_sym_BSLASHglsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), + [anon_sym_BSLASHnewacronym] = ACTIONS(4901), + [anon_sym_BSLASHacrshort] = ACTIONS(4901), + [anon_sym_BSLASHAcrshort] = ACTIONS(4901), + [anon_sym_BSLASHACRshort] = ACTIONS(4901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), + [anon_sym_BSLASHacrlong] = ACTIONS(4901), + [anon_sym_BSLASHAcrlong] = ACTIONS(4901), + [anon_sym_BSLASHACRlong] = ACTIONS(4901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), + [anon_sym_BSLASHacrfull] = ACTIONS(4901), + [anon_sym_BSLASHAcrfull] = ACTIONS(4901), + [anon_sym_BSLASHACRfull] = ACTIONS(4901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), + [anon_sym_BSLASHacs] = ACTIONS(4901), + [anon_sym_BSLASHAcs] = ACTIONS(4901), + [anon_sym_BSLASHacsp] = ACTIONS(4901), + [anon_sym_BSLASHAcsp] = ACTIONS(4901), + [anon_sym_BSLASHacl] = ACTIONS(4901), + [anon_sym_BSLASHAcl] = ACTIONS(4901), + [anon_sym_BSLASHaclp] = ACTIONS(4901), + [anon_sym_BSLASHAclp] = ACTIONS(4901), + [anon_sym_BSLASHacf] = ACTIONS(4901), + [anon_sym_BSLASHAcf] = ACTIONS(4901), + [anon_sym_BSLASHacfp] = ACTIONS(4901), + [anon_sym_BSLASHAcfp] = ACTIONS(4901), + [anon_sym_BSLASHac] = ACTIONS(4901), + [anon_sym_BSLASHAc] = ACTIONS(4901), + [anon_sym_BSLASHacp] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), + [anon_sym_BSLASHcolor] = ACTIONS(4901), + [anon_sym_BSLASHcolorbox] = ACTIONS(4901), + [anon_sym_BSLASHtextcolor] = ACTIONS(4901), + [anon_sym_BSLASHpagecolor] = ACTIONS(4901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), + [anon_sym_BSLASHtext] = ACTIONS(4901), + [anon_sym_BSLASHintertext] = ACTIONS(4901), + [anon_sym_shortintertext] = ACTIONS(4901), }, - [1520] = { - [sym_command_name] = ACTIONS(5361), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5361), - [anon_sym_RBRACK] = ACTIONS(5359), - [anon_sym_COMMA] = ACTIONS(5359), - [anon_sym_EQ] = ACTIONS(5359), - [anon_sym_RBRACE] = ACTIONS(5359), - [sym_word] = ACTIONS(5361), - [sym_placeholder] = ACTIONS(5359), - [anon_sym_PLUS] = ACTIONS(5361), - [anon_sym_DASH] = ACTIONS(5361), - [anon_sym_STAR] = ACTIONS(5361), - [anon_sym_SLASH] = ACTIONS(5361), - [anon_sym_CARET] = ACTIONS(5361), - [anon_sym__] = ACTIONS(5361), - [anon_sym_LT] = ACTIONS(5361), - [anon_sym_GT] = ACTIONS(5361), - [anon_sym_BANG] = ACTIONS(5361), - [anon_sym_PIPE] = ACTIONS(5361), - [anon_sym_COLON] = ACTIONS(5361), - [anon_sym_SQUOTE] = ACTIONS(5361), - [anon_sym_BSLASHusepackage] = ACTIONS(5361), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5361), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5361), - [anon_sym_BSLASHinclude] = ACTIONS(5361), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5361), - [anon_sym_BSLASHinput] = ACTIONS(5361), - [anon_sym_BSLASHsubfile] = ACTIONS(5361), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5361), - [anon_sym_BSLASHbibliography] = ACTIONS(5361), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5361), - [anon_sym_BSLASHincludesvg] = ACTIONS(5361), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5361), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5361), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5361), - [anon_sym_BSLASHimport] = ACTIONS(5361), - [anon_sym_BSLASHsubimport] = ACTIONS(5361), - [anon_sym_BSLASHinputfrom] = ACTIONS(5361), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5361), - [anon_sym_BSLASHincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5361), - [anon_sym_BSLASHcaption] = ACTIONS(5361), - [anon_sym_BSLASHcite] = ACTIONS(5361), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCite] = ACTIONS(5361), - [anon_sym_BSLASHnocite] = ACTIONS(5361), - [anon_sym_BSLASHcitet] = ACTIONS(5361), - [anon_sym_BSLASHcitep] = ACTIONS(5361), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteauthor] = ACTIONS(5361), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5361), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitetitle] = ACTIONS(5361), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteyear] = ACTIONS(5361), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5359), - [anon_sym_BSLASHcitedate] = ACTIONS(5361), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5359), - [anon_sym_BSLASHciteurl] = ACTIONS(5361), - [anon_sym_BSLASHfullcite] = ACTIONS(5361), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5361), - [anon_sym_BSLASHcitealt] = ACTIONS(5361), - [anon_sym_BSLASHcitealp] = ACTIONS(5361), - [anon_sym_BSLASHcitetext] = ACTIONS(5361), - [anon_sym_BSLASHparencite] = ACTIONS(5361), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHParencite] = ACTIONS(5361), - [anon_sym_BSLASHfootcite] = ACTIONS(5361), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5361), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5361), - [anon_sym_BSLASHtextcite] = ACTIONS(5361), - [anon_sym_BSLASHTextcite] = ACTIONS(5361), - [anon_sym_BSLASHsmartcite] = ACTIONS(5361), - [anon_sym_BSLASHSmartcite] = ACTIONS(5361), - [anon_sym_BSLASHsupercite] = ACTIONS(5361), - [anon_sym_BSLASHautocite] = ACTIONS(5361), - [anon_sym_BSLASHAutocite] = ACTIONS(5361), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5359), - [anon_sym_BSLASHvolcite] = ACTIONS(5361), - [anon_sym_BSLASHVolcite] = ACTIONS(5361), - [anon_sym_BSLASHpvolcite] = ACTIONS(5361), - [anon_sym_BSLASHPvolcite] = ACTIONS(5361), - [anon_sym_BSLASHfvolcite] = ACTIONS(5361), - [anon_sym_BSLASHftvolcite] = ACTIONS(5361), - [anon_sym_BSLASHsvolcite] = ACTIONS(5361), - [anon_sym_BSLASHSvolcite] = ACTIONS(5361), - [anon_sym_BSLASHtvolcite] = ACTIONS(5361), - [anon_sym_BSLASHTvolcite] = ACTIONS(5361), - [anon_sym_BSLASHavolcite] = ACTIONS(5361), - [anon_sym_BSLASHAvolcite] = ACTIONS(5361), - [anon_sym_BSLASHnotecite] = ACTIONS(5361), - [anon_sym_BSLASHNotecite] = ACTIONS(5361), - [anon_sym_BSLASHpnotecite] = ACTIONS(5361), - [anon_sym_BSLASHPnotecite] = ACTIONS(5361), - [anon_sym_BSLASHfnotecite] = ACTIONS(5361), - [anon_sym_BSLASHlabel] = ACTIONS(5361), - [anon_sym_BSLASHref] = ACTIONS(5361), - [anon_sym_BSLASHeqref] = ACTIONS(5361), - [anon_sym_BSLASHvref] = ACTIONS(5361), - [anon_sym_BSLASHVref] = ACTIONS(5361), - [anon_sym_BSLASHautoref] = ACTIONS(5361), - [anon_sym_BSLASHpageref] = ACTIONS(5361), - [anon_sym_BSLASHcref] = ACTIONS(5361), - [anon_sym_BSLASHCref] = ACTIONS(5361), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnameCref] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5361), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5361), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5361), - [anon_sym_BSLASHlabelcref] = ACTIONS(5361), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange] = ACTIONS(5361), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHCrefrange] = ACTIONS(5361), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5359), - [anon_sym_BSLASHnewlabel] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand] = ACTIONS(5361), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5361), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5361), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5359), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5361), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5359), - [anon_sym_BSLASHdef] = ACTIONS(5361), - [anon_sym_BSLASHlet] = ACTIONS(5361), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5361), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5361), - [anon_sym_BSLASHgls] = ACTIONS(5361), - [anon_sym_BSLASHGls] = ACTIONS(5361), - [anon_sym_BSLASHGLS] = ACTIONS(5361), - [anon_sym_BSLASHglspl] = ACTIONS(5361), - [anon_sym_BSLASHGlspl] = ACTIONS(5361), - [anon_sym_BSLASHGLSpl] = ACTIONS(5361), - [anon_sym_BSLASHglsdisp] = ACTIONS(5361), - [anon_sym_BSLASHglslink] = ACTIONS(5361), - [anon_sym_BSLASHglstext] = ACTIONS(5361), - [anon_sym_BSLASHGlstext] = ACTIONS(5361), - [anon_sym_BSLASHGLStext] = ACTIONS(5361), - [anon_sym_BSLASHglsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5361), - [anon_sym_BSLASHglsplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSplural] = ACTIONS(5361), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5361), - [anon_sym_BSLASHglsname] = ACTIONS(5361), - [anon_sym_BSLASHGlsname] = ACTIONS(5361), - [anon_sym_BSLASHGLSname] = ACTIONS(5361), - [anon_sym_BSLASHglssymbol] = ACTIONS(5361), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5361), - [anon_sym_BSLASHglsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5361), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5361), - [anon_sym_BSLASHglsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5361), - [anon_sym_BSLASHglsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5361), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5361), - [anon_sym_BSLASHglsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5361), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5361), - [anon_sym_BSLASHglsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5361), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5361), - [anon_sym_BSLASHnewacronym] = ACTIONS(5361), - [anon_sym_BSLASHacrshort] = ACTIONS(5361), - [anon_sym_BSLASHAcrshort] = ACTIONS(5361), - [anon_sym_BSLASHACRshort] = ACTIONS(5361), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5361), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5361), - [anon_sym_BSLASHacrlong] = ACTIONS(5361), - [anon_sym_BSLASHAcrlong] = ACTIONS(5361), - [anon_sym_BSLASHACRlong] = ACTIONS(5361), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5361), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5361), - [anon_sym_BSLASHacrfull] = ACTIONS(5361), - [anon_sym_BSLASHAcrfull] = ACTIONS(5361), - [anon_sym_BSLASHACRfull] = ACTIONS(5361), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5361), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5361), - [anon_sym_BSLASHacs] = ACTIONS(5361), - [anon_sym_BSLASHAcs] = ACTIONS(5361), - [anon_sym_BSLASHacsp] = ACTIONS(5361), - [anon_sym_BSLASHAcsp] = ACTIONS(5361), - [anon_sym_BSLASHacl] = ACTIONS(5361), - [anon_sym_BSLASHAcl] = ACTIONS(5361), - [anon_sym_BSLASHaclp] = ACTIONS(5361), - [anon_sym_BSLASHAclp] = ACTIONS(5361), - [anon_sym_BSLASHacf] = ACTIONS(5361), - [anon_sym_BSLASHAcf] = ACTIONS(5361), - [anon_sym_BSLASHacfp] = ACTIONS(5361), - [anon_sym_BSLASHAcfp] = ACTIONS(5361), - [anon_sym_BSLASHac] = ACTIONS(5361), - [anon_sym_BSLASHAc] = ACTIONS(5361), - [anon_sym_BSLASHacp] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5361), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5361), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5361), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5361), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5361), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5361), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5361), - [anon_sym_BSLASHcolor] = ACTIONS(5361), - [anon_sym_BSLASHcolorbox] = ACTIONS(5361), - [anon_sym_BSLASHtextcolor] = ACTIONS(5361), - [anon_sym_BSLASHpagecolor] = ACTIONS(5361), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5361), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5361), + [1485] = { + [sym_command_name] = ACTIONS(4905), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4905), + [anon_sym_LPAREN] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_LBRACK] = ACTIONS(4903), + [anon_sym_RBRACK] = ACTIONS(4903), + [anon_sym_COMMA] = ACTIONS(4903), + [anon_sym_LBRACE] = ACTIONS(4903), + [anon_sym_RBRACE] = ACTIONS(4903), + [sym_word] = ACTIONS(4905), + [sym_placeholder] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4905), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_CARET] = ACTIONS(4905), + [anon_sym__] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4905), + [anon_sym_COLON] = ACTIONS(4905), + [anon_sym_SQUOTE] = ACTIONS(4905), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4905), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4903), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4903), + [anon_sym_BSLASHusepackage] = ACTIONS(4905), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), + [anon_sym_BSLASHinclude] = ACTIONS(4905), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), + [anon_sym_BSLASHinput] = ACTIONS(4905), + [anon_sym_BSLASHsubfile] = ACTIONS(4905), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), + [anon_sym_BSLASHbibliography] = ACTIONS(4905), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), + [anon_sym_BSLASHincludesvg] = ACTIONS(4905), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), + [anon_sym_BSLASHimport] = ACTIONS(4905), + [anon_sym_BSLASHsubimport] = ACTIONS(4905), + [anon_sym_BSLASHinputfrom] = ACTIONS(4905), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), + [anon_sym_BSLASHincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHcaption] = ACTIONS(4905), + [anon_sym_BSLASHcite] = ACTIONS(4905), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCite] = ACTIONS(4905), + [anon_sym_BSLASHnocite] = ACTIONS(4905), + [anon_sym_BSLASHcitet] = ACTIONS(4905), + [anon_sym_BSLASHcitep] = ACTIONS(4905), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteauthor] = ACTIONS(4905), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitetitle] = ACTIONS(4905), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteyear] = ACTIONS(4905), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitedate] = ACTIONS(4905), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteurl] = ACTIONS(4905), + [anon_sym_BSLASHfullcite] = ACTIONS(4905), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), + [anon_sym_BSLASHcitealt] = ACTIONS(4905), + [anon_sym_BSLASHcitealp] = ACTIONS(4905), + [anon_sym_BSLASHcitetext] = ACTIONS(4905), + [anon_sym_BSLASHparencite] = ACTIONS(4905), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHParencite] = ACTIONS(4905), + [anon_sym_BSLASHfootcite] = ACTIONS(4905), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), + [anon_sym_BSLASHtextcite] = ACTIONS(4905), + [anon_sym_BSLASHTextcite] = ACTIONS(4905), + [anon_sym_BSLASHsmartcite] = ACTIONS(4905), + [anon_sym_BSLASHSmartcite] = ACTIONS(4905), + [anon_sym_BSLASHsupercite] = ACTIONS(4905), + [anon_sym_BSLASHautocite] = ACTIONS(4905), + [anon_sym_BSLASHAutocite] = ACTIONS(4905), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHvolcite] = ACTIONS(4905), + [anon_sym_BSLASHVolcite] = ACTIONS(4905), + [anon_sym_BSLASHpvolcite] = ACTIONS(4905), + [anon_sym_BSLASHPvolcite] = ACTIONS(4905), + [anon_sym_BSLASHfvolcite] = ACTIONS(4905), + [anon_sym_BSLASHftvolcite] = ACTIONS(4905), + [anon_sym_BSLASHsvolcite] = ACTIONS(4905), + [anon_sym_BSLASHSvolcite] = ACTIONS(4905), + [anon_sym_BSLASHtvolcite] = ACTIONS(4905), + [anon_sym_BSLASHTvolcite] = ACTIONS(4905), + [anon_sym_BSLASHavolcite] = ACTIONS(4905), + [anon_sym_BSLASHAvolcite] = ACTIONS(4905), + [anon_sym_BSLASHnotecite] = ACTIONS(4905), + [anon_sym_BSLASHNotecite] = ACTIONS(4905), + [anon_sym_BSLASHpnotecite] = ACTIONS(4905), + [anon_sym_BSLASHPnotecite] = ACTIONS(4905), + [anon_sym_BSLASHfnotecite] = ACTIONS(4905), + [anon_sym_BSLASHlabel] = ACTIONS(4905), + [anon_sym_BSLASHref] = ACTIONS(4905), + [anon_sym_BSLASHeqref] = ACTIONS(4905), + [anon_sym_BSLASHvref] = ACTIONS(4905), + [anon_sym_BSLASHVref] = ACTIONS(4905), + [anon_sym_BSLASHautoref] = ACTIONS(4905), + [anon_sym_BSLASHpageref] = ACTIONS(4905), + [anon_sym_BSLASHcref] = ACTIONS(4905), + [anon_sym_BSLASHCref] = ACTIONS(4905), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnameCref] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHlabelcref] = ACTIONS(4905), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCrefrange] = ACTIONS(4905), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnewlabel] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), + [anon_sym_BSLASHdef] = ACTIONS(4905), + [anon_sym_BSLASHlet] = ACTIONS(4905), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), + [anon_sym_BSLASHgls] = ACTIONS(4905), + [anon_sym_BSLASHGls] = ACTIONS(4905), + [anon_sym_BSLASHGLS] = ACTIONS(4905), + [anon_sym_BSLASHglspl] = ACTIONS(4905), + [anon_sym_BSLASHGlspl] = ACTIONS(4905), + [anon_sym_BSLASHGLSpl] = ACTIONS(4905), + [anon_sym_BSLASHglsdisp] = ACTIONS(4905), + [anon_sym_BSLASHglslink] = ACTIONS(4905), + [anon_sym_BSLASHglstext] = ACTIONS(4905), + [anon_sym_BSLASHGlstext] = ACTIONS(4905), + [anon_sym_BSLASHGLStext] = ACTIONS(4905), + [anon_sym_BSLASHglsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), + [anon_sym_BSLASHglsplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSplural] = ACTIONS(4905), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHglsname] = ACTIONS(4905), + [anon_sym_BSLASHGlsname] = ACTIONS(4905), + [anon_sym_BSLASHGLSname] = ACTIONS(4905), + [anon_sym_BSLASHglssymbol] = ACTIONS(4905), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), + [anon_sym_BSLASHglsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), + [anon_sym_BSLASHglsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), + [anon_sym_BSLASHglsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), + [anon_sym_BSLASHglsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), + [anon_sym_BSLASHglsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), + [anon_sym_BSLASHnewacronym] = ACTIONS(4905), + [anon_sym_BSLASHacrshort] = ACTIONS(4905), + [anon_sym_BSLASHAcrshort] = ACTIONS(4905), + [anon_sym_BSLASHACRshort] = ACTIONS(4905), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), + [anon_sym_BSLASHacrlong] = ACTIONS(4905), + [anon_sym_BSLASHAcrlong] = ACTIONS(4905), + [anon_sym_BSLASHACRlong] = ACTIONS(4905), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), + [anon_sym_BSLASHacrfull] = ACTIONS(4905), + [anon_sym_BSLASHAcrfull] = ACTIONS(4905), + [anon_sym_BSLASHACRfull] = ACTIONS(4905), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), + [anon_sym_BSLASHacs] = ACTIONS(4905), + [anon_sym_BSLASHAcs] = ACTIONS(4905), + [anon_sym_BSLASHacsp] = ACTIONS(4905), + [anon_sym_BSLASHAcsp] = ACTIONS(4905), + [anon_sym_BSLASHacl] = ACTIONS(4905), + [anon_sym_BSLASHAcl] = ACTIONS(4905), + [anon_sym_BSLASHaclp] = ACTIONS(4905), + [anon_sym_BSLASHAclp] = ACTIONS(4905), + [anon_sym_BSLASHacf] = ACTIONS(4905), + [anon_sym_BSLASHAcf] = ACTIONS(4905), + [anon_sym_BSLASHacfp] = ACTIONS(4905), + [anon_sym_BSLASHAcfp] = ACTIONS(4905), + [anon_sym_BSLASHac] = ACTIONS(4905), + [anon_sym_BSLASHAc] = ACTIONS(4905), + [anon_sym_BSLASHacp] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), + [anon_sym_BSLASHcolor] = ACTIONS(4905), + [anon_sym_BSLASHcolorbox] = ACTIONS(4905), + [anon_sym_BSLASHtextcolor] = ACTIONS(4905), + [anon_sym_BSLASHpagecolor] = ACTIONS(4905), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), + [anon_sym_BSLASHtext] = ACTIONS(4905), + [anon_sym_BSLASHintertext] = ACTIONS(4905), + [anon_sym_shortintertext] = ACTIONS(4905), }, - [1521] = { - [sym_command_name] = ACTIONS(5357), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5357), - [anon_sym_RBRACK] = ACTIONS(5355), - [anon_sym_COMMA] = ACTIONS(5355), - [anon_sym_EQ] = ACTIONS(5355), - [anon_sym_RBRACE] = ACTIONS(5355), - [sym_word] = ACTIONS(5357), - [sym_placeholder] = ACTIONS(5355), - [anon_sym_PLUS] = ACTIONS(5357), - [anon_sym_DASH] = ACTIONS(5357), - [anon_sym_STAR] = ACTIONS(5357), - [anon_sym_SLASH] = ACTIONS(5357), - [anon_sym_CARET] = ACTIONS(5357), - [anon_sym__] = ACTIONS(5357), - [anon_sym_LT] = ACTIONS(5357), - [anon_sym_GT] = ACTIONS(5357), - [anon_sym_BANG] = ACTIONS(5357), - [anon_sym_PIPE] = ACTIONS(5357), - [anon_sym_COLON] = ACTIONS(5357), - [anon_sym_SQUOTE] = ACTIONS(5357), - [anon_sym_BSLASHusepackage] = ACTIONS(5357), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5357), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5357), - [anon_sym_BSLASHinclude] = ACTIONS(5357), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5357), - [anon_sym_BSLASHinput] = ACTIONS(5357), - [anon_sym_BSLASHsubfile] = ACTIONS(5357), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5357), - [anon_sym_BSLASHbibliography] = ACTIONS(5357), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5357), - [anon_sym_BSLASHincludesvg] = ACTIONS(5357), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5357), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5357), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5357), - [anon_sym_BSLASHimport] = ACTIONS(5357), - [anon_sym_BSLASHsubimport] = ACTIONS(5357), - [anon_sym_BSLASHinputfrom] = ACTIONS(5357), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5357), - [anon_sym_BSLASHincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5357), - [anon_sym_BSLASHcaption] = ACTIONS(5357), - [anon_sym_BSLASHcite] = ACTIONS(5357), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCite] = ACTIONS(5357), - [anon_sym_BSLASHnocite] = ACTIONS(5357), - [anon_sym_BSLASHcitet] = ACTIONS(5357), - [anon_sym_BSLASHcitep] = ACTIONS(5357), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteauthor] = ACTIONS(5357), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5357), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitetitle] = ACTIONS(5357), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteyear] = ACTIONS(5357), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5355), - [anon_sym_BSLASHcitedate] = ACTIONS(5357), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5355), - [anon_sym_BSLASHciteurl] = ACTIONS(5357), - [anon_sym_BSLASHfullcite] = ACTIONS(5357), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5357), - [anon_sym_BSLASHcitealt] = ACTIONS(5357), - [anon_sym_BSLASHcitealp] = ACTIONS(5357), - [anon_sym_BSLASHcitetext] = ACTIONS(5357), - [anon_sym_BSLASHparencite] = ACTIONS(5357), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHParencite] = ACTIONS(5357), - [anon_sym_BSLASHfootcite] = ACTIONS(5357), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5357), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5357), - [anon_sym_BSLASHtextcite] = ACTIONS(5357), - [anon_sym_BSLASHTextcite] = ACTIONS(5357), - [anon_sym_BSLASHsmartcite] = ACTIONS(5357), - [anon_sym_BSLASHSmartcite] = ACTIONS(5357), - [anon_sym_BSLASHsupercite] = ACTIONS(5357), - [anon_sym_BSLASHautocite] = ACTIONS(5357), - [anon_sym_BSLASHAutocite] = ACTIONS(5357), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5355), - [anon_sym_BSLASHvolcite] = ACTIONS(5357), - [anon_sym_BSLASHVolcite] = ACTIONS(5357), - [anon_sym_BSLASHpvolcite] = ACTIONS(5357), - [anon_sym_BSLASHPvolcite] = ACTIONS(5357), - [anon_sym_BSLASHfvolcite] = ACTIONS(5357), - [anon_sym_BSLASHftvolcite] = ACTIONS(5357), - [anon_sym_BSLASHsvolcite] = ACTIONS(5357), - [anon_sym_BSLASHSvolcite] = ACTIONS(5357), - [anon_sym_BSLASHtvolcite] = ACTIONS(5357), - [anon_sym_BSLASHTvolcite] = ACTIONS(5357), - [anon_sym_BSLASHavolcite] = ACTIONS(5357), - [anon_sym_BSLASHAvolcite] = ACTIONS(5357), - [anon_sym_BSLASHnotecite] = ACTIONS(5357), - [anon_sym_BSLASHNotecite] = ACTIONS(5357), - [anon_sym_BSLASHpnotecite] = ACTIONS(5357), - [anon_sym_BSLASHPnotecite] = ACTIONS(5357), - [anon_sym_BSLASHfnotecite] = ACTIONS(5357), - [anon_sym_BSLASHlabel] = ACTIONS(5357), - [anon_sym_BSLASHref] = ACTIONS(5357), - [anon_sym_BSLASHeqref] = ACTIONS(5357), - [anon_sym_BSLASHvref] = ACTIONS(5357), - [anon_sym_BSLASHVref] = ACTIONS(5357), - [anon_sym_BSLASHautoref] = ACTIONS(5357), - [anon_sym_BSLASHpageref] = ACTIONS(5357), - [anon_sym_BSLASHcref] = ACTIONS(5357), - [anon_sym_BSLASHCref] = ACTIONS(5357), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnameCref] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5357), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5357), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5357), - [anon_sym_BSLASHlabelcref] = ACTIONS(5357), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange] = ACTIONS(5357), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHCrefrange] = ACTIONS(5357), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5355), - [anon_sym_BSLASHnewlabel] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand] = ACTIONS(5357), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5357), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5357), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5355), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5357), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5355), - [anon_sym_BSLASHdef] = ACTIONS(5357), - [anon_sym_BSLASHlet] = ACTIONS(5357), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5357), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5357), - [anon_sym_BSLASHgls] = ACTIONS(5357), - [anon_sym_BSLASHGls] = ACTIONS(5357), - [anon_sym_BSLASHGLS] = ACTIONS(5357), - [anon_sym_BSLASHglspl] = ACTIONS(5357), - [anon_sym_BSLASHGlspl] = ACTIONS(5357), - [anon_sym_BSLASHGLSpl] = ACTIONS(5357), - [anon_sym_BSLASHglsdisp] = ACTIONS(5357), - [anon_sym_BSLASHglslink] = ACTIONS(5357), - [anon_sym_BSLASHglstext] = ACTIONS(5357), - [anon_sym_BSLASHGlstext] = ACTIONS(5357), - [anon_sym_BSLASHGLStext] = ACTIONS(5357), - [anon_sym_BSLASHglsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5357), - [anon_sym_BSLASHglsplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSplural] = ACTIONS(5357), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5357), - [anon_sym_BSLASHglsname] = ACTIONS(5357), - [anon_sym_BSLASHGlsname] = ACTIONS(5357), - [anon_sym_BSLASHGLSname] = ACTIONS(5357), - [anon_sym_BSLASHglssymbol] = ACTIONS(5357), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5357), - [anon_sym_BSLASHglsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5357), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5357), - [anon_sym_BSLASHglsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5357), - [anon_sym_BSLASHglsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5357), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5357), - [anon_sym_BSLASHglsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5357), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5357), - [anon_sym_BSLASHglsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5357), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5357), - [anon_sym_BSLASHnewacronym] = ACTIONS(5357), - [anon_sym_BSLASHacrshort] = ACTIONS(5357), - [anon_sym_BSLASHAcrshort] = ACTIONS(5357), - [anon_sym_BSLASHACRshort] = ACTIONS(5357), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5357), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5357), - [anon_sym_BSLASHacrlong] = ACTIONS(5357), - [anon_sym_BSLASHAcrlong] = ACTIONS(5357), - [anon_sym_BSLASHACRlong] = ACTIONS(5357), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5357), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5357), - [anon_sym_BSLASHacrfull] = ACTIONS(5357), - [anon_sym_BSLASHAcrfull] = ACTIONS(5357), - [anon_sym_BSLASHACRfull] = ACTIONS(5357), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5357), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5357), - [anon_sym_BSLASHacs] = ACTIONS(5357), - [anon_sym_BSLASHAcs] = ACTIONS(5357), - [anon_sym_BSLASHacsp] = ACTIONS(5357), - [anon_sym_BSLASHAcsp] = ACTIONS(5357), - [anon_sym_BSLASHacl] = ACTIONS(5357), - [anon_sym_BSLASHAcl] = ACTIONS(5357), - [anon_sym_BSLASHaclp] = ACTIONS(5357), - [anon_sym_BSLASHAclp] = ACTIONS(5357), - [anon_sym_BSLASHacf] = ACTIONS(5357), - [anon_sym_BSLASHAcf] = ACTIONS(5357), - [anon_sym_BSLASHacfp] = ACTIONS(5357), - [anon_sym_BSLASHAcfp] = ACTIONS(5357), - [anon_sym_BSLASHac] = ACTIONS(5357), - [anon_sym_BSLASHAc] = ACTIONS(5357), - [anon_sym_BSLASHacp] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5357), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5357), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5357), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5357), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5357), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5357), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5357), - [anon_sym_BSLASHcolor] = ACTIONS(5357), - [anon_sym_BSLASHcolorbox] = ACTIONS(5357), - [anon_sym_BSLASHtextcolor] = ACTIONS(5357), - [anon_sym_BSLASHpagecolor] = ACTIONS(5357), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5357), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5357), + [1486] = { + [sym_command_name] = ACTIONS(4909), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4909), + [anon_sym_LPAREN] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(4907), + [anon_sym_LBRACK] = ACTIONS(4907), + [anon_sym_RBRACK] = ACTIONS(4907), + [anon_sym_COMMA] = ACTIONS(4907), + [anon_sym_LBRACE] = ACTIONS(4907), + [anon_sym_RBRACE] = ACTIONS(4907), + [sym_word] = ACTIONS(4909), + [sym_placeholder] = ACTIONS(4907), + [anon_sym_PLUS] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_STAR] = ACTIONS(4909), + [anon_sym_SLASH] = ACTIONS(4909), + [anon_sym_CARET] = ACTIONS(4909), + [anon_sym__] = ACTIONS(4909), + [anon_sym_LT] = ACTIONS(4909), + [anon_sym_GT] = ACTIONS(4909), + [anon_sym_BANG] = ACTIONS(4909), + [anon_sym_PIPE] = ACTIONS(4909), + [anon_sym_COLON] = ACTIONS(4909), + [anon_sym_SQUOTE] = ACTIONS(4909), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4907), + [anon_sym_DOLLAR] = ACTIONS(4909), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4907), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4907), + [anon_sym_BSLASHusepackage] = ACTIONS(4909), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), + [anon_sym_BSLASHinclude] = ACTIONS(4909), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), + [anon_sym_BSLASHinput] = ACTIONS(4909), + [anon_sym_BSLASHsubfile] = ACTIONS(4909), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), + [anon_sym_BSLASHbibliography] = ACTIONS(4909), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), + [anon_sym_BSLASHincludesvg] = ACTIONS(4909), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), + [anon_sym_BSLASHimport] = ACTIONS(4909), + [anon_sym_BSLASHsubimport] = ACTIONS(4909), + [anon_sym_BSLASHinputfrom] = ACTIONS(4909), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), + [anon_sym_BSLASHincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHcaption] = ACTIONS(4909), + [anon_sym_BSLASHcite] = ACTIONS(4909), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCite] = ACTIONS(4909), + [anon_sym_BSLASHnocite] = ACTIONS(4909), + [anon_sym_BSLASHcitet] = ACTIONS(4909), + [anon_sym_BSLASHcitep] = ACTIONS(4909), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteauthor] = ACTIONS(4909), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitetitle] = ACTIONS(4909), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteyear] = ACTIONS(4909), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitedate] = ACTIONS(4909), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteurl] = ACTIONS(4909), + [anon_sym_BSLASHfullcite] = ACTIONS(4909), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), + [anon_sym_BSLASHcitealt] = ACTIONS(4909), + [anon_sym_BSLASHcitealp] = ACTIONS(4909), + [anon_sym_BSLASHcitetext] = ACTIONS(4909), + [anon_sym_BSLASHparencite] = ACTIONS(4909), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHParencite] = ACTIONS(4909), + [anon_sym_BSLASHfootcite] = ACTIONS(4909), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), + [anon_sym_BSLASHtextcite] = ACTIONS(4909), + [anon_sym_BSLASHTextcite] = ACTIONS(4909), + [anon_sym_BSLASHsmartcite] = ACTIONS(4909), + [anon_sym_BSLASHSmartcite] = ACTIONS(4909), + [anon_sym_BSLASHsupercite] = ACTIONS(4909), + [anon_sym_BSLASHautocite] = ACTIONS(4909), + [anon_sym_BSLASHAutocite] = ACTIONS(4909), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHvolcite] = ACTIONS(4909), + [anon_sym_BSLASHVolcite] = ACTIONS(4909), + [anon_sym_BSLASHpvolcite] = ACTIONS(4909), + [anon_sym_BSLASHPvolcite] = ACTIONS(4909), + [anon_sym_BSLASHfvolcite] = ACTIONS(4909), + [anon_sym_BSLASHftvolcite] = ACTIONS(4909), + [anon_sym_BSLASHsvolcite] = ACTIONS(4909), + [anon_sym_BSLASHSvolcite] = ACTIONS(4909), + [anon_sym_BSLASHtvolcite] = ACTIONS(4909), + [anon_sym_BSLASHTvolcite] = ACTIONS(4909), + [anon_sym_BSLASHavolcite] = ACTIONS(4909), + [anon_sym_BSLASHAvolcite] = ACTIONS(4909), + [anon_sym_BSLASHnotecite] = ACTIONS(4909), + [anon_sym_BSLASHNotecite] = ACTIONS(4909), + [anon_sym_BSLASHpnotecite] = ACTIONS(4909), + [anon_sym_BSLASHPnotecite] = ACTIONS(4909), + [anon_sym_BSLASHfnotecite] = ACTIONS(4909), + [anon_sym_BSLASHlabel] = ACTIONS(4909), + [anon_sym_BSLASHref] = ACTIONS(4909), + [anon_sym_BSLASHeqref] = ACTIONS(4909), + [anon_sym_BSLASHvref] = ACTIONS(4909), + [anon_sym_BSLASHVref] = ACTIONS(4909), + [anon_sym_BSLASHautoref] = ACTIONS(4909), + [anon_sym_BSLASHpageref] = ACTIONS(4909), + [anon_sym_BSLASHcref] = ACTIONS(4909), + [anon_sym_BSLASHCref] = ACTIONS(4909), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnameCref] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHlabelcref] = ACTIONS(4909), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCrefrange] = ACTIONS(4909), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnewlabel] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), + [anon_sym_BSLASHdef] = ACTIONS(4909), + [anon_sym_BSLASHlet] = ACTIONS(4909), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), + [anon_sym_BSLASHgls] = ACTIONS(4909), + [anon_sym_BSLASHGls] = ACTIONS(4909), + [anon_sym_BSLASHGLS] = ACTIONS(4909), + [anon_sym_BSLASHglspl] = ACTIONS(4909), + [anon_sym_BSLASHGlspl] = ACTIONS(4909), + [anon_sym_BSLASHGLSpl] = ACTIONS(4909), + [anon_sym_BSLASHglsdisp] = ACTIONS(4909), + [anon_sym_BSLASHglslink] = ACTIONS(4909), + [anon_sym_BSLASHglstext] = ACTIONS(4909), + [anon_sym_BSLASHGlstext] = ACTIONS(4909), + [anon_sym_BSLASHGLStext] = ACTIONS(4909), + [anon_sym_BSLASHglsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), + [anon_sym_BSLASHglsplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSplural] = ACTIONS(4909), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHglsname] = ACTIONS(4909), + [anon_sym_BSLASHGlsname] = ACTIONS(4909), + [anon_sym_BSLASHGLSname] = ACTIONS(4909), + [anon_sym_BSLASHglssymbol] = ACTIONS(4909), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), + [anon_sym_BSLASHglsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), + [anon_sym_BSLASHglsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), + [anon_sym_BSLASHglsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), + [anon_sym_BSLASHglsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), + [anon_sym_BSLASHglsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), + [anon_sym_BSLASHnewacronym] = ACTIONS(4909), + [anon_sym_BSLASHacrshort] = ACTIONS(4909), + [anon_sym_BSLASHAcrshort] = ACTIONS(4909), + [anon_sym_BSLASHACRshort] = ACTIONS(4909), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), + [anon_sym_BSLASHacrlong] = ACTIONS(4909), + [anon_sym_BSLASHAcrlong] = ACTIONS(4909), + [anon_sym_BSLASHACRlong] = ACTIONS(4909), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), + [anon_sym_BSLASHacrfull] = ACTIONS(4909), + [anon_sym_BSLASHAcrfull] = ACTIONS(4909), + [anon_sym_BSLASHACRfull] = ACTIONS(4909), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), + [anon_sym_BSLASHacs] = ACTIONS(4909), + [anon_sym_BSLASHAcs] = ACTIONS(4909), + [anon_sym_BSLASHacsp] = ACTIONS(4909), + [anon_sym_BSLASHAcsp] = ACTIONS(4909), + [anon_sym_BSLASHacl] = ACTIONS(4909), + [anon_sym_BSLASHAcl] = ACTIONS(4909), + [anon_sym_BSLASHaclp] = ACTIONS(4909), + [anon_sym_BSLASHAclp] = ACTIONS(4909), + [anon_sym_BSLASHacf] = ACTIONS(4909), + [anon_sym_BSLASHAcf] = ACTIONS(4909), + [anon_sym_BSLASHacfp] = ACTIONS(4909), + [anon_sym_BSLASHAcfp] = ACTIONS(4909), + [anon_sym_BSLASHac] = ACTIONS(4909), + [anon_sym_BSLASHAc] = ACTIONS(4909), + [anon_sym_BSLASHacp] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), + [anon_sym_BSLASHcolor] = ACTIONS(4909), + [anon_sym_BSLASHcolorbox] = ACTIONS(4909), + [anon_sym_BSLASHtextcolor] = ACTIONS(4909), + [anon_sym_BSLASHpagecolor] = ACTIONS(4909), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), + [anon_sym_BSLASHtext] = ACTIONS(4909), + [anon_sym_BSLASHintertext] = ACTIONS(4909), + [anon_sym_shortintertext] = ACTIONS(4909), }, - [1522] = { - [sym_command_name] = ACTIONS(5175), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5175), - [anon_sym_RBRACK] = ACTIONS(5173), - [anon_sym_COMMA] = ACTIONS(5173), - [anon_sym_EQ] = ACTIONS(5173), - [anon_sym_RBRACE] = ACTIONS(5173), - [sym_word] = ACTIONS(5175), - [sym_placeholder] = ACTIONS(5173), - [anon_sym_PLUS] = ACTIONS(5175), - [anon_sym_DASH] = ACTIONS(5175), - [anon_sym_STAR] = ACTIONS(5175), - [anon_sym_SLASH] = ACTIONS(5175), - [anon_sym_CARET] = ACTIONS(5175), - [anon_sym__] = ACTIONS(5175), - [anon_sym_LT] = ACTIONS(5175), - [anon_sym_GT] = ACTIONS(5175), - [anon_sym_BANG] = ACTIONS(5175), - [anon_sym_PIPE] = ACTIONS(5175), - [anon_sym_COLON] = ACTIONS(5175), - [anon_sym_SQUOTE] = ACTIONS(5175), - [anon_sym_BSLASHusepackage] = ACTIONS(5175), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5175), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5175), - [anon_sym_BSLASHinclude] = ACTIONS(5175), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5175), - [anon_sym_BSLASHinput] = ACTIONS(5175), - [anon_sym_BSLASHsubfile] = ACTIONS(5175), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5175), - [anon_sym_BSLASHbibliography] = ACTIONS(5175), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5175), - [anon_sym_BSLASHincludesvg] = ACTIONS(5175), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5175), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5175), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5175), - [anon_sym_BSLASHimport] = ACTIONS(5175), - [anon_sym_BSLASHsubimport] = ACTIONS(5175), - [anon_sym_BSLASHinputfrom] = ACTIONS(5175), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5175), - [anon_sym_BSLASHincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5175), - [anon_sym_BSLASHcaption] = ACTIONS(5175), - [anon_sym_BSLASHcite] = ACTIONS(5175), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCite] = ACTIONS(5175), - [anon_sym_BSLASHnocite] = ACTIONS(5175), - [anon_sym_BSLASHcitet] = ACTIONS(5175), - [anon_sym_BSLASHcitep] = ACTIONS(5175), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteauthor] = ACTIONS(5175), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5175), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitetitle] = ACTIONS(5175), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteyear] = ACTIONS(5175), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5173), - [anon_sym_BSLASHcitedate] = ACTIONS(5175), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5173), - [anon_sym_BSLASHciteurl] = ACTIONS(5175), - [anon_sym_BSLASHfullcite] = ACTIONS(5175), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5175), - [anon_sym_BSLASHcitealt] = ACTIONS(5175), - [anon_sym_BSLASHcitealp] = ACTIONS(5175), - [anon_sym_BSLASHcitetext] = ACTIONS(5175), - [anon_sym_BSLASHparencite] = ACTIONS(5175), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHParencite] = ACTIONS(5175), - [anon_sym_BSLASHfootcite] = ACTIONS(5175), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5175), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5175), - [anon_sym_BSLASHtextcite] = ACTIONS(5175), - [anon_sym_BSLASHTextcite] = ACTIONS(5175), - [anon_sym_BSLASHsmartcite] = ACTIONS(5175), - [anon_sym_BSLASHSmartcite] = ACTIONS(5175), - [anon_sym_BSLASHsupercite] = ACTIONS(5175), - [anon_sym_BSLASHautocite] = ACTIONS(5175), - [anon_sym_BSLASHAutocite] = ACTIONS(5175), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5173), - [anon_sym_BSLASHvolcite] = ACTIONS(5175), - [anon_sym_BSLASHVolcite] = ACTIONS(5175), - [anon_sym_BSLASHpvolcite] = ACTIONS(5175), - [anon_sym_BSLASHPvolcite] = ACTIONS(5175), - [anon_sym_BSLASHfvolcite] = ACTIONS(5175), - [anon_sym_BSLASHftvolcite] = ACTIONS(5175), - [anon_sym_BSLASHsvolcite] = ACTIONS(5175), - [anon_sym_BSLASHSvolcite] = ACTIONS(5175), - [anon_sym_BSLASHtvolcite] = ACTIONS(5175), - [anon_sym_BSLASHTvolcite] = ACTIONS(5175), - [anon_sym_BSLASHavolcite] = ACTIONS(5175), - [anon_sym_BSLASHAvolcite] = ACTIONS(5175), - [anon_sym_BSLASHnotecite] = ACTIONS(5175), - [anon_sym_BSLASHNotecite] = ACTIONS(5175), - [anon_sym_BSLASHpnotecite] = ACTIONS(5175), - [anon_sym_BSLASHPnotecite] = ACTIONS(5175), - [anon_sym_BSLASHfnotecite] = ACTIONS(5175), - [anon_sym_BSLASHlabel] = ACTIONS(5175), - [anon_sym_BSLASHref] = ACTIONS(5175), - [anon_sym_BSLASHeqref] = ACTIONS(5175), - [anon_sym_BSLASHvref] = ACTIONS(5175), - [anon_sym_BSLASHVref] = ACTIONS(5175), - [anon_sym_BSLASHautoref] = ACTIONS(5175), - [anon_sym_BSLASHpageref] = ACTIONS(5175), - [anon_sym_BSLASHcref] = ACTIONS(5175), - [anon_sym_BSLASHCref] = ACTIONS(5175), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnameCref] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5175), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5175), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5175), - [anon_sym_BSLASHlabelcref] = ACTIONS(5175), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange] = ACTIONS(5175), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHCrefrange] = ACTIONS(5175), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5173), - [anon_sym_BSLASHnewlabel] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand] = ACTIONS(5175), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5175), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5175), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5173), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5175), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5173), - [anon_sym_BSLASHdef] = ACTIONS(5175), - [anon_sym_BSLASHlet] = ACTIONS(5175), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5175), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5175), - [anon_sym_BSLASHgls] = ACTIONS(5175), - [anon_sym_BSLASHGls] = ACTIONS(5175), - [anon_sym_BSLASHGLS] = ACTIONS(5175), - [anon_sym_BSLASHglspl] = ACTIONS(5175), - [anon_sym_BSLASHGlspl] = ACTIONS(5175), - [anon_sym_BSLASHGLSpl] = ACTIONS(5175), - [anon_sym_BSLASHglsdisp] = ACTIONS(5175), - [anon_sym_BSLASHglslink] = ACTIONS(5175), - [anon_sym_BSLASHglstext] = ACTIONS(5175), - [anon_sym_BSLASHGlstext] = ACTIONS(5175), - [anon_sym_BSLASHGLStext] = ACTIONS(5175), - [anon_sym_BSLASHglsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5175), - [anon_sym_BSLASHglsplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSplural] = ACTIONS(5175), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5175), - [anon_sym_BSLASHglsname] = ACTIONS(5175), - [anon_sym_BSLASHGlsname] = ACTIONS(5175), - [anon_sym_BSLASHGLSname] = ACTIONS(5175), - [anon_sym_BSLASHglssymbol] = ACTIONS(5175), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5175), - [anon_sym_BSLASHglsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5175), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5175), - [anon_sym_BSLASHglsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5175), - [anon_sym_BSLASHglsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5175), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5175), - [anon_sym_BSLASHglsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5175), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5175), - [anon_sym_BSLASHglsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5175), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5175), - [anon_sym_BSLASHnewacronym] = ACTIONS(5175), - [anon_sym_BSLASHacrshort] = ACTIONS(5175), - [anon_sym_BSLASHAcrshort] = ACTIONS(5175), - [anon_sym_BSLASHACRshort] = ACTIONS(5175), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5175), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5175), - [anon_sym_BSLASHacrlong] = ACTIONS(5175), - [anon_sym_BSLASHAcrlong] = ACTIONS(5175), - [anon_sym_BSLASHACRlong] = ACTIONS(5175), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5175), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5175), - [anon_sym_BSLASHacrfull] = ACTIONS(5175), - [anon_sym_BSLASHAcrfull] = ACTIONS(5175), - [anon_sym_BSLASHACRfull] = ACTIONS(5175), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5175), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5175), - [anon_sym_BSLASHacs] = ACTIONS(5175), - [anon_sym_BSLASHAcs] = ACTIONS(5175), - [anon_sym_BSLASHacsp] = ACTIONS(5175), - [anon_sym_BSLASHAcsp] = ACTIONS(5175), - [anon_sym_BSLASHacl] = ACTIONS(5175), - [anon_sym_BSLASHAcl] = ACTIONS(5175), - [anon_sym_BSLASHaclp] = ACTIONS(5175), - [anon_sym_BSLASHAclp] = ACTIONS(5175), - [anon_sym_BSLASHacf] = ACTIONS(5175), - [anon_sym_BSLASHAcf] = ACTIONS(5175), - [anon_sym_BSLASHacfp] = ACTIONS(5175), - [anon_sym_BSLASHAcfp] = ACTIONS(5175), - [anon_sym_BSLASHac] = ACTIONS(5175), - [anon_sym_BSLASHAc] = ACTIONS(5175), - [anon_sym_BSLASHacp] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5175), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5175), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5175), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5175), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5175), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5175), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5175), - [anon_sym_BSLASHcolor] = ACTIONS(5175), - [anon_sym_BSLASHcolorbox] = ACTIONS(5175), - [anon_sym_BSLASHtextcolor] = ACTIONS(5175), - [anon_sym_BSLASHpagecolor] = ACTIONS(5175), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5175), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5175), + [1487] = { + [sym_command_name] = ACTIONS(4913), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4913), + [anon_sym_LPAREN] = ACTIONS(4911), + [anon_sym_RPAREN] = ACTIONS(4911), + [anon_sym_LBRACK] = ACTIONS(4911), + [anon_sym_RBRACK] = ACTIONS(4911), + [anon_sym_COMMA] = ACTIONS(4911), + [anon_sym_LBRACE] = ACTIONS(4911), + [anon_sym_RBRACE] = ACTIONS(4911), + [sym_word] = ACTIONS(4913), + [sym_placeholder] = ACTIONS(4911), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4913), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_CARET] = ACTIONS(4913), + [anon_sym__] = ACTIONS(4913), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_BANG] = ACTIONS(4913), + [anon_sym_PIPE] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4913), + [anon_sym_SQUOTE] = ACTIONS(4913), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4911), + [anon_sym_DOLLAR] = ACTIONS(4913), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4911), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4911), + [anon_sym_BSLASHusepackage] = ACTIONS(4913), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), + [anon_sym_BSLASHinclude] = ACTIONS(4913), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), + [anon_sym_BSLASHinput] = ACTIONS(4913), + [anon_sym_BSLASHsubfile] = ACTIONS(4913), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), + [anon_sym_BSLASHbibliography] = ACTIONS(4913), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), + [anon_sym_BSLASHincludesvg] = ACTIONS(4913), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), + [anon_sym_BSLASHimport] = ACTIONS(4913), + [anon_sym_BSLASHsubimport] = ACTIONS(4913), + [anon_sym_BSLASHinputfrom] = ACTIONS(4913), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), + [anon_sym_BSLASHincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHcaption] = ACTIONS(4913), + [anon_sym_BSLASHcite] = ACTIONS(4913), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCite] = ACTIONS(4913), + [anon_sym_BSLASHnocite] = ACTIONS(4913), + [anon_sym_BSLASHcitet] = ACTIONS(4913), + [anon_sym_BSLASHcitep] = ACTIONS(4913), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteauthor] = ACTIONS(4913), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitetitle] = ACTIONS(4913), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteyear] = ACTIONS(4913), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitedate] = ACTIONS(4913), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteurl] = ACTIONS(4913), + [anon_sym_BSLASHfullcite] = ACTIONS(4913), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), + [anon_sym_BSLASHcitealt] = ACTIONS(4913), + [anon_sym_BSLASHcitealp] = ACTIONS(4913), + [anon_sym_BSLASHcitetext] = ACTIONS(4913), + [anon_sym_BSLASHparencite] = ACTIONS(4913), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHParencite] = ACTIONS(4913), + [anon_sym_BSLASHfootcite] = ACTIONS(4913), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), + [anon_sym_BSLASHtextcite] = ACTIONS(4913), + [anon_sym_BSLASHTextcite] = ACTIONS(4913), + [anon_sym_BSLASHsmartcite] = ACTIONS(4913), + [anon_sym_BSLASHSmartcite] = ACTIONS(4913), + [anon_sym_BSLASHsupercite] = ACTIONS(4913), + [anon_sym_BSLASHautocite] = ACTIONS(4913), + [anon_sym_BSLASHAutocite] = ACTIONS(4913), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHvolcite] = ACTIONS(4913), + [anon_sym_BSLASHVolcite] = ACTIONS(4913), + [anon_sym_BSLASHpvolcite] = ACTIONS(4913), + [anon_sym_BSLASHPvolcite] = ACTIONS(4913), + [anon_sym_BSLASHfvolcite] = ACTIONS(4913), + [anon_sym_BSLASHftvolcite] = ACTIONS(4913), + [anon_sym_BSLASHsvolcite] = ACTIONS(4913), + [anon_sym_BSLASHSvolcite] = ACTIONS(4913), + [anon_sym_BSLASHtvolcite] = ACTIONS(4913), + [anon_sym_BSLASHTvolcite] = ACTIONS(4913), + [anon_sym_BSLASHavolcite] = ACTIONS(4913), + [anon_sym_BSLASHAvolcite] = ACTIONS(4913), + [anon_sym_BSLASHnotecite] = ACTIONS(4913), + [anon_sym_BSLASHNotecite] = ACTIONS(4913), + [anon_sym_BSLASHpnotecite] = ACTIONS(4913), + [anon_sym_BSLASHPnotecite] = ACTIONS(4913), + [anon_sym_BSLASHfnotecite] = ACTIONS(4913), + [anon_sym_BSLASHlabel] = ACTIONS(4913), + [anon_sym_BSLASHref] = ACTIONS(4913), + [anon_sym_BSLASHeqref] = ACTIONS(4913), + [anon_sym_BSLASHvref] = ACTIONS(4913), + [anon_sym_BSLASHVref] = ACTIONS(4913), + [anon_sym_BSLASHautoref] = ACTIONS(4913), + [anon_sym_BSLASHpageref] = ACTIONS(4913), + [anon_sym_BSLASHcref] = ACTIONS(4913), + [anon_sym_BSLASHCref] = ACTIONS(4913), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnameCref] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHlabelcref] = ACTIONS(4913), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCrefrange] = ACTIONS(4913), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnewlabel] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), + [anon_sym_BSLASHdef] = ACTIONS(4913), + [anon_sym_BSLASHlet] = ACTIONS(4913), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), + [anon_sym_BSLASHgls] = ACTIONS(4913), + [anon_sym_BSLASHGls] = ACTIONS(4913), + [anon_sym_BSLASHGLS] = ACTIONS(4913), + [anon_sym_BSLASHglspl] = ACTIONS(4913), + [anon_sym_BSLASHGlspl] = ACTIONS(4913), + [anon_sym_BSLASHGLSpl] = ACTIONS(4913), + [anon_sym_BSLASHglsdisp] = ACTIONS(4913), + [anon_sym_BSLASHglslink] = ACTIONS(4913), + [anon_sym_BSLASHglstext] = ACTIONS(4913), + [anon_sym_BSLASHGlstext] = ACTIONS(4913), + [anon_sym_BSLASHGLStext] = ACTIONS(4913), + [anon_sym_BSLASHglsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), + [anon_sym_BSLASHglsplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSplural] = ACTIONS(4913), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHglsname] = ACTIONS(4913), + [anon_sym_BSLASHGlsname] = ACTIONS(4913), + [anon_sym_BSLASHGLSname] = ACTIONS(4913), + [anon_sym_BSLASHglssymbol] = ACTIONS(4913), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), + [anon_sym_BSLASHglsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), + [anon_sym_BSLASHglsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), + [anon_sym_BSLASHglsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), + [anon_sym_BSLASHglsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), + [anon_sym_BSLASHglsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), + [anon_sym_BSLASHnewacronym] = ACTIONS(4913), + [anon_sym_BSLASHacrshort] = ACTIONS(4913), + [anon_sym_BSLASHAcrshort] = ACTIONS(4913), + [anon_sym_BSLASHACRshort] = ACTIONS(4913), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), + [anon_sym_BSLASHacrlong] = ACTIONS(4913), + [anon_sym_BSLASHAcrlong] = ACTIONS(4913), + [anon_sym_BSLASHACRlong] = ACTIONS(4913), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), + [anon_sym_BSLASHacrfull] = ACTIONS(4913), + [anon_sym_BSLASHAcrfull] = ACTIONS(4913), + [anon_sym_BSLASHACRfull] = ACTIONS(4913), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), + [anon_sym_BSLASHacs] = ACTIONS(4913), + [anon_sym_BSLASHAcs] = ACTIONS(4913), + [anon_sym_BSLASHacsp] = ACTIONS(4913), + [anon_sym_BSLASHAcsp] = ACTIONS(4913), + [anon_sym_BSLASHacl] = ACTIONS(4913), + [anon_sym_BSLASHAcl] = ACTIONS(4913), + [anon_sym_BSLASHaclp] = ACTIONS(4913), + [anon_sym_BSLASHAclp] = ACTIONS(4913), + [anon_sym_BSLASHacf] = ACTIONS(4913), + [anon_sym_BSLASHAcf] = ACTIONS(4913), + [anon_sym_BSLASHacfp] = ACTIONS(4913), + [anon_sym_BSLASHAcfp] = ACTIONS(4913), + [anon_sym_BSLASHac] = ACTIONS(4913), + [anon_sym_BSLASHAc] = ACTIONS(4913), + [anon_sym_BSLASHacp] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), + [anon_sym_BSLASHcolor] = ACTIONS(4913), + [anon_sym_BSLASHcolorbox] = ACTIONS(4913), + [anon_sym_BSLASHtextcolor] = ACTIONS(4913), + [anon_sym_BSLASHpagecolor] = ACTIONS(4913), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), + [anon_sym_BSLASHtext] = ACTIONS(4913), + [anon_sym_BSLASHintertext] = ACTIONS(4913), + [anon_sym_shortintertext] = ACTIONS(4913), }, - [1523] = { - [sym_command_name] = ACTIONS(4991), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4991), - [anon_sym_RBRACK] = ACTIONS(4989), - [anon_sym_COMMA] = ACTIONS(4989), - [anon_sym_EQ] = ACTIONS(4989), - [anon_sym_RBRACE] = ACTIONS(4989), - [sym_word] = ACTIONS(4991), - [sym_placeholder] = ACTIONS(4989), - [anon_sym_PLUS] = ACTIONS(4991), - [anon_sym_DASH] = ACTIONS(4991), - [anon_sym_STAR] = ACTIONS(4991), - [anon_sym_SLASH] = ACTIONS(4991), - [anon_sym_CARET] = ACTIONS(4991), - [anon_sym__] = ACTIONS(4991), - [anon_sym_LT] = ACTIONS(4991), - [anon_sym_GT] = ACTIONS(4991), - [anon_sym_BANG] = ACTIONS(4991), - [anon_sym_PIPE] = ACTIONS(4991), - [anon_sym_COLON] = ACTIONS(4991), - [anon_sym_SQUOTE] = ACTIONS(4991), - [anon_sym_BSLASHusepackage] = ACTIONS(4991), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), - [anon_sym_BSLASHinclude] = ACTIONS(4991), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), - [anon_sym_BSLASHinput] = ACTIONS(4991), - [anon_sym_BSLASHsubfile] = ACTIONS(4991), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), - [anon_sym_BSLASHbibliography] = ACTIONS(4991), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), - [anon_sym_BSLASHincludesvg] = ACTIONS(4991), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), - [anon_sym_BSLASHimport] = ACTIONS(4991), - [anon_sym_BSLASHsubimport] = ACTIONS(4991), - [anon_sym_BSLASHinputfrom] = ACTIONS(4991), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), - [anon_sym_BSLASHincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), - [anon_sym_BSLASHcaption] = ACTIONS(4991), - [anon_sym_BSLASHcite] = ACTIONS(4991), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCite] = ACTIONS(4991), - [anon_sym_BSLASHnocite] = ACTIONS(4991), - [anon_sym_BSLASHcitet] = ACTIONS(4991), - [anon_sym_BSLASHcitep] = ACTIONS(4991), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteauthor] = ACTIONS(4991), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitetitle] = ACTIONS(4991), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteyear] = ACTIONS(4991), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), - [anon_sym_BSLASHcitedate] = ACTIONS(4991), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), - [anon_sym_BSLASHciteurl] = ACTIONS(4991), - [anon_sym_BSLASHfullcite] = ACTIONS(4991), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), - [anon_sym_BSLASHcitealt] = ACTIONS(4991), - [anon_sym_BSLASHcitealp] = ACTIONS(4991), - [anon_sym_BSLASHcitetext] = ACTIONS(4991), - [anon_sym_BSLASHparencite] = ACTIONS(4991), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHParencite] = ACTIONS(4991), - [anon_sym_BSLASHfootcite] = ACTIONS(4991), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), - [anon_sym_BSLASHtextcite] = ACTIONS(4991), - [anon_sym_BSLASHTextcite] = ACTIONS(4991), - [anon_sym_BSLASHsmartcite] = ACTIONS(4991), - [anon_sym_BSLASHSmartcite] = ACTIONS(4991), - [anon_sym_BSLASHsupercite] = ACTIONS(4991), - [anon_sym_BSLASHautocite] = ACTIONS(4991), - [anon_sym_BSLASHAutocite] = ACTIONS(4991), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), - [anon_sym_BSLASHvolcite] = ACTIONS(4991), - [anon_sym_BSLASHVolcite] = ACTIONS(4991), - [anon_sym_BSLASHpvolcite] = ACTIONS(4991), - [anon_sym_BSLASHPvolcite] = ACTIONS(4991), - [anon_sym_BSLASHfvolcite] = ACTIONS(4991), - [anon_sym_BSLASHftvolcite] = ACTIONS(4991), - [anon_sym_BSLASHsvolcite] = ACTIONS(4991), - [anon_sym_BSLASHSvolcite] = ACTIONS(4991), - [anon_sym_BSLASHtvolcite] = ACTIONS(4991), - [anon_sym_BSLASHTvolcite] = ACTIONS(4991), - [anon_sym_BSLASHavolcite] = ACTIONS(4991), - [anon_sym_BSLASHAvolcite] = ACTIONS(4991), - [anon_sym_BSLASHnotecite] = ACTIONS(4991), - [anon_sym_BSLASHNotecite] = ACTIONS(4991), - [anon_sym_BSLASHpnotecite] = ACTIONS(4991), - [anon_sym_BSLASHPnotecite] = ACTIONS(4991), - [anon_sym_BSLASHfnotecite] = ACTIONS(4991), - [anon_sym_BSLASHlabel] = ACTIONS(4991), - [anon_sym_BSLASHref] = ACTIONS(4991), - [anon_sym_BSLASHeqref] = ACTIONS(4991), - [anon_sym_BSLASHvref] = ACTIONS(4991), - [anon_sym_BSLASHVref] = ACTIONS(4991), - [anon_sym_BSLASHautoref] = ACTIONS(4991), - [anon_sym_BSLASHpageref] = ACTIONS(4991), - [anon_sym_BSLASHcref] = ACTIONS(4991), - [anon_sym_BSLASHCref] = ACTIONS(4991), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnameCref] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), - [anon_sym_BSLASHlabelcref] = ACTIONS(4991), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange] = ACTIONS(4991), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHCrefrange] = ACTIONS(4991), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), - [anon_sym_BSLASHnewlabel] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand] = ACTIONS(4991), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), - [anon_sym_BSLASHdef] = ACTIONS(4991), - [anon_sym_BSLASHlet] = ACTIONS(4991), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), - [anon_sym_BSLASHgls] = ACTIONS(4991), - [anon_sym_BSLASHGls] = ACTIONS(4991), - [anon_sym_BSLASHGLS] = ACTIONS(4991), - [anon_sym_BSLASHglspl] = ACTIONS(4991), - [anon_sym_BSLASHGlspl] = ACTIONS(4991), - [anon_sym_BSLASHGLSpl] = ACTIONS(4991), - [anon_sym_BSLASHglsdisp] = ACTIONS(4991), - [anon_sym_BSLASHglslink] = ACTIONS(4991), - [anon_sym_BSLASHglstext] = ACTIONS(4991), - [anon_sym_BSLASHGlstext] = ACTIONS(4991), - [anon_sym_BSLASHGLStext] = ACTIONS(4991), - [anon_sym_BSLASHglsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), - [anon_sym_BSLASHglsplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSplural] = ACTIONS(4991), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), - [anon_sym_BSLASHglsname] = ACTIONS(4991), - [anon_sym_BSLASHGlsname] = ACTIONS(4991), - [anon_sym_BSLASHGLSname] = ACTIONS(4991), - [anon_sym_BSLASHglssymbol] = ACTIONS(4991), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), - [anon_sym_BSLASHglsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), - [anon_sym_BSLASHglsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), - [anon_sym_BSLASHglsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), - [anon_sym_BSLASHglsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), - [anon_sym_BSLASHglsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), - [anon_sym_BSLASHnewacronym] = ACTIONS(4991), - [anon_sym_BSLASHacrshort] = ACTIONS(4991), - [anon_sym_BSLASHAcrshort] = ACTIONS(4991), - [anon_sym_BSLASHACRshort] = ACTIONS(4991), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), - [anon_sym_BSLASHacrlong] = ACTIONS(4991), - [anon_sym_BSLASHAcrlong] = ACTIONS(4991), - [anon_sym_BSLASHACRlong] = ACTIONS(4991), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), - [anon_sym_BSLASHacrfull] = ACTIONS(4991), - [anon_sym_BSLASHAcrfull] = ACTIONS(4991), - [anon_sym_BSLASHACRfull] = ACTIONS(4991), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), - [anon_sym_BSLASHacs] = ACTIONS(4991), - [anon_sym_BSLASHAcs] = ACTIONS(4991), - [anon_sym_BSLASHacsp] = ACTIONS(4991), - [anon_sym_BSLASHAcsp] = ACTIONS(4991), - [anon_sym_BSLASHacl] = ACTIONS(4991), - [anon_sym_BSLASHAcl] = ACTIONS(4991), - [anon_sym_BSLASHaclp] = ACTIONS(4991), - [anon_sym_BSLASHAclp] = ACTIONS(4991), - [anon_sym_BSLASHacf] = ACTIONS(4991), - [anon_sym_BSLASHAcf] = ACTIONS(4991), - [anon_sym_BSLASHacfp] = ACTIONS(4991), - [anon_sym_BSLASHAcfp] = ACTIONS(4991), - [anon_sym_BSLASHac] = ACTIONS(4991), - [anon_sym_BSLASHAc] = ACTIONS(4991), - [anon_sym_BSLASHacp] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), - [anon_sym_BSLASHcolor] = ACTIONS(4991), - [anon_sym_BSLASHcolorbox] = ACTIONS(4991), - [anon_sym_BSLASHtextcolor] = ACTIONS(4991), - [anon_sym_BSLASHpagecolor] = ACTIONS(4991), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + [1488] = { + [sym_command_name] = ACTIONS(4917), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4917), + [anon_sym_LPAREN] = ACTIONS(4915), + [anon_sym_RPAREN] = ACTIONS(4915), + [anon_sym_LBRACK] = ACTIONS(4915), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_LBRACE] = ACTIONS(4915), + [anon_sym_RBRACE] = ACTIONS(4915), + [sym_word] = ACTIONS(4917), + [sym_placeholder] = ACTIONS(4915), + [anon_sym_PLUS] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4917), + [anon_sym_CARET] = ACTIONS(4917), + [anon_sym__] = ACTIONS(4917), + [anon_sym_LT] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4917), + [anon_sym_BANG] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_SQUOTE] = ACTIONS(4917), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4915), + [anon_sym_DOLLAR] = ACTIONS(4917), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4915), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4915), + [anon_sym_BSLASHusepackage] = ACTIONS(4917), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), + [anon_sym_BSLASHinclude] = ACTIONS(4917), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), + [anon_sym_BSLASHinput] = ACTIONS(4917), + [anon_sym_BSLASHsubfile] = ACTIONS(4917), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), + [anon_sym_BSLASHbibliography] = ACTIONS(4917), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), + [anon_sym_BSLASHincludesvg] = ACTIONS(4917), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), + [anon_sym_BSLASHimport] = ACTIONS(4917), + [anon_sym_BSLASHsubimport] = ACTIONS(4917), + [anon_sym_BSLASHinputfrom] = ACTIONS(4917), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), + [anon_sym_BSLASHincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHcaption] = ACTIONS(4917), + [anon_sym_BSLASHcite] = ACTIONS(4917), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCite] = ACTIONS(4917), + [anon_sym_BSLASHnocite] = ACTIONS(4917), + [anon_sym_BSLASHcitet] = ACTIONS(4917), + [anon_sym_BSLASHcitep] = ACTIONS(4917), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteauthor] = ACTIONS(4917), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitetitle] = ACTIONS(4917), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteyear] = ACTIONS(4917), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitedate] = ACTIONS(4917), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteurl] = ACTIONS(4917), + [anon_sym_BSLASHfullcite] = ACTIONS(4917), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), + [anon_sym_BSLASHcitealt] = ACTIONS(4917), + [anon_sym_BSLASHcitealp] = ACTIONS(4917), + [anon_sym_BSLASHcitetext] = ACTIONS(4917), + [anon_sym_BSLASHparencite] = ACTIONS(4917), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHParencite] = ACTIONS(4917), + [anon_sym_BSLASHfootcite] = ACTIONS(4917), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), + [anon_sym_BSLASHtextcite] = ACTIONS(4917), + [anon_sym_BSLASHTextcite] = ACTIONS(4917), + [anon_sym_BSLASHsmartcite] = ACTIONS(4917), + [anon_sym_BSLASHSmartcite] = ACTIONS(4917), + [anon_sym_BSLASHsupercite] = ACTIONS(4917), + [anon_sym_BSLASHautocite] = ACTIONS(4917), + [anon_sym_BSLASHAutocite] = ACTIONS(4917), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHvolcite] = ACTIONS(4917), + [anon_sym_BSLASHVolcite] = ACTIONS(4917), + [anon_sym_BSLASHpvolcite] = ACTIONS(4917), + [anon_sym_BSLASHPvolcite] = ACTIONS(4917), + [anon_sym_BSLASHfvolcite] = ACTIONS(4917), + [anon_sym_BSLASHftvolcite] = ACTIONS(4917), + [anon_sym_BSLASHsvolcite] = ACTIONS(4917), + [anon_sym_BSLASHSvolcite] = ACTIONS(4917), + [anon_sym_BSLASHtvolcite] = ACTIONS(4917), + [anon_sym_BSLASHTvolcite] = ACTIONS(4917), + [anon_sym_BSLASHavolcite] = ACTIONS(4917), + [anon_sym_BSLASHAvolcite] = ACTIONS(4917), + [anon_sym_BSLASHnotecite] = ACTIONS(4917), + [anon_sym_BSLASHNotecite] = ACTIONS(4917), + [anon_sym_BSLASHpnotecite] = ACTIONS(4917), + [anon_sym_BSLASHPnotecite] = ACTIONS(4917), + [anon_sym_BSLASHfnotecite] = ACTIONS(4917), + [anon_sym_BSLASHlabel] = ACTIONS(4917), + [anon_sym_BSLASHref] = ACTIONS(4917), + [anon_sym_BSLASHeqref] = ACTIONS(4917), + [anon_sym_BSLASHvref] = ACTIONS(4917), + [anon_sym_BSLASHVref] = ACTIONS(4917), + [anon_sym_BSLASHautoref] = ACTIONS(4917), + [anon_sym_BSLASHpageref] = ACTIONS(4917), + [anon_sym_BSLASHcref] = ACTIONS(4917), + [anon_sym_BSLASHCref] = ACTIONS(4917), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnameCref] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHlabelcref] = ACTIONS(4917), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCrefrange] = ACTIONS(4917), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnewlabel] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), + [anon_sym_BSLASHdef] = ACTIONS(4917), + [anon_sym_BSLASHlet] = ACTIONS(4917), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), + [anon_sym_BSLASHgls] = ACTIONS(4917), + [anon_sym_BSLASHGls] = ACTIONS(4917), + [anon_sym_BSLASHGLS] = ACTIONS(4917), + [anon_sym_BSLASHglspl] = ACTIONS(4917), + [anon_sym_BSLASHGlspl] = ACTIONS(4917), + [anon_sym_BSLASHGLSpl] = ACTIONS(4917), + [anon_sym_BSLASHglsdisp] = ACTIONS(4917), + [anon_sym_BSLASHglslink] = ACTIONS(4917), + [anon_sym_BSLASHglstext] = ACTIONS(4917), + [anon_sym_BSLASHGlstext] = ACTIONS(4917), + [anon_sym_BSLASHGLStext] = ACTIONS(4917), + [anon_sym_BSLASHglsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), + [anon_sym_BSLASHglsplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSplural] = ACTIONS(4917), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHglsname] = ACTIONS(4917), + [anon_sym_BSLASHGlsname] = ACTIONS(4917), + [anon_sym_BSLASHGLSname] = ACTIONS(4917), + [anon_sym_BSLASHglssymbol] = ACTIONS(4917), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), + [anon_sym_BSLASHglsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), + [anon_sym_BSLASHglsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), + [anon_sym_BSLASHglsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), + [anon_sym_BSLASHglsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), + [anon_sym_BSLASHglsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), + [anon_sym_BSLASHnewacronym] = ACTIONS(4917), + [anon_sym_BSLASHacrshort] = ACTIONS(4917), + [anon_sym_BSLASHAcrshort] = ACTIONS(4917), + [anon_sym_BSLASHACRshort] = ACTIONS(4917), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), + [anon_sym_BSLASHacrlong] = ACTIONS(4917), + [anon_sym_BSLASHAcrlong] = ACTIONS(4917), + [anon_sym_BSLASHACRlong] = ACTIONS(4917), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), + [anon_sym_BSLASHacrfull] = ACTIONS(4917), + [anon_sym_BSLASHAcrfull] = ACTIONS(4917), + [anon_sym_BSLASHACRfull] = ACTIONS(4917), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), + [anon_sym_BSLASHacs] = ACTIONS(4917), + [anon_sym_BSLASHAcs] = ACTIONS(4917), + [anon_sym_BSLASHacsp] = ACTIONS(4917), + [anon_sym_BSLASHAcsp] = ACTIONS(4917), + [anon_sym_BSLASHacl] = ACTIONS(4917), + [anon_sym_BSLASHAcl] = ACTIONS(4917), + [anon_sym_BSLASHaclp] = ACTIONS(4917), + [anon_sym_BSLASHAclp] = ACTIONS(4917), + [anon_sym_BSLASHacf] = ACTIONS(4917), + [anon_sym_BSLASHAcf] = ACTIONS(4917), + [anon_sym_BSLASHacfp] = ACTIONS(4917), + [anon_sym_BSLASHAcfp] = ACTIONS(4917), + [anon_sym_BSLASHac] = ACTIONS(4917), + [anon_sym_BSLASHAc] = ACTIONS(4917), + [anon_sym_BSLASHacp] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), + [anon_sym_BSLASHcolor] = ACTIONS(4917), + [anon_sym_BSLASHcolorbox] = ACTIONS(4917), + [anon_sym_BSLASHtextcolor] = ACTIONS(4917), + [anon_sym_BSLASHpagecolor] = ACTIONS(4917), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), + [anon_sym_BSLASHtext] = ACTIONS(4917), + [anon_sym_BSLASHintertext] = ACTIONS(4917), + [anon_sym_shortintertext] = ACTIONS(4917), }, - [1524] = { - [sym_command_name] = ACTIONS(5021), + [1489] = { + [sym_command_name] = ACTIONS(4929), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5021), - [anon_sym_RBRACK] = ACTIONS(5019), - [anon_sym_COMMA] = ACTIONS(5019), - [anon_sym_EQ] = ACTIONS(5019), - [anon_sym_RBRACE] = ACTIONS(5019), - [sym_word] = ACTIONS(5021), - [sym_placeholder] = ACTIONS(5019), - [anon_sym_PLUS] = ACTIONS(5021), - [anon_sym_DASH] = ACTIONS(5021), - [anon_sym_STAR] = ACTIONS(5021), - [anon_sym_SLASH] = ACTIONS(5021), - [anon_sym_CARET] = ACTIONS(5021), - [anon_sym__] = ACTIONS(5021), - [anon_sym_LT] = ACTIONS(5021), - [anon_sym_GT] = ACTIONS(5021), - [anon_sym_BANG] = ACTIONS(5021), - [anon_sym_PIPE] = ACTIONS(5021), - [anon_sym_COLON] = ACTIONS(5021), - [anon_sym_SQUOTE] = ACTIONS(5021), - [anon_sym_BSLASHusepackage] = ACTIONS(5021), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), - [anon_sym_BSLASHinclude] = ACTIONS(5021), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), - [anon_sym_BSLASHinput] = ACTIONS(5021), - [anon_sym_BSLASHsubfile] = ACTIONS(5021), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), - [anon_sym_BSLASHbibliography] = ACTIONS(5021), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), - [anon_sym_BSLASHincludesvg] = ACTIONS(5021), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), - [anon_sym_BSLASHimport] = ACTIONS(5021), - [anon_sym_BSLASHsubimport] = ACTIONS(5021), - [anon_sym_BSLASHinputfrom] = ACTIONS(5021), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), - [anon_sym_BSLASHincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), - [anon_sym_BSLASHcaption] = ACTIONS(5021), - [anon_sym_BSLASHcite] = ACTIONS(5021), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCite] = ACTIONS(5021), - [anon_sym_BSLASHnocite] = ACTIONS(5021), - [anon_sym_BSLASHcitet] = ACTIONS(5021), - [anon_sym_BSLASHcitep] = ACTIONS(5021), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteauthor] = ACTIONS(5021), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitetitle] = ACTIONS(5021), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteyear] = ACTIONS(5021), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), - [anon_sym_BSLASHcitedate] = ACTIONS(5021), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), - [anon_sym_BSLASHciteurl] = ACTIONS(5021), - [anon_sym_BSLASHfullcite] = ACTIONS(5021), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), - [anon_sym_BSLASHcitealt] = ACTIONS(5021), - [anon_sym_BSLASHcitealp] = ACTIONS(5021), - [anon_sym_BSLASHcitetext] = ACTIONS(5021), - [anon_sym_BSLASHparencite] = ACTIONS(5021), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHParencite] = ACTIONS(5021), - [anon_sym_BSLASHfootcite] = ACTIONS(5021), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), - [anon_sym_BSLASHtextcite] = ACTIONS(5021), - [anon_sym_BSLASHTextcite] = ACTIONS(5021), - [anon_sym_BSLASHsmartcite] = ACTIONS(5021), - [anon_sym_BSLASHSmartcite] = ACTIONS(5021), - [anon_sym_BSLASHsupercite] = ACTIONS(5021), - [anon_sym_BSLASHautocite] = ACTIONS(5021), - [anon_sym_BSLASHAutocite] = ACTIONS(5021), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), - [anon_sym_BSLASHvolcite] = ACTIONS(5021), - [anon_sym_BSLASHVolcite] = ACTIONS(5021), - [anon_sym_BSLASHpvolcite] = ACTIONS(5021), - [anon_sym_BSLASHPvolcite] = ACTIONS(5021), - [anon_sym_BSLASHfvolcite] = ACTIONS(5021), - [anon_sym_BSLASHftvolcite] = ACTIONS(5021), - [anon_sym_BSLASHsvolcite] = ACTIONS(5021), - [anon_sym_BSLASHSvolcite] = ACTIONS(5021), - [anon_sym_BSLASHtvolcite] = ACTIONS(5021), - [anon_sym_BSLASHTvolcite] = ACTIONS(5021), - [anon_sym_BSLASHavolcite] = ACTIONS(5021), - [anon_sym_BSLASHAvolcite] = ACTIONS(5021), - [anon_sym_BSLASHnotecite] = ACTIONS(5021), - [anon_sym_BSLASHNotecite] = ACTIONS(5021), - [anon_sym_BSLASHpnotecite] = ACTIONS(5021), - [anon_sym_BSLASHPnotecite] = ACTIONS(5021), - [anon_sym_BSLASHfnotecite] = ACTIONS(5021), - [anon_sym_BSLASHlabel] = ACTIONS(5021), - [anon_sym_BSLASHref] = ACTIONS(5021), - [anon_sym_BSLASHeqref] = ACTIONS(5021), - [anon_sym_BSLASHvref] = ACTIONS(5021), - [anon_sym_BSLASHVref] = ACTIONS(5021), - [anon_sym_BSLASHautoref] = ACTIONS(5021), - [anon_sym_BSLASHpageref] = ACTIONS(5021), - [anon_sym_BSLASHcref] = ACTIONS(5021), - [anon_sym_BSLASHCref] = ACTIONS(5021), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnameCref] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), - [anon_sym_BSLASHlabelcref] = ACTIONS(5021), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange] = ACTIONS(5021), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHCrefrange] = ACTIONS(5021), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), - [anon_sym_BSLASHnewlabel] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand] = ACTIONS(5021), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), - [anon_sym_BSLASHdef] = ACTIONS(5021), - [anon_sym_BSLASHlet] = ACTIONS(5021), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), - [anon_sym_BSLASHgls] = ACTIONS(5021), - [anon_sym_BSLASHGls] = ACTIONS(5021), - [anon_sym_BSLASHGLS] = ACTIONS(5021), - [anon_sym_BSLASHglspl] = ACTIONS(5021), - [anon_sym_BSLASHGlspl] = ACTIONS(5021), - [anon_sym_BSLASHGLSpl] = ACTIONS(5021), - [anon_sym_BSLASHglsdisp] = ACTIONS(5021), - [anon_sym_BSLASHglslink] = ACTIONS(5021), - [anon_sym_BSLASHglstext] = ACTIONS(5021), - [anon_sym_BSLASHGlstext] = ACTIONS(5021), - [anon_sym_BSLASHGLStext] = ACTIONS(5021), - [anon_sym_BSLASHglsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), - [anon_sym_BSLASHglsplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSplural] = ACTIONS(5021), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), - [anon_sym_BSLASHglsname] = ACTIONS(5021), - [anon_sym_BSLASHGlsname] = ACTIONS(5021), - [anon_sym_BSLASHGLSname] = ACTIONS(5021), - [anon_sym_BSLASHglssymbol] = ACTIONS(5021), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), - [anon_sym_BSLASHglsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), - [anon_sym_BSLASHglsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), - [anon_sym_BSLASHglsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), - [anon_sym_BSLASHglsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), - [anon_sym_BSLASHglsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), - [anon_sym_BSLASHnewacronym] = ACTIONS(5021), - [anon_sym_BSLASHacrshort] = ACTIONS(5021), - [anon_sym_BSLASHAcrshort] = ACTIONS(5021), - [anon_sym_BSLASHACRshort] = ACTIONS(5021), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), - [anon_sym_BSLASHacrlong] = ACTIONS(5021), - [anon_sym_BSLASHAcrlong] = ACTIONS(5021), - [anon_sym_BSLASHACRlong] = ACTIONS(5021), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), - [anon_sym_BSLASHacrfull] = ACTIONS(5021), - [anon_sym_BSLASHAcrfull] = ACTIONS(5021), - [anon_sym_BSLASHACRfull] = ACTIONS(5021), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), - [anon_sym_BSLASHacs] = ACTIONS(5021), - [anon_sym_BSLASHAcs] = ACTIONS(5021), - [anon_sym_BSLASHacsp] = ACTIONS(5021), - [anon_sym_BSLASHAcsp] = ACTIONS(5021), - [anon_sym_BSLASHacl] = ACTIONS(5021), - [anon_sym_BSLASHAcl] = ACTIONS(5021), - [anon_sym_BSLASHaclp] = ACTIONS(5021), - [anon_sym_BSLASHAclp] = ACTIONS(5021), - [anon_sym_BSLASHacf] = ACTIONS(5021), - [anon_sym_BSLASHAcf] = ACTIONS(5021), - [anon_sym_BSLASHacfp] = ACTIONS(5021), - [anon_sym_BSLASHAcfp] = ACTIONS(5021), - [anon_sym_BSLASHac] = ACTIONS(5021), - [anon_sym_BSLASHAc] = ACTIONS(5021), - [anon_sym_BSLASHacp] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), - [anon_sym_BSLASHcolor] = ACTIONS(5021), - [anon_sym_BSLASHcolorbox] = ACTIONS(5021), - [anon_sym_BSLASHtextcolor] = ACTIONS(5021), - [anon_sym_BSLASHpagecolor] = ACTIONS(5021), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), + [anon_sym_BSLASHiffalse] = ACTIONS(4929), + [anon_sym_LPAREN] = ACTIONS(4927), + [anon_sym_RPAREN] = ACTIONS(4927), + [anon_sym_LBRACK] = ACTIONS(4927), + [anon_sym_RBRACK] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_LBRACE] = ACTIONS(4927), + [anon_sym_RBRACE] = ACTIONS(4927), + [sym_word] = ACTIONS(4929), + [sym_placeholder] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_CARET] = ACTIONS(4929), + [anon_sym__] = ACTIONS(4929), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_BANG] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4929), + [anon_sym_COLON] = ACTIONS(4929), + [anon_sym_SQUOTE] = ACTIONS(4929), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4927), + [anon_sym_DOLLAR] = ACTIONS(4929), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4927), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4927), + [anon_sym_BSLASHusepackage] = ACTIONS(4929), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), + [anon_sym_BSLASHinclude] = ACTIONS(4929), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), + [anon_sym_BSLASHinput] = ACTIONS(4929), + [anon_sym_BSLASHsubfile] = ACTIONS(4929), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), + [anon_sym_BSLASHbibliography] = ACTIONS(4929), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), + [anon_sym_BSLASHincludesvg] = ACTIONS(4929), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), + [anon_sym_BSLASHimport] = ACTIONS(4929), + [anon_sym_BSLASHsubimport] = ACTIONS(4929), + [anon_sym_BSLASHinputfrom] = ACTIONS(4929), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), + [anon_sym_BSLASHincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHcaption] = ACTIONS(4929), + [anon_sym_BSLASHcite] = ACTIONS(4929), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCite] = ACTIONS(4929), + [anon_sym_BSLASHnocite] = ACTIONS(4929), + [anon_sym_BSLASHcitet] = ACTIONS(4929), + [anon_sym_BSLASHcitep] = ACTIONS(4929), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteauthor] = ACTIONS(4929), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitetitle] = ACTIONS(4929), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteyear] = ACTIONS(4929), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitedate] = ACTIONS(4929), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteurl] = ACTIONS(4929), + [anon_sym_BSLASHfullcite] = ACTIONS(4929), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), + [anon_sym_BSLASHcitealt] = ACTIONS(4929), + [anon_sym_BSLASHcitealp] = ACTIONS(4929), + [anon_sym_BSLASHcitetext] = ACTIONS(4929), + [anon_sym_BSLASHparencite] = ACTIONS(4929), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHParencite] = ACTIONS(4929), + [anon_sym_BSLASHfootcite] = ACTIONS(4929), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), + [anon_sym_BSLASHtextcite] = ACTIONS(4929), + [anon_sym_BSLASHTextcite] = ACTIONS(4929), + [anon_sym_BSLASHsmartcite] = ACTIONS(4929), + [anon_sym_BSLASHSmartcite] = ACTIONS(4929), + [anon_sym_BSLASHsupercite] = ACTIONS(4929), + [anon_sym_BSLASHautocite] = ACTIONS(4929), + [anon_sym_BSLASHAutocite] = ACTIONS(4929), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHvolcite] = ACTIONS(4929), + [anon_sym_BSLASHVolcite] = ACTIONS(4929), + [anon_sym_BSLASHpvolcite] = ACTIONS(4929), + [anon_sym_BSLASHPvolcite] = ACTIONS(4929), + [anon_sym_BSLASHfvolcite] = ACTIONS(4929), + [anon_sym_BSLASHftvolcite] = ACTIONS(4929), + [anon_sym_BSLASHsvolcite] = ACTIONS(4929), + [anon_sym_BSLASHSvolcite] = ACTIONS(4929), + [anon_sym_BSLASHtvolcite] = ACTIONS(4929), + [anon_sym_BSLASHTvolcite] = ACTIONS(4929), + [anon_sym_BSLASHavolcite] = ACTIONS(4929), + [anon_sym_BSLASHAvolcite] = ACTIONS(4929), + [anon_sym_BSLASHnotecite] = ACTIONS(4929), + [anon_sym_BSLASHNotecite] = ACTIONS(4929), + [anon_sym_BSLASHpnotecite] = ACTIONS(4929), + [anon_sym_BSLASHPnotecite] = ACTIONS(4929), + [anon_sym_BSLASHfnotecite] = ACTIONS(4929), + [anon_sym_BSLASHlabel] = ACTIONS(4929), + [anon_sym_BSLASHref] = ACTIONS(4929), + [anon_sym_BSLASHeqref] = ACTIONS(4929), + [anon_sym_BSLASHvref] = ACTIONS(4929), + [anon_sym_BSLASHVref] = ACTIONS(4929), + [anon_sym_BSLASHautoref] = ACTIONS(4929), + [anon_sym_BSLASHpageref] = ACTIONS(4929), + [anon_sym_BSLASHcref] = ACTIONS(4929), + [anon_sym_BSLASHCref] = ACTIONS(4929), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnameCref] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHlabelcref] = ACTIONS(4929), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCrefrange] = ACTIONS(4929), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnewlabel] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), + [anon_sym_BSLASHdef] = ACTIONS(4929), + [anon_sym_BSLASHlet] = ACTIONS(4929), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), + [anon_sym_BSLASHgls] = ACTIONS(4929), + [anon_sym_BSLASHGls] = ACTIONS(4929), + [anon_sym_BSLASHGLS] = ACTIONS(4929), + [anon_sym_BSLASHglspl] = ACTIONS(4929), + [anon_sym_BSLASHGlspl] = ACTIONS(4929), + [anon_sym_BSLASHGLSpl] = ACTIONS(4929), + [anon_sym_BSLASHglsdisp] = ACTIONS(4929), + [anon_sym_BSLASHglslink] = ACTIONS(4929), + [anon_sym_BSLASHglstext] = ACTIONS(4929), + [anon_sym_BSLASHGlstext] = ACTIONS(4929), + [anon_sym_BSLASHGLStext] = ACTIONS(4929), + [anon_sym_BSLASHglsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), + [anon_sym_BSLASHglsplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSplural] = ACTIONS(4929), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHglsname] = ACTIONS(4929), + [anon_sym_BSLASHGlsname] = ACTIONS(4929), + [anon_sym_BSLASHGLSname] = ACTIONS(4929), + [anon_sym_BSLASHglssymbol] = ACTIONS(4929), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), + [anon_sym_BSLASHglsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), + [anon_sym_BSLASHglsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), + [anon_sym_BSLASHglsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), + [anon_sym_BSLASHglsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), + [anon_sym_BSLASHglsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), + [anon_sym_BSLASHnewacronym] = ACTIONS(4929), + [anon_sym_BSLASHacrshort] = ACTIONS(4929), + [anon_sym_BSLASHAcrshort] = ACTIONS(4929), + [anon_sym_BSLASHACRshort] = ACTIONS(4929), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), + [anon_sym_BSLASHacrlong] = ACTIONS(4929), + [anon_sym_BSLASHAcrlong] = ACTIONS(4929), + [anon_sym_BSLASHACRlong] = ACTIONS(4929), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), + [anon_sym_BSLASHacrfull] = ACTIONS(4929), + [anon_sym_BSLASHAcrfull] = ACTIONS(4929), + [anon_sym_BSLASHACRfull] = ACTIONS(4929), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), + [anon_sym_BSLASHacs] = ACTIONS(4929), + [anon_sym_BSLASHAcs] = ACTIONS(4929), + [anon_sym_BSLASHacsp] = ACTIONS(4929), + [anon_sym_BSLASHAcsp] = ACTIONS(4929), + [anon_sym_BSLASHacl] = ACTIONS(4929), + [anon_sym_BSLASHAcl] = ACTIONS(4929), + [anon_sym_BSLASHaclp] = ACTIONS(4929), + [anon_sym_BSLASHAclp] = ACTIONS(4929), + [anon_sym_BSLASHacf] = ACTIONS(4929), + [anon_sym_BSLASHAcf] = ACTIONS(4929), + [anon_sym_BSLASHacfp] = ACTIONS(4929), + [anon_sym_BSLASHAcfp] = ACTIONS(4929), + [anon_sym_BSLASHac] = ACTIONS(4929), + [anon_sym_BSLASHAc] = ACTIONS(4929), + [anon_sym_BSLASHacp] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), + [anon_sym_BSLASHcolor] = ACTIONS(4929), + [anon_sym_BSLASHcolorbox] = ACTIONS(4929), + [anon_sym_BSLASHtextcolor] = ACTIONS(4929), + [anon_sym_BSLASHpagecolor] = ACTIONS(4929), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), + [anon_sym_BSLASHtext] = ACTIONS(4929), + [anon_sym_BSLASHintertext] = ACTIONS(4929), + [anon_sym_shortintertext] = ACTIONS(4929), }, - [1525] = { - [sym_command_name] = ACTIONS(5221), + [1490] = { + [sym_command_name] = ACTIONS(4939), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4939), + [anon_sym_LPAREN] = ACTIONS(4937), + [anon_sym_RPAREN] = ACTIONS(4937), + [anon_sym_LBRACK] = ACTIONS(4937), + [anon_sym_RBRACK] = ACTIONS(4937), + [anon_sym_COMMA] = ACTIONS(4937), + [anon_sym_LBRACE] = ACTIONS(4937), + [anon_sym_RBRACE] = ACTIONS(4937), + [sym_word] = ACTIONS(4939), + [sym_placeholder] = ACTIONS(4937), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_SLASH] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(4939), + [anon_sym__] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4939), + [anon_sym_GT] = ACTIONS(4939), + [anon_sym_BANG] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4939), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_SQUOTE] = ACTIONS(4939), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4937), + [anon_sym_DOLLAR] = ACTIONS(4939), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4937), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4937), + [anon_sym_BSLASHusepackage] = ACTIONS(4939), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), + [anon_sym_BSLASHinclude] = ACTIONS(4939), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), + [anon_sym_BSLASHinput] = ACTIONS(4939), + [anon_sym_BSLASHsubfile] = ACTIONS(4939), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), + [anon_sym_BSLASHbibliography] = ACTIONS(4939), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), + [anon_sym_BSLASHincludesvg] = ACTIONS(4939), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), + [anon_sym_BSLASHimport] = ACTIONS(4939), + [anon_sym_BSLASHsubimport] = ACTIONS(4939), + [anon_sym_BSLASHinputfrom] = ACTIONS(4939), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), + [anon_sym_BSLASHincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHcaption] = ACTIONS(4939), + [anon_sym_BSLASHcite] = ACTIONS(4939), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCite] = ACTIONS(4939), + [anon_sym_BSLASHnocite] = ACTIONS(4939), + [anon_sym_BSLASHcitet] = ACTIONS(4939), + [anon_sym_BSLASHcitep] = ACTIONS(4939), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteauthor] = ACTIONS(4939), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitetitle] = ACTIONS(4939), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteyear] = ACTIONS(4939), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitedate] = ACTIONS(4939), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteurl] = ACTIONS(4939), + [anon_sym_BSLASHfullcite] = ACTIONS(4939), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), + [anon_sym_BSLASHcitealt] = ACTIONS(4939), + [anon_sym_BSLASHcitealp] = ACTIONS(4939), + [anon_sym_BSLASHcitetext] = ACTIONS(4939), + [anon_sym_BSLASHparencite] = ACTIONS(4939), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHParencite] = ACTIONS(4939), + [anon_sym_BSLASHfootcite] = ACTIONS(4939), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), + [anon_sym_BSLASHtextcite] = ACTIONS(4939), + [anon_sym_BSLASHTextcite] = ACTIONS(4939), + [anon_sym_BSLASHsmartcite] = ACTIONS(4939), + [anon_sym_BSLASHSmartcite] = ACTIONS(4939), + [anon_sym_BSLASHsupercite] = ACTIONS(4939), + [anon_sym_BSLASHautocite] = ACTIONS(4939), + [anon_sym_BSLASHAutocite] = ACTIONS(4939), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHvolcite] = ACTIONS(4939), + [anon_sym_BSLASHVolcite] = ACTIONS(4939), + [anon_sym_BSLASHpvolcite] = ACTIONS(4939), + [anon_sym_BSLASHPvolcite] = ACTIONS(4939), + [anon_sym_BSLASHfvolcite] = ACTIONS(4939), + [anon_sym_BSLASHftvolcite] = ACTIONS(4939), + [anon_sym_BSLASHsvolcite] = ACTIONS(4939), + [anon_sym_BSLASHSvolcite] = ACTIONS(4939), + [anon_sym_BSLASHtvolcite] = ACTIONS(4939), + [anon_sym_BSLASHTvolcite] = ACTIONS(4939), + [anon_sym_BSLASHavolcite] = ACTIONS(4939), + [anon_sym_BSLASHAvolcite] = ACTIONS(4939), + [anon_sym_BSLASHnotecite] = ACTIONS(4939), + [anon_sym_BSLASHNotecite] = ACTIONS(4939), + [anon_sym_BSLASHpnotecite] = ACTIONS(4939), + [anon_sym_BSLASHPnotecite] = ACTIONS(4939), + [anon_sym_BSLASHfnotecite] = ACTIONS(4939), + [anon_sym_BSLASHlabel] = ACTIONS(4939), + [anon_sym_BSLASHref] = ACTIONS(4939), + [anon_sym_BSLASHeqref] = ACTIONS(4939), + [anon_sym_BSLASHvref] = ACTIONS(4939), + [anon_sym_BSLASHVref] = ACTIONS(4939), + [anon_sym_BSLASHautoref] = ACTIONS(4939), + [anon_sym_BSLASHpageref] = ACTIONS(4939), + [anon_sym_BSLASHcref] = ACTIONS(4939), + [anon_sym_BSLASHCref] = ACTIONS(4939), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnameCref] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHlabelcref] = ACTIONS(4939), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCrefrange] = ACTIONS(4939), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnewlabel] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), + [anon_sym_BSLASHdef] = ACTIONS(4939), + [anon_sym_BSLASHlet] = ACTIONS(4939), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), + [anon_sym_BSLASHgls] = ACTIONS(4939), + [anon_sym_BSLASHGls] = ACTIONS(4939), + [anon_sym_BSLASHGLS] = ACTIONS(4939), + [anon_sym_BSLASHglspl] = ACTIONS(4939), + [anon_sym_BSLASHGlspl] = ACTIONS(4939), + [anon_sym_BSLASHGLSpl] = ACTIONS(4939), + [anon_sym_BSLASHglsdisp] = ACTIONS(4939), + [anon_sym_BSLASHglslink] = ACTIONS(4939), + [anon_sym_BSLASHglstext] = ACTIONS(4939), + [anon_sym_BSLASHGlstext] = ACTIONS(4939), + [anon_sym_BSLASHGLStext] = ACTIONS(4939), + [anon_sym_BSLASHglsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), + [anon_sym_BSLASHglsplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSplural] = ACTIONS(4939), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHglsname] = ACTIONS(4939), + [anon_sym_BSLASHGlsname] = ACTIONS(4939), + [anon_sym_BSLASHGLSname] = ACTIONS(4939), + [anon_sym_BSLASHglssymbol] = ACTIONS(4939), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), + [anon_sym_BSLASHglsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), + [anon_sym_BSLASHglsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), + [anon_sym_BSLASHglsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), + [anon_sym_BSLASHglsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), + [anon_sym_BSLASHglsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), + [anon_sym_BSLASHnewacronym] = ACTIONS(4939), + [anon_sym_BSLASHacrshort] = ACTIONS(4939), + [anon_sym_BSLASHAcrshort] = ACTIONS(4939), + [anon_sym_BSLASHACRshort] = ACTIONS(4939), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), + [anon_sym_BSLASHacrlong] = ACTIONS(4939), + [anon_sym_BSLASHAcrlong] = ACTIONS(4939), + [anon_sym_BSLASHACRlong] = ACTIONS(4939), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), + [anon_sym_BSLASHacrfull] = ACTIONS(4939), + [anon_sym_BSLASHAcrfull] = ACTIONS(4939), + [anon_sym_BSLASHACRfull] = ACTIONS(4939), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), + [anon_sym_BSLASHacs] = ACTIONS(4939), + [anon_sym_BSLASHAcs] = ACTIONS(4939), + [anon_sym_BSLASHacsp] = ACTIONS(4939), + [anon_sym_BSLASHAcsp] = ACTIONS(4939), + [anon_sym_BSLASHacl] = ACTIONS(4939), + [anon_sym_BSLASHAcl] = ACTIONS(4939), + [anon_sym_BSLASHaclp] = ACTIONS(4939), + [anon_sym_BSLASHAclp] = ACTIONS(4939), + [anon_sym_BSLASHacf] = ACTIONS(4939), + [anon_sym_BSLASHAcf] = ACTIONS(4939), + [anon_sym_BSLASHacfp] = ACTIONS(4939), + [anon_sym_BSLASHAcfp] = ACTIONS(4939), + [anon_sym_BSLASHac] = ACTIONS(4939), + [anon_sym_BSLASHAc] = ACTIONS(4939), + [anon_sym_BSLASHacp] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), + [anon_sym_BSLASHcolor] = ACTIONS(4939), + [anon_sym_BSLASHcolorbox] = ACTIONS(4939), + [anon_sym_BSLASHtextcolor] = ACTIONS(4939), + [anon_sym_BSLASHpagecolor] = ACTIONS(4939), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), + [anon_sym_BSLASHtext] = ACTIONS(4939), + [anon_sym_BSLASHintertext] = ACTIONS(4939), + [anon_sym_shortintertext] = ACTIONS(4939), + }, + [1491] = { + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_LPAREN] = ACTIONS(5311), + [anon_sym_RPAREN] = ACTIONS(5311), + [anon_sym_LBRACK] = ACTIONS(5311), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_LBRACE] = ACTIONS(5311), + [anon_sym_RBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5311), + [anon_sym_DOLLAR] = ACTIONS(5313), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5311), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5311), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), + [anon_sym_BSLASHtext] = ACTIONS(5313), + [anon_sym_BSLASHintertext] = ACTIONS(5313), + [anon_sym_shortintertext] = ACTIONS(5313), + }, + [1492] = { + [sym_command_name] = ACTIONS(4959), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5221), - [anon_sym_RBRACK] = ACTIONS(5219), - [anon_sym_COMMA] = ACTIONS(5219), - [anon_sym_EQ] = ACTIONS(5219), - [anon_sym_RBRACE] = ACTIONS(5219), - [sym_word] = ACTIONS(5221), - [sym_placeholder] = ACTIONS(5219), - [anon_sym_PLUS] = ACTIONS(5221), - [anon_sym_DASH] = ACTIONS(5221), - [anon_sym_STAR] = ACTIONS(5221), - [anon_sym_SLASH] = ACTIONS(5221), - [anon_sym_CARET] = ACTIONS(5221), - [anon_sym__] = ACTIONS(5221), - [anon_sym_LT] = ACTIONS(5221), - [anon_sym_GT] = ACTIONS(5221), - [anon_sym_BANG] = ACTIONS(5221), - [anon_sym_PIPE] = ACTIONS(5221), - [anon_sym_COLON] = ACTIONS(5221), - [anon_sym_SQUOTE] = ACTIONS(5221), - [anon_sym_BSLASHusepackage] = ACTIONS(5221), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), - [anon_sym_BSLASHinclude] = ACTIONS(5221), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), - [anon_sym_BSLASHinput] = ACTIONS(5221), - [anon_sym_BSLASHsubfile] = ACTIONS(5221), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), - [anon_sym_BSLASHbibliography] = ACTIONS(5221), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), - [anon_sym_BSLASHincludesvg] = ACTIONS(5221), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), - [anon_sym_BSLASHimport] = ACTIONS(5221), - [anon_sym_BSLASHsubimport] = ACTIONS(5221), - [anon_sym_BSLASHinputfrom] = ACTIONS(5221), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), - [anon_sym_BSLASHincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), - [anon_sym_BSLASHcaption] = ACTIONS(5221), - [anon_sym_BSLASHcite] = ACTIONS(5221), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCite] = ACTIONS(5221), - [anon_sym_BSLASHnocite] = ACTIONS(5221), - [anon_sym_BSLASHcitet] = ACTIONS(5221), - [anon_sym_BSLASHcitep] = ACTIONS(5221), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteauthor] = ACTIONS(5221), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitetitle] = ACTIONS(5221), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteyear] = ACTIONS(5221), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), - [anon_sym_BSLASHcitedate] = ACTIONS(5221), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), - [anon_sym_BSLASHciteurl] = ACTIONS(5221), - [anon_sym_BSLASHfullcite] = ACTIONS(5221), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), - [anon_sym_BSLASHcitealt] = ACTIONS(5221), - [anon_sym_BSLASHcitealp] = ACTIONS(5221), - [anon_sym_BSLASHcitetext] = ACTIONS(5221), - [anon_sym_BSLASHparencite] = ACTIONS(5221), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHParencite] = ACTIONS(5221), - [anon_sym_BSLASHfootcite] = ACTIONS(5221), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), - [anon_sym_BSLASHtextcite] = ACTIONS(5221), - [anon_sym_BSLASHTextcite] = ACTIONS(5221), - [anon_sym_BSLASHsmartcite] = ACTIONS(5221), - [anon_sym_BSLASHSmartcite] = ACTIONS(5221), - [anon_sym_BSLASHsupercite] = ACTIONS(5221), - [anon_sym_BSLASHautocite] = ACTIONS(5221), - [anon_sym_BSLASHAutocite] = ACTIONS(5221), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), - [anon_sym_BSLASHvolcite] = ACTIONS(5221), - [anon_sym_BSLASHVolcite] = ACTIONS(5221), - [anon_sym_BSLASHpvolcite] = ACTIONS(5221), - [anon_sym_BSLASHPvolcite] = ACTIONS(5221), - [anon_sym_BSLASHfvolcite] = ACTIONS(5221), - [anon_sym_BSLASHftvolcite] = ACTIONS(5221), - [anon_sym_BSLASHsvolcite] = ACTIONS(5221), - [anon_sym_BSLASHSvolcite] = ACTIONS(5221), - [anon_sym_BSLASHtvolcite] = ACTIONS(5221), - [anon_sym_BSLASHTvolcite] = ACTIONS(5221), - [anon_sym_BSLASHavolcite] = ACTIONS(5221), - [anon_sym_BSLASHAvolcite] = ACTIONS(5221), - [anon_sym_BSLASHnotecite] = ACTIONS(5221), - [anon_sym_BSLASHNotecite] = ACTIONS(5221), - [anon_sym_BSLASHpnotecite] = ACTIONS(5221), - [anon_sym_BSLASHPnotecite] = ACTIONS(5221), - [anon_sym_BSLASHfnotecite] = ACTIONS(5221), - [anon_sym_BSLASHlabel] = ACTIONS(5221), - [anon_sym_BSLASHref] = ACTIONS(5221), - [anon_sym_BSLASHeqref] = ACTIONS(5221), - [anon_sym_BSLASHvref] = ACTIONS(5221), - [anon_sym_BSLASHVref] = ACTIONS(5221), - [anon_sym_BSLASHautoref] = ACTIONS(5221), - [anon_sym_BSLASHpageref] = ACTIONS(5221), - [anon_sym_BSLASHcref] = ACTIONS(5221), - [anon_sym_BSLASHCref] = ACTIONS(5221), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnameCref] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), - [anon_sym_BSLASHlabelcref] = ACTIONS(5221), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange] = ACTIONS(5221), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHCrefrange] = ACTIONS(5221), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), - [anon_sym_BSLASHnewlabel] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand] = ACTIONS(5221), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), - [anon_sym_BSLASHdef] = ACTIONS(5221), - [anon_sym_BSLASHlet] = ACTIONS(5221), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), - [anon_sym_BSLASHgls] = ACTIONS(5221), - [anon_sym_BSLASHGls] = ACTIONS(5221), - [anon_sym_BSLASHGLS] = ACTIONS(5221), - [anon_sym_BSLASHglspl] = ACTIONS(5221), - [anon_sym_BSLASHGlspl] = ACTIONS(5221), - [anon_sym_BSLASHGLSpl] = ACTIONS(5221), - [anon_sym_BSLASHglsdisp] = ACTIONS(5221), - [anon_sym_BSLASHglslink] = ACTIONS(5221), - [anon_sym_BSLASHglstext] = ACTIONS(5221), - [anon_sym_BSLASHGlstext] = ACTIONS(5221), - [anon_sym_BSLASHGLStext] = ACTIONS(5221), - [anon_sym_BSLASHglsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), - [anon_sym_BSLASHglsplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSplural] = ACTIONS(5221), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), - [anon_sym_BSLASHglsname] = ACTIONS(5221), - [anon_sym_BSLASHGlsname] = ACTIONS(5221), - [anon_sym_BSLASHGLSname] = ACTIONS(5221), - [anon_sym_BSLASHglssymbol] = ACTIONS(5221), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), - [anon_sym_BSLASHglsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), - [anon_sym_BSLASHglsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), - [anon_sym_BSLASHglsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), - [anon_sym_BSLASHglsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), - [anon_sym_BSLASHglsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), - [anon_sym_BSLASHnewacronym] = ACTIONS(5221), - [anon_sym_BSLASHacrshort] = ACTIONS(5221), - [anon_sym_BSLASHAcrshort] = ACTIONS(5221), - [anon_sym_BSLASHACRshort] = ACTIONS(5221), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), - [anon_sym_BSLASHacrlong] = ACTIONS(5221), - [anon_sym_BSLASHAcrlong] = ACTIONS(5221), - [anon_sym_BSLASHACRlong] = ACTIONS(5221), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), - [anon_sym_BSLASHacrfull] = ACTIONS(5221), - [anon_sym_BSLASHAcrfull] = ACTIONS(5221), - [anon_sym_BSLASHACRfull] = ACTIONS(5221), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), - [anon_sym_BSLASHacs] = ACTIONS(5221), - [anon_sym_BSLASHAcs] = ACTIONS(5221), - [anon_sym_BSLASHacsp] = ACTIONS(5221), - [anon_sym_BSLASHAcsp] = ACTIONS(5221), - [anon_sym_BSLASHacl] = ACTIONS(5221), - [anon_sym_BSLASHAcl] = ACTIONS(5221), - [anon_sym_BSLASHaclp] = ACTIONS(5221), - [anon_sym_BSLASHAclp] = ACTIONS(5221), - [anon_sym_BSLASHacf] = ACTIONS(5221), - [anon_sym_BSLASHAcf] = ACTIONS(5221), - [anon_sym_BSLASHacfp] = ACTIONS(5221), - [anon_sym_BSLASHAcfp] = ACTIONS(5221), - [anon_sym_BSLASHac] = ACTIONS(5221), - [anon_sym_BSLASHAc] = ACTIONS(5221), - [anon_sym_BSLASHacp] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), - [anon_sym_BSLASHcolor] = ACTIONS(5221), - [anon_sym_BSLASHcolorbox] = ACTIONS(5221), - [anon_sym_BSLASHtextcolor] = ACTIONS(5221), - [anon_sym_BSLASHpagecolor] = ACTIONS(5221), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), + [anon_sym_BSLASHiffalse] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4957), + [anon_sym_RBRACE] = ACTIONS(4957), + [sym_word] = ACTIONS(4959), + [sym_placeholder] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_CARET] = ACTIONS(4959), + [anon_sym__] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_COLON] = ACTIONS(4959), + [anon_sym_SQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACK] = ACTIONS(4957), + [anon_sym_DOLLAR] = ACTIONS(4959), + [anon_sym_BSLASH_LPAREN] = ACTIONS(4957), + [anon_sym_BSLASH_LBRACE] = ACTIONS(4957), + [anon_sym_BSLASHusepackage] = ACTIONS(4959), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), + [anon_sym_BSLASHinclude] = ACTIONS(4959), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), + [anon_sym_BSLASHinput] = ACTIONS(4959), + [anon_sym_BSLASHsubfile] = ACTIONS(4959), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), + [anon_sym_BSLASHbibliography] = ACTIONS(4959), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), + [anon_sym_BSLASHincludesvg] = ACTIONS(4959), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), + [anon_sym_BSLASHimport] = ACTIONS(4959), + [anon_sym_BSLASHsubimport] = ACTIONS(4959), + [anon_sym_BSLASHinputfrom] = ACTIONS(4959), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), + [anon_sym_BSLASHincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHcaption] = ACTIONS(4959), + [anon_sym_BSLASHcite] = ACTIONS(4959), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCite] = ACTIONS(4959), + [anon_sym_BSLASHnocite] = ACTIONS(4959), + [anon_sym_BSLASHcitet] = ACTIONS(4959), + [anon_sym_BSLASHcitep] = ACTIONS(4959), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteauthor] = ACTIONS(4959), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitetitle] = ACTIONS(4959), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteyear] = ACTIONS(4959), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitedate] = ACTIONS(4959), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteurl] = ACTIONS(4959), + [anon_sym_BSLASHfullcite] = ACTIONS(4959), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), + [anon_sym_BSLASHcitealt] = ACTIONS(4959), + [anon_sym_BSLASHcitealp] = ACTIONS(4959), + [anon_sym_BSLASHcitetext] = ACTIONS(4959), + [anon_sym_BSLASHparencite] = ACTIONS(4959), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHParencite] = ACTIONS(4959), + [anon_sym_BSLASHfootcite] = ACTIONS(4959), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), + [anon_sym_BSLASHtextcite] = ACTIONS(4959), + [anon_sym_BSLASHTextcite] = ACTIONS(4959), + [anon_sym_BSLASHsmartcite] = ACTIONS(4959), + [anon_sym_BSLASHSmartcite] = ACTIONS(4959), + [anon_sym_BSLASHsupercite] = ACTIONS(4959), + [anon_sym_BSLASHautocite] = ACTIONS(4959), + [anon_sym_BSLASHAutocite] = ACTIONS(4959), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHvolcite] = ACTIONS(4959), + [anon_sym_BSLASHVolcite] = ACTIONS(4959), + [anon_sym_BSLASHpvolcite] = ACTIONS(4959), + [anon_sym_BSLASHPvolcite] = ACTIONS(4959), + [anon_sym_BSLASHfvolcite] = ACTIONS(4959), + [anon_sym_BSLASHftvolcite] = ACTIONS(4959), + [anon_sym_BSLASHsvolcite] = ACTIONS(4959), + [anon_sym_BSLASHSvolcite] = ACTIONS(4959), + [anon_sym_BSLASHtvolcite] = ACTIONS(4959), + [anon_sym_BSLASHTvolcite] = ACTIONS(4959), + [anon_sym_BSLASHavolcite] = ACTIONS(4959), + [anon_sym_BSLASHAvolcite] = ACTIONS(4959), + [anon_sym_BSLASHnotecite] = ACTIONS(4959), + [anon_sym_BSLASHNotecite] = ACTIONS(4959), + [anon_sym_BSLASHpnotecite] = ACTIONS(4959), + [anon_sym_BSLASHPnotecite] = ACTIONS(4959), + [anon_sym_BSLASHfnotecite] = ACTIONS(4959), + [anon_sym_BSLASHlabel] = ACTIONS(4959), + [anon_sym_BSLASHref] = ACTIONS(4959), + [anon_sym_BSLASHeqref] = ACTIONS(4959), + [anon_sym_BSLASHvref] = ACTIONS(4959), + [anon_sym_BSLASHVref] = ACTIONS(4959), + [anon_sym_BSLASHautoref] = ACTIONS(4959), + [anon_sym_BSLASHpageref] = ACTIONS(4959), + [anon_sym_BSLASHcref] = ACTIONS(4959), + [anon_sym_BSLASHCref] = ACTIONS(4959), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnameCref] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHlabelcref] = ACTIONS(4959), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCrefrange] = ACTIONS(4959), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnewlabel] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), + [anon_sym_BSLASHdef] = ACTIONS(4959), + [anon_sym_BSLASHlet] = ACTIONS(4959), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), + [anon_sym_BSLASHgls] = ACTIONS(4959), + [anon_sym_BSLASHGls] = ACTIONS(4959), + [anon_sym_BSLASHGLS] = ACTIONS(4959), + [anon_sym_BSLASHglspl] = ACTIONS(4959), + [anon_sym_BSLASHGlspl] = ACTIONS(4959), + [anon_sym_BSLASHGLSpl] = ACTIONS(4959), + [anon_sym_BSLASHglsdisp] = ACTIONS(4959), + [anon_sym_BSLASHglslink] = ACTIONS(4959), + [anon_sym_BSLASHglstext] = ACTIONS(4959), + [anon_sym_BSLASHGlstext] = ACTIONS(4959), + [anon_sym_BSLASHGLStext] = ACTIONS(4959), + [anon_sym_BSLASHglsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), + [anon_sym_BSLASHglsplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSplural] = ACTIONS(4959), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHglsname] = ACTIONS(4959), + [anon_sym_BSLASHGlsname] = ACTIONS(4959), + [anon_sym_BSLASHGLSname] = ACTIONS(4959), + [anon_sym_BSLASHglssymbol] = ACTIONS(4959), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), + [anon_sym_BSLASHglsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), + [anon_sym_BSLASHglsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), + [anon_sym_BSLASHglsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), + [anon_sym_BSLASHglsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), + [anon_sym_BSLASHglsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), + [anon_sym_BSLASHnewacronym] = ACTIONS(4959), + [anon_sym_BSLASHacrshort] = ACTIONS(4959), + [anon_sym_BSLASHAcrshort] = ACTIONS(4959), + [anon_sym_BSLASHACRshort] = ACTIONS(4959), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), + [anon_sym_BSLASHacrlong] = ACTIONS(4959), + [anon_sym_BSLASHAcrlong] = ACTIONS(4959), + [anon_sym_BSLASHACRlong] = ACTIONS(4959), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), + [anon_sym_BSLASHacrfull] = ACTIONS(4959), + [anon_sym_BSLASHAcrfull] = ACTIONS(4959), + [anon_sym_BSLASHACRfull] = ACTIONS(4959), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), + [anon_sym_BSLASHacs] = ACTIONS(4959), + [anon_sym_BSLASHAcs] = ACTIONS(4959), + [anon_sym_BSLASHacsp] = ACTIONS(4959), + [anon_sym_BSLASHAcsp] = ACTIONS(4959), + [anon_sym_BSLASHacl] = ACTIONS(4959), + [anon_sym_BSLASHAcl] = ACTIONS(4959), + [anon_sym_BSLASHaclp] = ACTIONS(4959), + [anon_sym_BSLASHAclp] = ACTIONS(4959), + [anon_sym_BSLASHacf] = ACTIONS(4959), + [anon_sym_BSLASHAcf] = ACTIONS(4959), + [anon_sym_BSLASHacfp] = ACTIONS(4959), + [anon_sym_BSLASHAcfp] = ACTIONS(4959), + [anon_sym_BSLASHac] = ACTIONS(4959), + [anon_sym_BSLASHAc] = ACTIONS(4959), + [anon_sym_BSLASHacp] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), + [anon_sym_BSLASHcolor] = ACTIONS(4959), + [anon_sym_BSLASHcolorbox] = ACTIONS(4959), + [anon_sym_BSLASHtextcolor] = ACTIONS(4959), + [anon_sym_BSLASHpagecolor] = ACTIONS(4959), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), + [anon_sym_BSLASHtext] = ACTIONS(4959), + [anon_sym_BSLASHintertext] = ACTIONS(4959), + [anon_sym_shortintertext] = ACTIONS(4959), }, - [1526] = { + [1493] = { [sym_command_name] = ACTIONS(5049), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), [anon_sym_BSLASHiffalse] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5047), + [anon_sym_RPAREN] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), [anon_sym_RBRACK] = ACTIONS(5047), [anon_sym_COMMA] = ACTIONS(5047), - [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5047), [anon_sym_RBRACE] = ACTIONS(5047), [sym_word] = ACTIONS(5049), [sym_placeholder] = ACTIONS(5047), @@ -442741,6 +437445,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(5049), [anon_sym_COLON] = ACTIONS(5049), [anon_sym_SQUOTE] = ACTIONS(5049), + [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5047), + [anon_sym_BSLASH_LBRACK] = ACTIONS(5047), + [anon_sym_DOLLAR] = ACTIONS(5049), + [anon_sym_BSLASH_LPAREN] = ACTIONS(5047), + [anon_sym_BSLASH_LBRACE] = ACTIONS(5047), [anon_sym_BSLASHusepackage] = ACTIONS(5049), [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), @@ -442871,3883 +437580,10098 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHglsplural] = ACTIONS(5049), [anon_sym_BSLASHGlsplural] = ACTIONS(5049), [anon_sym_BSLASHGLSplural] = ACTIONS(5049), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), - [anon_sym_BSLASHglsname] = ACTIONS(5049), - [anon_sym_BSLASHGlsname] = ACTIONS(5049), - [anon_sym_BSLASHGLSname] = ACTIONS(5049), - [anon_sym_BSLASHglssymbol] = ACTIONS(5049), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), - [anon_sym_BSLASHglsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), - [anon_sym_BSLASHglsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), - [anon_sym_BSLASHglsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), - [anon_sym_BSLASHglsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), - [anon_sym_BSLASHglsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), - [anon_sym_BSLASHnewacronym] = ACTIONS(5049), - [anon_sym_BSLASHacrshort] = ACTIONS(5049), - [anon_sym_BSLASHAcrshort] = ACTIONS(5049), - [anon_sym_BSLASHACRshort] = ACTIONS(5049), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), - [anon_sym_BSLASHacrlong] = ACTIONS(5049), - [anon_sym_BSLASHAcrlong] = ACTIONS(5049), - [anon_sym_BSLASHACRlong] = ACTIONS(5049), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), - [anon_sym_BSLASHacrfull] = ACTIONS(5049), - [anon_sym_BSLASHAcrfull] = ACTIONS(5049), - [anon_sym_BSLASHACRfull] = ACTIONS(5049), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), - [anon_sym_BSLASHacs] = ACTIONS(5049), - [anon_sym_BSLASHAcs] = ACTIONS(5049), - [anon_sym_BSLASHacsp] = ACTIONS(5049), - [anon_sym_BSLASHAcsp] = ACTIONS(5049), - [anon_sym_BSLASHacl] = ACTIONS(5049), - [anon_sym_BSLASHAcl] = ACTIONS(5049), - [anon_sym_BSLASHaclp] = ACTIONS(5049), - [anon_sym_BSLASHAclp] = ACTIONS(5049), - [anon_sym_BSLASHacf] = ACTIONS(5049), - [anon_sym_BSLASHAcf] = ACTIONS(5049), - [anon_sym_BSLASHacfp] = ACTIONS(5049), - [anon_sym_BSLASHAcfp] = ACTIONS(5049), - [anon_sym_BSLASHac] = ACTIONS(5049), - [anon_sym_BSLASHAc] = ACTIONS(5049), - [anon_sym_BSLASHacp] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), - [anon_sym_BSLASHcolor] = ACTIONS(5049), - [anon_sym_BSLASHcolorbox] = ACTIONS(5049), - [anon_sym_BSLASHtextcolor] = ACTIONS(5049), - [anon_sym_BSLASHpagecolor] = ACTIONS(5049), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), - }, - [1527] = { - [sym_command_name] = ACTIONS(5217), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5217), - [anon_sym_RBRACK] = ACTIONS(5215), - [anon_sym_COMMA] = ACTIONS(5215), - [anon_sym_EQ] = ACTIONS(5215), - [anon_sym_RBRACE] = ACTIONS(5215), - [sym_word] = ACTIONS(5217), - [sym_placeholder] = ACTIONS(5215), - [anon_sym_PLUS] = ACTIONS(5217), - [anon_sym_DASH] = ACTIONS(5217), - [anon_sym_STAR] = ACTIONS(5217), - [anon_sym_SLASH] = ACTIONS(5217), - [anon_sym_CARET] = ACTIONS(5217), - [anon_sym__] = ACTIONS(5217), - [anon_sym_LT] = ACTIONS(5217), - [anon_sym_GT] = ACTIONS(5217), - [anon_sym_BANG] = ACTIONS(5217), - [anon_sym_PIPE] = ACTIONS(5217), - [anon_sym_COLON] = ACTIONS(5217), - [anon_sym_SQUOTE] = ACTIONS(5217), - [anon_sym_BSLASHusepackage] = ACTIONS(5217), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5217), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5217), - [anon_sym_BSLASHinclude] = ACTIONS(5217), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5217), - [anon_sym_BSLASHinput] = ACTIONS(5217), - [anon_sym_BSLASHsubfile] = ACTIONS(5217), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5217), - [anon_sym_BSLASHbibliography] = ACTIONS(5217), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5217), - [anon_sym_BSLASHincludesvg] = ACTIONS(5217), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5217), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5217), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5217), - [anon_sym_BSLASHimport] = ACTIONS(5217), - [anon_sym_BSLASHsubimport] = ACTIONS(5217), - [anon_sym_BSLASHinputfrom] = ACTIONS(5217), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5217), - [anon_sym_BSLASHincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5217), - [anon_sym_BSLASHcaption] = ACTIONS(5217), - [anon_sym_BSLASHcite] = ACTIONS(5217), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCite] = ACTIONS(5217), - [anon_sym_BSLASHnocite] = ACTIONS(5217), - [anon_sym_BSLASHcitet] = ACTIONS(5217), - [anon_sym_BSLASHcitep] = ACTIONS(5217), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteauthor] = ACTIONS(5217), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5217), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitetitle] = ACTIONS(5217), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteyear] = ACTIONS(5217), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5215), - [anon_sym_BSLASHcitedate] = ACTIONS(5217), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5215), - [anon_sym_BSLASHciteurl] = ACTIONS(5217), - [anon_sym_BSLASHfullcite] = ACTIONS(5217), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5217), - [anon_sym_BSLASHcitealt] = ACTIONS(5217), - [anon_sym_BSLASHcitealp] = ACTIONS(5217), - [anon_sym_BSLASHcitetext] = ACTIONS(5217), - [anon_sym_BSLASHparencite] = ACTIONS(5217), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHParencite] = ACTIONS(5217), - [anon_sym_BSLASHfootcite] = ACTIONS(5217), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5217), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5217), - [anon_sym_BSLASHtextcite] = ACTIONS(5217), - [anon_sym_BSLASHTextcite] = ACTIONS(5217), - [anon_sym_BSLASHsmartcite] = ACTIONS(5217), - [anon_sym_BSLASHSmartcite] = ACTIONS(5217), - [anon_sym_BSLASHsupercite] = ACTIONS(5217), - [anon_sym_BSLASHautocite] = ACTIONS(5217), - [anon_sym_BSLASHAutocite] = ACTIONS(5217), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5215), - [anon_sym_BSLASHvolcite] = ACTIONS(5217), - [anon_sym_BSLASHVolcite] = ACTIONS(5217), - [anon_sym_BSLASHpvolcite] = ACTIONS(5217), - [anon_sym_BSLASHPvolcite] = ACTIONS(5217), - [anon_sym_BSLASHfvolcite] = ACTIONS(5217), - [anon_sym_BSLASHftvolcite] = ACTIONS(5217), - [anon_sym_BSLASHsvolcite] = ACTIONS(5217), - [anon_sym_BSLASHSvolcite] = ACTIONS(5217), - [anon_sym_BSLASHtvolcite] = ACTIONS(5217), - [anon_sym_BSLASHTvolcite] = ACTIONS(5217), - [anon_sym_BSLASHavolcite] = ACTIONS(5217), - [anon_sym_BSLASHAvolcite] = ACTIONS(5217), - [anon_sym_BSLASHnotecite] = ACTIONS(5217), - [anon_sym_BSLASHNotecite] = ACTIONS(5217), - [anon_sym_BSLASHpnotecite] = ACTIONS(5217), - [anon_sym_BSLASHPnotecite] = ACTIONS(5217), - [anon_sym_BSLASHfnotecite] = ACTIONS(5217), - [anon_sym_BSLASHlabel] = ACTIONS(5217), - [anon_sym_BSLASHref] = ACTIONS(5217), - [anon_sym_BSLASHeqref] = ACTIONS(5217), - [anon_sym_BSLASHvref] = ACTIONS(5217), - [anon_sym_BSLASHVref] = ACTIONS(5217), - [anon_sym_BSLASHautoref] = ACTIONS(5217), - [anon_sym_BSLASHpageref] = ACTIONS(5217), - [anon_sym_BSLASHcref] = ACTIONS(5217), - [anon_sym_BSLASHCref] = ACTIONS(5217), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnameCref] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5217), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5217), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5217), - [anon_sym_BSLASHlabelcref] = ACTIONS(5217), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange] = ACTIONS(5217), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHCrefrange] = ACTIONS(5217), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5215), - [anon_sym_BSLASHnewlabel] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand] = ACTIONS(5217), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5217), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5217), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5215), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5217), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5215), - [anon_sym_BSLASHdef] = ACTIONS(5217), - [anon_sym_BSLASHlet] = ACTIONS(5217), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5217), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5217), - [anon_sym_BSLASHgls] = ACTIONS(5217), - [anon_sym_BSLASHGls] = ACTIONS(5217), - [anon_sym_BSLASHGLS] = ACTIONS(5217), - [anon_sym_BSLASHglspl] = ACTIONS(5217), - [anon_sym_BSLASHGlspl] = ACTIONS(5217), - [anon_sym_BSLASHGLSpl] = ACTIONS(5217), - [anon_sym_BSLASHglsdisp] = ACTIONS(5217), - [anon_sym_BSLASHglslink] = ACTIONS(5217), - [anon_sym_BSLASHglstext] = ACTIONS(5217), - [anon_sym_BSLASHGlstext] = ACTIONS(5217), - [anon_sym_BSLASHGLStext] = ACTIONS(5217), - [anon_sym_BSLASHglsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5217), - [anon_sym_BSLASHglsplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSplural] = ACTIONS(5217), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5217), - [anon_sym_BSLASHglsname] = ACTIONS(5217), - [anon_sym_BSLASHGlsname] = ACTIONS(5217), - [anon_sym_BSLASHGLSname] = ACTIONS(5217), - [anon_sym_BSLASHglssymbol] = ACTIONS(5217), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5217), - [anon_sym_BSLASHglsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5217), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5217), - [anon_sym_BSLASHglsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5217), - [anon_sym_BSLASHglsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5217), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5217), - [anon_sym_BSLASHglsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5217), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5217), - [anon_sym_BSLASHglsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5217), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5217), - [anon_sym_BSLASHnewacronym] = ACTIONS(5217), - [anon_sym_BSLASHacrshort] = ACTIONS(5217), - [anon_sym_BSLASHAcrshort] = ACTIONS(5217), - [anon_sym_BSLASHACRshort] = ACTIONS(5217), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5217), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5217), - [anon_sym_BSLASHacrlong] = ACTIONS(5217), - [anon_sym_BSLASHAcrlong] = ACTIONS(5217), - [anon_sym_BSLASHACRlong] = ACTIONS(5217), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5217), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5217), - [anon_sym_BSLASHacrfull] = ACTIONS(5217), - [anon_sym_BSLASHAcrfull] = ACTIONS(5217), - [anon_sym_BSLASHACRfull] = ACTIONS(5217), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5217), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5217), - [anon_sym_BSLASHacs] = ACTIONS(5217), - [anon_sym_BSLASHAcs] = ACTIONS(5217), - [anon_sym_BSLASHacsp] = ACTIONS(5217), - [anon_sym_BSLASHAcsp] = ACTIONS(5217), - [anon_sym_BSLASHacl] = ACTIONS(5217), - [anon_sym_BSLASHAcl] = ACTIONS(5217), - [anon_sym_BSLASHaclp] = ACTIONS(5217), - [anon_sym_BSLASHAclp] = ACTIONS(5217), - [anon_sym_BSLASHacf] = ACTIONS(5217), - [anon_sym_BSLASHAcf] = ACTIONS(5217), - [anon_sym_BSLASHacfp] = ACTIONS(5217), - [anon_sym_BSLASHAcfp] = ACTIONS(5217), - [anon_sym_BSLASHac] = ACTIONS(5217), - [anon_sym_BSLASHAc] = ACTIONS(5217), - [anon_sym_BSLASHacp] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5217), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5217), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5217), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5217), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5217), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5217), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5217), - [anon_sym_BSLASHcolor] = ACTIONS(5217), - [anon_sym_BSLASHcolorbox] = ACTIONS(5217), - [anon_sym_BSLASHtextcolor] = ACTIONS(5217), - [anon_sym_BSLASHpagecolor] = ACTIONS(5217), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5217), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5217), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHglsname] = ACTIONS(5049), + [anon_sym_BSLASHGlsname] = ACTIONS(5049), + [anon_sym_BSLASHGLSname] = ACTIONS(5049), + [anon_sym_BSLASHglssymbol] = ACTIONS(5049), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), + [anon_sym_BSLASHglsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), + [anon_sym_BSLASHglsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), + [anon_sym_BSLASHglsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), + [anon_sym_BSLASHglsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), + [anon_sym_BSLASHglsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), + [anon_sym_BSLASHnewacronym] = ACTIONS(5049), + [anon_sym_BSLASHacrshort] = ACTIONS(5049), + [anon_sym_BSLASHAcrshort] = ACTIONS(5049), + [anon_sym_BSLASHACRshort] = ACTIONS(5049), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), + [anon_sym_BSLASHacrlong] = ACTIONS(5049), + [anon_sym_BSLASHAcrlong] = ACTIONS(5049), + [anon_sym_BSLASHACRlong] = ACTIONS(5049), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), + [anon_sym_BSLASHacrfull] = ACTIONS(5049), + [anon_sym_BSLASHAcrfull] = ACTIONS(5049), + [anon_sym_BSLASHACRfull] = ACTIONS(5049), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), + [anon_sym_BSLASHacs] = ACTIONS(5049), + [anon_sym_BSLASHAcs] = ACTIONS(5049), + [anon_sym_BSLASHacsp] = ACTIONS(5049), + [anon_sym_BSLASHAcsp] = ACTIONS(5049), + [anon_sym_BSLASHacl] = ACTIONS(5049), + [anon_sym_BSLASHAcl] = ACTIONS(5049), + [anon_sym_BSLASHaclp] = ACTIONS(5049), + [anon_sym_BSLASHAclp] = ACTIONS(5049), + [anon_sym_BSLASHacf] = ACTIONS(5049), + [anon_sym_BSLASHAcf] = ACTIONS(5049), + [anon_sym_BSLASHacfp] = ACTIONS(5049), + [anon_sym_BSLASHAcfp] = ACTIONS(5049), + [anon_sym_BSLASHac] = ACTIONS(5049), + [anon_sym_BSLASHAc] = ACTIONS(5049), + [anon_sym_BSLASHacp] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), + [anon_sym_BSLASHcolor] = ACTIONS(5049), + [anon_sym_BSLASHcolorbox] = ACTIONS(5049), + [anon_sym_BSLASHtextcolor] = ACTIONS(5049), + [anon_sym_BSLASHpagecolor] = ACTIONS(5049), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), + [anon_sym_BSLASHtext] = ACTIONS(5049), + [anon_sym_BSLASHintertext] = ACTIONS(5049), + [anon_sym_shortintertext] = ACTIONS(5049), }, - [1528] = { - [sym_command_name] = ACTIONS(5053), + [1494] = { + [sym_curly_group] = STATE(1499), + [sym_mixed_group] = STATE(1499), + [aux_sym_generic_command_repeat1] = STATE(1494), + [sym_command_name] = ACTIONS(4461), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4461), + [anon_sym_LPAREN] = ACTIONS(5505), + [anon_sym_LBRACK] = ACTIONS(5505), + [anon_sym_RBRACK] = ACTIONS(4459), + [anon_sym_COMMA] = ACTIONS(4459), + [anon_sym_EQ] = ACTIONS(4459), + [anon_sym_LBRACE] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(4459), + [sym_word] = ACTIONS(4461), + [sym_placeholder] = ACTIONS(4459), + [anon_sym_PLUS] = ACTIONS(4461), + [anon_sym_DASH] = ACTIONS(4461), + [anon_sym_STAR] = ACTIONS(4461), + [anon_sym_SLASH] = ACTIONS(4461), + [anon_sym_CARET] = ACTIONS(4461), + [anon_sym__] = ACTIONS(4461), + [anon_sym_LT] = ACTIONS(4461), + [anon_sym_GT] = ACTIONS(4461), + [anon_sym_BANG] = ACTIONS(4461), + [anon_sym_PIPE] = ACTIONS(4461), + [anon_sym_COLON] = ACTIONS(4461), + [anon_sym_SQUOTE] = ACTIONS(4461), + [anon_sym_BSLASHusepackage] = ACTIONS(4461), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4461), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4461), + [anon_sym_BSLASHinclude] = ACTIONS(4461), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4461), + [anon_sym_BSLASHinput] = ACTIONS(4461), + [anon_sym_BSLASHsubfile] = ACTIONS(4461), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4461), + [anon_sym_BSLASHbibliography] = ACTIONS(4461), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4461), + [anon_sym_BSLASHincludesvg] = ACTIONS(4461), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4461), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4461), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4461), + [anon_sym_BSLASHimport] = ACTIONS(4461), + [anon_sym_BSLASHsubimport] = ACTIONS(4461), + [anon_sym_BSLASHinputfrom] = ACTIONS(4461), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4461), + [anon_sym_BSLASHincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4461), + [anon_sym_BSLASHcaption] = ACTIONS(4461), + [anon_sym_BSLASHcite] = ACTIONS(4461), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCite] = ACTIONS(4461), + [anon_sym_BSLASHnocite] = ACTIONS(4461), + [anon_sym_BSLASHcitet] = ACTIONS(4461), + [anon_sym_BSLASHcitep] = ACTIONS(4461), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteauthor] = ACTIONS(4461), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4461), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitetitle] = ACTIONS(4461), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteyear] = ACTIONS(4461), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4459), + [anon_sym_BSLASHcitedate] = ACTIONS(4461), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4459), + [anon_sym_BSLASHciteurl] = ACTIONS(4461), + [anon_sym_BSLASHfullcite] = ACTIONS(4461), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4461), + [anon_sym_BSLASHcitealt] = ACTIONS(4461), + [anon_sym_BSLASHcitealp] = ACTIONS(4461), + [anon_sym_BSLASHcitetext] = ACTIONS(4461), + [anon_sym_BSLASHparencite] = ACTIONS(4461), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHParencite] = ACTIONS(4461), + [anon_sym_BSLASHfootcite] = ACTIONS(4461), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4461), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4461), + [anon_sym_BSLASHtextcite] = ACTIONS(4461), + [anon_sym_BSLASHTextcite] = ACTIONS(4461), + [anon_sym_BSLASHsmartcite] = ACTIONS(4461), + [anon_sym_BSLASHSmartcite] = ACTIONS(4461), + [anon_sym_BSLASHsupercite] = ACTIONS(4461), + [anon_sym_BSLASHautocite] = ACTIONS(4461), + [anon_sym_BSLASHAutocite] = ACTIONS(4461), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4459), + [anon_sym_BSLASHvolcite] = ACTIONS(4461), + [anon_sym_BSLASHVolcite] = ACTIONS(4461), + [anon_sym_BSLASHpvolcite] = ACTIONS(4461), + [anon_sym_BSLASHPvolcite] = ACTIONS(4461), + [anon_sym_BSLASHfvolcite] = ACTIONS(4461), + [anon_sym_BSLASHftvolcite] = ACTIONS(4461), + [anon_sym_BSLASHsvolcite] = ACTIONS(4461), + [anon_sym_BSLASHSvolcite] = ACTIONS(4461), + [anon_sym_BSLASHtvolcite] = ACTIONS(4461), + [anon_sym_BSLASHTvolcite] = ACTIONS(4461), + [anon_sym_BSLASHavolcite] = ACTIONS(4461), + [anon_sym_BSLASHAvolcite] = ACTIONS(4461), + [anon_sym_BSLASHnotecite] = ACTIONS(4461), + [anon_sym_BSLASHNotecite] = ACTIONS(4461), + [anon_sym_BSLASHpnotecite] = ACTIONS(4461), + [anon_sym_BSLASHPnotecite] = ACTIONS(4461), + [anon_sym_BSLASHfnotecite] = ACTIONS(4461), + [anon_sym_BSLASHlabel] = ACTIONS(4461), + [anon_sym_BSLASHref] = ACTIONS(4461), + [anon_sym_BSLASHeqref] = ACTIONS(4461), + [anon_sym_BSLASHvref] = ACTIONS(4461), + [anon_sym_BSLASHVref] = ACTIONS(4461), + [anon_sym_BSLASHautoref] = ACTIONS(4461), + [anon_sym_BSLASHpageref] = ACTIONS(4461), + [anon_sym_BSLASHcref] = ACTIONS(4461), + [anon_sym_BSLASHCref] = ACTIONS(4461), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnameCref] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4461), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4461), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4461), + [anon_sym_BSLASHlabelcref] = ACTIONS(4461), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange] = ACTIONS(4461), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHCrefrange] = ACTIONS(4461), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4459), + [anon_sym_BSLASHnewlabel] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand] = ACTIONS(4461), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4461), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4461), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4459), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4461), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4459), + [anon_sym_BSLASHdef] = ACTIONS(4461), + [anon_sym_BSLASHlet] = ACTIONS(4461), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4461), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4461), + [anon_sym_BSLASHgls] = ACTIONS(4461), + [anon_sym_BSLASHGls] = ACTIONS(4461), + [anon_sym_BSLASHGLS] = ACTIONS(4461), + [anon_sym_BSLASHglspl] = ACTIONS(4461), + [anon_sym_BSLASHGlspl] = ACTIONS(4461), + [anon_sym_BSLASHGLSpl] = ACTIONS(4461), + [anon_sym_BSLASHglsdisp] = ACTIONS(4461), + [anon_sym_BSLASHglslink] = ACTIONS(4461), + [anon_sym_BSLASHglstext] = ACTIONS(4461), + [anon_sym_BSLASHGlstext] = ACTIONS(4461), + [anon_sym_BSLASHGLStext] = ACTIONS(4461), + [anon_sym_BSLASHglsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4461), + [anon_sym_BSLASHglsplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSplural] = ACTIONS(4461), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4461), + [anon_sym_BSLASHglsname] = ACTIONS(4461), + [anon_sym_BSLASHGlsname] = ACTIONS(4461), + [anon_sym_BSLASHGLSname] = ACTIONS(4461), + [anon_sym_BSLASHglssymbol] = ACTIONS(4461), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4461), + [anon_sym_BSLASHglsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4461), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4461), + [anon_sym_BSLASHglsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4461), + [anon_sym_BSLASHglsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4461), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4461), + [anon_sym_BSLASHglsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4461), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4461), + [anon_sym_BSLASHglsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4461), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4461), + [anon_sym_BSLASHnewacronym] = ACTIONS(4461), + [anon_sym_BSLASHacrshort] = ACTIONS(4461), + [anon_sym_BSLASHAcrshort] = ACTIONS(4461), + [anon_sym_BSLASHACRshort] = ACTIONS(4461), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4461), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4461), + [anon_sym_BSLASHacrlong] = ACTIONS(4461), + [anon_sym_BSLASHAcrlong] = ACTIONS(4461), + [anon_sym_BSLASHACRlong] = ACTIONS(4461), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4461), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4461), + [anon_sym_BSLASHacrfull] = ACTIONS(4461), + [anon_sym_BSLASHAcrfull] = ACTIONS(4461), + [anon_sym_BSLASHACRfull] = ACTIONS(4461), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4461), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4461), + [anon_sym_BSLASHacs] = ACTIONS(4461), + [anon_sym_BSLASHAcs] = ACTIONS(4461), + [anon_sym_BSLASHacsp] = ACTIONS(4461), + [anon_sym_BSLASHAcsp] = ACTIONS(4461), + [anon_sym_BSLASHacl] = ACTIONS(4461), + [anon_sym_BSLASHAcl] = ACTIONS(4461), + [anon_sym_BSLASHaclp] = ACTIONS(4461), + [anon_sym_BSLASHAclp] = ACTIONS(4461), + [anon_sym_BSLASHacf] = ACTIONS(4461), + [anon_sym_BSLASHAcf] = ACTIONS(4461), + [anon_sym_BSLASHacfp] = ACTIONS(4461), + [anon_sym_BSLASHAcfp] = ACTIONS(4461), + [anon_sym_BSLASHac] = ACTIONS(4461), + [anon_sym_BSLASHAc] = ACTIONS(4461), + [anon_sym_BSLASHacp] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4461), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4461), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4461), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4461), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4461), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4461), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4461), + [anon_sym_BSLASHcolor] = ACTIONS(4461), + [anon_sym_BSLASHcolorbox] = ACTIONS(4461), + [anon_sym_BSLASHtextcolor] = ACTIONS(4461), + [anon_sym_BSLASHpagecolor] = ACTIONS(4461), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4461), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4461), + }, + [1495] = { + [sym_curly_group] = STATE(1499), + [sym_mixed_group] = STATE(1499), + [aux_sym_generic_command_repeat1] = STATE(1496), + [sym_command_name] = ACTIONS(4565), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(5511), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_RBRACK] = ACTIONS(4563), + [anon_sym_COMMA] = ACTIONS(4563), + [anon_sym_EQ] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(5513), + [anon_sym_RBRACE] = ACTIONS(4563), + [sym_word] = ACTIONS(4565), + [sym_placeholder] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4565), + [anon_sym_DASH] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_SLASH] = ACTIONS(4565), + [anon_sym_CARET] = ACTIONS(4565), + [anon_sym__] = ACTIONS(4565), + [anon_sym_LT] = ACTIONS(4565), + [anon_sym_GT] = ACTIONS(4565), + [anon_sym_BANG] = ACTIONS(4565), + [anon_sym_PIPE] = ACTIONS(4565), + [anon_sym_COLON] = ACTIONS(4565), + [anon_sym_SQUOTE] = ACTIONS(4565), + [anon_sym_BSLASHusepackage] = ACTIONS(4565), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4565), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4565), + [anon_sym_BSLASHinclude] = ACTIONS(4565), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4565), + [anon_sym_BSLASHinput] = ACTIONS(4565), + [anon_sym_BSLASHsubfile] = ACTIONS(4565), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4565), + [anon_sym_BSLASHbibliography] = ACTIONS(4565), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4565), + [anon_sym_BSLASHincludesvg] = ACTIONS(4565), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4565), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4565), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4565), + [anon_sym_BSLASHimport] = ACTIONS(4565), + [anon_sym_BSLASHsubimport] = ACTIONS(4565), + [anon_sym_BSLASHinputfrom] = ACTIONS(4565), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4565), + [anon_sym_BSLASHincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4565), + [anon_sym_BSLASHcaption] = ACTIONS(4565), + [anon_sym_BSLASHcite] = ACTIONS(4565), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCite] = ACTIONS(4565), + [anon_sym_BSLASHnocite] = ACTIONS(4565), + [anon_sym_BSLASHcitet] = ACTIONS(4565), + [anon_sym_BSLASHcitep] = ACTIONS(4565), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteauthor] = ACTIONS(4565), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4565), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitetitle] = ACTIONS(4565), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteyear] = ACTIONS(4565), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4563), + [anon_sym_BSLASHcitedate] = ACTIONS(4565), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4563), + [anon_sym_BSLASHciteurl] = ACTIONS(4565), + [anon_sym_BSLASHfullcite] = ACTIONS(4565), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4565), + [anon_sym_BSLASHcitealt] = ACTIONS(4565), + [anon_sym_BSLASHcitealp] = ACTIONS(4565), + [anon_sym_BSLASHcitetext] = ACTIONS(4565), + [anon_sym_BSLASHparencite] = ACTIONS(4565), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHParencite] = ACTIONS(4565), + [anon_sym_BSLASHfootcite] = ACTIONS(4565), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4565), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4565), + [anon_sym_BSLASHtextcite] = ACTIONS(4565), + [anon_sym_BSLASHTextcite] = ACTIONS(4565), + [anon_sym_BSLASHsmartcite] = ACTIONS(4565), + [anon_sym_BSLASHSmartcite] = ACTIONS(4565), + [anon_sym_BSLASHsupercite] = ACTIONS(4565), + [anon_sym_BSLASHautocite] = ACTIONS(4565), + [anon_sym_BSLASHAutocite] = ACTIONS(4565), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4563), + [anon_sym_BSLASHvolcite] = ACTIONS(4565), + [anon_sym_BSLASHVolcite] = ACTIONS(4565), + [anon_sym_BSLASHpvolcite] = ACTIONS(4565), + [anon_sym_BSLASHPvolcite] = ACTIONS(4565), + [anon_sym_BSLASHfvolcite] = ACTIONS(4565), + [anon_sym_BSLASHftvolcite] = ACTIONS(4565), + [anon_sym_BSLASHsvolcite] = ACTIONS(4565), + [anon_sym_BSLASHSvolcite] = ACTIONS(4565), + [anon_sym_BSLASHtvolcite] = ACTIONS(4565), + [anon_sym_BSLASHTvolcite] = ACTIONS(4565), + [anon_sym_BSLASHavolcite] = ACTIONS(4565), + [anon_sym_BSLASHAvolcite] = ACTIONS(4565), + [anon_sym_BSLASHnotecite] = ACTIONS(4565), + [anon_sym_BSLASHNotecite] = ACTIONS(4565), + [anon_sym_BSLASHpnotecite] = ACTIONS(4565), + [anon_sym_BSLASHPnotecite] = ACTIONS(4565), + [anon_sym_BSLASHfnotecite] = ACTIONS(4565), + [anon_sym_BSLASHlabel] = ACTIONS(4565), + [anon_sym_BSLASHref] = ACTIONS(4565), + [anon_sym_BSLASHeqref] = ACTIONS(4565), + [anon_sym_BSLASHvref] = ACTIONS(4565), + [anon_sym_BSLASHVref] = ACTIONS(4565), + [anon_sym_BSLASHautoref] = ACTIONS(4565), + [anon_sym_BSLASHpageref] = ACTIONS(4565), + [anon_sym_BSLASHcref] = ACTIONS(4565), + [anon_sym_BSLASHCref] = ACTIONS(4565), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnameCref] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4565), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4565), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4565), + [anon_sym_BSLASHlabelcref] = ACTIONS(4565), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange] = ACTIONS(4565), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHCrefrange] = ACTIONS(4565), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4563), + [anon_sym_BSLASHnewlabel] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand] = ACTIONS(4565), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4565), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4565), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4563), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4565), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4563), + [anon_sym_BSLASHdef] = ACTIONS(4565), + [anon_sym_BSLASHlet] = ACTIONS(4565), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4565), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4565), + [anon_sym_BSLASHgls] = ACTIONS(4565), + [anon_sym_BSLASHGls] = ACTIONS(4565), + [anon_sym_BSLASHGLS] = ACTIONS(4565), + [anon_sym_BSLASHglspl] = ACTIONS(4565), + [anon_sym_BSLASHGlspl] = ACTIONS(4565), + [anon_sym_BSLASHGLSpl] = ACTIONS(4565), + [anon_sym_BSLASHglsdisp] = ACTIONS(4565), + [anon_sym_BSLASHglslink] = ACTIONS(4565), + [anon_sym_BSLASHglstext] = ACTIONS(4565), + [anon_sym_BSLASHGlstext] = ACTIONS(4565), + [anon_sym_BSLASHGLStext] = ACTIONS(4565), + [anon_sym_BSLASHglsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4565), + [anon_sym_BSLASHglsplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSplural] = ACTIONS(4565), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4565), + [anon_sym_BSLASHglsname] = ACTIONS(4565), + [anon_sym_BSLASHGlsname] = ACTIONS(4565), + [anon_sym_BSLASHGLSname] = ACTIONS(4565), + [anon_sym_BSLASHglssymbol] = ACTIONS(4565), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4565), + [anon_sym_BSLASHglsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4565), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4565), + [anon_sym_BSLASHglsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4565), + [anon_sym_BSLASHglsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4565), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4565), + [anon_sym_BSLASHglsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4565), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4565), + [anon_sym_BSLASHglsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4565), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4565), + [anon_sym_BSLASHnewacronym] = ACTIONS(4565), + [anon_sym_BSLASHacrshort] = ACTIONS(4565), + [anon_sym_BSLASHAcrshort] = ACTIONS(4565), + [anon_sym_BSLASHACRshort] = ACTIONS(4565), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4565), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4565), + [anon_sym_BSLASHacrlong] = ACTIONS(4565), + [anon_sym_BSLASHAcrlong] = ACTIONS(4565), + [anon_sym_BSLASHACRlong] = ACTIONS(4565), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4565), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4565), + [anon_sym_BSLASHacrfull] = ACTIONS(4565), + [anon_sym_BSLASHAcrfull] = ACTIONS(4565), + [anon_sym_BSLASHACRfull] = ACTIONS(4565), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4565), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4565), + [anon_sym_BSLASHacs] = ACTIONS(4565), + [anon_sym_BSLASHAcs] = ACTIONS(4565), + [anon_sym_BSLASHacsp] = ACTIONS(4565), + [anon_sym_BSLASHAcsp] = ACTIONS(4565), + [anon_sym_BSLASHacl] = ACTIONS(4565), + [anon_sym_BSLASHAcl] = ACTIONS(4565), + [anon_sym_BSLASHaclp] = ACTIONS(4565), + [anon_sym_BSLASHAclp] = ACTIONS(4565), + [anon_sym_BSLASHacf] = ACTIONS(4565), + [anon_sym_BSLASHAcf] = ACTIONS(4565), + [anon_sym_BSLASHacfp] = ACTIONS(4565), + [anon_sym_BSLASHAcfp] = ACTIONS(4565), + [anon_sym_BSLASHac] = ACTIONS(4565), + [anon_sym_BSLASHAc] = ACTIONS(4565), + [anon_sym_BSLASHacp] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4565), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4565), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4565), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4565), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4565), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4565), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4565), + [anon_sym_BSLASHcolor] = ACTIONS(4565), + [anon_sym_BSLASHcolorbox] = ACTIONS(4565), + [anon_sym_BSLASHtextcolor] = ACTIONS(4565), + [anon_sym_BSLASHpagecolor] = ACTIONS(4565), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4565), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4565), + }, + [1496] = { + [sym_curly_group] = STATE(1499), + [sym_mixed_group] = STATE(1499), + [aux_sym_generic_command_repeat1] = STATE(1494), + [sym_command_name] = ACTIONS(4451), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4451), + [anon_sym_LPAREN] = ACTIONS(5511), + [anon_sym_LBRACK] = ACTIONS(5511), + [anon_sym_RBRACK] = ACTIONS(4449), + [anon_sym_COMMA] = ACTIONS(4449), + [anon_sym_EQ] = ACTIONS(4449), + [anon_sym_LBRACE] = ACTIONS(5513), + [anon_sym_RBRACE] = ACTIONS(4449), + [sym_word] = ACTIONS(4451), + [sym_placeholder] = ACTIONS(4449), + [anon_sym_PLUS] = ACTIONS(4451), + [anon_sym_DASH] = ACTIONS(4451), + [anon_sym_STAR] = ACTIONS(4451), + [anon_sym_SLASH] = ACTIONS(4451), + [anon_sym_CARET] = ACTIONS(4451), + [anon_sym__] = ACTIONS(4451), + [anon_sym_LT] = ACTIONS(4451), + [anon_sym_GT] = ACTIONS(4451), + [anon_sym_BANG] = ACTIONS(4451), + [anon_sym_PIPE] = ACTIONS(4451), + [anon_sym_COLON] = ACTIONS(4451), + [anon_sym_SQUOTE] = ACTIONS(4451), + [anon_sym_BSLASHusepackage] = ACTIONS(4451), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4451), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4451), + [anon_sym_BSLASHinclude] = ACTIONS(4451), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4451), + [anon_sym_BSLASHinput] = ACTIONS(4451), + [anon_sym_BSLASHsubfile] = ACTIONS(4451), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4451), + [anon_sym_BSLASHbibliography] = ACTIONS(4451), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4451), + [anon_sym_BSLASHincludesvg] = ACTIONS(4451), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4451), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4451), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4451), + [anon_sym_BSLASHimport] = ACTIONS(4451), + [anon_sym_BSLASHsubimport] = ACTIONS(4451), + [anon_sym_BSLASHinputfrom] = ACTIONS(4451), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4451), + [anon_sym_BSLASHincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4451), + [anon_sym_BSLASHcaption] = ACTIONS(4451), + [anon_sym_BSLASHcite] = ACTIONS(4451), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCite] = ACTIONS(4451), + [anon_sym_BSLASHnocite] = ACTIONS(4451), + [anon_sym_BSLASHcitet] = ACTIONS(4451), + [anon_sym_BSLASHcitep] = ACTIONS(4451), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteauthor] = ACTIONS(4451), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4451), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitetitle] = ACTIONS(4451), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteyear] = ACTIONS(4451), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4449), + [anon_sym_BSLASHcitedate] = ACTIONS(4451), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4449), + [anon_sym_BSLASHciteurl] = ACTIONS(4451), + [anon_sym_BSLASHfullcite] = ACTIONS(4451), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4451), + [anon_sym_BSLASHcitealt] = ACTIONS(4451), + [anon_sym_BSLASHcitealp] = ACTIONS(4451), + [anon_sym_BSLASHcitetext] = ACTIONS(4451), + [anon_sym_BSLASHparencite] = ACTIONS(4451), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHParencite] = ACTIONS(4451), + [anon_sym_BSLASHfootcite] = ACTIONS(4451), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4451), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4451), + [anon_sym_BSLASHtextcite] = ACTIONS(4451), + [anon_sym_BSLASHTextcite] = ACTIONS(4451), + [anon_sym_BSLASHsmartcite] = ACTIONS(4451), + [anon_sym_BSLASHSmartcite] = ACTIONS(4451), + [anon_sym_BSLASHsupercite] = ACTIONS(4451), + [anon_sym_BSLASHautocite] = ACTIONS(4451), + [anon_sym_BSLASHAutocite] = ACTIONS(4451), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4449), + [anon_sym_BSLASHvolcite] = ACTIONS(4451), + [anon_sym_BSLASHVolcite] = ACTIONS(4451), + [anon_sym_BSLASHpvolcite] = ACTIONS(4451), + [anon_sym_BSLASHPvolcite] = ACTIONS(4451), + [anon_sym_BSLASHfvolcite] = ACTIONS(4451), + [anon_sym_BSLASHftvolcite] = ACTIONS(4451), + [anon_sym_BSLASHsvolcite] = ACTIONS(4451), + [anon_sym_BSLASHSvolcite] = ACTIONS(4451), + [anon_sym_BSLASHtvolcite] = ACTIONS(4451), + [anon_sym_BSLASHTvolcite] = ACTIONS(4451), + [anon_sym_BSLASHavolcite] = ACTIONS(4451), + [anon_sym_BSLASHAvolcite] = ACTIONS(4451), + [anon_sym_BSLASHnotecite] = ACTIONS(4451), + [anon_sym_BSLASHNotecite] = ACTIONS(4451), + [anon_sym_BSLASHpnotecite] = ACTIONS(4451), + [anon_sym_BSLASHPnotecite] = ACTIONS(4451), + [anon_sym_BSLASHfnotecite] = ACTIONS(4451), + [anon_sym_BSLASHlabel] = ACTIONS(4451), + [anon_sym_BSLASHref] = ACTIONS(4451), + [anon_sym_BSLASHeqref] = ACTIONS(4451), + [anon_sym_BSLASHvref] = ACTIONS(4451), + [anon_sym_BSLASHVref] = ACTIONS(4451), + [anon_sym_BSLASHautoref] = ACTIONS(4451), + [anon_sym_BSLASHpageref] = ACTIONS(4451), + [anon_sym_BSLASHcref] = ACTIONS(4451), + [anon_sym_BSLASHCref] = ACTIONS(4451), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnameCref] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4451), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4451), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4451), + [anon_sym_BSLASHlabelcref] = ACTIONS(4451), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange] = ACTIONS(4451), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHCrefrange] = ACTIONS(4451), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4449), + [anon_sym_BSLASHnewlabel] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand] = ACTIONS(4451), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4451), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4451), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4449), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4451), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4449), + [anon_sym_BSLASHdef] = ACTIONS(4451), + [anon_sym_BSLASHlet] = ACTIONS(4451), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4451), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4451), + [anon_sym_BSLASHgls] = ACTIONS(4451), + [anon_sym_BSLASHGls] = ACTIONS(4451), + [anon_sym_BSLASHGLS] = ACTIONS(4451), + [anon_sym_BSLASHglspl] = ACTIONS(4451), + [anon_sym_BSLASHGlspl] = ACTIONS(4451), + [anon_sym_BSLASHGLSpl] = ACTIONS(4451), + [anon_sym_BSLASHglsdisp] = ACTIONS(4451), + [anon_sym_BSLASHglslink] = ACTIONS(4451), + [anon_sym_BSLASHglstext] = ACTIONS(4451), + [anon_sym_BSLASHGlstext] = ACTIONS(4451), + [anon_sym_BSLASHGLStext] = ACTIONS(4451), + [anon_sym_BSLASHglsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4451), + [anon_sym_BSLASHglsplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSplural] = ACTIONS(4451), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4451), + [anon_sym_BSLASHglsname] = ACTIONS(4451), + [anon_sym_BSLASHGlsname] = ACTIONS(4451), + [anon_sym_BSLASHGLSname] = ACTIONS(4451), + [anon_sym_BSLASHglssymbol] = ACTIONS(4451), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4451), + [anon_sym_BSLASHglsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4451), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4451), + [anon_sym_BSLASHglsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4451), + [anon_sym_BSLASHglsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4451), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4451), + [anon_sym_BSLASHglsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4451), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4451), + [anon_sym_BSLASHglsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4451), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4451), + [anon_sym_BSLASHnewacronym] = ACTIONS(4451), + [anon_sym_BSLASHacrshort] = ACTIONS(4451), + [anon_sym_BSLASHAcrshort] = ACTIONS(4451), + [anon_sym_BSLASHACRshort] = ACTIONS(4451), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4451), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4451), + [anon_sym_BSLASHacrlong] = ACTIONS(4451), + [anon_sym_BSLASHAcrlong] = ACTIONS(4451), + [anon_sym_BSLASHACRlong] = ACTIONS(4451), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4451), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4451), + [anon_sym_BSLASHacrfull] = ACTIONS(4451), + [anon_sym_BSLASHAcrfull] = ACTIONS(4451), + [anon_sym_BSLASHACRfull] = ACTIONS(4451), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4451), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4451), + [anon_sym_BSLASHacs] = ACTIONS(4451), + [anon_sym_BSLASHAcs] = ACTIONS(4451), + [anon_sym_BSLASHacsp] = ACTIONS(4451), + [anon_sym_BSLASHAcsp] = ACTIONS(4451), + [anon_sym_BSLASHacl] = ACTIONS(4451), + [anon_sym_BSLASHAcl] = ACTIONS(4451), + [anon_sym_BSLASHaclp] = ACTIONS(4451), + [anon_sym_BSLASHAclp] = ACTIONS(4451), + [anon_sym_BSLASHacf] = ACTIONS(4451), + [anon_sym_BSLASHAcf] = ACTIONS(4451), + [anon_sym_BSLASHacfp] = ACTIONS(4451), + [anon_sym_BSLASHAcfp] = ACTIONS(4451), + [anon_sym_BSLASHac] = ACTIONS(4451), + [anon_sym_BSLASHAc] = ACTIONS(4451), + [anon_sym_BSLASHacp] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4451), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4451), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4451), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4451), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4451), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4451), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4451), + [anon_sym_BSLASHcolor] = ACTIONS(4451), + [anon_sym_BSLASHcolorbox] = ACTIONS(4451), + [anon_sym_BSLASHtextcolor] = ACTIONS(4451), + [anon_sym_BSLASHpagecolor] = ACTIONS(4451), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4451), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4451), + }, + [1497] = { + [sym_curly_group] = STATE(1506), + [sym_brack_group_text] = STATE(2060), + [sym_command_name] = ACTIONS(4817), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5053), - [anon_sym_RBRACK] = ACTIONS(5051), - [anon_sym_COMMA] = ACTIONS(5051), - [anon_sym_EQ] = ACTIONS(5051), - [anon_sym_RBRACE] = ACTIONS(5051), - [sym_word] = ACTIONS(5053), - [sym_placeholder] = ACTIONS(5051), - [anon_sym_PLUS] = ACTIONS(5053), - [anon_sym_DASH] = ACTIONS(5053), - [anon_sym_STAR] = ACTIONS(5053), - [anon_sym_SLASH] = ACTIONS(5053), - [anon_sym_CARET] = ACTIONS(5053), - [anon_sym__] = ACTIONS(5053), - [anon_sym_LT] = ACTIONS(5053), - [anon_sym_GT] = ACTIONS(5053), - [anon_sym_BANG] = ACTIONS(5053), - [anon_sym_PIPE] = ACTIONS(5053), - [anon_sym_COLON] = ACTIONS(5053), - [anon_sym_SQUOTE] = ACTIONS(5053), - [anon_sym_BSLASHusepackage] = ACTIONS(5053), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), - [anon_sym_BSLASHinclude] = ACTIONS(5053), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), - [anon_sym_BSLASHinput] = ACTIONS(5053), - [anon_sym_BSLASHsubfile] = ACTIONS(5053), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), - [anon_sym_BSLASHbibliography] = ACTIONS(5053), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), - [anon_sym_BSLASHincludesvg] = ACTIONS(5053), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), - [anon_sym_BSLASHimport] = ACTIONS(5053), - [anon_sym_BSLASHsubimport] = ACTIONS(5053), - [anon_sym_BSLASHinputfrom] = ACTIONS(5053), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), - [anon_sym_BSLASHincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), - [anon_sym_BSLASHcaption] = ACTIONS(5053), - [anon_sym_BSLASHcite] = ACTIONS(5053), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCite] = ACTIONS(5053), - [anon_sym_BSLASHnocite] = ACTIONS(5053), - [anon_sym_BSLASHcitet] = ACTIONS(5053), - [anon_sym_BSLASHcitep] = ACTIONS(5053), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteauthor] = ACTIONS(5053), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitetitle] = ACTIONS(5053), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteyear] = ACTIONS(5053), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), - [anon_sym_BSLASHcitedate] = ACTIONS(5053), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), - [anon_sym_BSLASHciteurl] = ACTIONS(5053), - [anon_sym_BSLASHfullcite] = ACTIONS(5053), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), - [anon_sym_BSLASHcitealt] = ACTIONS(5053), - [anon_sym_BSLASHcitealp] = ACTIONS(5053), - [anon_sym_BSLASHcitetext] = ACTIONS(5053), - [anon_sym_BSLASHparencite] = ACTIONS(5053), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHParencite] = ACTIONS(5053), - [anon_sym_BSLASHfootcite] = ACTIONS(5053), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), - [anon_sym_BSLASHtextcite] = ACTIONS(5053), - [anon_sym_BSLASHTextcite] = ACTIONS(5053), - [anon_sym_BSLASHsmartcite] = ACTIONS(5053), - [anon_sym_BSLASHSmartcite] = ACTIONS(5053), - [anon_sym_BSLASHsupercite] = ACTIONS(5053), - [anon_sym_BSLASHautocite] = ACTIONS(5053), - [anon_sym_BSLASHAutocite] = ACTIONS(5053), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), - [anon_sym_BSLASHvolcite] = ACTIONS(5053), - [anon_sym_BSLASHVolcite] = ACTIONS(5053), - [anon_sym_BSLASHpvolcite] = ACTIONS(5053), - [anon_sym_BSLASHPvolcite] = ACTIONS(5053), - [anon_sym_BSLASHfvolcite] = ACTIONS(5053), - [anon_sym_BSLASHftvolcite] = ACTIONS(5053), - [anon_sym_BSLASHsvolcite] = ACTIONS(5053), - [anon_sym_BSLASHSvolcite] = ACTIONS(5053), - [anon_sym_BSLASHtvolcite] = ACTIONS(5053), - [anon_sym_BSLASHTvolcite] = ACTIONS(5053), - [anon_sym_BSLASHavolcite] = ACTIONS(5053), - [anon_sym_BSLASHAvolcite] = ACTIONS(5053), - [anon_sym_BSLASHnotecite] = ACTIONS(5053), - [anon_sym_BSLASHNotecite] = ACTIONS(5053), - [anon_sym_BSLASHpnotecite] = ACTIONS(5053), - [anon_sym_BSLASHPnotecite] = ACTIONS(5053), - [anon_sym_BSLASHfnotecite] = ACTIONS(5053), - [anon_sym_BSLASHlabel] = ACTIONS(5053), - [anon_sym_BSLASHref] = ACTIONS(5053), - [anon_sym_BSLASHeqref] = ACTIONS(5053), - [anon_sym_BSLASHvref] = ACTIONS(5053), - [anon_sym_BSLASHVref] = ACTIONS(5053), - [anon_sym_BSLASHautoref] = ACTIONS(5053), - [anon_sym_BSLASHpageref] = ACTIONS(5053), - [anon_sym_BSLASHcref] = ACTIONS(5053), - [anon_sym_BSLASHCref] = ACTIONS(5053), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnameCref] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), - [anon_sym_BSLASHlabelcref] = ACTIONS(5053), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange] = ACTIONS(5053), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHCrefrange] = ACTIONS(5053), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), - [anon_sym_BSLASHnewlabel] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand] = ACTIONS(5053), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), - [anon_sym_BSLASHdef] = ACTIONS(5053), - [anon_sym_BSLASHlet] = ACTIONS(5053), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), - [anon_sym_BSLASHgls] = ACTIONS(5053), - [anon_sym_BSLASHGls] = ACTIONS(5053), - [anon_sym_BSLASHGLS] = ACTIONS(5053), - [anon_sym_BSLASHglspl] = ACTIONS(5053), - [anon_sym_BSLASHGlspl] = ACTIONS(5053), - [anon_sym_BSLASHGLSpl] = ACTIONS(5053), - [anon_sym_BSLASHglsdisp] = ACTIONS(5053), - [anon_sym_BSLASHglslink] = ACTIONS(5053), - [anon_sym_BSLASHglstext] = ACTIONS(5053), - [anon_sym_BSLASHGlstext] = ACTIONS(5053), - [anon_sym_BSLASHGLStext] = ACTIONS(5053), - [anon_sym_BSLASHglsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), - [anon_sym_BSLASHglsplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSplural] = ACTIONS(5053), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), - [anon_sym_BSLASHglsname] = ACTIONS(5053), - [anon_sym_BSLASHGlsname] = ACTIONS(5053), - [anon_sym_BSLASHGLSname] = ACTIONS(5053), - [anon_sym_BSLASHglssymbol] = ACTIONS(5053), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), - [anon_sym_BSLASHglsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), - [anon_sym_BSLASHglsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), - [anon_sym_BSLASHglsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), - [anon_sym_BSLASHglsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), - [anon_sym_BSLASHglsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), - [anon_sym_BSLASHnewacronym] = ACTIONS(5053), - [anon_sym_BSLASHacrshort] = ACTIONS(5053), - [anon_sym_BSLASHAcrshort] = ACTIONS(5053), - [anon_sym_BSLASHACRshort] = ACTIONS(5053), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), - [anon_sym_BSLASHacrlong] = ACTIONS(5053), - [anon_sym_BSLASHAcrlong] = ACTIONS(5053), - [anon_sym_BSLASHACRlong] = ACTIONS(5053), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), - [anon_sym_BSLASHacrfull] = ACTIONS(5053), - [anon_sym_BSLASHAcrfull] = ACTIONS(5053), - [anon_sym_BSLASHACRfull] = ACTIONS(5053), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), - [anon_sym_BSLASHacs] = ACTIONS(5053), - [anon_sym_BSLASHAcs] = ACTIONS(5053), - [anon_sym_BSLASHacsp] = ACTIONS(5053), - [anon_sym_BSLASHAcsp] = ACTIONS(5053), - [anon_sym_BSLASHacl] = ACTIONS(5053), - [anon_sym_BSLASHAcl] = ACTIONS(5053), - [anon_sym_BSLASHaclp] = ACTIONS(5053), - [anon_sym_BSLASHAclp] = ACTIONS(5053), - [anon_sym_BSLASHacf] = ACTIONS(5053), - [anon_sym_BSLASHAcf] = ACTIONS(5053), - [anon_sym_BSLASHacfp] = ACTIONS(5053), - [anon_sym_BSLASHAcfp] = ACTIONS(5053), - [anon_sym_BSLASHac] = ACTIONS(5053), - [anon_sym_BSLASHAc] = ACTIONS(5053), - [anon_sym_BSLASHacp] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), - [anon_sym_BSLASHcolor] = ACTIONS(5053), - [anon_sym_BSLASHcolorbox] = ACTIONS(5053), - [anon_sym_BSLASHtextcolor] = ACTIONS(5053), - [anon_sym_BSLASHpagecolor] = ACTIONS(5053), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), + [anon_sym_BSLASHiffalse] = ACTIONS(4817), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4815), + [anon_sym_COMMA] = ACTIONS(4815), + [anon_sym_EQ] = ACTIONS(4815), + [anon_sym_LBRACE] = ACTIONS(5513), + [anon_sym_RBRACE] = ACTIONS(4815), + [sym_word] = ACTIONS(4817), + [sym_placeholder] = ACTIONS(4815), + [anon_sym_PLUS] = ACTIONS(4817), + [anon_sym_DASH] = ACTIONS(4817), + [anon_sym_STAR] = ACTIONS(4817), + [anon_sym_SLASH] = ACTIONS(4817), + [anon_sym_CARET] = ACTIONS(4817), + [anon_sym__] = ACTIONS(4817), + [anon_sym_LT] = ACTIONS(4817), + [anon_sym_GT] = ACTIONS(4817), + [anon_sym_BANG] = ACTIONS(4817), + [anon_sym_PIPE] = ACTIONS(4817), + [anon_sym_COLON] = ACTIONS(4817), + [anon_sym_SQUOTE] = ACTIONS(4817), + [anon_sym_BSLASHusepackage] = ACTIONS(4817), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4817), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4817), + [anon_sym_BSLASHinclude] = ACTIONS(4817), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4817), + [anon_sym_BSLASHinput] = ACTIONS(4817), + [anon_sym_BSLASHsubfile] = ACTIONS(4817), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4817), + [anon_sym_BSLASHbibliography] = ACTIONS(4817), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4817), + [anon_sym_BSLASHincludesvg] = ACTIONS(4817), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4817), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4817), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4817), + [anon_sym_BSLASHimport] = ACTIONS(4817), + [anon_sym_BSLASHsubimport] = ACTIONS(4817), + [anon_sym_BSLASHinputfrom] = ACTIONS(4817), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4817), + [anon_sym_BSLASHincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4817), + [anon_sym_BSLASHcaption] = ACTIONS(4817), + [anon_sym_BSLASHcite] = ACTIONS(4817), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCite] = ACTIONS(4817), + [anon_sym_BSLASHnocite] = ACTIONS(4817), + [anon_sym_BSLASHcitet] = ACTIONS(4817), + [anon_sym_BSLASHcitep] = ACTIONS(4817), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteauthor] = ACTIONS(4817), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4817), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitetitle] = ACTIONS(4817), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteyear] = ACTIONS(4817), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4815), + [anon_sym_BSLASHcitedate] = ACTIONS(4817), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4815), + [anon_sym_BSLASHciteurl] = ACTIONS(4817), + [anon_sym_BSLASHfullcite] = ACTIONS(4817), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4817), + [anon_sym_BSLASHcitealt] = ACTIONS(4817), + [anon_sym_BSLASHcitealp] = ACTIONS(4817), + [anon_sym_BSLASHcitetext] = ACTIONS(4817), + [anon_sym_BSLASHparencite] = ACTIONS(4817), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHParencite] = ACTIONS(4817), + [anon_sym_BSLASHfootcite] = ACTIONS(4817), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4817), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4817), + [anon_sym_BSLASHtextcite] = ACTIONS(4817), + [anon_sym_BSLASHTextcite] = ACTIONS(4817), + [anon_sym_BSLASHsmartcite] = ACTIONS(4817), + [anon_sym_BSLASHSmartcite] = ACTIONS(4817), + [anon_sym_BSLASHsupercite] = ACTIONS(4817), + [anon_sym_BSLASHautocite] = ACTIONS(4817), + [anon_sym_BSLASHAutocite] = ACTIONS(4817), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4815), + [anon_sym_BSLASHvolcite] = ACTIONS(4817), + [anon_sym_BSLASHVolcite] = ACTIONS(4817), + [anon_sym_BSLASHpvolcite] = ACTIONS(4817), + [anon_sym_BSLASHPvolcite] = ACTIONS(4817), + [anon_sym_BSLASHfvolcite] = ACTIONS(4817), + [anon_sym_BSLASHftvolcite] = ACTIONS(4817), + [anon_sym_BSLASHsvolcite] = ACTIONS(4817), + [anon_sym_BSLASHSvolcite] = ACTIONS(4817), + [anon_sym_BSLASHtvolcite] = ACTIONS(4817), + [anon_sym_BSLASHTvolcite] = ACTIONS(4817), + [anon_sym_BSLASHavolcite] = ACTIONS(4817), + [anon_sym_BSLASHAvolcite] = ACTIONS(4817), + [anon_sym_BSLASHnotecite] = ACTIONS(4817), + [anon_sym_BSLASHNotecite] = ACTIONS(4817), + [anon_sym_BSLASHpnotecite] = ACTIONS(4817), + [anon_sym_BSLASHPnotecite] = ACTIONS(4817), + [anon_sym_BSLASHfnotecite] = ACTIONS(4817), + [anon_sym_BSLASHlabel] = ACTIONS(4817), + [anon_sym_BSLASHref] = ACTIONS(4817), + [anon_sym_BSLASHeqref] = ACTIONS(4817), + [anon_sym_BSLASHvref] = ACTIONS(4817), + [anon_sym_BSLASHVref] = ACTIONS(4817), + [anon_sym_BSLASHautoref] = ACTIONS(4817), + [anon_sym_BSLASHpageref] = ACTIONS(4817), + [anon_sym_BSLASHcref] = ACTIONS(4817), + [anon_sym_BSLASHCref] = ACTIONS(4817), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnameCref] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4817), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4817), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4817), + [anon_sym_BSLASHlabelcref] = ACTIONS(4817), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange] = ACTIONS(4817), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHCrefrange] = ACTIONS(4817), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4815), + [anon_sym_BSLASHnewlabel] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand] = ACTIONS(4817), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4817), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4817), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4815), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4817), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4815), + [anon_sym_BSLASHdef] = ACTIONS(4817), + [anon_sym_BSLASHlet] = ACTIONS(4817), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4817), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4817), + [anon_sym_BSLASHgls] = ACTIONS(4817), + [anon_sym_BSLASHGls] = ACTIONS(4817), + [anon_sym_BSLASHGLS] = ACTIONS(4817), + [anon_sym_BSLASHglspl] = ACTIONS(4817), + [anon_sym_BSLASHGlspl] = ACTIONS(4817), + [anon_sym_BSLASHGLSpl] = ACTIONS(4817), + [anon_sym_BSLASHglsdisp] = ACTIONS(4817), + [anon_sym_BSLASHglslink] = ACTIONS(4817), + [anon_sym_BSLASHglstext] = ACTIONS(4817), + [anon_sym_BSLASHGlstext] = ACTIONS(4817), + [anon_sym_BSLASHGLStext] = ACTIONS(4817), + [anon_sym_BSLASHglsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4817), + [anon_sym_BSLASHglsplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSplural] = ACTIONS(4817), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4817), + [anon_sym_BSLASHglsname] = ACTIONS(4817), + [anon_sym_BSLASHGlsname] = ACTIONS(4817), + [anon_sym_BSLASHGLSname] = ACTIONS(4817), + [anon_sym_BSLASHglssymbol] = ACTIONS(4817), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4817), + [anon_sym_BSLASHglsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4817), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4817), + [anon_sym_BSLASHglsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4817), + [anon_sym_BSLASHglsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4817), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4817), + [anon_sym_BSLASHglsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4817), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4817), + [anon_sym_BSLASHglsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4817), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4817), + [anon_sym_BSLASHnewacronym] = ACTIONS(4817), + [anon_sym_BSLASHacrshort] = ACTIONS(4817), + [anon_sym_BSLASHAcrshort] = ACTIONS(4817), + [anon_sym_BSLASHACRshort] = ACTIONS(4817), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4817), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4817), + [anon_sym_BSLASHacrlong] = ACTIONS(4817), + [anon_sym_BSLASHAcrlong] = ACTIONS(4817), + [anon_sym_BSLASHACRlong] = ACTIONS(4817), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4817), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4817), + [anon_sym_BSLASHacrfull] = ACTIONS(4817), + [anon_sym_BSLASHAcrfull] = ACTIONS(4817), + [anon_sym_BSLASHACRfull] = ACTIONS(4817), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4817), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4817), + [anon_sym_BSLASHacs] = ACTIONS(4817), + [anon_sym_BSLASHAcs] = ACTIONS(4817), + [anon_sym_BSLASHacsp] = ACTIONS(4817), + [anon_sym_BSLASHAcsp] = ACTIONS(4817), + [anon_sym_BSLASHacl] = ACTIONS(4817), + [anon_sym_BSLASHAcl] = ACTIONS(4817), + [anon_sym_BSLASHaclp] = ACTIONS(4817), + [anon_sym_BSLASHAclp] = ACTIONS(4817), + [anon_sym_BSLASHacf] = ACTIONS(4817), + [anon_sym_BSLASHAcf] = ACTIONS(4817), + [anon_sym_BSLASHacfp] = ACTIONS(4817), + [anon_sym_BSLASHAcfp] = ACTIONS(4817), + [anon_sym_BSLASHac] = ACTIONS(4817), + [anon_sym_BSLASHAc] = ACTIONS(4817), + [anon_sym_BSLASHacp] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4817), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4817), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4817), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4817), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4817), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4817), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4817), + [anon_sym_BSLASHcolor] = ACTIONS(4817), + [anon_sym_BSLASHcolorbox] = ACTIONS(4817), + [anon_sym_BSLASHtextcolor] = ACTIONS(4817), + [anon_sym_BSLASHpagecolor] = ACTIONS(4817), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4817), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4817), + }, + [1498] = { + [sym_curly_group] = STATE(1505), + [sym_brack_group_text] = STATE(2074), + [sym_command_name] = ACTIONS(4691), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4691), + [anon_sym_LBRACK] = ACTIONS(4693), + [anon_sym_RBRACK] = ACTIONS(4689), + [anon_sym_COMMA] = ACTIONS(4689), + [anon_sym_EQ] = ACTIONS(4689), + [anon_sym_LBRACE] = ACTIONS(5513), + [anon_sym_RBRACE] = ACTIONS(4689), + [sym_word] = ACTIONS(4691), + [sym_placeholder] = ACTIONS(4689), + [anon_sym_PLUS] = ACTIONS(4691), + [anon_sym_DASH] = ACTIONS(4691), + [anon_sym_STAR] = ACTIONS(4691), + [anon_sym_SLASH] = ACTIONS(4691), + [anon_sym_CARET] = ACTIONS(4691), + [anon_sym__] = ACTIONS(4691), + [anon_sym_LT] = ACTIONS(4691), + [anon_sym_GT] = ACTIONS(4691), + [anon_sym_BANG] = ACTIONS(4691), + [anon_sym_PIPE] = ACTIONS(4691), + [anon_sym_COLON] = ACTIONS(4691), + [anon_sym_SQUOTE] = ACTIONS(4691), + [anon_sym_BSLASHusepackage] = ACTIONS(4691), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4691), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4691), + [anon_sym_BSLASHinclude] = ACTIONS(4691), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4691), + [anon_sym_BSLASHinput] = ACTIONS(4691), + [anon_sym_BSLASHsubfile] = ACTIONS(4691), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4691), + [anon_sym_BSLASHbibliography] = ACTIONS(4691), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4691), + [anon_sym_BSLASHincludesvg] = ACTIONS(4691), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4691), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4691), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4691), + [anon_sym_BSLASHimport] = ACTIONS(4691), + [anon_sym_BSLASHsubimport] = ACTIONS(4691), + [anon_sym_BSLASHinputfrom] = ACTIONS(4691), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4691), + [anon_sym_BSLASHincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4691), + [anon_sym_BSLASHcaption] = ACTIONS(4691), + [anon_sym_BSLASHcite] = ACTIONS(4691), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCite] = ACTIONS(4691), + [anon_sym_BSLASHnocite] = ACTIONS(4691), + [anon_sym_BSLASHcitet] = ACTIONS(4691), + [anon_sym_BSLASHcitep] = ACTIONS(4691), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteauthor] = ACTIONS(4691), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4691), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitetitle] = ACTIONS(4691), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteyear] = ACTIONS(4691), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4689), + [anon_sym_BSLASHcitedate] = ACTIONS(4691), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4689), + [anon_sym_BSLASHciteurl] = ACTIONS(4691), + [anon_sym_BSLASHfullcite] = ACTIONS(4691), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4691), + [anon_sym_BSLASHcitealt] = ACTIONS(4691), + [anon_sym_BSLASHcitealp] = ACTIONS(4691), + [anon_sym_BSLASHcitetext] = ACTIONS(4691), + [anon_sym_BSLASHparencite] = ACTIONS(4691), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHParencite] = ACTIONS(4691), + [anon_sym_BSLASHfootcite] = ACTIONS(4691), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4691), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4691), + [anon_sym_BSLASHtextcite] = ACTIONS(4691), + [anon_sym_BSLASHTextcite] = ACTIONS(4691), + [anon_sym_BSLASHsmartcite] = ACTIONS(4691), + [anon_sym_BSLASHSmartcite] = ACTIONS(4691), + [anon_sym_BSLASHsupercite] = ACTIONS(4691), + [anon_sym_BSLASHautocite] = ACTIONS(4691), + [anon_sym_BSLASHAutocite] = ACTIONS(4691), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4689), + [anon_sym_BSLASHvolcite] = ACTIONS(4691), + [anon_sym_BSLASHVolcite] = ACTIONS(4691), + [anon_sym_BSLASHpvolcite] = ACTIONS(4691), + [anon_sym_BSLASHPvolcite] = ACTIONS(4691), + [anon_sym_BSLASHfvolcite] = ACTIONS(4691), + [anon_sym_BSLASHftvolcite] = ACTIONS(4691), + [anon_sym_BSLASHsvolcite] = ACTIONS(4691), + [anon_sym_BSLASHSvolcite] = ACTIONS(4691), + [anon_sym_BSLASHtvolcite] = ACTIONS(4691), + [anon_sym_BSLASHTvolcite] = ACTIONS(4691), + [anon_sym_BSLASHavolcite] = ACTIONS(4691), + [anon_sym_BSLASHAvolcite] = ACTIONS(4691), + [anon_sym_BSLASHnotecite] = ACTIONS(4691), + [anon_sym_BSLASHNotecite] = ACTIONS(4691), + [anon_sym_BSLASHpnotecite] = ACTIONS(4691), + [anon_sym_BSLASHPnotecite] = ACTIONS(4691), + [anon_sym_BSLASHfnotecite] = ACTIONS(4691), + [anon_sym_BSLASHlabel] = ACTIONS(4691), + [anon_sym_BSLASHref] = ACTIONS(4691), + [anon_sym_BSLASHeqref] = ACTIONS(4691), + [anon_sym_BSLASHvref] = ACTIONS(4691), + [anon_sym_BSLASHVref] = ACTIONS(4691), + [anon_sym_BSLASHautoref] = ACTIONS(4691), + [anon_sym_BSLASHpageref] = ACTIONS(4691), + [anon_sym_BSLASHcref] = ACTIONS(4691), + [anon_sym_BSLASHCref] = ACTIONS(4691), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnameCref] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4691), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4691), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4691), + [anon_sym_BSLASHlabelcref] = ACTIONS(4691), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange] = ACTIONS(4691), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHCrefrange] = ACTIONS(4691), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4689), + [anon_sym_BSLASHnewlabel] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand] = ACTIONS(4691), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4691), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4691), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4689), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4691), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4689), + [anon_sym_BSLASHdef] = ACTIONS(4691), + [anon_sym_BSLASHlet] = ACTIONS(4691), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4691), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4691), + [anon_sym_BSLASHgls] = ACTIONS(4691), + [anon_sym_BSLASHGls] = ACTIONS(4691), + [anon_sym_BSLASHGLS] = ACTIONS(4691), + [anon_sym_BSLASHglspl] = ACTIONS(4691), + [anon_sym_BSLASHGlspl] = ACTIONS(4691), + [anon_sym_BSLASHGLSpl] = ACTIONS(4691), + [anon_sym_BSLASHglsdisp] = ACTIONS(4691), + [anon_sym_BSLASHglslink] = ACTIONS(4691), + [anon_sym_BSLASHglstext] = ACTIONS(4691), + [anon_sym_BSLASHGlstext] = ACTIONS(4691), + [anon_sym_BSLASHGLStext] = ACTIONS(4691), + [anon_sym_BSLASHglsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4691), + [anon_sym_BSLASHglsplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSplural] = ACTIONS(4691), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4691), + [anon_sym_BSLASHglsname] = ACTIONS(4691), + [anon_sym_BSLASHGlsname] = ACTIONS(4691), + [anon_sym_BSLASHGLSname] = ACTIONS(4691), + [anon_sym_BSLASHglssymbol] = ACTIONS(4691), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4691), + [anon_sym_BSLASHglsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4691), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4691), + [anon_sym_BSLASHglsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4691), + [anon_sym_BSLASHglsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4691), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4691), + [anon_sym_BSLASHglsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4691), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4691), + [anon_sym_BSLASHglsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4691), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4691), + [anon_sym_BSLASHnewacronym] = ACTIONS(4691), + [anon_sym_BSLASHacrshort] = ACTIONS(4691), + [anon_sym_BSLASHAcrshort] = ACTIONS(4691), + [anon_sym_BSLASHACRshort] = ACTIONS(4691), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4691), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4691), + [anon_sym_BSLASHacrlong] = ACTIONS(4691), + [anon_sym_BSLASHAcrlong] = ACTIONS(4691), + [anon_sym_BSLASHACRlong] = ACTIONS(4691), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4691), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4691), + [anon_sym_BSLASHacrfull] = ACTIONS(4691), + [anon_sym_BSLASHAcrfull] = ACTIONS(4691), + [anon_sym_BSLASHACRfull] = ACTIONS(4691), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4691), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4691), + [anon_sym_BSLASHacs] = ACTIONS(4691), + [anon_sym_BSLASHAcs] = ACTIONS(4691), + [anon_sym_BSLASHacsp] = ACTIONS(4691), + [anon_sym_BSLASHAcsp] = ACTIONS(4691), + [anon_sym_BSLASHacl] = ACTIONS(4691), + [anon_sym_BSLASHAcl] = ACTIONS(4691), + [anon_sym_BSLASHaclp] = ACTIONS(4691), + [anon_sym_BSLASHAclp] = ACTIONS(4691), + [anon_sym_BSLASHacf] = ACTIONS(4691), + [anon_sym_BSLASHAcf] = ACTIONS(4691), + [anon_sym_BSLASHacfp] = ACTIONS(4691), + [anon_sym_BSLASHAcfp] = ACTIONS(4691), + [anon_sym_BSLASHac] = ACTIONS(4691), + [anon_sym_BSLASHAc] = ACTIONS(4691), + [anon_sym_BSLASHacp] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4691), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4691), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4691), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4691), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4691), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4691), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4691), + [anon_sym_BSLASHcolor] = ACTIONS(4691), + [anon_sym_BSLASHcolorbox] = ACTIONS(4691), + [anon_sym_BSLASHtextcolor] = ACTIONS(4691), + [anon_sym_BSLASHpagecolor] = ACTIONS(4691), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4691), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4691), + }, + [1499] = { + [sym_command_name] = ACTIONS(4959), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4957), + [anon_sym_LBRACK] = ACTIONS(4957), + [anon_sym_RBRACK] = ACTIONS(4957), + [anon_sym_COMMA] = ACTIONS(4957), + [anon_sym_EQ] = ACTIONS(4957), + [anon_sym_LBRACE] = ACTIONS(4957), + [anon_sym_RBRACE] = ACTIONS(4957), + [sym_word] = ACTIONS(4959), + [sym_placeholder] = ACTIONS(4957), + [anon_sym_PLUS] = ACTIONS(4959), + [anon_sym_DASH] = ACTIONS(4959), + [anon_sym_STAR] = ACTIONS(4959), + [anon_sym_SLASH] = ACTIONS(4959), + [anon_sym_CARET] = ACTIONS(4959), + [anon_sym__] = ACTIONS(4959), + [anon_sym_LT] = ACTIONS(4959), + [anon_sym_GT] = ACTIONS(4959), + [anon_sym_BANG] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_COLON] = ACTIONS(4959), + [anon_sym_SQUOTE] = ACTIONS(4959), + [anon_sym_BSLASHusepackage] = ACTIONS(4959), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4959), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4959), + [anon_sym_BSLASHinclude] = ACTIONS(4959), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4959), + [anon_sym_BSLASHinput] = ACTIONS(4959), + [anon_sym_BSLASHsubfile] = ACTIONS(4959), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4959), + [anon_sym_BSLASHbibliography] = ACTIONS(4959), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4959), + [anon_sym_BSLASHincludesvg] = ACTIONS(4959), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4959), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4959), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4959), + [anon_sym_BSLASHimport] = ACTIONS(4959), + [anon_sym_BSLASHsubimport] = ACTIONS(4959), + [anon_sym_BSLASHinputfrom] = ACTIONS(4959), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4959), + [anon_sym_BSLASHincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4959), + [anon_sym_BSLASHcaption] = ACTIONS(4959), + [anon_sym_BSLASHcite] = ACTIONS(4959), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCite] = ACTIONS(4959), + [anon_sym_BSLASHnocite] = ACTIONS(4959), + [anon_sym_BSLASHcitet] = ACTIONS(4959), + [anon_sym_BSLASHcitep] = ACTIONS(4959), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteauthor] = ACTIONS(4959), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4959), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitetitle] = ACTIONS(4959), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteyear] = ACTIONS(4959), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4957), + [anon_sym_BSLASHcitedate] = ACTIONS(4959), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4957), + [anon_sym_BSLASHciteurl] = ACTIONS(4959), + [anon_sym_BSLASHfullcite] = ACTIONS(4959), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4959), + [anon_sym_BSLASHcitealt] = ACTIONS(4959), + [anon_sym_BSLASHcitealp] = ACTIONS(4959), + [anon_sym_BSLASHcitetext] = ACTIONS(4959), + [anon_sym_BSLASHparencite] = ACTIONS(4959), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHParencite] = ACTIONS(4959), + [anon_sym_BSLASHfootcite] = ACTIONS(4959), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4959), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4959), + [anon_sym_BSLASHtextcite] = ACTIONS(4959), + [anon_sym_BSLASHTextcite] = ACTIONS(4959), + [anon_sym_BSLASHsmartcite] = ACTIONS(4959), + [anon_sym_BSLASHSmartcite] = ACTIONS(4959), + [anon_sym_BSLASHsupercite] = ACTIONS(4959), + [anon_sym_BSLASHautocite] = ACTIONS(4959), + [anon_sym_BSLASHAutocite] = ACTIONS(4959), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4957), + [anon_sym_BSLASHvolcite] = ACTIONS(4959), + [anon_sym_BSLASHVolcite] = ACTIONS(4959), + [anon_sym_BSLASHpvolcite] = ACTIONS(4959), + [anon_sym_BSLASHPvolcite] = ACTIONS(4959), + [anon_sym_BSLASHfvolcite] = ACTIONS(4959), + [anon_sym_BSLASHftvolcite] = ACTIONS(4959), + [anon_sym_BSLASHsvolcite] = ACTIONS(4959), + [anon_sym_BSLASHSvolcite] = ACTIONS(4959), + [anon_sym_BSLASHtvolcite] = ACTIONS(4959), + [anon_sym_BSLASHTvolcite] = ACTIONS(4959), + [anon_sym_BSLASHavolcite] = ACTIONS(4959), + [anon_sym_BSLASHAvolcite] = ACTIONS(4959), + [anon_sym_BSLASHnotecite] = ACTIONS(4959), + [anon_sym_BSLASHNotecite] = ACTIONS(4959), + [anon_sym_BSLASHpnotecite] = ACTIONS(4959), + [anon_sym_BSLASHPnotecite] = ACTIONS(4959), + [anon_sym_BSLASHfnotecite] = ACTIONS(4959), + [anon_sym_BSLASHlabel] = ACTIONS(4959), + [anon_sym_BSLASHref] = ACTIONS(4959), + [anon_sym_BSLASHeqref] = ACTIONS(4959), + [anon_sym_BSLASHvref] = ACTIONS(4959), + [anon_sym_BSLASHVref] = ACTIONS(4959), + [anon_sym_BSLASHautoref] = ACTIONS(4959), + [anon_sym_BSLASHpageref] = ACTIONS(4959), + [anon_sym_BSLASHcref] = ACTIONS(4959), + [anon_sym_BSLASHCref] = ACTIONS(4959), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnameCref] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4959), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4959), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4959), + [anon_sym_BSLASHlabelcref] = ACTIONS(4959), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange] = ACTIONS(4959), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHCrefrange] = ACTIONS(4959), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4957), + [anon_sym_BSLASHnewlabel] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand] = ACTIONS(4959), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4959), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4959), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4957), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4959), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4957), + [anon_sym_BSLASHdef] = ACTIONS(4959), + [anon_sym_BSLASHlet] = ACTIONS(4959), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4959), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4959), + [anon_sym_BSLASHgls] = ACTIONS(4959), + [anon_sym_BSLASHGls] = ACTIONS(4959), + [anon_sym_BSLASHGLS] = ACTIONS(4959), + [anon_sym_BSLASHglspl] = ACTIONS(4959), + [anon_sym_BSLASHGlspl] = ACTIONS(4959), + [anon_sym_BSLASHGLSpl] = ACTIONS(4959), + [anon_sym_BSLASHglsdisp] = ACTIONS(4959), + [anon_sym_BSLASHglslink] = ACTIONS(4959), + [anon_sym_BSLASHglstext] = ACTIONS(4959), + [anon_sym_BSLASHGlstext] = ACTIONS(4959), + [anon_sym_BSLASHGLStext] = ACTIONS(4959), + [anon_sym_BSLASHglsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4959), + [anon_sym_BSLASHglsplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSplural] = ACTIONS(4959), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4959), + [anon_sym_BSLASHglsname] = ACTIONS(4959), + [anon_sym_BSLASHGlsname] = ACTIONS(4959), + [anon_sym_BSLASHGLSname] = ACTIONS(4959), + [anon_sym_BSLASHglssymbol] = ACTIONS(4959), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4959), + [anon_sym_BSLASHglsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4959), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4959), + [anon_sym_BSLASHglsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4959), + [anon_sym_BSLASHglsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4959), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4959), + [anon_sym_BSLASHglsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4959), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4959), + [anon_sym_BSLASHglsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4959), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4959), + [anon_sym_BSLASHnewacronym] = ACTIONS(4959), + [anon_sym_BSLASHacrshort] = ACTIONS(4959), + [anon_sym_BSLASHAcrshort] = ACTIONS(4959), + [anon_sym_BSLASHACRshort] = ACTIONS(4959), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4959), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4959), + [anon_sym_BSLASHacrlong] = ACTIONS(4959), + [anon_sym_BSLASHAcrlong] = ACTIONS(4959), + [anon_sym_BSLASHACRlong] = ACTIONS(4959), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4959), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4959), + [anon_sym_BSLASHacrfull] = ACTIONS(4959), + [anon_sym_BSLASHAcrfull] = ACTIONS(4959), + [anon_sym_BSLASHACRfull] = ACTIONS(4959), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4959), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4959), + [anon_sym_BSLASHacs] = ACTIONS(4959), + [anon_sym_BSLASHAcs] = ACTIONS(4959), + [anon_sym_BSLASHacsp] = ACTIONS(4959), + [anon_sym_BSLASHAcsp] = ACTIONS(4959), + [anon_sym_BSLASHacl] = ACTIONS(4959), + [anon_sym_BSLASHAcl] = ACTIONS(4959), + [anon_sym_BSLASHaclp] = ACTIONS(4959), + [anon_sym_BSLASHAclp] = ACTIONS(4959), + [anon_sym_BSLASHacf] = ACTIONS(4959), + [anon_sym_BSLASHAcf] = ACTIONS(4959), + [anon_sym_BSLASHacfp] = ACTIONS(4959), + [anon_sym_BSLASHAcfp] = ACTIONS(4959), + [anon_sym_BSLASHac] = ACTIONS(4959), + [anon_sym_BSLASHAc] = ACTIONS(4959), + [anon_sym_BSLASHacp] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4959), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4959), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4959), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4959), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4959), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4959), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4959), + [anon_sym_BSLASHcolor] = ACTIONS(4959), + [anon_sym_BSLASHcolorbox] = ACTIONS(4959), + [anon_sym_BSLASHtextcolor] = ACTIONS(4959), + [anon_sym_BSLASHpagecolor] = ACTIONS(4959), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4959), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4959), }, - [1529] = { - [sym_command_name] = ACTIONS(5057), + [1500] = { + [sym_command_name] = ACTIONS(5049), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5057), - [anon_sym_RBRACK] = ACTIONS(5055), - [anon_sym_COMMA] = ACTIONS(5055), - [anon_sym_EQ] = ACTIONS(5055), - [anon_sym_RBRACE] = ACTIONS(5055), - [sym_word] = ACTIONS(5057), - [sym_placeholder] = ACTIONS(5055), - [anon_sym_PLUS] = ACTIONS(5057), - [anon_sym_DASH] = ACTIONS(5057), - [anon_sym_STAR] = ACTIONS(5057), - [anon_sym_SLASH] = ACTIONS(5057), - [anon_sym_CARET] = ACTIONS(5057), - [anon_sym__] = ACTIONS(5057), - [anon_sym_LT] = ACTIONS(5057), - [anon_sym_GT] = ACTIONS(5057), - [anon_sym_BANG] = ACTIONS(5057), - [anon_sym_PIPE] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(5057), - [anon_sym_SQUOTE] = ACTIONS(5057), - [anon_sym_BSLASHusepackage] = ACTIONS(5057), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), - [anon_sym_BSLASHinclude] = ACTIONS(5057), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), - [anon_sym_BSLASHinput] = ACTIONS(5057), - [anon_sym_BSLASHsubfile] = ACTIONS(5057), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), - [anon_sym_BSLASHbibliography] = ACTIONS(5057), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), - [anon_sym_BSLASHincludesvg] = ACTIONS(5057), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), - [anon_sym_BSLASHimport] = ACTIONS(5057), - [anon_sym_BSLASHsubimport] = ACTIONS(5057), - [anon_sym_BSLASHinputfrom] = ACTIONS(5057), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), - [anon_sym_BSLASHincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), - [anon_sym_BSLASHcaption] = ACTIONS(5057), - [anon_sym_BSLASHcite] = ACTIONS(5057), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCite] = ACTIONS(5057), - [anon_sym_BSLASHnocite] = ACTIONS(5057), - [anon_sym_BSLASHcitet] = ACTIONS(5057), - [anon_sym_BSLASHcitep] = ACTIONS(5057), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteauthor] = ACTIONS(5057), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitetitle] = ACTIONS(5057), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteyear] = ACTIONS(5057), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), - [anon_sym_BSLASHcitedate] = ACTIONS(5057), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), - [anon_sym_BSLASHciteurl] = ACTIONS(5057), - [anon_sym_BSLASHfullcite] = ACTIONS(5057), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), - [anon_sym_BSLASHcitealt] = ACTIONS(5057), - [anon_sym_BSLASHcitealp] = ACTIONS(5057), - [anon_sym_BSLASHcitetext] = ACTIONS(5057), - [anon_sym_BSLASHparencite] = ACTIONS(5057), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHParencite] = ACTIONS(5057), - [anon_sym_BSLASHfootcite] = ACTIONS(5057), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), - [anon_sym_BSLASHtextcite] = ACTIONS(5057), - [anon_sym_BSLASHTextcite] = ACTIONS(5057), - [anon_sym_BSLASHsmartcite] = ACTIONS(5057), - [anon_sym_BSLASHSmartcite] = ACTIONS(5057), - [anon_sym_BSLASHsupercite] = ACTIONS(5057), - [anon_sym_BSLASHautocite] = ACTIONS(5057), - [anon_sym_BSLASHAutocite] = ACTIONS(5057), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), - [anon_sym_BSLASHvolcite] = ACTIONS(5057), - [anon_sym_BSLASHVolcite] = ACTIONS(5057), - [anon_sym_BSLASHpvolcite] = ACTIONS(5057), - [anon_sym_BSLASHPvolcite] = ACTIONS(5057), - [anon_sym_BSLASHfvolcite] = ACTIONS(5057), - [anon_sym_BSLASHftvolcite] = ACTIONS(5057), - [anon_sym_BSLASHsvolcite] = ACTIONS(5057), - [anon_sym_BSLASHSvolcite] = ACTIONS(5057), - [anon_sym_BSLASHtvolcite] = ACTIONS(5057), - [anon_sym_BSLASHTvolcite] = ACTIONS(5057), - [anon_sym_BSLASHavolcite] = ACTIONS(5057), - [anon_sym_BSLASHAvolcite] = ACTIONS(5057), - [anon_sym_BSLASHnotecite] = ACTIONS(5057), - [anon_sym_BSLASHNotecite] = ACTIONS(5057), - [anon_sym_BSLASHpnotecite] = ACTIONS(5057), - [anon_sym_BSLASHPnotecite] = ACTIONS(5057), - [anon_sym_BSLASHfnotecite] = ACTIONS(5057), - [anon_sym_BSLASHlabel] = ACTIONS(5057), - [anon_sym_BSLASHref] = ACTIONS(5057), - [anon_sym_BSLASHeqref] = ACTIONS(5057), - [anon_sym_BSLASHvref] = ACTIONS(5057), - [anon_sym_BSLASHVref] = ACTIONS(5057), - [anon_sym_BSLASHautoref] = ACTIONS(5057), - [anon_sym_BSLASHpageref] = ACTIONS(5057), - [anon_sym_BSLASHcref] = ACTIONS(5057), - [anon_sym_BSLASHCref] = ACTIONS(5057), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnameCref] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), - [anon_sym_BSLASHlabelcref] = ACTIONS(5057), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange] = ACTIONS(5057), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHCrefrange] = ACTIONS(5057), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), - [anon_sym_BSLASHnewlabel] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand] = ACTIONS(5057), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), - [anon_sym_BSLASHdef] = ACTIONS(5057), - [anon_sym_BSLASHlet] = ACTIONS(5057), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), - [anon_sym_BSLASHgls] = ACTIONS(5057), - [anon_sym_BSLASHGls] = ACTIONS(5057), - [anon_sym_BSLASHGLS] = ACTIONS(5057), - [anon_sym_BSLASHglspl] = ACTIONS(5057), - [anon_sym_BSLASHGlspl] = ACTIONS(5057), - [anon_sym_BSLASHGLSpl] = ACTIONS(5057), - [anon_sym_BSLASHglsdisp] = ACTIONS(5057), - [anon_sym_BSLASHglslink] = ACTIONS(5057), - [anon_sym_BSLASHglstext] = ACTIONS(5057), - [anon_sym_BSLASHGlstext] = ACTIONS(5057), - [anon_sym_BSLASHGLStext] = ACTIONS(5057), - [anon_sym_BSLASHglsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), - [anon_sym_BSLASHglsplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSplural] = ACTIONS(5057), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), - [anon_sym_BSLASHglsname] = ACTIONS(5057), - [anon_sym_BSLASHGlsname] = ACTIONS(5057), - [anon_sym_BSLASHGLSname] = ACTIONS(5057), - [anon_sym_BSLASHglssymbol] = ACTIONS(5057), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), - [anon_sym_BSLASHglsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), - [anon_sym_BSLASHglsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), - [anon_sym_BSLASHglsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), - [anon_sym_BSLASHglsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), - [anon_sym_BSLASHglsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), - [anon_sym_BSLASHnewacronym] = ACTIONS(5057), - [anon_sym_BSLASHacrshort] = ACTIONS(5057), - [anon_sym_BSLASHAcrshort] = ACTIONS(5057), - [anon_sym_BSLASHACRshort] = ACTIONS(5057), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), - [anon_sym_BSLASHacrlong] = ACTIONS(5057), - [anon_sym_BSLASHAcrlong] = ACTIONS(5057), - [anon_sym_BSLASHACRlong] = ACTIONS(5057), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), - [anon_sym_BSLASHacrfull] = ACTIONS(5057), - [anon_sym_BSLASHAcrfull] = ACTIONS(5057), - [anon_sym_BSLASHACRfull] = ACTIONS(5057), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), - [anon_sym_BSLASHacs] = ACTIONS(5057), - [anon_sym_BSLASHAcs] = ACTIONS(5057), - [anon_sym_BSLASHacsp] = ACTIONS(5057), - [anon_sym_BSLASHAcsp] = ACTIONS(5057), - [anon_sym_BSLASHacl] = ACTIONS(5057), - [anon_sym_BSLASHAcl] = ACTIONS(5057), - [anon_sym_BSLASHaclp] = ACTIONS(5057), - [anon_sym_BSLASHAclp] = ACTIONS(5057), - [anon_sym_BSLASHacf] = ACTIONS(5057), - [anon_sym_BSLASHAcf] = ACTIONS(5057), - [anon_sym_BSLASHacfp] = ACTIONS(5057), - [anon_sym_BSLASHAcfp] = ACTIONS(5057), - [anon_sym_BSLASHac] = ACTIONS(5057), - [anon_sym_BSLASHAc] = ACTIONS(5057), - [anon_sym_BSLASHacp] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), - [anon_sym_BSLASHcolor] = ACTIONS(5057), - [anon_sym_BSLASHcolorbox] = ACTIONS(5057), - [anon_sym_BSLASHtextcolor] = ACTIONS(5057), - [anon_sym_BSLASHpagecolor] = ACTIONS(5057), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), + [anon_sym_BSLASHiffalse] = ACTIONS(5049), + [anon_sym_LPAREN] = ACTIONS(5047), + [anon_sym_LBRACK] = ACTIONS(5047), + [anon_sym_RBRACK] = ACTIONS(5047), + [anon_sym_COMMA] = ACTIONS(5047), + [anon_sym_EQ] = ACTIONS(5047), + [anon_sym_LBRACE] = ACTIONS(5047), + [anon_sym_RBRACE] = ACTIONS(5047), + [sym_word] = ACTIONS(5049), + [sym_placeholder] = ACTIONS(5047), + [anon_sym_PLUS] = ACTIONS(5049), + [anon_sym_DASH] = ACTIONS(5049), + [anon_sym_STAR] = ACTIONS(5049), + [anon_sym_SLASH] = ACTIONS(5049), + [anon_sym_CARET] = ACTIONS(5049), + [anon_sym__] = ACTIONS(5049), + [anon_sym_LT] = ACTIONS(5049), + [anon_sym_GT] = ACTIONS(5049), + [anon_sym_BANG] = ACTIONS(5049), + [anon_sym_PIPE] = ACTIONS(5049), + [anon_sym_COLON] = ACTIONS(5049), + [anon_sym_SQUOTE] = ACTIONS(5049), + [anon_sym_BSLASHusepackage] = ACTIONS(5049), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5049), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5049), + [anon_sym_BSLASHinclude] = ACTIONS(5049), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5049), + [anon_sym_BSLASHinput] = ACTIONS(5049), + [anon_sym_BSLASHsubfile] = ACTIONS(5049), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5049), + [anon_sym_BSLASHbibliography] = ACTIONS(5049), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5049), + [anon_sym_BSLASHincludesvg] = ACTIONS(5049), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5049), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5049), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5049), + [anon_sym_BSLASHimport] = ACTIONS(5049), + [anon_sym_BSLASHsubimport] = ACTIONS(5049), + [anon_sym_BSLASHinputfrom] = ACTIONS(5049), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5049), + [anon_sym_BSLASHincludefrom] = ACTIONS(5049), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5049), + [anon_sym_BSLASHcaption] = ACTIONS(5049), + [anon_sym_BSLASHcite] = ACTIONS(5049), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCite] = ACTIONS(5049), + [anon_sym_BSLASHnocite] = ACTIONS(5049), + [anon_sym_BSLASHcitet] = ACTIONS(5049), + [anon_sym_BSLASHcitep] = ACTIONS(5049), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteauthor] = ACTIONS(5049), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5049), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitetitle] = ACTIONS(5049), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteyear] = ACTIONS(5049), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5047), + [anon_sym_BSLASHcitedate] = ACTIONS(5049), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5047), + [anon_sym_BSLASHciteurl] = ACTIONS(5049), + [anon_sym_BSLASHfullcite] = ACTIONS(5049), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5049), + [anon_sym_BSLASHcitealt] = ACTIONS(5049), + [anon_sym_BSLASHcitealp] = ACTIONS(5049), + [anon_sym_BSLASHcitetext] = ACTIONS(5049), + [anon_sym_BSLASHparencite] = ACTIONS(5049), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHParencite] = ACTIONS(5049), + [anon_sym_BSLASHfootcite] = ACTIONS(5049), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5049), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5049), + [anon_sym_BSLASHtextcite] = ACTIONS(5049), + [anon_sym_BSLASHTextcite] = ACTIONS(5049), + [anon_sym_BSLASHsmartcite] = ACTIONS(5049), + [anon_sym_BSLASHSmartcite] = ACTIONS(5049), + [anon_sym_BSLASHsupercite] = ACTIONS(5049), + [anon_sym_BSLASHautocite] = ACTIONS(5049), + [anon_sym_BSLASHAutocite] = ACTIONS(5049), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5047), + [anon_sym_BSLASHvolcite] = ACTIONS(5049), + [anon_sym_BSLASHVolcite] = ACTIONS(5049), + [anon_sym_BSLASHpvolcite] = ACTIONS(5049), + [anon_sym_BSLASHPvolcite] = ACTIONS(5049), + [anon_sym_BSLASHfvolcite] = ACTIONS(5049), + [anon_sym_BSLASHftvolcite] = ACTIONS(5049), + [anon_sym_BSLASHsvolcite] = ACTIONS(5049), + [anon_sym_BSLASHSvolcite] = ACTIONS(5049), + [anon_sym_BSLASHtvolcite] = ACTIONS(5049), + [anon_sym_BSLASHTvolcite] = ACTIONS(5049), + [anon_sym_BSLASHavolcite] = ACTIONS(5049), + [anon_sym_BSLASHAvolcite] = ACTIONS(5049), + [anon_sym_BSLASHnotecite] = ACTIONS(5049), + [anon_sym_BSLASHNotecite] = ACTIONS(5049), + [anon_sym_BSLASHpnotecite] = ACTIONS(5049), + [anon_sym_BSLASHPnotecite] = ACTIONS(5049), + [anon_sym_BSLASHfnotecite] = ACTIONS(5049), + [anon_sym_BSLASHlabel] = ACTIONS(5049), + [anon_sym_BSLASHref] = ACTIONS(5049), + [anon_sym_BSLASHeqref] = ACTIONS(5049), + [anon_sym_BSLASHvref] = ACTIONS(5049), + [anon_sym_BSLASHVref] = ACTIONS(5049), + [anon_sym_BSLASHautoref] = ACTIONS(5049), + [anon_sym_BSLASHpageref] = ACTIONS(5049), + [anon_sym_BSLASHcref] = ACTIONS(5049), + [anon_sym_BSLASHCref] = ACTIONS(5049), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5047), + [anon_sym_BSLASHnamecref] = ACTIONS(5049), + [anon_sym_BSLASHnameCref] = ACTIONS(5049), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5049), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5049), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5049), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5049), + [anon_sym_BSLASHlabelcref] = ACTIONS(5049), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5049), + [anon_sym_BSLASHcrefrange] = ACTIONS(5049), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5047), + [anon_sym_BSLASHCrefrange] = ACTIONS(5049), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5047), + [anon_sym_BSLASHnewlabel] = ACTIONS(5049), + [anon_sym_BSLASHnewcommand] = ACTIONS(5049), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5049), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5049), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5047), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5049), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5047), + [anon_sym_BSLASHdef] = ACTIONS(5049), + [anon_sym_BSLASHlet] = ACTIONS(5049), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5049), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5049), + [anon_sym_BSLASHgls] = ACTIONS(5049), + [anon_sym_BSLASHGls] = ACTIONS(5049), + [anon_sym_BSLASHGLS] = ACTIONS(5049), + [anon_sym_BSLASHglspl] = ACTIONS(5049), + [anon_sym_BSLASHGlspl] = ACTIONS(5049), + [anon_sym_BSLASHGLSpl] = ACTIONS(5049), + [anon_sym_BSLASHglsdisp] = ACTIONS(5049), + [anon_sym_BSLASHglslink] = ACTIONS(5049), + [anon_sym_BSLASHglstext] = ACTIONS(5049), + [anon_sym_BSLASHGlstext] = ACTIONS(5049), + [anon_sym_BSLASHGLStext] = ACTIONS(5049), + [anon_sym_BSLASHglsfirst] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5049), + [anon_sym_BSLASHglsplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSplural] = ACTIONS(5049), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5049), + [anon_sym_BSLASHglsname] = ACTIONS(5049), + [anon_sym_BSLASHGlsname] = ACTIONS(5049), + [anon_sym_BSLASHGLSname] = ACTIONS(5049), + [anon_sym_BSLASHglssymbol] = ACTIONS(5049), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5049), + [anon_sym_BSLASHglsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5049), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5049), + [anon_sym_BSLASHglsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5049), + [anon_sym_BSLASHglsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5049), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5049), + [anon_sym_BSLASHglsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5049), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5049), + [anon_sym_BSLASHglsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5049), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5049), + [anon_sym_BSLASHnewacronym] = ACTIONS(5049), + [anon_sym_BSLASHacrshort] = ACTIONS(5049), + [anon_sym_BSLASHAcrshort] = ACTIONS(5049), + [anon_sym_BSLASHACRshort] = ACTIONS(5049), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5049), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5049), + [anon_sym_BSLASHacrlong] = ACTIONS(5049), + [anon_sym_BSLASHAcrlong] = ACTIONS(5049), + [anon_sym_BSLASHACRlong] = ACTIONS(5049), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5049), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5049), + [anon_sym_BSLASHacrfull] = ACTIONS(5049), + [anon_sym_BSLASHAcrfull] = ACTIONS(5049), + [anon_sym_BSLASHACRfull] = ACTIONS(5049), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5049), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5049), + [anon_sym_BSLASHacs] = ACTIONS(5049), + [anon_sym_BSLASHAcs] = ACTIONS(5049), + [anon_sym_BSLASHacsp] = ACTIONS(5049), + [anon_sym_BSLASHAcsp] = ACTIONS(5049), + [anon_sym_BSLASHacl] = ACTIONS(5049), + [anon_sym_BSLASHAcl] = ACTIONS(5049), + [anon_sym_BSLASHaclp] = ACTIONS(5049), + [anon_sym_BSLASHAclp] = ACTIONS(5049), + [anon_sym_BSLASHacf] = ACTIONS(5049), + [anon_sym_BSLASHAcf] = ACTIONS(5049), + [anon_sym_BSLASHacfp] = ACTIONS(5049), + [anon_sym_BSLASHAcfp] = ACTIONS(5049), + [anon_sym_BSLASHac] = ACTIONS(5049), + [anon_sym_BSLASHAc] = ACTIONS(5049), + [anon_sym_BSLASHacp] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5049), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5049), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5049), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5049), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5049), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5049), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5049), + [anon_sym_BSLASHcolor] = ACTIONS(5049), + [anon_sym_BSLASHcolorbox] = ACTIONS(5049), + [anon_sym_BSLASHtextcolor] = ACTIONS(5049), + [anon_sym_BSLASHpagecolor] = ACTIONS(5049), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5049), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5049), }, - [1530] = { - [sym_command_name] = ACTIONS(5061), + [1501] = { + [sym_command_name] = ACTIONS(4925), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4925), + [anon_sym_LPAREN] = ACTIONS(4923), + [anon_sym_LBRACK] = ACTIONS(4923), + [anon_sym_RBRACK] = ACTIONS(4923), + [anon_sym_COMMA] = ACTIONS(4923), + [anon_sym_EQ] = ACTIONS(4923), + [anon_sym_LBRACE] = ACTIONS(4923), + [anon_sym_RBRACE] = ACTIONS(4923), + [sym_word] = ACTIONS(4925), + [sym_placeholder] = ACTIONS(4923), + [anon_sym_PLUS] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_SLASH] = ACTIONS(4925), + [anon_sym_CARET] = ACTIONS(4925), + [anon_sym__] = ACTIONS(4925), + [anon_sym_LT] = ACTIONS(4925), + [anon_sym_GT] = ACTIONS(4925), + [anon_sym_BANG] = ACTIONS(4925), + [anon_sym_PIPE] = ACTIONS(4925), + [anon_sym_COLON] = ACTIONS(4925), + [anon_sym_SQUOTE] = ACTIONS(4925), + [anon_sym_BSLASHusepackage] = ACTIONS(4925), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4925), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4925), + [anon_sym_BSLASHinclude] = ACTIONS(4925), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4925), + [anon_sym_BSLASHinput] = ACTIONS(4925), + [anon_sym_BSLASHsubfile] = ACTIONS(4925), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4925), + [anon_sym_BSLASHbibliography] = ACTIONS(4925), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4925), + [anon_sym_BSLASHincludesvg] = ACTIONS(4925), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4925), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4925), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4925), + [anon_sym_BSLASHimport] = ACTIONS(4925), + [anon_sym_BSLASHsubimport] = ACTIONS(4925), + [anon_sym_BSLASHinputfrom] = ACTIONS(4925), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4925), + [anon_sym_BSLASHincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4925), + [anon_sym_BSLASHcaption] = ACTIONS(4925), + [anon_sym_BSLASHcite] = ACTIONS(4925), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCite] = ACTIONS(4925), + [anon_sym_BSLASHnocite] = ACTIONS(4925), + [anon_sym_BSLASHcitet] = ACTIONS(4925), + [anon_sym_BSLASHcitep] = ACTIONS(4925), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteauthor] = ACTIONS(4925), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4925), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitetitle] = ACTIONS(4925), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteyear] = ACTIONS(4925), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4923), + [anon_sym_BSLASHcitedate] = ACTIONS(4925), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4923), + [anon_sym_BSLASHciteurl] = ACTIONS(4925), + [anon_sym_BSLASHfullcite] = ACTIONS(4925), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4925), + [anon_sym_BSLASHcitealt] = ACTIONS(4925), + [anon_sym_BSLASHcitealp] = ACTIONS(4925), + [anon_sym_BSLASHcitetext] = ACTIONS(4925), + [anon_sym_BSLASHparencite] = ACTIONS(4925), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHParencite] = ACTIONS(4925), + [anon_sym_BSLASHfootcite] = ACTIONS(4925), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4925), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4925), + [anon_sym_BSLASHtextcite] = ACTIONS(4925), + [anon_sym_BSLASHTextcite] = ACTIONS(4925), + [anon_sym_BSLASHsmartcite] = ACTIONS(4925), + [anon_sym_BSLASHSmartcite] = ACTIONS(4925), + [anon_sym_BSLASHsupercite] = ACTIONS(4925), + [anon_sym_BSLASHautocite] = ACTIONS(4925), + [anon_sym_BSLASHAutocite] = ACTIONS(4925), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4923), + [anon_sym_BSLASHvolcite] = ACTIONS(4925), + [anon_sym_BSLASHVolcite] = ACTIONS(4925), + [anon_sym_BSLASHpvolcite] = ACTIONS(4925), + [anon_sym_BSLASHPvolcite] = ACTIONS(4925), + [anon_sym_BSLASHfvolcite] = ACTIONS(4925), + [anon_sym_BSLASHftvolcite] = ACTIONS(4925), + [anon_sym_BSLASHsvolcite] = ACTIONS(4925), + [anon_sym_BSLASHSvolcite] = ACTIONS(4925), + [anon_sym_BSLASHtvolcite] = ACTIONS(4925), + [anon_sym_BSLASHTvolcite] = ACTIONS(4925), + [anon_sym_BSLASHavolcite] = ACTIONS(4925), + [anon_sym_BSLASHAvolcite] = ACTIONS(4925), + [anon_sym_BSLASHnotecite] = ACTIONS(4925), + [anon_sym_BSLASHNotecite] = ACTIONS(4925), + [anon_sym_BSLASHpnotecite] = ACTIONS(4925), + [anon_sym_BSLASHPnotecite] = ACTIONS(4925), + [anon_sym_BSLASHfnotecite] = ACTIONS(4925), + [anon_sym_BSLASHlabel] = ACTIONS(4925), + [anon_sym_BSLASHref] = ACTIONS(4925), + [anon_sym_BSLASHeqref] = ACTIONS(4925), + [anon_sym_BSLASHvref] = ACTIONS(4925), + [anon_sym_BSLASHVref] = ACTIONS(4925), + [anon_sym_BSLASHautoref] = ACTIONS(4925), + [anon_sym_BSLASHpageref] = ACTIONS(4925), + [anon_sym_BSLASHcref] = ACTIONS(4925), + [anon_sym_BSLASHCref] = ACTIONS(4925), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnameCref] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4925), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4925), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4925), + [anon_sym_BSLASHlabelcref] = ACTIONS(4925), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange] = ACTIONS(4925), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHCrefrange] = ACTIONS(4925), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4923), + [anon_sym_BSLASHnewlabel] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand] = ACTIONS(4925), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4925), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4925), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4923), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4925), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4923), + [anon_sym_BSLASHdef] = ACTIONS(4925), + [anon_sym_BSLASHlet] = ACTIONS(4925), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4925), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4925), + [anon_sym_BSLASHgls] = ACTIONS(4925), + [anon_sym_BSLASHGls] = ACTIONS(4925), + [anon_sym_BSLASHGLS] = ACTIONS(4925), + [anon_sym_BSLASHglspl] = ACTIONS(4925), + [anon_sym_BSLASHGlspl] = ACTIONS(4925), + [anon_sym_BSLASHGLSpl] = ACTIONS(4925), + [anon_sym_BSLASHglsdisp] = ACTIONS(4925), + [anon_sym_BSLASHglslink] = ACTIONS(4925), + [anon_sym_BSLASHglstext] = ACTIONS(4925), + [anon_sym_BSLASHGlstext] = ACTIONS(4925), + [anon_sym_BSLASHGLStext] = ACTIONS(4925), + [anon_sym_BSLASHglsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4925), + [anon_sym_BSLASHglsplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSplural] = ACTIONS(4925), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4925), + [anon_sym_BSLASHglsname] = ACTIONS(4925), + [anon_sym_BSLASHGlsname] = ACTIONS(4925), + [anon_sym_BSLASHGLSname] = ACTIONS(4925), + [anon_sym_BSLASHglssymbol] = ACTIONS(4925), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4925), + [anon_sym_BSLASHglsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4925), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4925), + [anon_sym_BSLASHglsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4925), + [anon_sym_BSLASHglsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4925), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4925), + [anon_sym_BSLASHglsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4925), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4925), + [anon_sym_BSLASHglsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4925), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4925), + [anon_sym_BSLASHnewacronym] = ACTIONS(4925), + [anon_sym_BSLASHacrshort] = ACTIONS(4925), + [anon_sym_BSLASHAcrshort] = ACTIONS(4925), + [anon_sym_BSLASHACRshort] = ACTIONS(4925), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4925), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4925), + [anon_sym_BSLASHacrlong] = ACTIONS(4925), + [anon_sym_BSLASHAcrlong] = ACTIONS(4925), + [anon_sym_BSLASHACRlong] = ACTIONS(4925), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4925), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4925), + [anon_sym_BSLASHacrfull] = ACTIONS(4925), + [anon_sym_BSLASHAcrfull] = ACTIONS(4925), + [anon_sym_BSLASHACRfull] = ACTIONS(4925), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4925), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4925), + [anon_sym_BSLASHacs] = ACTIONS(4925), + [anon_sym_BSLASHAcs] = ACTIONS(4925), + [anon_sym_BSLASHacsp] = ACTIONS(4925), + [anon_sym_BSLASHAcsp] = ACTIONS(4925), + [anon_sym_BSLASHacl] = ACTIONS(4925), + [anon_sym_BSLASHAcl] = ACTIONS(4925), + [anon_sym_BSLASHaclp] = ACTIONS(4925), + [anon_sym_BSLASHAclp] = ACTIONS(4925), + [anon_sym_BSLASHacf] = ACTIONS(4925), + [anon_sym_BSLASHAcf] = ACTIONS(4925), + [anon_sym_BSLASHacfp] = ACTIONS(4925), + [anon_sym_BSLASHAcfp] = ACTIONS(4925), + [anon_sym_BSLASHac] = ACTIONS(4925), + [anon_sym_BSLASHAc] = ACTIONS(4925), + [anon_sym_BSLASHacp] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4925), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4925), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4925), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4925), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4925), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4925), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4925), + [anon_sym_BSLASHcolor] = ACTIONS(4925), + [anon_sym_BSLASHcolorbox] = ACTIONS(4925), + [anon_sym_BSLASHtextcolor] = ACTIONS(4925), + [anon_sym_BSLASHpagecolor] = ACTIONS(4925), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4925), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4925), + }, + [1502] = { + [sym_command_name] = ACTIONS(4973), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4973), + [anon_sym_LPAREN] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), + [anon_sym_RBRACK] = ACTIONS(4971), + [anon_sym_COMMA] = ACTIONS(4971), + [anon_sym_EQ] = ACTIONS(4971), + [anon_sym_LBRACE] = ACTIONS(4971), + [anon_sym_RBRACE] = ACTIONS(4971), + [sym_word] = ACTIONS(4973), + [sym_placeholder] = ACTIONS(4971), + [anon_sym_PLUS] = ACTIONS(4973), + [anon_sym_DASH] = ACTIONS(4973), + [anon_sym_STAR] = ACTIONS(4973), + [anon_sym_SLASH] = ACTIONS(4973), + [anon_sym_CARET] = ACTIONS(4973), + [anon_sym__] = ACTIONS(4973), + [anon_sym_LT] = ACTIONS(4973), + [anon_sym_GT] = ACTIONS(4973), + [anon_sym_BANG] = ACTIONS(4973), + [anon_sym_PIPE] = ACTIONS(4973), + [anon_sym_COLON] = ACTIONS(4973), + [anon_sym_SQUOTE] = ACTIONS(4973), + [anon_sym_BSLASHusepackage] = ACTIONS(4973), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4973), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4973), + [anon_sym_BSLASHinclude] = ACTIONS(4973), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4973), + [anon_sym_BSLASHinput] = ACTIONS(4973), + [anon_sym_BSLASHsubfile] = ACTIONS(4973), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4973), + [anon_sym_BSLASHbibliography] = ACTIONS(4973), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4973), + [anon_sym_BSLASHincludesvg] = ACTIONS(4973), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4973), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4973), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4973), + [anon_sym_BSLASHimport] = ACTIONS(4973), + [anon_sym_BSLASHsubimport] = ACTIONS(4973), + [anon_sym_BSLASHinputfrom] = ACTIONS(4973), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4973), + [anon_sym_BSLASHincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4973), + [anon_sym_BSLASHcaption] = ACTIONS(4973), + [anon_sym_BSLASHcite] = ACTIONS(4973), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCite] = ACTIONS(4973), + [anon_sym_BSLASHnocite] = ACTIONS(4973), + [anon_sym_BSLASHcitet] = ACTIONS(4973), + [anon_sym_BSLASHcitep] = ACTIONS(4973), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteauthor] = ACTIONS(4973), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4973), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitetitle] = ACTIONS(4973), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteyear] = ACTIONS(4973), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4971), + [anon_sym_BSLASHcitedate] = ACTIONS(4973), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4971), + [anon_sym_BSLASHciteurl] = ACTIONS(4973), + [anon_sym_BSLASHfullcite] = ACTIONS(4973), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4973), + [anon_sym_BSLASHcitealt] = ACTIONS(4973), + [anon_sym_BSLASHcitealp] = ACTIONS(4973), + [anon_sym_BSLASHcitetext] = ACTIONS(4973), + [anon_sym_BSLASHparencite] = ACTIONS(4973), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHParencite] = ACTIONS(4973), + [anon_sym_BSLASHfootcite] = ACTIONS(4973), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4973), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4973), + [anon_sym_BSLASHtextcite] = ACTIONS(4973), + [anon_sym_BSLASHTextcite] = ACTIONS(4973), + [anon_sym_BSLASHsmartcite] = ACTIONS(4973), + [anon_sym_BSLASHSmartcite] = ACTIONS(4973), + [anon_sym_BSLASHsupercite] = ACTIONS(4973), + [anon_sym_BSLASHautocite] = ACTIONS(4973), + [anon_sym_BSLASHAutocite] = ACTIONS(4973), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4971), + [anon_sym_BSLASHvolcite] = ACTIONS(4973), + [anon_sym_BSLASHVolcite] = ACTIONS(4973), + [anon_sym_BSLASHpvolcite] = ACTIONS(4973), + [anon_sym_BSLASHPvolcite] = ACTIONS(4973), + [anon_sym_BSLASHfvolcite] = ACTIONS(4973), + [anon_sym_BSLASHftvolcite] = ACTIONS(4973), + [anon_sym_BSLASHsvolcite] = ACTIONS(4973), + [anon_sym_BSLASHSvolcite] = ACTIONS(4973), + [anon_sym_BSLASHtvolcite] = ACTIONS(4973), + [anon_sym_BSLASHTvolcite] = ACTIONS(4973), + [anon_sym_BSLASHavolcite] = ACTIONS(4973), + [anon_sym_BSLASHAvolcite] = ACTIONS(4973), + [anon_sym_BSLASHnotecite] = ACTIONS(4973), + [anon_sym_BSLASHNotecite] = ACTIONS(4973), + [anon_sym_BSLASHpnotecite] = ACTIONS(4973), + [anon_sym_BSLASHPnotecite] = ACTIONS(4973), + [anon_sym_BSLASHfnotecite] = ACTIONS(4973), + [anon_sym_BSLASHlabel] = ACTIONS(4973), + [anon_sym_BSLASHref] = ACTIONS(4973), + [anon_sym_BSLASHeqref] = ACTIONS(4973), + [anon_sym_BSLASHvref] = ACTIONS(4973), + [anon_sym_BSLASHVref] = ACTIONS(4973), + [anon_sym_BSLASHautoref] = ACTIONS(4973), + [anon_sym_BSLASHpageref] = ACTIONS(4973), + [anon_sym_BSLASHcref] = ACTIONS(4973), + [anon_sym_BSLASHCref] = ACTIONS(4973), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnameCref] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4973), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4973), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4973), + [anon_sym_BSLASHlabelcref] = ACTIONS(4973), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange] = ACTIONS(4973), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHCrefrange] = ACTIONS(4973), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4971), + [anon_sym_BSLASHnewlabel] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand] = ACTIONS(4973), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4973), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4973), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4971), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4973), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4971), + [anon_sym_BSLASHdef] = ACTIONS(4973), + [anon_sym_BSLASHlet] = ACTIONS(4973), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4973), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4973), + [anon_sym_BSLASHgls] = ACTIONS(4973), + [anon_sym_BSLASHGls] = ACTIONS(4973), + [anon_sym_BSLASHGLS] = ACTIONS(4973), + [anon_sym_BSLASHglspl] = ACTIONS(4973), + [anon_sym_BSLASHGlspl] = ACTIONS(4973), + [anon_sym_BSLASHGLSpl] = ACTIONS(4973), + [anon_sym_BSLASHglsdisp] = ACTIONS(4973), + [anon_sym_BSLASHglslink] = ACTIONS(4973), + [anon_sym_BSLASHglstext] = ACTIONS(4973), + [anon_sym_BSLASHGlstext] = ACTIONS(4973), + [anon_sym_BSLASHGLStext] = ACTIONS(4973), + [anon_sym_BSLASHglsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4973), + [anon_sym_BSLASHglsplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSplural] = ACTIONS(4973), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4973), + [anon_sym_BSLASHglsname] = ACTIONS(4973), + [anon_sym_BSLASHGlsname] = ACTIONS(4973), + [anon_sym_BSLASHGLSname] = ACTIONS(4973), + [anon_sym_BSLASHglssymbol] = ACTIONS(4973), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4973), + [anon_sym_BSLASHglsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4973), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4973), + [anon_sym_BSLASHglsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4973), + [anon_sym_BSLASHglsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4973), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4973), + [anon_sym_BSLASHglsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4973), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4973), + [anon_sym_BSLASHglsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4973), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4973), + [anon_sym_BSLASHnewacronym] = ACTIONS(4973), + [anon_sym_BSLASHacrshort] = ACTIONS(4973), + [anon_sym_BSLASHAcrshort] = ACTIONS(4973), + [anon_sym_BSLASHACRshort] = ACTIONS(4973), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4973), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4973), + [anon_sym_BSLASHacrlong] = ACTIONS(4973), + [anon_sym_BSLASHAcrlong] = ACTIONS(4973), + [anon_sym_BSLASHACRlong] = ACTIONS(4973), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4973), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4973), + [anon_sym_BSLASHacrfull] = ACTIONS(4973), + [anon_sym_BSLASHAcrfull] = ACTIONS(4973), + [anon_sym_BSLASHACRfull] = ACTIONS(4973), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4973), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4973), + [anon_sym_BSLASHacs] = ACTIONS(4973), + [anon_sym_BSLASHAcs] = ACTIONS(4973), + [anon_sym_BSLASHacsp] = ACTIONS(4973), + [anon_sym_BSLASHAcsp] = ACTIONS(4973), + [anon_sym_BSLASHacl] = ACTIONS(4973), + [anon_sym_BSLASHAcl] = ACTIONS(4973), + [anon_sym_BSLASHaclp] = ACTIONS(4973), + [anon_sym_BSLASHAclp] = ACTIONS(4973), + [anon_sym_BSLASHacf] = ACTIONS(4973), + [anon_sym_BSLASHAcf] = ACTIONS(4973), + [anon_sym_BSLASHacfp] = ACTIONS(4973), + [anon_sym_BSLASHAcfp] = ACTIONS(4973), + [anon_sym_BSLASHac] = ACTIONS(4973), + [anon_sym_BSLASHAc] = ACTIONS(4973), + [anon_sym_BSLASHacp] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4973), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4973), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4973), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4973), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4973), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4973), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4973), + [anon_sym_BSLASHcolor] = ACTIONS(4973), + [anon_sym_BSLASHcolorbox] = ACTIONS(4973), + [anon_sym_BSLASHtextcolor] = ACTIONS(4973), + [anon_sym_BSLASHpagecolor] = ACTIONS(4973), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4973), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4973), + }, + [1503] = { + [sym_command_name] = ACTIONS(5135), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5061), - [anon_sym_RBRACK] = ACTIONS(5059), - [anon_sym_COMMA] = ACTIONS(5059), - [anon_sym_EQ] = ACTIONS(5059), - [anon_sym_RBRACE] = ACTIONS(5059), - [sym_word] = ACTIONS(5061), - [sym_placeholder] = ACTIONS(5059), - [anon_sym_PLUS] = ACTIONS(5061), - [anon_sym_DASH] = ACTIONS(5061), - [anon_sym_STAR] = ACTIONS(5061), - [anon_sym_SLASH] = ACTIONS(5061), - [anon_sym_CARET] = ACTIONS(5061), - [anon_sym__] = ACTIONS(5061), - [anon_sym_LT] = ACTIONS(5061), - [anon_sym_GT] = ACTIONS(5061), - [anon_sym_BANG] = ACTIONS(5061), - [anon_sym_PIPE] = ACTIONS(5061), - [anon_sym_COLON] = ACTIONS(5061), - [anon_sym_SQUOTE] = ACTIONS(5061), - [anon_sym_BSLASHusepackage] = ACTIONS(5061), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5061), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5061), - [anon_sym_BSLASHinclude] = ACTIONS(5061), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5061), - [anon_sym_BSLASHinput] = ACTIONS(5061), - [anon_sym_BSLASHsubfile] = ACTIONS(5061), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5061), - [anon_sym_BSLASHbibliography] = ACTIONS(5061), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5061), - [anon_sym_BSLASHincludesvg] = ACTIONS(5061), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5061), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5061), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5061), - [anon_sym_BSLASHimport] = ACTIONS(5061), - [anon_sym_BSLASHsubimport] = ACTIONS(5061), - [anon_sym_BSLASHinputfrom] = ACTIONS(5061), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5061), - [anon_sym_BSLASHincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5061), - [anon_sym_BSLASHcaption] = ACTIONS(5061), - [anon_sym_BSLASHcite] = ACTIONS(5061), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCite] = ACTIONS(5061), - [anon_sym_BSLASHnocite] = ACTIONS(5061), - [anon_sym_BSLASHcitet] = ACTIONS(5061), - [anon_sym_BSLASHcitep] = ACTIONS(5061), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteauthor] = ACTIONS(5061), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5061), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitetitle] = ACTIONS(5061), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteyear] = ACTIONS(5061), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5059), - [anon_sym_BSLASHcitedate] = ACTIONS(5061), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5059), - [anon_sym_BSLASHciteurl] = ACTIONS(5061), - [anon_sym_BSLASHfullcite] = ACTIONS(5061), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5061), - [anon_sym_BSLASHcitealt] = ACTIONS(5061), - [anon_sym_BSLASHcitealp] = ACTIONS(5061), - [anon_sym_BSLASHcitetext] = ACTIONS(5061), - [anon_sym_BSLASHparencite] = ACTIONS(5061), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHParencite] = ACTIONS(5061), - [anon_sym_BSLASHfootcite] = ACTIONS(5061), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5061), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5061), - [anon_sym_BSLASHtextcite] = ACTIONS(5061), - [anon_sym_BSLASHTextcite] = ACTIONS(5061), - [anon_sym_BSLASHsmartcite] = ACTIONS(5061), - [anon_sym_BSLASHSmartcite] = ACTIONS(5061), - [anon_sym_BSLASHsupercite] = ACTIONS(5061), - [anon_sym_BSLASHautocite] = ACTIONS(5061), - [anon_sym_BSLASHAutocite] = ACTIONS(5061), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5059), - [anon_sym_BSLASHvolcite] = ACTIONS(5061), - [anon_sym_BSLASHVolcite] = ACTIONS(5061), - [anon_sym_BSLASHpvolcite] = ACTIONS(5061), - [anon_sym_BSLASHPvolcite] = ACTIONS(5061), - [anon_sym_BSLASHfvolcite] = ACTIONS(5061), - [anon_sym_BSLASHftvolcite] = ACTIONS(5061), - [anon_sym_BSLASHsvolcite] = ACTIONS(5061), - [anon_sym_BSLASHSvolcite] = ACTIONS(5061), - [anon_sym_BSLASHtvolcite] = ACTIONS(5061), - [anon_sym_BSLASHTvolcite] = ACTIONS(5061), - [anon_sym_BSLASHavolcite] = ACTIONS(5061), - [anon_sym_BSLASHAvolcite] = ACTIONS(5061), - [anon_sym_BSLASHnotecite] = ACTIONS(5061), - [anon_sym_BSLASHNotecite] = ACTIONS(5061), - [anon_sym_BSLASHpnotecite] = ACTIONS(5061), - [anon_sym_BSLASHPnotecite] = ACTIONS(5061), - [anon_sym_BSLASHfnotecite] = ACTIONS(5061), - [anon_sym_BSLASHlabel] = ACTIONS(5061), - [anon_sym_BSLASHref] = ACTIONS(5061), - [anon_sym_BSLASHeqref] = ACTIONS(5061), - [anon_sym_BSLASHvref] = ACTIONS(5061), - [anon_sym_BSLASHVref] = ACTIONS(5061), - [anon_sym_BSLASHautoref] = ACTIONS(5061), - [anon_sym_BSLASHpageref] = ACTIONS(5061), - [anon_sym_BSLASHcref] = ACTIONS(5061), - [anon_sym_BSLASHCref] = ACTIONS(5061), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnameCref] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5061), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5061), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5061), - [anon_sym_BSLASHlabelcref] = ACTIONS(5061), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange] = ACTIONS(5061), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHCrefrange] = ACTIONS(5061), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5059), - [anon_sym_BSLASHnewlabel] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand] = ACTIONS(5061), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5061), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5061), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5059), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5061), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5059), - [anon_sym_BSLASHdef] = ACTIONS(5061), - [anon_sym_BSLASHlet] = ACTIONS(5061), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5061), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5061), - [anon_sym_BSLASHgls] = ACTIONS(5061), - [anon_sym_BSLASHGls] = ACTIONS(5061), - [anon_sym_BSLASHGLS] = ACTIONS(5061), - [anon_sym_BSLASHglspl] = ACTIONS(5061), - [anon_sym_BSLASHGlspl] = ACTIONS(5061), - [anon_sym_BSLASHGLSpl] = ACTIONS(5061), - [anon_sym_BSLASHglsdisp] = ACTIONS(5061), - [anon_sym_BSLASHglslink] = ACTIONS(5061), - [anon_sym_BSLASHglstext] = ACTIONS(5061), - [anon_sym_BSLASHGlstext] = ACTIONS(5061), - [anon_sym_BSLASHGLStext] = ACTIONS(5061), - [anon_sym_BSLASHglsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5061), - [anon_sym_BSLASHglsplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSplural] = ACTIONS(5061), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5061), - [anon_sym_BSLASHglsname] = ACTIONS(5061), - [anon_sym_BSLASHGlsname] = ACTIONS(5061), - [anon_sym_BSLASHGLSname] = ACTIONS(5061), - [anon_sym_BSLASHglssymbol] = ACTIONS(5061), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5061), - [anon_sym_BSLASHglsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5061), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5061), - [anon_sym_BSLASHglsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5061), - [anon_sym_BSLASHglsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5061), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5061), - [anon_sym_BSLASHglsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5061), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5061), - [anon_sym_BSLASHglsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5061), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5061), - [anon_sym_BSLASHnewacronym] = ACTIONS(5061), - [anon_sym_BSLASHacrshort] = ACTIONS(5061), - [anon_sym_BSLASHAcrshort] = ACTIONS(5061), - [anon_sym_BSLASHACRshort] = ACTIONS(5061), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5061), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5061), - [anon_sym_BSLASHacrlong] = ACTIONS(5061), - [anon_sym_BSLASHAcrlong] = ACTIONS(5061), - [anon_sym_BSLASHACRlong] = ACTIONS(5061), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5061), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5061), - [anon_sym_BSLASHacrfull] = ACTIONS(5061), - [anon_sym_BSLASHAcrfull] = ACTIONS(5061), - [anon_sym_BSLASHACRfull] = ACTIONS(5061), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5061), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5061), - [anon_sym_BSLASHacs] = ACTIONS(5061), - [anon_sym_BSLASHAcs] = ACTIONS(5061), - [anon_sym_BSLASHacsp] = ACTIONS(5061), - [anon_sym_BSLASHAcsp] = ACTIONS(5061), - [anon_sym_BSLASHacl] = ACTIONS(5061), - [anon_sym_BSLASHAcl] = ACTIONS(5061), - [anon_sym_BSLASHaclp] = ACTIONS(5061), - [anon_sym_BSLASHAclp] = ACTIONS(5061), - [anon_sym_BSLASHacf] = ACTIONS(5061), - [anon_sym_BSLASHAcf] = ACTIONS(5061), - [anon_sym_BSLASHacfp] = ACTIONS(5061), - [anon_sym_BSLASHAcfp] = ACTIONS(5061), - [anon_sym_BSLASHac] = ACTIONS(5061), - [anon_sym_BSLASHAc] = ACTIONS(5061), - [anon_sym_BSLASHacp] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5061), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5061), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5061), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5061), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5061), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5061), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5061), - [anon_sym_BSLASHcolor] = ACTIONS(5061), - [anon_sym_BSLASHcolorbox] = ACTIONS(5061), - [anon_sym_BSLASHtextcolor] = ACTIONS(5061), - [anon_sym_BSLASHpagecolor] = ACTIONS(5061), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5061), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5061), + [anon_sym_BSLASHiffalse] = ACTIONS(5135), + [anon_sym_LPAREN] = ACTIONS(5133), + [anon_sym_LBRACK] = ACTIONS(5133), + [anon_sym_RBRACK] = ACTIONS(5133), + [anon_sym_COMMA] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(5133), + [anon_sym_LBRACE] = ACTIONS(5133), + [anon_sym_RBRACE] = ACTIONS(5133), + [sym_word] = ACTIONS(5135), + [sym_placeholder] = ACTIONS(5133), + [anon_sym_PLUS] = ACTIONS(5135), + [anon_sym_DASH] = ACTIONS(5135), + [anon_sym_STAR] = ACTIONS(5135), + [anon_sym_SLASH] = ACTIONS(5135), + [anon_sym_CARET] = ACTIONS(5135), + [anon_sym__] = ACTIONS(5135), + [anon_sym_LT] = ACTIONS(5135), + [anon_sym_GT] = ACTIONS(5135), + [anon_sym_BANG] = ACTIONS(5135), + [anon_sym_PIPE] = ACTIONS(5135), + [anon_sym_COLON] = ACTIONS(5135), + [anon_sym_SQUOTE] = ACTIONS(5135), + [anon_sym_BSLASHusepackage] = ACTIONS(5135), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), + [anon_sym_BSLASHinclude] = ACTIONS(5135), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), + [anon_sym_BSLASHinput] = ACTIONS(5135), + [anon_sym_BSLASHsubfile] = ACTIONS(5135), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), + [anon_sym_BSLASHbibliography] = ACTIONS(5135), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), + [anon_sym_BSLASHincludesvg] = ACTIONS(5135), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), + [anon_sym_BSLASHimport] = ACTIONS(5135), + [anon_sym_BSLASHsubimport] = ACTIONS(5135), + [anon_sym_BSLASHinputfrom] = ACTIONS(5135), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), + [anon_sym_BSLASHincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), + [anon_sym_BSLASHcaption] = ACTIONS(5135), + [anon_sym_BSLASHcite] = ACTIONS(5135), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCite] = ACTIONS(5135), + [anon_sym_BSLASHnocite] = ACTIONS(5135), + [anon_sym_BSLASHcitet] = ACTIONS(5135), + [anon_sym_BSLASHcitep] = ACTIONS(5135), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteauthor] = ACTIONS(5135), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitetitle] = ACTIONS(5135), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteyear] = ACTIONS(5135), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), + [anon_sym_BSLASHcitedate] = ACTIONS(5135), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), + [anon_sym_BSLASHciteurl] = ACTIONS(5135), + [anon_sym_BSLASHfullcite] = ACTIONS(5135), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), + [anon_sym_BSLASHcitealt] = ACTIONS(5135), + [anon_sym_BSLASHcitealp] = ACTIONS(5135), + [anon_sym_BSLASHcitetext] = ACTIONS(5135), + [anon_sym_BSLASHparencite] = ACTIONS(5135), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHParencite] = ACTIONS(5135), + [anon_sym_BSLASHfootcite] = ACTIONS(5135), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), + [anon_sym_BSLASHtextcite] = ACTIONS(5135), + [anon_sym_BSLASHTextcite] = ACTIONS(5135), + [anon_sym_BSLASHsmartcite] = ACTIONS(5135), + [anon_sym_BSLASHSmartcite] = ACTIONS(5135), + [anon_sym_BSLASHsupercite] = ACTIONS(5135), + [anon_sym_BSLASHautocite] = ACTIONS(5135), + [anon_sym_BSLASHAutocite] = ACTIONS(5135), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), + [anon_sym_BSLASHvolcite] = ACTIONS(5135), + [anon_sym_BSLASHVolcite] = ACTIONS(5135), + [anon_sym_BSLASHpvolcite] = ACTIONS(5135), + [anon_sym_BSLASHPvolcite] = ACTIONS(5135), + [anon_sym_BSLASHfvolcite] = ACTIONS(5135), + [anon_sym_BSLASHftvolcite] = ACTIONS(5135), + [anon_sym_BSLASHsvolcite] = ACTIONS(5135), + [anon_sym_BSLASHSvolcite] = ACTIONS(5135), + [anon_sym_BSLASHtvolcite] = ACTIONS(5135), + [anon_sym_BSLASHTvolcite] = ACTIONS(5135), + [anon_sym_BSLASHavolcite] = ACTIONS(5135), + [anon_sym_BSLASHAvolcite] = ACTIONS(5135), + [anon_sym_BSLASHnotecite] = ACTIONS(5135), + [anon_sym_BSLASHNotecite] = ACTIONS(5135), + [anon_sym_BSLASHpnotecite] = ACTIONS(5135), + [anon_sym_BSLASHPnotecite] = ACTIONS(5135), + [anon_sym_BSLASHfnotecite] = ACTIONS(5135), + [anon_sym_BSLASHlabel] = ACTIONS(5135), + [anon_sym_BSLASHref] = ACTIONS(5135), + [anon_sym_BSLASHeqref] = ACTIONS(5135), + [anon_sym_BSLASHvref] = ACTIONS(5135), + [anon_sym_BSLASHVref] = ACTIONS(5135), + [anon_sym_BSLASHautoref] = ACTIONS(5135), + [anon_sym_BSLASHpageref] = ACTIONS(5135), + [anon_sym_BSLASHcref] = ACTIONS(5135), + [anon_sym_BSLASHCref] = ACTIONS(5135), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnameCref] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), + [anon_sym_BSLASHlabelcref] = ACTIONS(5135), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange] = ACTIONS(5135), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHCrefrange] = ACTIONS(5135), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), + [anon_sym_BSLASHnewlabel] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand] = ACTIONS(5135), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), + [anon_sym_BSLASHdef] = ACTIONS(5135), + [anon_sym_BSLASHlet] = ACTIONS(5135), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), + [anon_sym_BSLASHgls] = ACTIONS(5135), + [anon_sym_BSLASHGls] = ACTIONS(5135), + [anon_sym_BSLASHGLS] = ACTIONS(5135), + [anon_sym_BSLASHglspl] = ACTIONS(5135), + [anon_sym_BSLASHGlspl] = ACTIONS(5135), + [anon_sym_BSLASHGLSpl] = ACTIONS(5135), + [anon_sym_BSLASHglsdisp] = ACTIONS(5135), + [anon_sym_BSLASHglslink] = ACTIONS(5135), + [anon_sym_BSLASHglstext] = ACTIONS(5135), + [anon_sym_BSLASHGlstext] = ACTIONS(5135), + [anon_sym_BSLASHGLStext] = ACTIONS(5135), + [anon_sym_BSLASHglsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), + [anon_sym_BSLASHglsplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSplural] = ACTIONS(5135), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), + [anon_sym_BSLASHglsname] = ACTIONS(5135), + [anon_sym_BSLASHGlsname] = ACTIONS(5135), + [anon_sym_BSLASHGLSname] = ACTIONS(5135), + [anon_sym_BSLASHglssymbol] = ACTIONS(5135), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), + [anon_sym_BSLASHglsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), + [anon_sym_BSLASHglsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), + [anon_sym_BSLASHglsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), + [anon_sym_BSLASHglsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), + [anon_sym_BSLASHglsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), + [anon_sym_BSLASHnewacronym] = ACTIONS(5135), + [anon_sym_BSLASHacrshort] = ACTIONS(5135), + [anon_sym_BSLASHAcrshort] = ACTIONS(5135), + [anon_sym_BSLASHACRshort] = ACTIONS(5135), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), + [anon_sym_BSLASHacrlong] = ACTIONS(5135), + [anon_sym_BSLASHAcrlong] = ACTIONS(5135), + [anon_sym_BSLASHACRlong] = ACTIONS(5135), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), + [anon_sym_BSLASHacrfull] = ACTIONS(5135), + [anon_sym_BSLASHAcrfull] = ACTIONS(5135), + [anon_sym_BSLASHACRfull] = ACTIONS(5135), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), + [anon_sym_BSLASHacs] = ACTIONS(5135), + [anon_sym_BSLASHAcs] = ACTIONS(5135), + [anon_sym_BSLASHacsp] = ACTIONS(5135), + [anon_sym_BSLASHAcsp] = ACTIONS(5135), + [anon_sym_BSLASHacl] = ACTIONS(5135), + [anon_sym_BSLASHAcl] = ACTIONS(5135), + [anon_sym_BSLASHaclp] = ACTIONS(5135), + [anon_sym_BSLASHAclp] = ACTIONS(5135), + [anon_sym_BSLASHacf] = ACTIONS(5135), + [anon_sym_BSLASHAcf] = ACTIONS(5135), + [anon_sym_BSLASHacfp] = ACTIONS(5135), + [anon_sym_BSLASHAcfp] = ACTIONS(5135), + [anon_sym_BSLASHac] = ACTIONS(5135), + [anon_sym_BSLASHAc] = ACTIONS(5135), + [anon_sym_BSLASHacp] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), + [anon_sym_BSLASHcolor] = ACTIONS(5135), + [anon_sym_BSLASHcolorbox] = ACTIONS(5135), + [anon_sym_BSLASHtextcolor] = ACTIONS(5135), + [anon_sym_BSLASHpagecolor] = ACTIONS(5135), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), }, - [1531] = { - [sym_command_name] = ACTIONS(5255), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5255), - [anon_sym_RBRACK] = ACTIONS(5253), - [anon_sym_COMMA] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(5253), - [anon_sym_RBRACE] = ACTIONS(5253), - [sym_word] = ACTIONS(5255), - [sym_placeholder] = ACTIONS(5253), - [anon_sym_PLUS] = ACTIONS(5255), - [anon_sym_DASH] = ACTIONS(5255), - [anon_sym_STAR] = ACTIONS(5255), - [anon_sym_SLASH] = ACTIONS(5255), - [anon_sym_CARET] = ACTIONS(5255), - [anon_sym__] = ACTIONS(5255), - [anon_sym_LT] = ACTIONS(5255), - [anon_sym_GT] = ACTIONS(5255), - [anon_sym_BANG] = ACTIONS(5255), - [anon_sym_PIPE] = ACTIONS(5255), - [anon_sym_COLON] = ACTIONS(5255), - [anon_sym_SQUOTE] = ACTIONS(5255), - [anon_sym_BSLASHusepackage] = ACTIONS(5255), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5255), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5255), - [anon_sym_BSLASHinclude] = ACTIONS(5255), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5255), - [anon_sym_BSLASHinput] = ACTIONS(5255), - [anon_sym_BSLASHsubfile] = ACTIONS(5255), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5255), - [anon_sym_BSLASHbibliography] = ACTIONS(5255), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5255), - [anon_sym_BSLASHincludesvg] = ACTIONS(5255), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5255), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5255), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5255), - [anon_sym_BSLASHimport] = ACTIONS(5255), - [anon_sym_BSLASHsubimport] = ACTIONS(5255), - [anon_sym_BSLASHinputfrom] = ACTIONS(5255), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5255), - [anon_sym_BSLASHincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5255), - [anon_sym_BSLASHcaption] = ACTIONS(5255), - [anon_sym_BSLASHcite] = ACTIONS(5255), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCite] = ACTIONS(5255), - [anon_sym_BSLASHnocite] = ACTIONS(5255), - [anon_sym_BSLASHcitet] = ACTIONS(5255), - [anon_sym_BSLASHcitep] = ACTIONS(5255), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteauthor] = ACTIONS(5255), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5255), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitetitle] = ACTIONS(5255), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteyear] = ACTIONS(5255), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5253), - [anon_sym_BSLASHcitedate] = ACTIONS(5255), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5253), - [anon_sym_BSLASHciteurl] = ACTIONS(5255), - [anon_sym_BSLASHfullcite] = ACTIONS(5255), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5255), - [anon_sym_BSLASHcitealt] = ACTIONS(5255), - [anon_sym_BSLASHcitealp] = ACTIONS(5255), - [anon_sym_BSLASHcitetext] = ACTIONS(5255), - [anon_sym_BSLASHparencite] = ACTIONS(5255), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHParencite] = ACTIONS(5255), - [anon_sym_BSLASHfootcite] = ACTIONS(5255), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5255), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5255), - [anon_sym_BSLASHtextcite] = ACTIONS(5255), - [anon_sym_BSLASHTextcite] = ACTIONS(5255), - [anon_sym_BSLASHsmartcite] = ACTIONS(5255), - [anon_sym_BSLASHSmartcite] = ACTIONS(5255), - [anon_sym_BSLASHsupercite] = ACTIONS(5255), - [anon_sym_BSLASHautocite] = ACTIONS(5255), - [anon_sym_BSLASHAutocite] = ACTIONS(5255), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5253), - [anon_sym_BSLASHvolcite] = ACTIONS(5255), - [anon_sym_BSLASHVolcite] = ACTIONS(5255), - [anon_sym_BSLASHpvolcite] = ACTIONS(5255), - [anon_sym_BSLASHPvolcite] = ACTIONS(5255), - [anon_sym_BSLASHfvolcite] = ACTIONS(5255), - [anon_sym_BSLASHftvolcite] = ACTIONS(5255), - [anon_sym_BSLASHsvolcite] = ACTIONS(5255), - [anon_sym_BSLASHSvolcite] = ACTIONS(5255), - [anon_sym_BSLASHtvolcite] = ACTIONS(5255), - [anon_sym_BSLASHTvolcite] = ACTIONS(5255), - [anon_sym_BSLASHavolcite] = ACTIONS(5255), - [anon_sym_BSLASHAvolcite] = ACTIONS(5255), - [anon_sym_BSLASHnotecite] = ACTIONS(5255), - [anon_sym_BSLASHNotecite] = ACTIONS(5255), - [anon_sym_BSLASHpnotecite] = ACTIONS(5255), - [anon_sym_BSLASHPnotecite] = ACTIONS(5255), - [anon_sym_BSLASHfnotecite] = ACTIONS(5255), - [anon_sym_BSLASHlabel] = ACTIONS(5255), - [anon_sym_BSLASHref] = ACTIONS(5255), - [anon_sym_BSLASHeqref] = ACTIONS(5255), - [anon_sym_BSLASHvref] = ACTIONS(5255), - [anon_sym_BSLASHVref] = ACTIONS(5255), - [anon_sym_BSLASHautoref] = ACTIONS(5255), - [anon_sym_BSLASHpageref] = ACTIONS(5255), - [anon_sym_BSLASHcref] = ACTIONS(5255), - [anon_sym_BSLASHCref] = ACTIONS(5255), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnameCref] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5255), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5255), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5255), - [anon_sym_BSLASHlabelcref] = ACTIONS(5255), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange] = ACTIONS(5255), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHCrefrange] = ACTIONS(5255), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5253), - [anon_sym_BSLASHnewlabel] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand] = ACTIONS(5255), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5255), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5255), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5253), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5255), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5253), - [anon_sym_BSLASHdef] = ACTIONS(5255), - [anon_sym_BSLASHlet] = ACTIONS(5255), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5255), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5255), - [anon_sym_BSLASHgls] = ACTIONS(5255), - [anon_sym_BSLASHGls] = ACTIONS(5255), - [anon_sym_BSLASHGLS] = ACTIONS(5255), - [anon_sym_BSLASHglspl] = ACTIONS(5255), - [anon_sym_BSLASHGlspl] = ACTIONS(5255), - [anon_sym_BSLASHGLSpl] = ACTIONS(5255), - [anon_sym_BSLASHglsdisp] = ACTIONS(5255), - [anon_sym_BSLASHglslink] = ACTIONS(5255), - [anon_sym_BSLASHglstext] = ACTIONS(5255), - [anon_sym_BSLASHGlstext] = ACTIONS(5255), - [anon_sym_BSLASHGLStext] = ACTIONS(5255), - [anon_sym_BSLASHglsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5255), - [anon_sym_BSLASHglsplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSplural] = ACTIONS(5255), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5255), - [anon_sym_BSLASHglsname] = ACTIONS(5255), - [anon_sym_BSLASHGlsname] = ACTIONS(5255), - [anon_sym_BSLASHGLSname] = ACTIONS(5255), - [anon_sym_BSLASHglssymbol] = ACTIONS(5255), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5255), - [anon_sym_BSLASHglsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5255), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5255), - [anon_sym_BSLASHglsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5255), - [anon_sym_BSLASHglsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5255), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5255), - [anon_sym_BSLASHglsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5255), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5255), - [anon_sym_BSLASHglsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5255), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5255), - [anon_sym_BSLASHnewacronym] = ACTIONS(5255), - [anon_sym_BSLASHacrshort] = ACTIONS(5255), - [anon_sym_BSLASHAcrshort] = ACTIONS(5255), - [anon_sym_BSLASHACRshort] = ACTIONS(5255), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5255), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5255), - [anon_sym_BSLASHacrlong] = ACTIONS(5255), - [anon_sym_BSLASHAcrlong] = ACTIONS(5255), - [anon_sym_BSLASHACRlong] = ACTIONS(5255), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5255), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5255), - [anon_sym_BSLASHacrfull] = ACTIONS(5255), - [anon_sym_BSLASHAcrfull] = ACTIONS(5255), - [anon_sym_BSLASHACRfull] = ACTIONS(5255), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5255), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5255), - [anon_sym_BSLASHacs] = ACTIONS(5255), - [anon_sym_BSLASHAcs] = ACTIONS(5255), - [anon_sym_BSLASHacsp] = ACTIONS(5255), - [anon_sym_BSLASHAcsp] = ACTIONS(5255), - [anon_sym_BSLASHacl] = ACTIONS(5255), - [anon_sym_BSLASHAcl] = ACTIONS(5255), - [anon_sym_BSLASHaclp] = ACTIONS(5255), - [anon_sym_BSLASHAclp] = ACTIONS(5255), - [anon_sym_BSLASHacf] = ACTIONS(5255), - [anon_sym_BSLASHAcf] = ACTIONS(5255), - [anon_sym_BSLASHacfp] = ACTIONS(5255), - [anon_sym_BSLASHAcfp] = ACTIONS(5255), - [anon_sym_BSLASHac] = ACTIONS(5255), - [anon_sym_BSLASHAc] = ACTIONS(5255), - [anon_sym_BSLASHacp] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5255), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5255), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5255), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5255), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5255), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5255), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5255), - [anon_sym_BSLASHcolor] = ACTIONS(5255), - [anon_sym_BSLASHcolorbox] = ACTIONS(5255), - [anon_sym_BSLASHtextcolor] = ACTIONS(5255), - [anon_sym_BSLASHpagecolor] = ACTIONS(5255), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5255), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5255), + [1504] = { + [sym_command_name] = ACTIONS(4955), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4955), + [anon_sym_LBRACK] = ACTIONS(4953), + [anon_sym_RBRACK] = ACTIONS(4953), + [anon_sym_COMMA] = ACTIONS(4953), + [anon_sym_EQ] = ACTIONS(4953), + [anon_sym_LBRACE] = ACTIONS(4953), + [anon_sym_RBRACE] = ACTIONS(4953), + [sym_word] = ACTIONS(4955), + [sym_placeholder] = ACTIONS(4953), + [anon_sym_PLUS] = ACTIONS(4955), + [anon_sym_DASH] = ACTIONS(4955), + [anon_sym_STAR] = ACTIONS(4955), + [anon_sym_SLASH] = ACTIONS(4955), + [anon_sym_CARET] = ACTIONS(4955), + [anon_sym__] = ACTIONS(4955), + [anon_sym_LT] = ACTIONS(4955), + [anon_sym_GT] = ACTIONS(4955), + [anon_sym_BANG] = ACTIONS(4955), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_COLON] = ACTIONS(4955), + [anon_sym_SQUOTE] = ACTIONS(4955), + [anon_sym_BSLASHusepackage] = ACTIONS(4955), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4955), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4955), + [anon_sym_BSLASHinclude] = ACTIONS(4955), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4955), + [anon_sym_BSLASHinput] = ACTIONS(4955), + [anon_sym_BSLASHsubfile] = ACTIONS(4955), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4955), + [anon_sym_BSLASHbibliography] = ACTIONS(4955), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4955), + [anon_sym_BSLASHincludesvg] = ACTIONS(4955), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4955), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4955), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4955), + [anon_sym_BSLASHimport] = ACTIONS(4955), + [anon_sym_BSLASHsubimport] = ACTIONS(4955), + [anon_sym_BSLASHinputfrom] = ACTIONS(4955), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4955), + [anon_sym_BSLASHincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4955), + [anon_sym_BSLASHcaption] = ACTIONS(4955), + [anon_sym_BSLASHcite] = ACTIONS(4955), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCite] = ACTIONS(4955), + [anon_sym_BSLASHnocite] = ACTIONS(4955), + [anon_sym_BSLASHcitet] = ACTIONS(4955), + [anon_sym_BSLASHcitep] = ACTIONS(4955), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteauthor] = ACTIONS(4955), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4955), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitetitle] = ACTIONS(4955), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteyear] = ACTIONS(4955), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4953), + [anon_sym_BSLASHcitedate] = ACTIONS(4955), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4953), + [anon_sym_BSLASHciteurl] = ACTIONS(4955), + [anon_sym_BSLASHfullcite] = ACTIONS(4955), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4955), + [anon_sym_BSLASHcitealt] = ACTIONS(4955), + [anon_sym_BSLASHcitealp] = ACTIONS(4955), + [anon_sym_BSLASHcitetext] = ACTIONS(4955), + [anon_sym_BSLASHparencite] = ACTIONS(4955), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHParencite] = ACTIONS(4955), + [anon_sym_BSLASHfootcite] = ACTIONS(4955), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4955), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4955), + [anon_sym_BSLASHtextcite] = ACTIONS(4955), + [anon_sym_BSLASHTextcite] = ACTIONS(4955), + [anon_sym_BSLASHsmartcite] = ACTIONS(4955), + [anon_sym_BSLASHSmartcite] = ACTIONS(4955), + [anon_sym_BSLASHsupercite] = ACTIONS(4955), + [anon_sym_BSLASHautocite] = ACTIONS(4955), + [anon_sym_BSLASHAutocite] = ACTIONS(4955), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4953), + [anon_sym_BSLASHvolcite] = ACTIONS(4955), + [anon_sym_BSLASHVolcite] = ACTIONS(4955), + [anon_sym_BSLASHpvolcite] = ACTIONS(4955), + [anon_sym_BSLASHPvolcite] = ACTIONS(4955), + [anon_sym_BSLASHfvolcite] = ACTIONS(4955), + [anon_sym_BSLASHftvolcite] = ACTIONS(4955), + [anon_sym_BSLASHsvolcite] = ACTIONS(4955), + [anon_sym_BSLASHSvolcite] = ACTIONS(4955), + [anon_sym_BSLASHtvolcite] = ACTIONS(4955), + [anon_sym_BSLASHTvolcite] = ACTIONS(4955), + [anon_sym_BSLASHavolcite] = ACTIONS(4955), + [anon_sym_BSLASHAvolcite] = ACTIONS(4955), + [anon_sym_BSLASHnotecite] = ACTIONS(4955), + [anon_sym_BSLASHNotecite] = ACTIONS(4955), + [anon_sym_BSLASHpnotecite] = ACTIONS(4955), + [anon_sym_BSLASHPnotecite] = ACTIONS(4955), + [anon_sym_BSLASHfnotecite] = ACTIONS(4955), + [anon_sym_BSLASHlabel] = ACTIONS(4955), + [anon_sym_BSLASHref] = ACTIONS(4955), + [anon_sym_BSLASHeqref] = ACTIONS(4955), + [anon_sym_BSLASHvref] = ACTIONS(4955), + [anon_sym_BSLASHVref] = ACTIONS(4955), + [anon_sym_BSLASHautoref] = ACTIONS(4955), + [anon_sym_BSLASHpageref] = ACTIONS(4955), + [anon_sym_BSLASHcref] = ACTIONS(4955), + [anon_sym_BSLASHCref] = ACTIONS(4955), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnameCref] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4955), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4955), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4955), + [anon_sym_BSLASHlabelcref] = ACTIONS(4955), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange] = ACTIONS(4955), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHCrefrange] = ACTIONS(4955), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4953), + [anon_sym_BSLASHnewlabel] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand] = ACTIONS(4955), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4955), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4955), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4953), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4955), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4953), + [anon_sym_BSLASHdef] = ACTIONS(4955), + [anon_sym_BSLASHlet] = ACTIONS(4955), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4955), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4955), + [anon_sym_BSLASHgls] = ACTIONS(4955), + [anon_sym_BSLASHGls] = ACTIONS(4955), + [anon_sym_BSLASHGLS] = ACTIONS(4955), + [anon_sym_BSLASHglspl] = ACTIONS(4955), + [anon_sym_BSLASHGlspl] = ACTIONS(4955), + [anon_sym_BSLASHGLSpl] = ACTIONS(4955), + [anon_sym_BSLASHglsdisp] = ACTIONS(4955), + [anon_sym_BSLASHglslink] = ACTIONS(4955), + [anon_sym_BSLASHglstext] = ACTIONS(4955), + [anon_sym_BSLASHGlstext] = ACTIONS(4955), + [anon_sym_BSLASHGLStext] = ACTIONS(4955), + [anon_sym_BSLASHglsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4955), + [anon_sym_BSLASHglsplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSplural] = ACTIONS(4955), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4955), + [anon_sym_BSLASHglsname] = ACTIONS(4955), + [anon_sym_BSLASHGlsname] = ACTIONS(4955), + [anon_sym_BSLASHGLSname] = ACTIONS(4955), + [anon_sym_BSLASHglssymbol] = ACTIONS(4955), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4955), + [anon_sym_BSLASHglsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4955), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4955), + [anon_sym_BSLASHglsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4955), + [anon_sym_BSLASHglsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4955), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4955), + [anon_sym_BSLASHglsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4955), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4955), + [anon_sym_BSLASHglsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4955), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4955), + [anon_sym_BSLASHnewacronym] = ACTIONS(4955), + [anon_sym_BSLASHacrshort] = ACTIONS(4955), + [anon_sym_BSLASHAcrshort] = ACTIONS(4955), + [anon_sym_BSLASHACRshort] = ACTIONS(4955), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4955), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4955), + [anon_sym_BSLASHacrlong] = ACTIONS(4955), + [anon_sym_BSLASHAcrlong] = ACTIONS(4955), + [anon_sym_BSLASHACRlong] = ACTIONS(4955), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4955), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4955), + [anon_sym_BSLASHacrfull] = ACTIONS(4955), + [anon_sym_BSLASHAcrfull] = ACTIONS(4955), + [anon_sym_BSLASHACRfull] = ACTIONS(4955), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4955), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4955), + [anon_sym_BSLASHacs] = ACTIONS(4955), + [anon_sym_BSLASHAcs] = ACTIONS(4955), + [anon_sym_BSLASHacsp] = ACTIONS(4955), + [anon_sym_BSLASHAcsp] = ACTIONS(4955), + [anon_sym_BSLASHacl] = ACTIONS(4955), + [anon_sym_BSLASHAcl] = ACTIONS(4955), + [anon_sym_BSLASHaclp] = ACTIONS(4955), + [anon_sym_BSLASHAclp] = ACTIONS(4955), + [anon_sym_BSLASHacf] = ACTIONS(4955), + [anon_sym_BSLASHAcf] = ACTIONS(4955), + [anon_sym_BSLASHacfp] = ACTIONS(4955), + [anon_sym_BSLASHAcfp] = ACTIONS(4955), + [anon_sym_BSLASHac] = ACTIONS(4955), + [anon_sym_BSLASHAc] = ACTIONS(4955), + [anon_sym_BSLASHacp] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4955), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4955), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4955), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4955), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4955), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4955), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4955), + [anon_sym_BSLASHcolor] = ACTIONS(4955), + [anon_sym_BSLASHcolorbox] = ACTIONS(4955), + [anon_sym_BSLASHtextcolor] = ACTIONS(4955), + [anon_sym_BSLASHpagecolor] = ACTIONS(4955), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4955), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4955), }, - [1532] = { - [sym_command_name] = ACTIONS(5065), + [1505] = { + [sym_brack_group_text] = STATE(1513), + [sym_command_name] = ACTIONS(4857), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4857), + [anon_sym_LBRACK] = ACTIONS(5515), + [anon_sym_RBRACK] = ACTIONS(4855), + [anon_sym_COMMA] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(4855), + [anon_sym_RBRACE] = ACTIONS(4855), + [sym_word] = ACTIONS(4857), + [sym_placeholder] = ACTIONS(4855), + [anon_sym_PLUS] = ACTIONS(4857), + [anon_sym_DASH] = ACTIONS(4857), + [anon_sym_STAR] = ACTIONS(4857), + [anon_sym_SLASH] = ACTIONS(4857), + [anon_sym_CARET] = ACTIONS(4857), + [anon_sym__] = ACTIONS(4857), + [anon_sym_LT] = ACTIONS(4857), + [anon_sym_GT] = ACTIONS(4857), + [anon_sym_BANG] = ACTIONS(4857), + [anon_sym_PIPE] = ACTIONS(4857), + [anon_sym_COLON] = ACTIONS(4857), + [anon_sym_SQUOTE] = ACTIONS(4857), + [anon_sym_BSLASHusepackage] = ACTIONS(4857), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4857), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4857), + [anon_sym_BSLASHinclude] = ACTIONS(4857), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4857), + [anon_sym_BSLASHinput] = ACTIONS(4857), + [anon_sym_BSLASHsubfile] = ACTIONS(4857), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4857), + [anon_sym_BSLASHbibliography] = ACTIONS(4857), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4857), + [anon_sym_BSLASHincludesvg] = ACTIONS(4857), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4857), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4857), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4857), + [anon_sym_BSLASHimport] = ACTIONS(4857), + [anon_sym_BSLASHsubimport] = ACTIONS(4857), + [anon_sym_BSLASHinputfrom] = ACTIONS(4857), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4857), + [anon_sym_BSLASHincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4857), + [anon_sym_BSLASHcaption] = ACTIONS(4857), + [anon_sym_BSLASHcite] = ACTIONS(4857), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCite] = ACTIONS(4857), + [anon_sym_BSLASHnocite] = ACTIONS(4857), + [anon_sym_BSLASHcitet] = ACTIONS(4857), + [anon_sym_BSLASHcitep] = ACTIONS(4857), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteauthor] = ACTIONS(4857), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4857), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitetitle] = ACTIONS(4857), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteyear] = ACTIONS(4857), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4855), + [anon_sym_BSLASHcitedate] = ACTIONS(4857), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4855), + [anon_sym_BSLASHciteurl] = ACTIONS(4857), + [anon_sym_BSLASHfullcite] = ACTIONS(4857), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4857), + [anon_sym_BSLASHcitealt] = ACTIONS(4857), + [anon_sym_BSLASHcitealp] = ACTIONS(4857), + [anon_sym_BSLASHcitetext] = ACTIONS(4857), + [anon_sym_BSLASHparencite] = ACTIONS(4857), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHParencite] = ACTIONS(4857), + [anon_sym_BSLASHfootcite] = ACTIONS(4857), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4857), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4857), + [anon_sym_BSLASHtextcite] = ACTIONS(4857), + [anon_sym_BSLASHTextcite] = ACTIONS(4857), + [anon_sym_BSLASHsmartcite] = ACTIONS(4857), + [anon_sym_BSLASHSmartcite] = ACTIONS(4857), + [anon_sym_BSLASHsupercite] = ACTIONS(4857), + [anon_sym_BSLASHautocite] = ACTIONS(4857), + [anon_sym_BSLASHAutocite] = ACTIONS(4857), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4855), + [anon_sym_BSLASHvolcite] = ACTIONS(4857), + [anon_sym_BSLASHVolcite] = ACTIONS(4857), + [anon_sym_BSLASHpvolcite] = ACTIONS(4857), + [anon_sym_BSLASHPvolcite] = ACTIONS(4857), + [anon_sym_BSLASHfvolcite] = ACTIONS(4857), + [anon_sym_BSLASHftvolcite] = ACTIONS(4857), + [anon_sym_BSLASHsvolcite] = ACTIONS(4857), + [anon_sym_BSLASHSvolcite] = ACTIONS(4857), + [anon_sym_BSLASHtvolcite] = ACTIONS(4857), + [anon_sym_BSLASHTvolcite] = ACTIONS(4857), + [anon_sym_BSLASHavolcite] = ACTIONS(4857), + [anon_sym_BSLASHAvolcite] = ACTIONS(4857), + [anon_sym_BSLASHnotecite] = ACTIONS(4857), + [anon_sym_BSLASHNotecite] = ACTIONS(4857), + [anon_sym_BSLASHpnotecite] = ACTIONS(4857), + [anon_sym_BSLASHPnotecite] = ACTIONS(4857), + [anon_sym_BSLASHfnotecite] = ACTIONS(4857), + [anon_sym_BSLASHlabel] = ACTIONS(4857), + [anon_sym_BSLASHref] = ACTIONS(4857), + [anon_sym_BSLASHeqref] = ACTIONS(4857), + [anon_sym_BSLASHvref] = ACTIONS(4857), + [anon_sym_BSLASHVref] = ACTIONS(4857), + [anon_sym_BSLASHautoref] = ACTIONS(4857), + [anon_sym_BSLASHpageref] = ACTIONS(4857), + [anon_sym_BSLASHcref] = ACTIONS(4857), + [anon_sym_BSLASHCref] = ACTIONS(4857), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnameCref] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4857), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4857), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4857), + [anon_sym_BSLASHlabelcref] = ACTIONS(4857), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange] = ACTIONS(4857), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHCrefrange] = ACTIONS(4857), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4855), + [anon_sym_BSLASHnewlabel] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand] = ACTIONS(4857), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4857), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4857), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4855), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4857), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4855), + [anon_sym_BSLASHdef] = ACTIONS(4857), + [anon_sym_BSLASHlet] = ACTIONS(4857), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4857), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4857), + [anon_sym_BSLASHgls] = ACTIONS(4857), + [anon_sym_BSLASHGls] = ACTIONS(4857), + [anon_sym_BSLASHGLS] = ACTIONS(4857), + [anon_sym_BSLASHglspl] = ACTIONS(4857), + [anon_sym_BSLASHGlspl] = ACTIONS(4857), + [anon_sym_BSLASHGLSpl] = ACTIONS(4857), + [anon_sym_BSLASHglsdisp] = ACTIONS(4857), + [anon_sym_BSLASHglslink] = ACTIONS(4857), + [anon_sym_BSLASHglstext] = ACTIONS(4857), + [anon_sym_BSLASHGlstext] = ACTIONS(4857), + [anon_sym_BSLASHGLStext] = ACTIONS(4857), + [anon_sym_BSLASHglsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4857), + [anon_sym_BSLASHglsplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSplural] = ACTIONS(4857), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4857), + [anon_sym_BSLASHglsname] = ACTIONS(4857), + [anon_sym_BSLASHGlsname] = ACTIONS(4857), + [anon_sym_BSLASHGLSname] = ACTIONS(4857), + [anon_sym_BSLASHglssymbol] = ACTIONS(4857), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4857), + [anon_sym_BSLASHglsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4857), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4857), + [anon_sym_BSLASHglsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4857), + [anon_sym_BSLASHglsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4857), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4857), + [anon_sym_BSLASHglsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4857), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4857), + [anon_sym_BSLASHglsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4857), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4857), + [anon_sym_BSLASHnewacronym] = ACTIONS(4857), + [anon_sym_BSLASHacrshort] = ACTIONS(4857), + [anon_sym_BSLASHAcrshort] = ACTIONS(4857), + [anon_sym_BSLASHACRshort] = ACTIONS(4857), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4857), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4857), + [anon_sym_BSLASHacrlong] = ACTIONS(4857), + [anon_sym_BSLASHAcrlong] = ACTIONS(4857), + [anon_sym_BSLASHACRlong] = ACTIONS(4857), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4857), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4857), + [anon_sym_BSLASHacrfull] = ACTIONS(4857), + [anon_sym_BSLASHAcrfull] = ACTIONS(4857), + [anon_sym_BSLASHACRfull] = ACTIONS(4857), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4857), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4857), + [anon_sym_BSLASHacs] = ACTIONS(4857), + [anon_sym_BSLASHAcs] = ACTIONS(4857), + [anon_sym_BSLASHacsp] = ACTIONS(4857), + [anon_sym_BSLASHAcsp] = ACTIONS(4857), + [anon_sym_BSLASHacl] = ACTIONS(4857), + [anon_sym_BSLASHAcl] = ACTIONS(4857), + [anon_sym_BSLASHaclp] = ACTIONS(4857), + [anon_sym_BSLASHAclp] = ACTIONS(4857), + [anon_sym_BSLASHacf] = ACTIONS(4857), + [anon_sym_BSLASHAcf] = ACTIONS(4857), + [anon_sym_BSLASHacfp] = ACTIONS(4857), + [anon_sym_BSLASHAcfp] = ACTIONS(4857), + [anon_sym_BSLASHac] = ACTIONS(4857), + [anon_sym_BSLASHAc] = ACTIONS(4857), + [anon_sym_BSLASHacp] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4857), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4857), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4857), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4857), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4857), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4857), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4857), + [anon_sym_BSLASHcolor] = ACTIONS(4857), + [anon_sym_BSLASHcolorbox] = ACTIONS(4857), + [anon_sym_BSLASHtextcolor] = ACTIONS(4857), + [anon_sym_BSLASHpagecolor] = ACTIONS(4857), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4857), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4857), + }, + [1506] = { + [sym_brack_group_text] = STATE(1572), + [sym_command_name] = ACTIONS(4879), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4879), + [anon_sym_LBRACK] = ACTIONS(5515), + [anon_sym_RBRACK] = ACTIONS(4877), + [anon_sym_COMMA] = ACTIONS(4877), + [anon_sym_EQ] = ACTIONS(4877), + [anon_sym_RBRACE] = ACTIONS(4877), + [sym_word] = ACTIONS(4879), + [sym_placeholder] = ACTIONS(4877), + [anon_sym_PLUS] = ACTIONS(4879), + [anon_sym_DASH] = ACTIONS(4879), + [anon_sym_STAR] = ACTIONS(4879), + [anon_sym_SLASH] = ACTIONS(4879), + [anon_sym_CARET] = ACTIONS(4879), + [anon_sym__] = ACTIONS(4879), + [anon_sym_LT] = ACTIONS(4879), + [anon_sym_GT] = ACTIONS(4879), + [anon_sym_BANG] = ACTIONS(4879), + [anon_sym_PIPE] = ACTIONS(4879), + [anon_sym_COLON] = ACTIONS(4879), + [anon_sym_SQUOTE] = ACTIONS(4879), + [anon_sym_BSLASHusepackage] = ACTIONS(4879), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4879), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4879), + [anon_sym_BSLASHinclude] = ACTIONS(4879), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4879), + [anon_sym_BSLASHinput] = ACTIONS(4879), + [anon_sym_BSLASHsubfile] = ACTIONS(4879), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4879), + [anon_sym_BSLASHbibliography] = ACTIONS(4879), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4879), + [anon_sym_BSLASHincludesvg] = ACTIONS(4879), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4879), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4879), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4879), + [anon_sym_BSLASHimport] = ACTIONS(4879), + [anon_sym_BSLASHsubimport] = ACTIONS(4879), + [anon_sym_BSLASHinputfrom] = ACTIONS(4879), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4879), + [anon_sym_BSLASHincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4879), + [anon_sym_BSLASHcaption] = ACTIONS(4879), + [anon_sym_BSLASHcite] = ACTIONS(4879), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCite] = ACTIONS(4879), + [anon_sym_BSLASHnocite] = ACTIONS(4879), + [anon_sym_BSLASHcitet] = ACTIONS(4879), + [anon_sym_BSLASHcitep] = ACTIONS(4879), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteauthor] = ACTIONS(4879), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4879), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitetitle] = ACTIONS(4879), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteyear] = ACTIONS(4879), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4877), + [anon_sym_BSLASHcitedate] = ACTIONS(4879), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4877), + [anon_sym_BSLASHciteurl] = ACTIONS(4879), + [anon_sym_BSLASHfullcite] = ACTIONS(4879), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4879), + [anon_sym_BSLASHcitealt] = ACTIONS(4879), + [anon_sym_BSLASHcitealp] = ACTIONS(4879), + [anon_sym_BSLASHcitetext] = ACTIONS(4879), + [anon_sym_BSLASHparencite] = ACTIONS(4879), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHParencite] = ACTIONS(4879), + [anon_sym_BSLASHfootcite] = ACTIONS(4879), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4879), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4879), + [anon_sym_BSLASHtextcite] = ACTIONS(4879), + [anon_sym_BSLASHTextcite] = ACTIONS(4879), + [anon_sym_BSLASHsmartcite] = ACTIONS(4879), + [anon_sym_BSLASHSmartcite] = ACTIONS(4879), + [anon_sym_BSLASHsupercite] = ACTIONS(4879), + [anon_sym_BSLASHautocite] = ACTIONS(4879), + [anon_sym_BSLASHAutocite] = ACTIONS(4879), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4877), + [anon_sym_BSLASHvolcite] = ACTIONS(4879), + [anon_sym_BSLASHVolcite] = ACTIONS(4879), + [anon_sym_BSLASHpvolcite] = ACTIONS(4879), + [anon_sym_BSLASHPvolcite] = ACTIONS(4879), + [anon_sym_BSLASHfvolcite] = ACTIONS(4879), + [anon_sym_BSLASHftvolcite] = ACTIONS(4879), + [anon_sym_BSLASHsvolcite] = ACTIONS(4879), + [anon_sym_BSLASHSvolcite] = ACTIONS(4879), + [anon_sym_BSLASHtvolcite] = ACTIONS(4879), + [anon_sym_BSLASHTvolcite] = ACTIONS(4879), + [anon_sym_BSLASHavolcite] = ACTIONS(4879), + [anon_sym_BSLASHAvolcite] = ACTIONS(4879), + [anon_sym_BSLASHnotecite] = ACTIONS(4879), + [anon_sym_BSLASHNotecite] = ACTIONS(4879), + [anon_sym_BSLASHpnotecite] = ACTIONS(4879), + [anon_sym_BSLASHPnotecite] = ACTIONS(4879), + [anon_sym_BSLASHfnotecite] = ACTIONS(4879), + [anon_sym_BSLASHlabel] = ACTIONS(4879), + [anon_sym_BSLASHref] = ACTIONS(4879), + [anon_sym_BSLASHeqref] = ACTIONS(4879), + [anon_sym_BSLASHvref] = ACTIONS(4879), + [anon_sym_BSLASHVref] = ACTIONS(4879), + [anon_sym_BSLASHautoref] = ACTIONS(4879), + [anon_sym_BSLASHpageref] = ACTIONS(4879), + [anon_sym_BSLASHcref] = ACTIONS(4879), + [anon_sym_BSLASHCref] = ACTIONS(4879), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnameCref] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4879), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4879), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4879), + [anon_sym_BSLASHlabelcref] = ACTIONS(4879), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange] = ACTIONS(4879), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHCrefrange] = ACTIONS(4879), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4877), + [anon_sym_BSLASHnewlabel] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand] = ACTIONS(4879), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4879), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4879), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4877), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4879), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4877), + [anon_sym_BSLASHdef] = ACTIONS(4879), + [anon_sym_BSLASHlet] = ACTIONS(4879), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4879), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4879), + [anon_sym_BSLASHgls] = ACTIONS(4879), + [anon_sym_BSLASHGls] = ACTIONS(4879), + [anon_sym_BSLASHGLS] = ACTIONS(4879), + [anon_sym_BSLASHglspl] = ACTIONS(4879), + [anon_sym_BSLASHGlspl] = ACTIONS(4879), + [anon_sym_BSLASHGLSpl] = ACTIONS(4879), + [anon_sym_BSLASHglsdisp] = ACTIONS(4879), + [anon_sym_BSLASHglslink] = ACTIONS(4879), + [anon_sym_BSLASHglstext] = ACTIONS(4879), + [anon_sym_BSLASHGlstext] = ACTIONS(4879), + [anon_sym_BSLASHGLStext] = ACTIONS(4879), + [anon_sym_BSLASHglsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4879), + [anon_sym_BSLASHglsplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSplural] = ACTIONS(4879), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4879), + [anon_sym_BSLASHglsname] = ACTIONS(4879), + [anon_sym_BSLASHGlsname] = ACTIONS(4879), + [anon_sym_BSLASHGLSname] = ACTIONS(4879), + [anon_sym_BSLASHglssymbol] = ACTIONS(4879), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4879), + [anon_sym_BSLASHglsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4879), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4879), + [anon_sym_BSLASHglsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4879), + [anon_sym_BSLASHglsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4879), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4879), + [anon_sym_BSLASHglsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4879), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4879), + [anon_sym_BSLASHglsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4879), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4879), + [anon_sym_BSLASHnewacronym] = ACTIONS(4879), + [anon_sym_BSLASHacrshort] = ACTIONS(4879), + [anon_sym_BSLASHAcrshort] = ACTIONS(4879), + [anon_sym_BSLASHACRshort] = ACTIONS(4879), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4879), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4879), + [anon_sym_BSLASHacrlong] = ACTIONS(4879), + [anon_sym_BSLASHAcrlong] = ACTIONS(4879), + [anon_sym_BSLASHACRlong] = ACTIONS(4879), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4879), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4879), + [anon_sym_BSLASHacrfull] = ACTIONS(4879), + [anon_sym_BSLASHAcrfull] = ACTIONS(4879), + [anon_sym_BSLASHACRfull] = ACTIONS(4879), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4879), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4879), + [anon_sym_BSLASHacs] = ACTIONS(4879), + [anon_sym_BSLASHAcs] = ACTIONS(4879), + [anon_sym_BSLASHacsp] = ACTIONS(4879), + [anon_sym_BSLASHAcsp] = ACTIONS(4879), + [anon_sym_BSLASHacl] = ACTIONS(4879), + [anon_sym_BSLASHAcl] = ACTIONS(4879), + [anon_sym_BSLASHaclp] = ACTIONS(4879), + [anon_sym_BSLASHAclp] = ACTIONS(4879), + [anon_sym_BSLASHacf] = ACTIONS(4879), + [anon_sym_BSLASHAcf] = ACTIONS(4879), + [anon_sym_BSLASHacfp] = ACTIONS(4879), + [anon_sym_BSLASHAcfp] = ACTIONS(4879), + [anon_sym_BSLASHac] = ACTIONS(4879), + [anon_sym_BSLASHAc] = ACTIONS(4879), + [anon_sym_BSLASHacp] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4879), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4879), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4879), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4879), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4879), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4879), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4879), + [anon_sym_BSLASHcolor] = ACTIONS(4879), + [anon_sym_BSLASHcolorbox] = ACTIONS(4879), + [anon_sym_BSLASHtextcolor] = ACTIONS(4879), + [anon_sym_BSLASHpagecolor] = ACTIONS(4879), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4879), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4879), + }, + [1507] = { + [sym_command_name] = ACTIONS(4753), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4753), + [anon_sym_BSLASHfi] = ACTIONS(5517), + [anon_sym_RBRACK] = ACTIONS(4751), + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_EQ] = ACTIONS(4751), + [anon_sym_RBRACE] = ACTIONS(4751), + [sym_word] = ACTIONS(4753), + [sym_placeholder] = ACTIONS(4751), + [anon_sym_PLUS] = ACTIONS(4753), + [anon_sym_DASH] = ACTIONS(4753), + [anon_sym_STAR] = ACTIONS(4753), + [anon_sym_SLASH] = ACTIONS(4753), + [anon_sym_CARET] = ACTIONS(4753), + [anon_sym__] = ACTIONS(4753), + [anon_sym_LT] = ACTIONS(4753), + [anon_sym_GT] = ACTIONS(4753), + [anon_sym_BANG] = ACTIONS(4753), + [anon_sym_PIPE] = ACTIONS(4753), + [anon_sym_COLON] = ACTIONS(4753), + [anon_sym_SQUOTE] = ACTIONS(4753), + [anon_sym_BSLASHusepackage] = ACTIONS(4753), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4753), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4753), + [anon_sym_BSLASHinclude] = ACTIONS(4753), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4753), + [anon_sym_BSLASHinput] = ACTIONS(4753), + [anon_sym_BSLASHsubfile] = ACTIONS(4753), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4753), + [anon_sym_BSLASHbibliography] = ACTIONS(4753), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4753), + [anon_sym_BSLASHincludesvg] = ACTIONS(4753), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4753), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4753), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4753), + [anon_sym_BSLASHimport] = ACTIONS(4753), + [anon_sym_BSLASHsubimport] = ACTIONS(4753), + [anon_sym_BSLASHinputfrom] = ACTIONS(4753), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4753), + [anon_sym_BSLASHincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4753), + [anon_sym_BSLASHcaption] = ACTIONS(4753), + [anon_sym_BSLASHcite] = ACTIONS(4753), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCite] = ACTIONS(4753), + [anon_sym_BSLASHnocite] = ACTIONS(4753), + [anon_sym_BSLASHcitet] = ACTIONS(4753), + [anon_sym_BSLASHcitep] = ACTIONS(4753), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteauthor] = ACTIONS(4753), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4753), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitetitle] = ACTIONS(4753), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteyear] = ACTIONS(4753), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4751), + [anon_sym_BSLASHcitedate] = ACTIONS(4753), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4751), + [anon_sym_BSLASHciteurl] = ACTIONS(4753), + [anon_sym_BSLASHfullcite] = ACTIONS(4753), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4753), + [anon_sym_BSLASHcitealt] = ACTIONS(4753), + [anon_sym_BSLASHcitealp] = ACTIONS(4753), + [anon_sym_BSLASHcitetext] = ACTIONS(4753), + [anon_sym_BSLASHparencite] = ACTIONS(4753), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHParencite] = ACTIONS(4753), + [anon_sym_BSLASHfootcite] = ACTIONS(4753), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4753), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4753), + [anon_sym_BSLASHtextcite] = ACTIONS(4753), + [anon_sym_BSLASHTextcite] = ACTIONS(4753), + [anon_sym_BSLASHsmartcite] = ACTIONS(4753), + [anon_sym_BSLASHSmartcite] = ACTIONS(4753), + [anon_sym_BSLASHsupercite] = ACTIONS(4753), + [anon_sym_BSLASHautocite] = ACTIONS(4753), + [anon_sym_BSLASHAutocite] = ACTIONS(4753), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4751), + [anon_sym_BSLASHvolcite] = ACTIONS(4753), + [anon_sym_BSLASHVolcite] = ACTIONS(4753), + [anon_sym_BSLASHpvolcite] = ACTIONS(4753), + [anon_sym_BSLASHPvolcite] = ACTIONS(4753), + [anon_sym_BSLASHfvolcite] = ACTIONS(4753), + [anon_sym_BSLASHftvolcite] = ACTIONS(4753), + [anon_sym_BSLASHsvolcite] = ACTIONS(4753), + [anon_sym_BSLASHSvolcite] = ACTIONS(4753), + [anon_sym_BSLASHtvolcite] = ACTIONS(4753), + [anon_sym_BSLASHTvolcite] = ACTIONS(4753), + [anon_sym_BSLASHavolcite] = ACTIONS(4753), + [anon_sym_BSLASHAvolcite] = ACTIONS(4753), + [anon_sym_BSLASHnotecite] = ACTIONS(4753), + [anon_sym_BSLASHNotecite] = ACTIONS(4753), + [anon_sym_BSLASHpnotecite] = ACTIONS(4753), + [anon_sym_BSLASHPnotecite] = ACTIONS(4753), + [anon_sym_BSLASHfnotecite] = ACTIONS(4753), + [anon_sym_BSLASHlabel] = ACTIONS(4753), + [anon_sym_BSLASHref] = ACTIONS(4753), + [anon_sym_BSLASHeqref] = ACTIONS(4753), + [anon_sym_BSLASHvref] = ACTIONS(4753), + [anon_sym_BSLASHVref] = ACTIONS(4753), + [anon_sym_BSLASHautoref] = ACTIONS(4753), + [anon_sym_BSLASHpageref] = ACTIONS(4753), + [anon_sym_BSLASHcref] = ACTIONS(4753), + [anon_sym_BSLASHCref] = ACTIONS(4753), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnameCref] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4753), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4753), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4753), + [anon_sym_BSLASHlabelcref] = ACTIONS(4753), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange] = ACTIONS(4753), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHCrefrange] = ACTIONS(4753), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4751), + [anon_sym_BSLASHnewlabel] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand] = ACTIONS(4753), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4753), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4753), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4751), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4753), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4751), + [anon_sym_BSLASHdef] = ACTIONS(4753), + [anon_sym_BSLASHlet] = ACTIONS(4753), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4753), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4753), + [anon_sym_BSLASHgls] = ACTIONS(4753), + [anon_sym_BSLASHGls] = ACTIONS(4753), + [anon_sym_BSLASHGLS] = ACTIONS(4753), + [anon_sym_BSLASHglspl] = ACTIONS(4753), + [anon_sym_BSLASHGlspl] = ACTIONS(4753), + [anon_sym_BSLASHGLSpl] = ACTIONS(4753), + [anon_sym_BSLASHglsdisp] = ACTIONS(4753), + [anon_sym_BSLASHglslink] = ACTIONS(4753), + [anon_sym_BSLASHglstext] = ACTIONS(4753), + [anon_sym_BSLASHGlstext] = ACTIONS(4753), + [anon_sym_BSLASHGLStext] = ACTIONS(4753), + [anon_sym_BSLASHglsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4753), + [anon_sym_BSLASHglsplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSplural] = ACTIONS(4753), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4753), + [anon_sym_BSLASHglsname] = ACTIONS(4753), + [anon_sym_BSLASHGlsname] = ACTIONS(4753), + [anon_sym_BSLASHGLSname] = ACTIONS(4753), + [anon_sym_BSLASHglssymbol] = ACTIONS(4753), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4753), + [anon_sym_BSLASHglsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4753), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4753), + [anon_sym_BSLASHglsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4753), + [anon_sym_BSLASHglsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4753), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4753), + [anon_sym_BSLASHglsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4753), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4753), + [anon_sym_BSLASHglsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4753), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4753), + [anon_sym_BSLASHnewacronym] = ACTIONS(4753), + [anon_sym_BSLASHacrshort] = ACTIONS(4753), + [anon_sym_BSLASHAcrshort] = ACTIONS(4753), + [anon_sym_BSLASHACRshort] = ACTIONS(4753), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4753), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4753), + [anon_sym_BSLASHacrlong] = ACTIONS(4753), + [anon_sym_BSLASHAcrlong] = ACTIONS(4753), + [anon_sym_BSLASHACRlong] = ACTIONS(4753), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4753), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4753), + [anon_sym_BSLASHacrfull] = ACTIONS(4753), + [anon_sym_BSLASHAcrfull] = ACTIONS(4753), + [anon_sym_BSLASHACRfull] = ACTIONS(4753), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4753), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4753), + [anon_sym_BSLASHacs] = ACTIONS(4753), + [anon_sym_BSLASHAcs] = ACTIONS(4753), + [anon_sym_BSLASHacsp] = ACTIONS(4753), + [anon_sym_BSLASHAcsp] = ACTIONS(4753), + [anon_sym_BSLASHacl] = ACTIONS(4753), + [anon_sym_BSLASHAcl] = ACTIONS(4753), + [anon_sym_BSLASHaclp] = ACTIONS(4753), + [anon_sym_BSLASHAclp] = ACTIONS(4753), + [anon_sym_BSLASHacf] = ACTIONS(4753), + [anon_sym_BSLASHAcf] = ACTIONS(4753), + [anon_sym_BSLASHacfp] = ACTIONS(4753), + [anon_sym_BSLASHAcfp] = ACTIONS(4753), + [anon_sym_BSLASHac] = ACTIONS(4753), + [anon_sym_BSLASHAc] = ACTIONS(4753), + [anon_sym_BSLASHacp] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4753), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4753), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4753), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4753), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4753), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4753), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4753), + [anon_sym_BSLASHcolor] = ACTIONS(4753), + [anon_sym_BSLASHcolorbox] = ACTIONS(4753), + [anon_sym_BSLASHtextcolor] = ACTIONS(4753), + [anon_sym_BSLASHpagecolor] = ACTIONS(4753), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4753), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4753), + [sym__trivia_raw_fi] = ACTIONS(5519), + }, + [1508] = { + [sym_command_name] = ACTIONS(4865), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4865), + [anon_sym_BSLASHfi] = ACTIONS(5521), + [anon_sym_RBRACK] = ACTIONS(4863), + [anon_sym_COMMA] = ACTIONS(4863), + [anon_sym_EQ] = ACTIONS(4863), + [anon_sym_RBRACE] = ACTIONS(4863), + [sym_word] = ACTIONS(4865), + [sym_placeholder] = ACTIONS(4863), + [anon_sym_PLUS] = ACTIONS(4865), + [anon_sym_DASH] = ACTIONS(4865), + [anon_sym_STAR] = ACTIONS(4865), + [anon_sym_SLASH] = ACTIONS(4865), + [anon_sym_CARET] = ACTIONS(4865), + [anon_sym__] = ACTIONS(4865), + [anon_sym_LT] = ACTIONS(4865), + [anon_sym_GT] = ACTIONS(4865), + [anon_sym_BANG] = ACTIONS(4865), + [anon_sym_PIPE] = ACTIONS(4865), + [anon_sym_COLON] = ACTIONS(4865), + [anon_sym_SQUOTE] = ACTIONS(4865), + [anon_sym_BSLASHusepackage] = ACTIONS(4865), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4865), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4865), + [anon_sym_BSLASHinclude] = ACTIONS(4865), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4865), + [anon_sym_BSLASHinput] = ACTIONS(4865), + [anon_sym_BSLASHsubfile] = ACTIONS(4865), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4865), + [anon_sym_BSLASHbibliography] = ACTIONS(4865), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4865), + [anon_sym_BSLASHincludesvg] = ACTIONS(4865), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4865), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4865), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4865), + [anon_sym_BSLASHimport] = ACTIONS(4865), + [anon_sym_BSLASHsubimport] = ACTIONS(4865), + [anon_sym_BSLASHinputfrom] = ACTIONS(4865), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4865), + [anon_sym_BSLASHincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4865), + [anon_sym_BSLASHcaption] = ACTIONS(4865), + [anon_sym_BSLASHcite] = ACTIONS(4865), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCite] = ACTIONS(4865), + [anon_sym_BSLASHnocite] = ACTIONS(4865), + [anon_sym_BSLASHcitet] = ACTIONS(4865), + [anon_sym_BSLASHcitep] = ACTIONS(4865), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteauthor] = ACTIONS(4865), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4865), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitetitle] = ACTIONS(4865), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteyear] = ACTIONS(4865), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4863), + [anon_sym_BSLASHcitedate] = ACTIONS(4865), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4863), + [anon_sym_BSLASHciteurl] = ACTIONS(4865), + [anon_sym_BSLASHfullcite] = ACTIONS(4865), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4865), + [anon_sym_BSLASHcitealt] = ACTIONS(4865), + [anon_sym_BSLASHcitealp] = ACTIONS(4865), + [anon_sym_BSLASHcitetext] = ACTIONS(4865), + [anon_sym_BSLASHparencite] = ACTIONS(4865), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHParencite] = ACTIONS(4865), + [anon_sym_BSLASHfootcite] = ACTIONS(4865), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4865), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4865), + [anon_sym_BSLASHtextcite] = ACTIONS(4865), + [anon_sym_BSLASHTextcite] = ACTIONS(4865), + [anon_sym_BSLASHsmartcite] = ACTIONS(4865), + [anon_sym_BSLASHSmartcite] = ACTIONS(4865), + [anon_sym_BSLASHsupercite] = ACTIONS(4865), + [anon_sym_BSLASHautocite] = ACTIONS(4865), + [anon_sym_BSLASHAutocite] = ACTIONS(4865), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4863), + [anon_sym_BSLASHvolcite] = ACTIONS(4865), + [anon_sym_BSLASHVolcite] = ACTIONS(4865), + [anon_sym_BSLASHpvolcite] = ACTIONS(4865), + [anon_sym_BSLASHPvolcite] = ACTIONS(4865), + [anon_sym_BSLASHfvolcite] = ACTIONS(4865), + [anon_sym_BSLASHftvolcite] = ACTIONS(4865), + [anon_sym_BSLASHsvolcite] = ACTIONS(4865), + [anon_sym_BSLASHSvolcite] = ACTIONS(4865), + [anon_sym_BSLASHtvolcite] = ACTIONS(4865), + [anon_sym_BSLASHTvolcite] = ACTIONS(4865), + [anon_sym_BSLASHavolcite] = ACTIONS(4865), + [anon_sym_BSLASHAvolcite] = ACTIONS(4865), + [anon_sym_BSLASHnotecite] = ACTIONS(4865), + [anon_sym_BSLASHNotecite] = ACTIONS(4865), + [anon_sym_BSLASHpnotecite] = ACTIONS(4865), + [anon_sym_BSLASHPnotecite] = ACTIONS(4865), + [anon_sym_BSLASHfnotecite] = ACTIONS(4865), + [anon_sym_BSLASHlabel] = ACTIONS(4865), + [anon_sym_BSLASHref] = ACTIONS(4865), + [anon_sym_BSLASHeqref] = ACTIONS(4865), + [anon_sym_BSLASHvref] = ACTIONS(4865), + [anon_sym_BSLASHVref] = ACTIONS(4865), + [anon_sym_BSLASHautoref] = ACTIONS(4865), + [anon_sym_BSLASHpageref] = ACTIONS(4865), + [anon_sym_BSLASHcref] = ACTIONS(4865), + [anon_sym_BSLASHCref] = ACTIONS(4865), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnameCref] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4865), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4865), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4865), + [anon_sym_BSLASHlabelcref] = ACTIONS(4865), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange] = ACTIONS(4865), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHCrefrange] = ACTIONS(4865), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4863), + [anon_sym_BSLASHnewlabel] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand] = ACTIONS(4865), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4865), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4865), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4863), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4865), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4863), + [anon_sym_BSLASHdef] = ACTIONS(4865), + [anon_sym_BSLASHlet] = ACTIONS(4865), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4865), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4865), + [anon_sym_BSLASHgls] = ACTIONS(4865), + [anon_sym_BSLASHGls] = ACTIONS(4865), + [anon_sym_BSLASHGLS] = ACTIONS(4865), + [anon_sym_BSLASHglspl] = ACTIONS(4865), + [anon_sym_BSLASHGlspl] = ACTIONS(4865), + [anon_sym_BSLASHGLSpl] = ACTIONS(4865), + [anon_sym_BSLASHglsdisp] = ACTIONS(4865), + [anon_sym_BSLASHglslink] = ACTIONS(4865), + [anon_sym_BSLASHglstext] = ACTIONS(4865), + [anon_sym_BSLASHGlstext] = ACTIONS(4865), + [anon_sym_BSLASHGLStext] = ACTIONS(4865), + [anon_sym_BSLASHglsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4865), + [anon_sym_BSLASHglsplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSplural] = ACTIONS(4865), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4865), + [anon_sym_BSLASHglsname] = ACTIONS(4865), + [anon_sym_BSLASHGlsname] = ACTIONS(4865), + [anon_sym_BSLASHGLSname] = ACTIONS(4865), + [anon_sym_BSLASHglssymbol] = ACTIONS(4865), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4865), + [anon_sym_BSLASHglsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4865), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4865), + [anon_sym_BSLASHglsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4865), + [anon_sym_BSLASHglsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4865), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4865), + [anon_sym_BSLASHglsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4865), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4865), + [anon_sym_BSLASHglsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4865), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4865), + [anon_sym_BSLASHnewacronym] = ACTIONS(4865), + [anon_sym_BSLASHacrshort] = ACTIONS(4865), + [anon_sym_BSLASHAcrshort] = ACTIONS(4865), + [anon_sym_BSLASHACRshort] = ACTIONS(4865), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4865), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4865), + [anon_sym_BSLASHacrlong] = ACTIONS(4865), + [anon_sym_BSLASHAcrlong] = ACTIONS(4865), + [anon_sym_BSLASHACRlong] = ACTIONS(4865), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4865), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4865), + [anon_sym_BSLASHacrfull] = ACTIONS(4865), + [anon_sym_BSLASHAcrfull] = ACTIONS(4865), + [anon_sym_BSLASHACRfull] = ACTIONS(4865), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4865), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4865), + [anon_sym_BSLASHacs] = ACTIONS(4865), + [anon_sym_BSLASHAcs] = ACTIONS(4865), + [anon_sym_BSLASHacsp] = ACTIONS(4865), + [anon_sym_BSLASHAcsp] = ACTIONS(4865), + [anon_sym_BSLASHacl] = ACTIONS(4865), + [anon_sym_BSLASHAcl] = ACTIONS(4865), + [anon_sym_BSLASHaclp] = ACTIONS(4865), + [anon_sym_BSLASHAclp] = ACTIONS(4865), + [anon_sym_BSLASHacf] = ACTIONS(4865), + [anon_sym_BSLASHAcf] = ACTIONS(4865), + [anon_sym_BSLASHacfp] = ACTIONS(4865), + [anon_sym_BSLASHAcfp] = ACTIONS(4865), + [anon_sym_BSLASHac] = ACTIONS(4865), + [anon_sym_BSLASHAc] = ACTIONS(4865), + [anon_sym_BSLASHacp] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4865), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4865), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4865), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4865), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4865), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4865), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4865), + [anon_sym_BSLASHcolor] = ACTIONS(4865), + [anon_sym_BSLASHcolorbox] = ACTIONS(4865), + [anon_sym_BSLASHtextcolor] = ACTIONS(4865), + [anon_sym_BSLASHpagecolor] = ACTIONS(4865), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4865), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4865), + }, + [1509] = { + [sym_command_name] = ACTIONS(5021), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5065), - [anon_sym_RBRACK] = ACTIONS(5063), - [anon_sym_COMMA] = ACTIONS(5063), - [anon_sym_EQ] = ACTIONS(5063), - [anon_sym_RBRACE] = ACTIONS(5063), - [sym_word] = ACTIONS(5065), - [sym_placeholder] = ACTIONS(5063), - [anon_sym_PLUS] = ACTIONS(5065), - [anon_sym_DASH] = ACTIONS(5065), - [anon_sym_STAR] = ACTIONS(5065), - [anon_sym_SLASH] = ACTIONS(5065), - [anon_sym_CARET] = ACTIONS(5065), - [anon_sym__] = ACTIONS(5065), - [anon_sym_LT] = ACTIONS(5065), - [anon_sym_GT] = ACTIONS(5065), - [anon_sym_BANG] = ACTIONS(5065), - [anon_sym_PIPE] = ACTIONS(5065), - [anon_sym_COLON] = ACTIONS(5065), - [anon_sym_SQUOTE] = ACTIONS(5065), - [anon_sym_BSLASHusepackage] = ACTIONS(5065), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), - [anon_sym_BSLASHinclude] = ACTIONS(5065), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), - [anon_sym_BSLASHinput] = ACTIONS(5065), - [anon_sym_BSLASHsubfile] = ACTIONS(5065), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), - [anon_sym_BSLASHbibliography] = ACTIONS(5065), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), - [anon_sym_BSLASHincludesvg] = ACTIONS(5065), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), - [anon_sym_BSLASHimport] = ACTIONS(5065), - [anon_sym_BSLASHsubimport] = ACTIONS(5065), - [anon_sym_BSLASHinputfrom] = ACTIONS(5065), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), - [anon_sym_BSLASHincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), - [anon_sym_BSLASHcaption] = ACTIONS(5065), - [anon_sym_BSLASHcite] = ACTIONS(5065), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCite] = ACTIONS(5065), - [anon_sym_BSLASHnocite] = ACTIONS(5065), - [anon_sym_BSLASHcitet] = ACTIONS(5065), - [anon_sym_BSLASHcitep] = ACTIONS(5065), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteauthor] = ACTIONS(5065), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitetitle] = ACTIONS(5065), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteyear] = ACTIONS(5065), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), - [anon_sym_BSLASHcitedate] = ACTIONS(5065), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), - [anon_sym_BSLASHciteurl] = ACTIONS(5065), - [anon_sym_BSLASHfullcite] = ACTIONS(5065), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), - [anon_sym_BSLASHcitealt] = ACTIONS(5065), - [anon_sym_BSLASHcitealp] = ACTIONS(5065), - [anon_sym_BSLASHcitetext] = ACTIONS(5065), - [anon_sym_BSLASHparencite] = ACTIONS(5065), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHParencite] = ACTIONS(5065), - [anon_sym_BSLASHfootcite] = ACTIONS(5065), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), - [anon_sym_BSLASHtextcite] = ACTIONS(5065), - [anon_sym_BSLASHTextcite] = ACTIONS(5065), - [anon_sym_BSLASHsmartcite] = ACTIONS(5065), - [anon_sym_BSLASHSmartcite] = ACTIONS(5065), - [anon_sym_BSLASHsupercite] = ACTIONS(5065), - [anon_sym_BSLASHautocite] = ACTIONS(5065), - [anon_sym_BSLASHAutocite] = ACTIONS(5065), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), - [anon_sym_BSLASHvolcite] = ACTIONS(5065), - [anon_sym_BSLASHVolcite] = ACTIONS(5065), - [anon_sym_BSLASHpvolcite] = ACTIONS(5065), - [anon_sym_BSLASHPvolcite] = ACTIONS(5065), - [anon_sym_BSLASHfvolcite] = ACTIONS(5065), - [anon_sym_BSLASHftvolcite] = ACTIONS(5065), - [anon_sym_BSLASHsvolcite] = ACTIONS(5065), - [anon_sym_BSLASHSvolcite] = ACTIONS(5065), - [anon_sym_BSLASHtvolcite] = ACTIONS(5065), - [anon_sym_BSLASHTvolcite] = ACTIONS(5065), - [anon_sym_BSLASHavolcite] = ACTIONS(5065), - [anon_sym_BSLASHAvolcite] = ACTIONS(5065), - [anon_sym_BSLASHnotecite] = ACTIONS(5065), - [anon_sym_BSLASHNotecite] = ACTIONS(5065), - [anon_sym_BSLASHpnotecite] = ACTIONS(5065), - [anon_sym_BSLASHPnotecite] = ACTIONS(5065), - [anon_sym_BSLASHfnotecite] = ACTIONS(5065), - [anon_sym_BSLASHlabel] = ACTIONS(5065), - [anon_sym_BSLASHref] = ACTIONS(5065), - [anon_sym_BSLASHeqref] = ACTIONS(5065), - [anon_sym_BSLASHvref] = ACTIONS(5065), - [anon_sym_BSLASHVref] = ACTIONS(5065), - [anon_sym_BSLASHautoref] = ACTIONS(5065), - [anon_sym_BSLASHpageref] = ACTIONS(5065), - [anon_sym_BSLASHcref] = ACTIONS(5065), - [anon_sym_BSLASHCref] = ACTIONS(5065), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnameCref] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), - [anon_sym_BSLASHlabelcref] = ACTIONS(5065), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange] = ACTIONS(5065), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHCrefrange] = ACTIONS(5065), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), - [anon_sym_BSLASHnewlabel] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand] = ACTIONS(5065), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), - [anon_sym_BSLASHdef] = ACTIONS(5065), - [anon_sym_BSLASHlet] = ACTIONS(5065), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), - [anon_sym_BSLASHgls] = ACTIONS(5065), - [anon_sym_BSLASHGls] = ACTIONS(5065), - [anon_sym_BSLASHGLS] = ACTIONS(5065), - [anon_sym_BSLASHglspl] = ACTIONS(5065), - [anon_sym_BSLASHGlspl] = ACTIONS(5065), - [anon_sym_BSLASHGLSpl] = ACTIONS(5065), - [anon_sym_BSLASHglsdisp] = ACTIONS(5065), - [anon_sym_BSLASHglslink] = ACTIONS(5065), - [anon_sym_BSLASHglstext] = ACTIONS(5065), - [anon_sym_BSLASHGlstext] = ACTIONS(5065), - [anon_sym_BSLASHGLStext] = ACTIONS(5065), - [anon_sym_BSLASHglsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), - [anon_sym_BSLASHglsplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSplural] = ACTIONS(5065), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), - [anon_sym_BSLASHglsname] = ACTIONS(5065), - [anon_sym_BSLASHGlsname] = ACTIONS(5065), - [anon_sym_BSLASHGLSname] = ACTIONS(5065), - [anon_sym_BSLASHglssymbol] = ACTIONS(5065), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), - [anon_sym_BSLASHglsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), - [anon_sym_BSLASHglsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), - [anon_sym_BSLASHglsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), - [anon_sym_BSLASHglsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), - [anon_sym_BSLASHglsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), - [anon_sym_BSLASHnewacronym] = ACTIONS(5065), - [anon_sym_BSLASHacrshort] = ACTIONS(5065), - [anon_sym_BSLASHAcrshort] = ACTIONS(5065), - [anon_sym_BSLASHACRshort] = ACTIONS(5065), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), - [anon_sym_BSLASHacrlong] = ACTIONS(5065), - [anon_sym_BSLASHAcrlong] = ACTIONS(5065), - [anon_sym_BSLASHACRlong] = ACTIONS(5065), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), - [anon_sym_BSLASHacrfull] = ACTIONS(5065), - [anon_sym_BSLASHAcrfull] = ACTIONS(5065), - [anon_sym_BSLASHACRfull] = ACTIONS(5065), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), - [anon_sym_BSLASHacs] = ACTIONS(5065), - [anon_sym_BSLASHAcs] = ACTIONS(5065), - [anon_sym_BSLASHacsp] = ACTIONS(5065), - [anon_sym_BSLASHAcsp] = ACTIONS(5065), - [anon_sym_BSLASHacl] = ACTIONS(5065), - [anon_sym_BSLASHAcl] = ACTIONS(5065), - [anon_sym_BSLASHaclp] = ACTIONS(5065), - [anon_sym_BSLASHAclp] = ACTIONS(5065), - [anon_sym_BSLASHacf] = ACTIONS(5065), - [anon_sym_BSLASHAcf] = ACTIONS(5065), - [anon_sym_BSLASHacfp] = ACTIONS(5065), - [anon_sym_BSLASHAcfp] = ACTIONS(5065), - [anon_sym_BSLASHac] = ACTIONS(5065), - [anon_sym_BSLASHAc] = ACTIONS(5065), - [anon_sym_BSLASHacp] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), - [anon_sym_BSLASHcolor] = ACTIONS(5065), - [anon_sym_BSLASHcolorbox] = ACTIONS(5065), - [anon_sym_BSLASHtextcolor] = ACTIONS(5065), - [anon_sym_BSLASHpagecolor] = ACTIONS(5065), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + [anon_sym_BSLASHiffalse] = ACTIONS(5021), + [anon_sym_RBRACK] = ACTIONS(5019), + [anon_sym_COMMA] = ACTIONS(5019), + [anon_sym_EQ] = ACTIONS(5019), + [anon_sym_RBRACE] = ACTIONS(5019), + [sym_word] = ACTIONS(5021), + [sym_placeholder] = ACTIONS(5019), + [anon_sym_PLUS] = ACTIONS(5021), + [anon_sym_DASH] = ACTIONS(5021), + [anon_sym_STAR] = ACTIONS(5021), + [anon_sym_SLASH] = ACTIONS(5021), + [anon_sym_CARET] = ACTIONS(5021), + [anon_sym__] = ACTIONS(5021), + [anon_sym_LT] = ACTIONS(5021), + [anon_sym_GT] = ACTIONS(5021), + [anon_sym_BANG] = ACTIONS(5021), + [anon_sym_PIPE] = ACTIONS(5021), + [anon_sym_COLON] = ACTIONS(5021), + [anon_sym_SQUOTE] = ACTIONS(5021), + [anon_sym_BSLASHusepackage] = ACTIONS(5021), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5021), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5021), + [anon_sym_BSLASHinclude] = ACTIONS(5021), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5021), + [anon_sym_BSLASHinput] = ACTIONS(5021), + [anon_sym_BSLASHsubfile] = ACTIONS(5021), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5021), + [anon_sym_BSLASHbibliography] = ACTIONS(5021), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5021), + [anon_sym_BSLASHincludesvg] = ACTIONS(5021), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5021), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5021), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5021), + [anon_sym_BSLASHimport] = ACTIONS(5021), + [anon_sym_BSLASHsubimport] = ACTIONS(5021), + [anon_sym_BSLASHinputfrom] = ACTIONS(5021), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5021), + [anon_sym_BSLASHincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5021), + [anon_sym_BSLASHcaption] = ACTIONS(5021), + [anon_sym_BSLASHcite] = ACTIONS(5021), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCite] = ACTIONS(5021), + [anon_sym_BSLASHnocite] = ACTIONS(5021), + [anon_sym_BSLASHcitet] = ACTIONS(5021), + [anon_sym_BSLASHcitep] = ACTIONS(5021), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteauthor] = ACTIONS(5021), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5021), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitetitle] = ACTIONS(5021), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteyear] = ACTIONS(5021), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5019), + [anon_sym_BSLASHcitedate] = ACTIONS(5021), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5019), + [anon_sym_BSLASHciteurl] = ACTIONS(5021), + [anon_sym_BSLASHfullcite] = ACTIONS(5021), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5021), + [anon_sym_BSLASHcitealt] = ACTIONS(5021), + [anon_sym_BSLASHcitealp] = ACTIONS(5021), + [anon_sym_BSLASHcitetext] = ACTIONS(5021), + [anon_sym_BSLASHparencite] = ACTIONS(5021), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHParencite] = ACTIONS(5021), + [anon_sym_BSLASHfootcite] = ACTIONS(5021), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5021), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5021), + [anon_sym_BSLASHtextcite] = ACTIONS(5021), + [anon_sym_BSLASHTextcite] = ACTIONS(5021), + [anon_sym_BSLASHsmartcite] = ACTIONS(5021), + [anon_sym_BSLASHSmartcite] = ACTIONS(5021), + [anon_sym_BSLASHsupercite] = ACTIONS(5021), + [anon_sym_BSLASHautocite] = ACTIONS(5021), + [anon_sym_BSLASHAutocite] = ACTIONS(5021), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5019), + [anon_sym_BSLASHvolcite] = ACTIONS(5021), + [anon_sym_BSLASHVolcite] = ACTIONS(5021), + [anon_sym_BSLASHpvolcite] = ACTIONS(5021), + [anon_sym_BSLASHPvolcite] = ACTIONS(5021), + [anon_sym_BSLASHfvolcite] = ACTIONS(5021), + [anon_sym_BSLASHftvolcite] = ACTIONS(5021), + [anon_sym_BSLASHsvolcite] = ACTIONS(5021), + [anon_sym_BSLASHSvolcite] = ACTIONS(5021), + [anon_sym_BSLASHtvolcite] = ACTIONS(5021), + [anon_sym_BSLASHTvolcite] = ACTIONS(5021), + [anon_sym_BSLASHavolcite] = ACTIONS(5021), + [anon_sym_BSLASHAvolcite] = ACTIONS(5021), + [anon_sym_BSLASHnotecite] = ACTIONS(5021), + [anon_sym_BSLASHNotecite] = ACTIONS(5021), + [anon_sym_BSLASHpnotecite] = ACTIONS(5021), + [anon_sym_BSLASHPnotecite] = ACTIONS(5021), + [anon_sym_BSLASHfnotecite] = ACTIONS(5021), + [anon_sym_BSLASHlabel] = ACTIONS(5021), + [anon_sym_BSLASHref] = ACTIONS(5021), + [anon_sym_BSLASHeqref] = ACTIONS(5021), + [anon_sym_BSLASHvref] = ACTIONS(5021), + [anon_sym_BSLASHVref] = ACTIONS(5021), + [anon_sym_BSLASHautoref] = ACTIONS(5021), + [anon_sym_BSLASHpageref] = ACTIONS(5021), + [anon_sym_BSLASHcref] = ACTIONS(5021), + [anon_sym_BSLASHCref] = ACTIONS(5021), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnameCref] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5021), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5021), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5021), + [anon_sym_BSLASHlabelcref] = ACTIONS(5021), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange] = ACTIONS(5021), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHCrefrange] = ACTIONS(5021), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5019), + [anon_sym_BSLASHnewlabel] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand] = ACTIONS(5021), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5021), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5021), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5019), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5021), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5019), + [anon_sym_BSLASHdef] = ACTIONS(5021), + [anon_sym_BSLASHlet] = ACTIONS(5021), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5021), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5021), + [anon_sym_BSLASHgls] = ACTIONS(5021), + [anon_sym_BSLASHGls] = ACTIONS(5021), + [anon_sym_BSLASHGLS] = ACTIONS(5021), + [anon_sym_BSLASHglspl] = ACTIONS(5021), + [anon_sym_BSLASHGlspl] = ACTIONS(5021), + [anon_sym_BSLASHGLSpl] = ACTIONS(5021), + [anon_sym_BSLASHglsdisp] = ACTIONS(5021), + [anon_sym_BSLASHglslink] = ACTIONS(5021), + [anon_sym_BSLASHglstext] = ACTIONS(5021), + [anon_sym_BSLASHGlstext] = ACTIONS(5021), + [anon_sym_BSLASHGLStext] = ACTIONS(5021), + [anon_sym_BSLASHglsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5021), + [anon_sym_BSLASHglsplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSplural] = ACTIONS(5021), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5021), + [anon_sym_BSLASHglsname] = ACTIONS(5021), + [anon_sym_BSLASHGlsname] = ACTIONS(5021), + [anon_sym_BSLASHGLSname] = ACTIONS(5021), + [anon_sym_BSLASHglssymbol] = ACTIONS(5021), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5021), + [anon_sym_BSLASHglsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5021), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5021), + [anon_sym_BSLASHglsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5021), + [anon_sym_BSLASHglsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5021), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5021), + [anon_sym_BSLASHglsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5021), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5021), + [anon_sym_BSLASHglsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5021), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5021), + [anon_sym_BSLASHnewacronym] = ACTIONS(5021), + [anon_sym_BSLASHacrshort] = ACTIONS(5021), + [anon_sym_BSLASHAcrshort] = ACTIONS(5021), + [anon_sym_BSLASHACRshort] = ACTIONS(5021), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5021), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5021), + [anon_sym_BSLASHacrlong] = ACTIONS(5021), + [anon_sym_BSLASHAcrlong] = ACTIONS(5021), + [anon_sym_BSLASHACRlong] = ACTIONS(5021), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5021), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5021), + [anon_sym_BSLASHacrfull] = ACTIONS(5021), + [anon_sym_BSLASHAcrfull] = ACTIONS(5021), + [anon_sym_BSLASHACRfull] = ACTIONS(5021), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5021), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5021), + [anon_sym_BSLASHacs] = ACTIONS(5021), + [anon_sym_BSLASHAcs] = ACTIONS(5021), + [anon_sym_BSLASHacsp] = ACTIONS(5021), + [anon_sym_BSLASHAcsp] = ACTIONS(5021), + [anon_sym_BSLASHacl] = ACTIONS(5021), + [anon_sym_BSLASHAcl] = ACTIONS(5021), + [anon_sym_BSLASHaclp] = ACTIONS(5021), + [anon_sym_BSLASHAclp] = ACTIONS(5021), + [anon_sym_BSLASHacf] = ACTIONS(5021), + [anon_sym_BSLASHAcf] = ACTIONS(5021), + [anon_sym_BSLASHacfp] = ACTIONS(5021), + [anon_sym_BSLASHAcfp] = ACTIONS(5021), + [anon_sym_BSLASHac] = ACTIONS(5021), + [anon_sym_BSLASHAc] = ACTIONS(5021), + [anon_sym_BSLASHacp] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5021), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5021), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5021), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5021), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5021), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5021), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5021), + [anon_sym_BSLASHcolor] = ACTIONS(5021), + [anon_sym_BSLASHcolorbox] = ACTIONS(5021), + [anon_sym_BSLASHtextcolor] = ACTIONS(5021), + [anon_sym_BSLASHpagecolor] = ACTIONS(5021), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5021), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5021), }, - [1533] = { - [sym_command_name] = ACTIONS(5251), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5251), - [anon_sym_RBRACK] = ACTIONS(5249), - [anon_sym_COMMA] = ACTIONS(5249), - [anon_sym_EQ] = ACTIONS(5249), - [anon_sym_RBRACE] = ACTIONS(5249), - [sym_word] = ACTIONS(5251), - [sym_placeholder] = ACTIONS(5249), - [anon_sym_PLUS] = ACTIONS(5251), - [anon_sym_DASH] = ACTIONS(5251), - [anon_sym_STAR] = ACTIONS(5251), - [anon_sym_SLASH] = ACTIONS(5251), - [anon_sym_CARET] = ACTIONS(5251), - [anon_sym__] = ACTIONS(5251), - [anon_sym_LT] = ACTIONS(5251), - [anon_sym_GT] = ACTIONS(5251), - [anon_sym_BANG] = ACTIONS(5251), - [anon_sym_PIPE] = ACTIONS(5251), - [anon_sym_COLON] = ACTIONS(5251), - [anon_sym_SQUOTE] = ACTIONS(5251), - [anon_sym_BSLASHusepackage] = ACTIONS(5251), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5251), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5251), - [anon_sym_BSLASHinclude] = ACTIONS(5251), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5251), - [anon_sym_BSLASHinput] = ACTIONS(5251), - [anon_sym_BSLASHsubfile] = ACTIONS(5251), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5251), - [anon_sym_BSLASHbibliography] = ACTIONS(5251), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5251), - [anon_sym_BSLASHincludesvg] = ACTIONS(5251), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5251), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5251), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5251), - [anon_sym_BSLASHimport] = ACTIONS(5251), - [anon_sym_BSLASHsubimport] = ACTIONS(5251), - [anon_sym_BSLASHinputfrom] = ACTIONS(5251), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5251), - [anon_sym_BSLASHincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5251), - [anon_sym_BSLASHcaption] = ACTIONS(5251), - [anon_sym_BSLASHcite] = ACTIONS(5251), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCite] = ACTIONS(5251), - [anon_sym_BSLASHnocite] = ACTIONS(5251), - [anon_sym_BSLASHcitet] = ACTIONS(5251), - [anon_sym_BSLASHcitep] = ACTIONS(5251), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteauthor] = ACTIONS(5251), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5251), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitetitle] = ACTIONS(5251), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteyear] = ACTIONS(5251), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5249), - [anon_sym_BSLASHcitedate] = ACTIONS(5251), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5249), - [anon_sym_BSLASHciteurl] = ACTIONS(5251), - [anon_sym_BSLASHfullcite] = ACTIONS(5251), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5251), - [anon_sym_BSLASHcitealt] = ACTIONS(5251), - [anon_sym_BSLASHcitealp] = ACTIONS(5251), - [anon_sym_BSLASHcitetext] = ACTIONS(5251), - [anon_sym_BSLASHparencite] = ACTIONS(5251), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHParencite] = ACTIONS(5251), - [anon_sym_BSLASHfootcite] = ACTIONS(5251), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5251), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5251), - [anon_sym_BSLASHtextcite] = ACTIONS(5251), - [anon_sym_BSLASHTextcite] = ACTIONS(5251), - [anon_sym_BSLASHsmartcite] = ACTIONS(5251), - [anon_sym_BSLASHSmartcite] = ACTIONS(5251), - [anon_sym_BSLASHsupercite] = ACTIONS(5251), - [anon_sym_BSLASHautocite] = ACTIONS(5251), - [anon_sym_BSLASHAutocite] = ACTIONS(5251), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5249), - [anon_sym_BSLASHvolcite] = ACTIONS(5251), - [anon_sym_BSLASHVolcite] = ACTIONS(5251), - [anon_sym_BSLASHpvolcite] = ACTIONS(5251), - [anon_sym_BSLASHPvolcite] = ACTIONS(5251), - [anon_sym_BSLASHfvolcite] = ACTIONS(5251), - [anon_sym_BSLASHftvolcite] = ACTIONS(5251), - [anon_sym_BSLASHsvolcite] = ACTIONS(5251), - [anon_sym_BSLASHSvolcite] = ACTIONS(5251), - [anon_sym_BSLASHtvolcite] = ACTIONS(5251), - [anon_sym_BSLASHTvolcite] = ACTIONS(5251), - [anon_sym_BSLASHavolcite] = ACTIONS(5251), - [anon_sym_BSLASHAvolcite] = ACTIONS(5251), - [anon_sym_BSLASHnotecite] = ACTIONS(5251), - [anon_sym_BSLASHNotecite] = ACTIONS(5251), - [anon_sym_BSLASHpnotecite] = ACTIONS(5251), - [anon_sym_BSLASHPnotecite] = ACTIONS(5251), - [anon_sym_BSLASHfnotecite] = ACTIONS(5251), - [anon_sym_BSLASHlabel] = ACTIONS(5251), - [anon_sym_BSLASHref] = ACTIONS(5251), - [anon_sym_BSLASHeqref] = ACTIONS(5251), - [anon_sym_BSLASHvref] = ACTIONS(5251), - [anon_sym_BSLASHVref] = ACTIONS(5251), - [anon_sym_BSLASHautoref] = ACTIONS(5251), - [anon_sym_BSLASHpageref] = ACTIONS(5251), - [anon_sym_BSLASHcref] = ACTIONS(5251), - [anon_sym_BSLASHCref] = ACTIONS(5251), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnameCref] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5251), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5251), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5251), - [anon_sym_BSLASHlabelcref] = ACTIONS(5251), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange] = ACTIONS(5251), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHCrefrange] = ACTIONS(5251), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5249), - [anon_sym_BSLASHnewlabel] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand] = ACTIONS(5251), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5251), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5251), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5249), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5251), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5249), - [anon_sym_BSLASHdef] = ACTIONS(5251), - [anon_sym_BSLASHlet] = ACTIONS(5251), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5251), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5251), - [anon_sym_BSLASHgls] = ACTIONS(5251), - [anon_sym_BSLASHGls] = ACTIONS(5251), - [anon_sym_BSLASHGLS] = ACTIONS(5251), - [anon_sym_BSLASHglspl] = ACTIONS(5251), - [anon_sym_BSLASHGlspl] = ACTIONS(5251), - [anon_sym_BSLASHGLSpl] = ACTIONS(5251), - [anon_sym_BSLASHglsdisp] = ACTIONS(5251), - [anon_sym_BSLASHglslink] = ACTIONS(5251), - [anon_sym_BSLASHglstext] = ACTIONS(5251), - [anon_sym_BSLASHGlstext] = ACTIONS(5251), - [anon_sym_BSLASHGLStext] = ACTIONS(5251), - [anon_sym_BSLASHglsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5251), - [anon_sym_BSLASHglsplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSplural] = ACTIONS(5251), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5251), - [anon_sym_BSLASHglsname] = ACTIONS(5251), - [anon_sym_BSLASHGlsname] = ACTIONS(5251), - [anon_sym_BSLASHGLSname] = ACTIONS(5251), - [anon_sym_BSLASHglssymbol] = ACTIONS(5251), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5251), - [anon_sym_BSLASHglsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5251), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5251), - [anon_sym_BSLASHglsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5251), - [anon_sym_BSLASHglsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5251), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5251), - [anon_sym_BSLASHglsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5251), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5251), - [anon_sym_BSLASHglsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5251), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5251), - [anon_sym_BSLASHnewacronym] = ACTIONS(5251), - [anon_sym_BSLASHacrshort] = ACTIONS(5251), - [anon_sym_BSLASHAcrshort] = ACTIONS(5251), - [anon_sym_BSLASHACRshort] = ACTIONS(5251), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5251), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5251), - [anon_sym_BSLASHacrlong] = ACTIONS(5251), - [anon_sym_BSLASHAcrlong] = ACTIONS(5251), - [anon_sym_BSLASHACRlong] = ACTIONS(5251), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5251), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5251), - [anon_sym_BSLASHacrfull] = ACTIONS(5251), - [anon_sym_BSLASHAcrfull] = ACTIONS(5251), - [anon_sym_BSLASHACRfull] = ACTIONS(5251), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5251), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5251), - [anon_sym_BSLASHacs] = ACTIONS(5251), - [anon_sym_BSLASHAcs] = ACTIONS(5251), - [anon_sym_BSLASHacsp] = ACTIONS(5251), - [anon_sym_BSLASHAcsp] = ACTIONS(5251), - [anon_sym_BSLASHacl] = ACTIONS(5251), - [anon_sym_BSLASHAcl] = ACTIONS(5251), - [anon_sym_BSLASHaclp] = ACTIONS(5251), - [anon_sym_BSLASHAclp] = ACTIONS(5251), - [anon_sym_BSLASHacf] = ACTIONS(5251), - [anon_sym_BSLASHAcf] = ACTIONS(5251), - [anon_sym_BSLASHacfp] = ACTIONS(5251), - [anon_sym_BSLASHAcfp] = ACTIONS(5251), - [anon_sym_BSLASHac] = ACTIONS(5251), - [anon_sym_BSLASHAc] = ACTIONS(5251), - [anon_sym_BSLASHacp] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5251), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5251), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5251), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5251), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5251), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5251), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5251), - [anon_sym_BSLASHcolor] = ACTIONS(5251), - [anon_sym_BSLASHcolorbox] = ACTIONS(5251), - [anon_sym_BSLASHtextcolor] = ACTIONS(5251), - [anon_sym_BSLASHpagecolor] = ACTIONS(5251), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5251), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5251), + [1510] = { + [sym_command_name] = ACTIONS(5181), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5181), + [anon_sym_RBRACK] = ACTIONS(5179), + [anon_sym_COMMA] = ACTIONS(5179), + [anon_sym_EQ] = ACTIONS(5179), + [anon_sym_RBRACE] = ACTIONS(5179), + [sym_word] = ACTIONS(5181), + [sym_placeholder] = ACTIONS(5179), + [anon_sym_PLUS] = ACTIONS(5181), + [anon_sym_DASH] = ACTIONS(5181), + [anon_sym_STAR] = ACTIONS(5181), + [anon_sym_SLASH] = ACTIONS(5181), + [anon_sym_CARET] = ACTIONS(5181), + [anon_sym__] = ACTIONS(5181), + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_BANG] = ACTIONS(5181), + [anon_sym_PIPE] = ACTIONS(5181), + [anon_sym_COLON] = ACTIONS(5181), + [anon_sym_SQUOTE] = ACTIONS(5181), + [anon_sym_BSLASHusepackage] = ACTIONS(5181), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5181), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5181), + [anon_sym_BSLASHinclude] = ACTIONS(5181), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5181), + [anon_sym_BSLASHinput] = ACTIONS(5181), + [anon_sym_BSLASHsubfile] = ACTIONS(5181), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5181), + [anon_sym_BSLASHbibliography] = ACTIONS(5181), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5181), + [anon_sym_BSLASHincludesvg] = ACTIONS(5181), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5181), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5181), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5181), + [anon_sym_BSLASHimport] = ACTIONS(5181), + [anon_sym_BSLASHsubimport] = ACTIONS(5181), + [anon_sym_BSLASHinputfrom] = ACTIONS(5181), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5181), + [anon_sym_BSLASHincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5181), + [anon_sym_BSLASHcaption] = ACTIONS(5181), + [anon_sym_BSLASHcite] = ACTIONS(5181), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCite] = ACTIONS(5181), + [anon_sym_BSLASHnocite] = ACTIONS(5181), + [anon_sym_BSLASHcitet] = ACTIONS(5181), + [anon_sym_BSLASHcitep] = ACTIONS(5181), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteauthor] = ACTIONS(5181), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5181), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitetitle] = ACTIONS(5181), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteyear] = ACTIONS(5181), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5179), + [anon_sym_BSLASHcitedate] = ACTIONS(5181), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5179), + [anon_sym_BSLASHciteurl] = ACTIONS(5181), + [anon_sym_BSLASHfullcite] = ACTIONS(5181), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5181), + [anon_sym_BSLASHcitealt] = ACTIONS(5181), + [anon_sym_BSLASHcitealp] = ACTIONS(5181), + [anon_sym_BSLASHcitetext] = ACTIONS(5181), + [anon_sym_BSLASHparencite] = ACTIONS(5181), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHParencite] = ACTIONS(5181), + [anon_sym_BSLASHfootcite] = ACTIONS(5181), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5181), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5181), + [anon_sym_BSLASHtextcite] = ACTIONS(5181), + [anon_sym_BSLASHTextcite] = ACTIONS(5181), + [anon_sym_BSLASHsmartcite] = ACTIONS(5181), + [anon_sym_BSLASHSmartcite] = ACTIONS(5181), + [anon_sym_BSLASHsupercite] = ACTIONS(5181), + [anon_sym_BSLASHautocite] = ACTIONS(5181), + [anon_sym_BSLASHAutocite] = ACTIONS(5181), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5179), + [anon_sym_BSLASHvolcite] = ACTIONS(5181), + [anon_sym_BSLASHVolcite] = ACTIONS(5181), + [anon_sym_BSLASHpvolcite] = ACTIONS(5181), + [anon_sym_BSLASHPvolcite] = ACTIONS(5181), + [anon_sym_BSLASHfvolcite] = ACTIONS(5181), + [anon_sym_BSLASHftvolcite] = ACTIONS(5181), + [anon_sym_BSLASHsvolcite] = ACTIONS(5181), + [anon_sym_BSLASHSvolcite] = ACTIONS(5181), + [anon_sym_BSLASHtvolcite] = ACTIONS(5181), + [anon_sym_BSLASHTvolcite] = ACTIONS(5181), + [anon_sym_BSLASHavolcite] = ACTIONS(5181), + [anon_sym_BSLASHAvolcite] = ACTIONS(5181), + [anon_sym_BSLASHnotecite] = ACTIONS(5181), + [anon_sym_BSLASHNotecite] = ACTIONS(5181), + [anon_sym_BSLASHpnotecite] = ACTIONS(5181), + [anon_sym_BSLASHPnotecite] = ACTIONS(5181), + [anon_sym_BSLASHfnotecite] = ACTIONS(5181), + [anon_sym_BSLASHlabel] = ACTIONS(5181), + [anon_sym_BSLASHref] = ACTIONS(5181), + [anon_sym_BSLASHeqref] = ACTIONS(5181), + [anon_sym_BSLASHvref] = ACTIONS(5181), + [anon_sym_BSLASHVref] = ACTIONS(5181), + [anon_sym_BSLASHautoref] = ACTIONS(5181), + [anon_sym_BSLASHpageref] = ACTIONS(5181), + [anon_sym_BSLASHcref] = ACTIONS(5181), + [anon_sym_BSLASHCref] = ACTIONS(5181), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnameCref] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5181), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5181), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5181), + [anon_sym_BSLASHlabelcref] = ACTIONS(5181), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange] = ACTIONS(5181), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHCrefrange] = ACTIONS(5181), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5179), + [anon_sym_BSLASHnewlabel] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand] = ACTIONS(5181), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5181), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5181), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5179), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5181), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5179), + [anon_sym_BSLASHdef] = ACTIONS(5181), + [anon_sym_BSLASHlet] = ACTIONS(5181), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5181), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5181), + [anon_sym_BSLASHgls] = ACTIONS(5181), + [anon_sym_BSLASHGls] = ACTIONS(5181), + [anon_sym_BSLASHGLS] = ACTIONS(5181), + [anon_sym_BSLASHglspl] = ACTIONS(5181), + [anon_sym_BSLASHGlspl] = ACTIONS(5181), + [anon_sym_BSLASHGLSpl] = ACTIONS(5181), + [anon_sym_BSLASHglsdisp] = ACTIONS(5181), + [anon_sym_BSLASHglslink] = ACTIONS(5181), + [anon_sym_BSLASHglstext] = ACTIONS(5181), + [anon_sym_BSLASHGlstext] = ACTIONS(5181), + [anon_sym_BSLASHGLStext] = ACTIONS(5181), + [anon_sym_BSLASHglsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5181), + [anon_sym_BSLASHglsplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSplural] = ACTIONS(5181), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5181), + [anon_sym_BSLASHglsname] = ACTIONS(5181), + [anon_sym_BSLASHGlsname] = ACTIONS(5181), + [anon_sym_BSLASHGLSname] = ACTIONS(5181), + [anon_sym_BSLASHglssymbol] = ACTIONS(5181), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5181), + [anon_sym_BSLASHglsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5181), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5181), + [anon_sym_BSLASHglsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5181), + [anon_sym_BSLASHglsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5181), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5181), + [anon_sym_BSLASHglsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5181), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5181), + [anon_sym_BSLASHglsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5181), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5181), + [anon_sym_BSLASHnewacronym] = ACTIONS(5181), + [anon_sym_BSLASHacrshort] = ACTIONS(5181), + [anon_sym_BSLASHAcrshort] = ACTIONS(5181), + [anon_sym_BSLASHACRshort] = ACTIONS(5181), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5181), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5181), + [anon_sym_BSLASHacrlong] = ACTIONS(5181), + [anon_sym_BSLASHAcrlong] = ACTIONS(5181), + [anon_sym_BSLASHACRlong] = ACTIONS(5181), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5181), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5181), + [anon_sym_BSLASHacrfull] = ACTIONS(5181), + [anon_sym_BSLASHAcrfull] = ACTIONS(5181), + [anon_sym_BSLASHACRfull] = ACTIONS(5181), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5181), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5181), + [anon_sym_BSLASHacs] = ACTIONS(5181), + [anon_sym_BSLASHAcs] = ACTIONS(5181), + [anon_sym_BSLASHacsp] = ACTIONS(5181), + [anon_sym_BSLASHAcsp] = ACTIONS(5181), + [anon_sym_BSLASHacl] = ACTIONS(5181), + [anon_sym_BSLASHAcl] = ACTIONS(5181), + [anon_sym_BSLASHaclp] = ACTIONS(5181), + [anon_sym_BSLASHAclp] = ACTIONS(5181), + [anon_sym_BSLASHacf] = ACTIONS(5181), + [anon_sym_BSLASHAcf] = ACTIONS(5181), + [anon_sym_BSLASHacfp] = ACTIONS(5181), + [anon_sym_BSLASHAcfp] = ACTIONS(5181), + [anon_sym_BSLASHac] = ACTIONS(5181), + [anon_sym_BSLASHAc] = ACTIONS(5181), + [anon_sym_BSLASHacp] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5181), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5181), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5181), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5181), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5181), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5181), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5181), + [anon_sym_BSLASHcolor] = ACTIONS(5181), + [anon_sym_BSLASHcolorbox] = ACTIONS(5181), + [anon_sym_BSLASHtextcolor] = ACTIONS(5181), + [anon_sym_BSLASHpagecolor] = ACTIONS(5181), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5181), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5181), }, - [1534] = { - [sym_command_name] = ACTIONS(5121), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5121), - [anon_sym_RBRACK] = ACTIONS(5119), - [anon_sym_COMMA] = ACTIONS(5119), - [anon_sym_EQ] = ACTIONS(5119), - [anon_sym_RBRACE] = ACTIONS(5119), - [sym_word] = ACTIONS(5121), - [sym_placeholder] = ACTIONS(5119), - [anon_sym_PLUS] = ACTIONS(5121), - [anon_sym_DASH] = ACTIONS(5121), - [anon_sym_STAR] = ACTIONS(5121), - [anon_sym_SLASH] = ACTIONS(5121), - [anon_sym_CARET] = ACTIONS(5121), - [anon_sym__] = ACTIONS(5121), - [anon_sym_LT] = ACTIONS(5121), - [anon_sym_GT] = ACTIONS(5121), - [anon_sym_BANG] = ACTIONS(5121), - [anon_sym_PIPE] = ACTIONS(5121), - [anon_sym_COLON] = ACTIONS(5121), - [anon_sym_SQUOTE] = ACTIONS(5121), - [anon_sym_BSLASHusepackage] = ACTIONS(5121), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5121), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5121), - [anon_sym_BSLASHinclude] = ACTIONS(5121), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5121), - [anon_sym_BSLASHinput] = ACTIONS(5121), - [anon_sym_BSLASHsubfile] = ACTIONS(5121), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5121), - [anon_sym_BSLASHbibliography] = ACTIONS(5121), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5121), - [anon_sym_BSLASHincludesvg] = ACTIONS(5121), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5121), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5121), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5121), - [anon_sym_BSLASHimport] = ACTIONS(5121), - [anon_sym_BSLASHsubimport] = ACTIONS(5121), - [anon_sym_BSLASHinputfrom] = ACTIONS(5121), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5121), - [anon_sym_BSLASHincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5121), - [anon_sym_BSLASHcaption] = ACTIONS(5121), - [anon_sym_BSLASHcite] = ACTIONS(5121), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCite] = ACTIONS(5121), - [anon_sym_BSLASHnocite] = ACTIONS(5121), - [anon_sym_BSLASHcitet] = ACTIONS(5121), - [anon_sym_BSLASHcitep] = ACTIONS(5121), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteauthor] = ACTIONS(5121), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5121), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitetitle] = ACTIONS(5121), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteyear] = ACTIONS(5121), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5119), - [anon_sym_BSLASHcitedate] = ACTIONS(5121), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5119), - [anon_sym_BSLASHciteurl] = ACTIONS(5121), - [anon_sym_BSLASHfullcite] = ACTIONS(5121), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5121), - [anon_sym_BSLASHcitealt] = ACTIONS(5121), - [anon_sym_BSLASHcitealp] = ACTIONS(5121), - [anon_sym_BSLASHcitetext] = ACTIONS(5121), - [anon_sym_BSLASHparencite] = ACTIONS(5121), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHParencite] = ACTIONS(5121), - [anon_sym_BSLASHfootcite] = ACTIONS(5121), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5121), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5121), - [anon_sym_BSLASHtextcite] = ACTIONS(5121), - [anon_sym_BSLASHTextcite] = ACTIONS(5121), - [anon_sym_BSLASHsmartcite] = ACTIONS(5121), - [anon_sym_BSLASHSmartcite] = ACTIONS(5121), - [anon_sym_BSLASHsupercite] = ACTIONS(5121), - [anon_sym_BSLASHautocite] = ACTIONS(5121), - [anon_sym_BSLASHAutocite] = ACTIONS(5121), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5119), - [anon_sym_BSLASHvolcite] = ACTIONS(5121), - [anon_sym_BSLASHVolcite] = ACTIONS(5121), - [anon_sym_BSLASHpvolcite] = ACTIONS(5121), - [anon_sym_BSLASHPvolcite] = ACTIONS(5121), - [anon_sym_BSLASHfvolcite] = ACTIONS(5121), - [anon_sym_BSLASHftvolcite] = ACTIONS(5121), - [anon_sym_BSLASHsvolcite] = ACTIONS(5121), - [anon_sym_BSLASHSvolcite] = ACTIONS(5121), - [anon_sym_BSLASHtvolcite] = ACTIONS(5121), - [anon_sym_BSLASHTvolcite] = ACTIONS(5121), - [anon_sym_BSLASHavolcite] = ACTIONS(5121), - [anon_sym_BSLASHAvolcite] = ACTIONS(5121), - [anon_sym_BSLASHnotecite] = ACTIONS(5121), - [anon_sym_BSLASHNotecite] = ACTIONS(5121), - [anon_sym_BSLASHpnotecite] = ACTIONS(5121), - [anon_sym_BSLASHPnotecite] = ACTIONS(5121), - [anon_sym_BSLASHfnotecite] = ACTIONS(5121), - [anon_sym_BSLASHlabel] = ACTIONS(5121), - [anon_sym_BSLASHref] = ACTIONS(5121), - [anon_sym_BSLASHeqref] = ACTIONS(5121), - [anon_sym_BSLASHvref] = ACTIONS(5121), - [anon_sym_BSLASHVref] = ACTIONS(5121), - [anon_sym_BSLASHautoref] = ACTIONS(5121), - [anon_sym_BSLASHpageref] = ACTIONS(5121), - [anon_sym_BSLASHcref] = ACTIONS(5121), - [anon_sym_BSLASHCref] = ACTIONS(5121), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnameCref] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5121), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5121), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5121), - [anon_sym_BSLASHlabelcref] = ACTIONS(5121), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange] = ACTIONS(5121), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHCrefrange] = ACTIONS(5121), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5119), - [anon_sym_BSLASHnewlabel] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand] = ACTIONS(5121), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5121), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5121), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5119), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5121), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5119), - [anon_sym_BSLASHdef] = ACTIONS(5121), - [anon_sym_BSLASHlet] = ACTIONS(5121), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5121), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5121), - [anon_sym_BSLASHgls] = ACTIONS(5121), - [anon_sym_BSLASHGls] = ACTIONS(5121), - [anon_sym_BSLASHGLS] = ACTIONS(5121), - [anon_sym_BSLASHglspl] = ACTIONS(5121), - [anon_sym_BSLASHGlspl] = ACTIONS(5121), - [anon_sym_BSLASHGLSpl] = ACTIONS(5121), - [anon_sym_BSLASHglsdisp] = ACTIONS(5121), - [anon_sym_BSLASHglslink] = ACTIONS(5121), - [anon_sym_BSLASHglstext] = ACTIONS(5121), - [anon_sym_BSLASHGlstext] = ACTIONS(5121), - [anon_sym_BSLASHGLStext] = ACTIONS(5121), - [anon_sym_BSLASHglsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5121), - [anon_sym_BSLASHglsplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSplural] = ACTIONS(5121), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5121), - [anon_sym_BSLASHglsname] = ACTIONS(5121), - [anon_sym_BSLASHGlsname] = ACTIONS(5121), - [anon_sym_BSLASHGLSname] = ACTIONS(5121), - [anon_sym_BSLASHglssymbol] = ACTIONS(5121), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5121), - [anon_sym_BSLASHglsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5121), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5121), - [anon_sym_BSLASHglsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5121), - [anon_sym_BSLASHglsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5121), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5121), - [anon_sym_BSLASHglsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5121), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5121), - [anon_sym_BSLASHglsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5121), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5121), - [anon_sym_BSLASHnewacronym] = ACTIONS(5121), - [anon_sym_BSLASHacrshort] = ACTIONS(5121), - [anon_sym_BSLASHAcrshort] = ACTIONS(5121), - [anon_sym_BSLASHACRshort] = ACTIONS(5121), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5121), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5121), - [anon_sym_BSLASHacrlong] = ACTIONS(5121), - [anon_sym_BSLASHAcrlong] = ACTIONS(5121), - [anon_sym_BSLASHACRlong] = ACTIONS(5121), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5121), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5121), - [anon_sym_BSLASHacrfull] = ACTIONS(5121), - [anon_sym_BSLASHAcrfull] = ACTIONS(5121), - [anon_sym_BSLASHACRfull] = ACTIONS(5121), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5121), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5121), - [anon_sym_BSLASHacs] = ACTIONS(5121), - [anon_sym_BSLASHAcs] = ACTIONS(5121), - [anon_sym_BSLASHacsp] = ACTIONS(5121), - [anon_sym_BSLASHAcsp] = ACTIONS(5121), - [anon_sym_BSLASHacl] = ACTIONS(5121), - [anon_sym_BSLASHAcl] = ACTIONS(5121), - [anon_sym_BSLASHaclp] = ACTIONS(5121), - [anon_sym_BSLASHAclp] = ACTIONS(5121), - [anon_sym_BSLASHacf] = ACTIONS(5121), - [anon_sym_BSLASHAcf] = ACTIONS(5121), - [anon_sym_BSLASHacfp] = ACTIONS(5121), - [anon_sym_BSLASHAcfp] = ACTIONS(5121), - [anon_sym_BSLASHac] = ACTIONS(5121), - [anon_sym_BSLASHAc] = ACTIONS(5121), - [anon_sym_BSLASHacp] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5121), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5121), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5121), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5121), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5121), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5121), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5121), - [anon_sym_BSLASHcolor] = ACTIONS(5121), - [anon_sym_BSLASHcolorbox] = ACTIONS(5121), - [anon_sym_BSLASHtextcolor] = ACTIONS(5121), - [anon_sym_BSLASHpagecolor] = ACTIONS(5121), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5121), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5121), + [1511] = { + [sym_command_name] = ACTIONS(4929), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4929), + [anon_sym_RBRACK] = ACTIONS(4927), + [anon_sym_COMMA] = ACTIONS(4927), + [anon_sym_EQ] = ACTIONS(4927), + [anon_sym_RBRACE] = ACTIONS(4927), + [sym_word] = ACTIONS(4929), + [sym_placeholder] = ACTIONS(4927), + [anon_sym_PLUS] = ACTIONS(4929), + [anon_sym_DASH] = ACTIONS(4929), + [anon_sym_STAR] = ACTIONS(4929), + [anon_sym_SLASH] = ACTIONS(4929), + [anon_sym_CARET] = ACTIONS(4929), + [anon_sym__] = ACTIONS(4929), + [anon_sym_LT] = ACTIONS(4929), + [anon_sym_GT] = ACTIONS(4929), + [anon_sym_BANG] = ACTIONS(4929), + [anon_sym_PIPE] = ACTIONS(4929), + [anon_sym_COLON] = ACTIONS(4929), + [anon_sym_SQUOTE] = ACTIONS(4929), + [anon_sym_BSLASHusepackage] = ACTIONS(4929), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4929), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4929), + [anon_sym_BSLASHinclude] = ACTIONS(4929), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4929), + [anon_sym_BSLASHinput] = ACTIONS(4929), + [anon_sym_BSLASHsubfile] = ACTIONS(4929), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4929), + [anon_sym_BSLASHbibliography] = ACTIONS(4929), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4929), + [anon_sym_BSLASHincludesvg] = ACTIONS(4929), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4929), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4929), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4929), + [anon_sym_BSLASHimport] = ACTIONS(4929), + [anon_sym_BSLASHsubimport] = ACTIONS(4929), + [anon_sym_BSLASHinputfrom] = ACTIONS(4929), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4929), + [anon_sym_BSLASHincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4929), + [anon_sym_BSLASHcaption] = ACTIONS(4929), + [anon_sym_BSLASHcite] = ACTIONS(4929), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCite] = ACTIONS(4929), + [anon_sym_BSLASHnocite] = ACTIONS(4929), + [anon_sym_BSLASHcitet] = ACTIONS(4929), + [anon_sym_BSLASHcitep] = ACTIONS(4929), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteauthor] = ACTIONS(4929), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4929), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitetitle] = ACTIONS(4929), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteyear] = ACTIONS(4929), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4927), + [anon_sym_BSLASHcitedate] = ACTIONS(4929), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4927), + [anon_sym_BSLASHciteurl] = ACTIONS(4929), + [anon_sym_BSLASHfullcite] = ACTIONS(4929), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4929), + [anon_sym_BSLASHcitealt] = ACTIONS(4929), + [anon_sym_BSLASHcitealp] = ACTIONS(4929), + [anon_sym_BSLASHcitetext] = ACTIONS(4929), + [anon_sym_BSLASHparencite] = ACTIONS(4929), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHParencite] = ACTIONS(4929), + [anon_sym_BSLASHfootcite] = ACTIONS(4929), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4929), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4929), + [anon_sym_BSLASHtextcite] = ACTIONS(4929), + [anon_sym_BSLASHTextcite] = ACTIONS(4929), + [anon_sym_BSLASHsmartcite] = ACTIONS(4929), + [anon_sym_BSLASHSmartcite] = ACTIONS(4929), + [anon_sym_BSLASHsupercite] = ACTIONS(4929), + [anon_sym_BSLASHautocite] = ACTIONS(4929), + [anon_sym_BSLASHAutocite] = ACTIONS(4929), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4927), + [anon_sym_BSLASHvolcite] = ACTIONS(4929), + [anon_sym_BSLASHVolcite] = ACTIONS(4929), + [anon_sym_BSLASHpvolcite] = ACTIONS(4929), + [anon_sym_BSLASHPvolcite] = ACTIONS(4929), + [anon_sym_BSLASHfvolcite] = ACTIONS(4929), + [anon_sym_BSLASHftvolcite] = ACTIONS(4929), + [anon_sym_BSLASHsvolcite] = ACTIONS(4929), + [anon_sym_BSLASHSvolcite] = ACTIONS(4929), + [anon_sym_BSLASHtvolcite] = ACTIONS(4929), + [anon_sym_BSLASHTvolcite] = ACTIONS(4929), + [anon_sym_BSLASHavolcite] = ACTIONS(4929), + [anon_sym_BSLASHAvolcite] = ACTIONS(4929), + [anon_sym_BSLASHnotecite] = ACTIONS(4929), + [anon_sym_BSLASHNotecite] = ACTIONS(4929), + [anon_sym_BSLASHpnotecite] = ACTIONS(4929), + [anon_sym_BSLASHPnotecite] = ACTIONS(4929), + [anon_sym_BSLASHfnotecite] = ACTIONS(4929), + [anon_sym_BSLASHlabel] = ACTIONS(4929), + [anon_sym_BSLASHref] = ACTIONS(4929), + [anon_sym_BSLASHeqref] = ACTIONS(4929), + [anon_sym_BSLASHvref] = ACTIONS(4929), + [anon_sym_BSLASHVref] = ACTIONS(4929), + [anon_sym_BSLASHautoref] = ACTIONS(4929), + [anon_sym_BSLASHpageref] = ACTIONS(4929), + [anon_sym_BSLASHcref] = ACTIONS(4929), + [anon_sym_BSLASHCref] = ACTIONS(4929), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnameCref] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4929), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4929), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4929), + [anon_sym_BSLASHlabelcref] = ACTIONS(4929), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange] = ACTIONS(4929), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHCrefrange] = ACTIONS(4929), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4927), + [anon_sym_BSLASHnewlabel] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand] = ACTIONS(4929), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4929), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4929), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4927), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4929), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4927), + [anon_sym_BSLASHdef] = ACTIONS(4929), + [anon_sym_BSLASHlet] = ACTIONS(4929), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4929), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4929), + [anon_sym_BSLASHgls] = ACTIONS(4929), + [anon_sym_BSLASHGls] = ACTIONS(4929), + [anon_sym_BSLASHGLS] = ACTIONS(4929), + [anon_sym_BSLASHglspl] = ACTIONS(4929), + [anon_sym_BSLASHGlspl] = ACTIONS(4929), + [anon_sym_BSLASHGLSpl] = ACTIONS(4929), + [anon_sym_BSLASHglsdisp] = ACTIONS(4929), + [anon_sym_BSLASHglslink] = ACTIONS(4929), + [anon_sym_BSLASHglstext] = ACTIONS(4929), + [anon_sym_BSLASHGlstext] = ACTIONS(4929), + [anon_sym_BSLASHGLStext] = ACTIONS(4929), + [anon_sym_BSLASHglsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4929), + [anon_sym_BSLASHglsplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSplural] = ACTIONS(4929), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4929), + [anon_sym_BSLASHglsname] = ACTIONS(4929), + [anon_sym_BSLASHGlsname] = ACTIONS(4929), + [anon_sym_BSLASHGLSname] = ACTIONS(4929), + [anon_sym_BSLASHglssymbol] = ACTIONS(4929), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4929), + [anon_sym_BSLASHglsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4929), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4929), + [anon_sym_BSLASHglsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4929), + [anon_sym_BSLASHglsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4929), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4929), + [anon_sym_BSLASHglsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4929), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4929), + [anon_sym_BSLASHglsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4929), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4929), + [anon_sym_BSLASHnewacronym] = ACTIONS(4929), + [anon_sym_BSLASHacrshort] = ACTIONS(4929), + [anon_sym_BSLASHAcrshort] = ACTIONS(4929), + [anon_sym_BSLASHACRshort] = ACTIONS(4929), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4929), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4929), + [anon_sym_BSLASHacrlong] = ACTIONS(4929), + [anon_sym_BSLASHAcrlong] = ACTIONS(4929), + [anon_sym_BSLASHACRlong] = ACTIONS(4929), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4929), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4929), + [anon_sym_BSLASHacrfull] = ACTIONS(4929), + [anon_sym_BSLASHAcrfull] = ACTIONS(4929), + [anon_sym_BSLASHACRfull] = ACTIONS(4929), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4929), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4929), + [anon_sym_BSLASHacs] = ACTIONS(4929), + [anon_sym_BSLASHAcs] = ACTIONS(4929), + [anon_sym_BSLASHacsp] = ACTIONS(4929), + [anon_sym_BSLASHAcsp] = ACTIONS(4929), + [anon_sym_BSLASHacl] = ACTIONS(4929), + [anon_sym_BSLASHAcl] = ACTIONS(4929), + [anon_sym_BSLASHaclp] = ACTIONS(4929), + [anon_sym_BSLASHAclp] = ACTIONS(4929), + [anon_sym_BSLASHacf] = ACTIONS(4929), + [anon_sym_BSLASHAcf] = ACTIONS(4929), + [anon_sym_BSLASHacfp] = ACTIONS(4929), + [anon_sym_BSLASHAcfp] = ACTIONS(4929), + [anon_sym_BSLASHac] = ACTIONS(4929), + [anon_sym_BSLASHAc] = ACTIONS(4929), + [anon_sym_BSLASHacp] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4929), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4929), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4929), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4929), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4929), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4929), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4929), + [anon_sym_BSLASHcolor] = ACTIONS(4929), + [anon_sym_BSLASHcolorbox] = ACTIONS(4929), + [anon_sym_BSLASHtextcolor] = ACTIONS(4929), + [anon_sym_BSLASHpagecolor] = ACTIONS(4929), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4929), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4929), }, - [1535] = { - [sym_command_name] = ACTIONS(5069), + [1512] = { + [sym_command_name] = ACTIONS(5139), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5069), - [anon_sym_RBRACK] = ACTIONS(5067), - [anon_sym_COMMA] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(5067), - [anon_sym_RBRACE] = ACTIONS(5067), - [sym_word] = ACTIONS(5069), - [sym_placeholder] = ACTIONS(5067), - [anon_sym_PLUS] = ACTIONS(5069), - [anon_sym_DASH] = ACTIONS(5069), - [anon_sym_STAR] = ACTIONS(5069), - [anon_sym_SLASH] = ACTIONS(5069), - [anon_sym_CARET] = ACTIONS(5069), - [anon_sym__] = ACTIONS(5069), - [anon_sym_LT] = ACTIONS(5069), - [anon_sym_GT] = ACTIONS(5069), - [anon_sym_BANG] = ACTIONS(5069), - [anon_sym_PIPE] = ACTIONS(5069), - [anon_sym_COLON] = ACTIONS(5069), - [anon_sym_SQUOTE] = ACTIONS(5069), - [anon_sym_BSLASHusepackage] = ACTIONS(5069), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5069), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5069), - [anon_sym_BSLASHinclude] = ACTIONS(5069), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5069), - [anon_sym_BSLASHinput] = ACTIONS(5069), - [anon_sym_BSLASHsubfile] = ACTIONS(5069), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5069), - [anon_sym_BSLASHbibliography] = ACTIONS(5069), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5069), - [anon_sym_BSLASHincludesvg] = ACTIONS(5069), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5069), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5069), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5069), - [anon_sym_BSLASHimport] = ACTIONS(5069), - [anon_sym_BSLASHsubimport] = ACTIONS(5069), - [anon_sym_BSLASHinputfrom] = ACTIONS(5069), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5069), - [anon_sym_BSLASHincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5069), - [anon_sym_BSLASHcaption] = ACTIONS(5069), - [anon_sym_BSLASHcite] = ACTIONS(5069), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCite] = ACTIONS(5069), - [anon_sym_BSLASHnocite] = ACTIONS(5069), - [anon_sym_BSLASHcitet] = ACTIONS(5069), - [anon_sym_BSLASHcitep] = ACTIONS(5069), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteauthor] = ACTIONS(5069), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5069), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitetitle] = ACTIONS(5069), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteyear] = ACTIONS(5069), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5067), - [anon_sym_BSLASHcitedate] = ACTIONS(5069), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5067), - [anon_sym_BSLASHciteurl] = ACTIONS(5069), - [anon_sym_BSLASHfullcite] = ACTIONS(5069), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5069), - [anon_sym_BSLASHcitealt] = ACTIONS(5069), - [anon_sym_BSLASHcitealp] = ACTIONS(5069), - [anon_sym_BSLASHcitetext] = ACTIONS(5069), - [anon_sym_BSLASHparencite] = ACTIONS(5069), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHParencite] = ACTIONS(5069), - [anon_sym_BSLASHfootcite] = ACTIONS(5069), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5069), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5069), - [anon_sym_BSLASHtextcite] = ACTIONS(5069), - [anon_sym_BSLASHTextcite] = ACTIONS(5069), - [anon_sym_BSLASHsmartcite] = ACTIONS(5069), - [anon_sym_BSLASHSmartcite] = ACTIONS(5069), - [anon_sym_BSLASHsupercite] = ACTIONS(5069), - [anon_sym_BSLASHautocite] = ACTIONS(5069), - [anon_sym_BSLASHAutocite] = ACTIONS(5069), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5067), - [anon_sym_BSLASHvolcite] = ACTIONS(5069), - [anon_sym_BSLASHVolcite] = ACTIONS(5069), - [anon_sym_BSLASHpvolcite] = ACTIONS(5069), - [anon_sym_BSLASHPvolcite] = ACTIONS(5069), - [anon_sym_BSLASHfvolcite] = ACTIONS(5069), - [anon_sym_BSLASHftvolcite] = ACTIONS(5069), - [anon_sym_BSLASHsvolcite] = ACTIONS(5069), - [anon_sym_BSLASHSvolcite] = ACTIONS(5069), - [anon_sym_BSLASHtvolcite] = ACTIONS(5069), - [anon_sym_BSLASHTvolcite] = ACTIONS(5069), - [anon_sym_BSLASHavolcite] = ACTIONS(5069), - [anon_sym_BSLASHAvolcite] = ACTIONS(5069), - [anon_sym_BSLASHnotecite] = ACTIONS(5069), - [anon_sym_BSLASHNotecite] = ACTIONS(5069), - [anon_sym_BSLASHpnotecite] = ACTIONS(5069), - [anon_sym_BSLASHPnotecite] = ACTIONS(5069), - [anon_sym_BSLASHfnotecite] = ACTIONS(5069), - [anon_sym_BSLASHlabel] = ACTIONS(5069), - [anon_sym_BSLASHref] = ACTIONS(5069), - [anon_sym_BSLASHeqref] = ACTIONS(5069), - [anon_sym_BSLASHvref] = ACTIONS(5069), - [anon_sym_BSLASHVref] = ACTIONS(5069), - [anon_sym_BSLASHautoref] = ACTIONS(5069), - [anon_sym_BSLASHpageref] = ACTIONS(5069), - [anon_sym_BSLASHcref] = ACTIONS(5069), - [anon_sym_BSLASHCref] = ACTIONS(5069), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnameCref] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5069), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5069), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5069), - [anon_sym_BSLASHlabelcref] = ACTIONS(5069), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange] = ACTIONS(5069), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHCrefrange] = ACTIONS(5069), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5067), - [anon_sym_BSLASHnewlabel] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand] = ACTIONS(5069), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5069), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5069), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5067), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5069), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5067), - [anon_sym_BSLASHdef] = ACTIONS(5069), - [anon_sym_BSLASHlet] = ACTIONS(5069), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5069), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5069), - [anon_sym_BSLASHgls] = ACTIONS(5069), - [anon_sym_BSLASHGls] = ACTIONS(5069), - [anon_sym_BSLASHGLS] = ACTIONS(5069), - [anon_sym_BSLASHglspl] = ACTIONS(5069), - [anon_sym_BSLASHGlspl] = ACTIONS(5069), - [anon_sym_BSLASHGLSpl] = ACTIONS(5069), - [anon_sym_BSLASHglsdisp] = ACTIONS(5069), - [anon_sym_BSLASHglslink] = ACTIONS(5069), - [anon_sym_BSLASHglstext] = ACTIONS(5069), - [anon_sym_BSLASHGlstext] = ACTIONS(5069), - [anon_sym_BSLASHGLStext] = ACTIONS(5069), - [anon_sym_BSLASHglsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5069), - [anon_sym_BSLASHglsplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSplural] = ACTIONS(5069), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5069), - [anon_sym_BSLASHglsname] = ACTIONS(5069), - [anon_sym_BSLASHGlsname] = ACTIONS(5069), - [anon_sym_BSLASHGLSname] = ACTIONS(5069), - [anon_sym_BSLASHglssymbol] = ACTIONS(5069), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5069), - [anon_sym_BSLASHglsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5069), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5069), - [anon_sym_BSLASHglsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5069), - [anon_sym_BSLASHglsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5069), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5069), - [anon_sym_BSLASHglsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5069), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5069), - [anon_sym_BSLASHglsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5069), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5069), - [anon_sym_BSLASHnewacronym] = ACTIONS(5069), - [anon_sym_BSLASHacrshort] = ACTIONS(5069), - [anon_sym_BSLASHAcrshort] = ACTIONS(5069), - [anon_sym_BSLASHACRshort] = ACTIONS(5069), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5069), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5069), - [anon_sym_BSLASHacrlong] = ACTIONS(5069), - [anon_sym_BSLASHAcrlong] = ACTIONS(5069), - [anon_sym_BSLASHACRlong] = ACTIONS(5069), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5069), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5069), - [anon_sym_BSLASHacrfull] = ACTIONS(5069), - [anon_sym_BSLASHAcrfull] = ACTIONS(5069), - [anon_sym_BSLASHACRfull] = ACTIONS(5069), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5069), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5069), - [anon_sym_BSLASHacs] = ACTIONS(5069), - [anon_sym_BSLASHAcs] = ACTIONS(5069), - [anon_sym_BSLASHacsp] = ACTIONS(5069), - [anon_sym_BSLASHAcsp] = ACTIONS(5069), - [anon_sym_BSLASHacl] = ACTIONS(5069), - [anon_sym_BSLASHAcl] = ACTIONS(5069), - [anon_sym_BSLASHaclp] = ACTIONS(5069), - [anon_sym_BSLASHAclp] = ACTIONS(5069), - [anon_sym_BSLASHacf] = ACTIONS(5069), - [anon_sym_BSLASHAcf] = ACTIONS(5069), - [anon_sym_BSLASHacfp] = ACTIONS(5069), - [anon_sym_BSLASHAcfp] = ACTIONS(5069), - [anon_sym_BSLASHac] = ACTIONS(5069), - [anon_sym_BSLASHAc] = ACTIONS(5069), - [anon_sym_BSLASHacp] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5069), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5069), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5069), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5069), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5069), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5069), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5069), - [anon_sym_BSLASHcolor] = ACTIONS(5069), - [anon_sym_BSLASHcolorbox] = ACTIONS(5069), - [anon_sym_BSLASHtextcolor] = ACTIONS(5069), - [anon_sym_BSLASHpagecolor] = ACTIONS(5069), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5069), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5069), + [anon_sym_BSLASHiffalse] = ACTIONS(5139), + [anon_sym_RBRACK] = ACTIONS(5137), + [anon_sym_COMMA] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(5137), + [anon_sym_RBRACE] = ACTIONS(5137), + [sym_word] = ACTIONS(5139), + [sym_placeholder] = ACTIONS(5137), + [anon_sym_PLUS] = ACTIONS(5139), + [anon_sym_DASH] = ACTIONS(5139), + [anon_sym_STAR] = ACTIONS(5139), + [anon_sym_SLASH] = ACTIONS(5139), + [anon_sym_CARET] = ACTIONS(5139), + [anon_sym__] = ACTIONS(5139), + [anon_sym_LT] = ACTIONS(5139), + [anon_sym_GT] = ACTIONS(5139), + [anon_sym_BANG] = ACTIONS(5139), + [anon_sym_PIPE] = ACTIONS(5139), + [anon_sym_COLON] = ACTIONS(5139), + [anon_sym_SQUOTE] = ACTIONS(5139), + [anon_sym_BSLASHusepackage] = ACTIONS(5139), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), + [anon_sym_BSLASHinclude] = ACTIONS(5139), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), + [anon_sym_BSLASHinput] = ACTIONS(5139), + [anon_sym_BSLASHsubfile] = ACTIONS(5139), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), + [anon_sym_BSLASHbibliography] = ACTIONS(5139), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), + [anon_sym_BSLASHincludesvg] = ACTIONS(5139), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), + [anon_sym_BSLASHimport] = ACTIONS(5139), + [anon_sym_BSLASHsubimport] = ACTIONS(5139), + [anon_sym_BSLASHinputfrom] = ACTIONS(5139), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), + [anon_sym_BSLASHincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), + [anon_sym_BSLASHcaption] = ACTIONS(5139), + [anon_sym_BSLASHcite] = ACTIONS(5139), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCite] = ACTIONS(5139), + [anon_sym_BSLASHnocite] = ACTIONS(5139), + [anon_sym_BSLASHcitet] = ACTIONS(5139), + [anon_sym_BSLASHcitep] = ACTIONS(5139), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteauthor] = ACTIONS(5139), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitetitle] = ACTIONS(5139), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteyear] = ACTIONS(5139), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), + [anon_sym_BSLASHcitedate] = ACTIONS(5139), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), + [anon_sym_BSLASHciteurl] = ACTIONS(5139), + [anon_sym_BSLASHfullcite] = ACTIONS(5139), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), + [anon_sym_BSLASHcitealt] = ACTIONS(5139), + [anon_sym_BSLASHcitealp] = ACTIONS(5139), + [anon_sym_BSLASHcitetext] = ACTIONS(5139), + [anon_sym_BSLASHparencite] = ACTIONS(5139), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHParencite] = ACTIONS(5139), + [anon_sym_BSLASHfootcite] = ACTIONS(5139), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), + [anon_sym_BSLASHtextcite] = ACTIONS(5139), + [anon_sym_BSLASHTextcite] = ACTIONS(5139), + [anon_sym_BSLASHsmartcite] = ACTIONS(5139), + [anon_sym_BSLASHSmartcite] = ACTIONS(5139), + [anon_sym_BSLASHsupercite] = ACTIONS(5139), + [anon_sym_BSLASHautocite] = ACTIONS(5139), + [anon_sym_BSLASHAutocite] = ACTIONS(5139), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), + [anon_sym_BSLASHvolcite] = ACTIONS(5139), + [anon_sym_BSLASHVolcite] = ACTIONS(5139), + [anon_sym_BSLASHpvolcite] = ACTIONS(5139), + [anon_sym_BSLASHPvolcite] = ACTIONS(5139), + [anon_sym_BSLASHfvolcite] = ACTIONS(5139), + [anon_sym_BSLASHftvolcite] = ACTIONS(5139), + [anon_sym_BSLASHsvolcite] = ACTIONS(5139), + [anon_sym_BSLASHSvolcite] = ACTIONS(5139), + [anon_sym_BSLASHtvolcite] = ACTIONS(5139), + [anon_sym_BSLASHTvolcite] = ACTIONS(5139), + [anon_sym_BSLASHavolcite] = ACTIONS(5139), + [anon_sym_BSLASHAvolcite] = ACTIONS(5139), + [anon_sym_BSLASHnotecite] = ACTIONS(5139), + [anon_sym_BSLASHNotecite] = ACTIONS(5139), + [anon_sym_BSLASHpnotecite] = ACTIONS(5139), + [anon_sym_BSLASHPnotecite] = ACTIONS(5139), + [anon_sym_BSLASHfnotecite] = ACTIONS(5139), + [anon_sym_BSLASHlabel] = ACTIONS(5139), + [anon_sym_BSLASHref] = ACTIONS(5139), + [anon_sym_BSLASHeqref] = ACTIONS(5139), + [anon_sym_BSLASHvref] = ACTIONS(5139), + [anon_sym_BSLASHVref] = ACTIONS(5139), + [anon_sym_BSLASHautoref] = ACTIONS(5139), + [anon_sym_BSLASHpageref] = ACTIONS(5139), + [anon_sym_BSLASHcref] = ACTIONS(5139), + [anon_sym_BSLASHCref] = ACTIONS(5139), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnameCref] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), + [anon_sym_BSLASHlabelcref] = ACTIONS(5139), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange] = ACTIONS(5139), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHCrefrange] = ACTIONS(5139), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), + [anon_sym_BSLASHnewlabel] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand] = ACTIONS(5139), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), + [anon_sym_BSLASHdef] = ACTIONS(5139), + [anon_sym_BSLASHlet] = ACTIONS(5139), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), + [anon_sym_BSLASHgls] = ACTIONS(5139), + [anon_sym_BSLASHGls] = ACTIONS(5139), + [anon_sym_BSLASHGLS] = ACTIONS(5139), + [anon_sym_BSLASHglspl] = ACTIONS(5139), + [anon_sym_BSLASHGlspl] = ACTIONS(5139), + [anon_sym_BSLASHGLSpl] = ACTIONS(5139), + [anon_sym_BSLASHglsdisp] = ACTIONS(5139), + [anon_sym_BSLASHglslink] = ACTIONS(5139), + [anon_sym_BSLASHglstext] = ACTIONS(5139), + [anon_sym_BSLASHGlstext] = ACTIONS(5139), + [anon_sym_BSLASHGLStext] = ACTIONS(5139), + [anon_sym_BSLASHglsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), + [anon_sym_BSLASHglsplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSplural] = ACTIONS(5139), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), + [anon_sym_BSLASHglsname] = ACTIONS(5139), + [anon_sym_BSLASHGlsname] = ACTIONS(5139), + [anon_sym_BSLASHGLSname] = ACTIONS(5139), + [anon_sym_BSLASHglssymbol] = ACTIONS(5139), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), + [anon_sym_BSLASHglsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), + [anon_sym_BSLASHglsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), + [anon_sym_BSLASHglsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), + [anon_sym_BSLASHglsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), + [anon_sym_BSLASHglsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), + [anon_sym_BSLASHnewacronym] = ACTIONS(5139), + [anon_sym_BSLASHacrshort] = ACTIONS(5139), + [anon_sym_BSLASHAcrshort] = ACTIONS(5139), + [anon_sym_BSLASHACRshort] = ACTIONS(5139), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), + [anon_sym_BSLASHacrlong] = ACTIONS(5139), + [anon_sym_BSLASHAcrlong] = ACTIONS(5139), + [anon_sym_BSLASHACRlong] = ACTIONS(5139), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), + [anon_sym_BSLASHacrfull] = ACTIONS(5139), + [anon_sym_BSLASHAcrfull] = ACTIONS(5139), + [anon_sym_BSLASHACRfull] = ACTIONS(5139), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), + [anon_sym_BSLASHacs] = ACTIONS(5139), + [anon_sym_BSLASHAcs] = ACTIONS(5139), + [anon_sym_BSLASHacsp] = ACTIONS(5139), + [anon_sym_BSLASHAcsp] = ACTIONS(5139), + [anon_sym_BSLASHacl] = ACTIONS(5139), + [anon_sym_BSLASHAcl] = ACTIONS(5139), + [anon_sym_BSLASHaclp] = ACTIONS(5139), + [anon_sym_BSLASHAclp] = ACTIONS(5139), + [anon_sym_BSLASHacf] = ACTIONS(5139), + [anon_sym_BSLASHAcf] = ACTIONS(5139), + [anon_sym_BSLASHacfp] = ACTIONS(5139), + [anon_sym_BSLASHAcfp] = ACTIONS(5139), + [anon_sym_BSLASHac] = ACTIONS(5139), + [anon_sym_BSLASHAc] = ACTIONS(5139), + [anon_sym_BSLASHacp] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), + [anon_sym_BSLASHcolor] = ACTIONS(5139), + [anon_sym_BSLASHcolorbox] = ACTIONS(5139), + [anon_sym_BSLASHtextcolor] = ACTIONS(5139), + [anon_sym_BSLASHpagecolor] = ACTIONS(5139), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), }, - [1536] = { - [sym_command_name] = ACTIONS(5073), + [1513] = { + [sym_command_name] = ACTIONS(5177), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5177), + [anon_sym_RBRACK] = ACTIONS(5175), + [anon_sym_COMMA] = ACTIONS(5175), + [anon_sym_EQ] = ACTIONS(5175), + [anon_sym_RBRACE] = ACTIONS(5175), + [sym_word] = ACTIONS(5177), + [sym_placeholder] = ACTIONS(5175), + [anon_sym_PLUS] = ACTIONS(5177), + [anon_sym_DASH] = ACTIONS(5177), + [anon_sym_STAR] = ACTIONS(5177), + [anon_sym_SLASH] = ACTIONS(5177), + [anon_sym_CARET] = ACTIONS(5177), + [anon_sym__] = ACTIONS(5177), + [anon_sym_LT] = ACTIONS(5177), + [anon_sym_GT] = ACTIONS(5177), + [anon_sym_BANG] = ACTIONS(5177), + [anon_sym_PIPE] = ACTIONS(5177), + [anon_sym_COLON] = ACTIONS(5177), + [anon_sym_SQUOTE] = ACTIONS(5177), + [anon_sym_BSLASHusepackage] = ACTIONS(5177), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5177), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5177), + [anon_sym_BSLASHinclude] = ACTIONS(5177), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5177), + [anon_sym_BSLASHinput] = ACTIONS(5177), + [anon_sym_BSLASHsubfile] = ACTIONS(5177), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5177), + [anon_sym_BSLASHbibliography] = ACTIONS(5177), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5177), + [anon_sym_BSLASHincludesvg] = ACTIONS(5177), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5177), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5177), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5177), + [anon_sym_BSLASHimport] = ACTIONS(5177), + [anon_sym_BSLASHsubimport] = ACTIONS(5177), + [anon_sym_BSLASHinputfrom] = ACTIONS(5177), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5177), + [anon_sym_BSLASHincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5177), + [anon_sym_BSLASHcaption] = ACTIONS(5177), + [anon_sym_BSLASHcite] = ACTIONS(5177), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCite] = ACTIONS(5177), + [anon_sym_BSLASHnocite] = ACTIONS(5177), + [anon_sym_BSLASHcitet] = ACTIONS(5177), + [anon_sym_BSLASHcitep] = ACTIONS(5177), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteauthor] = ACTIONS(5177), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5177), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitetitle] = ACTIONS(5177), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteyear] = ACTIONS(5177), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5175), + [anon_sym_BSLASHcitedate] = ACTIONS(5177), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5175), + [anon_sym_BSLASHciteurl] = ACTIONS(5177), + [anon_sym_BSLASHfullcite] = ACTIONS(5177), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5177), + [anon_sym_BSLASHcitealt] = ACTIONS(5177), + [anon_sym_BSLASHcitealp] = ACTIONS(5177), + [anon_sym_BSLASHcitetext] = ACTIONS(5177), + [anon_sym_BSLASHparencite] = ACTIONS(5177), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHParencite] = ACTIONS(5177), + [anon_sym_BSLASHfootcite] = ACTIONS(5177), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5177), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5177), + [anon_sym_BSLASHtextcite] = ACTIONS(5177), + [anon_sym_BSLASHTextcite] = ACTIONS(5177), + [anon_sym_BSLASHsmartcite] = ACTIONS(5177), + [anon_sym_BSLASHSmartcite] = ACTIONS(5177), + [anon_sym_BSLASHsupercite] = ACTIONS(5177), + [anon_sym_BSLASHautocite] = ACTIONS(5177), + [anon_sym_BSLASHAutocite] = ACTIONS(5177), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5175), + [anon_sym_BSLASHvolcite] = ACTIONS(5177), + [anon_sym_BSLASHVolcite] = ACTIONS(5177), + [anon_sym_BSLASHpvolcite] = ACTIONS(5177), + [anon_sym_BSLASHPvolcite] = ACTIONS(5177), + [anon_sym_BSLASHfvolcite] = ACTIONS(5177), + [anon_sym_BSLASHftvolcite] = ACTIONS(5177), + [anon_sym_BSLASHsvolcite] = ACTIONS(5177), + [anon_sym_BSLASHSvolcite] = ACTIONS(5177), + [anon_sym_BSLASHtvolcite] = ACTIONS(5177), + [anon_sym_BSLASHTvolcite] = ACTIONS(5177), + [anon_sym_BSLASHavolcite] = ACTIONS(5177), + [anon_sym_BSLASHAvolcite] = ACTIONS(5177), + [anon_sym_BSLASHnotecite] = ACTIONS(5177), + [anon_sym_BSLASHNotecite] = ACTIONS(5177), + [anon_sym_BSLASHpnotecite] = ACTIONS(5177), + [anon_sym_BSLASHPnotecite] = ACTIONS(5177), + [anon_sym_BSLASHfnotecite] = ACTIONS(5177), + [anon_sym_BSLASHlabel] = ACTIONS(5177), + [anon_sym_BSLASHref] = ACTIONS(5177), + [anon_sym_BSLASHeqref] = ACTIONS(5177), + [anon_sym_BSLASHvref] = ACTIONS(5177), + [anon_sym_BSLASHVref] = ACTIONS(5177), + [anon_sym_BSLASHautoref] = ACTIONS(5177), + [anon_sym_BSLASHpageref] = ACTIONS(5177), + [anon_sym_BSLASHcref] = ACTIONS(5177), + [anon_sym_BSLASHCref] = ACTIONS(5177), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnameCref] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5177), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5177), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5177), + [anon_sym_BSLASHlabelcref] = ACTIONS(5177), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange] = ACTIONS(5177), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHCrefrange] = ACTIONS(5177), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5175), + [anon_sym_BSLASHnewlabel] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand] = ACTIONS(5177), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5177), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5177), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5175), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5177), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5175), + [anon_sym_BSLASHdef] = ACTIONS(5177), + [anon_sym_BSLASHlet] = ACTIONS(5177), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5177), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5177), + [anon_sym_BSLASHgls] = ACTIONS(5177), + [anon_sym_BSLASHGls] = ACTIONS(5177), + [anon_sym_BSLASHGLS] = ACTIONS(5177), + [anon_sym_BSLASHglspl] = ACTIONS(5177), + [anon_sym_BSLASHGlspl] = ACTIONS(5177), + [anon_sym_BSLASHGLSpl] = ACTIONS(5177), + [anon_sym_BSLASHglsdisp] = ACTIONS(5177), + [anon_sym_BSLASHglslink] = ACTIONS(5177), + [anon_sym_BSLASHglstext] = ACTIONS(5177), + [anon_sym_BSLASHGlstext] = ACTIONS(5177), + [anon_sym_BSLASHGLStext] = ACTIONS(5177), + [anon_sym_BSLASHglsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5177), + [anon_sym_BSLASHglsplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSplural] = ACTIONS(5177), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5177), + [anon_sym_BSLASHglsname] = ACTIONS(5177), + [anon_sym_BSLASHGlsname] = ACTIONS(5177), + [anon_sym_BSLASHGLSname] = ACTIONS(5177), + [anon_sym_BSLASHglssymbol] = ACTIONS(5177), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5177), + [anon_sym_BSLASHglsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5177), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5177), + [anon_sym_BSLASHglsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5177), + [anon_sym_BSLASHglsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5177), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5177), + [anon_sym_BSLASHglsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5177), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5177), + [anon_sym_BSLASHglsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5177), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5177), + [anon_sym_BSLASHnewacronym] = ACTIONS(5177), + [anon_sym_BSLASHacrshort] = ACTIONS(5177), + [anon_sym_BSLASHAcrshort] = ACTIONS(5177), + [anon_sym_BSLASHACRshort] = ACTIONS(5177), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5177), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5177), + [anon_sym_BSLASHacrlong] = ACTIONS(5177), + [anon_sym_BSLASHAcrlong] = ACTIONS(5177), + [anon_sym_BSLASHACRlong] = ACTIONS(5177), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5177), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5177), + [anon_sym_BSLASHacrfull] = ACTIONS(5177), + [anon_sym_BSLASHAcrfull] = ACTIONS(5177), + [anon_sym_BSLASHACRfull] = ACTIONS(5177), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5177), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5177), + [anon_sym_BSLASHacs] = ACTIONS(5177), + [anon_sym_BSLASHAcs] = ACTIONS(5177), + [anon_sym_BSLASHacsp] = ACTIONS(5177), + [anon_sym_BSLASHAcsp] = ACTIONS(5177), + [anon_sym_BSLASHacl] = ACTIONS(5177), + [anon_sym_BSLASHAcl] = ACTIONS(5177), + [anon_sym_BSLASHaclp] = ACTIONS(5177), + [anon_sym_BSLASHAclp] = ACTIONS(5177), + [anon_sym_BSLASHacf] = ACTIONS(5177), + [anon_sym_BSLASHAcf] = ACTIONS(5177), + [anon_sym_BSLASHacfp] = ACTIONS(5177), + [anon_sym_BSLASHAcfp] = ACTIONS(5177), + [anon_sym_BSLASHac] = ACTIONS(5177), + [anon_sym_BSLASHAc] = ACTIONS(5177), + [anon_sym_BSLASHacp] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5177), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5177), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5177), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5177), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5177), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5177), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5177), + [anon_sym_BSLASHcolor] = ACTIONS(5177), + [anon_sym_BSLASHcolorbox] = ACTIONS(5177), + [anon_sym_BSLASHtextcolor] = ACTIONS(5177), + [anon_sym_BSLASHpagecolor] = ACTIONS(5177), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5177), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5177), + }, + [1514] = { + [sym_command_name] = ACTIONS(5169), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5169), + [anon_sym_RBRACK] = ACTIONS(5167), + [anon_sym_COMMA] = ACTIONS(5167), + [anon_sym_EQ] = ACTIONS(5167), + [anon_sym_RBRACE] = ACTIONS(5167), + [sym_word] = ACTIONS(5169), + [sym_placeholder] = ACTIONS(5167), + [anon_sym_PLUS] = ACTIONS(5169), + [anon_sym_DASH] = ACTIONS(5169), + [anon_sym_STAR] = ACTIONS(5169), + [anon_sym_SLASH] = ACTIONS(5169), + [anon_sym_CARET] = ACTIONS(5169), + [anon_sym__] = ACTIONS(5169), + [anon_sym_LT] = ACTIONS(5169), + [anon_sym_GT] = ACTIONS(5169), + [anon_sym_BANG] = ACTIONS(5169), + [anon_sym_PIPE] = ACTIONS(5169), + [anon_sym_COLON] = ACTIONS(5169), + [anon_sym_SQUOTE] = ACTIONS(5169), + [anon_sym_BSLASHusepackage] = ACTIONS(5169), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5169), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5169), + [anon_sym_BSLASHinclude] = ACTIONS(5169), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5169), + [anon_sym_BSLASHinput] = ACTIONS(5169), + [anon_sym_BSLASHsubfile] = ACTIONS(5169), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5169), + [anon_sym_BSLASHbibliography] = ACTIONS(5169), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5169), + [anon_sym_BSLASHincludesvg] = ACTIONS(5169), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5169), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5169), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5169), + [anon_sym_BSLASHimport] = ACTIONS(5169), + [anon_sym_BSLASHsubimport] = ACTIONS(5169), + [anon_sym_BSLASHinputfrom] = ACTIONS(5169), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5169), + [anon_sym_BSLASHincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5169), + [anon_sym_BSLASHcaption] = ACTIONS(5169), + [anon_sym_BSLASHcite] = ACTIONS(5169), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCite] = ACTIONS(5169), + [anon_sym_BSLASHnocite] = ACTIONS(5169), + [anon_sym_BSLASHcitet] = ACTIONS(5169), + [anon_sym_BSLASHcitep] = ACTIONS(5169), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteauthor] = ACTIONS(5169), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5169), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitetitle] = ACTIONS(5169), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteyear] = ACTIONS(5169), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5167), + [anon_sym_BSLASHcitedate] = ACTIONS(5169), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5167), + [anon_sym_BSLASHciteurl] = ACTIONS(5169), + [anon_sym_BSLASHfullcite] = ACTIONS(5169), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5169), + [anon_sym_BSLASHcitealt] = ACTIONS(5169), + [anon_sym_BSLASHcitealp] = ACTIONS(5169), + [anon_sym_BSLASHcitetext] = ACTIONS(5169), + [anon_sym_BSLASHparencite] = ACTIONS(5169), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHParencite] = ACTIONS(5169), + [anon_sym_BSLASHfootcite] = ACTIONS(5169), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5169), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5169), + [anon_sym_BSLASHtextcite] = ACTIONS(5169), + [anon_sym_BSLASHTextcite] = ACTIONS(5169), + [anon_sym_BSLASHsmartcite] = ACTIONS(5169), + [anon_sym_BSLASHSmartcite] = ACTIONS(5169), + [anon_sym_BSLASHsupercite] = ACTIONS(5169), + [anon_sym_BSLASHautocite] = ACTIONS(5169), + [anon_sym_BSLASHAutocite] = ACTIONS(5169), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5167), + [anon_sym_BSLASHvolcite] = ACTIONS(5169), + [anon_sym_BSLASHVolcite] = ACTIONS(5169), + [anon_sym_BSLASHpvolcite] = ACTIONS(5169), + [anon_sym_BSLASHPvolcite] = ACTIONS(5169), + [anon_sym_BSLASHfvolcite] = ACTIONS(5169), + [anon_sym_BSLASHftvolcite] = ACTIONS(5169), + [anon_sym_BSLASHsvolcite] = ACTIONS(5169), + [anon_sym_BSLASHSvolcite] = ACTIONS(5169), + [anon_sym_BSLASHtvolcite] = ACTIONS(5169), + [anon_sym_BSLASHTvolcite] = ACTIONS(5169), + [anon_sym_BSLASHavolcite] = ACTIONS(5169), + [anon_sym_BSLASHAvolcite] = ACTIONS(5169), + [anon_sym_BSLASHnotecite] = ACTIONS(5169), + [anon_sym_BSLASHNotecite] = ACTIONS(5169), + [anon_sym_BSLASHpnotecite] = ACTIONS(5169), + [anon_sym_BSLASHPnotecite] = ACTIONS(5169), + [anon_sym_BSLASHfnotecite] = ACTIONS(5169), + [anon_sym_BSLASHlabel] = ACTIONS(5169), + [anon_sym_BSLASHref] = ACTIONS(5169), + [anon_sym_BSLASHeqref] = ACTIONS(5169), + [anon_sym_BSLASHvref] = ACTIONS(5169), + [anon_sym_BSLASHVref] = ACTIONS(5169), + [anon_sym_BSLASHautoref] = ACTIONS(5169), + [anon_sym_BSLASHpageref] = ACTIONS(5169), + [anon_sym_BSLASHcref] = ACTIONS(5169), + [anon_sym_BSLASHCref] = ACTIONS(5169), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnameCref] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5169), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5169), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5169), + [anon_sym_BSLASHlabelcref] = ACTIONS(5169), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange] = ACTIONS(5169), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHCrefrange] = ACTIONS(5169), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5167), + [anon_sym_BSLASHnewlabel] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand] = ACTIONS(5169), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5169), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5169), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5167), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5169), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5167), + [anon_sym_BSLASHdef] = ACTIONS(5169), + [anon_sym_BSLASHlet] = ACTIONS(5169), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5169), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5169), + [anon_sym_BSLASHgls] = ACTIONS(5169), + [anon_sym_BSLASHGls] = ACTIONS(5169), + [anon_sym_BSLASHGLS] = ACTIONS(5169), + [anon_sym_BSLASHglspl] = ACTIONS(5169), + [anon_sym_BSLASHGlspl] = ACTIONS(5169), + [anon_sym_BSLASHGLSpl] = ACTIONS(5169), + [anon_sym_BSLASHglsdisp] = ACTIONS(5169), + [anon_sym_BSLASHglslink] = ACTIONS(5169), + [anon_sym_BSLASHglstext] = ACTIONS(5169), + [anon_sym_BSLASHGlstext] = ACTIONS(5169), + [anon_sym_BSLASHGLStext] = ACTIONS(5169), + [anon_sym_BSLASHglsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5169), + [anon_sym_BSLASHglsplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSplural] = ACTIONS(5169), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5169), + [anon_sym_BSLASHglsname] = ACTIONS(5169), + [anon_sym_BSLASHGlsname] = ACTIONS(5169), + [anon_sym_BSLASHGLSname] = ACTIONS(5169), + [anon_sym_BSLASHglssymbol] = ACTIONS(5169), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5169), + [anon_sym_BSLASHglsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5169), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5169), + [anon_sym_BSLASHglsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5169), + [anon_sym_BSLASHglsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5169), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5169), + [anon_sym_BSLASHglsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5169), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5169), + [anon_sym_BSLASHglsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5169), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5169), + [anon_sym_BSLASHnewacronym] = ACTIONS(5169), + [anon_sym_BSLASHacrshort] = ACTIONS(5169), + [anon_sym_BSLASHAcrshort] = ACTIONS(5169), + [anon_sym_BSLASHACRshort] = ACTIONS(5169), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5169), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5169), + [anon_sym_BSLASHacrlong] = ACTIONS(5169), + [anon_sym_BSLASHAcrlong] = ACTIONS(5169), + [anon_sym_BSLASHACRlong] = ACTIONS(5169), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5169), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5169), + [anon_sym_BSLASHacrfull] = ACTIONS(5169), + [anon_sym_BSLASHAcrfull] = ACTIONS(5169), + [anon_sym_BSLASHACRfull] = ACTIONS(5169), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5169), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5169), + [anon_sym_BSLASHacs] = ACTIONS(5169), + [anon_sym_BSLASHAcs] = ACTIONS(5169), + [anon_sym_BSLASHacsp] = ACTIONS(5169), + [anon_sym_BSLASHAcsp] = ACTIONS(5169), + [anon_sym_BSLASHacl] = ACTIONS(5169), + [anon_sym_BSLASHAcl] = ACTIONS(5169), + [anon_sym_BSLASHaclp] = ACTIONS(5169), + [anon_sym_BSLASHAclp] = ACTIONS(5169), + [anon_sym_BSLASHacf] = ACTIONS(5169), + [anon_sym_BSLASHAcf] = ACTIONS(5169), + [anon_sym_BSLASHacfp] = ACTIONS(5169), + [anon_sym_BSLASHAcfp] = ACTIONS(5169), + [anon_sym_BSLASHac] = ACTIONS(5169), + [anon_sym_BSLASHAc] = ACTIONS(5169), + [anon_sym_BSLASHacp] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5169), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5169), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5169), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5169), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5169), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5169), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5169), + [anon_sym_BSLASHcolor] = ACTIONS(5169), + [anon_sym_BSLASHcolorbox] = ACTIONS(5169), + [anon_sym_BSLASHtextcolor] = ACTIONS(5169), + [anon_sym_BSLASHpagecolor] = ACTIONS(5169), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5169), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5169), + }, + [1515] = { + [sym_command_name] = ACTIONS(4917), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4917), + [anon_sym_RBRACK] = ACTIONS(4915), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_EQ] = ACTIONS(4915), + [anon_sym_RBRACE] = ACTIONS(4915), + [sym_word] = ACTIONS(4917), + [sym_placeholder] = ACTIONS(4915), + [anon_sym_PLUS] = ACTIONS(4917), + [anon_sym_DASH] = ACTIONS(4917), + [anon_sym_STAR] = ACTIONS(4917), + [anon_sym_SLASH] = ACTIONS(4917), + [anon_sym_CARET] = ACTIONS(4917), + [anon_sym__] = ACTIONS(4917), + [anon_sym_LT] = ACTIONS(4917), + [anon_sym_GT] = ACTIONS(4917), + [anon_sym_BANG] = ACTIONS(4917), + [anon_sym_PIPE] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), + [anon_sym_SQUOTE] = ACTIONS(4917), + [anon_sym_BSLASHusepackage] = ACTIONS(4917), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4917), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4917), + [anon_sym_BSLASHinclude] = ACTIONS(4917), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4917), + [anon_sym_BSLASHinput] = ACTIONS(4917), + [anon_sym_BSLASHsubfile] = ACTIONS(4917), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4917), + [anon_sym_BSLASHbibliography] = ACTIONS(4917), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4917), + [anon_sym_BSLASHincludesvg] = ACTIONS(4917), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4917), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4917), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4917), + [anon_sym_BSLASHimport] = ACTIONS(4917), + [anon_sym_BSLASHsubimport] = ACTIONS(4917), + [anon_sym_BSLASHinputfrom] = ACTIONS(4917), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4917), + [anon_sym_BSLASHincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4917), + [anon_sym_BSLASHcaption] = ACTIONS(4917), + [anon_sym_BSLASHcite] = ACTIONS(4917), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCite] = ACTIONS(4917), + [anon_sym_BSLASHnocite] = ACTIONS(4917), + [anon_sym_BSLASHcitet] = ACTIONS(4917), + [anon_sym_BSLASHcitep] = ACTIONS(4917), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteauthor] = ACTIONS(4917), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4917), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitetitle] = ACTIONS(4917), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteyear] = ACTIONS(4917), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4915), + [anon_sym_BSLASHcitedate] = ACTIONS(4917), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4915), + [anon_sym_BSLASHciteurl] = ACTIONS(4917), + [anon_sym_BSLASHfullcite] = ACTIONS(4917), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4917), + [anon_sym_BSLASHcitealt] = ACTIONS(4917), + [anon_sym_BSLASHcitealp] = ACTIONS(4917), + [anon_sym_BSLASHcitetext] = ACTIONS(4917), + [anon_sym_BSLASHparencite] = ACTIONS(4917), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHParencite] = ACTIONS(4917), + [anon_sym_BSLASHfootcite] = ACTIONS(4917), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4917), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4917), + [anon_sym_BSLASHtextcite] = ACTIONS(4917), + [anon_sym_BSLASHTextcite] = ACTIONS(4917), + [anon_sym_BSLASHsmartcite] = ACTIONS(4917), + [anon_sym_BSLASHSmartcite] = ACTIONS(4917), + [anon_sym_BSLASHsupercite] = ACTIONS(4917), + [anon_sym_BSLASHautocite] = ACTIONS(4917), + [anon_sym_BSLASHAutocite] = ACTIONS(4917), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4915), + [anon_sym_BSLASHvolcite] = ACTIONS(4917), + [anon_sym_BSLASHVolcite] = ACTIONS(4917), + [anon_sym_BSLASHpvolcite] = ACTIONS(4917), + [anon_sym_BSLASHPvolcite] = ACTIONS(4917), + [anon_sym_BSLASHfvolcite] = ACTIONS(4917), + [anon_sym_BSLASHftvolcite] = ACTIONS(4917), + [anon_sym_BSLASHsvolcite] = ACTIONS(4917), + [anon_sym_BSLASHSvolcite] = ACTIONS(4917), + [anon_sym_BSLASHtvolcite] = ACTIONS(4917), + [anon_sym_BSLASHTvolcite] = ACTIONS(4917), + [anon_sym_BSLASHavolcite] = ACTIONS(4917), + [anon_sym_BSLASHAvolcite] = ACTIONS(4917), + [anon_sym_BSLASHnotecite] = ACTIONS(4917), + [anon_sym_BSLASHNotecite] = ACTIONS(4917), + [anon_sym_BSLASHpnotecite] = ACTIONS(4917), + [anon_sym_BSLASHPnotecite] = ACTIONS(4917), + [anon_sym_BSLASHfnotecite] = ACTIONS(4917), + [anon_sym_BSLASHlabel] = ACTIONS(4917), + [anon_sym_BSLASHref] = ACTIONS(4917), + [anon_sym_BSLASHeqref] = ACTIONS(4917), + [anon_sym_BSLASHvref] = ACTIONS(4917), + [anon_sym_BSLASHVref] = ACTIONS(4917), + [anon_sym_BSLASHautoref] = ACTIONS(4917), + [anon_sym_BSLASHpageref] = ACTIONS(4917), + [anon_sym_BSLASHcref] = ACTIONS(4917), + [anon_sym_BSLASHCref] = ACTIONS(4917), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnameCref] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4917), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4917), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4917), + [anon_sym_BSLASHlabelcref] = ACTIONS(4917), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange] = ACTIONS(4917), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHCrefrange] = ACTIONS(4917), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4915), + [anon_sym_BSLASHnewlabel] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand] = ACTIONS(4917), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4917), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4917), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4915), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4917), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4915), + [anon_sym_BSLASHdef] = ACTIONS(4917), + [anon_sym_BSLASHlet] = ACTIONS(4917), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4917), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4917), + [anon_sym_BSLASHgls] = ACTIONS(4917), + [anon_sym_BSLASHGls] = ACTIONS(4917), + [anon_sym_BSLASHGLS] = ACTIONS(4917), + [anon_sym_BSLASHglspl] = ACTIONS(4917), + [anon_sym_BSLASHGlspl] = ACTIONS(4917), + [anon_sym_BSLASHGLSpl] = ACTIONS(4917), + [anon_sym_BSLASHglsdisp] = ACTIONS(4917), + [anon_sym_BSLASHglslink] = ACTIONS(4917), + [anon_sym_BSLASHglstext] = ACTIONS(4917), + [anon_sym_BSLASHGlstext] = ACTIONS(4917), + [anon_sym_BSLASHGLStext] = ACTIONS(4917), + [anon_sym_BSLASHglsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4917), + [anon_sym_BSLASHglsplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSplural] = ACTIONS(4917), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4917), + [anon_sym_BSLASHglsname] = ACTIONS(4917), + [anon_sym_BSLASHGlsname] = ACTIONS(4917), + [anon_sym_BSLASHGLSname] = ACTIONS(4917), + [anon_sym_BSLASHglssymbol] = ACTIONS(4917), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4917), + [anon_sym_BSLASHglsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4917), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4917), + [anon_sym_BSLASHglsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4917), + [anon_sym_BSLASHglsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4917), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4917), + [anon_sym_BSLASHglsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4917), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4917), + [anon_sym_BSLASHglsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4917), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4917), + [anon_sym_BSLASHnewacronym] = ACTIONS(4917), + [anon_sym_BSLASHacrshort] = ACTIONS(4917), + [anon_sym_BSLASHAcrshort] = ACTIONS(4917), + [anon_sym_BSLASHACRshort] = ACTIONS(4917), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4917), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4917), + [anon_sym_BSLASHacrlong] = ACTIONS(4917), + [anon_sym_BSLASHAcrlong] = ACTIONS(4917), + [anon_sym_BSLASHACRlong] = ACTIONS(4917), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4917), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4917), + [anon_sym_BSLASHacrfull] = ACTIONS(4917), + [anon_sym_BSLASHAcrfull] = ACTIONS(4917), + [anon_sym_BSLASHACRfull] = ACTIONS(4917), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4917), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4917), + [anon_sym_BSLASHacs] = ACTIONS(4917), + [anon_sym_BSLASHAcs] = ACTIONS(4917), + [anon_sym_BSLASHacsp] = ACTIONS(4917), + [anon_sym_BSLASHAcsp] = ACTIONS(4917), + [anon_sym_BSLASHacl] = ACTIONS(4917), + [anon_sym_BSLASHAcl] = ACTIONS(4917), + [anon_sym_BSLASHaclp] = ACTIONS(4917), + [anon_sym_BSLASHAclp] = ACTIONS(4917), + [anon_sym_BSLASHacf] = ACTIONS(4917), + [anon_sym_BSLASHAcf] = ACTIONS(4917), + [anon_sym_BSLASHacfp] = ACTIONS(4917), + [anon_sym_BSLASHAcfp] = ACTIONS(4917), + [anon_sym_BSLASHac] = ACTIONS(4917), + [anon_sym_BSLASHAc] = ACTIONS(4917), + [anon_sym_BSLASHacp] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4917), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4917), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4917), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4917), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4917), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4917), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4917), + [anon_sym_BSLASHcolor] = ACTIONS(4917), + [anon_sym_BSLASHcolorbox] = ACTIONS(4917), + [anon_sym_BSLASHtextcolor] = ACTIONS(4917), + [anon_sym_BSLASHpagecolor] = ACTIONS(4917), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4917), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4917), + }, + [1516] = { + [sym_command_name] = ACTIONS(4913), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4913), + [anon_sym_RBRACK] = ACTIONS(4911), + [anon_sym_COMMA] = ACTIONS(4911), + [anon_sym_EQ] = ACTIONS(4911), + [anon_sym_RBRACE] = ACTIONS(4911), + [sym_word] = ACTIONS(4913), + [sym_placeholder] = ACTIONS(4911), + [anon_sym_PLUS] = ACTIONS(4913), + [anon_sym_DASH] = ACTIONS(4913), + [anon_sym_STAR] = ACTIONS(4913), + [anon_sym_SLASH] = ACTIONS(4913), + [anon_sym_CARET] = ACTIONS(4913), + [anon_sym__] = ACTIONS(4913), + [anon_sym_LT] = ACTIONS(4913), + [anon_sym_GT] = ACTIONS(4913), + [anon_sym_BANG] = ACTIONS(4913), + [anon_sym_PIPE] = ACTIONS(4913), + [anon_sym_COLON] = ACTIONS(4913), + [anon_sym_SQUOTE] = ACTIONS(4913), + [anon_sym_BSLASHusepackage] = ACTIONS(4913), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4913), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4913), + [anon_sym_BSLASHinclude] = ACTIONS(4913), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4913), + [anon_sym_BSLASHinput] = ACTIONS(4913), + [anon_sym_BSLASHsubfile] = ACTIONS(4913), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4913), + [anon_sym_BSLASHbibliography] = ACTIONS(4913), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4913), + [anon_sym_BSLASHincludesvg] = ACTIONS(4913), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4913), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4913), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4913), + [anon_sym_BSLASHimport] = ACTIONS(4913), + [anon_sym_BSLASHsubimport] = ACTIONS(4913), + [anon_sym_BSLASHinputfrom] = ACTIONS(4913), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4913), + [anon_sym_BSLASHincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4913), + [anon_sym_BSLASHcaption] = ACTIONS(4913), + [anon_sym_BSLASHcite] = ACTIONS(4913), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCite] = ACTIONS(4913), + [anon_sym_BSLASHnocite] = ACTIONS(4913), + [anon_sym_BSLASHcitet] = ACTIONS(4913), + [anon_sym_BSLASHcitep] = ACTIONS(4913), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteauthor] = ACTIONS(4913), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4913), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitetitle] = ACTIONS(4913), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteyear] = ACTIONS(4913), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4911), + [anon_sym_BSLASHcitedate] = ACTIONS(4913), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4911), + [anon_sym_BSLASHciteurl] = ACTIONS(4913), + [anon_sym_BSLASHfullcite] = ACTIONS(4913), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4913), + [anon_sym_BSLASHcitealt] = ACTIONS(4913), + [anon_sym_BSLASHcitealp] = ACTIONS(4913), + [anon_sym_BSLASHcitetext] = ACTIONS(4913), + [anon_sym_BSLASHparencite] = ACTIONS(4913), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHParencite] = ACTIONS(4913), + [anon_sym_BSLASHfootcite] = ACTIONS(4913), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4913), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4913), + [anon_sym_BSLASHtextcite] = ACTIONS(4913), + [anon_sym_BSLASHTextcite] = ACTIONS(4913), + [anon_sym_BSLASHsmartcite] = ACTIONS(4913), + [anon_sym_BSLASHSmartcite] = ACTIONS(4913), + [anon_sym_BSLASHsupercite] = ACTIONS(4913), + [anon_sym_BSLASHautocite] = ACTIONS(4913), + [anon_sym_BSLASHAutocite] = ACTIONS(4913), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4911), + [anon_sym_BSLASHvolcite] = ACTIONS(4913), + [anon_sym_BSLASHVolcite] = ACTIONS(4913), + [anon_sym_BSLASHpvolcite] = ACTIONS(4913), + [anon_sym_BSLASHPvolcite] = ACTIONS(4913), + [anon_sym_BSLASHfvolcite] = ACTIONS(4913), + [anon_sym_BSLASHftvolcite] = ACTIONS(4913), + [anon_sym_BSLASHsvolcite] = ACTIONS(4913), + [anon_sym_BSLASHSvolcite] = ACTIONS(4913), + [anon_sym_BSLASHtvolcite] = ACTIONS(4913), + [anon_sym_BSLASHTvolcite] = ACTIONS(4913), + [anon_sym_BSLASHavolcite] = ACTIONS(4913), + [anon_sym_BSLASHAvolcite] = ACTIONS(4913), + [anon_sym_BSLASHnotecite] = ACTIONS(4913), + [anon_sym_BSLASHNotecite] = ACTIONS(4913), + [anon_sym_BSLASHpnotecite] = ACTIONS(4913), + [anon_sym_BSLASHPnotecite] = ACTIONS(4913), + [anon_sym_BSLASHfnotecite] = ACTIONS(4913), + [anon_sym_BSLASHlabel] = ACTIONS(4913), + [anon_sym_BSLASHref] = ACTIONS(4913), + [anon_sym_BSLASHeqref] = ACTIONS(4913), + [anon_sym_BSLASHvref] = ACTIONS(4913), + [anon_sym_BSLASHVref] = ACTIONS(4913), + [anon_sym_BSLASHautoref] = ACTIONS(4913), + [anon_sym_BSLASHpageref] = ACTIONS(4913), + [anon_sym_BSLASHcref] = ACTIONS(4913), + [anon_sym_BSLASHCref] = ACTIONS(4913), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnameCref] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4913), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4913), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4913), + [anon_sym_BSLASHlabelcref] = ACTIONS(4913), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange] = ACTIONS(4913), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHCrefrange] = ACTIONS(4913), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4911), + [anon_sym_BSLASHnewlabel] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand] = ACTIONS(4913), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4913), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4913), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4911), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4913), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4911), + [anon_sym_BSLASHdef] = ACTIONS(4913), + [anon_sym_BSLASHlet] = ACTIONS(4913), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4913), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4913), + [anon_sym_BSLASHgls] = ACTIONS(4913), + [anon_sym_BSLASHGls] = ACTIONS(4913), + [anon_sym_BSLASHGLS] = ACTIONS(4913), + [anon_sym_BSLASHglspl] = ACTIONS(4913), + [anon_sym_BSLASHGlspl] = ACTIONS(4913), + [anon_sym_BSLASHGLSpl] = ACTIONS(4913), + [anon_sym_BSLASHglsdisp] = ACTIONS(4913), + [anon_sym_BSLASHglslink] = ACTIONS(4913), + [anon_sym_BSLASHglstext] = ACTIONS(4913), + [anon_sym_BSLASHGlstext] = ACTIONS(4913), + [anon_sym_BSLASHGLStext] = ACTIONS(4913), + [anon_sym_BSLASHglsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4913), + [anon_sym_BSLASHglsplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSplural] = ACTIONS(4913), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4913), + [anon_sym_BSLASHglsname] = ACTIONS(4913), + [anon_sym_BSLASHGlsname] = ACTIONS(4913), + [anon_sym_BSLASHGLSname] = ACTIONS(4913), + [anon_sym_BSLASHglssymbol] = ACTIONS(4913), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4913), + [anon_sym_BSLASHglsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4913), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4913), + [anon_sym_BSLASHglsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4913), + [anon_sym_BSLASHglsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4913), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4913), + [anon_sym_BSLASHglsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4913), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4913), + [anon_sym_BSLASHglsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4913), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4913), + [anon_sym_BSLASHnewacronym] = ACTIONS(4913), + [anon_sym_BSLASHacrshort] = ACTIONS(4913), + [anon_sym_BSLASHAcrshort] = ACTIONS(4913), + [anon_sym_BSLASHACRshort] = ACTIONS(4913), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4913), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4913), + [anon_sym_BSLASHacrlong] = ACTIONS(4913), + [anon_sym_BSLASHAcrlong] = ACTIONS(4913), + [anon_sym_BSLASHACRlong] = ACTIONS(4913), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4913), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4913), + [anon_sym_BSLASHacrfull] = ACTIONS(4913), + [anon_sym_BSLASHAcrfull] = ACTIONS(4913), + [anon_sym_BSLASHACRfull] = ACTIONS(4913), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4913), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4913), + [anon_sym_BSLASHacs] = ACTIONS(4913), + [anon_sym_BSLASHAcs] = ACTIONS(4913), + [anon_sym_BSLASHacsp] = ACTIONS(4913), + [anon_sym_BSLASHAcsp] = ACTIONS(4913), + [anon_sym_BSLASHacl] = ACTIONS(4913), + [anon_sym_BSLASHAcl] = ACTIONS(4913), + [anon_sym_BSLASHaclp] = ACTIONS(4913), + [anon_sym_BSLASHAclp] = ACTIONS(4913), + [anon_sym_BSLASHacf] = ACTIONS(4913), + [anon_sym_BSLASHAcf] = ACTIONS(4913), + [anon_sym_BSLASHacfp] = ACTIONS(4913), + [anon_sym_BSLASHAcfp] = ACTIONS(4913), + [anon_sym_BSLASHac] = ACTIONS(4913), + [anon_sym_BSLASHAc] = ACTIONS(4913), + [anon_sym_BSLASHacp] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4913), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4913), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4913), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4913), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4913), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4913), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4913), + [anon_sym_BSLASHcolor] = ACTIONS(4913), + [anon_sym_BSLASHcolorbox] = ACTIONS(4913), + [anon_sym_BSLASHtextcolor] = ACTIONS(4913), + [anon_sym_BSLASHpagecolor] = ACTIONS(4913), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4913), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4913), + }, + [1517] = { + [sym_command_name] = ACTIONS(5165), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5165), + [anon_sym_RBRACK] = ACTIONS(5163), + [anon_sym_COMMA] = ACTIONS(5163), + [anon_sym_EQ] = ACTIONS(5163), + [anon_sym_RBRACE] = ACTIONS(5163), + [sym_word] = ACTIONS(5165), + [sym_placeholder] = ACTIONS(5163), + [anon_sym_PLUS] = ACTIONS(5165), + [anon_sym_DASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5165), + [anon_sym_SLASH] = ACTIONS(5165), + [anon_sym_CARET] = ACTIONS(5165), + [anon_sym__] = ACTIONS(5165), + [anon_sym_LT] = ACTIONS(5165), + [anon_sym_GT] = ACTIONS(5165), + [anon_sym_BANG] = ACTIONS(5165), + [anon_sym_PIPE] = ACTIONS(5165), + [anon_sym_COLON] = ACTIONS(5165), + [anon_sym_SQUOTE] = ACTIONS(5165), + [anon_sym_BSLASHusepackage] = ACTIONS(5165), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5165), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5165), + [anon_sym_BSLASHinclude] = ACTIONS(5165), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5165), + [anon_sym_BSLASHinput] = ACTIONS(5165), + [anon_sym_BSLASHsubfile] = ACTIONS(5165), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5165), + [anon_sym_BSLASHbibliography] = ACTIONS(5165), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5165), + [anon_sym_BSLASHincludesvg] = ACTIONS(5165), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5165), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5165), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5165), + [anon_sym_BSLASHimport] = ACTIONS(5165), + [anon_sym_BSLASHsubimport] = ACTIONS(5165), + [anon_sym_BSLASHinputfrom] = ACTIONS(5165), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5165), + [anon_sym_BSLASHincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5165), + [anon_sym_BSLASHcaption] = ACTIONS(5165), + [anon_sym_BSLASHcite] = ACTIONS(5165), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCite] = ACTIONS(5165), + [anon_sym_BSLASHnocite] = ACTIONS(5165), + [anon_sym_BSLASHcitet] = ACTIONS(5165), + [anon_sym_BSLASHcitep] = ACTIONS(5165), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteauthor] = ACTIONS(5165), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5165), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitetitle] = ACTIONS(5165), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteyear] = ACTIONS(5165), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5163), + [anon_sym_BSLASHcitedate] = ACTIONS(5165), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5163), + [anon_sym_BSLASHciteurl] = ACTIONS(5165), + [anon_sym_BSLASHfullcite] = ACTIONS(5165), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5165), + [anon_sym_BSLASHcitealt] = ACTIONS(5165), + [anon_sym_BSLASHcitealp] = ACTIONS(5165), + [anon_sym_BSLASHcitetext] = ACTIONS(5165), + [anon_sym_BSLASHparencite] = ACTIONS(5165), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHParencite] = ACTIONS(5165), + [anon_sym_BSLASHfootcite] = ACTIONS(5165), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5165), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5165), + [anon_sym_BSLASHtextcite] = ACTIONS(5165), + [anon_sym_BSLASHTextcite] = ACTIONS(5165), + [anon_sym_BSLASHsmartcite] = ACTIONS(5165), + [anon_sym_BSLASHSmartcite] = ACTIONS(5165), + [anon_sym_BSLASHsupercite] = ACTIONS(5165), + [anon_sym_BSLASHautocite] = ACTIONS(5165), + [anon_sym_BSLASHAutocite] = ACTIONS(5165), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5163), + [anon_sym_BSLASHvolcite] = ACTIONS(5165), + [anon_sym_BSLASHVolcite] = ACTIONS(5165), + [anon_sym_BSLASHpvolcite] = ACTIONS(5165), + [anon_sym_BSLASHPvolcite] = ACTIONS(5165), + [anon_sym_BSLASHfvolcite] = ACTIONS(5165), + [anon_sym_BSLASHftvolcite] = ACTIONS(5165), + [anon_sym_BSLASHsvolcite] = ACTIONS(5165), + [anon_sym_BSLASHSvolcite] = ACTIONS(5165), + [anon_sym_BSLASHtvolcite] = ACTIONS(5165), + [anon_sym_BSLASHTvolcite] = ACTIONS(5165), + [anon_sym_BSLASHavolcite] = ACTIONS(5165), + [anon_sym_BSLASHAvolcite] = ACTIONS(5165), + [anon_sym_BSLASHnotecite] = ACTIONS(5165), + [anon_sym_BSLASHNotecite] = ACTIONS(5165), + [anon_sym_BSLASHpnotecite] = ACTIONS(5165), + [anon_sym_BSLASHPnotecite] = ACTIONS(5165), + [anon_sym_BSLASHfnotecite] = ACTIONS(5165), + [anon_sym_BSLASHlabel] = ACTIONS(5165), + [anon_sym_BSLASHref] = ACTIONS(5165), + [anon_sym_BSLASHeqref] = ACTIONS(5165), + [anon_sym_BSLASHvref] = ACTIONS(5165), + [anon_sym_BSLASHVref] = ACTIONS(5165), + [anon_sym_BSLASHautoref] = ACTIONS(5165), + [anon_sym_BSLASHpageref] = ACTIONS(5165), + [anon_sym_BSLASHcref] = ACTIONS(5165), + [anon_sym_BSLASHCref] = ACTIONS(5165), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnameCref] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5165), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5165), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5165), + [anon_sym_BSLASHlabelcref] = ACTIONS(5165), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange] = ACTIONS(5165), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHCrefrange] = ACTIONS(5165), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5163), + [anon_sym_BSLASHnewlabel] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand] = ACTIONS(5165), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5165), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5165), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5163), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5165), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5163), + [anon_sym_BSLASHdef] = ACTIONS(5165), + [anon_sym_BSLASHlet] = ACTIONS(5165), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5165), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5165), + [anon_sym_BSLASHgls] = ACTIONS(5165), + [anon_sym_BSLASHGls] = ACTIONS(5165), + [anon_sym_BSLASHGLS] = ACTIONS(5165), + [anon_sym_BSLASHglspl] = ACTIONS(5165), + [anon_sym_BSLASHGlspl] = ACTIONS(5165), + [anon_sym_BSLASHGLSpl] = ACTIONS(5165), + [anon_sym_BSLASHglsdisp] = ACTIONS(5165), + [anon_sym_BSLASHglslink] = ACTIONS(5165), + [anon_sym_BSLASHglstext] = ACTIONS(5165), + [anon_sym_BSLASHGlstext] = ACTIONS(5165), + [anon_sym_BSLASHGLStext] = ACTIONS(5165), + [anon_sym_BSLASHglsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5165), + [anon_sym_BSLASHglsplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSplural] = ACTIONS(5165), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5165), + [anon_sym_BSLASHglsname] = ACTIONS(5165), + [anon_sym_BSLASHGlsname] = ACTIONS(5165), + [anon_sym_BSLASHGLSname] = ACTIONS(5165), + [anon_sym_BSLASHglssymbol] = ACTIONS(5165), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5165), + [anon_sym_BSLASHglsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5165), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5165), + [anon_sym_BSLASHglsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5165), + [anon_sym_BSLASHglsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5165), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5165), + [anon_sym_BSLASHglsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5165), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5165), + [anon_sym_BSLASHglsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5165), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5165), + [anon_sym_BSLASHnewacronym] = ACTIONS(5165), + [anon_sym_BSLASHacrshort] = ACTIONS(5165), + [anon_sym_BSLASHAcrshort] = ACTIONS(5165), + [anon_sym_BSLASHACRshort] = ACTIONS(5165), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5165), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5165), + [anon_sym_BSLASHacrlong] = ACTIONS(5165), + [anon_sym_BSLASHAcrlong] = ACTIONS(5165), + [anon_sym_BSLASHACRlong] = ACTIONS(5165), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5165), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5165), + [anon_sym_BSLASHacrfull] = ACTIONS(5165), + [anon_sym_BSLASHAcrfull] = ACTIONS(5165), + [anon_sym_BSLASHACRfull] = ACTIONS(5165), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5165), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5165), + [anon_sym_BSLASHacs] = ACTIONS(5165), + [anon_sym_BSLASHAcs] = ACTIONS(5165), + [anon_sym_BSLASHacsp] = ACTIONS(5165), + [anon_sym_BSLASHAcsp] = ACTIONS(5165), + [anon_sym_BSLASHacl] = ACTIONS(5165), + [anon_sym_BSLASHAcl] = ACTIONS(5165), + [anon_sym_BSLASHaclp] = ACTIONS(5165), + [anon_sym_BSLASHAclp] = ACTIONS(5165), + [anon_sym_BSLASHacf] = ACTIONS(5165), + [anon_sym_BSLASHAcf] = ACTIONS(5165), + [anon_sym_BSLASHacfp] = ACTIONS(5165), + [anon_sym_BSLASHAcfp] = ACTIONS(5165), + [anon_sym_BSLASHac] = ACTIONS(5165), + [anon_sym_BSLASHAc] = ACTIONS(5165), + [anon_sym_BSLASHacp] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5165), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5165), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5165), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5165), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5165), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5165), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5165), + [anon_sym_BSLASHcolor] = ACTIONS(5165), + [anon_sym_BSLASHcolorbox] = ACTIONS(5165), + [anon_sym_BSLASHtextcolor] = ACTIONS(5165), + [anon_sym_BSLASHpagecolor] = ACTIONS(5165), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5165), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5165), + }, + [1518] = { + [sym_command_name] = ACTIONS(5161), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5161), + [anon_sym_RBRACK] = ACTIONS(5159), + [anon_sym_COMMA] = ACTIONS(5159), + [anon_sym_EQ] = ACTIONS(5159), + [anon_sym_RBRACE] = ACTIONS(5159), + [sym_word] = ACTIONS(5161), + [sym_placeholder] = ACTIONS(5159), + [anon_sym_PLUS] = ACTIONS(5161), + [anon_sym_DASH] = ACTIONS(5161), + [anon_sym_STAR] = ACTIONS(5161), + [anon_sym_SLASH] = ACTIONS(5161), + [anon_sym_CARET] = ACTIONS(5161), + [anon_sym__] = ACTIONS(5161), + [anon_sym_LT] = ACTIONS(5161), + [anon_sym_GT] = ACTIONS(5161), + [anon_sym_BANG] = ACTIONS(5161), + [anon_sym_PIPE] = ACTIONS(5161), + [anon_sym_COLON] = ACTIONS(5161), + [anon_sym_SQUOTE] = ACTIONS(5161), + [anon_sym_BSLASHusepackage] = ACTIONS(5161), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5161), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5161), + [anon_sym_BSLASHinclude] = ACTIONS(5161), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5161), + [anon_sym_BSLASHinput] = ACTIONS(5161), + [anon_sym_BSLASHsubfile] = ACTIONS(5161), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5161), + [anon_sym_BSLASHbibliography] = ACTIONS(5161), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5161), + [anon_sym_BSLASHincludesvg] = ACTIONS(5161), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5161), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5161), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5161), + [anon_sym_BSLASHimport] = ACTIONS(5161), + [anon_sym_BSLASHsubimport] = ACTIONS(5161), + [anon_sym_BSLASHinputfrom] = ACTIONS(5161), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5161), + [anon_sym_BSLASHincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5161), + [anon_sym_BSLASHcaption] = ACTIONS(5161), + [anon_sym_BSLASHcite] = ACTIONS(5161), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCite] = ACTIONS(5161), + [anon_sym_BSLASHnocite] = ACTIONS(5161), + [anon_sym_BSLASHcitet] = ACTIONS(5161), + [anon_sym_BSLASHcitep] = ACTIONS(5161), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteauthor] = ACTIONS(5161), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5161), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitetitle] = ACTIONS(5161), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteyear] = ACTIONS(5161), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5159), + [anon_sym_BSLASHcitedate] = ACTIONS(5161), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5159), + [anon_sym_BSLASHciteurl] = ACTIONS(5161), + [anon_sym_BSLASHfullcite] = ACTIONS(5161), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5161), + [anon_sym_BSLASHcitealt] = ACTIONS(5161), + [anon_sym_BSLASHcitealp] = ACTIONS(5161), + [anon_sym_BSLASHcitetext] = ACTIONS(5161), + [anon_sym_BSLASHparencite] = ACTIONS(5161), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHParencite] = ACTIONS(5161), + [anon_sym_BSLASHfootcite] = ACTIONS(5161), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5161), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5161), + [anon_sym_BSLASHtextcite] = ACTIONS(5161), + [anon_sym_BSLASHTextcite] = ACTIONS(5161), + [anon_sym_BSLASHsmartcite] = ACTIONS(5161), + [anon_sym_BSLASHSmartcite] = ACTIONS(5161), + [anon_sym_BSLASHsupercite] = ACTIONS(5161), + [anon_sym_BSLASHautocite] = ACTIONS(5161), + [anon_sym_BSLASHAutocite] = ACTIONS(5161), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5159), + [anon_sym_BSLASHvolcite] = ACTIONS(5161), + [anon_sym_BSLASHVolcite] = ACTIONS(5161), + [anon_sym_BSLASHpvolcite] = ACTIONS(5161), + [anon_sym_BSLASHPvolcite] = ACTIONS(5161), + [anon_sym_BSLASHfvolcite] = ACTIONS(5161), + [anon_sym_BSLASHftvolcite] = ACTIONS(5161), + [anon_sym_BSLASHsvolcite] = ACTIONS(5161), + [anon_sym_BSLASHSvolcite] = ACTIONS(5161), + [anon_sym_BSLASHtvolcite] = ACTIONS(5161), + [anon_sym_BSLASHTvolcite] = ACTIONS(5161), + [anon_sym_BSLASHavolcite] = ACTIONS(5161), + [anon_sym_BSLASHAvolcite] = ACTIONS(5161), + [anon_sym_BSLASHnotecite] = ACTIONS(5161), + [anon_sym_BSLASHNotecite] = ACTIONS(5161), + [anon_sym_BSLASHpnotecite] = ACTIONS(5161), + [anon_sym_BSLASHPnotecite] = ACTIONS(5161), + [anon_sym_BSLASHfnotecite] = ACTIONS(5161), + [anon_sym_BSLASHlabel] = ACTIONS(5161), + [anon_sym_BSLASHref] = ACTIONS(5161), + [anon_sym_BSLASHeqref] = ACTIONS(5161), + [anon_sym_BSLASHvref] = ACTIONS(5161), + [anon_sym_BSLASHVref] = ACTIONS(5161), + [anon_sym_BSLASHautoref] = ACTIONS(5161), + [anon_sym_BSLASHpageref] = ACTIONS(5161), + [anon_sym_BSLASHcref] = ACTIONS(5161), + [anon_sym_BSLASHCref] = ACTIONS(5161), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnameCref] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5161), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5161), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5161), + [anon_sym_BSLASHlabelcref] = ACTIONS(5161), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange] = ACTIONS(5161), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHCrefrange] = ACTIONS(5161), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5159), + [anon_sym_BSLASHnewlabel] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand] = ACTIONS(5161), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5161), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5161), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5159), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5161), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5159), + [anon_sym_BSLASHdef] = ACTIONS(5161), + [anon_sym_BSLASHlet] = ACTIONS(5161), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5161), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5161), + [anon_sym_BSLASHgls] = ACTIONS(5161), + [anon_sym_BSLASHGls] = ACTIONS(5161), + [anon_sym_BSLASHGLS] = ACTIONS(5161), + [anon_sym_BSLASHglspl] = ACTIONS(5161), + [anon_sym_BSLASHGlspl] = ACTIONS(5161), + [anon_sym_BSLASHGLSpl] = ACTIONS(5161), + [anon_sym_BSLASHglsdisp] = ACTIONS(5161), + [anon_sym_BSLASHglslink] = ACTIONS(5161), + [anon_sym_BSLASHglstext] = ACTIONS(5161), + [anon_sym_BSLASHGlstext] = ACTIONS(5161), + [anon_sym_BSLASHGLStext] = ACTIONS(5161), + [anon_sym_BSLASHglsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5161), + [anon_sym_BSLASHglsplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSplural] = ACTIONS(5161), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5161), + [anon_sym_BSLASHglsname] = ACTIONS(5161), + [anon_sym_BSLASHGlsname] = ACTIONS(5161), + [anon_sym_BSLASHGLSname] = ACTIONS(5161), + [anon_sym_BSLASHglssymbol] = ACTIONS(5161), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5161), + [anon_sym_BSLASHglsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5161), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5161), + [anon_sym_BSLASHglsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5161), + [anon_sym_BSLASHglsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5161), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5161), + [anon_sym_BSLASHglsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5161), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5161), + [anon_sym_BSLASHglsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5161), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5161), + [anon_sym_BSLASHnewacronym] = ACTIONS(5161), + [anon_sym_BSLASHacrshort] = ACTIONS(5161), + [anon_sym_BSLASHAcrshort] = ACTIONS(5161), + [anon_sym_BSLASHACRshort] = ACTIONS(5161), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5161), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5161), + [anon_sym_BSLASHacrlong] = ACTIONS(5161), + [anon_sym_BSLASHAcrlong] = ACTIONS(5161), + [anon_sym_BSLASHACRlong] = ACTIONS(5161), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5161), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5161), + [anon_sym_BSLASHacrfull] = ACTIONS(5161), + [anon_sym_BSLASHAcrfull] = ACTIONS(5161), + [anon_sym_BSLASHACRfull] = ACTIONS(5161), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5161), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5161), + [anon_sym_BSLASHacs] = ACTIONS(5161), + [anon_sym_BSLASHAcs] = ACTIONS(5161), + [anon_sym_BSLASHacsp] = ACTIONS(5161), + [anon_sym_BSLASHAcsp] = ACTIONS(5161), + [anon_sym_BSLASHacl] = ACTIONS(5161), + [anon_sym_BSLASHAcl] = ACTIONS(5161), + [anon_sym_BSLASHaclp] = ACTIONS(5161), + [anon_sym_BSLASHAclp] = ACTIONS(5161), + [anon_sym_BSLASHacf] = ACTIONS(5161), + [anon_sym_BSLASHAcf] = ACTIONS(5161), + [anon_sym_BSLASHacfp] = ACTIONS(5161), + [anon_sym_BSLASHAcfp] = ACTIONS(5161), + [anon_sym_BSLASHac] = ACTIONS(5161), + [anon_sym_BSLASHAc] = ACTIONS(5161), + [anon_sym_BSLASHacp] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5161), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5161), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5161), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5161), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5161), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5161), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5161), + [anon_sym_BSLASHcolor] = ACTIONS(5161), + [anon_sym_BSLASHcolorbox] = ACTIONS(5161), + [anon_sym_BSLASHtextcolor] = ACTIONS(5161), + [anon_sym_BSLASHpagecolor] = ACTIONS(5161), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5161), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5161), + }, + [1519] = { + [sym_command_name] = ACTIONS(4909), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4909), + [anon_sym_RBRACK] = ACTIONS(4907), + [anon_sym_COMMA] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4907), + [anon_sym_RBRACE] = ACTIONS(4907), + [sym_word] = ACTIONS(4909), + [sym_placeholder] = ACTIONS(4907), + [anon_sym_PLUS] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_STAR] = ACTIONS(4909), + [anon_sym_SLASH] = ACTIONS(4909), + [anon_sym_CARET] = ACTIONS(4909), + [anon_sym__] = ACTIONS(4909), + [anon_sym_LT] = ACTIONS(4909), + [anon_sym_GT] = ACTIONS(4909), + [anon_sym_BANG] = ACTIONS(4909), + [anon_sym_PIPE] = ACTIONS(4909), + [anon_sym_COLON] = ACTIONS(4909), + [anon_sym_SQUOTE] = ACTIONS(4909), + [anon_sym_BSLASHusepackage] = ACTIONS(4909), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4909), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4909), + [anon_sym_BSLASHinclude] = ACTIONS(4909), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4909), + [anon_sym_BSLASHinput] = ACTIONS(4909), + [anon_sym_BSLASHsubfile] = ACTIONS(4909), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4909), + [anon_sym_BSLASHbibliography] = ACTIONS(4909), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4909), + [anon_sym_BSLASHincludesvg] = ACTIONS(4909), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4909), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4909), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4909), + [anon_sym_BSLASHimport] = ACTIONS(4909), + [anon_sym_BSLASHsubimport] = ACTIONS(4909), + [anon_sym_BSLASHinputfrom] = ACTIONS(4909), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4909), + [anon_sym_BSLASHincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4909), + [anon_sym_BSLASHcaption] = ACTIONS(4909), + [anon_sym_BSLASHcite] = ACTIONS(4909), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCite] = ACTIONS(4909), + [anon_sym_BSLASHnocite] = ACTIONS(4909), + [anon_sym_BSLASHcitet] = ACTIONS(4909), + [anon_sym_BSLASHcitep] = ACTIONS(4909), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteauthor] = ACTIONS(4909), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4909), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitetitle] = ACTIONS(4909), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteyear] = ACTIONS(4909), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4907), + [anon_sym_BSLASHcitedate] = ACTIONS(4909), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4907), + [anon_sym_BSLASHciteurl] = ACTIONS(4909), + [anon_sym_BSLASHfullcite] = ACTIONS(4909), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4909), + [anon_sym_BSLASHcitealt] = ACTIONS(4909), + [anon_sym_BSLASHcitealp] = ACTIONS(4909), + [anon_sym_BSLASHcitetext] = ACTIONS(4909), + [anon_sym_BSLASHparencite] = ACTIONS(4909), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHParencite] = ACTIONS(4909), + [anon_sym_BSLASHfootcite] = ACTIONS(4909), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4909), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4909), + [anon_sym_BSLASHtextcite] = ACTIONS(4909), + [anon_sym_BSLASHTextcite] = ACTIONS(4909), + [anon_sym_BSLASHsmartcite] = ACTIONS(4909), + [anon_sym_BSLASHSmartcite] = ACTIONS(4909), + [anon_sym_BSLASHsupercite] = ACTIONS(4909), + [anon_sym_BSLASHautocite] = ACTIONS(4909), + [anon_sym_BSLASHAutocite] = ACTIONS(4909), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4907), + [anon_sym_BSLASHvolcite] = ACTIONS(4909), + [anon_sym_BSLASHVolcite] = ACTIONS(4909), + [anon_sym_BSLASHpvolcite] = ACTIONS(4909), + [anon_sym_BSLASHPvolcite] = ACTIONS(4909), + [anon_sym_BSLASHfvolcite] = ACTIONS(4909), + [anon_sym_BSLASHftvolcite] = ACTIONS(4909), + [anon_sym_BSLASHsvolcite] = ACTIONS(4909), + [anon_sym_BSLASHSvolcite] = ACTIONS(4909), + [anon_sym_BSLASHtvolcite] = ACTIONS(4909), + [anon_sym_BSLASHTvolcite] = ACTIONS(4909), + [anon_sym_BSLASHavolcite] = ACTIONS(4909), + [anon_sym_BSLASHAvolcite] = ACTIONS(4909), + [anon_sym_BSLASHnotecite] = ACTIONS(4909), + [anon_sym_BSLASHNotecite] = ACTIONS(4909), + [anon_sym_BSLASHpnotecite] = ACTIONS(4909), + [anon_sym_BSLASHPnotecite] = ACTIONS(4909), + [anon_sym_BSLASHfnotecite] = ACTIONS(4909), + [anon_sym_BSLASHlabel] = ACTIONS(4909), + [anon_sym_BSLASHref] = ACTIONS(4909), + [anon_sym_BSLASHeqref] = ACTIONS(4909), + [anon_sym_BSLASHvref] = ACTIONS(4909), + [anon_sym_BSLASHVref] = ACTIONS(4909), + [anon_sym_BSLASHautoref] = ACTIONS(4909), + [anon_sym_BSLASHpageref] = ACTIONS(4909), + [anon_sym_BSLASHcref] = ACTIONS(4909), + [anon_sym_BSLASHCref] = ACTIONS(4909), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnameCref] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4909), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4909), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4909), + [anon_sym_BSLASHlabelcref] = ACTIONS(4909), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange] = ACTIONS(4909), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHCrefrange] = ACTIONS(4909), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4907), + [anon_sym_BSLASHnewlabel] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand] = ACTIONS(4909), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4909), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4909), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4907), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4909), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4907), + [anon_sym_BSLASHdef] = ACTIONS(4909), + [anon_sym_BSLASHlet] = ACTIONS(4909), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4909), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4909), + [anon_sym_BSLASHgls] = ACTIONS(4909), + [anon_sym_BSLASHGls] = ACTIONS(4909), + [anon_sym_BSLASHGLS] = ACTIONS(4909), + [anon_sym_BSLASHglspl] = ACTIONS(4909), + [anon_sym_BSLASHGlspl] = ACTIONS(4909), + [anon_sym_BSLASHGLSpl] = ACTIONS(4909), + [anon_sym_BSLASHglsdisp] = ACTIONS(4909), + [anon_sym_BSLASHglslink] = ACTIONS(4909), + [anon_sym_BSLASHglstext] = ACTIONS(4909), + [anon_sym_BSLASHGlstext] = ACTIONS(4909), + [anon_sym_BSLASHGLStext] = ACTIONS(4909), + [anon_sym_BSLASHglsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4909), + [anon_sym_BSLASHglsplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSplural] = ACTIONS(4909), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4909), + [anon_sym_BSLASHglsname] = ACTIONS(4909), + [anon_sym_BSLASHGlsname] = ACTIONS(4909), + [anon_sym_BSLASHGLSname] = ACTIONS(4909), + [anon_sym_BSLASHglssymbol] = ACTIONS(4909), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4909), + [anon_sym_BSLASHglsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4909), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4909), + [anon_sym_BSLASHglsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4909), + [anon_sym_BSLASHglsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4909), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4909), + [anon_sym_BSLASHglsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4909), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4909), + [anon_sym_BSLASHglsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4909), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4909), + [anon_sym_BSLASHnewacronym] = ACTIONS(4909), + [anon_sym_BSLASHacrshort] = ACTIONS(4909), + [anon_sym_BSLASHAcrshort] = ACTIONS(4909), + [anon_sym_BSLASHACRshort] = ACTIONS(4909), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4909), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4909), + [anon_sym_BSLASHacrlong] = ACTIONS(4909), + [anon_sym_BSLASHAcrlong] = ACTIONS(4909), + [anon_sym_BSLASHACRlong] = ACTIONS(4909), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4909), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4909), + [anon_sym_BSLASHacrfull] = ACTIONS(4909), + [anon_sym_BSLASHAcrfull] = ACTIONS(4909), + [anon_sym_BSLASHACRfull] = ACTIONS(4909), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4909), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4909), + [anon_sym_BSLASHacs] = ACTIONS(4909), + [anon_sym_BSLASHAcs] = ACTIONS(4909), + [anon_sym_BSLASHacsp] = ACTIONS(4909), + [anon_sym_BSLASHAcsp] = ACTIONS(4909), + [anon_sym_BSLASHacl] = ACTIONS(4909), + [anon_sym_BSLASHAcl] = ACTIONS(4909), + [anon_sym_BSLASHaclp] = ACTIONS(4909), + [anon_sym_BSLASHAclp] = ACTIONS(4909), + [anon_sym_BSLASHacf] = ACTIONS(4909), + [anon_sym_BSLASHAcf] = ACTIONS(4909), + [anon_sym_BSLASHacfp] = ACTIONS(4909), + [anon_sym_BSLASHAcfp] = ACTIONS(4909), + [anon_sym_BSLASHac] = ACTIONS(4909), + [anon_sym_BSLASHAc] = ACTIONS(4909), + [anon_sym_BSLASHacp] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4909), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4909), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4909), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4909), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4909), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4909), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4909), + [anon_sym_BSLASHcolor] = ACTIONS(4909), + [anon_sym_BSLASHcolorbox] = ACTIONS(4909), + [anon_sym_BSLASHtextcolor] = ACTIONS(4909), + [anon_sym_BSLASHpagecolor] = ACTIONS(4909), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4909), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4909), + }, + [1520] = { + [sym_command_name] = ACTIONS(5185), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5073), - [anon_sym_RBRACK] = ACTIONS(5071), - [anon_sym_COMMA] = ACTIONS(5071), - [anon_sym_EQ] = ACTIONS(5071), - [anon_sym_RBRACE] = ACTIONS(5071), - [sym_word] = ACTIONS(5073), - [sym_placeholder] = ACTIONS(5071), - [anon_sym_PLUS] = ACTIONS(5073), - [anon_sym_DASH] = ACTIONS(5073), - [anon_sym_STAR] = ACTIONS(5073), - [anon_sym_SLASH] = ACTIONS(5073), - [anon_sym_CARET] = ACTIONS(5073), - [anon_sym__] = ACTIONS(5073), - [anon_sym_LT] = ACTIONS(5073), - [anon_sym_GT] = ACTIONS(5073), - [anon_sym_BANG] = ACTIONS(5073), - [anon_sym_PIPE] = ACTIONS(5073), - [anon_sym_COLON] = ACTIONS(5073), - [anon_sym_SQUOTE] = ACTIONS(5073), - [anon_sym_BSLASHusepackage] = ACTIONS(5073), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), - [anon_sym_BSLASHinclude] = ACTIONS(5073), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), - [anon_sym_BSLASHinput] = ACTIONS(5073), - [anon_sym_BSLASHsubfile] = ACTIONS(5073), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), - [anon_sym_BSLASHbibliography] = ACTIONS(5073), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), - [anon_sym_BSLASHincludesvg] = ACTIONS(5073), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), - [anon_sym_BSLASHimport] = ACTIONS(5073), - [anon_sym_BSLASHsubimport] = ACTIONS(5073), - [anon_sym_BSLASHinputfrom] = ACTIONS(5073), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), - [anon_sym_BSLASHincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), - [anon_sym_BSLASHcaption] = ACTIONS(5073), - [anon_sym_BSLASHcite] = ACTIONS(5073), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCite] = ACTIONS(5073), - [anon_sym_BSLASHnocite] = ACTIONS(5073), - [anon_sym_BSLASHcitet] = ACTIONS(5073), - [anon_sym_BSLASHcitep] = ACTIONS(5073), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteauthor] = ACTIONS(5073), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitetitle] = ACTIONS(5073), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteyear] = ACTIONS(5073), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), - [anon_sym_BSLASHcitedate] = ACTIONS(5073), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), - [anon_sym_BSLASHciteurl] = ACTIONS(5073), - [anon_sym_BSLASHfullcite] = ACTIONS(5073), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), - [anon_sym_BSLASHcitealt] = ACTIONS(5073), - [anon_sym_BSLASHcitealp] = ACTIONS(5073), - [anon_sym_BSLASHcitetext] = ACTIONS(5073), - [anon_sym_BSLASHparencite] = ACTIONS(5073), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHParencite] = ACTIONS(5073), - [anon_sym_BSLASHfootcite] = ACTIONS(5073), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), - [anon_sym_BSLASHtextcite] = ACTIONS(5073), - [anon_sym_BSLASHTextcite] = ACTIONS(5073), - [anon_sym_BSLASHsmartcite] = ACTIONS(5073), - [anon_sym_BSLASHSmartcite] = ACTIONS(5073), - [anon_sym_BSLASHsupercite] = ACTIONS(5073), - [anon_sym_BSLASHautocite] = ACTIONS(5073), - [anon_sym_BSLASHAutocite] = ACTIONS(5073), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), - [anon_sym_BSLASHvolcite] = ACTIONS(5073), - [anon_sym_BSLASHVolcite] = ACTIONS(5073), - [anon_sym_BSLASHpvolcite] = ACTIONS(5073), - [anon_sym_BSLASHPvolcite] = ACTIONS(5073), - [anon_sym_BSLASHfvolcite] = ACTIONS(5073), - [anon_sym_BSLASHftvolcite] = ACTIONS(5073), - [anon_sym_BSLASHsvolcite] = ACTIONS(5073), - [anon_sym_BSLASHSvolcite] = ACTIONS(5073), - [anon_sym_BSLASHtvolcite] = ACTIONS(5073), - [anon_sym_BSLASHTvolcite] = ACTIONS(5073), - [anon_sym_BSLASHavolcite] = ACTIONS(5073), - [anon_sym_BSLASHAvolcite] = ACTIONS(5073), - [anon_sym_BSLASHnotecite] = ACTIONS(5073), - [anon_sym_BSLASHNotecite] = ACTIONS(5073), - [anon_sym_BSLASHpnotecite] = ACTIONS(5073), - [anon_sym_BSLASHPnotecite] = ACTIONS(5073), - [anon_sym_BSLASHfnotecite] = ACTIONS(5073), - [anon_sym_BSLASHlabel] = ACTIONS(5073), - [anon_sym_BSLASHref] = ACTIONS(5073), - [anon_sym_BSLASHeqref] = ACTIONS(5073), - [anon_sym_BSLASHvref] = ACTIONS(5073), - [anon_sym_BSLASHVref] = ACTIONS(5073), - [anon_sym_BSLASHautoref] = ACTIONS(5073), - [anon_sym_BSLASHpageref] = ACTIONS(5073), - [anon_sym_BSLASHcref] = ACTIONS(5073), - [anon_sym_BSLASHCref] = ACTIONS(5073), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnameCref] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), - [anon_sym_BSLASHlabelcref] = ACTIONS(5073), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange] = ACTIONS(5073), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHCrefrange] = ACTIONS(5073), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), - [anon_sym_BSLASHnewlabel] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand] = ACTIONS(5073), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), - [anon_sym_BSLASHdef] = ACTIONS(5073), - [anon_sym_BSLASHlet] = ACTIONS(5073), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), - [anon_sym_BSLASHgls] = ACTIONS(5073), - [anon_sym_BSLASHGls] = ACTIONS(5073), - [anon_sym_BSLASHGLS] = ACTIONS(5073), - [anon_sym_BSLASHglspl] = ACTIONS(5073), - [anon_sym_BSLASHGlspl] = ACTIONS(5073), - [anon_sym_BSLASHGLSpl] = ACTIONS(5073), - [anon_sym_BSLASHglsdisp] = ACTIONS(5073), - [anon_sym_BSLASHglslink] = ACTIONS(5073), - [anon_sym_BSLASHglstext] = ACTIONS(5073), - [anon_sym_BSLASHGlstext] = ACTIONS(5073), - [anon_sym_BSLASHGLStext] = ACTIONS(5073), - [anon_sym_BSLASHglsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), - [anon_sym_BSLASHglsplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSplural] = ACTIONS(5073), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), - [anon_sym_BSLASHglsname] = ACTIONS(5073), - [anon_sym_BSLASHGlsname] = ACTIONS(5073), - [anon_sym_BSLASHGLSname] = ACTIONS(5073), - [anon_sym_BSLASHglssymbol] = ACTIONS(5073), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), - [anon_sym_BSLASHglsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), - [anon_sym_BSLASHglsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), - [anon_sym_BSLASHglsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), - [anon_sym_BSLASHglsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), - [anon_sym_BSLASHglsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), - [anon_sym_BSLASHnewacronym] = ACTIONS(5073), - [anon_sym_BSLASHacrshort] = ACTIONS(5073), - [anon_sym_BSLASHAcrshort] = ACTIONS(5073), - [anon_sym_BSLASHACRshort] = ACTIONS(5073), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), - [anon_sym_BSLASHacrlong] = ACTIONS(5073), - [anon_sym_BSLASHAcrlong] = ACTIONS(5073), - [anon_sym_BSLASHACRlong] = ACTIONS(5073), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), - [anon_sym_BSLASHacrfull] = ACTIONS(5073), - [anon_sym_BSLASHAcrfull] = ACTIONS(5073), - [anon_sym_BSLASHACRfull] = ACTIONS(5073), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), - [anon_sym_BSLASHacs] = ACTIONS(5073), - [anon_sym_BSLASHAcs] = ACTIONS(5073), - [anon_sym_BSLASHacsp] = ACTIONS(5073), - [anon_sym_BSLASHAcsp] = ACTIONS(5073), - [anon_sym_BSLASHacl] = ACTIONS(5073), - [anon_sym_BSLASHAcl] = ACTIONS(5073), - [anon_sym_BSLASHaclp] = ACTIONS(5073), - [anon_sym_BSLASHAclp] = ACTIONS(5073), - [anon_sym_BSLASHacf] = ACTIONS(5073), - [anon_sym_BSLASHAcf] = ACTIONS(5073), - [anon_sym_BSLASHacfp] = ACTIONS(5073), - [anon_sym_BSLASHAcfp] = ACTIONS(5073), - [anon_sym_BSLASHac] = ACTIONS(5073), - [anon_sym_BSLASHAc] = ACTIONS(5073), - [anon_sym_BSLASHacp] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), - [anon_sym_BSLASHcolor] = ACTIONS(5073), - [anon_sym_BSLASHcolorbox] = ACTIONS(5073), - [anon_sym_BSLASHtextcolor] = ACTIONS(5073), - [anon_sym_BSLASHpagecolor] = ACTIONS(5073), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), + [anon_sym_BSLASHiffalse] = ACTIONS(5185), + [anon_sym_RBRACK] = ACTIONS(5183), + [anon_sym_COMMA] = ACTIONS(5183), + [anon_sym_EQ] = ACTIONS(5183), + [anon_sym_RBRACE] = ACTIONS(5183), + [sym_word] = ACTIONS(5185), + [sym_placeholder] = ACTIONS(5183), + [anon_sym_PLUS] = ACTIONS(5185), + [anon_sym_DASH] = ACTIONS(5185), + [anon_sym_STAR] = ACTIONS(5185), + [anon_sym_SLASH] = ACTIONS(5185), + [anon_sym_CARET] = ACTIONS(5185), + [anon_sym__] = ACTIONS(5185), + [anon_sym_LT] = ACTIONS(5185), + [anon_sym_GT] = ACTIONS(5185), + [anon_sym_BANG] = ACTIONS(5185), + [anon_sym_PIPE] = ACTIONS(5185), + [anon_sym_COLON] = ACTIONS(5185), + [anon_sym_SQUOTE] = ACTIONS(5185), + [anon_sym_BSLASHusepackage] = ACTIONS(5185), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5185), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5185), + [anon_sym_BSLASHinclude] = ACTIONS(5185), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5185), + [anon_sym_BSLASHinput] = ACTIONS(5185), + [anon_sym_BSLASHsubfile] = ACTIONS(5185), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5185), + [anon_sym_BSLASHbibliography] = ACTIONS(5185), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5185), + [anon_sym_BSLASHincludesvg] = ACTIONS(5185), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5185), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5185), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5185), + [anon_sym_BSLASHimport] = ACTIONS(5185), + [anon_sym_BSLASHsubimport] = ACTIONS(5185), + [anon_sym_BSLASHinputfrom] = ACTIONS(5185), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5185), + [anon_sym_BSLASHincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5185), + [anon_sym_BSLASHcaption] = ACTIONS(5185), + [anon_sym_BSLASHcite] = ACTIONS(5185), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCite] = ACTIONS(5185), + [anon_sym_BSLASHnocite] = ACTIONS(5185), + [anon_sym_BSLASHcitet] = ACTIONS(5185), + [anon_sym_BSLASHcitep] = ACTIONS(5185), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteauthor] = ACTIONS(5185), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5185), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitetitle] = ACTIONS(5185), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteyear] = ACTIONS(5185), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5183), + [anon_sym_BSLASHcitedate] = ACTIONS(5185), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5183), + [anon_sym_BSLASHciteurl] = ACTIONS(5185), + [anon_sym_BSLASHfullcite] = ACTIONS(5185), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5185), + [anon_sym_BSLASHcitealt] = ACTIONS(5185), + [anon_sym_BSLASHcitealp] = ACTIONS(5185), + [anon_sym_BSLASHcitetext] = ACTIONS(5185), + [anon_sym_BSLASHparencite] = ACTIONS(5185), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHParencite] = ACTIONS(5185), + [anon_sym_BSLASHfootcite] = ACTIONS(5185), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5185), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5185), + [anon_sym_BSLASHtextcite] = ACTIONS(5185), + [anon_sym_BSLASHTextcite] = ACTIONS(5185), + [anon_sym_BSLASHsmartcite] = ACTIONS(5185), + [anon_sym_BSLASHSmartcite] = ACTIONS(5185), + [anon_sym_BSLASHsupercite] = ACTIONS(5185), + [anon_sym_BSLASHautocite] = ACTIONS(5185), + [anon_sym_BSLASHAutocite] = ACTIONS(5185), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5183), + [anon_sym_BSLASHvolcite] = ACTIONS(5185), + [anon_sym_BSLASHVolcite] = ACTIONS(5185), + [anon_sym_BSLASHpvolcite] = ACTIONS(5185), + [anon_sym_BSLASHPvolcite] = ACTIONS(5185), + [anon_sym_BSLASHfvolcite] = ACTIONS(5185), + [anon_sym_BSLASHftvolcite] = ACTIONS(5185), + [anon_sym_BSLASHsvolcite] = ACTIONS(5185), + [anon_sym_BSLASHSvolcite] = ACTIONS(5185), + [anon_sym_BSLASHtvolcite] = ACTIONS(5185), + [anon_sym_BSLASHTvolcite] = ACTIONS(5185), + [anon_sym_BSLASHavolcite] = ACTIONS(5185), + [anon_sym_BSLASHAvolcite] = ACTIONS(5185), + [anon_sym_BSLASHnotecite] = ACTIONS(5185), + [anon_sym_BSLASHNotecite] = ACTIONS(5185), + [anon_sym_BSLASHpnotecite] = ACTIONS(5185), + [anon_sym_BSLASHPnotecite] = ACTIONS(5185), + [anon_sym_BSLASHfnotecite] = ACTIONS(5185), + [anon_sym_BSLASHlabel] = ACTIONS(5185), + [anon_sym_BSLASHref] = ACTIONS(5185), + [anon_sym_BSLASHeqref] = ACTIONS(5185), + [anon_sym_BSLASHvref] = ACTIONS(5185), + [anon_sym_BSLASHVref] = ACTIONS(5185), + [anon_sym_BSLASHautoref] = ACTIONS(5185), + [anon_sym_BSLASHpageref] = ACTIONS(5185), + [anon_sym_BSLASHcref] = ACTIONS(5185), + [anon_sym_BSLASHCref] = ACTIONS(5185), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnameCref] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5185), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5185), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5185), + [anon_sym_BSLASHlabelcref] = ACTIONS(5185), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange] = ACTIONS(5185), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHCrefrange] = ACTIONS(5185), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5183), + [anon_sym_BSLASHnewlabel] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand] = ACTIONS(5185), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5185), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5185), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5183), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5185), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5183), + [anon_sym_BSLASHdef] = ACTIONS(5185), + [anon_sym_BSLASHlet] = ACTIONS(5185), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5185), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5185), + [anon_sym_BSLASHgls] = ACTIONS(5185), + [anon_sym_BSLASHGls] = ACTIONS(5185), + [anon_sym_BSLASHGLS] = ACTIONS(5185), + [anon_sym_BSLASHglspl] = ACTIONS(5185), + [anon_sym_BSLASHGlspl] = ACTIONS(5185), + [anon_sym_BSLASHGLSpl] = ACTIONS(5185), + [anon_sym_BSLASHglsdisp] = ACTIONS(5185), + [anon_sym_BSLASHglslink] = ACTIONS(5185), + [anon_sym_BSLASHglstext] = ACTIONS(5185), + [anon_sym_BSLASHGlstext] = ACTIONS(5185), + [anon_sym_BSLASHGLStext] = ACTIONS(5185), + [anon_sym_BSLASHglsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5185), + [anon_sym_BSLASHglsplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSplural] = ACTIONS(5185), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5185), + [anon_sym_BSLASHglsname] = ACTIONS(5185), + [anon_sym_BSLASHGlsname] = ACTIONS(5185), + [anon_sym_BSLASHGLSname] = ACTIONS(5185), + [anon_sym_BSLASHglssymbol] = ACTIONS(5185), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5185), + [anon_sym_BSLASHglsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5185), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5185), + [anon_sym_BSLASHglsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5185), + [anon_sym_BSLASHglsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5185), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5185), + [anon_sym_BSLASHglsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5185), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5185), + [anon_sym_BSLASHglsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5185), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5185), + [anon_sym_BSLASHnewacronym] = ACTIONS(5185), + [anon_sym_BSLASHacrshort] = ACTIONS(5185), + [anon_sym_BSLASHAcrshort] = ACTIONS(5185), + [anon_sym_BSLASHACRshort] = ACTIONS(5185), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5185), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5185), + [anon_sym_BSLASHacrlong] = ACTIONS(5185), + [anon_sym_BSLASHAcrlong] = ACTIONS(5185), + [anon_sym_BSLASHACRlong] = ACTIONS(5185), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5185), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5185), + [anon_sym_BSLASHacrfull] = ACTIONS(5185), + [anon_sym_BSLASHAcrfull] = ACTIONS(5185), + [anon_sym_BSLASHACRfull] = ACTIONS(5185), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5185), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5185), + [anon_sym_BSLASHacs] = ACTIONS(5185), + [anon_sym_BSLASHAcs] = ACTIONS(5185), + [anon_sym_BSLASHacsp] = ACTIONS(5185), + [anon_sym_BSLASHAcsp] = ACTIONS(5185), + [anon_sym_BSLASHacl] = ACTIONS(5185), + [anon_sym_BSLASHAcl] = ACTIONS(5185), + [anon_sym_BSLASHaclp] = ACTIONS(5185), + [anon_sym_BSLASHAclp] = ACTIONS(5185), + [anon_sym_BSLASHacf] = ACTIONS(5185), + [anon_sym_BSLASHAcf] = ACTIONS(5185), + [anon_sym_BSLASHacfp] = ACTIONS(5185), + [anon_sym_BSLASHAcfp] = ACTIONS(5185), + [anon_sym_BSLASHac] = ACTIONS(5185), + [anon_sym_BSLASHAc] = ACTIONS(5185), + [anon_sym_BSLASHacp] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5185), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5185), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5185), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5185), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5185), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5185), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5185), + [anon_sym_BSLASHcolor] = ACTIONS(5185), + [anon_sym_BSLASHcolorbox] = ACTIONS(5185), + [anon_sym_BSLASHtextcolor] = ACTIONS(5185), + [anon_sym_BSLASHpagecolor] = ACTIONS(5185), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5185), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5185), }, - [1537] = { - [sym_command_name] = ACTIONS(4975), + [1521] = { + [sym_command_name] = ACTIONS(4905), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4905), + [anon_sym_RBRACK] = ACTIONS(4903), + [anon_sym_COMMA] = ACTIONS(4903), + [anon_sym_EQ] = ACTIONS(4903), + [anon_sym_RBRACE] = ACTIONS(4903), + [sym_word] = ACTIONS(4905), + [sym_placeholder] = ACTIONS(4903), + [anon_sym_PLUS] = ACTIONS(4905), + [anon_sym_DASH] = ACTIONS(4905), + [anon_sym_STAR] = ACTIONS(4905), + [anon_sym_SLASH] = ACTIONS(4905), + [anon_sym_CARET] = ACTIONS(4905), + [anon_sym__] = ACTIONS(4905), + [anon_sym_LT] = ACTIONS(4905), + [anon_sym_GT] = ACTIONS(4905), + [anon_sym_BANG] = ACTIONS(4905), + [anon_sym_PIPE] = ACTIONS(4905), + [anon_sym_COLON] = ACTIONS(4905), + [anon_sym_SQUOTE] = ACTIONS(4905), + [anon_sym_BSLASHusepackage] = ACTIONS(4905), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4905), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4905), + [anon_sym_BSLASHinclude] = ACTIONS(4905), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4905), + [anon_sym_BSLASHinput] = ACTIONS(4905), + [anon_sym_BSLASHsubfile] = ACTIONS(4905), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4905), + [anon_sym_BSLASHbibliography] = ACTIONS(4905), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4905), + [anon_sym_BSLASHincludesvg] = ACTIONS(4905), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4905), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4905), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4905), + [anon_sym_BSLASHimport] = ACTIONS(4905), + [anon_sym_BSLASHsubimport] = ACTIONS(4905), + [anon_sym_BSLASHinputfrom] = ACTIONS(4905), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4905), + [anon_sym_BSLASHincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4905), + [anon_sym_BSLASHcaption] = ACTIONS(4905), + [anon_sym_BSLASHcite] = ACTIONS(4905), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCite] = ACTIONS(4905), + [anon_sym_BSLASHnocite] = ACTIONS(4905), + [anon_sym_BSLASHcitet] = ACTIONS(4905), + [anon_sym_BSLASHcitep] = ACTIONS(4905), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteauthor] = ACTIONS(4905), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4905), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitetitle] = ACTIONS(4905), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteyear] = ACTIONS(4905), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4903), + [anon_sym_BSLASHcitedate] = ACTIONS(4905), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4903), + [anon_sym_BSLASHciteurl] = ACTIONS(4905), + [anon_sym_BSLASHfullcite] = ACTIONS(4905), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4905), + [anon_sym_BSLASHcitealt] = ACTIONS(4905), + [anon_sym_BSLASHcitealp] = ACTIONS(4905), + [anon_sym_BSLASHcitetext] = ACTIONS(4905), + [anon_sym_BSLASHparencite] = ACTIONS(4905), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHParencite] = ACTIONS(4905), + [anon_sym_BSLASHfootcite] = ACTIONS(4905), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4905), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4905), + [anon_sym_BSLASHtextcite] = ACTIONS(4905), + [anon_sym_BSLASHTextcite] = ACTIONS(4905), + [anon_sym_BSLASHsmartcite] = ACTIONS(4905), + [anon_sym_BSLASHSmartcite] = ACTIONS(4905), + [anon_sym_BSLASHsupercite] = ACTIONS(4905), + [anon_sym_BSLASHautocite] = ACTIONS(4905), + [anon_sym_BSLASHAutocite] = ACTIONS(4905), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4903), + [anon_sym_BSLASHvolcite] = ACTIONS(4905), + [anon_sym_BSLASHVolcite] = ACTIONS(4905), + [anon_sym_BSLASHpvolcite] = ACTIONS(4905), + [anon_sym_BSLASHPvolcite] = ACTIONS(4905), + [anon_sym_BSLASHfvolcite] = ACTIONS(4905), + [anon_sym_BSLASHftvolcite] = ACTIONS(4905), + [anon_sym_BSLASHsvolcite] = ACTIONS(4905), + [anon_sym_BSLASHSvolcite] = ACTIONS(4905), + [anon_sym_BSLASHtvolcite] = ACTIONS(4905), + [anon_sym_BSLASHTvolcite] = ACTIONS(4905), + [anon_sym_BSLASHavolcite] = ACTIONS(4905), + [anon_sym_BSLASHAvolcite] = ACTIONS(4905), + [anon_sym_BSLASHnotecite] = ACTIONS(4905), + [anon_sym_BSLASHNotecite] = ACTIONS(4905), + [anon_sym_BSLASHpnotecite] = ACTIONS(4905), + [anon_sym_BSLASHPnotecite] = ACTIONS(4905), + [anon_sym_BSLASHfnotecite] = ACTIONS(4905), + [anon_sym_BSLASHlabel] = ACTIONS(4905), + [anon_sym_BSLASHref] = ACTIONS(4905), + [anon_sym_BSLASHeqref] = ACTIONS(4905), + [anon_sym_BSLASHvref] = ACTIONS(4905), + [anon_sym_BSLASHVref] = ACTIONS(4905), + [anon_sym_BSLASHautoref] = ACTIONS(4905), + [anon_sym_BSLASHpageref] = ACTIONS(4905), + [anon_sym_BSLASHcref] = ACTIONS(4905), + [anon_sym_BSLASHCref] = ACTIONS(4905), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnameCref] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4905), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4905), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4905), + [anon_sym_BSLASHlabelcref] = ACTIONS(4905), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange] = ACTIONS(4905), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHCrefrange] = ACTIONS(4905), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4903), + [anon_sym_BSLASHnewlabel] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand] = ACTIONS(4905), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4905), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4905), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4903), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4905), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4903), + [anon_sym_BSLASHdef] = ACTIONS(4905), + [anon_sym_BSLASHlet] = ACTIONS(4905), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4905), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4905), + [anon_sym_BSLASHgls] = ACTIONS(4905), + [anon_sym_BSLASHGls] = ACTIONS(4905), + [anon_sym_BSLASHGLS] = ACTIONS(4905), + [anon_sym_BSLASHglspl] = ACTIONS(4905), + [anon_sym_BSLASHGlspl] = ACTIONS(4905), + [anon_sym_BSLASHGLSpl] = ACTIONS(4905), + [anon_sym_BSLASHglsdisp] = ACTIONS(4905), + [anon_sym_BSLASHglslink] = ACTIONS(4905), + [anon_sym_BSLASHglstext] = ACTIONS(4905), + [anon_sym_BSLASHGlstext] = ACTIONS(4905), + [anon_sym_BSLASHGLStext] = ACTIONS(4905), + [anon_sym_BSLASHglsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4905), + [anon_sym_BSLASHglsplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSplural] = ACTIONS(4905), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4905), + [anon_sym_BSLASHglsname] = ACTIONS(4905), + [anon_sym_BSLASHGlsname] = ACTIONS(4905), + [anon_sym_BSLASHGLSname] = ACTIONS(4905), + [anon_sym_BSLASHglssymbol] = ACTIONS(4905), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4905), + [anon_sym_BSLASHglsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4905), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4905), + [anon_sym_BSLASHglsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4905), + [anon_sym_BSLASHglsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4905), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4905), + [anon_sym_BSLASHglsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4905), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4905), + [anon_sym_BSLASHglsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4905), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4905), + [anon_sym_BSLASHnewacronym] = ACTIONS(4905), + [anon_sym_BSLASHacrshort] = ACTIONS(4905), + [anon_sym_BSLASHAcrshort] = ACTIONS(4905), + [anon_sym_BSLASHACRshort] = ACTIONS(4905), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4905), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4905), + [anon_sym_BSLASHacrlong] = ACTIONS(4905), + [anon_sym_BSLASHAcrlong] = ACTIONS(4905), + [anon_sym_BSLASHACRlong] = ACTIONS(4905), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4905), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4905), + [anon_sym_BSLASHacrfull] = ACTIONS(4905), + [anon_sym_BSLASHAcrfull] = ACTIONS(4905), + [anon_sym_BSLASHACRfull] = ACTIONS(4905), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4905), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4905), + [anon_sym_BSLASHacs] = ACTIONS(4905), + [anon_sym_BSLASHAcs] = ACTIONS(4905), + [anon_sym_BSLASHacsp] = ACTIONS(4905), + [anon_sym_BSLASHAcsp] = ACTIONS(4905), + [anon_sym_BSLASHacl] = ACTIONS(4905), + [anon_sym_BSLASHAcl] = ACTIONS(4905), + [anon_sym_BSLASHaclp] = ACTIONS(4905), + [anon_sym_BSLASHAclp] = ACTIONS(4905), + [anon_sym_BSLASHacf] = ACTIONS(4905), + [anon_sym_BSLASHAcf] = ACTIONS(4905), + [anon_sym_BSLASHacfp] = ACTIONS(4905), + [anon_sym_BSLASHAcfp] = ACTIONS(4905), + [anon_sym_BSLASHac] = ACTIONS(4905), + [anon_sym_BSLASHAc] = ACTIONS(4905), + [anon_sym_BSLASHacp] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4905), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4905), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4905), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4905), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4905), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4905), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4905), + [anon_sym_BSLASHcolor] = ACTIONS(4905), + [anon_sym_BSLASHcolorbox] = ACTIONS(4905), + [anon_sym_BSLASHtextcolor] = ACTIONS(4905), + [anon_sym_BSLASHpagecolor] = ACTIONS(4905), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4905), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4905), + }, + [1522] = { + [sym_command_name] = ACTIONS(4901), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4901), + [anon_sym_RBRACK] = ACTIONS(4899), + [anon_sym_COMMA] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(4899), + [anon_sym_RBRACE] = ACTIONS(4899), + [sym_word] = ACTIONS(4901), + [sym_placeholder] = ACTIONS(4899), + [anon_sym_PLUS] = ACTIONS(4901), + [anon_sym_DASH] = ACTIONS(4901), + [anon_sym_STAR] = ACTIONS(4901), + [anon_sym_SLASH] = ACTIONS(4901), + [anon_sym_CARET] = ACTIONS(4901), + [anon_sym__] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(4901), + [anon_sym_GT] = ACTIONS(4901), + [anon_sym_BANG] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_COLON] = ACTIONS(4901), + [anon_sym_SQUOTE] = ACTIONS(4901), + [anon_sym_BSLASHusepackage] = ACTIONS(4901), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4901), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4901), + [anon_sym_BSLASHinclude] = ACTIONS(4901), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4901), + [anon_sym_BSLASHinput] = ACTIONS(4901), + [anon_sym_BSLASHsubfile] = ACTIONS(4901), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4901), + [anon_sym_BSLASHbibliography] = ACTIONS(4901), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4901), + [anon_sym_BSLASHincludesvg] = ACTIONS(4901), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4901), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4901), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4901), + [anon_sym_BSLASHimport] = ACTIONS(4901), + [anon_sym_BSLASHsubimport] = ACTIONS(4901), + [anon_sym_BSLASHinputfrom] = ACTIONS(4901), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4901), + [anon_sym_BSLASHincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4901), + [anon_sym_BSLASHcaption] = ACTIONS(4901), + [anon_sym_BSLASHcite] = ACTIONS(4901), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCite] = ACTIONS(4901), + [anon_sym_BSLASHnocite] = ACTIONS(4901), + [anon_sym_BSLASHcitet] = ACTIONS(4901), + [anon_sym_BSLASHcitep] = ACTIONS(4901), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteauthor] = ACTIONS(4901), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4901), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitetitle] = ACTIONS(4901), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteyear] = ACTIONS(4901), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4899), + [anon_sym_BSLASHcitedate] = ACTIONS(4901), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4899), + [anon_sym_BSLASHciteurl] = ACTIONS(4901), + [anon_sym_BSLASHfullcite] = ACTIONS(4901), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4901), + [anon_sym_BSLASHcitealt] = ACTIONS(4901), + [anon_sym_BSLASHcitealp] = ACTIONS(4901), + [anon_sym_BSLASHcitetext] = ACTIONS(4901), + [anon_sym_BSLASHparencite] = ACTIONS(4901), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHParencite] = ACTIONS(4901), + [anon_sym_BSLASHfootcite] = ACTIONS(4901), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4901), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4901), + [anon_sym_BSLASHtextcite] = ACTIONS(4901), + [anon_sym_BSLASHTextcite] = ACTIONS(4901), + [anon_sym_BSLASHsmartcite] = ACTIONS(4901), + [anon_sym_BSLASHSmartcite] = ACTIONS(4901), + [anon_sym_BSLASHsupercite] = ACTIONS(4901), + [anon_sym_BSLASHautocite] = ACTIONS(4901), + [anon_sym_BSLASHAutocite] = ACTIONS(4901), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4899), + [anon_sym_BSLASHvolcite] = ACTIONS(4901), + [anon_sym_BSLASHVolcite] = ACTIONS(4901), + [anon_sym_BSLASHpvolcite] = ACTIONS(4901), + [anon_sym_BSLASHPvolcite] = ACTIONS(4901), + [anon_sym_BSLASHfvolcite] = ACTIONS(4901), + [anon_sym_BSLASHftvolcite] = ACTIONS(4901), + [anon_sym_BSLASHsvolcite] = ACTIONS(4901), + [anon_sym_BSLASHSvolcite] = ACTIONS(4901), + [anon_sym_BSLASHtvolcite] = ACTIONS(4901), + [anon_sym_BSLASHTvolcite] = ACTIONS(4901), + [anon_sym_BSLASHavolcite] = ACTIONS(4901), + [anon_sym_BSLASHAvolcite] = ACTIONS(4901), + [anon_sym_BSLASHnotecite] = ACTIONS(4901), + [anon_sym_BSLASHNotecite] = ACTIONS(4901), + [anon_sym_BSLASHpnotecite] = ACTIONS(4901), + [anon_sym_BSLASHPnotecite] = ACTIONS(4901), + [anon_sym_BSLASHfnotecite] = ACTIONS(4901), + [anon_sym_BSLASHlabel] = ACTIONS(4901), + [anon_sym_BSLASHref] = ACTIONS(4901), + [anon_sym_BSLASHeqref] = ACTIONS(4901), + [anon_sym_BSLASHvref] = ACTIONS(4901), + [anon_sym_BSLASHVref] = ACTIONS(4901), + [anon_sym_BSLASHautoref] = ACTIONS(4901), + [anon_sym_BSLASHpageref] = ACTIONS(4901), + [anon_sym_BSLASHcref] = ACTIONS(4901), + [anon_sym_BSLASHCref] = ACTIONS(4901), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnameCref] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4901), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4901), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4901), + [anon_sym_BSLASHlabelcref] = ACTIONS(4901), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange] = ACTIONS(4901), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHCrefrange] = ACTIONS(4901), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4899), + [anon_sym_BSLASHnewlabel] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand] = ACTIONS(4901), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4901), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4901), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4899), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4901), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4899), + [anon_sym_BSLASHdef] = ACTIONS(4901), + [anon_sym_BSLASHlet] = ACTIONS(4901), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4901), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4901), + [anon_sym_BSLASHgls] = ACTIONS(4901), + [anon_sym_BSLASHGls] = ACTIONS(4901), + [anon_sym_BSLASHGLS] = ACTIONS(4901), + [anon_sym_BSLASHglspl] = ACTIONS(4901), + [anon_sym_BSLASHGlspl] = ACTIONS(4901), + [anon_sym_BSLASHGLSpl] = ACTIONS(4901), + [anon_sym_BSLASHglsdisp] = ACTIONS(4901), + [anon_sym_BSLASHglslink] = ACTIONS(4901), + [anon_sym_BSLASHglstext] = ACTIONS(4901), + [anon_sym_BSLASHGlstext] = ACTIONS(4901), + [anon_sym_BSLASHGLStext] = ACTIONS(4901), + [anon_sym_BSLASHglsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4901), + [anon_sym_BSLASHglsplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSplural] = ACTIONS(4901), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4901), + [anon_sym_BSLASHglsname] = ACTIONS(4901), + [anon_sym_BSLASHGlsname] = ACTIONS(4901), + [anon_sym_BSLASHGLSname] = ACTIONS(4901), + [anon_sym_BSLASHglssymbol] = ACTIONS(4901), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4901), + [anon_sym_BSLASHglsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4901), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4901), + [anon_sym_BSLASHglsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4901), + [anon_sym_BSLASHglsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4901), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4901), + [anon_sym_BSLASHglsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4901), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4901), + [anon_sym_BSLASHglsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4901), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4901), + [anon_sym_BSLASHnewacronym] = ACTIONS(4901), + [anon_sym_BSLASHacrshort] = ACTIONS(4901), + [anon_sym_BSLASHAcrshort] = ACTIONS(4901), + [anon_sym_BSLASHACRshort] = ACTIONS(4901), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4901), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4901), + [anon_sym_BSLASHacrlong] = ACTIONS(4901), + [anon_sym_BSLASHAcrlong] = ACTIONS(4901), + [anon_sym_BSLASHACRlong] = ACTIONS(4901), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4901), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4901), + [anon_sym_BSLASHacrfull] = ACTIONS(4901), + [anon_sym_BSLASHAcrfull] = ACTIONS(4901), + [anon_sym_BSLASHACRfull] = ACTIONS(4901), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4901), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4901), + [anon_sym_BSLASHacs] = ACTIONS(4901), + [anon_sym_BSLASHAcs] = ACTIONS(4901), + [anon_sym_BSLASHacsp] = ACTIONS(4901), + [anon_sym_BSLASHAcsp] = ACTIONS(4901), + [anon_sym_BSLASHacl] = ACTIONS(4901), + [anon_sym_BSLASHAcl] = ACTIONS(4901), + [anon_sym_BSLASHaclp] = ACTIONS(4901), + [anon_sym_BSLASHAclp] = ACTIONS(4901), + [anon_sym_BSLASHacf] = ACTIONS(4901), + [anon_sym_BSLASHAcf] = ACTIONS(4901), + [anon_sym_BSLASHacfp] = ACTIONS(4901), + [anon_sym_BSLASHAcfp] = ACTIONS(4901), + [anon_sym_BSLASHac] = ACTIONS(4901), + [anon_sym_BSLASHAc] = ACTIONS(4901), + [anon_sym_BSLASHacp] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4901), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4901), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4901), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4901), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4901), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4901), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4901), + [anon_sym_BSLASHcolor] = ACTIONS(4901), + [anon_sym_BSLASHcolorbox] = ACTIONS(4901), + [anon_sym_BSLASHtextcolor] = ACTIONS(4901), + [anon_sym_BSLASHpagecolor] = ACTIONS(4901), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4901), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4901), + }, + [1523] = { + [sym_command_name] = ACTIONS(4897), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4897), + [anon_sym_RBRACK] = ACTIONS(4895), + [anon_sym_COMMA] = ACTIONS(4895), + [anon_sym_EQ] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [sym_word] = ACTIONS(4897), + [sym_placeholder] = ACTIONS(4895), + [anon_sym_PLUS] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_STAR] = ACTIONS(4897), + [anon_sym_SLASH] = ACTIONS(4897), + [anon_sym_CARET] = ACTIONS(4897), + [anon_sym__] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_BANG] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_COLON] = ACTIONS(4897), + [anon_sym_SQUOTE] = ACTIONS(4897), + [anon_sym_BSLASHusepackage] = ACTIONS(4897), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4897), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4897), + [anon_sym_BSLASHinclude] = ACTIONS(4897), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4897), + [anon_sym_BSLASHinput] = ACTIONS(4897), + [anon_sym_BSLASHsubfile] = ACTIONS(4897), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4897), + [anon_sym_BSLASHbibliography] = ACTIONS(4897), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4897), + [anon_sym_BSLASHincludesvg] = ACTIONS(4897), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4897), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4897), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4897), + [anon_sym_BSLASHimport] = ACTIONS(4897), + [anon_sym_BSLASHsubimport] = ACTIONS(4897), + [anon_sym_BSLASHinputfrom] = ACTIONS(4897), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4897), + [anon_sym_BSLASHincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4897), + [anon_sym_BSLASHcaption] = ACTIONS(4897), + [anon_sym_BSLASHcite] = ACTIONS(4897), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCite] = ACTIONS(4897), + [anon_sym_BSLASHnocite] = ACTIONS(4897), + [anon_sym_BSLASHcitet] = ACTIONS(4897), + [anon_sym_BSLASHcitep] = ACTIONS(4897), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteauthor] = ACTIONS(4897), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4897), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitetitle] = ACTIONS(4897), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteyear] = ACTIONS(4897), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4895), + [anon_sym_BSLASHcitedate] = ACTIONS(4897), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4895), + [anon_sym_BSLASHciteurl] = ACTIONS(4897), + [anon_sym_BSLASHfullcite] = ACTIONS(4897), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4897), + [anon_sym_BSLASHcitealt] = ACTIONS(4897), + [anon_sym_BSLASHcitealp] = ACTIONS(4897), + [anon_sym_BSLASHcitetext] = ACTIONS(4897), + [anon_sym_BSLASHparencite] = ACTIONS(4897), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHParencite] = ACTIONS(4897), + [anon_sym_BSLASHfootcite] = ACTIONS(4897), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4897), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4897), + [anon_sym_BSLASHtextcite] = ACTIONS(4897), + [anon_sym_BSLASHTextcite] = ACTIONS(4897), + [anon_sym_BSLASHsmartcite] = ACTIONS(4897), + [anon_sym_BSLASHSmartcite] = ACTIONS(4897), + [anon_sym_BSLASHsupercite] = ACTIONS(4897), + [anon_sym_BSLASHautocite] = ACTIONS(4897), + [anon_sym_BSLASHAutocite] = ACTIONS(4897), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4895), + [anon_sym_BSLASHvolcite] = ACTIONS(4897), + [anon_sym_BSLASHVolcite] = ACTIONS(4897), + [anon_sym_BSLASHpvolcite] = ACTIONS(4897), + [anon_sym_BSLASHPvolcite] = ACTIONS(4897), + [anon_sym_BSLASHfvolcite] = ACTIONS(4897), + [anon_sym_BSLASHftvolcite] = ACTIONS(4897), + [anon_sym_BSLASHsvolcite] = ACTIONS(4897), + [anon_sym_BSLASHSvolcite] = ACTIONS(4897), + [anon_sym_BSLASHtvolcite] = ACTIONS(4897), + [anon_sym_BSLASHTvolcite] = ACTIONS(4897), + [anon_sym_BSLASHavolcite] = ACTIONS(4897), + [anon_sym_BSLASHAvolcite] = ACTIONS(4897), + [anon_sym_BSLASHnotecite] = ACTIONS(4897), + [anon_sym_BSLASHNotecite] = ACTIONS(4897), + [anon_sym_BSLASHpnotecite] = ACTIONS(4897), + [anon_sym_BSLASHPnotecite] = ACTIONS(4897), + [anon_sym_BSLASHfnotecite] = ACTIONS(4897), + [anon_sym_BSLASHlabel] = ACTIONS(4897), + [anon_sym_BSLASHref] = ACTIONS(4897), + [anon_sym_BSLASHeqref] = ACTIONS(4897), + [anon_sym_BSLASHvref] = ACTIONS(4897), + [anon_sym_BSLASHVref] = ACTIONS(4897), + [anon_sym_BSLASHautoref] = ACTIONS(4897), + [anon_sym_BSLASHpageref] = ACTIONS(4897), + [anon_sym_BSLASHcref] = ACTIONS(4897), + [anon_sym_BSLASHCref] = ACTIONS(4897), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnameCref] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4897), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4897), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4897), + [anon_sym_BSLASHlabelcref] = ACTIONS(4897), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange] = ACTIONS(4897), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHCrefrange] = ACTIONS(4897), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4895), + [anon_sym_BSLASHnewlabel] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand] = ACTIONS(4897), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4897), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4897), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4895), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4897), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4895), + [anon_sym_BSLASHdef] = ACTIONS(4897), + [anon_sym_BSLASHlet] = ACTIONS(4897), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4897), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4897), + [anon_sym_BSLASHgls] = ACTIONS(4897), + [anon_sym_BSLASHGls] = ACTIONS(4897), + [anon_sym_BSLASHGLS] = ACTIONS(4897), + [anon_sym_BSLASHglspl] = ACTIONS(4897), + [anon_sym_BSLASHGlspl] = ACTIONS(4897), + [anon_sym_BSLASHGLSpl] = ACTIONS(4897), + [anon_sym_BSLASHglsdisp] = ACTIONS(4897), + [anon_sym_BSLASHglslink] = ACTIONS(4897), + [anon_sym_BSLASHglstext] = ACTIONS(4897), + [anon_sym_BSLASHGlstext] = ACTIONS(4897), + [anon_sym_BSLASHGLStext] = ACTIONS(4897), + [anon_sym_BSLASHglsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4897), + [anon_sym_BSLASHglsplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSplural] = ACTIONS(4897), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4897), + [anon_sym_BSLASHglsname] = ACTIONS(4897), + [anon_sym_BSLASHGlsname] = ACTIONS(4897), + [anon_sym_BSLASHGLSname] = ACTIONS(4897), + [anon_sym_BSLASHglssymbol] = ACTIONS(4897), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4897), + [anon_sym_BSLASHglsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4897), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4897), + [anon_sym_BSLASHglsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4897), + [anon_sym_BSLASHglsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4897), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4897), + [anon_sym_BSLASHglsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4897), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4897), + [anon_sym_BSLASHglsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4897), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4897), + [anon_sym_BSLASHnewacronym] = ACTIONS(4897), + [anon_sym_BSLASHacrshort] = ACTIONS(4897), + [anon_sym_BSLASHAcrshort] = ACTIONS(4897), + [anon_sym_BSLASHACRshort] = ACTIONS(4897), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4897), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4897), + [anon_sym_BSLASHacrlong] = ACTIONS(4897), + [anon_sym_BSLASHAcrlong] = ACTIONS(4897), + [anon_sym_BSLASHACRlong] = ACTIONS(4897), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4897), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4897), + [anon_sym_BSLASHacrfull] = ACTIONS(4897), + [anon_sym_BSLASHAcrfull] = ACTIONS(4897), + [anon_sym_BSLASHACRfull] = ACTIONS(4897), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4897), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4897), + [anon_sym_BSLASHacs] = ACTIONS(4897), + [anon_sym_BSLASHAcs] = ACTIONS(4897), + [anon_sym_BSLASHacsp] = ACTIONS(4897), + [anon_sym_BSLASHAcsp] = ACTIONS(4897), + [anon_sym_BSLASHacl] = ACTIONS(4897), + [anon_sym_BSLASHAcl] = ACTIONS(4897), + [anon_sym_BSLASHaclp] = ACTIONS(4897), + [anon_sym_BSLASHAclp] = ACTIONS(4897), + [anon_sym_BSLASHacf] = ACTIONS(4897), + [anon_sym_BSLASHAcf] = ACTIONS(4897), + [anon_sym_BSLASHacfp] = ACTIONS(4897), + [anon_sym_BSLASHAcfp] = ACTIONS(4897), + [anon_sym_BSLASHac] = ACTIONS(4897), + [anon_sym_BSLASHAc] = ACTIONS(4897), + [anon_sym_BSLASHacp] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4897), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4897), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4897), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4897), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4897), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4897), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4897), + [anon_sym_BSLASHcolor] = ACTIONS(4897), + [anon_sym_BSLASHcolorbox] = ACTIONS(4897), + [anon_sym_BSLASHtextcolor] = ACTIONS(4897), + [anon_sym_BSLASHpagecolor] = ACTIONS(4897), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4897), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4897), + }, + [1524] = { + [sym_command_name] = ACTIONS(5221), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4975), - [anon_sym_RBRACK] = ACTIONS(4973), - [anon_sym_COMMA] = ACTIONS(4973), - [anon_sym_EQ] = ACTIONS(4973), - [anon_sym_RBRACE] = ACTIONS(4973), - [sym_word] = ACTIONS(4975), - [sym_placeholder] = ACTIONS(4973), - [anon_sym_PLUS] = ACTIONS(4975), - [anon_sym_DASH] = ACTIONS(4975), - [anon_sym_STAR] = ACTIONS(4975), - [anon_sym_SLASH] = ACTIONS(4975), - [anon_sym_CARET] = ACTIONS(4975), - [anon_sym__] = ACTIONS(4975), - [anon_sym_LT] = ACTIONS(4975), - [anon_sym_GT] = ACTIONS(4975), - [anon_sym_BANG] = ACTIONS(4975), - [anon_sym_PIPE] = ACTIONS(4975), - [anon_sym_COLON] = ACTIONS(4975), - [anon_sym_SQUOTE] = ACTIONS(4975), - [anon_sym_BSLASHusepackage] = ACTIONS(4975), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4975), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4975), - [anon_sym_BSLASHinclude] = ACTIONS(4975), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4975), - [anon_sym_BSLASHinput] = ACTIONS(4975), - [anon_sym_BSLASHsubfile] = ACTIONS(4975), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4975), - [anon_sym_BSLASHbibliography] = ACTIONS(4975), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4975), - [anon_sym_BSLASHincludesvg] = ACTIONS(4975), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4975), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4975), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4975), - [anon_sym_BSLASHimport] = ACTIONS(4975), - [anon_sym_BSLASHsubimport] = ACTIONS(4975), - [anon_sym_BSLASHinputfrom] = ACTIONS(4975), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4975), - [anon_sym_BSLASHincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4975), - [anon_sym_BSLASHcaption] = ACTIONS(4975), - [anon_sym_BSLASHcite] = ACTIONS(4975), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCite] = ACTIONS(4975), - [anon_sym_BSLASHnocite] = ACTIONS(4975), - [anon_sym_BSLASHcitet] = ACTIONS(4975), - [anon_sym_BSLASHcitep] = ACTIONS(4975), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteauthor] = ACTIONS(4975), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4975), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitetitle] = ACTIONS(4975), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteyear] = ACTIONS(4975), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4973), - [anon_sym_BSLASHcitedate] = ACTIONS(4975), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4973), - [anon_sym_BSLASHciteurl] = ACTIONS(4975), - [anon_sym_BSLASHfullcite] = ACTIONS(4975), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4975), - [anon_sym_BSLASHcitealt] = ACTIONS(4975), - [anon_sym_BSLASHcitealp] = ACTIONS(4975), - [anon_sym_BSLASHcitetext] = ACTIONS(4975), - [anon_sym_BSLASHparencite] = ACTIONS(4975), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHParencite] = ACTIONS(4975), - [anon_sym_BSLASHfootcite] = ACTIONS(4975), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4975), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4975), - [anon_sym_BSLASHtextcite] = ACTIONS(4975), - [anon_sym_BSLASHTextcite] = ACTIONS(4975), - [anon_sym_BSLASHsmartcite] = ACTIONS(4975), - [anon_sym_BSLASHSmartcite] = ACTIONS(4975), - [anon_sym_BSLASHsupercite] = ACTIONS(4975), - [anon_sym_BSLASHautocite] = ACTIONS(4975), - [anon_sym_BSLASHAutocite] = ACTIONS(4975), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4973), - [anon_sym_BSLASHvolcite] = ACTIONS(4975), - [anon_sym_BSLASHVolcite] = ACTIONS(4975), - [anon_sym_BSLASHpvolcite] = ACTIONS(4975), - [anon_sym_BSLASHPvolcite] = ACTIONS(4975), - [anon_sym_BSLASHfvolcite] = ACTIONS(4975), - [anon_sym_BSLASHftvolcite] = ACTIONS(4975), - [anon_sym_BSLASHsvolcite] = ACTIONS(4975), - [anon_sym_BSLASHSvolcite] = ACTIONS(4975), - [anon_sym_BSLASHtvolcite] = ACTIONS(4975), - [anon_sym_BSLASHTvolcite] = ACTIONS(4975), - [anon_sym_BSLASHavolcite] = ACTIONS(4975), - [anon_sym_BSLASHAvolcite] = ACTIONS(4975), - [anon_sym_BSLASHnotecite] = ACTIONS(4975), - [anon_sym_BSLASHNotecite] = ACTIONS(4975), - [anon_sym_BSLASHpnotecite] = ACTIONS(4975), - [anon_sym_BSLASHPnotecite] = ACTIONS(4975), - [anon_sym_BSLASHfnotecite] = ACTIONS(4975), - [anon_sym_BSLASHlabel] = ACTIONS(4975), - [anon_sym_BSLASHref] = ACTIONS(4975), - [anon_sym_BSLASHeqref] = ACTIONS(4975), - [anon_sym_BSLASHvref] = ACTIONS(4975), - [anon_sym_BSLASHVref] = ACTIONS(4975), - [anon_sym_BSLASHautoref] = ACTIONS(4975), - [anon_sym_BSLASHpageref] = ACTIONS(4975), - [anon_sym_BSLASHcref] = ACTIONS(4975), - [anon_sym_BSLASHCref] = ACTIONS(4975), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnameCref] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4975), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4975), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4975), - [anon_sym_BSLASHlabelcref] = ACTIONS(4975), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange] = ACTIONS(4975), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHCrefrange] = ACTIONS(4975), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4973), - [anon_sym_BSLASHnewlabel] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand] = ACTIONS(4975), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4975), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4975), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4973), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4975), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4973), - [anon_sym_BSLASHdef] = ACTIONS(4975), - [anon_sym_BSLASHlet] = ACTIONS(4975), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4975), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4975), - [anon_sym_BSLASHgls] = ACTIONS(4975), - [anon_sym_BSLASHGls] = ACTIONS(4975), - [anon_sym_BSLASHGLS] = ACTIONS(4975), - [anon_sym_BSLASHglspl] = ACTIONS(4975), - [anon_sym_BSLASHGlspl] = ACTIONS(4975), - [anon_sym_BSLASHGLSpl] = ACTIONS(4975), - [anon_sym_BSLASHglsdisp] = ACTIONS(4975), - [anon_sym_BSLASHglslink] = ACTIONS(4975), - [anon_sym_BSLASHglstext] = ACTIONS(4975), - [anon_sym_BSLASHGlstext] = ACTIONS(4975), - [anon_sym_BSLASHGLStext] = ACTIONS(4975), - [anon_sym_BSLASHglsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4975), - [anon_sym_BSLASHglsplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSplural] = ACTIONS(4975), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4975), - [anon_sym_BSLASHglsname] = ACTIONS(4975), - [anon_sym_BSLASHGlsname] = ACTIONS(4975), - [anon_sym_BSLASHGLSname] = ACTIONS(4975), - [anon_sym_BSLASHglssymbol] = ACTIONS(4975), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4975), - [anon_sym_BSLASHglsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4975), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4975), - [anon_sym_BSLASHglsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4975), - [anon_sym_BSLASHglsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4975), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4975), - [anon_sym_BSLASHglsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4975), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4975), - [anon_sym_BSLASHglsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4975), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4975), - [anon_sym_BSLASHnewacronym] = ACTIONS(4975), - [anon_sym_BSLASHacrshort] = ACTIONS(4975), - [anon_sym_BSLASHAcrshort] = ACTIONS(4975), - [anon_sym_BSLASHACRshort] = ACTIONS(4975), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4975), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4975), - [anon_sym_BSLASHacrlong] = ACTIONS(4975), - [anon_sym_BSLASHAcrlong] = ACTIONS(4975), - [anon_sym_BSLASHACRlong] = ACTIONS(4975), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4975), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4975), - [anon_sym_BSLASHacrfull] = ACTIONS(4975), - [anon_sym_BSLASHAcrfull] = ACTIONS(4975), - [anon_sym_BSLASHACRfull] = ACTIONS(4975), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4975), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4975), - [anon_sym_BSLASHacs] = ACTIONS(4975), - [anon_sym_BSLASHAcs] = ACTIONS(4975), - [anon_sym_BSLASHacsp] = ACTIONS(4975), - [anon_sym_BSLASHAcsp] = ACTIONS(4975), - [anon_sym_BSLASHacl] = ACTIONS(4975), - [anon_sym_BSLASHAcl] = ACTIONS(4975), - [anon_sym_BSLASHaclp] = ACTIONS(4975), - [anon_sym_BSLASHAclp] = ACTIONS(4975), - [anon_sym_BSLASHacf] = ACTIONS(4975), - [anon_sym_BSLASHAcf] = ACTIONS(4975), - [anon_sym_BSLASHacfp] = ACTIONS(4975), - [anon_sym_BSLASHAcfp] = ACTIONS(4975), - [anon_sym_BSLASHac] = ACTIONS(4975), - [anon_sym_BSLASHAc] = ACTIONS(4975), - [anon_sym_BSLASHacp] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4975), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4975), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4975), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4975), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4975), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4975), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4975), - [anon_sym_BSLASHcolor] = ACTIONS(4975), - [anon_sym_BSLASHcolorbox] = ACTIONS(4975), - [anon_sym_BSLASHtextcolor] = ACTIONS(4975), - [anon_sym_BSLASHpagecolor] = ACTIONS(4975), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4975), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4975), + [anon_sym_BSLASHiffalse] = ACTIONS(5221), + [anon_sym_RBRACK] = ACTIONS(5219), + [anon_sym_COMMA] = ACTIONS(5219), + [anon_sym_EQ] = ACTIONS(5219), + [anon_sym_RBRACE] = ACTIONS(5219), + [sym_word] = ACTIONS(5221), + [sym_placeholder] = ACTIONS(5219), + [anon_sym_PLUS] = ACTIONS(5221), + [anon_sym_DASH] = ACTIONS(5221), + [anon_sym_STAR] = ACTIONS(5221), + [anon_sym_SLASH] = ACTIONS(5221), + [anon_sym_CARET] = ACTIONS(5221), + [anon_sym__] = ACTIONS(5221), + [anon_sym_LT] = ACTIONS(5221), + [anon_sym_GT] = ACTIONS(5221), + [anon_sym_BANG] = ACTIONS(5221), + [anon_sym_PIPE] = ACTIONS(5221), + [anon_sym_COLON] = ACTIONS(5221), + [anon_sym_SQUOTE] = ACTIONS(5221), + [anon_sym_BSLASHusepackage] = ACTIONS(5221), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5221), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5221), + [anon_sym_BSLASHinclude] = ACTIONS(5221), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5221), + [anon_sym_BSLASHinput] = ACTIONS(5221), + [anon_sym_BSLASHsubfile] = ACTIONS(5221), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5221), + [anon_sym_BSLASHbibliography] = ACTIONS(5221), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5221), + [anon_sym_BSLASHincludesvg] = ACTIONS(5221), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5221), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5221), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5221), + [anon_sym_BSLASHimport] = ACTIONS(5221), + [anon_sym_BSLASHsubimport] = ACTIONS(5221), + [anon_sym_BSLASHinputfrom] = ACTIONS(5221), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5221), + [anon_sym_BSLASHincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5221), + [anon_sym_BSLASHcaption] = ACTIONS(5221), + [anon_sym_BSLASHcite] = ACTIONS(5221), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCite] = ACTIONS(5221), + [anon_sym_BSLASHnocite] = ACTIONS(5221), + [anon_sym_BSLASHcitet] = ACTIONS(5221), + [anon_sym_BSLASHcitep] = ACTIONS(5221), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteauthor] = ACTIONS(5221), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5221), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitetitle] = ACTIONS(5221), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteyear] = ACTIONS(5221), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5219), + [anon_sym_BSLASHcitedate] = ACTIONS(5221), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5219), + [anon_sym_BSLASHciteurl] = ACTIONS(5221), + [anon_sym_BSLASHfullcite] = ACTIONS(5221), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5221), + [anon_sym_BSLASHcitealt] = ACTIONS(5221), + [anon_sym_BSLASHcitealp] = ACTIONS(5221), + [anon_sym_BSLASHcitetext] = ACTIONS(5221), + [anon_sym_BSLASHparencite] = ACTIONS(5221), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHParencite] = ACTIONS(5221), + [anon_sym_BSLASHfootcite] = ACTIONS(5221), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5221), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5221), + [anon_sym_BSLASHtextcite] = ACTIONS(5221), + [anon_sym_BSLASHTextcite] = ACTIONS(5221), + [anon_sym_BSLASHsmartcite] = ACTIONS(5221), + [anon_sym_BSLASHSmartcite] = ACTIONS(5221), + [anon_sym_BSLASHsupercite] = ACTIONS(5221), + [anon_sym_BSLASHautocite] = ACTIONS(5221), + [anon_sym_BSLASHAutocite] = ACTIONS(5221), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5219), + [anon_sym_BSLASHvolcite] = ACTIONS(5221), + [anon_sym_BSLASHVolcite] = ACTIONS(5221), + [anon_sym_BSLASHpvolcite] = ACTIONS(5221), + [anon_sym_BSLASHPvolcite] = ACTIONS(5221), + [anon_sym_BSLASHfvolcite] = ACTIONS(5221), + [anon_sym_BSLASHftvolcite] = ACTIONS(5221), + [anon_sym_BSLASHsvolcite] = ACTIONS(5221), + [anon_sym_BSLASHSvolcite] = ACTIONS(5221), + [anon_sym_BSLASHtvolcite] = ACTIONS(5221), + [anon_sym_BSLASHTvolcite] = ACTIONS(5221), + [anon_sym_BSLASHavolcite] = ACTIONS(5221), + [anon_sym_BSLASHAvolcite] = ACTIONS(5221), + [anon_sym_BSLASHnotecite] = ACTIONS(5221), + [anon_sym_BSLASHNotecite] = ACTIONS(5221), + [anon_sym_BSLASHpnotecite] = ACTIONS(5221), + [anon_sym_BSLASHPnotecite] = ACTIONS(5221), + [anon_sym_BSLASHfnotecite] = ACTIONS(5221), + [anon_sym_BSLASHlabel] = ACTIONS(5221), + [anon_sym_BSLASHref] = ACTIONS(5221), + [anon_sym_BSLASHeqref] = ACTIONS(5221), + [anon_sym_BSLASHvref] = ACTIONS(5221), + [anon_sym_BSLASHVref] = ACTIONS(5221), + [anon_sym_BSLASHautoref] = ACTIONS(5221), + [anon_sym_BSLASHpageref] = ACTIONS(5221), + [anon_sym_BSLASHcref] = ACTIONS(5221), + [anon_sym_BSLASHCref] = ACTIONS(5221), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnameCref] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5221), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5221), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5221), + [anon_sym_BSLASHlabelcref] = ACTIONS(5221), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange] = ACTIONS(5221), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHCrefrange] = ACTIONS(5221), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5219), + [anon_sym_BSLASHnewlabel] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand] = ACTIONS(5221), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5221), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5221), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5219), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5221), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5219), + [anon_sym_BSLASHdef] = ACTIONS(5221), + [anon_sym_BSLASHlet] = ACTIONS(5221), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5221), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5221), + [anon_sym_BSLASHgls] = ACTIONS(5221), + [anon_sym_BSLASHGls] = ACTIONS(5221), + [anon_sym_BSLASHGLS] = ACTIONS(5221), + [anon_sym_BSLASHglspl] = ACTIONS(5221), + [anon_sym_BSLASHGlspl] = ACTIONS(5221), + [anon_sym_BSLASHGLSpl] = ACTIONS(5221), + [anon_sym_BSLASHglsdisp] = ACTIONS(5221), + [anon_sym_BSLASHglslink] = ACTIONS(5221), + [anon_sym_BSLASHglstext] = ACTIONS(5221), + [anon_sym_BSLASHGlstext] = ACTIONS(5221), + [anon_sym_BSLASHGLStext] = ACTIONS(5221), + [anon_sym_BSLASHglsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5221), + [anon_sym_BSLASHglsplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSplural] = ACTIONS(5221), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5221), + [anon_sym_BSLASHglsname] = ACTIONS(5221), + [anon_sym_BSLASHGlsname] = ACTIONS(5221), + [anon_sym_BSLASHGLSname] = ACTIONS(5221), + [anon_sym_BSLASHglssymbol] = ACTIONS(5221), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5221), + [anon_sym_BSLASHglsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5221), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5221), + [anon_sym_BSLASHglsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5221), + [anon_sym_BSLASHglsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5221), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5221), + [anon_sym_BSLASHglsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5221), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5221), + [anon_sym_BSLASHglsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5221), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5221), + [anon_sym_BSLASHnewacronym] = ACTIONS(5221), + [anon_sym_BSLASHacrshort] = ACTIONS(5221), + [anon_sym_BSLASHAcrshort] = ACTIONS(5221), + [anon_sym_BSLASHACRshort] = ACTIONS(5221), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5221), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5221), + [anon_sym_BSLASHacrlong] = ACTIONS(5221), + [anon_sym_BSLASHAcrlong] = ACTIONS(5221), + [anon_sym_BSLASHACRlong] = ACTIONS(5221), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5221), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5221), + [anon_sym_BSLASHacrfull] = ACTIONS(5221), + [anon_sym_BSLASHAcrfull] = ACTIONS(5221), + [anon_sym_BSLASHACRfull] = ACTIONS(5221), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5221), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5221), + [anon_sym_BSLASHacs] = ACTIONS(5221), + [anon_sym_BSLASHAcs] = ACTIONS(5221), + [anon_sym_BSLASHacsp] = ACTIONS(5221), + [anon_sym_BSLASHAcsp] = ACTIONS(5221), + [anon_sym_BSLASHacl] = ACTIONS(5221), + [anon_sym_BSLASHAcl] = ACTIONS(5221), + [anon_sym_BSLASHaclp] = ACTIONS(5221), + [anon_sym_BSLASHAclp] = ACTIONS(5221), + [anon_sym_BSLASHacf] = ACTIONS(5221), + [anon_sym_BSLASHAcf] = ACTIONS(5221), + [anon_sym_BSLASHacfp] = ACTIONS(5221), + [anon_sym_BSLASHAcfp] = ACTIONS(5221), + [anon_sym_BSLASHac] = ACTIONS(5221), + [anon_sym_BSLASHAc] = ACTIONS(5221), + [anon_sym_BSLASHacp] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5221), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5221), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5221), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5221), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5221), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5221), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5221), + [anon_sym_BSLASHcolor] = ACTIONS(5221), + [anon_sym_BSLASHcolorbox] = ACTIONS(5221), + [anon_sym_BSLASHtextcolor] = ACTIONS(5221), + [anon_sym_BSLASHpagecolor] = ACTIONS(5221), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5221), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5221), }, - [1538] = { - [sym_command_name] = ACTIONS(5081), + [1525] = { + [sym_command_name] = ACTIONS(5305), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5081), - [anon_sym_RBRACK] = ACTIONS(5079), - [anon_sym_COMMA] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_RBRACE] = ACTIONS(5079), - [sym_word] = ACTIONS(5081), - [sym_placeholder] = ACTIONS(5079), - [anon_sym_PLUS] = ACTIONS(5081), - [anon_sym_DASH] = ACTIONS(5081), - [anon_sym_STAR] = ACTIONS(5081), - [anon_sym_SLASH] = ACTIONS(5081), - [anon_sym_CARET] = ACTIONS(5081), - [anon_sym__] = ACTIONS(5081), - [anon_sym_LT] = ACTIONS(5081), - [anon_sym_GT] = ACTIONS(5081), - [anon_sym_BANG] = ACTIONS(5081), - [anon_sym_PIPE] = ACTIONS(5081), - [anon_sym_COLON] = ACTIONS(5081), - [anon_sym_SQUOTE] = ACTIONS(5081), - [anon_sym_BSLASHusepackage] = ACTIONS(5081), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5081), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5081), - [anon_sym_BSLASHinclude] = ACTIONS(5081), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5081), - [anon_sym_BSLASHinput] = ACTIONS(5081), - [anon_sym_BSLASHsubfile] = ACTIONS(5081), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5081), - [anon_sym_BSLASHbibliography] = ACTIONS(5081), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5081), - [anon_sym_BSLASHincludesvg] = ACTIONS(5081), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5081), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5081), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5081), - [anon_sym_BSLASHimport] = ACTIONS(5081), - [anon_sym_BSLASHsubimport] = ACTIONS(5081), - [anon_sym_BSLASHinputfrom] = ACTIONS(5081), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5081), - [anon_sym_BSLASHincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5081), - [anon_sym_BSLASHcaption] = ACTIONS(5081), - [anon_sym_BSLASHcite] = ACTIONS(5081), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCite] = ACTIONS(5081), - [anon_sym_BSLASHnocite] = ACTIONS(5081), - [anon_sym_BSLASHcitet] = ACTIONS(5081), - [anon_sym_BSLASHcitep] = ACTIONS(5081), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteauthor] = ACTIONS(5081), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5081), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitetitle] = ACTIONS(5081), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteyear] = ACTIONS(5081), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5079), - [anon_sym_BSLASHcitedate] = ACTIONS(5081), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5079), - [anon_sym_BSLASHciteurl] = ACTIONS(5081), - [anon_sym_BSLASHfullcite] = ACTIONS(5081), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5081), - [anon_sym_BSLASHcitealt] = ACTIONS(5081), - [anon_sym_BSLASHcitealp] = ACTIONS(5081), - [anon_sym_BSLASHcitetext] = ACTIONS(5081), - [anon_sym_BSLASHparencite] = ACTIONS(5081), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHParencite] = ACTIONS(5081), - [anon_sym_BSLASHfootcite] = ACTIONS(5081), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5081), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5081), - [anon_sym_BSLASHtextcite] = ACTIONS(5081), - [anon_sym_BSLASHTextcite] = ACTIONS(5081), - [anon_sym_BSLASHsmartcite] = ACTIONS(5081), - [anon_sym_BSLASHSmartcite] = ACTIONS(5081), - [anon_sym_BSLASHsupercite] = ACTIONS(5081), - [anon_sym_BSLASHautocite] = ACTIONS(5081), - [anon_sym_BSLASHAutocite] = ACTIONS(5081), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5079), - [anon_sym_BSLASHvolcite] = ACTIONS(5081), - [anon_sym_BSLASHVolcite] = ACTIONS(5081), - [anon_sym_BSLASHpvolcite] = ACTIONS(5081), - [anon_sym_BSLASHPvolcite] = ACTIONS(5081), - [anon_sym_BSLASHfvolcite] = ACTIONS(5081), - [anon_sym_BSLASHftvolcite] = ACTIONS(5081), - [anon_sym_BSLASHsvolcite] = ACTIONS(5081), - [anon_sym_BSLASHSvolcite] = ACTIONS(5081), - [anon_sym_BSLASHtvolcite] = ACTIONS(5081), - [anon_sym_BSLASHTvolcite] = ACTIONS(5081), - [anon_sym_BSLASHavolcite] = ACTIONS(5081), - [anon_sym_BSLASHAvolcite] = ACTIONS(5081), - [anon_sym_BSLASHnotecite] = ACTIONS(5081), - [anon_sym_BSLASHNotecite] = ACTIONS(5081), - [anon_sym_BSLASHpnotecite] = ACTIONS(5081), - [anon_sym_BSLASHPnotecite] = ACTIONS(5081), - [anon_sym_BSLASHfnotecite] = ACTIONS(5081), - [anon_sym_BSLASHlabel] = ACTIONS(5081), - [anon_sym_BSLASHref] = ACTIONS(5081), - [anon_sym_BSLASHeqref] = ACTIONS(5081), - [anon_sym_BSLASHvref] = ACTIONS(5081), - [anon_sym_BSLASHVref] = ACTIONS(5081), - [anon_sym_BSLASHautoref] = ACTIONS(5081), - [anon_sym_BSLASHpageref] = ACTIONS(5081), - [anon_sym_BSLASHcref] = ACTIONS(5081), - [anon_sym_BSLASHCref] = ACTIONS(5081), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnameCref] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5081), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5081), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5081), - [anon_sym_BSLASHlabelcref] = ACTIONS(5081), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange] = ACTIONS(5081), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHCrefrange] = ACTIONS(5081), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5079), - [anon_sym_BSLASHnewlabel] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand] = ACTIONS(5081), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5081), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5081), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5079), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5081), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5079), - [anon_sym_BSLASHdef] = ACTIONS(5081), - [anon_sym_BSLASHlet] = ACTIONS(5081), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5081), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5081), - [anon_sym_BSLASHgls] = ACTIONS(5081), - [anon_sym_BSLASHGls] = ACTIONS(5081), - [anon_sym_BSLASHGLS] = ACTIONS(5081), - [anon_sym_BSLASHglspl] = ACTIONS(5081), - [anon_sym_BSLASHGlspl] = ACTIONS(5081), - [anon_sym_BSLASHGLSpl] = ACTIONS(5081), - [anon_sym_BSLASHglsdisp] = ACTIONS(5081), - [anon_sym_BSLASHglslink] = ACTIONS(5081), - [anon_sym_BSLASHglstext] = ACTIONS(5081), - [anon_sym_BSLASHGlstext] = ACTIONS(5081), - [anon_sym_BSLASHGLStext] = ACTIONS(5081), - [anon_sym_BSLASHglsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5081), - [anon_sym_BSLASHglsplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSplural] = ACTIONS(5081), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5081), - [anon_sym_BSLASHglsname] = ACTIONS(5081), - [anon_sym_BSLASHGlsname] = ACTIONS(5081), - [anon_sym_BSLASHGLSname] = ACTIONS(5081), - [anon_sym_BSLASHglssymbol] = ACTIONS(5081), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5081), - [anon_sym_BSLASHglsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5081), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5081), - [anon_sym_BSLASHglsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5081), - [anon_sym_BSLASHglsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5081), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5081), - [anon_sym_BSLASHglsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5081), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5081), - [anon_sym_BSLASHglsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5081), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5081), - [anon_sym_BSLASHnewacronym] = ACTIONS(5081), - [anon_sym_BSLASHacrshort] = ACTIONS(5081), - [anon_sym_BSLASHAcrshort] = ACTIONS(5081), - [anon_sym_BSLASHACRshort] = ACTIONS(5081), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5081), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5081), - [anon_sym_BSLASHacrlong] = ACTIONS(5081), - [anon_sym_BSLASHAcrlong] = ACTIONS(5081), - [anon_sym_BSLASHACRlong] = ACTIONS(5081), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5081), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5081), - [anon_sym_BSLASHacrfull] = ACTIONS(5081), - [anon_sym_BSLASHAcrfull] = ACTIONS(5081), - [anon_sym_BSLASHACRfull] = ACTIONS(5081), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5081), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5081), - [anon_sym_BSLASHacs] = ACTIONS(5081), - [anon_sym_BSLASHAcs] = ACTIONS(5081), - [anon_sym_BSLASHacsp] = ACTIONS(5081), - [anon_sym_BSLASHAcsp] = ACTIONS(5081), - [anon_sym_BSLASHacl] = ACTIONS(5081), - [anon_sym_BSLASHAcl] = ACTIONS(5081), - [anon_sym_BSLASHaclp] = ACTIONS(5081), - [anon_sym_BSLASHAclp] = ACTIONS(5081), - [anon_sym_BSLASHacf] = ACTIONS(5081), - [anon_sym_BSLASHAcf] = ACTIONS(5081), - [anon_sym_BSLASHacfp] = ACTIONS(5081), - [anon_sym_BSLASHAcfp] = ACTIONS(5081), - [anon_sym_BSLASHac] = ACTIONS(5081), - [anon_sym_BSLASHAc] = ACTIONS(5081), - [anon_sym_BSLASHacp] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5081), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5081), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5081), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5081), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5081), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5081), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5081), - [anon_sym_BSLASHcolor] = ACTIONS(5081), - [anon_sym_BSLASHcolorbox] = ACTIONS(5081), - [anon_sym_BSLASHtextcolor] = ACTIONS(5081), - [anon_sym_BSLASHpagecolor] = ACTIONS(5081), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5081), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5081), + [anon_sym_BSLASHiffalse] = ACTIONS(5305), + [anon_sym_RBRACK] = ACTIONS(5303), + [anon_sym_COMMA] = ACTIONS(5303), + [anon_sym_EQ] = ACTIONS(5303), + [anon_sym_RBRACE] = ACTIONS(5303), + [sym_word] = ACTIONS(5305), + [sym_placeholder] = ACTIONS(5303), + [anon_sym_PLUS] = ACTIONS(5305), + [anon_sym_DASH] = ACTIONS(5305), + [anon_sym_STAR] = ACTIONS(5305), + [anon_sym_SLASH] = ACTIONS(5305), + [anon_sym_CARET] = ACTIONS(5305), + [anon_sym__] = ACTIONS(5305), + [anon_sym_LT] = ACTIONS(5305), + [anon_sym_GT] = ACTIONS(5305), + [anon_sym_BANG] = ACTIONS(5305), + [anon_sym_PIPE] = ACTIONS(5305), + [anon_sym_COLON] = ACTIONS(5305), + [anon_sym_SQUOTE] = ACTIONS(5305), + [anon_sym_BSLASHusepackage] = ACTIONS(5305), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), + [anon_sym_BSLASHinclude] = ACTIONS(5305), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), + [anon_sym_BSLASHinput] = ACTIONS(5305), + [anon_sym_BSLASHsubfile] = ACTIONS(5305), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), + [anon_sym_BSLASHbibliography] = ACTIONS(5305), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), + [anon_sym_BSLASHincludesvg] = ACTIONS(5305), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), + [anon_sym_BSLASHimport] = ACTIONS(5305), + [anon_sym_BSLASHsubimport] = ACTIONS(5305), + [anon_sym_BSLASHinputfrom] = ACTIONS(5305), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), + [anon_sym_BSLASHincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), + [anon_sym_BSLASHcaption] = ACTIONS(5305), + [anon_sym_BSLASHcite] = ACTIONS(5305), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCite] = ACTIONS(5305), + [anon_sym_BSLASHnocite] = ACTIONS(5305), + [anon_sym_BSLASHcitet] = ACTIONS(5305), + [anon_sym_BSLASHcitep] = ACTIONS(5305), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteauthor] = ACTIONS(5305), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitetitle] = ACTIONS(5305), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteyear] = ACTIONS(5305), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), + [anon_sym_BSLASHcitedate] = ACTIONS(5305), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), + [anon_sym_BSLASHciteurl] = ACTIONS(5305), + [anon_sym_BSLASHfullcite] = ACTIONS(5305), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), + [anon_sym_BSLASHcitealt] = ACTIONS(5305), + [anon_sym_BSLASHcitealp] = ACTIONS(5305), + [anon_sym_BSLASHcitetext] = ACTIONS(5305), + [anon_sym_BSLASHparencite] = ACTIONS(5305), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHParencite] = ACTIONS(5305), + [anon_sym_BSLASHfootcite] = ACTIONS(5305), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), + [anon_sym_BSLASHtextcite] = ACTIONS(5305), + [anon_sym_BSLASHTextcite] = ACTIONS(5305), + [anon_sym_BSLASHsmartcite] = ACTIONS(5305), + [anon_sym_BSLASHSmartcite] = ACTIONS(5305), + [anon_sym_BSLASHsupercite] = ACTIONS(5305), + [anon_sym_BSLASHautocite] = ACTIONS(5305), + [anon_sym_BSLASHAutocite] = ACTIONS(5305), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), + [anon_sym_BSLASHvolcite] = ACTIONS(5305), + [anon_sym_BSLASHVolcite] = ACTIONS(5305), + [anon_sym_BSLASHpvolcite] = ACTIONS(5305), + [anon_sym_BSLASHPvolcite] = ACTIONS(5305), + [anon_sym_BSLASHfvolcite] = ACTIONS(5305), + [anon_sym_BSLASHftvolcite] = ACTIONS(5305), + [anon_sym_BSLASHsvolcite] = ACTIONS(5305), + [anon_sym_BSLASHSvolcite] = ACTIONS(5305), + [anon_sym_BSLASHtvolcite] = ACTIONS(5305), + [anon_sym_BSLASHTvolcite] = ACTIONS(5305), + [anon_sym_BSLASHavolcite] = ACTIONS(5305), + [anon_sym_BSLASHAvolcite] = ACTIONS(5305), + [anon_sym_BSLASHnotecite] = ACTIONS(5305), + [anon_sym_BSLASHNotecite] = ACTIONS(5305), + [anon_sym_BSLASHpnotecite] = ACTIONS(5305), + [anon_sym_BSLASHPnotecite] = ACTIONS(5305), + [anon_sym_BSLASHfnotecite] = ACTIONS(5305), + [anon_sym_BSLASHlabel] = ACTIONS(5305), + [anon_sym_BSLASHref] = ACTIONS(5305), + [anon_sym_BSLASHeqref] = ACTIONS(5305), + [anon_sym_BSLASHvref] = ACTIONS(5305), + [anon_sym_BSLASHVref] = ACTIONS(5305), + [anon_sym_BSLASHautoref] = ACTIONS(5305), + [anon_sym_BSLASHpageref] = ACTIONS(5305), + [anon_sym_BSLASHcref] = ACTIONS(5305), + [anon_sym_BSLASHCref] = ACTIONS(5305), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnameCref] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), + [anon_sym_BSLASHlabelcref] = ACTIONS(5305), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange] = ACTIONS(5305), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHCrefrange] = ACTIONS(5305), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), + [anon_sym_BSLASHnewlabel] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand] = ACTIONS(5305), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), + [anon_sym_BSLASHdef] = ACTIONS(5305), + [anon_sym_BSLASHlet] = ACTIONS(5305), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), + [anon_sym_BSLASHgls] = ACTIONS(5305), + [anon_sym_BSLASHGls] = ACTIONS(5305), + [anon_sym_BSLASHGLS] = ACTIONS(5305), + [anon_sym_BSLASHglspl] = ACTIONS(5305), + [anon_sym_BSLASHGlspl] = ACTIONS(5305), + [anon_sym_BSLASHGLSpl] = ACTIONS(5305), + [anon_sym_BSLASHglsdisp] = ACTIONS(5305), + [anon_sym_BSLASHglslink] = ACTIONS(5305), + [anon_sym_BSLASHglstext] = ACTIONS(5305), + [anon_sym_BSLASHGlstext] = ACTIONS(5305), + [anon_sym_BSLASHGLStext] = ACTIONS(5305), + [anon_sym_BSLASHglsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), + [anon_sym_BSLASHglsplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSplural] = ACTIONS(5305), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), + [anon_sym_BSLASHglsname] = ACTIONS(5305), + [anon_sym_BSLASHGlsname] = ACTIONS(5305), + [anon_sym_BSLASHGLSname] = ACTIONS(5305), + [anon_sym_BSLASHglssymbol] = ACTIONS(5305), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), + [anon_sym_BSLASHglsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), + [anon_sym_BSLASHglsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), + [anon_sym_BSLASHglsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), + [anon_sym_BSLASHglsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), + [anon_sym_BSLASHglsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), + [anon_sym_BSLASHnewacronym] = ACTIONS(5305), + [anon_sym_BSLASHacrshort] = ACTIONS(5305), + [anon_sym_BSLASHAcrshort] = ACTIONS(5305), + [anon_sym_BSLASHACRshort] = ACTIONS(5305), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), + [anon_sym_BSLASHacrlong] = ACTIONS(5305), + [anon_sym_BSLASHAcrlong] = ACTIONS(5305), + [anon_sym_BSLASHACRlong] = ACTIONS(5305), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), + [anon_sym_BSLASHacrfull] = ACTIONS(5305), + [anon_sym_BSLASHAcrfull] = ACTIONS(5305), + [anon_sym_BSLASHACRfull] = ACTIONS(5305), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), + [anon_sym_BSLASHacs] = ACTIONS(5305), + [anon_sym_BSLASHAcs] = ACTIONS(5305), + [anon_sym_BSLASHacsp] = ACTIONS(5305), + [anon_sym_BSLASHAcsp] = ACTIONS(5305), + [anon_sym_BSLASHacl] = ACTIONS(5305), + [anon_sym_BSLASHAcl] = ACTIONS(5305), + [anon_sym_BSLASHaclp] = ACTIONS(5305), + [anon_sym_BSLASHAclp] = ACTIONS(5305), + [anon_sym_BSLASHacf] = ACTIONS(5305), + [anon_sym_BSLASHAcf] = ACTIONS(5305), + [anon_sym_BSLASHacfp] = ACTIONS(5305), + [anon_sym_BSLASHAcfp] = ACTIONS(5305), + [anon_sym_BSLASHac] = ACTIONS(5305), + [anon_sym_BSLASHAc] = ACTIONS(5305), + [anon_sym_BSLASHacp] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), + [anon_sym_BSLASHcolor] = ACTIONS(5305), + [anon_sym_BSLASHcolorbox] = ACTIONS(5305), + [anon_sym_BSLASHtextcolor] = ACTIONS(5305), + [anon_sym_BSLASHpagecolor] = ACTIONS(5305), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), }, - [1539] = { - [sym_command_name] = ACTIONS(5089), + [1526] = { + [sym_command_name] = ACTIONS(4963), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4963), + [anon_sym_RBRACK] = ACTIONS(4961), + [anon_sym_COMMA] = ACTIONS(4961), + [anon_sym_EQ] = ACTIONS(4961), + [anon_sym_RBRACE] = ACTIONS(4961), + [sym_word] = ACTIONS(4963), + [sym_placeholder] = ACTIONS(4961), + [anon_sym_PLUS] = ACTIONS(4963), + [anon_sym_DASH] = ACTIONS(4963), + [anon_sym_STAR] = ACTIONS(4963), + [anon_sym_SLASH] = ACTIONS(4963), + [anon_sym_CARET] = ACTIONS(4963), + [anon_sym__] = ACTIONS(4963), + [anon_sym_LT] = ACTIONS(4963), + [anon_sym_GT] = ACTIONS(4963), + [anon_sym_BANG] = ACTIONS(4963), + [anon_sym_PIPE] = ACTIONS(4963), + [anon_sym_COLON] = ACTIONS(4963), + [anon_sym_SQUOTE] = ACTIONS(4963), + [anon_sym_BSLASHusepackage] = ACTIONS(4963), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4963), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4963), + [anon_sym_BSLASHinclude] = ACTIONS(4963), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4963), + [anon_sym_BSLASHinput] = ACTIONS(4963), + [anon_sym_BSLASHsubfile] = ACTIONS(4963), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4963), + [anon_sym_BSLASHbibliography] = ACTIONS(4963), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4963), + [anon_sym_BSLASHincludesvg] = ACTIONS(4963), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4963), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4963), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4963), + [anon_sym_BSLASHimport] = ACTIONS(4963), + [anon_sym_BSLASHsubimport] = ACTIONS(4963), + [anon_sym_BSLASHinputfrom] = ACTIONS(4963), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4963), + [anon_sym_BSLASHincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4963), + [anon_sym_BSLASHcaption] = ACTIONS(4963), + [anon_sym_BSLASHcite] = ACTIONS(4963), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCite] = ACTIONS(4963), + [anon_sym_BSLASHnocite] = ACTIONS(4963), + [anon_sym_BSLASHcitet] = ACTIONS(4963), + [anon_sym_BSLASHcitep] = ACTIONS(4963), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteauthor] = ACTIONS(4963), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4963), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitetitle] = ACTIONS(4963), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteyear] = ACTIONS(4963), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4961), + [anon_sym_BSLASHcitedate] = ACTIONS(4963), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4961), + [anon_sym_BSLASHciteurl] = ACTIONS(4963), + [anon_sym_BSLASHfullcite] = ACTIONS(4963), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4963), + [anon_sym_BSLASHcitealt] = ACTIONS(4963), + [anon_sym_BSLASHcitealp] = ACTIONS(4963), + [anon_sym_BSLASHcitetext] = ACTIONS(4963), + [anon_sym_BSLASHparencite] = ACTIONS(4963), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHParencite] = ACTIONS(4963), + [anon_sym_BSLASHfootcite] = ACTIONS(4963), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4963), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4963), + [anon_sym_BSLASHtextcite] = ACTIONS(4963), + [anon_sym_BSLASHTextcite] = ACTIONS(4963), + [anon_sym_BSLASHsmartcite] = ACTIONS(4963), + [anon_sym_BSLASHSmartcite] = ACTIONS(4963), + [anon_sym_BSLASHsupercite] = ACTIONS(4963), + [anon_sym_BSLASHautocite] = ACTIONS(4963), + [anon_sym_BSLASHAutocite] = ACTIONS(4963), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4961), + [anon_sym_BSLASHvolcite] = ACTIONS(4963), + [anon_sym_BSLASHVolcite] = ACTIONS(4963), + [anon_sym_BSLASHpvolcite] = ACTIONS(4963), + [anon_sym_BSLASHPvolcite] = ACTIONS(4963), + [anon_sym_BSLASHfvolcite] = ACTIONS(4963), + [anon_sym_BSLASHftvolcite] = ACTIONS(4963), + [anon_sym_BSLASHsvolcite] = ACTIONS(4963), + [anon_sym_BSLASHSvolcite] = ACTIONS(4963), + [anon_sym_BSLASHtvolcite] = ACTIONS(4963), + [anon_sym_BSLASHTvolcite] = ACTIONS(4963), + [anon_sym_BSLASHavolcite] = ACTIONS(4963), + [anon_sym_BSLASHAvolcite] = ACTIONS(4963), + [anon_sym_BSLASHnotecite] = ACTIONS(4963), + [anon_sym_BSLASHNotecite] = ACTIONS(4963), + [anon_sym_BSLASHpnotecite] = ACTIONS(4963), + [anon_sym_BSLASHPnotecite] = ACTIONS(4963), + [anon_sym_BSLASHfnotecite] = ACTIONS(4963), + [anon_sym_BSLASHlabel] = ACTIONS(4963), + [anon_sym_BSLASHref] = ACTIONS(4963), + [anon_sym_BSLASHeqref] = ACTIONS(4963), + [anon_sym_BSLASHvref] = ACTIONS(4963), + [anon_sym_BSLASHVref] = ACTIONS(4963), + [anon_sym_BSLASHautoref] = ACTIONS(4963), + [anon_sym_BSLASHpageref] = ACTIONS(4963), + [anon_sym_BSLASHcref] = ACTIONS(4963), + [anon_sym_BSLASHCref] = ACTIONS(4963), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnameCref] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4963), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4963), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4963), + [anon_sym_BSLASHlabelcref] = ACTIONS(4963), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange] = ACTIONS(4963), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHCrefrange] = ACTIONS(4963), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4961), + [anon_sym_BSLASHnewlabel] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand] = ACTIONS(4963), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4963), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4963), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4961), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4963), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4961), + [anon_sym_BSLASHdef] = ACTIONS(4963), + [anon_sym_BSLASHlet] = ACTIONS(4963), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4963), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4963), + [anon_sym_BSLASHgls] = ACTIONS(4963), + [anon_sym_BSLASHGls] = ACTIONS(4963), + [anon_sym_BSLASHGLS] = ACTIONS(4963), + [anon_sym_BSLASHglspl] = ACTIONS(4963), + [anon_sym_BSLASHGlspl] = ACTIONS(4963), + [anon_sym_BSLASHGLSpl] = ACTIONS(4963), + [anon_sym_BSLASHglsdisp] = ACTIONS(4963), + [anon_sym_BSLASHglslink] = ACTIONS(4963), + [anon_sym_BSLASHglstext] = ACTIONS(4963), + [anon_sym_BSLASHGlstext] = ACTIONS(4963), + [anon_sym_BSLASHGLStext] = ACTIONS(4963), + [anon_sym_BSLASHglsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4963), + [anon_sym_BSLASHglsplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSplural] = ACTIONS(4963), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4963), + [anon_sym_BSLASHglsname] = ACTIONS(4963), + [anon_sym_BSLASHGlsname] = ACTIONS(4963), + [anon_sym_BSLASHGLSname] = ACTIONS(4963), + [anon_sym_BSLASHglssymbol] = ACTIONS(4963), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4963), + [anon_sym_BSLASHglsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4963), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4963), + [anon_sym_BSLASHglsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4963), + [anon_sym_BSLASHglsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4963), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4963), + [anon_sym_BSLASHglsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4963), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4963), + [anon_sym_BSLASHglsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4963), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4963), + [anon_sym_BSLASHnewacronym] = ACTIONS(4963), + [anon_sym_BSLASHacrshort] = ACTIONS(4963), + [anon_sym_BSLASHAcrshort] = ACTIONS(4963), + [anon_sym_BSLASHACRshort] = ACTIONS(4963), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4963), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4963), + [anon_sym_BSLASHacrlong] = ACTIONS(4963), + [anon_sym_BSLASHAcrlong] = ACTIONS(4963), + [anon_sym_BSLASHACRlong] = ACTIONS(4963), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4963), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4963), + [anon_sym_BSLASHacrfull] = ACTIONS(4963), + [anon_sym_BSLASHAcrfull] = ACTIONS(4963), + [anon_sym_BSLASHACRfull] = ACTIONS(4963), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4963), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4963), + [anon_sym_BSLASHacs] = ACTIONS(4963), + [anon_sym_BSLASHAcs] = ACTIONS(4963), + [anon_sym_BSLASHacsp] = ACTIONS(4963), + [anon_sym_BSLASHAcsp] = ACTIONS(4963), + [anon_sym_BSLASHacl] = ACTIONS(4963), + [anon_sym_BSLASHAcl] = ACTIONS(4963), + [anon_sym_BSLASHaclp] = ACTIONS(4963), + [anon_sym_BSLASHAclp] = ACTIONS(4963), + [anon_sym_BSLASHacf] = ACTIONS(4963), + [anon_sym_BSLASHAcf] = ACTIONS(4963), + [anon_sym_BSLASHacfp] = ACTIONS(4963), + [anon_sym_BSLASHAcfp] = ACTIONS(4963), + [anon_sym_BSLASHac] = ACTIONS(4963), + [anon_sym_BSLASHAc] = ACTIONS(4963), + [anon_sym_BSLASHacp] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4963), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4963), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4963), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4963), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4963), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4963), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4963), + [anon_sym_BSLASHcolor] = ACTIONS(4963), + [anon_sym_BSLASHcolorbox] = ACTIONS(4963), + [anon_sym_BSLASHtextcolor] = ACTIONS(4963), + [anon_sym_BSLASHpagecolor] = ACTIONS(4963), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4963), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4963), + }, + [1527] = { + [sym_command_name] = ACTIONS(5073), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5089), - [anon_sym_RBRACK] = ACTIONS(5087), - [anon_sym_COMMA] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(5087), - [anon_sym_RBRACE] = ACTIONS(5087), - [sym_word] = ACTIONS(5089), - [sym_placeholder] = ACTIONS(5087), - [anon_sym_PLUS] = ACTIONS(5089), - [anon_sym_DASH] = ACTIONS(5089), - [anon_sym_STAR] = ACTIONS(5089), - [anon_sym_SLASH] = ACTIONS(5089), - [anon_sym_CARET] = ACTIONS(5089), - [anon_sym__] = ACTIONS(5089), - [anon_sym_LT] = ACTIONS(5089), - [anon_sym_GT] = ACTIONS(5089), - [anon_sym_BANG] = ACTIONS(5089), - [anon_sym_PIPE] = ACTIONS(5089), - [anon_sym_COLON] = ACTIONS(5089), - [anon_sym_SQUOTE] = ACTIONS(5089), - [anon_sym_BSLASHusepackage] = ACTIONS(5089), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5089), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5089), - [anon_sym_BSLASHinclude] = ACTIONS(5089), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5089), - [anon_sym_BSLASHinput] = ACTIONS(5089), - [anon_sym_BSLASHsubfile] = ACTIONS(5089), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5089), - [anon_sym_BSLASHbibliography] = ACTIONS(5089), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5089), - [anon_sym_BSLASHincludesvg] = ACTIONS(5089), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5089), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5089), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5089), - [anon_sym_BSLASHimport] = ACTIONS(5089), - [anon_sym_BSLASHsubimport] = ACTIONS(5089), - [anon_sym_BSLASHinputfrom] = ACTIONS(5089), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5089), - [anon_sym_BSLASHincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5089), - [anon_sym_BSLASHcaption] = ACTIONS(5089), - [anon_sym_BSLASHcite] = ACTIONS(5089), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCite] = ACTIONS(5089), - [anon_sym_BSLASHnocite] = ACTIONS(5089), - [anon_sym_BSLASHcitet] = ACTIONS(5089), - [anon_sym_BSLASHcitep] = ACTIONS(5089), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteauthor] = ACTIONS(5089), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5089), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitetitle] = ACTIONS(5089), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteyear] = ACTIONS(5089), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5087), - [anon_sym_BSLASHcitedate] = ACTIONS(5089), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5087), - [anon_sym_BSLASHciteurl] = ACTIONS(5089), - [anon_sym_BSLASHfullcite] = ACTIONS(5089), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5089), - [anon_sym_BSLASHcitealt] = ACTIONS(5089), - [anon_sym_BSLASHcitealp] = ACTIONS(5089), - [anon_sym_BSLASHcitetext] = ACTIONS(5089), - [anon_sym_BSLASHparencite] = ACTIONS(5089), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHParencite] = ACTIONS(5089), - [anon_sym_BSLASHfootcite] = ACTIONS(5089), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5089), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5089), - [anon_sym_BSLASHtextcite] = ACTIONS(5089), - [anon_sym_BSLASHTextcite] = ACTIONS(5089), - [anon_sym_BSLASHsmartcite] = ACTIONS(5089), - [anon_sym_BSLASHSmartcite] = ACTIONS(5089), - [anon_sym_BSLASHsupercite] = ACTIONS(5089), - [anon_sym_BSLASHautocite] = ACTIONS(5089), - [anon_sym_BSLASHAutocite] = ACTIONS(5089), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5087), - [anon_sym_BSLASHvolcite] = ACTIONS(5089), - [anon_sym_BSLASHVolcite] = ACTIONS(5089), - [anon_sym_BSLASHpvolcite] = ACTIONS(5089), - [anon_sym_BSLASHPvolcite] = ACTIONS(5089), - [anon_sym_BSLASHfvolcite] = ACTIONS(5089), - [anon_sym_BSLASHftvolcite] = ACTIONS(5089), - [anon_sym_BSLASHsvolcite] = ACTIONS(5089), - [anon_sym_BSLASHSvolcite] = ACTIONS(5089), - [anon_sym_BSLASHtvolcite] = ACTIONS(5089), - [anon_sym_BSLASHTvolcite] = ACTIONS(5089), - [anon_sym_BSLASHavolcite] = ACTIONS(5089), - [anon_sym_BSLASHAvolcite] = ACTIONS(5089), - [anon_sym_BSLASHnotecite] = ACTIONS(5089), - [anon_sym_BSLASHNotecite] = ACTIONS(5089), - [anon_sym_BSLASHpnotecite] = ACTIONS(5089), - [anon_sym_BSLASHPnotecite] = ACTIONS(5089), - [anon_sym_BSLASHfnotecite] = ACTIONS(5089), - [anon_sym_BSLASHlabel] = ACTIONS(5089), - [anon_sym_BSLASHref] = ACTIONS(5089), - [anon_sym_BSLASHeqref] = ACTIONS(5089), - [anon_sym_BSLASHvref] = ACTIONS(5089), - [anon_sym_BSLASHVref] = ACTIONS(5089), - [anon_sym_BSLASHautoref] = ACTIONS(5089), - [anon_sym_BSLASHpageref] = ACTIONS(5089), - [anon_sym_BSLASHcref] = ACTIONS(5089), - [anon_sym_BSLASHCref] = ACTIONS(5089), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnameCref] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5089), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5089), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5089), - [anon_sym_BSLASHlabelcref] = ACTIONS(5089), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange] = ACTIONS(5089), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHCrefrange] = ACTIONS(5089), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5087), - [anon_sym_BSLASHnewlabel] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand] = ACTIONS(5089), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5089), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5089), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5087), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5089), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5087), - [anon_sym_BSLASHdef] = ACTIONS(5089), - [anon_sym_BSLASHlet] = ACTIONS(5089), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5089), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5089), - [anon_sym_BSLASHgls] = ACTIONS(5089), - [anon_sym_BSLASHGls] = ACTIONS(5089), - [anon_sym_BSLASHGLS] = ACTIONS(5089), - [anon_sym_BSLASHglspl] = ACTIONS(5089), - [anon_sym_BSLASHGlspl] = ACTIONS(5089), - [anon_sym_BSLASHGLSpl] = ACTIONS(5089), - [anon_sym_BSLASHglsdisp] = ACTIONS(5089), - [anon_sym_BSLASHglslink] = ACTIONS(5089), - [anon_sym_BSLASHglstext] = ACTIONS(5089), - [anon_sym_BSLASHGlstext] = ACTIONS(5089), - [anon_sym_BSLASHGLStext] = ACTIONS(5089), - [anon_sym_BSLASHglsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5089), - [anon_sym_BSLASHglsplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSplural] = ACTIONS(5089), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5089), - [anon_sym_BSLASHglsname] = ACTIONS(5089), - [anon_sym_BSLASHGlsname] = ACTIONS(5089), - [anon_sym_BSLASHGLSname] = ACTIONS(5089), - [anon_sym_BSLASHglssymbol] = ACTIONS(5089), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5089), - [anon_sym_BSLASHglsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5089), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5089), - [anon_sym_BSLASHglsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5089), - [anon_sym_BSLASHglsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5089), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5089), - [anon_sym_BSLASHglsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5089), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5089), - [anon_sym_BSLASHglsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5089), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5089), - [anon_sym_BSLASHnewacronym] = ACTIONS(5089), - [anon_sym_BSLASHacrshort] = ACTIONS(5089), - [anon_sym_BSLASHAcrshort] = ACTIONS(5089), - [anon_sym_BSLASHACRshort] = ACTIONS(5089), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5089), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5089), - [anon_sym_BSLASHacrlong] = ACTIONS(5089), - [anon_sym_BSLASHAcrlong] = ACTIONS(5089), - [anon_sym_BSLASHACRlong] = ACTIONS(5089), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5089), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5089), - [anon_sym_BSLASHacrfull] = ACTIONS(5089), - [anon_sym_BSLASHAcrfull] = ACTIONS(5089), - [anon_sym_BSLASHACRfull] = ACTIONS(5089), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5089), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5089), - [anon_sym_BSLASHacs] = ACTIONS(5089), - [anon_sym_BSLASHAcs] = ACTIONS(5089), - [anon_sym_BSLASHacsp] = ACTIONS(5089), - [anon_sym_BSLASHAcsp] = ACTIONS(5089), - [anon_sym_BSLASHacl] = ACTIONS(5089), - [anon_sym_BSLASHAcl] = ACTIONS(5089), - [anon_sym_BSLASHaclp] = ACTIONS(5089), - [anon_sym_BSLASHAclp] = ACTIONS(5089), - [anon_sym_BSLASHacf] = ACTIONS(5089), - [anon_sym_BSLASHAcf] = ACTIONS(5089), - [anon_sym_BSLASHacfp] = ACTIONS(5089), - [anon_sym_BSLASHAcfp] = ACTIONS(5089), - [anon_sym_BSLASHac] = ACTIONS(5089), - [anon_sym_BSLASHAc] = ACTIONS(5089), - [anon_sym_BSLASHacp] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5089), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5089), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5089), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5089), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5089), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5089), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5089), - [anon_sym_BSLASHcolor] = ACTIONS(5089), - [anon_sym_BSLASHcolorbox] = ACTIONS(5089), - [anon_sym_BSLASHtextcolor] = ACTIONS(5089), - [anon_sym_BSLASHpagecolor] = ACTIONS(5089), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5089), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5089), + [anon_sym_BSLASHiffalse] = ACTIONS(5073), + [anon_sym_RBRACK] = ACTIONS(5071), + [anon_sym_COMMA] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(5071), + [anon_sym_RBRACE] = ACTIONS(5071), + [sym_word] = ACTIONS(5073), + [sym_placeholder] = ACTIONS(5071), + [anon_sym_PLUS] = ACTIONS(5073), + [anon_sym_DASH] = ACTIONS(5073), + [anon_sym_STAR] = ACTIONS(5073), + [anon_sym_SLASH] = ACTIONS(5073), + [anon_sym_CARET] = ACTIONS(5073), + [anon_sym__] = ACTIONS(5073), + [anon_sym_LT] = ACTIONS(5073), + [anon_sym_GT] = ACTIONS(5073), + [anon_sym_BANG] = ACTIONS(5073), + [anon_sym_PIPE] = ACTIONS(5073), + [anon_sym_COLON] = ACTIONS(5073), + [anon_sym_SQUOTE] = ACTIONS(5073), + [anon_sym_BSLASHusepackage] = ACTIONS(5073), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5073), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5073), + [anon_sym_BSLASHinclude] = ACTIONS(5073), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5073), + [anon_sym_BSLASHinput] = ACTIONS(5073), + [anon_sym_BSLASHsubfile] = ACTIONS(5073), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5073), + [anon_sym_BSLASHbibliography] = ACTIONS(5073), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5073), + [anon_sym_BSLASHincludesvg] = ACTIONS(5073), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5073), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5073), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5073), + [anon_sym_BSLASHimport] = ACTIONS(5073), + [anon_sym_BSLASHsubimport] = ACTIONS(5073), + [anon_sym_BSLASHinputfrom] = ACTIONS(5073), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5073), + [anon_sym_BSLASHincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5073), + [anon_sym_BSLASHcaption] = ACTIONS(5073), + [anon_sym_BSLASHcite] = ACTIONS(5073), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCite] = ACTIONS(5073), + [anon_sym_BSLASHnocite] = ACTIONS(5073), + [anon_sym_BSLASHcitet] = ACTIONS(5073), + [anon_sym_BSLASHcitep] = ACTIONS(5073), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteauthor] = ACTIONS(5073), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5073), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitetitle] = ACTIONS(5073), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteyear] = ACTIONS(5073), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5071), + [anon_sym_BSLASHcitedate] = ACTIONS(5073), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5071), + [anon_sym_BSLASHciteurl] = ACTIONS(5073), + [anon_sym_BSLASHfullcite] = ACTIONS(5073), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5073), + [anon_sym_BSLASHcitealt] = ACTIONS(5073), + [anon_sym_BSLASHcitealp] = ACTIONS(5073), + [anon_sym_BSLASHcitetext] = ACTIONS(5073), + [anon_sym_BSLASHparencite] = ACTIONS(5073), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHParencite] = ACTIONS(5073), + [anon_sym_BSLASHfootcite] = ACTIONS(5073), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5073), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5073), + [anon_sym_BSLASHtextcite] = ACTIONS(5073), + [anon_sym_BSLASHTextcite] = ACTIONS(5073), + [anon_sym_BSLASHsmartcite] = ACTIONS(5073), + [anon_sym_BSLASHSmartcite] = ACTIONS(5073), + [anon_sym_BSLASHsupercite] = ACTIONS(5073), + [anon_sym_BSLASHautocite] = ACTIONS(5073), + [anon_sym_BSLASHAutocite] = ACTIONS(5073), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5071), + [anon_sym_BSLASHvolcite] = ACTIONS(5073), + [anon_sym_BSLASHVolcite] = ACTIONS(5073), + [anon_sym_BSLASHpvolcite] = ACTIONS(5073), + [anon_sym_BSLASHPvolcite] = ACTIONS(5073), + [anon_sym_BSLASHfvolcite] = ACTIONS(5073), + [anon_sym_BSLASHftvolcite] = ACTIONS(5073), + [anon_sym_BSLASHsvolcite] = ACTIONS(5073), + [anon_sym_BSLASHSvolcite] = ACTIONS(5073), + [anon_sym_BSLASHtvolcite] = ACTIONS(5073), + [anon_sym_BSLASHTvolcite] = ACTIONS(5073), + [anon_sym_BSLASHavolcite] = ACTIONS(5073), + [anon_sym_BSLASHAvolcite] = ACTIONS(5073), + [anon_sym_BSLASHnotecite] = ACTIONS(5073), + [anon_sym_BSLASHNotecite] = ACTIONS(5073), + [anon_sym_BSLASHpnotecite] = ACTIONS(5073), + [anon_sym_BSLASHPnotecite] = ACTIONS(5073), + [anon_sym_BSLASHfnotecite] = ACTIONS(5073), + [anon_sym_BSLASHlabel] = ACTIONS(5073), + [anon_sym_BSLASHref] = ACTIONS(5073), + [anon_sym_BSLASHeqref] = ACTIONS(5073), + [anon_sym_BSLASHvref] = ACTIONS(5073), + [anon_sym_BSLASHVref] = ACTIONS(5073), + [anon_sym_BSLASHautoref] = ACTIONS(5073), + [anon_sym_BSLASHpageref] = ACTIONS(5073), + [anon_sym_BSLASHcref] = ACTIONS(5073), + [anon_sym_BSLASHCref] = ACTIONS(5073), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnameCref] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5073), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5073), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5073), + [anon_sym_BSLASHlabelcref] = ACTIONS(5073), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange] = ACTIONS(5073), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHCrefrange] = ACTIONS(5073), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5071), + [anon_sym_BSLASHnewlabel] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand] = ACTIONS(5073), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5073), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5073), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5071), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5073), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5071), + [anon_sym_BSLASHdef] = ACTIONS(5073), + [anon_sym_BSLASHlet] = ACTIONS(5073), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5073), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5073), + [anon_sym_BSLASHgls] = ACTIONS(5073), + [anon_sym_BSLASHGls] = ACTIONS(5073), + [anon_sym_BSLASHGLS] = ACTIONS(5073), + [anon_sym_BSLASHglspl] = ACTIONS(5073), + [anon_sym_BSLASHGlspl] = ACTIONS(5073), + [anon_sym_BSLASHGLSpl] = ACTIONS(5073), + [anon_sym_BSLASHglsdisp] = ACTIONS(5073), + [anon_sym_BSLASHglslink] = ACTIONS(5073), + [anon_sym_BSLASHglstext] = ACTIONS(5073), + [anon_sym_BSLASHGlstext] = ACTIONS(5073), + [anon_sym_BSLASHGLStext] = ACTIONS(5073), + [anon_sym_BSLASHglsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5073), + [anon_sym_BSLASHglsplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSplural] = ACTIONS(5073), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5073), + [anon_sym_BSLASHglsname] = ACTIONS(5073), + [anon_sym_BSLASHGlsname] = ACTIONS(5073), + [anon_sym_BSLASHGLSname] = ACTIONS(5073), + [anon_sym_BSLASHglssymbol] = ACTIONS(5073), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5073), + [anon_sym_BSLASHglsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5073), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5073), + [anon_sym_BSLASHglsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5073), + [anon_sym_BSLASHglsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5073), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5073), + [anon_sym_BSLASHglsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5073), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5073), + [anon_sym_BSLASHglsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5073), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5073), + [anon_sym_BSLASHnewacronym] = ACTIONS(5073), + [anon_sym_BSLASHacrshort] = ACTIONS(5073), + [anon_sym_BSLASHAcrshort] = ACTIONS(5073), + [anon_sym_BSLASHACRshort] = ACTIONS(5073), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5073), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5073), + [anon_sym_BSLASHacrlong] = ACTIONS(5073), + [anon_sym_BSLASHAcrlong] = ACTIONS(5073), + [anon_sym_BSLASHACRlong] = ACTIONS(5073), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5073), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5073), + [anon_sym_BSLASHacrfull] = ACTIONS(5073), + [anon_sym_BSLASHAcrfull] = ACTIONS(5073), + [anon_sym_BSLASHACRfull] = ACTIONS(5073), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5073), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5073), + [anon_sym_BSLASHacs] = ACTIONS(5073), + [anon_sym_BSLASHAcs] = ACTIONS(5073), + [anon_sym_BSLASHacsp] = ACTIONS(5073), + [anon_sym_BSLASHAcsp] = ACTIONS(5073), + [anon_sym_BSLASHacl] = ACTIONS(5073), + [anon_sym_BSLASHAcl] = ACTIONS(5073), + [anon_sym_BSLASHaclp] = ACTIONS(5073), + [anon_sym_BSLASHAclp] = ACTIONS(5073), + [anon_sym_BSLASHacf] = ACTIONS(5073), + [anon_sym_BSLASHAcf] = ACTIONS(5073), + [anon_sym_BSLASHacfp] = ACTIONS(5073), + [anon_sym_BSLASHAcfp] = ACTIONS(5073), + [anon_sym_BSLASHac] = ACTIONS(5073), + [anon_sym_BSLASHAc] = ACTIONS(5073), + [anon_sym_BSLASHacp] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5073), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5073), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5073), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5073), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5073), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5073), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5073), + [anon_sym_BSLASHcolor] = ACTIONS(5073), + [anon_sym_BSLASHcolorbox] = ACTIONS(5073), + [anon_sym_BSLASHtextcolor] = ACTIONS(5073), + [anon_sym_BSLASHpagecolor] = ACTIONS(5073), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5073), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5073), }, - [1540] = { - [sym_command_name] = ACTIONS(5093), + [1528] = { + [sym_command_name] = ACTIONS(5065), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5093), - [anon_sym_RBRACK] = ACTIONS(5091), - [anon_sym_COMMA] = ACTIONS(5091), - [anon_sym_EQ] = ACTIONS(5091), - [anon_sym_RBRACE] = ACTIONS(5091), - [sym_word] = ACTIONS(5093), - [sym_placeholder] = ACTIONS(5091), - [anon_sym_PLUS] = ACTIONS(5093), - [anon_sym_DASH] = ACTIONS(5093), - [anon_sym_STAR] = ACTIONS(5093), - [anon_sym_SLASH] = ACTIONS(5093), - [anon_sym_CARET] = ACTIONS(5093), - [anon_sym__] = ACTIONS(5093), - [anon_sym_LT] = ACTIONS(5093), - [anon_sym_GT] = ACTIONS(5093), - [anon_sym_BANG] = ACTIONS(5093), - [anon_sym_PIPE] = ACTIONS(5093), - [anon_sym_COLON] = ACTIONS(5093), - [anon_sym_SQUOTE] = ACTIONS(5093), - [anon_sym_BSLASHusepackage] = ACTIONS(5093), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5093), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5093), - [anon_sym_BSLASHinclude] = ACTIONS(5093), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5093), - [anon_sym_BSLASHinput] = ACTIONS(5093), - [anon_sym_BSLASHsubfile] = ACTIONS(5093), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5093), - [anon_sym_BSLASHbibliography] = ACTIONS(5093), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5093), - [anon_sym_BSLASHincludesvg] = ACTIONS(5093), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5093), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5093), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5093), - [anon_sym_BSLASHimport] = ACTIONS(5093), - [anon_sym_BSLASHsubimport] = ACTIONS(5093), - [anon_sym_BSLASHinputfrom] = ACTIONS(5093), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5093), - [anon_sym_BSLASHincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5093), - [anon_sym_BSLASHcaption] = ACTIONS(5093), - [anon_sym_BSLASHcite] = ACTIONS(5093), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCite] = ACTIONS(5093), - [anon_sym_BSLASHnocite] = ACTIONS(5093), - [anon_sym_BSLASHcitet] = ACTIONS(5093), - [anon_sym_BSLASHcitep] = ACTIONS(5093), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteauthor] = ACTIONS(5093), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5093), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitetitle] = ACTIONS(5093), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteyear] = ACTIONS(5093), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5091), - [anon_sym_BSLASHcitedate] = ACTIONS(5093), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5091), - [anon_sym_BSLASHciteurl] = ACTIONS(5093), - [anon_sym_BSLASHfullcite] = ACTIONS(5093), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5093), - [anon_sym_BSLASHcitealt] = ACTIONS(5093), - [anon_sym_BSLASHcitealp] = ACTIONS(5093), - [anon_sym_BSLASHcitetext] = ACTIONS(5093), - [anon_sym_BSLASHparencite] = ACTIONS(5093), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHParencite] = ACTIONS(5093), - [anon_sym_BSLASHfootcite] = ACTIONS(5093), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5093), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5093), - [anon_sym_BSLASHtextcite] = ACTIONS(5093), - [anon_sym_BSLASHTextcite] = ACTIONS(5093), - [anon_sym_BSLASHsmartcite] = ACTIONS(5093), - [anon_sym_BSLASHSmartcite] = ACTIONS(5093), - [anon_sym_BSLASHsupercite] = ACTIONS(5093), - [anon_sym_BSLASHautocite] = ACTIONS(5093), - [anon_sym_BSLASHAutocite] = ACTIONS(5093), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5091), - [anon_sym_BSLASHvolcite] = ACTIONS(5093), - [anon_sym_BSLASHVolcite] = ACTIONS(5093), - [anon_sym_BSLASHpvolcite] = ACTIONS(5093), - [anon_sym_BSLASHPvolcite] = ACTIONS(5093), - [anon_sym_BSLASHfvolcite] = ACTIONS(5093), - [anon_sym_BSLASHftvolcite] = ACTIONS(5093), - [anon_sym_BSLASHsvolcite] = ACTIONS(5093), - [anon_sym_BSLASHSvolcite] = ACTIONS(5093), - [anon_sym_BSLASHtvolcite] = ACTIONS(5093), - [anon_sym_BSLASHTvolcite] = ACTIONS(5093), - [anon_sym_BSLASHavolcite] = ACTIONS(5093), - [anon_sym_BSLASHAvolcite] = ACTIONS(5093), - [anon_sym_BSLASHnotecite] = ACTIONS(5093), - [anon_sym_BSLASHNotecite] = ACTIONS(5093), - [anon_sym_BSLASHpnotecite] = ACTIONS(5093), - [anon_sym_BSLASHPnotecite] = ACTIONS(5093), - [anon_sym_BSLASHfnotecite] = ACTIONS(5093), - [anon_sym_BSLASHlabel] = ACTIONS(5093), - [anon_sym_BSLASHref] = ACTIONS(5093), - [anon_sym_BSLASHeqref] = ACTIONS(5093), - [anon_sym_BSLASHvref] = ACTIONS(5093), - [anon_sym_BSLASHVref] = ACTIONS(5093), - [anon_sym_BSLASHautoref] = ACTIONS(5093), - [anon_sym_BSLASHpageref] = ACTIONS(5093), - [anon_sym_BSLASHcref] = ACTIONS(5093), - [anon_sym_BSLASHCref] = ACTIONS(5093), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnameCref] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5093), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5093), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5093), - [anon_sym_BSLASHlabelcref] = ACTIONS(5093), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange] = ACTIONS(5093), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHCrefrange] = ACTIONS(5093), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5091), - [anon_sym_BSLASHnewlabel] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand] = ACTIONS(5093), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5093), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5093), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5091), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5093), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5091), - [anon_sym_BSLASHdef] = ACTIONS(5093), - [anon_sym_BSLASHlet] = ACTIONS(5093), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5093), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5093), - [anon_sym_BSLASHgls] = ACTIONS(5093), - [anon_sym_BSLASHGls] = ACTIONS(5093), - [anon_sym_BSLASHGLS] = ACTIONS(5093), - [anon_sym_BSLASHglspl] = ACTIONS(5093), - [anon_sym_BSLASHGlspl] = ACTIONS(5093), - [anon_sym_BSLASHGLSpl] = ACTIONS(5093), - [anon_sym_BSLASHglsdisp] = ACTIONS(5093), - [anon_sym_BSLASHglslink] = ACTIONS(5093), - [anon_sym_BSLASHglstext] = ACTIONS(5093), - [anon_sym_BSLASHGlstext] = ACTIONS(5093), - [anon_sym_BSLASHGLStext] = ACTIONS(5093), - [anon_sym_BSLASHglsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5093), - [anon_sym_BSLASHglsplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSplural] = ACTIONS(5093), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5093), - [anon_sym_BSLASHglsname] = ACTIONS(5093), - [anon_sym_BSLASHGlsname] = ACTIONS(5093), - [anon_sym_BSLASHGLSname] = ACTIONS(5093), - [anon_sym_BSLASHglssymbol] = ACTIONS(5093), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5093), - [anon_sym_BSLASHglsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5093), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5093), - [anon_sym_BSLASHglsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5093), - [anon_sym_BSLASHglsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5093), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5093), - [anon_sym_BSLASHglsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5093), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5093), - [anon_sym_BSLASHglsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5093), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5093), - [anon_sym_BSLASHnewacronym] = ACTIONS(5093), - [anon_sym_BSLASHacrshort] = ACTIONS(5093), - [anon_sym_BSLASHAcrshort] = ACTIONS(5093), - [anon_sym_BSLASHACRshort] = ACTIONS(5093), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5093), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5093), - [anon_sym_BSLASHacrlong] = ACTIONS(5093), - [anon_sym_BSLASHAcrlong] = ACTIONS(5093), - [anon_sym_BSLASHACRlong] = ACTIONS(5093), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5093), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5093), - [anon_sym_BSLASHacrfull] = ACTIONS(5093), - [anon_sym_BSLASHAcrfull] = ACTIONS(5093), - [anon_sym_BSLASHACRfull] = ACTIONS(5093), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5093), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5093), - [anon_sym_BSLASHacs] = ACTIONS(5093), - [anon_sym_BSLASHAcs] = ACTIONS(5093), - [anon_sym_BSLASHacsp] = ACTIONS(5093), - [anon_sym_BSLASHAcsp] = ACTIONS(5093), - [anon_sym_BSLASHacl] = ACTIONS(5093), - [anon_sym_BSLASHAcl] = ACTIONS(5093), - [anon_sym_BSLASHaclp] = ACTIONS(5093), - [anon_sym_BSLASHAclp] = ACTIONS(5093), - [anon_sym_BSLASHacf] = ACTIONS(5093), - [anon_sym_BSLASHAcf] = ACTIONS(5093), - [anon_sym_BSLASHacfp] = ACTIONS(5093), - [anon_sym_BSLASHAcfp] = ACTIONS(5093), - [anon_sym_BSLASHac] = ACTIONS(5093), - [anon_sym_BSLASHAc] = ACTIONS(5093), - [anon_sym_BSLASHacp] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5093), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5093), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5093), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5093), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5093), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5093), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5093), - [anon_sym_BSLASHcolor] = ACTIONS(5093), - [anon_sym_BSLASHcolorbox] = ACTIONS(5093), - [anon_sym_BSLASHtextcolor] = ACTIONS(5093), - [anon_sym_BSLASHpagecolor] = ACTIONS(5093), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5093), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5093), + [anon_sym_BSLASHiffalse] = ACTIONS(5065), + [anon_sym_RBRACK] = ACTIONS(5063), + [anon_sym_COMMA] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(5063), + [anon_sym_RBRACE] = ACTIONS(5063), + [sym_word] = ACTIONS(5065), + [sym_placeholder] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_STAR] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5065), + [anon_sym_CARET] = ACTIONS(5065), + [anon_sym__] = ACTIONS(5065), + [anon_sym_LT] = ACTIONS(5065), + [anon_sym_GT] = ACTIONS(5065), + [anon_sym_BANG] = ACTIONS(5065), + [anon_sym_PIPE] = ACTIONS(5065), + [anon_sym_COLON] = ACTIONS(5065), + [anon_sym_SQUOTE] = ACTIONS(5065), + [anon_sym_BSLASHusepackage] = ACTIONS(5065), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5065), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5065), + [anon_sym_BSLASHinclude] = ACTIONS(5065), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5065), + [anon_sym_BSLASHinput] = ACTIONS(5065), + [anon_sym_BSLASHsubfile] = ACTIONS(5065), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5065), + [anon_sym_BSLASHbibliography] = ACTIONS(5065), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5065), + [anon_sym_BSLASHincludesvg] = ACTIONS(5065), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5065), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5065), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5065), + [anon_sym_BSLASHimport] = ACTIONS(5065), + [anon_sym_BSLASHsubimport] = ACTIONS(5065), + [anon_sym_BSLASHinputfrom] = ACTIONS(5065), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5065), + [anon_sym_BSLASHincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5065), + [anon_sym_BSLASHcaption] = ACTIONS(5065), + [anon_sym_BSLASHcite] = ACTIONS(5065), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCite] = ACTIONS(5065), + [anon_sym_BSLASHnocite] = ACTIONS(5065), + [anon_sym_BSLASHcitet] = ACTIONS(5065), + [anon_sym_BSLASHcitep] = ACTIONS(5065), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteauthor] = ACTIONS(5065), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5065), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitetitle] = ACTIONS(5065), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteyear] = ACTIONS(5065), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5063), + [anon_sym_BSLASHcitedate] = ACTIONS(5065), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5063), + [anon_sym_BSLASHciteurl] = ACTIONS(5065), + [anon_sym_BSLASHfullcite] = ACTIONS(5065), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5065), + [anon_sym_BSLASHcitealt] = ACTIONS(5065), + [anon_sym_BSLASHcitealp] = ACTIONS(5065), + [anon_sym_BSLASHcitetext] = ACTIONS(5065), + [anon_sym_BSLASHparencite] = ACTIONS(5065), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHParencite] = ACTIONS(5065), + [anon_sym_BSLASHfootcite] = ACTIONS(5065), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5065), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5065), + [anon_sym_BSLASHtextcite] = ACTIONS(5065), + [anon_sym_BSLASHTextcite] = ACTIONS(5065), + [anon_sym_BSLASHsmartcite] = ACTIONS(5065), + [anon_sym_BSLASHSmartcite] = ACTIONS(5065), + [anon_sym_BSLASHsupercite] = ACTIONS(5065), + [anon_sym_BSLASHautocite] = ACTIONS(5065), + [anon_sym_BSLASHAutocite] = ACTIONS(5065), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5063), + [anon_sym_BSLASHvolcite] = ACTIONS(5065), + [anon_sym_BSLASHVolcite] = ACTIONS(5065), + [anon_sym_BSLASHpvolcite] = ACTIONS(5065), + [anon_sym_BSLASHPvolcite] = ACTIONS(5065), + [anon_sym_BSLASHfvolcite] = ACTIONS(5065), + [anon_sym_BSLASHftvolcite] = ACTIONS(5065), + [anon_sym_BSLASHsvolcite] = ACTIONS(5065), + [anon_sym_BSLASHSvolcite] = ACTIONS(5065), + [anon_sym_BSLASHtvolcite] = ACTIONS(5065), + [anon_sym_BSLASHTvolcite] = ACTIONS(5065), + [anon_sym_BSLASHavolcite] = ACTIONS(5065), + [anon_sym_BSLASHAvolcite] = ACTIONS(5065), + [anon_sym_BSLASHnotecite] = ACTIONS(5065), + [anon_sym_BSLASHNotecite] = ACTIONS(5065), + [anon_sym_BSLASHpnotecite] = ACTIONS(5065), + [anon_sym_BSLASHPnotecite] = ACTIONS(5065), + [anon_sym_BSLASHfnotecite] = ACTIONS(5065), + [anon_sym_BSLASHlabel] = ACTIONS(5065), + [anon_sym_BSLASHref] = ACTIONS(5065), + [anon_sym_BSLASHeqref] = ACTIONS(5065), + [anon_sym_BSLASHvref] = ACTIONS(5065), + [anon_sym_BSLASHVref] = ACTIONS(5065), + [anon_sym_BSLASHautoref] = ACTIONS(5065), + [anon_sym_BSLASHpageref] = ACTIONS(5065), + [anon_sym_BSLASHcref] = ACTIONS(5065), + [anon_sym_BSLASHCref] = ACTIONS(5065), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnameCref] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5065), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5065), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5065), + [anon_sym_BSLASHlabelcref] = ACTIONS(5065), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange] = ACTIONS(5065), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHCrefrange] = ACTIONS(5065), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5063), + [anon_sym_BSLASHnewlabel] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand] = ACTIONS(5065), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5065), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5065), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5063), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5065), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5063), + [anon_sym_BSLASHdef] = ACTIONS(5065), + [anon_sym_BSLASHlet] = ACTIONS(5065), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5065), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5065), + [anon_sym_BSLASHgls] = ACTIONS(5065), + [anon_sym_BSLASHGls] = ACTIONS(5065), + [anon_sym_BSLASHGLS] = ACTIONS(5065), + [anon_sym_BSLASHglspl] = ACTIONS(5065), + [anon_sym_BSLASHGlspl] = ACTIONS(5065), + [anon_sym_BSLASHGLSpl] = ACTIONS(5065), + [anon_sym_BSLASHglsdisp] = ACTIONS(5065), + [anon_sym_BSLASHglslink] = ACTIONS(5065), + [anon_sym_BSLASHglstext] = ACTIONS(5065), + [anon_sym_BSLASHGlstext] = ACTIONS(5065), + [anon_sym_BSLASHGLStext] = ACTIONS(5065), + [anon_sym_BSLASHglsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5065), + [anon_sym_BSLASHglsplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSplural] = ACTIONS(5065), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5065), + [anon_sym_BSLASHglsname] = ACTIONS(5065), + [anon_sym_BSLASHGlsname] = ACTIONS(5065), + [anon_sym_BSLASHGLSname] = ACTIONS(5065), + [anon_sym_BSLASHglssymbol] = ACTIONS(5065), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5065), + [anon_sym_BSLASHglsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5065), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5065), + [anon_sym_BSLASHglsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5065), + [anon_sym_BSLASHglsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5065), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5065), + [anon_sym_BSLASHglsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5065), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5065), + [anon_sym_BSLASHglsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5065), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5065), + [anon_sym_BSLASHnewacronym] = ACTIONS(5065), + [anon_sym_BSLASHacrshort] = ACTIONS(5065), + [anon_sym_BSLASHAcrshort] = ACTIONS(5065), + [anon_sym_BSLASHACRshort] = ACTIONS(5065), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5065), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5065), + [anon_sym_BSLASHacrlong] = ACTIONS(5065), + [anon_sym_BSLASHAcrlong] = ACTIONS(5065), + [anon_sym_BSLASHACRlong] = ACTIONS(5065), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5065), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5065), + [anon_sym_BSLASHacrfull] = ACTIONS(5065), + [anon_sym_BSLASHAcrfull] = ACTIONS(5065), + [anon_sym_BSLASHACRfull] = ACTIONS(5065), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5065), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5065), + [anon_sym_BSLASHacs] = ACTIONS(5065), + [anon_sym_BSLASHAcs] = ACTIONS(5065), + [anon_sym_BSLASHacsp] = ACTIONS(5065), + [anon_sym_BSLASHAcsp] = ACTIONS(5065), + [anon_sym_BSLASHacl] = ACTIONS(5065), + [anon_sym_BSLASHAcl] = ACTIONS(5065), + [anon_sym_BSLASHaclp] = ACTIONS(5065), + [anon_sym_BSLASHAclp] = ACTIONS(5065), + [anon_sym_BSLASHacf] = ACTIONS(5065), + [anon_sym_BSLASHAcf] = ACTIONS(5065), + [anon_sym_BSLASHacfp] = ACTIONS(5065), + [anon_sym_BSLASHAcfp] = ACTIONS(5065), + [anon_sym_BSLASHac] = ACTIONS(5065), + [anon_sym_BSLASHAc] = ACTIONS(5065), + [anon_sym_BSLASHacp] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5065), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5065), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5065), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5065), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5065), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5065), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5065), + [anon_sym_BSLASHcolor] = ACTIONS(5065), + [anon_sym_BSLASHcolorbox] = ACTIONS(5065), + [anon_sym_BSLASHtextcolor] = ACTIONS(5065), + [anon_sym_BSLASHpagecolor] = ACTIONS(5065), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5065), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5065), + }, + [1529] = { + [sym_command_name] = ACTIONS(5037), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5037), + [anon_sym_RBRACK] = ACTIONS(5035), + [anon_sym_COMMA] = ACTIONS(5035), + [anon_sym_EQ] = ACTIONS(5035), + [anon_sym_RBRACE] = ACTIONS(5035), + [sym_word] = ACTIONS(5037), + [sym_placeholder] = ACTIONS(5035), + [anon_sym_PLUS] = ACTIONS(5037), + [anon_sym_DASH] = ACTIONS(5037), + [anon_sym_STAR] = ACTIONS(5037), + [anon_sym_SLASH] = ACTIONS(5037), + [anon_sym_CARET] = ACTIONS(5037), + [anon_sym__] = ACTIONS(5037), + [anon_sym_LT] = ACTIONS(5037), + [anon_sym_GT] = ACTIONS(5037), + [anon_sym_BANG] = ACTIONS(5037), + [anon_sym_PIPE] = ACTIONS(5037), + [anon_sym_COLON] = ACTIONS(5037), + [anon_sym_SQUOTE] = ACTIONS(5037), + [anon_sym_BSLASHusepackage] = ACTIONS(5037), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5037), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5037), + [anon_sym_BSLASHinclude] = ACTIONS(5037), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5037), + [anon_sym_BSLASHinput] = ACTIONS(5037), + [anon_sym_BSLASHsubfile] = ACTIONS(5037), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5037), + [anon_sym_BSLASHbibliography] = ACTIONS(5037), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5037), + [anon_sym_BSLASHincludesvg] = ACTIONS(5037), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5037), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5037), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5037), + [anon_sym_BSLASHimport] = ACTIONS(5037), + [anon_sym_BSLASHsubimport] = ACTIONS(5037), + [anon_sym_BSLASHinputfrom] = ACTIONS(5037), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5037), + [anon_sym_BSLASHincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5037), + [anon_sym_BSLASHcaption] = ACTIONS(5037), + [anon_sym_BSLASHcite] = ACTIONS(5037), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCite] = ACTIONS(5037), + [anon_sym_BSLASHnocite] = ACTIONS(5037), + [anon_sym_BSLASHcitet] = ACTIONS(5037), + [anon_sym_BSLASHcitep] = ACTIONS(5037), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteauthor] = ACTIONS(5037), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5037), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitetitle] = ACTIONS(5037), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteyear] = ACTIONS(5037), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5035), + [anon_sym_BSLASHcitedate] = ACTIONS(5037), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5035), + [anon_sym_BSLASHciteurl] = ACTIONS(5037), + [anon_sym_BSLASHfullcite] = ACTIONS(5037), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5037), + [anon_sym_BSLASHcitealt] = ACTIONS(5037), + [anon_sym_BSLASHcitealp] = ACTIONS(5037), + [anon_sym_BSLASHcitetext] = ACTIONS(5037), + [anon_sym_BSLASHparencite] = ACTIONS(5037), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHParencite] = ACTIONS(5037), + [anon_sym_BSLASHfootcite] = ACTIONS(5037), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5037), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5037), + [anon_sym_BSLASHtextcite] = ACTIONS(5037), + [anon_sym_BSLASHTextcite] = ACTIONS(5037), + [anon_sym_BSLASHsmartcite] = ACTIONS(5037), + [anon_sym_BSLASHSmartcite] = ACTIONS(5037), + [anon_sym_BSLASHsupercite] = ACTIONS(5037), + [anon_sym_BSLASHautocite] = ACTIONS(5037), + [anon_sym_BSLASHAutocite] = ACTIONS(5037), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5035), + [anon_sym_BSLASHvolcite] = ACTIONS(5037), + [anon_sym_BSLASHVolcite] = ACTIONS(5037), + [anon_sym_BSLASHpvolcite] = ACTIONS(5037), + [anon_sym_BSLASHPvolcite] = ACTIONS(5037), + [anon_sym_BSLASHfvolcite] = ACTIONS(5037), + [anon_sym_BSLASHftvolcite] = ACTIONS(5037), + [anon_sym_BSLASHsvolcite] = ACTIONS(5037), + [anon_sym_BSLASHSvolcite] = ACTIONS(5037), + [anon_sym_BSLASHtvolcite] = ACTIONS(5037), + [anon_sym_BSLASHTvolcite] = ACTIONS(5037), + [anon_sym_BSLASHavolcite] = ACTIONS(5037), + [anon_sym_BSLASHAvolcite] = ACTIONS(5037), + [anon_sym_BSLASHnotecite] = ACTIONS(5037), + [anon_sym_BSLASHNotecite] = ACTIONS(5037), + [anon_sym_BSLASHpnotecite] = ACTIONS(5037), + [anon_sym_BSLASHPnotecite] = ACTIONS(5037), + [anon_sym_BSLASHfnotecite] = ACTIONS(5037), + [anon_sym_BSLASHlabel] = ACTIONS(5037), + [anon_sym_BSLASHref] = ACTIONS(5037), + [anon_sym_BSLASHeqref] = ACTIONS(5037), + [anon_sym_BSLASHvref] = ACTIONS(5037), + [anon_sym_BSLASHVref] = ACTIONS(5037), + [anon_sym_BSLASHautoref] = ACTIONS(5037), + [anon_sym_BSLASHpageref] = ACTIONS(5037), + [anon_sym_BSLASHcref] = ACTIONS(5037), + [anon_sym_BSLASHCref] = ACTIONS(5037), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnameCref] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5037), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5037), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5037), + [anon_sym_BSLASHlabelcref] = ACTIONS(5037), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange] = ACTIONS(5037), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHCrefrange] = ACTIONS(5037), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5035), + [anon_sym_BSLASHnewlabel] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand] = ACTIONS(5037), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5037), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5037), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5035), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5037), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5035), + [anon_sym_BSLASHdef] = ACTIONS(5037), + [anon_sym_BSLASHlet] = ACTIONS(5037), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5037), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5037), + [anon_sym_BSLASHgls] = ACTIONS(5037), + [anon_sym_BSLASHGls] = ACTIONS(5037), + [anon_sym_BSLASHGLS] = ACTIONS(5037), + [anon_sym_BSLASHglspl] = ACTIONS(5037), + [anon_sym_BSLASHGlspl] = ACTIONS(5037), + [anon_sym_BSLASHGLSpl] = ACTIONS(5037), + [anon_sym_BSLASHglsdisp] = ACTIONS(5037), + [anon_sym_BSLASHglslink] = ACTIONS(5037), + [anon_sym_BSLASHglstext] = ACTIONS(5037), + [anon_sym_BSLASHGlstext] = ACTIONS(5037), + [anon_sym_BSLASHGLStext] = ACTIONS(5037), + [anon_sym_BSLASHglsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5037), + [anon_sym_BSLASHglsplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSplural] = ACTIONS(5037), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5037), + [anon_sym_BSLASHglsname] = ACTIONS(5037), + [anon_sym_BSLASHGlsname] = ACTIONS(5037), + [anon_sym_BSLASHGLSname] = ACTIONS(5037), + [anon_sym_BSLASHglssymbol] = ACTIONS(5037), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5037), + [anon_sym_BSLASHglsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5037), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5037), + [anon_sym_BSLASHglsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5037), + [anon_sym_BSLASHglsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5037), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5037), + [anon_sym_BSLASHglsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5037), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5037), + [anon_sym_BSLASHglsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5037), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5037), + [anon_sym_BSLASHnewacronym] = ACTIONS(5037), + [anon_sym_BSLASHacrshort] = ACTIONS(5037), + [anon_sym_BSLASHAcrshort] = ACTIONS(5037), + [anon_sym_BSLASHACRshort] = ACTIONS(5037), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5037), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5037), + [anon_sym_BSLASHacrlong] = ACTIONS(5037), + [anon_sym_BSLASHAcrlong] = ACTIONS(5037), + [anon_sym_BSLASHACRlong] = ACTIONS(5037), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5037), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5037), + [anon_sym_BSLASHacrfull] = ACTIONS(5037), + [anon_sym_BSLASHAcrfull] = ACTIONS(5037), + [anon_sym_BSLASHACRfull] = ACTIONS(5037), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5037), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5037), + [anon_sym_BSLASHacs] = ACTIONS(5037), + [anon_sym_BSLASHAcs] = ACTIONS(5037), + [anon_sym_BSLASHacsp] = ACTIONS(5037), + [anon_sym_BSLASHAcsp] = ACTIONS(5037), + [anon_sym_BSLASHacl] = ACTIONS(5037), + [anon_sym_BSLASHAcl] = ACTIONS(5037), + [anon_sym_BSLASHaclp] = ACTIONS(5037), + [anon_sym_BSLASHAclp] = ACTIONS(5037), + [anon_sym_BSLASHacf] = ACTIONS(5037), + [anon_sym_BSLASHAcf] = ACTIONS(5037), + [anon_sym_BSLASHacfp] = ACTIONS(5037), + [anon_sym_BSLASHAcfp] = ACTIONS(5037), + [anon_sym_BSLASHac] = ACTIONS(5037), + [anon_sym_BSLASHAc] = ACTIONS(5037), + [anon_sym_BSLASHacp] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5037), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5037), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5037), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5037), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5037), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5037), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5037), + [anon_sym_BSLASHcolor] = ACTIONS(5037), + [anon_sym_BSLASHcolorbox] = ACTIONS(5037), + [anon_sym_BSLASHtextcolor] = ACTIONS(5037), + [anon_sym_BSLASHpagecolor] = ACTIONS(5037), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5037), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5037), }, - [1541] = { - [sym_command_name] = ACTIONS(5101), + [1530] = { + [sym_command_name] = ACTIONS(5297), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5297), + [anon_sym_RBRACK] = ACTIONS(5295), + [anon_sym_COMMA] = ACTIONS(5295), + [anon_sym_EQ] = ACTIONS(5295), + [anon_sym_RBRACE] = ACTIONS(5295), + [sym_word] = ACTIONS(5297), + [sym_placeholder] = ACTIONS(5295), + [anon_sym_PLUS] = ACTIONS(5297), + [anon_sym_DASH] = ACTIONS(5297), + [anon_sym_STAR] = ACTIONS(5297), + [anon_sym_SLASH] = ACTIONS(5297), + [anon_sym_CARET] = ACTIONS(5297), + [anon_sym__] = ACTIONS(5297), + [anon_sym_LT] = ACTIONS(5297), + [anon_sym_GT] = ACTIONS(5297), + [anon_sym_BANG] = ACTIONS(5297), + [anon_sym_PIPE] = ACTIONS(5297), + [anon_sym_COLON] = ACTIONS(5297), + [anon_sym_SQUOTE] = ACTIONS(5297), + [anon_sym_BSLASHusepackage] = ACTIONS(5297), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5297), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5297), + [anon_sym_BSLASHinclude] = ACTIONS(5297), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5297), + [anon_sym_BSLASHinput] = ACTIONS(5297), + [anon_sym_BSLASHsubfile] = ACTIONS(5297), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5297), + [anon_sym_BSLASHbibliography] = ACTIONS(5297), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5297), + [anon_sym_BSLASHincludesvg] = ACTIONS(5297), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5297), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5297), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5297), + [anon_sym_BSLASHimport] = ACTIONS(5297), + [anon_sym_BSLASHsubimport] = ACTIONS(5297), + [anon_sym_BSLASHinputfrom] = ACTIONS(5297), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5297), + [anon_sym_BSLASHincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5297), + [anon_sym_BSLASHcaption] = ACTIONS(5297), + [anon_sym_BSLASHcite] = ACTIONS(5297), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCite] = ACTIONS(5297), + [anon_sym_BSLASHnocite] = ACTIONS(5297), + [anon_sym_BSLASHcitet] = ACTIONS(5297), + [anon_sym_BSLASHcitep] = ACTIONS(5297), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteauthor] = ACTIONS(5297), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5297), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitetitle] = ACTIONS(5297), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteyear] = ACTIONS(5297), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5295), + [anon_sym_BSLASHcitedate] = ACTIONS(5297), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5295), + [anon_sym_BSLASHciteurl] = ACTIONS(5297), + [anon_sym_BSLASHfullcite] = ACTIONS(5297), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5297), + [anon_sym_BSLASHcitealt] = ACTIONS(5297), + [anon_sym_BSLASHcitealp] = ACTIONS(5297), + [anon_sym_BSLASHcitetext] = ACTIONS(5297), + [anon_sym_BSLASHparencite] = ACTIONS(5297), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHParencite] = ACTIONS(5297), + [anon_sym_BSLASHfootcite] = ACTIONS(5297), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5297), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5297), + [anon_sym_BSLASHtextcite] = ACTIONS(5297), + [anon_sym_BSLASHTextcite] = ACTIONS(5297), + [anon_sym_BSLASHsmartcite] = ACTIONS(5297), + [anon_sym_BSLASHSmartcite] = ACTIONS(5297), + [anon_sym_BSLASHsupercite] = ACTIONS(5297), + [anon_sym_BSLASHautocite] = ACTIONS(5297), + [anon_sym_BSLASHAutocite] = ACTIONS(5297), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5295), + [anon_sym_BSLASHvolcite] = ACTIONS(5297), + [anon_sym_BSLASHVolcite] = ACTIONS(5297), + [anon_sym_BSLASHpvolcite] = ACTIONS(5297), + [anon_sym_BSLASHPvolcite] = ACTIONS(5297), + [anon_sym_BSLASHfvolcite] = ACTIONS(5297), + [anon_sym_BSLASHftvolcite] = ACTIONS(5297), + [anon_sym_BSLASHsvolcite] = ACTIONS(5297), + [anon_sym_BSLASHSvolcite] = ACTIONS(5297), + [anon_sym_BSLASHtvolcite] = ACTIONS(5297), + [anon_sym_BSLASHTvolcite] = ACTIONS(5297), + [anon_sym_BSLASHavolcite] = ACTIONS(5297), + [anon_sym_BSLASHAvolcite] = ACTIONS(5297), + [anon_sym_BSLASHnotecite] = ACTIONS(5297), + [anon_sym_BSLASHNotecite] = ACTIONS(5297), + [anon_sym_BSLASHpnotecite] = ACTIONS(5297), + [anon_sym_BSLASHPnotecite] = ACTIONS(5297), + [anon_sym_BSLASHfnotecite] = ACTIONS(5297), + [anon_sym_BSLASHlabel] = ACTIONS(5297), + [anon_sym_BSLASHref] = ACTIONS(5297), + [anon_sym_BSLASHeqref] = ACTIONS(5297), + [anon_sym_BSLASHvref] = ACTIONS(5297), + [anon_sym_BSLASHVref] = ACTIONS(5297), + [anon_sym_BSLASHautoref] = ACTIONS(5297), + [anon_sym_BSLASHpageref] = ACTIONS(5297), + [anon_sym_BSLASHcref] = ACTIONS(5297), + [anon_sym_BSLASHCref] = ACTIONS(5297), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnameCref] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5297), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5297), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5297), + [anon_sym_BSLASHlabelcref] = ACTIONS(5297), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange] = ACTIONS(5297), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHCrefrange] = ACTIONS(5297), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5295), + [anon_sym_BSLASHnewlabel] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand] = ACTIONS(5297), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5297), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5297), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5295), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5297), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5295), + [anon_sym_BSLASHdef] = ACTIONS(5297), + [anon_sym_BSLASHlet] = ACTIONS(5297), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5297), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5297), + [anon_sym_BSLASHgls] = ACTIONS(5297), + [anon_sym_BSLASHGls] = ACTIONS(5297), + [anon_sym_BSLASHGLS] = ACTIONS(5297), + [anon_sym_BSLASHglspl] = ACTIONS(5297), + [anon_sym_BSLASHGlspl] = ACTIONS(5297), + [anon_sym_BSLASHGLSpl] = ACTIONS(5297), + [anon_sym_BSLASHglsdisp] = ACTIONS(5297), + [anon_sym_BSLASHglslink] = ACTIONS(5297), + [anon_sym_BSLASHglstext] = ACTIONS(5297), + [anon_sym_BSLASHGlstext] = ACTIONS(5297), + [anon_sym_BSLASHGLStext] = ACTIONS(5297), + [anon_sym_BSLASHglsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5297), + [anon_sym_BSLASHglsplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSplural] = ACTIONS(5297), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5297), + [anon_sym_BSLASHglsname] = ACTIONS(5297), + [anon_sym_BSLASHGlsname] = ACTIONS(5297), + [anon_sym_BSLASHGLSname] = ACTIONS(5297), + [anon_sym_BSLASHglssymbol] = ACTIONS(5297), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5297), + [anon_sym_BSLASHglsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5297), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5297), + [anon_sym_BSLASHglsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5297), + [anon_sym_BSLASHglsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5297), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5297), + [anon_sym_BSLASHglsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5297), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5297), + [anon_sym_BSLASHglsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5297), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5297), + [anon_sym_BSLASHnewacronym] = ACTIONS(5297), + [anon_sym_BSLASHacrshort] = ACTIONS(5297), + [anon_sym_BSLASHAcrshort] = ACTIONS(5297), + [anon_sym_BSLASHACRshort] = ACTIONS(5297), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5297), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5297), + [anon_sym_BSLASHacrlong] = ACTIONS(5297), + [anon_sym_BSLASHAcrlong] = ACTIONS(5297), + [anon_sym_BSLASHACRlong] = ACTIONS(5297), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5297), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5297), + [anon_sym_BSLASHacrfull] = ACTIONS(5297), + [anon_sym_BSLASHAcrfull] = ACTIONS(5297), + [anon_sym_BSLASHACRfull] = ACTIONS(5297), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5297), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5297), + [anon_sym_BSLASHacs] = ACTIONS(5297), + [anon_sym_BSLASHAcs] = ACTIONS(5297), + [anon_sym_BSLASHacsp] = ACTIONS(5297), + [anon_sym_BSLASHAcsp] = ACTIONS(5297), + [anon_sym_BSLASHacl] = ACTIONS(5297), + [anon_sym_BSLASHAcl] = ACTIONS(5297), + [anon_sym_BSLASHaclp] = ACTIONS(5297), + [anon_sym_BSLASHAclp] = ACTIONS(5297), + [anon_sym_BSLASHacf] = ACTIONS(5297), + [anon_sym_BSLASHAcf] = ACTIONS(5297), + [anon_sym_BSLASHacfp] = ACTIONS(5297), + [anon_sym_BSLASHAcfp] = ACTIONS(5297), + [anon_sym_BSLASHac] = ACTIONS(5297), + [anon_sym_BSLASHAc] = ACTIONS(5297), + [anon_sym_BSLASHacp] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5297), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5297), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5297), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5297), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5297), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5297), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5297), + [anon_sym_BSLASHcolor] = ACTIONS(5297), + [anon_sym_BSLASHcolorbox] = ACTIONS(5297), + [anon_sym_BSLASHtextcolor] = ACTIONS(5297), + [anon_sym_BSLASHpagecolor] = ACTIONS(5297), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5297), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5297), + }, + [1531] = { + [sym_command_name] = ACTIONS(5293), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5293), + [anon_sym_RBRACK] = ACTIONS(5291), + [anon_sym_COMMA] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(5291), + [anon_sym_RBRACE] = ACTIONS(5291), + [sym_word] = ACTIONS(5293), + [sym_placeholder] = ACTIONS(5291), + [anon_sym_PLUS] = ACTIONS(5293), + [anon_sym_DASH] = ACTIONS(5293), + [anon_sym_STAR] = ACTIONS(5293), + [anon_sym_SLASH] = ACTIONS(5293), + [anon_sym_CARET] = ACTIONS(5293), + [anon_sym__] = ACTIONS(5293), + [anon_sym_LT] = ACTIONS(5293), + [anon_sym_GT] = ACTIONS(5293), + [anon_sym_BANG] = ACTIONS(5293), + [anon_sym_PIPE] = ACTIONS(5293), + [anon_sym_COLON] = ACTIONS(5293), + [anon_sym_SQUOTE] = ACTIONS(5293), + [anon_sym_BSLASHusepackage] = ACTIONS(5293), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5293), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5293), + [anon_sym_BSLASHinclude] = ACTIONS(5293), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5293), + [anon_sym_BSLASHinput] = ACTIONS(5293), + [anon_sym_BSLASHsubfile] = ACTIONS(5293), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5293), + [anon_sym_BSLASHbibliography] = ACTIONS(5293), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5293), + [anon_sym_BSLASHincludesvg] = ACTIONS(5293), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5293), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5293), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5293), + [anon_sym_BSLASHimport] = ACTIONS(5293), + [anon_sym_BSLASHsubimport] = ACTIONS(5293), + [anon_sym_BSLASHinputfrom] = ACTIONS(5293), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5293), + [anon_sym_BSLASHincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5293), + [anon_sym_BSLASHcaption] = ACTIONS(5293), + [anon_sym_BSLASHcite] = ACTIONS(5293), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCite] = ACTIONS(5293), + [anon_sym_BSLASHnocite] = ACTIONS(5293), + [anon_sym_BSLASHcitet] = ACTIONS(5293), + [anon_sym_BSLASHcitep] = ACTIONS(5293), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteauthor] = ACTIONS(5293), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5293), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitetitle] = ACTIONS(5293), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteyear] = ACTIONS(5293), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5291), + [anon_sym_BSLASHcitedate] = ACTIONS(5293), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5291), + [anon_sym_BSLASHciteurl] = ACTIONS(5293), + [anon_sym_BSLASHfullcite] = ACTIONS(5293), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5293), + [anon_sym_BSLASHcitealt] = ACTIONS(5293), + [anon_sym_BSLASHcitealp] = ACTIONS(5293), + [anon_sym_BSLASHcitetext] = ACTIONS(5293), + [anon_sym_BSLASHparencite] = ACTIONS(5293), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHParencite] = ACTIONS(5293), + [anon_sym_BSLASHfootcite] = ACTIONS(5293), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5293), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5293), + [anon_sym_BSLASHtextcite] = ACTIONS(5293), + [anon_sym_BSLASHTextcite] = ACTIONS(5293), + [anon_sym_BSLASHsmartcite] = ACTIONS(5293), + [anon_sym_BSLASHSmartcite] = ACTIONS(5293), + [anon_sym_BSLASHsupercite] = ACTIONS(5293), + [anon_sym_BSLASHautocite] = ACTIONS(5293), + [anon_sym_BSLASHAutocite] = ACTIONS(5293), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5291), + [anon_sym_BSLASHvolcite] = ACTIONS(5293), + [anon_sym_BSLASHVolcite] = ACTIONS(5293), + [anon_sym_BSLASHpvolcite] = ACTIONS(5293), + [anon_sym_BSLASHPvolcite] = ACTIONS(5293), + [anon_sym_BSLASHfvolcite] = ACTIONS(5293), + [anon_sym_BSLASHftvolcite] = ACTIONS(5293), + [anon_sym_BSLASHsvolcite] = ACTIONS(5293), + [anon_sym_BSLASHSvolcite] = ACTIONS(5293), + [anon_sym_BSLASHtvolcite] = ACTIONS(5293), + [anon_sym_BSLASHTvolcite] = ACTIONS(5293), + [anon_sym_BSLASHavolcite] = ACTIONS(5293), + [anon_sym_BSLASHAvolcite] = ACTIONS(5293), + [anon_sym_BSLASHnotecite] = ACTIONS(5293), + [anon_sym_BSLASHNotecite] = ACTIONS(5293), + [anon_sym_BSLASHpnotecite] = ACTIONS(5293), + [anon_sym_BSLASHPnotecite] = ACTIONS(5293), + [anon_sym_BSLASHfnotecite] = ACTIONS(5293), + [anon_sym_BSLASHlabel] = ACTIONS(5293), + [anon_sym_BSLASHref] = ACTIONS(5293), + [anon_sym_BSLASHeqref] = ACTIONS(5293), + [anon_sym_BSLASHvref] = ACTIONS(5293), + [anon_sym_BSLASHVref] = ACTIONS(5293), + [anon_sym_BSLASHautoref] = ACTIONS(5293), + [anon_sym_BSLASHpageref] = ACTIONS(5293), + [anon_sym_BSLASHcref] = ACTIONS(5293), + [anon_sym_BSLASHCref] = ACTIONS(5293), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnameCref] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5293), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5293), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5293), + [anon_sym_BSLASHlabelcref] = ACTIONS(5293), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange] = ACTIONS(5293), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHCrefrange] = ACTIONS(5293), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5291), + [anon_sym_BSLASHnewlabel] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand] = ACTIONS(5293), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5293), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5293), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5291), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5293), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5291), + [anon_sym_BSLASHdef] = ACTIONS(5293), + [anon_sym_BSLASHlet] = ACTIONS(5293), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5293), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5293), + [anon_sym_BSLASHgls] = ACTIONS(5293), + [anon_sym_BSLASHGls] = ACTIONS(5293), + [anon_sym_BSLASHGLS] = ACTIONS(5293), + [anon_sym_BSLASHglspl] = ACTIONS(5293), + [anon_sym_BSLASHGlspl] = ACTIONS(5293), + [anon_sym_BSLASHGLSpl] = ACTIONS(5293), + [anon_sym_BSLASHglsdisp] = ACTIONS(5293), + [anon_sym_BSLASHglslink] = ACTIONS(5293), + [anon_sym_BSLASHglstext] = ACTIONS(5293), + [anon_sym_BSLASHGlstext] = ACTIONS(5293), + [anon_sym_BSLASHGLStext] = ACTIONS(5293), + [anon_sym_BSLASHglsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5293), + [anon_sym_BSLASHglsplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSplural] = ACTIONS(5293), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5293), + [anon_sym_BSLASHglsname] = ACTIONS(5293), + [anon_sym_BSLASHGlsname] = ACTIONS(5293), + [anon_sym_BSLASHGLSname] = ACTIONS(5293), + [anon_sym_BSLASHglssymbol] = ACTIONS(5293), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5293), + [anon_sym_BSLASHglsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5293), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5293), + [anon_sym_BSLASHglsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5293), + [anon_sym_BSLASHglsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5293), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5293), + [anon_sym_BSLASHglsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5293), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5293), + [anon_sym_BSLASHglsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5293), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5293), + [anon_sym_BSLASHnewacronym] = ACTIONS(5293), + [anon_sym_BSLASHacrshort] = ACTIONS(5293), + [anon_sym_BSLASHAcrshort] = ACTIONS(5293), + [anon_sym_BSLASHACRshort] = ACTIONS(5293), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5293), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5293), + [anon_sym_BSLASHacrlong] = ACTIONS(5293), + [anon_sym_BSLASHAcrlong] = ACTIONS(5293), + [anon_sym_BSLASHACRlong] = ACTIONS(5293), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5293), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5293), + [anon_sym_BSLASHacrfull] = ACTIONS(5293), + [anon_sym_BSLASHAcrfull] = ACTIONS(5293), + [anon_sym_BSLASHACRfull] = ACTIONS(5293), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5293), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5293), + [anon_sym_BSLASHacs] = ACTIONS(5293), + [anon_sym_BSLASHAcs] = ACTIONS(5293), + [anon_sym_BSLASHacsp] = ACTIONS(5293), + [anon_sym_BSLASHAcsp] = ACTIONS(5293), + [anon_sym_BSLASHacl] = ACTIONS(5293), + [anon_sym_BSLASHAcl] = ACTIONS(5293), + [anon_sym_BSLASHaclp] = ACTIONS(5293), + [anon_sym_BSLASHAclp] = ACTIONS(5293), + [anon_sym_BSLASHacf] = ACTIONS(5293), + [anon_sym_BSLASHAcf] = ACTIONS(5293), + [anon_sym_BSLASHacfp] = ACTIONS(5293), + [anon_sym_BSLASHAcfp] = ACTIONS(5293), + [anon_sym_BSLASHac] = ACTIONS(5293), + [anon_sym_BSLASHAc] = ACTIONS(5293), + [anon_sym_BSLASHacp] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5293), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5293), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5293), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5293), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5293), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5293), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5293), + [anon_sym_BSLASHcolor] = ACTIONS(5293), + [anon_sym_BSLASHcolorbox] = ACTIONS(5293), + [anon_sym_BSLASHtextcolor] = ACTIONS(5293), + [anon_sym_BSLASHpagecolor] = ACTIONS(5293), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5293), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5293), + }, + [1532] = { + [sym_command_name] = ACTIONS(5289), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5289), + [anon_sym_RBRACK] = ACTIONS(5287), + [anon_sym_COMMA] = ACTIONS(5287), + [anon_sym_EQ] = ACTIONS(5287), + [anon_sym_RBRACE] = ACTIONS(5287), + [sym_word] = ACTIONS(5289), + [sym_placeholder] = ACTIONS(5287), + [anon_sym_PLUS] = ACTIONS(5289), + [anon_sym_DASH] = ACTIONS(5289), + [anon_sym_STAR] = ACTIONS(5289), + [anon_sym_SLASH] = ACTIONS(5289), + [anon_sym_CARET] = ACTIONS(5289), + [anon_sym__] = ACTIONS(5289), + [anon_sym_LT] = ACTIONS(5289), + [anon_sym_GT] = ACTIONS(5289), + [anon_sym_BANG] = ACTIONS(5289), + [anon_sym_PIPE] = ACTIONS(5289), + [anon_sym_COLON] = ACTIONS(5289), + [anon_sym_SQUOTE] = ACTIONS(5289), + [anon_sym_BSLASHusepackage] = ACTIONS(5289), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5289), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5289), + [anon_sym_BSLASHinclude] = ACTIONS(5289), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5289), + [anon_sym_BSLASHinput] = ACTIONS(5289), + [anon_sym_BSLASHsubfile] = ACTIONS(5289), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5289), + [anon_sym_BSLASHbibliography] = ACTIONS(5289), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5289), + [anon_sym_BSLASHincludesvg] = ACTIONS(5289), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5289), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5289), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5289), + [anon_sym_BSLASHimport] = ACTIONS(5289), + [anon_sym_BSLASHsubimport] = ACTIONS(5289), + [anon_sym_BSLASHinputfrom] = ACTIONS(5289), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5289), + [anon_sym_BSLASHincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5289), + [anon_sym_BSLASHcaption] = ACTIONS(5289), + [anon_sym_BSLASHcite] = ACTIONS(5289), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCite] = ACTIONS(5289), + [anon_sym_BSLASHnocite] = ACTIONS(5289), + [anon_sym_BSLASHcitet] = ACTIONS(5289), + [anon_sym_BSLASHcitep] = ACTIONS(5289), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteauthor] = ACTIONS(5289), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5289), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitetitle] = ACTIONS(5289), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteyear] = ACTIONS(5289), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5287), + [anon_sym_BSLASHcitedate] = ACTIONS(5289), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5287), + [anon_sym_BSLASHciteurl] = ACTIONS(5289), + [anon_sym_BSLASHfullcite] = ACTIONS(5289), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5289), + [anon_sym_BSLASHcitealt] = ACTIONS(5289), + [anon_sym_BSLASHcitealp] = ACTIONS(5289), + [anon_sym_BSLASHcitetext] = ACTIONS(5289), + [anon_sym_BSLASHparencite] = ACTIONS(5289), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHParencite] = ACTIONS(5289), + [anon_sym_BSLASHfootcite] = ACTIONS(5289), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5289), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5289), + [anon_sym_BSLASHtextcite] = ACTIONS(5289), + [anon_sym_BSLASHTextcite] = ACTIONS(5289), + [anon_sym_BSLASHsmartcite] = ACTIONS(5289), + [anon_sym_BSLASHSmartcite] = ACTIONS(5289), + [anon_sym_BSLASHsupercite] = ACTIONS(5289), + [anon_sym_BSLASHautocite] = ACTIONS(5289), + [anon_sym_BSLASHAutocite] = ACTIONS(5289), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5287), + [anon_sym_BSLASHvolcite] = ACTIONS(5289), + [anon_sym_BSLASHVolcite] = ACTIONS(5289), + [anon_sym_BSLASHpvolcite] = ACTIONS(5289), + [anon_sym_BSLASHPvolcite] = ACTIONS(5289), + [anon_sym_BSLASHfvolcite] = ACTIONS(5289), + [anon_sym_BSLASHftvolcite] = ACTIONS(5289), + [anon_sym_BSLASHsvolcite] = ACTIONS(5289), + [anon_sym_BSLASHSvolcite] = ACTIONS(5289), + [anon_sym_BSLASHtvolcite] = ACTIONS(5289), + [anon_sym_BSLASHTvolcite] = ACTIONS(5289), + [anon_sym_BSLASHavolcite] = ACTIONS(5289), + [anon_sym_BSLASHAvolcite] = ACTIONS(5289), + [anon_sym_BSLASHnotecite] = ACTIONS(5289), + [anon_sym_BSLASHNotecite] = ACTIONS(5289), + [anon_sym_BSLASHpnotecite] = ACTIONS(5289), + [anon_sym_BSLASHPnotecite] = ACTIONS(5289), + [anon_sym_BSLASHfnotecite] = ACTIONS(5289), + [anon_sym_BSLASHlabel] = ACTIONS(5289), + [anon_sym_BSLASHref] = ACTIONS(5289), + [anon_sym_BSLASHeqref] = ACTIONS(5289), + [anon_sym_BSLASHvref] = ACTIONS(5289), + [anon_sym_BSLASHVref] = ACTIONS(5289), + [anon_sym_BSLASHautoref] = ACTIONS(5289), + [anon_sym_BSLASHpageref] = ACTIONS(5289), + [anon_sym_BSLASHcref] = ACTIONS(5289), + [anon_sym_BSLASHCref] = ACTIONS(5289), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnameCref] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5289), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5289), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5289), + [anon_sym_BSLASHlabelcref] = ACTIONS(5289), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange] = ACTIONS(5289), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHCrefrange] = ACTIONS(5289), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5287), + [anon_sym_BSLASHnewlabel] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand] = ACTIONS(5289), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5289), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5289), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5287), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5289), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5287), + [anon_sym_BSLASHdef] = ACTIONS(5289), + [anon_sym_BSLASHlet] = ACTIONS(5289), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5289), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5289), + [anon_sym_BSLASHgls] = ACTIONS(5289), + [anon_sym_BSLASHGls] = ACTIONS(5289), + [anon_sym_BSLASHGLS] = ACTIONS(5289), + [anon_sym_BSLASHglspl] = ACTIONS(5289), + [anon_sym_BSLASHGlspl] = ACTIONS(5289), + [anon_sym_BSLASHGLSpl] = ACTIONS(5289), + [anon_sym_BSLASHglsdisp] = ACTIONS(5289), + [anon_sym_BSLASHglslink] = ACTIONS(5289), + [anon_sym_BSLASHglstext] = ACTIONS(5289), + [anon_sym_BSLASHGlstext] = ACTIONS(5289), + [anon_sym_BSLASHGLStext] = ACTIONS(5289), + [anon_sym_BSLASHglsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5289), + [anon_sym_BSLASHglsplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSplural] = ACTIONS(5289), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5289), + [anon_sym_BSLASHglsname] = ACTIONS(5289), + [anon_sym_BSLASHGlsname] = ACTIONS(5289), + [anon_sym_BSLASHGLSname] = ACTIONS(5289), + [anon_sym_BSLASHglssymbol] = ACTIONS(5289), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5289), + [anon_sym_BSLASHglsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5289), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5289), + [anon_sym_BSLASHglsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5289), + [anon_sym_BSLASHglsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5289), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5289), + [anon_sym_BSLASHglsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5289), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5289), + [anon_sym_BSLASHglsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5289), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5289), + [anon_sym_BSLASHnewacronym] = ACTIONS(5289), + [anon_sym_BSLASHacrshort] = ACTIONS(5289), + [anon_sym_BSLASHAcrshort] = ACTIONS(5289), + [anon_sym_BSLASHACRshort] = ACTIONS(5289), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5289), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5289), + [anon_sym_BSLASHacrlong] = ACTIONS(5289), + [anon_sym_BSLASHAcrlong] = ACTIONS(5289), + [anon_sym_BSLASHACRlong] = ACTIONS(5289), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5289), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5289), + [anon_sym_BSLASHacrfull] = ACTIONS(5289), + [anon_sym_BSLASHAcrfull] = ACTIONS(5289), + [anon_sym_BSLASHACRfull] = ACTIONS(5289), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5289), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5289), + [anon_sym_BSLASHacs] = ACTIONS(5289), + [anon_sym_BSLASHAcs] = ACTIONS(5289), + [anon_sym_BSLASHacsp] = ACTIONS(5289), + [anon_sym_BSLASHAcsp] = ACTIONS(5289), + [anon_sym_BSLASHacl] = ACTIONS(5289), + [anon_sym_BSLASHAcl] = ACTIONS(5289), + [anon_sym_BSLASHaclp] = ACTIONS(5289), + [anon_sym_BSLASHAclp] = ACTIONS(5289), + [anon_sym_BSLASHacf] = ACTIONS(5289), + [anon_sym_BSLASHAcf] = ACTIONS(5289), + [anon_sym_BSLASHacfp] = ACTIONS(5289), + [anon_sym_BSLASHAcfp] = ACTIONS(5289), + [anon_sym_BSLASHac] = ACTIONS(5289), + [anon_sym_BSLASHAc] = ACTIONS(5289), + [anon_sym_BSLASHacp] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5289), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5289), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5289), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5289), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5289), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5289), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5289), + [anon_sym_BSLASHcolor] = ACTIONS(5289), + [anon_sym_BSLASHcolorbox] = ACTIONS(5289), + [anon_sym_BSLASHtextcolor] = ACTIONS(5289), + [anon_sym_BSLASHpagecolor] = ACTIONS(5289), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5289), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5289), + }, + [1533] = { + [sym_command_name] = ACTIONS(4921), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4921), + [anon_sym_RBRACK] = ACTIONS(4919), + [anon_sym_COMMA] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(4919), + [anon_sym_RBRACE] = ACTIONS(4919), + [sym_word] = ACTIONS(4921), + [sym_placeholder] = ACTIONS(4919), + [anon_sym_PLUS] = ACTIONS(4921), + [anon_sym_DASH] = ACTIONS(4921), + [anon_sym_STAR] = ACTIONS(4921), + [anon_sym_SLASH] = ACTIONS(4921), + [anon_sym_CARET] = ACTIONS(4921), + [anon_sym__] = ACTIONS(4921), + [anon_sym_LT] = ACTIONS(4921), + [anon_sym_GT] = ACTIONS(4921), + [anon_sym_BANG] = ACTIONS(4921), + [anon_sym_PIPE] = ACTIONS(4921), + [anon_sym_COLON] = ACTIONS(4921), + [anon_sym_SQUOTE] = ACTIONS(4921), + [anon_sym_BSLASHusepackage] = ACTIONS(4921), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4921), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4921), + [anon_sym_BSLASHinclude] = ACTIONS(4921), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4921), + [anon_sym_BSLASHinput] = ACTIONS(4921), + [anon_sym_BSLASHsubfile] = ACTIONS(4921), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4921), + [anon_sym_BSLASHbibliography] = ACTIONS(4921), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4921), + [anon_sym_BSLASHincludesvg] = ACTIONS(4921), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4921), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4921), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4921), + [anon_sym_BSLASHimport] = ACTIONS(4921), + [anon_sym_BSLASHsubimport] = ACTIONS(4921), + [anon_sym_BSLASHinputfrom] = ACTIONS(4921), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4921), + [anon_sym_BSLASHincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4921), + [anon_sym_BSLASHcaption] = ACTIONS(4921), + [anon_sym_BSLASHcite] = ACTIONS(4921), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCite] = ACTIONS(4921), + [anon_sym_BSLASHnocite] = ACTIONS(4921), + [anon_sym_BSLASHcitet] = ACTIONS(4921), + [anon_sym_BSLASHcitep] = ACTIONS(4921), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteauthor] = ACTIONS(4921), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4921), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitetitle] = ACTIONS(4921), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteyear] = ACTIONS(4921), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4919), + [anon_sym_BSLASHcitedate] = ACTIONS(4921), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4919), + [anon_sym_BSLASHciteurl] = ACTIONS(4921), + [anon_sym_BSLASHfullcite] = ACTIONS(4921), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4921), + [anon_sym_BSLASHcitealt] = ACTIONS(4921), + [anon_sym_BSLASHcitealp] = ACTIONS(4921), + [anon_sym_BSLASHcitetext] = ACTIONS(4921), + [anon_sym_BSLASHparencite] = ACTIONS(4921), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHParencite] = ACTIONS(4921), + [anon_sym_BSLASHfootcite] = ACTIONS(4921), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4921), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4921), + [anon_sym_BSLASHtextcite] = ACTIONS(4921), + [anon_sym_BSLASHTextcite] = ACTIONS(4921), + [anon_sym_BSLASHsmartcite] = ACTIONS(4921), + [anon_sym_BSLASHSmartcite] = ACTIONS(4921), + [anon_sym_BSLASHsupercite] = ACTIONS(4921), + [anon_sym_BSLASHautocite] = ACTIONS(4921), + [anon_sym_BSLASHAutocite] = ACTIONS(4921), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4919), + [anon_sym_BSLASHvolcite] = ACTIONS(4921), + [anon_sym_BSLASHVolcite] = ACTIONS(4921), + [anon_sym_BSLASHpvolcite] = ACTIONS(4921), + [anon_sym_BSLASHPvolcite] = ACTIONS(4921), + [anon_sym_BSLASHfvolcite] = ACTIONS(4921), + [anon_sym_BSLASHftvolcite] = ACTIONS(4921), + [anon_sym_BSLASHsvolcite] = ACTIONS(4921), + [anon_sym_BSLASHSvolcite] = ACTIONS(4921), + [anon_sym_BSLASHtvolcite] = ACTIONS(4921), + [anon_sym_BSLASHTvolcite] = ACTIONS(4921), + [anon_sym_BSLASHavolcite] = ACTIONS(4921), + [anon_sym_BSLASHAvolcite] = ACTIONS(4921), + [anon_sym_BSLASHnotecite] = ACTIONS(4921), + [anon_sym_BSLASHNotecite] = ACTIONS(4921), + [anon_sym_BSLASHpnotecite] = ACTIONS(4921), + [anon_sym_BSLASHPnotecite] = ACTIONS(4921), + [anon_sym_BSLASHfnotecite] = ACTIONS(4921), + [anon_sym_BSLASHlabel] = ACTIONS(4921), + [anon_sym_BSLASHref] = ACTIONS(4921), + [anon_sym_BSLASHeqref] = ACTIONS(4921), + [anon_sym_BSLASHvref] = ACTIONS(4921), + [anon_sym_BSLASHVref] = ACTIONS(4921), + [anon_sym_BSLASHautoref] = ACTIONS(4921), + [anon_sym_BSLASHpageref] = ACTIONS(4921), + [anon_sym_BSLASHcref] = ACTIONS(4921), + [anon_sym_BSLASHCref] = ACTIONS(4921), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnameCref] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4921), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4921), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4921), + [anon_sym_BSLASHlabelcref] = ACTIONS(4921), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange] = ACTIONS(4921), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHCrefrange] = ACTIONS(4921), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4919), + [anon_sym_BSLASHnewlabel] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand] = ACTIONS(4921), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4921), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4921), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4919), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4921), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4919), + [anon_sym_BSLASHdef] = ACTIONS(4921), + [anon_sym_BSLASHlet] = ACTIONS(4921), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4921), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4921), + [anon_sym_BSLASHgls] = ACTIONS(4921), + [anon_sym_BSLASHGls] = ACTIONS(4921), + [anon_sym_BSLASHGLS] = ACTIONS(4921), + [anon_sym_BSLASHglspl] = ACTIONS(4921), + [anon_sym_BSLASHGlspl] = ACTIONS(4921), + [anon_sym_BSLASHGLSpl] = ACTIONS(4921), + [anon_sym_BSLASHglsdisp] = ACTIONS(4921), + [anon_sym_BSLASHglslink] = ACTIONS(4921), + [anon_sym_BSLASHglstext] = ACTIONS(4921), + [anon_sym_BSLASHGlstext] = ACTIONS(4921), + [anon_sym_BSLASHGLStext] = ACTIONS(4921), + [anon_sym_BSLASHglsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4921), + [anon_sym_BSLASHglsplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSplural] = ACTIONS(4921), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4921), + [anon_sym_BSLASHglsname] = ACTIONS(4921), + [anon_sym_BSLASHGlsname] = ACTIONS(4921), + [anon_sym_BSLASHGLSname] = ACTIONS(4921), + [anon_sym_BSLASHglssymbol] = ACTIONS(4921), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4921), + [anon_sym_BSLASHglsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4921), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4921), + [anon_sym_BSLASHglsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4921), + [anon_sym_BSLASHglsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4921), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4921), + [anon_sym_BSLASHglsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4921), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4921), + [anon_sym_BSLASHglsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4921), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4921), + [anon_sym_BSLASHnewacronym] = ACTIONS(4921), + [anon_sym_BSLASHacrshort] = ACTIONS(4921), + [anon_sym_BSLASHAcrshort] = ACTIONS(4921), + [anon_sym_BSLASHACRshort] = ACTIONS(4921), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4921), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4921), + [anon_sym_BSLASHacrlong] = ACTIONS(4921), + [anon_sym_BSLASHAcrlong] = ACTIONS(4921), + [anon_sym_BSLASHACRlong] = ACTIONS(4921), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4921), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4921), + [anon_sym_BSLASHacrfull] = ACTIONS(4921), + [anon_sym_BSLASHAcrfull] = ACTIONS(4921), + [anon_sym_BSLASHACRfull] = ACTIONS(4921), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4921), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4921), + [anon_sym_BSLASHacs] = ACTIONS(4921), + [anon_sym_BSLASHAcs] = ACTIONS(4921), + [anon_sym_BSLASHacsp] = ACTIONS(4921), + [anon_sym_BSLASHAcsp] = ACTIONS(4921), + [anon_sym_BSLASHacl] = ACTIONS(4921), + [anon_sym_BSLASHAcl] = ACTIONS(4921), + [anon_sym_BSLASHaclp] = ACTIONS(4921), + [anon_sym_BSLASHAclp] = ACTIONS(4921), + [anon_sym_BSLASHacf] = ACTIONS(4921), + [anon_sym_BSLASHAcf] = ACTIONS(4921), + [anon_sym_BSLASHacfp] = ACTIONS(4921), + [anon_sym_BSLASHAcfp] = ACTIONS(4921), + [anon_sym_BSLASHac] = ACTIONS(4921), + [anon_sym_BSLASHAc] = ACTIONS(4921), + [anon_sym_BSLASHacp] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4921), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4921), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4921), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4921), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4921), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4921), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4921), + [anon_sym_BSLASHcolor] = ACTIONS(4921), + [anon_sym_BSLASHcolorbox] = ACTIONS(4921), + [anon_sym_BSLASHtextcolor] = ACTIONS(4921), + [anon_sym_BSLASHpagecolor] = ACTIONS(4921), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4921), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4921), + }, + [1534] = { + [sym_command_name] = ACTIONS(5153), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5153), + [anon_sym_RBRACK] = ACTIONS(5151), + [anon_sym_COMMA] = ACTIONS(5151), + [anon_sym_EQ] = ACTIONS(5151), + [anon_sym_RBRACE] = ACTIONS(5151), + [sym_word] = ACTIONS(5153), + [sym_placeholder] = ACTIONS(5151), + [anon_sym_PLUS] = ACTIONS(5153), + [anon_sym_DASH] = ACTIONS(5153), + [anon_sym_STAR] = ACTIONS(5153), + [anon_sym_SLASH] = ACTIONS(5153), + [anon_sym_CARET] = ACTIONS(5153), + [anon_sym__] = ACTIONS(5153), + [anon_sym_LT] = ACTIONS(5153), + [anon_sym_GT] = ACTIONS(5153), + [anon_sym_BANG] = ACTIONS(5153), + [anon_sym_PIPE] = ACTIONS(5153), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_SQUOTE] = ACTIONS(5153), + [anon_sym_BSLASHusepackage] = ACTIONS(5153), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5153), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5153), + [anon_sym_BSLASHinclude] = ACTIONS(5153), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5153), + [anon_sym_BSLASHinput] = ACTIONS(5153), + [anon_sym_BSLASHsubfile] = ACTIONS(5153), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5153), + [anon_sym_BSLASHbibliography] = ACTIONS(5153), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5153), + [anon_sym_BSLASHincludesvg] = ACTIONS(5153), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5153), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5153), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5153), + [anon_sym_BSLASHimport] = ACTIONS(5153), + [anon_sym_BSLASHsubimport] = ACTIONS(5153), + [anon_sym_BSLASHinputfrom] = ACTIONS(5153), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5153), + [anon_sym_BSLASHincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5153), + [anon_sym_BSLASHcaption] = ACTIONS(5153), + [anon_sym_BSLASHcite] = ACTIONS(5153), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCite] = ACTIONS(5153), + [anon_sym_BSLASHnocite] = ACTIONS(5153), + [anon_sym_BSLASHcitet] = ACTIONS(5153), + [anon_sym_BSLASHcitep] = ACTIONS(5153), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteauthor] = ACTIONS(5153), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5153), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitetitle] = ACTIONS(5153), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteyear] = ACTIONS(5153), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5151), + [anon_sym_BSLASHcitedate] = ACTIONS(5153), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5151), + [anon_sym_BSLASHciteurl] = ACTIONS(5153), + [anon_sym_BSLASHfullcite] = ACTIONS(5153), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5153), + [anon_sym_BSLASHcitealt] = ACTIONS(5153), + [anon_sym_BSLASHcitealp] = ACTIONS(5153), + [anon_sym_BSLASHcitetext] = ACTIONS(5153), + [anon_sym_BSLASHparencite] = ACTIONS(5153), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHParencite] = ACTIONS(5153), + [anon_sym_BSLASHfootcite] = ACTIONS(5153), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5153), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5153), + [anon_sym_BSLASHtextcite] = ACTIONS(5153), + [anon_sym_BSLASHTextcite] = ACTIONS(5153), + [anon_sym_BSLASHsmartcite] = ACTIONS(5153), + [anon_sym_BSLASHSmartcite] = ACTIONS(5153), + [anon_sym_BSLASHsupercite] = ACTIONS(5153), + [anon_sym_BSLASHautocite] = ACTIONS(5153), + [anon_sym_BSLASHAutocite] = ACTIONS(5153), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5151), + [anon_sym_BSLASHvolcite] = ACTIONS(5153), + [anon_sym_BSLASHVolcite] = ACTIONS(5153), + [anon_sym_BSLASHpvolcite] = ACTIONS(5153), + [anon_sym_BSLASHPvolcite] = ACTIONS(5153), + [anon_sym_BSLASHfvolcite] = ACTIONS(5153), + [anon_sym_BSLASHftvolcite] = ACTIONS(5153), + [anon_sym_BSLASHsvolcite] = ACTIONS(5153), + [anon_sym_BSLASHSvolcite] = ACTIONS(5153), + [anon_sym_BSLASHtvolcite] = ACTIONS(5153), + [anon_sym_BSLASHTvolcite] = ACTIONS(5153), + [anon_sym_BSLASHavolcite] = ACTIONS(5153), + [anon_sym_BSLASHAvolcite] = ACTIONS(5153), + [anon_sym_BSLASHnotecite] = ACTIONS(5153), + [anon_sym_BSLASHNotecite] = ACTIONS(5153), + [anon_sym_BSLASHpnotecite] = ACTIONS(5153), + [anon_sym_BSLASHPnotecite] = ACTIONS(5153), + [anon_sym_BSLASHfnotecite] = ACTIONS(5153), + [anon_sym_BSLASHlabel] = ACTIONS(5153), + [anon_sym_BSLASHref] = ACTIONS(5153), + [anon_sym_BSLASHeqref] = ACTIONS(5153), + [anon_sym_BSLASHvref] = ACTIONS(5153), + [anon_sym_BSLASHVref] = ACTIONS(5153), + [anon_sym_BSLASHautoref] = ACTIONS(5153), + [anon_sym_BSLASHpageref] = ACTIONS(5153), + [anon_sym_BSLASHcref] = ACTIONS(5153), + [anon_sym_BSLASHCref] = ACTIONS(5153), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnameCref] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5153), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5153), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5153), + [anon_sym_BSLASHlabelcref] = ACTIONS(5153), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange] = ACTIONS(5153), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHCrefrange] = ACTIONS(5153), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5151), + [anon_sym_BSLASHnewlabel] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand] = ACTIONS(5153), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5153), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5153), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5151), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5153), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5151), + [anon_sym_BSLASHdef] = ACTIONS(5153), + [anon_sym_BSLASHlet] = ACTIONS(5153), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5153), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5153), + [anon_sym_BSLASHgls] = ACTIONS(5153), + [anon_sym_BSLASHGls] = ACTIONS(5153), + [anon_sym_BSLASHGLS] = ACTIONS(5153), + [anon_sym_BSLASHglspl] = ACTIONS(5153), + [anon_sym_BSLASHGlspl] = ACTIONS(5153), + [anon_sym_BSLASHGLSpl] = ACTIONS(5153), + [anon_sym_BSLASHglsdisp] = ACTIONS(5153), + [anon_sym_BSLASHglslink] = ACTIONS(5153), + [anon_sym_BSLASHglstext] = ACTIONS(5153), + [anon_sym_BSLASHGlstext] = ACTIONS(5153), + [anon_sym_BSLASHGLStext] = ACTIONS(5153), + [anon_sym_BSLASHglsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5153), + [anon_sym_BSLASHglsplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSplural] = ACTIONS(5153), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5153), + [anon_sym_BSLASHglsname] = ACTIONS(5153), + [anon_sym_BSLASHGlsname] = ACTIONS(5153), + [anon_sym_BSLASHGLSname] = ACTIONS(5153), + [anon_sym_BSLASHglssymbol] = ACTIONS(5153), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5153), + [anon_sym_BSLASHglsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5153), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5153), + [anon_sym_BSLASHglsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5153), + [anon_sym_BSLASHglsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5153), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5153), + [anon_sym_BSLASHglsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5153), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5153), + [anon_sym_BSLASHglsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5153), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5153), + [anon_sym_BSLASHnewacronym] = ACTIONS(5153), + [anon_sym_BSLASHacrshort] = ACTIONS(5153), + [anon_sym_BSLASHAcrshort] = ACTIONS(5153), + [anon_sym_BSLASHACRshort] = ACTIONS(5153), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5153), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5153), + [anon_sym_BSLASHacrlong] = ACTIONS(5153), + [anon_sym_BSLASHAcrlong] = ACTIONS(5153), + [anon_sym_BSLASHACRlong] = ACTIONS(5153), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5153), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5153), + [anon_sym_BSLASHacrfull] = ACTIONS(5153), + [anon_sym_BSLASHAcrfull] = ACTIONS(5153), + [anon_sym_BSLASHACRfull] = ACTIONS(5153), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5153), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5153), + [anon_sym_BSLASHacs] = ACTIONS(5153), + [anon_sym_BSLASHAcs] = ACTIONS(5153), + [anon_sym_BSLASHacsp] = ACTIONS(5153), + [anon_sym_BSLASHAcsp] = ACTIONS(5153), + [anon_sym_BSLASHacl] = ACTIONS(5153), + [anon_sym_BSLASHAcl] = ACTIONS(5153), + [anon_sym_BSLASHaclp] = ACTIONS(5153), + [anon_sym_BSLASHAclp] = ACTIONS(5153), + [anon_sym_BSLASHacf] = ACTIONS(5153), + [anon_sym_BSLASHAcf] = ACTIONS(5153), + [anon_sym_BSLASHacfp] = ACTIONS(5153), + [anon_sym_BSLASHAcfp] = ACTIONS(5153), + [anon_sym_BSLASHac] = ACTIONS(5153), + [anon_sym_BSLASHAc] = ACTIONS(5153), + [anon_sym_BSLASHacp] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5153), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5153), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5153), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5153), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5153), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5153), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5153), + [anon_sym_BSLASHcolor] = ACTIONS(5153), + [anon_sym_BSLASHcolorbox] = ACTIONS(5153), + [anon_sym_BSLASHtextcolor] = ACTIONS(5153), + [anon_sym_BSLASHpagecolor] = ACTIONS(5153), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5153), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5153), + }, + [1535] = { + [sym_command_name] = ACTIONS(4983), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5101), - [anon_sym_RBRACK] = ACTIONS(5099), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [sym_word] = ACTIONS(5101), - [sym_placeholder] = ACTIONS(5099), - [anon_sym_PLUS] = ACTIONS(5101), - [anon_sym_DASH] = ACTIONS(5101), - [anon_sym_STAR] = ACTIONS(5101), - [anon_sym_SLASH] = ACTIONS(5101), - [anon_sym_CARET] = ACTIONS(5101), - [anon_sym__] = ACTIONS(5101), - [anon_sym_LT] = ACTIONS(5101), - [anon_sym_GT] = ACTIONS(5101), - [anon_sym_BANG] = ACTIONS(5101), - [anon_sym_PIPE] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_SQUOTE] = ACTIONS(5101), - [anon_sym_BSLASHusepackage] = ACTIONS(5101), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5101), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5101), - [anon_sym_BSLASHinclude] = ACTIONS(5101), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5101), - [anon_sym_BSLASHinput] = ACTIONS(5101), - [anon_sym_BSLASHsubfile] = ACTIONS(5101), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5101), - [anon_sym_BSLASHbibliography] = ACTIONS(5101), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5101), - [anon_sym_BSLASHincludesvg] = ACTIONS(5101), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5101), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5101), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5101), - [anon_sym_BSLASHimport] = ACTIONS(5101), - [anon_sym_BSLASHsubimport] = ACTIONS(5101), - [anon_sym_BSLASHinputfrom] = ACTIONS(5101), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5101), - [anon_sym_BSLASHincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5101), - [anon_sym_BSLASHcaption] = ACTIONS(5101), - [anon_sym_BSLASHcite] = ACTIONS(5101), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCite] = ACTIONS(5101), - [anon_sym_BSLASHnocite] = ACTIONS(5101), - [anon_sym_BSLASHcitet] = ACTIONS(5101), - [anon_sym_BSLASHcitep] = ACTIONS(5101), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteauthor] = ACTIONS(5101), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5101), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitetitle] = ACTIONS(5101), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteyear] = ACTIONS(5101), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5099), - [anon_sym_BSLASHcitedate] = ACTIONS(5101), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5099), - [anon_sym_BSLASHciteurl] = ACTIONS(5101), - [anon_sym_BSLASHfullcite] = ACTIONS(5101), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5101), - [anon_sym_BSLASHcitealt] = ACTIONS(5101), - [anon_sym_BSLASHcitealp] = ACTIONS(5101), - [anon_sym_BSLASHcitetext] = ACTIONS(5101), - [anon_sym_BSLASHparencite] = ACTIONS(5101), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHParencite] = ACTIONS(5101), - [anon_sym_BSLASHfootcite] = ACTIONS(5101), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5101), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5101), - [anon_sym_BSLASHtextcite] = ACTIONS(5101), - [anon_sym_BSLASHTextcite] = ACTIONS(5101), - [anon_sym_BSLASHsmartcite] = ACTIONS(5101), - [anon_sym_BSLASHSmartcite] = ACTIONS(5101), - [anon_sym_BSLASHsupercite] = ACTIONS(5101), - [anon_sym_BSLASHautocite] = ACTIONS(5101), - [anon_sym_BSLASHAutocite] = ACTIONS(5101), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5099), - [anon_sym_BSLASHvolcite] = ACTIONS(5101), - [anon_sym_BSLASHVolcite] = ACTIONS(5101), - [anon_sym_BSLASHpvolcite] = ACTIONS(5101), - [anon_sym_BSLASHPvolcite] = ACTIONS(5101), - [anon_sym_BSLASHfvolcite] = ACTIONS(5101), - [anon_sym_BSLASHftvolcite] = ACTIONS(5101), - [anon_sym_BSLASHsvolcite] = ACTIONS(5101), - [anon_sym_BSLASHSvolcite] = ACTIONS(5101), - [anon_sym_BSLASHtvolcite] = ACTIONS(5101), - [anon_sym_BSLASHTvolcite] = ACTIONS(5101), - [anon_sym_BSLASHavolcite] = ACTIONS(5101), - [anon_sym_BSLASHAvolcite] = ACTIONS(5101), - [anon_sym_BSLASHnotecite] = ACTIONS(5101), - [anon_sym_BSLASHNotecite] = ACTIONS(5101), - [anon_sym_BSLASHpnotecite] = ACTIONS(5101), - [anon_sym_BSLASHPnotecite] = ACTIONS(5101), - [anon_sym_BSLASHfnotecite] = ACTIONS(5101), - [anon_sym_BSLASHlabel] = ACTIONS(5101), - [anon_sym_BSLASHref] = ACTIONS(5101), - [anon_sym_BSLASHeqref] = ACTIONS(5101), - [anon_sym_BSLASHvref] = ACTIONS(5101), - [anon_sym_BSLASHVref] = ACTIONS(5101), - [anon_sym_BSLASHautoref] = ACTIONS(5101), - [anon_sym_BSLASHpageref] = ACTIONS(5101), - [anon_sym_BSLASHcref] = ACTIONS(5101), - [anon_sym_BSLASHCref] = ACTIONS(5101), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnameCref] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5101), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5101), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5101), - [anon_sym_BSLASHlabelcref] = ACTIONS(5101), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange] = ACTIONS(5101), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHCrefrange] = ACTIONS(5101), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5099), - [anon_sym_BSLASHnewlabel] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand] = ACTIONS(5101), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5101), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5101), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5099), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5101), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5099), - [anon_sym_BSLASHdef] = ACTIONS(5101), - [anon_sym_BSLASHlet] = ACTIONS(5101), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5101), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5101), - [anon_sym_BSLASHgls] = ACTIONS(5101), - [anon_sym_BSLASHGls] = ACTIONS(5101), - [anon_sym_BSLASHGLS] = ACTIONS(5101), - [anon_sym_BSLASHglspl] = ACTIONS(5101), - [anon_sym_BSLASHGlspl] = ACTIONS(5101), - [anon_sym_BSLASHGLSpl] = ACTIONS(5101), - [anon_sym_BSLASHglsdisp] = ACTIONS(5101), - [anon_sym_BSLASHglslink] = ACTIONS(5101), - [anon_sym_BSLASHglstext] = ACTIONS(5101), - [anon_sym_BSLASHGlstext] = ACTIONS(5101), - [anon_sym_BSLASHGLStext] = ACTIONS(5101), - [anon_sym_BSLASHglsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5101), - [anon_sym_BSLASHglsplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSplural] = ACTIONS(5101), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5101), - [anon_sym_BSLASHglsname] = ACTIONS(5101), - [anon_sym_BSLASHGlsname] = ACTIONS(5101), - [anon_sym_BSLASHGLSname] = ACTIONS(5101), - [anon_sym_BSLASHglssymbol] = ACTIONS(5101), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5101), - [anon_sym_BSLASHglsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5101), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5101), - [anon_sym_BSLASHglsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5101), - [anon_sym_BSLASHglsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5101), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5101), - [anon_sym_BSLASHglsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5101), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5101), - [anon_sym_BSLASHglsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5101), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5101), - [anon_sym_BSLASHnewacronym] = ACTIONS(5101), - [anon_sym_BSLASHacrshort] = ACTIONS(5101), - [anon_sym_BSLASHAcrshort] = ACTIONS(5101), - [anon_sym_BSLASHACRshort] = ACTIONS(5101), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5101), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5101), - [anon_sym_BSLASHacrlong] = ACTIONS(5101), - [anon_sym_BSLASHAcrlong] = ACTIONS(5101), - [anon_sym_BSLASHACRlong] = ACTIONS(5101), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5101), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5101), - [anon_sym_BSLASHacrfull] = ACTIONS(5101), - [anon_sym_BSLASHAcrfull] = ACTIONS(5101), - [anon_sym_BSLASHACRfull] = ACTIONS(5101), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5101), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5101), - [anon_sym_BSLASHacs] = ACTIONS(5101), - [anon_sym_BSLASHAcs] = ACTIONS(5101), - [anon_sym_BSLASHacsp] = ACTIONS(5101), - [anon_sym_BSLASHAcsp] = ACTIONS(5101), - [anon_sym_BSLASHacl] = ACTIONS(5101), - [anon_sym_BSLASHAcl] = ACTIONS(5101), - [anon_sym_BSLASHaclp] = ACTIONS(5101), - [anon_sym_BSLASHAclp] = ACTIONS(5101), - [anon_sym_BSLASHacf] = ACTIONS(5101), - [anon_sym_BSLASHAcf] = ACTIONS(5101), - [anon_sym_BSLASHacfp] = ACTIONS(5101), - [anon_sym_BSLASHAcfp] = ACTIONS(5101), - [anon_sym_BSLASHac] = ACTIONS(5101), - [anon_sym_BSLASHAc] = ACTIONS(5101), - [anon_sym_BSLASHacp] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5101), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5101), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5101), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5101), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5101), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5101), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5101), - [anon_sym_BSLASHcolor] = ACTIONS(5101), - [anon_sym_BSLASHcolorbox] = ACTIONS(5101), - [anon_sym_BSLASHtextcolor] = ACTIONS(5101), - [anon_sym_BSLASHpagecolor] = ACTIONS(5101), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5101), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5101), - }, - [1542] = { - [sym_command_name] = ACTIONS(5247), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5247), - [anon_sym_RBRACK] = ACTIONS(5245), - [anon_sym_COMMA] = ACTIONS(5245), - [anon_sym_EQ] = ACTIONS(5245), - [anon_sym_RBRACE] = ACTIONS(5245), - [sym_word] = ACTIONS(5247), - [sym_placeholder] = ACTIONS(5245), - [anon_sym_PLUS] = ACTIONS(5247), - [anon_sym_DASH] = ACTIONS(5247), - [anon_sym_STAR] = ACTIONS(5247), - [anon_sym_SLASH] = ACTIONS(5247), - [anon_sym_CARET] = ACTIONS(5247), - [anon_sym__] = ACTIONS(5247), - [anon_sym_LT] = ACTIONS(5247), - [anon_sym_GT] = ACTIONS(5247), - [anon_sym_BANG] = ACTIONS(5247), - [anon_sym_PIPE] = ACTIONS(5247), - [anon_sym_COLON] = ACTIONS(5247), - [anon_sym_SQUOTE] = ACTIONS(5247), - [anon_sym_BSLASHusepackage] = ACTIONS(5247), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5247), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5247), - [anon_sym_BSLASHinclude] = ACTIONS(5247), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5247), - [anon_sym_BSLASHinput] = ACTIONS(5247), - [anon_sym_BSLASHsubfile] = ACTIONS(5247), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5247), - [anon_sym_BSLASHbibliography] = ACTIONS(5247), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5247), - [anon_sym_BSLASHincludesvg] = ACTIONS(5247), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5247), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5247), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5247), - [anon_sym_BSLASHimport] = ACTIONS(5247), - [anon_sym_BSLASHsubimport] = ACTIONS(5247), - [anon_sym_BSLASHinputfrom] = ACTIONS(5247), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5247), - [anon_sym_BSLASHincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5247), - [anon_sym_BSLASHcaption] = ACTIONS(5247), - [anon_sym_BSLASHcite] = ACTIONS(5247), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCite] = ACTIONS(5247), - [anon_sym_BSLASHnocite] = ACTIONS(5247), - [anon_sym_BSLASHcitet] = ACTIONS(5247), - [anon_sym_BSLASHcitep] = ACTIONS(5247), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteauthor] = ACTIONS(5247), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5247), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitetitle] = ACTIONS(5247), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteyear] = ACTIONS(5247), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5245), - [anon_sym_BSLASHcitedate] = ACTIONS(5247), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5245), - [anon_sym_BSLASHciteurl] = ACTIONS(5247), - [anon_sym_BSLASHfullcite] = ACTIONS(5247), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5247), - [anon_sym_BSLASHcitealt] = ACTIONS(5247), - [anon_sym_BSLASHcitealp] = ACTIONS(5247), - [anon_sym_BSLASHcitetext] = ACTIONS(5247), - [anon_sym_BSLASHparencite] = ACTIONS(5247), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHParencite] = ACTIONS(5247), - [anon_sym_BSLASHfootcite] = ACTIONS(5247), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5247), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5247), - [anon_sym_BSLASHtextcite] = ACTIONS(5247), - [anon_sym_BSLASHTextcite] = ACTIONS(5247), - [anon_sym_BSLASHsmartcite] = ACTIONS(5247), - [anon_sym_BSLASHSmartcite] = ACTIONS(5247), - [anon_sym_BSLASHsupercite] = ACTIONS(5247), - [anon_sym_BSLASHautocite] = ACTIONS(5247), - [anon_sym_BSLASHAutocite] = ACTIONS(5247), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5245), - [anon_sym_BSLASHvolcite] = ACTIONS(5247), - [anon_sym_BSLASHVolcite] = ACTIONS(5247), - [anon_sym_BSLASHpvolcite] = ACTIONS(5247), - [anon_sym_BSLASHPvolcite] = ACTIONS(5247), - [anon_sym_BSLASHfvolcite] = ACTIONS(5247), - [anon_sym_BSLASHftvolcite] = ACTIONS(5247), - [anon_sym_BSLASHsvolcite] = ACTIONS(5247), - [anon_sym_BSLASHSvolcite] = ACTIONS(5247), - [anon_sym_BSLASHtvolcite] = ACTIONS(5247), - [anon_sym_BSLASHTvolcite] = ACTIONS(5247), - [anon_sym_BSLASHavolcite] = ACTIONS(5247), - [anon_sym_BSLASHAvolcite] = ACTIONS(5247), - [anon_sym_BSLASHnotecite] = ACTIONS(5247), - [anon_sym_BSLASHNotecite] = ACTIONS(5247), - [anon_sym_BSLASHpnotecite] = ACTIONS(5247), - [anon_sym_BSLASHPnotecite] = ACTIONS(5247), - [anon_sym_BSLASHfnotecite] = ACTIONS(5247), - [anon_sym_BSLASHlabel] = ACTIONS(5247), - [anon_sym_BSLASHref] = ACTIONS(5247), - [anon_sym_BSLASHeqref] = ACTIONS(5247), - [anon_sym_BSLASHvref] = ACTIONS(5247), - [anon_sym_BSLASHVref] = ACTIONS(5247), - [anon_sym_BSLASHautoref] = ACTIONS(5247), - [anon_sym_BSLASHpageref] = ACTIONS(5247), - [anon_sym_BSLASHcref] = ACTIONS(5247), - [anon_sym_BSLASHCref] = ACTIONS(5247), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnameCref] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5247), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5247), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5247), - [anon_sym_BSLASHlabelcref] = ACTIONS(5247), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange] = ACTIONS(5247), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHCrefrange] = ACTIONS(5247), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5245), - [anon_sym_BSLASHnewlabel] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand] = ACTIONS(5247), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5247), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5247), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5245), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5247), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5245), - [anon_sym_BSLASHdef] = ACTIONS(5247), - [anon_sym_BSLASHlet] = ACTIONS(5247), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5247), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5247), - [anon_sym_BSLASHgls] = ACTIONS(5247), - [anon_sym_BSLASHGls] = ACTIONS(5247), - [anon_sym_BSLASHGLS] = ACTIONS(5247), - [anon_sym_BSLASHglspl] = ACTIONS(5247), - [anon_sym_BSLASHGlspl] = ACTIONS(5247), - [anon_sym_BSLASHGLSpl] = ACTIONS(5247), - [anon_sym_BSLASHglsdisp] = ACTIONS(5247), - [anon_sym_BSLASHglslink] = ACTIONS(5247), - [anon_sym_BSLASHglstext] = ACTIONS(5247), - [anon_sym_BSLASHGlstext] = ACTIONS(5247), - [anon_sym_BSLASHGLStext] = ACTIONS(5247), - [anon_sym_BSLASHglsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5247), - [anon_sym_BSLASHglsplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSplural] = ACTIONS(5247), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5247), - [anon_sym_BSLASHglsname] = ACTIONS(5247), - [anon_sym_BSLASHGlsname] = ACTIONS(5247), - [anon_sym_BSLASHGLSname] = ACTIONS(5247), - [anon_sym_BSLASHglssymbol] = ACTIONS(5247), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5247), - [anon_sym_BSLASHglsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5247), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5247), - [anon_sym_BSLASHglsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5247), - [anon_sym_BSLASHglsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5247), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5247), - [anon_sym_BSLASHglsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5247), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5247), - [anon_sym_BSLASHglsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5247), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5247), - [anon_sym_BSLASHnewacronym] = ACTIONS(5247), - [anon_sym_BSLASHacrshort] = ACTIONS(5247), - [anon_sym_BSLASHAcrshort] = ACTIONS(5247), - [anon_sym_BSLASHACRshort] = ACTIONS(5247), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5247), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5247), - [anon_sym_BSLASHacrlong] = ACTIONS(5247), - [anon_sym_BSLASHAcrlong] = ACTIONS(5247), - [anon_sym_BSLASHACRlong] = ACTIONS(5247), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5247), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5247), - [anon_sym_BSLASHacrfull] = ACTIONS(5247), - [anon_sym_BSLASHAcrfull] = ACTIONS(5247), - [anon_sym_BSLASHACRfull] = ACTIONS(5247), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5247), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5247), - [anon_sym_BSLASHacs] = ACTIONS(5247), - [anon_sym_BSLASHAcs] = ACTIONS(5247), - [anon_sym_BSLASHacsp] = ACTIONS(5247), - [anon_sym_BSLASHAcsp] = ACTIONS(5247), - [anon_sym_BSLASHacl] = ACTIONS(5247), - [anon_sym_BSLASHAcl] = ACTIONS(5247), - [anon_sym_BSLASHaclp] = ACTIONS(5247), - [anon_sym_BSLASHAclp] = ACTIONS(5247), - [anon_sym_BSLASHacf] = ACTIONS(5247), - [anon_sym_BSLASHAcf] = ACTIONS(5247), - [anon_sym_BSLASHacfp] = ACTIONS(5247), - [anon_sym_BSLASHAcfp] = ACTIONS(5247), - [anon_sym_BSLASHac] = ACTIONS(5247), - [anon_sym_BSLASHAc] = ACTIONS(5247), - [anon_sym_BSLASHacp] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5247), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5247), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5247), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5247), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5247), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5247), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5247), - [anon_sym_BSLASHcolor] = ACTIONS(5247), - [anon_sym_BSLASHcolorbox] = ACTIONS(5247), - [anon_sym_BSLASHtextcolor] = ACTIONS(5247), - [anon_sym_BSLASHpagecolor] = ACTIONS(5247), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5247), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5247), + [anon_sym_BSLASHiffalse] = ACTIONS(4983), + [anon_sym_RBRACK] = ACTIONS(4981), + [anon_sym_COMMA] = ACTIONS(4981), + [anon_sym_EQ] = ACTIONS(4981), + [anon_sym_RBRACE] = ACTIONS(4981), + [sym_word] = ACTIONS(4983), + [sym_placeholder] = ACTIONS(4981), + [anon_sym_PLUS] = ACTIONS(4983), + [anon_sym_DASH] = ACTIONS(4983), + [anon_sym_STAR] = ACTIONS(4983), + [anon_sym_SLASH] = ACTIONS(4983), + [anon_sym_CARET] = ACTIONS(4983), + [anon_sym__] = ACTIONS(4983), + [anon_sym_LT] = ACTIONS(4983), + [anon_sym_GT] = ACTIONS(4983), + [anon_sym_BANG] = ACTIONS(4983), + [anon_sym_PIPE] = ACTIONS(4983), + [anon_sym_COLON] = ACTIONS(4983), + [anon_sym_SQUOTE] = ACTIONS(4983), + [anon_sym_BSLASHusepackage] = ACTIONS(4983), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4983), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4983), + [anon_sym_BSLASHinclude] = ACTIONS(4983), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4983), + [anon_sym_BSLASHinput] = ACTIONS(4983), + [anon_sym_BSLASHsubfile] = ACTIONS(4983), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4983), + [anon_sym_BSLASHbibliography] = ACTIONS(4983), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4983), + [anon_sym_BSLASHincludesvg] = ACTIONS(4983), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4983), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4983), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4983), + [anon_sym_BSLASHimport] = ACTIONS(4983), + [anon_sym_BSLASHsubimport] = ACTIONS(4983), + [anon_sym_BSLASHinputfrom] = ACTIONS(4983), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4983), + [anon_sym_BSLASHincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4983), + [anon_sym_BSLASHcaption] = ACTIONS(4983), + [anon_sym_BSLASHcite] = ACTIONS(4983), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCite] = ACTIONS(4983), + [anon_sym_BSLASHnocite] = ACTIONS(4983), + [anon_sym_BSLASHcitet] = ACTIONS(4983), + [anon_sym_BSLASHcitep] = ACTIONS(4983), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteauthor] = ACTIONS(4983), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4983), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitetitle] = ACTIONS(4983), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteyear] = ACTIONS(4983), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4981), + [anon_sym_BSLASHcitedate] = ACTIONS(4983), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4981), + [anon_sym_BSLASHciteurl] = ACTIONS(4983), + [anon_sym_BSLASHfullcite] = ACTIONS(4983), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4983), + [anon_sym_BSLASHcitealt] = ACTIONS(4983), + [anon_sym_BSLASHcitealp] = ACTIONS(4983), + [anon_sym_BSLASHcitetext] = ACTIONS(4983), + [anon_sym_BSLASHparencite] = ACTIONS(4983), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHParencite] = ACTIONS(4983), + [anon_sym_BSLASHfootcite] = ACTIONS(4983), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4983), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4983), + [anon_sym_BSLASHtextcite] = ACTIONS(4983), + [anon_sym_BSLASHTextcite] = ACTIONS(4983), + [anon_sym_BSLASHsmartcite] = ACTIONS(4983), + [anon_sym_BSLASHSmartcite] = ACTIONS(4983), + [anon_sym_BSLASHsupercite] = ACTIONS(4983), + [anon_sym_BSLASHautocite] = ACTIONS(4983), + [anon_sym_BSLASHAutocite] = ACTIONS(4983), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4981), + [anon_sym_BSLASHvolcite] = ACTIONS(4983), + [anon_sym_BSLASHVolcite] = ACTIONS(4983), + [anon_sym_BSLASHpvolcite] = ACTIONS(4983), + [anon_sym_BSLASHPvolcite] = ACTIONS(4983), + [anon_sym_BSLASHfvolcite] = ACTIONS(4983), + [anon_sym_BSLASHftvolcite] = ACTIONS(4983), + [anon_sym_BSLASHsvolcite] = ACTIONS(4983), + [anon_sym_BSLASHSvolcite] = ACTIONS(4983), + [anon_sym_BSLASHtvolcite] = ACTIONS(4983), + [anon_sym_BSLASHTvolcite] = ACTIONS(4983), + [anon_sym_BSLASHavolcite] = ACTIONS(4983), + [anon_sym_BSLASHAvolcite] = ACTIONS(4983), + [anon_sym_BSLASHnotecite] = ACTIONS(4983), + [anon_sym_BSLASHNotecite] = ACTIONS(4983), + [anon_sym_BSLASHpnotecite] = ACTIONS(4983), + [anon_sym_BSLASHPnotecite] = ACTIONS(4983), + [anon_sym_BSLASHfnotecite] = ACTIONS(4983), + [anon_sym_BSLASHlabel] = ACTIONS(4983), + [anon_sym_BSLASHref] = ACTIONS(4983), + [anon_sym_BSLASHeqref] = ACTIONS(4983), + [anon_sym_BSLASHvref] = ACTIONS(4983), + [anon_sym_BSLASHVref] = ACTIONS(4983), + [anon_sym_BSLASHautoref] = ACTIONS(4983), + [anon_sym_BSLASHpageref] = ACTIONS(4983), + [anon_sym_BSLASHcref] = ACTIONS(4983), + [anon_sym_BSLASHCref] = ACTIONS(4983), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnameCref] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4983), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4983), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4983), + [anon_sym_BSLASHlabelcref] = ACTIONS(4983), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange] = ACTIONS(4983), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHCrefrange] = ACTIONS(4983), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4981), + [anon_sym_BSLASHnewlabel] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand] = ACTIONS(4983), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4983), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4983), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4981), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4983), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4981), + [anon_sym_BSLASHdef] = ACTIONS(4983), + [anon_sym_BSLASHlet] = ACTIONS(4983), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4983), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4983), + [anon_sym_BSLASHgls] = ACTIONS(4983), + [anon_sym_BSLASHGls] = ACTIONS(4983), + [anon_sym_BSLASHGLS] = ACTIONS(4983), + [anon_sym_BSLASHglspl] = ACTIONS(4983), + [anon_sym_BSLASHGlspl] = ACTIONS(4983), + [anon_sym_BSLASHGLSpl] = ACTIONS(4983), + [anon_sym_BSLASHglsdisp] = ACTIONS(4983), + [anon_sym_BSLASHglslink] = ACTIONS(4983), + [anon_sym_BSLASHglstext] = ACTIONS(4983), + [anon_sym_BSLASHGlstext] = ACTIONS(4983), + [anon_sym_BSLASHGLStext] = ACTIONS(4983), + [anon_sym_BSLASHglsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4983), + [anon_sym_BSLASHglsplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSplural] = ACTIONS(4983), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4983), + [anon_sym_BSLASHglsname] = ACTIONS(4983), + [anon_sym_BSLASHGlsname] = ACTIONS(4983), + [anon_sym_BSLASHGLSname] = ACTIONS(4983), + [anon_sym_BSLASHglssymbol] = ACTIONS(4983), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4983), + [anon_sym_BSLASHglsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4983), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4983), + [anon_sym_BSLASHglsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4983), + [anon_sym_BSLASHglsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4983), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4983), + [anon_sym_BSLASHglsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4983), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4983), + [anon_sym_BSLASHglsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4983), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4983), + [anon_sym_BSLASHnewacronym] = ACTIONS(4983), + [anon_sym_BSLASHacrshort] = ACTIONS(4983), + [anon_sym_BSLASHAcrshort] = ACTIONS(4983), + [anon_sym_BSLASHACRshort] = ACTIONS(4983), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4983), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4983), + [anon_sym_BSLASHacrlong] = ACTIONS(4983), + [anon_sym_BSLASHAcrlong] = ACTIONS(4983), + [anon_sym_BSLASHACRlong] = ACTIONS(4983), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4983), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4983), + [anon_sym_BSLASHacrfull] = ACTIONS(4983), + [anon_sym_BSLASHAcrfull] = ACTIONS(4983), + [anon_sym_BSLASHACRfull] = ACTIONS(4983), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4983), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4983), + [anon_sym_BSLASHacs] = ACTIONS(4983), + [anon_sym_BSLASHAcs] = ACTIONS(4983), + [anon_sym_BSLASHacsp] = ACTIONS(4983), + [anon_sym_BSLASHAcsp] = ACTIONS(4983), + [anon_sym_BSLASHacl] = ACTIONS(4983), + [anon_sym_BSLASHAcl] = ACTIONS(4983), + [anon_sym_BSLASHaclp] = ACTIONS(4983), + [anon_sym_BSLASHAclp] = ACTIONS(4983), + [anon_sym_BSLASHacf] = ACTIONS(4983), + [anon_sym_BSLASHAcf] = ACTIONS(4983), + [anon_sym_BSLASHacfp] = ACTIONS(4983), + [anon_sym_BSLASHAcfp] = ACTIONS(4983), + [anon_sym_BSLASHac] = ACTIONS(4983), + [anon_sym_BSLASHAc] = ACTIONS(4983), + [anon_sym_BSLASHacp] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4983), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4983), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4983), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4983), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4983), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4983), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4983), + [anon_sym_BSLASHcolor] = ACTIONS(4983), + [anon_sym_BSLASHcolorbox] = ACTIONS(4983), + [anon_sym_BSLASHtextcolor] = ACTIONS(4983), + [anon_sym_BSLASHpagecolor] = ACTIONS(4983), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4983), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4983), }, - [1543] = { + [1536] = { [sym_command_name] = ACTIONS(4987), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), @@ -446984,6447 +447908,9765 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BSLASHusepgflibrary] = ACTIONS(4987), [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4987), }, - [1544] = { - [sym_command_name] = ACTIONS(5243), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5243), - [anon_sym_RBRACK] = ACTIONS(5241), - [anon_sym_COMMA] = ACTIONS(5241), - [anon_sym_EQ] = ACTIONS(5241), - [anon_sym_RBRACE] = ACTIONS(5241), - [sym_word] = ACTIONS(5243), - [sym_placeholder] = ACTIONS(5241), - [anon_sym_PLUS] = ACTIONS(5243), - [anon_sym_DASH] = ACTIONS(5243), - [anon_sym_STAR] = ACTIONS(5243), - [anon_sym_SLASH] = ACTIONS(5243), - [anon_sym_CARET] = ACTIONS(5243), - [anon_sym__] = ACTIONS(5243), - [anon_sym_LT] = ACTIONS(5243), - [anon_sym_GT] = ACTIONS(5243), - [anon_sym_BANG] = ACTIONS(5243), - [anon_sym_PIPE] = ACTIONS(5243), - [anon_sym_COLON] = ACTIONS(5243), - [anon_sym_SQUOTE] = ACTIONS(5243), - [anon_sym_BSLASHusepackage] = ACTIONS(5243), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5243), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5243), - [anon_sym_BSLASHinclude] = ACTIONS(5243), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5243), - [anon_sym_BSLASHinput] = ACTIONS(5243), - [anon_sym_BSLASHsubfile] = ACTIONS(5243), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5243), - [anon_sym_BSLASHbibliography] = ACTIONS(5243), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5243), - [anon_sym_BSLASHincludesvg] = ACTIONS(5243), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5243), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5243), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5243), - [anon_sym_BSLASHimport] = ACTIONS(5243), - [anon_sym_BSLASHsubimport] = ACTIONS(5243), - [anon_sym_BSLASHinputfrom] = ACTIONS(5243), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5243), - [anon_sym_BSLASHincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5243), - [anon_sym_BSLASHcaption] = ACTIONS(5243), - [anon_sym_BSLASHcite] = ACTIONS(5243), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCite] = ACTIONS(5243), - [anon_sym_BSLASHnocite] = ACTIONS(5243), - [anon_sym_BSLASHcitet] = ACTIONS(5243), - [anon_sym_BSLASHcitep] = ACTIONS(5243), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteauthor] = ACTIONS(5243), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5243), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitetitle] = ACTIONS(5243), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteyear] = ACTIONS(5243), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5241), - [anon_sym_BSLASHcitedate] = ACTIONS(5243), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5241), - [anon_sym_BSLASHciteurl] = ACTIONS(5243), - [anon_sym_BSLASHfullcite] = ACTIONS(5243), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5243), - [anon_sym_BSLASHcitealt] = ACTIONS(5243), - [anon_sym_BSLASHcitealp] = ACTIONS(5243), - [anon_sym_BSLASHcitetext] = ACTIONS(5243), - [anon_sym_BSLASHparencite] = ACTIONS(5243), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHParencite] = ACTIONS(5243), - [anon_sym_BSLASHfootcite] = ACTIONS(5243), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5243), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5243), - [anon_sym_BSLASHtextcite] = ACTIONS(5243), - [anon_sym_BSLASHTextcite] = ACTIONS(5243), - [anon_sym_BSLASHsmartcite] = ACTIONS(5243), - [anon_sym_BSLASHSmartcite] = ACTIONS(5243), - [anon_sym_BSLASHsupercite] = ACTIONS(5243), - [anon_sym_BSLASHautocite] = ACTIONS(5243), - [anon_sym_BSLASHAutocite] = ACTIONS(5243), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5241), - [anon_sym_BSLASHvolcite] = ACTIONS(5243), - [anon_sym_BSLASHVolcite] = ACTIONS(5243), - [anon_sym_BSLASHpvolcite] = ACTIONS(5243), - [anon_sym_BSLASHPvolcite] = ACTIONS(5243), - [anon_sym_BSLASHfvolcite] = ACTIONS(5243), - [anon_sym_BSLASHftvolcite] = ACTIONS(5243), - [anon_sym_BSLASHsvolcite] = ACTIONS(5243), - [anon_sym_BSLASHSvolcite] = ACTIONS(5243), - [anon_sym_BSLASHtvolcite] = ACTIONS(5243), - [anon_sym_BSLASHTvolcite] = ACTIONS(5243), - [anon_sym_BSLASHavolcite] = ACTIONS(5243), - [anon_sym_BSLASHAvolcite] = ACTIONS(5243), - [anon_sym_BSLASHnotecite] = ACTIONS(5243), - [anon_sym_BSLASHNotecite] = ACTIONS(5243), - [anon_sym_BSLASHpnotecite] = ACTIONS(5243), - [anon_sym_BSLASHPnotecite] = ACTIONS(5243), - [anon_sym_BSLASHfnotecite] = ACTIONS(5243), - [anon_sym_BSLASHlabel] = ACTIONS(5243), - [anon_sym_BSLASHref] = ACTIONS(5243), - [anon_sym_BSLASHeqref] = ACTIONS(5243), - [anon_sym_BSLASHvref] = ACTIONS(5243), - [anon_sym_BSLASHVref] = ACTIONS(5243), - [anon_sym_BSLASHautoref] = ACTIONS(5243), - [anon_sym_BSLASHpageref] = ACTIONS(5243), - [anon_sym_BSLASHcref] = ACTIONS(5243), - [anon_sym_BSLASHCref] = ACTIONS(5243), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnameCref] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5243), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5243), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5243), - [anon_sym_BSLASHlabelcref] = ACTIONS(5243), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange] = ACTIONS(5243), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHCrefrange] = ACTIONS(5243), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5241), - [anon_sym_BSLASHnewlabel] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand] = ACTIONS(5243), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5243), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5243), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5241), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5243), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5241), - [anon_sym_BSLASHdef] = ACTIONS(5243), - [anon_sym_BSLASHlet] = ACTIONS(5243), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5243), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5243), - [anon_sym_BSLASHgls] = ACTIONS(5243), - [anon_sym_BSLASHGls] = ACTIONS(5243), - [anon_sym_BSLASHGLS] = ACTIONS(5243), - [anon_sym_BSLASHglspl] = ACTIONS(5243), - [anon_sym_BSLASHGlspl] = ACTIONS(5243), - [anon_sym_BSLASHGLSpl] = ACTIONS(5243), - [anon_sym_BSLASHglsdisp] = ACTIONS(5243), - [anon_sym_BSLASHglslink] = ACTIONS(5243), - [anon_sym_BSLASHglstext] = ACTIONS(5243), - [anon_sym_BSLASHGlstext] = ACTIONS(5243), - [anon_sym_BSLASHGLStext] = ACTIONS(5243), - [anon_sym_BSLASHglsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5243), - [anon_sym_BSLASHglsplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSplural] = ACTIONS(5243), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5243), - [anon_sym_BSLASHglsname] = ACTIONS(5243), - [anon_sym_BSLASHGlsname] = ACTIONS(5243), - [anon_sym_BSLASHGLSname] = ACTIONS(5243), - [anon_sym_BSLASHglssymbol] = ACTIONS(5243), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5243), - [anon_sym_BSLASHglsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5243), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5243), - [anon_sym_BSLASHglsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5243), - [anon_sym_BSLASHglsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5243), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5243), - [anon_sym_BSLASHglsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5243), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5243), - [anon_sym_BSLASHglsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5243), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5243), - [anon_sym_BSLASHnewacronym] = ACTIONS(5243), - [anon_sym_BSLASHacrshort] = ACTIONS(5243), - [anon_sym_BSLASHAcrshort] = ACTIONS(5243), - [anon_sym_BSLASHACRshort] = ACTIONS(5243), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5243), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5243), - [anon_sym_BSLASHacrlong] = ACTIONS(5243), - [anon_sym_BSLASHAcrlong] = ACTIONS(5243), - [anon_sym_BSLASHACRlong] = ACTIONS(5243), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5243), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5243), - [anon_sym_BSLASHacrfull] = ACTIONS(5243), - [anon_sym_BSLASHAcrfull] = ACTIONS(5243), - [anon_sym_BSLASHACRfull] = ACTIONS(5243), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5243), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5243), - [anon_sym_BSLASHacs] = ACTIONS(5243), - [anon_sym_BSLASHAcs] = ACTIONS(5243), - [anon_sym_BSLASHacsp] = ACTIONS(5243), - [anon_sym_BSLASHAcsp] = ACTIONS(5243), - [anon_sym_BSLASHacl] = ACTIONS(5243), - [anon_sym_BSLASHAcl] = ACTIONS(5243), - [anon_sym_BSLASHaclp] = ACTIONS(5243), - [anon_sym_BSLASHAclp] = ACTIONS(5243), - [anon_sym_BSLASHacf] = ACTIONS(5243), - [anon_sym_BSLASHAcf] = ACTIONS(5243), - [anon_sym_BSLASHacfp] = ACTIONS(5243), - [anon_sym_BSLASHAcfp] = ACTIONS(5243), - [anon_sym_BSLASHac] = ACTIONS(5243), - [anon_sym_BSLASHAc] = ACTIONS(5243), - [anon_sym_BSLASHacp] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5243), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5243), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5243), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5243), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5243), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5243), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5243), - [anon_sym_BSLASHcolor] = ACTIONS(5243), - [anon_sym_BSLASHcolorbox] = ACTIONS(5243), - [anon_sym_BSLASHtextcolor] = ACTIONS(5243), - [anon_sym_BSLASHpagecolor] = ACTIONS(5243), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5243), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5243), + [1537] = { + [sym_command_name] = ACTIONS(4991), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4991), + [anon_sym_RBRACK] = ACTIONS(4989), + [anon_sym_COMMA] = ACTIONS(4989), + [anon_sym_EQ] = ACTIONS(4989), + [anon_sym_RBRACE] = ACTIONS(4989), + [sym_word] = ACTIONS(4991), + [sym_placeholder] = ACTIONS(4989), + [anon_sym_PLUS] = ACTIONS(4991), + [anon_sym_DASH] = ACTIONS(4991), + [anon_sym_STAR] = ACTIONS(4991), + [anon_sym_SLASH] = ACTIONS(4991), + [anon_sym_CARET] = ACTIONS(4991), + [anon_sym__] = ACTIONS(4991), + [anon_sym_LT] = ACTIONS(4991), + [anon_sym_GT] = ACTIONS(4991), + [anon_sym_BANG] = ACTIONS(4991), + [anon_sym_PIPE] = ACTIONS(4991), + [anon_sym_COLON] = ACTIONS(4991), + [anon_sym_SQUOTE] = ACTIONS(4991), + [anon_sym_BSLASHusepackage] = ACTIONS(4991), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4991), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4991), + [anon_sym_BSLASHinclude] = ACTIONS(4991), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4991), + [anon_sym_BSLASHinput] = ACTIONS(4991), + [anon_sym_BSLASHsubfile] = ACTIONS(4991), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4991), + [anon_sym_BSLASHbibliography] = ACTIONS(4991), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4991), + [anon_sym_BSLASHincludesvg] = ACTIONS(4991), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4991), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4991), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4991), + [anon_sym_BSLASHimport] = ACTIONS(4991), + [anon_sym_BSLASHsubimport] = ACTIONS(4991), + [anon_sym_BSLASHinputfrom] = ACTIONS(4991), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4991), + [anon_sym_BSLASHincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4991), + [anon_sym_BSLASHcaption] = ACTIONS(4991), + [anon_sym_BSLASHcite] = ACTIONS(4991), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCite] = ACTIONS(4991), + [anon_sym_BSLASHnocite] = ACTIONS(4991), + [anon_sym_BSLASHcitet] = ACTIONS(4991), + [anon_sym_BSLASHcitep] = ACTIONS(4991), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteauthor] = ACTIONS(4991), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4991), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitetitle] = ACTIONS(4991), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteyear] = ACTIONS(4991), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4989), + [anon_sym_BSLASHcitedate] = ACTIONS(4991), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4989), + [anon_sym_BSLASHciteurl] = ACTIONS(4991), + [anon_sym_BSLASHfullcite] = ACTIONS(4991), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4991), + [anon_sym_BSLASHcitealt] = ACTIONS(4991), + [anon_sym_BSLASHcitealp] = ACTIONS(4991), + [anon_sym_BSLASHcitetext] = ACTIONS(4991), + [anon_sym_BSLASHparencite] = ACTIONS(4991), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHParencite] = ACTIONS(4991), + [anon_sym_BSLASHfootcite] = ACTIONS(4991), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4991), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4991), + [anon_sym_BSLASHtextcite] = ACTIONS(4991), + [anon_sym_BSLASHTextcite] = ACTIONS(4991), + [anon_sym_BSLASHsmartcite] = ACTIONS(4991), + [anon_sym_BSLASHSmartcite] = ACTIONS(4991), + [anon_sym_BSLASHsupercite] = ACTIONS(4991), + [anon_sym_BSLASHautocite] = ACTIONS(4991), + [anon_sym_BSLASHAutocite] = ACTIONS(4991), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4989), + [anon_sym_BSLASHvolcite] = ACTIONS(4991), + [anon_sym_BSLASHVolcite] = ACTIONS(4991), + [anon_sym_BSLASHpvolcite] = ACTIONS(4991), + [anon_sym_BSLASHPvolcite] = ACTIONS(4991), + [anon_sym_BSLASHfvolcite] = ACTIONS(4991), + [anon_sym_BSLASHftvolcite] = ACTIONS(4991), + [anon_sym_BSLASHsvolcite] = ACTIONS(4991), + [anon_sym_BSLASHSvolcite] = ACTIONS(4991), + [anon_sym_BSLASHtvolcite] = ACTIONS(4991), + [anon_sym_BSLASHTvolcite] = ACTIONS(4991), + [anon_sym_BSLASHavolcite] = ACTIONS(4991), + [anon_sym_BSLASHAvolcite] = ACTIONS(4991), + [anon_sym_BSLASHnotecite] = ACTIONS(4991), + [anon_sym_BSLASHNotecite] = ACTIONS(4991), + [anon_sym_BSLASHpnotecite] = ACTIONS(4991), + [anon_sym_BSLASHPnotecite] = ACTIONS(4991), + [anon_sym_BSLASHfnotecite] = ACTIONS(4991), + [anon_sym_BSLASHlabel] = ACTIONS(4991), + [anon_sym_BSLASHref] = ACTIONS(4991), + [anon_sym_BSLASHeqref] = ACTIONS(4991), + [anon_sym_BSLASHvref] = ACTIONS(4991), + [anon_sym_BSLASHVref] = ACTIONS(4991), + [anon_sym_BSLASHautoref] = ACTIONS(4991), + [anon_sym_BSLASHpageref] = ACTIONS(4991), + [anon_sym_BSLASHcref] = ACTIONS(4991), + [anon_sym_BSLASHCref] = ACTIONS(4991), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnameCref] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4991), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4991), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4991), + [anon_sym_BSLASHlabelcref] = ACTIONS(4991), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange] = ACTIONS(4991), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHCrefrange] = ACTIONS(4991), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4989), + [anon_sym_BSLASHnewlabel] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand] = ACTIONS(4991), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4991), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4991), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4989), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4991), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4989), + [anon_sym_BSLASHdef] = ACTIONS(4991), + [anon_sym_BSLASHlet] = ACTIONS(4991), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4991), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4991), + [anon_sym_BSLASHgls] = ACTIONS(4991), + [anon_sym_BSLASHGls] = ACTIONS(4991), + [anon_sym_BSLASHGLS] = ACTIONS(4991), + [anon_sym_BSLASHglspl] = ACTIONS(4991), + [anon_sym_BSLASHGlspl] = ACTIONS(4991), + [anon_sym_BSLASHGLSpl] = ACTIONS(4991), + [anon_sym_BSLASHglsdisp] = ACTIONS(4991), + [anon_sym_BSLASHglslink] = ACTIONS(4991), + [anon_sym_BSLASHglstext] = ACTIONS(4991), + [anon_sym_BSLASHGlstext] = ACTIONS(4991), + [anon_sym_BSLASHGLStext] = ACTIONS(4991), + [anon_sym_BSLASHglsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4991), + [anon_sym_BSLASHglsplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSplural] = ACTIONS(4991), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4991), + [anon_sym_BSLASHglsname] = ACTIONS(4991), + [anon_sym_BSLASHGlsname] = ACTIONS(4991), + [anon_sym_BSLASHGLSname] = ACTIONS(4991), + [anon_sym_BSLASHglssymbol] = ACTIONS(4991), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4991), + [anon_sym_BSLASHglsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4991), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4991), + [anon_sym_BSLASHglsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4991), + [anon_sym_BSLASHglsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4991), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4991), + [anon_sym_BSLASHglsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4991), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4991), + [anon_sym_BSLASHglsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4991), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4991), + [anon_sym_BSLASHnewacronym] = ACTIONS(4991), + [anon_sym_BSLASHacrshort] = ACTIONS(4991), + [anon_sym_BSLASHAcrshort] = ACTIONS(4991), + [anon_sym_BSLASHACRshort] = ACTIONS(4991), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4991), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4991), + [anon_sym_BSLASHacrlong] = ACTIONS(4991), + [anon_sym_BSLASHAcrlong] = ACTIONS(4991), + [anon_sym_BSLASHACRlong] = ACTIONS(4991), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4991), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4991), + [anon_sym_BSLASHacrfull] = ACTIONS(4991), + [anon_sym_BSLASHAcrfull] = ACTIONS(4991), + [anon_sym_BSLASHACRfull] = ACTIONS(4991), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4991), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4991), + [anon_sym_BSLASHacs] = ACTIONS(4991), + [anon_sym_BSLASHAcs] = ACTIONS(4991), + [anon_sym_BSLASHacsp] = ACTIONS(4991), + [anon_sym_BSLASHAcsp] = ACTIONS(4991), + [anon_sym_BSLASHacl] = ACTIONS(4991), + [anon_sym_BSLASHAcl] = ACTIONS(4991), + [anon_sym_BSLASHaclp] = ACTIONS(4991), + [anon_sym_BSLASHAclp] = ACTIONS(4991), + [anon_sym_BSLASHacf] = ACTIONS(4991), + [anon_sym_BSLASHAcf] = ACTIONS(4991), + [anon_sym_BSLASHacfp] = ACTIONS(4991), + [anon_sym_BSLASHAcfp] = ACTIONS(4991), + [anon_sym_BSLASHac] = ACTIONS(4991), + [anon_sym_BSLASHAc] = ACTIONS(4991), + [anon_sym_BSLASHacp] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4991), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4991), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4991), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4991), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4991), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4991), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4991), + [anon_sym_BSLASHcolor] = ACTIONS(4991), + [anon_sym_BSLASHcolorbox] = ACTIONS(4991), + [anon_sym_BSLASHtextcolor] = ACTIONS(4991), + [anon_sym_BSLASHpagecolor] = ACTIONS(4991), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4991), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4991), + }, + [1538] = { + [sym_command_name] = ACTIONS(5149), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5149), + [anon_sym_RBRACK] = ACTIONS(5147), + [anon_sym_COMMA] = ACTIONS(5147), + [anon_sym_EQ] = ACTIONS(5147), + [anon_sym_RBRACE] = ACTIONS(5147), + [sym_word] = ACTIONS(5149), + [sym_placeholder] = ACTIONS(5147), + [anon_sym_PLUS] = ACTIONS(5149), + [anon_sym_DASH] = ACTIONS(5149), + [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_SLASH] = ACTIONS(5149), + [anon_sym_CARET] = ACTIONS(5149), + [anon_sym__] = ACTIONS(5149), + [anon_sym_LT] = ACTIONS(5149), + [anon_sym_GT] = ACTIONS(5149), + [anon_sym_BANG] = ACTIONS(5149), + [anon_sym_PIPE] = ACTIONS(5149), + [anon_sym_COLON] = ACTIONS(5149), + [anon_sym_SQUOTE] = ACTIONS(5149), + [anon_sym_BSLASHusepackage] = ACTIONS(5149), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5149), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5149), + [anon_sym_BSLASHinclude] = ACTIONS(5149), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5149), + [anon_sym_BSLASHinput] = ACTIONS(5149), + [anon_sym_BSLASHsubfile] = ACTIONS(5149), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5149), + [anon_sym_BSLASHbibliography] = ACTIONS(5149), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5149), + [anon_sym_BSLASHincludesvg] = ACTIONS(5149), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5149), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5149), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5149), + [anon_sym_BSLASHimport] = ACTIONS(5149), + [anon_sym_BSLASHsubimport] = ACTIONS(5149), + [anon_sym_BSLASHinputfrom] = ACTIONS(5149), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5149), + [anon_sym_BSLASHincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5149), + [anon_sym_BSLASHcaption] = ACTIONS(5149), + [anon_sym_BSLASHcite] = ACTIONS(5149), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCite] = ACTIONS(5149), + [anon_sym_BSLASHnocite] = ACTIONS(5149), + [anon_sym_BSLASHcitet] = ACTIONS(5149), + [anon_sym_BSLASHcitep] = ACTIONS(5149), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteauthor] = ACTIONS(5149), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5149), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitetitle] = ACTIONS(5149), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteyear] = ACTIONS(5149), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5147), + [anon_sym_BSLASHcitedate] = ACTIONS(5149), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5147), + [anon_sym_BSLASHciteurl] = ACTIONS(5149), + [anon_sym_BSLASHfullcite] = ACTIONS(5149), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5149), + [anon_sym_BSLASHcitealt] = ACTIONS(5149), + [anon_sym_BSLASHcitealp] = ACTIONS(5149), + [anon_sym_BSLASHcitetext] = ACTIONS(5149), + [anon_sym_BSLASHparencite] = ACTIONS(5149), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHParencite] = ACTIONS(5149), + [anon_sym_BSLASHfootcite] = ACTIONS(5149), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5149), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5149), + [anon_sym_BSLASHtextcite] = ACTIONS(5149), + [anon_sym_BSLASHTextcite] = ACTIONS(5149), + [anon_sym_BSLASHsmartcite] = ACTIONS(5149), + [anon_sym_BSLASHSmartcite] = ACTIONS(5149), + [anon_sym_BSLASHsupercite] = ACTIONS(5149), + [anon_sym_BSLASHautocite] = ACTIONS(5149), + [anon_sym_BSLASHAutocite] = ACTIONS(5149), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5147), + [anon_sym_BSLASHvolcite] = ACTIONS(5149), + [anon_sym_BSLASHVolcite] = ACTIONS(5149), + [anon_sym_BSLASHpvolcite] = ACTIONS(5149), + [anon_sym_BSLASHPvolcite] = ACTIONS(5149), + [anon_sym_BSLASHfvolcite] = ACTIONS(5149), + [anon_sym_BSLASHftvolcite] = ACTIONS(5149), + [anon_sym_BSLASHsvolcite] = ACTIONS(5149), + [anon_sym_BSLASHSvolcite] = ACTIONS(5149), + [anon_sym_BSLASHtvolcite] = ACTIONS(5149), + [anon_sym_BSLASHTvolcite] = ACTIONS(5149), + [anon_sym_BSLASHavolcite] = ACTIONS(5149), + [anon_sym_BSLASHAvolcite] = ACTIONS(5149), + [anon_sym_BSLASHnotecite] = ACTIONS(5149), + [anon_sym_BSLASHNotecite] = ACTIONS(5149), + [anon_sym_BSLASHpnotecite] = ACTIONS(5149), + [anon_sym_BSLASHPnotecite] = ACTIONS(5149), + [anon_sym_BSLASHfnotecite] = ACTIONS(5149), + [anon_sym_BSLASHlabel] = ACTIONS(5149), + [anon_sym_BSLASHref] = ACTIONS(5149), + [anon_sym_BSLASHeqref] = ACTIONS(5149), + [anon_sym_BSLASHvref] = ACTIONS(5149), + [anon_sym_BSLASHVref] = ACTIONS(5149), + [anon_sym_BSLASHautoref] = ACTIONS(5149), + [anon_sym_BSLASHpageref] = ACTIONS(5149), + [anon_sym_BSLASHcref] = ACTIONS(5149), + [anon_sym_BSLASHCref] = ACTIONS(5149), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnameCref] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5149), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5149), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5149), + [anon_sym_BSLASHlabelcref] = ACTIONS(5149), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange] = ACTIONS(5149), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHCrefrange] = ACTIONS(5149), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5147), + [anon_sym_BSLASHnewlabel] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand] = ACTIONS(5149), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5149), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5149), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5147), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5149), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5147), + [anon_sym_BSLASHdef] = ACTIONS(5149), + [anon_sym_BSLASHlet] = ACTIONS(5149), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5149), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5149), + [anon_sym_BSLASHgls] = ACTIONS(5149), + [anon_sym_BSLASHGls] = ACTIONS(5149), + [anon_sym_BSLASHGLS] = ACTIONS(5149), + [anon_sym_BSLASHglspl] = ACTIONS(5149), + [anon_sym_BSLASHGlspl] = ACTIONS(5149), + [anon_sym_BSLASHGLSpl] = ACTIONS(5149), + [anon_sym_BSLASHglsdisp] = ACTIONS(5149), + [anon_sym_BSLASHglslink] = ACTIONS(5149), + [anon_sym_BSLASHglstext] = ACTIONS(5149), + [anon_sym_BSLASHGlstext] = ACTIONS(5149), + [anon_sym_BSLASHGLStext] = ACTIONS(5149), + [anon_sym_BSLASHglsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5149), + [anon_sym_BSLASHglsplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSplural] = ACTIONS(5149), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5149), + [anon_sym_BSLASHglsname] = ACTIONS(5149), + [anon_sym_BSLASHGlsname] = ACTIONS(5149), + [anon_sym_BSLASHGLSname] = ACTIONS(5149), + [anon_sym_BSLASHglssymbol] = ACTIONS(5149), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5149), + [anon_sym_BSLASHglsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5149), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5149), + [anon_sym_BSLASHglsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5149), + [anon_sym_BSLASHglsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5149), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5149), + [anon_sym_BSLASHglsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5149), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5149), + [anon_sym_BSLASHglsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5149), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5149), + [anon_sym_BSLASHnewacronym] = ACTIONS(5149), + [anon_sym_BSLASHacrshort] = ACTIONS(5149), + [anon_sym_BSLASHAcrshort] = ACTIONS(5149), + [anon_sym_BSLASHACRshort] = ACTIONS(5149), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5149), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5149), + [anon_sym_BSLASHacrlong] = ACTIONS(5149), + [anon_sym_BSLASHAcrlong] = ACTIONS(5149), + [anon_sym_BSLASHACRlong] = ACTIONS(5149), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5149), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5149), + [anon_sym_BSLASHacrfull] = ACTIONS(5149), + [anon_sym_BSLASHAcrfull] = ACTIONS(5149), + [anon_sym_BSLASHACRfull] = ACTIONS(5149), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5149), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5149), + [anon_sym_BSLASHacs] = ACTIONS(5149), + [anon_sym_BSLASHAcs] = ACTIONS(5149), + [anon_sym_BSLASHacsp] = ACTIONS(5149), + [anon_sym_BSLASHAcsp] = ACTIONS(5149), + [anon_sym_BSLASHacl] = ACTIONS(5149), + [anon_sym_BSLASHAcl] = ACTIONS(5149), + [anon_sym_BSLASHaclp] = ACTIONS(5149), + [anon_sym_BSLASHAclp] = ACTIONS(5149), + [anon_sym_BSLASHacf] = ACTIONS(5149), + [anon_sym_BSLASHAcf] = ACTIONS(5149), + [anon_sym_BSLASHacfp] = ACTIONS(5149), + [anon_sym_BSLASHAcfp] = ACTIONS(5149), + [anon_sym_BSLASHac] = ACTIONS(5149), + [anon_sym_BSLASHAc] = ACTIONS(5149), + [anon_sym_BSLASHacp] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5149), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5149), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5149), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5149), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5149), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5149), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5149), + [anon_sym_BSLASHcolor] = ACTIONS(5149), + [anon_sym_BSLASHcolorbox] = ACTIONS(5149), + [anon_sym_BSLASHtextcolor] = ACTIONS(5149), + [anon_sym_BSLASHpagecolor] = ACTIONS(5149), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5149), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5149), + }, + [1539] = { + [sym_command_name] = ACTIONS(4999), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4999), + [anon_sym_RBRACK] = ACTIONS(4997), + [anon_sym_COMMA] = ACTIONS(4997), + [anon_sym_EQ] = ACTIONS(4997), + [anon_sym_RBRACE] = ACTIONS(4997), + [sym_word] = ACTIONS(4999), + [sym_placeholder] = ACTIONS(4997), + [anon_sym_PLUS] = ACTIONS(4999), + [anon_sym_DASH] = ACTIONS(4999), + [anon_sym_STAR] = ACTIONS(4999), + [anon_sym_SLASH] = ACTIONS(4999), + [anon_sym_CARET] = ACTIONS(4999), + [anon_sym__] = ACTIONS(4999), + [anon_sym_LT] = ACTIONS(4999), + [anon_sym_GT] = ACTIONS(4999), + [anon_sym_BANG] = ACTIONS(4999), + [anon_sym_PIPE] = ACTIONS(4999), + [anon_sym_COLON] = ACTIONS(4999), + [anon_sym_SQUOTE] = ACTIONS(4999), + [anon_sym_BSLASHusepackage] = ACTIONS(4999), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4999), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4999), + [anon_sym_BSLASHinclude] = ACTIONS(4999), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4999), + [anon_sym_BSLASHinput] = ACTIONS(4999), + [anon_sym_BSLASHsubfile] = ACTIONS(4999), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4999), + [anon_sym_BSLASHbibliography] = ACTIONS(4999), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4999), + [anon_sym_BSLASHincludesvg] = ACTIONS(4999), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4999), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4999), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4999), + [anon_sym_BSLASHimport] = ACTIONS(4999), + [anon_sym_BSLASHsubimport] = ACTIONS(4999), + [anon_sym_BSLASHinputfrom] = ACTIONS(4999), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4999), + [anon_sym_BSLASHincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4999), + [anon_sym_BSLASHcaption] = ACTIONS(4999), + [anon_sym_BSLASHcite] = ACTIONS(4999), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCite] = ACTIONS(4999), + [anon_sym_BSLASHnocite] = ACTIONS(4999), + [anon_sym_BSLASHcitet] = ACTIONS(4999), + [anon_sym_BSLASHcitep] = ACTIONS(4999), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteauthor] = ACTIONS(4999), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4999), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitetitle] = ACTIONS(4999), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteyear] = ACTIONS(4999), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4997), + [anon_sym_BSLASHcitedate] = ACTIONS(4999), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4997), + [anon_sym_BSLASHciteurl] = ACTIONS(4999), + [anon_sym_BSLASHfullcite] = ACTIONS(4999), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4999), + [anon_sym_BSLASHcitealt] = ACTIONS(4999), + [anon_sym_BSLASHcitealp] = ACTIONS(4999), + [anon_sym_BSLASHcitetext] = ACTIONS(4999), + [anon_sym_BSLASHparencite] = ACTIONS(4999), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHParencite] = ACTIONS(4999), + [anon_sym_BSLASHfootcite] = ACTIONS(4999), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4999), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4999), + [anon_sym_BSLASHtextcite] = ACTIONS(4999), + [anon_sym_BSLASHTextcite] = ACTIONS(4999), + [anon_sym_BSLASHsmartcite] = ACTIONS(4999), + [anon_sym_BSLASHSmartcite] = ACTIONS(4999), + [anon_sym_BSLASHsupercite] = ACTIONS(4999), + [anon_sym_BSLASHautocite] = ACTIONS(4999), + [anon_sym_BSLASHAutocite] = ACTIONS(4999), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4997), + [anon_sym_BSLASHvolcite] = ACTIONS(4999), + [anon_sym_BSLASHVolcite] = ACTIONS(4999), + [anon_sym_BSLASHpvolcite] = ACTIONS(4999), + [anon_sym_BSLASHPvolcite] = ACTIONS(4999), + [anon_sym_BSLASHfvolcite] = ACTIONS(4999), + [anon_sym_BSLASHftvolcite] = ACTIONS(4999), + [anon_sym_BSLASHsvolcite] = ACTIONS(4999), + [anon_sym_BSLASHSvolcite] = ACTIONS(4999), + [anon_sym_BSLASHtvolcite] = ACTIONS(4999), + [anon_sym_BSLASHTvolcite] = ACTIONS(4999), + [anon_sym_BSLASHavolcite] = ACTIONS(4999), + [anon_sym_BSLASHAvolcite] = ACTIONS(4999), + [anon_sym_BSLASHnotecite] = ACTIONS(4999), + [anon_sym_BSLASHNotecite] = ACTIONS(4999), + [anon_sym_BSLASHpnotecite] = ACTIONS(4999), + [anon_sym_BSLASHPnotecite] = ACTIONS(4999), + [anon_sym_BSLASHfnotecite] = ACTIONS(4999), + [anon_sym_BSLASHlabel] = ACTIONS(4999), + [anon_sym_BSLASHref] = ACTIONS(4999), + [anon_sym_BSLASHeqref] = ACTIONS(4999), + [anon_sym_BSLASHvref] = ACTIONS(4999), + [anon_sym_BSLASHVref] = ACTIONS(4999), + [anon_sym_BSLASHautoref] = ACTIONS(4999), + [anon_sym_BSLASHpageref] = ACTIONS(4999), + [anon_sym_BSLASHcref] = ACTIONS(4999), + [anon_sym_BSLASHCref] = ACTIONS(4999), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnameCref] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4999), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4999), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4999), + [anon_sym_BSLASHlabelcref] = ACTIONS(4999), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange] = ACTIONS(4999), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHCrefrange] = ACTIONS(4999), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4997), + [anon_sym_BSLASHnewlabel] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand] = ACTIONS(4999), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4999), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4999), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4997), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4999), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4997), + [anon_sym_BSLASHdef] = ACTIONS(4999), + [anon_sym_BSLASHlet] = ACTIONS(4999), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4999), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4999), + [anon_sym_BSLASHgls] = ACTIONS(4999), + [anon_sym_BSLASHGls] = ACTIONS(4999), + [anon_sym_BSLASHGLS] = ACTIONS(4999), + [anon_sym_BSLASHglspl] = ACTIONS(4999), + [anon_sym_BSLASHGlspl] = ACTIONS(4999), + [anon_sym_BSLASHGLSpl] = ACTIONS(4999), + [anon_sym_BSLASHglsdisp] = ACTIONS(4999), + [anon_sym_BSLASHglslink] = ACTIONS(4999), + [anon_sym_BSLASHglstext] = ACTIONS(4999), + [anon_sym_BSLASHGlstext] = ACTIONS(4999), + [anon_sym_BSLASHGLStext] = ACTIONS(4999), + [anon_sym_BSLASHglsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4999), + [anon_sym_BSLASHglsplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSplural] = ACTIONS(4999), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4999), + [anon_sym_BSLASHglsname] = ACTIONS(4999), + [anon_sym_BSLASHGlsname] = ACTIONS(4999), + [anon_sym_BSLASHGLSname] = ACTIONS(4999), + [anon_sym_BSLASHglssymbol] = ACTIONS(4999), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4999), + [anon_sym_BSLASHglsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4999), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4999), + [anon_sym_BSLASHglsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4999), + [anon_sym_BSLASHglsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4999), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4999), + [anon_sym_BSLASHglsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4999), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4999), + [anon_sym_BSLASHglsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4999), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4999), + [anon_sym_BSLASHnewacronym] = ACTIONS(4999), + [anon_sym_BSLASHacrshort] = ACTIONS(4999), + [anon_sym_BSLASHAcrshort] = ACTIONS(4999), + [anon_sym_BSLASHACRshort] = ACTIONS(4999), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4999), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4999), + [anon_sym_BSLASHacrlong] = ACTIONS(4999), + [anon_sym_BSLASHAcrlong] = ACTIONS(4999), + [anon_sym_BSLASHACRlong] = ACTIONS(4999), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4999), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4999), + [anon_sym_BSLASHacrfull] = ACTIONS(4999), + [anon_sym_BSLASHAcrfull] = ACTIONS(4999), + [anon_sym_BSLASHACRfull] = ACTIONS(4999), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4999), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4999), + [anon_sym_BSLASHacs] = ACTIONS(4999), + [anon_sym_BSLASHAcs] = ACTIONS(4999), + [anon_sym_BSLASHacsp] = ACTIONS(4999), + [anon_sym_BSLASHAcsp] = ACTIONS(4999), + [anon_sym_BSLASHacl] = ACTIONS(4999), + [anon_sym_BSLASHAcl] = ACTIONS(4999), + [anon_sym_BSLASHaclp] = ACTIONS(4999), + [anon_sym_BSLASHAclp] = ACTIONS(4999), + [anon_sym_BSLASHacf] = ACTIONS(4999), + [anon_sym_BSLASHAcf] = ACTIONS(4999), + [anon_sym_BSLASHacfp] = ACTIONS(4999), + [anon_sym_BSLASHAcfp] = ACTIONS(4999), + [anon_sym_BSLASHac] = ACTIONS(4999), + [anon_sym_BSLASHAc] = ACTIONS(4999), + [anon_sym_BSLASHacp] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4999), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4999), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4999), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4999), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4999), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4999), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4999), + [anon_sym_BSLASHcolor] = ACTIONS(4999), + [anon_sym_BSLASHcolorbox] = ACTIONS(4999), + [anon_sym_BSLASHtextcolor] = ACTIONS(4999), + [anon_sym_BSLASHpagecolor] = ACTIONS(4999), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4999), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4999), }, - [1545] = { - [sym_command_name] = ACTIONS(5135), + [1540] = { + [sym_command_name] = ACTIONS(5003), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5135), - [anon_sym_RBRACK] = ACTIONS(5133), - [anon_sym_COMMA] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(5133), - [anon_sym_RBRACE] = ACTIONS(5133), - [sym_word] = ACTIONS(5135), - [sym_placeholder] = ACTIONS(5133), - [anon_sym_PLUS] = ACTIONS(5135), - [anon_sym_DASH] = ACTIONS(5135), - [anon_sym_STAR] = ACTIONS(5135), - [anon_sym_SLASH] = ACTIONS(5135), - [anon_sym_CARET] = ACTIONS(5135), - [anon_sym__] = ACTIONS(5135), - [anon_sym_LT] = ACTIONS(5135), - [anon_sym_GT] = ACTIONS(5135), - [anon_sym_BANG] = ACTIONS(5135), - [anon_sym_PIPE] = ACTIONS(5135), - [anon_sym_COLON] = ACTIONS(5135), - [anon_sym_SQUOTE] = ACTIONS(5135), - [anon_sym_BSLASHusepackage] = ACTIONS(5135), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5135), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5135), - [anon_sym_BSLASHinclude] = ACTIONS(5135), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5135), - [anon_sym_BSLASHinput] = ACTIONS(5135), - [anon_sym_BSLASHsubfile] = ACTIONS(5135), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5135), - [anon_sym_BSLASHbibliography] = ACTIONS(5135), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5135), - [anon_sym_BSLASHincludesvg] = ACTIONS(5135), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5135), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5135), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5135), - [anon_sym_BSLASHimport] = ACTIONS(5135), - [anon_sym_BSLASHsubimport] = ACTIONS(5135), - [anon_sym_BSLASHinputfrom] = ACTIONS(5135), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5135), - [anon_sym_BSLASHincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5135), - [anon_sym_BSLASHcaption] = ACTIONS(5135), - [anon_sym_BSLASHcite] = ACTIONS(5135), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCite] = ACTIONS(5135), - [anon_sym_BSLASHnocite] = ACTIONS(5135), - [anon_sym_BSLASHcitet] = ACTIONS(5135), - [anon_sym_BSLASHcitep] = ACTIONS(5135), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteauthor] = ACTIONS(5135), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5135), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitetitle] = ACTIONS(5135), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteyear] = ACTIONS(5135), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5133), - [anon_sym_BSLASHcitedate] = ACTIONS(5135), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5133), - [anon_sym_BSLASHciteurl] = ACTIONS(5135), - [anon_sym_BSLASHfullcite] = ACTIONS(5135), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5135), - [anon_sym_BSLASHcitealt] = ACTIONS(5135), - [anon_sym_BSLASHcitealp] = ACTIONS(5135), - [anon_sym_BSLASHcitetext] = ACTIONS(5135), - [anon_sym_BSLASHparencite] = ACTIONS(5135), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHParencite] = ACTIONS(5135), - [anon_sym_BSLASHfootcite] = ACTIONS(5135), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5135), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5135), - [anon_sym_BSLASHtextcite] = ACTIONS(5135), - [anon_sym_BSLASHTextcite] = ACTIONS(5135), - [anon_sym_BSLASHsmartcite] = ACTIONS(5135), - [anon_sym_BSLASHSmartcite] = ACTIONS(5135), - [anon_sym_BSLASHsupercite] = ACTIONS(5135), - [anon_sym_BSLASHautocite] = ACTIONS(5135), - [anon_sym_BSLASHAutocite] = ACTIONS(5135), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5133), - [anon_sym_BSLASHvolcite] = ACTIONS(5135), - [anon_sym_BSLASHVolcite] = ACTIONS(5135), - [anon_sym_BSLASHpvolcite] = ACTIONS(5135), - [anon_sym_BSLASHPvolcite] = ACTIONS(5135), - [anon_sym_BSLASHfvolcite] = ACTIONS(5135), - [anon_sym_BSLASHftvolcite] = ACTIONS(5135), - [anon_sym_BSLASHsvolcite] = ACTIONS(5135), - [anon_sym_BSLASHSvolcite] = ACTIONS(5135), - [anon_sym_BSLASHtvolcite] = ACTIONS(5135), - [anon_sym_BSLASHTvolcite] = ACTIONS(5135), - [anon_sym_BSLASHavolcite] = ACTIONS(5135), - [anon_sym_BSLASHAvolcite] = ACTIONS(5135), - [anon_sym_BSLASHnotecite] = ACTIONS(5135), - [anon_sym_BSLASHNotecite] = ACTIONS(5135), - [anon_sym_BSLASHpnotecite] = ACTIONS(5135), - [anon_sym_BSLASHPnotecite] = ACTIONS(5135), - [anon_sym_BSLASHfnotecite] = ACTIONS(5135), - [anon_sym_BSLASHlabel] = ACTIONS(5135), - [anon_sym_BSLASHref] = ACTIONS(5135), - [anon_sym_BSLASHeqref] = ACTIONS(5135), - [anon_sym_BSLASHvref] = ACTIONS(5135), - [anon_sym_BSLASHVref] = ACTIONS(5135), - [anon_sym_BSLASHautoref] = ACTIONS(5135), - [anon_sym_BSLASHpageref] = ACTIONS(5135), - [anon_sym_BSLASHcref] = ACTIONS(5135), - [anon_sym_BSLASHCref] = ACTIONS(5135), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnameCref] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5135), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5135), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5135), - [anon_sym_BSLASHlabelcref] = ACTIONS(5135), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange] = ACTIONS(5135), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHCrefrange] = ACTIONS(5135), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5133), - [anon_sym_BSLASHnewlabel] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand] = ACTIONS(5135), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5135), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5135), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5133), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5135), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5133), - [anon_sym_BSLASHdef] = ACTIONS(5135), - [anon_sym_BSLASHlet] = ACTIONS(5135), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5135), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5135), - [anon_sym_BSLASHgls] = ACTIONS(5135), - [anon_sym_BSLASHGls] = ACTIONS(5135), - [anon_sym_BSLASHGLS] = ACTIONS(5135), - [anon_sym_BSLASHglspl] = ACTIONS(5135), - [anon_sym_BSLASHGlspl] = ACTIONS(5135), - [anon_sym_BSLASHGLSpl] = ACTIONS(5135), - [anon_sym_BSLASHglsdisp] = ACTIONS(5135), - [anon_sym_BSLASHglslink] = ACTIONS(5135), - [anon_sym_BSLASHglstext] = ACTIONS(5135), - [anon_sym_BSLASHGlstext] = ACTIONS(5135), - [anon_sym_BSLASHGLStext] = ACTIONS(5135), - [anon_sym_BSLASHglsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5135), - [anon_sym_BSLASHglsplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSplural] = ACTIONS(5135), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5135), - [anon_sym_BSLASHglsname] = ACTIONS(5135), - [anon_sym_BSLASHGlsname] = ACTIONS(5135), - [anon_sym_BSLASHGLSname] = ACTIONS(5135), - [anon_sym_BSLASHglssymbol] = ACTIONS(5135), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5135), - [anon_sym_BSLASHglsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5135), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5135), - [anon_sym_BSLASHglsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5135), - [anon_sym_BSLASHglsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5135), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5135), - [anon_sym_BSLASHglsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5135), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5135), - [anon_sym_BSLASHglsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5135), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5135), - [anon_sym_BSLASHnewacronym] = ACTIONS(5135), - [anon_sym_BSLASHacrshort] = ACTIONS(5135), - [anon_sym_BSLASHAcrshort] = ACTIONS(5135), - [anon_sym_BSLASHACRshort] = ACTIONS(5135), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5135), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5135), - [anon_sym_BSLASHacrlong] = ACTIONS(5135), - [anon_sym_BSLASHAcrlong] = ACTIONS(5135), - [anon_sym_BSLASHACRlong] = ACTIONS(5135), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5135), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5135), - [anon_sym_BSLASHacrfull] = ACTIONS(5135), - [anon_sym_BSLASHAcrfull] = ACTIONS(5135), - [anon_sym_BSLASHACRfull] = ACTIONS(5135), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5135), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5135), - [anon_sym_BSLASHacs] = ACTIONS(5135), - [anon_sym_BSLASHAcs] = ACTIONS(5135), - [anon_sym_BSLASHacsp] = ACTIONS(5135), - [anon_sym_BSLASHAcsp] = ACTIONS(5135), - [anon_sym_BSLASHacl] = ACTIONS(5135), - [anon_sym_BSLASHAcl] = ACTIONS(5135), - [anon_sym_BSLASHaclp] = ACTIONS(5135), - [anon_sym_BSLASHAclp] = ACTIONS(5135), - [anon_sym_BSLASHacf] = ACTIONS(5135), - [anon_sym_BSLASHAcf] = ACTIONS(5135), - [anon_sym_BSLASHacfp] = ACTIONS(5135), - [anon_sym_BSLASHAcfp] = ACTIONS(5135), - [anon_sym_BSLASHac] = ACTIONS(5135), - [anon_sym_BSLASHAc] = ACTIONS(5135), - [anon_sym_BSLASHacp] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5135), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5135), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5135), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5135), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5135), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5135), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5135), - [anon_sym_BSLASHcolor] = ACTIONS(5135), - [anon_sym_BSLASHcolorbox] = ACTIONS(5135), - [anon_sym_BSLASHtextcolor] = ACTIONS(5135), - [anon_sym_BSLASHpagecolor] = ACTIONS(5135), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5135), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5135), + [anon_sym_BSLASHiffalse] = ACTIONS(5003), + [anon_sym_RBRACK] = ACTIONS(5001), + [anon_sym_COMMA] = ACTIONS(5001), + [anon_sym_EQ] = ACTIONS(5001), + [anon_sym_RBRACE] = ACTIONS(5001), + [sym_word] = ACTIONS(5003), + [sym_placeholder] = ACTIONS(5001), + [anon_sym_PLUS] = ACTIONS(5003), + [anon_sym_DASH] = ACTIONS(5003), + [anon_sym_STAR] = ACTIONS(5003), + [anon_sym_SLASH] = ACTIONS(5003), + [anon_sym_CARET] = ACTIONS(5003), + [anon_sym__] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(5003), + [anon_sym_GT] = ACTIONS(5003), + [anon_sym_BANG] = ACTIONS(5003), + [anon_sym_PIPE] = ACTIONS(5003), + [anon_sym_COLON] = ACTIONS(5003), + [anon_sym_SQUOTE] = ACTIONS(5003), + [anon_sym_BSLASHusepackage] = ACTIONS(5003), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5003), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5003), + [anon_sym_BSLASHinclude] = ACTIONS(5003), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5003), + [anon_sym_BSLASHinput] = ACTIONS(5003), + [anon_sym_BSLASHsubfile] = ACTIONS(5003), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5003), + [anon_sym_BSLASHbibliography] = ACTIONS(5003), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5003), + [anon_sym_BSLASHincludesvg] = ACTIONS(5003), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5003), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5003), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5003), + [anon_sym_BSLASHimport] = ACTIONS(5003), + [anon_sym_BSLASHsubimport] = ACTIONS(5003), + [anon_sym_BSLASHinputfrom] = ACTIONS(5003), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5003), + [anon_sym_BSLASHincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5003), + [anon_sym_BSLASHcaption] = ACTIONS(5003), + [anon_sym_BSLASHcite] = ACTIONS(5003), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCite] = ACTIONS(5003), + [anon_sym_BSLASHnocite] = ACTIONS(5003), + [anon_sym_BSLASHcitet] = ACTIONS(5003), + [anon_sym_BSLASHcitep] = ACTIONS(5003), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteauthor] = ACTIONS(5003), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5003), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitetitle] = ACTIONS(5003), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteyear] = ACTIONS(5003), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5001), + [anon_sym_BSLASHcitedate] = ACTIONS(5003), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5001), + [anon_sym_BSLASHciteurl] = ACTIONS(5003), + [anon_sym_BSLASHfullcite] = ACTIONS(5003), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5003), + [anon_sym_BSLASHcitealt] = ACTIONS(5003), + [anon_sym_BSLASHcitealp] = ACTIONS(5003), + [anon_sym_BSLASHcitetext] = ACTIONS(5003), + [anon_sym_BSLASHparencite] = ACTIONS(5003), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHParencite] = ACTIONS(5003), + [anon_sym_BSLASHfootcite] = ACTIONS(5003), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5003), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5003), + [anon_sym_BSLASHtextcite] = ACTIONS(5003), + [anon_sym_BSLASHTextcite] = ACTIONS(5003), + [anon_sym_BSLASHsmartcite] = ACTIONS(5003), + [anon_sym_BSLASHSmartcite] = ACTIONS(5003), + [anon_sym_BSLASHsupercite] = ACTIONS(5003), + [anon_sym_BSLASHautocite] = ACTIONS(5003), + [anon_sym_BSLASHAutocite] = ACTIONS(5003), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5001), + [anon_sym_BSLASHvolcite] = ACTIONS(5003), + [anon_sym_BSLASHVolcite] = ACTIONS(5003), + [anon_sym_BSLASHpvolcite] = ACTIONS(5003), + [anon_sym_BSLASHPvolcite] = ACTIONS(5003), + [anon_sym_BSLASHfvolcite] = ACTIONS(5003), + [anon_sym_BSLASHftvolcite] = ACTIONS(5003), + [anon_sym_BSLASHsvolcite] = ACTIONS(5003), + [anon_sym_BSLASHSvolcite] = ACTIONS(5003), + [anon_sym_BSLASHtvolcite] = ACTIONS(5003), + [anon_sym_BSLASHTvolcite] = ACTIONS(5003), + [anon_sym_BSLASHavolcite] = ACTIONS(5003), + [anon_sym_BSLASHAvolcite] = ACTIONS(5003), + [anon_sym_BSLASHnotecite] = ACTIONS(5003), + [anon_sym_BSLASHNotecite] = ACTIONS(5003), + [anon_sym_BSLASHpnotecite] = ACTIONS(5003), + [anon_sym_BSLASHPnotecite] = ACTIONS(5003), + [anon_sym_BSLASHfnotecite] = ACTIONS(5003), + [anon_sym_BSLASHlabel] = ACTIONS(5003), + [anon_sym_BSLASHref] = ACTIONS(5003), + [anon_sym_BSLASHeqref] = ACTIONS(5003), + [anon_sym_BSLASHvref] = ACTIONS(5003), + [anon_sym_BSLASHVref] = ACTIONS(5003), + [anon_sym_BSLASHautoref] = ACTIONS(5003), + [anon_sym_BSLASHpageref] = ACTIONS(5003), + [anon_sym_BSLASHcref] = ACTIONS(5003), + [anon_sym_BSLASHCref] = ACTIONS(5003), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnameCref] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5003), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5003), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5003), + [anon_sym_BSLASHlabelcref] = ACTIONS(5003), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange] = ACTIONS(5003), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHCrefrange] = ACTIONS(5003), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5001), + [anon_sym_BSLASHnewlabel] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand] = ACTIONS(5003), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5003), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5003), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5001), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5003), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5001), + [anon_sym_BSLASHdef] = ACTIONS(5003), + [anon_sym_BSLASHlet] = ACTIONS(5003), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5003), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5003), + [anon_sym_BSLASHgls] = ACTIONS(5003), + [anon_sym_BSLASHGls] = ACTIONS(5003), + [anon_sym_BSLASHGLS] = ACTIONS(5003), + [anon_sym_BSLASHglspl] = ACTIONS(5003), + [anon_sym_BSLASHGlspl] = ACTIONS(5003), + [anon_sym_BSLASHGLSpl] = ACTIONS(5003), + [anon_sym_BSLASHglsdisp] = ACTIONS(5003), + [anon_sym_BSLASHglslink] = ACTIONS(5003), + [anon_sym_BSLASHglstext] = ACTIONS(5003), + [anon_sym_BSLASHGlstext] = ACTIONS(5003), + [anon_sym_BSLASHGLStext] = ACTIONS(5003), + [anon_sym_BSLASHglsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5003), + [anon_sym_BSLASHglsplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSplural] = ACTIONS(5003), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5003), + [anon_sym_BSLASHglsname] = ACTIONS(5003), + [anon_sym_BSLASHGlsname] = ACTIONS(5003), + [anon_sym_BSLASHGLSname] = ACTIONS(5003), + [anon_sym_BSLASHglssymbol] = ACTIONS(5003), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5003), + [anon_sym_BSLASHglsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5003), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5003), + [anon_sym_BSLASHglsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5003), + [anon_sym_BSLASHglsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5003), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5003), + [anon_sym_BSLASHglsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5003), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5003), + [anon_sym_BSLASHglsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5003), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5003), + [anon_sym_BSLASHnewacronym] = ACTIONS(5003), + [anon_sym_BSLASHacrshort] = ACTIONS(5003), + [anon_sym_BSLASHAcrshort] = ACTIONS(5003), + [anon_sym_BSLASHACRshort] = ACTIONS(5003), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5003), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5003), + [anon_sym_BSLASHacrlong] = ACTIONS(5003), + [anon_sym_BSLASHAcrlong] = ACTIONS(5003), + [anon_sym_BSLASHACRlong] = ACTIONS(5003), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5003), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5003), + [anon_sym_BSLASHacrfull] = ACTIONS(5003), + [anon_sym_BSLASHAcrfull] = ACTIONS(5003), + [anon_sym_BSLASHACRfull] = ACTIONS(5003), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5003), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5003), + [anon_sym_BSLASHacs] = ACTIONS(5003), + [anon_sym_BSLASHAcs] = ACTIONS(5003), + [anon_sym_BSLASHacsp] = ACTIONS(5003), + [anon_sym_BSLASHAcsp] = ACTIONS(5003), + [anon_sym_BSLASHacl] = ACTIONS(5003), + [anon_sym_BSLASHAcl] = ACTIONS(5003), + [anon_sym_BSLASHaclp] = ACTIONS(5003), + [anon_sym_BSLASHAclp] = ACTIONS(5003), + [anon_sym_BSLASHacf] = ACTIONS(5003), + [anon_sym_BSLASHAcf] = ACTIONS(5003), + [anon_sym_BSLASHacfp] = ACTIONS(5003), + [anon_sym_BSLASHAcfp] = ACTIONS(5003), + [anon_sym_BSLASHac] = ACTIONS(5003), + [anon_sym_BSLASHAc] = ACTIONS(5003), + [anon_sym_BSLASHacp] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5003), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5003), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5003), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5003), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5003), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5003), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5003), + [anon_sym_BSLASHcolor] = ACTIONS(5003), + [anon_sym_BSLASHcolorbox] = ACTIONS(5003), + [anon_sym_BSLASHtextcolor] = ACTIONS(5003), + [anon_sym_BSLASHpagecolor] = ACTIONS(5003), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5003), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5003), }, - [1546] = { - [sym_command_name] = ACTIONS(5139), + [1541] = { + [sym_command_name] = ACTIONS(5033), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5139), - [anon_sym_RBRACK] = ACTIONS(5137), - [anon_sym_COMMA] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(5137), - [anon_sym_RBRACE] = ACTIONS(5137), - [sym_word] = ACTIONS(5139), - [sym_placeholder] = ACTIONS(5137), - [anon_sym_PLUS] = ACTIONS(5139), - [anon_sym_DASH] = ACTIONS(5139), - [anon_sym_STAR] = ACTIONS(5139), - [anon_sym_SLASH] = ACTIONS(5139), - [anon_sym_CARET] = ACTIONS(5139), - [anon_sym__] = ACTIONS(5139), - [anon_sym_LT] = ACTIONS(5139), - [anon_sym_GT] = ACTIONS(5139), - [anon_sym_BANG] = ACTIONS(5139), - [anon_sym_PIPE] = ACTIONS(5139), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_SQUOTE] = ACTIONS(5139), - [anon_sym_BSLASHusepackage] = ACTIONS(5139), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5139), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5139), - [anon_sym_BSLASHinclude] = ACTIONS(5139), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5139), - [anon_sym_BSLASHinput] = ACTIONS(5139), - [anon_sym_BSLASHsubfile] = ACTIONS(5139), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5139), - [anon_sym_BSLASHbibliography] = ACTIONS(5139), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5139), - [anon_sym_BSLASHincludesvg] = ACTIONS(5139), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5139), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5139), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5139), - [anon_sym_BSLASHimport] = ACTIONS(5139), - [anon_sym_BSLASHsubimport] = ACTIONS(5139), - [anon_sym_BSLASHinputfrom] = ACTIONS(5139), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5139), - [anon_sym_BSLASHincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5139), - [anon_sym_BSLASHcaption] = ACTIONS(5139), - [anon_sym_BSLASHcite] = ACTIONS(5139), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCite] = ACTIONS(5139), - [anon_sym_BSLASHnocite] = ACTIONS(5139), - [anon_sym_BSLASHcitet] = ACTIONS(5139), - [anon_sym_BSLASHcitep] = ACTIONS(5139), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteauthor] = ACTIONS(5139), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5139), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitetitle] = ACTIONS(5139), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteyear] = ACTIONS(5139), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5137), - [anon_sym_BSLASHcitedate] = ACTIONS(5139), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5137), - [anon_sym_BSLASHciteurl] = ACTIONS(5139), - [anon_sym_BSLASHfullcite] = ACTIONS(5139), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5139), - [anon_sym_BSLASHcitealt] = ACTIONS(5139), - [anon_sym_BSLASHcitealp] = ACTIONS(5139), - [anon_sym_BSLASHcitetext] = ACTIONS(5139), - [anon_sym_BSLASHparencite] = ACTIONS(5139), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHParencite] = ACTIONS(5139), - [anon_sym_BSLASHfootcite] = ACTIONS(5139), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5139), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5139), - [anon_sym_BSLASHtextcite] = ACTIONS(5139), - [anon_sym_BSLASHTextcite] = ACTIONS(5139), - [anon_sym_BSLASHsmartcite] = ACTIONS(5139), - [anon_sym_BSLASHSmartcite] = ACTIONS(5139), - [anon_sym_BSLASHsupercite] = ACTIONS(5139), - [anon_sym_BSLASHautocite] = ACTIONS(5139), - [anon_sym_BSLASHAutocite] = ACTIONS(5139), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5137), - [anon_sym_BSLASHvolcite] = ACTIONS(5139), - [anon_sym_BSLASHVolcite] = ACTIONS(5139), - [anon_sym_BSLASHpvolcite] = ACTIONS(5139), - [anon_sym_BSLASHPvolcite] = ACTIONS(5139), - [anon_sym_BSLASHfvolcite] = ACTIONS(5139), - [anon_sym_BSLASHftvolcite] = ACTIONS(5139), - [anon_sym_BSLASHsvolcite] = ACTIONS(5139), - [anon_sym_BSLASHSvolcite] = ACTIONS(5139), - [anon_sym_BSLASHtvolcite] = ACTIONS(5139), - [anon_sym_BSLASHTvolcite] = ACTIONS(5139), - [anon_sym_BSLASHavolcite] = ACTIONS(5139), - [anon_sym_BSLASHAvolcite] = ACTIONS(5139), - [anon_sym_BSLASHnotecite] = ACTIONS(5139), - [anon_sym_BSLASHNotecite] = ACTIONS(5139), - [anon_sym_BSLASHpnotecite] = ACTIONS(5139), - [anon_sym_BSLASHPnotecite] = ACTIONS(5139), - [anon_sym_BSLASHfnotecite] = ACTIONS(5139), - [anon_sym_BSLASHlabel] = ACTIONS(5139), - [anon_sym_BSLASHref] = ACTIONS(5139), - [anon_sym_BSLASHeqref] = ACTIONS(5139), - [anon_sym_BSLASHvref] = ACTIONS(5139), - [anon_sym_BSLASHVref] = ACTIONS(5139), - [anon_sym_BSLASHautoref] = ACTIONS(5139), - [anon_sym_BSLASHpageref] = ACTIONS(5139), - [anon_sym_BSLASHcref] = ACTIONS(5139), - [anon_sym_BSLASHCref] = ACTIONS(5139), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnameCref] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5139), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5139), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5139), - [anon_sym_BSLASHlabelcref] = ACTIONS(5139), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange] = ACTIONS(5139), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHCrefrange] = ACTIONS(5139), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5137), - [anon_sym_BSLASHnewlabel] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand] = ACTIONS(5139), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5139), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5139), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5137), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5139), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5137), - [anon_sym_BSLASHdef] = ACTIONS(5139), - [anon_sym_BSLASHlet] = ACTIONS(5139), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5139), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5139), - [anon_sym_BSLASHgls] = ACTIONS(5139), - [anon_sym_BSLASHGls] = ACTIONS(5139), - [anon_sym_BSLASHGLS] = ACTIONS(5139), - [anon_sym_BSLASHglspl] = ACTIONS(5139), - [anon_sym_BSLASHGlspl] = ACTIONS(5139), - [anon_sym_BSLASHGLSpl] = ACTIONS(5139), - [anon_sym_BSLASHglsdisp] = ACTIONS(5139), - [anon_sym_BSLASHglslink] = ACTIONS(5139), - [anon_sym_BSLASHglstext] = ACTIONS(5139), - [anon_sym_BSLASHGlstext] = ACTIONS(5139), - [anon_sym_BSLASHGLStext] = ACTIONS(5139), - [anon_sym_BSLASHglsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5139), - [anon_sym_BSLASHglsplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSplural] = ACTIONS(5139), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5139), - [anon_sym_BSLASHglsname] = ACTIONS(5139), - [anon_sym_BSLASHGlsname] = ACTIONS(5139), - [anon_sym_BSLASHGLSname] = ACTIONS(5139), - [anon_sym_BSLASHglssymbol] = ACTIONS(5139), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5139), - [anon_sym_BSLASHglsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5139), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5139), - [anon_sym_BSLASHglsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5139), - [anon_sym_BSLASHglsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5139), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5139), - [anon_sym_BSLASHglsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5139), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5139), - [anon_sym_BSLASHglsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5139), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5139), - [anon_sym_BSLASHnewacronym] = ACTIONS(5139), - [anon_sym_BSLASHacrshort] = ACTIONS(5139), - [anon_sym_BSLASHAcrshort] = ACTIONS(5139), - [anon_sym_BSLASHACRshort] = ACTIONS(5139), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5139), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5139), - [anon_sym_BSLASHacrlong] = ACTIONS(5139), - [anon_sym_BSLASHAcrlong] = ACTIONS(5139), - [anon_sym_BSLASHACRlong] = ACTIONS(5139), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5139), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5139), - [anon_sym_BSLASHacrfull] = ACTIONS(5139), - [anon_sym_BSLASHAcrfull] = ACTIONS(5139), - [anon_sym_BSLASHACRfull] = ACTIONS(5139), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5139), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5139), - [anon_sym_BSLASHacs] = ACTIONS(5139), - [anon_sym_BSLASHAcs] = ACTIONS(5139), - [anon_sym_BSLASHacsp] = ACTIONS(5139), - [anon_sym_BSLASHAcsp] = ACTIONS(5139), - [anon_sym_BSLASHacl] = ACTIONS(5139), - [anon_sym_BSLASHAcl] = ACTIONS(5139), - [anon_sym_BSLASHaclp] = ACTIONS(5139), - [anon_sym_BSLASHAclp] = ACTIONS(5139), - [anon_sym_BSLASHacf] = ACTIONS(5139), - [anon_sym_BSLASHAcf] = ACTIONS(5139), - [anon_sym_BSLASHacfp] = ACTIONS(5139), - [anon_sym_BSLASHAcfp] = ACTIONS(5139), - [anon_sym_BSLASHac] = ACTIONS(5139), - [anon_sym_BSLASHAc] = ACTIONS(5139), - [anon_sym_BSLASHacp] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5139), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5139), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5139), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5139), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5139), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5139), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5139), - [anon_sym_BSLASHcolor] = ACTIONS(5139), - [anon_sym_BSLASHcolorbox] = ACTIONS(5139), - [anon_sym_BSLASHtextcolor] = ACTIONS(5139), - [anon_sym_BSLASHpagecolor] = ACTIONS(5139), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5139), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5139), + [anon_sym_BSLASHiffalse] = ACTIONS(5033), + [anon_sym_RBRACK] = ACTIONS(5031), + [anon_sym_COMMA] = ACTIONS(5031), + [anon_sym_EQ] = ACTIONS(5031), + [anon_sym_RBRACE] = ACTIONS(5031), + [sym_word] = ACTIONS(5033), + [sym_placeholder] = ACTIONS(5031), + [anon_sym_PLUS] = ACTIONS(5033), + [anon_sym_DASH] = ACTIONS(5033), + [anon_sym_STAR] = ACTIONS(5033), + [anon_sym_SLASH] = ACTIONS(5033), + [anon_sym_CARET] = ACTIONS(5033), + [anon_sym__] = ACTIONS(5033), + [anon_sym_LT] = ACTIONS(5033), + [anon_sym_GT] = ACTIONS(5033), + [anon_sym_BANG] = ACTIONS(5033), + [anon_sym_PIPE] = ACTIONS(5033), + [anon_sym_COLON] = ACTIONS(5033), + [anon_sym_SQUOTE] = ACTIONS(5033), + [anon_sym_BSLASHusepackage] = ACTIONS(5033), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5033), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5033), + [anon_sym_BSLASHinclude] = ACTIONS(5033), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5033), + [anon_sym_BSLASHinput] = ACTIONS(5033), + [anon_sym_BSLASHsubfile] = ACTIONS(5033), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5033), + [anon_sym_BSLASHbibliography] = ACTIONS(5033), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5033), + [anon_sym_BSLASHincludesvg] = ACTIONS(5033), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5033), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5033), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5033), + [anon_sym_BSLASHimport] = ACTIONS(5033), + [anon_sym_BSLASHsubimport] = ACTIONS(5033), + [anon_sym_BSLASHinputfrom] = ACTIONS(5033), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5033), + [anon_sym_BSLASHincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5033), + [anon_sym_BSLASHcaption] = ACTIONS(5033), + [anon_sym_BSLASHcite] = ACTIONS(5033), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCite] = ACTIONS(5033), + [anon_sym_BSLASHnocite] = ACTIONS(5033), + [anon_sym_BSLASHcitet] = ACTIONS(5033), + [anon_sym_BSLASHcitep] = ACTIONS(5033), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteauthor] = ACTIONS(5033), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5033), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitetitle] = ACTIONS(5033), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteyear] = ACTIONS(5033), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5031), + [anon_sym_BSLASHcitedate] = ACTIONS(5033), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5031), + [anon_sym_BSLASHciteurl] = ACTIONS(5033), + [anon_sym_BSLASHfullcite] = ACTIONS(5033), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5033), + [anon_sym_BSLASHcitealt] = ACTIONS(5033), + [anon_sym_BSLASHcitealp] = ACTIONS(5033), + [anon_sym_BSLASHcitetext] = ACTIONS(5033), + [anon_sym_BSLASHparencite] = ACTIONS(5033), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHParencite] = ACTIONS(5033), + [anon_sym_BSLASHfootcite] = ACTIONS(5033), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5033), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5033), + [anon_sym_BSLASHtextcite] = ACTIONS(5033), + [anon_sym_BSLASHTextcite] = ACTIONS(5033), + [anon_sym_BSLASHsmartcite] = ACTIONS(5033), + [anon_sym_BSLASHSmartcite] = ACTIONS(5033), + [anon_sym_BSLASHsupercite] = ACTIONS(5033), + [anon_sym_BSLASHautocite] = ACTIONS(5033), + [anon_sym_BSLASHAutocite] = ACTIONS(5033), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5031), + [anon_sym_BSLASHvolcite] = ACTIONS(5033), + [anon_sym_BSLASHVolcite] = ACTIONS(5033), + [anon_sym_BSLASHpvolcite] = ACTIONS(5033), + [anon_sym_BSLASHPvolcite] = ACTIONS(5033), + [anon_sym_BSLASHfvolcite] = ACTIONS(5033), + [anon_sym_BSLASHftvolcite] = ACTIONS(5033), + [anon_sym_BSLASHsvolcite] = ACTIONS(5033), + [anon_sym_BSLASHSvolcite] = ACTIONS(5033), + [anon_sym_BSLASHtvolcite] = ACTIONS(5033), + [anon_sym_BSLASHTvolcite] = ACTIONS(5033), + [anon_sym_BSLASHavolcite] = ACTIONS(5033), + [anon_sym_BSLASHAvolcite] = ACTIONS(5033), + [anon_sym_BSLASHnotecite] = ACTIONS(5033), + [anon_sym_BSLASHNotecite] = ACTIONS(5033), + [anon_sym_BSLASHpnotecite] = ACTIONS(5033), + [anon_sym_BSLASHPnotecite] = ACTIONS(5033), + [anon_sym_BSLASHfnotecite] = ACTIONS(5033), + [anon_sym_BSLASHlabel] = ACTIONS(5033), + [anon_sym_BSLASHref] = ACTIONS(5033), + [anon_sym_BSLASHeqref] = ACTIONS(5033), + [anon_sym_BSLASHvref] = ACTIONS(5033), + [anon_sym_BSLASHVref] = ACTIONS(5033), + [anon_sym_BSLASHautoref] = ACTIONS(5033), + [anon_sym_BSLASHpageref] = ACTIONS(5033), + [anon_sym_BSLASHcref] = ACTIONS(5033), + [anon_sym_BSLASHCref] = ACTIONS(5033), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnameCref] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5033), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5033), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5033), + [anon_sym_BSLASHlabelcref] = ACTIONS(5033), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange] = ACTIONS(5033), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHCrefrange] = ACTIONS(5033), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5031), + [anon_sym_BSLASHnewlabel] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand] = ACTIONS(5033), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5033), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5033), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5031), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5033), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5031), + [anon_sym_BSLASHdef] = ACTIONS(5033), + [anon_sym_BSLASHlet] = ACTIONS(5033), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5033), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5033), + [anon_sym_BSLASHgls] = ACTIONS(5033), + [anon_sym_BSLASHGls] = ACTIONS(5033), + [anon_sym_BSLASHGLS] = ACTIONS(5033), + [anon_sym_BSLASHglspl] = ACTIONS(5033), + [anon_sym_BSLASHGlspl] = ACTIONS(5033), + [anon_sym_BSLASHGLSpl] = ACTIONS(5033), + [anon_sym_BSLASHglsdisp] = ACTIONS(5033), + [anon_sym_BSLASHglslink] = ACTIONS(5033), + [anon_sym_BSLASHglstext] = ACTIONS(5033), + [anon_sym_BSLASHGlstext] = ACTIONS(5033), + [anon_sym_BSLASHGLStext] = ACTIONS(5033), + [anon_sym_BSLASHglsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5033), + [anon_sym_BSLASHglsplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSplural] = ACTIONS(5033), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5033), + [anon_sym_BSLASHglsname] = ACTIONS(5033), + [anon_sym_BSLASHGlsname] = ACTIONS(5033), + [anon_sym_BSLASHGLSname] = ACTIONS(5033), + [anon_sym_BSLASHglssymbol] = ACTIONS(5033), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5033), + [anon_sym_BSLASHglsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5033), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5033), + [anon_sym_BSLASHglsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5033), + [anon_sym_BSLASHglsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5033), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5033), + [anon_sym_BSLASHglsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5033), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5033), + [anon_sym_BSLASHglsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5033), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5033), + [anon_sym_BSLASHnewacronym] = ACTIONS(5033), + [anon_sym_BSLASHacrshort] = ACTIONS(5033), + [anon_sym_BSLASHAcrshort] = ACTIONS(5033), + [anon_sym_BSLASHACRshort] = ACTIONS(5033), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5033), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5033), + [anon_sym_BSLASHacrlong] = ACTIONS(5033), + [anon_sym_BSLASHAcrlong] = ACTIONS(5033), + [anon_sym_BSLASHACRlong] = ACTIONS(5033), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5033), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5033), + [anon_sym_BSLASHacrfull] = ACTIONS(5033), + [anon_sym_BSLASHAcrfull] = ACTIONS(5033), + [anon_sym_BSLASHACRfull] = ACTIONS(5033), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5033), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5033), + [anon_sym_BSLASHacs] = ACTIONS(5033), + [anon_sym_BSLASHAcs] = ACTIONS(5033), + [anon_sym_BSLASHacsp] = ACTIONS(5033), + [anon_sym_BSLASHAcsp] = ACTIONS(5033), + [anon_sym_BSLASHacl] = ACTIONS(5033), + [anon_sym_BSLASHAcl] = ACTIONS(5033), + [anon_sym_BSLASHaclp] = ACTIONS(5033), + [anon_sym_BSLASHAclp] = ACTIONS(5033), + [anon_sym_BSLASHacf] = ACTIONS(5033), + [anon_sym_BSLASHAcf] = ACTIONS(5033), + [anon_sym_BSLASHacfp] = ACTIONS(5033), + [anon_sym_BSLASHAcfp] = ACTIONS(5033), + [anon_sym_BSLASHac] = ACTIONS(5033), + [anon_sym_BSLASHAc] = ACTIONS(5033), + [anon_sym_BSLASHacp] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5033), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5033), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5033), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5033), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5033), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5033), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5033), + [anon_sym_BSLASHcolor] = ACTIONS(5033), + [anon_sym_BSLASHcolorbox] = ACTIONS(5033), + [anon_sym_BSLASHtextcolor] = ACTIONS(5033), + [anon_sym_BSLASHpagecolor] = ACTIONS(5033), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5033), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5033), }, - [1547] = { - [sym_command_name] = ACTIONS(4941), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4941), - [anon_sym_RBRACK] = ACTIONS(4939), - [anon_sym_COMMA] = ACTIONS(4939), - [anon_sym_EQ] = ACTIONS(4939), - [anon_sym_RBRACE] = ACTIONS(4939), - [sym_word] = ACTIONS(4941), - [sym_placeholder] = ACTIONS(4939), - [anon_sym_PLUS] = ACTIONS(4941), - [anon_sym_DASH] = ACTIONS(4941), - [anon_sym_STAR] = ACTIONS(4941), - [anon_sym_SLASH] = ACTIONS(4941), - [anon_sym_CARET] = ACTIONS(4941), - [anon_sym__] = ACTIONS(4941), - [anon_sym_LT] = ACTIONS(4941), - [anon_sym_GT] = ACTIONS(4941), - [anon_sym_BANG] = ACTIONS(4941), - [anon_sym_PIPE] = ACTIONS(4941), - [anon_sym_COLON] = ACTIONS(4941), - [anon_sym_SQUOTE] = ACTIONS(4941), - [anon_sym_BSLASHusepackage] = ACTIONS(4941), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4941), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4941), - [anon_sym_BSLASHinclude] = ACTIONS(4941), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4941), - [anon_sym_BSLASHinput] = ACTIONS(4941), - [anon_sym_BSLASHsubfile] = ACTIONS(4941), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4941), - [anon_sym_BSLASHbibliography] = ACTIONS(4941), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4941), - [anon_sym_BSLASHincludesvg] = ACTIONS(4941), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4941), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4941), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4941), - [anon_sym_BSLASHimport] = ACTIONS(4941), - [anon_sym_BSLASHsubimport] = ACTIONS(4941), - [anon_sym_BSLASHinputfrom] = ACTIONS(4941), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4941), - [anon_sym_BSLASHincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4941), - [anon_sym_BSLASHcaption] = ACTIONS(4941), - [anon_sym_BSLASHcite] = ACTIONS(4941), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCite] = ACTIONS(4941), - [anon_sym_BSLASHnocite] = ACTIONS(4941), - [anon_sym_BSLASHcitet] = ACTIONS(4941), - [anon_sym_BSLASHcitep] = ACTIONS(4941), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteauthor] = ACTIONS(4941), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4941), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitetitle] = ACTIONS(4941), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteyear] = ACTIONS(4941), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4939), - [anon_sym_BSLASHcitedate] = ACTIONS(4941), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4939), - [anon_sym_BSLASHciteurl] = ACTIONS(4941), - [anon_sym_BSLASHfullcite] = ACTIONS(4941), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4941), - [anon_sym_BSLASHcitealt] = ACTIONS(4941), - [anon_sym_BSLASHcitealp] = ACTIONS(4941), - [anon_sym_BSLASHcitetext] = ACTIONS(4941), - [anon_sym_BSLASHparencite] = ACTIONS(4941), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHParencite] = ACTIONS(4941), - [anon_sym_BSLASHfootcite] = ACTIONS(4941), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4941), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4941), - [anon_sym_BSLASHtextcite] = ACTIONS(4941), - [anon_sym_BSLASHTextcite] = ACTIONS(4941), - [anon_sym_BSLASHsmartcite] = ACTIONS(4941), - [anon_sym_BSLASHSmartcite] = ACTIONS(4941), - [anon_sym_BSLASHsupercite] = ACTIONS(4941), - [anon_sym_BSLASHautocite] = ACTIONS(4941), - [anon_sym_BSLASHAutocite] = ACTIONS(4941), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4939), - [anon_sym_BSLASHvolcite] = ACTIONS(4941), - [anon_sym_BSLASHVolcite] = ACTIONS(4941), - [anon_sym_BSLASHpvolcite] = ACTIONS(4941), - [anon_sym_BSLASHPvolcite] = ACTIONS(4941), - [anon_sym_BSLASHfvolcite] = ACTIONS(4941), - [anon_sym_BSLASHftvolcite] = ACTIONS(4941), - [anon_sym_BSLASHsvolcite] = ACTIONS(4941), - [anon_sym_BSLASHSvolcite] = ACTIONS(4941), - [anon_sym_BSLASHtvolcite] = ACTIONS(4941), - [anon_sym_BSLASHTvolcite] = ACTIONS(4941), - [anon_sym_BSLASHavolcite] = ACTIONS(4941), - [anon_sym_BSLASHAvolcite] = ACTIONS(4941), - [anon_sym_BSLASHnotecite] = ACTIONS(4941), - [anon_sym_BSLASHNotecite] = ACTIONS(4941), - [anon_sym_BSLASHpnotecite] = ACTIONS(4941), - [anon_sym_BSLASHPnotecite] = ACTIONS(4941), - [anon_sym_BSLASHfnotecite] = ACTIONS(4941), - [anon_sym_BSLASHlabel] = ACTIONS(4941), - [anon_sym_BSLASHref] = ACTIONS(4941), - [anon_sym_BSLASHeqref] = ACTIONS(4941), - [anon_sym_BSLASHvref] = ACTIONS(4941), - [anon_sym_BSLASHVref] = ACTIONS(4941), - [anon_sym_BSLASHautoref] = ACTIONS(4941), - [anon_sym_BSLASHpageref] = ACTIONS(4941), - [anon_sym_BSLASHcref] = ACTIONS(4941), - [anon_sym_BSLASHCref] = ACTIONS(4941), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnameCref] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4941), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4941), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4941), - [anon_sym_BSLASHlabelcref] = ACTIONS(4941), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange] = ACTIONS(4941), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHCrefrange] = ACTIONS(4941), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4939), - [anon_sym_BSLASHnewlabel] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand] = ACTIONS(4941), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4941), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4941), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4939), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4941), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4939), - [anon_sym_BSLASHdef] = ACTIONS(4941), - [anon_sym_BSLASHlet] = ACTIONS(4941), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4941), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4941), - [anon_sym_BSLASHgls] = ACTIONS(4941), - [anon_sym_BSLASHGls] = ACTIONS(4941), - [anon_sym_BSLASHGLS] = ACTIONS(4941), - [anon_sym_BSLASHglspl] = ACTIONS(4941), - [anon_sym_BSLASHGlspl] = ACTIONS(4941), - [anon_sym_BSLASHGLSpl] = ACTIONS(4941), - [anon_sym_BSLASHglsdisp] = ACTIONS(4941), - [anon_sym_BSLASHglslink] = ACTIONS(4941), - [anon_sym_BSLASHglstext] = ACTIONS(4941), - [anon_sym_BSLASHGlstext] = ACTIONS(4941), - [anon_sym_BSLASHGLStext] = ACTIONS(4941), - [anon_sym_BSLASHglsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4941), - [anon_sym_BSLASHglsplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSplural] = ACTIONS(4941), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4941), - [anon_sym_BSLASHglsname] = ACTIONS(4941), - [anon_sym_BSLASHGlsname] = ACTIONS(4941), - [anon_sym_BSLASHGLSname] = ACTIONS(4941), - [anon_sym_BSLASHglssymbol] = ACTIONS(4941), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4941), - [anon_sym_BSLASHglsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4941), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4941), - [anon_sym_BSLASHglsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4941), - [anon_sym_BSLASHglsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4941), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4941), - [anon_sym_BSLASHglsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4941), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4941), - [anon_sym_BSLASHglsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4941), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4941), - [anon_sym_BSLASHnewacronym] = ACTIONS(4941), - [anon_sym_BSLASHacrshort] = ACTIONS(4941), - [anon_sym_BSLASHAcrshort] = ACTIONS(4941), - [anon_sym_BSLASHACRshort] = ACTIONS(4941), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4941), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4941), - [anon_sym_BSLASHacrlong] = ACTIONS(4941), - [anon_sym_BSLASHAcrlong] = ACTIONS(4941), - [anon_sym_BSLASHACRlong] = ACTIONS(4941), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4941), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4941), - [anon_sym_BSLASHacrfull] = ACTIONS(4941), - [anon_sym_BSLASHAcrfull] = ACTIONS(4941), - [anon_sym_BSLASHACRfull] = ACTIONS(4941), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4941), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4941), - [anon_sym_BSLASHacs] = ACTIONS(4941), - [anon_sym_BSLASHAcs] = ACTIONS(4941), - [anon_sym_BSLASHacsp] = ACTIONS(4941), - [anon_sym_BSLASHAcsp] = ACTIONS(4941), - [anon_sym_BSLASHacl] = ACTIONS(4941), - [anon_sym_BSLASHAcl] = ACTIONS(4941), - [anon_sym_BSLASHaclp] = ACTIONS(4941), - [anon_sym_BSLASHAclp] = ACTIONS(4941), - [anon_sym_BSLASHacf] = ACTIONS(4941), - [anon_sym_BSLASHAcf] = ACTIONS(4941), - [anon_sym_BSLASHacfp] = ACTIONS(4941), - [anon_sym_BSLASHAcfp] = ACTIONS(4941), - [anon_sym_BSLASHac] = ACTIONS(4941), - [anon_sym_BSLASHAc] = ACTIONS(4941), - [anon_sym_BSLASHacp] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4941), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4941), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4941), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4941), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4941), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4941), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4941), - [anon_sym_BSLASHcolor] = ACTIONS(4941), - [anon_sym_BSLASHcolorbox] = ACTIONS(4941), - [anon_sym_BSLASHtextcolor] = ACTIONS(4941), - [anon_sym_BSLASHpagecolor] = ACTIONS(4941), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4941), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4941), + [1542] = { + [sym_command_name] = ACTIONS(5013), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5013), + [anon_sym_RBRACK] = ACTIONS(5011), + [anon_sym_COMMA] = ACTIONS(5011), + [anon_sym_EQ] = ACTIONS(5011), + [anon_sym_RBRACE] = ACTIONS(5011), + [sym_word] = ACTIONS(5013), + [sym_placeholder] = ACTIONS(5011), + [anon_sym_PLUS] = ACTIONS(5013), + [anon_sym_DASH] = ACTIONS(5013), + [anon_sym_STAR] = ACTIONS(5013), + [anon_sym_SLASH] = ACTIONS(5013), + [anon_sym_CARET] = ACTIONS(5013), + [anon_sym__] = ACTIONS(5013), + [anon_sym_LT] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), + [anon_sym_BANG] = ACTIONS(5013), + [anon_sym_PIPE] = ACTIONS(5013), + [anon_sym_COLON] = ACTIONS(5013), + [anon_sym_SQUOTE] = ACTIONS(5013), + [anon_sym_BSLASHusepackage] = ACTIONS(5013), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5013), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5013), + [anon_sym_BSLASHinclude] = ACTIONS(5013), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5013), + [anon_sym_BSLASHinput] = ACTIONS(5013), + [anon_sym_BSLASHsubfile] = ACTIONS(5013), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5013), + [anon_sym_BSLASHbibliography] = ACTIONS(5013), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5013), + [anon_sym_BSLASHincludesvg] = ACTIONS(5013), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5013), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5013), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5013), + [anon_sym_BSLASHimport] = ACTIONS(5013), + [anon_sym_BSLASHsubimport] = ACTIONS(5013), + [anon_sym_BSLASHinputfrom] = ACTIONS(5013), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5013), + [anon_sym_BSLASHincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5013), + [anon_sym_BSLASHcaption] = ACTIONS(5013), + [anon_sym_BSLASHcite] = ACTIONS(5013), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCite] = ACTIONS(5013), + [anon_sym_BSLASHnocite] = ACTIONS(5013), + [anon_sym_BSLASHcitet] = ACTIONS(5013), + [anon_sym_BSLASHcitep] = ACTIONS(5013), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteauthor] = ACTIONS(5013), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5013), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitetitle] = ACTIONS(5013), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteyear] = ACTIONS(5013), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5011), + [anon_sym_BSLASHcitedate] = ACTIONS(5013), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5011), + [anon_sym_BSLASHciteurl] = ACTIONS(5013), + [anon_sym_BSLASHfullcite] = ACTIONS(5013), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5013), + [anon_sym_BSLASHcitealt] = ACTIONS(5013), + [anon_sym_BSLASHcitealp] = ACTIONS(5013), + [anon_sym_BSLASHcitetext] = ACTIONS(5013), + [anon_sym_BSLASHparencite] = ACTIONS(5013), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHParencite] = ACTIONS(5013), + [anon_sym_BSLASHfootcite] = ACTIONS(5013), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5013), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5013), + [anon_sym_BSLASHtextcite] = ACTIONS(5013), + [anon_sym_BSLASHTextcite] = ACTIONS(5013), + [anon_sym_BSLASHsmartcite] = ACTIONS(5013), + [anon_sym_BSLASHSmartcite] = ACTIONS(5013), + [anon_sym_BSLASHsupercite] = ACTIONS(5013), + [anon_sym_BSLASHautocite] = ACTIONS(5013), + [anon_sym_BSLASHAutocite] = ACTIONS(5013), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5011), + [anon_sym_BSLASHvolcite] = ACTIONS(5013), + [anon_sym_BSLASHVolcite] = ACTIONS(5013), + [anon_sym_BSLASHpvolcite] = ACTIONS(5013), + [anon_sym_BSLASHPvolcite] = ACTIONS(5013), + [anon_sym_BSLASHfvolcite] = ACTIONS(5013), + [anon_sym_BSLASHftvolcite] = ACTIONS(5013), + [anon_sym_BSLASHsvolcite] = ACTIONS(5013), + [anon_sym_BSLASHSvolcite] = ACTIONS(5013), + [anon_sym_BSLASHtvolcite] = ACTIONS(5013), + [anon_sym_BSLASHTvolcite] = ACTIONS(5013), + [anon_sym_BSLASHavolcite] = ACTIONS(5013), + [anon_sym_BSLASHAvolcite] = ACTIONS(5013), + [anon_sym_BSLASHnotecite] = ACTIONS(5013), + [anon_sym_BSLASHNotecite] = ACTIONS(5013), + [anon_sym_BSLASHpnotecite] = ACTIONS(5013), + [anon_sym_BSLASHPnotecite] = ACTIONS(5013), + [anon_sym_BSLASHfnotecite] = ACTIONS(5013), + [anon_sym_BSLASHlabel] = ACTIONS(5013), + [anon_sym_BSLASHref] = ACTIONS(5013), + [anon_sym_BSLASHeqref] = ACTIONS(5013), + [anon_sym_BSLASHvref] = ACTIONS(5013), + [anon_sym_BSLASHVref] = ACTIONS(5013), + [anon_sym_BSLASHautoref] = ACTIONS(5013), + [anon_sym_BSLASHpageref] = ACTIONS(5013), + [anon_sym_BSLASHcref] = ACTIONS(5013), + [anon_sym_BSLASHCref] = ACTIONS(5013), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnameCref] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5013), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5013), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5013), + [anon_sym_BSLASHlabelcref] = ACTIONS(5013), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange] = ACTIONS(5013), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHCrefrange] = ACTIONS(5013), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5011), + [anon_sym_BSLASHnewlabel] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand] = ACTIONS(5013), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5013), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5013), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5011), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5013), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5011), + [anon_sym_BSLASHdef] = ACTIONS(5013), + [anon_sym_BSLASHlet] = ACTIONS(5013), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5013), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5013), + [anon_sym_BSLASHgls] = ACTIONS(5013), + [anon_sym_BSLASHGls] = ACTIONS(5013), + [anon_sym_BSLASHGLS] = ACTIONS(5013), + [anon_sym_BSLASHglspl] = ACTIONS(5013), + [anon_sym_BSLASHGlspl] = ACTIONS(5013), + [anon_sym_BSLASHGLSpl] = ACTIONS(5013), + [anon_sym_BSLASHglsdisp] = ACTIONS(5013), + [anon_sym_BSLASHglslink] = ACTIONS(5013), + [anon_sym_BSLASHglstext] = ACTIONS(5013), + [anon_sym_BSLASHGlstext] = ACTIONS(5013), + [anon_sym_BSLASHGLStext] = ACTIONS(5013), + [anon_sym_BSLASHglsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5013), + [anon_sym_BSLASHglsplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSplural] = ACTIONS(5013), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5013), + [anon_sym_BSLASHglsname] = ACTIONS(5013), + [anon_sym_BSLASHGlsname] = ACTIONS(5013), + [anon_sym_BSLASHGLSname] = ACTIONS(5013), + [anon_sym_BSLASHglssymbol] = ACTIONS(5013), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5013), + [anon_sym_BSLASHglsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5013), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5013), + [anon_sym_BSLASHglsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5013), + [anon_sym_BSLASHglsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5013), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5013), + [anon_sym_BSLASHglsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5013), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5013), + [anon_sym_BSLASHglsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5013), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5013), + [anon_sym_BSLASHnewacronym] = ACTIONS(5013), + [anon_sym_BSLASHacrshort] = ACTIONS(5013), + [anon_sym_BSLASHAcrshort] = ACTIONS(5013), + [anon_sym_BSLASHACRshort] = ACTIONS(5013), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5013), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5013), + [anon_sym_BSLASHacrlong] = ACTIONS(5013), + [anon_sym_BSLASHAcrlong] = ACTIONS(5013), + [anon_sym_BSLASHACRlong] = ACTIONS(5013), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5013), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5013), + [anon_sym_BSLASHacrfull] = ACTIONS(5013), + [anon_sym_BSLASHAcrfull] = ACTIONS(5013), + [anon_sym_BSLASHACRfull] = ACTIONS(5013), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5013), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5013), + [anon_sym_BSLASHacs] = ACTIONS(5013), + [anon_sym_BSLASHAcs] = ACTIONS(5013), + [anon_sym_BSLASHacsp] = ACTIONS(5013), + [anon_sym_BSLASHAcsp] = ACTIONS(5013), + [anon_sym_BSLASHacl] = ACTIONS(5013), + [anon_sym_BSLASHAcl] = ACTIONS(5013), + [anon_sym_BSLASHaclp] = ACTIONS(5013), + [anon_sym_BSLASHAclp] = ACTIONS(5013), + [anon_sym_BSLASHacf] = ACTIONS(5013), + [anon_sym_BSLASHAcf] = ACTIONS(5013), + [anon_sym_BSLASHacfp] = ACTIONS(5013), + [anon_sym_BSLASHAcfp] = ACTIONS(5013), + [anon_sym_BSLASHac] = ACTIONS(5013), + [anon_sym_BSLASHAc] = ACTIONS(5013), + [anon_sym_BSLASHacp] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5013), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5013), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5013), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5013), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5013), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5013), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5013), + [anon_sym_BSLASHcolor] = ACTIONS(5013), + [anon_sym_BSLASHcolorbox] = ACTIONS(5013), + [anon_sym_BSLASHtextcolor] = ACTIONS(5013), + [anon_sym_BSLASHpagecolor] = ACTIONS(5013), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5013), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5013), }, - [1548] = { - [sym_command_name] = ACTIONS(5239), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5239), - [anon_sym_RBRACK] = ACTIONS(5237), - [anon_sym_COMMA] = ACTIONS(5237), - [anon_sym_EQ] = ACTIONS(5237), - [anon_sym_RBRACE] = ACTIONS(5237), - [sym_word] = ACTIONS(5239), - [sym_placeholder] = ACTIONS(5237), - [anon_sym_PLUS] = ACTIONS(5239), - [anon_sym_DASH] = ACTIONS(5239), - [anon_sym_STAR] = ACTIONS(5239), - [anon_sym_SLASH] = ACTIONS(5239), - [anon_sym_CARET] = ACTIONS(5239), - [anon_sym__] = ACTIONS(5239), - [anon_sym_LT] = ACTIONS(5239), - [anon_sym_GT] = ACTIONS(5239), - [anon_sym_BANG] = ACTIONS(5239), - [anon_sym_PIPE] = ACTIONS(5239), - [anon_sym_COLON] = ACTIONS(5239), - [anon_sym_SQUOTE] = ACTIONS(5239), - [anon_sym_BSLASHusepackage] = ACTIONS(5239), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5239), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5239), - [anon_sym_BSLASHinclude] = ACTIONS(5239), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5239), - [anon_sym_BSLASHinput] = ACTIONS(5239), - [anon_sym_BSLASHsubfile] = ACTIONS(5239), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5239), - [anon_sym_BSLASHbibliography] = ACTIONS(5239), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5239), - [anon_sym_BSLASHincludesvg] = ACTIONS(5239), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5239), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5239), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5239), - [anon_sym_BSLASHimport] = ACTIONS(5239), - [anon_sym_BSLASHsubimport] = ACTIONS(5239), - [anon_sym_BSLASHinputfrom] = ACTIONS(5239), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5239), - [anon_sym_BSLASHincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5239), - [anon_sym_BSLASHcaption] = ACTIONS(5239), - [anon_sym_BSLASHcite] = ACTIONS(5239), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCite] = ACTIONS(5239), - [anon_sym_BSLASHnocite] = ACTIONS(5239), - [anon_sym_BSLASHcitet] = ACTIONS(5239), - [anon_sym_BSLASHcitep] = ACTIONS(5239), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteauthor] = ACTIONS(5239), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5239), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitetitle] = ACTIONS(5239), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteyear] = ACTIONS(5239), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5237), - [anon_sym_BSLASHcitedate] = ACTIONS(5239), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5237), - [anon_sym_BSLASHciteurl] = ACTIONS(5239), - [anon_sym_BSLASHfullcite] = ACTIONS(5239), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5239), - [anon_sym_BSLASHcitealt] = ACTIONS(5239), - [anon_sym_BSLASHcitealp] = ACTIONS(5239), - [anon_sym_BSLASHcitetext] = ACTIONS(5239), - [anon_sym_BSLASHparencite] = ACTIONS(5239), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHParencite] = ACTIONS(5239), - [anon_sym_BSLASHfootcite] = ACTIONS(5239), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5239), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5239), - [anon_sym_BSLASHtextcite] = ACTIONS(5239), - [anon_sym_BSLASHTextcite] = ACTIONS(5239), - [anon_sym_BSLASHsmartcite] = ACTIONS(5239), - [anon_sym_BSLASHSmartcite] = ACTIONS(5239), - [anon_sym_BSLASHsupercite] = ACTIONS(5239), - [anon_sym_BSLASHautocite] = ACTIONS(5239), - [anon_sym_BSLASHAutocite] = ACTIONS(5239), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5237), - [anon_sym_BSLASHvolcite] = ACTIONS(5239), - [anon_sym_BSLASHVolcite] = ACTIONS(5239), - [anon_sym_BSLASHpvolcite] = ACTIONS(5239), - [anon_sym_BSLASHPvolcite] = ACTIONS(5239), - [anon_sym_BSLASHfvolcite] = ACTIONS(5239), - [anon_sym_BSLASHftvolcite] = ACTIONS(5239), - [anon_sym_BSLASHsvolcite] = ACTIONS(5239), - [anon_sym_BSLASHSvolcite] = ACTIONS(5239), - [anon_sym_BSLASHtvolcite] = ACTIONS(5239), - [anon_sym_BSLASHTvolcite] = ACTIONS(5239), - [anon_sym_BSLASHavolcite] = ACTIONS(5239), - [anon_sym_BSLASHAvolcite] = ACTIONS(5239), - [anon_sym_BSLASHnotecite] = ACTIONS(5239), - [anon_sym_BSLASHNotecite] = ACTIONS(5239), - [anon_sym_BSLASHpnotecite] = ACTIONS(5239), - [anon_sym_BSLASHPnotecite] = ACTIONS(5239), - [anon_sym_BSLASHfnotecite] = ACTIONS(5239), - [anon_sym_BSLASHlabel] = ACTIONS(5239), - [anon_sym_BSLASHref] = ACTIONS(5239), - [anon_sym_BSLASHeqref] = ACTIONS(5239), - [anon_sym_BSLASHvref] = ACTIONS(5239), - [anon_sym_BSLASHVref] = ACTIONS(5239), - [anon_sym_BSLASHautoref] = ACTIONS(5239), - [anon_sym_BSLASHpageref] = ACTIONS(5239), - [anon_sym_BSLASHcref] = ACTIONS(5239), - [anon_sym_BSLASHCref] = ACTIONS(5239), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnameCref] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5239), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5239), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5239), - [anon_sym_BSLASHlabelcref] = ACTIONS(5239), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange] = ACTIONS(5239), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHCrefrange] = ACTIONS(5239), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5237), - [anon_sym_BSLASHnewlabel] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand] = ACTIONS(5239), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5239), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5239), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5237), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5239), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5237), - [anon_sym_BSLASHdef] = ACTIONS(5239), - [anon_sym_BSLASHlet] = ACTIONS(5239), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5239), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5239), - [anon_sym_BSLASHgls] = ACTIONS(5239), - [anon_sym_BSLASHGls] = ACTIONS(5239), - [anon_sym_BSLASHGLS] = ACTIONS(5239), - [anon_sym_BSLASHglspl] = ACTIONS(5239), - [anon_sym_BSLASHGlspl] = ACTIONS(5239), - [anon_sym_BSLASHGLSpl] = ACTIONS(5239), - [anon_sym_BSLASHglsdisp] = ACTIONS(5239), - [anon_sym_BSLASHglslink] = ACTIONS(5239), - [anon_sym_BSLASHglstext] = ACTIONS(5239), - [anon_sym_BSLASHGlstext] = ACTIONS(5239), - [anon_sym_BSLASHGLStext] = ACTIONS(5239), - [anon_sym_BSLASHglsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5239), - [anon_sym_BSLASHglsplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSplural] = ACTIONS(5239), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5239), - [anon_sym_BSLASHglsname] = ACTIONS(5239), - [anon_sym_BSLASHGlsname] = ACTIONS(5239), - [anon_sym_BSLASHGLSname] = ACTIONS(5239), - [anon_sym_BSLASHglssymbol] = ACTIONS(5239), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5239), - [anon_sym_BSLASHglsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5239), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5239), - [anon_sym_BSLASHglsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5239), - [anon_sym_BSLASHglsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5239), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5239), - [anon_sym_BSLASHglsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5239), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5239), - [anon_sym_BSLASHglsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5239), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5239), - [anon_sym_BSLASHnewacronym] = ACTIONS(5239), - [anon_sym_BSLASHacrshort] = ACTIONS(5239), - [anon_sym_BSLASHAcrshort] = ACTIONS(5239), - [anon_sym_BSLASHACRshort] = ACTIONS(5239), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5239), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5239), - [anon_sym_BSLASHacrlong] = ACTIONS(5239), - [anon_sym_BSLASHAcrlong] = ACTIONS(5239), - [anon_sym_BSLASHACRlong] = ACTIONS(5239), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5239), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5239), - [anon_sym_BSLASHacrfull] = ACTIONS(5239), - [anon_sym_BSLASHAcrfull] = ACTIONS(5239), - [anon_sym_BSLASHACRfull] = ACTIONS(5239), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5239), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5239), - [anon_sym_BSLASHacs] = ACTIONS(5239), - [anon_sym_BSLASHAcs] = ACTIONS(5239), - [anon_sym_BSLASHacsp] = ACTIONS(5239), - [anon_sym_BSLASHAcsp] = ACTIONS(5239), - [anon_sym_BSLASHacl] = ACTIONS(5239), - [anon_sym_BSLASHAcl] = ACTIONS(5239), - [anon_sym_BSLASHaclp] = ACTIONS(5239), - [anon_sym_BSLASHAclp] = ACTIONS(5239), - [anon_sym_BSLASHacf] = ACTIONS(5239), - [anon_sym_BSLASHAcf] = ACTIONS(5239), - [anon_sym_BSLASHacfp] = ACTIONS(5239), - [anon_sym_BSLASHAcfp] = ACTIONS(5239), - [anon_sym_BSLASHac] = ACTIONS(5239), - [anon_sym_BSLASHAc] = ACTIONS(5239), - [anon_sym_BSLASHacp] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5239), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5239), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5239), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5239), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5239), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5239), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5239), - [anon_sym_BSLASHcolor] = ACTIONS(5239), - [anon_sym_BSLASHcolorbox] = ACTIONS(5239), - [anon_sym_BSLASHtextcolor] = ACTIONS(5239), - [anon_sym_BSLASHpagecolor] = ACTIONS(5239), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5239), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5239), + [1543] = { + [sym_command_name] = ACTIONS(5017), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5017), + [anon_sym_RBRACK] = ACTIONS(5015), + [anon_sym_COMMA] = ACTIONS(5015), + [anon_sym_EQ] = ACTIONS(5015), + [anon_sym_RBRACE] = ACTIONS(5015), + [sym_word] = ACTIONS(5017), + [sym_placeholder] = ACTIONS(5015), + [anon_sym_PLUS] = ACTIONS(5017), + [anon_sym_DASH] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(5017), + [anon_sym_SLASH] = ACTIONS(5017), + [anon_sym_CARET] = ACTIONS(5017), + [anon_sym__] = ACTIONS(5017), + [anon_sym_LT] = ACTIONS(5017), + [anon_sym_GT] = ACTIONS(5017), + [anon_sym_BANG] = ACTIONS(5017), + [anon_sym_PIPE] = ACTIONS(5017), + [anon_sym_COLON] = ACTIONS(5017), + [anon_sym_SQUOTE] = ACTIONS(5017), + [anon_sym_BSLASHusepackage] = ACTIONS(5017), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5017), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5017), + [anon_sym_BSLASHinclude] = ACTIONS(5017), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5017), + [anon_sym_BSLASHinput] = ACTIONS(5017), + [anon_sym_BSLASHsubfile] = ACTIONS(5017), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5017), + [anon_sym_BSLASHbibliography] = ACTIONS(5017), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5017), + [anon_sym_BSLASHincludesvg] = ACTIONS(5017), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5017), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5017), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5017), + [anon_sym_BSLASHimport] = ACTIONS(5017), + [anon_sym_BSLASHsubimport] = ACTIONS(5017), + [anon_sym_BSLASHinputfrom] = ACTIONS(5017), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5017), + [anon_sym_BSLASHincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5017), + [anon_sym_BSLASHcaption] = ACTIONS(5017), + [anon_sym_BSLASHcite] = ACTIONS(5017), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCite] = ACTIONS(5017), + [anon_sym_BSLASHnocite] = ACTIONS(5017), + [anon_sym_BSLASHcitet] = ACTIONS(5017), + [anon_sym_BSLASHcitep] = ACTIONS(5017), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteauthor] = ACTIONS(5017), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5017), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitetitle] = ACTIONS(5017), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteyear] = ACTIONS(5017), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5015), + [anon_sym_BSLASHcitedate] = ACTIONS(5017), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5015), + [anon_sym_BSLASHciteurl] = ACTIONS(5017), + [anon_sym_BSLASHfullcite] = ACTIONS(5017), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5017), + [anon_sym_BSLASHcitealt] = ACTIONS(5017), + [anon_sym_BSLASHcitealp] = ACTIONS(5017), + [anon_sym_BSLASHcitetext] = ACTIONS(5017), + [anon_sym_BSLASHparencite] = ACTIONS(5017), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHParencite] = ACTIONS(5017), + [anon_sym_BSLASHfootcite] = ACTIONS(5017), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5017), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5017), + [anon_sym_BSLASHtextcite] = ACTIONS(5017), + [anon_sym_BSLASHTextcite] = ACTIONS(5017), + [anon_sym_BSLASHsmartcite] = ACTIONS(5017), + [anon_sym_BSLASHSmartcite] = ACTIONS(5017), + [anon_sym_BSLASHsupercite] = ACTIONS(5017), + [anon_sym_BSLASHautocite] = ACTIONS(5017), + [anon_sym_BSLASHAutocite] = ACTIONS(5017), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5015), + [anon_sym_BSLASHvolcite] = ACTIONS(5017), + [anon_sym_BSLASHVolcite] = ACTIONS(5017), + [anon_sym_BSLASHpvolcite] = ACTIONS(5017), + [anon_sym_BSLASHPvolcite] = ACTIONS(5017), + [anon_sym_BSLASHfvolcite] = ACTIONS(5017), + [anon_sym_BSLASHftvolcite] = ACTIONS(5017), + [anon_sym_BSLASHsvolcite] = ACTIONS(5017), + [anon_sym_BSLASHSvolcite] = ACTIONS(5017), + [anon_sym_BSLASHtvolcite] = ACTIONS(5017), + [anon_sym_BSLASHTvolcite] = ACTIONS(5017), + [anon_sym_BSLASHavolcite] = ACTIONS(5017), + [anon_sym_BSLASHAvolcite] = ACTIONS(5017), + [anon_sym_BSLASHnotecite] = ACTIONS(5017), + [anon_sym_BSLASHNotecite] = ACTIONS(5017), + [anon_sym_BSLASHpnotecite] = ACTIONS(5017), + [anon_sym_BSLASHPnotecite] = ACTIONS(5017), + [anon_sym_BSLASHfnotecite] = ACTIONS(5017), + [anon_sym_BSLASHlabel] = ACTIONS(5017), + [anon_sym_BSLASHref] = ACTIONS(5017), + [anon_sym_BSLASHeqref] = ACTIONS(5017), + [anon_sym_BSLASHvref] = ACTIONS(5017), + [anon_sym_BSLASHVref] = ACTIONS(5017), + [anon_sym_BSLASHautoref] = ACTIONS(5017), + [anon_sym_BSLASHpageref] = ACTIONS(5017), + [anon_sym_BSLASHcref] = ACTIONS(5017), + [anon_sym_BSLASHCref] = ACTIONS(5017), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnameCref] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5017), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5017), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5017), + [anon_sym_BSLASHlabelcref] = ACTIONS(5017), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange] = ACTIONS(5017), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHCrefrange] = ACTIONS(5017), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5015), + [anon_sym_BSLASHnewlabel] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand] = ACTIONS(5017), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5017), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5017), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5015), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5017), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5015), + [anon_sym_BSLASHdef] = ACTIONS(5017), + [anon_sym_BSLASHlet] = ACTIONS(5017), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5017), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5017), + [anon_sym_BSLASHgls] = ACTIONS(5017), + [anon_sym_BSLASHGls] = ACTIONS(5017), + [anon_sym_BSLASHGLS] = ACTIONS(5017), + [anon_sym_BSLASHglspl] = ACTIONS(5017), + [anon_sym_BSLASHGlspl] = ACTIONS(5017), + [anon_sym_BSLASHGLSpl] = ACTIONS(5017), + [anon_sym_BSLASHglsdisp] = ACTIONS(5017), + [anon_sym_BSLASHglslink] = ACTIONS(5017), + [anon_sym_BSLASHglstext] = ACTIONS(5017), + [anon_sym_BSLASHGlstext] = ACTIONS(5017), + [anon_sym_BSLASHGLStext] = ACTIONS(5017), + [anon_sym_BSLASHglsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5017), + [anon_sym_BSLASHglsplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSplural] = ACTIONS(5017), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5017), + [anon_sym_BSLASHglsname] = ACTIONS(5017), + [anon_sym_BSLASHGlsname] = ACTIONS(5017), + [anon_sym_BSLASHGLSname] = ACTIONS(5017), + [anon_sym_BSLASHglssymbol] = ACTIONS(5017), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5017), + [anon_sym_BSLASHglsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5017), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5017), + [anon_sym_BSLASHglsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5017), + [anon_sym_BSLASHglsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5017), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5017), + [anon_sym_BSLASHglsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5017), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5017), + [anon_sym_BSLASHglsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5017), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5017), + [anon_sym_BSLASHnewacronym] = ACTIONS(5017), + [anon_sym_BSLASHacrshort] = ACTIONS(5017), + [anon_sym_BSLASHAcrshort] = ACTIONS(5017), + [anon_sym_BSLASHACRshort] = ACTIONS(5017), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5017), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5017), + [anon_sym_BSLASHacrlong] = ACTIONS(5017), + [anon_sym_BSLASHAcrlong] = ACTIONS(5017), + [anon_sym_BSLASHACRlong] = ACTIONS(5017), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5017), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5017), + [anon_sym_BSLASHacrfull] = ACTIONS(5017), + [anon_sym_BSLASHAcrfull] = ACTIONS(5017), + [anon_sym_BSLASHACRfull] = ACTIONS(5017), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5017), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5017), + [anon_sym_BSLASHacs] = ACTIONS(5017), + [anon_sym_BSLASHAcs] = ACTIONS(5017), + [anon_sym_BSLASHacsp] = ACTIONS(5017), + [anon_sym_BSLASHAcsp] = ACTIONS(5017), + [anon_sym_BSLASHacl] = ACTIONS(5017), + [anon_sym_BSLASHAcl] = ACTIONS(5017), + [anon_sym_BSLASHaclp] = ACTIONS(5017), + [anon_sym_BSLASHAclp] = ACTIONS(5017), + [anon_sym_BSLASHacf] = ACTIONS(5017), + [anon_sym_BSLASHAcf] = ACTIONS(5017), + [anon_sym_BSLASHacfp] = ACTIONS(5017), + [anon_sym_BSLASHAcfp] = ACTIONS(5017), + [anon_sym_BSLASHac] = ACTIONS(5017), + [anon_sym_BSLASHAc] = ACTIONS(5017), + [anon_sym_BSLASHacp] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5017), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5017), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5017), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5017), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5017), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5017), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5017), + [anon_sym_BSLASHcolor] = ACTIONS(5017), + [anon_sym_BSLASHcolorbox] = ACTIONS(5017), + [anon_sym_BSLASHtextcolor] = ACTIONS(5017), + [anon_sym_BSLASHpagecolor] = ACTIONS(5017), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5017), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5017), }, - [1549] = { - [sym_command_name] = ACTIONS(5193), + [1544] = { + [sym_command_name] = ACTIONS(5201), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5193), - [anon_sym_RBRACK] = ACTIONS(5191), - [anon_sym_COMMA] = ACTIONS(5191), - [anon_sym_EQ] = ACTIONS(5191), - [anon_sym_RBRACE] = ACTIONS(5191), - [sym_word] = ACTIONS(5193), - [sym_placeholder] = ACTIONS(5191), - [anon_sym_PLUS] = ACTIONS(5193), - [anon_sym_DASH] = ACTIONS(5193), - [anon_sym_STAR] = ACTIONS(5193), - [anon_sym_SLASH] = ACTIONS(5193), - [anon_sym_CARET] = ACTIONS(5193), - [anon_sym__] = ACTIONS(5193), - [anon_sym_LT] = ACTIONS(5193), - [anon_sym_GT] = ACTIONS(5193), - [anon_sym_BANG] = ACTIONS(5193), - [anon_sym_PIPE] = ACTIONS(5193), - [anon_sym_COLON] = ACTIONS(5193), - [anon_sym_SQUOTE] = ACTIONS(5193), - [anon_sym_BSLASHusepackage] = ACTIONS(5193), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), - [anon_sym_BSLASHinclude] = ACTIONS(5193), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), - [anon_sym_BSLASHinput] = ACTIONS(5193), - [anon_sym_BSLASHsubfile] = ACTIONS(5193), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), - [anon_sym_BSLASHbibliography] = ACTIONS(5193), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), - [anon_sym_BSLASHincludesvg] = ACTIONS(5193), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), - [anon_sym_BSLASHimport] = ACTIONS(5193), - [anon_sym_BSLASHsubimport] = ACTIONS(5193), - [anon_sym_BSLASHinputfrom] = ACTIONS(5193), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), - [anon_sym_BSLASHincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), - [anon_sym_BSLASHcaption] = ACTIONS(5193), - [anon_sym_BSLASHcite] = ACTIONS(5193), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCite] = ACTIONS(5193), - [anon_sym_BSLASHnocite] = ACTIONS(5193), - [anon_sym_BSLASHcitet] = ACTIONS(5193), - [anon_sym_BSLASHcitep] = ACTIONS(5193), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteauthor] = ACTIONS(5193), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitetitle] = ACTIONS(5193), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteyear] = ACTIONS(5193), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), - [anon_sym_BSLASHcitedate] = ACTIONS(5193), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), - [anon_sym_BSLASHciteurl] = ACTIONS(5193), - [anon_sym_BSLASHfullcite] = ACTIONS(5193), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), - [anon_sym_BSLASHcitealt] = ACTIONS(5193), - [anon_sym_BSLASHcitealp] = ACTIONS(5193), - [anon_sym_BSLASHcitetext] = ACTIONS(5193), - [anon_sym_BSLASHparencite] = ACTIONS(5193), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHParencite] = ACTIONS(5193), - [anon_sym_BSLASHfootcite] = ACTIONS(5193), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), - [anon_sym_BSLASHtextcite] = ACTIONS(5193), - [anon_sym_BSLASHTextcite] = ACTIONS(5193), - [anon_sym_BSLASHsmartcite] = ACTIONS(5193), - [anon_sym_BSLASHSmartcite] = ACTIONS(5193), - [anon_sym_BSLASHsupercite] = ACTIONS(5193), - [anon_sym_BSLASHautocite] = ACTIONS(5193), - [anon_sym_BSLASHAutocite] = ACTIONS(5193), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), - [anon_sym_BSLASHvolcite] = ACTIONS(5193), - [anon_sym_BSLASHVolcite] = ACTIONS(5193), - [anon_sym_BSLASHpvolcite] = ACTIONS(5193), - [anon_sym_BSLASHPvolcite] = ACTIONS(5193), - [anon_sym_BSLASHfvolcite] = ACTIONS(5193), - [anon_sym_BSLASHftvolcite] = ACTIONS(5193), - [anon_sym_BSLASHsvolcite] = ACTIONS(5193), - [anon_sym_BSLASHSvolcite] = ACTIONS(5193), - [anon_sym_BSLASHtvolcite] = ACTIONS(5193), - [anon_sym_BSLASHTvolcite] = ACTIONS(5193), - [anon_sym_BSLASHavolcite] = ACTIONS(5193), - [anon_sym_BSLASHAvolcite] = ACTIONS(5193), - [anon_sym_BSLASHnotecite] = ACTIONS(5193), - [anon_sym_BSLASHNotecite] = ACTIONS(5193), - [anon_sym_BSLASHpnotecite] = ACTIONS(5193), - [anon_sym_BSLASHPnotecite] = ACTIONS(5193), - [anon_sym_BSLASHfnotecite] = ACTIONS(5193), - [anon_sym_BSLASHlabel] = ACTIONS(5193), - [anon_sym_BSLASHref] = ACTIONS(5193), - [anon_sym_BSLASHeqref] = ACTIONS(5193), - [anon_sym_BSLASHvref] = ACTIONS(5193), - [anon_sym_BSLASHVref] = ACTIONS(5193), - [anon_sym_BSLASHautoref] = ACTIONS(5193), - [anon_sym_BSLASHpageref] = ACTIONS(5193), - [anon_sym_BSLASHcref] = ACTIONS(5193), - [anon_sym_BSLASHCref] = ACTIONS(5193), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnameCref] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), - [anon_sym_BSLASHlabelcref] = ACTIONS(5193), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange] = ACTIONS(5193), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHCrefrange] = ACTIONS(5193), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), - [anon_sym_BSLASHnewlabel] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand] = ACTIONS(5193), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), - [anon_sym_BSLASHdef] = ACTIONS(5193), - [anon_sym_BSLASHlet] = ACTIONS(5193), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), - [anon_sym_BSLASHgls] = ACTIONS(5193), - [anon_sym_BSLASHGls] = ACTIONS(5193), - [anon_sym_BSLASHGLS] = ACTIONS(5193), - [anon_sym_BSLASHglspl] = ACTIONS(5193), - [anon_sym_BSLASHGlspl] = ACTIONS(5193), - [anon_sym_BSLASHGLSpl] = ACTIONS(5193), - [anon_sym_BSLASHglsdisp] = ACTIONS(5193), - [anon_sym_BSLASHglslink] = ACTIONS(5193), - [anon_sym_BSLASHglstext] = ACTIONS(5193), - [anon_sym_BSLASHGlstext] = ACTIONS(5193), - [anon_sym_BSLASHGLStext] = ACTIONS(5193), - [anon_sym_BSLASHglsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), - [anon_sym_BSLASHglsplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSplural] = ACTIONS(5193), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), - [anon_sym_BSLASHglsname] = ACTIONS(5193), - [anon_sym_BSLASHGlsname] = ACTIONS(5193), - [anon_sym_BSLASHGLSname] = ACTIONS(5193), - [anon_sym_BSLASHglssymbol] = ACTIONS(5193), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), - [anon_sym_BSLASHglsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), - [anon_sym_BSLASHglsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), - [anon_sym_BSLASHglsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), - [anon_sym_BSLASHglsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), - [anon_sym_BSLASHglsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), - [anon_sym_BSLASHnewacronym] = ACTIONS(5193), - [anon_sym_BSLASHacrshort] = ACTIONS(5193), - [anon_sym_BSLASHAcrshort] = ACTIONS(5193), - [anon_sym_BSLASHACRshort] = ACTIONS(5193), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), - [anon_sym_BSLASHacrlong] = ACTIONS(5193), - [anon_sym_BSLASHAcrlong] = ACTIONS(5193), - [anon_sym_BSLASHACRlong] = ACTIONS(5193), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), - [anon_sym_BSLASHacrfull] = ACTIONS(5193), - [anon_sym_BSLASHAcrfull] = ACTIONS(5193), - [anon_sym_BSLASHACRfull] = ACTIONS(5193), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), - [anon_sym_BSLASHacs] = ACTIONS(5193), - [anon_sym_BSLASHAcs] = ACTIONS(5193), - [anon_sym_BSLASHacsp] = ACTIONS(5193), - [anon_sym_BSLASHAcsp] = ACTIONS(5193), - [anon_sym_BSLASHacl] = ACTIONS(5193), - [anon_sym_BSLASHAcl] = ACTIONS(5193), - [anon_sym_BSLASHaclp] = ACTIONS(5193), - [anon_sym_BSLASHAclp] = ACTIONS(5193), - [anon_sym_BSLASHacf] = ACTIONS(5193), - [anon_sym_BSLASHAcf] = ACTIONS(5193), - [anon_sym_BSLASHacfp] = ACTIONS(5193), - [anon_sym_BSLASHAcfp] = ACTIONS(5193), - [anon_sym_BSLASHac] = ACTIONS(5193), - [anon_sym_BSLASHAc] = ACTIONS(5193), - [anon_sym_BSLASHacp] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), - [anon_sym_BSLASHcolor] = ACTIONS(5193), - [anon_sym_BSLASHcolorbox] = ACTIONS(5193), - [anon_sym_BSLASHtextcolor] = ACTIONS(5193), - [anon_sym_BSLASHpagecolor] = ACTIONS(5193), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), + [anon_sym_BSLASHiffalse] = ACTIONS(5201), + [anon_sym_RBRACK] = ACTIONS(5199), + [anon_sym_COMMA] = ACTIONS(5199), + [anon_sym_EQ] = ACTIONS(5199), + [anon_sym_RBRACE] = ACTIONS(5199), + [sym_word] = ACTIONS(5201), + [sym_placeholder] = ACTIONS(5199), + [anon_sym_PLUS] = ACTIONS(5201), + [anon_sym_DASH] = ACTIONS(5201), + [anon_sym_STAR] = ACTIONS(5201), + [anon_sym_SLASH] = ACTIONS(5201), + [anon_sym_CARET] = ACTIONS(5201), + [anon_sym__] = ACTIONS(5201), + [anon_sym_LT] = ACTIONS(5201), + [anon_sym_GT] = ACTIONS(5201), + [anon_sym_BANG] = ACTIONS(5201), + [anon_sym_PIPE] = ACTIONS(5201), + [anon_sym_COLON] = ACTIONS(5201), + [anon_sym_SQUOTE] = ACTIONS(5201), + [anon_sym_BSLASHusepackage] = ACTIONS(5201), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5201), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5201), + [anon_sym_BSLASHinclude] = ACTIONS(5201), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5201), + [anon_sym_BSLASHinput] = ACTIONS(5201), + [anon_sym_BSLASHsubfile] = ACTIONS(5201), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5201), + [anon_sym_BSLASHbibliography] = ACTIONS(5201), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5201), + [anon_sym_BSLASHincludesvg] = ACTIONS(5201), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5201), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5201), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5201), + [anon_sym_BSLASHimport] = ACTIONS(5201), + [anon_sym_BSLASHsubimport] = ACTIONS(5201), + [anon_sym_BSLASHinputfrom] = ACTIONS(5201), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5201), + [anon_sym_BSLASHincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5201), + [anon_sym_BSLASHcaption] = ACTIONS(5201), + [anon_sym_BSLASHcite] = ACTIONS(5201), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCite] = ACTIONS(5201), + [anon_sym_BSLASHnocite] = ACTIONS(5201), + [anon_sym_BSLASHcitet] = ACTIONS(5201), + [anon_sym_BSLASHcitep] = ACTIONS(5201), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteauthor] = ACTIONS(5201), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5201), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitetitle] = ACTIONS(5201), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteyear] = ACTIONS(5201), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5199), + [anon_sym_BSLASHcitedate] = ACTIONS(5201), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5199), + [anon_sym_BSLASHciteurl] = ACTIONS(5201), + [anon_sym_BSLASHfullcite] = ACTIONS(5201), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5201), + [anon_sym_BSLASHcitealt] = ACTIONS(5201), + [anon_sym_BSLASHcitealp] = ACTIONS(5201), + [anon_sym_BSLASHcitetext] = ACTIONS(5201), + [anon_sym_BSLASHparencite] = ACTIONS(5201), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHParencite] = ACTIONS(5201), + [anon_sym_BSLASHfootcite] = ACTIONS(5201), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5201), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5201), + [anon_sym_BSLASHtextcite] = ACTIONS(5201), + [anon_sym_BSLASHTextcite] = ACTIONS(5201), + [anon_sym_BSLASHsmartcite] = ACTIONS(5201), + [anon_sym_BSLASHSmartcite] = ACTIONS(5201), + [anon_sym_BSLASHsupercite] = ACTIONS(5201), + [anon_sym_BSLASHautocite] = ACTIONS(5201), + [anon_sym_BSLASHAutocite] = ACTIONS(5201), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5199), + [anon_sym_BSLASHvolcite] = ACTIONS(5201), + [anon_sym_BSLASHVolcite] = ACTIONS(5201), + [anon_sym_BSLASHpvolcite] = ACTIONS(5201), + [anon_sym_BSLASHPvolcite] = ACTIONS(5201), + [anon_sym_BSLASHfvolcite] = ACTIONS(5201), + [anon_sym_BSLASHftvolcite] = ACTIONS(5201), + [anon_sym_BSLASHsvolcite] = ACTIONS(5201), + [anon_sym_BSLASHSvolcite] = ACTIONS(5201), + [anon_sym_BSLASHtvolcite] = ACTIONS(5201), + [anon_sym_BSLASHTvolcite] = ACTIONS(5201), + [anon_sym_BSLASHavolcite] = ACTIONS(5201), + [anon_sym_BSLASHAvolcite] = ACTIONS(5201), + [anon_sym_BSLASHnotecite] = ACTIONS(5201), + [anon_sym_BSLASHNotecite] = ACTIONS(5201), + [anon_sym_BSLASHpnotecite] = ACTIONS(5201), + [anon_sym_BSLASHPnotecite] = ACTIONS(5201), + [anon_sym_BSLASHfnotecite] = ACTIONS(5201), + [anon_sym_BSLASHlabel] = ACTIONS(5201), + [anon_sym_BSLASHref] = ACTIONS(5201), + [anon_sym_BSLASHeqref] = ACTIONS(5201), + [anon_sym_BSLASHvref] = ACTIONS(5201), + [anon_sym_BSLASHVref] = ACTIONS(5201), + [anon_sym_BSLASHautoref] = ACTIONS(5201), + [anon_sym_BSLASHpageref] = ACTIONS(5201), + [anon_sym_BSLASHcref] = ACTIONS(5201), + [anon_sym_BSLASHCref] = ACTIONS(5201), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnameCref] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5201), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5201), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5201), + [anon_sym_BSLASHlabelcref] = ACTIONS(5201), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange] = ACTIONS(5201), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHCrefrange] = ACTIONS(5201), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5199), + [anon_sym_BSLASHnewlabel] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand] = ACTIONS(5201), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5201), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5201), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5199), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5201), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5199), + [anon_sym_BSLASHdef] = ACTIONS(5201), + [anon_sym_BSLASHlet] = ACTIONS(5201), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5201), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5201), + [anon_sym_BSLASHgls] = ACTIONS(5201), + [anon_sym_BSLASHGls] = ACTIONS(5201), + [anon_sym_BSLASHGLS] = ACTIONS(5201), + [anon_sym_BSLASHglspl] = ACTIONS(5201), + [anon_sym_BSLASHGlspl] = ACTIONS(5201), + [anon_sym_BSLASHGLSpl] = ACTIONS(5201), + [anon_sym_BSLASHglsdisp] = ACTIONS(5201), + [anon_sym_BSLASHglslink] = ACTIONS(5201), + [anon_sym_BSLASHglstext] = ACTIONS(5201), + [anon_sym_BSLASHGlstext] = ACTIONS(5201), + [anon_sym_BSLASHGLStext] = ACTIONS(5201), + [anon_sym_BSLASHglsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5201), + [anon_sym_BSLASHglsplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSplural] = ACTIONS(5201), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5201), + [anon_sym_BSLASHglsname] = ACTIONS(5201), + [anon_sym_BSLASHGlsname] = ACTIONS(5201), + [anon_sym_BSLASHGLSname] = ACTIONS(5201), + [anon_sym_BSLASHglssymbol] = ACTIONS(5201), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5201), + [anon_sym_BSLASHglsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5201), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5201), + [anon_sym_BSLASHglsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5201), + [anon_sym_BSLASHglsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5201), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5201), + [anon_sym_BSLASHglsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5201), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5201), + [anon_sym_BSLASHglsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5201), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5201), + [anon_sym_BSLASHnewacronym] = ACTIONS(5201), + [anon_sym_BSLASHacrshort] = ACTIONS(5201), + [anon_sym_BSLASHAcrshort] = ACTIONS(5201), + [anon_sym_BSLASHACRshort] = ACTIONS(5201), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5201), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5201), + [anon_sym_BSLASHacrlong] = ACTIONS(5201), + [anon_sym_BSLASHAcrlong] = ACTIONS(5201), + [anon_sym_BSLASHACRlong] = ACTIONS(5201), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5201), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5201), + [anon_sym_BSLASHacrfull] = ACTIONS(5201), + [anon_sym_BSLASHAcrfull] = ACTIONS(5201), + [anon_sym_BSLASHACRfull] = ACTIONS(5201), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5201), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5201), + [anon_sym_BSLASHacs] = ACTIONS(5201), + [anon_sym_BSLASHAcs] = ACTIONS(5201), + [anon_sym_BSLASHacsp] = ACTIONS(5201), + [anon_sym_BSLASHAcsp] = ACTIONS(5201), + [anon_sym_BSLASHacl] = ACTIONS(5201), + [anon_sym_BSLASHAcl] = ACTIONS(5201), + [anon_sym_BSLASHaclp] = ACTIONS(5201), + [anon_sym_BSLASHAclp] = ACTIONS(5201), + [anon_sym_BSLASHacf] = ACTIONS(5201), + [anon_sym_BSLASHAcf] = ACTIONS(5201), + [anon_sym_BSLASHacfp] = ACTIONS(5201), + [anon_sym_BSLASHAcfp] = ACTIONS(5201), + [anon_sym_BSLASHac] = ACTIONS(5201), + [anon_sym_BSLASHAc] = ACTIONS(5201), + [anon_sym_BSLASHacp] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5201), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5201), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5201), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5201), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5201), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5201), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5201), + [anon_sym_BSLASHcolor] = ACTIONS(5201), + [anon_sym_BSLASHcolorbox] = ACTIONS(5201), + [anon_sym_BSLASHtextcolor] = ACTIONS(5201), + [anon_sym_BSLASHpagecolor] = ACTIONS(5201), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5201), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5201), }, - [1550] = { - [sym_command_name] = ACTIONS(5325), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5325), - [anon_sym_RBRACK] = ACTIONS(5323), - [anon_sym_COMMA] = ACTIONS(5323), - [anon_sym_EQ] = ACTIONS(5323), - [anon_sym_RBRACE] = ACTIONS(5323), - [sym_word] = ACTIONS(5325), - [sym_placeholder] = ACTIONS(5323), - [anon_sym_PLUS] = ACTIONS(5325), - [anon_sym_DASH] = ACTIONS(5325), - [anon_sym_STAR] = ACTIONS(5325), - [anon_sym_SLASH] = ACTIONS(5325), - [anon_sym_CARET] = ACTIONS(5325), - [anon_sym__] = ACTIONS(5325), - [anon_sym_LT] = ACTIONS(5325), - [anon_sym_GT] = ACTIONS(5325), - [anon_sym_BANG] = ACTIONS(5325), - [anon_sym_PIPE] = ACTIONS(5325), - [anon_sym_COLON] = ACTIONS(5325), - [anon_sym_SQUOTE] = ACTIONS(5325), - [anon_sym_BSLASHusepackage] = ACTIONS(5325), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5325), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5325), - [anon_sym_BSLASHinclude] = ACTIONS(5325), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5325), - [anon_sym_BSLASHinput] = ACTIONS(5325), - [anon_sym_BSLASHsubfile] = ACTIONS(5325), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5325), - [anon_sym_BSLASHbibliography] = ACTIONS(5325), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5325), - [anon_sym_BSLASHincludesvg] = ACTIONS(5325), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5325), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5325), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5325), - [anon_sym_BSLASHimport] = ACTIONS(5325), - [anon_sym_BSLASHsubimport] = ACTIONS(5325), - [anon_sym_BSLASHinputfrom] = ACTIONS(5325), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5325), - [anon_sym_BSLASHincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5325), - [anon_sym_BSLASHcaption] = ACTIONS(5325), - [anon_sym_BSLASHcite] = ACTIONS(5325), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCite] = ACTIONS(5325), - [anon_sym_BSLASHnocite] = ACTIONS(5325), - [anon_sym_BSLASHcitet] = ACTIONS(5325), - [anon_sym_BSLASHcitep] = ACTIONS(5325), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteauthor] = ACTIONS(5325), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5325), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitetitle] = ACTIONS(5325), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteyear] = ACTIONS(5325), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5323), - [anon_sym_BSLASHcitedate] = ACTIONS(5325), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5323), - [anon_sym_BSLASHciteurl] = ACTIONS(5325), - [anon_sym_BSLASHfullcite] = ACTIONS(5325), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5325), - [anon_sym_BSLASHcitealt] = ACTIONS(5325), - [anon_sym_BSLASHcitealp] = ACTIONS(5325), - [anon_sym_BSLASHcitetext] = ACTIONS(5325), - [anon_sym_BSLASHparencite] = ACTIONS(5325), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHParencite] = ACTIONS(5325), - [anon_sym_BSLASHfootcite] = ACTIONS(5325), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5325), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5325), - [anon_sym_BSLASHtextcite] = ACTIONS(5325), - [anon_sym_BSLASHTextcite] = ACTIONS(5325), - [anon_sym_BSLASHsmartcite] = ACTIONS(5325), - [anon_sym_BSLASHSmartcite] = ACTIONS(5325), - [anon_sym_BSLASHsupercite] = ACTIONS(5325), - [anon_sym_BSLASHautocite] = ACTIONS(5325), - [anon_sym_BSLASHAutocite] = ACTIONS(5325), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5323), - [anon_sym_BSLASHvolcite] = ACTIONS(5325), - [anon_sym_BSLASHVolcite] = ACTIONS(5325), - [anon_sym_BSLASHpvolcite] = ACTIONS(5325), - [anon_sym_BSLASHPvolcite] = ACTIONS(5325), - [anon_sym_BSLASHfvolcite] = ACTIONS(5325), - [anon_sym_BSLASHftvolcite] = ACTIONS(5325), - [anon_sym_BSLASHsvolcite] = ACTIONS(5325), - [anon_sym_BSLASHSvolcite] = ACTIONS(5325), - [anon_sym_BSLASHtvolcite] = ACTIONS(5325), - [anon_sym_BSLASHTvolcite] = ACTIONS(5325), - [anon_sym_BSLASHavolcite] = ACTIONS(5325), - [anon_sym_BSLASHAvolcite] = ACTIONS(5325), - [anon_sym_BSLASHnotecite] = ACTIONS(5325), - [anon_sym_BSLASHNotecite] = ACTIONS(5325), - [anon_sym_BSLASHpnotecite] = ACTIONS(5325), - [anon_sym_BSLASHPnotecite] = ACTIONS(5325), - [anon_sym_BSLASHfnotecite] = ACTIONS(5325), - [anon_sym_BSLASHlabel] = ACTIONS(5325), - [anon_sym_BSLASHref] = ACTIONS(5325), - [anon_sym_BSLASHeqref] = ACTIONS(5325), - [anon_sym_BSLASHvref] = ACTIONS(5325), - [anon_sym_BSLASHVref] = ACTIONS(5325), - [anon_sym_BSLASHautoref] = ACTIONS(5325), - [anon_sym_BSLASHpageref] = ACTIONS(5325), - [anon_sym_BSLASHcref] = ACTIONS(5325), - [anon_sym_BSLASHCref] = ACTIONS(5325), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnameCref] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5325), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5325), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5325), - [anon_sym_BSLASHlabelcref] = ACTIONS(5325), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange] = ACTIONS(5325), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHCrefrange] = ACTIONS(5325), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5323), - [anon_sym_BSLASHnewlabel] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand] = ACTIONS(5325), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5325), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5325), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5323), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5325), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5323), - [anon_sym_BSLASHdef] = ACTIONS(5325), - [anon_sym_BSLASHlet] = ACTIONS(5325), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5325), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5325), - [anon_sym_BSLASHgls] = ACTIONS(5325), - [anon_sym_BSLASHGls] = ACTIONS(5325), - [anon_sym_BSLASHGLS] = ACTIONS(5325), - [anon_sym_BSLASHglspl] = ACTIONS(5325), - [anon_sym_BSLASHGlspl] = ACTIONS(5325), - [anon_sym_BSLASHGLSpl] = ACTIONS(5325), - [anon_sym_BSLASHglsdisp] = ACTIONS(5325), - [anon_sym_BSLASHglslink] = ACTIONS(5325), - [anon_sym_BSLASHglstext] = ACTIONS(5325), - [anon_sym_BSLASHGlstext] = ACTIONS(5325), - [anon_sym_BSLASHGLStext] = ACTIONS(5325), - [anon_sym_BSLASHglsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5325), - [anon_sym_BSLASHglsplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSplural] = ACTIONS(5325), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5325), - [anon_sym_BSLASHglsname] = ACTIONS(5325), - [anon_sym_BSLASHGlsname] = ACTIONS(5325), - [anon_sym_BSLASHGLSname] = ACTIONS(5325), - [anon_sym_BSLASHglssymbol] = ACTIONS(5325), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5325), - [anon_sym_BSLASHglsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5325), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5325), - [anon_sym_BSLASHglsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5325), - [anon_sym_BSLASHglsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5325), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5325), - [anon_sym_BSLASHglsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5325), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5325), - [anon_sym_BSLASHglsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5325), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5325), - [anon_sym_BSLASHnewacronym] = ACTIONS(5325), - [anon_sym_BSLASHacrshort] = ACTIONS(5325), - [anon_sym_BSLASHAcrshort] = ACTIONS(5325), - [anon_sym_BSLASHACRshort] = ACTIONS(5325), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5325), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5325), - [anon_sym_BSLASHacrlong] = ACTIONS(5325), - [anon_sym_BSLASHAcrlong] = ACTIONS(5325), - [anon_sym_BSLASHACRlong] = ACTIONS(5325), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5325), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5325), - [anon_sym_BSLASHacrfull] = ACTIONS(5325), - [anon_sym_BSLASHAcrfull] = ACTIONS(5325), - [anon_sym_BSLASHACRfull] = ACTIONS(5325), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5325), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5325), - [anon_sym_BSLASHacs] = ACTIONS(5325), - [anon_sym_BSLASHAcs] = ACTIONS(5325), - [anon_sym_BSLASHacsp] = ACTIONS(5325), - [anon_sym_BSLASHAcsp] = ACTIONS(5325), - [anon_sym_BSLASHacl] = ACTIONS(5325), - [anon_sym_BSLASHAcl] = ACTIONS(5325), - [anon_sym_BSLASHaclp] = ACTIONS(5325), - [anon_sym_BSLASHAclp] = ACTIONS(5325), - [anon_sym_BSLASHacf] = ACTIONS(5325), - [anon_sym_BSLASHAcf] = ACTIONS(5325), - [anon_sym_BSLASHacfp] = ACTIONS(5325), - [anon_sym_BSLASHAcfp] = ACTIONS(5325), - [anon_sym_BSLASHac] = ACTIONS(5325), - [anon_sym_BSLASHAc] = ACTIONS(5325), - [anon_sym_BSLASHacp] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5325), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5325), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5325), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5325), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5325), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5325), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5325), - [anon_sym_BSLASHcolor] = ACTIONS(5325), - [anon_sym_BSLASHcolorbox] = ACTIONS(5325), - [anon_sym_BSLASHtextcolor] = ACTIONS(5325), - [anon_sym_BSLASHpagecolor] = ACTIONS(5325), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5325), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5325), + [1545] = { + [sym_command_name] = ACTIONS(5313), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5313), + [anon_sym_RBRACK] = ACTIONS(5311), + [anon_sym_COMMA] = ACTIONS(5311), + [anon_sym_EQ] = ACTIONS(5311), + [anon_sym_RBRACE] = ACTIONS(5311), + [sym_word] = ACTIONS(5313), + [sym_placeholder] = ACTIONS(5311), + [anon_sym_PLUS] = ACTIONS(5313), + [anon_sym_DASH] = ACTIONS(5313), + [anon_sym_STAR] = ACTIONS(5313), + [anon_sym_SLASH] = ACTIONS(5313), + [anon_sym_CARET] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + [anon_sym_LT] = ACTIONS(5313), + [anon_sym_GT] = ACTIONS(5313), + [anon_sym_BANG] = ACTIONS(5313), + [anon_sym_PIPE] = ACTIONS(5313), + [anon_sym_COLON] = ACTIONS(5313), + [anon_sym_SQUOTE] = ACTIONS(5313), + [anon_sym_BSLASHusepackage] = ACTIONS(5313), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5313), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5313), + [anon_sym_BSLASHinclude] = ACTIONS(5313), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5313), + [anon_sym_BSLASHinput] = ACTIONS(5313), + [anon_sym_BSLASHsubfile] = ACTIONS(5313), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5313), + [anon_sym_BSLASHbibliography] = ACTIONS(5313), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5313), + [anon_sym_BSLASHincludesvg] = ACTIONS(5313), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5313), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5313), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5313), + [anon_sym_BSLASHimport] = ACTIONS(5313), + [anon_sym_BSLASHsubimport] = ACTIONS(5313), + [anon_sym_BSLASHinputfrom] = ACTIONS(5313), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5313), + [anon_sym_BSLASHincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5313), + [anon_sym_BSLASHcaption] = ACTIONS(5313), + [anon_sym_BSLASHcite] = ACTIONS(5313), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCite] = ACTIONS(5313), + [anon_sym_BSLASHnocite] = ACTIONS(5313), + [anon_sym_BSLASHcitet] = ACTIONS(5313), + [anon_sym_BSLASHcitep] = ACTIONS(5313), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteauthor] = ACTIONS(5313), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5313), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitetitle] = ACTIONS(5313), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteyear] = ACTIONS(5313), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5311), + [anon_sym_BSLASHcitedate] = ACTIONS(5313), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5311), + [anon_sym_BSLASHciteurl] = ACTIONS(5313), + [anon_sym_BSLASHfullcite] = ACTIONS(5313), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5313), + [anon_sym_BSLASHcitealt] = ACTIONS(5313), + [anon_sym_BSLASHcitealp] = ACTIONS(5313), + [anon_sym_BSLASHcitetext] = ACTIONS(5313), + [anon_sym_BSLASHparencite] = ACTIONS(5313), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHParencite] = ACTIONS(5313), + [anon_sym_BSLASHfootcite] = ACTIONS(5313), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5313), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5313), + [anon_sym_BSLASHtextcite] = ACTIONS(5313), + [anon_sym_BSLASHTextcite] = ACTIONS(5313), + [anon_sym_BSLASHsmartcite] = ACTIONS(5313), + [anon_sym_BSLASHSmartcite] = ACTIONS(5313), + [anon_sym_BSLASHsupercite] = ACTIONS(5313), + [anon_sym_BSLASHautocite] = ACTIONS(5313), + [anon_sym_BSLASHAutocite] = ACTIONS(5313), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5311), + [anon_sym_BSLASHvolcite] = ACTIONS(5313), + [anon_sym_BSLASHVolcite] = ACTIONS(5313), + [anon_sym_BSLASHpvolcite] = ACTIONS(5313), + [anon_sym_BSLASHPvolcite] = ACTIONS(5313), + [anon_sym_BSLASHfvolcite] = ACTIONS(5313), + [anon_sym_BSLASHftvolcite] = ACTIONS(5313), + [anon_sym_BSLASHsvolcite] = ACTIONS(5313), + [anon_sym_BSLASHSvolcite] = ACTIONS(5313), + [anon_sym_BSLASHtvolcite] = ACTIONS(5313), + [anon_sym_BSLASHTvolcite] = ACTIONS(5313), + [anon_sym_BSLASHavolcite] = ACTIONS(5313), + [anon_sym_BSLASHAvolcite] = ACTIONS(5313), + [anon_sym_BSLASHnotecite] = ACTIONS(5313), + [anon_sym_BSLASHNotecite] = ACTIONS(5313), + [anon_sym_BSLASHpnotecite] = ACTIONS(5313), + [anon_sym_BSLASHPnotecite] = ACTIONS(5313), + [anon_sym_BSLASHfnotecite] = ACTIONS(5313), + [anon_sym_BSLASHlabel] = ACTIONS(5313), + [anon_sym_BSLASHref] = ACTIONS(5313), + [anon_sym_BSLASHeqref] = ACTIONS(5313), + [anon_sym_BSLASHvref] = ACTIONS(5313), + [anon_sym_BSLASHVref] = ACTIONS(5313), + [anon_sym_BSLASHautoref] = ACTIONS(5313), + [anon_sym_BSLASHpageref] = ACTIONS(5313), + [anon_sym_BSLASHcref] = ACTIONS(5313), + [anon_sym_BSLASHCref] = ACTIONS(5313), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnameCref] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5313), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5313), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5313), + [anon_sym_BSLASHlabelcref] = ACTIONS(5313), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange] = ACTIONS(5313), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHCrefrange] = ACTIONS(5313), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5311), + [anon_sym_BSLASHnewlabel] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand] = ACTIONS(5313), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5313), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5313), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5311), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5313), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5311), + [anon_sym_BSLASHdef] = ACTIONS(5313), + [anon_sym_BSLASHlet] = ACTIONS(5313), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5313), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5313), + [anon_sym_BSLASHgls] = ACTIONS(5313), + [anon_sym_BSLASHGls] = ACTIONS(5313), + [anon_sym_BSLASHGLS] = ACTIONS(5313), + [anon_sym_BSLASHglspl] = ACTIONS(5313), + [anon_sym_BSLASHGlspl] = ACTIONS(5313), + [anon_sym_BSLASHGLSpl] = ACTIONS(5313), + [anon_sym_BSLASHglsdisp] = ACTIONS(5313), + [anon_sym_BSLASHglslink] = ACTIONS(5313), + [anon_sym_BSLASHglstext] = ACTIONS(5313), + [anon_sym_BSLASHGlstext] = ACTIONS(5313), + [anon_sym_BSLASHGLStext] = ACTIONS(5313), + [anon_sym_BSLASHglsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5313), + [anon_sym_BSLASHglsplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSplural] = ACTIONS(5313), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5313), + [anon_sym_BSLASHglsname] = ACTIONS(5313), + [anon_sym_BSLASHGlsname] = ACTIONS(5313), + [anon_sym_BSLASHGLSname] = ACTIONS(5313), + [anon_sym_BSLASHglssymbol] = ACTIONS(5313), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5313), + [anon_sym_BSLASHglsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5313), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5313), + [anon_sym_BSLASHglsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5313), + [anon_sym_BSLASHglsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5313), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5313), + [anon_sym_BSLASHglsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5313), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5313), + [anon_sym_BSLASHglsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5313), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5313), + [anon_sym_BSLASHnewacronym] = ACTIONS(5313), + [anon_sym_BSLASHacrshort] = ACTIONS(5313), + [anon_sym_BSLASHAcrshort] = ACTIONS(5313), + [anon_sym_BSLASHACRshort] = ACTIONS(5313), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5313), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5313), + [anon_sym_BSLASHacrlong] = ACTIONS(5313), + [anon_sym_BSLASHAcrlong] = ACTIONS(5313), + [anon_sym_BSLASHACRlong] = ACTIONS(5313), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5313), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5313), + [anon_sym_BSLASHacrfull] = ACTIONS(5313), + [anon_sym_BSLASHAcrfull] = ACTIONS(5313), + [anon_sym_BSLASHACRfull] = ACTIONS(5313), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5313), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5313), + [anon_sym_BSLASHacs] = ACTIONS(5313), + [anon_sym_BSLASHAcs] = ACTIONS(5313), + [anon_sym_BSLASHacsp] = ACTIONS(5313), + [anon_sym_BSLASHAcsp] = ACTIONS(5313), + [anon_sym_BSLASHacl] = ACTIONS(5313), + [anon_sym_BSLASHAcl] = ACTIONS(5313), + [anon_sym_BSLASHaclp] = ACTIONS(5313), + [anon_sym_BSLASHAclp] = ACTIONS(5313), + [anon_sym_BSLASHacf] = ACTIONS(5313), + [anon_sym_BSLASHAcf] = ACTIONS(5313), + [anon_sym_BSLASHacfp] = ACTIONS(5313), + [anon_sym_BSLASHAcfp] = ACTIONS(5313), + [anon_sym_BSLASHac] = ACTIONS(5313), + [anon_sym_BSLASHAc] = ACTIONS(5313), + [anon_sym_BSLASHacp] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5313), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5313), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5313), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5313), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5313), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5313), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5313), + [anon_sym_BSLASHcolor] = ACTIONS(5313), + [anon_sym_BSLASHcolorbox] = ACTIONS(5313), + [anon_sym_BSLASHtextcolor] = ACTIONS(5313), + [anon_sym_BSLASHpagecolor] = ACTIONS(5313), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5313), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5313), }, - [1551] = { - [sym_command_name] = ACTIONS(5205), + [1546] = { + [sym_command_name] = ACTIONS(5025), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5205), - [anon_sym_RBRACK] = ACTIONS(5203), - [anon_sym_COMMA] = ACTIONS(5203), - [anon_sym_EQ] = ACTIONS(5203), - [anon_sym_RBRACE] = ACTIONS(5203), - [sym_word] = ACTIONS(5205), - [sym_placeholder] = ACTIONS(5203), - [anon_sym_PLUS] = ACTIONS(5205), - [anon_sym_DASH] = ACTIONS(5205), - [anon_sym_STAR] = ACTIONS(5205), - [anon_sym_SLASH] = ACTIONS(5205), - [anon_sym_CARET] = ACTIONS(5205), - [anon_sym__] = ACTIONS(5205), - [anon_sym_LT] = ACTIONS(5205), - [anon_sym_GT] = ACTIONS(5205), - [anon_sym_BANG] = ACTIONS(5205), - [anon_sym_PIPE] = ACTIONS(5205), - [anon_sym_COLON] = ACTIONS(5205), - [anon_sym_SQUOTE] = ACTIONS(5205), - [anon_sym_BSLASHusepackage] = ACTIONS(5205), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), - [anon_sym_BSLASHinclude] = ACTIONS(5205), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), - [anon_sym_BSLASHinput] = ACTIONS(5205), - [anon_sym_BSLASHsubfile] = ACTIONS(5205), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), - [anon_sym_BSLASHbibliography] = ACTIONS(5205), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), - [anon_sym_BSLASHincludesvg] = ACTIONS(5205), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), - [anon_sym_BSLASHimport] = ACTIONS(5205), - [anon_sym_BSLASHsubimport] = ACTIONS(5205), - [anon_sym_BSLASHinputfrom] = ACTIONS(5205), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), - [anon_sym_BSLASHincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), - [anon_sym_BSLASHcaption] = ACTIONS(5205), - [anon_sym_BSLASHcite] = ACTIONS(5205), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCite] = ACTIONS(5205), - [anon_sym_BSLASHnocite] = ACTIONS(5205), - [anon_sym_BSLASHcitet] = ACTIONS(5205), - [anon_sym_BSLASHcitep] = ACTIONS(5205), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteauthor] = ACTIONS(5205), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitetitle] = ACTIONS(5205), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteyear] = ACTIONS(5205), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), - [anon_sym_BSLASHcitedate] = ACTIONS(5205), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), - [anon_sym_BSLASHciteurl] = ACTIONS(5205), - [anon_sym_BSLASHfullcite] = ACTIONS(5205), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), - [anon_sym_BSLASHcitealt] = ACTIONS(5205), - [anon_sym_BSLASHcitealp] = ACTIONS(5205), - [anon_sym_BSLASHcitetext] = ACTIONS(5205), - [anon_sym_BSLASHparencite] = ACTIONS(5205), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHParencite] = ACTIONS(5205), - [anon_sym_BSLASHfootcite] = ACTIONS(5205), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), - [anon_sym_BSLASHtextcite] = ACTIONS(5205), - [anon_sym_BSLASHTextcite] = ACTIONS(5205), - [anon_sym_BSLASHsmartcite] = ACTIONS(5205), - [anon_sym_BSLASHSmartcite] = ACTIONS(5205), - [anon_sym_BSLASHsupercite] = ACTIONS(5205), - [anon_sym_BSLASHautocite] = ACTIONS(5205), - [anon_sym_BSLASHAutocite] = ACTIONS(5205), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), - [anon_sym_BSLASHvolcite] = ACTIONS(5205), - [anon_sym_BSLASHVolcite] = ACTIONS(5205), - [anon_sym_BSLASHpvolcite] = ACTIONS(5205), - [anon_sym_BSLASHPvolcite] = ACTIONS(5205), - [anon_sym_BSLASHfvolcite] = ACTIONS(5205), - [anon_sym_BSLASHftvolcite] = ACTIONS(5205), - [anon_sym_BSLASHsvolcite] = ACTIONS(5205), - [anon_sym_BSLASHSvolcite] = ACTIONS(5205), - [anon_sym_BSLASHtvolcite] = ACTIONS(5205), - [anon_sym_BSLASHTvolcite] = ACTIONS(5205), - [anon_sym_BSLASHavolcite] = ACTIONS(5205), - [anon_sym_BSLASHAvolcite] = ACTIONS(5205), - [anon_sym_BSLASHnotecite] = ACTIONS(5205), - [anon_sym_BSLASHNotecite] = ACTIONS(5205), - [anon_sym_BSLASHpnotecite] = ACTIONS(5205), - [anon_sym_BSLASHPnotecite] = ACTIONS(5205), - [anon_sym_BSLASHfnotecite] = ACTIONS(5205), - [anon_sym_BSLASHlabel] = ACTIONS(5205), - [anon_sym_BSLASHref] = ACTIONS(5205), - [anon_sym_BSLASHeqref] = ACTIONS(5205), - [anon_sym_BSLASHvref] = ACTIONS(5205), - [anon_sym_BSLASHVref] = ACTIONS(5205), - [anon_sym_BSLASHautoref] = ACTIONS(5205), - [anon_sym_BSLASHpageref] = ACTIONS(5205), - [anon_sym_BSLASHcref] = ACTIONS(5205), - [anon_sym_BSLASHCref] = ACTIONS(5205), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnameCref] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), - [anon_sym_BSLASHlabelcref] = ACTIONS(5205), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange] = ACTIONS(5205), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHCrefrange] = ACTIONS(5205), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), - [anon_sym_BSLASHnewlabel] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand] = ACTIONS(5205), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), - [anon_sym_BSLASHdef] = ACTIONS(5205), - [anon_sym_BSLASHlet] = ACTIONS(5205), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), - [anon_sym_BSLASHgls] = ACTIONS(5205), - [anon_sym_BSLASHGls] = ACTIONS(5205), - [anon_sym_BSLASHGLS] = ACTIONS(5205), - [anon_sym_BSLASHglspl] = ACTIONS(5205), - [anon_sym_BSLASHGlspl] = ACTIONS(5205), - [anon_sym_BSLASHGLSpl] = ACTIONS(5205), - [anon_sym_BSLASHglsdisp] = ACTIONS(5205), - [anon_sym_BSLASHglslink] = ACTIONS(5205), - [anon_sym_BSLASHglstext] = ACTIONS(5205), - [anon_sym_BSLASHGlstext] = ACTIONS(5205), - [anon_sym_BSLASHGLStext] = ACTIONS(5205), - [anon_sym_BSLASHglsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), - [anon_sym_BSLASHglsplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSplural] = ACTIONS(5205), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), - [anon_sym_BSLASHglsname] = ACTIONS(5205), - [anon_sym_BSLASHGlsname] = ACTIONS(5205), - [anon_sym_BSLASHGLSname] = ACTIONS(5205), - [anon_sym_BSLASHglssymbol] = ACTIONS(5205), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), - [anon_sym_BSLASHglsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), - [anon_sym_BSLASHglsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), - [anon_sym_BSLASHglsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), - [anon_sym_BSLASHglsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), - [anon_sym_BSLASHglsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), - [anon_sym_BSLASHnewacronym] = ACTIONS(5205), - [anon_sym_BSLASHacrshort] = ACTIONS(5205), - [anon_sym_BSLASHAcrshort] = ACTIONS(5205), - [anon_sym_BSLASHACRshort] = ACTIONS(5205), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), - [anon_sym_BSLASHacrlong] = ACTIONS(5205), - [anon_sym_BSLASHAcrlong] = ACTIONS(5205), - [anon_sym_BSLASHACRlong] = ACTIONS(5205), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), - [anon_sym_BSLASHacrfull] = ACTIONS(5205), - [anon_sym_BSLASHAcrfull] = ACTIONS(5205), - [anon_sym_BSLASHACRfull] = ACTIONS(5205), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), - [anon_sym_BSLASHacs] = ACTIONS(5205), - [anon_sym_BSLASHAcs] = ACTIONS(5205), - [anon_sym_BSLASHacsp] = ACTIONS(5205), - [anon_sym_BSLASHAcsp] = ACTIONS(5205), - [anon_sym_BSLASHacl] = ACTIONS(5205), - [anon_sym_BSLASHAcl] = ACTIONS(5205), - [anon_sym_BSLASHaclp] = ACTIONS(5205), - [anon_sym_BSLASHAclp] = ACTIONS(5205), - [anon_sym_BSLASHacf] = ACTIONS(5205), - [anon_sym_BSLASHAcf] = ACTIONS(5205), - [anon_sym_BSLASHacfp] = ACTIONS(5205), - [anon_sym_BSLASHAcfp] = ACTIONS(5205), - [anon_sym_BSLASHac] = ACTIONS(5205), - [anon_sym_BSLASHAc] = ACTIONS(5205), - [anon_sym_BSLASHacp] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), - [anon_sym_BSLASHcolor] = ACTIONS(5205), - [anon_sym_BSLASHcolorbox] = ACTIONS(5205), - [anon_sym_BSLASHtextcolor] = ACTIONS(5205), - [anon_sym_BSLASHpagecolor] = ACTIONS(5205), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), + [anon_sym_BSLASHiffalse] = ACTIONS(5025), + [anon_sym_RBRACK] = ACTIONS(5023), + [anon_sym_COMMA] = ACTIONS(5023), + [anon_sym_EQ] = ACTIONS(5023), + [anon_sym_RBRACE] = ACTIONS(5023), + [sym_word] = ACTIONS(5025), + [sym_placeholder] = ACTIONS(5023), + [anon_sym_PLUS] = ACTIONS(5025), + [anon_sym_DASH] = ACTIONS(5025), + [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_SLASH] = ACTIONS(5025), + [anon_sym_CARET] = ACTIONS(5025), + [anon_sym__] = ACTIONS(5025), + [anon_sym_LT] = ACTIONS(5025), + [anon_sym_GT] = ACTIONS(5025), + [anon_sym_BANG] = ACTIONS(5025), + [anon_sym_PIPE] = ACTIONS(5025), + [anon_sym_COLON] = ACTIONS(5025), + [anon_sym_SQUOTE] = ACTIONS(5025), + [anon_sym_BSLASHusepackage] = ACTIONS(5025), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5025), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5025), + [anon_sym_BSLASHinclude] = ACTIONS(5025), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5025), + [anon_sym_BSLASHinput] = ACTIONS(5025), + [anon_sym_BSLASHsubfile] = ACTIONS(5025), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5025), + [anon_sym_BSLASHbibliography] = ACTIONS(5025), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5025), + [anon_sym_BSLASHincludesvg] = ACTIONS(5025), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5025), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5025), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5025), + [anon_sym_BSLASHimport] = ACTIONS(5025), + [anon_sym_BSLASHsubimport] = ACTIONS(5025), + [anon_sym_BSLASHinputfrom] = ACTIONS(5025), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5025), + [anon_sym_BSLASHincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5025), + [anon_sym_BSLASHcaption] = ACTIONS(5025), + [anon_sym_BSLASHcite] = ACTIONS(5025), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCite] = ACTIONS(5025), + [anon_sym_BSLASHnocite] = ACTIONS(5025), + [anon_sym_BSLASHcitet] = ACTIONS(5025), + [anon_sym_BSLASHcitep] = ACTIONS(5025), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteauthor] = ACTIONS(5025), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5025), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitetitle] = ACTIONS(5025), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteyear] = ACTIONS(5025), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5023), + [anon_sym_BSLASHcitedate] = ACTIONS(5025), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5023), + [anon_sym_BSLASHciteurl] = ACTIONS(5025), + [anon_sym_BSLASHfullcite] = ACTIONS(5025), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5025), + [anon_sym_BSLASHcitealt] = ACTIONS(5025), + [anon_sym_BSLASHcitealp] = ACTIONS(5025), + [anon_sym_BSLASHcitetext] = ACTIONS(5025), + [anon_sym_BSLASHparencite] = ACTIONS(5025), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHParencite] = ACTIONS(5025), + [anon_sym_BSLASHfootcite] = ACTIONS(5025), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5025), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5025), + [anon_sym_BSLASHtextcite] = ACTIONS(5025), + [anon_sym_BSLASHTextcite] = ACTIONS(5025), + [anon_sym_BSLASHsmartcite] = ACTIONS(5025), + [anon_sym_BSLASHSmartcite] = ACTIONS(5025), + [anon_sym_BSLASHsupercite] = ACTIONS(5025), + [anon_sym_BSLASHautocite] = ACTIONS(5025), + [anon_sym_BSLASHAutocite] = ACTIONS(5025), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5023), + [anon_sym_BSLASHvolcite] = ACTIONS(5025), + [anon_sym_BSLASHVolcite] = ACTIONS(5025), + [anon_sym_BSLASHpvolcite] = ACTIONS(5025), + [anon_sym_BSLASHPvolcite] = ACTIONS(5025), + [anon_sym_BSLASHfvolcite] = ACTIONS(5025), + [anon_sym_BSLASHftvolcite] = ACTIONS(5025), + [anon_sym_BSLASHsvolcite] = ACTIONS(5025), + [anon_sym_BSLASHSvolcite] = ACTIONS(5025), + [anon_sym_BSLASHtvolcite] = ACTIONS(5025), + [anon_sym_BSLASHTvolcite] = ACTIONS(5025), + [anon_sym_BSLASHavolcite] = ACTIONS(5025), + [anon_sym_BSLASHAvolcite] = ACTIONS(5025), + [anon_sym_BSLASHnotecite] = ACTIONS(5025), + [anon_sym_BSLASHNotecite] = ACTIONS(5025), + [anon_sym_BSLASHpnotecite] = ACTIONS(5025), + [anon_sym_BSLASHPnotecite] = ACTIONS(5025), + [anon_sym_BSLASHfnotecite] = ACTIONS(5025), + [anon_sym_BSLASHlabel] = ACTIONS(5025), + [anon_sym_BSLASHref] = ACTIONS(5025), + [anon_sym_BSLASHeqref] = ACTIONS(5025), + [anon_sym_BSLASHvref] = ACTIONS(5025), + [anon_sym_BSLASHVref] = ACTIONS(5025), + [anon_sym_BSLASHautoref] = ACTIONS(5025), + [anon_sym_BSLASHpageref] = ACTIONS(5025), + [anon_sym_BSLASHcref] = ACTIONS(5025), + [anon_sym_BSLASHCref] = ACTIONS(5025), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnameCref] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5025), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5025), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5025), + [anon_sym_BSLASHlabelcref] = ACTIONS(5025), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange] = ACTIONS(5025), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHCrefrange] = ACTIONS(5025), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5023), + [anon_sym_BSLASHnewlabel] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand] = ACTIONS(5025), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5025), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5025), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5023), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5025), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5023), + [anon_sym_BSLASHdef] = ACTIONS(5025), + [anon_sym_BSLASHlet] = ACTIONS(5025), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5025), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5025), + [anon_sym_BSLASHgls] = ACTIONS(5025), + [anon_sym_BSLASHGls] = ACTIONS(5025), + [anon_sym_BSLASHGLS] = ACTIONS(5025), + [anon_sym_BSLASHglspl] = ACTIONS(5025), + [anon_sym_BSLASHGlspl] = ACTIONS(5025), + [anon_sym_BSLASHGLSpl] = ACTIONS(5025), + [anon_sym_BSLASHglsdisp] = ACTIONS(5025), + [anon_sym_BSLASHglslink] = ACTIONS(5025), + [anon_sym_BSLASHglstext] = ACTIONS(5025), + [anon_sym_BSLASHGlstext] = ACTIONS(5025), + [anon_sym_BSLASHGLStext] = ACTIONS(5025), + [anon_sym_BSLASHglsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5025), + [anon_sym_BSLASHglsplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSplural] = ACTIONS(5025), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5025), + [anon_sym_BSLASHglsname] = ACTIONS(5025), + [anon_sym_BSLASHGlsname] = ACTIONS(5025), + [anon_sym_BSLASHGLSname] = ACTIONS(5025), + [anon_sym_BSLASHglssymbol] = ACTIONS(5025), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5025), + [anon_sym_BSLASHglsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5025), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5025), + [anon_sym_BSLASHglsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5025), + [anon_sym_BSLASHglsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5025), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5025), + [anon_sym_BSLASHglsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5025), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5025), + [anon_sym_BSLASHglsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5025), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5025), + [anon_sym_BSLASHnewacronym] = ACTIONS(5025), + [anon_sym_BSLASHacrshort] = ACTIONS(5025), + [anon_sym_BSLASHAcrshort] = ACTIONS(5025), + [anon_sym_BSLASHACRshort] = ACTIONS(5025), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5025), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5025), + [anon_sym_BSLASHacrlong] = ACTIONS(5025), + [anon_sym_BSLASHAcrlong] = ACTIONS(5025), + [anon_sym_BSLASHACRlong] = ACTIONS(5025), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5025), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5025), + [anon_sym_BSLASHacrfull] = ACTIONS(5025), + [anon_sym_BSLASHAcrfull] = ACTIONS(5025), + [anon_sym_BSLASHACRfull] = ACTIONS(5025), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5025), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5025), + [anon_sym_BSLASHacs] = ACTIONS(5025), + [anon_sym_BSLASHAcs] = ACTIONS(5025), + [anon_sym_BSLASHacsp] = ACTIONS(5025), + [anon_sym_BSLASHAcsp] = ACTIONS(5025), + [anon_sym_BSLASHacl] = ACTIONS(5025), + [anon_sym_BSLASHAcl] = ACTIONS(5025), + [anon_sym_BSLASHaclp] = ACTIONS(5025), + [anon_sym_BSLASHAclp] = ACTIONS(5025), + [anon_sym_BSLASHacf] = ACTIONS(5025), + [anon_sym_BSLASHAcf] = ACTIONS(5025), + [anon_sym_BSLASHacfp] = ACTIONS(5025), + [anon_sym_BSLASHAcfp] = ACTIONS(5025), + [anon_sym_BSLASHac] = ACTIONS(5025), + [anon_sym_BSLASHAc] = ACTIONS(5025), + [anon_sym_BSLASHacp] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5025), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5025), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5025), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5025), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5025), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5025), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5025), + [anon_sym_BSLASHcolor] = ACTIONS(5025), + [anon_sym_BSLASHcolorbox] = ACTIONS(5025), + [anon_sym_BSLASHtextcolor] = ACTIONS(5025), + [anon_sym_BSLASHpagecolor] = ACTIONS(5025), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5025), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5025), + }, + [1547] = { + [sym_command_name] = ACTIONS(5029), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5029), + [anon_sym_RBRACK] = ACTIONS(5027), + [anon_sym_COMMA] = ACTIONS(5027), + [anon_sym_EQ] = ACTIONS(5027), + [anon_sym_RBRACE] = ACTIONS(5027), + [sym_word] = ACTIONS(5029), + [sym_placeholder] = ACTIONS(5027), + [anon_sym_PLUS] = ACTIONS(5029), + [anon_sym_DASH] = ACTIONS(5029), + [anon_sym_STAR] = ACTIONS(5029), + [anon_sym_SLASH] = ACTIONS(5029), + [anon_sym_CARET] = ACTIONS(5029), + [anon_sym__] = ACTIONS(5029), + [anon_sym_LT] = ACTIONS(5029), + [anon_sym_GT] = ACTIONS(5029), + [anon_sym_BANG] = ACTIONS(5029), + [anon_sym_PIPE] = ACTIONS(5029), + [anon_sym_COLON] = ACTIONS(5029), + [anon_sym_SQUOTE] = ACTIONS(5029), + [anon_sym_BSLASHusepackage] = ACTIONS(5029), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5029), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5029), + [anon_sym_BSLASHinclude] = ACTIONS(5029), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5029), + [anon_sym_BSLASHinput] = ACTIONS(5029), + [anon_sym_BSLASHsubfile] = ACTIONS(5029), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5029), + [anon_sym_BSLASHbibliography] = ACTIONS(5029), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5029), + [anon_sym_BSLASHincludesvg] = ACTIONS(5029), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5029), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5029), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5029), + [anon_sym_BSLASHimport] = ACTIONS(5029), + [anon_sym_BSLASHsubimport] = ACTIONS(5029), + [anon_sym_BSLASHinputfrom] = ACTIONS(5029), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5029), + [anon_sym_BSLASHincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5029), + [anon_sym_BSLASHcaption] = ACTIONS(5029), + [anon_sym_BSLASHcite] = ACTIONS(5029), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCite] = ACTIONS(5029), + [anon_sym_BSLASHnocite] = ACTIONS(5029), + [anon_sym_BSLASHcitet] = ACTIONS(5029), + [anon_sym_BSLASHcitep] = ACTIONS(5029), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteauthor] = ACTIONS(5029), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5029), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitetitle] = ACTIONS(5029), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteyear] = ACTIONS(5029), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5027), + [anon_sym_BSLASHcitedate] = ACTIONS(5029), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5027), + [anon_sym_BSLASHciteurl] = ACTIONS(5029), + [anon_sym_BSLASHfullcite] = ACTIONS(5029), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5029), + [anon_sym_BSLASHcitealt] = ACTIONS(5029), + [anon_sym_BSLASHcitealp] = ACTIONS(5029), + [anon_sym_BSLASHcitetext] = ACTIONS(5029), + [anon_sym_BSLASHparencite] = ACTIONS(5029), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHParencite] = ACTIONS(5029), + [anon_sym_BSLASHfootcite] = ACTIONS(5029), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5029), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5029), + [anon_sym_BSLASHtextcite] = ACTIONS(5029), + [anon_sym_BSLASHTextcite] = ACTIONS(5029), + [anon_sym_BSLASHsmartcite] = ACTIONS(5029), + [anon_sym_BSLASHSmartcite] = ACTIONS(5029), + [anon_sym_BSLASHsupercite] = ACTIONS(5029), + [anon_sym_BSLASHautocite] = ACTIONS(5029), + [anon_sym_BSLASHAutocite] = ACTIONS(5029), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5027), + [anon_sym_BSLASHvolcite] = ACTIONS(5029), + [anon_sym_BSLASHVolcite] = ACTIONS(5029), + [anon_sym_BSLASHpvolcite] = ACTIONS(5029), + [anon_sym_BSLASHPvolcite] = ACTIONS(5029), + [anon_sym_BSLASHfvolcite] = ACTIONS(5029), + [anon_sym_BSLASHftvolcite] = ACTIONS(5029), + [anon_sym_BSLASHsvolcite] = ACTIONS(5029), + [anon_sym_BSLASHSvolcite] = ACTIONS(5029), + [anon_sym_BSLASHtvolcite] = ACTIONS(5029), + [anon_sym_BSLASHTvolcite] = ACTIONS(5029), + [anon_sym_BSLASHavolcite] = ACTIONS(5029), + [anon_sym_BSLASHAvolcite] = ACTIONS(5029), + [anon_sym_BSLASHnotecite] = ACTIONS(5029), + [anon_sym_BSLASHNotecite] = ACTIONS(5029), + [anon_sym_BSLASHpnotecite] = ACTIONS(5029), + [anon_sym_BSLASHPnotecite] = ACTIONS(5029), + [anon_sym_BSLASHfnotecite] = ACTIONS(5029), + [anon_sym_BSLASHlabel] = ACTIONS(5029), + [anon_sym_BSLASHref] = ACTIONS(5029), + [anon_sym_BSLASHeqref] = ACTIONS(5029), + [anon_sym_BSLASHvref] = ACTIONS(5029), + [anon_sym_BSLASHVref] = ACTIONS(5029), + [anon_sym_BSLASHautoref] = ACTIONS(5029), + [anon_sym_BSLASHpageref] = ACTIONS(5029), + [anon_sym_BSLASHcref] = ACTIONS(5029), + [anon_sym_BSLASHCref] = ACTIONS(5029), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnameCref] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5029), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5029), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5029), + [anon_sym_BSLASHlabelcref] = ACTIONS(5029), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange] = ACTIONS(5029), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHCrefrange] = ACTIONS(5029), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5027), + [anon_sym_BSLASHnewlabel] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand] = ACTIONS(5029), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5029), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5029), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5027), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5029), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5027), + [anon_sym_BSLASHdef] = ACTIONS(5029), + [anon_sym_BSLASHlet] = ACTIONS(5029), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5029), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5029), + [anon_sym_BSLASHgls] = ACTIONS(5029), + [anon_sym_BSLASHGls] = ACTIONS(5029), + [anon_sym_BSLASHGLS] = ACTIONS(5029), + [anon_sym_BSLASHglspl] = ACTIONS(5029), + [anon_sym_BSLASHGlspl] = ACTIONS(5029), + [anon_sym_BSLASHGLSpl] = ACTIONS(5029), + [anon_sym_BSLASHglsdisp] = ACTIONS(5029), + [anon_sym_BSLASHglslink] = ACTIONS(5029), + [anon_sym_BSLASHglstext] = ACTIONS(5029), + [anon_sym_BSLASHGlstext] = ACTIONS(5029), + [anon_sym_BSLASHGLStext] = ACTIONS(5029), + [anon_sym_BSLASHglsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5029), + [anon_sym_BSLASHglsplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSplural] = ACTIONS(5029), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5029), + [anon_sym_BSLASHglsname] = ACTIONS(5029), + [anon_sym_BSLASHGlsname] = ACTIONS(5029), + [anon_sym_BSLASHGLSname] = ACTIONS(5029), + [anon_sym_BSLASHglssymbol] = ACTIONS(5029), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5029), + [anon_sym_BSLASHglsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5029), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5029), + [anon_sym_BSLASHglsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5029), + [anon_sym_BSLASHglsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5029), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5029), + [anon_sym_BSLASHglsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5029), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5029), + [anon_sym_BSLASHglsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5029), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5029), + [anon_sym_BSLASHnewacronym] = ACTIONS(5029), + [anon_sym_BSLASHacrshort] = ACTIONS(5029), + [anon_sym_BSLASHAcrshort] = ACTIONS(5029), + [anon_sym_BSLASHACRshort] = ACTIONS(5029), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5029), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5029), + [anon_sym_BSLASHacrlong] = ACTIONS(5029), + [anon_sym_BSLASHAcrlong] = ACTIONS(5029), + [anon_sym_BSLASHACRlong] = ACTIONS(5029), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5029), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5029), + [anon_sym_BSLASHacrfull] = ACTIONS(5029), + [anon_sym_BSLASHAcrfull] = ACTIONS(5029), + [anon_sym_BSLASHACRfull] = ACTIONS(5029), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5029), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5029), + [anon_sym_BSLASHacs] = ACTIONS(5029), + [anon_sym_BSLASHAcs] = ACTIONS(5029), + [anon_sym_BSLASHacsp] = ACTIONS(5029), + [anon_sym_BSLASHAcsp] = ACTIONS(5029), + [anon_sym_BSLASHacl] = ACTIONS(5029), + [anon_sym_BSLASHAcl] = ACTIONS(5029), + [anon_sym_BSLASHaclp] = ACTIONS(5029), + [anon_sym_BSLASHAclp] = ACTIONS(5029), + [anon_sym_BSLASHacf] = ACTIONS(5029), + [anon_sym_BSLASHAcf] = ACTIONS(5029), + [anon_sym_BSLASHacfp] = ACTIONS(5029), + [anon_sym_BSLASHAcfp] = ACTIONS(5029), + [anon_sym_BSLASHac] = ACTIONS(5029), + [anon_sym_BSLASHAc] = ACTIONS(5029), + [anon_sym_BSLASHacp] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5029), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5029), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5029), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5029), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5029), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5029), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5029), + [anon_sym_BSLASHcolor] = ACTIONS(5029), + [anon_sym_BSLASHcolorbox] = ACTIONS(5029), + [anon_sym_BSLASHtextcolor] = ACTIONS(5029), + [anon_sym_BSLASHpagecolor] = ACTIONS(5029), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5029), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5029), }, - [1552] = { - [sym_command_name] = ACTIONS(5209), + [1548] = { + [sym_command_name] = ACTIONS(5119), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5119), + [anon_sym_RBRACK] = ACTIONS(5117), + [anon_sym_COMMA] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(5117), + [anon_sym_RBRACE] = ACTIONS(5117), + [sym_word] = ACTIONS(5119), + [sym_placeholder] = ACTIONS(5117), + [anon_sym_PLUS] = ACTIONS(5119), + [anon_sym_DASH] = ACTIONS(5119), + [anon_sym_STAR] = ACTIONS(5119), + [anon_sym_SLASH] = ACTIONS(5119), + [anon_sym_CARET] = ACTIONS(5119), + [anon_sym__] = ACTIONS(5119), + [anon_sym_LT] = ACTIONS(5119), + [anon_sym_GT] = ACTIONS(5119), + [anon_sym_BANG] = ACTIONS(5119), + [anon_sym_PIPE] = ACTIONS(5119), + [anon_sym_COLON] = ACTIONS(5119), + [anon_sym_SQUOTE] = ACTIONS(5119), + [anon_sym_BSLASHusepackage] = ACTIONS(5119), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5119), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5119), + [anon_sym_BSLASHinclude] = ACTIONS(5119), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5119), + [anon_sym_BSLASHinput] = ACTIONS(5119), + [anon_sym_BSLASHsubfile] = ACTIONS(5119), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5119), + [anon_sym_BSLASHbibliography] = ACTIONS(5119), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5119), + [anon_sym_BSLASHincludesvg] = ACTIONS(5119), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5119), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5119), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5119), + [anon_sym_BSLASHimport] = ACTIONS(5119), + [anon_sym_BSLASHsubimport] = ACTIONS(5119), + [anon_sym_BSLASHinputfrom] = ACTIONS(5119), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5119), + [anon_sym_BSLASHincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5119), + [anon_sym_BSLASHcaption] = ACTIONS(5119), + [anon_sym_BSLASHcite] = ACTIONS(5119), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCite] = ACTIONS(5119), + [anon_sym_BSLASHnocite] = ACTIONS(5119), + [anon_sym_BSLASHcitet] = ACTIONS(5119), + [anon_sym_BSLASHcitep] = ACTIONS(5119), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteauthor] = ACTIONS(5119), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5119), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitetitle] = ACTIONS(5119), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteyear] = ACTIONS(5119), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5117), + [anon_sym_BSLASHcitedate] = ACTIONS(5119), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5117), + [anon_sym_BSLASHciteurl] = ACTIONS(5119), + [anon_sym_BSLASHfullcite] = ACTIONS(5119), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5119), + [anon_sym_BSLASHcitealt] = ACTIONS(5119), + [anon_sym_BSLASHcitealp] = ACTIONS(5119), + [anon_sym_BSLASHcitetext] = ACTIONS(5119), + [anon_sym_BSLASHparencite] = ACTIONS(5119), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHParencite] = ACTIONS(5119), + [anon_sym_BSLASHfootcite] = ACTIONS(5119), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5119), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5119), + [anon_sym_BSLASHtextcite] = ACTIONS(5119), + [anon_sym_BSLASHTextcite] = ACTIONS(5119), + [anon_sym_BSLASHsmartcite] = ACTIONS(5119), + [anon_sym_BSLASHSmartcite] = ACTIONS(5119), + [anon_sym_BSLASHsupercite] = ACTIONS(5119), + [anon_sym_BSLASHautocite] = ACTIONS(5119), + [anon_sym_BSLASHAutocite] = ACTIONS(5119), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5117), + [anon_sym_BSLASHvolcite] = ACTIONS(5119), + [anon_sym_BSLASHVolcite] = ACTIONS(5119), + [anon_sym_BSLASHpvolcite] = ACTIONS(5119), + [anon_sym_BSLASHPvolcite] = ACTIONS(5119), + [anon_sym_BSLASHfvolcite] = ACTIONS(5119), + [anon_sym_BSLASHftvolcite] = ACTIONS(5119), + [anon_sym_BSLASHsvolcite] = ACTIONS(5119), + [anon_sym_BSLASHSvolcite] = ACTIONS(5119), + [anon_sym_BSLASHtvolcite] = ACTIONS(5119), + [anon_sym_BSLASHTvolcite] = ACTIONS(5119), + [anon_sym_BSLASHavolcite] = ACTIONS(5119), + [anon_sym_BSLASHAvolcite] = ACTIONS(5119), + [anon_sym_BSLASHnotecite] = ACTIONS(5119), + [anon_sym_BSLASHNotecite] = ACTIONS(5119), + [anon_sym_BSLASHpnotecite] = ACTIONS(5119), + [anon_sym_BSLASHPnotecite] = ACTIONS(5119), + [anon_sym_BSLASHfnotecite] = ACTIONS(5119), + [anon_sym_BSLASHlabel] = ACTIONS(5119), + [anon_sym_BSLASHref] = ACTIONS(5119), + [anon_sym_BSLASHeqref] = ACTIONS(5119), + [anon_sym_BSLASHvref] = ACTIONS(5119), + [anon_sym_BSLASHVref] = ACTIONS(5119), + [anon_sym_BSLASHautoref] = ACTIONS(5119), + [anon_sym_BSLASHpageref] = ACTIONS(5119), + [anon_sym_BSLASHcref] = ACTIONS(5119), + [anon_sym_BSLASHCref] = ACTIONS(5119), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnameCref] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5119), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5119), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5119), + [anon_sym_BSLASHlabelcref] = ACTIONS(5119), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange] = ACTIONS(5119), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHCrefrange] = ACTIONS(5119), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5117), + [anon_sym_BSLASHnewlabel] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand] = ACTIONS(5119), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5119), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5119), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5117), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5119), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5117), + [anon_sym_BSLASHdef] = ACTIONS(5119), + [anon_sym_BSLASHlet] = ACTIONS(5119), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5119), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5119), + [anon_sym_BSLASHgls] = ACTIONS(5119), + [anon_sym_BSLASHGls] = ACTIONS(5119), + [anon_sym_BSLASHGLS] = ACTIONS(5119), + [anon_sym_BSLASHglspl] = ACTIONS(5119), + [anon_sym_BSLASHGlspl] = ACTIONS(5119), + [anon_sym_BSLASHGLSpl] = ACTIONS(5119), + [anon_sym_BSLASHglsdisp] = ACTIONS(5119), + [anon_sym_BSLASHglslink] = ACTIONS(5119), + [anon_sym_BSLASHglstext] = ACTIONS(5119), + [anon_sym_BSLASHGlstext] = ACTIONS(5119), + [anon_sym_BSLASHGLStext] = ACTIONS(5119), + [anon_sym_BSLASHglsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5119), + [anon_sym_BSLASHglsplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSplural] = ACTIONS(5119), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5119), + [anon_sym_BSLASHglsname] = ACTIONS(5119), + [anon_sym_BSLASHGlsname] = ACTIONS(5119), + [anon_sym_BSLASHGLSname] = ACTIONS(5119), + [anon_sym_BSLASHglssymbol] = ACTIONS(5119), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5119), + [anon_sym_BSLASHglsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5119), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5119), + [anon_sym_BSLASHglsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5119), + [anon_sym_BSLASHglsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5119), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5119), + [anon_sym_BSLASHglsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5119), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5119), + [anon_sym_BSLASHglsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5119), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5119), + [anon_sym_BSLASHnewacronym] = ACTIONS(5119), + [anon_sym_BSLASHacrshort] = ACTIONS(5119), + [anon_sym_BSLASHAcrshort] = ACTIONS(5119), + [anon_sym_BSLASHACRshort] = ACTIONS(5119), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5119), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5119), + [anon_sym_BSLASHacrlong] = ACTIONS(5119), + [anon_sym_BSLASHAcrlong] = ACTIONS(5119), + [anon_sym_BSLASHACRlong] = ACTIONS(5119), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5119), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5119), + [anon_sym_BSLASHacrfull] = ACTIONS(5119), + [anon_sym_BSLASHAcrfull] = ACTIONS(5119), + [anon_sym_BSLASHACRfull] = ACTIONS(5119), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5119), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5119), + [anon_sym_BSLASHacs] = ACTIONS(5119), + [anon_sym_BSLASHAcs] = ACTIONS(5119), + [anon_sym_BSLASHacsp] = ACTIONS(5119), + [anon_sym_BSLASHAcsp] = ACTIONS(5119), + [anon_sym_BSLASHacl] = ACTIONS(5119), + [anon_sym_BSLASHAcl] = ACTIONS(5119), + [anon_sym_BSLASHaclp] = ACTIONS(5119), + [anon_sym_BSLASHAclp] = ACTIONS(5119), + [anon_sym_BSLASHacf] = ACTIONS(5119), + [anon_sym_BSLASHAcf] = ACTIONS(5119), + [anon_sym_BSLASHacfp] = ACTIONS(5119), + [anon_sym_BSLASHAcfp] = ACTIONS(5119), + [anon_sym_BSLASHac] = ACTIONS(5119), + [anon_sym_BSLASHAc] = ACTIONS(5119), + [anon_sym_BSLASHacp] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5119), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5119), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5119), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5119), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5119), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5119), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5119), + [anon_sym_BSLASHcolor] = ACTIONS(5119), + [anon_sym_BSLASHcolorbox] = ACTIONS(5119), + [anon_sym_BSLASHtextcolor] = ACTIONS(5119), + [anon_sym_BSLASHpagecolor] = ACTIONS(5119), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5119), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5119), + }, + [1549] = { + [sym_command_name] = ACTIONS(5197), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5209), - [anon_sym_RBRACK] = ACTIONS(5207), - [anon_sym_COMMA] = ACTIONS(5207), - [anon_sym_EQ] = ACTIONS(5207), - [anon_sym_RBRACE] = ACTIONS(5207), - [sym_word] = ACTIONS(5209), - [sym_placeholder] = ACTIONS(5207), - [anon_sym_PLUS] = ACTIONS(5209), - [anon_sym_DASH] = ACTIONS(5209), - [anon_sym_STAR] = ACTIONS(5209), - [anon_sym_SLASH] = ACTIONS(5209), - [anon_sym_CARET] = ACTIONS(5209), - [anon_sym__] = ACTIONS(5209), - [anon_sym_LT] = ACTIONS(5209), - [anon_sym_GT] = ACTIONS(5209), - [anon_sym_BANG] = ACTIONS(5209), - [anon_sym_PIPE] = ACTIONS(5209), - [anon_sym_COLON] = ACTIONS(5209), - [anon_sym_SQUOTE] = ACTIONS(5209), - [anon_sym_BSLASHusepackage] = ACTIONS(5209), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), - [anon_sym_BSLASHinclude] = ACTIONS(5209), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), - [anon_sym_BSLASHinput] = ACTIONS(5209), - [anon_sym_BSLASHsubfile] = ACTIONS(5209), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), - [anon_sym_BSLASHbibliography] = ACTIONS(5209), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), - [anon_sym_BSLASHincludesvg] = ACTIONS(5209), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), - [anon_sym_BSLASHimport] = ACTIONS(5209), - [anon_sym_BSLASHsubimport] = ACTIONS(5209), - [anon_sym_BSLASHinputfrom] = ACTIONS(5209), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), - [anon_sym_BSLASHincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), - [anon_sym_BSLASHcaption] = ACTIONS(5209), - [anon_sym_BSLASHcite] = ACTIONS(5209), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCite] = ACTIONS(5209), - [anon_sym_BSLASHnocite] = ACTIONS(5209), - [anon_sym_BSLASHcitet] = ACTIONS(5209), - [anon_sym_BSLASHcitep] = ACTIONS(5209), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteauthor] = ACTIONS(5209), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitetitle] = ACTIONS(5209), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteyear] = ACTIONS(5209), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), - [anon_sym_BSLASHcitedate] = ACTIONS(5209), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), - [anon_sym_BSLASHciteurl] = ACTIONS(5209), - [anon_sym_BSLASHfullcite] = ACTIONS(5209), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), - [anon_sym_BSLASHcitealt] = ACTIONS(5209), - [anon_sym_BSLASHcitealp] = ACTIONS(5209), - [anon_sym_BSLASHcitetext] = ACTIONS(5209), - [anon_sym_BSLASHparencite] = ACTIONS(5209), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHParencite] = ACTIONS(5209), - [anon_sym_BSLASHfootcite] = ACTIONS(5209), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), - [anon_sym_BSLASHtextcite] = ACTIONS(5209), - [anon_sym_BSLASHTextcite] = ACTIONS(5209), - [anon_sym_BSLASHsmartcite] = ACTIONS(5209), - [anon_sym_BSLASHSmartcite] = ACTIONS(5209), - [anon_sym_BSLASHsupercite] = ACTIONS(5209), - [anon_sym_BSLASHautocite] = ACTIONS(5209), - [anon_sym_BSLASHAutocite] = ACTIONS(5209), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), - [anon_sym_BSLASHvolcite] = ACTIONS(5209), - [anon_sym_BSLASHVolcite] = ACTIONS(5209), - [anon_sym_BSLASHpvolcite] = ACTIONS(5209), - [anon_sym_BSLASHPvolcite] = ACTIONS(5209), - [anon_sym_BSLASHfvolcite] = ACTIONS(5209), - [anon_sym_BSLASHftvolcite] = ACTIONS(5209), - [anon_sym_BSLASHsvolcite] = ACTIONS(5209), - [anon_sym_BSLASHSvolcite] = ACTIONS(5209), - [anon_sym_BSLASHtvolcite] = ACTIONS(5209), - [anon_sym_BSLASHTvolcite] = ACTIONS(5209), - [anon_sym_BSLASHavolcite] = ACTIONS(5209), - [anon_sym_BSLASHAvolcite] = ACTIONS(5209), - [anon_sym_BSLASHnotecite] = ACTIONS(5209), - [anon_sym_BSLASHNotecite] = ACTIONS(5209), - [anon_sym_BSLASHpnotecite] = ACTIONS(5209), - [anon_sym_BSLASHPnotecite] = ACTIONS(5209), - [anon_sym_BSLASHfnotecite] = ACTIONS(5209), - [anon_sym_BSLASHlabel] = ACTIONS(5209), - [anon_sym_BSLASHref] = ACTIONS(5209), - [anon_sym_BSLASHeqref] = ACTIONS(5209), - [anon_sym_BSLASHvref] = ACTIONS(5209), - [anon_sym_BSLASHVref] = ACTIONS(5209), - [anon_sym_BSLASHautoref] = ACTIONS(5209), - [anon_sym_BSLASHpageref] = ACTIONS(5209), - [anon_sym_BSLASHcref] = ACTIONS(5209), - [anon_sym_BSLASHCref] = ACTIONS(5209), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnameCref] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), - [anon_sym_BSLASHlabelcref] = ACTIONS(5209), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange] = ACTIONS(5209), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHCrefrange] = ACTIONS(5209), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), - [anon_sym_BSLASHnewlabel] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand] = ACTIONS(5209), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), - [anon_sym_BSLASHdef] = ACTIONS(5209), - [anon_sym_BSLASHlet] = ACTIONS(5209), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), - [anon_sym_BSLASHgls] = ACTIONS(5209), - [anon_sym_BSLASHGls] = ACTIONS(5209), - [anon_sym_BSLASHGLS] = ACTIONS(5209), - [anon_sym_BSLASHglspl] = ACTIONS(5209), - [anon_sym_BSLASHGlspl] = ACTIONS(5209), - [anon_sym_BSLASHGLSpl] = ACTIONS(5209), - [anon_sym_BSLASHglsdisp] = ACTIONS(5209), - [anon_sym_BSLASHglslink] = ACTIONS(5209), - [anon_sym_BSLASHglstext] = ACTIONS(5209), - [anon_sym_BSLASHGlstext] = ACTIONS(5209), - [anon_sym_BSLASHGLStext] = ACTIONS(5209), - [anon_sym_BSLASHglsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), - [anon_sym_BSLASHglsplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSplural] = ACTIONS(5209), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), - [anon_sym_BSLASHglsname] = ACTIONS(5209), - [anon_sym_BSLASHGlsname] = ACTIONS(5209), - [anon_sym_BSLASHGLSname] = ACTIONS(5209), - [anon_sym_BSLASHglssymbol] = ACTIONS(5209), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), - [anon_sym_BSLASHglsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), - [anon_sym_BSLASHglsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), - [anon_sym_BSLASHglsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), - [anon_sym_BSLASHglsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), - [anon_sym_BSLASHglsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), - [anon_sym_BSLASHnewacronym] = ACTIONS(5209), - [anon_sym_BSLASHacrshort] = ACTIONS(5209), - [anon_sym_BSLASHAcrshort] = ACTIONS(5209), - [anon_sym_BSLASHACRshort] = ACTIONS(5209), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), - [anon_sym_BSLASHacrlong] = ACTIONS(5209), - [anon_sym_BSLASHAcrlong] = ACTIONS(5209), - [anon_sym_BSLASHACRlong] = ACTIONS(5209), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), - [anon_sym_BSLASHacrfull] = ACTIONS(5209), - [anon_sym_BSLASHAcrfull] = ACTIONS(5209), - [anon_sym_BSLASHACRfull] = ACTIONS(5209), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), - [anon_sym_BSLASHacs] = ACTIONS(5209), - [anon_sym_BSLASHAcs] = ACTIONS(5209), - [anon_sym_BSLASHacsp] = ACTIONS(5209), - [anon_sym_BSLASHAcsp] = ACTIONS(5209), - [anon_sym_BSLASHacl] = ACTIONS(5209), - [anon_sym_BSLASHAcl] = ACTIONS(5209), - [anon_sym_BSLASHaclp] = ACTIONS(5209), - [anon_sym_BSLASHAclp] = ACTIONS(5209), - [anon_sym_BSLASHacf] = ACTIONS(5209), - [anon_sym_BSLASHAcf] = ACTIONS(5209), - [anon_sym_BSLASHacfp] = ACTIONS(5209), - [anon_sym_BSLASHAcfp] = ACTIONS(5209), - [anon_sym_BSLASHac] = ACTIONS(5209), - [anon_sym_BSLASHAc] = ACTIONS(5209), - [anon_sym_BSLASHacp] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), - [anon_sym_BSLASHcolor] = ACTIONS(5209), - [anon_sym_BSLASHcolorbox] = ACTIONS(5209), - [anon_sym_BSLASHtextcolor] = ACTIONS(5209), - [anon_sym_BSLASHpagecolor] = ACTIONS(5209), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), + [anon_sym_BSLASHiffalse] = ACTIONS(5197), + [anon_sym_RBRACK] = ACTIONS(5195), + [anon_sym_COMMA] = ACTIONS(5195), + [anon_sym_EQ] = ACTIONS(5195), + [anon_sym_RBRACE] = ACTIONS(5195), + [sym_word] = ACTIONS(5197), + [sym_placeholder] = ACTIONS(5195), + [anon_sym_PLUS] = ACTIONS(5197), + [anon_sym_DASH] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [anon_sym_SLASH] = ACTIONS(5197), + [anon_sym_CARET] = ACTIONS(5197), + [anon_sym__] = ACTIONS(5197), + [anon_sym_LT] = ACTIONS(5197), + [anon_sym_GT] = ACTIONS(5197), + [anon_sym_BANG] = ACTIONS(5197), + [anon_sym_PIPE] = ACTIONS(5197), + [anon_sym_COLON] = ACTIONS(5197), + [anon_sym_SQUOTE] = ACTIONS(5197), + [anon_sym_BSLASHusepackage] = ACTIONS(5197), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5197), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5197), + [anon_sym_BSLASHinclude] = ACTIONS(5197), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5197), + [anon_sym_BSLASHinput] = ACTIONS(5197), + [anon_sym_BSLASHsubfile] = ACTIONS(5197), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5197), + [anon_sym_BSLASHbibliography] = ACTIONS(5197), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5197), + [anon_sym_BSLASHincludesvg] = ACTIONS(5197), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5197), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5197), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5197), + [anon_sym_BSLASHimport] = ACTIONS(5197), + [anon_sym_BSLASHsubimport] = ACTIONS(5197), + [anon_sym_BSLASHinputfrom] = ACTIONS(5197), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5197), + [anon_sym_BSLASHincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5197), + [anon_sym_BSLASHcaption] = ACTIONS(5197), + [anon_sym_BSLASHcite] = ACTIONS(5197), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCite] = ACTIONS(5197), + [anon_sym_BSLASHnocite] = ACTIONS(5197), + [anon_sym_BSLASHcitet] = ACTIONS(5197), + [anon_sym_BSLASHcitep] = ACTIONS(5197), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteauthor] = ACTIONS(5197), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5197), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitetitle] = ACTIONS(5197), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteyear] = ACTIONS(5197), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5195), + [anon_sym_BSLASHcitedate] = ACTIONS(5197), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5195), + [anon_sym_BSLASHciteurl] = ACTIONS(5197), + [anon_sym_BSLASHfullcite] = ACTIONS(5197), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5197), + [anon_sym_BSLASHcitealt] = ACTIONS(5197), + [anon_sym_BSLASHcitealp] = ACTIONS(5197), + [anon_sym_BSLASHcitetext] = ACTIONS(5197), + [anon_sym_BSLASHparencite] = ACTIONS(5197), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHParencite] = ACTIONS(5197), + [anon_sym_BSLASHfootcite] = ACTIONS(5197), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5197), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5197), + [anon_sym_BSLASHtextcite] = ACTIONS(5197), + [anon_sym_BSLASHTextcite] = ACTIONS(5197), + [anon_sym_BSLASHsmartcite] = ACTIONS(5197), + [anon_sym_BSLASHSmartcite] = ACTIONS(5197), + [anon_sym_BSLASHsupercite] = ACTIONS(5197), + [anon_sym_BSLASHautocite] = ACTIONS(5197), + [anon_sym_BSLASHAutocite] = ACTIONS(5197), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5195), + [anon_sym_BSLASHvolcite] = ACTIONS(5197), + [anon_sym_BSLASHVolcite] = ACTIONS(5197), + [anon_sym_BSLASHpvolcite] = ACTIONS(5197), + [anon_sym_BSLASHPvolcite] = ACTIONS(5197), + [anon_sym_BSLASHfvolcite] = ACTIONS(5197), + [anon_sym_BSLASHftvolcite] = ACTIONS(5197), + [anon_sym_BSLASHsvolcite] = ACTIONS(5197), + [anon_sym_BSLASHSvolcite] = ACTIONS(5197), + [anon_sym_BSLASHtvolcite] = ACTIONS(5197), + [anon_sym_BSLASHTvolcite] = ACTIONS(5197), + [anon_sym_BSLASHavolcite] = ACTIONS(5197), + [anon_sym_BSLASHAvolcite] = ACTIONS(5197), + [anon_sym_BSLASHnotecite] = ACTIONS(5197), + [anon_sym_BSLASHNotecite] = ACTIONS(5197), + [anon_sym_BSLASHpnotecite] = ACTIONS(5197), + [anon_sym_BSLASHPnotecite] = ACTIONS(5197), + [anon_sym_BSLASHfnotecite] = ACTIONS(5197), + [anon_sym_BSLASHlabel] = ACTIONS(5197), + [anon_sym_BSLASHref] = ACTIONS(5197), + [anon_sym_BSLASHeqref] = ACTIONS(5197), + [anon_sym_BSLASHvref] = ACTIONS(5197), + [anon_sym_BSLASHVref] = ACTIONS(5197), + [anon_sym_BSLASHautoref] = ACTIONS(5197), + [anon_sym_BSLASHpageref] = ACTIONS(5197), + [anon_sym_BSLASHcref] = ACTIONS(5197), + [anon_sym_BSLASHCref] = ACTIONS(5197), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnameCref] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5197), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5197), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5197), + [anon_sym_BSLASHlabelcref] = ACTIONS(5197), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange] = ACTIONS(5197), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHCrefrange] = ACTIONS(5197), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5195), + [anon_sym_BSLASHnewlabel] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand] = ACTIONS(5197), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5197), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5197), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5195), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5197), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5195), + [anon_sym_BSLASHdef] = ACTIONS(5197), + [anon_sym_BSLASHlet] = ACTIONS(5197), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5197), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5197), + [anon_sym_BSLASHgls] = ACTIONS(5197), + [anon_sym_BSLASHGls] = ACTIONS(5197), + [anon_sym_BSLASHGLS] = ACTIONS(5197), + [anon_sym_BSLASHglspl] = ACTIONS(5197), + [anon_sym_BSLASHGlspl] = ACTIONS(5197), + [anon_sym_BSLASHGLSpl] = ACTIONS(5197), + [anon_sym_BSLASHglsdisp] = ACTIONS(5197), + [anon_sym_BSLASHglslink] = ACTIONS(5197), + [anon_sym_BSLASHglstext] = ACTIONS(5197), + [anon_sym_BSLASHGlstext] = ACTIONS(5197), + [anon_sym_BSLASHGLStext] = ACTIONS(5197), + [anon_sym_BSLASHglsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5197), + [anon_sym_BSLASHglsplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSplural] = ACTIONS(5197), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5197), + [anon_sym_BSLASHglsname] = ACTIONS(5197), + [anon_sym_BSLASHGlsname] = ACTIONS(5197), + [anon_sym_BSLASHGLSname] = ACTIONS(5197), + [anon_sym_BSLASHglssymbol] = ACTIONS(5197), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5197), + [anon_sym_BSLASHglsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5197), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5197), + [anon_sym_BSLASHglsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5197), + [anon_sym_BSLASHglsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5197), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5197), + [anon_sym_BSLASHglsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5197), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5197), + [anon_sym_BSLASHglsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5197), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5197), + [anon_sym_BSLASHnewacronym] = ACTIONS(5197), + [anon_sym_BSLASHacrshort] = ACTIONS(5197), + [anon_sym_BSLASHAcrshort] = ACTIONS(5197), + [anon_sym_BSLASHACRshort] = ACTIONS(5197), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5197), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5197), + [anon_sym_BSLASHacrlong] = ACTIONS(5197), + [anon_sym_BSLASHAcrlong] = ACTIONS(5197), + [anon_sym_BSLASHACRlong] = ACTIONS(5197), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5197), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5197), + [anon_sym_BSLASHacrfull] = ACTIONS(5197), + [anon_sym_BSLASHAcrfull] = ACTIONS(5197), + [anon_sym_BSLASHACRfull] = ACTIONS(5197), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5197), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5197), + [anon_sym_BSLASHacs] = ACTIONS(5197), + [anon_sym_BSLASHAcs] = ACTIONS(5197), + [anon_sym_BSLASHacsp] = ACTIONS(5197), + [anon_sym_BSLASHAcsp] = ACTIONS(5197), + [anon_sym_BSLASHacl] = ACTIONS(5197), + [anon_sym_BSLASHAcl] = ACTIONS(5197), + [anon_sym_BSLASHaclp] = ACTIONS(5197), + [anon_sym_BSLASHAclp] = ACTIONS(5197), + [anon_sym_BSLASHacf] = ACTIONS(5197), + [anon_sym_BSLASHAcf] = ACTIONS(5197), + [anon_sym_BSLASHacfp] = ACTIONS(5197), + [anon_sym_BSLASHAcfp] = ACTIONS(5197), + [anon_sym_BSLASHac] = ACTIONS(5197), + [anon_sym_BSLASHAc] = ACTIONS(5197), + [anon_sym_BSLASHacp] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5197), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5197), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5197), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5197), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5197), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5197), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5197), + [anon_sym_BSLASHcolor] = ACTIONS(5197), + [anon_sym_BSLASHcolorbox] = ACTIONS(5197), + [anon_sym_BSLASHtextcolor] = ACTIONS(5197), + [anon_sym_BSLASHpagecolor] = ACTIONS(5197), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5197), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5197), + }, + [1550] = { + [sym_command_name] = ACTIONS(5301), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5301), + [anon_sym_RBRACK] = ACTIONS(5299), + [anon_sym_COMMA] = ACTIONS(5299), + [anon_sym_EQ] = ACTIONS(5299), + [anon_sym_RBRACE] = ACTIONS(5299), + [sym_word] = ACTIONS(5301), + [sym_placeholder] = ACTIONS(5299), + [anon_sym_PLUS] = ACTIONS(5301), + [anon_sym_DASH] = ACTIONS(5301), + [anon_sym_STAR] = ACTIONS(5301), + [anon_sym_SLASH] = ACTIONS(5301), + [anon_sym_CARET] = ACTIONS(5301), + [anon_sym__] = ACTIONS(5301), + [anon_sym_LT] = ACTIONS(5301), + [anon_sym_GT] = ACTIONS(5301), + [anon_sym_BANG] = ACTIONS(5301), + [anon_sym_PIPE] = ACTIONS(5301), + [anon_sym_COLON] = ACTIONS(5301), + [anon_sym_SQUOTE] = ACTIONS(5301), + [anon_sym_BSLASHusepackage] = ACTIONS(5301), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5301), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5301), + [anon_sym_BSLASHinclude] = ACTIONS(5301), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5301), + [anon_sym_BSLASHinput] = ACTIONS(5301), + [anon_sym_BSLASHsubfile] = ACTIONS(5301), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5301), + [anon_sym_BSLASHbibliography] = ACTIONS(5301), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5301), + [anon_sym_BSLASHincludesvg] = ACTIONS(5301), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5301), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5301), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5301), + [anon_sym_BSLASHimport] = ACTIONS(5301), + [anon_sym_BSLASHsubimport] = ACTIONS(5301), + [anon_sym_BSLASHinputfrom] = ACTIONS(5301), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5301), + [anon_sym_BSLASHincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5301), + [anon_sym_BSLASHcaption] = ACTIONS(5301), + [anon_sym_BSLASHcite] = ACTIONS(5301), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCite] = ACTIONS(5301), + [anon_sym_BSLASHnocite] = ACTIONS(5301), + [anon_sym_BSLASHcitet] = ACTIONS(5301), + [anon_sym_BSLASHcitep] = ACTIONS(5301), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteauthor] = ACTIONS(5301), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5301), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitetitle] = ACTIONS(5301), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteyear] = ACTIONS(5301), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5299), + [anon_sym_BSLASHcitedate] = ACTIONS(5301), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5299), + [anon_sym_BSLASHciteurl] = ACTIONS(5301), + [anon_sym_BSLASHfullcite] = ACTIONS(5301), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5301), + [anon_sym_BSLASHcitealt] = ACTIONS(5301), + [anon_sym_BSLASHcitealp] = ACTIONS(5301), + [anon_sym_BSLASHcitetext] = ACTIONS(5301), + [anon_sym_BSLASHparencite] = ACTIONS(5301), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHParencite] = ACTIONS(5301), + [anon_sym_BSLASHfootcite] = ACTIONS(5301), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5301), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5301), + [anon_sym_BSLASHtextcite] = ACTIONS(5301), + [anon_sym_BSLASHTextcite] = ACTIONS(5301), + [anon_sym_BSLASHsmartcite] = ACTIONS(5301), + [anon_sym_BSLASHSmartcite] = ACTIONS(5301), + [anon_sym_BSLASHsupercite] = ACTIONS(5301), + [anon_sym_BSLASHautocite] = ACTIONS(5301), + [anon_sym_BSLASHAutocite] = ACTIONS(5301), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5299), + [anon_sym_BSLASHvolcite] = ACTIONS(5301), + [anon_sym_BSLASHVolcite] = ACTIONS(5301), + [anon_sym_BSLASHpvolcite] = ACTIONS(5301), + [anon_sym_BSLASHPvolcite] = ACTIONS(5301), + [anon_sym_BSLASHfvolcite] = ACTIONS(5301), + [anon_sym_BSLASHftvolcite] = ACTIONS(5301), + [anon_sym_BSLASHsvolcite] = ACTIONS(5301), + [anon_sym_BSLASHSvolcite] = ACTIONS(5301), + [anon_sym_BSLASHtvolcite] = ACTIONS(5301), + [anon_sym_BSLASHTvolcite] = ACTIONS(5301), + [anon_sym_BSLASHavolcite] = ACTIONS(5301), + [anon_sym_BSLASHAvolcite] = ACTIONS(5301), + [anon_sym_BSLASHnotecite] = ACTIONS(5301), + [anon_sym_BSLASHNotecite] = ACTIONS(5301), + [anon_sym_BSLASHpnotecite] = ACTIONS(5301), + [anon_sym_BSLASHPnotecite] = ACTIONS(5301), + [anon_sym_BSLASHfnotecite] = ACTIONS(5301), + [anon_sym_BSLASHlabel] = ACTIONS(5301), + [anon_sym_BSLASHref] = ACTIONS(5301), + [anon_sym_BSLASHeqref] = ACTIONS(5301), + [anon_sym_BSLASHvref] = ACTIONS(5301), + [anon_sym_BSLASHVref] = ACTIONS(5301), + [anon_sym_BSLASHautoref] = ACTIONS(5301), + [anon_sym_BSLASHpageref] = ACTIONS(5301), + [anon_sym_BSLASHcref] = ACTIONS(5301), + [anon_sym_BSLASHCref] = ACTIONS(5301), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnameCref] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5301), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5301), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5301), + [anon_sym_BSLASHlabelcref] = ACTIONS(5301), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange] = ACTIONS(5301), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHCrefrange] = ACTIONS(5301), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5299), + [anon_sym_BSLASHnewlabel] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand] = ACTIONS(5301), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5301), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5301), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5299), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5301), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5299), + [anon_sym_BSLASHdef] = ACTIONS(5301), + [anon_sym_BSLASHlet] = ACTIONS(5301), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5301), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5301), + [anon_sym_BSLASHgls] = ACTIONS(5301), + [anon_sym_BSLASHGls] = ACTIONS(5301), + [anon_sym_BSLASHGLS] = ACTIONS(5301), + [anon_sym_BSLASHglspl] = ACTIONS(5301), + [anon_sym_BSLASHGlspl] = ACTIONS(5301), + [anon_sym_BSLASHGLSpl] = ACTIONS(5301), + [anon_sym_BSLASHglsdisp] = ACTIONS(5301), + [anon_sym_BSLASHglslink] = ACTIONS(5301), + [anon_sym_BSLASHglstext] = ACTIONS(5301), + [anon_sym_BSLASHGlstext] = ACTIONS(5301), + [anon_sym_BSLASHGLStext] = ACTIONS(5301), + [anon_sym_BSLASHglsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5301), + [anon_sym_BSLASHglsplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSplural] = ACTIONS(5301), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5301), + [anon_sym_BSLASHglsname] = ACTIONS(5301), + [anon_sym_BSLASHGlsname] = ACTIONS(5301), + [anon_sym_BSLASHGLSname] = ACTIONS(5301), + [anon_sym_BSLASHglssymbol] = ACTIONS(5301), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5301), + [anon_sym_BSLASHglsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5301), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5301), + [anon_sym_BSLASHglsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5301), + [anon_sym_BSLASHglsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5301), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5301), + [anon_sym_BSLASHglsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5301), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5301), + [anon_sym_BSLASHglsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5301), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5301), + [anon_sym_BSLASHnewacronym] = ACTIONS(5301), + [anon_sym_BSLASHacrshort] = ACTIONS(5301), + [anon_sym_BSLASHAcrshort] = ACTIONS(5301), + [anon_sym_BSLASHACRshort] = ACTIONS(5301), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5301), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5301), + [anon_sym_BSLASHacrlong] = ACTIONS(5301), + [anon_sym_BSLASHAcrlong] = ACTIONS(5301), + [anon_sym_BSLASHACRlong] = ACTIONS(5301), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5301), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5301), + [anon_sym_BSLASHacrfull] = ACTIONS(5301), + [anon_sym_BSLASHAcrfull] = ACTIONS(5301), + [anon_sym_BSLASHACRfull] = ACTIONS(5301), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5301), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5301), + [anon_sym_BSLASHacs] = ACTIONS(5301), + [anon_sym_BSLASHAcs] = ACTIONS(5301), + [anon_sym_BSLASHacsp] = ACTIONS(5301), + [anon_sym_BSLASHAcsp] = ACTIONS(5301), + [anon_sym_BSLASHacl] = ACTIONS(5301), + [anon_sym_BSLASHAcl] = ACTIONS(5301), + [anon_sym_BSLASHaclp] = ACTIONS(5301), + [anon_sym_BSLASHAclp] = ACTIONS(5301), + [anon_sym_BSLASHacf] = ACTIONS(5301), + [anon_sym_BSLASHAcf] = ACTIONS(5301), + [anon_sym_BSLASHacfp] = ACTIONS(5301), + [anon_sym_BSLASHAcfp] = ACTIONS(5301), + [anon_sym_BSLASHac] = ACTIONS(5301), + [anon_sym_BSLASHAc] = ACTIONS(5301), + [anon_sym_BSLASHacp] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5301), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5301), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5301), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5301), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5301), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5301), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5301), + [anon_sym_BSLASHcolor] = ACTIONS(5301), + [anon_sym_BSLASHcolorbox] = ACTIONS(5301), + [anon_sym_BSLASHtextcolor] = ACTIONS(5301), + [anon_sym_BSLASHpagecolor] = ACTIONS(5301), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5301), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5301), + }, + [1551] = { + [sym_command_name] = ACTIONS(4939), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4939), + [anon_sym_RBRACK] = ACTIONS(4937), + [anon_sym_COMMA] = ACTIONS(4937), + [anon_sym_EQ] = ACTIONS(4937), + [anon_sym_RBRACE] = ACTIONS(4937), + [sym_word] = ACTIONS(4939), + [sym_placeholder] = ACTIONS(4937), + [anon_sym_PLUS] = ACTIONS(4939), + [anon_sym_DASH] = ACTIONS(4939), + [anon_sym_STAR] = ACTIONS(4939), + [anon_sym_SLASH] = ACTIONS(4939), + [anon_sym_CARET] = ACTIONS(4939), + [anon_sym__] = ACTIONS(4939), + [anon_sym_LT] = ACTIONS(4939), + [anon_sym_GT] = ACTIONS(4939), + [anon_sym_BANG] = ACTIONS(4939), + [anon_sym_PIPE] = ACTIONS(4939), + [anon_sym_COLON] = ACTIONS(4939), + [anon_sym_SQUOTE] = ACTIONS(4939), + [anon_sym_BSLASHusepackage] = ACTIONS(4939), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4939), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4939), + [anon_sym_BSLASHinclude] = ACTIONS(4939), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4939), + [anon_sym_BSLASHinput] = ACTIONS(4939), + [anon_sym_BSLASHsubfile] = ACTIONS(4939), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4939), + [anon_sym_BSLASHbibliography] = ACTIONS(4939), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4939), + [anon_sym_BSLASHincludesvg] = ACTIONS(4939), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4939), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4939), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4939), + [anon_sym_BSLASHimport] = ACTIONS(4939), + [anon_sym_BSLASHsubimport] = ACTIONS(4939), + [anon_sym_BSLASHinputfrom] = ACTIONS(4939), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4939), + [anon_sym_BSLASHincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4939), + [anon_sym_BSLASHcaption] = ACTIONS(4939), + [anon_sym_BSLASHcite] = ACTIONS(4939), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCite] = ACTIONS(4939), + [anon_sym_BSLASHnocite] = ACTIONS(4939), + [anon_sym_BSLASHcitet] = ACTIONS(4939), + [anon_sym_BSLASHcitep] = ACTIONS(4939), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteauthor] = ACTIONS(4939), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4939), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitetitle] = ACTIONS(4939), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteyear] = ACTIONS(4939), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4937), + [anon_sym_BSLASHcitedate] = ACTIONS(4939), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4937), + [anon_sym_BSLASHciteurl] = ACTIONS(4939), + [anon_sym_BSLASHfullcite] = ACTIONS(4939), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4939), + [anon_sym_BSLASHcitealt] = ACTIONS(4939), + [anon_sym_BSLASHcitealp] = ACTIONS(4939), + [anon_sym_BSLASHcitetext] = ACTIONS(4939), + [anon_sym_BSLASHparencite] = ACTIONS(4939), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHParencite] = ACTIONS(4939), + [anon_sym_BSLASHfootcite] = ACTIONS(4939), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4939), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4939), + [anon_sym_BSLASHtextcite] = ACTIONS(4939), + [anon_sym_BSLASHTextcite] = ACTIONS(4939), + [anon_sym_BSLASHsmartcite] = ACTIONS(4939), + [anon_sym_BSLASHSmartcite] = ACTIONS(4939), + [anon_sym_BSLASHsupercite] = ACTIONS(4939), + [anon_sym_BSLASHautocite] = ACTIONS(4939), + [anon_sym_BSLASHAutocite] = ACTIONS(4939), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4937), + [anon_sym_BSLASHvolcite] = ACTIONS(4939), + [anon_sym_BSLASHVolcite] = ACTIONS(4939), + [anon_sym_BSLASHpvolcite] = ACTIONS(4939), + [anon_sym_BSLASHPvolcite] = ACTIONS(4939), + [anon_sym_BSLASHfvolcite] = ACTIONS(4939), + [anon_sym_BSLASHftvolcite] = ACTIONS(4939), + [anon_sym_BSLASHsvolcite] = ACTIONS(4939), + [anon_sym_BSLASHSvolcite] = ACTIONS(4939), + [anon_sym_BSLASHtvolcite] = ACTIONS(4939), + [anon_sym_BSLASHTvolcite] = ACTIONS(4939), + [anon_sym_BSLASHavolcite] = ACTIONS(4939), + [anon_sym_BSLASHAvolcite] = ACTIONS(4939), + [anon_sym_BSLASHnotecite] = ACTIONS(4939), + [anon_sym_BSLASHNotecite] = ACTIONS(4939), + [anon_sym_BSLASHpnotecite] = ACTIONS(4939), + [anon_sym_BSLASHPnotecite] = ACTIONS(4939), + [anon_sym_BSLASHfnotecite] = ACTIONS(4939), + [anon_sym_BSLASHlabel] = ACTIONS(4939), + [anon_sym_BSLASHref] = ACTIONS(4939), + [anon_sym_BSLASHeqref] = ACTIONS(4939), + [anon_sym_BSLASHvref] = ACTIONS(4939), + [anon_sym_BSLASHVref] = ACTIONS(4939), + [anon_sym_BSLASHautoref] = ACTIONS(4939), + [anon_sym_BSLASHpageref] = ACTIONS(4939), + [anon_sym_BSLASHcref] = ACTIONS(4939), + [anon_sym_BSLASHCref] = ACTIONS(4939), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnameCref] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4939), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4939), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4939), + [anon_sym_BSLASHlabelcref] = ACTIONS(4939), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange] = ACTIONS(4939), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHCrefrange] = ACTIONS(4939), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4937), + [anon_sym_BSLASHnewlabel] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand] = ACTIONS(4939), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4939), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4939), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4937), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4939), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4937), + [anon_sym_BSLASHdef] = ACTIONS(4939), + [anon_sym_BSLASHlet] = ACTIONS(4939), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4939), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4939), + [anon_sym_BSLASHgls] = ACTIONS(4939), + [anon_sym_BSLASHGls] = ACTIONS(4939), + [anon_sym_BSLASHGLS] = ACTIONS(4939), + [anon_sym_BSLASHglspl] = ACTIONS(4939), + [anon_sym_BSLASHGlspl] = ACTIONS(4939), + [anon_sym_BSLASHGLSpl] = ACTIONS(4939), + [anon_sym_BSLASHglsdisp] = ACTIONS(4939), + [anon_sym_BSLASHglslink] = ACTIONS(4939), + [anon_sym_BSLASHglstext] = ACTIONS(4939), + [anon_sym_BSLASHGlstext] = ACTIONS(4939), + [anon_sym_BSLASHGLStext] = ACTIONS(4939), + [anon_sym_BSLASHglsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4939), + [anon_sym_BSLASHglsplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSplural] = ACTIONS(4939), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4939), + [anon_sym_BSLASHglsname] = ACTIONS(4939), + [anon_sym_BSLASHGlsname] = ACTIONS(4939), + [anon_sym_BSLASHGLSname] = ACTIONS(4939), + [anon_sym_BSLASHglssymbol] = ACTIONS(4939), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4939), + [anon_sym_BSLASHglsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4939), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4939), + [anon_sym_BSLASHglsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4939), + [anon_sym_BSLASHglsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4939), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4939), + [anon_sym_BSLASHglsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4939), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4939), + [anon_sym_BSLASHglsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4939), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4939), + [anon_sym_BSLASHnewacronym] = ACTIONS(4939), + [anon_sym_BSLASHacrshort] = ACTIONS(4939), + [anon_sym_BSLASHAcrshort] = ACTIONS(4939), + [anon_sym_BSLASHACRshort] = ACTIONS(4939), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4939), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4939), + [anon_sym_BSLASHacrlong] = ACTIONS(4939), + [anon_sym_BSLASHAcrlong] = ACTIONS(4939), + [anon_sym_BSLASHACRlong] = ACTIONS(4939), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4939), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4939), + [anon_sym_BSLASHacrfull] = ACTIONS(4939), + [anon_sym_BSLASHAcrfull] = ACTIONS(4939), + [anon_sym_BSLASHACRfull] = ACTIONS(4939), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4939), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4939), + [anon_sym_BSLASHacs] = ACTIONS(4939), + [anon_sym_BSLASHAcs] = ACTIONS(4939), + [anon_sym_BSLASHacsp] = ACTIONS(4939), + [anon_sym_BSLASHAcsp] = ACTIONS(4939), + [anon_sym_BSLASHacl] = ACTIONS(4939), + [anon_sym_BSLASHAcl] = ACTIONS(4939), + [anon_sym_BSLASHaclp] = ACTIONS(4939), + [anon_sym_BSLASHAclp] = ACTIONS(4939), + [anon_sym_BSLASHacf] = ACTIONS(4939), + [anon_sym_BSLASHAcf] = ACTIONS(4939), + [anon_sym_BSLASHacfp] = ACTIONS(4939), + [anon_sym_BSLASHAcfp] = ACTIONS(4939), + [anon_sym_BSLASHac] = ACTIONS(4939), + [anon_sym_BSLASHAc] = ACTIONS(4939), + [anon_sym_BSLASHacp] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4939), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4939), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4939), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4939), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4939), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4939), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4939), + [anon_sym_BSLASHcolor] = ACTIONS(4939), + [anon_sym_BSLASHcolorbox] = ACTIONS(4939), + [anon_sym_BSLASHtextcolor] = ACTIONS(4939), + [anon_sym_BSLASHpagecolor] = ACTIONS(4939), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4939), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4939), + }, + [1552] = { + [sym_command_name] = ACTIONS(5045), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5045), + [anon_sym_RBRACK] = ACTIONS(5043), + [anon_sym_COMMA] = ACTIONS(5043), + [anon_sym_EQ] = ACTIONS(5043), + [anon_sym_RBRACE] = ACTIONS(5043), + [sym_word] = ACTIONS(5045), + [sym_placeholder] = ACTIONS(5043), + [anon_sym_PLUS] = ACTIONS(5045), + [anon_sym_DASH] = ACTIONS(5045), + [anon_sym_STAR] = ACTIONS(5045), + [anon_sym_SLASH] = ACTIONS(5045), + [anon_sym_CARET] = ACTIONS(5045), + [anon_sym__] = ACTIONS(5045), + [anon_sym_LT] = ACTIONS(5045), + [anon_sym_GT] = ACTIONS(5045), + [anon_sym_BANG] = ACTIONS(5045), + [anon_sym_PIPE] = ACTIONS(5045), + [anon_sym_COLON] = ACTIONS(5045), + [anon_sym_SQUOTE] = ACTIONS(5045), + [anon_sym_BSLASHusepackage] = ACTIONS(5045), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5045), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5045), + [anon_sym_BSLASHinclude] = ACTIONS(5045), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5045), + [anon_sym_BSLASHinput] = ACTIONS(5045), + [anon_sym_BSLASHsubfile] = ACTIONS(5045), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5045), + [anon_sym_BSLASHbibliography] = ACTIONS(5045), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5045), + [anon_sym_BSLASHincludesvg] = ACTIONS(5045), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5045), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5045), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5045), + [anon_sym_BSLASHimport] = ACTIONS(5045), + [anon_sym_BSLASHsubimport] = ACTIONS(5045), + [anon_sym_BSLASHinputfrom] = ACTIONS(5045), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5045), + [anon_sym_BSLASHincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5045), + [anon_sym_BSLASHcaption] = ACTIONS(5045), + [anon_sym_BSLASHcite] = ACTIONS(5045), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCite] = ACTIONS(5045), + [anon_sym_BSLASHnocite] = ACTIONS(5045), + [anon_sym_BSLASHcitet] = ACTIONS(5045), + [anon_sym_BSLASHcitep] = ACTIONS(5045), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteauthor] = ACTIONS(5045), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5045), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitetitle] = ACTIONS(5045), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteyear] = ACTIONS(5045), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5043), + [anon_sym_BSLASHcitedate] = ACTIONS(5045), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5043), + [anon_sym_BSLASHciteurl] = ACTIONS(5045), + [anon_sym_BSLASHfullcite] = ACTIONS(5045), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5045), + [anon_sym_BSLASHcitealt] = ACTIONS(5045), + [anon_sym_BSLASHcitealp] = ACTIONS(5045), + [anon_sym_BSLASHcitetext] = ACTIONS(5045), + [anon_sym_BSLASHparencite] = ACTIONS(5045), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHParencite] = ACTIONS(5045), + [anon_sym_BSLASHfootcite] = ACTIONS(5045), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5045), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5045), + [anon_sym_BSLASHtextcite] = ACTIONS(5045), + [anon_sym_BSLASHTextcite] = ACTIONS(5045), + [anon_sym_BSLASHsmartcite] = ACTIONS(5045), + [anon_sym_BSLASHSmartcite] = ACTIONS(5045), + [anon_sym_BSLASHsupercite] = ACTIONS(5045), + [anon_sym_BSLASHautocite] = ACTIONS(5045), + [anon_sym_BSLASHAutocite] = ACTIONS(5045), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5043), + [anon_sym_BSLASHvolcite] = ACTIONS(5045), + [anon_sym_BSLASHVolcite] = ACTIONS(5045), + [anon_sym_BSLASHpvolcite] = ACTIONS(5045), + [anon_sym_BSLASHPvolcite] = ACTIONS(5045), + [anon_sym_BSLASHfvolcite] = ACTIONS(5045), + [anon_sym_BSLASHftvolcite] = ACTIONS(5045), + [anon_sym_BSLASHsvolcite] = ACTIONS(5045), + [anon_sym_BSLASHSvolcite] = ACTIONS(5045), + [anon_sym_BSLASHtvolcite] = ACTIONS(5045), + [anon_sym_BSLASHTvolcite] = ACTIONS(5045), + [anon_sym_BSLASHavolcite] = ACTIONS(5045), + [anon_sym_BSLASHAvolcite] = ACTIONS(5045), + [anon_sym_BSLASHnotecite] = ACTIONS(5045), + [anon_sym_BSLASHNotecite] = ACTIONS(5045), + [anon_sym_BSLASHpnotecite] = ACTIONS(5045), + [anon_sym_BSLASHPnotecite] = ACTIONS(5045), + [anon_sym_BSLASHfnotecite] = ACTIONS(5045), + [anon_sym_BSLASHlabel] = ACTIONS(5045), + [anon_sym_BSLASHref] = ACTIONS(5045), + [anon_sym_BSLASHeqref] = ACTIONS(5045), + [anon_sym_BSLASHvref] = ACTIONS(5045), + [anon_sym_BSLASHVref] = ACTIONS(5045), + [anon_sym_BSLASHautoref] = ACTIONS(5045), + [anon_sym_BSLASHpageref] = ACTIONS(5045), + [anon_sym_BSLASHcref] = ACTIONS(5045), + [anon_sym_BSLASHCref] = ACTIONS(5045), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnameCref] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5045), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5045), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5045), + [anon_sym_BSLASHlabelcref] = ACTIONS(5045), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange] = ACTIONS(5045), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHCrefrange] = ACTIONS(5045), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5043), + [anon_sym_BSLASHnewlabel] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand] = ACTIONS(5045), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5045), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5045), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5043), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5045), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5043), + [anon_sym_BSLASHdef] = ACTIONS(5045), + [anon_sym_BSLASHlet] = ACTIONS(5045), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5045), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5045), + [anon_sym_BSLASHgls] = ACTIONS(5045), + [anon_sym_BSLASHGls] = ACTIONS(5045), + [anon_sym_BSLASHGLS] = ACTIONS(5045), + [anon_sym_BSLASHglspl] = ACTIONS(5045), + [anon_sym_BSLASHGlspl] = ACTIONS(5045), + [anon_sym_BSLASHGLSpl] = ACTIONS(5045), + [anon_sym_BSLASHglsdisp] = ACTIONS(5045), + [anon_sym_BSLASHglslink] = ACTIONS(5045), + [anon_sym_BSLASHglstext] = ACTIONS(5045), + [anon_sym_BSLASHGlstext] = ACTIONS(5045), + [anon_sym_BSLASHGLStext] = ACTIONS(5045), + [anon_sym_BSLASHglsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5045), + [anon_sym_BSLASHglsplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSplural] = ACTIONS(5045), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5045), + [anon_sym_BSLASHglsname] = ACTIONS(5045), + [anon_sym_BSLASHGlsname] = ACTIONS(5045), + [anon_sym_BSLASHGLSname] = ACTIONS(5045), + [anon_sym_BSLASHglssymbol] = ACTIONS(5045), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5045), + [anon_sym_BSLASHglsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5045), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5045), + [anon_sym_BSLASHglsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5045), + [anon_sym_BSLASHglsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5045), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5045), + [anon_sym_BSLASHglsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5045), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5045), + [anon_sym_BSLASHglsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5045), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5045), + [anon_sym_BSLASHnewacronym] = ACTIONS(5045), + [anon_sym_BSLASHacrshort] = ACTIONS(5045), + [anon_sym_BSLASHAcrshort] = ACTIONS(5045), + [anon_sym_BSLASHACRshort] = ACTIONS(5045), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5045), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5045), + [anon_sym_BSLASHacrlong] = ACTIONS(5045), + [anon_sym_BSLASHAcrlong] = ACTIONS(5045), + [anon_sym_BSLASHACRlong] = ACTIONS(5045), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5045), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5045), + [anon_sym_BSLASHacrfull] = ACTIONS(5045), + [anon_sym_BSLASHAcrfull] = ACTIONS(5045), + [anon_sym_BSLASHACRfull] = ACTIONS(5045), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5045), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5045), + [anon_sym_BSLASHacs] = ACTIONS(5045), + [anon_sym_BSLASHAcs] = ACTIONS(5045), + [anon_sym_BSLASHacsp] = ACTIONS(5045), + [anon_sym_BSLASHAcsp] = ACTIONS(5045), + [anon_sym_BSLASHacl] = ACTIONS(5045), + [anon_sym_BSLASHAcl] = ACTIONS(5045), + [anon_sym_BSLASHaclp] = ACTIONS(5045), + [anon_sym_BSLASHAclp] = ACTIONS(5045), + [anon_sym_BSLASHacf] = ACTIONS(5045), + [anon_sym_BSLASHAcf] = ACTIONS(5045), + [anon_sym_BSLASHacfp] = ACTIONS(5045), + [anon_sym_BSLASHAcfp] = ACTIONS(5045), + [anon_sym_BSLASHac] = ACTIONS(5045), + [anon_sym_BSLASHAc] = ACTIONS(5045), + [anon_sym_BSLASHacp] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5045), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5045), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5045), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5045), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5045), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5045), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5045), + [anon_sym_BSLASHcolor] = ACTIONS(5045), + [anon_sym_BSLASHcolorbox] = ACTIONS(5045), + [anon_sym_BSLASHtextcolor] = ACTIONS(5045), + [anon_sym_BSLASHpagecolor] = ACTIONS(5045), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5045), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5045), }, [1553] = { - [sym_command_name] = ACTIONS(5225), + [sym_command_name] = ACTIONS(5053), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5225), - [anon_sym_RBRACK] = ACTIONS(5223), - [anon_sym_COMMA] = ACTIONS(5223), - [anon_sym_EQ] = ACTIONS(5223), - [anon_sym_RBRACE] = ACTIONS(5223), - [sym_word] = ACTIONS(5225), - [sym_placeholder] = ACTIONS(5223), - [anon_sym_PLUS] = ACTIONS(5225), - [anon_sym_DASH] = ACTIONS(5225), - [anon_sym_STAR] = ACTIONS(5225), - [anon_sym_SLASH] = ACTIONS(5225), - [anon_sym_CARET] = ACTIONS(5225), - [anon_sym__] = ACTIONS(5225), - [anon_sym_LT] = ACTIONS(5225), - [anon_sym_GT] = ACTIONS(5225), - [anon_sym_BANG] = ACTIONS(5225), - [anon_sym_PIPE] = ACTIONS(5225), - [anon_sym_COLON] = ACTIONS(5225), - [anon_sym_SQUOTE] = ACTIONS(5225), - [anon_sym_BSLASHusepackage] = ACTIONS(5225), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5225), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5225), - [anon_sym_BSLASHinclude] = ACTIONS(5225), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5225), - [anon_sym_BSLASHinput] = ACTIONS(5225), - [anon_sym_BSLASHsubfile] = ACTIONS(5225), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5225), - [anon_sym_BSLASHbibliography] = ACTIONS(5225), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5225), - [anon_sym_BSLASHincludesvg] = ACTIONS(5225), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5225), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5225), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5225), - [anon_sym_BSLASHimport] = ACTIONS(5225), - [anon_sym_BSLASHsubimport] = ACTIONS(5225), - [anon_sym_BSLASHinputfrom] = ACTIONS(5225), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5225), - [anon_sym_BSLASHincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5225), - [anon_sym_BSLASHcaption] = ACTIONS(5225), - [anon_sym_BSLASHcite] = ACTIONS(5225), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCite] = ACTIONS(5225), - [anon_sym_BSLASHnocite] = ACTIONS(5225), - [anon_sym_BSLASHcitet] = ACTIONS(5225), - [anon_sym_BSLASHcitep] = ACTIONS(5225), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteauthor] = ACTIONS(5225), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5225), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitetitle] = ACTIONS(5225), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteyear] = ACTIONS(5225), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5223), - [anon_sym_BSLASHcitedate] = ACTIONS(5225), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5223), - [anon_sym_BSLASHciteurl] = ACTIONS(5225), - [anon_sym_BSLASHfullcite] = ACTIONS(5225), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5225), - [anon_sym_BSLASHcitealt] = ACTIONS(5225), - [anon_sym_BSLASHcitealp] = ACTIONS(5225), - [anon_sym_BSLASHcitetext] = ACTIONS(5225), - [anon_sym_BSLASHparencite] = ACTIONS(5225), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHParencite] = ACTIONS(5225), - [anon_sym_BSLASHfootcite] = ACTIONS(5225), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5225), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5225), - [anon_sym_BSLASHtextcite] = ACTIONS(5225), - [anon_sym_BSLASHTextcite] = ACTIONS(5225), - [anon_sym_BSLASHsmartcite] = ACTIONS(5225), - [anon_sym_BSLASHSmartcite] = ACTIONS(5225), - [anon_sym_BSLASHsupercite] = ACTIONS(5225), - [anon_sym_BSLASHautocite] = ACTIONS(5225), - [anon_sym_BSLASHAutocite] = ACTIONS(5225), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5223), - [anon_sym_BSLASHvolcite] = ACTIONS(5225), - [anon_sym_BSLASHVolcite] = ACTIONS(5225), - [anon_sym_BSLASHpvolcite] = ACTIONS(5225), - [anon_sym_BSLASHPvolcite] = ACTIONS(5225), - [anon_sym_BSLASHfvolcite] = ACTIONS(5225), - [anon_sym_BSLASHftvolcite] = ACTIONS(5225), - [anon_sym_BSLASHsvolcite] = ACTIONS(5225), - [anon_sym_BSLASHSvolcite] = ACTIONS(5225), - [anon_sym_BSLASHtvolcite] = ACTIONS(5225), - [anon_sym_BSLASHTvolcite] = ACTIONS(5225), - [anon_sym_BSLASHavolcite] = ACTIONS(5225), - [anon_sym_BSLASHAvolcite] = ACTIONS(5225), - [anon_sym_BSLASHnotecite] = ACTIONS(5225), - [anon_sym_BSLASHNotecite] = ACTIONS(5225), - [anon_sym_BSLASHpnotecite] = ACTIONS(5225), - [anon_sym_BSLASHPnotecite] = ACTIONS(5225), - [anon_sym_BSLASHfnotecite] = ACTIONS(5225), - [anon_sym_BSLASHlabel] = ACTIONS(5225), - [anon_sym_BSLASHref] = ACTIONS(5225), - [anon_sym_BSLASHeqref] = ACTIONS(5225), - [anon_sym_BSLASHvref] = ACTIONS(5225), - [anon_sym_BSLASHVref] = ACTIONS(5225), - [anon_sym_BSLASHautoref] = ACTIONS(5225), - [anon_sym_BSLASHpageref] = ACTIONS(5225), - [anon_sym_BSLASHcref] = ACTIONS(5225), - [anon_sym_BSLASHCref] = ACTIONS(5225), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnameCref] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5225), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5225), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5225), - [anon_sym_BSLASHlabelcref] = ACTIONS(5225), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange] = ACTIONS(5225), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHCrefrange] = ACTIONS(5225), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5223), - [anon_sym_BSLASHnewlabel] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand] = ACTIONS(5225), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5225), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5225), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5223), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5225), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5223), - [anon_sym_BSLASHdef] = ACTIONS(5225), - [anon_sym_BSLASHlet] = ACTIONS(5225), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5225), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5225), - [anon_sym_BSLASHgls] = ACTIONS(5225), - [anon_sym_BSLASHGls] = ACTIONS(5225), - [anon_sym_BSLASHGLS] = ACTIONS(5225), - [anon_sym_BSLASHglspl] = ACTIONS(5225), - [anon_sym_BSLASHGlspl] = ACTIONS(5225), - [anon_sym_BSLASHGLSpl] = ACTIONS(5225), - [anon_sym_BSLASHglsdisp] = ACTIONS(5225), - [anon_sym_BSLASHglslink] = ACTIONS(5225), - [anon_sym_BSLASHglstext] = ACTIONS(5225), - [anon_sym_BSLASHGlstext] = ACTIONS(5225), - [anon_sym_BSLASHGLStext] = ACTIONS(5225), - [anon_sym_BSLASHglsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5225), - [anon_sym_BSLASHglsplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSplural] = ACTIONS(5225), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5225), - [anon_sym_BSLASHglsname] = ACTIONS(5225), - [anon_sym_BSLASHGlsname] = ACTIONS(5225), - [anon_sym_BSLASHGLSname] = ACTIONS(5225), - [anon_sym_BSLASHglssymbol] = ACTIONS(5225), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5225), - [anon_sym_BSLASHglsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5225), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5225), - [anon_sym_BSLASHglsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5225), - [anon_sym_BSLASHglsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5225), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5225), - [anon_sym_BSLASHglsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5225), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5225), - [anon_sym_BSLASHglsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5225), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5225), - [anon_sym_BSLASHnewacronym] = ACTIONS(5225), - [anon_sym_BSLASHacrshort] = ACTIONS(5225), - [anon_sym_BSLASHAcrshort] = ACTIONS(5225), - [anon_sym_BSLASHACRshort] = ACTIONS(5225), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5225), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5225), - [anon_sym_BSLASHacrlong] = ACTIONS(5225), - [anon_sym_BSLASHAcrlong] = ACTIONS(5225), - [anon_sym_BSLASHACRlong] = ACTIONS(5225), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5225), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5225), - [anon_sym_BSLASHacrfull] = ACTIONS(5225), - [anon_sym_BSLASHAcrfull] = ACTIONS(5225), - [anon_sym_BSLASHACRfull] = ACTIONS(5225), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5225), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5225), - [anon_sym_BSLASHacs] = ACTIONS(5225), - [anon_sym_BSLASHAcs] = ACTIONS(5225), - [anon_sym_BSLASHacsp] = ACTIONS(5225), - [anon_sym_BSLASHAcsp] = ACTIONS(5225), - [anon_sym_BSLASHacl] = ACTIONS(5225), - [anon_sym_BSLASHAcl] = ACTIONS(5225), - [anon_sym_BSLASHaclp] = ACTIONS(5225), - [anon_sym_BSLASHAclp] = ACTIONS(5225), - [anon_sym_BSLASHacf] = ACTIONS(5225), - [anon_sym_BSLASHAcf] = ACTIONS(5225), - [anon_sym_BSLASHacfp] = ACTIONS(5225), - [anon_sym_BSLASHAcfp] = ACTIONS(5225), - [anon_sym_BSLASHac] = ACTIONS(5225), - [anon_sym_BSLASHAc] = ACTIONS(5225), - [anon_sym_BSLASHacp] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5225), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5225), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5225), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5225), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5225), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5225), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5225), - [anon_sym_BSLASHcolor] = ACTIONS(5225), - [anon_sym_BSLASHcolorbox] = ACTIONS(5225), - [anon_sym_BSLASHtextcolor] = ACTIONS(5225), - [anon_sym_BSLASHpagecolor] = ACTIONS(5225), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5225), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5225), + [anon_sym_BSLASHiffalse] = ACTIONS(5053), + [anon_sym_RBRACK] = ACTIONS(5051), + [anon_sym_COMMA] = ACTIONS(5051), + [anon_sym_EQ] = ACTIONS(5051), + [anon_sym_RBRACE] = ACTIONS(5051), + [sym_word] = ACTIONS(5053), + [sym_placeholder] = ACTIONS(5051), + [anon_sym_PLUS] = ACTIONS(5053), + [anon_sym_DASH] = ACTIONS(5053), + [anon_sym_STAR] = ACTIONS(5053), + [anon_sym_SLASH] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5053), + [anon_sym__] = ACTIONS(5053), + [anon_sym_LT] = ACTIONS(5053), + [anon_sym_GT] = ACTIONS(5053), + [anon_sym_BANG] = ACTIONS(5053), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_COLON] = ACTIONS(5053), + [anon_sym_SQUOTE] = ACTIONS(5053), + [anon_sym_BSLASHusepackage] = ACTIONS(5053), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5053), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5053), + [anon_sym_BSLASHinclude] = ACTIONS(5053), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5053), + [anon_sym_BSLASHinput] = ACTIONS(5053), + [anon_sym_BSLASHsubfile] = ACTIONS(5053), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5053), + [anon_sym_BSLASHbibliography] = ACTIONS(5053), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5053), + [anon_sym_BSLASHincludesvg] = ACTIONS(5053), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5053), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5053), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5053), + [anon_sym_BSLASHimport] = ACTIONS(5053), + [anon_sym_BSLASHsubimport] = ACTIONS(5053), + [anon_sym_BSLASHinputfrom] = ACTIONS(5053), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5053), + [anon_sym_BSLASHincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5053), + [anon_sym_BSLASHcaption] = ACTIONS(5053), + [anon_sym_BSLASHcite] = ACTIONS(5053), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCite] = ACTIONS(5053), + [anon_sym_BSLASHnocite] = ACTIONS(5053), + [anon_sym_BSLASHcitet] = ACTIONS(5053), + [anon_sym_BSLASHcitep] = ACTIONS(5053), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteauthor] = ACTIONS(5053), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5053), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitetitle] = ACTIONS(5053), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteyear] = ACTIONS(5053), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5051), + [anon_sym_BSLASHcitedate] = ACTIONS(5053), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5051), + [anon_sym_BSLASHciteurl] = ACTIONS(5053), + [anon_sym_BSLASHfullcite] = ACTIONS(5053), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5053), + [anon_sym_BSLASHcitealt] = ACTIONS(5053), + [anon_sym_BSLASHcitealp] = ACTIONS(5053), + [anon_sym_BSLASHcitetext] = ACTIONS(5053), + [anon_sym_BSLASHparencite] = ACTIONS(5053), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHParencite] = ACTIONS(5053), + [anon_sym_BSLASHfootcite] = ACTIONS(5053), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5053), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5053), + [anon_sym_BSLASHtextcite] = ACTIONS(5053), + [anon_sym_BSLASHTextcite] = ACTIONS(5053), + [anon_sym_BSLASHsmartcite] = ACTIONS(5053), + [anon_sym_BSLASHSmartcite] = ACTIONS(5053), + [anon_sym_BSLASHsupercite] = ACTIONS(5053), + [anon_sym_BSLASHautocite] = ACTIONS(5053), + [anon_sym_BSLASHAutocite] = ACTIONS(5053), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5051), + [anon_sym_BSLASHvolcite] = ACTIONS(5053), + [anon_sym_BSLASHVolcite] = ACTIONS(5053), + [anon_sym_BSLASHpvolcite] = ACTIONS(5053), + [anon_sym_BSLASHPvolcite] = ACTIONS(5053), + [anon_sym_BSLASHfvolcite] = ACTIONS(5053), + [anon_sym_BSLASHftvolcite] = ACTIONS(5053), + [anon_sym_BSLASHsvolcite] = ACTIONS(5053), + [anon_sym_BSLASHSvolcite] = ACTIONS(5053), + [anon_sym_BSLASHtvolcite] = ACTIONS(5053), + [anon_sym_BSLASHTvolcite] = ACTIONS(5053), + [anon_sym_BSLASHavolcite] = ACTIONS(5053), + [anon_sym_BSLASHAvolcite] = ACTIONS(5053), + [anon_sym_BSLASHnotecite] = ACTIONS(5053), + [anon_sym_BSLASHNotecite] = ACTIONS(5053), + [anon_sym_BSLASHpnotecite] = ACTIONS(5053), + [anon_sym_BSLASHPnotecite] = ACTIONS(5053), + [anon_sym_BSLASHfnotecite] = ACTIONS(5053), + [anon_sym_BSLASHlabel] = ACTIONS(5053), + [anon_sym_BSLASHref] = ACTIONS(5053), + [anon_sym_BSLASHeqref] = ACTIONS(5053), + [anon_sym_BSLASHvref] = ACTIONS(5053), + [anon_sym_BSLASHVref] = ACTIONS(5053), + [anon_sym_BSLASHautoref] = ACTIONS(5053), + [anon_sym_BSLASHpageref] = ACTIONS(5053), + [anon_sym_BSLASHcref] = ACTIONS(5053), + [anon_sym_BSLASHCref] = ACTIONS(5053), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnameCref] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5053), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5053), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5053), + [anon_sym_BSLASHlabelcref] = ACTIONS(5053), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange] = ACTIONS(5053), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHCrefrange] = ACTIONS(5053), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5051), + [anon_sym_BSLASHnewlabel] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand] = ACTIONS(5053), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5053), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5053), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5051), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5053), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5051), + [anon_sym_BSLASHdef] = ACTIONS(5053), + [anon_sym_BSLASHlet] = ACTIONS(5053), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5053), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5053), + [anon_sym_BSLASHgls] = ACTIONS(5053), + [anon_sym_BSLASHGls] = ACTIONS(5053), + [anon_sym_BSLASHGLS] = ACTIONS(5053), + [anon_sym_BSLASHglspl] = ACTIONS(5053), + [anon_sym_BSLASHGlspl] = ACTIONS(5053), + [anon_sym_BSLASHGLSpl] = ACTIONS(5053), + [anon_sym_BSLASHglsdisp] = ACTIONS(5053), + [anon_sym_BSLASHglslink] = ACTIONS(5053), + [anon_sym_BSLASHglstext] = ACTIONS(5053), + [anon_sym_BSLASHGlstext] = ACTIONS(5053), + [anon_sym_BSLASHGLStext] = ACTIONS(5053), + [anon_sym_BSLASHglsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5053), + [anon_sym_BSLASHglsplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSplural] = ACTIONS(5053), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5053), + [anon_sym_BSLASHglsname] = ACTIONS(5053), + [anon_sym_BSLASHGlsname] = ACTIONS(5053), + [anon_sym_BSLASHGLSname] = ACTIONS(5053), + [anon_sym_BSLASHglssymbol] = ACTIONS(5053), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5053), + [anon_sym_BSLASHglsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5053), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5053), + [anon_sym_BSLASHglsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5053), + [anon_sym_BSLASHglsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5053), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5053), + [anon_sym_BSLASHglsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5053), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5053), + [anon_sym_BSLASHglsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5053), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5053), + [anon_sym_BSLASHnewacronym] = ACTIONS(5053), + [anon_sym_BSLASHacrshort] = ACTIONS(5053), + [anon_sym_BSLASHAcrshort] = ACTIONS(5053), + [anon_sym_BSLASHACRshort] = ACTIONS(5053), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5053), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5053), + [anon_sym_BSLASHacrlong] = ACTIONS(5053), + [anon_sym_BSLASHAcrlong] = ACTIONS(5053), + [anon_sym_BSLASHACRlong] = ACTIONS(5053), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5053), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5053), + [anon_sym_BSLASHacrfull] = ACTIONS(5053), + [anon_sym_BSLASHAcrfull] = ACTIONS(5053), + [anon_sym_BSLASHACRfull] = ACTIONS(5053), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5053), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5053), + [anon_sym_BSLASHacs] = ACTIONS(5053), + [anon_sym_BSLASHAcs] = ACTIONS(5053), + [anon_sym_BSLASHacsp] = ACTIONS(5053), + [anon_sym_BSLASHAcsp] = ACTIONS(5053), + [anon_sym_BSLASHacl] = ACTIONS(5053), + [anon_sym_BSLASHAcl] = ACTIONS(5053), + [anon_sym_BSLASHaclp] = ACTIONS(5053), + [anon_sym_BSLASHAclp] = ACTIONS(5053), + [anon_sym_BSLASHacf] = ACTIONS(5053), + [anon_sym_BSLASHAcf] = ACTIONS(5053), + [anon_sym_BSLASHacfp] = ACTIONS(5053), + [anon_sym_BSLASHAcfp] = ACTIONS(5053), + [anon_sym_BSLASHac] = ACTIONS(5053), + [anon_sym_BSLASHAc] = ACTIONS(5053), + [anon_sym_BSLASHacp] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5053), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5053), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5053), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5053), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5053), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5053), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5053), + [anon_sym_BSLASHcolor] = ACTIONS(5053), + [anon_sym_BSLASHcolorbox] = ACTIONS(5053), + [anon_sym_BSLASHtextcolor] = ACTIONS(5053), + [anon_sym_BSLASHpagecolor] = ACTIONS(5053), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5053), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5053), }, [1554] = { - [sym_command_name] = ACTIONS(5385), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5385), - [anon_sym_RBRACK] = ACTIONS(5383), - [anon_sym_COMMA] = ACTIONS(5383), - [anon_sym_EQ] = ACTIONS(5383), - [anon_sym_RBRACE] = ACTIONS(5383), - [sym_word] = ACTIONS(5385), - [sym_placeholder] = ACTIONS(5383), - [anon_sym_PLUS] = ACTIONS(5385), - [anon_sym_DASH] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5385), - [anon_sym_SLASH] = ACTIONS(5385), - [anon_sym_CARET] = ACTIONS(5385), - [anon_sym__] = ACTIONS(5385), - [anon_sym_LT] = ACTIONS(5385), - [anon_sym_GT] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_PIPE] = ACTIONS(5385), - [anon_sym_COLON] = ACTIONS(5385), - [anon_sym_SQUOTE] = ACTIONS(5385), - [anon_sym_BSLASHusepackage] = ACTIONS(5385), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5385), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5385), - [anon_sym_BSLASHinclude] = ACTIONS(5385), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5385), - [anon_sym_BSLASHinput] = ACTIONS(5385), - [anon_sym_BSLASHsubfile] = ACTIONS(5385), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5385), - [anon_sym_BSLASHbibliography] = ACTIONS(5385), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5385), - [anon_sym_BSLASHincludesvg] = ACTIONS(5385), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5385), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5385), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5385), - [anon_sym_BSLASHimport] = ACTIONS(5385), - [anon_sym_BSLASHsubimport] = ACTIONS(5385), - [anon_sym_BSLASHinputfrom] = ACTIONS(5385), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5385), - [anon_sym_BSLASHincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5385), - [anon_sym_BSLASHcaption] = ACTIONS(5385), - [anon_sym_BSLASHcite] = ACTIONS(5385), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCite] = ACTIONS(5385), - [anon_sym_BSLASHnocite] = ACTIONS(5385), - [anon_sym_BSLASHcitet] = ACTIONS(5385), - [anon_sym_BSLASHcitep] = ACTIONS(5385), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteauthor] = ACTIONS(5385), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5385), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitetitle] = ACTIONS(5385), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteyear] = ACTIONS(5385), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5383), - [anon_sym_BSLASHcitedate] = ACTIONS(5385), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5383), - [anon_sym_BSLASHciteurl] = ACTIONS(5385), - [anon_sym_BSLASHfullcite] = ACTIONS(5385), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5385), - [anon_sym_BSLASHcitealt] = ACTIONS(5385), - [anon_sym_BSLASHcitealp] = ACTIONS(5385), - [anon_sym_BSLASHcitetext] = ACTIONS(5385), - [anon_sym_BSLASHparencite] = ACTIONS(5385), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHParencite] = ACTIONS(5385), - [anon_sym_BSLASHfootcite] = ACTIONS(5385), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5385), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5385), - [anon_sym_BSLASHtextcite] = ACTIONS(5385), - [anon_sym_BSLASHTextcite] = ACTIONS(5385), - [anon_sym_BSLASHsmartcite] = ACTIONS(5385), - [anon_sym_BSLASHSmartcite] = ACTIONS(5385), - [anon_sym_BSLASHsupercite] = ACTIONS(5385), - [anon_sym_BSLASHautocite] = ACTIONS(5385), - [anon_sym_BSLASHAutocite] = ACTIONS(5385), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5383), - [anon_sym_BSLASHvolcite] = ACTIONS(5385), - [anon_sym_BSLASHVolcite] = ACTIONS(5385), - [anon_sym_BSLASHpvolcite] = ACTIONS(5385), - [anon_sym_BSLASHPvolcite] = ACTIONS(5385), - [anon_sym_BSLASHfvolcite] = ACTIONS(5385), - [anon_sym_BSLASHftvolcite] = ACTIONS(5385), - [anon_sym_BSLASHsvolcite] = ACTIONS(5385), - [anon_sym_BSLASHSvolcite] = ACTIONS(5385), - [anon_sym_BSLASHtvolcite] = ACTIONS(5385), - [anon_sym_BSLASHTvolcite] = ACTIONS(5385), - [anon_sym_BSLASHavolcite] = ACTIONS(5385), - [anon_sym_BSLASHAvolcite] = ACTIONS(5385), - [anon_sym_BSLASHnotecite] = ACTIONS(5385), - [anon_sym_BSLASHNotecite] = ACTIONS(5385), - [anon_sym_BSLASHpnotecite] = ACTIONS(5385), - [anon_sym_BSLASHPnotecite] = ACTIONS(5385), - [anon_sym_BSLASHfnotecite] = ACTIONS(5385), - [anon_sym_BSLASHlabel] = ACTIONS(5385), - [anon_sym_BSLASHref] = ACTIONS(5385), - [anon_sym_BSLASHeqref] = ACTIONS(5385), - [anon_sym_BSLASHvref] = ACTIONS(5385), - [anon_sym_BSLASHVref] = ACTIONS(5385), - [anon_sym_BSLASHautoref] = ACTIONS(5385), - [anon_sym_BSLASHpageref] = ACTIONS(5385), - [anon_sym_BSLASHcref] = ACTIONS(5385), - [anon_sym_BSLASHCref] = ACTIONS(5385), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnameCref] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5385), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5385), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5385), - [anon_sym_BSLASHlabelcref] = ACTIONS(5385), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange] = ACTIONS(5385), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHCrefrange] = ACTIONS(5385), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5383), - [anon_sym_BSLASHnewlabel] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand] = ACTIONS(5385), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5385), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5385), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5383), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5385), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5383), - [anon_sym_BSLASHdef] = ACTIONS(5385), - [anon_sym_BSLASHlet] = ACTIONS(5385), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5385), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5385), - [anon_sym_BSLASHgls] = ACTIONS(5385), - [anon_sym_BSLASHGls] = ACTIONS(5385), - [anon_sym_BSLASHGLS] = ACTIONS(5385), - [anon_sym_BSLASHglspl] = ACTIONS(5385), - [anon_sym_BSLASHGlspl] = ACTIONS(5385), - [anon_sym_BSLASHGLSpl] = ACTIONS(5385), - [anon_sym_BSLASHglsdisp] = ACTIONS(5385), - [anon_sym_BSLASHglslink] = ACTIONS(5385), - [anon_sym_BSLASHglstext] = ACTIONS(5385), - [anon_sym_BSLASHGlstext] = ACTIONS(5385), - [anon_sym_BSLASHGLStext] = ACTIONS(5385), - [anon_sym_BSLASHglsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5385), - [anon_sym_BSLASHglsplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSplural] = ACTIONS(5385), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5385), - [anon_sym_BSLASHglsname] = ACTIONS(5385), - [anon_sym_BSLASHGlsname] = ACTIONS(5385), - [anon_sym_BSLASHGLSname] = ACTIONS(5385), - [anon_sym_BSLASHglssymbol] = ACTIONS(5385), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5385), - [anon_sym_BSLASHglsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5385), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5385), - [anon_sym_BSLASHglsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5385), - [anon_sym_BSLASHglsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5385), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5385), - [anon_sym_BSLASHglsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5385), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5385), - [anon_sym_BSLASHglsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5385), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5385), - [anon_sym_BSLASHnewacronym] = ACTIONS(5385), - [anon_sym_BSLASHacrshort] = ACTIONS(5385), - [anon_sym_BSLASHAcrshort] = ACTIONS(5385), - [anon_sym_BSLASHACRshort] = ACTIONS(5385), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5385), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5385), - [anon_sym_BSLASHacrlong] = ACTIONS(5385), - [anon_sym_BSLASHAcrlong] = ACTIONS(5385), - [anon_sym_BSLASHACRlong] = ACTIONS(5385), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5385), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5385), - [anon_sym_BSLASHacrfull] = ACTIONS(5385), - [anon_sym_BSLASHAcrfull] = ACTIONS(5385), - [anon_sym_BSLASHACRfull] = ACTIONS(5385), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5385), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5385), - [anon_sym_BSLASHacs] = ACTIONS(5385), - [anon_sym_BSLASHAcs] = ACTIONS(5385), - [anon_sym_BSLASHacsp] = ACTIONS(5385), - [anon_sym_BSLASHAcsp] = ACTIONS(5385), - [anon_sym_BSLASHacl] = ACTIONS(5385), - [anon_sym_BSLASHAcl] = ACTIONS(5385), - [anon_sym_BSLASHaclp] = ACTIONS(5385), - [anon_sym_BSLASHAclp] = ACTIONS(5385), - [anon_sym_BSLASHacf] = ACTIONS(5385), - [anon_sym_BSLASHAcf] = ACTIONS(5385), - [anon_sym_BSLASHacfp] = ACTIONS(5385), - [anon_sym_BSLASHAcfp] = ACTIONS(5385), - [anon_sym_BSLASHac] = ACTIONS(5385), - [anon_sym_BSLASHAc] = ACTIONS(5385), - [anon_sym_BSLASHacp] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5385), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5385), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5385), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5385), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5385), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5385), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5385), - [anon_sym_BSLASHcolor] = ACTIONS(5385), - [anon_sym_BSLASHcolorbox] = ACTIONS(5385), - [anon_sym_BSLASHtextcolor] = ACTIONS(5385), - [anon_sym_BSLASHpagecolor] = ACTIONS(5385), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5385), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5385), + [sym_command_name] = ACTIONS(5057), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5057), + [anon_sym_RBRACK] = ACTIONS(5055), + [anon_sym_COMMA] = ACTIONS(5055), + [anon_sym_EQ] = ACTIONS(5055), + [anon_sym_RBRACE] = ACTIONS(5055), + [sym_word] = ACTIONS(5057), + [sym_placeholder] = ACTIONS(5055), + [anon_sym_PLUS] = ACTIONS(5057), + [anon_sym_DASH] = ACTIONS(5057), + [anon_sym_STAR] = ACTIONS(5057), + [anon_sym_SLASH] = ACTIONS(5057), + [anon_sym_CARET] = ACTIONS(5057), + [anon_sym__] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5057), + [anon_sym_GT] = ACTIONS(5057), + [anon_sym_BANG] = ACTIONS(5057), + [anon_sym_PIPE] = ACTIONS(5057), + [anon_sym_COLON] = ACTIONS(5057), + [anon_sym_SQUOTE] = ACTIONS(5057), + [anon_sym_BSLASHusepackage] = ACTIONS(5057), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5057), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5057), + [anon_sym_BSLASHinclude] = ACTIONS(5057), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5057), + [anon_sym_BSLASHinput] = ACTIONS(5057), + [anon_sym_BSLASHsubfile] = ACTIONS(5057), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5057), + [anon_sym_BSLASHbibliography] = ACTIONS(5057), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5057), + [anon_sym_BSLASHincludesvg] = ACTIONS(5057), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5057), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5057), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5057), + [anon_sym_BSLASHimport] = ACTIONS(5057), + [anon_sym_BSLASHsubimport] = ACTIONS(5057), + [anon_sym_BSLASHinputfrom] = ACTIONS(5057), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5057), + [anon_sym_BSLASHincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5057), + [anon_sym_BSLASHcaption] = ACTIONS(5057), + [anon_sym_BSLASHcite] = ACTIONS(5057), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCite] = ACTIONS(5057), + [anon_sym_BSLASHnocite] = ACTIONS(5057), + [anon_sym_BSLASHcitet] = ACTIONS(5057), + [anon_sym_BSLASHcitep] = ACTIONS(5057), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteauthor] = ACTIONS(5057), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5057), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitetitle] = ACTIONS(5057), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteyear] = ACTIONS(5057), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5055), + [anon_sym_BSLASHcitedate] = ACTIONS(5057), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5055), + [anon_sym_BSLASHciteurl] = ACTIONS(5057), + [anon_sym_BSLASHfullcite] = ACTIONS(5057), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5057), + [anon_sym_BSLASHcitealt] = ACTIONS(5057), + [anon_sym_BSLASHcitealp] = ACTIONS(5057), + [anon_sym_BSLASHcitetext] = ACTIONS(5057), + [anon_sym_BSLASHparencite] = ACTIONS(5057), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHParencite] = ACTIONS(5057), + [anon_sym_BSLASHfootcite] = ACTIONS(5057), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5057), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5057), + [anon_sym_BSLASHtextcite] = ACTIONS(5057), + [anon_sym_BSLASHTextcite] = ACTIONS(5057), + [anon_sym_BSLASHsmartcite] = ACTIONS(5057), + [anon_sym_BSLASHSmartcite] = ACTIONS(5057), + [anon_sym_BSLASHsupercite] = ACTIONS(5057), + [anon_sym_BSLASHautocite] = ACTIONS(5057), + [anon_sym_BSLASHAutocite] = ACTIONS(5057), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5055), + [anon_sym_BSLASHvolcite] = ACTIONS(5057), + [anon_sym_BSLASHVolcite] = ACTIONS(5057), + [anon_sym_BSLASHpvolcite] = ACTIONS(5057), + [anon_sym_BSLASHPvolcite] = ACTIONS(5057), + [anon_sym_BSLASHfvolcite] = ACTIONS(5057), + [anon_sym_BSLASHftvolcite] = ACTIONS(5057), + [anon_sym_BSLASHsvolcite] = ACTIONS(5057), + [anon_sym_BSLASHSvolcite] = ACTIONS(5057), + [anon_sym_BSLASHtvolcite] = ACTIONS(5057), + [anon_sym_BSLASHTvolcite] = ACTIONS(5057), + [anon_sym_BSLASHavolcite] = ACTIONS(5057), + [anon_sym_BSLASHAvolcite] = ACTIONS(5057), + [anon_sym_BSLASHnotecite] = ACTIONS(5057), + [anon_sym_BSLASHNotecite] = ACTIONS(5057), + [anon_sym_BSLASHpnotecite] = ACTIONS(5057), + [anon_sym_BSLASHPnotecite] = ACTIONS(5057), + [anon_sym_BSLASHfnotecite] = ACTIONS(5057), + [anon_sym_BSLASHlabel] = ACTIONS(5057), + [anon_sym_BSLASHref] = ACTIONS(5057), + [anon_sym_BSLASHeqref] = ACTIONS(5057), + [anon_sym_BSLASHvref] = ACTIONS(5057), + [anon_sym_BSLASHVref] = ACTIONS(5057), + [anon_sym_BSLASHautoref] = ACTIONS(5057), + [anon_sym_BSLASHpageref] = ACTIONS(5057), + [anon_sym_BSLASHcref] = ACTIONS(5057), + [anon_sym_BSLASHCref] = ACTIONS(5057), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnameCref] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5057), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5057), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5057), + [anon_sym_BSLASHlabelcref] = ACTIONS(5057), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange] = ACTIONS(5057), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHCrefrange] = ACTIONS(5057), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5055), + [anon_sym_BSLASHnewlabel] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand] = ACTIONS(5057), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5057), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5057), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5055), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5057), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5055), + [anon_sym_BSLASHdef] = ACTIONS(5057), + [anon_sym_BSLASHlet] = ACTIONS(5057), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5057), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5057), + [anon_sym_BSLASHgls] = ACTIONS(5057), + [anon_sym_BSLASHGls] = ACTIONS(5057), + [anon_sym_BSLASHGLS] = ACTIONS(5057), + [anon_sym_BSLASHglspl] = ACTIONS(5057), + [anon_sym_BSLASHGlspl] = ACTIONS(5057), + [anon_sym_BSLASHGLSpl] = ACTIONS(5057), + [anon_sym_BSLASHglsdisp] = ACTIONS(5057), + [anon_sym_BSLASHglslink] = ACTIONS(5057), + [anon_sym_BSLASHglstext] = ACTIONS(5057), + [anon_sym_BSLASHGlstext] = ACTIONS(5057), + [anon_sym_BSLASHGLStext] = ACTIONS(5057), + [anon_sym_BSLASHglsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5057), + [anon_sym_BSLASHglsplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSplural] = ACTIONS(5057), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5057), + [anon_sym_BSLASHglsname] = ACTIONS(5057), + [anon_sym_BSLASHGlsname] = ACTIONS(5057), + [anon_sym_BSLASHGLSname] = ACTIONS(5057), + [anon_sym_BSLASHglssymbol] = ACTIONS(5057), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5057), + [anon_sym_BSLASHglsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5057), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5057), + [anon_sym_BSLASHglsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5057), + [anon_sym_BSLASHglsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5057), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5057), + [anon_sym_BSLASHglsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5057), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5057), + [anon_sym_BSLASHglsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5057), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5057), + [anon_sym_BSLASHnewacronym] = ACTIONS(5057), + [anon_sym_BSLASHacrshort] = ACTIONS(5057), + [anon_sym_BSLASHAcrshort] = ACTIONS(5057), + [anon_sym_BSLASHACRshort] = ACTIONS(5057), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5057), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5057), + [anon_sym_BSLASHacrlong] = ACTIONS(5057), + [anon_sym_BSLASHAcrlong] = ACTIONS(5057), + [anon_sym_BSLASHACRlong] = ACTIONS(5057), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5057), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5057), + [anon_sym_BSLASHacrfull] = ACTIONS(5057), + [anon_sym_BSLASHAcrfull] = ACTIONS(5057), + [anon_sym_BSLASHACRfull] = ACTIONS(5057), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5057), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5057), + [anon_sym_BSLASHacs] = ACTIONS(5057), + [anon_sym_BSLASHAcs] = ACTIONS(5057), + [anon_sym_BSLASHacsp] = ACTIONS(5057), + [anon_sym_BSLASHAcsp] = ACTIONS(5057), + [anon_sym_BSLASHacl] = ACTIONS(5057), + [anon_sym_BSLASHAcl] = ACTIONS(5057), + [anon_sym_BSLASHaclp] = ACTIONS(5057), + [anon_sym_BSLASHAclp] = ACTIONS(5057), + [anon_sym_BSLASHacf] = ACTIONS(5057), + [anon_sym_BSLASHAcf] = ACTIONS(5057), + [anon_sym_BSLASHacfp] = ACTIONS(5057), + [anon_sym_BSLASHAcfp] = ACTIONS(5057), + [anon_sym_BSLASHac] = ACTIONS(5057), + [anon_sym_BSLASHAc] = ACTIONS(5057), + [anon_sym_BSLASHacp] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5057), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5057), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5057), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5057), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5057), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5057), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5057), + [anon_sym_BSLASHcolor] = ACTIONS(5057), + [anon_sym_BSLASHcolorbox] = ACTIONS(5057), + [anon_sym_BSLASHtextcolor] = ACTIONS(5057), + [anon_sym_BSLASHpagecolor] = ACTIONS(5057), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5057), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5057), }, [1555] = { - [sym_command_name] = ACTIONS(5171), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5171), - [anon_sym_RBRACK] = ACTIONS(5169), - [anon_sym_COMMA] = ACTIONS(5169), - [anon_sym_EQ] = ACTIONS(5169), - [anon_sym_RBRACE] = ACTIONS(5169), - [sym_word] = ACTIONS(5171), - [sym_placeholder] = ACTIONS(5169), - [anon_sym_PLUS] = ACTIONS(5171), - [anon_sym_DASH] = ACTIONS(5171), - [anon_sym_STAR] = ACTIONS(5171), - [anon_sym_SLASH] = ACTIONS(5171), - [anon_sym_CARET] = ACTIONS(5171), - [anon_sym__] = ACTIONS(5171), - [anon_sym_LT] = ACTIONS(5171), - [anon_sym_GT] = ACTIONS(5171), - [anon_sym_BANG] = ACTIONS(5171), - [anon_sym_PIPE] = ACTIONS(5171), - [anon_sym_COLON] = ACTIONS(5171), - [anon_sym_SQUOTE] = ACTIONS(5171), - [anon_sym_BSLASHusepackage] = ACTIONS(5171), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5171), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5171), - [anon_sym_BSLASHinclude] = ACTIONS(5171), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5171), - [anon_sym_BSLASHinput] = ACTIONS(5171), - [anon_sym_BSLASHsubfile] = ACTIONS(5171), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5171), - [anon_sym_BSLASHbibliography] = ACTIONS(5171), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5171), - [anon_sym_BSLASHincludesvg] = ACTIONS(5171), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5171), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5171), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5171), - [anon_sym_BSLASHimport] = ACTIONS(5171), - [anon_sym_BSLASHsubimport] = ACTIONS(5171), - [anon_sym_BSLASHinputfrom] = ACTIONS(5171), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5171), - [anon_sym_BSLASHincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5171), - [anon_sym_BSLASHcaption] = ACTIONS(5171), - [anon_sym_BSLASHcite] = ACTIONS(5171), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCite] = ACTIONS(5171), - [anon_sym_BSLASHnocite] = ACTIONS(5171), - [anon_sym_BSLASHcitet] = ACTIONS(5171), - [anon_sym_BSLASHcitep] = ACTIONS(5171), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteauthor] = ACTIONS(5171), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5171), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitetitle] = ACTIONS(5171), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteyear] = ACTIONS(5171), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5169), - [anon_sym_BSLASHcitedate] = ACTIONS(5171), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5169), - [anon_sym_BSLASHciteurl] = ACTIONS(5171), - [anon_sym_BSLASHfullcite] = ACTIONS(5171), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5171), - [anon_sym_BSLASHcitealt] = ACTIONS(5171), - [anon_sym_BSLASHcitealp] = ACTIONS(5171), - [anon_sym_BSLASHcitetext] = ACTIONS(5171), - [anon_sym_BSLASHparencite] = ACTIONS(5171), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHParencite] = ACTIONS(5171), - [anon_sym_BSLASHfootcite] = ACTIONS(5171), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5171), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5171), - [anon_sym_BSLASHtextcite] = ACTIONS(5171), - [anon_sym_BSLASHTextcite] = ACTIONS(5171), - [anon_sym_BSLASHsmartcite] = ACTIONS(5171), - [anon_sym_BSLASHSmartcite] = ACTIONS(5171), - [anon_sym_BSLASHsupercite] = ACTIONS(5171), - [anon_sym_BSLASHautocite] = ACTIONS(5171), - [anon_sym_BSLASHAutocite] = ACTIONS(5171), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5169), - [anon_sym_BSLASHvolcite] = ACTIONS(5171), - [anon_sym_BSLASHVolcite] = ACTIONS(5171), - [anon_sym_BSLASHpvolcite] = ACTIONS(5171), - [anon_sym_BSLASHPvolcite] = ACTIONS(5171), - [anon_sym_BSLASHfvolcite] = ACTIONS(5171), - [anon_sym_BSLASHftvolcite] = ACTIONS(5171), - [anon_sym_BSLASHsvolcite] = ACTIONS(5171), - [anon_sym_BSLASHSvolcite] = ACTIONS(5171), - [anon_sym_BSLASHtvolcite] = ACTIONS(5171), - [anon_sym_BSLASHTvolcite] = ACTIONS(5171), - [anon_sym_BSLASHavolcite] = ACTIONS(5171), - [anon_sym_BSLASHAvolcite] = ACTIONS(5171), - [anon_sym_BSLASHnotecite] = ACTIONS(5171), - [anon_sym_BSLASHNotecite] = ACTIONS(5171), - [anon_sym_BSLASHpnotecite] = ACTIONS(5171), - [anon_sym_BSLASHPnotecite] = ACTIONS(5171), - [anon_sym_BSLASHfnotecite] = ACTIONS(5171), - [anon_sym_BSLASHlabel] = ACTIONS(5171), - [anon_sym_BSLASHref] = ACTIONS(5171), - [anon_sym_BSLASHeqref] = ACTIONS(5171), - [anon_sym_BSLASHvref] = ACTIONS(5171), - [anon_sym_BSLASHVref] = ACTIONS(5171), - [anon_sym_BSLASHautoref] = ACTIONS(5171), - [anon_sym_BSLASHpageref] = ACTIONS(5171), - [anon_sym_BSLASHcref] = ACTIONS(5171), - [anon_sym_BSLASHCref] = ACTIONS(5171), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnameCref] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5171), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5171), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5171), - [anon_sym_BSLASHlabelcref] = ACTIONS(5171), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange] = ACTIONS(5171), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHCrefrange] = ACTIONS(5171), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5169), - [anon_sym_BSLASHnewlabel] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand] = ACTIONS(5171), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5171), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5171), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5169), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5171), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5169), - [anon_sym_BSLASHdef] = ACTIONS(5171), - [anon_sym_BSLASHlet] = ACTIONS(5171), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5171), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5171), - [anon_sym_BSLASHgls] = ACTIONS(5171), - [anon_sym_BSLASHGls] = ACTIONS(5171), - [anon_sym_BSLASHGLS] = ACTIONS(5171), - [anon_sym_BSLASHglspl] = ACTIONS(5171), - [anon_sym_BSLASHGlspl] = ACTIONS(5171), - [anon_sym_BSLASHGLSpl] = ACTIONS(5171), - [anon_sym_BSLASHglsdisp] = ACTIONS(5171), - [anon_sym_BSLASHglslink] = ACTIONS(5171), - [anon_sym_BSLASHglstext] = ACTIONS(5171), - [anon_sym_BSLASHGlstext] = ACTIONS(5171), - [anon_sym_BSLASHGLStext] = ACTIONS(5171), - [anon_sym_BSLASHglsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5171), - [anon_sym_BSLASHglsplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSplural] = ACTIONS(5171), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5171), - [anon_sym_BSLASHglsname] = ACTIONS(5171), - [anon_sym_BSLASHGlsname] = ACTIONS(5171), - [anon_sym_BSLASHGLSname] = ACTIONS(5171), - [anon_sym_BSLASHglssymbol] = ACTIONS(5171), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5171), - [anon_sym_BSLASHglsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5171), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5171), - [anon_sym_BSLASHglsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5171), - [anon_sym_BSLASHglsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5171), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5171), - [anon_sym_BSLASHglsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5171), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5171), - [anon_sym_BSLASHglsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5171), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5171), - [anon_sym_BSLASHnewacronym] = ACTIONS(5171), - [anon_sym_BSLASHacrshort] = ACTIONS(5171), - [anon_sym_BSLASHAcrshort] = ACTIONS(5171), - [anon_sym_BSLASHACRshort] = ACTIONS(5171), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5171), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5171), - [anon_sym_BSLASHacrlong] = ACTIONS(5171), - [anon_sym_BSLASHAcrlong] = ACTIONS(5171), - [anon_sym_BSLASHACRlong] = ACTIONS(5171), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5171), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5171), - [anon_sym_BSLASHacrfull] = ACTIONS(5171), - [anon_sym_BSLASHAcrfull] = ACTIONS(5171), - [anon_sym_BSLASHACRfull] = ACTIONS(5171), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5171), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5171), - [anon_sym_BSLASHacs] = ACTIONS(5171), - [anon_sym_BSLASHAcs] = ACTIONS(5171), - [anon_sym_BSLASHacsp] = ACTIONS(5171), - [anon_sym_BSLASHAcsp] = ACTIONS(5171), - [anon_sym_BSLASHacl] = ACTIONS(5171), - [anon_sym_BSLASHAcl] = ACTIONS(5171), - [anon_sym_BSLASHaclp] = ACTIONS(5171), - [anon_sym_BSLASHAclp] = ACTIONS(5171), - [anon_sym_BSLASHacf] = ACTIONS(5171), - [anon_sym_BSLASHAcf] = ACTIONS(5171), - [anon_sym_BSLASHacfp] = ACTIONS(5171), - [anon_sym_BSLASHAcfp] = ACTIONS(5171), - [anon_sym_BSLASHac] = ACTIONS(5171), - [anon_sym_BSLASHAc] = ACTIONS(5171), - [anon_sym_BSLASHacp] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5171), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5171), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5171), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5171), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5171), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5171), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5171), - [anon_sym_BSLASHcolor] = ACTIONS(5171), - [anon_sym_BSLASHcolorbox] = ACTIONS(5171), - [anon_sym_BSLASHtextcolor] = ACTIONS(5171), - [anon_sym_BSLASHpagecolor] = ACTIONS(5171), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5171), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5171), + [sym_command_name] = ACTIONS(5193), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5193), + [anon_sym_RBRACK] = ACTIONS(5191), + [anon_sym_COMMA] = ACTIONS(5191), + [anon_sym_EQ] = ACTIONS(5191), + [anon_sym_RBRACE] = ACTIONS(5191), + [sym_word] = ACTIONS(5193), + [sym_placeholder] = ACTIONS(5191), + [anon_sym_PLUS] = ACTIONS(5193), + [anon_sym_DASH] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(5193), + [anon_sym_SLASH] = ACTIONS(5193), + [anon_sym_CARET] = ACTIONS(5193), + [anon_sym__] = ACTIONS(5193), + [anon_sym_LT] = ACTIONS(5193), + [anon_sym_GT] = ACTIONS(5193), + [anon_sym_BANG] = ACTIONS(5193), + [anon_sym_PIPE] = ACTIONS(5193), + [anon_sym_COLON] = ACTIONS(5193), + [anon_sym_SQUOTE] = ACTIONS(5193), + [anon_sym_BSLASHusepackage] = ACTIONS(5193), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5193), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5193), + [anon_sym_BSLASHinclude] = ACTIONS(5193), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5193), + [anon_sym_BSLASHinput] = ACTIONS(5193), + [anon_sym_BSLASHsubfile] = ACTIONS(5193), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5193), + [anon_sym_BSLASHbibliography] = ACTIONS(5193), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5193), + [anon_sym_BSLASHincludesvg] = ACTIONS(5193), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5193), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5193), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5193), + [anon_sym_BSLASHimport] = ACTIONS(5193), + [anon_sym_BSLASHsubimport] = ACTIONS(5193), + [anon_sym_BSLASHinputfrom] = ACTIONS(5193), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5193), + [anon_sym_BSLASHincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5193), + [anon_sym_BSLASHcaption] = ACTIONS(5193), + [anon_sym_BSLASHcite] = ACTIONS(5193), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCite] = ACTIONS(5193), + [anon_sym_BSLASHnocite] = ACTIONS(5193), + [anon_sym_BSLASHcitet] = ACTIONS(5193), + [anon_sym_BSLASHcitep] = ACTIONS(5193), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteauthor] = ACTIONS(5193), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5193), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitetitle] = ACTIONS(5193), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteyear] = ACTIONS(5193), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5191), + [anon_sym_BSLASHcitedate] = ACTIONS(5193), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5191), + [anon_sym_BSLASHciteurl] = ACTIONS(5193), + [anon_sym_BSLASHfullcite] = ACTIONS(5193), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5193), + [anon_sym_BSLASHcitealt] = ACTIONS(5193), + [anon_sym_BSLASHcitealp] = ACTIONS(5193), + [anon_sym_BSLASHcitetext] = ACTIONS(5193), + [anon_sym_BSLASHparencite] = ACTIONS(5193), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHParencite] = ACTIONS(5193), + [anon_sym_BSLASHfootcite] = ACTIONS(5193), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5193), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5193), + [anon_sym_BSLASHtextcite] = ACTIONS(5193), + [anon_sym_BSLASHTextcite] = ACTIONS(5193), + [anon_sym_BSLASHsmartcite] = ACTIONS(5193), + [anon_sym_BSLASHSmartcite] = ACTIONS(5193), + [anon_sym_BSLASHsupercite] = ACTIONS(5193), + [anon_sym_BSLASHautocite] = ACTIONS(5193), + [anon_sym_BSLASHAutocite] = ACTIONS(5193), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5191), + [anon_sym_BSLASHvolcite] = ACTIONS(5193), + [anon_sym_BSLASHVolcite] = ACTIONS(5193), + [anon_sym_BSLASHpvolcite] = ACTIONS(5193), + [anon_sym_BSLASHPvolcite] = ACTIONS(5193), + [anon_sym_BSLASHfvolcite] = ACTIONS(5193), + [anon_sym_BSLASHftvolcite] = ACTIONS(5193), + [anon_sym_BSLASHsvolcite] = ACTIONS(5193), + [anon_sym_BSLASHSvolcite] = ACTIONS(5193), + [anon_sym_BSLASHtvolcite] = ACTIONS(5193), + [anon_sym_BSLASHTvolcite] = ACTIONS(5193), + [anon_sym_BSLASHavolcite] = ACTIONS(5193), + [anon_sym_BSLASHAvolcite] = ACTIONS(5193), + [anon_sym_BSLASHnotecite] = ACTIONS(5193), + [anon_sym_BSLASHNotecite] = ACTIONS(5193), + [anon_sym_BSLASHpnotecite] = ACTIONS(5193), + [anon_sym_BSLASHPnotecite] = ACTIONS(5193), + [anon_sym_BSLASHfnotecite] = ACTIONS(5193), + [anon_sym_BSLASHlabel] = ACTIONS(5193), + [anon_sym_BSLASHref] = ACTIONS(5193), + [anon_sym_BSLASHeqref] = ACTIONS(5193), + [anon_sym_BSLASHvref] = ACTIONS(5193), + [anon_sym_BSLASHVref] = ACTIONS(5193), + [anon_sym_BSLASHautoref] = ACTIONS(5193), + [anon_sym_BSLASHpageref] = ACTIONS(5193), + [anon_sym_BSLASHcref] = ACTIONS(5193), + [anon_sym_BSLASHCref] = ACTIONS(5193), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnameCref] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5193), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5193), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5193), + [anon_sym_BSLASHlabelcref] = ACTIONS(5193), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange] = ACTIONS(5193), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHCrefrange] = ACTIONS(5193), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5191), + [anon_sym_BSLASHnewlabel] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand] = ACTIONS(5193), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5193), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5193), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5191), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5193), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5191), + [anon_sym_BSLASHdef] = ACTIONS(5193), + [anon_sym_BSLASHlet] = ACTIONS(5193), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5193), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5193), + [anon_sym_BSLASHgls] = ACTIONS(5193), + [anon_sym_BSLASHGls] = ACTIONS(5193), + [anon_sym_BSLASHGLS] = ACTIONS(5193), + [anon_sym_BSLASHglspl] = ACTIONS(5193), + [anon_sym_BSLASHGlspl] = ACTIONS(5193), + [anon_sym_BSLASHGLSpl] = ACTIONS(5193), + [anon_sym_BSLASHglsdisp] = ACTIONS(5193), + [anon_sym_BSLASHglslink] = ACTIONS(5193), + [anon_sym_BSLASHglstext] = ACTIONS(5193), + [anon_sym_BSLASHGlstext] = ACTIONS(5193), + [anon_sym_BSLASHGLStext] = ACTIONS(5193), + [anon_sym_BSLASHglsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5193), + [anon_sym_BSLASHglsplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSplural] = ACTIONS(5193), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5193), + [anon_sym_BSLASHglsname] = ACTIONS(5193), + [anon_sym_BSLASHGlsname] = ACTIONS(5193), + [anon_sym_BSLASHGLSname] = ACTIONS(5193), + [anon_sym_BSLASHglssymbol] = ACTIONS(5193), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5193), + [anon_sym_BSLASHglsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5193), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5193), + [anon_sym_BSLASHglsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5193), + [anon_sym_BSLASHglsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5193), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5193), + [anon_sym_BSLASHglsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5193), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5193), + [anon_sym_BSLASHglsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5193), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5193), + [anon_sym_BSLASHnewacronym] = ACTIONS(5193), + [anon_sym_BSLASHacrshort] = ACTIONS(5193), + [anon_sym_BSLASHAcrshort] = ACTIONS(5193), + [anon_sym_BSLASHACRshort] = ACTIONS(5193), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5193), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5193), + [anon_sym_BSLASHacrlong] = ACTIONS(5193), + [anon_sym_BSLASHAcrlong] = ACTIONS(5193), + [anon_sym_BSLASHACRlong] = ACTIONS(5193), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5193), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5193), + [anon_sym_BSLASHacrfull] = ACTIONS(5193), + [anon_sym_BSLASHAcrfull] = ACTIONS(5193), + [anon_sym_BSLASHACRfull] = ACTIONS(5193), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5193), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5193), + [anon_sym_BSLASHacs] = ACTIONS(5193), + [anon_sym_BSLASHAcs] = ACTIONS(5193), + [anon_sym_BSLASHacsp] = ACTIONS(5193), + [anon_sym_BSLASHAcsp] = ACTIONS(5193), + [anon_sym_BSLASHacl] = ACTIONS(5193), + [anon_sym_BSLASHAcl] = ACTIONS(5193), + [anon_sym_BSLASHaclp] = ACTIONS(5193), + [anon_sym_BSLASHAclp] = ACTIONS(5193), + [anon_sym_BSLASHacf] = ACTIONS(5193), + [anon_sym_BSLASHAcf] = ACTIONS(5193), + [anon_sym_BSLASHacfp] = ACTIONS(5193), + [anon_sym_BSLASHAcfp] = ACTIONS(5193), + [anon_sym_BSLASHac] = ACTIONS(5193), + [anon_sym_BSLASHAc] = ACTIONS(5193), + [anon_sym_BSLASHacp] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5193), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5193), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5193), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5193), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5193), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5193), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5193), + [anon_sym_BSLASHcolor] = ACTIONS(5193), + [anon_sym_BSLASHcolorbox] = ACTIONS(5193), + [anon_sym_BSLASHtextcolor] = ACTIONS(5193), + [anon_sym_BSLASHpagecolor] = ACTIONS(5193), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5193), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5193), }, [1556] = { - [sym_command_name] = ACTIONS(5349), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5349), - [anon_sym_RBRACK] = ACTIONS(5347), - [anon_sym_COMMA] = ACTIONS(5347), - [anon_sym_EQ] = ACTIONS(5347), - [anon_sym_RBRACE] = ACTIONS(5347), - [sym_word] = ACTIONS(5349), - [sym_placeholder] = ACTIONS(5347), - [anon_sym_PLUS] = ACTIONS(5349), - [anon_sym_DASH] = ACTIONS(5349), - [anon_sym_STAR] = ACTIONS(5349), - [anon_sym_SLASH] = ACTIONS(5349), - [anon_sym_CARET] = ACTIONS(5349), - [anon_sym__] = ACTIONS(5349), - [anon_sym_LT] = ACTIONS(5349), - [anon_sym_GT] = ACTIONS(5349), - [anon_sym_BANG] = ACTIONS(5349), - [anon_sym_PIPE] = ACTIONS(5349), - [anon_sym_COLON] = ACTIONS(5349), - [anon_sym_SQUOTE] = ACTIONS(5349), - [anon_sym_BSLASHusepackage] = ACTIONS(5349), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5349), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5349), - [anon_sym_BSLASHinclude] = ACTIONS(5349), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5349), - [anon_sym_BSLASHinput] = ACTIONS(5349), - [anon_sym_BSLASHsubfile] = ACTIONS(5349), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5349), - [anon_sym_BSLASHbibliography] = ACTIONS(5349), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5349), - [anon_sym_BSLASHincludesvg] = ACTIONS(5349), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5349), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5349), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5349), - [anon_sym_BSLASHimport] = ACTIONS(5349), - [anon_sym_BSLASHsubimport] = ACTIONS(5349), - [anon_sym_BSLASHinputfrom] = ACTIONS(5349), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5349), - [anon_sym_BSLASHincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5349), - [anon_sym_BSLASHcaption] = ACTIONS(5349), - [anon_sym_BSLASHcite] = ACTIONS(5349), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCite] = ACTIONS(5349), - [anon_sym_BSLASHnocite] = ACTIONS(5349), - [anon_sym_BSLASHcitet] = ACTIONS(5349), - [anon_sym_BSLASHcitep] = ACTIONS(5349), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteauthor] = ACTIONS(5349), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5349), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitetitle] = ACTIONS(5349), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteyear] = ACTIONS(5349), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5347), - [anon_sym_BSLASHcitedate] = ACTIONS(5349), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5347), - [anon_sym_BSLASHciteurl] = ACTIONS(5349), - [anon_sym_BSLASHfullcite] = ACTIONS(5349), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5349), - [anon_sym_BSLASHcitealt] = ACTIONS(5349), - [anon_sym_BSLASHcitealp] = ACTIONS(5349), - [anon_sym_BSLASHcitetext] = ACTIONS(5349), - [anon_sym_BSLASHparencite] = ACTIONS(5349), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHParencite] = ACTIONS(5349), - [anon_sym_BSLASHfootcite] = ACTIONS(5349), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5349), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5349), - [anon_sym_BSLASHtextcite] = ACTIONS(5349), - [anon_sym_BSLASHTextcite] = ACTIONS(5349), - [anon_sym_BSLASHsmartcite] = ACTIONS(5349), - [anon_sym_BSLASHSmartcite] = ACTIONS(5349), - [anon_sym_BSLASHsupercite] = ACTIONS(5349), - [anon_sym_BSLASHautocite] = ACTIONS(5349), - [anon_sym_BSLASHAutocite] = ACTIONS(5349), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5347), - [anon_sym_BSLASHvolcite] = ACTIONS(5349), - [anon_sym_BSLASHVolcite] = ACTIONS(5349), - [anon_sym_BSLASHpvolcite] = ACTIONS(5349), - [anon_sym_BSLASHPvolcite] = ACTIONS(5349), - [anon_sym_BSLASHfvolcite] = ACTIONS(5349), - [anon_sym_BSLASHftvolcite] = ACTIONS(5349), - [anon_sym_BSLASHsvolcite] = ACTIONS(5349), - [anon_sym_BSLASHSvolcite] = ACTIONS(5349), - [anon_sym_BSLASHtvolcite] = ACTIONS(5349), - [anon_sym_BSLASHTvolcite] = ACTIONS(5349), - [anon_sym_BSLASHavolcite] = ACTIONS(5349), - [anon_sym_BSLASHAvolcite] = ACTIONS(5349), - [anon_sym_BSLASHnotecite] = ACTIONS(5349), - [anon_sym_BSLASHNotecite] = ACTIONS(5349), - [anon_sym_BSLASHpnotecite] = ACTIONS(5349), - [anon_sym_BSLASHPnotecite] = ACTIONS(5349), - [anon_sym_BSLASHfnotecite] = ACTIONS(5349), - [anon_sym_BSLASHlabel] = ACTIONS(5349), - [anon_sym_BSLASHref] = ACTIONS(5349), - [anon_sym_BSLASHeqref] = ACTIONS(5349), - [anon_sym_BSLASHvref] = ACTIONS(5349), - [anon_sym_BSLASHVref] = ACTIONS(5349), - [anon_sym_BSLASHautoref] = ACTIONS(5349), - [anon_sym_BSLASHpageref] = ACTIONS(5349), - [anon_sym_BSLASHcref] = ACTIONS(5349), - [anon_sym_BSLASHCref] = ACTIONS(5349), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnameCref] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5349), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5349), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5349), - [anon_sym_BSLASHlabelcref] = ACTIONS(5349), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange] = ACTIONS(5349), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHCrefrange] = ACTIONS(5349), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5347), - [anon_sym_BSLASHnewlabel] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand] = ACTIONS(5349), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5349), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5349), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5347), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5349), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5347), - [anon_sym_BSLASHdef] = ACTIONS(5349), - [anon_sym_BSLASHlet] = ACTIONS(5349), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5349), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5349), - [anon_sym_BSLASHgls] = ACTIONS(5349), - [anon_sym_BSLASHGls] = ACTIONS(5349), - [anon_sym_BSLASHGLS] = ACTIONS(5349), - [anon_sym_BSLASHglspl] = ACTIONS(5349), - [anon_sym_BSLASHGlspl] = ACTIONS(5349), - [anon_sym_BSLASHGLSpl] = ACTIONS(5349), - [anon_sym_BSLASHglsdisp] = ACTIONS(5349), - [anon_sym_BSLASHglslink] = ACTIONS(5349), - [anon_sym_BSLASHglstext] = ACTIONS(5349), - [anon_sym_BSLASHGlstext] = ACTIONS(5349), - [anon_sym_BSLASHGLStext] = ACTIONS(5349), - [anon_sym_BSLASHglsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5349), - [anon_sym_BSLASHglsplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSplural] = ACTIONS(5349), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5349), - [anon_sym_BSLASHglsname] = ACTIONS(5349), - [anon_sym_BSLASHGlsname] = ACTIONS(5349), - [anon_sym_BSLASHGLSname] = ACTIONS(5349), - [anon_sym_BSLASHglssymbol] = ACTIONS(5349), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5349), - [anon_sym_BSLASHglsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5349), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5349), - [anon_sym_BSLASHglsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5349), - [anon_sym_BSLASHglsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5349), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5349), - [anon_sym_BSLASHglsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5349), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5349), - [anon_sym_BSLASHglsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5349), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5349), - [anon_sym_BSLASHnewacronym] = ACTIONS(5349), - [anon_sym_BSLASHacrshort] = ACTIONS(5349), - [anon_sym_BSLASHAcrshort] = ACTIONS(5349), - [anon_sym_BSLASHACRshort] = ACTIONS(5349), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5349), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5349), - [anon_sym_BSLASHacrlong] = ACTIONS(5349), - [anon_sym_BSLASHAcrlong] = ACTIONS(5349), - [anon_sym_BSLASHACRlong] = ACTIONS(5349), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5349), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5349), - [anon_sym_BSLASHacrfull] = ACTIONS(5349), - [anon_sym_BSLASHAcrfull] = ACTIONS(5349), - [anon_sym_BSLASHACRfull] = ACTIONS(5349), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5349), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5349), - [anon_sym_BSLASHacs] = ACTIONS(5349), - [anon_sym_BSLASHAcs] = ACTIONS(5349), - [anon_sym_BSLASHacsp] = ACTIONS(5349), - [anon_sym_BSLASHAcsp] = ACTIONS(5349), - [anon_sym_BSLASHacl] = ACTIONS(5349), - [anon_sym_BSLASHAcl] = ACTIONS(5349), - [anon_sym_BSLASHaclp] = ACTIONS(5349), - [anon_sym_BSLASHAclp] = ACTIONS(5349), - [anon_sym_BSLASHacf] = ACTIONS(5349), - [anon_sym_BSLASHAcf] = ACTIONS(5349), - [anon_sym_BSLASHacfp] = ACTIONS(5349), - [anon_sym_BSLASHAcfp] = ACTIONS(5349), - [anon_sym_BSLASHac] = ACTIONS(5349), - [anon_sym_BSLASHAc] = ACTIONS(5349), - [anon_sym_BSLASHacp] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5349), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5349), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5349), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5349), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5349), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5349), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5349), - [anon_sym_BSLASHcolor] = ACTIONS(5349), - [anon_sym_BSLASHcolorbox] = ACTIONS(5349), - [anon_sym_BSLASHtextcolor] = ACTIONS(5349), - [anon_sym_BSLASHpagecolor] = ACTIONS(5349), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5349), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5349), + [sym_command_name] = ACTIONS(4887), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(4887), + [anon_sym_RBRACK] = ACTIONS(4885), + [anon_sym_COMMA] = ACTIONS(4885), + [anon_sym_EQ] = ACTIONS(4885), + [anon_sym_RBRACE] = ACTIONS(4885), + [sym_word] = ACTIONS(4887), + [sym_placeholder] = ACTIONS(4885), + [anon_sym_PLUS] = ACTIONS(4887), + [anon_sym_DASH] = ACTIONS(4887), + [anon_sym_STAR] = ACTIONS(4887), + [anon_sym_SLASH] = ACTIONS(4887), + [anon_sym_CARET] = ACTIONS(4887), + [anon_sym__] = ACTIONS(4887), + [anon_sym_LT] = ACTIONS(4887), + [anon_sym_GT] = ACTIONS(4887), + [anon_sym_BANG] = ACTIONS(4887), + [anon_sym_PIPE] = ACTIONS(4887), + [anon_sym_COLON] = ACTIONS(4887), + [anon_sym_SQUOTE] = ACTIONS(4887), + [anon_sym_BSLASHusepackage] = ACTIONS(4887), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4887), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4887), + [anon_sym_BSLASHinclude] = ACTIONS(4887), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4887), + [anon_sym_BSLASHinput] = ACTIONS(4887), + [anon_sym_BSLASHsubfile] = ACTIONS(4887), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4887), + [anon_sym_BSLASHbibliography] = ACTIONS(4887), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4887), + [anon_sym_BSLASHincludesvg] = ACTIONS(4887), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4887), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4887), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4887), + [anon_sym_BSLASHimport] = ACTIONS(4887), + [anon_sym_BSLASHsubimport] = ACTIONS(4887), + [anon_sym_BSLASHinputfrom] = ACTIONS(4887), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4887), + [anon_sym_BSLASHincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4887), + [anon_sym_BSLASHcaption] = ACTIONS(4887), + [anon_sym_BSLASHcite] = ACTIONS(4887), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCite] = ACTIONS(4887), + [anon_sym_BSLASHnocite] = ACTIONS(4887), + [anon_sym_BSLASHcitet] = ACTIONS(4887), + [anon_sym_BSLASHcitep] = ACTIONS(4887), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteauthor] = ACTIONS(4887), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4887), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitetitle] = ACTIONS(4887), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteyear] = ACTIONS(4887), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4885), + [anon_sym_BSLASHcitedate] = ACTIONS(4887), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4885), + [anon_sym_BSLASHciteurl] = ACTIONS(4887), + [anon_sym_BSLASHfullcite] = ACTIONS(4887), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4887), + [anon_sym_BSLASHcitealt] = ACTIONS(4887), + [anon_sym_BSLASHcitealp] = ACTIONS(4887), + [anon_sym_BSLASHcitetext] = ACTIONS(4887), + [anon_sym_BSLASHparencite] = ACTIONS(4887), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHParencite] = ACTIONS(4887), + [anon_sym_BSLASHfootcite] = ACTIONS(4887), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4887), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4887), + [anon_sym_BSLASHtextcite] = ACTIONS(4887), + [anon_sym_BSLASHTextcite] = ACTIONS(4887), + [anon_sym_BSLASHsmartcite] = ACTIONS(4887), + [anon_sym_BSLASHSmartcite] = ACTIONS(4887), + [anon_sym_BSLASHsupercite] = ACTIONS(4887), + [anon_sym_BSLASHautocite] = ACTIONS(4887), + [anon_sym_BSLASHAutocite] = ACTIONS(4887), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4885), + [anon_sym_BSLASHvolcite] = ACTIONS(4887), + [anon_sym_BSLASHVolcite] = ACTIONS(4887), + [anon_sym_BSLASHpvolcite] = ACTIONS(4887), + [anon_sym_BSLASHPvolcite] = ACTIONS(4887), + [anon_sym_BSLASHfvolcite] = ACTIONS(4887), + [anon_sym_BSLASHftvolcite] = ACTIONS(4887), + [anon_sym_BSLASHsvolcite] = ACTIONS(4887), + [anon_sym_BSLASHSvolcite] = ACTIONS(4887), + [anon_sym_BSLASHtvolcite] = ACTIONS(4887), + [anon_sym_BSLASHTvolcite] = ACTIONS(4887), + [anon_sym_BSLASHavolcite] = ACTIONS(4887), + [anon_sym_BSLASHAvolcite] = ACTIONS(4887), + [anon_sym_BSLASHnotecite] = ACTIONS(4887), + [anon_sym_BSLASHNotecite] = ACTIONS(4887), + [anon_sym_BSLASHpnotecite] = ACTIONS(4887), + [anon_sym_BSLASHPnotecite] = ACTIONS(4887), + [anon_sym_BSLASHfnotecite] = ACTIONS(4887), + [anon_sym_BSLASHlabel] = ACTIONS(4887), + [anon_sym_BSLASHref] = ACTIONS(4887), + [anon_sym_BSLASHeqref] = ACTIONS(4887), + [anon_sym_BSLASHvref] = ACTIONS(4887), + [anon_sym_BSLASHVref] = ACTIONS(4887), + [anon_sym_BSLASHautoref] = ACTIONS(4887), + [anon_sym_BSLASHpageref] = ACTIONS(4887), + [anon_sym_BSLASHcref] = ACTIONS(4887), + [anon_sym_BSLASHCref] = ACTIONS(4887), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnameCref] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4887), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4887), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4887), + [anon_sym_BSLASHlabelcref] = ACTIONS(4887), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange] = ACTIONS(4887), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHCrefrange] = ACTIONS(4887), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4885), + [anon_sym_BSLASHnewlabel] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand] = ACTIONS(4887), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4887), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4887), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4885), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4887), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4885), + [anon_sym_BSLASHdef] = ACTIONS(4887), + [anon_sym_BSLASHlet] = ACTIONS(4887), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4887), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4887), + [anon_sym_BSLASHgls] = ACTIONS(4887), + [anon_sym_BSLASHGls] = ACTIONS(4887), + [anon_sym_BSLASHGLS] = ACTIONS(4887), + [anon_sym_BSLASHglspl] = ACTIONS(4887), + [anon_sym_BSLASHGlspl] = ACTIONS(4887), + [anon_sym_BSLASHGLSpl] = ACTIONS(4887), + [anon_sym_BSLASHglsdisp] = ACTIONS(4887), + [anon_sym_BSLASHglslink] = ACTIONS(4887), + [anon_sym_BSLASHglstext] = ACTIONS(4887), + [anon_sym_BSLASHGlstext] = ACTIONS(4887), + [anon_sym_BSLASHGLStext] = ACTIONS(4887), + [anon_sym_BSLASHglsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4887), + [anon_sym_BSLASHglsplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSplural] = ACTIONS(4887), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4887), + [anon_sym_BSLASHglsname] = ACTIONS(4887), + [anon_sym_BSLASHGlsname] = ACTIONS(4887), + [anon_sym_BSLASHGLSname] = ACTIONS(4887), + [anon_sym_BSLASHglssymbol] = ACTIONS(4887), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4887), + [anon_sym_BSLASHglsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4887), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4887), + [anon_sym_BSLASHglsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4887), + [anon_sym_BSLASHglsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4887), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4887), + [anon_sym_BSLASHglsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4887), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4887), + [anon_sym_BSLASHglsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4887), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4887), + [anon_sym_BSLASHnewacronym] = ACTIONS(4887), + [anon_sym_BSLASHacrshort] = ACTIONS(4887), + [anon_sym_BSLASHAcrshort] = ACTIONS(4887), + [anon_sym_BSLASHACRshort] = ACTIONS(4887), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4887), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4887), + [anon_sym_BSLASHacrlong] = ACTIONS(4887), + [anon_sym_BSLASHAcrlong] = ACTIONS(4887), + [anon_sym_BSLASHACRlong] = ACTIONS(4887), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4887), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4887), + [anon_sym_BSLASHacrfull] = ACTIONS(4887), + [anon_sym_BSLASHAcrfull] = ACTIONS(4887), + [anon_sym_BSLASHACRfull] = ACTIONS(4887), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4887), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4887), + [anon_sym_BSLASHacs] = ACTIONS(4887), + [anon_sym_BSLASHAcs] = ACTIONS(4887), + [anon_sym_BSLASHacsp] = ACTIONS(4887), + [anon_sym_BSLASHAcsp] = ACTIONS(4887), + [anon_sym_BSLASHacl] = ACTIONS(4887), + [anon_sym_BSLASHAcl] = ACTIONS(4887), + [anon_sym_BSLASHaclp] = ACTIONS(4887), + [anon_sym_BSLASHAclp] = ACTIONS(4887), + [anon_sym_BSLASHacf] = ACTIONS(4887), + [anon_sym_BSLASHAcf] = ACTIONS(4887), + [anon_sym_BSLASHacfp] = ACTIONS(4887), + [anon_sym_BSLASHAcfp] = ACTIONS(4887), + [anon_sym_BSLASHac] = ACTIONS(4887), + [anon_sym_BSLASHAc] = ACTIONS(4887), + [anon_sym_BSLASHacp] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4887), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4887), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4887), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4887), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4887), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4887), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4887), + [anon_sym_BSLASHcolor] = ACTIONS(4887), + [anon_sym_BSLASHcolorbox] = ACTIONS(4887), + [anon_sym_BSLASHtextcolor] = ACTIONS(4887), + [anon_sym_BSLASHpagecolor] = ACTIONS(4887), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4887), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4887), }, [1557] = { - [sym_command_name] = ACTIONS(5345), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5345), - [anon_sym_RBRACK] = ACTIONS(5343), - [anon_sym_COMMA] = ACTIONS(5343), - [anon_sym_EQ] = ACTIONS(5343), - [anon_sym_RBRACE] = ACTIONS(5343), - [sym_word] = ACTIONS(5345), - [sym_placeholder] = ACTIONS(5343), - [anon_sym_PLUS] = ACTIONS(5345), - [anon_sym_DASH] = ACTIONS(5345), - [anon_sym_STAR] = ACTIONS(5345), - [anon_sym_SLASH] = ACTIONS(5345), - [anon_sym_CARET] = ACTIONS(5345), - [anon_sym__] = ACTIONS(5345), - [anon_sym_LT] = ACTIONS(5345), - [anon_sym_GT] = ACTIONS(5345), - [anon_sym_BANG] = ACTIONS(5345), - [anon_sym_PIPE] = ACTIONS(5345), - [anon_sym_COLON] = ACTIONS(5345), - [anon_sym_SQUOTE] = ACTIONS(5345), - [anon_sym_BSLASHusepackage] = ACTIONS(5345), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5345), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5345), - [anon_sym_BSLASHinclude] = ACTIONS(5345), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5345), - [anon_sym_BSLASHinput] = ACTIONS(5345), - [anon_sym_BSLASHsubfile] = ACTIONS(5345), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5345), - [anon_sym_BSLASHbibliography] = ACTIONS(5345), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5345), - [anon_sym_BSLASHincludesvg] = ACTIONS(5345), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5345), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5345), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5345), - [anon_sym_BSLASHimport] = ACTIONS(5345), - [anon_sym_BSLASHsubimport] = ACTIONS(5345), - [anon_sym_BSLASHinputfrom] = ACTIONS(5345), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5345), - [anon_sym_BSLASHincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5345), - [anon_sym_BSLASHcaption] = ACTIONS(5345), - [anon_sym_BSLASHcite] = ACTIONS(5345), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCite] = ACTIONS(5345), - [anon_sym_BSLASHnocite] = ACTIONS(5345), - [anon_sym_BSLASHcitet] = ACTIONS(5345), - [anon_sym_BSLASHcitep] = ACTIONS(5345), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteauthor] = ACTIONS(5345), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5345), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitetitle] = ACTIONS(5345), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteyear] = ACTIONS(5345), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5343), - [anon_sym_BSLASHcitedate] = ACTIONS(5345), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5343), - [anon_sym_BSLASHciteurl] = ACTIONS(5345), - [anon_sym_BSLASHfullcite] = ACTIONS(5345), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5345), - [anon_sym_BSLASHcitealt] = ACTIONS(5345), - [anon_sym_BSLASHcitealp] = ACTIONS(5345), - [anon_sym_BSLASHcitetext] = ACTIONS(5345), - [anon_sym_BSLASHparencite] = ACTIONS(5345), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHParencite] = ACTIONS(5345), - [anon_sym_BSLASHfootcite] = ACTIONS(5345), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5345), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5345), - [anon_sym_BSLASHtextcite] = ACTIONS(5345), - [anon_sym_BSLASHTextcite] = ACTIONS(5345), - [anon_sym_BSLASHsmartcite] = ACTIONS(5345), - [anon_sym_BSLASHSmartcite] = ACTIONS(5345), - [anon_sym_BSLASHsupercite] = ACTIONS(5345), - [anon_sym_BSLASHautocite] = ACTIONS(5345), - [anon_sym_BSLASHAutocite] = ACTIONS(5345), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5343), - [anon_sym_BSLASHvolcite] = ACTIONS(5345), - [anon_sym_BSLASHVolcite] = ACTIONS(5345), - [anon_sym_BSLASHpvolcite] = ACTIONS(5345), - [anon_sym_BSLASHPvolcite] = ACTIONS(5345), - [anon_sym_BSLASHfvolcite] = ACTIONS(5345), - [anon_sym_BSLASHftvolcite] = ACTIONS(5345), - [anon_sym_BSLASHsvolcite] = ACTIONS(5345), - [anon_sym_BSLASHSvolcite] = ACTIONS(5345), - [anon_sym_BSLASHtvolcite] = ACTIONS(5345), - [anon_sym_BSLASHTvolcite] = ACTIONS(5345), - [anon_sym_BSLASHavolcite] = ACTIONS(5345), - [anon_sym_BSLASHAvolcite] = ACTIONS(5345), - [anon_sym_BSLASHnotecite] = ACTIONS(5345), - [anon_sym_BSLASHNotecite] = ACTIONS(5345), - [anon_sym_BSLASHpnotecite] = ACTIONS(5345), - [anon_sym_BSLASHPnotecite] = ACTIONS(5345), - [anon_sym_BSLASHfnotecite] = ACTIONS(5345), - [anon_sym_BSLASHlabel] = ACTIONS(5345), - [anon_sym_BSLASHref] = ACTIONS(5345), - [anon_sym_BSLASHeqref] = ACTIONS(5345), - [anon_sym_BSLASHvref] = ACTIONS(5345), - [anon_sym_BSLASHVref] = ACTIONS(5345), - [anon_sym_BSLASHautoref] = ACTIONS(5345), - [anon_sym_BSLASHpageref] = ACTIONS(5345), - [anon_sym_BSLASHcref] = ACTIONS(5345), - [anon_sym_BSLASHCref] = ACTIONS(5345), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnameCref] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5345), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5345), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5345), - [anon_sym_BSLASHlabelcref] = ACTIONS(5345), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange] = ACTIONS(5345), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHCrefrange] = ACTIONS(5345), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5343), - [anon_sym_BSLASHnewlabel] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand] = ACTIONS(5345), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5345), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5345), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5343), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5345), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5343), - [anon_sym_BSLASHdef] = ACTIONS(5345), - [anon_sym_BSLASHlet] = ACTIONS(5345), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5345), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5345), - [anon_sym_BSLASHgls] = ACTIONS(5345), - [anon_sym_BSLASHGls] = ACTIONS(5345), - [anon_sym_BSLASHGLS] = ACTIONS(5345), - [anon_sym_BSLASHglspl] = ACTIONS(5345), - [anon_sym_BSLASHGlspl] = ACTIONS(5345), - [anon_sym_BSLASHGLSpl] = ACTIONS(5345), - [anon_sym_BSLASHglsdisp] = ACTIONS(5345), - [anon_sym_BSLASHglslink] = ACTIONS(5345), - [anon_sym_BSLASHglstext] = ACTIONS(5345), - [anon_sym_BSLASHGlstext] = ACTIONS(5345), - [anon_sym_BSLASHGLStext] = ACTIONS(5345), - [anon_sym_BSLASHglsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5345), - [anon_sym_BSLASHglsplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSplural] = ACTIONS(5345), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5345), - [anon_sym_BSLASHglsname] = ACTIONS(5345), - [anon_sym_BSLASHGlsname] = ACTIONS(5345), - [anon_sym_BSLASHGLSname] = ACTIONS(5345), - [anon_sym_BSLASHglssymbol] = ACTIONS(5345), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5345), - [anon_sym_BSLASHglsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5345), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5345), - [anon_sym_BSLASHglsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5345), - [anon_sym_BSLASHglsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5345), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5345), - [anon_sym_BSLASHglsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5345), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5345), - [anon_sym_BSLASHglsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5345), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5345), - [anon_sym_BSLASHnewacronym] = ACTIONS(5345), - [anon_sym_BSLASHacrshort] = ACTIONS(5345), - [anon_sym_BSLASHAcrshort] = ACTIONS(5345), - [anon_sym_BSLASHACRshort] = ACTIONS(5345), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5345), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5345), - [anon_sym_BSLASHacrlong] = ACTIONS(5345), - [anon_sym_BSLASHAcrlong] = ACTIONS(5345), - [anon_sym_BSLASHACRlong] = ACTIONS(5345), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5345), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5345), - [anon_sym_BSLASHacrfull] = ACTIONS(5345), - [anon_sym_BSLASHAcrfull] = ACTIONS(5345), - [anon_sym_BSLASHACRfull] = ACTIONS(5345), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5345), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5345), - [anon_sym_BSLASHacs] = ACTIONS(5345), - [anon_sym_BSLASHAcs] = ACTIONS(5345), - [anon_sym_BSLASHacsp] = ACTIONS(5345), - [anon_sym_BSLASHAcsp] = ACTIONS(5345), - [anon_sym_BSLASHacl] = ACTIONS(5345), - [anon_sym_BSLASHAcl] = ACTIONS(5345), - [anon_sym_BSLASHaclp] = ACTIONS(5345), - [anon_sym_BSLASHAclp] = ACTIONS(5345), - [anon_sym_BSLASHacf] = ACTIONS(5345), - [anon_sym_BSLASHAcf] = ACTIONS(5345), - [anon_sym_BSLASHacfp] = ACTIONS(5345), - [anon_sym_BSLASHAcfp] = ACTIONS(5345), - [anon_sym_BSLASHac] = ACTIONS(5345), - [anon_sym_BSLASHAc] = ACTIONS(5345), - [anon_sym_BSLASHacp] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5345), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5345), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5345), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5345), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5345), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5345), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5345), - [anon_sym_BSLASHcolor] = ACTIONS(5345), - [anon_sym_BSLASHcolorbox] = ACTIONS(5345), - [anon_sym_BSLASHtextcolor] = ACTIONS(5345), - [anon_sym_BSLASHpagecolor] = ACTIONS(5345), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5345), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5345), + [sym_command_name] = ACTIONS(5157), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5157), + [anon_sym_RBRACK] = ACTIONS(5155), + [anon_sym_COMMA] = ACTIONS(5155), + [anon_sym_EQ] = ACTIONS(5155), + [anon_sym_RBRACE] = ACTIONS(5155), + [sym_word] = ACTIONS(5157), + [sym_placeholder] = ACTIONS(5155), + [anon_sym_PLUS] = ACTIONS(5157), + [anon_sym_DASH] = ACTIONS(5157), + [anon_sym_STAR] = ACTIONS(5157), + [anon_sym_SLASH] = ACTIONS(5157), + [anon_sym_CARET] = ACTIONS(5157), + [anon_sym__] = ACTIONS(5157), + [anon_sym_LT] = ACTIONS(5157), + [anon_sym_GT] = ACTIONS(5157), + [anon_sym_BANG] = ACTIONS(5157), + [anon_sym_PIPE] = ACTIONS(5157), + [anon_sym_COLON] = ACTIONS(5157), + [anon_sym_SQUOTE] = ACTIONS(5157), + [anon_sym_BSLASHusepackage] = ACTIONS(5157), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5157), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5157), + [anon_sym_BSLASHinclude] = ACTIONS(5157), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5157), + [anon_sym_BSLASHinput] = ACTIONS(5157), + [anon_sym_BSLASHsubfile] = ACTIONS(5157), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5157), + [anon_sym_BSLASHbibliography] = ACTIONS(5157), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5157), + [anon_sym_BSLASHincludesvg] = ACTIONS(5157), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5157), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5157), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5157), + [anon_sym_BSLASHimport] = ACTIONS(5157), + [anon_sym_BSLASHsubimport] = ACTIONS(5157), + [anon_sym_BSLASHinputfrom] = ACTIONS(5157), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5157), + [anon_sym_BSLASHincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5157), + [anon_sym_BSLASHcaption] = ACTIONS(5157), + [anon_sym_BSLASHcite] = ACTIONS(5157), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCite] = ACTIONS(5157), + [anon_sym_BSLASHnocite] = ACTIONS(5157), + [anon_sym_BSLASHcitet] = ACTIONS(5157), + [anon_sym_BSLASHcitep] = ACTIONS(5157), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteauthor] = ACTIONS(5157), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5157), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitetitle] = ACTIONS(5157), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteyear] = ACTIONS(5157), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5155), + [anon_sym_BSLASHcitedate] = ACTIONS(5157), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5155), + [anon_sym_BSLASHciteurl] = ACTIONS(5157), + [anon_sym_BSLASHfullcite] = ACTIONS(5157), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5157), + [anon_sym_BSLASHcitealt] = ACTIONS(5157), + [anon_sym_BSLASHcitealp] = ACTIONS(5157), + [anon_sym_BSLASHcitetext] = ACTIONS(5157), + [anon_sym_BSLASHparencite] = ACTIONS(5157), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHParencite] = ACTIONS(5157), + [anon_sym_BSLASHfootcite] = ACTIONS(5157), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5157), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5157), + [anon_sym_BSLASHtextcite] = ACTIONS(5157), + [anon_sym_BSLASHTextcite] = ACTIONS(5157), + [anon_sym_BSLASHsmartcite] = ACTIONS(5157), + [anon_sym_BSLASHSmartcite] = ACTIONS(5157), + [anon_sym_BSLASHsupercite] = ACTIONS(5157), + [anon_sym_BSLASHautocite] = ACTIONS(5157), + [anon_sym_BSLASHAutocite] = ACTIONS(5157), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5155), + [anon_sym_BSLASHvolcite] = ACTIONS(5157), + [anon_sym_BSLASHVolcite] = ACTIONS(5157), + [anon_sym_BSLASHpvolcite] = ACTIONS(5157), + [anon_sym_BSLASHPvolcite] = ACTIONS(5157), + [anon_sym_BSLASHfvolcite] = ACTIONS(5157), + [anon_sym_BSLASHftvolcite] = ACTIONS(5157), + [anon_sym_BSLASHsvolcite] = ACTIONS(5157), + [anon_sym_BSLASHSvolcite] = ACTIONS(5157), + [anon_sym_BSLASHtvolcite] = ACTIONS(5157), + [anon_sym_BSLASHTvolcite] = ACTIONS(5157), + [anon_sym_BSLASHavolcite] = ACTIONS(5157), + [anon_sym_BSLASHAvolcite] = ACTIONS(5157), + [anon_sym_BSLASHnotecite] = ACTIONS(5157), + [anon_sym_BSLASHNotecite] = ACTIONS(5157), + [anon_sym_BSLASHpnotecite] = ACTIONS(5157), + [anon_sym_BSLASHPnotecite] = ACTIONS(5157), + [anon_sym_BSLASHfnotecite] = ACTIONS(5157), + [anon_sym_BSLASHlabel] = ACTIONS(5157), + [anon_sym_BSLASHref] = ACTIONS(5157), + [anon_sym_BSLASHeqref] = ACTIONS(5157), + [anon_sym_BSLASHvref] = ACTIONS(5157), + [anon_sym_BSLASHVref] = ACTIONS(5157), + [anon_sym_BSLASHautoref] = ACTIONS(5157), + [anon_sym_BSLASHpageref] = ACTIONS(5157), + [anon_sym_BSLASHcref] = ACTIONS(5157), + [anon_sym_BSLASHCref] = ACTIONS(5157), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnameCref] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5157), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5157), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5157), + [anon_sym_BSLASHlabelcref] = ACTIONS(5157), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange] = ACTIONS(5157), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHCrefrange] = ACTIONS(5157), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5155), + [anon_sym_BSLASHnewlabel] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand] = ACTIONS(5157), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5157), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5157), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5155), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5157), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5155), + [anon_sym_BSLASHdef] = ACTIONS(5157), + [anon_sym_BSLASHlet] = ACTIONS(5157), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5157), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5157), + [anon_sym_BSLASHgls] = ACTIONS(5157), + [anon_sym_BSLASHGls] = ACTIONS(5157), + [anon_sym_BSLASHGLS] = ACTIONS(5157), + [anon_sym_BSLASHglspl] = ACTIONS(5157), + [anon_sym_BSLASHGlspl] = ACTIONS(5157), + [anon_sym_BSLASHGLSpl] = ACTIONS(5157), + [anon_sym_BSLASHglsdisp] = ACTIONS(5157), + [anon_sym_BSLASHglslink] = ACTIONS(5157), + [anon_sym_BSLASHglstext] = ACTIONS(5157), + [anon_sym_BSLASHGlstext] = ACTIONS(5157), + [anon_sym_BSLASHGLStext] = ACTIONS(5157), + [anon_sym_BSLASHglsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5157), + [anon_sym_BSLASHglsplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSplural] = ACTIONS(5157), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5157), + [anon_sym_BSLASHglsname] = ACTIONS(5157), + [anon_sym_BSLASHGlsname] = ACTIONS(5157), + [anon_sym_BSLASHGLSname] = ACTIONS(5157), + [anon_sym_BSLASHglssymbol] = ACTIONS(5157), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5157), + [anon_sym_BSLASHglsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5157), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5157), + [anon_sym_BSLASHglsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5157), + [anon_sym_BSLASHglsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5157), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5157), + [anon_sym_BSLASHglsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5157), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5157), + [anon_sym_BSLASHglsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5157), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5157), + [anon_sym_BSLASHnewacronym] = ACTIONS(5157), + [anon_sym_BSLASHacrshort] = ACTIONS(5157), + [anon_sym_BSLASHAcrshort] = ACTIONS(5157), + [anon_sym_BSLASHACRshort] = ACTIONS(5157), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5157), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5157), + [anon_sym_BSLASHacrlong] = ACTIONS(5157), + [anon_sym_BSLASHAcrlong] = ACTIONS(5157), + [anon_sym_BSLASHACRlong] = ACTIONS(5157), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5157), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5157), + [anon_sym_BSLASHacrfull] = ACTIONS(5157), + [anon_sym_BSLASHAcrfull] = ACTIONS(5157), + [anon_sym_BSLASHACRfull] = ACTIONS(5157), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5157), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5157), + [anon_sym_BSLASHacs] = ACTIONS(5157), + [anon_sym_BSLASHAcs] = ACTIONS(5157), + [anon_sym_BSLASHacsp] = ACTIONS(5157), + [anon_sym_BSLASHAcsp] = ACTIONS(5157), + [anon_sym_BSLASHacl] = ACTIONS(5157), + [anon_sym_BSLASHAcl] = ACTIONS(5157), + [anon_sym_BSLASHaclp] = ACTIONS(5157), + [anon_sym_BSLASHAclp] = ACTIONS(5157), + [anon_sym_BSLASHacf] = ACTIONS(5157), + [anon_sym_BSLASHAcf] = ACTIONS(5157), + [anon_sym_BSLASHacfp] = ACTIONS(5157), + [anon_sym_BSLASHAcfp] = ACTIONS(5157), + [anon_sym_BSLASHac] = ACTIONS(5157), + [anon_sym_BSLASHAc] = ACTIONS(5157), + [anon_sym_BSLASHacp] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5157), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5157), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5157), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5157), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5157), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5157), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5157), + [anon_sym_BSLASHcolor] = ACTIONS(5157), + [anon_sym_BSLASHcolorbox] = ACTIONS(5157), + [anon_sym_BSLASHtextcolor] = ACTIONS(5157), + [anon_sym_BSLASHpagecolor] = ACTIONS(5157), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5157), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5157), }, [1558] = { - [sym_command_name] = ACTIONS(5263), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5263), - [anon_sym_RBRACK] = ACTIONS(5261), - [anon_sym_COMMA] = ACTIONS(5261), - [anon_sym_EQ] = ACTIONS(5261), - [anon_sym_RBRACE] = ACTIONS(5261), - [sym_word] = ACTIONS(5263), - [sym_placeholder] = ACTIONS(5261), - [anon_sym_PLUS] = ACTIONS(5263), - [anon_sym_DASH] = ACTIONS(5263), - [anon_sym_STAR] = ACTIONS(5263), - [anon_sym_SLASH] = ACTIONS(5263), - [anon_sym_CARET] = ACTIONS(5263), - [anon_sym__] = ACTIONS(5263), - [anon_sym_LT] = ACTIONS(5263), - [anon_sym_GT] = ACTIONS(5263), - [anon_sym_BANG] = ACTIONS(5263), - [anon_sym_PIPE] = ACTIONS(5263), - [anon_sym_COLON] = ACTIONS(5263), - [anon_sym_SQUOTE] = ACTIONS(5263), - [anon_sym_BSLASHusepackage] = ACTIONS(5263), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5263), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5263), - [anon_sym_BSLASHinclude] = ACTIONS(5263), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5263), - [anon_sym_BSLASHinput] = ACTIONS(5263), - [anon_sym_BSLASHsubfile] = ACTIONS(5263), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5263), - [anon_sym_BSLASHbibliography] = ACTIONS(5263), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5263), - [anon_sym_BSLASHincludesvg] = ACTIONS(5263), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5263), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5263), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5263), - [anon_sym_BSLASHimport] = ACTIONS(5263), - [anon_sym_BSLASHsubimport] = ACTIONS(5263), - [anon_sym_BSLASHinputfrom] = ACTIONS(5263), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5263), - [anon_sym_BSLASHincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5263), - [anon_sym_BSLASHcaption] = ACTIONS(5263), - [anon_sym_BSLASHcite] = ACTIONS(5263), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCite] = ACTIONS(5263), - [anon_sym_BSLASHnocite] = ACTIONS(5263), - [anon_sym_BSLASHcitet] = ACTIONS(5263), - [anon_sym_BSLASHcitep] = ACTIONS(5263), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteauthor] = ACTIONS(5263), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5263), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitetitle] = ACTIONS(5263), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteyear] = ACTIONS(5263), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5261), - [anon_sym_BSLASHcitedate] = ACTIONS(5263), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5261), - [anon_sym_BSLASHciteurl] = ACTIONS(5263), - [anon_sym_BSLASHfullcite] = ACTIONS(5263), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5263), - [anon_sym_BSLASHcitealt] = ACTIONS(5263), - [anon_sym_BSLASHcitealp] = ACTIONS(5263), - [anon_sym_BSLASHcitetext] = ACTIONS(5263), - [anon_sym_BSLASHparencite] = ACTIONS(5263), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHParencite] = ACTIONS(5263), - [anon_sym_BSLASHfootcite] = ACTIONS(5263), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5263), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5263), - [anon_sym_BSLASHtextcite] = ACTIONS(5263), - [anon_sym_BSLASHTextcite] = ACTIONS(5263), - [anon_sym_BSLASHsmartcite] = ACTIONS(5263), - [anon_sym_BSLASHSmartcite] = ACTIONS(5263), - [anon_sym_BSLASHsupercite] = ACTIONS(5263), - [anon_sym_BSLASHautocite] = ACTIONS(5263), - [anon_sym_BSLASHAutocite] = ACTIONS(5263), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5261), - [anon_sym_BSLASHvolcite] = ACTIONS(5263), - [anon_sym_BSLASHVolcite] = ACTIONS(5263), - [anon_sym_BSLASHpvolcite] = ACTIONS(5263), - [anon_sym_BSLASHPvolcite] = ACTIONS(5263), - [anon_sym_BSLASHfvolcite] = ACTIONS(5263), - [anon_sym_BSLASHftvolcite] = ACTIONS(5263), - [anon_sym_BSLASHsvolcite] = ACTIONS(5263), - [anon_sym_BSLASHSvolcite] = ACTIONS(5263), - [anon_sym_BSLASHtvolcite] = ACTIONS(5263), - [anon_sym_BSLASHTvolcite] = ACTIONS(5263), - [anon_sym_BSLASHavolcite] = ACTIONS(5263), - [anon_sym_BSLASHAvolcite] = ACTIONS(5263), - [anon_sym_BSLASHnotecite] = ACTIONS(5263), - [anon_sym_BSLASHNotecite] = ACTIONS(5263), - [anon_sym_BSLASHpnotecite] = ACTIONS(5263), - [anon_sym_BSLASHPnotecite] = ACTIONS(5263), - [anon_sym_BSLASHfnotecite] = ACTIONS(5263), - [anon_sym_BSLASHlabel] = ACTIONS(5263), - [anon_sym_BSLASHref] = ACTIONS(5263), - [anon_sym_BSLASHeqref] = ACTIONS(5263), - [anon_sym_BSLASHvref] = ACTIONS(5263), - [anon_sym_BSLASHVref] = ACTIONS(5263), - [anon_sym_BSLASHautoref] = ACTIONS(5263), - [anon_sym_BSLASHpageref] = ACTIONS(5263), - [anon_sym_BSLASHcref] = ACTIONS(5263), - [anon_sym_BSLASHCref] = ACTIONS(5263), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnameCref] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5263), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5263), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5263), - [anon_sym_BSLASHlabelcref] = ACTIONS(5263), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange] = ACTIONS(5263), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHCrefrange] = ACTIONS(5263), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5261), - [anon_sym_BSLASHnewlabel] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand] = ACTIONS(5263), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5263), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5263), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5261), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5263), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5261), - [anon_sym_BSLASHdef] = ACTIONS(5263), - [anon_sym_BSLASHlet] = ACTIONS(5263), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5263), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5263), - [anon_sym_BSLASHgls] = ACTIONS(5263), - [anon_sym_BSLASHGls] = ACTIONS(5263), - [anon_sym_BSLASHGLS] = ACTIONS(5263), - [anon_sym_BSLASHglspl] = ACTIONS(5263), - [anon_sym_BSLASHGlspl] = ACTIONS(5263), - [anon_sym_BSLASHGLSpl] = ACTIONS(5263), - [anon_sym_BSLASHglsdisp] = ACTIONS(5263), - [anon_sym_BSLASHglslink] = ACTIONS(5263), - [anon_sym_BSLASHglstext] = ACTIONS(5263), - [anon_sym_BSLASHGlstext] = ACTIONS(5263), - [anon_sym_BSLASHGLStext] = ACTIONS(5263), - [anon_sym_BSLASHglsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5263), - [anon_sym_BSLASHglsplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSplural] = ACTIONS(5263), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5263), - [anon_sym_BSLASHglsname] = ACTIONS(5263), - [anon_sym_BSLASHGlsname] = ACTIONS(5263), - [anon_sym_BSLASHGLSname] = ACTIONS(5263), - [anon_sym_BSLASHglssymbol] = ACTIONS(5263), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5263), - [anon_sym_BSLASHglsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5263), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5263), - [anon_sym_BSLASHglsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5263), - [anon_sym_BSLASHglsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5263), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5263), - [anon_sym_BSLASHglsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5263), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5263), - [anon_sym_BSLASHglsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5263), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5263), - [anon_sym_BSLASHnewacronym] = ACTIONS(5263), - [anon_sym_BSLASHacrshort] = ACTIONS(5263), - [anon_sym_BSLASHAcrshort] = ACTIONS(5263), - [anon_sym_BSLASHACRshort] = ACTIONS(5263), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5263), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5263), - [anon_sym_BSLASHacrlong] = ACTIONS(5263), - [anon_sym_BSLASHAcrlong] = ACTIONS(5263), - [anon_sym_BSLASHACRlong] = ACTIONS(5263), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5263), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5263), - [anon_sym_BSLASHacrfull] = ACTIONS(5263), - [anon_sym_BSLASHAcrfull] = ACTIONS(5263), - [anon_sym_BSLASHACRfull] = ACTIONS(5263), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5263), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5263), - [anon_sym_BSLASHacs] = ACTIONS(5263), - [anon_sym_BSLASHAcs] = ACTIONS(5263), - [anon_sym_BSLASHacsp] = ACTIONS(5263), - [anon_sym_BSLASHAcsp] = ACTIONS(5263), - [anon_sym_BSLASHacl] = ACTIONS(5263), - [anon_sym_BSLASHAcl] = ACTIONS(5263), - [anon_sym_BSLASHaclp] = ACTIONS(5263), - [anon_sym_BSLASHAclp] = ACTIONS(5263), - [anon_sym_BSLASHacf] = ACTIONS(5263), - [anon_sym_BSLASHAcf] = ACTIONS(5263), - [anon_sym_BSLASHacfp] = ACTIONS(5263), - [anon_sym_BSLASHAcfp] = ACTIONS(5263), - [anon_sym_BSLASHac] = ACTIONS(5263), - [anon_sym_BSLASHAc] = ACTIONS(5263), - [anon_sym_BSLASHacp] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5263), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5263), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5263), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5263), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5263), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5263), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5263), - [anon_sym_BSLASHcolor] = ACTIONS(5263), - [anon_sym_BSLASHcolorbox] = ACTIONS(5263), - [anon_sym_BSLASHtextcolor] = ACTIONS(5263), - [anon_sym_BSLASHpagecolor] = ACTIONS(5263), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5263), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5263), + [sym_command_name] = ACTIONS(5309), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5309), + [anon_sym_RBRACK] = ACTIONS(5307), + [anon_sym_COMMA] = ACTIONS(5307), + [anon_sym_EQ] = ACTIONS(5307), + [anon_sym_RBRACE] = ACTIONS(5307), + [sym_word] = ACTIONS(5309), + [sym_placeholder] = ACTIONS(5307), + [anon_sym_PLUS] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5309), + [anon_sym_STAR] = ACTIONS(5309), + [anon_sym_SLASH] = ACTIONS(5309), + [anon_sym_CARET] = ACTIONS(5309), + [anon_sym__] = ACTIONS(5309), + [anon_sym_LT] = ACTIONS(5309), + [anon_sym_GT] = ACTIONS(5309), + [anon_sym_BANG] = ACTIONS(5309), + [anon_sym_PIPE] = ACTIONS(5309), + [anon_sym_COLON] = ACTIONS(5309), + [anon_sym_SQUOTE] = ACTIONS(5309), + [anon_sym_BSLASHusepackage] = ACTIONS(5309), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5309), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5309), + [anon_sym_BSLASHinclude] = ACTIONS(5309), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5309), + [anon_sym_BSLASHinput] = ACTIONS(5309), + [anon_sym_BSLASHsubfile] = ACTIONS(5309), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5309), + [anon_sym_BSLASHbibliography] = ACTIONS(5309), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5309), + [anon_sym_BSLASHincludesvg] = ACTIONS(5309), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5309), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5309), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5309), + [anon_sym_BSLASHimport] = ACTIONS(5309), + [anon_sym_BSLASHsubimport] = ACTIONS(5309), + [anon_sym_BSLASHinputfrom] = ACTIONS(5309), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5309), + [anon_sym_BSLASHincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5309), + [anon_sym_BSLASHcaption] = ACTIONS(5309), + [anon_sym_BSLASHcite] = ACTIONS(5309), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCite] = ACTIONS(5309), + [anon_sym_BSLASHnocite] = ACTIONS(5309), + [anon_sym_BSLASHcitet] = ACTIONS(5309), + [anon_sym_BSLASHcitep] = ACTIONS(5309), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteauthor] = ACTIONS(5309), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5309), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitetitle] = ACTIONS(5309), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteyear] = ACTIONS(5309), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5307), + [anon_sym_BSLASHcitedate] = ACTIONS(5309), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5307), + [anon_sym_BSLASHciteurl] = ACTIONS(5309), + [anon_sym_BSLASHfullcite] = ACTIONS(5309), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5309), + [anon_sym_BSLASHcitealt] = ACTIONS(5309), + [anon_sym_BSLASHcitealp] = ACTIONS(5309), + [anon_sym_BSLASHcitetext] = ACTIONS(5309), + [anon_sym_BSLASHparencite] = ACTIONS(5309), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHParencite] = ACTIONS(5309), + [anon_sym_BSLASHfootcite] = ACTIONS(5309), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5309), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5309), + [anon_sym_BSLASHtextcite] = ACTIONS(5309), + [anon_sym_BSLASHTextcite] = ACTIONS(5309), + [anon_sym_BSLASHsmartcite] = ACTIONS(5309), + [anon_sym_BSLASHSmartcite] = ACTIONS(5309), + [anon_sym_BSLASHsupercite] = ACTIONS(5309), + [anon_sym_BSLASHautocite] = ACTIONS(5309), + [anon_sym_BSLASHAutocite] = ACTIONS(5309), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5307), + [anon_sym_BSLASHvolcite] = ACTIONS(5309), + [anon_sym_BSLASHVolcite] = ACTIONS(5309), + [anon_sym_BSLASHpvolcite] = ACTIONS(5309), + [anon_sym_BSLASHPvolcite] = ACTIONS(5309), + [anon_sym_BSLASHfvolcite] = ACTIONS(5309), + [anon_sym_BSLASHftvolcite] = ACTIONS(5309), + [anon_sym_BSLASHsvolcite] = ACTIONS(5309), + [anon_sym_BSLASHSvolcite] = ACTIONS(5309), + [anon_sym_BSLASHtvolcite] = ACTIONS(5309), + [anon_sym_BSLASHTvolcite] = ACTIONS(5309), + [anon_sym_BSLASHavolcite] = ACTIONS(5309), + [anon_sym_BSLASHAvolcite] = ACTIONS(5309), + [anon_sym_BSLASHnotecite] = ACTIONS(5309), + [anon_sym_BSLASHNotecite] = ACTIONS(5309), + [anon_sym_BSLASHpnotecite] = ACTIONS(5309), + [anon_sym_BSLASHPnotecite] = ACTIONS(5309), + [anon_sym_BSLASHfnotecite] = ACTIONS(5309), + [anon_sym_BSLASHlabel] = ACTIONS(5309), + [anon_sym_BSLASHref] = ACTIONS(5309), + [anon_sym_BSLASHeqref] = ACTIONS(5309), + [anon_sym_BSLASHvref] = ACTIONS(5309), + [anon_sym_BSLASHVref] = ACTIONS(5309), + [anon_sym_BSLASHautoref] = ACTIONS(5309), + [anon_sym_BSLASHpageref] = ACTIONS(5309), + [anon_sym_BSLASHcref] = ACTIONS(5309), + [anon_sym_BSLASHCref] = ACTIONS(5309), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnameCref] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5309), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5309), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5309), + [anon_sym_BSLASHlabelcref] = ACTIONS(5309), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange] = ACTIONS(5309), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHCrefrange] = ACTIONS(5309), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5307), + [anon_sym_BSLASHnewlabel] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand] = ACTIONS(5309), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5309), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5309), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5307), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5309), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5307), + [anon_sym_BSLASHdef] = ACTIONS(5309), + [anon_sym_BSLASHlet] = ACTIONS(5309), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5309), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5309), + [anon_sym_BSLASHgls] = ACTIONS(5309), + [anon_sym_BSLASHGls] = ACTIONS(5309), + [anon_sym_BSLASHGLS] = ACTIONS(5309), + [anon_sym_BSLASHglspl] = ACTIONS(5309), + [anon_sym_BSLASHGlspl] = ACTIONS(5309), + [anon_sym_BSLASHGLSpl] = ACTIONS(5309), + [anon_sym_BSLASHglsdisp] = ACTIONS(5309), + [anon_sym_BSLASHglslink] = ACTIONS(5309), + [anon_sym_BSLASHglstext] = ACTIONS(5309), + [anon_sym_BSLASHGlstext] = ACTIONS(5309), + [anon_sym_BSLASHGLStext] = ACTIONS(5309), + [anon_sym_BSLASHglsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5309), + [anon_sym_BSLASHglsplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSplural] = ACTIONS(5309), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5309), + [anon_sym_BSLASHglsname] = ACTIONS(5309), + [anon_sym_BSLASHGlsname] = ACTIONS(5309), + [anon_sym_BSLASHGLSname] = ACTIONS(5309), + [anon_sym_BSLASHglssymbol] = ACTIONS(5309), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5309), + [anon_sym_BSLASHglsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5309), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5309), + [anon_sym_BSLASHglsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5309), + [anon_sym_BSLASHglsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5309), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5309), + [anon_sym_BSLASHglsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5309), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5309), + [anon_sym_BSLASHglsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5309), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5309), + [anon_sym_BSLASHnewacronym] = ACTIONS(5309), + [anon_sym_BSLASHacrshort] = ACTIONS(5309), + [anon_sym_BSLASHAcrshort] = ACTIONS(5309), + [anon_sym_BSLASHACRshort] = ACTIONS(5309), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5309), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5309), + [anon_sym_BSLASHacrlong] = ACTIONS(5309), + [anon_sym_BSLASHAcrlong] = ACTIONS(5309), + [anon_sym_BSLASHACRlong] = ACTIONS(5309), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5309), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5309), + [anon_sym_BSLASHacrfull] = ACTIONS(5309), + [anon_sym_BSLASHAcrfull] = ACTIONS(5309), + [anon_sym_BSLASHACRfull] = ACTIONS(5309), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5309), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5309), + [anon_sym_BSLASHacs] = ACTIONS(5309), + [anon_sym_BSLASHAcs] = ACTIONS(5309), + [anon_sym_BSLASHacsp] = ACTIONS(5309), + [anon_sym_BSLASHAcsp] = ACTIONS(5309), + [anon_sym_BSLASHacl] = ACTIONS(5309), + [anon_sym_BSLASHAcl] = ACTIONS(5309), + [anon_sym_BSLASHaclp] = ACTIONS(5309), + [anon_sym_BSLASHAclp] = ACTIONS(5309), + [anon_sym_BSLASHacf] = ACTIONS(5309), + [anon_sym_BSLASHAcf] = ACTIONS(5309), + [anon_sym_BSLASHacfp] = ACTIONS(5309), + [anon_sym_BSLASHAcfp] = ACTIONS(5309), + [anon_sym_BSLASHac] = ACTIONS(5309), + [anon_sym_BSLASHAc] = ACTIONS(5309), + [anon_sym_BSLASHacp] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5309), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5309), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5309), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5309), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5309), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5309), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5309), + [anon_sym_BSLASHcolor] = ACTIONS(5309), + [anon_sym_BSLASHcolorbox] = ACTIONS(5309), + [anon_sym_BSLASHtextcolor] = ACTIONS(5309), + [anon_sym_BSLASHpagecolor] = ACTIONS(5309), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5309), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5309), }, [1559] = { - [sym_command_name] = ACTIONS(5341), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5341), - [anon_sym_RBRACK] = ACTIONS(5339), - [anon_sym_COMMA] = ACTIONS(5339), - [anon_sym_EQ] = ACTIONS(5339), - [anon_sym_RBRACE] = ACTIONS(5339), - [sym_word] = ACTIONS(5341), - [sym_placeholder] = ACTIONS(5339), - [anon_sym_PLUS] = ACTIONS(5341), - [anon_sym_DASH] = ACTIONS(5341), - [anon_sym_STAR] = ACTIONS(5341), - [anon_sym_SLASH] = ACTIONS(5341), - [anon_sym_CARET] = ACTIONS(5341), - [anon_sym__] = ACTIONS(5341), - [anon_sym_LT] = ACTIONS(5341), - [anon_sym_GT] = ACTIONS(5341), - [anon_sym_BANG] = ACTIONS(5341), - [anon_sym_PIPE] = ACTIONS(5341), - [anon_sym_COLON] = ACTIONS(5341), - [anon_sym_SQUOTE] = ACTIONS(5341), - [anon_sym_BSLASHusepackage] = ACTIONS(5341), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5341), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5341), - [anon_sym_BSLASHinclude] = ACTIONS(5341), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5341), - [anon_sym_BSLASHinput] = ACTIONS(5341), - [anon_sym_BSLASHsubfile] = ACTIONS(5341), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5341), - [anon_sym_BSLASHbibliography] = ACTIONS(5341), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5341), - [anon_sym_BSLASHincludesvg] = ACTIONS(5341), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5341), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5341), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5341), - [anon_sym_BSLASHimport] = ACTIONS(5341), - [anon_sym_BSLASHsubimport] = ACTIONS(5341), - [anon_sym_BSLASHinputfrom] = ACTIONS(5341), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5341), - [anon_sym_BSLASHincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5341), - [anon_sym_BSLASHcaption] = ACTIONS(5341), - [anon_sym_BSLASHcite] = ACTIONS(5341), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCite] = ACTIONS(5341), - [anon_sym_BSLASHnocite] = ACTIONS(5341), - [anon_sym_BSLASHcitet] = ACTIONS(5341), - [anon_sym_BSLASHcitep] = ACTIONS(5341), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteauthor] = ACTIONS(5341), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5341), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitetitle] = ACTIONS(5341), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteyear] = ACTIONS(5341), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5339), - [anon_sym_BSLASHcitedate] = ACTIONS(5341), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5339), - [anon_sym_BSLASHciteurl] = ACTIONS(5341), - [anon_sym_BSLASHfullcite] = ACTIONS(5341), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5341), - [anon_sym_BSLASHcitealt] = ACTIONS(5341), - [anon_sym_BSLASHcitealp] = ACTIONS(5341), - [anon_sym_BSLASHcitetext] = ACTIONS(5341), - [anon_sym_BSLASHparencite] = ACTIONS(5341), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHParencite] = ACTIONS(5341), - [anon_sym_BSLASHfootcite] = ACTIONS(5341), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5341), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5341), - [anon_sym_BSLASHtextcite] = ACTIONS(5341), - [anon_sym_BSLASHTextcite] = ACTIONS(5341), - [anon_sym_BSLASHsmartcite] = ACTIONS(5341), - [anon_sym_BSLASHSmartcite] = ACTIONS(5341), - [anon_sym_BSLASHsupercite] = ACTIONS(5341), - [anon_sym_BSLASHautocite] = ACTIONS(5341), - [anon_sym_BSLASHAutocite] = ACTIONS(5341), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5339), - [anon_sym_BSLASHvolcite] = ACTIONS(5341), - [anon_sym_BSLASHVolcite] = ACTIONS(5341), - [anon_sym_BSLASHpvolcite] = ACTIONS(5341), - [anon_sym_BSLASHPvolcite] = ACTIONS(5341), - [anon_sym_BSLASHfvolcite] = ACTIONS(5341), - [anon_sym_BSLASHftvolcite] = ACTIONS(5341), - [anon_sym_BSLASHsvolcite] = ACTIONS(5341), - [anon_sym_BSLASHSvolcite] = ACTIONS(5341), - [anon_sym_BSLASHtvolcite] = ACTIONS(5341), - [anon_sym_BSLASHTvolcite] = ACTIONS(5341), - [anon_sym_BSLASHavolcite] = ACTIONS(5341), - [anon_sym_BSLASHAvolcite] = ACTIONS(5341), - [anon_sym_BSLASHnotecite] = ACTIONS(5341), - [anon_sym_BSLASHNotecite] = ACTIONS(5341), - [anon_sym_BSLASHpnotecite] = ACTIONS(5341), - [anon_sym_BSLASHPnotecite] = ACTIONS(5341), - [anon_sym_BSLASHfnotecite] = ACTIONS(5341), - [anon_sym_BSLASHlabel] = ACTIONS(5341), - [anon_sym_BSLASHref] = ACTIONS(5341), - [anon_sym_BSLASHeqref] = ACTIONS(5341), - [anon_sym_BSLASHvref] = ACTIONS(5341), - [anon_sym_BSLASHVref] = ACTIONS(5341), - [anon_sym_BSLASHautoref] = ACTIONS(5341), - [anon_sym_BSLASHpageref] = ACTIONS(5341), - [anon_sym_BSLASHcref] = ACTIONS(5341), - [anon_sym_BSLASHCref] = ACTIONS(5341), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnameCref] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5341), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5341), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5341), - [anon_sym_BSLASHlabelcref] = ACTIONS(5341), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange] = ACTIONS(5341), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHCrefrange] = ACTIONS(5341), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5339), - [anon_sym_BSLASHnewlabel] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand] = ACTIONS(5341), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5341), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5341), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5339), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5341), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5339), - [anon_sym_BSLASHdef] = ACTIONS(5341), - [anon_sym_BSLASHlet] = ACTIONS(5341), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5341), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5341), - [anon_sym_BSLASHgls] = ACTIONS(5341), - [anon_sym_BSLASHGls] = ACTIONS(5341), - [anon_sym_BSLASHGLS] = ACTIONS(5341), - [anon_sym_BSLASHglspl] = ACTIONS(5341), - [anon_sym_BSLASHGlspl] = ACTIONS(5341), - [anon_sym_BSLASHGLSpl] = ACTIONS(5341), - [anon_sym_BSLASHglsdisp] = ACTIONS(5341), - [anon_sym_BSLASHglslink] = ACTIONS(5341), - [anon_sym_BSLASHglstext] = ACTIONS(5341), - [anon_sym_BSLASHGlstext] = ACTIONS(5341), - [anon_sym_BSLASHGLStext] = ACTIONS(5341), - [anon_sym_BSLASHglsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5341), - [anon_sym_BSLASHglsplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSplural] = ACTIONS(5341), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5341), - [anon_sym_BSLASHglsname] = ACTIONS(5341), - [anon_sym_BSLASHGlsname] = ACTIONS(5341), - [anon_sym_BSLASHGLSname] = ACTIONS(5341), - [anon_sym_BSLASHglssymbol] = ACTIONS(5341), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5341), - [anon_sym_BSLASHglsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5341), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5341), - [anon_sym_BSLASHglsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5341), - [anon_sym_BSLASHglsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5341), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5341), - [anon_sym_BSLASHglsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5341), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5341), - [anon_sym_BSLASHglsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5341), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5341), - [anon_sym_BSLASHnewacronym] = ACTIONS(5341), - [anon_sym_BSLASHacrshort] = ACTIONS(5341), - [anon_sym_BSLASHAcrshort] = ACTIONS(5341), - [anon_sym_BSLASHACRshort] = ACTIONS(5341), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5341), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5341), - [anon_sym_BSLASHacrlong] = ACTIONS(5341), - [anon_sym_BSLASHAcrlong] = ACTIONS(5341), - [anon_sym_BSLASHACRlong] = ACTIONS(5341), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5341), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5341), - [anon_sym_BSLASHacrfull] = ACTIONS(5341), - [anon_sym_BSLASHAcrfull] = ACTIONS(5341), - [anon_sym_BSLASHACRfull] = ACTIONS(5341), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5341), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5341), - [anon_sym_BSLASHacs] = ACTIONS(5341), - [anon_sym_BSLASHAcs] = ACTIONS(5341), - [anon_sym_BSLASHacsp] = ACTIONS(5341), - [anon_sym_BSLASHAcsp] = ACTIONS(5341), - [anon_sym_BSLASHacl] = ACTIONS(5341), - [anon_sym_BSLASHAcl] = ACTIONS(5341), - [anon_sym_BSLASHaclp] = ACTIONS(5341), - [anon_sym_BSLASHAclp] = ACTIONS(5341), - [anon_sym_BSLASHacf] = ACTIONS(5341), - [anon_sym_BSLASHAcf] = ACTIONS(5341), - [anon_sym_BSLASHacfp] = ACTIONS(5341), - [anon_sym_BSLASHAcfp] = ACTIONS(5341), - [anon_sym_BSLASHac] = ACTIONS(5341), - [anon_sym_BSLASHAc] = ACTIONS(5341), - [anon_sym_BSLASHacp] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5341), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5341), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5341), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5341), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5341), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5341), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5341), - [anon_sym_BSLASHcolor] = ACTIONS(5341), - [anon_sym_BSLASHcolorbox] = ACTIONS(5341), - [anon_sym_BSLASHtextcolor] = ACTIONS(5341), - [anon_sym_BSLASHpagecolor] = ACTIONS(5341), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5341), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5341), + [sym_command_name] = ACTIONS(5281), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5281), + [anon_sym_RBRACK] = ACTIONS(5279), + [anon_sym_COMMA] = ACTIONS(5279), + [anon_sym_EQ] = ACTIONS(5279), + [anon_sym_RBRACE] = ACTIONS(5279), + [sym_word] = ACTIONS(5281), + [sym_placeholder] = ACTIONS(5279), + [anon_sym_PLUS] = ACTIONS(5281), + [anon_sym_DASH] = ACTIONS(5281), + [anon_sym_STAR] = ACTIONS(5281), + [anon_sym_SLASH] = ACTIONS(5281), + [anon_sym_CARET] = ACTIONS(5281), + [anon_sym__] = ACTIONS(5281), + [anon_sym_LT] = ACTIONS(5281), + [anon_sym_GT] = ACTIONS(5281), + [anon_sym_BANG] = ACTIONS(5281), + [anon_sym_PIPE] = ACTIONS(5281), + [anon_sym_COLON] = ACTIONS(5281), + [anon_sym_SQUOTE] = ACTIONS(5281), + [anon_sym_BSLASHusepackage] = ACTIONS(5281), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5281), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5281), + [anon_sym_BSLASHinclude] = ACTIONS(5281), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5281), + [anon_sym_BSLASHinput] = ACTIONS(5281), + [anon_sym_BSLASHsubfile] = ACTIONS(5281), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5281), + [anon_sym_BSLASHbibliography] = ACTIONS(5281), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5281), + [anon_sym_BSLASHincludesvg] = ACTIONS(5281), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5281), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5281), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5281), + [anon_sym_BSLASHimport] = ACTIONS(5281), + [anon_sym_BSLASHsubimport] = ACTIONS(5281), + [anon_sym_BSLASHinputfrom] = ACTIONS(5281), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5281), + [anon_sym_BSLASHincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5281), + [anon_sym_BSLASHcaption] = ACTIONS(5281), + [anon_sym_BSLASHcite] = ACTIONS(5281), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCite] = ACTIONS(5281), + [anon_sym_BSLASHnocite] = ACTIONS(5281), + [anon_sym_BSLASHcitet] = ACTIONS(5281), + [anon_sym_BSLASHcitep] = ACTIONS(5281), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteauthor] = ACTIONS(5281), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5281), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitetitle] = ACTIONS(5281), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteyear] = ACTIONS(5281), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5279), + [anon_sym_BSLASHcitedate] = ACTIONS(5281), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5279), + [anon_sym_BSLASHciteurl] = ACTIONS(5281), + [anon_sym_BSLASHfullcite] = ACTIONS(5281), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5281), + [anon_sym_BSLASHcitealt] = ACTIONS(5281), + [anon_sym_BSLASHcitealp] = ACTIONS(5281), + [anon_sym_BSLASHcitetext] = ACTIONS(5281), + [anon_sym_BSLASHparencite] = ACTIONS(5281), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHParencite] = ACTIONS(5281), + [anon_sym_BSLASHfootcite] = ACTIONS(5281), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5281), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5281), + [anon_sym_BSLASHtextcite] = ACTIONS(5281), + [anon_sym_BSLASHTextcite] = ACTIONS(5281), + [anon_sym_BSLASHsmartcite] = ACTIONS(5281), + [anon_sym_BSLASHSmartcite] = ACTIONS(5281), + [anon_sym_BSLASHsupercite] = ACTIONS(5281), + [anon_sym_BSLASHautocite] = ACTIONS(5281), + [anon_sym_BSLASHAutocite] = ACTIONS(5281), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5279), + [anon_sym_BSLASHvolcite] = ACTIONS(5281), + [anon_sym_BSLASHVolcite] = ACTIONS(5281), + [anon_sym_BSLASHpvolcite] = ACTIONS(5281), + [anon_sym_BSLASHPvolcite] = ACTIONS(5281), + [anon_sym_BSLASHfvolcite] = ACTIONS(5281), + [anon_sym_BSLASHftvolcite] = ACTIONS(5281), + [anon_sym_BSLASHsvolcite] = ACTIONS(5281), + [anon_sym_BSLASHSvolcite] = ACTIONS(5281), + [anon_sym_BSLASHtvolcite] = ACTIONS(5281), + [anon_sym_BSLASHTvolcite] = ACTIONS(5281), + [anon_sym_BSLASHavolcite] = ACTIONS(5281), + [anon_sym_BSLASHAvolcite] = ACTIONS(5281), + [anon_sym_BSLASHnotecite] = ACTIONS(5281), + [anon_sym_BSLASHNotecite] = ACTIONS(5281), + [anon_sym_BSLASHpnotecite] = ACTIONS(5281), + [anon_sym_BSLASHPnotecite] = ACTIONS(5281), + [anon_sym_BSLASHfnotecite] = ACTIONS(5281), + [anon_sym_BSLASHlabel] = ACTIONS(5281), + [anon_sym_BSLASHref] = ACTIONS(5281), + [anon_sym_BSLASHeqref] = ACTIONS(5281), + [anon_sym_BSLASHvref] = ACTIONS(5281), + [anon_sym_BSLASHVref] = ACTIONS(5281), + [anon_sym_BSLASHautoref] = ACTIONS(5281), + [anon_sym_BSLASHpageref] = ACTIONS(5281), + [anon_sym_BSLASHcref] = ACTIONS(5281), + [anon_sym_BSLASHCref] = ACTIONS(5281), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnameCref] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5281), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5281), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5281), + [anon_sym_BSLASHlabelcref] = ACTIONS(5281), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange] = ACTIONS(5281), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHCrefrange] = ACTIONS(5281), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5279), + [anon_sym_BSLASHnewlabel] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand] = ACTIONS(5281), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5281), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5281), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5279), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5281), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5279), + [anon_sym_BSLASHdef] = ACTIONS(5281), + [anon_sym_BSLASHlet] = ACTIONS(5281), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5281), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5281), + [anon_sym_BSLASHgls] = ACTIONS(5281), + [anon_sym_BSLASHGls] = ACTIONS(5281), + [anon_sym_BSLASHGLS] = ACTIONS(5281), + [anon_sym_BSLASHglspl] = ACTIONS(5281), + [anon_sym_BSLASHGlspl] = ACTIONS(5281), + [anon_sym_BSLASHGLSpl] = ACTIONS(5281), + [anon_sym_BSLASHglsdisp] = ACTIONS(5281), + [anon_sym_BSLASHglslink] = ACTIONS(5281), + [anon_sym_BSLASHglstext] = ACTIONS(5281), + [anon_sym_BSLASHGlstext] = ACTIONS(5281), + [anon_sym_BSLASHGLStext] = ACTIONS(5281), + [anon_sym_BSLASHglsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5281), + [anon_sym_BSLASHglsplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSplural] = ACTIONS(5281), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5281), + [anon_sym_BSLASHglsname] = ACTIONS(5281), + [anon_sym_BSLASHGlsname] = ACTIONS(5281), + [anon_sym_BSLASHGLSname] = ACTIONS(5281), + [anon_sym_BSLASHglssymbol] = ACTIONS(5281), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5281), + [anon_sym_BSLASHglsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5281), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5281), + [anon_sym_BSLASHglsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5281), + [anon_sym_BSLASHglsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5281), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5281), + [anon_sym_BSLASHglsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5281), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5281), + [anon_sym_BSLASHglsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5281), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5281), + [anon_sym_BSLASHnewacronym] = ACTIONS(5281), + [anon_sym_BSLASHacrshort] = ACTIONS(5281), + [anon_sym_BSLASHAcrshort] = ACTIONS(5281), + [anon_sym_BSLASHACRshort] = ACTIONS(5281), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5281), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5281), + [anon_sym_BSLASHacrlong] = ACTIONS(5281), + [anon_sym_BSLASHAcrlong] = ACTIONS(5281), + [anon_sym_BSLASHACRlong] = ACTIONS(5281), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5281), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5281), + [anon_sym_BSLASHacrfull] = ACTIONS(5281), + [anon_sym_BSLASHAcrfull] = ACTIONS(5281), + [anon_sym_BSLASHACRfull] = ACTIONS(5281), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5281), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5281), + [anon_sym_BSLASHacs] = ACTIONS(5281), + [anon_sym_BSLASHAcs] = ACTIONS(5281), + [anon_sym_BSLASHacsp] = ACTIONS(5281), + [anon_sym_BSLASHAcsp] = ACTIONS(5281), + [anon_sym_BSLASHacl] = ACTIONS(5281), + [anon_sym_BSLASHAcl] = ACTIONS(5281), + [anon_sym_BSLASHaclp] = ACTIONS(5281), + [anon_sym_BSLASHAclp] = ACTIONS(5281), + [anon_sym_BSLASHacf] = ACTIONS(5281), + [anon_sym_BSLASHAcf] = ACTIONS(5281), + [anon_sym_BSLASHacfp] = ACTIONS(5281), + [anon_sym_BSLASHAcfp] = ACTIONS(5281), + [anon_sym_BSLASHac] = ACTIONS(5281), + [anon_sym_BSLASHAc] = ACTIONS(5281), + [anon_sym_BSLASHacp] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5281), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5281), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5281), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5281), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5281), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5281), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5281), + [anon_sym_BSLASHcolor] = ACTIONS(5281), + [anon_sym_BSLASHcolorbox] = ACTIONS(5281), + [anon_sym_BSLASHtextcolor] = ACTIONS(5281), + [anon_sym_BSLASHpagecolor] = ACTIONS(5281), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5281), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5281), }, [1560] = { - [sym_command_name] = ACTIONS(5267), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5267), - [anon_sym_RBRACK] = ACTIONS(5265), - [anon_sym_COMMA] = ACTIONS(5265), - [anon_sym_EQ] = ACTIONS(5265), - [anon_sym_RBRACE] = ACTIONS(5265), - [sym_word] = ACTIONS(5267), - [sym_placeholder] = ACTIONS(5265), - [anon_sym_PLUS] = ACTIONS(5267), - [anon_sym_DASH] = ACTIONS(5267), - [anon_sym_STAR] = ACTIONS(5267), - [anon_sym_SLASH] = ACTIONS(5267), - [anon_sym_CARET] = ACTIONS(5267), - [anon_sym__] = ACTIONS(5267), - [anon_sym_LT] = ACTIONS(5267), - [anon_sym_GT] = ACTIONS(5267), - [anon_sym_BANG] = ACTIONS(5267), - [anon_sym_PIPE] = ACTIONS(5267), - [anon_sym_COLON] = ACTIONS(5267), - [anon_sym_SQUOTE] = ACTIONS(5267), - [anon_sym_BSLASHusepackage] = ACTIONS(5267), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5267), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5267), - [anon_sym_BSLASHinclude] = ACTIONS(5267), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5267), - [anon_sym_BSLASHinput] = ACTIONS(5267), - [anon_sym_BSLASHsubfile] = ACTIONS(5267), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5267), - [anon_sym_BSLASHbibliography] = ACTIONS(5267), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5267), - [anon_sym_BSLASHincludesvg] = ACTIONS(5267), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5267), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5267), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5267), - [anon_sym_BSLASHimport] = ACTIONS(5267), - [anon_sym_BSLASHsubimport] = ACTIONS(5267), - [anon_sym_BSLASHinputfrom] = ACTIONS(5267), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5267), - [anon_sym_BSLASHincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5267), - [anon_sym_BSLASHcaption] = ACTIONS(5267), - [anon_sym_BSLASHcite] = ACTIONS(5267), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCite] = ACTIONS(5267), - [anon_sym_BSLASHnocite] = ACTIONS(5267), - [anon_sym_BSLASHcitet] = ACTIONS(5267), - [anon_sym_BSLASHcitep] = ACTIONS(5267), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteauthor] = ACTIONS(5267), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5267), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitetitle] = ACTIONS(5267), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteyear] = ACTIONS(5267), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5265), - [anon_sym_BSLASHcitedate] = ACTIONS(5267), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5265), - [anon_sym_BSLASHciteurl] = ACTIONS(5267), - [anon_sym_BSLASHfullcite] = ACTIONS(5267), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5267), - [anon_sym_BSLASHcitealt] = ACTIONS(5267), - [anon_sym_BSLASHcitealp] = ACTIONS(5267), - [anon_sym_BSLASHcitetext] = ACTIONS(5267), - [anon_sym_BSLASHparencite] = ACTIONS(5267), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHParencite] = ACTIONS(5267), - [anon_sym_BSLASHfootcite] = ACTIONS(5267), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5267), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5267), - [anon_sym_BSLASHtextcite] = ACTIONS(5267), - [anon_sym_BSLASHTextcite] = ACTIONS(5267), - [anon_sym_BSLASHsmartcite] = ACTIONS(5267), - [anon_sym_BSLASHSmartcite] = ACTIONS(5267), - [anon_sym_BSLASHsupercite] = ACTIONS(5267), - [anon_sym_BSLASHautocite] = ACTIONS(5267), - [anon_sym_BSLASHAutocite] = ACTIONS(5267), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5265), - [anon_sym_BSLASHvolcite] = ACTIONS(5267), - [anon_sym_BSLASHVolcite] = ACTIONS(5267), - [anon_sym_BSLASHpvolcite] = ACTIONS(5267), - [anon_sym_BSLASHPvolcite] = ACTIONS(5267), - [anon_sym_BSLASHfvolcite] = ACTIONS(5267), - [anon_sym_BSLASHftvolcite] = ACTIONS(5267), - [anon_sym_BSLASHsvolcite] = ACTIONS(5267), - [anon_sym_BSLASHSvolcite] = ACTIONS(5267), - [anon_sym_BSLASHtvolcite] = ACTIONS(5267), - [anon_sym_BSLASHTvolcite] = ACTIONS(5267), - [anon_sym_BSLASHavolcite] = ACTIONS(5267), - [anon_sym_BSLASHAvolcite] = ACTIONS(5267), - [anon_sym_BSLASHnotecite] = ACTIONS(5267), - [anon_sym_BSLASHNotecite] = ACTIONS(5267), - [anon_sym_BSLASHpnotecite] = ACTIONS(5267), - [anon_sym_BSLASHPnotecite] = ACTIONS(5267), - [anon_sym_BSLASHfnotecite] = ACTIONS(5267), - [anon_sym_BSLASHlabel] = ACTIONS(5267), - [anon_sym_BSLASHref] = ACTIONS(5267), - [anon_sym_BSLASHeqref] = ACTIONS(5267), - [anon_sym_BSLASHvref] = ACTIONS(5267), - [anon_sym_BSLASHVref] = ACTIONS(5267), - [anon_sym_BSLASHautoref] = ACTIONS(5267), - [anon_sym_BSLASHpageref] = ACTIONS(5267), - [anon_sym_BSLASHcref] = ACTIONS(5267), - [anon_sym_BSLASHCref] = ACTIONS(5267), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnameCref] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5267), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5267), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5267), - [anon_sym_BSLASHlabelcref] = ACTIONS(5267), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange] = ACTIONS(5267), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHCrefrange] = ACTIONS(5267), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5265), - [anon_sym_BSLASHnewlabel] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand] = ACTIONS(5267), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5267), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5267), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5265), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5267), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5265), - [anon_sym_BSLASHdef] = ACTIONS(5267), - [anon_sym_BSLASHlet] = ACTIONS(5267), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5267), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5267), - [anon_sym_BSLASHgls] = ACTIONS(5267), - [anon_sym_BSLASHGls] = ACTIONS(5267), - [anon_sym_BSLASHGLS] = ACTIONS(5267), - [anon_sym_BSLASHglspl] = ACTIONS(5267), - [anon_sym_BSLASHGlspl] = ACTIONS(5267), - [anon_sym_BSLASHGLSpl] = ACTIONS(5267), - [anon_sym_BSLASHglsdisp] = ACTIONS(5267), - [anon_sym_BSLASHglslink] = ACTIONS(5267), - [anon_sym_BSLASHglstext] = ACTIONS(5267), - [anon_sym_BSLASHGlstext] = ACTIONS(5267), - [anon_sym_BSLASHGLStext] = ACTIONS(5267), - [anon_sym_BSLASHglsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5267), - [anon_sym_BSLASHglsplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSplural] = ACTIONS(5267), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5267), - [anon_sym_BSLASHglsname] = ACTIONS(5267), - [anon_sym_BSLASHGlsname] = ACTIONS(5267), - [anon_sym_BSLASHGLSname] = ACTIONS(5267), - [anon_sym_BSLASHglssymbol] = ACTIONS(5267), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5267), - [anon_sym_BSLASHglsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5267), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5267), - [anon_sym_BSLASHglsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5267), - [anon_sym_BSLASHglsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5267), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5267), - [anon_sym_BSLASHglsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5267), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5267), - [anon_sym_BSLASHglsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5267), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5267), - [anon_sym_BSLASHnewacronym] = ACTIONS(5267), - [anon_sym_BSLASHacrshort] = ACTIONS(5267), - [anon_sym_BSLASHAcrshort] = ACTIONS(5267), - [anon_sym_BSLASHACRshort] = ACTIONS(5267), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5267), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5267), - [anon_sym_BSLASHacrlong] = ACTIONS(5267), - [anon_sym_BSLASHAcrlong] = ACTIONS(5267), - [anon_sym_BSLASHACRlong] = ACTIONS(5267), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5267), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5267), - [anon_sym_BSLASHacrfull] = ACTIONS(5267), - [anon_sym_BSLASHAcrfull] = ACTIONS(5267), - [anon_sym_BSLASHACRfull] = ACTIONS(5267), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5267), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5267), - [anon_sym_BSLASHacs] = ACTIONS(5267), - [anon_sym_BSLASHAcs] = ACTIONS(5267), - [anon_sym_BSLASHacsp] = ACTIONS(5267), - [anon_sym_BSLASHAcsp] = ACTIONS(5267), - [anon_sym_BSLASHacl] = ACTIONS(5267), - [anon_sym_BSLASHAcl] = ACTIONS(5267), - [anon_sym_BSLASHaclp] = ACTIONS(5267), - [anon_sym_BSLASHAclp] = ACTIONS(5267), - [anon_sym_BSLASHacf] = ACTIONS(5267), - [anon_sym_BSLASHAcf] = ACTIONS(5267), - [anon_sym_BSLASHacfp] = ACTIONS(5267), - [anon_sym_BSLASHAcfp] = ACTIONS(5267), - [anon_sym_BSLASHac] = ACTIONS(5267), - [anon_sym_BSLASHAc] = ACTIONS(5267), - [anon_sym_BSLASHacp] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5267), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5267), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5267), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5267), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5267), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5267), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5267), - [anon_sym_BSLASHcolor] = ACTIONS(5267), - [anon_sym_BSLASHcolorbox] = ACTIONS(5267), - [anon_sym_BSLASHtextcolor] = ACTIONS(5267), - [anon_sym_BSLASHpagecolor] = ACTIONS(5267), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5267), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5267), + [sym_command_name] = ACTIONS(5205), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5205), + [anon_sym_RBRACK] = ACTIONS(5203), + [anon_sym_COMMA] = ACTIONS(5203), + [anon_sym_EQ] = ACTIONS(5203), + [anon_sym_RBRACE] = ACTIONS(5203), + [sym_word] = ACTIONS(5205), + [sym_placeholder] = ACTIONS(5203), + [anon_sym_PLUS] = ACTIONS(5205), + [anon_sym_DASH] = ACTIONS(5205), + [anon_sym_STAR] = ACTIONS(5205), + [anon_sym_SLASH] = ACTIONS(5205), + [anon_sym_CARET] = ACTIONS(5205), + [anon_sym__] = ACTIONS(5205), + [anon_sym_LT] = ACTIONS(5205), + [anon_sym_GT] = ACTIONS(5205), + [anon_sym_BANG] = ACTIONS(5205), + [anon_sym_PIPE] = ACTIONS(5205), + [anon_sym_COLON] = ACTIONS(5205), + [anon_sym_SQUOTE] = ACTIONS(5205), + [anon_sym_BSLASHusepackage] = ACTIONS(5205), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5205), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5205), + [anon_sym_BSLASHinclude] = ACTIONS(5205), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5205), + [anon_sym_BSLASHinput] = ACTIONS(5205), + [anon_sym_BSLASHsubfile] = ACTIONS(5205), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5205), + [anon_sym_BSLASHbibliography] = ACTIONS(5205), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5205), + [anon_sym_BSLASHincludesvg] = ACTIONS(5205), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5205), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5205), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5205), + [anon_sym_BSLASHimport] = ACTIONS(5205), + [anon_sym_BSLASHsubimport] = ACTIONS(5205), + [anon_sym_BSLASHinputfrom] = ACTIONS(5205), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5205), + [anon_sym_BSLASHincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5205), + [anon_sym_BSLASHcaption] = ACTIONS(5205), + [anon_sym_BSLASHcite] = ACTIONS(5205), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCite] = ACTIONS(5205), + [anon_sym_BSLASHnocite] = ACTIONS(5205), + [anon_sym_BSLASHcitet] = ACTIONS(5205), + [anon_sym_BSLASHcitep] = ACTIONS(5205), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteauthor] = ACTIONS(5205), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5205), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitetitle] = ACTIONS(5205), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteyear] = ACTIONS(5205), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5203), + [anon_sym_BSLASHcitedate] = ACTIONS(5205), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5203), + [anon_sym_BSLASHciteurl] = ACTIONS(5205), + [anon_sym_BSLASHfullcite] = ACTIONS(5205), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5205), + [anon_sym_BSLASHcitealt] = ACTIONS(5205), + [anon_sym_BSLASHcitealp] = ACTIONS(5205), + [anon_sym_BSLASHcitetext] = ACTIONS(5205), + [anon_sym_BSLASHparencite] = ACTIONS(5205), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHParencite] = ACTIONS(5205), + [anon_sym_BSLASHfootcite] = ACTIONS(5205), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5205), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5205), + [anon_sym_BSLASHtextcite] = ACTIONS(5205), + [anon_sym_BSLASHTextcite] = ACTIONS(5205), + [anon_sym_BSLASHsmartcite] = ACTIONS(5205), + [anon_sym_BSLASHSmartcite] = ACTIONS(5205), + [anon_sym_BSLASHsupercite] = ACTIONS(5205), + [anon_sym_BSLASHautocite] = ACTIONS(5205), + [anon_sym_BSLASHAutocite] = ACTIONS(5205), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5203), + [anon_sym_BSLASHvolcite] = ACTIONS(5205), + [anon_sym_BSLASHVolcite] = ACTIONS(5205), + [anon_sym_BSLASHpvolcite] = ACTIONS(5205), + [anon_sym_BSLASHPvolcite] = ACTIONS(5205), + [anon_sym_BSLASHfvolcite] = ACTIONS(5205), + [anon_sym_BSLASHftvolcite] = ACTIONS(5205), + [anon_sym_BSLASHsvolcite] = ACTIONS(5205), + [anon_sym_BSLASHSvolcite] = ACTIONS(5205), + [anon_sym_BSLASHtvolcite] = ACTIONS(5205), + [anon_sym_BSLASHTvolcite] = ACTIONS(5205), + [anon_sym_BSLASHavolcite] = ACTIONS(5205), + [anon_sym_BSLASHAvolcite] = ACTIONS(5205), + [anon_sym_BSLASHnotecite] = ACTIONS(5205), + [anon_sym_BSLASHNotecite] = ACTIONS(5205), + [anon_sym_BSLASHpnotecite] = ACTIONS(5205), + [anon_sym_BSLASHPnotecite] = ACTIONS(5205), + [anon_sym_BSLASHfnotecite] = ACTIONS(5205), + [anon_sym_BSLASHlabel] = ACTIONS(5205), + [anon_sym_BSLASHref] = ACTIONS(5205), + [anon_sym_BSLASHeqref] = ACTIONS(5205), + [anon_sym_BSLASHvref] = ACTIONS(5205), + [anon_sym_BSLASHVref] = ACTIONS(5205), + [anon_sym_BSLASHautoref] = ACTIONS(5205), + [anon_sym_BSLASHpageref] = ACTIONS(5205), + [anon_sym_BSLASHcref] = ACTIONS(5205), + [anon_sym_BSLASHCref] = ACTIONS(5205), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnameCref] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5205), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5205), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5205), + [anon_sym_BSLASHlabelcref] = ACTIONS(5205), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange] = ACTIONS(5205), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHCrefrange] = ACTIONS(5205), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5203), + [anon_sym_BSLASHnewlabel] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand] = ACTIONS(5205), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5205), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5205), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5203), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5205), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5203), + [anon_sym_BSLASHdef] = ACTIONS(5205), + [anon_sym_BSLASHlet] = ACTIONS(5205), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5205), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5205), + [anon_sym_BSLASHgls] = ACTIONS(5205), + [anon_sym_BSLASHGls] = ACTIONS(5205), + [anon_sym_BSLASHGLS] = ACTIONS(5205), + [anon_sym_BSLASHglspl] = ACTIONS(5205), + [anon_sym_BSLASHGlspl] = ACTIONS(5205), + [anon_sym_BSLASHGLSpl] = ACTIONS(5205), + [anon_sym_BSLASHglsdisp] = ACTIONS(5205), + [anon_sym_BSLASHglslink] = ACTIONS(5205), + [anon_sym_BSLASHglstext] = ACTIONS(5205), + [anon_sym_BSLASHGlstext] = ACTIONS(5205), + [anon_sym_BSLASHGLStext] = ACTIONS(5205), + [anon_sym_BSLASHglsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5205), + [anon_sym_BSLASHglsplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSplural] = ACTIONS(5205), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5205), + [anon_sym_BSLASHglsname] = ACTIONS(5205), + [anon_sym_BSLASHGlsname] = ACTIONS(5205), + [anon_sym_BSLASHGLSname] = ACTIONS(5205), + [anon_sym_BSLASHglssymbol] = ACTIONS(5205), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5205), + [anon_sym_BSLASHglsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5205), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5205), + [anon_sym_BSLASHglsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5205), + [anon_sym_BSLASHglsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5205), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5205), + [anon_sym_BSLASHglsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5205), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5205), + [anon_sym_BSLASHglsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5205), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5205), + [anon_sym_BSLASHnewacronym] = ACTIONS(5205), + [anon_sym_BSLASHacrshort] = ACTIONS(5205), + [anon_sym_BSLASHAcrshort] = ACTIONS(5205), + [anon_sym_BSLASHACRshort] = ACTIONS(5205), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5205), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5205), + [anon_sym_BSLASHacrlong] = ACTIONS(5205), + [anon_sym_BSLASHAcrlong] = ACTIONS(5205), + [anon_sym_BSLASHACRlong] = ACTIONS(5205), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5205), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5205), + [anon_sym_BSLASHacrfull] = ACTIONS(5205), + [anon_sym_BSLASHAcrfull] = ACTIONS(5205), + [anon_sym_BSLASHACRfull] = ACTIONS(5205), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5205), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5205), + [anon_sym_BSLASHacs] = ACTIONS(5205), + [anon_sym_BSLASHAcs] = ACTIONS(5205), + [anon_sym_BSLASHacsp] = ACTIONS(5205), + [anon_sym_BSLASHAcsp] = ACTIONS(5205), + [anon_sym_BSLASHacl] = ACTIONS(5205), + [anon_sym_BSLASHAcl] = ACTIONS(5205), + [anon_sym_BSLASHaclp] = ACTIONS(5205), + [anon_sym_BSLASHAclp] = ACTIONS(5205), + [anon_sym_BSLASHacf] = ACTIONS(5205), + [anon_sym_BSLASHAcf] = ACTIONS(5205), + [anon_sym_BSLASHacfp] = ACTIONS(5205), + [anon_sym_BSLASHAcfp] = ACTIONS(5205), + [anon_sym_BSLASHac] = ACTIONS(5205), + [anon_sym_BSLASHAc] = ACTIONS(5205), + [anon_sym_BSLASHacp] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5205), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5205), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5205), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5205), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5205), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5205), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5205), + [anon_sym_BSLASHcolor] = ACTIONS(5205), + [anon_sym_BSLASHcolorbox] = ACTIONS(5205), + [anon_sym_BSLASHtextcolor] = ACTIONS(5205), + [anon_sym_BSLASHpagecolor] = ACTIONS(5205), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5205), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5205), }, [1561] = { - [sym_command_name] = ACTIONS(5337), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5337), - [anon_sym_RBRACK] = ACTIONS(5335), - [anon_sym_COMMA] = ACTIONS(5335), - [anon_sym_EQ] = ACTIONS(5335), - [anon_sym_RBRACE] = ACTIONS(5335), - [sym_word] = ACTIONS(5337), - [sym_placeholder] = ACTIONS(5335), - [anon_sym_PLUS] = ACTIONS(5337), - [anon_sym_DASH] = ACTIONS(5337), - [anon_sym_STAR] = ACTIONS(5337), - [anon_sym_SLASH] = ACTIONS(5337), - [anon_sym_CARET] = ACTIONS(5337), - [anon_sym__] = ACTIONS(5337), - [anon_sym_LT] = ACTIONS(5337), - [anon_sym_GT] = ACTIONS(5337), - [anon_sym_BANG] = ACTIONS(5337), - [anon_sym_PIPE] = ACTIONS(5337), - [anon_sym_COLON] = ACTIONS(5337), - [anon_sym_SQUOTE] = ACTIONS(5337), - [anon_sym_BSLASHusepackage] = ACTIONS(5337), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5337), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5337), - [anon_sym_BSLASHinclude] = ACTIONS(5337), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5337), - [anon_sym_BSLASHinput] = ACTIONS(5337), - [anon_sym_BSLASHsubfile] = ACTIONS(5337), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5337), - [anon_sym_BSLASHbibliography] = ACTIONS(5337), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5337), - [anon_sym_BSLASHincludesvg] = ACTIONS(5337), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5337), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5337), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5337), - [anon_sym_BSLASHimport] = ACTIONS(5337), - [anon_sym_BSLASHsubimport] = ACTIONS(5337), - [anon_sym_BSLASHinputfrom] = ACTIONS(5337), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5337), - [anon_sym_BSLASHincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5337), - [anon_sym_BSLASHcaption] = ACTIONS(5337), - [anon_sym_BSLASHcite] = ACTIONS(5337), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCite] = ACTIONS(5337), - [anon_sym_BSLASHnocite] = ACTIONS(5337), - [anon_sym_BSLASHcitet] = ACTIONS(5337), - [anon_sym_BSLASHcitep] = ACTIONS(5337), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteauthor] = ACTIONS(5337), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5337), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitetitle] = ACTIONS(5337), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteyear] = ACTIONS(5337), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5335), - [anon_sym_BSLASHcitedate] = ACTIONS(5337), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5335), - [anon_sym_BSLASHciteurl] = ACTIONS(5337), - [anon_sym_BSLASHfullcite] = ACTIONS(5337), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5337), - [anon_sym_BSLASHcitealt] = ACTIONS(5337), - [anon_sym_BSLASHcitealp] = ACTIONS(5337), - [anon_sym_BSLASHcitetext] = ACTIONS(5337), - [anon_sym_BSLASHparencite] = ACTIONS(5337), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHParencite] = ACTIONS(5337), - [anon_sym_BSLASHfootcite] = ACTIONS(5337), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5337), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5337), - [anon_sym_BSLASHtextcite] = ACTIONS(5337), - [anon_sym_BSLASHTextcite] = ACTIONS(5337), - [anon_sym_BSLASHsmartcite] = ACTIONS(5337), - [anon_sym_BSLASHSmartcite] = ACTIONS(5337), - [anon_sym_BSLASHsupercite] = ACTIONS(5337), - [anon_sym_BSLASHautocite] = ACTIONS(5337), - [anon_sym_BSLASHAutocite] = ACTIONS(5337), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5335), - [anon_sym_BSLASHvolcite] = ACTIONS(5337), - [anon_sym_BSLASHVolcite] = ACTIONS(5337), - [anon_sym_BSLASHpvolcite] = ACTIONS(5337), - [anon_sym_BSLASHPvolcite] = ACTIONS(5337), - [anon_sym_BSLASHfvolcite] = ACTIONS(5337), - [anon_sym_BSLASHftvolcite] = ACTIONS(5337), - [anon_sym_BSLASHsvolcite] = ACTIONS(5337), - [anon_sym_BSLASHSvolcite] = ACTIONS(5337), - [anon_sym_BSLASHtvolcite] = ACTIONS(5337), - [anon_sym_BSLASHTvolcite] = ACTIONS(5337), - [anon_sym_BSLASHavolcite] = ACTIONS(5337), - [anon_sym_BSLASHAvolcite] = ACTIONS(5337), - [anon_sym_BSLASHnotecite] = ACTIONS(5337), - [anon_sym_BSLASHNotecite] = ACTIONS(5337), - [anon_sym_BSLASHpnotecite] = ACTIONS(5337), - [anon_sym_BSLASHPnotecite] = ACTIONS(5337), - [anon_sym_BSLASHfnotecite] = ACTIONS(5337), - [anon_sym_BSLASHlabel] = ACTIONS(5337), - [anon_sym_BSLASHref] = ACTIONS(5337), - [anon_sym_BSLASHeqref] = ACTIONS(5337), - [anon_sym_BSLASHvref] = ACTIONS(5337), - [anon_sym_BSLASHVref] = ACTIONS(5337), - [anon_sym_BSLASHautoref] = ACTIONS(5337), - [anon_sym_BSLASHpageref] = ACTIONS(5337), - [anon_sym_BSLASHcref] = ACTIONS(5337), - [anon_sym_BSLASHCref] = ACTIONS(5337), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnameCref] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5337), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5337), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5337), - [anon_sym_BSLASHlabelcref] = ACTIONS(5337), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange] = ACTIONS(5337), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHCrefrange] = ACTIONS(5337), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5335), - [anon_sym_BSLASHnewlabel] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand] = ACTIONS(5337), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5337), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5337), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5335), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5337), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5335), - [anon_sym_BSLASHdef] = ACTIONS(5337), - [anon_sym_BSLASHlet] = ACTIONS(5337), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5337), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5337), - [anon_sym_BSLASHgls] = ACTIONS(5337), - [anon_sym_BSLASHGls] = ACTIONS(5337), - [anon_sym_BSLASHGLS] = ACTIONS(5337), - [anon_sym_BSLASHglspl] = ACTIONS(5337), - [anon_sym_BSLASHGlspl] = ACTIONS(5337), - [anon_sym_BSLASHGLSpl] = ACTIONS(5337), - [anon_sym_BSLASHglsdisp] = ACTIONS(5337), - [anon_sym_BSLASHglslink] = ACTIONS(5337), - [anon_sym_BSLASHglstext] = ACTIONS(5337), - [anon_sym_BSLASHGlstext] = ACTIONS(5337), - [anon_sym_BSLASHGLStext] = ACTIONS(5337), - [anon_sym_BSLASHglsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5337), - [anon_sym_BSLASHglsplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSplural] = ACTIONS(5337), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5337), - [anon_sym_BSLASHglsname] = ACTIONS(5337), - [anon_sym_BSLASHGlsname] = ACTIONS(5337), - [anon_sym_BSLASHGLSname] = ACTIONS(5337), - [anon_sym_BSLASHglssymbol] = ACTIONS(5337), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5337), - [anon_sym_BSLASHglsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5337), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5337), - [anon_sym_BSLASHglsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5337), - [anon_sym_BSLASHglsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5337), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5337), - [anon_sym_BSLASHglsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5337), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5337), - [anon_sym_BSLASHglsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5337), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5337), - [anon_sym_BSLASHnewacronym] = ACTIONS(5337), - [anon_sym_BSLASHacrshort] = ACTIONS(5337), - [anon_sym_BSLASHAcrshort] = ACTIONS(5337), - [anon_sym_BSLASHACRshort] = ACTIONS(5337), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5337), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5337), - [anon_sym_BSLASHacrlong] = ACTIONS(5337), - [anon_sym_BSLASHAcrlong] = ACTIONS(5337), - [anon_sym_BSLASHACRlong] = ACTIONS(5337), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5337), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5337), - [anon_sym_BSLASHacrfull] = ACTIONS(5337), - [anon_sym_BSLASHAcrfull] = ACTIONS(5337), - [anon_sym_BSLASHACRfull] = ACTIONS(5337), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5337), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5337), - [anon_sym_BSLASHacs] = ACTIONS(5337), - [anon_sym_BSLASHAcs] = ACTIONS(5337), - [anon_sym_BSLASHacsp] = ACTIONS(5337), - [anon_sym_BSLASHAcsp] = ACTIONS(5337), - [anon_sym_BSLASHacl] = ACTIONS(5337), - [anon_sym_BSLASHAcl] = ACTIONS(5337), - [anon_sym_BSLASHaclp] = ACTIONS(5337), - [anon_sym_BSLASHAclp] = ACTIONS(5337), - [anon_sym_BSLASHacf] = ACTIONS(5337), - [anon_sym_BSLASHAcf] = ACTIONS(5337), - [anon_sym_BSLASHacfp] = ACTIONS(5337), - [anon_sym_BSLASHAcfp] = ACTIONS(5337), - [anon_sym_BSLASHac] = ACTIONS(5337), - [anon_sym_BSLASHAc] = ACTIONS(5337), - [anon_sym_BSLASHacp] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5337), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5337), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5337), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5337), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5337), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5337), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5337), - [anon_sym_BSLASHcolor] = ACTIONS(5337), - [anon_sym_BSLASHcolorbox] = ACTIONS(5337), - [anon_sym_BSLASHtextcolor] = ACTIONS(5337), - [anon_sym_BSLASHpagecolor] = ACTIONS(5337), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5337), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5337), + [sym_command_name] = ACTIONS(5277), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5277), + [anon_sym_RBRACK] = ACTIONS(5275), + [anon_sym_COMMA] = ACTIONS(5275), + [anon_sym_EQ] = ACTIONS(5275), + [anon_sym_RBRACE] = ACTIONS(5275), + [sym_word] = ACTIONS(5277), + [sym_placeholder] = ACTIONS(5275), + [anon_sym_PLUS] = ACTIONS(5277), + [anon_sym_DASH] = ACTIONS(5277), + [anon_sym_STAR] = ACTIONS(5277), + [anon_sym_SLASH] = ACTIONS(5277), + [anon_sym_CARET] = ACTIONS(5277), + [anon_sym__] = ACTIONS(5277), + [anon_sym_LT] = ACTIONS(5277), + [anon_sym_GT] = ACTIONS(5277), + [anon_sym_BANG] = ACTIONS(5277), + [anon_sym_PIPE] = ACTIONS(5277), + [anon_sym_COLON] = ACTIONS(5277), + [anon_sym_SQUOTE] = ACTIONS(5277), + [anon_sym_BSLASHusepackage] = ACTIONS(5277), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5277), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5277), + [anon_sym_BSLASHinclude] = ACTIONS(5277), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5277), + [anon_sym_BSLASHinput] = ACTIONS(5277), + [anon_sym_BSLASHsubfile] = ACTIONS(5277), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5277), + [anon_sym_BSLASHbibliography] = ACTIONS(5277), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5277), + [anon_sym_BSLASHincludesvg] = ACTIONS(5277), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5277), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5277), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5277), + [anon_sym_BSLASHimport] = ACTIONS(5277), + [anon_sym_BSLASHsubimport] = ACTIONS(5277), + [anon_sym_BSLASHinputfrom] = ACTIONS(5277), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5277), + [anon_sym_BSLASHincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5277), + [anon_sym_BSLASHcaption] = ACTIONS(5277), + [anon_sym_BSLASHcite] = ACTIONS(5277), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCite] = ACTIONS(5277), + [anon_sym_BSLASHnocite] = ACTIONS(5277), + [anon_sym_BSLASHcitet] = ACTIONS(5277), + [anon_sym_BSLASHcitep] = ACTIONS(5277), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteauthor] = ACTIONS(5277), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5277), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitetitle] = ACTIONS(5277), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteyear] = ACTIONS(5277), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5275), + [anon_sym_BSLASHcitedate] = ACTIONS(5277), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5275), + [anon_sym_BSLASHciteurl] = ACTIONS(5277), + [anon_sym_BSLASHfullcite] = ACTIONS(5277), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5277), + [anon_sym_BSLASHcitealt] = ACTIONS(5277), + [anon_sym_BSLASHcitealp] = ACTIONS(5277), + [anon_sym_BSLASHcitetext] = ACTIONS(5277), + [anon_sym_BSLASHparencite] = ACTIONS(5277), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHParencite] = ACTIONS(5277), + [anon_sym_BSLASHfootcite] = ACTIONS(5277), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5277), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5277), + [anon_sym_BSLASHtextcite] = ACTIONS(5277), + [anon_sym_BSLASHTextcite] = ACTIONS(5277), + [anon_sym_BSLASHsmartcite] = ACTIONS(5277), + [anon_sym_BSLASHSmartcite] = ACTIONS(5277), + [anon_sym_BSLASHsupercite] = ACTIONS(5277), + [anon_sym_BSLASHautocite] = ACTIONS(5277), + [anon_sym_BSLASHAutocite] = ACTIONS(5277), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5275), + [anon_sym_BSLASHvolcite] = ACTIONS(5277), + [anon_sym_BSLASHVolcite] = ACTIONS(5277), + [anon_sym_BSLASHpvolcite] = ACTIONS(5277), + [anon_sym_BSLASHPvolcite] = ACTIONS(5277), + [anon_sym_BSLASHfvolcite] = ACTIONS(5277), + [anon_sym_BSLASHftvolcite] = ACTIONS(5277), + [anon_sym_BSLASHsvolcite] = ACTIONS(5277), + [anon_sym_BSLASHSvolcite] = ACTIONS(5277), + [anon_sym_BSLASHtvolcite] = ACTIONS(5277), + [anon_sym_BSLASHTvolcite] = ACTIONS(5277), + [anon_sym_BSLASHavolcite] = ACTIONS(5277), + [anon_sym_BSLASHAvolcite] = ACTIONS(5277), + [anon_sym_BSLASHnotecite] = ACTIONS(5277), + [anon_sym_BSLASHNotecite] = ACTIONS(5277), + [anon_sym_BSLASHpnotecite] = ACTIONS(5277), + [anon_sym_BSLASHPnotecite] = ACTIONS(5277), + [anon_sym_BSLASHfnotecite] = ACTIONS(5277), + [anon_sym_BSLASHlabel] = ACTIONS(5277), + [anon_sym_BSLASHref] = ACTIONS(5277), + [anon_sym_BSLASHeqref] = ACTIONS(5277), + [anon_sym_BSLASHvref] = ACTIONS(5277), + [anon_sym_BSLASHVref] = ACTIONS(5277), + [anon_sym_BSLASHautoref] = ACTIONS(5277), + [anon_sym_BSLASHpageref] = ACTIONS(5277), + [anon_sym_BSLASHcref] = ACTIONS(5277), + [anon_sym_BSLASHCref] = ACTIONS(5277), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnameCref] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5277), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5277), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5277), + [anon_sym_BSLASHlabelcref] = ACTIONS(5277), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange] = ACTIONS(5277), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHCrefrange] = ACTIONS(5277), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5275), + [anon_sym_BSLASHnewlabel] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand] = ACTIONS(5277), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5277), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5277), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5275), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5277), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5275), + [anon_sym_BSLASHdef] = ACTIONS(5277), + [anon_sym_BSLASHlet] = ACTIONS(5277), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5277), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5277), + [anon_sym_BSLASHgls] = ACTIONS(5277), + [anon_sym_BSLASHGls] = ACTIONS(5277), + [anon_sym_BSLASHGLS] = ACTIONS(5277), + [anon_sym_BSLASHglspl] = ACTIONS(5277), + [anon_sym_BSLASHGlspl] = ACTIONS(5277), + [anon_sym_BSLASHGLSpl] = ACTIONS(5277), + [anon_sym_BSLASHglsdisp] = ACTIONS(5277), + [anon_sym_BSLASHglslink] = ACTIONS(5277), + [anon_sym_BSLASHglstext] = ACTIONS(5277), + [anon_sym_BSLASHGlstext] = ACTIONS(5277), + [anon_sym_BSLASHGLStext] = ACTIONS(5277), + [anon_sym_BSLASHglsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5277), + [anon_sym_BSLASHglsplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSplural] = ACTIONS(5277), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5277), + [anon_sym_BSLASHglsname] = ACTIONS(5277), + [anon_sym_BSLASHGlsname] = ACTIONS(5277), + [anon_sym_BSLASHGLSname] = ACTIONS(5277), + [anon_sym_BSLASHglssymbol] = ACTIONS(5277), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5277), + [anon_sym_BSLASHglsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5277), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5277), + [anon_sym_BSLASHglsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5277), + [anon_sym_BSLASHglsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5277), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5277), + [anon_sym_BSLASHglsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5277), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5277), + [anon_sym_BSLASHglsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5277), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5277), + [anon_sym_BSLASHnewacronym] = ACTIONS(5277), + [anon_sym_BSLASHacrshort] = ACTIONS(5277), + [anon_sym_BSLASHAcrshort] = ACTIONS(5277), + [anon_sym_BSLASHACRshort] = ACTIONS(5277), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5277), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5277), + [anon_sym_BSLASHacrlong] = ACTIONS(5277), + [anon_sym_BSLASHAcrlong] = ACTIONS(5277), + [anon_sym_BSLASHACRlong] = ACTIONS(5277), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5277), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5277), + [anon_sym_BSLASHacrfull] = ACTIONS(5277), + [anon_sym_BSLASHAcrfull] = ACTIONS(5277), + [anon_sym_BSLASHACRfull] = ACTIONS(5277), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5277), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5277), + [anon_sym_BSLASHacs] = ACTIONS(5277), + [anon_sym_BSLASHAcs] = ACTIONS(5277), + [anon_sym_BSLASHacsp] = ACTIONS(5277), + [anon_sym_BSLASHAcsp] = ACTIONS(5277), + [anon_sym_BSLASHacl] = ACTIONS(5277), + [anon_sym_BSLASHAcl] = ACTIONS(5277), + [anon_sym_BSLASHaclp] = ACTIONS(5277), + [anon_sym_BSLASHAclp] = ACTIONS(5277), + [anon_sym_BSLASHacf] = ACTIONS(5277), + [anon_sym_BSLASHAcf] = ACTIONS(5277), + [anon_sym_BSLASHacfp] = ACTIONS(5277), + [anon_sym_BSLASHAcfp] = ACTIONS(5277), + [anon_sym_BSLASHac] = ACTIONS(5277), + [anon_sym_BSLASHAc] = ACTIONS(5277), + [anon_sym_BSLASHacp] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5277), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5277), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5277), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5277), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5277), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5277), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5277), + [anon_sym_BSLASHcolor] = ACTIONS(5277), + [anon_sym_BSLASHcolorbox] = ACTIONS(5277), + [anon_sym_BSLASHtextcolor] = ACTIONS(5277), + [anon_sym_BSLASHpagecolor] = ACTIONS(5277), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5277), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5277), }, [1562] = { - [sym_command_name] = ACTIONS(5333), + [sym_command_name] = ACTIONS(5189), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5333), - [anon_sym_RBRACK] = ACTIONS(5331), - [anon_sym_COMMA] = ACTIONS(5331), - [anon_sym_EQ] = ACTIONS(5331), - [anon_sym_RBRACE] = ACTIONS(5331), - [sym_word] = ACTIONS(5333), - [sym_placeholder] = ACTIONS(5331), - [anon_sym_PLUS] = ACTIONS(5333), - [anon_sym_DASH] = ACTIONS(5333), - [anon_sym_STAR] = ACTIONS(5333), - [anon_sym_SLASH] = ACTIONS(5333), - [anon_sym_CARET] = ACTIONS(5333), - [anon_sym__] = ACTIONS(5333), - [anon_sym_LT] = ACTIONS(5333), - [anon_sym_GT] = ACTIONS(5333), - [anon_sym_BANG] = ACTIONS(5333), - [anon_sym_PIPE] = ACTIONS(5333), - [anon_sym_COLON] = ACTIONS(5333), - [anon_sym_SQUOTE] = ACTIONS(5333), - [anon_sym_BSLASHusepackage] = ACTIONS(5333), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5333), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5333), - [anon_sym_BSLASHinclude] = ACTIONS(5333), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5333), - [anon_sym_BSLASHinput] = ACTIONS(5333), - [anon_sym_BSLASHsubfile] = ACTIONS(5333), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5333), - [anon_sym_BSLASHbibliography] = ACTIONS(5333), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5333), - [anon_sym_BSLASHincludesvg] = ACTIONS(5333), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5333), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5333), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5333), - [anon_sym_BSLASHimport] = ACTIONS(5333), - [anon_sym_BSLASHsubimport] = ACTIONS(5333), - [anon_sym_BSLASHinputfrom] = ACTIONS(5333), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5333), - [anon_sym_BSLASHincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5333), - [anon_sym_BSLASHcaption] = ACTIONS(5333), - [anon_sym_BSLASHcite] = ACTIONS(5333), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCite] = ACTIONS(5333), - [anon_sym_BSLASHnocite] = ACTIONS(5333), - [anon_sym_BSLASHcitet] = ACTIONS(5333), - [anon_sym_BSLASHcitep] = ACTIONS(5333), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteauthor] = ACTIONS(5333), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5333), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitetitle] = ACTIONS(5333), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteyear] = ACTIONS(5333), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5331), - [anon_sym_BSLASHcitedate] = ACTIONS(5333), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5331), - [anon_sym_BSLASHciteurl] = ACTIONS(5333), - [anon_sym_BSLASHfullcite] = ACTIONS(5333), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5333), - [anon_sym_BSLASHcitealt] = ACTIONS(5333), - [anon_sym_BSLASHcitealp] = ACTIONS(5333), - [anon_sym_BSLASHcitetext] = ACTIONS(5333), - [anon_sym_BSLASHparencite] = ACTIONS(5333), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHParencite] = ACTIONS(5333), - [anon_sym_BSLASHfootcite] = ACTIONS(5333), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5333), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5333), - [anon_sym_BSLASHtextcite] = ACTIONS(5333), - [anon_sym_BSLASHTextcite] = ACTIONS(5333), - [anon_sym_BSLASHsmartcite] = ACTIONS(5333), - [anon_sym_BSLASHSmartcite] = ACTIONS(5333), - [anon_sym_BSLASHsupercite] = ACTIONS(5333), - [anon_sym_BSLASHautocite] = ACTIONS(5333), - [anon_sym_BSLASHAutocite] = ACTIONS(5333), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5331), - [anon_sym_BSLASHvolcite] = ACTIONS(5333), - [anon_sym_BSLASHVolcite] = ACTIONS(5333), - [anon_sym_BSLASHpvolcite] = ACTIONS(5333), - [anon_sym_BSLASHPvolcite] = ACTIONS(5333), - [anon_sym_BSLASHfvolcite] = ACTIONS(5333), - [anon_sym_BSLASHftvolcite] = ACTIONS(5333), - [anon_sym_BSLASHsvolcite] = ACTIONS(5333), - [anon_sym_BSLASHSvolcite] = ACTIONS(5333), - [anon_sym_BSLASHtvolcite] = ACTIONS(5333), - [anon_sym_BSLASHTvolcite] = ACTIONS(5333), - [anon_sym_BSLASHavolcite] = ACTIONS(5333), - [anon_sym_BSLASHAvolcite] = ACTIONS(5333), - [anon_sym_BSLASHnotecite] = ACTIONS(5333), - [anon_sym_BSLASHNotecite] = ACTIONS(5333), - [anon_sym_BSLASHpnotecite] = ACTIONS(5333), - [anon_sym_BSLASHPnotecite] = ACTIONS(5333), - [anon_sym_BSLASHfnotecite] = ACTIONS(5333), - [anon_sym_BSLASHlabel] = ACTIONS(5333), - [anon_sym_BSLASHref] = ACTIONS(5333), - [anon_sym_BSLASHeqref] = ACTIONS(5333), - [anon_sym_BSLASHvref] = ACTIONS(5333), - [anon_sym_BSLASHVref] = ACTIONS(5333), - [anon_sym_BSLASHautoref] = ACTIONS(5333), - [anon_sym_BSLASHpageref] = ACTIONS(5333), - [anon_sym_BSLASHcref] = ACTIONS(5333), - [anon_sym_BSLASHCref] = ACTIONS(5333), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnameCref] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5333), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5333), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5333), - [anon_sym_BSLASHlabelcref] = ACTIONS(5333), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange] = ACTIONS(5333), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHCrefrange] = ACTIONS(5333), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5331), - [anon_sym_BSLASHnewlabel] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand] = ACTIONS(5333), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5333), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5333), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5331), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5333), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5331), - [anon_sym_BSLASHdef] = ACTIONS(5333), - [anon_sym_BSLASHlet] = ACTIONS(5333), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5333), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5333), - [anon_sym_BSLASHgls] = ACTIONS(5333), - [anon_sym_BSLASHGls] = ACTIONS(5333), - [anon_sym_BSLASHGLS] = ACTIONS(5333), - [anon_sym_BSLASHglspl] = ACTIONS(5333), - [anon_sym_BSLASHGlspl] = ACTIONS(5333), - [anon_sym_BSLASHGLSpl] = ACTIONS(5333), - [anon_sym_BSLASHglsdisp] = ACTIONS(5333), - [anon_sym_BSLASHglslink] = ACTIONS(5333), - [anon_sym_BSLASHglstext] = ACTIONS(5333), - [anon_sym_BSLASHGlstext] = ACTIONS(5333), - [anon_sym_BSLASHGLStext] = ACTIONS(5333), - [anon_sym_BSLASHglsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5333), - [anon_sym_BSLASHglsplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSplural] = ACTIONS(5333), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5333), - [anon_sym_BSLASHglsname] = ACTIONS(5333), - [anon_sym_BSLASHGlsname] = ACTIONS(5333), - [anon_sym_BSLASHGLSname] = ACTIONS(5333), - [anon_sym_BSLASHglssymbol] = ACTIONS(5333), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5333), - [anon_sym_BSLASHglsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5333), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5333), - [anon_sym_BSLASHglsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5333), - [anon_sym_BSLASHglsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5333), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5333), - [anon_sym_BSLASHglsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5333), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5333), - [anon_sym_BSLASHglsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5333), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5333), - [anon_sym_BSLASHnewacronym] = ACTIONS(5333), - [anon_sym_BSLASHacrshort] = ACTIONS(5333), - [anon_sym_BSLASHAcrshort] = ACTIONS(5333), - [anon_sym_BSLASHACRshort] = ACTIONS(5333), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5333), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5333), - [anon_sym_BSLASHacrlong] = ACTIONS(5333), - [anon_sym_BSLASHAcrlong] = ACTIONS(5333), - [anon_sym_BSLASHACRlong] = ACTIONS(5333), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5333), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5333), - [anon_sym_BSLASHacrfull] = ACTIONS(5333), - [anon_sym_BSLASHAcrfull] = ACTIONS(5333), - [anon_sym_BSLASHACRfull] = ACTIONS(5333), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5333), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5333), - [anon_sym_BSLASHacs] = ACTIONS(5333), - [anon_sym_BSLASHAcs] = ACTIONS(5333), - [anon_sym_BSLASHacsp] = ACTIONS(5333), - [anon_sym_BSLASHAcsp] = ACTIONS(5333), - [anon_sym_BSLASHacl] = ACTIONS(5333), - [anon_sym_BSLASHAcl] = ACTIONS(5333), - [anon_sym_BSLASHaclp] = ACTIONS(5333), - [anon_sym_BSLASHAclp] = ACTIONS(5333), - [anon_sym_BSLASHacf] = ACTIONS(5333), - [anon_sym_BSLASHAcf] = ACTIONS(5333), - [anon_sym_BSLASHacfp] = ACTIONS(5333), - [anon_sym_BSLASHAcfp] = ACTIONS(5333), - [anon_sym_BSLASHac] = ACTIONS(5333), - [anon_sym_BSLASHAc] = ACTIONS(5333), - [anon_sym_BSLASHacp] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5333), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5333), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5333), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5333), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5333), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5333), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5333), - [anon_sym_BSLASHcolor] = ACTIONS(5333), - [anon_sym_BSLASHcolorbox] = ACTIONS(5333), - [anon_sym_BSLASHtextcolor] = ACTIONS(5333), - [anon_sym_BSLASHpagecolor] = ACTIONS(5333), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5333), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5333), + [anon_sym_BSLASHiffalse] = ACTIONS(5189), + [anon_sym_RBRACK] = ACTIONS(5187), + [anon_sym_COMMA] = ACTIONS(5187), + [anon_sym_EQ] = ACTIONS(5187), + [anon_sym_RBRACE] = ACTIONS(5187), + [sym_word] = ACTIONS(5189), + [sym_placeholder] = ACTIONS(5187), + [anon_sym_PLUS] = ACTIONS(5189), + [anon_sym_DASH] = ACTIONS(5189), + [anon_sym_STAR] = ACTIONS(5189), + [anon_sym_SLASH] = ACTIONS(5189), + [anon_sym_CARET] = ACTIONS(5189), + [anon_sym__] = ACTIONS(5189), + [anon_sym_LT] = ACTIONS(5189), + [anon_sym_GT] = ACTIONS(5189), + [anon_sym_BANG] = ACTIONS(5189), + [anon_sym_PIPE] = ACTIONS(5189), + [anon_sym_COLON] = ACTIONS(5189), + [anon_sym_SQUOTE] = ACTIONS(5189), + [anon_sym_BSLASHusepackage] = ACTIONS(5189), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5189), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5189), + [anon_sym_BSLASHinclude] = ACTIONS(5189), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5189), + [anon_sym_BSLASHinput] = ACTIONS(5189), + [anon_sym_BSLASHsubfile] = ACTIONS(5189), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5189), + [anon_sym_BSLASHbibliography] = ACTIONS(5189), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5189), + [anon_sym_BSLASHincludesvg] = ACTIONS(5189), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5189), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5189), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5189), + [anon_sym_BSLASHimport] = ACTIONS(5189), + [anon_sym_BSLASHsubimport] = ACTIONS(5189), + [anon_sym_BSLASHinputfrom] = ACTIONS(5189), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5189), + [anon_sym_BSLASHincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5189), + [anon_sym_BSLASHcaption] = ACTIONS(5189), + [anon_sym_BSLASHcite] = ACTIONS(5189), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCite] = ACTIONS(5189), + [anon_sym_BSLASHnocite] = ACTIONS(5189), + [anon_sym_BSLASHcitet] = ACTIONS(5189), + [anon_sym_BSLASHcitep] = ACTIONS(5189), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteauthor] = ACTIONS(5189), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5189), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitetitle] = ACTIONS(5189), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteyear] = ACTIONS(5189), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5187), + [anon_sym_BSLASHcitedate] = ACTIONS(5189), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5187), + [anon_sym_BSLASHciteurl] = ACTIONS(5189), + [anon_sym_BSLASHfullcite] = ACTIONS(5189), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5189), + [anon_sym_BSLASHcitealt] = ACTIONS(5189), + [anon_sym_BSLASHcitealp] = ACTIONS(5189), + [anon_sym_BSLASHcitetext] = ACTIONS(5189), + [anon_sym_BSLASHparencite] = ACTIONS(5189), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHParencite] = ACTIONS(5189), + [anon_sym_BSLASHfootcite] = ACTIONS(5189), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5189), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5189), + [anon_sym_BSLASHtextcite] = ACTIONS(5189), + [anon_sym_BSLASHTextcite] = ACTIONS(5189), + [anon_sym_BSLASHsmartcite] = ACTIONS(5189), + [anon_sym_BSLASHSmartcite] = ACTIONS(5189), + [anon_sym_BSLASHsupercite] = ACTIONS(5189), + [anon_sym_BSLASHautocite] = ACTIONS(5189), + [anon_sym_BSLASHAutocite] = ACTIONS(5189), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5187), + [anon_sym_BSLASHvolcite] = ACTIONS(5189), + [anon_sym_BSLASHVolcite] = ACTIONS(5189), + [anon_sym_BSLASHpvolcite] = ACTIONS(5189), + [anon_sym_BSLASHPvolcite] = ACTIONS(5189), + [anon_sym_BSLASHfvolcite] = ACTIONS(5189), + [anon_sym_BSLASHftvolcite] = ACTIONS(5189), + [anon_sym_BSLASHsvolcite] = ACTIONS(5189), + [anon_sym_BSLASHSvolcite] = ACTIONS(5189), + [anon_sym_BSLASHtvolcite] = ACTIONS(5189), + [anon_sym_BSLASHTvolcite] = ACTIONS(5189), + [anon_sym_BSLASHavolcite] = ACTIONS(5189), + [anon_sym_BSLASHAvolcite] = ACTIONS(5189), + [anon_sym_BSLASHnotecite] = ACTIONS(5189), + [anon_sym_BSLASHNotecite] = ACTIONS(5189), + [anon_sym_BSLASHpnotecite] = ACTIONS(5189), + [anon_sym_BSLASHPnotecite] = ACTIONS(5189), + [anon_sym_BSLASHfnotecite] = ACTIONS(5189), + [anon_sym_BSLASHlabel] = ACTIONS(5189), + [anon_sym_BSLASHref] = ACTIONS(5189), + [anon_sym_BSLASHeqref] = ACTIONS(5189), + [anon_sym_BSLASHvref] = ACTIONS(5189), + [anon_sym_BSLASHVref] = ACTIONS(5189), + [anon_sym_BSLASHautoref] = ACTIONS(5189), + [anon_sym_BSLASHpageref] = ACTIONS(5189), + [anon_sym_BSLASHcref] = ACTIONS(5189), + [anon_sym_BSLASHCref] = ACTIONS(5189), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnameCref] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5189), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5189), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5189), + [anon_sym_BSLASHlabelcref] = ACTIONS(5189), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange] = ACTIONS(5189), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHCrefrange] = ACTIONS(5189), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5187), + [anon_sym_BSLASHnewlabel] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand] = ACTIONS(5189), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5189), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5189), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5187), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5189), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5187), + [anon_sym_BSLASHdef] = ACTIONS(5189), + [anon_sym_BSLASHlet] = ACTIONS(5189), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5189), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5189), + [anon_sym_BSLASHgls] = ACTIONS(5189), + [anon_sym_BSLASHGls] = ACTIONS(5189), + [anon_sym_BSLASHGLS] = ACTIONS(5189), + [anon_sym_BSLASHglspl] = ACTIONS(5189), + [anon_sym_BSLASHGlspl] = ACTIONS(5189), + [anon_sym_BSLASHGLSpl] = ACTIONS(5189), + [anon_sym_BSLASHglsdisp] = ACTIONS(5189), + [anon_sym_BSLASHglslink] = ACTIONS(5189), + [anon_sym_BSLASHglstext] = ACTIONS(5189), + [anon_sym_BSLASHGlstext] = ACTIONS(5189), + [anon_sym_BSLASHGLStext] = ACTIONS(5189), + [anon_sym_BSLASHglsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5189), + [anon_sym_BSLASHglsplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSplural] = ACTIONS(5189), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5189), + [anon_sym_BSLASHglsname] = ACTIONS(5189), + [anon_sym_BSLASHGlsname] = ACTIONS(5189), + [anon_sym_BSLASHGLSname] = ACTIONS(5189), + [anon_sym_BSLASHglssymbol] = ACTIONS(5189), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5189), + [anon_sym_BSLASHglsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5189), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5189), + [anon_sym_BSLASHglsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5189), + [anon_sym_BSLASHglsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5189), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5189), + [anon_sym_BSLASHglsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5189), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5189), + [anon_sym_BSLASHglsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5189), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5189), + [anon_sym_BSLASHnewacronym] = ACTIONS(5189), + [anon_sym_BSLASHacrshort] = ACTIONS(5189), + [anon_sym_BSLASHAcrshort] = ACTIONS(5189), + [anon_sym_BSLASHACRshort] = ACTIONS(5189), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5189), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5189), + [anon_sym_BSLASHacrlong] = ACTIONS(5189), + [anon_sym_BSLASHAcrlong] = ACTIONS(5189), + [anon_sym_BSLASHACRlong] = ACTIONS(5189), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5189), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5189), + [anon_sym_BSLASHacrfull] = ACTIONS(5189), + [anon_sym_BSLASHAcrfull] = ACTIONS(5189), + [anon_sym_BSLASHACRfull] = ACTIONS(5189), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5189), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5189), + [anon_sym_BSLASHacs] = ACTIONS(5189), + [anon_sym_BSLASHAcs] = ACTIONS(5189), + [anon_sym_BSLASHacsp] = ACTIONS(5189), + [anon_sym_BSLASHAcsp] = ACTIONS(5189), + [anon_sym_BSLASHacl] = ACTIONS(5189), + [anon_sym_BSLASHAcl] = ACTIONS(5189), + [anon_sym_BSLASHaclp] = ACTIONS(5189), + [anon_sym_BSLASHAclp] = ACTIONS(5189), + [anon_sym_BSLASHacf] = ACTIONS(5189), + [anon_sym_BSLASHAcf] = ACTIONS(5189), + [anon_sym_BSLASHacfp] = ACTIONS(5189), + [anon_sym_BSLASHAcfp] = ACTIONS(5189), + [anon_sym_BSLASHac] = ACTIONS(5189), + [anon_sym_BSLASHAc] = ACTIONS(5189), + [anon_sym_BSLASHacp] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5189), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5189), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5189), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5189), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5189), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5189), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5189), + [anon_sym_BSLASHcolor] = ACTIONS(5189), + [anon_sym_BSLASHcolorbox] = ACTIONS(5189), + [anon_sym_BSLASHtextcolor] = ACTIONS(5189), + [anon_sym_BSLASHpagecolor] = ACTIONS(5189), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5189), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5189), }, [1563] = { - [sym_command_name] = ACTIONS(4971), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(4971), - [anon_sym_RBRACK] = ACTIONS(4969), - [anon_sym_COMMA] = ACTIONS(4969), - [anon_sym_EQ] = ACTIONS(4969), - [anon_sym_RBRACE] = ACTIONS(4969), - [sym_word] = ACTIONS(4971), - [sym_placeholder] = ACTIONS(4969), - [anon_sym_PLUS] = ACTIONS(4971), - [anon_sym_DASH] = ACTIONS(4971), - [anon_sym_STAR] = ACTIONS(4971), - [anon_sym_SLASH] = ACTIONS(4971), - [anon_sym_CARET] = ACTIONS(4971), - [anon_sym__] = ACTIONS(4971), - [anon_sym_LT] = ACTIONS(4971), - [anon_sym_GT] = ACTIONS(4971), - [anon_sym_BANG] = ACTIONS(4971), - [anon_sym_PIPE] = ACTIONS(4971), - [anon_sym_COLON] = ACTIONS(4971), - [anon_sym_SQUOTE] = ACTIONS(4971), - [anon_sym_BSLASHusepackage] = ACTIONS(4971), - [anon_sym_BSLASHRequirePackage] = ACTIONS(4971), - [anon_sym_BSLASHdocumentclass] = ACTIONS(4971), - [anon_sym_BSLASHinclude] = ACTIONS(4971), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(4971), - [anon_sym_BSLASHinput] = ACTIONS(4971), - [anon_sym_BSLASHsubfile] = ACTIONS(4971), - [anon_sym_BSLASHaddbibresource] = ACTIONS(4971), - [anon_sym_BSLASHbibliography] = ACTIONS(4971), - [anon_sym_BSLASHincludegraphics] = ACTIONS(4971), - [anon_sym_BSLASHincludesvg] = ACTIONS(4971), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(4971), - [anon_sym_BSLASHverbatiminput] = ACTIONS(4971), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(4971), - [anon_sym_BSLASHimport] = ACTIONS(4971), - [anon_sym_BSLASHsubimport] = ACTIONS(4971), - [anon_sym_BSLASHinputfrom] = ACTIONS(4971), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(4971), - [anon_sym_BSLASHincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(4971), - [anon_sym_BSLASHcaption] = ACTIONS(4971), - [anon_sym_BSLASHcite] = ACTIONS(4971), - [anon_sym_BSLASHcite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCite] = ACTIONS(4971), - [anon_sym_BSLASHnocite] = ACTIONS(4971), - [anon_sym_BSLASHcitet] = ACTIONS(4971), - [anon_sym_BSLASHcitep] = ACTIONS(4971), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteauthor] = ACTIONS(4971), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCiteauthor] = ACTIONS(4971), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitetitle] = ACTIONS(4971), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteyear] = ACTIONS(4971), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4969), - [anon_sym_BSLASHcitedate] = ACTIONS(4971), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4969), - [anon_sym_BSLASHciteurl] = ACTIONS(4971), - [anon_sym_BSLASHfullcite] = ACTIONS(4971), - [anon_sym_BSLASHciteyearpar] = ACTIONS(4971), - [anon_sym_BSLASHcitealt] = ACTIONS(4971), - [anon_sym_BSLASHcitealp] = ACTIONS(4971), - [anon_sym_BSLASHcitetext] = ACTIONS(4971), - [anon_sym_BSLASHparencite] = ACTIONS(4971), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHParencite] = ACTIONS(4971), - [anon_sym_BSLASHfootcite] = ACTIONS(4971), - [anon_sym_BSLASHfootfullcite] = ACTIONS(4971), - [anon_sym_BSLASHfootcitetext] = ACTIONS(4971), - [anon_sym_BSLASHtextcite] = ACTIONS(4971), - [anon_sym_BSLASHTextcite] = ACTIONS(4971), - [anon_sym_BSLASHsmartcite] = ACTIONS(4971), - [anon_sym_BSLASHSmartcite] = ACTIONS(4971), - [anon_sym_BSLASHsupercite] = ACTIONS(4971), - [anon_sym_BSLASHautocite] = ACTIONS(4971), - [anon_sym_BSLASHAutocite] = ACTIONS(4971), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4969), - [anon_sym_BSLASHvolcite] = ACTIONS(4971), - [anon_sym_BSLASHVolcite] = ACTIONS(4971), - [anon_sym_BSLASHpvolcite] = ACTIONS(4971), - [anon_sym_BSLASHPvolcite] = ACTIONS(4971), - [anon_sym_BSLASHfvolcite] = ACTIONS(4971), - [anon_sym_BSLASHftvolcite] = ACTIONS(4971), - [anon_sym_BSLASHsvolcite] = ACTIONS(4971), - [anon_sym_BSLASHSvolcite] = ACTIONS(4971), - [anon_sym_BSLASHtvolcite] = ACTIONS(4971), - [anon_sym_BSLASHTvolcite] = ACTIONS(4971), - [anon_sym_BSLASHavolcite] = ACTIONS(4971), - [anon_sym_BSLASHAvolcite] = ACTIONS(4971), - [anon_sym_BSLASHnotecite] = ACTIONS(4971), - [anon_sym_BSLASHNotecite] = ACTIONS(4971), - [anon_sym_BSLASHpnotecite] = ACTIONS(4971), - [anon_sym_BSLASHPnotecite] = ACTIONS(4971), - [anon_sym_BSLASHfnotecite] = ACTIONS(4971), - [anon_sym_BSLASHlabel] = ACTIONS(4971), - [anon_sym_BSLASHref] = ACTIONS(4971), - [anon_sym_BSLASHeqref] = ACTIONS(4971), - [anon_sym_BSLASHvref] = ACTIONS(4971), - [anon_sym_BSLASHVref] = ACTIONS(4971), - [anon_sym_BSLASHautoref] = ACTIONS(4971), - [anon_sym_BSLASHpageref] = ACTIONS(4971), - [anon_sym_BSLASHcref] = ACTIONS(4971), - [anon_sym_BSLASHCref] = ACTIONS(4971), - [anon_sym_BSLASHcref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCref_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnameCref] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecref] = ACTIONS(4971), - [anon_sym_BSLASHnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHnameCrefs] = ACTIONS(4971), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4971), - [anon_sym_BSLASHlabelcref] = ACTIONS(4971), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange] = ACTIONS(4971), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHCrefrange] = ACTIONS(4971), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4969), - [anon_sym_BSLASHnewlabel] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand] = ACTIONS(4971), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHrenewcommand] = ACTIONS(4971), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4971), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4969), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4971), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4969), - [anon_sym_BSLASHdef] = ACTIONS(4971), - [anon_sym_BSLASHlet] = ACTIONS(4971), - [anon_sym_BSLASHnewenvironment] = ACTIONS(4971), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4971), - [anon_sym_BSLASHgls] = ACTIONS(4971), - [anon_sym_BSLASHGls] = ACTIONS(4971), - [anon_sym_BSLASHGLS] = ACTIONS(4971), - [anon_sym_BSLASHglspl] = ACTIONS(4971), - [anon_sym_BSLASHGlspl] = ACTIONS(4971), - [anon_sym_BSLASHGLSpl] = ACTIONS(4971), - [anon_sym_BSLASHglsdisp] = ACTIONS(4971), - [anon_sym_BSLASHglslink] = ACTIONS(4971), - [anon_sym_BSLASHglstext] = ACTIONS(4971), - [anon_sym_BSLASHGlstext] = ACTIONS(4971), - [anon_sym_BSLASHGLStext] = ACTIONS(4971), - [anon_sym_BSLASHglsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirst] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirst] = ACTIONS(4971), - [anon_sym_BSLASHglsplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSplural] = ACTIONS(4971), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4971), - [anon_sym_BSLASHglsname] = ACTIONS(4971), - [anon_sym_BSLASHGlsname] = ACTIONS(4971), - [anon_sym_BSLASHGLSname] = ACTIONS(4971), - [anon_sym_BSLASHglssymbol] = ACTIONS(4971), - [anon_sym_BSLASHGlssymbol] = ACTIONS(4971), - [anon_sym_BSLASHglsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGlsdesc] = ACTIONS(4971), - [anon_sym_BSLASHGLSdesc] = ACTIONS(4971), - [anon_sym_BSLASHglsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseri] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseri] = ACTIONS(4971), - [anon_sym_BSLASHglsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(4971), - [anon_sym_BSLASHglsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(4971), - [anon_sym_BSLASHglsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGlsuserv] = ACTIONS(4971), - [anon_sym_BSLASHGLSuserv] = ACTIONS(4971), - [anon_sym_BSLASHglsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGlsuservi] = ACTIONS(4971), - [anon_sym_BSLASHGLSuservi] = ACTIONS(4971), - [anon_sym_BSLASHnewacronym] = ACTIONS(4971), - [anon_sym_BSLASHacrshort] = ACTIONS(4971), - [anon_sym_BSLASHAcrshort] = ACTIONS(4971), - [anon_sym_BSLASHACRshort] = ACTIONS(4971), - [anon_sym_BSLASHacrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(4971), - [anon_sym_BSLASHACRshortpl] = ACTIONS(4971), - [anon_sym_BSLASHacrlong] = ACTIONS(4971), - [anon_sym_BSLASHAcrlong] = ACTIONS(4971), - [anon_sym_BSLASHACRlong] = ACTIONS(4971), - [anon_sym_BSLASHacrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(4971), - [anon_sym_BSLASHACRlongpl] = ACTIONS(4971), - [anon_sym_BSLASHacrfull] = ACTIONS(4971), - [anon_sym_BSLASHAcrfull] = ACTIONS(4971), - [anon_sym_BSLASHACRfull] = ACTIONS(4971), - [anon_sym_BSLASHacrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(4971), - [anon_sym_BSLASHACRfullpl] = ACTIONS(4971), - [anon_sym_BSLASHacs] = ACTIONS(4971), - [anon_sym_BSLASHAcs] = ACTIONS(4971), - [anon_sym_BSLASHacsp] = ACTIONS(4971), - [anon_sym_BSLASHAcsp] = ACTIONS(4971), - [anon_sym_BSLASHacl] = ACTIONS(4971), - [anon_sym_BSLASHAcl] = ACTIONS(4971), - [anon_sym_BSLASHaclp] = ACTIONS(4971), - [anon_sym_BSLASHAclp] = ACTIONS(4971), - [anon_sym_BSLASHacf] = ACTIONS(4971), - [anon_sym_BSLASHAcf] = ACTIONS(4971), - [anon_sym_BSLASHacfp] = ACTIONS(4971), - [anon_sym_BSLASHAcfp] = ACTIONS(4971), - [anon_sym_BSLASHac] = ACTIONS(4971), - [anon_sym_BSLASHAc] = ACTIONS(4971), - [anon_sym_BSLASHacp] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(4971), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(4971), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4971), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4971), - [anon_sym_BSLASHnewtheorem] = ACTIONS(4971), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolor] = ACTIONS(4971), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(4971), - [anon_sym_BSLASHcolor] = ACTIONS(4971), - [anon_sym_BSLASHcolorbox] = ACTIONS(4971), - [anon_sym_BSLASHtextcolor] = ACTIONS(4971), - [anon_sym_BSLASHpagecolor] = ACTIONS(4971), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(4971), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4971), - }, - [1564] = { - [sym_command_name] = ACTIONS(5271), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5271), - [anon_sym_RBRACK] = ACTIONS(5269), - [anon_sym_COMMA] = ACTIONS(5269), - [anon_sym_EQ] = ACTIONS(5269), - [anon_sym_RBRACE] = ACTIONS(5269), - [sym_word] = ACTIONS(5271), - [sym_placeholder] = ACTIONS(5269), - [anon_sym_PLUS] = ACTIONS(5271), - [anon_sym_DASH] = ACTIONS(5271), - [anon_sym_STAR] = ACTIONS(5271), - [anon_sym_SLASH] = ACTIONS(5271), - [anon_sym_CARET] = ACTIONS(5271), - [anon_sym__] = ACTIONS(5271), - [anon_sym_LT] = ACTIONS(5271), - [anon_sym_GT] = ACTIONS(5271), - [anon_sym_BANG] = ACTIONS(5271), - [anon_sym_PIPE] = ACTIONS(5271), - [anon_sym_COLON] = ACTIONS(5271), - [anon_sym_SQUOTE] = ACTIONS(5271), - [anon_sym_BSLASHusepackage] = ACTIONS(5271), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5271), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5271), - [anon_sym_BSLASHinclude] = ACTIONS(5271), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5271), - [anon_sym_BSLASHinput] = ACTIONS(5271), - [anon_sym_BSLASHsubfile] = ACTIONS(5271), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5271), - [anon_sym_BSLASHbibliography] = ACTIONS(5271), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5271), - [anon_sym_BSLASHincludesvg] = ACTIONS(5271), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5271), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5271), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5271), - [anon_sym_BSLASHimport] = ACTIONS(5271), - [anon_sym_BSLASHsubimport] = ACTIONS(5271), - [anon_sym_BSLASHinputfrom] = ACTIONS(5271), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5271), - [anon_sym_BSLASHincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5271), - [anon_sym_BSLASHcaption] = ACTIONS(5271), - [anon_sym_BSLASHcite] = ACTIONS(5271), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCite] = ACTIONS(5271), - [anon_sym_BSLASHnocite] = ACTIONS(5271), - [anon_sym_BSLASHcitet] = ACTIONS(5271), - [anon_sym_BSLASHcitep] = ACTIONS(5271), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteauthor] = ACTIONS(5271), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5271), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitetitle] = ACTIONS(5271), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteyear] = ACTIONS(5271), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5269), - [anon_sym_BSLASHcitedate] = ACTIONS(5271), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5269), - [anon_sym_BSLASHciteurl] = ACTIONS(5271), - [anon_sym_BSLASHfullcite] = ACTIONS(5271), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5271), - [anon_sym_BSLASHcitealt] = ACTIONS(5271), - [anon_sym_BSLASHcitealp] = ACTIONS(5271), - [anon_sym_BSLASHcitetext] = ACTIONS(5271), - [anon_sym_BSLASHparencite] = ACTIONS(5271), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHParencite] = ACTIONS(5271), - [anon_sym_BSLASHfootcite] = ACTIONS(5271), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5271), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5271), - [anon_sym_BSLASHtextcite] = ACTIONS(5271), - [anon_sym_BSLASHTextcite] = ACTIONS(5271), - [anon_sym_BSLASHsmartcite] = ACTIONS(5271), - [anon_sym_BSLASHSmartcite] = ACTIONS(5271), - [anon_sym_BSLASHsupercite] = ACTIONS(5271), - [anon_sym_BSLASHautocite] = ACTIONS(5271), - [anon_sym_BSLASHAutocite] = ACTIONS(5271), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5269), - [anon_sym_BSLASHvolcite] = ACTIONS(5271), - [anon_sym_BSLASHVolcite] = ACTIONS(5271), - [anon_sym_BSLASHpvolcite] = ACTIONS(5271), - [anon_sym_BSLASHPvolcite] = ACTIONS(5271), - [anon_sym_BSLASHfvolcite] = ACTIONS(5271), - [anon_sym_BSLASHftvolcite] = ACTIONS(5271), - [anon_sym_BSLASHsvolcite] = ACTIONS(5271), - [anon_sym_BSLASHSvolcite] = ACTIONS(5271), - [anon_sym_BSLASHtvolcite] = ACTIONS(5271), - [anon_sym_BSLASHTvolcite] = ACTIONS(5271), - [anon_sym_BSLASHavolcite] = ACTIONS(5271), - [anon_sym_BSLASHAvolcite] = ACTIONS(5271), - [anon_sym_BSLASHnotecite] = ACTIONS(5271), - [anon_sym_BSLASHNotecite] = ACTIONS(5271), - [anon_sym_BSLASHpnotecite] = ACTIONS(5271), - [anon_sym_BSLASHPnotecite] = ACTIONS(5271), - [anon_sym_BSLASHfnotecite] = ACTIONS(5271), - [anon_sym_BSLASHlabel] = ACTIONS(5271), - [anon_sym_BSLASHref] = ACTIONS(5271), - [anon_sym_BSLASHeqref] = ACTIONS(5271), - [anon_sym_BSLASHvref] = ACTIONS(5271), - [anon_sym_BSLASHVref] = ACTIONS(5271), - [anon_sym_BSLASHautoref] = ACTIONS(5271), - [anon_sym_BSLASHpageref] = ACTIONS(5271), - [anon_sym_BSLASHcref] = ACTIONS(5271), - [anon_sym_BSLASHCref] = ACTIONS(5271), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnameCref] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5271), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5271), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5271), - [anon_sym_BSLASHlabelcref] = ACTIONS(5271), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange] = ACTIONS(5271), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHCrefrange] = ACTIONS(5271), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5269), - [anon_sym_BSLASHnewlabel] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand] = ACTIONS(5271), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5271), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5271), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5269), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5271), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5269), - [anon_sym_BSLASHdef] = ACTIONS(5271), - [anon_sym_BSLASHlet] = ACTIONS(5271), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5271), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5271), - [anon_sym_BSLASHgls] = ACTIONS(5271), - [anon_sym_BSLASHGls] = ACTIONS(5271), - [anon_sym_BSLASHGLS] = ACTIONS(5271), - [anon_sym_BSLASHglspl] = ACTIONS(5271), - [anon_sym_BSLASHGlspl] = ACTIONS(5271), - [anon_sym_BSLASHGLSpl] = ACTIONS(5271), - [anon_sym_BSLASHglsdisp] = ACTIONS(5271), - [anon_sym_BSLASHglslink] = ACTIONS(5271), - [anon_sym_BSLASHglstext] = ACTIONS(5271), - [anon_sym_BSLASHGlstext] = ACTIONS(5271), - [anon_sym_BSLASHGLStext] = ACTIONS(5271), - [anon_sym_BSLASHglsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5271), - [anon_sym_BSLASHglsplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSplural] = ACTIONS(5271), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5271), - [anon_sym_BSLASHglsname] = ACTIONS(5271), - [anon_sym_BSLASHGlsname] = ACTIONS(5271), - [anon_sym_BSLASHGLSname] = ACTIONS(5271), - [anon_sym_BSLASHglssymbol] = ACTIONS(5271), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5271), - [anon_sym_BSLASHglsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5271), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5271), - [anon_sym_BSLASHglsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5271), - [anon_sym_BSLASHglsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5271), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5271), - [anon_sym_BSLASHglsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5271), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5271), - [anon_sym_BSLASHglsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5271), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5271), - [anon_sym_BSLASHnewacronym] = ACTIONS(5271), - [anon_sym_BSLASHacrshort] = ACTIONS(5271), - [anon_sym_BSLASHAcrshort] = ACTIONS(5271), - [anon_sym_BSLASHACRshort] = ACTIONS(5271), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5271), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5271), - [anon_sym_BSLASHacrlong] = ACTIONS(5271), - [anon_sym_BSLASHAcrlong] = ACTIONS(5271), - [anon_sym_BSLASHACRlong] = ACTIONS(5271), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5271), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5271), - [anon_sym_BSLASHacrfull] = ACTIONS(5271), - [anon_sym_BSLASHAcrfull] = ACTIONS(5271), - [anon_sym_BSLASHACRfull] = ACTIONS(5271), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5271), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5271), - [anon_sym_BSLASHacs] = ACTIONS(5271), - [anon_sym_BSLASHAcs] = ACTIONS(5271), - [anon_sym_BSLASHacsp] = ACTIONS(5271), - [anon_sym_BSLASHAcsp] = ACTIONS(5271), - [anon_sym_BSLASHacl] = ACTIONS(5271), - [anon_sym_BSLASHAcl] = ACTIONS(5271), - [anon_sym_BSLASHaclp] = ACTIONS(5271), - [anon_sym_BSLASHAclp] = ACTIONS(5271), - [anon_sym_BSLASHacf] = ACTIONS(5271), - [anon_sym_BSLASHAcf] = ACTIONS(5271), - [anon_sym_BSLASHacfp] = ACTIONS(5271), - [anon_sym_BSLASHAcfp] = ACTIONS(5271), - [anon_sym_BSLASHac] = ACTIONS(5271), - [anon_sym_BSLASHAc] = ACTIONS(5271), - [anon_sym_BSLASHacp] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5271), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5271), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5271), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5271), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5271), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5271), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5271), - [anon_sym_BSLASHcolor] = ACTIONS(5271), - [anon_sym_BSLASHcolorbox] = ACTIONS(5271), - [anon_sym_BSLASHtextcolor] = ACTIONS(5271), - [anon_sym_BSLASHpagecolor] = ACTIONS(5271), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5271), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5271), - }, - [1565] = { - [sym_command_name] = ACTIONS(5321), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5321), - [anon_sym_RBRACK] = ACTIONS(5319), - [anon_sym_COMMA] = ACTIONS(5319), - [anon_sym_EQ] = ACTIONS(5319), - [anon_sym_RBRACE] = ACTIONS(5319), - [sym_word] = ACTIONS(5321), - [sym_placeholder] = ACTIONS(5319), - [anon_sym_PLUS] = ACTIONS(5321), - [anon_sym_DASH] = ACTIONS(5321), - [anon_sym_STAR] = ACTIONS(5321), - [anon_sym_SLASH] = ACTIONS(5321), - [anon_sym_CARET] = ACTIONS(5321), - [anon_sym__] = ACTIONS(5321), - [anon_sym_LT] = ACTIONS(5321), - [anon_sym_GT] = ACTIONS(5321), - [anon_sym_BANG] = ACTIONS(5321), - [anon_sym_PIPE] = ACTIONS(5321), - [anon_sym_COLON] = ACTIONS(5321), - [anon_sym_SQUOTE] = ACTIONS(5321), - [anon_sym_BSLASHusepackage] = ACTIONS(5321), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5321), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5321), - [anon_sym_BSLASHinclude] = ACTIONS(5321), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5321), - [anon_sym_BSLASHinput] = ACTIONS(5321), - [anon_sym_BSLASHsubfile] = ACTIONS(5321), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5321), - [anon_sym_BSLASHbibliography] = ACTIONS(5321), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5321), - [anon_sym_BSLASHincludesvg] = ACTIONS(5321), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5321), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5321), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5321), - [anon_sym_BSLASHimport] = ACTIONS(5321), - [anon_sym_BSLASHsubimport] = ACTIONS(5321), - [anon_sym_BSLASHinputfrom] = ACTIONS(5321), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5321), - [anon_sym_BSLASHincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5321), - [anon_sym_BSLASHcaption] = ACTIONS(5321), - [anon_sym_BSLASHcite] = ACTIONS(5321), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCite] = ACTIONS(5321), - [anon_sym_BSLASHnocite] = ACTIONS(5321), - [anon_sym_BSLASHcitet] = ACTIONS(5321), - [anon_sym_BSLASHcitep] = ACTIONS(5321), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteauthor] = ACTIONS(5321), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5321), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitetitle] = ACTIONS(5321), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteyear] = ACTIONS(5321), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5319), - [anon_sym_BSLASHcitedate] = ACTIONS(5321), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5319), - [anon_sym_BSLASHciteurl] = ACTIONS(5321), - [anon_sym_BSLASHfullcite] = ACTIONS(5321), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5321), - [anon_sym_BSLASHcitealt] = ACTIONS(5321), - [anon_sym_BSLASHcitealp] = ACTIONS(5321), - [anon_sym_BSLASHcitetext] = ACTIONS(5321), - [anon_sym_BSLASHparencite] = ACTIONS(5321), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHParencite] = ACTIONS(5321), - [anon_sym_BSLASHfootcite] = ACTIONS(5321), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5321), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5321), - [anon_sym_BSLASHtextcite] = ACTIONS(5321), - [anon_sym_BSLASHTextcite] = ACTIONS(5321), - [anon_sym_BSLASHsmartcite] = ACTIONS(5321), - [anon_sym_BSLASHSmartcite] = ACTIONS(5321), - [anon_sym_BSLASHsupercite] = ACTIONS(5321), - [anon_sym_BSLASHautocite] = ACTIONS(5321), - [anon_sym_BSLASHAutocite] = ACTIONS(5321), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5319), - [anon_sym_BSLASHvolcite] = ACTIONS(5321), - [anon_sym_BSLASHVolcite] = ACTIONS(5321), - [anon_sym_BSLASHpvolcite] = ACTIONS(5321), - [anon_sym_BSLASHPvolcite] = ACTIONS(5321), - [anon_sym_BSLASHfvolcite] = ACTIONS(5321), - [anon_sym_BSLASHftvolcite] = ACTIONS(5321), - [anon_sym_BSLASHsvolcite] = ACTIONS(5321), - [anon_sym_BSLASHSvolcite] = ACTIONS(5321), - [anon_sym_BSLASHtvolcite] = ACTIONS(5321), - [anon_sym_BSLASHTvolcite] = ACTIONS(5321), - [anon_sym_BSLASHavolcite] = ACTIONS(5321), - [anon_sym_BSLASHAvolcite] = ACTIONS(5321), - [anon_sym_BSLASHnotecite] = ACTIONS(5321), - [anon_sym_BSLASHNotecite] = ACTIONS(5321), - [anon_sym_BSLASHpnotecite] = ACTIONS(5321), - [anon_sym_BSLASHPnotecite] = ACTIONS(5321), - [anon_sym_BSLASHfnotecite] = ACTIONS(5321), - [anon_sym_BSLASHlabel] = ACTIONS(5321), - [anon_sym_BSLASHref] = ACTIONS(5321), - [anon_sym_BSLASHeqref] = ACTIONS(5321), - [anon_sym_BSLASHvref] = ACTIONS(5321), - [anon_sym_BSLASHVref] = ACTIONS(5321), - [anon_sym_BSLASHautoref] = ACTIONS(5321), - [anon_sym_BSLASHpageref] = ACTIONS(5321), - [anon_sym_BSLASHcref] = ACTIONS(5321), - [anon_sym_BSLASHCref] = ACTIONS(5321), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnameCref] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5321), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5321), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5321), - [anon_sym_BSLASHlabelcref] = ACTIONS(5321), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange] = ACTIONS(5321), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHCrefrange] = ACTIONS(5321), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5319), - [anon_sym_BSLASHnewlabel] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand] = ACTIONS(5321), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5321), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5321), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5319), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5321), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5319), - [anon_sym_BSLASHdef] = ACTIONS(5321), - [anon_sym_BSLASHlet] = ACTIONS(5321), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5321), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5321), - [anon_sym_BSLASHgls] = ACTIONS(5321), - [anon_sym_BSLASHGls] = ACTIONS(5321), - [anon_sym_BSLASHGLS] = ACTIONS(5321), - [anon_sym_BSLASHglspl] = ACTIONS(5321), - [anon_sym_BSLASHGlspl] = ACTIONS(5321), - [anon_sym_BSLASHGLSpl] = ACTIONS(5321), - [anon_sym_BSLASHglsdisp] = ACTIONS(5321), - [anon_sym_BSLASHglslink] = ACTIONS(5321), - [anon_sym_BSLASHglstext] = ACTIONS(5321), - [anon_sym_BSLASHGlstext] = ACTIONS(5321), - [anon_sym_BSLASHGLStext] = ACTIONS(5321), - [anon_sym_BSLASHglsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5321), - [anon_sym_BSLASHglsplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSplural] = ACTIONS(5321), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5321), - [anon_sym_BSLASHglsname] = ACTIONS(5321), - [anon_sym_BSLASHGlsname] = ACTIONS(5321), - [anon_sym_BSLASHGLSname] = ACTIONS(5321), - [anon_sym_BSLASHglssymbol] = ACTIONS(5321), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5321), - [anon_sym_BSLASHglsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5321), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5321), - [anon_sym_BSLASHglsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5321), - [anon_sym_BSLASHglsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5321), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5321), - [anon_sym_BSLASHglsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5321), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5321), - [anon_sym_BSLASHglsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5321), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5321), - [anon_sym_BSLASHnewacronym] = ACTIONS(5321), - [anon_sym_BSLASHacrshort] = ACTIONS(5321), - [anon_sym_BSLASHAcrshort] = ACTIONS(5321), - [anon_sym_BSLASHACRshort] = ACTIONS(5321), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5321), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5321), - [anon_sym_BSLASHacrlong] = ACTIONS(5321), - [anon_sym_BSLASHAcrlong] = ACTIONS(5321), - [anon_sym_BSLASHACRlong] = ACTIONS(5321), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5321), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5321), - [anon_sym_BSLASHacrfull] = ACTIONS(5321), - [anon_sym_BSLASHAcrfull] = ACTIONS(5321), - [anon_sym_BSLASHACRfull] = ACTIONS(5321), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5321), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5321), - [anon_sym_BSLASHacs] = ACTIONS(5321), - [anon_sym_BSLASHAcs] = ACTIONS(5321), - [anon_sym_BSLASHacsp] = ACTIONS(5321), - [anon_sym_BSLASHAcsp] = ACTIONS(5321), - [anon_sym_BSLASHacl] = ACTIONS(5321), - [anon_sym_BSLASHAcl] = ACTIONS(5321), - [anon_sym_BSLASHaclp] = ACTIONS(5321), - [anon_sym_BSLASHAclp] = ACTIONS(5321), - [anon_sym_BSLASHacf] = ACTIONS(5321), - [anon_sym_BSLASHAcf] = ACTIONS(5321), - [anon_sym_BSLASHacfp] = ACTIONS(5321), - [anon_sym_BSLASHAcfp] = ACTIONS(5321), - [anon_sym_BSLASHac] = ACTIONS(5321), - [anon_sym_BSLASHAc] = ACTIONS(5321), - [anon_sym_BSLASHacp] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5321), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5321), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5321), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5321), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5321), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5321), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5321), - [anon_sym_BSLASHcolor] = ACTIONS(5321), - [anon_sym_BSLASHcolorbox] = ACTIONS(5321), - [anon_sym_BSLASHtextcolor] = ACTIONS(5321), - [anon_sym_BSLASHpagecolor] = ACTIONS(5321), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5321), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5321), - }, - [1566] = { - [sym_command_name] = ACTIONS(5305), + [sym_command_name] = ACTIONS(4995), [sym__whitespace] = ACTIONS(3), [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5305), - [anon_sym_RBRACK] = ACTIONS(5303), - [anon_sym_COMMA] = ACTIONS(5303), - [anon_sym_EQ] = ACTIONS(5303), - [anon_sym_RBRACE] = ACTIONS(5303), - [sym_word] = ACTIONS(5305), - [sym_placeholder] = ACTIONS(5303), - [anon_sym_PLUS] = ACTIONS(5305), - [anon_sym_DASH] = ACTIONS(5305), - [anon_sym_STAR] = ACTIONS(5305), - [anon_sym_SLASH] = ACTIONS(5305), - [anon_sym_CARET] = ACTIONS(5305), - [anon_sym__] = ACTIONS(5305), - [anon_sym_LT] = ACTIONS(5305), - [anon_sym_GT] = ACTIONS(5305), - [anon_sym_BANG] = ACTIONS(5305), - [anon_sym_PIPE] = ACTIONS(5305), - [anon_sym_COLON] = ACTIONS(5305), - [anon_sym_SQUOTE] = ACTIONS(5305), - [anon_sym_BSLASHusepackage] = ACTIONS(5305), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5305), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5305), - [anon_sym_BSLASHinclude] = ACTIONS(5305), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5305), - [anon_sym_BSLASHinput] = ACTIONS(5305), - [anon_sym_BSLASHsubfile] = ACTIONS(5305), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5305), - [anon_sym_BSLASHbibliography] = ACTIONS(5305), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5305), - [anon_sym_BSLASHincludesvg] = ACTIONS(5305), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5305), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5305), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5305), - [anon_sym_BSLASHimport] = ACTIONS(5305), - [anon_sym_BSLASHsubimport] = ACTIONS(5305), - [anon_sym_BSLASHinputfrom] = ACTIONS(5305), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5305), - [anon_sym_BSLASHincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5305), - [anon_sym_BSLASHcaption] = ACTIONS(5305), - [anon_sym_BSLASHcite] = ACTIONS(5305), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCite] = ACTIONS(5305), - [anon_sym_BSLASHnocite] = ACTIONS(5305), - [anon_sym_BSLASHcitet] = ACTIONS(5305), - [anon_sym_BSLASHcitep] = ACTIONS(5305), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteauthor] = ACTIONS(5305), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5305), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitetitle] = ACTIONS(5305), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteyear] = ACTIONS(5305), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5303), - [anon_sym_BSLASHcitedate] = ACTIONS(5305), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5303), - [anon_sym_BSLASHciteurl] = ACTIONS(5305), - [anon_sym_BSLASHfullcite] = ACTIONS(5305), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5305), - [anon_sym_BSLASHcitealt] = ACTIONS(5305), - [anon_sym_BSLASHcitealp] = ACTIONS(5305), - [anon_sym_BSLASHcitetext] = ACTIONS(5305), - [anon_sym_BSLASHparencite] = ACTIONS(5305), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHParencite] = ACTIONS(5305), - [anon_sym_BSLASHfootcite] = ACTIONS(5305), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5305), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5305), - [anon_sym_BSLASHtextcite] = ACTIONS(5305), - [anon_sym_BSLASHTextcite] = ACTIONS(5305), - [anon_sym_BSLASHsmartcite] = ACTIONS(5305), - [anon_sym_BSLASHSmartcite] = ACTIONS(5305), - [anon_sym_BSLASHsupercite] = ACTIONS(5305), - [anon_sym_BSLASHautocite] = ACTIONS(5305), - [anon_sym_BSLASHAutocite] = ACTIONS(5305), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5303), - [anon_sym_BSLASHvolcite] = ACTIONS(5305), - [anon_sym_BSLASHVolcite] = ACTIONS(5305), - [anon_sym_BSLASHpvolcite] = ACTIONS(5305), - [anon_sym_BSLASHPvolcite] = ACTIONS(5305), - [anon_sym_BSLASHfvolcite] = ACTIONS(5305), - [anon_sym_BSLASHftvolcite] = ACTIONS(5305), - [anon_sym_BSLASHsvolcite] = ACTIONS(5305), - [anon_sym_BSLASHSvolcite] = ACTIONS(5305), - [anon_sym_BSLASHtvolcite] = ACTIONS(5305), - [anon_sym_BSLASHTvolcite] = ACTIONS(5305), - [anon_sym_BSLASHavolcite] = ACTIONS(5305), - [anon_sym_BSLASHAvolcite] = ACTIONS(5305), - [anon_sym_BSLASHnotecite] = ACTIONS(5305), - [anon_sym_BSLASHNotecite] = ACTIONS(5305), - [anon_sym_BSLASHpnotecite] = ACTIONS(5305), - [anon_sym_BSLASHPnotecite] = ACTIONS(5305), - [anon_sym_BSLASHfnotecite] = ACTIONS(5305), - [anon_sym_BSLASHlabel] = ACTIONS(5305), - [anon_sym_BSLASHref] = ACTIONS(5305), - [anon_sym_BSLASHeqref] = ACTIONS(5305), - [anon_sym_BSLASHvref] = ACTIONS(5305), - [anon_sym_BSLASHVref] = ACTIONS(5305), - [anon_sym_BSLASHautoref] = ACTIONS(5305), - [anon_sym_BSLASHpageref] = ACTIONS(5305), - [anon_sym_BSLASHcref] = ACTIONS(5305), - [anon_sym_BSLASHCref] = ACTIONS(5305), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnameCref] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5305), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5305), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5305), - [anon_sym_BSLASHlabelcref] = ACTIONS(5305), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange] = ACTIONS(5305), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHCrefrange] = ACTIONS(5305), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5303), - [anon_sym_BSLASHnewlabel] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand] = ACTIONS(5305), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5305), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5305), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5303), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5305), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5303), - [anon_sym_BSLASHdef] = ACTIONS(5305), - [anon_sym_BSLASHlet] = ACTIONS(5305), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5305), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5305), - [anon_sym_BSLASHgls] = ACTIONS(5305), - [anon_sym_BSLASHGls] = ACTIONS(5305), - [anon_sym_BSLASHGLS] = ACTIONS(5305), - [anon_sym_BSLASHglspl] = ACTIONS(5305), - [anon_sym_BSLASHGlspl] = ACTIONS(5305), - [anon_sym_BSLASHGLSpl] = ACTIONS(5305), - [anon_sym_BSLASHglsdisp] = ACTIONS(5305), - [anon_sym_BSLASHglslink] = ACTIONS(5305), - [anon_sym_BSLASHglstext] = ACTIONS(5305), - [anon_sym_BSLASHGlstext] = ACTIONS(5305), - [anon_sym_BSLASHGLStext] = ACTIONS(5305), - [anon_sym_BSLASHglsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5305), - [anon_sym_BSLASHglsplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSplural] = ACTIONS(5305), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5305), - [anon_sym_BSLASHglsname] = ACTIONS(5305), - [anon_sym_BSLASHGlsname] = ACTIONS(5305), - [anon_sym_BSLASHGLSname] = ACTIONS(5305), - [anon_sym_BSLASHglssymbol] = ACTIONS(5305), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5305), - [anon_sym_BSLASHglsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5305), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5305), - [anon_sym_BSLASHglsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5305), - [anon_sym_BSLASHglsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5305), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5305), - [anon_sym_BSLASHglsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5305), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5305), - [anon_sym_BSLASHglsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5305), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5305), - [anon_sym_BSLASHnewacronym] = ACTIONS(5305), - [anon_sym_BSLASHacrshort] = ACTIONS(5305), - [anon_sym_BSLASHAcrshort] = ACTIONS(5305), - [anon_sym_BSLASHACRshort] = ACTIONS(5305), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5305), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5305), - [anon_sym_BSLASHacrlong] = ACTIONS(5305), - [anon_sym_BSLASHAcrlong] = ACTIONS(5305), - [anon_sym_BSLASHACRlong] = ACTIONS(5305), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5305), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5305), - [anon_sym_BSLASHacrfull] = ACTIONS(5305), - [anon_sym_BSLASHAcrfull] = ACTIONS(5305), - [anon_sym_BSLASHACRfull] = ACTIONS(5305), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5305), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5305), - [anon_sym_BSLASHacs] = ACTIONS(5305), - [anon_sym_BSLASHAcs] = ACTIONS(5305), - [anon_sym_BSLASHacsp] = ACTIONS(5305), - [anon_sym_BSLASHAcsp] = ACTIONS(5305), - [anon_sym_BSLASHacl] = ACTIONS(5305), - [anon_sym_BSLASHAcl] = ACTIONS(5305), - [anon_sym_BSLASHaclp] = ACTIONS(5305), - [anon_sym_BSLASHAclp] = ACTIONS(5305), - [anon_sym_BSLASHacf] = ACTIONS(5305), - [anon_sym_BSLASHAcf] = ACTIONS(5305), - [anon_sym_BSLASHacfp] = ACTIONS(5305), - [anon_sym_BSLASHAcfp] = ACTIONS(5305), - [anon_sym_BSLASHac] = ACTIONS(5305), - [anon_sym_BSLASHAc] = ACTIONS(5305), - [anon_sym_BSLASHacp] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5305), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5305), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5305), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5305), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5305), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5305), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5305), - [anon_sym_BSLASHcolor] = ACTIONS(5305), - [anon_sym_BSLASHcolorbox] = ACTIONS(5305), - [anon_sym_BSLASHtextcolor] = ACTIONS(5305), - [anon_sym_BSLASHpagecolor] = ACTIONS(5305), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5305), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5305), + [anon_sym_BSLASHiffalse] = ACTIONS(4995), + [anon_sym_RBRACK] = ACTIONS(4993), + [anon_sym_COMMA] = ACTIONS(4993), + [anon_sym_EQ] = ACTIONS(4993), + [anon_sym_RBRACE] = ACTIONS(4993), + [sym_word] = ACTIONS(4995), + [sym_placeholder] = ACTIONS(4993), + [anon_sym_PLUS] = ACTIONS(4995), + [anon_sym_DASH] = ACTIONS(4995), + [anon_sym_STAR] = ACTIONS(4995), + [anon_sym_SLASH] = ACTIONS(4995), + [anon_sym_CARET] = ACTIONS(4995), + [anon_sym__] = ACTIONS(4995), + [anon_sym_LT] = ACTIONS(4995), + [anon_sym_GT] = ACTIONS(4995), + [anon_sym_BANG] = ACTIONS(4995), + [anon_sym_PIPE] = ACTIONS(4995), + [anon_sym_COLON] = ACTIONS(4995), + [anon_sym_SQUOTE] = ACTIONS(4995), + [anon_sym_BSLASHusepackage] = ACTIONS(4995), + [anon_sym_BSLASHRequirePackage] = ACTIONS(4995), + [anon_sym_BSLASHdocumentclass] = ACTIONS(4995), + [anon_sym_BSLASHinclude] = ACTIONS(4995), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(4995), + [anon_sym_BSLASHinput] = ACTIONS(4995), + [anon_sym_BSLASHsubfile] = ACTIONS(4995), + [anon_sym_BSLASHaddbibresource] = ACTIONS(4995), + [anon_sym_BSLASHbibliography] = ACTIONS(4995), + [anon_sym_BSLASHincludegraphics] = ACTIONS(4995), + [anon_sym_BSLASHincludesvg] = ACTIONS(4995), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(4995), + [anon_sym_BSLASHverbatiminput] = ACTIONS(4995), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(4995), + [anon_sym_BSLASHimport] = ACTIONS(4995), + [anon_sym_BSLASHsubimport] = ACTIONS(4995), + [anon_sym_BSLASHinputfrom] = ACTIONS(4995), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(4995), + [anon_sym_BSLASHincludefrom] = ACTIONS(4995), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(4995), + [anon_sym_BSLASHcaption] = ACTIONS(4995), + [anon_sym_BSLASHcite] = ACTIONS(4995), + [anon_sym_BSLASHcite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCite] = ACTIONS(4995), + [anon_sym_BSLASHnocite] = ACTIONS(4995), + [anon_sym_BSLASHcitet] = ACTIONS(4995), + [anon_sym_BSLASHcitep] = ACTIONS(4995), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteauthor] = ACTIONS(4995), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCiteauthor] = ACTIONS(4995), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitetitle] = ACTIONS(4995), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteyear] = ACTIONS(4995), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(4993), + [anon_sym_BSLASHcitedate] = ACTIONS(4995), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(4993), + [anon_sym_BSLASHciteurl] = ACTIONS(4995), + [anon_sym_BSLASHfullcite] = ACTIONS(4995), + [anon_sym_BSLASHciteyearpar] = ACTIONS(4995), + [anon_sym_BSLASHcitealt] = ACTIONS(4995), + [anon_sym_BSLASHcitealp] = ACTIONS(4995), + [anon_sym_BSLASHcitetext] = ACTIONS(4995), + [anon_sym_BSLASHparencite] = ACTIONS(4995), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHParencite] = ACTIONS(4995), + [anon_sym_BSLASHfootcite] = ACTIONS(4995), + [anon_sym_BSLASHfootfullcite] = ACTIONS(4995), + [anon_sym_BSLASHfootcitetext] = ACTIONS(4995), + [anon_sym_BSLASHtextcite] = ACTIONS(4995), + [anon_sym_BSLASHTextcite] = ACTIONS(4995), + [anon_sym_BSLASHsmartcite] = ACTIONS(4995), + [anon_sym_BSLASHSmartcite] = ACTIONS(4995), + [anon_sym_BSLASHsupercite] = ACTIONS(4995), + [anon_sym_BSLASHautocite] = ACTIONS(4995), + [anon_sym_BSLASHAutocite] = ACTIONS(4995), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(4993), + [anon_sym_BSLASHvolcite] = ACTIONS(4995), + [anon_sym_BSLASHVolcite] = ACTIONS(4995), + [anon_sym_BSLASHpvolcite] = ACTIONS(4995), + [anon_sym_BSLASHPvolcite] = ACTIONS(4995), + [anon_sym_BSLASHfvolcite] = ACTIONS(4995), + [anon_sym_BSLASHftvolcite] = ACTIONS(4995), + [anon_sym_BSLASHsvolcite] = ACTIONS(4995), + [anon_sym_BSLASHSvolcite] = ACTIONS(4995), + [anon_sym_BSLASHtvolcite] = ACTIONS(4995), + [anon_sym_BSLASHTvolcite] = ACTIONS(4995), + [anon_sym_BSLASHavolcite] = ACTIONS(4995), + [anon_sym_BSLASHAvolcite] = ACTIONS(4995), + [anon_sym_BSLASHnotecite] = ACTIONS(4995), + [anon_sym_BSLASHNotecite] = ACTIONS(4995), + [anon_sym_BSLASHpnotecite] = ACTIONS(4995), + [anon_sym_BSLASHPnotecite] = ACTIONS(4995), + [anon_sym_BSLASHfnotecite] = ACTIONS(4995), + [anon_sym_BSLASHlabel] = ACTIONS(4995), + [anon_sym_BSLASHref] = ACTIONS(4995), + [anon_sym_BSLASHeqref] = ACTIONS(4995), + [anon_sym_BSLASHvref] = ACTIONS(4995), + [anon_sym_BSLASHVref] = ACTIONS(4995), + [anon_sym_BSLASHautoref] = ACTIONS(4995), + [anon_sym_BSLASHpageref] = ACTIONS(4995), + [anon_sym_BSLASHcref] = ACTIONS(4995), + [anon_sym_BSLASHCref] = ACTIONS(4995), + [anon_sym_BSLASHcref_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCref_STAR] = ACTIONS(4993), + [anon_sym_BSLASHnamecref] = ACTIONS(4995), + [anon_sym_BSLASHnameCref] = ACTIONS(4995), + [anon_sym_BSLASHlcnamecref] = ACTIONS(4995), + [anon_sym_BSLASHnamecrefs] = ACTIONS(4995), + [anon_sym_BSLASHnameCrefs] = ACTIONS(4995), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(4995), + [anon_sym_BSLASHlabelcref] = ACTIONS(4995), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(4995), + [anon_sym_BSLASHcrefrange] = ACTIONS(4995), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(4993), + [anon_sym_BSLASHCrefrange] = ACTIONS(4995), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(4993), + [anon_sym_BSLASHnewlabel] = ACTIONS(4995), + [anon_sym_BSLASHnewcommand] = ACTIONS(4995), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHrenewcommand] = ACTIONS(4995), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(4995), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(4993), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(4995), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(4993), + [anon_sym_BSLASHdef] = ACTIONS(4995), + [anon_sym_BSLASHlet] = ACTIONS(4995), + [anon_sym_BSLASHnewenvironment] = ACTIONS(4995), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(4995), + [anon_sym_BSLASHgls] = ACTIONS(4995), + [anon_sym_BSLASHGls] = ACTIONS(4995), + [anon_sym_BSLASHGLS] = ACTIONS(4995), + [anon_sym_BSLASHglspl] = ACTIONS(4995), + [anon_sym_BSLASHGlspl] = ACTIONS(4995), + [anon_sym_BSLASHGLSpl] = ACTIONS(4995), + [anon_sym_BSLASHglsdisp] = ACTIONS(4995), + [anon_sym_BSLASHglslink] = ACTIONS(4995), + [anon_sym_BSLASHglstext] = ACTIONS(4995), + [anon_sym_BSLASHGlstext] = ACTIONS(4995), + [anon_sym_BSLASHGLStext] = ACTIONS(4995), + [anon_sym_BSLASHglsfirst] = ACTIONS(4995), + [anon_sym_BSLASHGlsfirst] = ACTIONS(4995), + [anon_sym_BSLASHGLSfirst] = ACTIONS(4995), + [anon_sym_BSLASHglsplural] = ACTIONS(4995), + [anon_sym_BSLASHGlsplural] = ACTIONS(4995), + [anon_sym_BSLASHGLSplural] = ACTIONS(4995), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(4995), + [anon_sym_BSLASHglsname] = ACTIONS(4995), + [anon_sym_BSLASHGlsname] = ACTIONS(4995), + [anon_sym_BSLASHGLSname] = ACTIONS(4995), + [anon_sym_BSLASHglssymbol] = ACTIONS(4995), + [anon_sym_BSLASHGlssymbol] = ACTIONS(4995), + [anon_sym_BSLASHglsdesc] = ACTIONS(4995), + [anon_sym_BSLASHGlsdesc] = ACTIONS(4995), + [anon_sym_BSLASHGLSdesc] = ACTIONS(4995), + [anon_sym_BSLASHglsuseri] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseri] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseri] = ACTIONS(4995), + [anon_sym_BSLASHglsuserii] = ACTIONS(4995), + [anon_sym_BSLASHGlsuserii] = ACTIONS(4995), + [anon_sym_BSLASHGLSuserii] = ACTIONS(4995), + [anon_sym_BSLASHglsuseriii] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(4995), + [anon_sym_BSLASHglsuseriv] = ACTIONS(4995), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(4995), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(4995), + [anon_sym_BSLASHglsuserv] = ACTIONS(4995), + [anon_sym_BSLASHGlsuserv] = ACTIONS(4995), + [anon_sym_BSLASHGLSuserv] = ACTIONS(4995), + [anon_sym_BSLASHglsuservi] = ACTIONS(4995), + [anon_sym_BSLASHGlsuservi] = ACTIONS(4995), + [anon_sym_BSLASHGLSuservi] = ACTIONS(4995), + [anon_sym_BSLASHnewacronym] = ACTIONS(4995), + [anon_sym_BSLASHacrshort] = ACTIONS(4995), + [anon_sym_BSLASHAcrshort] = ACTIONS(4995), + [anon_sym_BSLASHACRshort] = ACTIONS(4995), + [anon_sym_BSLASHacrshortpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(4995), + [anon_sym_BSLASHACRshortpl] = ACTIONS(4995), + [anon_sym_BSLASHacrlong] = ACTIONS(4995), + [anon_sym_BSLASHAcrlong] = ACTIONS(4995), + [anon_sym_BSLASHACRlong] = ACTIONS(4995), + [anon_sym_BSLASHacrlongpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(4995), + [anon_sym_BSLASHACRlongpl] = ACTIONS(4995), + [anon_sym_BSLASHacrfull] = ACTIONS(4995), + [anon_sym_BSLASHAcrfull] = ACTIONS(4995), + [anon_sym_BSLASHACRfull] = ACTIONS(4995), + [anon_sym_BSLASHacrfullpl] = ACTIONS(4995), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(4995), + [anon_sym_BSLASHACRfullpl] = ACTIONS(4995), + [anon_sym_BSLASHacs] = ACTIONS(4995), + [anon_sym_BSLASHAcs] = ACTIONS(4995), + [anon_sym_BSLASHacsp] = ACTIONS(4995), + [anon_sym_BSLASHAcsp] = ACTIONS(4995), + [anon_sym_BSLASHacl] = ACTIONS(4995), + [anon_sym_BSLASHAcl] = ACTIONS(4995), + [anon_sym_BSLASHaclp] = ACTIONS(4995), + [anon_sym_BSLASHAclp] = ACTIONS(4995), + [anon_sym_BSLASHacf] = ACTIONS(4995), + [anon_sym_BSLASHAcf] = ACTIONS(4995), + [anon_sym_BSLASHacfp] = ACTIONS(4995), + [anon_sym_BSLASHAcfp] = ACTIONS(4995), + [anon_sym_BSLASHac] = ACTIONS(4995), + [anon_sym_BSLASHAc] = ACTIONS(4995), + [anon_sym_BSLASHacp] = ACTIONS(4995), + [anon_sym_BSLASHglsentrylong] = ACTIONS(4995), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(4995), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(4995), + [anon_sym_BSLASHglsentryshort] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(4995), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(4995), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(4995), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(4995), + [anon_sym_BSLASHnewtheorem] = ACTIONS(4995), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(4995), + [anon_sym_BSLASHdefinecolor] = ACTIONS(4995), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(4995), + [anon_sym_BSLASHcolor] = ACTIONS(4995), + [anon_sym_BSLASHcolorbox] = ACTIONS(4995), + [anon_sym_BSLASHtextcolor] = ACTIONS(4995), + [anon_sym_BSLASHpagecolor] = ACTIONS(4995), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(4995), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(4995), + }, + [1564] = { + [sym_command_name] = ACTIONS(5145), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5145), + [anon_sym_RBRACK] = ACTIONS(5143), + [anon_sym_COMMA] = ACTIONS(5143), + [anon_sym_EQ] = ACTIONS(5143), + [anon_sym_RBRACE] = ACTIONS(5143), + [sym_word] = ACTIONS(5145), + [sym_placeholder] = ACTIONS(5143), + [anon_sym_PLUS] = ACTIONS(5145), + [anon_sym_DASH] = ACTIONS(5145), + [anon_sym_STAR] = ACTIONS(5145), + [anon_sym_SLASH] = ACTIONS(5145), + [anon_sym_CARET] = ACTIONS(5145), + [anon_sym__] = ACTIONS(5145), + [anon_sym_LT] = ACTIONS(5145), + [anon_sym_GT] = ACTIONS(5145), + [anon_sym_BANG] = ACTIONS(5145), + [anon_sym_PIPE] = ACTIONS(5145), + [anon_sym_COLON] = ACTIONS(5145), + [anon_sym_SQUOTE] = ACTIONS(5145), + [anon_sym_BSLASHusepackage] = ACTIONS(5145), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5145), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5145), + [anon_sym_BSLASHinclude] = ACTIONS(5145), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5145), + [anon_sym_BSLASHinput] = ACTIONS(5145), + [anon_sym_BSLASHsubfile] = ACTIONS(5145), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5145), + [anon_sym_BSLASHbibliography] = ACTIONS(5145), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5145), + [anon_sym_BSLASHincludesvg] = ACTIONS(5145), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5145), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5145), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5145), + [anon_sym_BSLASHimport] = ACTIONS(5145), + [anon_sym_BSLASHsubimport] = ACTIONS(5145), + [anon_sym_BSLASHinputfrom] = ACTIONS(5145), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5145), + [anon_sym_BSLASHincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5145), + [anon_sym_BSLASHcaption] = ACTIONS(5145), + [anon_sym_BSLASHcite] = ACTIONS(5145), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCite] = ACTIONS(5145), + [anon_sym_BSLASHnocite] = ACTIONS(5145), + [anon_sym_BSLASHcitet] = ACTIONS(5145), + [anon_sym_BSLASHcitep] = ACTIONS(5145), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteauthor] = ACTIONS(5145), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5145), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitetitle] = ACTIONS(5145), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteyear] = ACTIONS(5145), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5143), + [anon_sym_BSLASHcitedate] = ACTIONS(5145), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5143), + [anon_sym_BSLASHciteurl] = ACTIONS(5145), + [anon_sym_BSLASHfullcite] = ACTIONS(5145), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5145), + [anon_sym_BSLASHcitealt] = ACTIONS(5145), + [anon_sym_BSLASHcitealp] = ACTIONS(5145), + [anon_sym_BSLASHcitetext] = ACTIONS(5145), + [anon_sym_BSLASHparencite] = ACTIONS(5145), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHParencite] = ACTIONS(5145), + [anon_sym_BSLASHfootcite] = ACTIONS(5145), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5145), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5145), + [anon_sym_BSLASHtextcite] = ACTIONS(5145), + [anon_sym_BSLASHTextcite] = ACTIONS(5145), + [anon_sym_BSLASHsmartcite] = ACTIONS(5145), + [anon_sym_BSLASHSmartcite] = ACTIONS(5145), + [anon_sym_BSLASHsupercite] = ACTIONS(5145), + [anon_sym_BSLASHautocite] = ACTIONS(5145), + [anon_sym_BSLASHAutocite] = ACTIONS(5145), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5143), + [anon_sym_BSLASHvolcite] = ACTIONS(5145), + [anon_sym_BSLASHVolcite] = ACTIONS(5145), + [anon_sym_BSLASHpvolcite] = ACTIONS(5145), + [anon_sym_BSLASHPvolcite] = ACTIONS(5145), + [anon_sym_BSLASHfvolcite] = ACTIONS(5145), + [anon_sym_BSLASHftvolcite] = ACTIONS(5145), + [anon_sym_BSLASHsvolcite] = ACTIONS(5145), + [anon_sym_BSLASHSvolcite] = ACTIONS(5145), + [anon_sym_BSLASHtvolcite] = ACTIONS(5145), + [anon_sym_BSLASHTvolcite] = ACTIONS(5145), + [anon_sym_BSLASHavolcite] = ACTIONS(5145), + [anon_sym_BSLASHAvolcite] = ACTIONS(5145), + [anon_sym_BSLASHnotecite] = ACTIONS(5145), + [anon_sym_BSLASHNotecite] = ACTIONS(5145), + [anon_sym_BSLASHpnotecite] = ACTIONS(5145), + [anon_sym_BSLASHPnotecite] = ACTIONS(5145), + [anon_sym_BSLASHfnotecite] = ACTIONS(5145), + [anon_sym_BSLASHlabel] = ACTIONS(5145), + [anon_sym_BSLASHref] = ACTIONS(5145), + [anon_sym_BSLASHeqref] = ACTIONS(5145), + [anon_sym_BSLASHvref] = ACTIONS(5145), + [anon_sym_BSLASHVref] = ACTIONS(5145), + [anon_sym_BSLASHautoref] = ACTIONS(5145), + [anon_sym_BSLASHpageref] = ACTIONS(5145), + [anon_sym_BSLASHcref] = ACTIONS(5145), + [anon_sym_BSLASHCref] = ACTIONS(5145), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnameCref] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5145), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5145), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5145), + [anon_sym_BSLASHlabelcref] = ACTIONS(5145), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange] = ACTIONS(5145), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHCrefrange] = ACTIONS(5145), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5143), + [anon_sym_BSLASHnewlabel] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand] = ACTIONS(5145), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5145), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5145), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5143), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5145), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5143), + [anon_sym_BSLASHdef] = ACTIONS(5145), + [anon_sym_BSLASHlet] = ACTIONS(5145), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5145), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5145), + [anon_sym_BSLASHgls] = ACTIONS(5145), + [anon_sym_BSLASHGls] = ACTIONS(5145), + [anon_sym_BSLASHGLS] = ACTIONS(5145), + [anon_sym_BSLASHglspl] = ACTIONS(5145), + [anon_sym_BSLASHGlspl] = ACTIONS(5145), + [anon_sym_BSLASHGLSpl] = ACTIONS(5145), + [anon_sym_BSLASHglsdisp] = ACTIONS(5145), + [anon_sym_BSLASHglslink] = ACTIONS(5145), + [anon_sym_BSLASHglstext] = ACTIONS(5145), + [anon_sym_BSLASHGlstext] = ACTIONS(5145), + [anon_sym_BSLASHGLStext] = ACTIONS(5145), + [anon_sym_BSLASHglsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5145), + [anon_sym_BSLASHglsplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSplural] = ACTIONS(5145), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5145), + [anon_sym_BSLASHglsname] = ACTIONS(5145), + [anon_sym_BSLASHGlsname] = ACTIONS(5145), + [anon_sym_BSLASHGLSname] = ACTIONS(5145), + [anon_sym_BSLASHglssymbol] = ACTIONS(5145), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5145), + [anon_sym_BSLASHglsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5145), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5145), + [anon_sym_BSLASHglsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5145), + [anon_sym_BSLASHglsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5145), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5145), + [anon_sym_BSLASHglsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5145), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5145), + [anon_sym_BSLASHglsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5145), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5145), + [anon_sym_BSLASHnewacronym] = ACTIONS(5145), + [anon_sym_BSLASHacrshort] = ACTIONS(5145), + [anon_sym_BSLASHAcrshort] = ACTIONS(5145), + [anon_sym_BSLASHACRshort] = ACTIONS(5145), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5145), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5145), + [anon_sym_BSLASHacrlong] = ACTIONS(5145), + [anon_sym_BSLASHAcrlong] = ACTIONS(5145), + [anon_sym_BSLASHACRlong] = ACTIONS(5145), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5145), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5145), + [anon_sym_BSLASHacrfull] = ACTIONS(5145), + [anon_sym_BSLASHAcrfull] = ACTIONS(5145), + [anon_sym_BSLASHACRfull] = ACTIONS(5145), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5145), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5145), + [anon_sym_BSLASHacs] = ACTIONS(5145), + [anon_sym_BSLASHAcs] = ACTIONS(5145), + [anon_sym_BSLASHacsp] = ACTIONS(5145), + [anon_sym_BSLASHAcsp] = ACTIONS(5145), + [anon_sym_BSLASHacl] = ACTIONS(5145), + [anon_sym_BSLASHAcl] = ACTIONS(5145), + [anon_sym_BSLASHaclp] = ACTIONS(5145), + [anon_sym_BSLASHAclp] = ACTIONS(5145), + [anon_sym_BSLASHacf] = ACTIONS(5145), + [anon_sym_BSLASHAcf] = ACTIONS(5145), + [anon_sym_BSLASHacfp] = ACTIONS(5145), + [anon_sym_BSLASHAcfp] = ACTIONS(5145), + [anon_sym_BSLASHac] = ACTIONS(5145), + [anon_sym_BSLASHAc] = ACTIONS(5145), + [anon_sym_BSLASHacp] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5145), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5145), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5145), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5145), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5145), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5145), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5145), + [anon_sym_BSLASHcolor] = ACTIONS(5145), + [anon_sym_BSLASHcolorbox] = ACTIONS(5145), + [anon_sym_BSLASHtextcolor] = ACTIONS(5145), + [anon_sym_BSLASHpagecolor] = ACTIONS(5145), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5145), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5145), + }, + [1565] = { + [sym_command_name] = ACTIONS(5273), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5273), + [anon_sym_RBRACK] = ACTIONS(5271), + [anon_sym_COMMA] = ACTIONS(5271), + [anon_sym_EQ] = ACTIONS(5271), + [anon_sym_RBRACE] = ACTIONS(5271), + [sym_word] = ACTIONS(5273), + [sym_placeholder] = ACTIONS(5271), + [anon_sym_PLUS] = ACTIONS(5273), + [anon_sym_DASH] = ACTIONS(5273), + [anon_sym_STAR] = ACTIONS(5273), + [anon_sym_SLASH] = ACTIONS(5273), + [anon_sym_CARET] = ACTIONS(5273), + [anon_sym__] = ACTIONS(5273), + [anon_sym_LT] = ACTIONS(5273), + [anon_sym_GT] = ACTIONS(5273), + [anon_sym_BANG] = ACTIONS(5273), + [anon_sym_PIPE] = ACTIONS(5273), + [anon_sym_COLON] = ACTIONS(5273), + [anon_sym_SQUOTE] = ACTIONS(5273), + [anon_sym_BSLASHusepackage] = ACTIONS(5273), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5273), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5273), + [anon_sym_BSLASHinclude] = ACTIONS(5273), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5273), + [anon_sym_BSLASHinput] = ACTIONS(5273), + [anon_sym_BSLASHsubfile] = ACTIONS(5273), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5273), + [anon_sym_BSLASHbibliography] = ACTIONS(5273), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5273), + [anon_sym_BSLASHincludesvg] = ACTIONS(5273), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5273), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5273), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5273), + [anon_sym_BSLASHimport] = ACTIONS(5273), + [anon_sym_BSLASHsubimport] = ACTIONS(5273), + [anon_sym_BSLASHinputfrom] = ACTIONS(5273), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5273), + [anon_sym_BSLASHincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5273), + [anon_sym_BSLASHcaption] = ACTIONS(5273), + [anon_sym_BSLASHcite] = ACTIONS(5273), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCite] = ACTIONS(5273), + [anon_sym_BSLASHnocite] = ACTIONS(5273), + [anon_sym_BSLASHcitet] = ACTIONS(5273), + [anon_sym_BSLASHcitep] = ACTIONS(5273), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteauthor] = ACTIONS(5273), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5273), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitetitle] = ACTIONS(5273), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteyear] = ACTIONS(5273), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5271), + [anon_sym_BSLASHcitedate] = ACTIONS(5273), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5271), + [anon_sym_BSLASHciteurl] = ACTIONS(5273), + [anon_sym_BSLASHfullcite] = ACTIONS(5273), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5273), + [anon_sym_BSLASHcitealt] = ACTIONS(5273), + [anon_sym_BSLASHcitealp] = ACTIONS(5273), + [anon_sym_BSLASHcitetext] = ACTIONS(5273), + [anon_sym_BSLASHparencite] = ACTIONS(5273), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHParencite] = ACTIONS(5273), + [anon_sym_BSLASHfootcite] = ACTIONS(5273), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5273), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5273), + [anon_sym_BSLASHtextcite] = ACTIONS(5273), + [anon_sym_BSLASHTextcite] = ACTIONS(5273), + [anon_sym_BSLASHsmartcite] = ACTIONS(5273), + [anon_sym_BSLASHSmartcite] = ACTIONS(5273), + [anon_sym_BSLASHsupercite] = ACTIONS(5273), + [anon_sym_BSLASHautocite] = ACTIONS(5273), + [anon_sym_BSLASHAutocite] = ACTIONS(5273), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5271), + [anon_sym_BSLASHvolcite] = ACTIONS(5273), + [anon_sym_BSLASHVolcite] = ACTIONS(5273), + [anon_sym_BSLASHpvolcite] = ACTIONS(5273), + [anon_sym_BSLASHPvolcite] = ACTIONS(5273), + [anon_sym_BSLASHfvolcite] = ACTIONS(5273), + [anon_sym_BSLASHftvolcite] = ACTIONS(5273), + [anon_sym_BSLASHsvolcite] = ACTIONS(5273), + [anon_sym_BSLASHSvolcite] = ACTIONS(5273), + [anon_sym_BSLASHtvolcite] = ACTIONS(5273), + [anon_sym_BSLASHTvolcite] = ACTIONS(5273), + [anon_sym_BSLASHavolcite] = ACTIONS(5273), + [anon_sym_BSLASHAvolcite] = ACTIONS(5273), + [anon_sym_BSLASHnotecite] = ACTIONS(5273), + [anon_sym_BSLASHNotecite] = ACTIONS(5273), + [anon_sym_BSLASHpnotecite] = ACTIONS(5273), + [anon_sym_BSLASHPnotecite] = ACTIONS(5273), + [anon_sym_BSLASHfnotecite] = ACTIONS(5273), + [anon_sym_BSLASHlabel] = ACTIONS(5273), + [anon_sym_BSLASHref] = ACTIONS(5273), + [anon_sym_BSLASHeqref] = ACTIONS(5273), + [anon_sym_BSLASHvref] = ACTIONS(5273), + [anon_sym_BSLASHVref] = ACTIONS(5273), + [anon_sym_BSLASHautoref] = ACTIONS(5273), + [anon_sym_BSLASHpageref] = ACTIONS(5273), + [anon_sym_BSLASHcref] = ACTIONS(5273), + [anon_sym_BSLASHCref] = ACTIONS(5273), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnameCref] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5273), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5273), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5273), + [anon_sym_BSLASHlabelcref] = ACTIONS(5273), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange] = ACTIONS(5273), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHCrefrange] = ACTIONS(5273), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5271), + [anon_sym_BSLASHnewlabel] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand] = ACTIONS(5273), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5273), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5273), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5271), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5273), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5271), + [anon_sym_BSLASHdef] = ACTIONS(5273), + [anon_sym_BSLASHlet] = ACTIONS(5273), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5273), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5273), + [anon_sym_BSLASHgls] = ACTIONS(5273), + [anon_sym_BSLASHGls] = ACTIONS(5273), + [anon_sym_BSLASHGLS] = ACTIONS(5273), + [anon_sym_BSLASHglspl] = ACTIONS(5273), + [anon_sym_BSLASHGlspl] = ACTIONS(5273), + [anon_sym_BSLASHGLSpl] = ACTIONS(5273), + [anon_sym_BSLASHglsdisp] = ACTIONS(5273), + [anon_sym_BSLASHglslink] = ACTIONS(5273), + [anon_sym_BSLASHglstext] = ACTIONS(5273), + [anon_sym_BSLASHGlstext] = ACTIONS(5273), + [anon_sym_BSLASHGLStext] = ACTIONS(5273), + [anon_sym_BSLASHglsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5273), + [anon_sym_BSLASHglsplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSplural] = ACTIONS(5273), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5273), + [anon_sym_BSLASHglsname] = ACTIONS(5273), + [anon_sym_BSLASHGlsname] = ACTIONS(5273), + [anon_sym_BSLASHGLSname] = ACTIONS(5273), + [anon_sym_BSLASHglssymbol] = ACTIONS(5273), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5273), + [anon_sym_BSLASHglsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5273), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5273), + [anon_sym_BSLASHglsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5273), + [anon_sym_BSLASHglsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5273), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5273), + [anon_sym_BSLASHglsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5273), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5273), + [anon_sym_BSLASHglsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5273), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5273), + [anon_sym_BSLASHnewacronym] = ACTIONS(5273), + [anon_sym_BSLASHacrshort] = ACTIONS(5273), + [anon_sym_BSLASHAcrshort] = ACTIONS(5273), + [anon_sym_BSLASHACRshort] = ACTIONS(5273), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5273), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5273), + [anon_sym_BSLASHacrlong] = ACTIONS(5273), + [anon_sym_BSLASHAcrlong] = ACTIONS(5273), + [anon_sym_BSLASHACRlong] = ACTIONS(5273), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5273), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5273), + [anon_sym_BSLASHacrfull] = ACTIONS(5273), + [anon_sym_BSLASHAcrfull] = ACTIONS(5273), + [anon_sym_BSLASHACRfull] = ACTIONS(5273), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5273), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5273), + [anon_sym_BSLASHacs] = ACTIONS(5273), + [anon_sym_BSLASHAcs] = ACTIONS(5273), + [anon_sym_BSLASHacsp] = ACTIONS(5273), + [anon_sym_BSLASHAcsp] = ACTIONS(5273), + [anon_sym_BSLASHacl] = ACTIONS(5273), + [anon_sym_BSLASHAcl] = ACTIONS(5273), + [anon_sym_BSLASHaclp] = ACTIONS(5273), + [anon_sym_BSLASHAclp] = ACTIONS(5273), + [anon_sym_BSLASHacf] = ACTIONS(5273), + [anon_sym_BSLASHAcf] = ACTIONS(5273), + [anon_sym_BSLASHacfp] = ACTIONS(5273), + [anon_sym_BSLASHAcfp] = ACTIONS(5273), + [anon_sym_BSLASHac] = ACTIONS(5273), + [anon_sym_BSLASHAc] = ACTIONS(5273), + [anon_sym_BSLASHacp] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5273), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5273), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5273), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5273), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5273), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5273), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5273), + [anon_sym_BSLASHcolor] = ACTIONS(5273), + [anon_sym_BSLASHcolorbox] = ACTIONS(5273), + [anon_sym_BSLASHtextcolor] = ACTIONS(5273), + [anon_sym_BSLASHpagecolor] = ACTIONS(5273), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5273), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5273), + }, + [1566] = { + [sym_command_name] = ACTIONS(5269), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5269), + [anon_sym_RBRACK] = ACTIONS(5267), + [anon_sym_COMMA] = ACTIONS(5267), + [anon_sym_EQ] = ACTIONS(5267), + [anon_sym_RBRACE] = ACTIONS(5267), + [sym_word] = ACTIONS(5269), + [sym_placeholder] = ACTIONS(5267), + [anon_sym_PLUS] = ACTIONS(5269), + [anon_sym_DASH] = ACTIONS(5269), + [anon_sym_STAR] = ACTIONS(5269), + [anon_sym_SLASH] = ACTIONS(5269), + [anon_sym_CARET] = ACTIONS(5269), + [anon_sym__] = ACTIONS(5269), + [anon_sym_LT] = ACTIONS(5269), + [anon_sym_GT] = ACTIONS(5269), + [anon_sym_BANG] = ACTIONS(5269), + [anon_sym_PIPE] = ACTIONS(5269), + [anon_sym_COLON] = ACTIONS(5269), + [anon_sym_SQUOTE] = ACTIONS(5269), + [anon_sym_BSLASHusepackage] = ACTIONS(5269), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5269), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5269), + [anon_sym_BSLASHinclude] = ACTIONS(5269), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5269), + [anon_sym_BSLASHinput] = ACTIONS(5269), + [anon_sym_BSLASHsubfile] = ACTIONS(5269), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5269), + [anon_sym_BSLASHbibliography] = ACTIONS(5269), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5269), + [anon_sym_BSLASHincludesvg] = ACTIONS(5269), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5269), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5269), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5269), + [anon_sym_BSLASHimport] = ACTIONS(5269), + [anon_sym_BSLASHsubimport] = ACTIONS(5269), + [anon_sym_BSLASHinputfrom] = ACTIONS(5269), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5269), + [anon_sym_BSLASHincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5269), + [anon_sym_BSLASHcaption] = ACTIONS(5269), + [anon_sym_BSLASHcite] = ACTIONS(5269), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCite] = ACTIONS(5269), + [anon_sym_BSLASHnocite] = ACTIONS(5269), + [anon_sym_BSLASHcitet] = ACTIONS(5269), + [anon_sym_BSLASHcitep] = ACTIONS(5269), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteauthor] = ACTIONS(5269), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5269), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitetitle] = ACTIONS(5269), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteyear] = ACTIONS(5269), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5267), + [anon_sym_BSLASHcitedate] = ACTIONS(5269), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5267), + [anon_sym_BSLASHciteurl] = ACTIONS(5269), + [anon_sym_BSLASHfullcite] = ACTIONS(5269), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5269), + [anon_sym_BSLASHcitealt] = ACTIONS(5269), + [anon_sym_BSLASHcitealp] = ACTIONS(5269), + [anon_sym_BSLASHcitetext] = ACTIONS(5269), + [anon_sym_BSLASHparencite] = ACTIONS(5269), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHParencite] = ACTIONS(5269), + [anon_sym_BSLASHfootcite] = ACTIONS(5269), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5269), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5269), + [anon_sym_BSLASHtextcite] = ACTIONS(5269), + [anon_sym_BSLASHTextcite] = ACTIONS(5269), + [anon_sym_BSLASHsmartcite] = ACTIONS(5269), + [anon_sym_BSLASHSmartcite] = ACTIONS(5269), + [anon_sym_BSLASHsupercite] = ACTIONS(5269), + [anon_sym_BSLASHautocite] = ACTIONS(5269), + [anon_sym_BSLASHAutocite] = ACTIONS(5269), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5267), + [anon_sym_BSLASHvolcite] = ACTIONS(5269), + [anon_sym_BSLASHVolcite] = ACTIONS(5269), + [anon_sym_BSLASHpvolcite] = ACTIONS(5269), + [anon_sym_BSLASHPvolcite] = ACTIONS(5269), + [anon_sym_BSLASHfvolcite] = ACTIONS(5269), + [anon_sym_BSLASHftvolcite] = ACTIONS(5269), + [anon_sym_BSLASHsvolcite] = ACTIONS(5269), + [anon_sym_BSLASHSvolcite] = ACTIONS(5269), + [anon_sym_BSLASHtvolcite] = ACTIONS(5269), + [anon_sym_BSLASHTvolcite] = ACTIONS(5269), + [anon_sym_BSLASHavolcite] = ACTIONS(5269), + [anon_sym_BSLASHAvolcite] = ACTIONS(5269), + [anon_sym_BSLASHnotecite] = ACTIONS(5269), + [anon_sym_BSLASHNotecite] = ACTIONS(5269), + [anon_sym_BSLASHpnotecite] = ACTIONS(5269), + [anon_sym_BSLASHPnotecite] = ACTIONS(5269), + [anon_sym_BSLASHfnotecite] = ACTIONS(5269), + [anon_sym_BSLASHlabel] = ACTIONS(5269), + [anon_sym_BSLASHref] = ACTIONS(5269), + [anon_sym_BSLASHeqref] = ACTIONS(5269), + [anon_sym_BSLASHvref] = ACTIONS(5269), + [anon_sym_BSLASHVref] = ACTIONS(5269), + [anon_sym_BSLASHautoref] = ACTIONS(5269), + [anon_sym_BSLASHpageref] = ACTIONS(5269), + [anon_sym_BSLASHcref] = ACTIONS(5269), + [anon_sym_BSLASHCref] = ACTIONS(5269), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnameCref] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5269), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5269), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5269), + [anon_sym_BSLASHlabelcref] = ACTIONS(5269), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange] = ACTIONS(5269), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHCrefrange] = ACTIONS(5269), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5267), + [anon_sym_BSLASHnewlabel] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand] = ACTIONS(5269), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5269), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5269), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5267), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5269), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5267), + [anon_sym_BSLASHdef] = ACTIONS(5269), + [anon_sym_BSLASHlet] = ACTIONS(5269), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5269), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5269), + [anon_sym_BSLASHgls] = ACTIONS(5269), + [anon_sym_BSLASHGls] = ACTIONS(5269), + [anon_sym_BSLASHGLS] = ACTIONS(5269), + [anon_sym_BSLASHglspl] = ACTIONS(5269), + [anon_sym_BSLASHGlspl] = ACTIONS(5269), + [anon_sym_BSLASHGLSpl] = ACTIONS(5269), + [anon_sym_BSLASHglsdisp] = ACTIONS(5269), + [anon_sym_BSLASHglslink] = ACTIONS(5269), + [anon_sym_BSLASHglstext] = ACTIONS(5269), + [anon_sym_BSLASHGlstext] = ACTIONS(5269), + [anon_sym_BSLASHGLStext] = ACTIONS(5269), + [anon_sym_BSLASHglsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5269), + [anon_sym_BSLASHglsplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSplural] = ACTIONS(5269), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5269), + [anon_sym_BSLASHglsname] = ACTIONS(5269), + [anon_sym_BSLASHGlsname] = ACTIONS(5269), + [anon_sym_BSLASHGLSname] = ACTIONS(5269), + [anon_sym_BSLASHglssymbol] = ACTIONS(5269), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5269), + [anon_sym_BSLASHglsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5269), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5269), + [anon_sym_BSLASHglsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5269), + [anon_sym_BSLASHglsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5269), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5269), + [anon_sym_BSLASHglsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5269), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5269), + [anon_sym_BSLASHglsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5269), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5269), + [anon_sym_BSLASHnewacronym] = ACTIONS(5269), + [anon_sym_BSLASHacrshort] = ACTIONS(5269), + [anon_sym_BSLASHAcrshort] = ACTIONS(5269), + [anon_sym_BSLASHACRshort] = ACTIONS(5269), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5269), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5269), + [anon_sym_BSLASHacrlong] = ACTIONS(5269), + [anon_sym_BSLASHAcrlong] = ACTIONS(5269), + [anon_sym_BSLASHACRlong] = ACTIONS(5269), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5269), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5269), + [anon_sym_BSLASHacrfull] = ACTIONS(5269), + [anon_sym_BSLASHAcrfull] = ACTIONS(5269), + [anon_sym_BSLASHACRfull] = ACTIONS(5269), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5269), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5269), + [anon_sym_BSLASHacs] = ACTIONS(5269), + [anon_sym_BSLASHAcs] = ACTIONS(5269), + [anon_sym_BSLASHacsp] = ACTIONS(5269), + [anon_sym_BSLASHAcsp] = ACTIONS(5269), + [anon_sym_BSLASHacl] = ACTIONS(5269), + [anon_sym_BSLASHAcl] = ACTIONS(5269), + [anon_sym_BSLASHaclp] = ACTIONS(5269), + [anon_sym_BSLASHAclp] = ACTIONS(5269), + [anon_sym_BSLASHacf] = ACTIONS(5269), + [anon_sym_BSLASHAcf] = ACTIONS(5269), + [anon_sym_BSLASHacfp] = ACTIONS(5269), + [anon_sym_BSLASHAcfp] = ACTIONS(5269), + [anon_sym_BSLASHac] = ACTIONS(5269), + [anon_sym_BSLASHAc] = ACTIONS(5269), + [anon_sym_BSLASHacp] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5269), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5269), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5269), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5269), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5269), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5269), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5269), + [anon_sym_BSLASHcolor] = ACTIONS(5269), + [anon_sym_BSLASHcolorbox] = ACTIONS(5269), + [anon_sym_BSLASHtextcolor] = ACTIONS(5269), + [anon_sym_BSLASHpagecolor] = ACTIONS(5269), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5269), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5269), }, [1567] = { - [sym_command_name] = ACTIONS(5125), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5125), - [anon_sym_RBRACK] = ACTIONS(5123), - [anon_sym_COMMA] = ACTIONS(5123), - [anon_sym_EQ] = ACTIONS(5123), - [anon_sym_RBRACE] = ACTIONS(5123), - [sym_word] = ACTIONS(5125), - [sym_placeholder] = ACTIONS(5123), - [anon_sym_PLUS] = ACTIONS(5125), - [anon_sym_DASH] = ACTIONS(5125), - [anon_sym_STAR] = ACTIONS(5125), - [anon_sym_SLASH] = ACTIONS(5125), - [anon_sym_CARET] = ACTIONS(5125), - [anon_sym__] = ACTIONS(5125), - [anon_sym_LT] = ACTIONS(5125), - [anon_sym_GT] = ACTIONS(5125), - [anon_sym_BANG] = ACTIONS(5125), - [anon_sym_PIPE] = ACTIONS(5125), - [anon_sym_COLON] = ACTIONS(5125), - [anon_sym_SQUOTE] = ACTIONS(5125), - [anon_sym_BSLASHusepackage] = ACTIONS(5125), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5125), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5125), - [anon_sym_BSLASHinclude] = ACTIONS(5125), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5125), - [anon_sym_BSLASHinput] = ACTIONS(5125), - [anon_sym_BSLASHsubfile] = ACTIONS(5125), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5125), - [anon_sym_BSLASHbibliography] = ACTIONS(5125), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5125), - [anon_sym_BSLASHincludesvg] = ACTIONS(5125), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5125), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5125), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5125), - [anon_sym_BSLASHimport] = ACTIONS(5125), - [anon_sym_BSLASHsubimport] = ACTIONS(5125), - [anon_sym_BSLASHinputfrom] = ACTIONS(5125), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5125), - [anon_sym_BSLASHincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5125), - [anon_sym_BSLASHcaption] = ACTIONS(5125), - [anon_sym_BSLASHcite] = ACTIONS(5125), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCite] = ACTIONS(5125), - [anon_sym_BSLASHnocite] = ACTIONS(5125), - [anon_sym_BSLASHcitet] = ACTIONS(5125), - [anon_sym_BSLASHcitep] = ACTIONS(5125), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteauthor] = ACTIONS(5125), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5125), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitetitle] = ACTIONS(5125), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteyear] = ACTIONS(5125), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5123), - [anon_sym_BSLASHcitedate] = ACTIONS(5125), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5123), - [anon_sym_BSLASHciteurl] = ACTIONS(5125), - [anon_sym_BSLASHfullcite] = ACTIONS(5125), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5125), - [anon_sym_BSLASHcitealt] = ACTIONS(5125), - [anon_sym_BSLASHcitealp] = ACTIONS(5125), - [anon_sym_BSLASHcitetext] = ACTIONS(5125), - [anon_sym_BSLASHparencite] = ACTIONS(5125), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHParencite] = ACTIONS(5125), - [anon_sym_BSLASHfootcite] = ACTIONS(5125), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5125), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5125), - [anon_sym_BSLASHtextcite] = ACTIONS(5125), - [anon_sym_BSLASHTextcite] = ACTIONS(5125), - [anon_sym_BSLASHsmartcite] = ACTIONS(5125), - [anon_sym_BSLASHSmartcite] = ACTIONS(5125), - [anon_sym_BSLASHsupercite] = ACTIONS(5125), - [anon_sym_BSLASHautocite] = ACTIONS(5125), - [anon_sym_BSLASHAutocite] = ACTIONS(5125), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5123), - [anon_sym_BSLASHvolcite] = ACTIONS(5125), - [anon_sym_BSLASHVolcite] = ACTIONS(5125), - [anon_sym_BSLASHpvolcite] = ACTIONS(5125), - [anon_sym_BSLASHPvolcite] = ACTIONS(5125), - [anon_sym_BSLASHfvolcite] = ACTIONS(5125), - [anon_sym_BSLASHftvolcite] = ACTIONS(5125), - [anon_sym_BSLASHsvolcite] = ACTIONS(5125), - [anon_sym_BSLASHSvolcite] = ACTIONS(5125), - [anon_sym_BSLASHtvolcite] = ACTIONS(5125), - [anon_sym_BSLASHTvolcite] = ACTIONS(5125), - [anon_sym_BSLASHavolcite] = ACTIONS(5125), - [anon_sym_BSLASHAvolcite] = ACTIONS(5125), - [anon_sym_BSLASHnotecite] = ACTIONS(5125), - [anon_sym_BSLASHNotecite] = ACTIONS(5125), - [anon_sym_BSLASHpnotecite] = ACTIONS(5125), - [anon_sym_BSLASHPnotecite] = ACTIONS(5125), - [anon_sym_BSLASHfnotecite] = ACTIONS(5125), - [anon_sym_BSLASHlabel] = ACTIONS(5125), - [anon_sym_BSLASHref] = ACTIONS(5125), - [anon_sym_BSLASHeqref] = ACTIONS(5125), - [anon_sym_BSLASHvref] = ACTIONS(5125), - [anon_sym_BSLASHVref] = ACTIONS(5125), - [anon_sym_BSLASHautoref] = ACTIONS(5125), - [anon_sym_BSLASHpageref] = ACTIONS(5125), - [anon_sym_BSLASHcref] = ACTIONS(5125), - [anon_sym_BSLASHCref] = ACTIONS(5125), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnameCref] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5125), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5125), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5125), - [anon_sym_BSLASHlabelcref] = ACTIONS(5125), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange] = ACTIONS(5125), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHCrefrange] = ACTIONS(5125), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5123), - [anon_sym_BSLASHnewlabel] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand] = ACTIONS(5125), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5125), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5125), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5123), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5125), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5123), - [anon_sym_BSLASHdef] = ACTIONS(5125), - [anon_sym_BSLASHlet] = ACTIONS(5125), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5125), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5125), - [anon_sym_BSLASHgls] = ACTIONS(5125), - [anon_sym_BSLASHGls] = ACTIONS(5125), - [anon_sym_BSLASHGLS] = ACTIONS(5125), - [anon_sym_BSLASHglspl] = ACTIONS(5125), - [anon_sym_BSLASHGlspl] = ACTIONS(5125), - [anon_sym_BSLASHGLSpl] = ACTIONS(5125), - [anon_sym_BSLASHglsdisp] = ACTIONS(5125), - [anon_sym_BSLASHglslink] = ACTIONS(5125), - [anon_sym_BSLASHglstext] = ACTIONS(5125), - [anon_sym_BSLASHGlstext] = ACTIONS(5125), - [anon_sym_BSLASHGLStext] = ACTIONS(5125), - [anon_sym_BSLASHglsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5125), - [anon_sym_BSLASHglsplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSplural] = ACTIONS(5125), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5125), - [anon_sym_BSLASHglsname] = ACTIONS(5125), - [anon_sym_BSLASHGlsname] = ACTIONS(5125), - [anon_sym_BSLASHGLSname] = ACTIONS(5125), - [anon_sym_BSLASHglssymbol] = ACTIONS(5125), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5125), - [anon_sym_BSLASHglsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5125), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5125), - [anon_sym_BSLASHglsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5125), - [anon_sym_BSLASHglsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5125), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5125), - [anon_sym_BSLASHglsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5125), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5125), - [anon_sym_BSLASHglsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5125), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5125), - [anon_sym_BSLASHnewacronym] = ACTIONS(5125), - [anon_sym_BSLASHacrshort] = ACTIONS(5125), - [anon_sym_BSLASHAcrshort] = ACTIONS(5125), - [anon_sym_BSLASHACRshort] = ACTIONS(5125), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5125), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5125), - [anon_sym_BSLASHacrlong] = ACTIONS(5125), - [anon_sym_BSLASHAcrlong] = ACTIONS(5125), - [anon_sym_BSLASHACRlong] = ACTIONS(5125), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5125), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5125), - [anon_sym_BSLASHacrfull] = ACTIONS(5125), - [anon_sym_BSLASHAcrfull] = ACTIONS(5125), - [anon_sym_BSLASHACRfull] = ACTIONS(5125), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5125), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5125), - [anon_sym_BSLASHacs] = ACTIONS(5125), - [anon_sym_BSLASHAcs] = ACTIONS(5125), - [anon_sym_BSLASHacsp] = ACTIONS(5125), - [anon_sym_BSLASHAcsp] = ACTIONS(5125), - [anon_sym_BSLASHacl] = ACTIONS(5125), - [anon_sym_BSLASHAcl] = ACTIONS(5125), - [anon_sym_BSLASHaclp] = ACTIONS(5125), - [anon_sym_BSLASHAclp] = ACTIONS(5125), - [anon_sym_BSLASHacf] = ACTIONS(5125), - [anon_sym_BSLASHAcf] = ACTIONS(5125), - [anon_sym_BSLASHacfp] = ACTIONS(5125), - [anon_sym_BSLASHAcfp] = ACTIONS(5125), - [anon_sym_BSLASHac] = ACTIONS(5125), - [anon_sym_BSLASHAc] = ACTIONS(5125), - [anon_sym_BSLASHacp] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5125), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5125), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5125), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5125), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5125), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5125), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5125), - [anon_sym_BSLASHcolor] = ACTIONS(5125), - [anon_sym_BSLASHcolorbox] = ACTIONS(5125), - [anon_sym_BSLASHtextcolor] = ACTIONS(5125), - [anon_sym_BSLASHpagecolor] = ACTIONS(5125), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5125), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5125), + [sym_command_name] = ACTIONS(5265), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5265), + [anon_sym_RBRACK] = ACTIONS(5263), + [anon_sym_COMMA] = ACTIONS(5263), + [anon_sym_EQ] = ACTIONS(5263), + [anon_sym_RBRACE] = ACTIONS(5263), + [sym_word] = ACTIONS(5265), + [sym_placeholder] = ACTIONS(5263), + [anon_sym_PLUS] = ACTIONS(5265), + [anon_sym_DASH] = ACTIONS(5265), + [anon_sym_STAR] = ACTIONS(5265), + [anon_sym_SLASH] = ACTIONS(5265), + [anon_sym_CARET] = ACTIONS(5265), + [anon_sym__] = ACTIONS(5265), + [anon_sym_LT] = ACTIONS(5265), + [anon_sym_GT] = ACTIONS(5265), + [anon_sym_BANG] = ACTIONS(5265), + [anon_sym_PIPE] = ACTIONS(5265), + [anon_sym_COLON] = ACTIONS(5265), + [anon_sym_SQUOTE] = ACTIONS(5265), + [anon_sym_BSLASHusepackage] = ACTIONS(5265), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5265), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5265), + [anon_sym_BSLASHinclude] = ACTIONS(5265), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5265), + [anon_sym_BSLASHinput] = ACTIONS(5265), + [anon_sym_BSLASHsubfile] = ACTIONS(5265), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5265), + [anon_sym_BSLASHbibliography] = ACTIONS(5265), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5265), + [anon_sym_BSLASHincludesvg] = ACTIONS(5265), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5265), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5265), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5265), + [anon_sym_BSLASHimport] = ACTIONS(5265), + [anon_sym_BSLASHsubimport] = ACTIONS(5265), + [anon_sym_BSLASHinputfrom] = ACTIONS(5265), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5265), + [anon_sym_BSLASHincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5265), + [anon_sym_BSLASHcaption] = ACTIONS(5265), + [anon_sym_BSLASHcite] = ACTIONS(5265), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCite] = ACTIONS(5265), + [anon_sym_BSLASHnocite] = ACTIONS(5265), + [anon_sym_BSLASHcitet] = ACTIONS(5265), + [anon_sym_BSLASHcitep] = ACTIONS(5265), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteauthor] = ACTIONS(5265), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5265), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitetitle] = ACTIONS(5265), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteyear] = ACTIONS(5265), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5263), + [anon_sym_BSLASHcitedate] = ACTIONS(5265), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5263), + [anon_sym_BSLASHciteurl] = ACTIONS(5265), + [anon_sym_BSLASHfullcite] = ACTIONS(5265), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5265), + [anon_sym_BSLASHcitealt] = ACTIONS(5265), + [anon_sym_BSLASHcitealp] = ACTIONS(5265), + [anon_sym_BSLASHcitetext] = ACTIONS(5265), + [anon_sym_BSLASHparencite] = ACTIONS(5265), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHParencite] = ACTIONS(5265), + [anon_sym_BSLASHfootcite] = ACTIONS(5265), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5265), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5265), + [anon_sym_BSLASHtextcite] = ACTIONS(5265), + [anon_sym_BSLASHTextcite] = ACTIONS(5265), + [anon_sym_BSLASHsmartcite] = ACTIONS(5265), + [anon_sym_BSLASHSmartcite] = ACTIONS(5265), + [anon_sym_BSLASHsupercite] = ACTIONS(5265), + [anon_sym_BSLASHautocite] = ACTIONS(5265), + [anon_sym_BSLASHAutocite] = ACTIONS(5265), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5263), + [anon_sym_BSLASHvolcite] = ACTIONS(5265), + [anon_sym_BSLASHVolcite] = ACTIONS(5265), + [anon_sym_BSLASHpvolcite] = ACTIONS(5265), + [anon_sym_BSLASHPvolcite] = ACTIONS(5265), + [anon_sym_BSLASHfvolcite] = ACTIONS(5265), + [anon_sym_BSLASHftvolcite] = ACTIONS(5265), + [anon_sym_BSLASHsvolcite] = ACTIONS(5265), + [anon_sym_BSLASHSvolcite] = ACTIONS(5265), + [anon_sym_BSLASHtvolcite] = ACTIONS(5265), + [anon_sym_BSLASHTvolcite] = ACTIONS(5265), + [anon_sym_BSLASHavolcite] = ACTIONS(5265), + [anon_sym_BSLASHAvolcite] = ACTIONS(5265), + [anon_sym_BSLASHnotecite] = ACTIONS(5265), + [anon_sym_BSLASHNotecite] = ACTIONS(5265), + [anon_sym_BSLASHpnotecite] = ACTIONS(5265), + [anon_sym_BSLASHPnotecite] = ACTIONS(5265), + [anon_sym_BSLASHfnotecite] = ACTIONS(5265), + [anon_sym_BSLASHlabel] = ACTIONS(5265), + [anon_sym_BSLASHref] = ACTIONS(5265), + [anon_sym_BSLASHeqref] = ACTIONS(5265), + [anon_sym_BSLASHvref] = ACTIONS(5265), + [anon_sym_BSLASHVref] = ACTIONS(5265), + [anon_sym_BSLASHautoref] = ACTIONS(5265), + [anon_sym_BSLASHpageref] = ACTIONS(5265), + [anon_sym_BSLASHcref] = ACTIONS(5265), + [anon_sym_BSLASHCref] = ACTIONS(5265), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnameCref] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5265), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5265), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5265), + [anon_sym_BSLASHlabelcref] = ACTIONS(5265), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange] = ACTIONS(5265), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHCrefrange] = ACTIONS(5265), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5263), + [anon_sym_BSLASHnewlabel] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand] = ACTIONS(5265), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5265), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5265), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5263), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5265), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5263), + [anon_sym_BSLASHdef] = ACTIONS(5265), + [anon_sym_BSLASHlet] = ACTIONS(5265), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5265), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5265), + [anon_sym_BSLASHgls] = ACTIONS(5265), + [anon_sym_BSLASHGls] = ACTIONS(5265), + [anon_sym_BSLASHGLS] = ACTIONS(5265), + [anon_sym_BSLASHglspl] = ACTIONS(5265), + [anon_sym_BSLASHGlspl] = ACTIONS(5265), + [anon_sym_BSLASHGLSpl] = ACTIONS(5265), + [anon_sym_BSLASHglsdisp] = ACTIONS(5265), + [anon_sym_BSLASHglslink] = ACTIONS(5265), + [anon_sym_BSLASHglstext] = ACTIONS(5265), + [anon_sym_BSLASHGlstext] = ACTIONS(5265), + [anon_sym_BSLASHGLStext] = ACTIONS(5265), + [anon_sym_BSLASHglsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5265), + [anon_sym_BSLASHglsplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSplural] = ACTIONS(5265), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5265), + [anon_sym_BSLASHglsname] = ACTIONS(5265), + [anon_sym_BSLASHGlsname] = ACTIONS(5265), + [anon_sym_BSLASHGLSname] = ACTIONS(5265), + [anon_sym_BSLASHglssymbol] = ACTIONS(5265), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5265), + [anon_sym_BSLASHglsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5265), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5265), + [anon_sym_BSLASHglsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5265), + [anon_sym_BSLASHglsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5265), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5265), + [anon_sym_BSLASHglsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5265), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5265), + [anon_sym_BSLASHglsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5265), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5265), + [anon_sym_BSLASHnewacronym] = ACTIONS(5265), + [anon_sym_BSLASHacrshort] = ACTIONS(5265), + [anon_sym_BSLASHAcrshort] = ACTIONS(5265), + [anon_sym_BSLASHACRshort] = ACTIONS(5265), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5265), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5265), + [anon_sym_BSLASHacrlong] = ACTIONS(5265), + [anon_sym_BSLASHAcrlong] = ACTIONS(5265), + [anon_sym_BSLASHACRlong] = ACTIONS(5265), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5265), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5265), + [anon_sym_BSLASHacrfull] = ACTIONS(5265), + [anon_sym_BSLASHAcrfull] = ACTIONS(5265), + [anon_sym_BSLASHACRfull] = ACTIONS(5265), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5265), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5265), + [anon_sym_BSLASHacs] = ACTIONS(5265), + [anon_sym_BSLASHAcs] = ACTIONS(5265), + [anon_sym_BSLASHacsp] = ACTIONS(5265), + [anon_sym_BSLASHAcsp] = ACTIONS(5265), + [anon_sym_BSLASHacl] = ACTIONS(5265), + [anon_sym_BSLASHAcl] = ACTIONS(5265), + [anon_sym_BSLASHaclp] = ACTIONS(5265), + [anon_sym_BSLASHAclp] = ACTIONS(5265), + [anon_sym_BSLASHacf] = ACTIONS(5265), + [anon_sym_BSLASHAcf] = ACTIONS(5265), + [anon_sym_BSLASHacfp] = ACTIONS(5265), + [anon_sym_BSLASHAcfp] = ACTIONS(5265), + [anon_sym_BSLASHac] = ACTIONS(5265), + [anon_sym_BSLASHAc] = ACTIONS(5265), + [anon_sym_BSLASHacp] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5265), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5265), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5265), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5265), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5265), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5265), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5265), + [anon_sym_BSLASHcolor] = ACTIONS(5265), + [anon_sym_BSLASHcolorbox] = ACTIONS(5265), + [anon_sym_BSLASHtextcolor] = ACTIONS(5265), + [anon_sym_BSLASHpagecolor] = ACTIONS(5265), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5265), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5265), }, [1568] = { - [sym_command_name] = ACTIONS(5299), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5299), - [anon_sym_RBRACK] = ACTIONS(5297), - [anon_sym_COMMA] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(5297), - [anon_sym_RBRACE] = ACTIONS(5297), - [sym_word] = ACTIONS(5299), - [sym_placeholder] = ACTIONS(5297), - [anon_sym_PLUS] = ACTIONS(5299), - [anon_sym_DASH] = ACTIONS(5299), - [anon_sym_STAR] = ACTIONS(5299), - [anon_sym_SLASH] = ACTIONS(5299), - [anon_sym_CARET] = ACTIONS(5299), - [anon_sym__] = ACTIONS(5299), - [anon_sym_LT] = ACTIONS(5299), - [anon_sym_GT] = ACTIONS(5299), - [anon_sym_BANG] = ACTIONS(5299), - [anon_sym_PIPE] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(5299), - [anon_sym_SQUOTE] = ACTIONS(5299), - [anon_sym_BSLASHusepackage] = ACTIONS(5299), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5299), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5299), - [anon_sym_BSLASHinclude] = ACTIONS(5299), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5299), - [anon_sym_BSLASHinput] = ACTIONS(5299), - [anon_sym_BSLASHsubfile] = ACTIONS(5299), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5299), - [anon_sym_BSLASHbibliography] = ACTIONS(5299), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5299), - [anon_sym_BSLASHincludesvg] = ACTIONS(5299), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5299), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5299), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5299), - [anon_sym_BSLASHimport] = ACTIONS(5299), - [anon_sym_BSLASHsubimport] = ACTIONS(5299), - [anon_sym_BSLASHinputfrom] = ACTIONS(5299), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5299), - [anon_sym_BSLASHincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5299), - [anon_sym_BSLASHcaption] = ACTIONS(5299), - [anon_sym_BSLASHcite] = ACTIONS(5299), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCite] = ACTIONS(5299), - [anon_sym_BSLASHnocite] = ACTIONS(5299), - [anon_sym_BSLASHcitet] = ACTIONS(5299), - [anon_sym_BSLASHcitep] = ACTIONS(5299), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteauthor] = ACTIONS(5299), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5299), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitetitle] = ACTIONS(5299), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteyear] = ACTIONS(5299), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5297), - [anon_sym_BSLASHcitedate] = ACTIONS(5299), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5297), - [anon_sym_BSLASHciteurl] = ACTIONS(5299), - [anon_sym_BSLASHfullcite] = ACTIONS(5299), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5299), - [anon_sym_BSLASHcitealt] = ACTIONS(5299), - [anon_sym_BSLASHcitealp] = ACTIONS(5299), - [anon_sym_BSLASHcitetext] = ACTIONS(5299), - [anon_sym_BSLASHparencite] = ACTIONS(5299), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHParencite] = ACTIONS(5299), - [anon_sym_BSLASHfootcite] = ACTIONS(5299), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5299), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5299), - [anon_sym_BSLASHtextcite] = ACTIONS(5299), - [anon_sym_BSLASHTextcite] = ACTIONS(5299), - [anon_sym_BSLASHsmartcite] = ACTIONS(5299), - [anon_sym_BSLASHSmartcite] = ACTIONS(5299), - [anon_sym_BSLASHsupercite] = ACTIONS(5299), - [anon_sym_BSLASHautocite] = ACTIONS(5299), - [anon_sym_BSLASHAutocite] = ACTIONS(5299), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5297), - [anon_sym_BSLASHvolcite] = ACTIONS(5299), - [anon_sym_BSLASHVolcite] = ACTIONS(5299), - [anon_sym_BSLASHpvolcite] = ACTIONS(5299), - [anon_sym_BSLASHPvolcite] = ACTIONS(5299), - [anon_sym_BSLASHfvolcite] = ACTIONS(5299), - [anon_sym_BSLASHftvolcite] = ACTIONS(5299), - [anon_sym_BSLASHsvolcite] = ACTIONS(5299), - [anon_sym_BSLASHSvolcite] = ACTIONS(5299), - [anon_sym_BSLASHtvolcite] = ACTIONS(5299), - [anon_sym_BSLASHTvolcite] = ACTIONS(5299), - [anon_sym_BSLASHavolcite] = ACTIONS(5299), - [anon_sym_BSLASHAvolcite] = ACTIONS(5299), - [anon_sym_BSLASHnotecite] = ACTIONS(5299), - [anon_sym_BSLASHNotecite] = ACTIONS(5299), - [anon_sym_BSLASHpnotecite] = ACTIONS(5299), - [anon_sym_BSLASHPnotecite] = ACTIONS(5299), - [anon_sym_BSLASHfnotecite] = ACTIONS(5299), - [anon_sym_BSLASHlabel] = ACTIONS(5299), - [anon_sym_BSLASHref] = ACTIONS(5299), - [anon_sym_BSLASHeqref] = ACTIONS(5299), - [anon_sym_BSLASHvref] = ACTIONS(5299), - [anon_sym_BSLASHVref] = ACTIONS(5299), - [anon_sym_BSLASHautoref] = ACTIONS(5299), - [anon_sym_BSLASHpageref] = ACTIONS(5299), - [anon_sym_BSLASHcref] = ACTIONS(5299), - [anon_sym_BSLASHCref] = ACTIONS(5299), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnameCref] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5299), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5299), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5299), - [anon_sym_BSLASHlabelcref] = ACTIONS(5299), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange] = ACTIONS(5299), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHCrefrange] = ACTIONS(5299), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5297), - [anon_sym_BSLASHnewlabel] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand] = ACTIONS(5299), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5299), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5299), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5297), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5299), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5297), - [anon_sym_BSLASHdef] = ACTIONS(5299), - [anon_sym_BSLASHlet] = ACTIONS(5299), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5299), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5299), - [anon_sym_BSLASHgls] = ACTIONS(5299), - [anon_sym_BSLASHGls] = ACTIONS(5299), - [anon_sym_BSLASHGLS] = ACTIONS(5299), - [anon_sym_BSLASHglspl] = ACTIONS(5299), - [anon_sym_BSLASHGlspl] = ACTIONS(5299), - [anon_sym_BSLASHGLSpl] = ACTIONS(5299), - [anon_sym_BSLASHglsdisp] = ACTIONS(5299), - [anon_sym_BSLASHglslink] = ACTIONS(5299), - [anon_sym_BSLASHglstext] = ACTIONS(5299), - [anon_sym_BSLASHGlstext] = ACTIONS(5299), - [anon_sym_BSLASHGLStext] = ACTIONS(5299), - [anon_sym_BSLASHglsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5299), - [anon_sym_BSLASHglsplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSplural] = ACTIONS(5299), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5299), - [anon_sym_BSLASHglsname] = ACTIONS(5299), - [anon_sym_BSLASHGlsname] = ACTIONS(5299), - [anon_sym_BSLASHGLSname] = ACTIONS(5299), - [anon_sym_BSLASHglssymbol] = ACTIONS(5299), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5299), - [anon_sym_BSLASHglsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5299), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5299), - [anon_sym_BSLASHglsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5299), - [anon_sym_BSLASHglsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5299), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5299), - [anon_sym_BSLASHglsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5299), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5299), - [anon_sym_BSLASHglsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5299), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5299), - [anon_sym_BSLASHnewacronym] = ACTIONS(5299), - [anon_sym_BSLASHacrshort] = ACTIONS(5299), - [anon_sym_BSLASHAcrshort] = ACTIONS(5299), - [anon_sym_BSLASHACRshort] = ACTIONS(5299), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5299), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5299), - [anon_sym_BSLASHacrlong] = ACTIONS(5299), - [anon_sym_BSLASHAcrlong] = ACTIONS(5299), - [anon_sym_BSLASHACRlong] = ACTIONS(5299), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5299), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5299), - [anon_sym_BSLASHacrfull] = ACTIONS(5299), - [anon_sym_BSLASHAcrfull] = ACTIONS(5299), - [anon_sym_BSLASHACRfull] = ACTIONS(5299), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5299), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5299), - [anon_sym_BSLASHacs] = ACTIONS(5299), - [anon_sym_BSLASHAcs] = ACTIONS(5299), - [anon_sym_BSLASHacsp] = ACTIONS(5299), - [anon_sym_BSLASHAcsp] = ACTIONS(5299), - [anon_sym_BSLASHacl] = ACTIONS(5299), - [anon_sym_BSLASHAcl] = ACTIONS(5299), - [anon_sym_BSLASHaclp] = ACTIONS(5299), - [anon_sym_BSLASHAclp] = ACTIONS(5299), - [anon_sym_BSLASHacf] = ACTIONS(5299), - [anon_sym_BSLASHAcf] = ACTIONS(5299), - [anon_sym_BSLASHacfp] = ACTIONS(5299), - [anon_sym_BSLASHAcfp] = ACTIONS(5299), - [anon_sym_BSLASHac] = ACTIONS(5299), - [anon_sym_BSLASHAc] = ACTIONS(5299), - [anon_sym_BSLASHacp] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5299), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5299), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5299), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5299), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5299), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5299), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5299), - [anon_sym_BSLASHcolor] = ACTIONS(5299), - [anon_sym_BSLASHcolorbox] = ACTIONS(5299), - [anon_sym_BSLASHtextcolor] = ACTIONS(5299), - [anon_sym_BSLASHpagecolor] = ACTIONS(5299), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5299), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5299), + [sym_command_name] = ACTIONS(5261), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5261), + [anon_sym_RBRACK] = ACTIONS(5259), + [anon_sym_COMMA] = ACTIONS(5259), + [anon_sym_EQ] = ACTIONS(5259), + [anon_sym_RBRACE] = ACTIONS(5259), + [sym_word] = ACTIONS(5261), + [sym_placeholder] = ACTIONS(5259), + [anon_sym_PLUS] = ACTIONS(5261), + [anon_sym_DASH] = ACTIONS(5261), + [anon_sym_STAR] = ACTIONS(5261), + [anon_sym_SLASH] = ACTIONS(5261), + [anon_sym_CARET] = ACTIONS(5261), + [anon_sym__] = ACTIONS(5261), + [anon_sym_LT] = ACTIONS(5261), + [anon_sym_GT] = ACTIONS(5261), + [anon_sym_BANG] = ACTIONS(5261), + [anon_sym_PIPE] = ACTIONS(5261), + [anon_sym_COLON] = ACTIONS(5261), + [anon_sym_SQUOTE] = ACTIONS(5261), + [anon_sym_BSLASHusepackage] = ACTIONS(5261), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5261), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5261), + [anon_sym_BSLASHinclude] = ACTIONS(5261), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5261), + [anon_sym_BSLASHinput] = ACTIONS(5261), + [anon_sym_BSLASHsubfile] = ACTIONS(5261), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5261), + [anon_sym_BSLASHbibliography] = ACTIONS(5261), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5261), + [anon_sym_BSLASHincludesvg] = ACTIONS(5261), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5261), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5261), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5261), + [anon_sym_BSLASHimport] = ACTIONS(5261), + [anon_sym_BSLASHsubimport] = ACTIONS(5261), + [anon_sym_BSLASHinputfrom] = ACTIONS(5261), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5261), + [anon_sym_BSLASHincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5261), + [anon_sym_BSLASHcaption] = ACTIONS(5261), + [anon_sym_BSLASHcite] = ACTIONS(5261), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCite] = ACTIONS(5261), + [anon_sym_BSLASHnocite] = ACTIONS(5261), + [anon_sym_BSLASHcitet] = ACTIONS(5261), + [anon_sym_BSLASHcitep] = ACTIONS(5261), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteauthor] = ACTIONS(5261), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5261), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitetitle] = ACTIONS(5261), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteyear] = ACTIONS(5261), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5259), + [anon_sym_BSLASHcitedate] = ACTIONS(5261), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5259), + [anon_sym_BSLASHciteurl] = ACTIONS(5261), + [anon_sym_BSLASHfullcite] = ACTIONS(5261), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5261), + [anon_sym_BSLASHcitealt] = ACTIONS(5261), + [anon_sym_BSLASHcitealp] = ACTIONS(5261), + [anon_sym_BSLASHcitetext] = ACTIONS(5261), + [anon_sym_BSLASHparencite] = ACTIONS(5261), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHParencite] = ACTIONS(5261), + [anon_sym_BSLASHfootcite] = ACTIONS(5261), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5261), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5261), + [anon_sym_BSLASHtextcite] = ACTIONS(5261), + [anon_sym_BSLASHTextcite] = ACTIONS(5261), + [anon_sym_BSLASHsmartcite] = ACTIONS(5261), + [anon_sym_BSLASHSmartcite] = ACTIONS(5261), + [anon_sym_BSLASHsupercite] = ACTIONS(5261), + [anon_sym_BSLASHautocite] = ACTIONS(5261), + [anon_sym_BSLASHAutocite] = ACTIONS(5261), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5259), + [anon_sym_BSLASHvolcite] = ACTIONS(5261), + [anon_sym_BSLASHVolcite] = ACTIONS(5261), + [anon_sym_BSLASHpvolcite] = ACTIONS(5261), + [anon_sym_BSLASHPvolcite] = ACTIONS(5261), + [anon_sym_BSLASHfvolcite] = ACTIONS(5261), + [anon_sym_BSLASHftvolcite] = ACTIONS(5261), + [anon_sym_BSLASHsvolcite] = ACTIONS(5261), + [anon_sym_BSLASHSvolcite] = ACTIONS(5261), + [anon_sym_BSLASHtvolcite] = ACTIONS(5261), + [anon_sym_BSLASHTvolcite] = ACTIONS(5261), + [anon_sym_BSLASHavolcite] = ACTIONS(5261), + [anon_sym_BSLASHAvolcite] = ACTIONS(5261), + [anon_sym_BSLASHnotecite] = ACTIONS(5261), + [anon_sym_BSLASHNotecite] = ACTIONS(5261), + [anon_sym_BSLASHpnotecite] = ACTIONS(5261), + [anon_sym_BSLASHPnotecite] = ACTIONS(5261), + [anon_sym_BSLASHfnotecite] = ACTIONS(5261), + [anon_sym_BSLASHlabel] = ACTIONS(5261), + [anon_sym_BSLASHref] = ACTIONS(5261), + [anon_sym_BSLASHeqref] = ACTIONS(5261), + [anon_sym_BSLASHvref] = ACTIONS(5261), + [anon_sym_BSLASHVref] = ACTIONS(5261), + [anon_sym_BSLASHautoref] = ACTIONS(5261), + [anon_sym_BSLASHpageref] = ACTIONS(5261), + [anon_sym_BSLASHcref] = ACTIONS(5261), + [anon_sym_BSLASHCref] = ACTIONS(5261), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnameCref] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5261), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5261), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5261), + [anon_sym_BSLASHlabelcref] = ACTIONS(5261), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange] = ACTIONS(5261), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHCrefrange] = ACTIONS(5261), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5259), + [anon_sym_BSLASHnewlabel] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand] = ACTIONS(5261), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5261), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5261), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5259), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5261), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5259), + [anon_sym_BSLASHdef] = ACTIONS(5261), + [anon_sym_BSLASHlet] = ACTIONS(5261), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5261), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5261), + [anon_sym_BSLASHgls] = ACTIONS(5261), + [anon_sym_BSLASHGls] = ACTIONS(5261), + [anon_sym_BSLASHGLS] = ACTIONS(5261), + [anon_sym_BSLASHglspl] = ACTIONS(5261), + [anon_sym_BSLASHGlspl] = ACTIONS(5261), + [anon_sym_BSLASHGLSpl] = ACTIONS(5261), + [anon_sym_BSLASHglsdisp] = ACTIONS(5261), + [anon_sym_BSLASHglslink] = ACTIONS(5261), + [anon_sym_BSLASHglstext] = ACTIONS(5261), + [anon_sym_BSLASHGlstext] = ACTIONS(5261), + [anon_sym_BSLASHGLStext] = ACTIONS(5261), + [anon_sym_BSLASHglsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5261), + [anon_sym_BSLASHglsplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSplural] = ACTIONS(5261), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5261), + [anon_sym_BSLASHglsname] = ACTIONS(5261), + [anon_sym_BSLASHGlsname] = ACTIONS(5261), + [anon_sym_BSLASHGLSname] = ACTIONS(5261), + [anon_sym_BSLASHglssymbol] = ACTIONS(5261), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5261), + [anon_sym_BSLASHglsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5261), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5261), + [anon_sym_BSLASHglsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5261), + [anon_sym_BSLASHglsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5261), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5261), + [anon_sym_BSLASHglsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5261), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5261), + [anon_sym_BSLASHglsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5261), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5261), + [anon_sym_BSLASHnewacronym] = ACTIONS(5261), + [anon_sym_BSLASHacrshort] = ACTIONS(5261), + [anon_sym_BSLASHAcrshort] = ACTIONS(5261), + [anon_sym_BSLASHACRshort] = ACTIONS(5261), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5261), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5261), + [anon_sym_BSLASHacrlong] = ACTIONS(5261), + [anon_sym_BSLASHAcrlong] = ACTIONS(5261), + [anon_sym_BSLASHACRlong] = ACTIONS(5261), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5261), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5261), + [anon_sym_BSLASHacrfull] = ACTIONS(5261), + [anon_sym_BSLASHAcrfull] = ACTIONS(5261), + [anon_sym_BSLASHACRfull] = ACTIONS(5261), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5261), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5261), + [anon_sym_BSLASHacs] = ACTIONS(5261), + [anon_sym_BSLASHAcs] = ACTIONS(5261), + [anon_sym_BSLASHacsp] = ACTIONS(5261), + [anon_sym_BSLASHAcsp] = ACTIONS(5261), + [anon_sym_BSLASHacl] = ACTIONS(5261), + [anon_sym_BSLASHAcl] = ACTIONS(5261), + [anon_sym_BSLASHaclp] = ACTIONS(5261), + [anon_sym_BSLASHAclp] = ACTIONS(5261), + [anon_sym_BSLASHacf] = ACTIONS(5261), + [anon_sym_BSLASHAcf] = ACTIONS(5261), + [anon_sym_BSLASHacfp] = ACTIONS(5261), + [anon_sym_BSLASHAcfp] = ACTIONS(5261), + [anon_sym_BSLASHac] = ACTIONS(5261), + [anon_sym_BSLASHAc] = ACTIONS(5261), + [anon_sym_BSLASHacp] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5261), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5261), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5261), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5261), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5261), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5261), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5261), + [anon_sym_BSLASHcolor] = ACTIONS(5261), + [anon_sym_BSLASHcolorbox] = ACTIONS(5261), + [anon_sym_BSLASHtextcolor] = ACTIONS(5261), + [anon_sym_BSLASHpagecolor] = ACTIONS(5261), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5261), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5261), }, [1569] = { - [sym_command_name] = ACTIONS(5275), - [sym__whitespace] = ACTIONS(3), - [sym_line_comment] = ACTIONS(3), - [anon_sym_BSLASHiffalse] = ACTIONS(5275), - [anon_sym_RBRACK] = ACTIONS(5273), - [anon_sym_COMMA] = ACTIONS(5273), - [anon_sym_EQ] = ACTIONS(5273), - [anon_sym_RBRACE] = ACTIONS(5273), - [sym_word] = ACTIONS(5275), - [sym_placeholder] = ACTIONS(5273), - [anon_sym_PLUS] = ACTIONS(5275), - [anon_sym_DASH] = ACTIONS(5275), - [anon_sym_STAR] = ACTIONS(5275), - [anon_sym_SLASH] = ACTIONS(5275), - [anon_sym_CARET] = ACTIONS(5275), - [anon_sym__] = ACTIONS(5275), - [anon_sym_LT] = ACTIONS(5275), - [anon_sym_GT] = ACTIONS(5275), - [anon_sym_BANG] = ACTIONS(5275), - [anon_sym_PIPE] = ACTIONS(5275), - [anon_sym_COLON] = ACTIONS(5275), - [anon_sym_SQUOTE] = ACTIONS(5275), - [anon_sym_BSLASHusepackage] = ACTIONS(5275), - [anon_sym_BSLASHRequirePackage] = ACTIONS(5275), - [anon_sym_BSLASHdocumentclass] = ACTIONS(5275), - [anon_sym_BSLASHinclude] = ACTIONS(5275), - [anon_sym_BSLASHsubfileinclude] = ACTIONS(5275), - [anon_sym_BSLASHinput] = ACTIONS(5275), - [anon_sym_BSLASHsubfile] = ACTIONS(5275), - [anon_sym_BSLASHaddbibresource] = ACTIONS(5275), - [anon_sym_BSLASHbibliography] = ACTIONS(5275), - [anon_sym_BSLASHincludegraphics] = ACTIONS(5275), - [anon_sym_BSLASHincludesvg] = ACTIONS(5275), - [anon_sym_BSLASHincludeinkscape] = ACTIONS(5275), - [anon_sym_BSLASHverbatiminput] = ACTIONS(5275), - [anon_sym_BSLASHVerbatimInput] = ACTIONS(5275), - [anon_sym_BSLASHimport] = ACTIONS(5275), - [anon_sym_BSLASHsubimport] = ACTIONS(5275), - [anon_sym_BSLASHinputfrom] = ACTIONS(5275), - [anon_sym_BSLASHsubimportfrom] = ACTIONS(5275), - [anon_sym_BSLASHincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHsubincludefrom] = ACTIONS(5275), - [anon_sym_BSLASHcaption] = ACTIONS(5275), - [anon_sym_BSLASHcite] = ACTIONS(5275), - [anon_sym_BSLASHcite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCite] = ACTIONS(5275), - [anon_sym_BSLASHnocite] = ACTIONS(5275), - [anon_sym_BSLASHcitet] = ACTIONS(5275), - [anon_sym_BSLASHcitep] = ACTIONS(5275), - [anon_sym_BSLASHcitet_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitep_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteauthor] = ACTIONS(5275), - [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCiteauthor] = ACTIONS(5275), - [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitetitle] = ACTIONS(5275), - [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteyear] = ACTIONS(5275), - [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5273), - [anon_sym_BSLASHcitedate] = ACTIONS(5275), - [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5273), - [anon_sym_BSLASHciteurl] = ACTIONS(5275), - [anon_sym_BSLASHfullcite] = ACTIONS(5275), - [anon_sym_BSLASHciteyearpar] = ACTIONS(5275), - [anon_sym_BSLASHcitealt] = ACTIONS(5275), - [anon_sym_BSLASHcitealp] = ACTIONS(5275), - [anon_sym_BSLASHcitetext] = ACTIONS(5275), - [anon_sym_BSLASHparencite] = ACTIONS(5275), - [anon_sym_BSLASHparencite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHParencite] = ACTIONS(5275), - [anon_sym_BSLASHfootcite] = ACTIONS(5275), - [anon_sym_BSLASHfootfullcite] = ACTIONS(5275), - [anon_sym_BSLASHfootcitetext] = ACTIONS(5275), - [anon_sym_BSLASHtextcite] = ACTIONS(5275), - [anon_sym_BSLASHTextcite] = ACTIONS(5275), - [anon_sym_BSLASHsmartcite] = ACTIONS(5275), - [anon_sym_BSLASHSmartcite] = ACTIONS(5275), - [anon_sym_BSLASHsupercite] = ACTIONS(5275), - [anon_sym_BSLASHautocite] = ACTIONS(5275), - [anon_sym_BSLASHAutocite] = ACTIONS(5275), - [anon_sym_BSLASHautocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5273), - [anon_sym_BSLASHvolcite] = ACTIONS(5275), - [anon_sym_BSLASHVolcite] = ACTIONS(5275), - [anon_sym_BSLASHpvolcite] = ACTIONS(5275), - [anon_sym_BSLASHPvolcite] = ACTIONS(5275), - [anon_sym_BSLASHfvolcite] = ACTIONS(5275), - [anon_sym_BSLASHftvolcite] = ACTIONS(5275), - [anon_sym_BSLASHsvolcite] = ACTIONS(5275), - [anon_sym_BSLASHSvolcite] = ACTIONS(5275), - [anon_sym_BSLASHtvolcite] = ACTIONS(5275), - [anon_sym_BSLASHTvolcite] = ACTIONS(5275), - [anon_sym_BSLASHavolcite] = ACTIONS(5275), - [anon_sym_BSLASHAvolcite] = ACTIONS(5275), - [anon_sym_BSLASHnotecite] = ACTIONS(5275), - [anon_sym_BSLASHNotecite] = ACTIONS(5275), - [anon_sym_BSLASHpnotecite] = ACTIONS(5275), - [anon_sym_BSLASHPnotecite] = ACTIONS(5275), - [anon_sym_BSLASHfnotecite] = ACTIONS(5275), - [anon_sym_BSLASHlabel] = ACTIONS(5275), - [anon_sym_BSLASHref] = ACTIONS(5275), - [anon_sym_BSLASHeqref] = ACTIONS(5275), - [anon_sym_BSLASHvref] = ACTIONS(5275), - [anon_sym_BSLASHVref] = ACTIONS(5275), - [anon_sym_BSLASHautoref] = ACTIONS(5275), - [anon_sym_BSLASHpageref] = ACTIONS(5275), - [anon_sym_BSLASHcref] = ACTIONS(5275), - [anon_sym_BSLASHCref] = ACTIONS(5275), - [anon_sym_BSLASHcref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCref_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnameCref] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecref] = ACTIONS(5275), - [anon_sym_BSLASHnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHnameCrefs] = ACTIONS(5275), - [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5275), - [anon_sym_BSLASHlabelcref] = ACTIONS(5275), - [anon_sym_BSLASHlabelcpageref] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange] = ACTIONS(5275), - [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHCrefrange] = ACTIONS(5275), - [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5273), - [anon_sym_BSLASHnewlabel] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand] = ACTIONS(5275), - [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHrenewcommand] = ACTIONS(5275), - [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5275), - [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5273), - [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5275), - [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5273), - [anon_sym_BSLASHdef] = ACTIONS(5275), - [anon_sym_BSLASHlet] = ACTIONS(5275), - [anon_sym_BSLASHnewenvironment] = ACTIONS(5275), - [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5275), - [anon_sym_BSLASHgls] = ACTIONS(5275), - [anon_sym_BSLASHGls] = ACTIONS(5275), - [anon_sym_BSLASHGLS] = ACTIONS(5275), - [anon_sym_BSLASHglspl] = ACTIONS(5275), - [anon_sym_BSLASHGlspl] = ACTIONS(5275), - [anon_sym_BSLASHGLSpl] = ACTIONS(5275), - [anon_sym_BSLASHglsdisp] = ACTIONS(5275), - [anon_sym_BSLASHglslink] = ACTIONS(5275), - [anon_sym_BSLASHglstext] = ACTIONS(5275), - [anon_sym_BSLASHGlstext] = ACTIONS(5275), - [anon_sym_BSLASHGLStext] = ACTIONS(5275), - [anon_sym_BSLASHglsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirst] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirst] = ACTIONS(5275), - [anon_sym_BSLASHglsplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSplural] = ACTIONS(5275), - [anon_sym_BSLASHglsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5275), - [anon_sym_BSLASHglsname] = ACTIONS(5275), - [anon_sym_BSLASHGlsname] = ACTIONS(5275), - [anon_sym_BSLASHGLSname] = ACTIONS(5275), - [anon_sym_BSLASHglssymbol] = ACTIONS(5275), - [anon_sym_BSLASHGlssymbol] = ACTIONS(5275), - [anon_sym_BSLASHglsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGlsdesc] = ACTIONS(5275), - [anon_sym_BSLASHGLSdesc] = ACTIONS(5275), - [anon_sym_BSLASHglsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseri] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseri] = ACTIONS(5275), - [anon_sym_BSLASHglsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriii] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriii] = ACTIONS(5275), - [anon_sym_BSLASHglsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuseriv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuseriv] = ACTIONS(5275), - [anon_sym_BSLASHglsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGlsuserv] = ACTIONS(5275), - [anon_sym_BSLASHGLSuserv] = ACTIONS(5275), - [anon_sym_BSLASHglsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGlsuservi] = ACTIONS(5275), - [anon_sym_BSLASHGLSuservi] = ACTIONS(5275), - [anon_sym_BSLASHnewacronym] = ACTIONS(5275), - [anon_sym_BSLASHacrshort] = ACTIONS(5275), - [anon_sym_BSLASHAcrshort] = ACTIONS(5275), - [anon_sym_BSLASHACRshort] = ACTIONS(5275), - [anon_sym_BSLASHacrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrshortpl] = ACTIONS(5275), - [anon_sym_BSLASHACRshortpl] = ACTIONS(5275), - [anon_sym_BSLASHacrlong] = ACTIONS(5275), - [anon_sym_BSLASHAcrlong] = ACTIONS(5275), - [anon_sym_BSLASHACRlong] = ACTIONS(5275), - [anon_sym_BSLASHacrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrlongpl] = ACTIONS(5275), - [anon_sym_BSLASHACRlongpl] = ACTIONS(5275), - [anon_sym_BSLASHacrfull] = ACTIONS(5275), - [anon_sym_BSLASHAcrfull] = ACTIONS(5275), - [anon_sym_BSLASHACRfull] = ACTIONS(5275), - [anon_sym_BSLASHacrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHAcrfullpl] = ACTIONS(5275), - [anon_sym_BSLASHACRfullpl] = ACTIONS(5275), - [anon_sym_BSLASHacs] = ACTIONS(5275), - [anon_sym_BSLASHAcs] = ACTIONS(5275), - [anon_sym_BSLASHacsp] = ACTIONS(5275), - [anon_sym_BSLASHAcsp] = ACTIONS(5275), - [anon_sym_BSLASHacl] = ACTIONS(5275), - [anon_sym_BSLASHAcl] = ACTIONS(5275), - [anon_sym_BSLASHaclp] = ACTIONS(5275), - [anon_sym_BSLASHAclp] = ACTIONS(5275), - [anon_sym_BSLASHacf] = ACTIONS(5275), - [anon_sym_BSLASHAcf] = ACTIONS(5275), - [anon_sym_BSLASHacfp] = ACTIONS(5275), - [anon_sym_BSLASHAcfp] = ACTIONS(5275), - [anon_sym_BSLASHac] = ACTIONS(5275), - [anon_sym_BSLASHAc] = ACTIONS(5275), - [anon_sym_BSLASHacp] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylong] = ACTIONS(5275), - [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshort] = ACTIONS(5275), - [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5275), - [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5275), - [anon_sym_BSLASHnewtheorem] = ACTIONS(5275), - [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolor] = ACTIONS(5275), - [anon_sym_BSLASHdefinecolorset] = ACTIONS(5275), - [anon_sym_BSLASHcolor] = ACTIONS(5275), - [anon_sym_BSLASHcolorbox] = ACTIONS(5275), - [anon_sym_BSLASHtextcolor] = ACTIONS(5275), - [anon_sym_BSLASHpagecolor] = ACTIONS(5275), - [anon_sym_BSLASHusepgflibrary] = ACTIONS(5275), - [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5275), + [sym_command_name] = ACTIONS(5257), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5257), + [anon_sym_RBRACK] = ACTIONS(5255), + [anon_sym_COMMA] = ACTIONS(5255), + [anon_sym_EQ] = ACTIONS(5255), + [anon_sym_RBRACE] = ACTIONS(5255), + [sym_word] = ACTIONS(5257), + [sym_placeholder] = ACTIONS(5255), + [anon_sym_PLUS] = ACTIONS(5257), + [anon_sym_DASH] = ACTIONS(5257), + [anon_sym_STAR] = ACTIONS(5257), + [anon_sym_SLASH] = ACTIONS(5257), + [anon_sym_CARET] = ACTIONS(5257), + [anon_sym__] = ACTIONS(5257), + [anon_sym_LT] = ACTIONS(5257), + [anon_sym_GT] = ACTIONS(5257), + [anon_sym_BANG] = ACTIONS(5257), + [anon_sym_PIPE] = ACTIONS(5257), + [anon_sym_COLON] = ACTIONS(5257), + [anon_sym_SQUOTE] = ACTIONS(5257), + [anon_sym_BSLASHusepackage] = ACTIONS(5257), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5257), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5257), + [anon_sym_BSLASHinclude] = ACTIONS(5257), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5257), + [anon_sym_BSLASHinput] = ACTIONS(5257), + [anon_sym_BSLASHsubfile] = ACTIONS(5257), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5257), + [anon_sym_BSLASHbibliography] = ACTIONS(5257), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5257), + [anon_sym_BSLASHincludesvg] = ACTIONS(5257), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5257), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5257), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5257), + [anon_sym_BSLASHimport] = ACTIONS(5257), + [anon_sym_BSLASHsubimport] = ACTIONS(5257), + [anon_sym_BSLASHinputfrom] = ACTIONS(5257), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5257), + [anon_sym_BSLASHincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5257), + [anon_sym_BSLASHcaption] = ACTIONS(5257), + [anon_sym_BSLASHcite] = ACTIONS(5257), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCite] = ACTIONS(5257), + [anon_sym_BSLASHnocite] = ACTIONS(5257), + [anon_sym_BSLASHcitet] = ACTIONS(5257), + [anon_sym_BSLASHcitep] = ACTIONS(5257), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteauthor] = ACTIONS(5257), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5257), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitetitle] = ACTIONS(5257), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteyear] = ACTIONS(5257), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5255), + [anon_sym_BSLASHcitedate] = ACTIONS(5257), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5255), + [anon_sym_BSLASHciteurl] = ACTIONS(5257), + [anon_sym_BSLASHfullcite] = ACTIONS(5257), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5257), + [anon_sym_BSLASHcitealt] = ACTIONS(5257), + [anon_sym_BSLASHcitealp] = ACTIONS(5257), + [anon_sym_BSLASHcitetext] = ACTIONS(5257), + [anon_sym_BSLASHparencite] = ACTIONS(5257), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHParencite] = ACTIONS(5257), + [anon_sym_BSLASHfootcite] = ACTIONS(5257), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5257), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5257), + [anon_sym_BSLASHtextcite] = ACTIONS(5257), + [anon_sym_BSLASHTextcite] = ACTIONS(5257), + [anon_sym_BSLASHsmartcite] = ACTIONS(5257), + [anon_sym_BSLASHSmartcite] = ACTIONS(5257), + [anon_sym_BSLASHsupercite] = ACTIONS(5257), + [anon_sym_BSLASHautocite] = ACTIONS(5257), + [anon_sym_BSLASHAutocite] = ACTIONS(5257), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5255), + [anon_sym_BSLASHvolcite] = ACTIONS(5257), + [anon_sym_BSLASHVolcite] = ACTIONS(5257), + [anon_sym_BSLASHpvolcite] = ACTIONS(5257), + [anon_sym_BSLASHPvolcite] = ACTIONS(5257), + [anon_sym_BSLASHfvolcite] = ACTIONS(5257), + [anon_sym_BSLASHftvolcite] = ACTIONS(5257), + [anon_sym_BSLASHsvolcite] = ACTIONS(5257), + [anon_sym_BSLASHSvolcite] = ACTIONS(5257), + [anon_sym_BSLASHtvolcite] = ACTIONS(5257), + [anon_sym_BSLASHTvolcite] = ACTIONS(5257), + [anon_sym_BSLASHavolcite] = ACTIONS(5257), + [anon_sym_BSLASHAvolcite] = ACTIONS(5257), + [anon_sym_BSLASHnotecite] = ACTIONS(5257), + [anon_sym_BSLASHNotecite] = ACTIONS(5257), + [anon_sym_BSLASHpnotecite] = ACTIONS(5257), + [anon_sym_BSLASHPnotecite] = ACTIONS(5257), + [anon_sym_BSLASHfnotecite] = ACTIONS(5257), + [anon_sym_BSLASHlabel] = ACTIONS(5257), + [anon_sym_BSLASHref] = ACTIONS(5257), + [anon_sym_BSLASHeqref] = ACTIONS(5257), + [anon_sym_BSLASHvref] = ACTIONS(5257), + [anon_sym_BSLASHVref] = ACTIONS(5257), + [anon_sym_BSLASHautoref] = ACTIONS(5257), + [anon_sym_BSLASHpageref] = ACTIONS(5257), + [anon_sym_BSLASHcref] = ACTIONS(5257), + [anon_sym_BSLASHCref] = ACTIONS(5257), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnameCref] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5257), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5257), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5257), + [anon_sym_BSLASHlabelcref] = ACTIONS(5257), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange] = ACTIONS(5257), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHCrefrange] = ACTIONS(5257), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5255), + [anon_sym_BSLASHnewlabel] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand] = ACTIONS(5257), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5257), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5257), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5255), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5257), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5255), + [anon_sym_BSLASHdef] = ACTIONS(5257), + [anon_sym_BSLASHlet] = ACTIONS(5257), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5257), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5257), + [anon_sym_BSLASHgls] = ACTIONS(5257), + [anon_sym_BSLASHGls] = ACTIONS(5257), + [anon_sym_BSLASHGLS] = ACTIONS(5257), + [anon_sym_BSLASHglspl] = ACTIONS(5257), + [anon_sym_BSLASHGlspl] = ACTIONS(5257), + [anon_sym_BSLASHGLSpl] = ACTIONS(5257), + [anon_sym_BSLASHglsdisp] = ACTIONS(5257), + [anon_sym_BSLASHglslink] = ACTIONS(5257), + [anon_sym_BSLASHglstext] = ACTIONS(5257), + [anon_sym_BSLASHGlstext] = ACTIONS(5257), + [anon_sym_BSLASHGLStext] = ACTIONS(5257), + [anon_sym_BSLASHglsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5257), + [anon_sym_BSLASHglsplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSplural] = ACTIONS(5257), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5257), + [anon_sym_BSLASHglsname] = ACTIONS(5257), + [anon_sym_BSLASHGlsname] = ACTIONS(5257), + [anon_sym_BSLASHGLSname] = ACTIONS(5257), + [anon_sym_BSLASHglssymbol] = ACTIONS(5257), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5257), + [anon_sym_BSLASHglsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5257), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5257), + [anon_sym_BSLASHglsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5257), + [anon_sym_BSLASHglsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5257), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5257), + [anon_sym_BSLASHglsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5257), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5257), + [anon_sym_BSLASHglsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5257), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5257), + [anon_sym_BSLASHnewacronym] = ACTIONS(5257), + [anon_sym_BSLASHacrshort] = ACTIONS(5257), + [anon_sym_BSLASHAcrshort] = ACTIONS(5257), + [anon_sym_BSLASHACRshort] = ACTIONS(5257), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5257), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5257), + [anon_sym_BSLASHacrlong] = ACTIONS(5257), + [anon_sym_BSLASHAcrlong] = ACTIONS(5257), + [anon_sym_BSLASHACRlong] = ACTIONS(5257), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5257), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5257), + [anon_sym_BSLASHacrfull] = ACTIONS(5257), + [anon_sym_BSLASHAcrfull] = ACTIONS(5257), + [anon_sym_BSLASHACRfull] = ACTIONS(5257), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5257), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5257), + [anon_sym_BSLASHacs] = ACTIONS(5257), + [anon_sym_BSLASHAcs] = ACTIONS(5257), + [anon_sym_BSLASHacsp] = ACTIONS(5257), + [anon_sym_BSLASHAcsp] = ACTIONS(5257), + [anon_sym_BSLASHacl] = ACTIONS(5257), + [anon_sym_BSLASHAcl] = ACTIONS(5257), + [anon_sym_BSLASHaclp] = ACTIONS(5257), + [anon_sym_BSLASHAclp] = ACTIONS(5257), + [anon_sym_BSLASHacf] = ACTIONS(5257), + [anon_sym_BSLASHAcf] = ACTIONS(5257), + [anon_sym_BSLASHacfp] = ACTIONS(5257), + [anon_sym_BSLASHAcfp] = ACTIONS(5257), + [anon_sym_BSLASHac] = ACTIONS(5257), + [anon_sym_BSLASHAc] = ACTIONS(5257), + [anon_sym_BSLASHacp] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5257), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5257), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5257), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5257), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5257), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5257), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5257), + [anon_sym_BSLASHcolor] = ACTIONS(5257), + [anon_sym_BSLASHcolorbox] = ACTIONS(5257), + [anon_sym_BSLASHtextcolor] = ACTIONS(5257), + [anon_sym_BSLASHpagecolor] = ACTIONS(5257), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5257), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5257), + }, + [1570] = { + [sym_command_name] = ACTIONS(5253), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5253), + [anon_sym_RBRACK] = ACTIONS(5251), + [anon_sym_COMMA] = ACTIONS(5251), + [anon_sym_EQ] = ACTIONS(5251), + [anon_sym_RBRACE] = ACTIONS(5251), + [sym_word] = ACTIONS(5253), + [sym_placeholder] = ACTIONS(5251), + [anon_sym_PLUS] = ACTIONS(5253), + [anon_sym_DASH] = ACTIONS(5253), + [anon_sym_STAR] = ACTIONS(5253), + [anon_sym_SLASH] = ACTIONS(5253), + [anon_sym_CARET] = ACTIONS(5253), + [anon_sym__] = ACTIONS(5253), + [anon_sym_LT] = ACTIONS(5253), + [anon_sym_GT] = ACTIONS(5253), + [anon_sym_BANG] = ACTIONS(5253), + [anon_sym_PIPE] = ACTIONS(5253), + [anon_sym_COLON] = ACTIONS(5253), + [anon_sym_SQUOTE] = ACTIONS(5253), + [anon_sym_BSLASHusepackage] = ACTIONS(5253), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5253), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5253), + [anon_sym_BSLASHinclude] = ACTIONS(5253), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5253), + [anon_sym_BSLASHinput] = ACTIONS(5253), + [anon_sym_BSLASHsubfile] = ACTIONS(5253), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5253), + [anon_sym_BSLASHbibliography] = ACTIONS(5253), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5253), + [anon_sym_BSLASHincludesvg] = ACTIONS(5253), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5253), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5253), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5253), + [anon_sym_BSLASHimport] = ACTIONS(5253), + [anon_sym_BSLASHsubimport] = ACTIONS(5253), + [anon_sym_BSLASHinputfrom] = ACTIONS(5253), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5253), + [anon_sym_BSLASHincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5253), + [anon_sym_BSLASHcaption] = ACTIONS(5253), + [anon_sym_BSLASHcite] = ACTIONS(5253), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCite] = ACTIONS(5253), + [anon_sym_BSLASHnocite] = ACTIONS(5253), + [anon_sym_BSLASHcitet] = ACTIONS(5253), + [anon_sym_BSLASHcitep] = ACTIONS(5253), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteauthor] = ACTIONS(5253), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5253), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitetitle] = ACTIONS(5253), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteyear] = ACTIONS(5253), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5251), + [anon_sym_BSLASHcitedate] = ACTIONS(5253), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5251), + [anon_sym_BSLASHciteurl] = ACTIONS(5253), + [anon_sym_BSLASHfullcite] = ACTIONS(5253), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5253), + [anon_sym_BSLASHcitealt] = ACTIONS(5253), + [anon_sym_BSLASHcitealp] = ACTIONS(5253), + [anon_sym_BSLASHcitetext] = ACTIONS(5253), + [anon_sym_BSLASHparencite] = ACTIONS(5253), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHParencite] = ACTIONS(5253), + [anon_sym_BSLASHfootcite] = ACTIONS(5253), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5253), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5253), + [anon_sym_BSLASHtextcite] = ACTIONS(5253), + [anon_sym_BSLASHTextcite] = ACTIONS(5253), + [anon_sym_BSLASHsmartcite] = ACTIONS(5253), + [anon_sym_BSLASHSmartcite] = ACTIONS(5253), + [anon_sym_BSLASHsupercite] = ACTIONS(5253), + [anon_sym_BSLASHautocite] = ACTIONS(5253), + [anon_sym_BSLASHAutocite] = ACTIONS(5253), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5251), + [anon_sym_BSLASHvolcite] = ACTIONS(5253), + [anon_sym_BSLASHVolcite] = ACTIONS(5253), + [anon_sym_BSLASHpvolcite] = ACTIONS(5253), + [anon_sym_BSLASHPvolcite] = ACTIONS(5253), + [anon_sym_BSLASHfvolcite] = ACTIONS(5253), + [anon_sym_BSLASHftvolcite] = ACTIONS(5253), + [anon_sym_BSLASHsvolcite] = ACTIONS(5253), + [anon_sym_BSLASHSvolcite] = ACTIONS(5253), + [anon_sym_BSLASHtvolcite] = ACTIONS(5253), + [anon_sym_BSLASHTvolcite] = ACTIONS(5253), + [anon_sym_BSLASHavolcite] = ACTIONS(5253), + [anon_sym_BSLASHAvolcite] = ACTIONS(5253), + [anon_sym_BSLASHnotecite] = ACTIONS(5253), + [anon_sym_BSLASHNotecite] = ACTIONS(5253), + [anon_sym_BSLASHpnotecite] = ACTIONS(5253), + [anon_sym_BSLASHPnotecite] = ACTIONS(5253), + [anon_sym_BSLASHfnotecite] = ACTIONS(5253), + [anon_sym_BSLASHlabel] = ACTIONS(5253), + [anon_sym_BSLASHref] = ACTIONS(5253), + [anon_sym_BSLASHeqref] = ACTIONS(5253), + [anon_sym_BSLASHvref] = ACTIONS(5253), + [anon_sym_BSLASHVref] = ACTIONS(5253), + [anon_sym_BSLASHautoref] = ACTIONS(5253), + [anon_sym_BSLASHpageref] = ACTIONS(5253), + [anon_sym_BSLASHcref] = ACTIONS(5253), + [anon_sym_BSLASHCref] = ACTIONS(5253), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnameCref] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5253), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5253), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5253), + [anon_sym_BSLASHlabelcref] = ACTIONS(5253), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange] = ACTIONS(5253), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHCrefrange] = ACTIONS(5253), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5251), + [anon_sym_BSLASHnewlabel] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand] = ACTIONS(5253), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5253), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5253), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5251), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5253), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5251), + [anon_sym_BSLASHdef] = ACTIONS(5253), + [anon_sym_BSLASHlet] = ACTIONS(5253), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5253), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5253), + [anon_sym_BSLASHgls] = ACTIONS(5253), + [anon_sym_BSLASHGls] = ACTIONS(5253), + [anon_sym_BSLASHGLS] = ACTIONS(5253), + [anon_sym_BSLASHglspl] = ACTIONS(5253), + [anon_sym_BSLASHGlspl] = ACTIONS(5253), + [anon_sym_BSLASHGLSpl] = ACTIONS(5253), + [anon_sym_BSLASHglsdisp] = ACTIONS(5253), + [anon_sym_BSLASHglslink] = ACTIONS(5253), + [anon_sym_BSLASHglstext] = ACTIONS(5253), + [anon_sym_BSLASHGlstext] = ACTIONS(5253), + [anon_sym_BSLASHGLStext] = ACTIONS(5253), + [anon_sym_BSLASHglsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5253), + [anon_sym_BSLASHglsplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSplural] = ACTIONS(5253), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5253), + [anon_sym_BSLASHglsname] = ACTIONS(5253), + [anon_sym_BSLASHGlsname] = ACTIONS(5253), + [anon_sym_BSLASHGLSname] = ACTIONS(5253), + [anon_sym_BSLASHglssymbol] = ACTIONS(5253), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5253), + [anon_sym_BSLASHglsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5253), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5253), + [anon_sym_BSLASHglsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5253), + [anon_sym_BSLASHglsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5253), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5253), + [anon_sym_BSLASHglsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5253), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5253), + [anon_sym_BSLASHglsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5253), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5253), + [anon_sym_BSLASHnewacronym] = ACTIONS(5253), + [anon_sym_BSLASHacrshort] = ACTIONS(5253), + [anon_sym_BSLASHAcrshort] = ACTIONS(5253), + [anon_sym_BSLASHACRshort] = ACTIONS(5253), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5253), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5253), + [anon_sym_BSLASHacrlong] = ACTIONS(5253), + [anon_sym_BSLASHAcrlong] = ACTIONS(5253), + [anon_sym_BSLASHACRlong] = ACTIONS(5253), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5253), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5253), + [anon_sym_BSLASHacrfull] = ACTIONS(5253), + [anon_sym_BSLASHAcrfull] = ACTIONS(5253), + [anon_sym_BSLASHACRfull] = ACTIONS(5253), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5253), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5253), + [anon_sym_BSLASHacs] = ACTIONS(5253), + [anon_sym_BSLASHAcs] = ACTIONS(5253), + [anon_sym_BSLASHacsp] = ACTIONS(5253), + [anon_sym_BSLASHAcsp] = ACTIONS(5253), + [anon_sym_BSLASHacl] = ACTIONS(5253), + [anon_sym_BSLASHAcl] = ACTIONS(5253), + [anon_sym_BSLASHaclp] = ACTIONS(5253), + [anon_sym_BSLASHAclp] = ACTIONS(5253), + [anon_sym_BSLASHacf] = ACTIONS(5253), + [anon_sym_BSLASHAcf] = ACTIONS(5253), + [anon_sym_BSLASHacfp] = ACTIONS(5253), + [anon_sym_BSLASHAcfp] = ACTIONS(5253), + [anon_sym_BSLASHac] = ACTIONS(5253), + [anon_sym_BSLASHAc] = ACTIONS(5253), + [anon_sym_BSLASHacp] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5253), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5253), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5253), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5253), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5253), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5253), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5253), + [anon_sym_BSLASHcolor] = ACTIONS(5253), + [anon_sym_BSLASHcolorbox] = ACTIONS(5253), + [anon_sym_BSLASHtextcolor] = ACTIONS(5253), + [anon_sym_BSLASHpagecolor] = ACTIONS(5253), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5253), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5253), + }, + [1571] = { + [sym_command_name] = ACTIONS(5249), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5249), + [anon_sym_RBRACK] = ACTIONS(5247), + [anon_sym_COMMA] = ACTIONS(5247), + [anon_sym_EQ] = ACTIONS(5247), + [anon_sym_RBRACE] = ACTIONS(5247), + [sym_word] = ACTIONS(5249), + [sym_placeholder] = ACTIONS(5247), + [anon_sym_PLUS] = ACTIONS(5249), + [anon_sym_DASH] = ACTIONS(5249), + [anon_sym_STAR] = ACTIONS(5249), + [anon_sym_SLASH] = ACTIONS(5249), + [anon_sym_CARET] = ACTIONS(5249), + [anon_sym__] = ACTIONS(5249), + [anon_sym_LT] = ACTIONS(5249), + [anon_sym_GT] = ACTIONS(5249), + [anon_sym_BANG] = ACTIONS(5249), + [anon_sym_PIPE] = ACTIONS(5249), + [anon_sym_COLON] = ACTIONS(5249), + [anon_sym_SQUOTE] = ACTIONS(5249), + [anon_sym_BSLASHusepackage] = ACTIONS(5249), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5249), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5249), + [anon_sym_BSLASHinclude] = ACTIONS(5249), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5249), + [anon_sym_BSLASHinput] = ACTIONS(5249), + [anon_sym_BSLASHsubfile] = ACTIONS(5249), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5249), + [anon_sym_BSLASHbibliography] = ACTIONS(5249), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5249), + [anon_sym_BSLASHincludesvg] = ACTIONS(5249), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5249), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5249), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5249), + [anon_sym_BSLASHimport] = ACTIONS(5249), + [anon_sym_BSLASHsubimport] = ACTIONS(5249), + [anon_sym_BSLASHinputfrom] = ACTIONS(5249), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5249), + [anon_sym_BSLASHincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5249), + [anon_sym_BSLASHcaption] = ACTIONS(5249), + [anon_sym_BSLASHcite] = ACTIONS(5249), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCite] = ACTIONS(5249), + [anon_sym_BSLASHnocite] = ACTIONS(5249), + [anon_sym_BSLASHcitet] = ACTIONS(5249), + [anon_sym_BSLASHcitep] = ACTIONS(5249), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteauthor] = ACTIONS(5249), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5249), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitetitle] = ACTIONS(5249), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteyear] = ACTIONS(5249), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5247), + [anon_sym_BSLASHcitedate] = ACTIONS(5249), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5247), + [anon_sym_BSLASHciteurl] = ACTIONS(5249), + [anon_sym_BSLASHfullcite] = ACTIONS(5249), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5249), + [anon_sym_BSLASHcitealt] = ACTIONS(5249), + [anon_sym_BSLASHcitealp] = ACTIONS(5249), + [anon_sym_BSLASHcitetext] = ACTIONS(5249), + [anon_sym_BSLASHparencite] = ACTIONS(5249), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHParencite] = ACTIONS(5249), + [anon_sym_BSLASHfootcite] = ACTIONS(5249), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5249), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5249), + [anon_sym_BSLASHtextcite] = ACTIONS(5249), + [anon_sym_BSLASHTextcite] = ACTIONS(5249), + [anon_sym_BSLASHsmartcite] = ACTIONS(5249), + [anon_sym_BSLASHSmartcite] = ACTIONS(5249), + [anon_sym_BSLASHsupercite] = ACTIONS(5249), + [anon_sym_BSLASHautocite] = ACTIONS(5249), + [anon_sym_BSLASHAutocite] = ACTIONS(5249), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5247), + [anon_sym_BSLASHvolcite] = ACTIONS(5249), + [anon_sym_BSLASHVolcite] = ACTIONS(5249), + [anon_sym_BSLASHpvolcite] = ACTIONS(5249), + [anon_sym_BSLASHPvolcite] = ACTIONS(5249), + [anon_sym_BSLASHfvolcite] = ACTIONS(5249), + [anon_sym_BSLASHftvolcite] = ACTIONS(5249), + [anon_sym_BSLASHsvolcite] = ACTIONS(5249), + [anon_sym_BSLASHSvolcite] = ACTIONS(5249), + [anon_sym_BSLASHtvolcite] = ACTIONS(5249), + [anon_sym_BSLASHTvolcite] = ACTIONS(5249), + [anon_sym_BSLASHavolcite] = ACTIONS(5249), + [anon_sym_BSLASHAvolcite] = ACTIONS(5249), + [anon_sym_BSLASHnotecite] = ACTIONS(5249), + [anon_sym_BSLASHNotecite] = ACTIONS(5249), + [anon_sym_BSLASHpnotecite] = ACTIONS(5249), + [anon_sym_BSLASHPnotecite] = ACTIONS(5249), + [anon_sym_BSLASHfnotecite] = ACTIONS(5249), + [anon_sym_BSLASHlabel] = ACTIONS(5249), + [anon_sym_BSLASHref] = ACTIONS(5249), + [anon_sym_BSLASHeqref] = ACTIONS(5249), + [anon_sym_BSLASHvref] = ACTIONS(5249), + [anon_sym_BSLASHVref] = ACTIONS(5249), + [anon_sym_BSLASHautoref] = ACTIONS(5249), + [anon_sym_BSLASHpageref] = ACTIONS(5249), + [anon_sym_BSLASHcref] = ACTIONS(5249), + [anon_sym_BSLASHCref] = ACTIONS(5249), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnameCref] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5249), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5249), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5249), + [anon_sym_BSLASHlabelcref] = ACTIONS(5249), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange] = ACTIONS(5249), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHCrefrange] = ACTIONS(5249), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5247), + [anon_sym_BSLASHnewlabel] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand] = ACTIONS(5249), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5249), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5249), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5247), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5249), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5247), + [anon_sym_BSLASHdef] = ACTIONS(5249), + [anon_sym_BSLASHlet] = ACTIONS(5249), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5249), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5249), + [anon_sym_BSLASHgls] = ACTIONS(5249), + [anon_sym_BSLASHGls] = ACTIONS(5249), + [anon_sym_BSLASHGLS] = ACTIONS(5249), + [anon_sym_BSLASHglspl] = ACTIONS(5249), + [anon_sym_BSLASHGlspl] = ACTIONS(5249), + [anon_sym_BSLASHGLSpl] = ACTIONS(5249), + [anon_sym_BSLASHglsdisp] = ACTIONS(5249), + [anon_sym_BSLASHglslink] = ACTIONS(5249), + [anon_sym_BSLASHglstext] = ACTIONS(5249), + [anon_sym_BSLASHGlstext] = ACTIONS(5249), + [anon_sym_BSLASHGLStext] = ACTIONS(5249), + [anon_sym_BSLASHglsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5249), + [anon_sym_BSLASHglsplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSplural] = ACTIONS(5249), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5249), + [anon_sym_BSLASHglsname] = ACTIONS(5249), + [anon_sym_BSLASHGlsname] = ACTIONS(5249), + [anon_sym_BSLASHGLSname] = ACTIONS(5249), + [anon_sym_BSLASHglssymbol] = ACTIONS(5249), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5249), + [anon_sym_BSLASHglsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5249), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5249), + [anon_sym_BSLASHglsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5249), + [anon_sym_BSLASHglsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5249), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5249), + [anon_sym_BSLASHglsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5249), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5249), + [anon_sym_BSLASHglsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5249), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5249), + [anon_sym_BSLASHnewacronym] = ACTIONS(5249), + [anon_sym_BSLASHacrshort] = ACTIONS(5249), + [anon_sym_BSLASHAcrshort] = ACTIONS(5249), + [anon_sym_BSLASHACRshort] = ACTIONS(5249), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5249), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5249), + [anon_sym_BSLASHacrlong] = ACTIONS(5249), + [anon_sym_BSLASHAcrlong] = ACTIONS(5249), + [anon_sym_BSLASHACRlong] = ACTIONS(5249), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5249), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5249), + [anon_sym_BSLASHacrfull] = ACTIONS(5249), + [anon_sym_BSLASHAcrfull] = ACTIONS(5249), + [anon_sym_BSLASHACRfull] = ACTIONS(5249), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5249), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5249), + [anon_sym_BSLASHacs] = ACTIONS(5249), + [anon_sym_BSLASHAcs] = ACTIONS(5249), + [anon_sym_BSLASHacsp] = ACTIONS(5249), + [anon_sym_BSLASHAcsp] = ACTIONS(5249), + [anon_sym_BSLASHacl] = ACTIONS(5249), + [anon_sym_BSLASHAcl] = ACTIONS(5249), + [anon_sym_BSLASHaclp] = ACTIONS(5249), + [anon_sym_BSLASHAclp] = ACTIONS(5249), + [anon_sym_BSLASHacf] = ACTIONS(5249), + [anon_sym_BSLASHAcf] = ACTIONS(5249), + [anon_sym_BSLASHacfp] = ACTIONS(5249), + [anon_sym_BSLASHAcfp] = ACTIONS(5249), + [anon_sym_BSLASHac] = ACTIONS(5249), + [anon_sym_BSLASHAc] = ACTIONS(5249), + [anon_sym_BSLASHacp] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5249), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5249), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5249), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5249), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5249), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5249), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5249), + [anon_sym_BSLASHcolor] = ACTIONS(5249), + [anon_sym_BSLASHcolorbox] = ACTIONS(5249), + [anon_sym_BSLASHtextcolor] = ACTIONS(5249), + [anon_sym_BSLASHpagecolor] = ACTIONS(5249), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5249), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5249), + }, + [1572] = { + [sym_command_name] = ACTIONS(5245), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5245), + [anon_sym_RBRACK] = ACTIONS(5243), + [anon_sym_COMMA] = ACTIONS(5243), + [anon_sym_EQ] = ACTIONS(5243), + [anon_sym_RBRACE] = ACTIONS(5243), + [sym_word] = ACTIONS(5245), + [sym_placeholder] = ACTIONS(5243), + [anon_sym_PLUS] = ACTIONS(5245), + [anon_sym_DASH] = ACTIONS(5245), + [anon_sym_STAR] = ACTIONS(5245), + [anon_sym_SLASH] = ACTIONS(5245), + [anon_sym_CARET] = ACTIONS(5245), + [anon_sym__] = ACTIONS(5245), + [anon_sym_LT] = ACTIONS(5245), + [anon_sym_GT] = ACTIONS(5245), + [anon_sym_BANG] = ACTIONS(5245), + [anon_sym_PIPE] = ACTIONS(5245), + [anon_sym_COLON] = ACTIONS(5245), + [anon_sym_SQUOTE] = ACTIONS(5245), + [anon_sym_BSLASHusepackage] = ACTIONS(5245), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5245), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5245), + [anon_sym_BSLASHinclude] = ACTIONS(5245), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5245), + [anon_sym_BSLASHinput] = ACTIONS(5245), + [anon_sym_BSLASHsubfile] = ACTIONS(5245), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5245), + [anon_sym_BSLASHbibliography] = ACTIONS(5245), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5245), + [anon_sym_BSLASHincludesvg] = ACTIONS(5245), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5245), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5245), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5245), + [anon_sym_BSLASHimport] = ACTIONS(5245), + [anon_sym_BSLASHsubimport] = ACTIONS(5245), + [anon_sym_BSLASHinputfrom] = ACTIONS(5245), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5245), + [anon_sym_BSLASHincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5245), + [anon_sym_BSLASHcaption] = ACTIONS(5245), + [anon_sym_BSLASHcite] = ACTIONS(5245), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCite] = ACTIONS(5245), + [anon_sym_BSLASHnocite] = ACTIONS(5245), + [anon_sym_BSLASHcitet] = ACTIONS(5245), + [anon_sym_BSLASHcitep] = ACTIONS(5245), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteauthor] = ACTIONS(5245), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5245), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitetitle] = ACTIONS(5245), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteyear] = ACTIONS(5245), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5243), + [anon_sym_BSLASHcitedate] = ACTIONS(5245), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5243), + [anon_sym_BSLASHciteurl] = ACTIONS(5245), + [anon_sym_BSLASHfullcite] = ACTIONS(5245), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5245), + [anon_sym_BSLASHcitealt] = ACTIONS(5245), + [anon_sym_BSLASHcitealp] = ACTIONS(5245), + [anon_sym_BSLASHcitetext] = ACTIONS(5245), + [anon_sym_BSLASHparencite] = ACTIONS(5245), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHParencite] = ACTIONS(5245), + [anon_sym_BSLASHfootcite] = ACTIONS(5245), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5245), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5245), + [anon_sym_BSLASHtextcite] = ACTIONS(5245), + [anon_sym_BSLASHTextcite] = ACTIONS(5245), + [anon_sym_BSLASHsmartcite] = ACTIONS(5245), + [anon_sym_BSLASHSmartcite] = ACTIONS(5245), + [anon_sym_BSLASHsupercite] = ACTIONS(5245), + [anon_sym_BSLASHautocite] = ACTIONS(5245), + [anon_sym_BSLASHAutocite] = ACTIONS(5245), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5243), + [anon_sym_BSLASHvolcite] = ACTIONS(5245), + [anon_sym_BSLASHVolcite] = ACTIONS(5245), + [anon_sym_BSLASHpvolcite] = ACTIONS(5245), + [anon_sym_BSLASHPvolcite] = ACTIONS(5245), + [anon_sym_BSLASHfvolcite] = ACTIONS(5245), + [anon_sym_BSLASHftvolcite] = ACTIONS(5245), + [anon_sym_BSLASHsvolcite] = ACTIONS(5245), + [anon_sym_BSLASHSvolcite] = ACTIONS(5245), + [anon_sym_BSLASHtvolcite] = ACTIONS(5245), + [anon_sym_BSLASHTvolcite] = ACTIONS(5245), + [anon_sym_BSLASHavolcite] = ACTIONS(5245), + [anon_sym_BSLASHAvolcite] = ACTIONS(5245), + [anon_sym_BSLASHnotecite] = ACTIONS(5245), + [anon_sym_BSLASHNotecite] = ACTIONS(5245), + [anon_sym_BSLASHpnotecite] = ACTIONS(5245), + [anon_sym_BSLASHPnotecite] = ACTIONS(5245), + [anon_sym_BSLASHfnotecite] = ACTIONS(5245), + [anon_sym_BSLASHlabel] = ACTIONS(5245), + [anon_sym_BSLASHref] = ACTIONS(5245), + [anon_sym_BSLASHeqref] = ACTIONS(5245), + [anon_sym_BSLASHvref] = ACTIONS(5245), + [anon_sym_BSLASHVref] = ACTIONS(5245), + [anon_sym_BSLASHautoref] = ACTIONS(5245), + [anon_sym_BSLASHpageref] = ACTIONS(5245), + [anon_sym_BSLASHcref] = ACTIONS(5245), + [anon_sym_BSLASHCref] = ACTIONS(5245), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnameCref] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5245), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5245), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5245), + [anon_sym_BSLASHlabelcref] = ACTIONS(5245), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange] = ACTIONS(5245), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHCrefrange] = ACTIONS(5245), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5243), + [anon_sym_BSLASHnewlabel] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand] = ACTIONS(5245), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5245), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5245), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5243), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5245), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5243), + [anon_sym_BSLASHdef] = ACTIONS(5245), + [anon_sym_BSLASHlet] = ACTIONS(5245), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5245), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5245), + [anon_sym_BSLASHgls] = ACTIONS(5245), + [anon_sym_BSLASHGls] = ACTIONS(5245), + [anon_sym_BSLASHGLS] = ACTIONS(5245), + [anon_sym_BSLASHglspl] = ACTIONS(5245), + [anon_sym_BSLASHGlspl] = ACTIONS(5245), + [anon_sym_BSLASHGLSpl] = ACTIONS(5245), + [anon_sym_BSLASHglsdisp] = ACTIONS(5245), + [anon_sym_BSLASHglslink] = ACTIONS(5245), + [anon_sym_BSLASHglstext] = ACTIONS(5245), + [anon_sym_BSLASHGlstext] = ACTIONS(5245), + [anon_sym_BSLASHGLStext] = ACTIONS(5245), + [anon_sym_BSLASHglsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5245), + [anon_sym_BSLASHglsplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSplural] = ACTIONS(5245), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5245), + [anon_sym_BSLASHglsname] = ACTIONS(5245), + [anon_sym_BSLASHGlsname] = ACTIONS(5245), + [anon_sym_BSLASHGLSname] = ACTIONS(5245), + [anon_sym_BSLASHglssymbol] = ACTIONS(5245), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5245), + [anon_sym_BSLASHglsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5245), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5245), + [anon_sym_BSLASHglsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5245), + [anon_sym_BSLASHglsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5245), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5245), + [anon_sym_BSLASHglsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5245), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5245), + [anon_sym_BSLASHglsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5245), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5245), + [anon_sym_BSLASHnewacronym] = ACTIONS(5245), + [anon_sym_BSLASHacrshort] = ACTIONS(5245), + [anon_sym_BSLASHAcrshort] = ACTIONS(5245), + [anon_sym_BSLASHACRshort] = ACTIONS(5245), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5245), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5245), + [anon_sym_BSLASHacrlong] = ACTIONS(5245), + [anon_sym_BSLASHAcrlong] = ACTIONS(5245), + [anon_sym_BSLASHACRlong] = ACTIONS(5245), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5245), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5245), + [anon_sym_BSLASHacrfull] = ACTIONS(5245), + [anon_sym_BSLASHAcrfull] = ACTIONS(5245), + [anon_sym_BSLASHACRfull] = ACTIONS(5245), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5245), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5245), + [anon_sym_BSLASHacs] = ACTIONS(5245), + [anon_sym_BSLASHAcs] = ACTIONS(5245), + [anon_sym_BSLASHacsp] = ACTIONS(5245), + [anon_sym_BSLASHAcsp] = ACTIONS(5245), + [anon_sym_BSLASHacl] = ACTIONS(5245), + [anon_sym_BSLASHAcl] = ACTIONS(5245), + [anon_sym_BSLASHaclp] = ACTIONS(5245), + [anon_sym_BSLASHAclp] = ACTIONS(5245), + [anon_sym_BSLASHacf] = ACTIONS(5245), + [anon_sym_BSLASHAcf] = ACTIONS(5245), + [anon_sym_BSLASHacfp] = ACTIONS(5245), + [anon_sym_BSLASHAcfp] = ACTIONS(5245), + [anon_sym_BSLASHac] = ACTIONS(5245), + [anon_sym_BSLASHAc] = ACTIONS(5245), + [anon_sym_BSLASHacp] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5245), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5245), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5245), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5245), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5245), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5245), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5245), + [anon_sym_BSLASHcolor] = ACTIONS(5245), + [anon_sym_BSLASHcolorbox] = ACTIONS(5245), + [anon_sym_BSLASHtextcolor] = ACTIONS(5245), + [anon_sym_BSLASHpagecolor] = ACTIONS(5245), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5245), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5245), + }, + [1573] = { + [sym_command_name] = ACTIONS(5241), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5241), + [anon_sym_RBRACK] = ACTIONS(5239), + [anon_sym_COMMA] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(5239), + [anon_sym_RBRACE] = ACTIONS(5239), + [sym_word] = ACTIONS(5241), + [sym_placeholder] = ACTIONS(5239), + [anon_sym_PLUS] = ACTIONS(5241), + [anon_sym_DASH] = ACTIONS(5241), + [anon_sym_STAR] = ACTIONS(5241), + [anon_sym_SLASH] = ACTIONS(5241), + [anon_sym_CARET] = ACTIONS(5241), + [anon_sym__] = ACTIONS(5241), + [anon_sym_LT] = ACTIONS(5241), + [anon_sym_GT] = ACTIONS(5241), + [anon_sym_BANG] = ACTIONS(5241), + [anon_sym_PIPE] = ACTIONS(5241), + [anon_sym_COLON] = ACTIONS(5241), + [anon_sym_SQUOTE] = ACTIONS(5241), + [anon_sym_BSLASHusepackage] = ACTIONS(5241), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5241), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5241), + [anon_sym_BSLASHinclude] = ACTIONS(5241), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5241), + [anon_sym_BSLASHinput] = ACTIONS(5241), + [anon_sym_BSLASHsubfile] = ACTIONS(5241), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5241), + [anon_sym_BSLASHbibliography] = ACTIONS(5241), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5241), + [anon_sym_BSLASHincludesvg] = ACTIONS(5241), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5241), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5241), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5241), + [anon_sym_BSLASHimport] = ACTIONS(5241), + [anon_sym_BSLASHsubimport] = ACTIONS(5241), + [anon_sym_BSLASHinputfrom] = ACTIONS(5241), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5241), + [anon_sym_BSLASHincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5241), + [anon_sym_BSLASHcaption] = ACTIONS(5241), + [anon_sym_BSLASHcite] = ACTIONS(5241), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCite] = ACTIONS(5241), + [anon_sym_BSLASHnocite] = ACTIONS(5241), + [anon_sym_BSLASHcitet] = ACTIONS(5241), + [anon_sym_BSLASHcitep] = ACTIONS(5241), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteauthor] = ACTIONS(5241), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5241), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitetitle] = ACTIONS(5241), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteyear] = ACTIONS(5241), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5239), + [anon_sym_BSLASHcitedate] = ACTIONS(5241), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5239), + [anon_sym_BSLASHciteurl] = ACTIONS(5241), + [anon_sym_BSLASHfullcite] = ACTIONS(5241), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5241), + [anon_sym_BSLASHcitealt] = ACTIONS(5241), + [anon_sym_BSLASHcitealp] = ACTIONS(5241), + [anon_sym_BSLASHcitetext] = ACTIONS(5241), + [anon_sym_BSLASHparencite] = ACTIONS(5241), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHParencite] = ACTIONS(5241), + [anon_sym_BSLASHfootcite] = ACTIONS(5241), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5241), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5241), + [anon_sym_BSLASHtextcite] = ACTIONS(5241), + [anon_sym_BSLASHTextcite] = ACTIONS(5241), + [anon_sym_BSLASHsmartcite] = ACTIONS(5241), + [anon_sym_BSLASHSmartcite] = ACTIONS(5241), + [anon_sym_BSLASHsupercite] = ACTIONS(5241), + [anon_sym_BSLASHautocite] = ACTIONS(5241), + [anon_sym_BSLASHAutocite] = ACTIONS(5241), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5239), + [anon_sym_BSLASHvolcite] = ACTIONS(5241), + [anon_sym_BSLASHVolcite] = ACTIONS(5241), + [anon_sym_BSLASHpvolcite] = ACTIONS(5241), + [anon_sym_BSLASHPvolcite] = ACTIONS(5241), + [anon_sym_BSLASHfvolcite] = ACTIONS(5241), + [anon_sym_BSLASHftvolcite] = ACTIONS(5241), + [anon_sym_BSLASHsvolcite] = ACTIONS(5241), + [anon_sym_BSLASHSvolcite] = ACTIONS(5241), + [anon_sym_BSLASHtvolcite] = ACTIONS(5241), + [anon_sym_BSLASHTvolcite] = ACTIONS(5241), + [anon_sym_BSLASHavolcite] = ACTIONS(5241), + [anon_sym_BSLASHAvolcite] = ACTIONS(5241), + [anon_sym_BSLASHnotecite] = ACTIONS(5241), + [anon_sym_BSLASHNotecite] = ACTIONS(5241), + [anon_sym_BSLASHpnotecite] = ACTIONS(5241), + [anon_sym_BSLASHPnotecite] = ACTIONS(5241), + [anon_sym_BSLASHfnotecite] = ACTIONS(5241), + [anon_sym_BSLASHlabel] = ACTIONS(5241), + [anon_sym_BSLASHref] = ACTIONS(5241), + [anon_sym_BSLASHeqref] = ACTIONS(5241), + [anon_sym_BSLASHvref] = ACTIONS(5241), + [anon_sym_BSLASHVref] = ACTIONS(5241), + [anon_sym_BSLASHautoref] = ACTIONS(5241), + [anon_sym_BSLASHpageref] = ACTIONS(5241), + [anon_sym_BSLASHcref] = ACTIONS(5241), + [anon_sym_BSLASHCref] = ACTIONS(5241), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnameCref] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5241), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5241), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5241), + [anon_sym_BSLASHlabelcref] = ACTIONS(5241), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange] = ACTIONS(5241), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHCrefrange] = ACTIONS(5241), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5239), + [anon_sym_BSLASHnewlabel] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand] = ACTIONS(5241), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5241), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5241), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5239), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5241), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5239), + [anon_sym_BSLASHdef] = ACTIONS(5241), + [anon_sym_BSLASHlet] = ACTIONS(5241), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5241), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5241), + [anon_sym_BSLASHgls] = ACTIONS(5241), + [anon_sym_BSLASHGls] = ACTIONS(5241), + [anon_sym_BSLASHGLS] = ACTIONS(5241), + [anon_sym_BSLASHglspl] = ACTIONS(5241), + [anon_sym_BSLASHGlspl] = ACTIONS(5241), + [anon_sym_BSLASHGLSpl] = ACTIONS(5241), + [anon_sym_BSLASHglsdisp] = ACTIONS(5241), + [anon_sym_BSLASHglslink] = ACTIONS(5241), + [anon_sym_BSLASHglstext] = ACTIONS(5241), + [anon_sym_BSLASHGlstext] = ACTIONS(5241), + [anon_sym_BSLASHGLStext] = ACTIONS(5241), + [anon_sym_BSLASHglsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5241), + [anon_sym_BSLASHglsplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSplural] = ACTIONS(5241), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5241), + [anon_sym_BSLASHglsname] = ACTIONS(5241), + [anon_sym_BSLASHGlsname] = ACTIONS(5241), + [anon_sym_BSLASHGLSname] = ACTIONS(5241), + [anon_sym_BSLASHglssymbol] = ACTIONS(5241), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5241), + [anon_sym_BSLASHglsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5241), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5241), + [anon_sym_BSLASHglsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5241), + [anon_sym_BSLASHglsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5241), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5241), + [anon_sym_BSLASHglsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5241), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5241), + [anon_sym_BSLASHglsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5241), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5241), + [anon_sym_BSLASHnewacronym] = ACTIONS(5241), + [anon_sym_BSLASHacrshort] = ACTIONS(5241), + [anon_sym_BSLASHAcrshort] = ACTIONS(5241), + [anon_sym_BSLASHACRshort] = ACTIONS(5241), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5241), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5241), + [anon_sym_BSLASHacrlong] = ACTIONS(5241), + [anon_sym_BSLASHAcrlong] = ACTIONS(5241), + [anon_sym_BSLASHACRlong] = ACTIONS(5241), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5241), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5241), + [anon_sym_BSLASHacrfull] = ACTIONS(5241), + [anon_sym_BSLASHAcrfull] = ACTIONS(5241), + [anon_sym_BSLASHACRfull] = ACTIONS(5241), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5241), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5241), + [anon_sym_BSLASHacs] = ACTIONS(5241), + [anon_sym_BSLASHAcs] = ACTIONS(5241), + [anon_sym_BSLASHacsp] = ACTIONS(5241), + [anon_sym_BSLASHAcsp] = ACTIONS(5241), + [anon_sym_BSLASHacl] = ACTIONS(5241), + [anon_sym_BSLASHAcl] = ACTIONS(5241), + [anon_sym_BSLASHaclp] = ACTIONS(5241), + [anon_sym_BSLASHAclp] = ACTIONS(5241), + [anon_sym_BSLASHacf] = ACTIONS(5241), + [anon_sym_BSLASHAcf] = ACTIONS(5241), + [anon_sym_BSLASHacfp] = ACTIONS(5241), + [anon_sym_BSLASHAcfp] = ACTIONS(5241), + [anon_sym_BSLASHac] = ACTIONS(5241), + [anon_sym_BSLASHAc] = ACTIONS(5241), + [anon_sym_BSLASHacp] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5241), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5241), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5241), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5241), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5241), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5241), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5241), + [anon_sym_BSLASHcolor] = ACTIONS(5241), + [anon_sym_BSLASHcolorbox] = ACTIONS(5241), + [anon_sym_BSLASHtextcolor] = ACTIONS(5241), + [anon_sym_BSLASHpagecolor] = ACTIONS(5241), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5241), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5241), + }, + [1574] = { + [sym_command_name] = ACTIONS(5041), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5041), + [anon_sym_RBRACK] = ACTIONS(5039), + [anon_sym_COMMA] = ACTIONS(5039), + [anon_sym_EQ] = ACTIONS(5039), + [anon_sym_RBRACE] = ACTIONS(5039), + [sym_word] = ACTIONS(5041), + [sym_placeholder] = ACTIONS(5039), + [anon_sym_PLUS] = ACTIONS(5041), + [anon_sym_DASH] = ACTIONS(5041), + [anon_sym_STAR] = ACTIONS(5041), + [anon_sym_SLASH] = ACTIONS(5041), + [anon_sym_CARET] = ACTIONS(5041), + [anon_sym__] = ACTIONS(5041), + [anon_sym_LT] = ACTIONS(5041), + [anon_sym_GT] = ACTIONS(5041), + [anon_sym_BANG] = ACTIONS(5041), + [anon_sym_PIPE] = ACTIONS(5041), + [anon_sym_COLON] = ACTIONS(5041), + [anon_sym_SQUOTE] = ACTIONS(5041), + [anon_sym_BSLASHusepackage] = ACTIONS(5041), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5041), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5041), + [anon_sym_BSLASHinclude] = ACTIONS(5041), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5041), + [anon_sym_BSLASHinput] = ACTIONS(5041), + [anon_sym_BSLASHsubfile] = ACTIONS(5041), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5041), + [anon_sym_BSLASHbibliography] = ACTIONS(5041), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5041), + [anon_sym_BSLASHincludesvg] = ACTIONS(5041), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5041), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5041), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5041), + [anon_sym_BSLASHimport] = ACTIONS(5041), + [anon_sym_BSLASHsubimport] = ACTIONS(5041), + [anon_sym_BSLASHinputfrom] = ACTIONS(5041), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5041), + [anon_sym_BSLASHincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5041), + [anon_sym_BSLASHcaption] = ACTIONS(5041), + [anon_sym_BSLASHcite] = ACTIONS(5041), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCite] = ACTIONS(5041), + [anon_sym_BSLASHnocite] = ACTIONS(5041), + [anon_sym_BSLASHcitet] = ACTIONS(5041), + [anon_sym_BSLASHcitep] = ACTIONS(5041), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteauthor] = ACTIONS(5041), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5041), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitetitle] = ACTIONS(5041), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteyear] = ACTIONS(5041), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5039), + [anon_sym_BSLASHcitedate] = ACTIONS(5041), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5039), + [anon_sym_BSLASHciteurl] = ACTIONS(5041), + [anon_sym_BSLASHfullcite] = ACTIONS(5041), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5041), + [anon_sym_BSLASHcitealt] = ACTIONS(5041), + [anon_sym_BSLASHcitealp] = ACTIONS(5041), + [anon_sym_BSLASHcitetext] = ACTIONS(5041), + [anon_sym_BSLASHparencite] = ACTIONS(5041), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHParencite] = ACTIONS(5041), + [anon_sym_BSLASHfootcite] = ACTIONS(5041), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5041), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5041), + [anon_sym_BSLASHtextcite] = ACTIONS(5041), + [anon_sym_BSLASHTextcite] = ACTIONS(5041), + [anon_sym_BSLASHsmartcite] = ACTIONS(5041), + [anon_sym_BSLASHSmartcite] = ACTIONS(5041), + [anon_sym_BSLASHsupercite] = ACTIONS(5041), + [anon_sym_BSLASHautocite] = ACTIONS(5041), + [anon_sym_BSLASHAutocite] = ACTIONS(5041), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5039), + [anon_sym_BSLASHvolcite] = ACTIONS(5041), + [anon_sym_BSLASHVolcite] = ACTIONS(5041), + [anon_sym_BSLASHpvolcite] = ACTIONS(5041), + [anon_sym_BSLASHPvolcite] = ACTIONS(5041), + [anon_sym_BSLASHfvolcite] = ACTIONS(5041), + [anon_sym_BSLASHftvolcite] = ACTIONS(5041), + [anon_sym_BSLASHsvolcite] = ACTIONS(5041), + [anon_sym_BSLASHSvolcite] = ACTIONS(5041), + [anon_sym_BSLASHtvolcite] = ACTIONS(5041), + [anon_sym_BSLASHTvolcite] = ACTIONS(5041), + [anon_sym_BSLASHavolcite] = ACTIONS(5041), + [anon_sym_BSLASHAvolcite] = ACTIONS(5041), + [anon_sym_BSLASHnotecite] = ACTIONS(5041), + [anon_sym_BSLASHNotecite] = ACTIONS(5041), + [anon_sym_BSLASHpnotecite] = ACTIONS(5041), + [anon_sym_BSLASHPnotecite] = ACTIONS(5041), + [anon_sym_BSLASHfnotecite] = ACTIONS(5041), + [anon_sym_BSLASHlabel] = ACTIONS(5041), + [anon_sym_BSLASHref] = ACTIONS(5041), + [anon_sym_BSLASHeqref] = ACTIONS(5041), + [anon_sym_BSLASHvref] = ACTIONS(5041), + [anon_sym_BSLASHVref] = ACTIONS(5041), + [anon_sym_BSLASHautoref] = ACTIONS(5041), + [anon_sym_BSLASHpageref] = ACTIONS(5041), + [anon_sym_BSLASHcref] = ACTIONS(5041), + [anon_sym_BSLASHCref] = ACTIONS(5041), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnameCref] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5041), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5041), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5041), + [anon_sym_BSLASHlabelcref] = ACTIONS(5041), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange] = ACTIONS(5041), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHCrefrange] = ACTIONS(5041), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5039), + [anon_sym_BSLASHnewlabel] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand] = ACTIONS(5041), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5041), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5041), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5039), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5041), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5039), + [anon_sym_BSLASHdef] = ACTIONS(5041), + [anon_sym_BSLASHlet] = ACTIONS(5041), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5041), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5041), + [anon_sym_BSLASHgls] = ACTIONS(5041), + [anon_sym_BSLASHGls] = ACTIONS(5041), + [anon_sym_BSLASHGLS] = ACTIONS(5041), + [anon_sym_BSLASHglspl] = ACTIONS(5041), + [anon_sym_BSLASHGlspl] = ACTIONS(5041), + [anon_sym_BSLASHGLSpl] = ACTIONS(5041), + [anon_sym_BSLASHglsdisp] = ACTIONS(5041), + [anon_sym_BSLASHglslink] = ACTIONS(5041), + [anon_sym_BSLASHglstext] = ACTIONS(5041), + [anon_sym_BSLASHGlstext] = ACTIONS(5041), + [anon_sym_BSLASHGLStext] = ACTIONS(5041), + [anon_sym_BSLASHglsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5041), + [anon_sym_BSLASHglsplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSplural] = ACTIONS(5041), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5041), + [anon_sym_BSLASHglsname] = ACTIONS(5041), + [anon_sym_BSLASHGlsname] = ACTIONS(5041), + [anon_sym_BSLASHGLSname] = ACTIONS(5041), + [anon_sym_BSLASHglssymbol] = ACTIONS(5041), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5041), + [anon_sym_BSLASHglsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5041), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5041), + [anon_sym_BSLASHglsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5041), + [anon_sym_BSLASHglsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5041), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5041), + [anon_sym_BSLASHglsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5041), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5041), + [anon_sym_BSLASHglsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5041), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5041), + [anon_sym_BSLASHnewacronym] = ACTIONS(5041), + [anon_sym_BSLASHacrshort] = ACTIONS(5041), + [anon_sym_BSLASHAcrshort] = ACTIONS(5041), + [anon_sym_BSLASHACRshort] = ACTIONS(5041), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5041), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5041), + [anon_sym_BSLASHacrlong] = ACTIONS(5041), + [anon_sym_BSLASHAcrlong] = ACTIONS(5041), + [anon_sym_BSLASHACRlong] = ACTIONS(5041), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5041), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5041), + [anon_sym_BSLASHacrfull] = ACTIONS(5041), + [anon_sym_BSLASHAcrfull] = ACTIONS(5041), + [anon_sym_BSLASHACRfull] = ACTIONS(5041), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5041), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5041), + [anon_sym_BSLASHacs] = ACTIONS(5041), + [anon_sym_BSLASHAcs] = ACTIONS(5041), + [anon_sym_BSLASHacsp] = ACTIONS(5041), + [anon_sym_BSLASHAcsp] = ACTIONS(5041), + [anon_sym_BSLASHacl] = ACTIONS(5041), + [anon_sym_BSLASHAcl] = ACTIONS(5041), + [anon_sym_BSLASHaclp] = ACTIONS(5041), + [anon_sym_BSLASHAclp] = ACTIONS(5041), + [anon_sym_BSLASHacf] = ACTIONS(5041), + [anon_sym_BSLASHAcf] = ACTIONS(5041), + [anon_sym_BSLASHacfp] = ACTIONS(5041), + [anon_sym_BSLASHAcfp] = ACTIONS(5041), + [anon_sym_BSLASHac] = ACTIONS(5041), + [anon_sym_BSLASHAc] = ACTIONS(5041), + [anon_sym_BSLASHacp] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5041), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5041), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5041), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5041), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5041), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5041), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5041), + [anon_sym_BSLASHcolor] = ACTIONS(5041), + [anon_sym_BSLASHcolorbox] = ACTIONS(5041), + [anon_sym_BSLASHtextcolor] = ACTIONS(5041), + [anon_sym_BSLASHpagecolor] = ACTIONS(5041), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5041), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5041), + }, + [1575] = { + [sym_command_name] = ACTIONS(5237), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5237), + [anon_sym_RBRACK] = ACTIONS(5235), + [anon_sym_COMMA] = ACTIONS(5235), + [anon_sym_EQ] = ACTIONS(5235), + [anon_sym_RBRACE] = ACTIONS(5235), + [sym_word] = ACTIONS(5237), + [sym_placeholder] = ACTIONS(5235), + [anon_sym_PLUS] = ACTIONS(5237), + [anon_sym_DASH] = ACTIONS(5237), + [anon_sym_STAR] = ACTIONS(5237), + [anon_sym_SLASH] = ACTIONS(5237), + [anon_sym_CARET] = ACTIONS(5237), + [anon_sym__] = ACTIONS(5237), + [anon_sym_LT] = ACTIONS(5237), + [anon_sym_GT] = ACTIONS(5237), + [anon_sym_BANG] = ACTIONS(5237), + [anon_sym_PIPE] = ACTIONS(5237), + [anon_sym_COLON] = ACTIONS(5237), + [anon_sym_SQUOTE] = ACTIONS(5237), + [anon_sym_BSLASHusepackage] = ACTIONS(5237), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5237), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5237), + [anon_sym_BSLASHinclude] = ACTIONS(5237), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5237), + [anon_sym_BSLASHinput] = ACTIONS(5237), + [anon_sym_BSLASHsubfile] = ACTIONS(5237), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5237), + [anon_sym_BSLASHbibliography] = ACTIONS(5237), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5237), + [anon_sym_BSLASHincludesvg] = ACTIONS(5237), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5237), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5237), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5237), + [anon_sym_BSLASHimport] = ACTIONS(5237), + [anon_sym_BSLASHsubimport] = ACTIONS(5237), + [anon_sym_BSLASHinputfrom] = ACTIONS(5237), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5237), + [anon_sym_BSLASHincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5237), + [anon_sym_BSLASHcaption] = ACTIONS(5237), + [anon_sym_BSLASHcite] = ACTIONS(5237), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCite] = ACTIONS(5237), + [anon_sym_BSLASHnocite] = ACTIONS(5237), + [anon_sym_BSLASHcitet] = ACTIONS(5237), + [anon_sym_BSLASHcitep] = ACTIONS(5237), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteauthor] = ACTIONS(5237), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5237), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitetitle] = ACTIONS(5237), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteyear] = ACTIONS(5237), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5235), + [anon_sym_BSLASHcitedate] = ACTIONS(5237), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5235), + [anon_sym_BSLASHciteurl] = ACTIONS(5237), + [anon_sym_BSLASHfullcite] = ACTIONS(5237), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5237), + [anon_sym_BSLASHcitealt] = ACTIONS(5237), + [anon_sym_BSLASHcitealp] = ACTIONS(5237), + [anon_sym_BSLASHcitetext] = ACTIONS(5237), + [anon_sym_BSLASHparencite] = ACTIONS(5237), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHParencite] = ACTIONS(5237), + [anon_sym_BSLASHfootcite] = ACTIONS(5237), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5237), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5237), + [anon_sym_BSLASHtextcite] = ACTIONS(5237), + [anon_sym_BSLASHTextcite] = ACTIONS(5237), + [anon_sym_BSLASHsmartcite] = ACTIONS(5237), + [anon_sym_BSLASHSmartcite] = ACTIONS(5237), + [anon_sym_BSLASHsupercite] = ACTIONS(5237), + [anon_sym_BSLASHautocite] = ACTIONS(5237), + [anon_sym_BSLASHAutocite] = ACTIONS(5237), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5235), + [anon_sym_BSLASHvolcite] = ACTIONS(5237), + [anon_sym_BSLASHVolcite] = ACTIONS(5237), + [anon_sym_BSLASHpvolcite] = ACTIONS(5237), + [anon_sym_BSLASHPvolcite] = ACTIONS(5237), + [anon_sym_BSLASHfvolcite] = ACTIONS(5237), + [anon_sym_BSLASHftvolcite] = ACTIONS(5237), + [anon_sym_BSLASHsvolcite] = ACTIONS(5237), + [anon_sym_BSLASHSvolcite] = ACTIONS(5237), + [anon_sym_BSLASHtvolcite] = ACTIONS(5237), + [anon_sym_BSLASHTvolcite] = ACTIONS(5237), + [anon_sym_BSLASHavolcite] = ACTIONS(5237), + [anon_sym_BSLASHAvolcite] = ACTIONS(5237), + [anon_sym_BSLASHnotecite] = ACTIONS(5237), + [anon_sym_BSLASHNotecite] = ACTIONS(5237), + [anon_sym_BSLASHpnotecite] = ACTIONS(5237), + [anon_sym_BSLASHPnotecite] = ACTIONS(5237), + [anon_sym_BSLASHfnotecite] = ACTIONS(5237), + [anon_sym_BSLASHlabel] = ACTIONS(5237), + [anon_sym_BSLASHref] = ACTIONS(5237), + [anon_sym_BSLASHeqref] = ACTIONS(5237), + [anon_sym_BSLASHvref] = ACTIONS(5237), + [anon_sym_BSLASHVref] = ACTIONS(5237), + [anon_sym_BSLASHautoref] = ACTIONS(5237), + [anon_sym_BSLASHpageref] = ACTIONS(5237), + [anon_sym_BSLASHcref] = ACTIONS(5237), + [anon_sym_BSLASHCref] = ACTIONS(5237), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnameCref] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5237), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5237), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5237), + [anon_sym_BSLASHlabelcref] = ACTIONS(5237), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange] = ACTIONS(5237), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHCrefrange] = ACTIONS(5237), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5235), + [anon_sym_BSLASHnewlabel] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand] = ACTIONS(5237), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5237), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5237), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5235), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5237), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5235), + [anon_sym_BSLASHdef] = ACTIONS(5237), + [anon_sym_BSLASHlet] = ACTIONS(5237), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5237), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5237), + [anon_sym_BSLASHgls] = ACTIONS(5237), + [anon_sym_BSLASHGls] = ACTIONS(5237), + [anon_sym_BSLASHGLS] = ACTIONS(5237), + [anon_sym_BSLASHglspl] = ACTIONS(5237), + [anon_sym_BSLASHGlspl] = ACTIONS(5237), + [anon_sym_BSLASHGLSpl] = ACTIONS(5237), + [anon_sym_BSLASHglsdisp] = ACTIONS(5237), + [anon_sym_BSLASHglslink] = ACTIONS(5237), + [anon_sym_BSLASHglstext] = ACTIONS(5237), + [anon_sym_BSLASHGlstext] = ACTIONS(5237), + [anon_sym_BSLASHGLStext] = ACTIONS(5237), + [anon_sym_BSLASHglsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5237), + [anon_sym_BSLASHglsplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSplural] = ACTIONS(5237), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5237), + [anon_sym_BSLASHglsname] = ACTIONS(5237), + [anon_sym_BSLASHGlsname] = ACTIONS(5237), + [anon_sym_BSLASHGLSname] = ACTIONS(5237), + [anon_sym_BSLASHglssymbol] = ACTIONS(5237), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5237), + [anon_sym_BSLASHglsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5237), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5237), + [anon_sym_BSLASHglsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5237), + [anon_sym_BSLASHglsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5237), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5237), + [anon_sym_BSLASHglsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5237), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5237), + [anon_sym_BSLASHglsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5237), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5237), + [anon_sym_BSLASHnewacronym] = ACTIONS(5237), + [anon_sym_BSLASHacrshort] = ACTIONS(5237), + [anon_sym_BSLASHAcrshort] = ACTIONS(5237), + [anon_sym_BSLASHACRshort] = ACTIONS(5237), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5237), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5237), + [anon_sym_BSLASHacrlong] = ACTIONS(5237), + [anon_sym_BSLASHAcrlong] = ACTIONS(5237), + [anon_sym_BSLASHACRlong] = ACTIONS(5237), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5237), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5237), + [anon_sym_BSLASHacrfull] = ACTIONS(5237), + [anon_sym_BSLASHAcrfull] = ACTIONS(5237), + [anon_sym_BSLASHACRfull] = ACTIONS(5237), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5237), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5237), + [anon_sym_BSLASHacs] = ACTIONS(5237), + [anon_sym_BSLASHAcs] = ACTIONS(5237), + [anon_sym_BSLASHacsp] = ACTIONS(5237), + [anon_sym_BSLASHAcsp] = ACTIONS(5237), + [anon_sym_BSLASHacl] = ACTIONS(5237), + [anon_sym_BSLASHAcl] = ACTIONS(5237), + [anon_sym_BSLASHaclp] = ACTIONS(5237), + [anon_sym_BSLASHAclp] = ACTIONS(5237), + [anon_sym_BSLASHacf] = ACTIONS(5237), + [anon_sym_BSLASHAcf] = ACTIONS(5237), + [anon_sym_BSLASHacfp] = ACTIONS(5237), + [anon_sym_BSLASHAcfp] = ACTIONS(5237), + [anon_sym_BSLASHac] = ACTIONS(5237), + [anon_sym_BSLASHAc] = ACTIONS(5237), + [anon_sym_BSLASHacp] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5237), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5237), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5237), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5237), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5237), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5237), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5237), + [anon_sym_BSLASHcolor] = ACTIONS(5237), + [anon_sym_BSLASHcolorbox] = ACTIONS(5237), + [anon_sym_BSLASHtextcolor] = ACTIONS(5237), + [anon_sym_BSLASHpagecolor] = ACTIONS(5237), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5237), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5237), + }, + [1576] = { + [sym_command_name] = ACTIONS(5209), + [sym__whitespace] = ACTIONS(3), + [sym_line_comment] = ACTIONS(3), + [anon_sym_BSLASHiffalse] = ACTIONS(5209), + [anon_sym_RBRACK] = ACTIONS(5207), + [anon_sym_COMMA] = ACTIONS(5207), + [anon_sym_EQ] = ACTIONS(5207), + [anon_sym_RBRACE] = ACTIONS(5207), + [sym_word] = ACTIONS(5209), + [sym_placeholder] = ACTIONS(5207), + [anon_sym_PLUS] = ACTIONS(5209), + [anon_sym_DASH] = ACTIONS(5209), + [anon_sym_STAR] = ACTIONS(5209), + [anon_sym_SLASH] = ACTIONS(5209), + [anon_sym_CARET] = ACTIONS(5209), + [anon_sym__] = ACTIONS(5209), + [anon_sym_LT] = ACTIONS(5209), + [anon_sym_GT] = ACTIONS(5209), + [anon_sym_BANG] = ACTIONS(5209), + [anon_sym_PIPE] = ACTIONS(5209), + [anon_sym_COLON] = ACTIONS(5209), + [anon_sym_SQUOTE] = ACTIONS(5209), + [anon_sym_BSLASHusepackage] = ACTIONS(5209), + [anon_sym_BSLASHRequirePackage] = ACTIONS(5209), + [anon_sym_BSLASHdocumentclass] = ACTIONS(5209), + [anon_sym_BSLASHinclude] = ACTIONS(5209), + [anon_sym_BSLASHsubfileinclude] = ACTIONS(5209), + [anon_sym_BSLASHinput] = ACTIONS(5209), + [anon_sym_BSLASHsubfile] = ACTIONS(5209), + [anon_sym_BSLASHaddbibresource] = ACTIONS(5209), + [anon_sym_BSLASHbibliography] = ACTIONS(5209), + [anon_sym_BSLASHincludegraphics] = ACTIONS(5209), + [anon_sym_BSLASHincludesvg] = ACTIONS(5209), + [anon_sym_BSLASHincludeinkscape] = ACTIONS(5209), + [anon_sym_BSLASHverbatiminput] = ACTIONS(5209), + [anon_sym_BSLASHVerbatimInput] = ACTIONS(5209), + [anon_sym_BSLASHimport] = ACTIONS(5209), + [anon_sym_BSLASHsubimport] = ACTIONS(5209), + [anon_sym_BSLASHinputfrom] = ACTIONS(5209), + [anon_sym_BSLASHsubimportfrom] = ACTIONS(5209), + [anon_sym_BSLASHincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHsubincludefrom] = ACTIONS(5209), + [anon_sym_BSLASHcaption] = ACTIONS(5209), + [anon_sym_BSLASHcite] = ACTIONS(5209), + [anon_sym_BSLASHcite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCite] = ACTIONS(5209), + [anon_sym_BSLASHnocite] = ACTIONS(5209), + [anon_sym_BSLASHcitet] = ACTIONS(5209), + [anon_sym_BSLASHcitep] = ACTIONS(5209), + [anon_sym_BSLASHcitet_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitep_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteauthor] = ACTIONS(5209), + [anon_sym_BSLASHciteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCiteauthor] = ACTIONS(5209), + [anon_sym_BSLASHCiteauthor_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitetitle] = ACTIONS(5209), + [anon_sym_BSLASHcitetitle_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteyear] = ACTIONS(5209), + [anon_sym_BSLASHciteyear_STAR] = ACTIONS(5207), + [anon_sym_BSLASHcitedate] = ACTIONS(5209), + [anon_sym_BSLASHcitedate_STAR] = ACTIONS(5207), + [anon_sym_BSLASHciteurl] = ACTIONS(5209), + [anon_sym_BSLASHfullcite] = ACTIONS(5209), + [anon_sym_BSLASHciteyearpar] = ACTIONS(5209), + [anon_sym_BSLASHcitealt] = ACTIONS(5209), + [anon_sym_BSLASHcitealp] = ACTIONS(5209), + [anon_sym_BSLASHcitetext] = ACTIONS(5209), + [anon_sym_BSLASHparencite] = ACTIONS(5209), + [anon_sym_BSLASHparencite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHParencite] = ACTIONS(5209), + [anon_sym_BSLASHfootcite] = ACTIONS(5209), + [anon_sym_BSLASHfootfullcite] = ACTIONS(5209), + [anon_sym_BSLASHfootcitetext] = ACTIONS(5209), + [anon_sym_BSLASHtextcite] = ACTIONS(5209), + [anon_sym_BSLASHTextcite] = ACTIONS(5209), + [anon_sym_BSLASHsmartcite] = ACTIONS(5209), + [anon_sym_BSLASHSmartcite] = ACTIONS(5209), + [anon_sym_BSLASHsupercite] = ACTIONS(5209), + [anon_sym_BSLASHautocite] = ACTIONS(5209), + [anon_sym_BSLASHAutocite] = ACTIONS(5209), + [anon_sym_BSLASHautocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHAutocite_STAR] = ACTIONS(5207), + [anon_sym_BSLASHvolcite] = ACTIONS(5209), + [anon_sym_BSLASHVolcite] = ACTIONS(5209), + [anon_sym_BSLASHpvolcite] = ACTIONS(5209), + [anon_sym_BSLASHPvolcite] = ACTIONS(5209), + [anon_sym_BSLASHfvolcite] = ACTIONS(5209), + [anon_sym_BSLASHftvolcite] = ACTIONS(5209), + [anon_sym_BSLASHsvolcite] = ACTIONS(5209), + [anon_sym_BSLASHSvolcite] = ACTIONS(5209), + [anon_sym_BSLASHtvolcite] = ACTIONS(5209), + [anon_sym_BSLASHTvolcite] = ACTIONS(5209), + [anon_sym_BSLASHavolcite] = ACTIONS(5209), + [anon_sym_BSLASHAvolcite] = ACTIONS(5209), + [anon_sym_BSLASHnotecite] = ACTIONS(5209), + [anon_sym_BSLASHNotecite] = ACTIONS(5209), + [anon_sym_BSLASHpnotecite] = ACTIONS(5209), + [anon_sym_BSLASHPnotecite] = ACTIONS(5209), + [anon_sym_BSLASHfnotecite] = ACTIONS(5209), + [anon_sym_BSLASHlabel] = ACTIONS(5209), + [anon_sym_BSLASHref] = ACTIONS(5209), + [anon_sym_BSLASHeqref] = ACTIONS(5209), + [anon_sym_BSLASHvref] = ACTIONS(5209), + [anon_sym_BSLASHVref] = ACTIONS(5209), + [anon_sym_BSLASHautoref] = ACTIONS(5209), + [anon_sym_BSLASHpageref] = ACTIONS(5209), + [anon_sym_BSLASHcref] = ACTIONS(5209), + [anon_sym_BSLASHCref] = ACTIONS(5209), + [anon_sym_BSLASHcref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCref_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnameCref] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecref] = ACTIONS(5209), + [anon_sym_BSLASHnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHnameCrefs] = ACTIONS(5209), + [anon_sym_BSLASHlcnamecrefs] = ACTIONS(5209), + [anon_sym_BSLASHlabelcref] = ACTIONS(5209), + [anon_sym_BSLASHlabelcpageref] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange] = ACTIONS(5209), + [anon_sym_BSLASHcrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHCrefrange] = ACTIONS(5209), + [anon_sym_BSLASHCrefrange_STAR] = ACTIONS(5207), + [anon_sym_BSLASHnewlabel] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand] = ACTIONS(5209), + [anon_sym_BSLASHnewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHrenewcommand] = ACTIONS(5209), + [anon_sym_BSLASHrenewcommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareRobustCommand] = ACTIONS(5209), + [anon_sym_BSLASHDeclareRobustCommand_STAR] = ACTIONS(5207), + [anon_sym_BSLASHDeclareMathOperator] = ACTIONS(5209), + [anon_sym_BSLASHDeclareMathOperator_STAR] = ACTIONS(5207), + [anon_sym_BSLASHdef] = ACTIONS(5209), + [anon_sym_BSLASHlet] = ACTIONS(5209), + [anon_sym_BSLASHnewenvironment] = ACTIONS(5209), + [anon_sym_BSLASHnewglossaryentry] = ACTIONS(5209), + [anon_sym_BSLASHgls] = ACTIONS(5209), + [anon_sym_BSLASHGls] = ACTIONS(5209), + [anon_sym_BSLASHGLS] = ACTIONS(5209), + [anon_sym_BSLASHglspl] = ACTIONS(5209), + [anon_sym_BSLASHGlspl] = ACTIONS(5209), + [anon_sym_BSLASHGLSpl] = ACTIONS(5209), + [anon_sym_BSLASHglsdisp] = ACTIONS(5209), + [anon_sym_BSLASHglslink] = ACTIONS(5209), + [anon_sym_BSLASHglstext] = ACTIONS(5209), + [anon_sym_BSLASHGlstext] = ACTIONS(5209), + [anon_sym_BSLASHGLStext] = ACTIONS(5209), + [anon_sym_BSLASHglsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirst] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirst] = ACTIONS(5209), + [anon_sym_BSLASHglsplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSplural] = ACTIONS(5209), + [anon_sym_BSLASHglsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGlsfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHGLSfirstplural] = ACTIONS(5209), + [anon_sym_BSLASHglsname] = ACTIONS(5209), + [anon_sym_BSLASHGlsname] = ACTIONS(5209), + [anon_sym_BSLASHGLSname] = ACTIONS(5209), + [anon_sym_BSLASHglssymbol] = ACTIONS(5209), + [anon_sym_BSLASHGlssymbol] = ACTIONS(5209), + [anon_sym_BSLASHglsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGlsdesc] = ACTIONS(5209), + [anon_sym_BSLASHGLSdesc] = ACTIONS(5209), + [anon_sym_BSLASHglsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseri] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseri] = ACTIONS(5209), + [anon_sym_BSLASHglsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriii] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriii] = ACTIONS(5209), + [anon_sym_BSLASHglsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuseriv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuseriv] = ACTIONS(5209), + [anon_sym_BSLASHglsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGlsuserv] = ACTIONS(5209), + [anon_sym_BSLASHGLSuserv] = ACTIONS(5209), + [anon_sym_BSLASHglsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGlsuservi] = ACTIONS(5209), + [anon_sym_BSLASHGLSuservi] = ACTIONS(5209), + [anon_sym_BSLASHnewacronym] = ACTIONS(5209), + [anon_sym_BSLASHacrshort] = ACTIONS(5209), + [anon_sym_BSLASHAcrshort] = ACTIONS(5209), + [anon_sym_BSLASHACRshort] = ACTIONS(5209), + [anon_sym_BSLASHacrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrshortpl] = ACTIONS(5209), + [anon_sym_BSLASHACRshortpl] = ACTIONS(5209), + [anon_sym_BSLASHacrlong] = ACTIONS(5209), + [anon_sym_BSLASHAcrlong] = ACTIONS(5209), + [anon_sym_BSLASHACRlong] = ACTIONS(5209), + [anon_sym_BSLASHacrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrlongpl] = ACTIONS(5209), + [anon_sym_BSLASHACRlongpl] = ACTIONS(5209), + [anon_sym_BSLASHacrfull] = ACTIONS(5209), + [anon_sym_BSLASHAcrfull] = ACTIONS(5209), + [anon_sym_BSLASHACRfull] = ACTIONS(5209), + [anon_sym_BSLASHacrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHAcrfullpl] = ACTIONS(5209), + [anon_sym_BSLASHACRfullpl] = ACTIONS(5209), + [anon_sym_BSLASHacs] = ACTIONS(5209), + [anon_sym_BSLASHAcs] = ACTIONS(5209), + [anon_sym_BSLASHacsp] = ACTIONS(5209), + [anon_sym_BSLASHAcsp] = ACTIONS(5209), + [anon_sym_BSLASHacl] = ACTIONS(5209), + [anon_sym_BSLASHAcl] = ACTIONS(5209), + [anon_sym_BSLASHaclp] = ACTIONS(5209), + [anon_sym_BSLASHAclp] = ACTIONS(5209), + [anon_sym_BSLASHacf] = ACTIONS(5209), + [anon_sym_BSLASHAcf] = ACTIONS(5209), + [anon_sym_BSLASHacfp] = ACTIONS(5209), + [anon_sym_BSLASHAcfp] = ACTIONS(5209), + [anon_sym_BSLASHac] = ACTIONS(5209), + [anon_sym_BSLASHAc] = ACTIONS(5209), + [anon_sym_BSLASHacp] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylong] = ACTIONS(5209), + [anon_sym_BSLASHglsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentrylongpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshort] = ACTIONS(5209), + [anon_sym_BSLASHglsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryshortpl] = ACTIONS(5209), + [anon_sym_BSLASHglsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHGlsentryfullpl] = ACTIONS(5209), + [anon_sym_BSLASHnewtheorem] = ACTIONS(5209), + [anon_sym_BSLASHdeclaretheorem] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolor] = ACTIONS(5209), + [anon_sym_BSLASHdefinecolorset] = ACTIONS(5209), + [anon_sym_BSLASHcolor] = ACTIONS(5209), + [anon_sym_BSLASHcolorbox] = ACTIONS(5209), + [anon_sym_BSLASHtextcolor] = ACTIONS(5209), + [anon_sym_BSLASHpagecolor] = ACTIONS(5209), + [anon_sym_BSLASHusepgflibrary] = ACTIONS(5209), + [anon_sym_BSLASHusetikzlibrary] = ACTIONS(5209), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 8, - ACTIONS(5463), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - STATE(820), 1, + STATE(707), 1, sym_curly_group_text, - STATE(1879), 1, + STATE(1987), 1, sym__trivia_curly_group_minted, - STATE(2419), 1, + STATE(2434), 1, sym__trivia_curly_group_comment, - STATE(2420), 1, + STATE(2435), 1, sym__trivia_curly_group_verbatim, - STATE(2421), 1, + STATE(2440), 1, sym__trivia_curly_group_listing, - STATE(2422), 1, + STATE(2441), 1, sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [26] = 5, - ACTIONS(5467), 1, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(5470), 1, - anon_sym_RBRACE, - ACTIONS(5472), 1, + ACTIONS(5529), 1, aux_sym__glob_pattern_fragment_token1, - ACTIONS(5465), 2, + STATE(2412), 1, + sym_glob_pattern, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - STATE(1571), 2, + STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [44] = 5, - ACTIONS(5475), 1, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(5529), 1, aux_sym__glob_pattern_fragment_token1, - STATE(2365), 1, + STATE(2326), 1, sym_glob_pattern, - ACTIONS(5465), 2, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - STATE(1575), 2, + STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [62] = 5, - ACTIONS(5475), 1, + ACTIONS(5531), 1, anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(5534), 1, + anon_sym_RBRACE, + ACTIONS(5536), 1, aux_sym__glob_pattern_fragment_token1, - STATE(2370), 1, - sym_glob_pattern, - ACTIONS(5465), 2, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - STATE(1575), 2, + STATE(1580), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [80] = 5, - ACTIONS(5475), 1, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(5479), 1, - anon_sym_RBRACE, - ACTIONS(5481), 1, + ACTIONS(5529), 1, aux_sym__glob_pattern_fragment_token1, - ACTIONS(5465), 2, + STATE(2373), 1, + sym_glob_pattern, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - STATE(1571), 2, + STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [98] = 5, - ACTIONS(5475), 1, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(5481), 1, + ACTIONS(5529), 1, aux_sym__glob_pattern_fragment_token1, - ACTIONS(5483), 1, - anon_sym_RBRACE, - ACTIONS(5465), 2, + STATE(2444), 1, + sym_glob_pattern, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - STATE(1571), 2, + STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [116] = 5, - ACTIONS(5475), 1, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(5539), 1, + anon_sym_RBRACE, + ACTIONS(5541), 1, aux_sym__glob_pattern_fragment_token1, - STATE(2429), 1, - sym_glob_pattern, - ACTIONS(5465), 2, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - STATE(1575), 2, + STATE(1580), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [134] = 5, - ACTIONS(5475), 1, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(5529), 1, aux_sym__glob_pattern_fragment_token1, - STATE(2375), 1, + STATE(2466), 1, sym_glob_pattern, - ACTIONS(5465), 2, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - STATE(1575), 2, + STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [152] = 5, - ACTIONS(5475), 1, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(5529), 1, aux_sym__glob_pattern_fragment_token1, - STATE(2403), 1, + STATE(2338), 1, sym_glob_pattern, - ACTIONS(5465), 2, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - STATE(1575), 2, + STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [170] = 5, - ACTIONS(5475), 1, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(5541), 1, aux_sym__glob_pattern_fragment_token1, - STATE(2454), 1, - sym_glob_pattern, - ACTIONS(5465), 2, + ACTIONS(5543), 1, + anon_sym_RBRACE, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - STATE(1575), 2, + STATE(1580), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [188] = 5, - ACTIONS(5475), 1, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(5485), 1, - anon_sym_RBRACE, - ACTIONS(5487), 1, + ACTIONS(5529), 1, aux_sym__glob_pattern_fragment_token1, - ACTIONS(5465), 2, + STATE(2463), 1, + sym_glob_pattern, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - STATE(1574), 2, + STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [206] = 5, - ACTIONS(5475), 1, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(5529), 1, aux_sym__glob_pattern_fragment_token1, - STATE(2447), 1, + STATE(2391), 1, sym_glob_pattern, - ACTIONS(5465), 2, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - STATE(1575), 2, + STATE(1586), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [224] = 5, - ACTIONS(5475), 1, + ACTIONS(5527), 1, anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(5545), 1, + anon_sym_RBRACE, + ACTIONS(5547), 1, aux_sym__glob_pattern_fragment_token1, - STATE(2354), 1, - sym_glob_pattern, - ACTIONS(5465), 2, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - STATE(1575), 2, + STATE(1583), 2, sym__glob_pattern_fragment, aux_sym_glob_pattern_repeat1, [242] = 5, - ACTIONS(4589), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1937), 1, - sym_brack_group_text, - STATE(2223), 1, + STATE(2010), 1, + sym_brack_group_key_value, + STATE(2311), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [259] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, + ACTIONS(5553), 1, anon_sym_LBRACE, - STATE(1377), 1, - sym_curly_group_text, - STATE(2111), 1, + STATE(1409), 1, + sym_curly_group_path, + STATE(2113), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [276] = 5, - ACTIONS(5491), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5555), 1, anon_sym_LBRACE, - STATE(901), 1, - sym_curly_group_path, - STATE(1817), 1, - sym_brack_group_key_value, + STATE(910), 1, + sym_curly_group_text_list, + STATE(1635), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [293] = 5, - ACTIONS(4589), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2031), 1, - sym_brack_group_text, - STATE(2271), 1, + STATE(2042), 1, + sym_brack_group_key_value, + STATE(2284), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [310] = 5, - ACTIONS(5489), 1, + ACTIONS(683), 1, anon_sym_LBRACE, - ACTIONS(5491), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - STATE(2001), 1, - sym_brack_group_key_value, - STATE(2297), 1, - sym_curly_group_text, + STATE(909), 1, + sym_curly_group, + STATE(1835), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [327] = 5, - ACTIONS(5497), 1, + ACTIONS(5557), 1, anon_sym_LBRACK, - ACTIONS(5499), 1, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(2044), 1, - sym_curly_group_impl, - STATE(2200), 1, + STATE(2308), 1, sym_brack_group_argc, + STATE(2310), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [344] = 5, - ACTIONS(5489), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(5491), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - STATE(1975), 1, - sym_brack_group_key_value, - STATE(2287), 1, - sym_curly_group_text, + STATE(800), 1, + sym_curly_group, + STATE(2012), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [361] = 5, - ACTIONS(4589), 1, + ACTIONS(5557), 1, anon_sym_LBRACK, - ACTIONS(5489), 1, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(2000), 1, - sym_brack_group_text, - STATE(2298), 1, - sym_curly_group_text, + STATE(1867), 1, + sym_curly_group_impl, + STATE(2313), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [378] = 5, - ACTIONS(4589), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1948), 1, + STATE(2041), 1, sym_brack_group_text, STATE(2285), 1, sym_curly_group_text, @@ -453432,2555 +457674,2555 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [395] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5501), 1, + ACTIONS(5561), 1, anon_sym_LBRACE, - STATE(899), 1, - sym_curly_group_glob_pattern, - STATE(1816), 1, + STATE(907), 1, + sym_curly_group_path, + STATE(1833), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [412] = 5, - ACTIONS(5497), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5499), 1, + ACTIONS(5561), 1, anon_sym_LBRACE, - STATE(1950), 1, - sym_curly_group_impl, - STATE(2269), 1, - sym_brack_group_argc, + STATE(906), 1, + sym_curly_group_path, + STATE(1832), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [429] = 5, - ACTIONS(5489), 1, - anon_sym_LBRACE, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(1938), 1, + ACTIONS(5561), 1, + anon_sym_LBRACE, + STATE(905), 1, + sym_curly_group_path, + STATE(1831), 1, sym_brack_group_key_value, - STATE(2228), 1, - sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [446] = 5, - ACTIONS(5489), 1, - anon_sym_LBRACE, - ACTIONS(5491), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - STATE(2032), 1, - sym_brack_group_key_value, - STATE(2270), 1, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(1882), 1, + sym_brack_group_text, + STATE(2082), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [463] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5563), 1, anon_sym_LBRACE, - STATE(897), 1, - sym_curly_group_path, - STATE(1815), 1, + STATE(662), 1, + sym_curly_group_text, + STATE(1843), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [480] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5503), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - STATE(1167), 1, - sym_curly_group_path_list, - STATE(2237), 1, + STATE(903), 1, + sym_curly_group_glob_pattern, + STATE(1830), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [497] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5505), 1, + ACTIONS(5567), 1, anon_sym_LBRACE, - STATE(1166), 1, - sym_curly_group_path, - STATE(2235), 1, + STATE(1161), 1, + sym_curly_group_path_list, + STATE(2233), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [514] = 5, - ACTIONS(5497), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5499), 1, + ACTIONS(5569), 1, anon_sym_LBRACE, - STATE(1856), 1, - sym_curly_group_impl, - STATE(2299), 1, - sym_brack_group_argc, + STATE(1160), 1, + sym_curly_group_path, + STATE(2231), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [531] = 5, - ACTIONS(5491), 1, + ACTIONS(5557), 1, anon_sym_LBRACK, - ACTIONS(5507), 1, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(1164), 1, - sym_curly_group_glob_pattern, - STATE(2222), 1, - sym_brack_group_key_value, + STATE(1862), 1, + sym_curly_group_impl, + STATE(2286), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [548] = 5, - ACTIONS(5489), 1, - anon_sym_LBRACE, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(1904), 1, + ACTIONS(5571), 1, + anon_sym_LBRACE, + STATE(1158), 1, + sym_curly_group_glob_pattern, + STATE(2226), 1, sym_brack_group_key_value, - STATE(2128), 1, - sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [565] = 5, - ACTIONS(5491), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(5505), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1162), 1, - sym_curly_group_path, - STATE(2220), 1, - sym_brack_group_key_value, + STATE(2009), 1, + sym_brack_group_text, + STATE(2312), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [582] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5505), 1, + ACTIONS(5569), 1, anon_sym_LBRACE, - STATE(1161), 1, + STATE(1156), 1, sym_curly_group_path, - STATE(2219), 1, + STATE(2224), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [599] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5505), 1, + ACTIONS(5569), 1, anon_sym_LBRACE, - STATE(1160), 1, + STATE(1155), 1, sym_curly_group_path, - STATE(2217), 1, + STATE(2094), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [616] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5509), 1, + ACTIONS(5569), 1, anon_sym_LBRACE, - STATE(896), 1, - sym_curly_group_path_list, - STATE(1814), 1, + STATE(1154), 1, + sym_curly_group_path, + STATE(2221), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [633] = 5, - ACTIONS(558), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - STATE(1158), 1, - sym_curly_group, - STATE(2210), 1, - sym_brack_group, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(2047), 1, + sym_brack_group_text, + STATE(2255), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [650] = 5, - ACTIONS(5377), 1, - anon_sym_LBRACK, - ACTIONS(5511), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - STATE(1157), 1, - sym_curly_group_text_list, - STATE(1633), 1, + ACTIONS(4979), 1, + anon_sym_LBRACK, + STATE(1152), 1, + sym_curly_group, + STATE(2211), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [667] = 5, - ACTIONS(4589), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5489), 1, + ACTIONS(5573), 1, anon_sym_LBRACE, - STATE(1899), 1, - sym_brack_group_text, - STATE(2127), 1, - sym_curly_group_text, + STATE(1151), 1, + sym_curly_group_text_list, + STATE(1642), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [684] = 5, - ACTIONS(5497), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5499), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1881), 1, - sym_curly_group_impl, - STATE(2272), 1, - sym_brack_group_argc, + STATE(1986), 1, + sym_brack_group_key_value, + STATE(2307), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [701] = 5, - ACTIONS(5489), 1, - anon_sym_LBRACE, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(1889), 1, + ACTIONS(5575), 1, + anon_sym_LBRACE, + STATE(815), 1, + sym_curly_group_path_list, + STATE(1961), 1, sym_brack_group_key_value, - STATE(2067), 1, - sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [718] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5513), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(1153), 1, - sym_curly_group_text, - STATE(2194), 1, + STATE(688), 1, + sym_curly_group_path, + STATE(1940), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [735] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5513), 1, + ACTIONS(5579), 1, anon_sym_LBRACE, - STATE(1152), 1, + STATE(1147), 1, sym_curly_group_text, - STATE(2193), 1, + STATE(2185), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [752] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5513), 1, + ACTIONS(5579), 1, anon_sym_LBRACE, - STATE(667), 1, + STATE(1146), 1, sym_curly_group_text, - STATE(2185), 1, + STATE(2184), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [769] = 5, - ACTIONS(4589), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5579), 1, anon_sym_LBRACE, - STATE(1852), 1, - sym_brack_group_text, - STATE(1999), 1, - sym_curly_group_text_list, + STATE(663), 1, + sym_curly_group_text, + STATE(1794), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [786] = 5, - ACTIONS(4589), 1, + ACTIONS(5557), 1, anon_sym_LBRACK, - ACTIONS(5489), 1, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(1888), 1, - sym_brack_group_text, - STATE(2059), 1, - sym_curly_group_text, + STATE(2122), 1, + sym_curly_group_impl, + STATE(2256), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [803] = 5, - ACTIONS(5491), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(5517), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(687), 1, - sym_curly_group_path_list, - STATE(1976), 1, - sym_brack_group_key_value, + STATE(1972), 1, + sym_brack_group_text, + STATE(2305), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [820] = 5, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(5557), 1, anon_sym_LBRACK, - STATE(812), 1, - sym_curly_group, - STATE(2022), 1, - sym_brack_group, + ACTIONS(5559), 1, + anon_sym_LBRACE, + STATE(1962), 1, + sym_curly_group_impl, + STATE(2304), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [837] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5519), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(686), 1, - sym_curly_group_path, - STATE(1974), 1, + STATE(2048), 1, sym_brack_group_key_value, + STATE(2254), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [854] = 5, - ACTIONS(5497), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5499), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1788), 1, - sym_curly_group_impl, - STATE(2242), 1, - sym_brack_group_argc, + STATE(1951), 1, + sym_brack_group_key_value, + STATE(2245), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [871] = 5, - ACTIONS(4589), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5563), 1, anon_sym_LBRACE, - STATE(1877), 1, - sym_brack_group_text, - STATE(2037), 1, - sym_curly_group_text_list, + STATE(915), 1, + sym_curly_group_text, + STATE(1842), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [888] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5581), 1, anon_sym_LBRACE, - STATE(903), 1, - sym_curly_group_path, - STATE(1819), 1, + STATE(680), 1, + sym_curly_group_glob_pattern, + STATE(1918), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [905] = 5, - ACTIONS(5497), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5499), 1, + ACTIONS(5561), 1, anon_sym_LBRACE, - STATE(2123), 1, - sym_brack_group_argc, - STATE(2129), 1, - sym_curly_group_impl, + STATE(901), 1, + sym_curly_group_path, + STATE(1829), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [922] = 5, - ACTIONS(794), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(905), 1, - sym_curly_group, - STATE(1821), 1, - sym_brack_group, + ACTIONS(5577), 1, + anon_sym_LBRACE, + STATE(678), 1, + sym_curly_group_path, + STATE(1917), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [939] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5521), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, STATE(677), 1, - sym_curly_group_glob_pattern, - STATE(1963), 1, + sym_curly_group_path, + STATE(1916), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [956] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5519), 1, + ACTIONS(5583), 1, anon_sym_LBRACE, - STATE(674), 1, - sym_curly_group_path, - STATE(1951), 1, + STATE(900), 1, + sym_curly_group_path_list, + STATE(1828), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [973] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5519), 1, + ACTIONS(5563), 1, anon_sym_LBRACE, - STATE(751), 1, - sym_curly_group_path, - STATE(1949), 1, + STATE(914), 1, + sym_curly_group_text, + STATE(1841), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [990] = 5, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5523), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(906), 1, - sym_curly_group_text_list, - STATE(1637), 1, - sym_brack_group, + STATE(676), 1, + sym_curly_group_path, + STATE(1915), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1007] = 5, - ACTIONS(5491), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5525), 1, + ACTIONS(5555), 1, anon_sym_LBRACE, - STATE(910), 1, - sym_curly_group_text, - STATE(1829), 1, - sym_brack_group_key_value, + STATE(986), 1, + sym_curly_group_text_list, + STATE(1863), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1024] = 5, - ACTIONS(5491), 1, + ACTIONS(5557), 1, anon_sym_LBRACK, - ACTIONS(5519), 1, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(814), 1, - sym_curly_group_path, - STATE(1941), 1, - sym_brack_group_key_value, + STATE(2143), 1, + sym_curly_group_impl, + STATE(2148), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1041] = 5, - ACTIONS(5491), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(5525), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(911), 1, + STATE(1950), 1, + sym_brack_group_text, + STATE(2244), 1, sym_curly_group_text, - STATE(1830), 1, - sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1058] = 5, - ACTIONS(5491), 1, - anon_sym_LBRACK, - ACTIONS(5525), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - STATE(656), 1, - sym_curly_group_text, - STATE(1831), 1, - sym_brack_group_key_value, + ACTIONS(4979), 1, + anon_sym_LBRACK, + STATE(1435), 1, + sym_curly_group, + STATE(2223), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1075] = 5, - ACTIONS(4589), 1, - anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(683), 1, anon_sym_LBRACE, - STATE(1853), 1, - sym_brack_group_text, - STATE(2030), 1, - sym_curly_group_text_list, + ACTIONS(5557), 1, + anon_sym_LBRACK, + STATE(989), 1, + sym_curly_group, + STATE(1662), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1092] = 5, - ACTIONS(5377), 1, - anon_sym_LBRACK, - ACTIONS(5511), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1110), 1, - sym_curly_group_text_list, - STATE(2135), 1, - sym_brack_group, + ACTIONS(5557), 1, + anon_sym_LBRACK, + STATE(725), 1, + sym_curly_group, + STATE(1596), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1109] = 5, - ACTIONS(4589), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2038), 1, - sym_brack_group_text, - STATE(2241), 1, + STATE(1901), 1, + sym_brack_group_key_value, + STATE(2151), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1126] = 5, - ACTIONS(3663), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - STATE(1430), 1, - sym_curly_group, - STATE(2209), 1, + ACTIONS(5573), 1, + anon_sym_LBRACE, + STATE(1091), 1, + sym_curly_group_text_list, + STATE(2140), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1143] = 5, - ACTIONS(558), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - ACTIONS(5497), 1, + ACTIONS(5557), 1, anon_sym_LBRACK, - STATE(1096), 1, + STATE(1451), 1, sym_curly_group, - STATE(1663), 1, + STATE(1638), 1, sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1160] = 5, - ACTIONS(5377), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5523), 1, + ACTIONS(5585), 1, anon_sym_LBRACE, - STATE(981), 1, + STATE(1412), 1, sym_curly_group_text_list, - STATE(1842), 1, + STATE(2212), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1177] = 5, - ACTIONS(794), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - ACTIONS(5497), 1, + ACTIONS(5557), 1, anon_sym_LBRACK, - STATE(984), 1, + STATE(1088), 1, sym_curly_group, - STATE(1643), 1, + STATE(1672), 1, sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1194] = 5, - ACTIONS(45), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - STATE(735), 1, - sym_curly_group, - STATE(1907), 1, - sym_brack_group, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(1900), 1, + sym_brack_group_text, + STATE(2149), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1211] = 5, - ACTIONS(3663), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - ACTIONS(5497), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - STATE(1446), 1, + STATE(787), 1, sym_curly_group, - STATE(1635), 1, - sym_brack_group_argc, + STATE(1893), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1228] = 5, - ACTIONS(5377), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5527), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(1405), 1, + STATE(811), 1, sym_curly_group_text_list, - STATE(2198), 1, + STATE(1664), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1245] = 5, - ACTIONS(5497), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5499), 1, + ACTIONS(5589), 1, anon_sym_LBRACE, - STATE(2289), 1, - sym_brack_group_argc, - STATE(2290), 1, - sym_curly_group_impl, + STATE(1305), 1, + sym_curly_group_text, + STATE(2204), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1262] = 5, - ACTIONS(794), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(1040), 1, - sym_curly_group, - STATE(1868), 1, - sym_brack_group, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(1888), 1, + sym_brack_group_key_value, + STATE(2083), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1279] = 5, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5589), 1, anon_sym_LBRACE, - STATE(821), 1, - sym_curly_group_text_list, - STATE(1687), 1, - sym_brack_group, + STATE(1472), 1, + sym_curly_group_text, + STATE(2203), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1296] = 5, - ACTIONS(5491), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(5529), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(1298), 1, - sym_curly_group_text, - STATE(2190), 1, - sym_brack_group_key_value, + STATE(1838), 1, + sym_brack_group_text, + STATE(1899), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1313] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5529), 1, + ACTIONS(5589), 1, anon_sym_LBRACE, - STATE(1466), 1, + STATE(1473), 1, sym_curly_group_text, - STATE(2189), 1, + STATE(2202), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1330] = 5, - ACTIONS(5491), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5529), 1, + ACTIONS(5585), 1, anon_sym_LBRACE, - STATE(1467), 1, - sym_curly_group_text, - STATE(2188), 1, - sym_brack_group_key_value, + STATE(1477), 1, + sym_curly_group_text_list, + STATE(1644), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1347] = 5, - ACTIONS(5377), 1, - anon_sym_LBRACK, - ACTIONS(5527), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - STATE(1471), 1, - sym_curly_group_text_list, - STATE(1641), 1, + ACTIONS(4979), 1, + anon_sym_LBRACK, + STATE(1478), 1, + sym_curly_group, + STATE(2194), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1364] = 5, - ACTIONS(3663), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(1472), 1, - sym_curly_group, - STATE(2180), 1, - sym_brack_group, + ACTIONS(5591), 1, + anon_sym_LBRACE, + STATE(1484), 1, + sym_curly_group_path, + STATE(2192), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1381] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5531), 1, + ACTIONS(5591), 1, anon_sym_LBRACE, - STATE(1478), 1, + STATE(1485), 1, sym_curly_group_path, - STATE(2178), 1, + STATE(2191), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1398] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5531), 1, + ACTIONS(5591), 1, anon_sym_LBRACE, - STATE(1479), 1, + STATE(1486), 1, sym_curly_group_path, - STATE(2177), 1, + STATE(2190), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1415] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5531), 1, + ACTIONS(5593), 1, anon_sym_LBRACE, - STATE(1480), 1, - sym_curly_group_path, - STATE(2176), 1, + STATE(1488), 1, + sym_curly_group_glob_pattern, + STATE(2189), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1432] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5533), 1, + ACTIONS(5591), 1, anon_sym_LBRACE, - STATE(1482), 1, - sym_curly_group_glob_pattern, - STATE(2175), 1, + STATE(1490), 1, + sym_curly_group_path, + STATE(2188), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1449] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5531), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, - STATE(1484), 1, - sym_curly_group_path, - STATE(2174), 1, + STATE(1491), 1, + sym_curly_group_path_list, + STATE(2187), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1466] = 5, - ACTIONS(5491), 1, - anon_sym_LBRACK, - ACTIONS(5535), 1, + ACTIONS(683), 1, anon_sym_LBRACE, - STATE(1485), 1, - sym_curly_group_path_list, - STATE(2173), 1, - sym_brack_group_key_value, + ACTIONS(4979), 1, + anon_sym_LBRACK, + STATE(1045), 1, + sym_curly_group, + STATE(1879), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1483] = 5, - ACTIONS(45), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(5497), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - STATE(748), 1, + STATE(833), 1, sym_curly_group, - STATE(1617), 1, - sym_brack_group_argc, + STATE(1801), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1500] = 5, - ACTIONS(5491), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5537), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(1115), 1, - sym_curly_group_path_list, - STATE(1909), 1, - sym_brack_group_key_value, + STATE(721), 1, + sym_curly_group_text_list, + STATE(2309), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1517] = 5, - ACTIONS(652), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - STATE(862), 1, - sym_curly_group, - STATE(1796), 1, - sym_brack_group, + ACTIONS(5587), 1, + anon_sym_LBRACE, + STATE(1852), 1, + sym_brack_group_text, + STATE(1949), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1534] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5539), 1, + ACTIONS(5597), 1, anon_sym_LBRACE, - STATE(1116), 1, - sym_curly_group_path, - STATE(1910), 1, + STATE(1120), 1, + sym_curly_group_path_list, + STATE(1921), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1551] = 5, - ACTIONS(5489), 1, - anon_sym_LBRACE, - ACTIONS(5491), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - STATE(2039), 1, - sym_brack_group_key_value, - STATE(2240), 1, - sym_curly_group_text, + ACTIONS(5587), 1, + anon_sym_LBRACE, + STATE(1860), 1, + sym_brack_group_text, + STATE(2046), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1568] = 5, - ACTIONS(5491), 1, + ACTIONS(5557), 1, anon_sym_LBRACK, - ACTIONS(5541), 1, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(1118), 1, - sym_curly_group_glob_pattern, - STATE(1911), 1, - sym_brack_group_key_value, + STATE(2057), 1, + sym_curly_group_impl, + STATE(2242), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1585] = 5, - ACTIONS(5491), 1, - anon_sym_LBRACK, - ACTIONS(5539), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(1120), 1, - sym_curly_group_path, - STATE(1912), 1, - sym_brack_group_key_value, + ACTIONS(4979), 1, + anon_sym_LBRACK, + STATE(1322), 1, + sym_curly_group, + STATE(2150), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1602] = 5, - ACTIONS(558), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(1073), 1, - sym_curly_group, - STATE(2092), 1, - sym_brack_group, + ACTIONS(5599), 1, + anon_sym_LBRACE, + STATE(1121), 1, + sym_curly_group_path, + STATE(1922), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1619] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5539), 1, + ACTIONS(5601), 1, anon_sym_LBRACE, - STATE(1121), 1, - sym_curly_group_path, - STATE(1913), 1, + STATE(1123), 1, + sym_curly_group_glob_pattern, + STATE(1923), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1636] = 5, - ACTIONS(3223), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - STATE(1320), 1, + STATE(1018), 1, sym_curly_group, - STATE(2136), 1, + STATE(2098), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1653] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5539), 1, + ACTIONS(5599), 1, anon_sym_LBRACE, - STATE(1122), 1, + STATE(1125), 1, sym_curly_group_path, - STATE(1914), 1, + STATE(1924), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1670] = 5, - ACTIONS(255), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(5557), 1, anon_sym_LBRACK, - STATE(1124), 1, + STATE(1347), 1, sym_curly_group, - STATE(1916), 1, - sym_brack_group, + STATE(1669), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1687] = 5, - ACTIONS(5377), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5543), 1, + ACTIONS(5603), 1, anon_sym_LBRACE, - STATE(1125), 1, + STATE(1350), 1, sym_curly_group_text_list, - STATE(1692), 1, + STATE(2139), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1704] = 5, - ACTIONS(5491), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(5545), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(816), 1, - sym_curly_group_text, - STATE(1857), 1, - sym_brack_group_key_value, + STATE(1819), 1, + sym_brack_group_text, + STATE(1868), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1721] = 5, - ACTIONS(3223), 1, - anon_sym_LBRACE, - ACTIONS(5497), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(1342), 1, - sym_curly_group, - STATE(1665), 1, - sym_brack_group_argc, + ACTIONS(5599), 1, + anon_sym_LBRACE, + STATE(1126), 1, + sym_curly_group_path, + STATE(1925), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1738] = 5, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5547), 1, + ACTIONS(5605), 1, anon_sym_LBRACE, - STATE(1345), 1, - sym_curly_group_text_list, - STATE(2125), 1, - sym_brack_group, + STATE(810), 1, + sym_curly_group_text, + STATE(1824), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1755] = 5, - ACTIONS(4589), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1843), 1, - sym_brack_group_text, - STATE(1884), 1, - sym_curly_group_text_list, + STATE(1823), 1, + sym_curly_group_text, + STATE(1891), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1772] = 5, - ACTIONS(5489), 1, - anon_sym_LBRACE, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(1839), 1, - sym_brack_group_key_value, - STATE(1855), 1, + ACTIONS(5605), 1, + anon_sym_LBRACE, + STATE(809), 1, sym_curly_group_text, + STATE(1813), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1789] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5545), 1, + ACTIONS(5605), 1, anon_sym_LBRACE, - STATE(815), 1, + STATE(644), 1, sym_curly_group_text, - STATE(1892), 1, + STATE(1812), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1806] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5545), 1, + ACTIONS(5607), 1, anon_sym_LBRACE, - STATE(616), 1, + STATE(1296), 1, sym_curly_group_text, - STATE(1812), 1, + STATE(2127), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1823] = 5, - ACTIONS(5489), 1, - anon_sym_LBRACE, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(1129), 1, + ACTIONS(5607), 1, + anon_sym_LBRACE, + STATE(1382), 1, sym_curly_group_text, - STATE(1924), 1, + STATE(2126), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1840] = 5, - ACTIONS(5489), 1, - anon_sym_LBRACE, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(1130), 1, + ACTIONS(5607), 1, + anon_sym_LBRACE, + STATE(1383), 1, sym_curly_group_text, - STATE(1925), 1, + STATE(2125), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1857] = 5, - ACTIONS(4589), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5489), 1, + ACTIONS(5599), 1, anon_sym_LBRACE, - STATE(1810), 1, - sym_brack_group_text, - STATE(1811), 1, - sym_curly_group_text, + STATE(1127), 1, + sym_curly_group_path, + STATE(1926), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1874] = 5, - ACTIONS(5489), 1, + ACTIONS(223), 1, anon_sym_LBRACE, - ACTIONS(5491), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - STATE(647), 1, - sym_curly_group_text, - STATE(1926), 1, - sym_brack_group_key_value, + STATE(1129), 1, + sym_curly_group, + STATE(1928), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1891] = 5, - ACTIONS(4589), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5603), 1, anon_sym_LBRACE, - STATE(1808), 1, - sym_brack_group_text, - STATE(1809), 1, + STATE(1387), 1, sym_curly_group_text_list, + STATE(1675), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1908] = 5, - ACTIONS(5497), 1, - anon_sym_LBRACK, - ACTIONS(5499), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(2057), 1, - sym_brack_group_argc, - STATE(2202), 1, - sym_curly_group_impl, + ACTIONS(4979), 1, + anon_sym_LBRACK, + STATE(1388), 1, + sym_curly_group, + STATE(2117), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1925] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, + ACTIONS(5553), 1, anon_sym_LBRACE, - STATE(1291), 1, - sym_curly_group_text, - STATE(2113), 1, + STATE(1368), 1, + sym_curly_group_path, + STATE(2115), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1942] = 5, - ACTIONS(5491), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5493), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - STATE(1376), 1, - sym_curly_group_text, - STATE(2112), 1, - sym_brack_group_key_value, + STATE(1130), 1, + sym_curly_group_text_list, + STATE(1701), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1959] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5495), 1, + ACTIONS(5553), 1, anon_sym_LBRACE, - STATE(902), 1, + STATE(1410), 1, sym_curly_group_path, - STATE(1818), 1, + STATE(2114), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1976] = 5, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5547), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1381), 1, - sym_curly_group_text_list, - STATE(1671), 1, - sym_brack_group, + STATE(1134), 1, + sym_curly_group_text, + STATE(1936), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [1993] = 5, - ACTIONS(3223), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(1387), 1, - sym_curly_group, - STATE(2103), 1, - sym_brack_group, + ACTIONS(5611), 1, + anon_sym_LBRACE, + STATE(1407), 1, + sym_curly_group_glob_pattern, + STATE(2112), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2010] = 5, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5553), 1, anon_sym_LBRACE, - STATE(725), 1, - sym_curly_group_text_list, - STATE(2239), 1, - sym_brack_group, + STATE(1405), 1, + sym_curly_group_path, + STATE(2111), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2027] = 5, - ACTIONS(5491), 1, - anon_sym_LBRACK, ACTIONS(5549), 1, + anon_sym_LBRACK, + ACTIONS(5613), 1, anon_sym_LBRACE, - STATE(1389), 1, - sym_curly_group_path, - STATE(2101), 1, + STATE(1404), 1, + sym_curly_group_path_list, + STATE(2110), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2044] = 5, - ACTIONS(4589), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1845), 1, - sym_brack_group_text, - STATE(1898), 1, - sym_curly_group_text_list, + STATE(1135), 1, + sym_curly_group_text, + STATE(1937), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2061] = 5, - ACTIONS(5491), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1390), 1, - sym_curly_group_path, - STATE(2100), 1, - sym_brack_group_key_value, + STATE(1810), 1, + sym_brack_group_text, + STATE(1811), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2078] = 5, - ACTIONS(5491), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(1365), 1, - sym_curly_group_path, - STATE(2099), 1, - sym_brack_group_key_value, + STATE(1802), 1, + sym_curly_group_text_list, + STATE(1864), 1, + sym_brack_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2095] = 5, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5543), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1200), 1, - sym_curly_group_text_list, - STATE(1946), 1, - sym_brack_group, + STATE(647), 1, + sym_curly_group_text, + STATE(1938), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2112] = 5, - ACTIONS(5491), 1, + ACTIONS(5557), 1, anon_sym_LBRACK, - ACTIONS(5551), 1, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(960), 1, - sym_curly_group_path_list, - STATE(2011), 1, - sym_brack_group_key_value, + STATE(2078), 1, + sym_brack_group_argc, + STATE(2216), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2129] = 5, - ACTIONS(5491), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5553), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - STATE(959), 1, - sym_curly_group_path, - STATE(1993), 1, - sym_brack_group_key_value, + STATE(1206), 1, + sym_curly_group_text_list, + STATE(1958), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2146] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5555), 1, + ACTIONS(5615), 1, anon_sym_LBRACE, - STATE(1403), 1, - sym_curly_group_glob_pattern, - STATE(2098), 1, + STATE(951), 1, + sym_curly_group_path_list, + STATE(1995), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2163] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5557), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(957), 1, - sym_curly_group_glob_pattern, - STATE(1992), 1, + STATE(950), 1, + sym_curly_group_path, + STATE(1994), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2180] = 5, - ACTIONS(5491), 1, - anon_sym_LBRACK, - ACTIONS(5549), 1, + ACTIONS(223), 1, anon_sym_LBRACE, - STATE(1401), 1, - sym_curly_group_path, - STATE(2097), 1, - sym_brack_group_key_value, + ACTIONS(5557), 1, + anon_sym_LBRACK, + STATE(1209), 1, + sym_curly_group, + STATE(1714), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2197] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5553), 1, + ACTIONS(5619), 1, anon_sym_LBRACE, - STATE(955), 1, - sym_curly_group_path, - STATE(1991), 1, + STATE(948), 1, + sym_curly_group_glob_pattern, + STATE(1992), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2214] = 5, - ACTIONS(5491), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(5553), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(954), 1, - sym_curly_group_path, - STATE(1987), 1, - sym_brack_group_key_value, + STATE(1857), 1, + sym_brack_group_text, + STATE(2035), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2231] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5553), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(953), 1, + STATE(946), 1, sym_curly_group_path, - STATE(1986), 1, + STATE(1990), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2248] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5559), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(1400), 1, - sym_curly_group_path_list, - STATE(2096), 1, + STATE(945), 1, + sym_curly_group_path, + STATE(1989), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2265] = 5, - ACTIONS(652), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(950), 1, - sym_curly_group, - STATE(1982), 1, - sym_brack_group, + ACTIONS(5617), 1, + anon_sym_LBRACE, + STATE(944), 1, + sym_curly_group_path, + STATE(1985), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2282] = 5, - ACTIONS(5377), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5561), 1, + ACTIONS(5513), 1, anon_sym_LBRACE, - STATE(949), 1, - sym_curly_group_text_list, - STATE(1713), 1, + STATE(1566), 1, + sym_curly_group, + STATE(2069), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2299] = 5, - ACTIONS(255), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(5497), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - STATE(1203), 1, + STATE(942), 1, sym_curly_group, - STATE(1705), 1, - sym_brack_group_argc, + STATE(1973), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2316] = 5, - ACTIONS(255), 1, - anon_sym_LBRACE, - ACTIONS(5377), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - STATE(1259), 1, - sym_curly_group, - STATE(1962), 1, + ACTIONS(5621), 1, + anon_sym_LBRACE, + STATE(941), 1, + sym_curly_group_text_list, + STATE(1733), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2333] = 5, - ACTIONS(652), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - ACTIONS(5497), 1, + ACTIONS(5557), 1, anon_sym_LBRACK, - STATE(920), 1, + STATE(878), 1, sym_curly_group, - STATE(1658), 1, + STATE(1663), 1, sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2350] = 5, - ACTIONS(5491), 1, - anon_sym_LBRACK, - ACTIONS(5563), 1, + ACTIONS(223), 1, anon_sym_LBRACE, - STATE(945), 1, - sym_curly_group_text, - STATE(1971), 1, - sym_brack_group_key_value, + ACTIONS(4979), 1, + anon_sym_LBRACK, + STATE(1233), 1, + sym_curly_group, + STATE(1974), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2367] = 5, - ACTIONS(5491), 1, - anon_sym_LBRACK, - ACTIONS(5563), 1, + ACTIONS(5513), 1, anon_sym_LBRACE, - STATE(944), 1, - sym_curly_group_text, - STATE(1965), 1, - sym_brack_group_key_value, + ACTIONS(5557), 1, + anon_sym_LBRACK, + STATE(1529), 1, + sym_curly_group, + STATE(1710), 1, + sym_brack_group_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2384] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5563), 1, + ACTIONS(5623), 1, anon_sym_LBRACE, - STATE(670), 1, + STATE(937), 1, sym_curly_group_text, - STATE(1961), 1, + STATE(1954), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2401] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5565), 1, + ACTIONS(5623), 1, anon_sym_LBRACE, - STATE(1537), 1, - sym_curly_group_path_list, - STATE(2003), 1, + STATE(936), 1, + sym_curly_group_text, + STATE(1933), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2418] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5567), 1, + ACTIONS(5623), 1, anon_sym_LBRACE, - STATE(1563), 1, - sym_curly_group_path, - STATE(2004), 1, + STATE(669), 1, + sym_curly_group_text, + STATE(1930), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2435] = 5, - ACTIONS(5377), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5447), 1, + ACTIONS(5625), 1, anon_sym_LBRACE, - STATE(1557), 1, - sym_curly_group, - STATE(2056), 1, + STATE(1547), 1, + sym_curly_group_text_list, + STATE(2053), 1, sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2452] = 5, - ACTIONS(5377), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(5561), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(923), 1, + STATE(1854), 1, + sym_brack_group_text, + STATE(1960), 1, sym_curly_group_text_list, - STATE(1886), 1, - sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2469] = 5, - ACTIONS(4589), 1, + ACTIONS(4693), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(1847), 1, + STATE(1856), 1, sym_brack_group_text, - STATE(1936), 1, + STATE(2005), 1, sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2486] = 5, - ACTIONS(4589), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5515), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(1849), 1, - sym_brack_group_text, - STATE(1947), 1, - sym_curly_group_text_list, + STATE(1497), 1, + sym_curly_group_text, + STATE(2033), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2503] = 5, - ACTIONS(5447), 1, - anon_sym_LBRACE, - ACTIONS(5497), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - STATE(1522), 1, - sym_curly_group, - STATE(1712), 1, - sym_brack_group_argc, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(1530), 1, + sym_curly_group_text, + STATE(2032), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2520] = 5, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5569), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(1540), 1, - sym_curly_group_text_list, - STATE(2040), 1, - sym_brack_group, + STATE(1550), 1, + sym_curly_group_text, + STATE(2031), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2537] = 5, - ACTIONS(5491), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5571), 1, + ACTIONS(5625), 1, anon_sym_LBRACE, - STATE(1507), 1, - sym_curly_group_glob_pattern, - STATE(2005), 1, - sym_brack_group_key_value, + STATE(1525), 1, + sym_curly_group_text_list, + STATE(1719), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2554] = 5, - ACTIONS(5491), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5573), 1, + ACTIONS(5513), 1, anon_sym_LBRACE, - STATE(1490), 1, - sym_curly_group_text, - STATE(2020), 1, - sym_brack_group_key_value, + STATE(1524), 1, + sym_curly_group, + STATE(2023), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2571] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5573), 1, + ACTIONS(5629), 1, anon_sym_LBRACE, - STATE(1521), 1, - sym_curly_group_text, - STATE(2019), 1, + STATE(1522), 1, + sym_curly_group_path, + STATE(2021), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2588] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5573), 1, + ACTIONS(5629), 1, anon_sym_LBRACE, - STATE(1520), 1, - sym_curly_group_text, - STATE(2018), 1, + STATE(1521), 1, + sym_curly_group_path, + STATE(2020), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2605] = 5, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5569), 1, + ACTIONS(5629), 1, anon_sym_LBRACE, - STATE(1516), 1, - sym_curly_group_text_list, - STATE(1717), 1, - sym_brack_group, + STATE(1519), 1, + sym_curly_group_path, + STATE(2019), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2622] = 5, - ACTIONS(5377), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5447), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, STATE(1515), 1, - sym_curly_group, - STATE(2010), 1, - sym_brack_group, + sym_curly_group_glob_pattern, + STATE(2018), 1, + sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2639] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5567), 1, + ACTIONS(5629), 1, anon_sym_LBRACE, - STATE(1513), 1, + STATE(1551), 1, sym_curly_group_path, - STATE(2008), 1, + STATE(2017), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2656] = 5, - ACTIONS(5491), 1, + ACTIONS(5549), 1, anon_sym_LBRACK, - ACTIONS(5567), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, - STATE(1512), 1, - sym_curly_group_path, - STATE(2007), 1, + STATE(1545), 1, + sym_curly_group_path_list, + STATE(2016), 1, sym_brack_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2673] = 5, - ACTIONS(5491), 1, + ACTIONS(4979), 1, anon_sym_LBRACK, - ACTIONS(5567), 1, + ACTIONS(5621), 1, anon_sym_LBRACE, - STATE(1511), 1, - sym_curly_group_path, - STATE(2006), 1, - sym_brack_group_key_value, + STATE(881), 1, + sym_curly_group_text_list, + STATE(1877), 1, + sym_brack_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2690] = 4, - ACTIONS(5575), 1, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5577), 1, + ACTIONS(5637), 1, anon_sym_RBRACE, - STATE(1773), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(1738), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2704] = 4, - ACTIONS(5579), 1, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5581), 1, + ACTIONS(5641), 1, anon_sym_RBRACE, - STATE(1742), 1, + STATE(1760), 1, aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2718] = 4, - ACTIONS(5575), 1, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5583), 1, + ACTIONS(5645), 1, anon_sym_RBRACE, - STATE(1755), 1, + STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2732] = 4, - ACTIONS(5579), 1, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5585), 1, + ACTIONS(5647), 1, anon_sym_RBRACE, - STATE(1742), 1, + STATE(1739), 1, aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [2746] = 4, - ACTIONS(5579), 1, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5587), 1, + ACTIONS(5649), 1, anon_sym_RBRACE, - STATE(1742), 1, - aux_sym_curly_group_path_list_repeat1, + STATE(1792), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2760] = 3, - ACTIONS(5591), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(5465), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(5589), 2, - anon_sym_LBRACE, + [2760] = 4, + ACTIONS(5651), 1, + anon_sym_COMMA, + ACTIONS(5654), 1, anon_sym_RBRACE, - [2772] = 3, - ACTIONS(5595), 1, - anon_sym_EQ, + STATE(1739), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5593), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [2784] = 4, - ACTIONS(5597), 1, + [2774] = 4, + ACTIONS(5656), 1, + anon_sym_RBRACK, + ACTIONS(5658), 1, anon_sym_COMMA, - ACTIONS(5599), 1, - anon_sym_RBRACE, - STATE(1784), 1, + STATE(1740), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2798] = 4, - ACTIONS(5597), 1, + [2788] = 4, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5601), 1, + ACTIONS(5661), 1, anon_sym_RBRACE, - STATE(1734), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(1745), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2812] = 4, - ACTIONS(5575), 1, + [2802] = 4, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5603), 1, + ACTIONS(5663), 1, anon_sym_RBRACE, - STATE(1762), 1, + STATE(1746), 1, aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2826] = 4, - ACTIONS(5579), 1, + [2816] = 4, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5605), 1, + ACTIONS(5665), 1, anon_sym_RBRACE, - STATE(1742), 1, - aux_sym_curly_group_path_list_repeat1, + STATE(1736), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2840] = 4, - ACTIONS(5597), 1, + [2830] = 4, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5607), 1, + ACTIONS(5667), 1, anon_sym_RBRACE, - STATE(1741), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(1737), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2854] = 4, - ACTIONS(5575), 1, + [2844] = 4, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5609), 1, + ACTIONS(5669), 1, anon_sym_RBRACE, - STATE(1736), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(1739), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2868] = 4, - ACTIONS(5579), 1, + [2858] = 4, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5611), 1, + ACTIONS(5671), 1, anon_sym_RBRACE, - STATE(1737), 1, - aux_sym_curly_group_path_list_repeat1, + STATE(1747), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2882] = 4, - ACTIONS(5597), 1, + [2872] = 4, + ACTIONS(5673), 1, anon_sym_COMMA, - ACTIONS(5613), 1, + ACTIONS(5676), 1, anon_sym_RBRACE, - STATE(1784), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(1747), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2896] = 4, - ACTIONS(5615), 1, + [2886] = 4, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5618), 1, + ACTIONS(5678), 1, anon_sym_RBRACE, - STATE(1742), 1, - aux_sym_curly_group_path_list_repeat1, + STATE(1749), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2910] = 4, - ACTIONS(5597), 1, + [2900] = 4, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5620), 1, + ACTIONS(5680), 1, anon_sym_RBRACE, - STATE(1784), 1, + STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2924] = 3, - ACTIONS(5622), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - ACTIONS(5593), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - [2936] = 4, - ACTIONS(5597), 1, + [2914] = 4, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5624), 1, + ACTIONS(5682), 1, anon_sym_RBRACE, - STATE(1784), 1, + STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2950] = 4, - ACTIONS(5597), 1, + [2928] = 4, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5626), 1, + ACTIONS(5684), 1, anon_sym_RBRACE, - STATE(1745), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(1747), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2964] = 4, - ACTIONS(5628), 1, - anon_sym_RBRACK, - ACTIONS(5630), 1, + [2942] = 4, + ACTIONS(5635), 1, anon_sym_COMMA, - STATE(1754), 1, + ACTIONS(5686), 1, + anon_sym_RBRACE, + STATE(1750), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2978] = 4, - ACTIONS(5575), 1, + [2956] = 4, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5632), 1, + ACTIONS(5688), 1, anon_sym_RBRACE, - STATE(1762), 1, + STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [2992] = 4, - ACTIONS(5575), 1, + [2970] = 4, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5634), 1, + ACTIONS(5690), 1, anon_sym_RBRACE, - STATE(1748), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(1739), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3006] = 4, - ACTIONS(5579), 1, + [2984] = 2, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + ACTIONS(5692), 3, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(5636), 1, anon_sym_RBRACE, - STATE(1731), 1, + [2994] = 4, + ACTIONS(5639), 1, + anon_sym_COMMA, + ACTIONS(5694), 1, + anon_sym_RBRACE, + STATE(1782), 1, aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3020] = 4, - ACTIONS(5579), 1, + [3008] = 4, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5638), 1, + ACTIONS(5696), 1, anon_sym_RBRACE, - STATE(1785), 1, - aux_sym_curly_group_path_list_repeat1, + STATE(1761), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3034] = 4, - ACTIONS(5575), 1, + [3022] = 4, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5640), 1, + ACTIONS(5698), 1, anon_sym_RBRACE, - STATE(1758), 1, + STATE(1753), 1, aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3048] = 4, - ACTIONS(5579), 1, + [3036] = 4, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5642), 1, + ACTIONS(5700), 1, anon_sym_RBRACE, - STATE(1772), 1, + STATE(1754), 1, aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3062] = 4, - ACTIONS(5630), 1, + [3050] = 4, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5644), 1, - anon_sym_RBRACK, - STATE(1769), 1, - aux_sym_curly_group_key_value_repeat1, + ACTIONS(5702), 1, + anon_sym_RBRACE, + STATE(1739), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3076] = 4, - ACTIONS(5575), 1, + [3064] = 4, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5646), 1, + ACTIONS(5704), 1, anon_sym_RBRACE, - STATE(1762), 1, + STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, + [3078] = 3, + ACTIONS(5708), 1, + aux_sym__glob_pattern_fragment_token1, + ACTIONS(5525), 2, + sym__whitespace, + sym_line_comment, + ACTIONS(5706), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, [3090] = 4, - ACTIONS(5579), 1, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5648), 1, + ACTIONS(5710), 1, anon_sym_RBRACE, - STATE(1730), 1, - aux_sym_curly_group_path_list_repeat1, + STATE(1769), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3104] = 4, - ACTIONS(5597), 1, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5650), 1, + ACTIONS(5712), 1, anon_sym_RBRACE, - STATE(1784), 1, + STATE(1770), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3118] = 4, - ACTIONS(5575), 1, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5652), 1, + ACTIONS(5714), 1, anon_sym_RBRACE, - STATE(1762), 1, + STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3132] = 4, - ACTIONS(5597), 1, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5654), 1, + ACTIONS(5716), 1, anon_sym_RBRACE, - STATE(1761), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(1739), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3146] = 4, - ACTIONS(5579), 1, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5656), 1, + ACTIONS(5718), 1, anon_sym_RBRACE, - STATE(1728), 1, - aux_sym_curly_group_path_list_repeat1, + STATE(1783), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3160] = 4, - ACTIONS(5597), 1, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5658), 1, + ACTIONS(5720), 1, anon_sym_RBRACE, - STATE(1784), 1, + STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3174] = 4, - ACTIONS(5660), 1, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5663), 1, + ACTIONS(5722), 1, anon_sym_RBRACE, - STATE(1762), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(1792), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3188] = 4, - ACTIONS(5597), 1, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5665), 1, + ACTIONS(5724), 1, anon_sym_RBRACE, - STATE(1757), 1, + STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3202] = 4, - ACTIONS(5575), 1, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5667), 1, + ACTIONS(5726), 1, anon_sym_RBRACE, - STATE(1762), 1, + STATE(1765), 1, aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3216] = 4, - ACTIONS(5579), 1, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5669), 1, + ACTIONS(5728), 1, anon_sym_RBRACE, - STATE(1742), 1, + STATE(1766), 1, aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3230] = 3, - ACTIONS(5673), 1, - aux_sym__glob_pattern_fragment_token1, - ACTIONS(5465), 2, + [3230] = 2, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5671), 2, - anon_sym_LBRACE, - anon_sym_RBRACE, - [3242] = 4, - ACTIONS(5575), 1, + ACTIONS(5730), 3, + anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(5675), 1, anon_sym_RBRACE, - STATE(1764), 1, - aux_sym_curly_group_text_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3256] = 4, - ACTIONS(5579), 1, + [3240] = 4, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5677), 1, + ACTIONS(5732), 1, anon_sym_RBRACE, - STATE(1765), 1, + STATE(1776), 1, aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3270] = 4, - ACTIONS(5679), 1, - anon_sym_RBRACK, - ACTIONS(5681), 1, + [3254] = 4, + ACTIONS(5643), 1, anon_sym_COMMA, - STATE(1769), 1, - aux_sym_curly_group_key_value_repeat1, + ACTIONS(5734), 1, + anon_sym_RBRACE, + STATE(1777), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3284] = 4, - ACTIONS(5579), 1, + [3268] = 4, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5684), 1, + ACTIONS(5736), 1, anon_sym_RBRACE, - STATE(1774), 1, + STATE(1739), 1, aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3298] = 4, - ACTIONS(5575), 1, + [3282] = 4, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5686), 1, + ACTIONS(5738), 1, anon_sym_RBRACE, - STATE(1775), 1, + STATE(1747), 1, aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3312] = 4, - ACTIONS(5579), 1, - anon_sym_COMMA, - ACTIONS(5688), 1, - anon_sym_RBRACE, - STATE(1742), 1, - aux_sym_curly_group_path_list_repeat1, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [3326] = 4, - ACTIONS(5575), 1, + [3296] = 4, + ACTIONS(5740), 1, + anon_sym_RBRACK, + ACTIONS(5742), 1, anon_sym_COMMA, - ACTIONS(5690), 1, - anon_sym_RBRACE, - STATE(1762), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(1740), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3340] = 4, - ACTIONS(5579), 1, + [3310] = 4, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5692), 1, + ACTIONS(5744), 1, anon_sym_RBRACE, - STATE(1742), 1, - aux_sym_curly_group_path_list_repeat1, + STATE(1780), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3354] = 4, - ACTIONS(5575), 1, + [3324] = 4, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5694), 1, + ACTIONS(5746), 1, anon_sym_RBRACE, - STATE(1762), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(1792), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3368] = 2, + [3338] = 3, + ACTIONS(5750), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5696), 3, + ACTIONS(5748), 2, anon_sym_RBRACK, anon_sym_COMMA, + [3350] = 4, + ACTIONS(5639), 1, + anon_sym_COMMA, + ACTIONS(5752), 1, anon_sym_RBRACE, - [3378] = 4, - ACTIONS(5597), 1, + STATE(1739), 1, + aux_sym_curly_group_path_list_repeat1, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [3364] = 4, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5698), 1, + ACTIONS(5754), 1, anon_sym_RBRACE, - STATE(1782), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(1747), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3392] = 4, - ACTIONS(5597), 1, + [3378] = 4, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5700), 1, + ACTIONS(5756), 1, anon_sym_RBRACE, - STATE(1779), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(1789), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3406] = 4, - ACTIONS(5597), 1, + [3392] = 4, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5702), 1, + ACTIONS(5758), 1, anon_sym_RBRACE, - STATE(1784), 1, + STATE(1768), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3420] = 2, + [3406] = 3, + ACTIONS(5760), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5704), 3, - anon_sym_RBRACK, + ACTIONS(5748), 2, anon_sym_COMMA, anon_sym_RBRACE, - [3430] = 4, - ACTIONS(5575), 1, + [3418] = 4, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5706), 1, + ACTIONS(5762), 1, anon_sym_RBRACE, - STATE(1783), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(1793), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3444] = 4, - ACTIONS(5597), 1, + [3432] = 4, + ACTIONS(5643), 1, anon_sym_COMMA, - ACTIONS(5708), 1, + ACTIONS(5764), 1, anon_sym_RBRACE, - STATE(1784), 1, - aux_sym_curly_group_key_value_repeat1, + STATE(1751), 1, + aux_sym_curly_group_text_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3458] = 4, - ACTIONS(5575), 1, + [3446] = 4, + ACTIONS(5639), 1, anon_sym_COMMA, - ACTIONS(5710), 1, + ACTIONS(5766), 1, anon_sym_RBRACE, - STATE(1762), 1, - aux_sym_curly_group_text_list_repeat1, + STATE(1739), 1, + aux_sym_curly_group_path_list_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [3472] = 4, - ACTIONS(5679), 1, + [3460] = 3, + ACTIONS(5770), 1, + aux_sym__glob_pattern_fragment_token1, + ACTIONS(5525), 2, + sym__whitespace, + sym_line_comment, + ACTIONS(5768), 2, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(5712), 1, + [3472] = 4, + ACTIONS(5742), 1, anon_sym_COMMA, - STATE(1784), 1, + ACTIONS(5772), 1, + anon_sym_RBRACK, + STATE(1778), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3486] = 4, - ACTIONS(5579), 1, - anon_sym_COMMA, - ACTIONS(5715), 1, + ACTIONS(5656), 1, anon_sym_RBRACE, - STATE(1742), 1, - aux_sym_curly_group_path_list_repeat1, + ACTIONS(5774), 1, + anon_sym_COMMA, + STATE(1792), 1, + aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3500] = 4, - ACTIONS(5597), 1, + ACTIONS(5635), 1, anon_sym_COMMA, - ACTIONS(5717), 1, + ACTIONS(5777), 1, anon_sym_RBRACE, - STATE(1743), 1, + STATE(1792), 1, aux_sym_curly_group_key_value_repeat1, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3514] = 3, - ACTIONS(5719), 1, + ACTIONS(5579), 1, anon_sym_LBRACE, - STATE(1531), 1, - sym_curly_group_impl, + STATE(664), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3525] = 3, - ACTIONS(5721), 1, + ACTIONS(5513), 1, anon_sym_LBRACE, - STATE(1070), 1, - sym_curly_group_impl, + STATE(1571), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3536] = 3, - ACTIONS(5723), 1, - anon_sym_minted, - STATE(2443), 1, - sym__trivia_text_minted, + ACTIONS(5779), 1, + anon_sym_LBRACE, + STATE(842), 1, + sym__trivia_curly_group_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3547] = 3, - ACTIONS(652), 1, + ACTIONS(5781), 1, anon_sym_LBRACE, - STATE(848), 1, - sym_curly_group, + STATE(843), 1, + sym__trivia_curly_group_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3558] = 3, - ACTIONS(5495), 1, + ACTIONS(5783), 1, anon_sym_LBRACE, - STATE(898), 1, - sym_curly_group_path, + STATE(844), 1, + sym__trivia_curly_group_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3569] = 3, - ACTIONS(5725), 1, - anon_sym_BSLASHend, - STATE(673), 1, - sym__trivia_end_minted, + ACTIONS(5785), 1, + anon_sym_LBRACE, + STATE(845), 1, + sym__trivia_curly_group_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3580] = 3, - ACTIONS(5495), 1, + ACTIONS(5787), 1, anon_sym_LBRACE, - STATE(900), 1, - sym_curly_group_path, + STATE(846), 1, + sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3591] = 3, - ACTIONS(5727), 1, - anon_sym_BSLASHend, - STATE(749), 1, - sym__trivia_end_listing, + ACTIONS(559), 1, + anon_sym_LBRACE, + STATE(849), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3602] = 3, - ACTIONS(5729), 1, - anon_sym_BSLASHend, - STATE(788), 1, - sym__trivia_end_verbatim, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2163), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3613] = 3, - ACTIONS(652), 1, + ACTIONS(5789), 1, anon_sym_LBRACE, - STATE(838), 1, - sym_curly_group, + STATE(851), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3624] = 3, - ACTIONS(5495), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - STATE(904), 1, - sym_curly_group_path, + STATE(853), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3635] = 3, - ACTIONS(652), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - STATE(846), 1, + STATE(855), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3646] = 3, - ACTIONS(5563), 1, + ACTIONS(5623), 1, anon_sym_LBRACE, - STATE(845), 1, + STATE(856), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3657] = 3, - ACTIONS(5525), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - STATE(907), 1, - sym_curly_group_text, + STATE(857), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3668] = 3, - ACTIONS(5523), 1, - anon_sym_LBRACE, - STATE(908), 1, - sym_curly_group_text_list, + ACTIONS(5791), 1, + anon_sym_minted, + STATE(2459), 1, + sym__trivia_text_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3679] = 3, - ACTIONS(652), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - STATE(844), 1, + STATE(859), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3690] = 3, - ACTIONS(652), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(842), 1, - sym_curly_group, + STATE(2246), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3701] = 3, - ACTIONS(5731), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(840), 1, - sym_curly_group_impl, + STATE(2247), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3712] = 3, - ACTIONS(5525), 1, + ACTIONS(5605), 1, anon_sym_LBRACE, - STATE(913), 1, + STATE(483), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3723] = 3, - ACTIONS(5509), 1, + ACTIONS(5605), 1, anon_sym_LBRACE, - STATE(914), 1, - sym_curly_group_path_list, + STATE(730), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3734] = 3, - ACTIONS(5545), 1, + ACTIONS(5561), 1, anon_sym_LBRACE, - STATE(742), 1, - sym_curly_group_text, + STATE(902), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3745] = 3, - ACTIONS(5515), 1, + ACTIONS(5561), 1, anon_sym_LBRACE, - STATE(2139), 1, - sym_curly_group_text_list, + STATE(904), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3756] = 3, - ACTIONS(45), 1, + ACTIONS(5561), 1, anon_sym_LBRACE, - STATE(2144), 1, - sym_curly_group, + STATE(908), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3767] = 3, - ACTIONS(5489), 1, + ACTIONS(5563), 1, anon_sym_LBRACE, - STATE(2230), 1, + STATE(911), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3778] = 3, - ACTIONS(5489), 1, + ACTIONS(5555), 1, anon_sym_LBRACE, - STATE(2231), 1, - sym_curly_group_text, + STATE(912), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3789] = 3, - ACTIONS(5545), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(450), 1, - sym_curly_group_text, + STATE(1865), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3800] = 3, - ACTIONS(5733), 1, - anon_sym_RBRACE, - ACTIONS(5735), 1, - sym_path, - ACTIONS(5465), 2, + ACTIONS(5563), 1, + anon_sym_LBRACE, + STATE(917), 1, + sym_curly_group_text, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3811] = 3, - ACTIONS(5509), 1, + ACTIONS(5583), 1, anon_sym_LBRACE, - STATE(972), 1, + STATE(918), 1, sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3822] = 3, - ACTIONS(5495), 1, + ACTIONS(683), 1, anon_sym_LBRACE, - STATE(973), 1, - sym_curly_group_path, + STATE(919), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3833] = 3, - ACTIONS(5501), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(974), 1, - sym_curly_group_glob_pattern, + STATE(2234), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3844] = 3, - ACTIONS(5495), 1, + ACTIONS(5605), 1, anon_sym_LBRACE, - STATE(975), 1, - sym_curly_group_path, + STATE(729), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3855] = 3, - ACTIONS(5495), 1, + ACTIONS(5793), 1, anon_sym_LBRACE, - STATE(976), 1, - sym_curly_group_path, + STATE(727), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3866] = 3, - ACTIONS(5495), 1, - anon_sym_LBRACE, - STATE(977), 1, - sym_curly_group_path, + ACTIONS(5795), 1, + sym_command_name, + ACTIONS(5797), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3877] = 3, - ACTIONS(5495), 1, - anon_sym_LBRACE, - STATE(978), 1, - sym_curly_group_path, - ACTIONS(3), 2, + ACTIONS(5799), 1, + anon_sym_RBRACE, + ACTIONS(5801), 1, + sym_path, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, [3888] = 3, - ACTIONS(794), 1, + ACTIONS(5583), 1, anon_sym_LBRACE, - STATE(979), 1, - sym_curly_group, + STATE(977), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3899] = 3, - ACTIONS(5737), 1, - anon_sym_BSLASHend, - STATE(752), 1, - sym__trivia_end_pycode, + ACTIONS(5561), 1, + anon_sym_LBRACE, + STATE(978), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3910] = 3, - ACTIONS(5563), 1, + ACTIONS(5565), 1, anon_sym_LBRACE, - STATE(849), 1, - sym_curly_group_text, + STATE(979), 1, + sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3921] = 3, - ACTIONS(5525), 1, + ACTIONS(5561), 1, anon_sym_LBRACE, - STATE(982), 1, - sym_curly_group_text, + STATE(980), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3932] = 3, - ACTIONS(794), 1, + ACTIONS(5561), 1, anon_sym_LBRACE, - STATE(983), 1, - sym_curly_group, + STATE(981), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3943] = 3, - ACTIONS(5739), 1, + ACTIONS(5561), 1, anon_sym_LBRACE, - STATE(835), 1, - sym__trivia_curly_group_pycode, + STATE(982), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3954] = 3, - ACTIONS(5741), 1, - sym_command_name, - ACTIONS(5743), 1, - anon_sym_EQ, + ACTIONS(5561), 1, + anon_sym_LBRACE, + STATE(983), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3965] = 3, - ACTIONS(5745), 1, + ACTIONS(683), 1, anon_sym_LBRACE, - STATE(986), 1, - sym_curly_group_key_value, + STATE(984), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3976] = 3, - ACTIONS(5525), 1, + ACTIONS(5563), 1, anon_sym_LBRACE, STATE(987), 1, sym_curly_group_text, @@ -455988,2509 +460230,2509 @@ static const uint16_t ts_small_parse_table[] = { sym__whitespace, sym_line_comment, [3987] = 3, - ACTIONS(5525), 1, + ACTIONS(683), 1, anon_sym_LBRACE, STATE(988), 1, - sym_curly_group_text, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [3998] = 3, - ACTIONS(5525), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(665), 1, - sym_curly_group_text, + STATE(1897), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4009] = 3, - ACTIONS(5525), 1, - anon_sym_LBRACE, - STATE(1020), 1, - sym_curly_group_text, + ACTIONS(5803), 1, + sym_command_name, + ACTIONS(5805), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4020] = 3, - ACTIONS(5747), 1, + ACTIONS(5807), 1, anon_sym_LBRACE, - STATE(834), 1, - sym__trivia_curly_group_minted, + STATE(991), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4031] = 3, - ACTIONS(5749), 1, - anon_sym_BSLASHend, - STATE(1022), 1, - sym__trivia_end_comment, + ACTIONS(5563), 1, + anon_sym_LBRACE, + STATE(992), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4042] = 3, - ACTIONS(5751), 1, - anon_sym_BSLASHend, - STATE(1023), 1, - sym__trivia_end_verbatim, + ACTIONS(5563), 1, + anon_sym_LBRACE, + STATE(993), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4053] = 3, - ACTIONS(5753), 1, - anon_sym_BSLASHend, - STATE(1024), 1, - sym__trivia_end_listing, + ACTIONS(5563), 1, + anon_sym_LBRACE, + STATE(668), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4064] = 3, - ACTIONS(5755), 1, - anon_sym_BSLASHend, + ACTIONS(5563), 1, + anon_sym_LBRACE, STATE(1025), 1, - sym__trivia_end_minted, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4075] = 3, - ACTIONS(5757), 1, - anon_sym_BSLASHend, - STATE(1026), 1, - sym__trivia_end_pycode, + ACTIONS(559), 1, + anon_sym_LBRACE, + STATE(840), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4086] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(2208), 1, - sym_curly_group_text, + ACTIONS(5809), 1, + anon_sym_BSLASHend, + STATE(1027), 1, + sym__trivia_end_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4097] = 3, - ACTIONS(5759), 1, - anon_sym_LBRACE, - STATE(1213), 1, - sym__trivia_curly_group_listing, + ACTIONS(5811), 1, + anon_sym_BSLASHend, + STATE(1028), 1, + sym__trivia_end_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4108] = 3, - ACTIONS(5761), 1, - anon_sym_LBRACE, - STATE(850), 1, - sym__trivia_curly_group_verbatim, + ACTIONS(5813), 1, + anon_sym_BSLASHend, + STATE(1029), 1, + sym__trivia_end_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4119] = 3, - ACTIONS(5523), 1, - anon_sym_LBRACE, - STATE(1039), 1, - sym_curly_group_text_list, + ACTIONS(5815), 1, + anon_sym_BSLASHend, + STATE(1030), 1, + sym__trivia_end_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4130] = 3, - ACTIONS(5515), 1, - anon_sym_LBRACE, - STATE(1883), 1, - sym_curly_group_text_list, + ACTIONS(5817), 1, + anon_sym_BSLASHend, + STATE(1031), 1, + sym__trivia_end_pycode, ACTIONS(3), 2, sym__whitespace, - sym_line_comment, - [4141] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(784), 1, - sym_curly_group, + sym_line_comment, + [4141] = 2, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4152] = 3, - ACTIONS(5515), 1, + ACTIONS(5819), 2, + anon_sym_LBRACK, anon_sym_LBRACE, - STATE(1897), 1, + [4150] = 3, + ACTIONS(5587), 1, + anon_sym_LBRACE, + STATE(1948), 1, sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4163] = 2, + [4161] = 2, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5763), 2, - anon_sym_LBRACK, - anon_sym_LBRACE, - [4172] = 3, - ACTIONS(5515), 1, + ACTIONS(5821), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [4170] = 3, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(1935), 1, + STATE(1956), 1, sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4183] = 2, + [4181] = 2, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5765), 2, + ACTIONS(5823), 2, anon_sym_COMMA, anon_sym_RBRACE, - [4192] = 3, - ACTIONS(5515), 1, + [4190] = 3, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(1944), 1, + STATE(2004), 1, sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [4203] = 2, + [4201] = 3, + ACTIONS(5587), 1, + anon_sym_LBRACE, + STATE(2014), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5767), 2, - anon_sym_COMMA, - anon_sym_RBRACE, [4212] = 3, - ACTIONS(5769), 1, - anon_sym_LBRACE, - STATE(851), 1, - sym__trivia_curly_group_comment, + ACTIONS(5825), 1, + anon_sym_pycode, + STATE(2387), 1, + sym__trivia_text_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4223] = 3, - ACTIONS(5515), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - STATE(1997), 1, - sym_curly_group_text_list, + STATE(838), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4234] = 3, - ACTIONS(5515), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(2029), 1, + STATE(2045), 1, sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4245] = 3, - ACTIONS(5771), 1, - anon_sym_pycode, - STATE(2364), 1, - sym__trivia_text_pycode, + ACTIONS(5791), 1, + anon_sym_minted, + STATE(2392), 1, + sym__trivia_text_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4256] = 3, - ACTIONS(45), 1, + ACTIONS(5789), 1, anon_sym_LBRACE, - STATE(2288), 1, - sym_curly_group, + STATE(836), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4267] = 3, - ACTIONS(5773), 1, + ACTIONS(5555), 1, anon_sym_LBRACE, - STATE(1043), 1, - sym_curly_group_impl, + STATE(1044), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4278] = 3, - ACTIONS(5545), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(738), 1, - sym_curly_group_text, + STATE(2158), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4289] = 3, - ACTIONS(794), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1045), 1, + STATE(2051), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4300] = 3, - ACTIONS(794), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1047), 1, + STATE(723), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4311] = 3, - ACTIONS(5525), 1, + ACTIONS(5827), 1, anon_sym_LBRACE, - STATE(1049), 1, - sym_curly_group_text, + STATE(1048), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4322] = 3, - ACTIONS(5775), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1050), 1, - sym__trivia_curly_group_comment, + STATE(2055), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4333] = 3, - ACTIONS(5777), 1, + ACTIONS(683), 1, anon_sym_LBRACE, - STATE(1051), 1, - sym__trivia_curly_group_verbatim, + STATE(1050), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4344] = 3, - ACTIONS(5779), 1, + ACTIONS(683), 1, anon_sym_LBRACE, STATE(1052), 1, - sym__trivia_curly_group_listing, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4355] = 3, - ACTIONS(5781), 1, + ACTIONS(5563), 1, anon_sym_LBRACE, - STATE(1053), 1, - sym__trivia_curly_group_minted, + STATE(1054), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4366] = 3, - ACTIONS(5783), 1, + ACTIONS(5829), 1, anon_sym_LBRACE, - STATE(1054), 1, - sym__trivia_curly_group_pycode, + STATE(1055), 1, + sym__trivia_curly_group_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4377] = 3, - ACTIONS(5563), 1, + ACTIONS(5831), 1, anon_sym_LBRACE, - STATE(852), 1, - sym_curly_group_text, + STATE(1056), 1, + sym__trivia_curly_group_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4388] = 3, - ACTIONS(652), 1, + ACTIONS(5833), 1, anon_sym_LBRACE, - STATE(853), 1, - sym_curly_group, + STATE(1057), 1, + sym__trivia_curly_group_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4399] = 3, - ACTIONS(794), 1, + ACTIONS(5835), 1, anon_sym_LBRACE, - STATE(1057), 1, - sym_curly_group, + STATE(1058), 1, + sym__trivia_curly_group_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4410] = 3, - ACTIONS(5785), 1, + ACTIONS(5837), 1, anon_sym_LBRACE, - STATE(737), 1, - sym_curly_group_key_value, + STATE(1059), 1, + sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4421] = 3, - ACTIONS(5773), 1, + ACTIONS(5621), 1, anon_sym_LBRACE, - STATE(1059), 1, - sym_curly_group_impl, + STATE(832), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4432] = 3, - ACTIONS(652), 1, + ACTIONS(5605), 1, anon_sym_LBRACE, - STATE(855), 1, - sym_curly_group, + STATE(736), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4443] = 3, - ACTIONS(794), 1, + ACTIONS(683), 1, anon_sym_LBRACE, - STATE(1061), 1, + STATE(1062), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4454] = 3, - ACTIONS(794), 1, + ACTIONS(5605), 1, anon_sym_LBRACE, - STATE(1063), 1, - sym_curly_group, + STATE(748), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4465] = 3, - ACTIONS(5525), 1, + ACTIONS(5827), 1, anon_sym_LBRACE, STATE(1064), 1, - sym_curly_group_text, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4476] = 3, - ACTIONS(794), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1065), 1, - sym_curly_group, + STATE(2056), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4487] = 3, - ACTIONS(5723), 1, - anon_sym_minted, - STATE(2458), 1, - sym__trivia_text_minted, + ACTIONS(683), 1, + anon_sym_LBRACE, + STATE(1066), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4498] = 3, - ACTIONS(5515), 1, + ACTIONS(683), 1, anon_sym_LBRACE, - STATE(2036), 1, - sym_curly_group_text_list, + STATE(1068), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4509] = 3, - ACTIONS(794), 1, + ACTIONS(5563), 1, anon_sym_LBRACE, - STATE(1067), 1, - sym_curly_group, + STATE(1069), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4520] = 3, - ACTIONS(5787), 1, + ACTIONS(683), 1, anon_sym_LBRACE, - STATE(2388), 1, - sym_curly_group_text, + STATE(1070), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4531] = 3, - ACTIONS(5789), 1, - sym_command_name, ACTIONS(5791), 1, - anon_sym_EQ, + anon_sym_minted, + STATE(2471), 1, + sym__trivia_text_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4542] = 3, - ACTIONS(5731), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(857), 1, - sym_curly_group_impl, + STATE(2072), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4553] = 3, - ACTIONS(5723), 1, - anon_sym_minted, - STATE(2399), 1, - sym__trivia_text_minted, + ACTIONS(683), 1, + anon_sym_LBRACE, + STATE(1072), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4564] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2042), 1, - sym_curly_group, + ACTIONS(5839), 1, + anon_sym_lstlisting, + STATE(2384), 1, + sym__trivia_text_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4575] = 3, - ACTIONS(45), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2043), 1, - sym_curly_group, + STATE(2250), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4586] = 3, - ACTIONS(5539), 1, - anon_sym_LBRACE, - STATE(1117), 1, - sym_curly_group_path, + ACTIONS(5841), 1, + anon_sym_verbatim, + STATE(2382), 1, + sym__trivia_text_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4597] = 3, - ACTIONS(5561), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(863), 1, - sym_curly_group_text_list, + STATE(718), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4608] = 3, - ACTIONS(5539), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(833), 1, - sym_curly_group_path, + STATE(1700), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4619] = 3, - ACTIONS(5489), 1, + ACTIONS(5623), 1, anon_sym_LBRACE, - STATE(2045), 1, + STATE(880), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4630] = 3, - ACTIONS(5489), 1, + ACTIONS(5599), 1, anon_sym_LBRACE, - STATE(2054), 1, - sym_curly_group_text, + STATE(1122), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4641] = 3, - ACTIONS(5793), 1, - anon_sym_lstlisting, - STATE(2363), 1, - sym__trivia_text_listing, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2138), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4652] = 3, - ACTIONS(5539), 1, + ACTIONS(5599), 1, anon_sym_LBRACE, - STATE(1123), 1, + STATE(1124), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4663] = 3, - ACTIONS(5545), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(672), 1, - sym_curly_group_text, + STATE(2141), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4674] = 3, - ACTIONS(5795), 1, - anon_sym_verbatim, - STATE(2362), 1, - sym__trivia_text_verbatim, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(2142), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4685] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1126), 1, + STATE(2144), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4696] = 3, - ACTIONS(5543), 1, + ACTIONS(5599), 1, anon_sym_LBRACE, - STATE(1127), 1, - sym_curly_group_text_list, + STATE(1128), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4707] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(1681), 1, - sym_curly_group_text, + ACTIONS(5843), 1, + anon_sym_BSLASHend, + STATE(867), 1, + sym__trivia_end_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4718] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2117), 1, - sym_curly_group, + ACTIONS(5845), 1, + anon_sym_BSLASHend, + STATE(868), 1, + sym__trivia_end_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4729] = 3, - ACTIONS(45), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2118), 1, - sym_curly_group, + STATE(1131), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4740] = 3, - ACTIONS(5489), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - STATE(2119), 1, - sym_curly_group_text, + STATE(1132), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4751] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(1132), 1, - sym_curly_group_text, + ACTIONS(5847), 1, + anon_sym_comment, + STATE(2381), 1, + sym__trivia_text_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4762] = 3, - ACTIONS(5537), 1, - anon_sym_LBRACE, - STATE(1133), 1, - sym_curly_group_path_list, + ACTIONS(5849), 1, + anon_sym_BSLASHend, + STATE(869), 1, + sym__trivia_end_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4773] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(732), 1, - sym_curly_group, + ACTIONS(5851), 1, + anon_sym_BSLASHend, + STATE(870), 1, + sym__trivia_end_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4784] = 3, - ACTIONS(5545), 1, - anon_sym_LBRACE, - STATE(727), 1, - sym_curly_group_text, + ACTIONS(5853), 1, + anon_sym_BSLASHend, + STATE(871), 1, + sym__trivia_end_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4795] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2122), 1, + STATE(1137), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4806] = 3, - ACTIONS(5797), 1, - anon_sym_comment, - STATE(2361), 1, - sym__trivia_text_comment, + ACTIONS(5597), 1, + anon_sym_LBRACE, + STATE(1138), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4817] = 3, - ACTIONS(45), 1, + ACTIONS(223), 1, anon_sym_LBRACE, - STATE(2035), 1, + STATE(1139), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4828] = 3, - ACTIONS(45), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(722), 1, - sym_curly_group, + STATE(717), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4839] = 3, - ACTIONS(5799), 1, - anon_sym_RBRACE, - ACTIONS(5801), 1, - sym_path, - ACTIONS(5465), 2, + ACTIONS(5577), 1, + anon_sym_LBRACE, + STATE(716), 1, + sym_curly_group_path, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4850] = 3, - ACTIONS(5537), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(1191), 1, - sym_curly_group_path_list, + STATE(713), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4861] = 3, - ACTIONS(5539), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(1192), 1, + STATE(712), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4872] = 3, - ACTIONS(5541), 1, + ACTIONS(5581), 1, anon_sym_LBRACE, - STATE(1193), 1, + STATE(711), 1, sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4883] = 3, - ACTIONS(5539), 1, - anon_sym_LBRACE, - STATE(1194), 1, - sym_curly_group_path, + ACTIONS(5855), 1, + anon_sym_BSLASHend, + STATE(739), 1, + sym__trivia_end_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4894] = 3, - ACTIONS(5539), 1, - anon_sym_LBRACE, - STATE(1195), 1, - sym_curly_group_path, - ACTIONS(3), 2, + ACTIONS(5857), 1, + anon_sym_RBRACE, + ACTIONS(5859), 1, + sym_path, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, [4905] = 3, - ACTIONS(5539), 1, + ACTIONS(5597), 1, anon_sym_LBRACE, - STATE(1196), 1, - sym_curly_group_path, + STATE(1197), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4916] = 3, - ACTIONS(5539), 1, + ACTIONS(5599), 1, anon_sym_LBRACE, - STATE(1197), 1, + STATE(1198), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4927] = 3, - ACTIONS(255), 1, + ACTIONS(5601), 1, anon_sym_LBRACE, - STATE(1198), 1, - sym_curly_group, + STATE(1199), 1, + sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4938] = 3, - ACTIONS(5803), 1, - anon_sym_BSLASHend, - STATE(877), 1, - sym__trivia_end_pycode, + ACTIONS(5599), 1, + anon_sym_LBRACE, + STATE(1200), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4949] = 3, - ACTIONS(5805), 1, - anon_sym_BSLASHend, - STATE(878), 1, - sym__trivia_end_minted, + ACTIONS(5599), 1, + anon_sym_LBRACE, + STATE(1201), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4960] = 3, - ACTIONS(5489), 1, + ACTIONS(5599), 1, anon_sym_LBRACE, - STATE(1201), 1, - sym_curly_group_text, + STATE(1202), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4971] = 3, - ACTIONS(255), 1, + ACTIONS(5599), 1, anon_sym_LBRACE, - STATE(1202), 1, - sym_curly_group, + STATE(1203), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4982] = 3, - ACTIONS(5807), 1, - anon_sym_BSLASHend, - STATE(889), 1, - sym__trivia_end_listing, + ACTIONS(223), 1, + anon_sym_LBRACE, + STATE(1204), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [4993] = 3, - ACTIONS(5809), 1, - sym_command_name, - ACTIONS(5811), 1, - anon_sym_EQ, + ACTIONS(5623), 1, + anon_sym_LBRACE, + STATE(860), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5004] = 3, - ACTIONS(5813), 1, + ACTIONS(5623), 1, anon_sym_LBRACE, - STATE(1205), 1, - sym_curly_group_key_value, + STATE(659), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5015] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1206), 1, + STATE(1207), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5026] = 3, - ACTIONS(5489), 1, + ACTIONS(223), 1, anon_sym_LBRACE, - STATE(1207), 1, - sym_curly_group_text, + STATE(1208), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5037] = 3, - ACTIONS(5489), 1, + ACTIONS(5623), 1, anon_sym_LBRACE, - STATE(658), 1, + STATE(874), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5048] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(1239), 1, - sym_curly_group_text, + ACTIONS(5861), 1, + sym_command_name, + ACTIONS(5863), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5059] = 3, - ACTIONS(5519), 1, + ACTIONS(5865), 1, anon_sym_LBRACE, - STATE(721), 1, - sym_curly_group_path, + STATE(1211), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5070] = 3, - ACTIONS(5815), 1, - anon_sym_BSLASHend, - STATE(1241), 1, - sym__trivia_end_comment, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(1212), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5081] = 3, - ACTIONS(5817), 1, - anon_sym_BSLASHend, - STATE(1242), 1, - sym__trivia_end_verbatim, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(1213), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5092] = 3, - ACTIONS(5819), 1, - anon_sym_BSLASHend, - STATE(1243), 1, - sym__trivia_end_listing, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(658), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5103] = 3, - ACTIONS(5821), 1, - anon_sym_BSLASHend, - STATE(1244), 1, - sym__trivia_end_minted, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(1245), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5114] = 3, - ACTIONS(5823), 1, - anon_sym_BSLASHend, - STATE(1245), 1, - sym__trivia_end_pycode, + ACTIONS(5577), 1, + anon_sym_LBRACE, + STATE(710), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5125] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(1622), 1, - sym_curly_group_text, + ACTIONS(5867), 1, + anon_sym_BSLASHend, + STATE(1247), 1, + sym__trivia_end_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5136] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2191), 1, - sym_curly_group, + ACTIONS(5869), 1, + anon_sym_BSLASHend, + STATE(1248), 1, + sym__trivia_end_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5147] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2192), 1, - sym_curly_group, + ACTIONS(5871), 1, + anon_sym_BSLASHend, + STATE(1249), 1, + sym__trivia_end_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5158] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(2195), 1, - sym_curly_group_text, + ACTIONS(5873), 1, + anon_sym_BSLASHend, + STATE(1250), 1, + sym__trivia_end_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5169] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(2196), 1, - sym_curly_group_text, + ACTIONS(5875), 1, + anon_sym_BSLASHend, + STATE(1251), 1, + sym__trivia_end_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5180] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(780), 1, + STATE(2097), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5191] = 3, - ACTIONS(5545), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(781), 1, + STATE(1636), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5202] = 3, - ACTIONS(5519), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(720), 1, - sym_curly_group_path, + STATE(2213), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5213] = 3, - ACTIONS(5825), 1, - anon_sym_BSLASHend, - STATE(891), 1, - sym__trivia_end_verbatim, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2214), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5224] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1588), 1, + STATE(2236), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5235] = 3, - ACTIONS(45), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2263), 1, - sym_curly_group, + STATE(2237), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5246] = 3, - ACTIONS(5827), 1, - anon_sym_BSLASHend, - STATE(895), 1, - sym__trivia_end_comment, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5257] = 3, - ACTIONS(5543), 1, + ACTIONS(5605), 1, anon_sym_LBRACE, - STATE(1258), 1, - sym_curly_group_text_list, + STATE(771), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5268] = 3, - ACTIONS(45), 1, + ACTIONS(5623), 1, anon_sym_LBRACE, - STATE(2264), 1, - sym_curly_group, + STATE(875), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5279] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2265), 1, + STATE(1668), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5290] = 3, - ACTIONS(5519), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(718), 1, - sym_curly_group_path, + STATE(2299), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5301] = 3, - ACTIONS(5829), 1, + ACTIONS(5877), 1, anon_sym_LBRACE, - STATE(1262), 1, - sym_curly_group_impl, + STATE(876), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5312] = 3, - ACTIONS(5519), 1, + ACTIONS(5609), 1, anon_sym_LBRACE, - STATE(717), 1, - sym_curly_group_path, + STATE(1234), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5323] = 3, - ACTIONS(255), 1, - anon_sym_LBRACE, - STATE(1264), 1, - sym_curly_group, + ACTIONS(5879), 1, + sym_command_name, + ACTIONS(5881), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5334] = 3, - ACTIONS(255), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1266), 1, + STATE(2301), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5345] = 3, - ACTIONS(5489), 1, + ACTIONS(5575), 1, anon_sym_LBRACE, - STATE(1268), 1, - sym_curly_group_text, + STATE(709), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5356] = 3, - ACTIONS(5831), 1, + ACTIONS(5883), 1, anon_sym_LBRACE, - STATE(1267), 1, - sym__trivia_curly_group_comment, + STATE(1229), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5367] = 3, - ACTIONS(5833), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - STATE(1253), 1, - sym__trivia_curly_group_verbatim, + STATE(879), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5378] = 3, - ACTIONS(5835), 1, + ACTIONS(223), 1, anon_sym_LBRACE, - STATE(1237), 1, - sym__trivia_curly_group_listing, + STATE(1227), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5389] = 3, - ACTIONS(5837), 1, + ACTIONS(223), 1, anon_sym_LBRACE, - STATE(1236), 1, - sym__trivia_curly_group_minted, + STATE(1224), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5400] = 3, - ACTIONS(5839), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1235), 1, - sym__trivia_curly_group_pycode, + STATE(1222), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5411] = 3, - ACTIONS(558), 1, + ACTIONS(5885), 1, anon_sym_LBRACE, - STATE(1001), 1, - sym_curly_group, + STATE(1221), 1, + sym__trivia_curly_group_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5422] = 3, - ACTIONS(5563), 1, + ACTIONS(5887), 1, anon_sym_LBRACE, - STATE(660), 1, - sym_curly_group_text, + STATE(1220), 1, + sym__trivia_curly_group_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5433] = 3, - ACTIONS(255), 1, + ACTIONS(5889), 1, anon_sym_LBRACE, - STATE(1232), 1, - sym_curly_group, + STATE(1219), 1, + sym__trivia_curly_group_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5444] = 3, - ACTIONS(5521), 1, + ACTIONS(5891), 1, anon_sym_LBRACE, - STATE(716), 1, - sym_curly_group_glob_pattern, + STATE(1218), 1, + sym__trivia_curly_group_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5455] = 3, - ACTIONS(5829), 1, + ACTIONS(5893), 1, anon_sym_LBRACE, - STATE(1230), 1, - sym_curly_group_impl, + STATE(1217), 1, + sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5466] = 3, - ACTIONS(5563), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(916), 1, + STATE(2302), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5477] = 3, - ACTIONS(255), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - STATE(1228), 1, + STATE(893), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5488] = 3, - ACTIONS(255), 1, + ACTIONS(223), 1, anon_sym_LBRACE, - STATE(1226), 1, + STATE(1194), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5499] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(1225), 1, - sym_curly_group_text, - ACTIONS(3), 2, + ACTIONS(5895), 1, + anon_sym_RBRACE, + ACTIONS(5897), 1, + sym_path, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, [5510] = 3, - ACTIONS(255), 1, + ACTIONS(5883), 1, anon_sym_LBRACE, - STATE(1224), 1, - sym_curly_group, + STATE(1189), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5521] = 3, - ACTIONS(5723), 1, - anon_sym_minted, - STATE(2432), 1, - sym__trivia_text_minted, + ACTIONS(5899), 1, + anon_sym_BSLASHend, + STATE(740), 1, + sym__trivia_end_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5532] = 3, - ACTIONS(5563), 1, + ACTIONS(223), 1, anon_sym_LBRACE, - STATE(917), 1, - sym_curly_group_text, + STATE(1185), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5543] = 3, - ACTIONS(255), 1, + ACTIONS(223), 1, anon_sym_LBRACE, - STATE(1222), 1, + STATE(1183), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5554] = 3, - ACTIONS(5841), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(918), 1, - sym_curly_group_key_value, + STATE(1182), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5565] = 3, - ACTIONS(5519), 1, + ACTIONS(223), 1, anon_sym_LBRACE, - STATE(715), 1, - sym_curly_group_path, + STATE(1181), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5576] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(2266), 1, - sym_curly_group_text, + ACTIONS(5791), 1, + anon_sym_minted, + STATE(2448), 1, + sym__trivia_text_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5587] = 3, - ACTIONS(5517), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(713), 1, - sym_curly_group_path_list, + STATE(899), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5598] = 3, - ACTIONS(5843), 1, - sym_command_name, - ACTIONS(5845), 1, - anon_sym_EQ, + ACTIONS(223), 1, + anon_sym_LBRACE, + STATE(1179), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5609] = 3, - ACTIONS(652), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(921), 1, - sym_curly_group, + STATE(916), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5620] = 3, - ACTIONS(5567), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1504), 1, - sym_curly_group_path, + STATE(2303), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5631] = 3, - ACTIONS(5563), 1, + ACTIONS(5901), 1, anon_sym_LBRACE, - STATE(922), 1, + STATE(2372), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5642] = 3, - ACTIONS(5567), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1508), 1, - sym_curly_group_path, + STATE(772), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5653] = 3, - ACTIONS(652), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(925), 1, - sym_curly_group, + STATE(920), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5664] = 3, - ACTIONS(45), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(782), 1, - sym_curly_group, + STATE(921), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5675] = 3, - ACTIONS(5553), 1, + ACTIONS(5629), 1, anon_sym_LBRACE, - STATE(927), 1, + STATE(1511), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5686] = 3, - ACTIONS(5567), 1, + ACTIONS(5619), 1, anon_sym_LBRACE, - STATE(1514), 1, - sym_curly_group_path, + STATE(922), 1, + sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5697] = 3, - ACTIONS(5553), 1, + ACTIONS(5629), 1, anon_sym_LBRACE, - STATE(928), 1, + STATE(1516), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5708] = 3, - ACTIONS(5553), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(929), 1, + STATE(923), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5719] = 3, - ACTIONS(5573), 1, + ACTIONS(5615), 1, anon_sym_LBRACE, - STATE(1517), 1, - sym_curly_group_text, + STATE(924), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5730] = 3, - ACTIONS(5569), 1, - anon_sym_LBRACE, - STATE(1518), 1, - sym_curly_group_text_list, - ACTIONS(3), 2, + ACTIONS(5903), 1, + anon_sym_RBRACE, + ACTIONS(5905), 1, + sym_path, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, [5741] = 3, - ACTIONS(5489), 1, + ACTIONS(5629), 1, anon_sym_LBRACE, - STATE(1593), 1, - sym_curly_group_text, + STATE(1523), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5752] = 3, - ACTIONS(5553), 1, - anon_sym_LBRACE, - STATE(930), 1, - sym_curly_group_path, + ACTIONS(5907), 1, + anon_sym_BSLASHend, + STATE(741), 1, + sym__trivia_end_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5763] = 3, - ACTIONS(5557), 1, - anon_sym_LBRACE, - STATE(931), 1, - sym_curly_group_glob_pattern, + ACTIONS(5909), 1, + anon_sym_BSLASHend, + STATE(743), 1, + sym__trivia_end_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5774] = 3, - ACTIONS(5553), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(932), 1, - sym_curly_group_path, + STATE(1526), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5785] = 3, - ACTIONS(5573), 1, + ACTIONS(5625), 1, anon_sym_LBRACE, - STATE(1543), 1, - sym_curly_group_text, + STATE(1527), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5796] = 3, - ACTIONS(5565), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1523), 1, - sym_curly_group_path_list, + STATE(776), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5807] = 3, - ACTIONS(5847), 1, - anon_sym_RBRACE, - ACTIONS(5849), 1, - sym_path, - ACTIONS(5465), 2, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(1624), 1, + sym_curly_group_text, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5818] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2303), 1, + STATE(2317), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5829] = 3, - ACTIONS(5489), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1869), 1, - sym_curly_group_text, + STATE(2316), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5840] = 3, - ACTIONS(45), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(2302), 1, - sym_curly_group, + STATE(1531), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5851] = 3, - ACTIONS(5489), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, - STATE(2301), 1, - sym_curly_group_text, + STATE(1532), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5862] = 3, - ACTIONS(5489), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(2300), 1, - sym_curly_group_text, + STATE(1328), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5873] = 3, - ACTIONS(5851), 1, - anon_sym_RBRACE, - ACTIONS(5853), 1, - sym_path, - ACTIONS(5465), 2, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(2315), 1, + sym_curly_group_text, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5884] = 3, - ACTIONS(5565), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1528), 1, - sym_curly_group_path_list, + STATE(2314), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5895] = 3, - ACTIONS(5567), 1, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(1529), 1, - sym_curly_group_path, + STATE(778), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5906] = 3, - ACTIONS(5571), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1530), 1, - sym_curly_group_glob_pattern, + STATE(780), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5917] = 3, - ACTIONS(5567), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1532), 1, - sym_curly_group_path, + STATE(1597), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5928] = 3, - ACTIONS(5567), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1535), 1, - sym_curly_group_path, + STATE(2290), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5939] = 3, - ACTIONS(5567), 1, - anon_sym_LBRACE, - STATE(1536), 1, - sym_curly_group_path, - ACTIONS(3), 2, + ACTIONS(5911), 1, + anon_sym_RBRACE, + ACTIONS(5913), 1, + sym_path, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, [5950] = 3, - ACTIONS(5567), 1, + ACTIONS(5633), 1, anon_sym_LBRACE, - STATE(1502), 1, - sym_curly_group_path, + STATE(1536), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5961] = 3, - ACTIONS(5447), 1, + ACTIONS(5629), 1, anon_sym_LBRACE, - STATE(1538), 1, - sym_curly_group, + STATE(1537), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5972] = 3, - ACTIONS(5551), 1, + ACTIONS(5631), 1, anon_sym_LBRACE, - STATE(933), 1, - sym_curly_group_path_list, + STATE(1563), 1, + sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5983] = 3, - ACTIONS(5855), 1, - anon_sym_RBRACE, - ACTIONS(5857), 1, - sym_path, - ACTIONS(5465), 2, + ACTIONS(5629), 1, + anon_sym_LBRACE, + STATE(1539), 1, + sym_curly_group_path, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, [5994] = 3, - ACTIONS(5573), 1, + ACTIONS(5629), 1, anon_sym_LBRACE, - STATE(1541), 1, - sym_curly_group_text, + STATE(1540), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6005] = 3, - ACTIONS(5447), 1, + ACTIONS(5629), 1, anon_sym_LBRACE, - STATE(1534), 1, - sym_curly_group, + STATE(1542), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6016] = 3, - ACTIONS(5499), 1, + ACTIONS(5629), 1, anon_sym_LBRACE, - STATE(787), 1, - sym_curly_group_impl, + STATE(1543), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6027] = 3, - ACTIONS(5859), 1, - sym_command_name, - ACTIONS(5861), 1, - anon_sym_EQ, + ACTIONS(5513), 1, + anon_sym_LBRACE, + STATE(1509), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6038] = 3, - ACTIONS(5863), 1, + ACTIONS(559), 1, anon_sym_LBRACE, - STATE(1545), 1, - sym_curly_group_key_value, + STATE(933), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6049] = 3, - ACTIONS(5573), 1, + ACTIONS(5615), 1, anon_sym_LBRACE, - STATE(1546), 1, - sym_curly_group_text, + STATE(934), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6060] = 3, - ACTIONS(5573), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(1547), 1, + STATE(1548), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6071] = 3, - ACTIONS(5573), 1, + ACTIONS(5513), 1, anon_sym_LBRACE, - STATE(1491), 1, - sym_curly_group_text, + STATE(1541), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6082] = 3, - ACTIONS(5493), 1, + ACTIONS(5623), 1, anon_sym_LBRACE, - STATE(1309), 1, + STATE(935), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6093] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(790), 1, - sym_curly_group, + ACTIONS(5915), 1, + sym_command_name, + ACTIONS(5917), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6104] = 3, - ACTIONS(5865), 1, - anon_sym_BSLASHend, - STATE(1328), 1, - sym__trivia_end_comment, + ACTIONS(5919), 1, + anon_sym_LBRACE, + STATE(1552), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6115] = 3, - ACTIONS(5867), 1, - anon_sym_BSLASHend, - STATE(1355), 1, - sym__trivia_end_verbatim, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(1553), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6126] = 3, - ACTIONS(5869), 1, - anon_sym_BSLASHend, - STATE(1356), 1, - sym__trivia_end_listing, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(1554), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6137] = 3, - ACTIONS(5871), 1, - anon_sym_BSLASHend, - STATE(1357), 1, - sym__trivia_end_minted, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(1498), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6148] = 3, - ACTIONS(5873), 1, - anon_sym_BSLASHend, - STATE(1358), 1, - sym__trivia_end_pycode, + ACTIONS(5607), 1, + anon_sym_LBRACE, + STATE(1359), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6159] = 3, - ACTIONS(5489), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1599), 1, - sym_curly_group_text, + STATE(2289), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6170] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2276), 1, - sym_curly_group, + ACTIONS(5921), 1, + anon_sym_BSLASHend, + STATE(1361), 1, + sym__trivia_end_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6181] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2275), 1, - sym_curly_group, + ACTIONS(5923), 1, + anon_sym_BSLASHend, + STATE(1362), 1, + sym__trivia_end_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6192] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(2274), 1, - sym_curly_group_text, + ACTIONS(5925), 1, + anon_sym_BSLASHend, + STATE(1363), 1, + sym__trivia_end_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6203] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(2273), 1, - sym_curly_group_text, + ACTIONS(5927), 1, + anon_sym_BSLASHend, + STATE(1364), 1, + sym__trivia_end_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6214] = 2, + [6214] = 3, + ACTIONS(5929), 1, + anon_sym_BSLASHend, + STATE(1365), 1, + sym__trivia_end_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - ACTIONS(5875), 2, - anon_sym_LBRACK, - anon_sym_LBRACE, - [6223] = 3, - ACTIONS(5489), 1, + [6225] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1609), 1, + STATE(2288), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6234] = 3, - ACTIONS(45), 1, + [6236] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(775), 1, - sym_curly_group, + STATE(2287), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [6245] = 3, - ACTIONS(45), 1, - anon_sym_LBRACE, - STATE(2247), 1, - sym_curly_group, + [6247] = 2, ACTIONS(3), 2, sym__whitespace, sym_line_comment, + ACTIONS(5931), 2, + anon_sym_LBRACK, + anon_sym_LBRACE, [6256] = 3, - ACTIONS(45), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2245), 1, - sym_curly_group, + STATE(1607), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6267] = 3, - ACTIONS(5489), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2244), 1, - sym_curly_group_text, + STATE(2261), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6278] = 3, - ACTIONS(5489), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2243), 1, - sym_curly_group_text, + STATE(2259), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6289] = 3, - ACTIONS(5569), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1556), 1, - sym_curly_group_text_list, + STATE(2258), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6300] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1619), 1, + STATE(2257), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6311] = 3, - ACTIONS(45), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2218), 1, - sym_curly_group, + STATE(1622), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6322] = 3, - ACTIONS(45), 1, + ACTIONS(5933), 1, anon_sym_LBRACE, - STATE(2216), 1, - sym_curly_group, + STATE(790), 1, + sym__trivia_curly_group_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6333] = 3, - ACTIONS(5719), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1562), 1, - sym_curly_group_impl, + STATE(2232), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6344] = 3, - ACTIONS(5489), 1, + ACTIONS(5621), 1, anon_sym_LBRACE, - STATE(2215), 1, - sym_curly_group_text, + STATE(939), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6355] = 3, - ACTIONS(5447), 1, + ACTIONS(5625), 1, anon_sym_LBRACE, - STATE(1550), 1, - sym_curly_group, + STATE(1565), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6366] = 3, - ACTIONS(5447), 1, + ACTIONS(5623), 1, anon_sym_LBRACE, - STATE(1566), 1, - sym_curly_group, + STATE(940), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6377] = 3, - ACTIONS(5573), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1568), 1, - sym_curly_group_text, + STATE(2230), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6388] = 3, - ACTIONS(5877), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1382), 1, - sym__trivia_curly_group_comment, + STATE(2229), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6399] = 3, - ACTIONS(5879), 1, + ACTIONS(5935), 1, anon_sym_LBRACE, - STATE(1383), 1, - sym__trivia_curly_group_verbatim, + STATE(1569), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6410] = 3, - ACTIONS(5881), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(1384), 1, - sym__trivia_curly_group_listing, + STATE(943), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6421] = 3, - ACTIONS(5883), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1385), 1, - sym__trivia_curly_group_minted, + STATE(1935), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6432] = 3, - ACTIONS(5885), 1, + ACTIONS(5513), 1, anon_sym_LBRACE, - STATE(1386), 1, - sym__trivia_curly_group_pycode, + STATE(1573), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6443] = 3, - ACTIONS(45), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(2213), 1, - sym_curly_group, + STATE(1575), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6454] = 3, - ACTIONS(5551), 1, + ACTIONS(5937), 1, anon_sym_LBRACE, - STATE(942), 1, - sym_curly_group_path_list, + STATE(1389), 1, + sym__trivia_curly_group_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6465] = 3, - ACTIONS(5447), 1, + ACTIONS(5939), 1, anon_sym_LBRACE, - STATE(1560), 1, - sym_curly_group, + STATE(1390), 1, + sym__trivia_curly_group_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6476] = 3, - ACTIONS(5499), 1, + ACTIONS(5941), 1, anon_sym_LBRACE, - STATE(2211), 1, - sym_curly_group_impl, + STATE(1391), 1, + sym__trivia_curly_group_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6487] = 3, - ACTIONS(5563), 1, + ACTIONS(5943), 1, anon_sym_LBRACE, - STATE(943), 1, - sym_curly_group_text, + STATE(1392), 1, + sym__trivia_curly_group_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6498] = 3, - ACTIONS(5489), 1, + ACTIONS(5945), 1, anon_sym_LBRACE, - STATE(2206), 1, - sym_curly_group_text, + STATE(1393), 1, + sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6509] = 3, - ACTIONS(5447), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(1542), 1, - sym_curly_group, + STATE(947), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6520] = 3, - ACTIONS(5447), 1, + ACTIONS(5617), 1, anon_sym_LBRACE, - STATE(1548), 1, - sym_curly_group, + STATE(949), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6531] = 3, - ACTIONS(5573), 1, + ACTIONS(5513), 1, anon_sym_LBRACE, - STATE(1505), 1, - sym_curly_group_text, + STATE(1549), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6542] = 3, - ACTIONS(5447), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1510), 1, + STATE(806), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6553] = 3, - ACTIONS(5723), 1, - anon_sym_minted, - STATE(2410), 1, - sym__trivia_text_minted, + ACTIONS(5935), 1, + anon_sym_LBRACE, + STATE(1562), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6564] = 3, - ACTIONS(5561), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(947), 1, - sym_curly_group_text_list, + STATE(2227), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6575] = 3, - ACTIONS(5447), 1, + ACTIONS(5513), 1, anon_sym_LBRACE, - STATE(1527), 1, + STATE(1510), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6586] = 3, - ACTIONS(45), 1, + ACTIONS(5513), 1, anon_sym_LBRACE, - STATE(2204), 1, + STATE(1514), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6597] = 3, - ACTIONS(45), 1, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(801), 1, - sym_curly_group, + STATE(1517), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6608] = 3, - ACTIONS(5517), 1, + ACTIONS(5513), 1, anon_sym_LBRACE, - STATE(694), 1, - sym_curly_group_path_list, + STATE(1518), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6619] = 3, - ACTIONS(5545), 1, - anon_sym_LBRACE, - STATE(693), 1, - sym_curly_group_text, + ACTIONS(5791), 1, + anon_sym_minted, + STATE(2420), 1, + sym__trivia_text_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6630] = 3, - ACTIONS(5563), 1, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(948), 1, - sym_curly_group_text, + STATE(2225), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6641] = 3, - ACTIONS(5553), 1, + ACTIONS(5513), 1, anon_sym_LBRACE, - STATE(952), 1, - sym_curly_group_path, + STATE(1538), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6652] = 3, - ACTIONS(5549), 1, + ACTIONS(5575), 1, anon_sym_LBRACE, - STATE(1402), 1, - sym_curly_group_path, + STATE(807), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6663] = 3, - ACTIONS(5553), 1, + ACTIONS(5605), 1, anon_sym_LBRACE, - STATE(956), 1, - sym_curly_group_path, + STATE(808), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6674] = 3, - ACTIONS(5549), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1404), 1, - sym_curly_group_path, + STATE(2220), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6685] = 3, - ACTIONS(5553), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(958), 1, - sym_curly_group_path, + STATE(2218), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6696] = 3, - ACTIONS(5887), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - STATE(794), 1, - sym__trivia_curly_group_minted, + STATE(975), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6707] = 3, - ACTIONS(5889), 1, - anon_sym_LBRACE, - STATE(795), 1, - sym__trivia_curly_group_listing, + ACTIONS(5791), 1, + anon_sym_minted, + STATE(2385), 1, + sym__trivia_text_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6718] = 3, - ACTIONS(5549), 1, + ACTIONS(5553), 1, anon_sym_LBRACE, - STATE(1388), 1, + STATE(1406), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6729] = 3, - ACTIONS(5489), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - STATE(2187), 1, - sym_curly_group_text, + STATE(995), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6740] = 3, - ACTIONS(5723), 1, - anon_sym_minted, - STATE(2385), 1, - sym__trivia_text_minted, + ACTIONS(5553), 1, + anon_sym_LBRACE, + STATE(1408), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6751] = 3, - ACTIONS(5493), 1, + ACTIONS(5579), 1, anon_sym_LBRACE, - STATE(1380), 1, + STATE(996), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6762] = 3, - ACTIONS(5547), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - STATE(1379), 1, - sym_curly_group_text_list, + STATE(997), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6773] = 3, - ACTIONS(5891), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - STATE(1640), 1, - sym_curly_group_command_name, + STATE(999), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6784] = 3, - ACTIONS(558), 1, + ACTIONS(5553), 1, anon_sym_LBRACE, - STATE(1003), 1, - sym_curly_group, + STATE(1394), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6795] = 3, - ACTIONS(5513), 1, + ACTIONS(5947), 1, anon_sym_LBRACE, - STATE(1004), 1, - sym_curly_group_text, + STATE(1001), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6806] = 3, - ACTIONS(558), 1, + ACTIONS(5569), 1, anon_sym_LBRACE, - STATE(1005), 1, - sym_curly_group, + STATE(1097), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6817] = 3, - ACTIONS(5493), 1, + ACTIONS(5607), 1, anon_sym_LBRACE, - STATE(1374), 1, + STATE(1386), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6828] = 3, - ACTIONS(5559), 1, + ACTIONS(5603), 1, anon_sym_LBRACE, - STATE(1373), 1, - sym_curly_group_path_list, + STATE(1385), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6839] = 3, - ACTIONS(558), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1007), 1, + STATE(767), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6850] = 3, - ACTIONS(5721), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - STATE(1009), 1, - sym_curly_group_impl, + STATE(1003), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6861] = 3, - ACTIONS(558), 1, + ACTIONS(5949), 1, anon_sym_LBRACE, - STATE(1011), 1, - sym_curly_group, + STATE(1005), 1, + sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6872] = 3, - ACTIONS(5893), 1, + ACTIONS(5951), 1, anon_sym_LBRACE, - STATE(1013), 1, - sym__trivia_curly_group_pycode, + STATE(1006), 1, + sym__trivia_curly_group_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6883] = 3, - ACTIONS(5895), 1, + ACTIONS(5607), 1, anon_sym_LBRACE, - STATE(1014), 1, - sym__trivia_curly_group_minted, + STATE(1380), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6894] = 3, - ACTIONS(5897), 1, - anon_sym_RBRACE, - ACTIONS(5899), 1, - sym_path, - ACTIONS(5465), 2, + ACTIONS(5613), 1, + anon_sym_LBRACE, + STATE(1379), 1, + sym_curly_group_path_list, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6905] = 3, - ACTIONS(5559), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - STATE(1367), 1, - sym_curly_group_path_list, + STATE(1440), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6916] = 3, - ACTIONS(5549), 1, + ACTIONS(5953), 1, anon_sym_LBRACE, - STATE(1360), 1, - sym_curly_group_path, + STATE(1007), 1, + sym__trivia_curly_group_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6927] = 3, - ACTIONS(5555), 1, + ACTIONS(5955), 1, anon_sym_LBRACE, - STATE(1359), 1, - sym_curly_group_glob_pattern, + STATE(1008), 1, + sym__trivia_curly_group_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6938] = 3, - ACTIONS(5549), 1, + ACTIONS(5957), 1, anon_sym_LBRACE, - STATE(1302), 1, - sym_curly_group_path, + STATE(1009), 1, + sym__trivia_curly_group_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6949] = 3, - ACTIONS(5549), 1, + ACTIONS(5579), 1, anon_sym_LBRACE, - STATE(1350), 1, - sym_curly_group_path, + STATE(1010), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6960] = 3, - ACTIONS(5549), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1349), 1, - sym_curly_group_path, + STATE(1825), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6971] = 3, - ACTIONS(5549), 1, - anon_sym_LBRACE, - STATE(1348), 1, - sym_curly_group_path, - ACTIONS(3), 2, + ACTIONS(5959), 1, + anon_sym_RBRACE, + ACTIONS(5961), 1, + sym_path, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, [6982] = 3, - ACTIONS(3223), 1, + ACTIONS(5613), 1, anon_sym_LBRACE, - STATE(1347), 1, - sym_curly_group, + STATE(1366), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [6993] = 3, - ACTIONS(5901), 1, + ACTIONS(5553), 1, anon_sym_LBRACE, - STATE(1015), 1, - sym__trivia_curly_group_listing, + STATE(1308), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7004] = 3, - ACTIONS(5903), 1, + ACTIONS(5611), 1, anon_sym_LBRACE, - STATE(1016), 1, - sym__trivia_curly_group_verbatim, + STATE(1357), 1, + sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7015] = 3, - ACTIONS(5493), 1, + ACTIONS(5553), 1, anon_sym_LBRACE, - STATE(1344), 1, - sym_curly_group_text, + STATE(1356), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7026] = 3, - ACTIONS(3223), 1, + ACTIONS(5553), 1, anon_sym_LBRACE, - STATE(1343), 1, - sym_curly_group, + STATE(1355), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7037] = 3, - ACTIONS(5905), 1, + ACTIONS(5553), 1, anon_sym_LBRACE, - STATE(1017), 1, - sym__trivia_curly_group_comment, + STATE(1354), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7048] = 3, - ACTIONS(5907), 1, - sym_command_name, - ACTIONS(5909), 1, - anon_sym_EQ, + ACTIONS(5553), 1, + anon_sym_LBRACE, + STATE(1353), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7059] = 3, - ACTIONS(5911), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(1340), 1, - sym_curly_group_key_value, + STATE(1352), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7070] = 3, - ACTIONS(5493), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - STATE(1339), 1, - sym_curly_group_text, + STATE(1011), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7081] = 3, - ACTIONS(5493), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - STATE(1338), 1, - sym_curly_group_text, + STATE(1013), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7092] = 3, - ACTIONS(5493), 1, + ACTIONS(5607), 1, anon_sym_LBRACE, - STATE(1293), 1, + STATE(1349), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7103] = 3, - ACTIONS(5489), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(2184), 1, - sym_curly_group_text, + STATE(1348), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7114] = 3, - ACTIONS(5489), 1, + ACTIONS(5947), 1, anon_sym_LBRACE, - STATE(2183), 1, - sym_curly_group_text, + STATE(1015), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7125] = 3, - ACTIONS(5519), 1, - anon_sym_LBRACE, - STATE(2179), 1, - sym_curly_group_path, + ACTIONS(5963), 1, + sym_command_name, + ACTIONS(5965), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7136] = 3, - ACTIONS(45), 1, + ACTIONS(5967), 1, anon_sym_LBRACE, - STATE(2145), 1, - sym_curly_group, + STATE(1345), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7147] = 3, - ACTIONS(45), 1, + ACTIONS(5607), 1, anon_sym_LBRACE, - STATE(2143), 1, - sym_curly_group, + STATE(1344), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7158] = 3, - ACTIONS(5489), 1, + ACTIONS(5607), 1, anon_sym_LBRACE, - STATE(2142), 1, + STATE(1343), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7169] = 3, - ACTIONS(5513), 1, + ACTIONS(5607), 1, anon_sym_LBRACE, - STATE(1018), 1, + STATE(1298), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7180] = 3, - ACTIONS(558), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - STATE(1019), 1, - sym_curly_group, + STATE(786), 1, + sym__trivia_curly_group_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7191] = 3, - ACTIONS(45), 1, + ACTIONS(5971), 1, anon_sym_LBRACE, - STATE(2140), 1, - sym_curly_group, + STATE(788), 1, + sym__trivia_curly_group_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7202] = 3, - ACTIONS(5499), 1, + ACTIONS(5973), 1, anon_sym_LBRACE, - STATE(2138), 1, - sym_curly_group_impl, + STATE(789), 1, + sym__trivia_curly_group_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7213] = 3, - ACTIONS(558), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1068), 1, - sym_curly_group, + STATE(2201), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7224] = 3, - ACTIONS(5547), 1, + ACTIONS(5975), 1, anon_sym_LBRACE, - STATE(1321), 1, - sym_curly_group_text_list, + STATE(1643), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7235] = 3, - ACTIONS(5913), 1, - anon_sym_BSLASHend, - STATE(746), 1, - sym__trivia_end_comment, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(2198), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7246] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2133), 1, + STATE(1595), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7257] = 3, - ACTIONS(45), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2131), 1, - sym_curly_group, + STATE(2197), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7268] = 3, - ACTIONS(5915), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(1317), 1, - sym_curly_group_impl, + STATE(2193), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7279] = 3, - ACTIONS(5489), 1, + ACTIONS(5623), 1, anon_sym_LBRACE, - STATE(1642), 1, + STATE(841), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7290] = 3, - ACTIONS(3223), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1315), 1, + STATE(2159), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7301] = 3, - ACTIONS(3223), 1, + ACTIONS(5603), 1, anon_sym_LBRACE, - STATE(1313), 1, - sym_curly_group, + STATE(1323), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7312] = 3, - ACTIONS(5493), 1, + ACTIONS(5573), 1, anon_sym_LBRACE, - STATE(1312), 1, - sym_curly_group_text, + STATE(1019), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7323] = 3, - ACTIONS(5917), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(793), 1, - sym__trivia_curly_group_pycode, + STATE(2157), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7334] = 3, - ACTIONS(5511), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1074), 1, - sym_curly_group_text_list, + STATE(2156), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7345] = 3, - ACTIONS(3223), 1, + ACTIONS(5977), 1, anon_sym_LBRACE, - STATE(1352), 1, - sym_curly_group, + STATE(1319), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7356] = 3, - ACTIONS(5919), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(797), 1, - sym__trivia_curly_group_comment, + STATE(2154), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7367] = 3, - ACTIONS(5915), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(1307), 1, - sym_curly_group_impl, + STATE(1317), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7378] = 3, - ACTIONS(45), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(1906), 1, + STATE(1315), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7389] = 3, - ACTIONS(3223), 1, + ACTIONS(5607), 1, anon_sym_LBRACE, - STATE(1305), 1, - sym_curly_group, + STATE(1314), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7400] = 3, - ACTIONS(3223), 1, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(1395), 1, - sym_curly_group, + STATE(2152), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7411] = 3, - ACTIONS(5493), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1370), 1, + STATE(2147), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7422] = 3, - ACTIONS(3223), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(1337), 1, + STATE(1311), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, @@ -458498,3163 +462740,3226 @@ static const uint16_t ts_small_parse_table[] = { [7433] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1939), 1, + STATE(2145), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7444] = 3, - ACTIONS(3223), 1, + ACTIONS(5977), 1, anon_sym_LBRACE, - STATE(1369), 1, - sym_curly_group, + STATE(1309), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7455] = 3, - ACTIONS(5489), 1, + ACTIONS(5979), 1, anon_sym_LBRACE, - STATE(2110), 1, - sym_curly_group_text, + STATE(784), 1, + sym__trivia_curly_group_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7466] = 3, - ACTIONS(5891), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(1656), 1, - sym_curly_group_command_name, + STATE(1341), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7477] = 3, - ACTIONS(5489), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(1902), 1, - sym_curly_group_text, + STATE(1373), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7488] = 3, - ACTIONS(5891), 1, + ACTIONS(5607), 1, anon_sym_LBRACE, - STATE(1670), 1, - sym_curly_group_command_name, + STATE(1375), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7499] = 3, - ACTIONS(5489), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(2107), 1, - sym_curly_group_text, + STATE(1376), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7510] = 3, - ACTIONS(5531), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1483), 1, - sym_curly_group_path, + STATE(1946), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7521] = 3, - ACTIONS(5513), 1, + ACTIONS(3263), 1, anon_sym_LBRACE, - STATE(998), 1, - sym_curly_group_text, + STATE(1381), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7532] = 3, - ACTIONS(5531), 1, + ACTIONS(5975), 1, anon_sym_LBRACE, - STATE(1481), 1, - sym_curly_group_path, + STATE(1640), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7543] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2106), 1, + STATE(1866), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7554] = 3, - ACTIONS(5519), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2102), 1, - sym_curly_group_path, + STATE(1880), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7565] = 3, - ACTIONS(5771), 1, - anon_sym_pycode, - STATE(2377), 1, - sym__trivia_text_pycode, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(1952), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7576] = 3, - ACTIONS(5531), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1477), 1, - sym_curly_group_path, + STATE(2124), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7587] = 3, - ACTIONS(5793), 1, - anon_sym_lstlisting, - STATE(2378), 1, - sym__trivia_text_listing, + ACTIONS(5591), 1, + anon_sym_LBRACE, + STATE(1489), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7598] = 3, - ACTIONS(5795), 1, - anon_sym_verbatim, - STATE(2379), 1, - sym__trivia_text_verbatim, + ACTIONS(5975), 1, + anon_sym_LBRACE, + STATE(1674), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7609] = 3, - ACTIONS(5529), 1, + ACTIONS(5591), 1, anon_sym_LBRACE, - STATE(1470), 1, - sym_curly_group_text, + STATE(1487), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7620] = 3, - ACTIONS(5527), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1469), 1, - sym_curly_group_text_list, + STATE(2121), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7631] = 3, - ACTIONS(5797), 1, - anon_sym_comment, - STATE(2380), 1, - sym__trivia_text_comment, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(2120), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7642] = 3, - ACTIONS(5921), 1, + ACTIONS(5981), 1, anon_sym_BSLASHend, - STATE(1085), 1, + STATE(1075), 1, sym__trivia_end_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7653] = 3, - ACTIONS(5923), 1, - anon_sym_BSLASHend, - STATE(1086), 1, - sym__trivia_end_minted, + ACTIONS(5591), 1, + anon_sym_LBRACE, + STATE(1483), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7664] = 3, - ACTIONS(5925), 1, + ACTIONS(5983), 1, anon_sym_BSLASHend, - STATE(1087), 1, - sym__trivia_end_listing, + STATE(1076), 1, + sym__trivia_end_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7675] = 3, - ACTIONS(5529), 1, - anon_sym_LBRACE, - STATE(1465), 1, - sym_curly_group_text, + ACTIONS(5985), 1, + anon_sym_BSLASHend, + STATE(1077), 1, + sym__trivia_end_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7686] = 3, - ACTIONS(5535), 1, + ACTIONS(5589), 1, anon_sym_LBRACE, - STATE(1464), 1, - sym_curly_group_path_list, + STATE(1476), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7697] = 3, - ACTIONS(5489), 1, + ACTIONS(5585), 1, anon_sym_LBRACE, - STATE(1903), 1, - sym_curly_group_text, + STATE(1475), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7708] = 3, - ACTIONS(5515), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(819), 1, - sym_curly_group_text_list, + STATE(2116), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7719] = 3, - ACTIONS(5545), 1, - anon_sym_LBRACE, - STATE(705), 1, - sym_curly_group_text, + ACTIONS(5987), 1, + anon_sym_BSLASHend, + STATE(1078), 1, + sym__trivia_end_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7730] = 3, - ACTIONS(5927), 1, + ACTIONS(5989), 1, anon_sym_BSLASHend, - STATE(1088), 1, - sym__trivia_end_verbatim, + STATE(1079), 1, + sym__trivia_end_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7741] = 3, - ACTIONS(5929), 1, - anon_sym_RBRACE, - ACTIONS(5931), 1, - sym_path, - ACTIONS(5465), 2, + ACTIONS(5579), 1, + anon_sym_LBRACE, + STATE(1081), 1, + sym_curly_group_text, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7752] = 3, - ACTIONS(5535), 1, + ACTIONS(5589), 1, anon_sym_LBRACE, - STATE(1457), 1, - sym_curly_group_path_list, + STATE(1470), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7763] = 3, - ACTIONS(5531), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, - STATE(1456), 1, - sym_curly_group_path, + STATE(1468), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7774] = 3, - ACTIONS(5533), 1, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(1455), 1, - sym_curly_group_glob_pattern, + STATE(734), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7785] = 3, - ACTIONS(5531), 1, + ACTIONS(5605), 1, anon_sym_LBRACE, - STATE(1454), 1, - sym_curly_group_path, + STATE(701), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7796] = 3, - ACTIONS(5531), 1, + ACTIONS(5579), 1, anon_sym_LBRACE, - STATE(1453), 1, - sym_curly_group_path, + STATE(1084), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7807] = 3, - ACTIONS(5531), 1, + ACTIONS(5579), 1, anon_sym_LBRACE, - STATE(1452), 1, - sym_curly_group_path, + STATE(1085), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7818] = 3, - ACTIONS(5531), 1, - anon_sym_LBRACE, - STATE(1451), 1, - sym_curly_group_path, - ACTIONS(3), 2, + ACTIONS(5991), 1, + anon_sym_RBRACE, + ACTIONS(5993), 1, + sym_path, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, [7829] = 3, - ACTIONS(3663), 1, + ACTIONS(5595), 1, anon_sym_LBRACE, - STATE(1450), 1, - sym_curly_group, + STATE(1462), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7840] = 3, - ACTIONS(5933), 1, - anon_sym_BSLASHend, - STATE(1089), 1, - sym__trivia_end_comment, + ACTIONS(5591), 1, + anon_sym_LBRACE, + STATE(1461), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7851] = 3, - ACTIONS(5513), 1, + ACTIONS(5593), 1, anon_sym_LBRACE, - STATE(1091), 1, - sym_curly_group_text, + STATE(1460), 1, + sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7862] = 3, - ACTIONS(5529), 1, + ACTIONS(5591), 1, anon_sym_LBRACE, - STATE(1406), 1, - sym_curly_group_text, + STATE(1411), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7873] = 3, - ACTIONS(3663), 1, + ACTIONS(5591), 1, anon_sym_LBRACE, - STATE(1447), 1, - sym_curly_group, + STATE(1459), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7884] = 3, - ACTIONS(5513), 1, + ACTIONS(5591), 1, anon_sym_LBRACE, - STATE(669), 1, - sym_curly_group_text, + STATE(1458), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7895] = 3, - ACTIONS(5935), 1, - sym_command_name, - ACTIONS(5937), 1, - anon_sym_EQ, + ACTIONS(5591), 1, + anon_sym_LBRACE, + STATE(1457), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7906] = 3, - ACTIONS(5939), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - STATE(1444), 1, - sym_curly_group_key_value, + STATE(1456), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7917] = 3, - ACTIONS(5529), 1, + ACTIONS(5995), 1, anon_sym_LBRACE, - STATE(1443), 1, - sym_curly_group_text, + STATE(1086), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7928] = 3, - ACTIONS(5529), 1, - anon_sym_LBRACE, - STATE(1442), 1, - sym_curly_group_text, + ACTIONS(5997), 1, + sym_command_name, + ACTIONS(5999), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7939] = 3, - ACTIONS(5529), 1, + ACTIONS(5589), 1, anon_sym_LBRACE, - STATE(1300), 1, + STATE(1453), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7950] = 3, - ACTIONS(45), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - STATE(2066), 1, + STATE(1452), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7961] = 3, - ACTIONS(45), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - STATE(2063), 1, + STATE(1089), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7972] = 3, - ACTIONS(5513), 1, - anon_sym_LBRACE, - STATE(1092), 1, - sym_curly_group_text, + ACTIONS(6001), 1, + sym_command_name, + ACTIONS(6003), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7983] = 3, - ACTIONS(5513), 1, + ACTIONS(6005), 1, anon_sym_LBRACE, - STATE(1093), 1, - sym_curly_group_text, + STATE(1449), 1, + sym_curly_group_key_value, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [7994] = 3, - ACTIONS(5489), 1, + ACTIONS(5589), 1, anon_sym_LBRACE, - STATE(2062), 1, + STATE(1446), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8005] = 3, - ACTIONS(45), 1, + ACTIONS(5589), 1, anon_sym_LBRACE, - STATE(2060), 1, - sym_curly_group, + STATE(1444), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8016] = 3, - ACTIONS(5941), 1, + ACTIONS(5589), 1, anon_sym_LBRACE, - STATE(1094), 1, - sym_curly_group_key_value, + STATE(1303), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8027] = 3, - ACTIONS(5527), 1, - anon_sym_LBRACE, - STATE(1431), 1, - sym_curly_group_text_list, + ACTIONS(5825), 1, + anon_sym_pycode, + STATE(2397), 1, + sym__trivia_text_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8038] = 3, - ACTIONS(5943), 1, - sym_command_name, - ACTIONS(5945), 1, - anon_sym_EQ, + ACTIONS(5839), 1, + anon_sym_lstlisting, + STATE(2399), 1, + sym__trivia_text_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8049] = 3, - ACTIONS(5499), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(1787), 1, - sym_curly_group_impl, + STATE(1914), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8060] = 3, - ACTIONS(5519), 1, + ACTIONS(5579), 1, anon_sym_LBRACE, - STATE(1928), 1, - sym_curly_group_path, + STATE(1090), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8071] = 3, - ACTIONS(5947), 1, - anon_sym_LBRACE, - STATE(1427), 1, - sym_curly_group_impl, + ACTIONS(5841), 1, + anon_sym_verbatim, + STATE(2400), 1, + sym__trivia_text_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8082] = 3, - ACTIONS(5519), 1, - anon_sym_LBRACE, - STATE(739), 1, - sym_curly_group_path, + ACTIONS(5847), 1, + anon_sym_comment, + STATE(2402), 1, + sym__trivia_text_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8093] = 3, - ACTIONS(3663), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - STATE(1425), 1, + STATE(1093), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8104] = 3, - ACTIONS(3663), 1, + ACTIONS(5585), 1, anon_sym_LBRACE, - STATE(1423), 1, - sym_curly_group, + STATE(1436), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8115] = 3, - ACTIONS(5529), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1422), 1, - sym_curly_group_text, + STATE(2079), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8126] = 3, - ACTIONS(558), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1097), 1, + STATE(2076), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8137] = 3, - ACTIONS(45), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(1844), 1, - sym_curly_group, + STATE(675), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8148] = 3, - ACTIONS(3663), 1, + ACTIONS(6007), 1, anon_sym_LBRACE, - STATE(1419), 1, - sym_curly_group, + STATE(1432), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8159] = 3, - ACTIONS(558), 1, + ACTIONS(5569), 1, anon_sym_LBRACE, - STATE(1131), 1, - sym_curly_group, + STATE(1095), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8170] = 3, - ACTIONS(5947), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - STATE(1416), 1, - sym_curly_group_impl, + STATE(1430), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8181] = 3, - ACTIONS(5505), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - STATE(1135), 1, - sym_curly_group_path, + STATE(1428), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8192] = 3, - ACTIONS(3663), 1, + ACTIONS(5589), 1, anon_sym_LBRACE, - STATE(1414), 1, - sym_curly_group, + STATE(1427), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8203] = 3, - ACTIONS(3663), 1, + ACTIONS(5569), 1, anon_sym_LBRACE, - STATE(1412), 1, - sym_curly_group, + STATE(1096), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8214] = 3, - ACTIONS(5529), 1, - anon_sym_LBRACE, - STATE(1411), 1, - sym_curly_group_text, - ACTIONS(3), 2, + ACTIONS(6009), 1, + anon_sym_RBRACE, + ACTIONS(6011), 1, + sym_path, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, [8225] = 3, - ACTIONS(3663), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - STATE(1410), 1, + STATE(1424), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8236] = 3, - ACTIONS(5505), 1, + ACTIONS(5569), 1, anon_sym_LBRACE, - STATE(1136), 1, + STATE(1098), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8247] = 3, - ACTIONS(3663), 1, + ACTIONS(6007), 1, anon_sym_LBRACE, - STATE(1408), 1, - sym_curly_group, + STATE(1422), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8258] = 3, - ACTIONS(5505), 1, + ACTIONS(5571), 1, anon_sym_LBRACE, - STATE(1137), 1, - sym_curly_group_path, + STATE(1099), 1, + sym_curly_group_glob_pattern, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8269] = 3, - ACTIONS(5505), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - STATE(1138), 1, - sym_curly_group_path, + STATE(1420), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8280] = 3, - ACTIONS(5519), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - STATE(675), 1, - sym_curly_group_path, + STATE(1414), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8291] = 3, - ACTIONS(5507), 1, + ACTIONS(5589), 1, anon_sym_LBRACE, - STATE(1139), 1, - sym_curly_group_glob_pattern, + STATE(1413), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8302] = 3, - ACTIONS(5489), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - STATE(2048), 1, - sym_curly_group_text, + STATE(1454), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8313] = 3, - ACTIONS(5519), 1, + ACTIONS(5569), 1, anon_sym_LBRACE, - STATE(2212), 1, + STATE(1100), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8324] = 3, - ACTIONS(5489), 1, + ACTIONS(3711), 1, anon_sym_LBRACE, - STATE(2152), 1, - sym_curly_group_text, + STATE(1465), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8335] = 3, - ACTIONS(5489), 1, + ACTIONS(5567), 1, anon_sym_LBRACE, - STATE(2207), 1, - sym_curly_group_text, + STATE(1101), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8346] = 3, - ACTIONS(5891), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1636), 1, - sym_curly_group_command_name, + STATE(795), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8357] = 3, - ACTIONS(45), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(2046), 1, - sym_curly_group, + STATE(679), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8368] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2197), 1, + STATE(2075), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8379] = 3, - ACTIONS(5489), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1940), 1, - sym_curly_group_text, + STATE(2073), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8390] = 3, - ACTIONS(5545), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(798), 1, - sym_curly_group_text, + STATE(2217), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8401] = 3, - ACTIONS(5949), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(796), 1, - sym__trivia_curly_group_verbatim, + STATE(2208), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8412] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2017), 1, + STATE(2199), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8423] = 3, - ACTIONS(5891), 1, + ACTIONS(5975), 1, anon_sym_LBRACE, - STATE(1716), 1, + STATE(1645), 1, sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8434] = 3, - ACTIONS(5505), 1, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(1140), 1, - sym_curly_group_path, + STATE(2071), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8445] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2014), 1, + STATE(2195), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8456] = 3, - ACTIONS(5503), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1141), 1, - sym_curly_group_path_list, + STATE(2061), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8467] = 3, - ACTIONS(5951), 1, - anon_sym_RBRACE, - ACTIONS(5953), 1, - sym_path, - ACTIONS(5465), 2, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(1795), 1, + sym_curly_group, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8478] = 3, - ACTIONS(5515), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(813), 1, - sym_curly_group_text_list, + STATE(1953), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8489] = 3, - ACTIONS(45), 1, + ACTIONS(5605), 1, anon_sym_LBRACE, - STATE(2124), 1, - sym_curly_group, + STATE(791), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8500] = 3, - ACTIONS(5489), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2120), 1, - sym_curly_group_text, + STATE(793), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8511] = 3, - ACTIONS(5499), 1, - anon_sym_LBRACE, - STATE(2091), 1, - sym_curly_group_impl, + ACTIONS(6013), 1, + anon_sym_BSLASHend, + STATE(738), 1, + sym__trivia_end_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8522] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2090), 1, + STATE(2002), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8533] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(2086), 1, + STATE(2030), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8544] = 3, - ACTIONS(45), 1, + ACTIONS(789), 1, anon_sym_LBRACE, - STATE(2085), 1, + STATE(1143), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8555] = 3, - ACTIONS(5519), 1, + ACTIONS(5567), 1, anon_sym_LBRACE, - STATE(685), 1, - sym_curly_group_path, + STATE(1144), 1, + sym_curly_group_path_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8566] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1960), 1, + STATE(2119), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8577] = 3, - ACTIONS(5797), 1, - anon_sym_comment, - STATE(2440), 1, - sym__trivia_text_comment, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(2107), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8588] = 3, - ACTIONS(5795), 1, - anon_sym_verbatim, - STATE(2441), 1, - sym__trivia_text_verbatim, + ACTIONS(5559), 1, + anon_sym_LBRACE, + STATE(2093), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8599] = 3, - ACTIONS(5793), 1, - anon_sym_lstlisting, - STATE(2442), 1, - sym__trivia_text_listing, + ACTIONS(45), 1, + anon_sym_LBRACE, + STATE(2091), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8610] = 3, - ACTIONS(5771), 1, - anon_sym_pycode, - STATE(2445), 1, - sym__trivia_text_pycode, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(2089), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8621] = 3, - ACTIONS(5489), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2013), 1, - sym_curly_group_text, + STATE(2087), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8632] = 3, - ACTIONS(5519), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(2009), 1, + STATE(684), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8643] = 3, - ACTIONS(5519), 1, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1984), 1, - sym_curly_group_path, + STATE(2084), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8654] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(1980), 1, - sym_curly_group_text, + ACTIONS(5847), 1, + anon_sym_comment, + STATE(2457), 1, + sym__trivia_text_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8665] = 3, - ACTIONS(5489), 1, - anon_sym_LBRACE, - STATE(1978), 1, - sym_curly_group_text, + ACTIONS(5841), 1, + anon_sym_verbatim, + STATE(2458), 1, + sym__trivia_text_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8676] = 3, - ACTIONS(5891), 1, - anon_sym_LBRACE, - STATE(1706), 1, - sym_curly_group_command_name, + ACTIONS(5839), 1, + anon_sym_lstlisting, + STATE(2478), 1, + sym__trivia_text_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8687] = 3, - ACTIONS(5771), 1, + ACTIONS(5825), 1, anon_sym_pycode, - STATE(2409), 1, + STATE(2460), 1, sym__trivia_text_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8698] = 3, - ACTIONS(5489), 1, + ACTIONS(5579), 1, anon_sym_LBRACE, - STATE(1973), 1, + STATE(1145), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8709] = 3, - ACTIONS(5793), 1, - anon_sym_lstlisting, - STATE(2412), 1, - sym__trivia_text_listing, + ACTIONS(5975), 1, + anon_sym_LBRACE, + STATE(1715), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8720] = 3, - ACTIONS(5795), 1, - anon_sym_verbatim, - STATE(2413), 1, - sym__trivia_text_verbatim, + ACTIONS(5577), 1, + anon_sym_LBRACE, + STATE(1983), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8731] = 3, - ACTIONS(5797), 1, - anon_sym_comment, - STATE(2414), 1, - sym__trivia_text_comment, + ACTIONS(5551), 1, + anon_sym_LBRACE, + STATE(1895), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8742] = 3, - ACTIONS(45), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1972), 1, - sym_curly_group, + STATE(1963), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8753] = 3, - ACTIONS(45), 1, + ACTIONS(5975), 1, anon_sym_LBRACE, - STATE(1969), 1, - sym_curly_group, + STATE(1713), 1, + sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8764] = 3, - ACTIONS(5489), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1968), 1, + STATE(2027), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8775] = 3, - ACTIONS(45), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1966), 1, - sym_curly_group, + STATE(1957), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8786] = 3, - ACTIONS(5503), 1, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1150), 1, - sym_curly_group_path_list, + STATE(2026), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8797] = 3, - ACTIONS(5513), 1, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(1151), 1, - sym_curly_group_text, + STATE(2022), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8808] = 3, - ACTIONS(5499), 1, - anon_sym_LBRACE, - STATE(1964), 1, - sym_curly_group_impl, + ACTIONS(5825), 1, + anon_sym_pycode, + STATE(2418), 1, + sym__trivia_text_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, [8819] = 3, + ACTIONS(5839), 1, + anon_sym_lstlisting, + STATE(2423), 1, + sym__trivia_text_listing, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [8830] = 3, + ACTIONS(5841), 1, + anon_sym_verbatim, + STATE(2424), 1, + sym__trivia_text_verbatim, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [8841] = 3, + ACTIONS(5573), 1, + anon_sym_LBRACE, + STATE(1149), 1, + sym_curly_group_text_list, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [8852] = 3, + ACTIONS(5847), 1, + anon_sym_comment, + STATE(2426), 1, + sym__trivia_text_comment, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [8863] = 3, + ACTIONS(5579), 1, + anon_sym_LBRACE, + STATE(1150), 1, + sym_curly_group_text, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [8874] = 3, + ACTIONS(5569), 1, + anon_sym_LBRACE, + STATE(1153), 1, + sym_curly_group_path, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [8885] = 3, + ACTIONS(5569), 1, + anon_sym_LBRACE, + STATE(1157), 1, + sym_curly_group_path, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [8896] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1871), 1, + STATE(1859), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8830] = 3, - ACTIONS(5489), 1, + [8907] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1866), 1, + STATE(2137), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8841] = 3, - ACTIONS(5499), 1, + [8918] = 3, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(1804), 1, + STATE(1803), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8852] = 3, + [8929] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1803), 1, + STATE(1804), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8863] = 3, - ACTIONS(5489), 1, + [8940] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1799), 1, + STATE(1806), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8874] = 3, + [8951] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1798), 1, + STATE(1807), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8885] = 3, + [8962] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1790), 1, + STATE(1809), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8896] = 3, - ACTIONS(5797), 1, + [8973] = 3, + ACTIONS(5847), 1, anon_sym_comment, - STATE(2461), 1, + STATE(2474), 1, sym__trivia_text_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8907] = 3, - ACTIONS(5795), 1, + [8984] = 3, + ACTIONS(5841), 1, anon_sym_verbatim, - STATE(2460), 1, + STATE(2473), 1, sym__trivia_text_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8918] = 3, - ACTIONS(5793), 1, + [8995] = 3, + ACTIONS(5839), 1, anon_sym_lstlisting, - STATE(2459), 1, + STATE(2472), 1, sym__trivia_text_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8929] = 3, - ACTIONS(5771), 1, + [9006] = 3, + ACTIONS(5825), 1, anon_sym_pycode, - STATE(2457), 1, + STATE(2470), 1, sym__trivia_text_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8940] = 3, - ACTIONS(5519), 1, + [9017] = 3, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(1820), 1, + STATE(1834), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8951] = 3, - ACTIONS(5489), 1, + [9028] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1824), 1, + STATE(1836), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8962] = 3, - ACTIONS(5489), 1, + [9039] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1825), 1, + STATE(1837), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8973] = 3, - ACTIONS(5891), 1, + [9050] = 3, + ACTIONS(5975), 1, anon_sym_LBRACE, - STATE(1638), 1, + STATE(1639), 1, sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8984] = 3, - ACTIONS(5489), 1, + [9061] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1954), 1, - sym_curly_group_text, + STATE(1984), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [8995] = 3, - ACTIONS(5489), 1, + [9072] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1828), 1, + STATE(1840), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9006] = 3, + [9083] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1952), 1, + STATE(1981), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9017] = 3, - ACTIONS(45), 1, + [9094] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(807), 1, - sym_curly_group, + STATE(1980), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9028] = 3, - ACTIONS(5499), 1, + [9105] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(2015), 1, - sym_curly_group_impl, + STATE(1978), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9039] = 3, - ACTIONS(5499), 1, + [9116] = 3, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(809), 1, + STATE(1976), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9050] = 3, - ACTIONS(5505), 1, + [9127] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1165), 1, - sym_curly_group_path, + STATE(1966), 1, + sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9061] = 3, - ACTIONS(5511), 1, + [9138] = 3, + ACTIONS(5569), 1, anon_sym_LBRACE, - STATE(1155), 1, - sym_curly_group_text_list, + STATE(1159), 1, + sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9072] = 3, - ACTIONS(5489), 1, + [9149] = 3, + ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1923), 1, - sym_curly_group_text, + STATE(1964), 1, + sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9083] = 3, - ACTIONS(5513), 1, + [9160] = 3, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(1156), 1, - sym_curly_group_text, + STATE(2011), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9094] = 3, - ACTIONS(5505), 1, + [9171] = 3, + ACTIONS(5587), 1, anon_sym_LBRACE, - STATE(1159), 1, - sym_curly_group_path, + STATE(801), 1, + sym_curly_group_text_list, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9105] = 3, - ACTIONS(5505), 1, + [9182] = 3, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(1163), 1, - sym_curly_group_path, + STATE(797), 1, + sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9116] = 3, + [9193] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1858), 1, + STATE(1869), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9127] = 3, - ACTIONS(5489), 1, + [9204] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1860), 1, + STATE(1871), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9138] = 3, - ACTIONS(5499), 1, + [9215] = 3, + ACTIONS(5559), 1, anon_sym_LBRACE, - STATE(1870), 1, + STATE(1881), 1, sym_curly_group_impl, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9149] = 3, + [9226] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1872), 1, + STATE(1883), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9160] = 3, - ACTIONS(5489), 1, + [9237] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1874), 1, + STATE(1885), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9171] = 3, + [9248] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1875), 1, + STATE(1886), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9182] = 3, + [9259] = 3, ACTIONS(45), 1, anon_sym_LBRACE, - STATE(1878), 1, + STATE(1889), 1, sym_curly_group, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9193] = 3, - ACTIONS(5797), 1, + [9270] = 3, + ACTIONS(5847), 1, anon_sym_comment, - STATE(2435), 1, + STATE(2451), 1, sym__trivia_text_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9204] = 3, - ACTIONS(5795), 1, + [9281] = 3, + ACTIONS(5841), 1, anon_sym_verbatim, - STATE(2434), 1, + STATE(2450), 1, sym__trivia_text_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9215] = 3, - ACTIONS(5793), 1, + [9292] = 3, + ACTIONS(5839), 1, anon_sym_lstlisting, - STATE(2433), 1, + STATE(2449), 1, sym__trivia_text_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9226] = 3, - ACTIONS(5771), 1, + [9303] = 3, + ACTIONS(5825), 1, anon_sym_pycode, - STATE(2431), 1, + STATE(2447), 1, sym__trivia_text_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9237] = 3, - ACTIONS(5519), 1, + [9314] = 3, + ACTIONS(5577), 1, anon_sym_LBRACE, - STATE(1915), 1, + STATE(1927), 1, sym_curly_group_path, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9248] = 3, - ACTIONS(5489), 1, + [9325] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1919), 1, + STATE(1931), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9259] = 3, - ACTIONS(5489), 1, + [9336] = 3, + ACTIONS(5551), 1, anon_sym_LBRACE, - STATE(1920), 1, + STATE(1932), 1, sym_curly_group_text, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9270] = 3, - ACTIONS(5891), 1, + [9347] = 3, + ACTIONS(5975), 1, anon_sym_LBRACE, STATE(1704), 1, sym_curly_group_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9281] = 2, - ACTIONS(5955), 1, - sym_command_name, + [9358] = 2, + ACTIONS(6015), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9289] = 2, - ACTIONS(5957), 1, - sym_path, - ACTIONS(5465), 2, + [9366] = 2, + ACTIONS(6017), 1, + sym_command_name, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9297] = 2, - ACTIONS(5959), 1, + [9374] = 2, + ACTIONS(6019), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9305] = 2, - ACTIONS(5961), 1, + [9382] = 2, + ACTIONS(6021), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9313] = 2, - ACTIONS(5963), 1, + [9390] = 2, + ACTIONS(6023), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9321] = 2, - ACTIONS(5965), 1, + [9398] = 2, + ACTIONS(6025), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9329] = 2, - ACTIONS(5967), 1, + [9406] = 2, + ACTIONS(6027), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9337] = 2, - ACTIONS(5969), 1, - sym__trivia_raw_env_pycode, + [9414] = 2, + ACTIONS(6029), 1, + sym_argc, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9345] = 2, - ACTIONS(5971), 1, + [9422] = 2, + ACTIONS(6031), 1, sym_path, - ACTIONS(5465), 2, - sym__whitespace, - sym_line_comment, - [9353] = 2, - ACTIONS(5973), 1, - sym__trivia_raw_env_minted, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [9361] = 2, - ACTIONS(5975), 1, - sym__trivia_raw_env_listing, - ACTIONS(3), 2, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - [9369] = 2, - ACTIONS(5977), 1, - sym__trivia_raw_env_verbatim, + [9430] = 2, + ACTIONS(6033), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9377] = 2, - ACTIONS(5979), 1, + [9438] = 2, + ACTIONS(6035), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9385] = 2, - ACTIONS(5981), 1, - sym_command_name, + [9446] = 2, + ACTIONS(6037), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9393] = 2, - ACTIONS(5983), 1, - sym_command_name, + [9454] = 2, + ACTIONS(6039), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9401] = 2, - ACTIONS(5985), 1, + [9462] = 2, + ACTIONS(6041), 1, sym_path, - ACTIONS(5465), 2, - sym__whitespace, - sym_line_comment, - [9409] = 2, - ACTIONS(5987), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - [9417] = 2, - ACTIONS(5989), 1, + [9470] = 2, + ACTIONS(6043), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9425] = 2, - ACTIONS(5991), 1, + [9478] = 2, + ACTIONS(6045), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9433] = 2, - ACTIONS(5993), 1, + [9486] = 2, + ACTIONS(6047), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9441] = 2, - ACTIONS(5995), 1, + [9494] = 2, + ACTIONS(6049), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9449] = 2, - ACTIONS(5997), 1, + [9502] = 2, + ACTIONS(6051), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9457] = 2, - ACTIONS(5999), 1, + [9510] = 2, + ACTIONS(6053), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9465] = 2, - ACTIONS(6001), 1, - sym_argc, + [9518] = 2, + ACTIONS(6055), 1, + sym_path, + ACTIONS(5525), 2, + sym__whitespace, + sym_line_comment, + [9526] = 2, + ACTIONS(6057), 1, + sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9473] = 2, - ACTIONS(6003), 1, - anon_sym_RBRACE, + [9534] = 2, + ACTIONS(6059), 1, + sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9481] = 2, - ACTIONS(6005), 1, - sym_path, - ACTIONS(5465), 2, + [9542] = 2, + ACTIONS(6061), 1, + sym__trivia_raw_env_listing, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9489] = 2, - ACTIONS(6007), 1, - sym__trivia_raw_env_pycode, + [9550] = 2, + ACTIONS(6063), 1, + sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9497] = 2, - ACTIONS(6009), 1, + [9558] = 2, + ACTIONS(6065), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [9566] = 2, + ACTIONS(6067), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9505] = 2, - ACTIONS(6011), 1, - sym__trivia_raw_env_minted, + [9574] = 2, + ACTIONS(6069), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9513] = 2, - ACTIONS(6013), 1, + [9582] = 2, + ACTIONS(6071), 1, + sym_command_name, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [9590] = 2, + ACTIONS(6073), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9521] = 2, - ACTIONS(6015), 1, + [9598] = 2, + ACTIONS(6075), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9529] = 2, - ACTIONS(6017), 1, + [9606] = 2, + ACTIONS(6077), 1, sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9537] = 2, - ACTIONS(6019), 1, + [9614] = 2, + ACTIONS(6079), 1, sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9545] = 2, - ACTIONS(6021), 1, + [9622] = 2, + ACTIONS(6081), 1, sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9553] = 2, - ACTIONS(6023), 1, - sym__trivia_raw_env_listing, + [9630] = 2, + ACTIONS(6083), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9561] = 2, - ACTIONS(6025), 1, + [9638] = 2, + ACTIONS(6085), 1, sym_path, - ACTIONS(5465), 2, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - [9569] = 2, - ACTIONS(6027), 1, - sym_command_name, - ACTIONS(3), 2, + [9646] = 2, + ACTIONS(6087), 1, + sym_path, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - [9577] = 2, - ACTIONS(6029), 1, - sym__trivia_raw_env_verbatim, + [9654] = 2, + ACTIONS(6089), 1, + sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9585] = 2, - ACTIONS(6031), 1, - sym__trivia_raw_env_comment, + [9662] = 2, + ACTIONS(6091), 1, + sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9593] = 2, - ACTIONS(6033), 1, - sym_command_name, + [9670] = 2, + ACTIONS(6093), 1, + sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9601] = 2, - ACTIONS(6035), 1, - anon_sym_RBRACE, + [9678] = 2, + ACTIONS(6095), 1, + sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9609] = 2, - ACTIONS(6037), 1, - sym_command_name, + [9686] = 2, + ACTIONS(6097), 1, + sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9617] = 2, - ACTIONS(6039), 1, - anon_sym_RBRACE, + [9694] = 2, + ACTIONS(6099), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9625] = 2, - ACTIONS(6041), 1, + [9702] = 2, + ACTIONS(6101), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9633] = 2, - ACTIONS(6043), 1, - anon_sym_RBRACE, + [9710] = 2, + ACTIONS(6103), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9641] = 2, - ACTIONS(6045), 1, - anon_sym_RBRACK, + [9718] = 2, + ACTIONS(6105), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9649] = 2, - ACTIONS(6047), 1, - sym_command_name, + [9726] = 2, + ACTIONS(6107), 1, + sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9657] = 2, - ACTIONS(6049), 1, - anon_sym_RBRACK, + [9734] = 2, + ACTIONS(6109), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9665] = 2, - ACTIONS(6051), 1, + [9742] = 2, + ACTIONS(6111), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9673] = 2, - ACTIONS(6053), 1, + [9750] = 2, + ACTIONS(6113), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9681] = 2, - ACTIONS(6055), 1, + [9758] = 2, + ACTIONS(6115), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9689] = 2, - ACTIONS(6057), 1, - anon_sym_RBRACE, + [9766] = 2, + ACTIONS(6117), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9697] = 2, - ACTIONS(6059), 1, - anon_sym_RBRACE, + [9774] = 2, + ACTIONS(6119), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9705] = 2, - ACTIONS(6061), 1, + [9782] = 2, + ACTIONS(6121), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9713] = 2, - ACTIONS(6063), 1, + [9790] = 2, + ACTIONS(6123), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9721] = 2, - ACTIONS(6065), 1, - sym_command_name, + [9798] = 2, + ACTIONS(6125), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9729] = 2, - ACTIONS(6067), 1, + [9806] = 2, + ACTIONS(6127), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9737] = 2, - ACTIONS(6069), 1, + [9814] = 2, + ACTIONS(6129), 1, sym_path, - ACTIONS(5465), 2, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - [9745] = 2, - ACTIONS(6071), 1, + [9822] = 2, + ACTIONS(6131), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9753] = 2, - ACTIONS(6073), 1, - sym_command_name, + [9830] = 2, + ACTIONS(6133), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9761] = 2, - ACTIONS(6075), 1, - sym_command_name, + [9838] = 2, + ACTIONS(4953), 1, + sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9769] = 2, - ACTIONS(6077), 1, + [9846] = 2, + ACTIONS(6135), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9777] = 2, - ACTIONS(6079), 1, + [9854] = 2, + ACTIONS(6137), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9785] = 2, - ACTIONS(6081), 1, + [9862] = 2, + ACTIONS(6139), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9793] = 2, - ACTIONS(6083), 1, + [9870] = 2, + ACTIONS(6141), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9801] = 2, - ACTIONS(6085), 1, + [9878] = 2, + ACTIONS(6143), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9809] = 2, - ACTIONS(6087), 1, + [9886] = 2, + ACTIONS(6145), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9817] = 2, - ACTIONS(6089), 1, - anon_sym_RBRACE, + [9894] = 2, + ACTIONS(6147), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9825] = 2, - ACTIONS(6091), 1, - anon_sym_RBRACE, + [9902] = 2, + ACTIONS(6149), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9833] = 2, - ACTIONS(6093), 1, + [9910] = 2, + ACTIONS(6151), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9841] = 2, - ACTIONS(6095), 1, - anon_sym_RBRACK, + [9918] = 2, + ACTIONS(6153), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9849] = 2, - ACTIONS(6097), 1, - sym_command_name, + [9926] = 2, + ACTIONS(6155), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9857] = 2, - ACTIONS(6099), 1, + [9934] = 2, + ACTIONS(6157), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9865] = 2, - ACTIONS(6101), 1, + [9942] = 2, + ACTIONS(6159), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9873] = 2, - ACTIONS(6103), 1, - anon_sym_LBRACE, + [9950] = 2, + ACTIONS(6161), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9881] = 2, - ACTIONS(6105), 1, + [9958] = 2, + ACTIONS(6163), 1, sym_path, - ACTIONS(5465), 2, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - [9889] = 2, - ACTIONS(6107), 1, - sym__trivia_raw_env_minted, + [9966] = 2, + ACTIONS(6165), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9897] = 2, - ACTIONS(6109), 1, - ts_builtin_sym_end, + [9974] = 2, + ACTIONS(6167), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9905] = 2, - ACTIONS(5009), 1, - sym__trivia_raw_env_comment, + [9982] = 2, + ACTIONS(6169), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9913] = 2, - ACTIONS(6111), 1, - sym__trivia_raw_env_comment, + [9990] = 2, + ACTIONS(6171), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9921] = 2, - ACTIONS(6113), 1, - sym_command_name, + [9998] = 2, + ACTIONS(6173), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9929] = 2, - ACTIONS(6115), 1, - sym__trivia_raw_env_verbatim, + [10006] = 2, + ACTIONS(6175), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9937] = 2, - ACTIONS(6117), 1, + [10014] = 2, + ACTIONS(6177), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9945] = 2, - ACTIONS(6119), 1, - sym__trivia_raw_env_listing, + [10022] = 2, + ACTIONS(6179), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9953] = 2, - ACTIONS(6121), 1, - sym__trivia_raw_env_minted, + [10030] = 2, + ACTIONS(6181), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9961] = 2, - ACTIONS(6123), 1, + [10038] = 2, + ACTIONS(6183), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9969] = 2, - ACTIONS(5005), 1, - sym__trivia_raw_env_verbatim, + [10046] = 2, + ACTIONS(6185), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9977] = 2, - ACTIONS(6125), 1, + [10054] = 2, + ACTIONS(6187), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9985] = 2, - ACTIONS(5001), 1, - sym__trivia_raw_env_listing, + [10062] = 2, + ACTIONS(4945), 1, + sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [9993] = 2, - ACTIONS(4993), 1, - sym__trivia_raw_env_pycode, + [10070] = 2, + ACTIONS(4941), 1, + sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10001] = 2, - ACTIONS(6127), 1, - anon_sym_RBRACE, + [10078] = 2, + ACTIONS(6189), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10009] = 2, - ACTIONS(6129), 1, - anon_sym_RBRACE, + [10086] = 2, + ACTIONS(6191), 1, + sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10017] = 2, - ACTIONS(6131), 1, + [10094] = 2, + ACTIONS(6193), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10025] = 2, - ACTIONS(6133), 1, - sym_path, - ACTIONS(5465), 2, + [10102] = 2, + ACTIONS(4933), 1, + sym__trivia_raw_env_pycode, + ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10033] = 2, - ACTIONS(6135), 1, + [10110] = 2, + ACTIONS(6195), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10041] = 2, - ACTIONS(5013), 1, - sym__trivia_raw_env_minted, + [10118] = 2, + ACTIONS(6197), 1, + anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10049] = 2, - ACTIONS(6137), 1, - sym__trivia_raw_env_pycode, - ACTIONS(3), 2, + [10126] = 2, + ACTIONS(6199), 1, + sym_path, + ACTIONS(5525), 2, sym__whitespace, sym_line_comment, - [10057] = 2, - ACTIONS(6139), 1, + [10134] = 2, + ACTIONS(6201), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10065] = 2, - ACTIONS(6141), 1, + [10142] = 2, + ACTIONS(6203), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10073] = 2, - ACTIONS(6143), 1, + [10150] = 2, + ACTIONS(6205), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10081] = 2, - ACTIONS(6145), 1, + [10158] = 2, + ACTIONS(6207), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10089] = 2, - ACTIONS(6147), 1, + [10166] = 2, + ACTIONS(6209), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10097] = 2, - ACTIONS(6149), 1, - anon_sym_RBRACE, + [10174] = 2, + ACTIONS(6211), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10105] = 2, - ACTIONS(6151), 1, - anon_sym_RBRACE, + [10182] = 2, + ACTIONS(6213), 1, + sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10113] = 2, - ACTIONS(6153), 1, - anon_sym_RBRACK, + [10190] = 2, + ACTIONS(6215), 1, + sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10121] = 2, - ACTIONS(6155), 1, - anon_sym_RBRACE, + [10198] = 2, + ACTIONS(6217), 1, + sym__trivia_raw_env_minted, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10129] = 2, - ACTIONS(6157), 1, + [10206] = 2, + ACTIONS(6219), 1, + sym_command_name, + ACTIONS(3), 2, + sym__whitespace, + sym_line_comment, + [10214] = 2, + ACTIONS(6221), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10137] = 2, - ACTIONS(6159), 1, + [10222] = 2, + ACTIONS(6223), 1, sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10145] = 2, - ACTIONS(6161), 1, + [10230] = 2, + ACTIONS(6225), 1, sym__trivia_raw_env_verbatim, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10153] = 2, - ACTIONS(6163), 1, - sym__trivia_raw_env_listing, + [10238] = 2, + ACTIONS(6227), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10161] = 2, - ACTIONS(6165), 1, - sym__trivia_raw_env_pycode, + [10246] = 2, + ACTIONS(6229), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10169] = 2, - ACTIONS(6167), 1, - sym_command_name, + [10254] = 2, + ACTIONS(6231), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10177] = 2, - ACTIONS(6169), 1, - anon_sym_LBRACE, + [10262] = 2, + ACTIONS(6233), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10185] = 2, - ACTIONS(6171), 1, - anon_sym_RBRACE, + [10270] = 2, + ACTIONS(6235), 1, + sym__trivia_raw_env_listing, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10193] = 2, - ACTIONS(6173), 1, - sym_path, - ACTIONS(5465), 2, - sym__whitespace, - sym_line_comment, - [10201] = 2, - ACTIONS(6175), 1, - sym_command_name, + [10278] = 2, + ACTIONS(6237), 1, + sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10209] = 2, - ACTIONS(6177), 1, + [10286] = 2, + ACTIONS(6239), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10217] = 2, - ACTIONS(6179), 1, - anon_sym_RBRACE, + [10294] = 2, + ACTIONS(6241), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10225] = 2, - ACTIONS(6181), 1, + [10302] = 2, + ACTIONS(6243), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10233] = 2, - ACTIONS(6183), 1, + [10310] = 2, + ACTIONS(6245), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10241] = 2, - ACTIONS(6185), 1, + [10318] = 2, + ACTIONS(6247), 1, + sym_path, + ACTIONS(5525), 2, + sym__whitespace, + sym_line_comment, + [10326] = 2, + ACTIONS(6249), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10249] = 2, - ACTIONS(6187), 1, + [10334] = 2, + ACTIONS(6251), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10257] = 2, - ACTIONS(6189), 1, + [10342] = 2, + ACTIONS(6253), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10265] = 2, - ACTIONS(6191), 1, + [10350] = 2, + ACTIONS(6255), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10273] = 2, - ACTIONS(6193), 1, + [10358] = 2, + ACTIONS(6257), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10281] = 2, - ACTIONS(6195), 1, - anon_sym_RBRACK, + [10366] = 2, + ACTIONS(6259), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10289] = 2, - ACTIONS(6197), 1, + [10374] = 2, + ACTIONS(6261), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10297] = 2, - ACTIONS(6199), 1, - anon_sym_RBRACE, + [10382] = 2, + ACTIONS(6263), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10305] = 2, - ACTIONS(6201), 1, - anon_sym_RBRACE, + [10390] = 2, + ACTIONS(6265), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10313] = 2, - ACTIONS(6203), 1, + [10398] = 2, + ACTIONS(6267), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10321] = 2, - ACTIONS(6205), 1, + [10406] = 2, + ACTIONS(6269), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10329] = 2, - ACTIONS(6207), 1, + [10414] = 2, + ACTIONS(6271), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10337] = 2, - ACTIONS(6209), 1, - sym_command_name, + [10422] = 2, + ACTIONS(6273), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10345] = 2, - ACTIONS(6211), 1, + [10430] = 2, + ACTIONS(6275), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10353] = 2, - ACTIONS(6213), 1, - anon_sym_RBRACE, + [10438] = 2, + ACTIONS(6277), 1, + sym__trivia_raw_env_pycode, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10361] = 2, - ACTIONS(6215), 1, + [10446] = 2, + ACTIONS(6279), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10369] = 2, - ACTIONS(6217), 1, + [10454] = 2, + ACTIONS(6281), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10377] = 2, - ACTIONS(6219), 1, + [10462] = 2, + ACTIONS(6283), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10385] = 2, - ACTIONS(6221), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym__whitespace, - sym_line_comment, - [10393] = 2, - ACTIONS(6223), 1, + [10470] = 2, + ACTIONS(6285), 1, sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10401] = 2, - ACTIONS(6225), 1, - anon_sym_RBRACK, + [10478] = 2, + ACTIONS(6287), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10409] = 2, - ACTIONS(6227), 1, - sym_command_name, + [10486] = 2, + ACTIONS(6289), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10417] = 2, - ACTIONS(6229), 1, - anon_sym_RBRACE, + [10494] = 2, + ACTIONS(6291), 1, + sym_command_name, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10425] = 2, - ACTIONS(6231), 1, + [10502] = 2, + ACTIONS(6293), 1, anon_sym_LBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10433] = 2, - ACTIONS(6233), 1, + [10510] = 2, + ACTIONS(6295), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10441] = 2, - ACTIONS(6235), 1, + [10518] = 2, + ACTIONS(6297), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10449] = 2, - ACTIONS(6237), 1, + [10526] = 2, + ACTIONS(6299), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10457] = 2, - ACTIONS(6239), 1, + [10534] = 2, + ACTIONS(6301), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10465] = 2, - ACTIONS(6241), 1, + [10542] = 2, + ACTIONS(6303), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10473] = 2, - ACTIONS(6243), 1, + [10550] = 2, + ACTIONS(6305), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10481] = 2, - ACTIONS(6245), 1, - anon_sym_RBRACE, + [10558] = 2, + ACTIONS(6307), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10489] = 2, - ACTIONS(6247), 1, - anon_sym_RBRACK, + [10566] = 2, + ACTIONS(4949), 1, + sym__trivia_raw_env_comment, ACTIONS(3), 2, sym__whitespace, sym_line_comment, - [10497] = 2, - ACTIONS(6249), 1, - sym_command_name, + [10574] = 2, + ACTIONS(6309), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__whitespace, sym_line_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1570)] = 0, - [SMALL_STATE(1571)] = 26, - [SMALL_STATE(1572)] = 44, - [SMALL_STATE(1573)] = 62, - [SMALL_STATE(1574)] = 80, - [SMALL_STATE(1575)] = 98, - [SMALL_STATE(1576)] = 116, - [SMALL_STATE(1577)] = 134, - [SMALL_STATE(1578)] = 152, - [SMALL_STATE(1579)] = 170, - [SMALL_STATE(1580)] = 188, - [SMALL_STATE(1581)] = 206, - [SMALL_STATE(1582)] = 224, - [SMALL_STATE(1583)] = 242, - [SMALL_STATE(1584)] = 259, - [SMALL_STATE(1585)] = 276, - [SMALL_STATE(1586)] = 293, - [SMALL_STATE(1587)] = 310, - [SMALL_STATE(1588)] = 327, - [SMALL_STATE(1589)] = 344, - [SMALL_STATE(1590)] = 361, - [SMALL_STATE(1591)] = 378, - [SMALL_STATE(1592)] = 395, - [SMALL_STATE(1593)] = 412, - [SMALL_STATE(1594)] = 429, - [SMALL_STATE(1595)] = 446, - [SMALL_STATE(1596)] = 463, - [SMALL_STATE(1597)] = 480, - [SMALL_STATE(1598)] = 497, - [SMALL_STATE(1599)] = 514, - [SMALL_STATE(1600)] = 531, - [SMALL_STATE(1601)] = 548, - [SMALL_STATE(1602)] = 565, - [SMALL_STATE(1603)] = 582, - [SMALL_STATE(1604)] = 599, - [SMALL_STATE(1605)] = 616, - [SMALL_STATE(1606)] = 633, - [SMALL_STATE(1607)] = 650, - [SMALL_STATE(1608)] = 667, - [SMALL_STATE(1609)] = 684, - [SMALL_STATE(1610)] = 701, - [SMALL_STATE(1611)] = 718, - [SMALL_STATE(1612)] = 735, - [SMALL_STATE(1613)] = 752, - [SMALL_STATE(1614)] = 769, - [SMALL_STATE(1615)] = 786, - [SMALL_STATE(1616)] = 803, - [SMALL_STATE(1617)] = 820, - [SMALL_STATE(1618)] = 837, - [SMALL_STATE(1619)] = 854, - [SMALL_STATE(1620)] = 871, - [SMALL_STATE(1621)] = 888, - [SMALL_STATE(1622)] = 905, - [SMALL_STATE(1623)] = 922, - [SMALL_STATE(1624)] = 939, - [SMALL_STATE(1625)] = 956, - [SMALL_STATE(1626)] = 973, - [SMALL_STATE(1627)] = 990, - [SMALL_STATE(1628)] = 1007, - [SMALL_STATE(1629)] = 1024, - [SMALL_STATE(1630)] = 1041, - [SMALL_STATE(1631)] = 1058, - [SMALL_STATE(1632)] = 1075, - [SMALL_STATE(1633)] = 1092, - [SMALL_STATE(1634)] = 1109, - [SMALL_STATE(1635)] = 1126, - [SMALL_STATE(1636)] = 1143, - [SMALL_STATE(1637)] = 1160, - [SMALL_STATE(1638)] = 1177, - [SMALL_STATE(1639)] = 1194, - [SMALL_STATE(1640)] = 1211, - [SMALL_STATE(1641)] = 1228, - [SMALL_STATE(1642)] = 1245, - [SMALL_STATE(1643)] = 1262, - [SMALL_STATE(1644)] = 1279, - [SMALL_STATE(1645)] = 1296, - [SMALL_STATE(1646)] = 1313, - [SMALL_STATE(1647)] = 1330, - [SMALL_STATE(1648)] = 1347, - [SMALL_STATE(1649)] = 1364, - [SMALL_STATE(1650)] = 1381, - [SMALL_STATE(1651)] = 1398, - [SMALL_STATE(1652)] = 1415, - [SMALL_STATE(1653)] = 1432, - [SMALL_STATE(1654)] = 1449, - [SMALL_STATE(1655)] = 1466, - [SMALL_STATE(1656)] = 1483, - [SMALL_STATE(1657)] = 1500, - [SMALL_STATE(1658)] = 1517, - [SMALL_STATE(1659)] = 1534, - [SMALL_STATE(1660)] = 1551, - [SMALL_STATE(1661)] = 1568, - [SMALL_STATE(1662)] = 1585, - [SMALL_STATE(1663)] = 1602, - [SMALL_STATE(1664)] = 1619, - [SMALL_STATE(1665)] = 1636, - [SMALL_STATE(1666)] = 1653, - [SMALL_STATE(1667)] = 1670, - [SMALL_STATE(1668)] = 1687, - [SMALL_STATE(1669)] = 1704, - [SMALL_STATE(1670)] = 1721, - [SMALL_STATE(1671)] = 1738, - [SMALL_STATE(1672)] = 1755, - [SMALL_STATE(1673)] = 1772, - [SMALL_STATE(1674)] = 1789, - [SMALL_STATE(1675)] = 1806, - [SMALL_STATE(1676)] = 1823, - [SMALL_STATE(1677)] = 1840, - [SMALL_STATE(1678)] = 1857, - [SMALL_STATE(1679)] = 1874, - [SMALL_STATE(1680)] = 1891, - [SMALL_STATE(1681)] = 1908, - [SMALL_STATE(1682)] = 1925, - [SMALL_STATE(1683)] = 1942, - [SMALL_STATE(1684)] = 1959, - [SMALL_STATE(1685)] = 1976, - [SMALL_STATE(1686)] = 1993, - [SMALL_STATE(1687)] = 2010, - [SMALL_STATE(1688)] = 2027, - [SMALL_STATE(1689)] = 2044, - [SMALL_STATE(1690)] = 2061, - [SMALL_STATE(1691)] = 2078, - [SMALL_STATE(1692)] = 2095, - [SMALL_STATE(1693)] = 2112, - [SMALL_STATE(1694)] = 2129, - [SMALL_STATE(1695)] = 2146, - [SMALL_STATE(1696)] = 2163, - [SMALL_STATE(1697)] = 2180, - [SMALL_STATE(1698)] = 2197, - [SMALL_STATE(1699)] = 2214, - [SMALL_STATE(1700)] = 2231, - [SMALL_STATE(1701)] = 2248, - [SMALL_STATE(1702)] = 2265, - [SMALL_STATE(1703)] = 2282, - [SMALL_STATE(1704)] = 2299, - [SMALL_STATE(1705)] = 2316, - [SMALL_STATE(1706)] = 2333, - [SMALL_STATE(1707)] = 2350, - [SMALL_STATE(1708)] = 2367, - [SMALL_STATE(1709)] = 2384, - [SMALL_STATE(1710)] = 2401, - [SMALL_STATE(1711)] = 2418, - [SMALL_STATE(1712)] = 2435, - [SMALL_STATE(1713)] = 2452, - [SMALL_STATE(1714)] = 2469, - [SMALL_STATE(1715)] = 2486, - [SMALL_STATE(1716)] = 2503, - [SMALL_STATE(1717)] = 2520, - [SMALL_STATE(1718)] = 2537, - [SMALL_STATE(1719)] = 2554, - [SMALL_STATE(1720)] = 2571, - [SMALL_STATE(1721)] = 2588, - [SMALL_STATE(1722)] = 2605, - [SMALL_STATE(1723)] = 2622, - [SMALL_STATE(1724)] = 2639, - [SMALL_STATE(1725)] = 2656, - [SMALL_STATE(1726)] = 2673, - [SMALL_STATE(1727)] = 2690, - [SMALL_STATE(1728)] = 2704, - [SMALL_STATE(1729)] = 2718, - [SMALL_STATE(1730)] = 2732, - [SMALL_STATE(1731)] = 2746, - [SMALL_STATE(1732)] = 2760, - [SMALL_STATE(1733)] = 2772, - [SMALL_STATE(1734)] = 2784, - [SMALL_STATE(1735)] = 2798, - [SMALL_STATE(1736)] = 2812, - [SMALL_STATE(1737)] = 2826, - [SMALL_STATE(1738)] = 2840, - [SMALL_STATE(1739)] = 2854, - [SMALL_STATE(1740)] = 2868, - [SMALL_STATE(1741)] = 2882, - [SMALL_STATE(1742)] = 2896, - [SMALL_STATE(1743)] = 2910, - [SMALL_STATE(1744)] = 2924, - [SMALL_STATE(1745)] = 2936, - [SMALL_STATE(1746)] = 2950, - [SMALL_STATE(1747)] = 2964, - [SMALL_STATE(1748)] = 2978, - [SMALL_STATE(1749)] = 2992, - [SMALL_STATE(1750)] = 3006, - [SMALL_STATE(1751)] = 3020, - [SMALL_STATE(1752)] = 3034, - [SMALL_STATE(1753)] = 3048, - [SMALL_STATE(1754)] = 3062, - [SMALL_STATE(1755)] = 3076, - [SMALL_STATE(1756)] = 3090, - [SMALL_STATE(1757)] = 3104, - [SMALL_STATE(1758)] = 3118, - [SMALL_STATE(1759)] = 3132, - [SMALL_STATE(1760)] = 3146, - [SMALL_STATE(1761)] = 3160, - [SMALL_STATE(1762)] = 3174, - [SMALL_STATE(1763)] = 3188, - [SMALL_STATE(1764)] = 3202, - [SMALL_STATE(1765)] = 3216, - [SMALL_STATE(1766)] = 3230, - [SMALL_STATE(1767)] = 3242, - [SMALL_STATE(1768)] = 3256, - [SMALL_STATE(1769)] = 3270, - [SMALL_STATE(1770)] = 3284, - [SMALL_STATE(1771)] = 3298, - [SMALL_STATE(1772)] = 3312, - [SMALL_STATE(1773)] = 3326, - [SMALL_STATE(1774)] = 3340, - [SMALL_STATE(1775)] = 3354, - [SMALL_STATE(1776)] = 3368, - [SMALL_STATE(1777)] = 3378, - [SMALL_STATE(1778)] = 3392, - [SMALL_STATE(1779)] = 3406, - [SMALL_STATE(1780)] = 3420, - [SMALL_STATE(1781)] = 3430, - [SMALL_STATE(1782)] = 3444, - [SMALL_STATE(1783)] = 3458, - [SMALL_STATE(1784)] = 3472, - [SMALL_STATE(1785)] = 3486, - [SMALL_STATE(1786)] = 3500, - [SMALL_STATE(1787)] = 3514, - [SMALL_STATE(1788)] = 3525, - [SMALL_STATE(1789)] = 3536, - [SMALL_STATE(1790)] = 3547, - [SMALL_STATE(1791)] = 3558, - [SMALL_STATE(1792)] = 3569, - [SMALL_STATE(1793)] = 3580, - [SMALL_STATE(1794)] = 3591, - [SMALL_STATE(1795)] = 3602, - [SMALL_STATE(1796)] = 3613, - [SMALL_STATE(1797)] = 3624, - [SMALL_STATE(1798)] = 3635, - [SMALL_STATE(1799)] = 3646, - [SMALL_STATE(1800)] = 3657, - [SMALL_STATE(1801)] = 3668, - [SMALL_STATE(1802)] = 3679, - [SMALL_STATE(1803)] = 3690, - [SMALL_STATE(1804)] = 3701, - [SMALL_STATE(1805)] = 3712, - [SMALL_STATE(1806)] = 3723, - [SMALL_STATE(1807)] = 3734, - [SMALL_STATE(1808)] = 3745, - [SMALL_STATE(1809)] = 3756, - [SMALL_STATE(1810)] = 3767, - [SMALL_STATE(1811)] = 3778, - [SMALL_STATE(1812)] = 3789, - [SMALL_STATE(1813)] = 3800, - [SMALL_STATE(1814)] = 3811, - [SMALL_STATE(1815)] = 3822, - [SMALL_STATE(1816)] = 3833, - [SMALL_STATE(1817)] = 3844, - [SMALL_STATE(1818)] = 3855, - [SMALL_STATE(1819)] = 3866, - [SMALL_STATE(1820)] = 3877, - [SMALL_STATE(1821)] = 3888, - [SMALL_STATE(1822)] = 3899, - [SMALL_STATE(1823)] = 3910, - [SMALL_STATE(1824)] = 3921, - [SMALL_STATE(1825)] = 3932, - [SMALL_STATE(1826)] = 3943, - [SMALL_STATE(1827)] = 3954, - [SMALL_STATE(1828)] = 3965, - [SMALL_STATE(1829)] = 3976, - [SMALL_STATE(1830)] = 3987, - [SMALL_STATE(1831)] = 3998, - [SMALL_STATE(1832)] = 4009, - [SMALL_STATE(1833)] = 4020, - [SMALL_STATE(1834)] = 4031, - [SMALL_STATE(1835)] = 4042, - [SMALL_STATE(1836)] = 4053, - [SMALL_STATE(1837)] = 4064, - [SMALL_STATE(1838)] = 4075, - [SMALL_STATE(1839)] = 4086, - [SMALL_STATE(1840)] = 4097, - [SMALL_STATE(1841)] = 4108, - [SMALL_STATE(1842)] = 4119, - [SMALL_STATE(1843)] = 4130, - [SMALL_STATE(1844)] = 4141, - [SMALL_STATE(1845)] = 4152, - [SMALL_STATE(1846)] = 4163, - [SMALL_STATE(1847)] = 4172, - [SMALL_STATE(1848)] = 4183, - [SMALL_STATE(1849)] = 4192, - [SMALL_STATE(1850)] = 4203, - [SMALL_STATE(1851)] = 4212, - [SMALL_STATE(1852)] = 4223, - [SMALL_STATE(1853)] = 4234, - [SMALL_STATE(1854)] = 4245, - [SMALL_STATE(1855)] = 4256, - [SMALL_STATE(1856)] = 4267, - [SMALL_STATE(1857)] = 4278, - [SMALL_STATE(1858)] = 4289, - [SMALL_STATE(1859)] = 4300, - [SMALL_STATE(1860)] = 4311, - [SMALL_STATE(1861)] = 4322, - [SMALL_STATE(1862)] = 4333, - [SMALL_STATE(1863)] = 4344, - [SMALL_STATE(1864)] = 4355, - [SMALL_STATE(1865)] = 4366, - [SMALL_STATE(1866)] = 4377, - [SMALL_STATE(1867)] = 4388, - [SMALL_STATE(1868)] = 4399, - [SMALL_STATE(1869)] = 4410, - [SMALL_STATE(1870)] = 4421, - [SMALL_STATE(1871)] = 4432, - [SMALL_STATE(1872)] = 4443, - [SMALL_STATE(1873)] = 4454, - [SMALL_STATE(1874)] = 4465, - [SMALL_STATE(1875)] = 4476, - [SMALL_STATE(1876)] = 4487, - [SMALL_STATE(1877)] = 4498, - [SMALL_STATE(1878)] = 4509, - [SMALL_STATE(1879)] = 4520, - [SMALL_STATE(1880)] = 4531, - [SMALL_STATE(1881)] = 4542, - [SMALL_STATE(1882)] = 4553, - [SMALL_STATE(1883)] = 4564, - [SMALL_STATE(1884)] = 4575, - [SMALL_STATE(1885)] = 4586, - [SMALL_STATE(1886)] = 4597, - [SMALL_STATE(1887)] = 4608, - [SMALL_STATE(1888)] = 4619, - [SMALL_STATE(1889)] = 4630, - [SMALL_STATE(1890)] = 4641, - [SMALL_STATE(1891)] = 4652, - [SMALL_STATE(1892)] = 4663, - [SMALL_STATE(1893)] = 4674, - [SMALL_STATE(1894)] = 4685, - [SMALL_STATE(1895)] = 4696, - [SMALL_STATE(1896)] = 4707, - [SMALL_STATE(1897)] = 4718, - [SMALL_STATE(1898)] = 4729, - [SMALL_STATE(1899)] = 4740, - [SMALL_STATE(1900)] = 4751, - [SMALL_STATE(1901)] = 4762, - [SMALL_STATE(1902)] = 4773, - [SMALL_STATE(1903)] = 4784, - [SMALL_STATE(1904)] = 4795, - [SMALL_STATE(1905)] = 4806, - [SMALL_STATE(1906)] = 4817, - [SMALL_STATE(1907)] = 4828, - [SMALL_STATE(1908)] = 4839, - [SMALL_STATE(1909)] = 4850, - [SMALL_STATE(1910)] = 4861, - [SMALL_STATE(1911)] = 4872, - [SMALL_STATE(1912)] = 4883, - [SMALL_STATE(1913)] = 4894, - [SMALL_STATE(1914)] = 4905, - [SMALL_STATE(1915)] = 4916, - [SMALL_STATE(1916)] = 4927, - [SMALL_STATE(1917)] = 4938, - [SMALL_STATE(1918)] = 4949, - [SMALL_STATE(1919)] = 4960, - [SMALL_STATE(1920)] = 4971, - [SMALL_STATE(1921)] = 4982, - [SMALL_STATE(1922)] = 4993, - [SMALL_STATE(1923)] = 5004, - [SMALL_STATE(1924)] = 5015, - [SMALL_STATE(1925)] = 5026, - [SMALL_STATE(1926)] = 5037, - [SMALL_STATE(1927)] = 5048, - [SMALL_STATE(1928)] = 5059, - [SMALL_STATE(1929)] = 5070, - [SMALL_STATE(1930)] = 5081, - [SMALL_STATE(1931)] = 5092, - [SMALL_STATE(1932)] = 5103, - [SMALL_STATE(1933)] = 5114, - [SMALL_STATE(1934)] = 5125, - [SMALL_STATE(1935)] = 5136, - [SMALL_STATE(1936)] = 5147, - [SMALL_STATE(1937)] = 5158, - [SMALL_STATE(1938)] = 5169, - [SMALL_STATE(1939)] = 5180, - [SMALL_STATE(1940)] = 5191, - [SMALL_STATE(1941)] = 5202, - [SMALL_STATE(1942)] = 5213, - [SMALL_STATE(1943)] = 5224, - [SMALL_STATE(1944)] = 5235, - [SMALL_STATE(1945)] = 5246, - [SMALL_STATE(1946)] = 5257, - [SMALL_STATE(1947)] = 5268, - [SMALL_STATE(1948)] = 5279, - [SMALL_STATE(1949)] = 5290, - [SMALL_STATE(1950)] = 5301, - [SMALL_STATE(1951)] = 5312, - [SMALL_STATE(1952)] = 5323, - [SMALL_STATE(1953)] = 5334, - [SMALL_STATE(1954)] = 5345, - [SMALL_STATE(1955)] = 5356, - [SMALL_STATE(1956)] = 5367, - [SMALL_STATE(1957)] = 5378, - [SMALL_STATE(1958)] = 5389, - [SMALL_STATE(1959)] = 5400, - [SMALL_STATE(1960)] = 5411, - [SMALL_STATE(1961)] = 5422, - [SMALL_STATE(1962)] = 5433, - [SMALL_STATE(1963)] = 5444, - [SMALL_STATE(1964)] = 5455, - [SMALL_STATE(1965)] = 5466, - [SMALL_STATE(1966)] = 5477, - [SMALL_STATE(1967)] = 5488, - [SMALL_STATE(1968)] = 5499, - [SMALL_STATE(1969)] = 5510, - [SMALL_STATE(1970)] = 5521, - [SMALL_STATE(1971)] = 5532, - [SMALL_STATE(1972)] = 5543, - [SMALL_STATE(1973)] = 5554, - [SMALL_STATE(1974)] = 5565, - [SMALL_STATE(1975)] = 5576, - [SMALL_STATE(1976)] = 5587, - [SMALL_STATE(1977)] = 5598, - [SMALL_STATE(1978)] = 5609, - [SMALL_STATE(1979)] = 5620, - [SMALL_STATE(1980)] = 5631, - [SMALL_STATE(1981)] = 5642, - [SMALL_STATE(1982)] = 5653, - [SMALL_STATE(1983)] = 5664, - [SMALL_STATE(1984)] = 5675, - [SMALL_STATE(1985)] = 5686, - [SMALL_STATE(1986)] = 5697, - [SMALL_STATE(1987)] = 5708, - [SMALL_STATE(1988)] = 5719, - [SMALL_STATE(1989)] = 5730, - [SMALL_STATE(1990)] = 5741, - [SMALL_STATE(1991)] = 5752, - [SMALL_STATE(1992)] = 5763, - [SMALL_STATE(1993)] = 5774, - [SMALL_STATE(1994)] = 5785, - [SMALL_STATE(1995)] = 5796, - [SMALL_STATE(1996)] = 5807, - [SMALL_STATE(1997)] = 5818, - [SMALL_STATE(1998)] = 5829, - [SMALL_STATE(1999)] = 5840, - [SMALL_STATE(2000)] = 5851, - [SMALL_STATE(2001)] = 5862, - [SMALL_STATE(2002)] = 5873, - [SMALL_STATE(2003)] = 5884, - [SMALL_STATE(2004)] = 5895, - [SMALL_STATE(2005)] = 5906, - [SMALL_STATE(2006)] = 5917, - [SMALL_STATE(2007)] = 5928, - [SMALL_STATE(2008)] = 5939, - [SMALL_STATE(2009)] = 5950, - [SMALL_STATE(2010)] = 5961, - [SMALL_STATE(2011)] = 5972, - [SMALL_STATE(2012)] = 5983, - [SMALL_STATE(2013)] = 5994, - [SMALL_STATE(2014)] = 6005, - [SMALL_STATE(2015)] = 6016, - [SMALL_STATE(2016)] = 6027, - [SMALL_STATE(2017)] = 6038, - [SMALL_STATE(2018)] = 6049, - [SMALL_STATE(2019)] = 6060, - [SMALL_STATE(2020)] = 6071, - [SMALL_STATE(2021)] = 6082, - [SMALL_STATE(2022)] = 6093, - [SMALL_STATE(2023)] = 6104, - [SMALL_STATE(2024)] = 6115, - [SMALL_STATE(2025)] = 6126, - [SMALL_STATE(2026)] = 6137, - [SMALL_STATE(2027)] = 6148, - [SMALL_STATE(2028)] = 6159, - [SMALL_STATE(2029)] = 6170, - [SMALL_STATE(2030)] = 6181, - [SMALL_STATE(2031)] = 6192, - [SMALL_STATE(2032)] = 6203, - [SMALL_STATE(2033)] = 6214, - [SMALL_STATE(2034)] = 6223, - [SMALL_STATE(2035)] = 6234, - [SMALL_STATE(2036)] = 6245, - [SMALL_STATE(2037)] = 6256, - [SMALL_STATE(2038)] = 6267, - [SMALL_STATE(2039)] = 6278, - [SMALL_STATE(2040)] = 6289, - [SMALL_STATE(2041)] = 6300, - [SMALL_STATE(2042)] = 6311, - [SMALL_STATE(2043)] = 6322, - [SMALL_STATE(2044)] = 6333, - [SMALL_STATE(2045)] = 6344, - [SMALL_STATE(2046)] = 6355, - [SMALL_STATE(2047)] = 6366, - [SMALL_STATE(2048)] = 6377, - [SMALL_STATE(2049)] = 6388, - [SMALL_STATE(2050)] = 6399, - [SMALL_STATE(2051)] = 6410, - [SMALL_STATE(2052)] = 6421, - [SMALL_STATE(2053)] = 6432, - [SMALL_STATE(2054)] = 6443, - [SMALL_STATE(2055)] = 6454, - [SMALL_STATE(2056)] = 6465, - [SMALL_STATE(2057)] = 6476, - [SMALL_STATE(2058)] = 6487, - [SMALL_STATE(2059)] = 6498, - [SMALL_STATE(2060)] = 6509, - [SMALL_STATE(2061)] = 6520, - [SMALL_STATE(2062)] = 6531, - [SMALL_STATE(2063)] = 6542, - [SMALL_STATE(2064)] = 6553, - [SMALL_STATE(2065)] = 6564, - [SMALL_STATE(2066)] = 6575, - [SMALL_STATE(2067)] = 6586, - [SMALL_STATE(2068)] = 6597, - [SMALL_STATE(2069)] = 6608, - [SMALL_STATE(2070)] = 6619, - [SMALL_STATE(2071)] = 6630, - [SMALL_STATE(2072)] = 6641, - [SMALL_STATE(2073)] = 6652, - [SMALL_STATE(2074)] = 6663, - [SMALL_STATE(2075)] = 6674, - [SMALL_STATE(2076)] = 6685, - [SMALL_STATE(2077)] = 6696, - [SMALL_STATE(2078)] = 6707, - [SMALL_STATE(2079)] = 6718, - [SMALL_STATE(2080)] = 6729, - [SMALL_STATE(2081)] = 6740, - [SMALL_STATE(2082)] = 6751, - [SMALL_STATE(2083)] = 6762, - [SMALL_STATE(2084)] = 6773, - [SMALL_STATE(2085)] = 6784, - [SMALL_STATE(2086)] = 6795, - [SMALL_STATE(2087)] = 6806, - [SMALL_STATE(2088)] = 6817, - [SMALL_STATE(2089)] = 6828, - [SMALL_STATE(2090)] = 6839, - [SMALL_STATE(2091)] = 6850, - [SMALL_STATE(2092)] = 6861, - [SMALL_STATE(2093)] = 6872, - [SMALL_STATE(2094)] = 6883, - [SMALL_STATE(2095)] = 6894, - [SMALL_STATE(2096)] = 6905, - [SMALL_STATE(2097)] = 6916, - [SMALL_STATE(2098)] = 6927, - [SMALL_STATE(2099)] = 6938, - [SMALL_STATE(2100)] = 6949, - [SMALL_STATE(2101)] = 6960, - [SMALL_STATE(2102)] = 6971, - [SMALL_STATE(2103)] = 6982, - [SMALL_STATE(2104)] = 6993, - [SMALL_STATE(2105)] = 7004, - [SMALL_STATE(2106)] = 7015, - [SMALL_STATE(2107)] = 7026, - [SMALL_STATE(2108)] = 7037, - [SMALL_STATE(2109)] = 7048, - [SMALL_STATE(2110)] = 7059, - [SMALL_STATE(2111)] = 7070, - [SMALL_STATE(2112)] = 7081, - [SMALL_STATE(2113)] = 7092, - [SMALL_STATE(2114)] = 7103, - [SMALL_STATE(2115)] = 7114, - [SMALL_STATE(2116)] = 7125, - [SMALL_STATE(2117)] = 7136, - [SMALL_STATE(2118)] = 7147, - [SMALL_STATE(2119)] = 7158, - [SMALL_STATE(2120)] = 7169, - [SMALL_STATE(2121)] = 7180, - [SMALL_STATE(2122)] = 7191, - [SMALL_STATE(2123)] = 7202, - [SMALL_STATE(2124)] = 7213, - [SMALL_STATE(2125)] = 7224, - [SMALL_STATE(2126)] = 7235, - [SMALL_STATE(2127)] = 7246, - [SMALL_STATE(2128)] = 7257, - [SMALL_STATE(2129)] = 7268, - [SMALL_STATE(2130)] = 7279, - [SMALL_STATE(2131)] = 7290, - [SMALL_STATE(2132)] = 7301, - [SMALL_STATE(2133)] = 7312, - [SMALL_STATE(2134)] = 7323, - [SMALL_STATE(2135)] = 7334, - [SMALL_STATE(2136)] = 7345, - [SMALL_STATE(2137)] = 7356, - [SMALL_STATE(2138)] = 7367, - [SMALL_STATE(2139)] = 7378, - [SMALL_STATE(2140)] = 7389, - [SMALL_STATE(2141)] = 7400, - [SMALL_STATE(2142)] = 7411, - [SMALL_STATE(2143)] = 7422, - [SMALL_STATE(2144)] = 7433, - [SMALL_STATE(2145)] = 7444, - [SMALL_STATE(2146)] = 7455, - [SMALL_STATE(2147)] = 7466, - [SMALL_STATE(2148)] = 7477, - [SMALL_STATE(2149)] = 7488, - [SMALL_STATE(2150)] = 7499, - [SMALL_STATE(2151)] = 7510, - [SMALL_STATE(2152)] = 7521, - [SMALL_STATE(2153)] = 7532, - [SMALL_STATE(2154)] = 7543, - [SMALL_STATE(2155)] = 7554, - [SMALL_STATE(2156)] = 7565, - [SMALL_STATE(2157)] = 7576, - [SMALL_STATE(2158)] = 7587, - [SMALL_STATE(2159)] = 7598, - [SMALL_STATE(2160)] = 7609, - [SMALL_STATE(2161)] = 7620, - [SMALL_STATE(2162)] = 7631, - [SMALL_STATE(2163)] = 7642, - [SMALL_STATE(2164)] = 7653, - [SMALL_STATE(2165)] = 7664, - [SMALL_STATE(2166)] = 7675, - [SMALL_STATE(2167)] = 7686, - [SMALL_STATE(2168)] = 7697, - [SMALL_STATE(2169)] = 7708, - [SMALL_STATE(2170)] = 7719, - [SMALL_STATE(2171)] = 7730, - [SMALL_STATE(2172)] = 7741, - [SMALL_STATE(2173)] = 7752, - [SMALL_STATE(2174)] = 7763, - [SMALL_STATE(2175)] = 7774, - [SMALL_STATE(2176)] = 7785, - [SMALL_STATE(2177)] = 7796, - [SMALL_STATE(2178)] = 7807, - [SMALL_STATE(2179)] = 7818, - [SMALL_STATE(2180)] = 7829, - [SMALL_STATE(2181)] = 7840, - [SMALL_STATE(2182)] = 7851, - [SMALL_STATE(2183)] = 7862, - [SMALL_STATE(2184)] = 7873, - [SMALL_STATE(2185)] = 7884, - [SMALL_STATE(2186)] = 7895, - [SMALL_STATE(2187)] = 7906, - [SMALL_STATE(2188)] = 7917, - [SMALL_STATE(2189)] = 7928, - [SMALL_STATE(2190)] = 7939, - [SMALL_STATE(2191)] = 7950, - [SMALL_STATE(2192)] = 7961, - [SMALL_STATE(2193)] = 7972, - [SMALL_STATE(2194)] = 7983, - [SMALL_STATE(2195)] = 7994, - [SMALL_STATE(2196)] = 8005, - [SMALL_STATE(2197)] = 8016, - [SMALL_STATE(2198)] = 8027, - [SMALL_STATE(2199)] = 8038, - [SMALL_STATE(2200)] = 8049, - [SMALL_STATE(2201)] = 8060, - [SMALL_STATE(2202)] = 8071, - [SMALL_STATE(2203)] = 8082, - [SMALL_STATE(2204)] = 8093, - [SMALL_STATE(2205)] = 8104, - [SMALL_STATE(2206)] = 8115, - [SMALL_STATE(2207)] = 8126, - [SMALL_STATE(2208)] = 8137, - [SMALL_STATE(2209)] = 8148, - [SMALL_STATE(2210)] = 8159, - [SMALL_STATE(2211)] = 8170, - [SMALL_STATE(2212)] = 8181, - [SMALL_STATE(2213)] = 8192, - [SMALL_STATE(2214)] = 8203, - [SMALL_STATE(2215)] = 8214, - [SMALL_STATE(2216)] = 8225, - [SMALL_STATE(2217)] = 8236, - [SMALL_STATE(2218)] = 8247, - [SMALL_STATE(2219)] = 8258, - [SMALL_STATE(2220)] = 8269, - [SMALL_STATE(2221)] = 8280, - [SMALL_STATE(2222)] = 8291, - [SMALL_STATE(2223)] = 8302, - [SMALL_STATE(2224)] = 8313, - [SMALL_STATE(2225)] = 8324, - [SMALL_STATE(2226)] = 8335, - [SMALL_STATE(2227)] = 8346, - [SMALL_STATE(2228)] = 8357, - [SMALL_STATE(2229)] = 8368, - [SMALL_STATE(2230)] = 8379, - [SMALL_STATE(2231)] = 8390, - [SMALL_STATE(2232)] = 8401, - [SMALL_STATE(2233)] = 8412, - [SMALL_STATE(2234)] = 8423, - [SMALL_STATE(2235)] = 8434, - [SMALL_STATE(2236)] = 8445, - [SMALL_STATE(2237)] = 8456, - [SMALL_STATE(2238)] = 8467, - [SMALL_STATE(2239)] = 8478, - [SMALL_STATE(2240)] = 8489, - [SMALL_STATE(2241)] = 8500, - [SMALL_STATE(2242)] = 8511, - [SMALL_STATE(2243)] = 8522, - [SMALL_STATE(2244)] = 8533, - [SMALL_STATE(2245)] = 8544, - [SMALL_STATE(2246)] = 8555, - [SMALL_STATE(2247)] = 8566, - [SMALL_STATE(2248)] = 8577, - [SMALL_STATE(2249)] = 8588, - [SMALL_STATE(2250)] = 8599, - [SMALL_STATE(2251)] = 8610, - [SMALL_STATE(2252)] = 8621, - [SMALL_STATE(2253)] = 8632, - [SMALL_STATE(2254)] = 8643, - [SMALL_STATE(2255)] = 8654, - [SMALL_STATE(2256)] = 8665, - [SMALL_STATE(2257)] = 8676, - [SMALL_STATE(2258)] = 8687, - [SMALL_STATE(2259)] = 8698, - [SMALL_STATE(2260)] = 8709, - [SMALL_STATE(2261)] = 8720, - [SMALL_STATE(2262)] = 8731, - [SMALL_STATE(2263)] = 8742, - [SMALL_STATE(2264)] = 8753, - [SMALL_STATE(2265)] = 8764, - [SMALL_STATE(2266)] = 8775, - [SMALL_STATE(2267)] = 8786, - [SMALL_STATE(2268)] = 8797, - [SMALL_STATE(2269)] = 8808, - [SMALL_STATE(2270)] = 8819, - [SMALL_STATE(2271)] = 8830, - [SMALL_STATE(2272)] = 8841, - [SMALL_STATE(2273)] = 8852, - [SMALL_STATE(2274)] = 8863, - [SMALL_STATE(2275)] = 8874, - [SMALL_STATE(2276)] = 8885, - [SMALL_STATE(2277)] = 8896, - [SMALL_STATE(2278)] = 8907, - [SMALL_STATE(2279)] = 8918, - [SMALL_STATE(2280)] = 8929, - [SMALL_STATE(2281)] = 8940, - [SMALL_STATE(2282)] = 8951, - [SMALL_STATE(2283)] = 8962, - [SMALL_STATE(2284)] = 8973, - [SMALL_STATE(2285)] = 8984, - [SMALL_STATE(2286)] = 8995, - [SMALL_STATE(2287)] = 9006, - [SMALL_STATE(2288)] = 9017, - [SMALL_STATE(2289)] = 9028, - [SMALL_STATE(2290)] = 9039, - [SMALL_STATE(2291)] = 9050, - [SMALL_STATE(2292)] = 9061, - [SMALL_STATE(2293)] = 9072, - [SMALL_STATE(2294)] = 9083, - [SMALL_STATE(2295)] = 9094, - [SMALL_STATE(2296)] = 9105, - [SMALL_STATE(2297)] = 9116, - [SMALL_STATE(2298)] = 9127, - [SMALL_STATE(2299)] = 9138, - [SMALL_STATE(2300)] = 9149, - [SMALL_STATE(2301)] = 9160, - [SMALL_STATE(2302)] = 9171, - [SMALL_STATE(2303)] = 9182, - [SMALL_STATE(2304)] = 9193, - [SMALL_STATE(2305)] = 9204, - [SMALL_STATE(2306)] = 9215, - [SMALL_STATE(2307)] = 9226, - [SMALL_STATE(2308)] = 9237, - [SMALL_STATE(2309)] = 9248, - [SMALL_STATE(2310)] = 9259, - [SMALL_STATE(2311)] = 9270, - [SMALL_STATE(2312)] = 9281, - [SMALL_STATE(2313)] = 9289, - [SMALL_STATE(2314)] = 9297, - [SMALL_STATE(2315)] = 9305, - [SMALL_STATE(2316)] = 9313, - [SMALL_STATE(2317)] = 9321, - [SMALL_STATE(2318)] = 9329, - [SMALL_STATE(2319)] = 9337, - [SMALL_STATE(2320)] = 9345, - [SMALL_STATE(2321)] = 9353, - [SMALL_STATE(2322)] = 9361, - [SMALL_STATE(2323)] = 9369, - [SMALL_STATE(2324)] = 9377, - [SMALL_STATE(2325)] = 9385, - [SMALL_STATE(2326)] = 9393, - [SMALL_STATE(2327)] = 9401, - [SMALL_STATE(2328)] = 9409, - [SMALL_STATE(2329)] = 9417, - [SMALL_STATE(2330)] = 9425, - [SMALL_STATE(2331)] = 9433, - [SMALL_STATE(2332)] = 9441, - [SMALL_STATE(2333)] = 9449, - [SMALL_STATE(2334)] = 9457, - [SMALL_STATE(2335)] = 9465, - [SMALL_STATE(2336)] = 9473, - [SMALL_STATE(2337)] = 9481, - [SMALL_STATE(2338)] = 9489, - [SMALL_STATE(2339)] = 9497, - [SMALL_STATE(2340)] = 9505, - [SMALL_STATE(2341)] = 9513, - [SMALL_STATE(2342)] = 9521, - [SMALL_STATE(2343)] = 9529, - [SMALL_STATE(2344)] = 9537, - [SMALL_STATE(2345)] = 9545, - [SMALL_STATE(2346)] = 9553, - [SMALL_STATE(2347)] = 9561, - [SMALL_STATE(2348)] = 9569, - [SMALL_STATE(2349)] = 9577, - [SMALL_STATE(2350)] = 9585, - [SMALL_STATE(2351)] = 9593, - [SMALL_STATE(2352)] = 9601, - [SMALL_STATE(2353)] = 9609, - [SMALL_STATE(2354)] = 9617, - [SMALL_STATE(2355)] = 9625, - [SMALL_STATE(2356)] = 9633, - [SMALL_STATE(2357)] = 9641, - [SMALL_STATE(2358)] = 9649, - [SMALL_STATE(2359)] = 9657, - [SMALL_STATE(2360)] = 9665, - [SMALL_STATE(2361)] = 9673, - [SMALL_STATE(2362)] = 9681, - [SMALL_STATE(2363)] = 9689, - [SMALL_STATE(2364)] = 9697, - [SMALL_STATE(2365)] = 9705, - [SMALL_STATE(2366)] = 9713, - [SMALL_STATE(2367)] = 9721, - [SMALL_STATE(2368)] = 9729, - [SMALL_STATE(2369)] = 9737, - [SMALL_STATE(2370)] = 9745, - [SMALL_STATE(2371)] = 9753, - [SMALL_STATE(2372)] = 9761, - [SMALL_STATE(2373)] = 9769, - [SMALL_STATE(2374)] = 9777, - [SMALL_STATE(2375)] = 9785, - [SMALL_STATE(2376)] = 9793, - [SMALL_STATE(2377)] = 9801, - [SMALL_STATE(2378)] = 9809, - [SMALL_STATE(2379)] = 9817, - [SMALL_STATE(2380)] = 9825, - [SMALL_STATE(2381)] = 9833, - [SMALL_STATE(2382)] = 9841, - [SMALL_STATE(2383)] = 9849, - [SMALL_STATE(2384)] = 9857, - [SMALL_STATE(2385)] = 9865, - [SMALL_STATE(2386)] = 9873, - [SMALL_STATE(2387)] = 9881, - [SMALL_STATE(2388)] = 9889, - [SMALL_STATE(2389)] = 9897, - [SMALL_STATE(2390)] = 9905, - [SMALL_STATE(2391)] = 9913, - [SMALL_STATE(2392)] = 9921, - [SMALL_STATE(2393)] = 9929, - [SMALL_STATE(2394)] = 9937, - [SMALL_STATE(2395)] = 9945, - [SMALL_STATE(2396)] = 9953, - [SMALL_STATE(2397)] = 9961, - [SMALL_STATE(2398)] = 9969, - [SMALL_STATE(2399)] = 9977, - [SMALL_STATE(2400)] = 9985, - [SMALL_STATE(2401)] = 9993, - [SMALL_STATE(2402)] = 10001, - [SMALL_STATE(2403)] = 10009, - [SMALL_STATE(2404)] = 10017, - [SMALL_STATE(2405)] = 10025, - [SMALL_STATE(2406)] = 10033, - [SMALL_STATE(2407)] = 10041, - [SMALL_STATE(2408)] = 10049, - [SMALL_STATE(2409)] = 10057, - [SMALL_STATE(2410)] = 10065, - [SMALL_STATE(2411)] = 10073, - [SMALL_STATE(2412)] = 10081, - [SMALL_STATE(2413)] = 10089, - [SMALL_STATE(2414)] = 10097, - [SMALL_STATE(2415)] = 10105, - [SMALL_STATE(2416)] = 10113, - [SMALL_STATE(2417)] = 10121, - [SMALL_STATE(2418)] = 10129, - [SMALL_STATE(2419)] = 10137, - [SMALL_STATE(2420)] = 10145, - [SMALL_STATE(2421)] = 10153, - [SMALL_STATE(2422)] = 10161, - [SMALL_STATE(2423)] = 10169, - [SMALL_STATE(2424)] = 10177, - [SMALL_STATE(2425)] = 10185, - [SMALL_STATE(2426)] = 10193, - [SMALL_STATE(2427)] = 10201, - [SMALL_STATE(2428)] = 10209, - [SMALL_STATE(2429)] = 10217, - [SMALL_STATE(2430)] = 10225, - [SMALL_STATE(2431)] = 10233, - [SMALL_STATE(2432)] = 10241, - [SMALL_STATE(2433)] = 10249, - [SMALL_STATE(2434)] = 10257, - [SMALL_STATE(2435)] = 10265, - [SMALL_STATE(2436)] = 10273, - [SMALL_STATE(2437)] = 10281, - [SMALL_STATE(2438)] = 10289, - [SMALL_STATE(2439)] = 10297, - [SMALL_STATE(2440)] = 10305, - [SMALL_STATE(2441)] = 10313, - [SMALL_STATE(2442)] = 10321, - [SMALL_STATE(2443)] = 10329, - [SMALL_STATE(2444)] = 10337, - [SMALL_STATE(2445)] = 10345, - [SMALL_STATE(2446)] = 10353, - [SMALL_STATE(2447)] = 10361, - [SMALL_STATE(2448)] = 10369, - [SMALL_STATE(2449)] = 10377, - [SMALL_STATE(2450)] = 10385, - [SMALL_STATE(2451)] = 10393, - [SMALL_STATE(2452)] = 10401, - [SMALL_STATE(2453)] = 10409, - [SMALL_STATE(2454)] = 10417, - [SMALL_STATE(2455)] = 10425, - [SMALL_STATE(2456)] = 10433, - [SMALL_STATE(2457)] = 10441, - [SMALL_STATE(2458)] = 10449, - [SMALL_STATE(2459)] = 10457, - [SMALL_STATE(2460)] = 10465, - [SMALL_STATE(2461)] = 10473, - [SMALL_STATE(2462)] = 10481, - [SMALL_STATE(2463)] = 10489, - [SMALL_STATE(2464)] = 10497, + [SMALL_STATE(1577)] = 0, + [SMALL_STATE(1578)] = 26, + [SMALL_STATE(1579)] = 44, + [SMALL_STATE(1580)] = 62, + [SMALL_STATE(1581)] = 80, + [SMALL_STATE(1582)] = 98, + [SMALL_STATE(1583)] = 116, + [SMALL_STATE(1584)] = 134, + [SMALL_STATE(1585)] = 152, + [SMALL_STATE(1586)] = 170, + [SMALL_STATE(1587)] = 188, + [SMALL_STATE(1588)] = 206, + [SMALL_STATE(1589)] = 224, + [SMALL_STATE(1590)] = 242, + [SMALL_STATE(1591)] = 259, + [SMALL_STATE(1592)] = 276, + [SMALL_STATE(1593)] = 293, + [SMALL_STATE(1594)] = 310, + [SMALL_STATE(1595)] = 327, + [SMALL_STATE(1596)] = 344, + [SMALL_STATE(1597)] = 361, + [SMALL_STATE(1598)] = 378, + [SMALL_STATE(1599)] = 395, + [SMALL_STATE(1600)] = 412, + [SMALL_STATE(1601)] = 429, + [SMALL_STATE(1602)] = 446, + [SMALL_STATE(1603)] = 463, + [SMALL_STATE(1604)] = 480, + [SMALL_STATE(1605)] = 497, + [SMALL_STATE(1606)] = 514, + [SMALL_STATE(1607)] = 531, + [SMALL_STATE(1608)] = 548, + [SMALL_STATE(1609)] = 565, + [SMALL_STATE(1610)] = 582, + [SMALL_STATE(1611)] = 599, + [SMALL_STATE(1612)] = 616, + [SMALL_STATE(1613)] = 633, + [SMALL_STATE(1614)] = 650, + [SMALL_STATE(1615)] = 667, + [SMALL_STATE(1616)] = 684, + [SMALL_STATE(1617)] = 701, + [SMALL_STATE(1618)] = 718, + [SMALL_STATE(1619)] = 735, + [SMALL_STATE(1620)] = 752, + [SMALL_STATE(1621)] = 769, + [SMALL_STATE(1622)] = 786, + [SMALL_STATE(1623)] = 803, + [SMALL_STATE(1624)] = 820, + [SMALL_STATE(1625)] = 837, + [SMALL_STATE(1626)] = 854, + [SMALL_STATE(1627)] = 871, + [SMALL_STATE(1628)] = 888, + [SMALL_STATE(1629)] = 905, + [SMALL_STATE(1630)] = 922, + [SMALL_STATE(1631)] = 939, + [SMALL_STATE(1632)] = 956, + [SMALL_STATE(1633)] = 973, + [SMALL_STATE(1634)] = 990, + [SMALL_STATE(1635)] = 1007, + [SMALL_STATE(1636)] = 1024, + [SMALL_STATE(1637)] = 1041, + [SMALL_STATE(1638)] = 1058, + [SMALL_STATE(1639)] = 1075, + [SMALL_STATE(1640)] = 1092, + [SMALL_STATE(1641)] = 1109, + [SMALL_STATE(1642)] = 1126, + [SMALL_STATE(1643)] = 1143, + [SMALL_STATE(1644)] = 1160, + [SMALL_STATE(1645)] = 1177, + [SMALL_STATE(1646)] = 1194, + [SMALL_STATE(1647)] = 1211, + [SMALL_STATE(1648)] = 1228, + [SMALL_STATE(1649)] = 1245, + [SMALL_STATE(1650)] = 1262, + [SMALL_STATE(1651)] = 1279, + [SMALL_STATE(1652)] = 1296, + [SMALL_STATE(1653)] = 1313, + [SMALL_STATE(1654)] = 1330, + [SMALL_STATE(1655)] = 1347, + [SMALL_STATE(1656)] = 1364, + [SMALL_STATE(1657)] = 1381, + [SMALL_STATE(1658)] = 1398, + [SMALL_STATE(1659)] = 1415, + [SMALL_STATE(1660)] = 1432, + [SMALL_STATE(1661)] = 1449, + [SMALL_STATE(1662)] = 1466, + [SMALL_STATE(1663)] = 1483, + [SMALL_STATE(1664)] = 1500, + [SMALL_STATE(1665)] = 1517, + [SMALL_STATE(1666)] = 1534, + [SMALL_STATE(1667)] = 1551, + [SMALL_STATE(1668)] = 1568, + [SMALL_STATE(1669)] = 1585, + [SMALL_STATE(1670)] = 1602, + [SMALL_STATE(1671)] = 1619, + [SMALL_STATE(1672)] = 1636, + [SMALL_STATE(1673)] = 1653, + [SMALL_STATE(1674)] = 1670, + [SMALL_STATE(1675)] = 1687, + [SMALL_STATE(1676)] = 1704, + [SMALL_STATE(1677)] = 1721, + [SMALL_STATE(1678)] = 1738, + [SMALL_STATE(1679)] = 1755, + [SMALL_STATE(1680)] = 1772, + [SMALL_STATE(1681)] = 1789, + [SMALL_STATE(1682)] = 1806, + [SMALL_STATE(1683)] = 1823, + [SMALL_STATE(1684)] = 1840, + [SMALL_STATE(1685)] = 1857, + [SMALL_STATE(1686)] = 1874, + [SMALL_STATE(1687)] = 1891, + [SMALL_STATE(1688)] = 1908, + [SMALL_STATE(1689)] = 1925, + [SMALL_STATE(1690)] = 1942, + [SMALL_STATE(1691)] = 1959, + [SMALL_STATE(1692)] = 1976, + [SMALL_STATE(1693)] = 1993, + [SMALL_STATE(1694)] = 2010, + [SMALL_STATE(1695)] = 2027, + [SMALL_STATE(1696)] = 2044, + [SMALL_STATE(1697)] = 2061, + [SMALL_STATE(1698)] = 2078, + [SMALL_STATE(1699)] = 2095, + [SMALL_STATE(1700)] = 2112, + [SMALL_STATE(1701)] = 2129, + [SMALL_STATE(1702)] = 2146, + [SMALL_STATE(1703)] = 2163, + [SMALL_STATE(1704)] = 2180, + [SMALL_STATE(1705)] = 2197, + [SMALL_STATE(1706)] = 2214, + [SMALL_STATE(1707)] = 2231, + [SMALL_STATE(1708)] = 2248, + [SMALL_STATE(1709)] = 2265, + [SMALL_STATE(1710)] = 2282, + [SMALL_STATE(1711)] = 2299, + [SMALL_STATE(1712)] = 2316, + [SMALL_STATE(1713)] = 2333, + [SMALL_STATE(1714)] = 2350, + [SMALL_STATE(1715)] = 2367, + [SMALL_STATE(1716)] = 2384, + [SMALL_STATE(1717)] = 2401, + [SMALL_STATE(1718)] = 2418, + [SMALL_STATE(1719)] = 2435, + [SMALL_STATE(1720)] = 2452, + [SMALL_STATE(1721)] = 2469, + [SMALL_STATE(1722)] = 2486, + [SMALL_STATE(1723)] = 2503, + [SMALL_STATE(1724)] = 2520, + [SMALL_STATE(1725)] = 2537, + [SMALL_STATE(1726)] = 2554, + [SMALL_STATE(1727)] = 2571, + [SMALL_STATE(1728)] = 2588, + [SMALL_STATE(1729)] = 2605, + [SMALL_STATE(1730)] = 2622, + [SMALL_STATE(1731)] = 2639, + [SMALL_STATE(1732)] = 2656, + [SMALL_STATE(1733)] = 2673, + [SMALL_STATE(1734)] = 2690, + [SMALL_STATE(1735)] = 2704, + [SMALL_STATE(1736)] = 2718, + [SMALL_STATE(1737)] = 2732, + [SMALL_STATE(1738)] = 2746, + [SMALL_STATE(1739)] = 2760, + [SMALL_STATE(1740)] = 2774, + [SMALL_STATE(1741)] = 2788, + [SMALL_STATE(1742)] = 2802, + [SMALL_STATE(1743)] = 2816, + [SMALL_STATE(1744)] = 2830, + [SMALL_STATE(1745)] = 2844, + [SMALL_STATE(1746)] = 2858, + [SMALL_STATE(1747)] = 2872, + [SMALL_STATE(1748)] = 2886, + [SMALL_STATE(1749)] = 2900, + [SMALL_STATE(1750)] = 2914, + [SMALL_STATE(1751)] = 2928, + [SMALL_STATE(1752)] = 2942, + [SMALL_STATE(1753)] = 2956, + [SMALL_STATE(1754)] = 2970, + [SMALL_STATE(1755)] = 2984, + [SMALL_STATE(1756)] = 2994, + [SMALL_STATE(1757)] = 3008, + [SMALL_STATE(1758)] = 3022, + [SMALL_STATE(1759)] = 3036, + [SMALL_STATE(1760)] = 3050, + [SMALL_STATE(1761)] = 3064, + [SMALL_STATE(1762)] = 3078, + [SMALL_STATE(1763)] = 3090, + [SMALL_STATE(1764)] = 3104, + [SMALL_STATE(1765)] = 3118, + [SMALL_STATE(1766)] = 3132, + [SMALL_STATE(1767)] = 3146, + [SMALL_STATE(1768)] = 3160, + [SMALL_STATE(1769)] = 3174, + [SMALL_STATE(1770)] = 3188, + [SMALL_STATE(1771)] = 3202, + [SMALL_STATE(1772)] = 3216, + [SMALL_STATE(1773)] = 3230, + [SMALL_STATE(1774)] = 3240, + [SMALL_STATE(1775)] = 3254, + [SMALL_STATE(1776)] = 3268, + [SMALL_STATE(1777)] = 3282, + [SMALL_STATE(1778)] = 3296, + [SMALL_STATE(1779)] = 3310, + [SMALL_STATE(1780)] = 3324, + [SMALL_STATE(1781)] = 3338, + [SMALL_STATE(1782)] = 3350, + [SMALL_STATE(1783)] = 3364, + [SMALL_STATE(1784)] = 3378, + [SMALL_STATE(1785)] = 3392, + [SMALL_STATE(1786)] = 3406, + [SMALL_STATE(1787)] = 3418, + [SMALL_STATE(1788)] = 3432, + [SMALL_STATE(1789)] = 3446, + [SMALL_STATE(1790)] = 3460, + [SMALL_STATE(1791)] = 3472, + [SMALL_STATE(1792)] = 3486, + [SMALL_STATE(1793)] = 3500, + [SMALL_STATE(1794)] = 3514, + [SMALL_STATE(1795)] = 3525, + [SMALL_STATE(1796)] = 3536, + [SMALL_STATE(1797)] = 3547, + [SMALL_STATE(1798)] = 3558, + [SMALL_STATE(1799)] = 3569, + [SMALL_STATE(1800)] = 3580, + [SMALL_STATE(1801)] = 3591, + [SMALL_STATE(1802)] = 3602, + [SMALL_STATE(1803)] = 3613, + [SMALL_STATE(1804)] = 3624, + [SMALL_STATE(1805)] = 3635, + [SMALL_STATE(1806)] = 3646, + [SMALL_STATE(1807)] = 3657, + [SMALL_STATE(1808)] = 3668, + [SMALL_STATE(1809)] = 3679, + [SMALL_STATE(1810)] = 3690, + [SMALL_STATE(1811)] = 3701, + [SMALL_STATE(1812)] = 3712, + [SMALL_STATE(1813)] = 3723, + [SMALL_STATE(1814)] = 3734, + [SMALL_STATE(1815)] = 3745, + [SMALL_STATE(1816)] = 3756, + [SMALL_STATE(1817)] = 3767, + [SMALL_STATE(1818)] = 3778, + [SMALL_STATE(1819)] = 3789, + [SMALL_STATE(1820)] = 3800, + [SMALL_STATE(1821)] = 3811, + [SMALL_STATE(1822)] = 3822, + [SMALL_STATE(1823)] = 3833, + [SMALL_STATE(1824)] = 3844, + [SMALL_STATE(1825)] = 3855, + [SMALL_STATE(1826)] = 3866, + [SMALL_STATE(1827)] = 3877, + [SMALL_STATE(1828)] = 3888, + [SMALL_STATE(1829)] = 3899, + [SMALL_STATE(1830)] = 3910, + [SMALL_STATE(1831)] = 3921, + [SMALL_STATE(1832)] = 3932, + [SMALL_STATE(1833)] = 3943, + [SMALL_STATE(1834)] = 3954, + [SMALL_STATE(1835)] = 3965, + [SMALL_STATE(1836)] = 3976, + [SMALL_STATE(1837)] = 3987, + [SMALL_STATE(1838)] = 3998, + [SMALL_STATE(1839)] = 4009, + [SMALL_STATE(1840)] = 4020, + [SMALL_STATE(1841)] = 4031, + [SMALL_STATE(1842)] = 4042, + [SMALL_STATE(1843)] = 4053, + [SMALL_STATE(1844)] = 4064, + [SMALL_STATE(1845)] = 4075, + [SMALL_STATE(1846)] = 4086, + [SMALL_STATE(1847)] = 4097, + [SMALL_STATE(1848)] = 4108, + [SMALL_STATE(1849)] = 4119, + [SMALL_STATE(1850)] = 4130, + [SMALL_STATE(1851)] = 4141, + [SMALL_STATE(1852)] = 4150, + [SMALL_STATE(1853)] = 4161, + [SMALL_STATE(1854)] = 4170, + [SMALL_STATE(1855)] = 4181, + [SMALL_STATE(1856)] = 4190, + [SMALL_STATE(1857)] = 4201, + [SMALL_STATE(1858)] = 4212, + [SMALL_STATE(1859)] = 4223, + [SMALL_STATE(1860)] = 4234, + [SMALL_STATE(1861)] = 4245, + [SMALL_STATE(1862)] = 4256, + [SMALL_STATE(1863)] = 4267, + [SMALL_STATE(1864)] = 4278, + [SMALL_STATE(1865)] = 4289, + [SMALL_STATE(1866)] = 4300, + [SMALL_STATE(1867)] = 4311, + [SMALL_STATE(1868)] = 4322, + [SMALL_STATE(1869)] = 4333, + [SMALL_STATE(1870)] = 4344, + [SMALL_STATE(1871)] = 4355, + [SMALL_STATE(1872)] = 4366, + [SMALL_STATE(1873)] = 4377, + [SMALL_STATE(1874)] = 4388, + [SMALL_STATE(1875)] = 4399, + [SMALL_STATE(1876)] = 4410, + [SMALL_STATE(1877)] = 4421, + [SMALL_STATE(1878)] = 4432, + [SMALL_STATE(1879)] = 4443, + [SMALL_STATE(1880)] = 4454, + [SMALL_STATE(1881)] = 4465, + [SMALL_STATE(1882)] = 4476, + [SMALL_STATE(1883)] = 4487, + [SMALL_STATE(1884)] = 4498, + [SMALL_STATE(1885)] = 4509, + [SMALL_STATE(1886)] = 4520, + [SMALL_STATE(1887)] = 4531, + [SMALL_STATE(1888)] = 4542, + [SMALL_STATE(1889)] = 4553, + [SMALL_STATE(1890)] = 4564, + [SMALL_STATE(1891)] = 4575, + [SMALL_STATE(1892)] = 4586, + [SMALL_STATE(1893)] = 4597, + [SMALL_STATE(1894)] = 4608, + [SMALL_STATE(1895)] = 4619, + [SMALL_STATE(1896)] = 4630, + [SMALL_STATE(1897)] = 4641, + [SMALL_STATE(1898)] = 4652, + [SMALL_STATE(1899)] = 4663, + [SMALL_STATE(1900)] = 4674, + [SMALL_STATE(1901)] = 4685, + [SMALL_STATE(1902)] = 4696, + [SMALL_STATE(1903)] = 4707, + [SMALL_STATE(1904)] = 4718, + [SMALL_STATE(1905)] = 4729, + [SMALL_STATE(1906)] = 4740, + [SMALL_STATE(1907)] = 4751, + [SMALL_STATE(1908)] = 4762, + [SMALL_STATE(1909)] = 4773, + [SMALL_STATE(1910)] = 4784, + [SMALL_STATE(1911)] = 4795, + [SMALL_STATE(1912)] = 4806, + [SMALL_STATE(1913)] = 4817, + [SMALL_STATE(1914)] = 4828, + [SMALL_STATE(1915)] = 4839, + [SMALL_STATE(1916)] = 4850, + [SMALL_STATE(1917)] = 4861, + [SMALL_STATE(1918)] = 4872, + [SMALL_STATE(1919)] = 4883, + [SMALL_STATE(1920)] = 4894, + [SMALL_STATE(1921)] = 4905, + [SMALL_STATE(1922)] = 4916, + [SMALL_STATE(1923)] = 4927, + [SMALL_STATE(1924)] = 4938, + [SMALL_STATE(1925)] = 4949, + [SMALL_STATE(1926)] = 4960, + [SMALL_STATE(1927)] = 4971, + [SMALL_STATE(1928)] = 4982, + [SMALL_STATE(1929)] = 4993, + [SMALL_STATE(1930)] = 5004, + [SMALL_STATE(1931)] = 5015, + [SMALL_STATE(1932)] = 5026, + [SMALL_STATE(1933)] = 5037, + [SMALL_STATE(1934)] = 5048, + [SMALL_STATE(1935)] = 5059, + [SMALL_STATE(1936)] = 5070, + [SMALL_STATE(1937)] = 5081, + [SMALL_STATE(1938)] = 5092, + [SMALL_STATE(1939)] = 5103, + [SMALL_STATE(1940)] = 5114, + [SMALL_STATE(1941)] = 5125, + [SMALL_STATE(1942)] = 5136, + [SMALL_STATE(1943)] = 5147, + [SMALL_STATE(1944)] = 5158, + [SMALL_STATE(1945)] = 5169, + [SMALL_STATE(1946)] = 5180, + [SMALL_STATE(1947)] = 5191, + [SMALL_STATE(1948)] = 5202, + [SMALL_STATE(1949)] = 5213, + [SMALL_STATE(1950)] = 5224, + [SMALL_STATE(1951)] = 5235, + [SMALL_STATE(1952)] = 5246, + [SMALL_STATE(1953)] = 5257, + [SMALL_STATE(1954)] = 5268, + [SMALL_STATE(1955)] = 5279, + [SMALL_STATE(1956)] = 5290, + [SMALL_STATE(1957)] = 5301, + [SMALL_STATE(1958)] = 5312, + [SMALL_STATE(1959)] = 5323, + [SMALL_STATE(1960)] = 5334, + [SMALL_STATE(1961)] = 5345, + [SMALL_STATE(1962)] = 5356, + [SMALL_STATE(1963)] = 5367, + [SMALL_STATE(1964)] = 5378, + [SMALL_STATE(1965)] = 5389, + [SMALL_STATE(1966)] = 5400, + [SMALL_STATE(1967)] = 5411, + [SMALL_STATE(1968)] = 5422, + [SMALL_STATE(1969)] = 5433, + [SMALL_STATE(1970)] = 5444, + [SMALL_STATE(1971)] = 5455, + [SMALL_STATE(1972)] = 5466, + [SMALL_STATE(1973)] = 5477, + [SMALL_STATE(1974)] = 5488, + [SMALL_STATE(1975)] = 5499, + [SMALL_STATE(1976)] = 5510, + [SMALL_STATE(1977)] = 5521, + [SMALL_STATE(1978)] = 5532, + [SMALL_STATE(1979)] = 5543, + [SMALL_STATE(1980)] = 5554, + [SMALL_STATE(1981)] = 5565, + [SMALL_STATE(1982)] = 5576, + [SMALL_STATE(1983)] = 5587, + [SMALL_STATE(1984)] = 5598, + [SMALL_STATE(1985)] = 5609, + [SMALL_STATE(1986)] = 5620, + [SMALL_STATE(1987)] = 5631, + [SMALL_STATE(1988)] = 5642, + [SMALL_STATE(1989)] = 5653, + [SMALL_STATE(1990)] = 5664, + [SMALL_STATE(1991)] = 5675, + [SMALL_STATE(1992)] = 5686, + [SMALL_STATE(1993)] = 5697, + [SMALL_STATE(1994)] = 5708, + [SMALL_STATE(1995)] = 5719, + [SMALL_STATE(1996)] = 5730, + [SMALL_STATE(1997)] = 5741, + [SMALL_STATE(1998)] = 5752, + [SMALL_STATE(1999)] = 5763, + [SMALL_STATE(2000)] = 5774, + [SMALL_STATE(2001)] = 5785, + [SMALL_STATE(2002)] = 5796, + [SMALL_STATE(2003)] = 5807, + [SMALL_STATE(2004)] = 5818, + [SMALL_STATE(2005)] = 5829, + [SMALL_STATE(2006)] = 5840, + [SMALL_STATE(2007)] = 5851, + [SMALL_STATE(2008)] = 5862, + [SMALL_STATE(2009)] = 5873, + [SMALL_STATE(2010)] = 5884, + [SMALL_STATE(2011)] = 5895, + [SMALL_STATE(2012)] = 5906, + [SMALL_STATE(2013)] = 5917, + [SMALL_STATE(2014)] = 5928, + [SMALL_STATE(2015)] = 5939, + [SMALL_STATE(2016)] = 5950, + [SMALL_STATE(2017)] = 5961, + [SMALL_STATE(2018)] = 5972, + [SMALL_STATE(2019)] = 5983, + [SMALL_STATE(2020)] = 5994, + [SMALL_STATE(2021)] = 6005, + [SMALL_STATE(2022)] = 6016, + [SMALL_STATE(2023)] = 6027, + [SMALL_STATE(2024)] = 6038, + [SMALL_STATE(2025)] = 6049, + [SMALL_STATE(2026)] = 6060, + [SMALL_STATE(2027)] = 6071, + [SMALL_STATE(2028)] = 6082, + [SMALL_STATE(2029)] = 6093, + [SMALL_STATE(2030)] = 6104, + [SMALL_STATE(2031)] = 6115, + [SMALL_STATE(2032)] = 6126, + [SMALL_STATE(2033)] = 6137, + [SMALL_STATE(2034)] = 6148, + [SMALL_STATE(2035)] = 6159, + [SMALL_STATE(2036)] = 6170, + [SMALL_STATE(2037)] = 6181, + [SMALL_STATE(2038)] = 6192, + [SMALL_STATE(2039)] = 6203, + [SMALL_STATE(2040)] = 6214, + [SMALL_STATE(2041)] = 6225, + [SMALL_STATE(2042)] = 6236, + [SMALL_STATE(2043)] = 6247, + [SMALL_STATE(2044)] = 6256, + [SMALL_STATE(2045)] = 6267, + [SMALL_STATE(2046)] = 6278, + [SMALL_STATE(2047)] = 6289, + [SMALL_STATE(2048)] = 6300, + [SMALL_STATE(2049)] = 6311, + [SMALL_STATE(2050)] = 6322, + [SMALL_STATE(2051)] = 6333, + [SMALL_STATE(2052)] = 6344, + [SMALL_STATE(2053)] = 6355, + [SMALL_STATE(2054)] = 6366, + [SMALL_STATE(2055)] = 6377, + [SMALL_STATE(2056)] = 6388, + [SMALL_STATE(2057)] = 6399, + [SMALL_STATE(2058)] = 6410, + [SMALL_STATE(2059)] = 6421, + [SMALL_STATE(2060)] = 6432, + [SMALL_STATE(2061)] = 6443, + [SMALL_STATE(2062)] = 6454, + [SMALL_STATE(2063)] = 6465, + [SMALL_STATE(2064)] = 6476, + [SMALL_STATE(2065)] = 6487, + [SMALL_STATE(2066)] = 6498, + [SMALL_STATE(2067)] = 6509, + [SMALL_STATE(2068)] = 6520, + [SMALL_STATE(2069)] = 6531, + [SMALL_STATE(2070)] = 6542, + [SMALL_STATE(2071)] = 6553, + [SMALL_STATE(2072)] = 6564, + [SMALL_STATE(2073)] = 6575, + [SMALL_STATE(2074)] = 6586, + [SMALL_STATE(2075)] = 6597, + [SMALL_STATE(2076)] = 6608, + [SMALL_STATE(2077)] = 6619, + [SMALL_STATE(2078)] = 6630, + [SMALL_STATE(2079)] = 6641, + [SMALL_STATE(2080)] = 6652, + [SMALL_STATE(2081)] = 6663, + [SMALL_STATE(2082)] = 6674, + [SMALL_STATE(2083)] = 6685, + [SMALL_STATE(2084)] = 6696, + [SMALL_STATE(2085)] = 6707, + [SMALL_STATE(2086)] = 6718, + [SMALL_STATE(2087)] = 6729, + [SMALL_STATE(2088)] = 6740, + [SMALL_STATE(2089)] = 6751, + [SMALL_STATE(2090)] = 6762, + [SMALL_STATE(2091)] = 6773, + [SMALL_STATE(2092)] = 6784, + [SMALL_STATE(2093)] = 6795, + [SMALL_STATE(2094)] = 6806, + [SMALL_STATE(2095)] = 6817, + [SMALL_STATE(2096)] = 6828, + [SMALL_STATE(2097)] = 6839, + [SMALL_STATE(2098)] = 6850, + [SMALL_STATE(2099)] = 6861, + [SMALL_STATE(2100)] = 6872, + [SMALL_STATE(2101)] = 6883, + [SMALL_STATE(2102)] = 6894, + [SMALL_STATE(2103)] = 6905, + [SMALL_STATE(2104)] = 6916, + [SMALL_STATE(2105)] = 6927, + [SMALL_STATE(2106)] = 6938, + [SMALL_STATE(2107)] = 6949, + [SMALL_STATE(2108)] = 6960, + [SMALL_STATE(2109)] = 6971, + [SMALL_STATE(2110)] = 6982, + [SMALL_STATE(2111)] = 6993, + [SMALL_STATE(2112)] = 7004, + [SMALL_STATE(2113)] = 7015, + [SMALL_STATE(2114)] = 7026, + [SMALL_STATE(2115)] = 7037, + [SMALL_STATE(2116)] = 7048, + [SMALL_STATE(2117)] = 7059, + [SMALL_STATE(2118)] = 7070, + [SMALL_STATE(2119)] = 7081, + [SMALL_STATE(2120)] = 7092, + [SMALL_STATE(2121)] = 7103, + [SMALL_STATE(2122)] = 7114, + [SMALL_STATE(2123)] = 7125, + [SMALL_STATE(2124)] = 7136, + [SMALL_STATE(2125)] = 7147, + [SMALL_STATE(2126)] = 7158, + [SMALL_STATE(2127)] = 7169, + [SMALL_STATE(2128)] = 7180, + [SMALL_STATE(2129)] = 7191, + [SMALL_STATE(2130)] = 7202, + [SMALL_STATE(2131)] = 7213, + [SMALL_STATE(2132)] = 7224, + [SMALL_STATE(2133)] = 7235, + [SMALL_STATE(2134)] = 7246, + [SMALL_STATE(2135)] = 7257, + [SMALL_STATE(2136)] = 7268, + [SMALL_STATE(2137)] = 7279, + [SMALL_STATE(2138)] = 7290, + [SMALL_STATE(2139)] = 7301, + [SMALL_STATE(2140)] = 7312, + [SMALL_STATE(2141)] = 7323, + [SMALL_STATE(2142)] = 7334, + [SMALL_STATE(2143)] = 7345, + [SMALL_STATE(2144)] = 7356, + [SMALL_STATE(2145)] = 7367, + [SMALL_STATE(2146)] = 7378, + [SMALL_STATE(2147)] = 7389, + [SMALL_STATE(2148)] = 7400, + [SMALL_STATE(2149)] = 7411, + [SMALL_STATE(2150)] = 7422, + [SMALL_STATE(2151)] = 7433, + [SMALL_STATE(2152)] = 7444, + [SMALL_STATE(2153)] = 7455, + [SMALL_STATE(2154)] = 7466, + [SMALL_STATE(2155)] = 7477, + [SMALL_STATE(2156)] = 7488, + [SMALL_STATE(2157)] = 7499, + [SMALL_STATE(2158)] = 7510, + [SMALL_STATE(2159)] = 7521, + [SMALL_STATE(2160)] = 7532, + [SMALL_STATE(2161)] = 7543, + [SMALL_STATE(2162)] = 7554, + [SMALL_STATE(2163)] = 7565, + [SMALL_STATE(2164)] = 7576, + [SMALL_STATE(2165)] = 7587, + [SMALL_STATE(2166)] = 7598, + [SMALL_STATE(2167)] = 7609, + [SMALL_STATE(2168)] = 7620, + [SMALL_STATE(2169)] = 7631, + [SMALL_STATE(2170)] = 7642, + [SMALL_STATE(2171)] = 7653, + [SMALL_STATE(2172)] = 7664, + [SMALL_STATE(2173)] = 7675, + [SMALL_STATE(2174)] = 7686, + [SMALL_STATE(2175)] = 7697, + [SMALL_STATE(2176)] = 7708, + [SMALL_STATE(2177)] = 7719, + [SMALL_STATE(2178)] = 7730, + [SMALL_STATE(2179)] = 7741, + [SMALL_STATE(2180)] = 7752, + [SMALL_STATE(2181)] = 7763, + [SMALL_STATE(2182)] = 7774, + [SMALL_STATE(2183)] = 7785, + [SMALL_STATE(2184)] = 7796, + [SMALL_STATE(2185)] = 7807, + [SMALL_STATE(2186)] = 7818, + [SMALL_STATE(2187)] = 7829, + [SMALL_STATE(2188)] = 7840, + [SMALL_STATE(2189)] = 7851, + [SMALL_STATE(2190)] = 7862, + [SMALL_STATE(2191)] = 7873, + [SMALL_STATE(2192)] = 7884, + [SMALL_STATE(2193)] = 7895, + [SMALL_STATE(2194)] = 7906, + [SMALL_STATE(2195)] = 7917, + [SMALL_STATE(2196)] = 7928, + [SMALL_STATE(2197)] = 7939, + [SMALL_STATE(2198)] = 7950, + [SMALL_STATE(2199)] = 7961, + [SMALL_STATE(2200)] = 7972, + [SMALL_STATE(2201)] = 7983, + [SMALL_STATE(2202)] = 7994, + [SMALL_STATE(2203)] = 8005, + [SMALL_STATE(2204)] = 8016, + [SMALL_STATE(2205)] = 8027, + [SMALL_STATE(2206)] = 8038, + [SMALL_STATE(2207)] = 8049, + [SMALL_STATE(2208)] = 8060, + [SMALL_STATE(2209)] = 8071, + [SMALL_STATE(2210)] = 8082, + [SMALL_STATE(2211)] = 8093, + [SMALL_STATE(2212)] = 8104, + [SMALL_STATE(2213)] = 8115, + [SMALL_STATE(2214)] = 8126, + [SMALL_STATE(2215)] = 8137, + [SMALL_STATE(2216)] = 8148, + [SMALL_STATE(2217)] = 8159, + [SMALL_STATE(2218)] = 8170, + [SMALL_STATE(2219)] = 8181, + [SMALL_STATE(2220)] = 8192, + [SMALL_STATE(2221)] = 8203, + [SMALL_STATE(2222)] = 8214, + [SMALL_STATE(2223)] = 8225, + [SMALL_STATE(2224)] = 8236, + [SMALL_STATE(2225)] = 8247, + [SMALL_STATE(2226)] = 8258, + [SMALL_STATE(2227)] = 8269, + [SMALL_STATE(2228)] = 8280, + [SMALL_STATE(2229)] = 8291, + [SMALL_STATE(2230)] = 8302, + [SMALL_STATE(2231)] = 8313, + [SMALL_STATE(2232)] = 8324, + [SMALL_STATE(2233)] = 8335, + [SMALL_STATE(2234)] = 8346, + [SMALL_STATE(2235)] = 8357, + [SMALL_STATE(2236)] = 8368, + [SMALL_STATE(2237)] = 8379, + [SMALL_STATE(2238)] = 8390, + [SMALL_STATE(2239)] = 8401, + [SMALL_STATE(2240)] = 8412, + [SMALL_STATE(2241)] = 8423, + [SMALL_STATE(2242)] = 8434, + [SMALL_STATE(2243)] = 8445, + [SMALL_STATE(2244)] = 8456, + [SMALL_STATE(2245)] = 8467, + [SMALL_STATE(2246)] = 8478, + [SMALL_STATE(2247)] = 8489, + [SMALL_STATE(2248)] = 8500, + [SMALL_STATE(2249)] = 8511, + [SMALL_STATE(2250)] = 8522, + [SMALL_STATE(2251)] = 8533, + [SMALL_STATE(2252)] = 8544, + [SMALL_STATE(2253)] = 8555, + [SMALL_STATE(2254)] = 8566, + [SMALL_STATE(2255)] = 8577, + [SMALL_STATE(2256)] = 8588, + [SMALL_STATE(2257)] = 8599, + [SMALL_STATE(2258)] = 8610, + [SMALL_STATE(2259)] = 8621, + [SMALL_STATE(2260)] = 8632, + [SMALL_STATE(2261)] = 8643, + [SMALL_STATE(2262)] = 8654, + [SMALL_STATE(2263)] = 8665, + [SMALL_STATE(2264)] = 8676, + [SMALL_STATE(2265)] = 8687, + [SMALL_STATE(2266)] = 8698, + [SMALL_STATE(2267)] = 8709, + [SMALL_STATE(2268)] = 8720, + [SMALL_STATE(2269)] = 8731, + [SMALL_STATE(2270)] = 8742, + [SMALL_STATE(2271)] = 8753, + [SMALL_STATE(2272)] = 8764, + [SMALL_STATE(2273)] = 8775, + [SMALL_STATE(2274)] = 8786, + [SMALL_STATE(2275)] = 8797, + [SMALL_STATE(2276)] = 8808, + [SMALL_STATE(2277)] = 8819, + [SMALL_STATE(2278)] = 8830, + [SMALL_STATE(2279)] = 8841, + [SMALL_STATE(2280)] = 8852, + [SMALL_STATE(2281)] = 8863, + [SMALL_STATE(2282)] = 8874, + [SMALL_STATE(2283)] = 8885, + [SMALL_STATE(2284)] = 8896, + [SMALL_STATE(2285)] = 8907, + [SMALL_STATE(2286)] = 8918, + [SMALL_STATE(2287)] = 8929, + [SMALL_STATE(2288)] = 8940, + [SMALL_STATE(2289)] = 8951, + [SMALL_STATE(2290)] = 8962, + [SMALL_STATE(2291)] = 8973, + [SMALL_STATE(2292)] = 8984, + [SMALL_STATE(2293)] = 8995, + [SMALL_STATE(2294)] = 9006, + [SMALL_STATE(2295)] = 9017, + [SMALL_STATE(2296)] = 9028, + [SMALL_STATE(2297)] = 9039, + [SMALL_STATE(2298)] = 9050, + [SMALL_STATE(2299)] = 9061, + [SMALL_STATE(2300)] = 9072, + [SMALL_STATE(2301)] = 9083, + [SMALL_STATE(2302)] = 9094, + [SMALL_STATE(2303)] = 9105, + [SMALL_STATE(2304)] = 9116, + [SMALL_STATE(2305)] = 9127, + [SMALL_STATE(2306)] = 9138, + [SMALL_STATE(2307)] = 9149, + [SMALL_STATE(2308)] = 9160, + [SMALL_STATE(2309)] = 9171, + [SMALL_STATE(2310)] = 9182, + [SMALL_STATE(2311)] = 9193, + [SMALL_STATE(2312)] = 9204, + [SMALL_STATE(2313)] = 9215, + [SMALL_STATE(2314)] = 9226, + [SMALL_STATE(2315)] = 9237, + [SMALL_STATE(2316)] = 9248, + [SMALL_STATE(2317)] = 9259, + [SMALL_STATE(2318)] = 9270, + [SMALL_STATE(2319)] = 9281, + [SMALL_STATE(2320)] = 9292, + [SMALL_STATE(2321)] = 9303, + [SMALL_STATE(2322)] = 9314, + [SMALL_STATE(2323)] = 9325, + [SMALL_STATE(2324)] = 9336, + [SMALL_STATE(2325)] = 9347, + [SMALL_STATE(2326)] = 9358, + [SMALL_STATE(2327)] = 9366, + [SMALL_STATE(2328)] = 9374, + [SMALL_STATE(2329)] = 9382, + [SMALL_STATE(2330)] = 9390, + [SMALL_STATE(2331)] = 9398, + [SMALL_STATE(2332)] = 9406, + [SMALL_STATE(2333)] = 9414, + [SMALL_STATE(2334)] = 9422, + [SMALL_STATE(2335)] = 9430, + [SMALL_STATE(2336)] = 9438, + [SMALL_STATE(2337)] = 9446, + [SMALL_STATE(2338)] = 9454, + [SMALL_STATE(2339)] = 9462, + [SMALL_STATE(2340)] = 9470, + [SMALL_STATE(2341)] = 9478, + [SMALL_STATE(2342)] = 9486, + [SMALL_STATE(2343)] = 9494, + [SMALL_STATE(2344)] = 9502, + [SMALL_STATE(2345)] = 9510, + [SMALL_STATE(2346)] = 9518, + [SMALL_STATE(2347)] = 9526, + [SMALL_STATE(2348)] = 9534, + [SMALL_STATE(2349)] = 9542, + [SMALL_STATE(2350)] = 9550, + [SMALL_STATE(2351)] = 9558, + [SMALL_STATE(2352)] = 9566, + [SMALL_STATE(2353)] = 9574, + [SMALL_STATE(2354)] = 9582, + [SMALL_STATE(2355)] = 9590, + [SMALL_STATE(2356)] = 9598, + [SMALL_STATE(2357)] = 9606, + [SMALL_STATE(2358)] = 9614, + [SMALL_STATE(2359)] = 9622, + [SMALL_STATE(2360)] = 9630, + [SMALL_STATE(2361)] = 9638, + [SMALL_STATE(2362)] = 9646, + [SMALL_STATE(2363)] = 9654, + [SMALL_STATE(2364)] = 9662, + [SMALL_STATE(2365)] = 9670, + [SMALL_STATE(2366)] = 9678, + [SMALL_STATE(2367)] = 9686, + [SMALL_STATE(2368)] = 9694, + [SMALL_STATE(2369)] = 9702, + [SMALL_STATE(2370)] = 9710, + [SMALL_STATE(2371)] = 9718, + [SMALL_STATE(2372)] = 9726, + [SMALL_STATE(2373)] = 9734, + [SMALL_STATE(2374)] = 9742, + [SMALL_STATE(2375)] = 9750, + [SMALL_STATE(2376)] = 9758, + [SMALL_STATE(2377)] = 9766, + [SMALL_STATE(2378)] = 9774, + [SMALL_STATE(2379)] = 9782, + [SMALL_STATE(2380)] = 9790, + [SMALL_STATE(2381)] = 9798, + [SMALL_STATE(2382)] = 9806, + [SMALL_STATE(2383)] = 9814, + [SMALL_STATE(2384)] = 9822, + [SMALL_STATE(2385)] = 9830, + [SMALL_STATE(2386)] = 9838, + [SMALL_STATE(2387)] = 9846, + [SMALL_STATE(2388)] = 9854, + [SMALL_STATE(2389)] = 9862, + [SMALL_STATE(2390)] = 9870, + [SMALL_STATE(2391)] = 9878, + [SMALL_STATE(2392)] = 9886, + [SMALL_STATE(2393)] = 9894, + [SMALL_STATE(2394)] = 9902, + [SMALL_STATE(2395)] = 9910, + [SMALL_STATE(2396)] = 9918, + [SMALL_STATE(2397)] = 9926, + [SMALL_STATE(2398)] = 9934, + [SMALL_STATE(2399)] = 9942, + [SMALL_STATE(2400)] = 9950, + [SMALL_STATE(2401)] = 9958, + [SMALL_STATE(2402)] = 9966, + [SMALL_STATE(2403)] = 9974, + [SMALL_STATE(2404)] = 9982, + [SMALL_STATE(2405)] = 9990, + [SMALL_STATE(2406)] = 9998, + [SMALL_STATE(2407)] = 10006, + [SMALL_STATE(2408)] = 10014, + [SMALL_STATE(2409)] = 10022, + [SMALL_STATE(2410)] = 10030, + [SMALL_STATE(2411)] = 10038, + [SMALL_STATE(2412)] = 10046, + [SMALL_STATE(2413)] = 10054, + [SMALL_STATE(2414)] = 10062, + [SMALL_STATE(2415)] = 10070, + [SMALL_STATE(2416)] = 10078, + [SMALL_STATE(2417)] = 10086, + [SMALL_STATE(2418)] = 10094, + [SMALL_STATE(2419)] = 10102, + [SMALL_STATE(2420)] = 10110, + [SMALL_STATE(2421)] = 10118, + [SMALL_STATE(2422)] = 10126, + [SMALL_STATE(2423)] = 10134, + [SMALL_STATE(2424)] = 10142, + [SMALL_STATE(2425)] = 10150, + [SMALL_STATE(2426)] = 10158, + [SMALL_STATE(2427)] = 10166, + [SMALL_STATE(2428)] = 10174, + [SMALL_STATE(2429)] = 10182, + [SMALL_STATE(2430)] = 10190, + [SMALL_STATE(2431)] = 10198, + [SMALL_STATE(2432)] = 10206, + [SMALL_STATE(2433)] = 10214, + [SMALL_STATE(2434)] = 10222, + [SMALL_STATE(2435)] = 10230, + [SMALL_STATE(2436)] = 10238, + [SMALL_STATE(2437)] = 10246, + [SMALL_STATE(2438)] = 10254, + [SMALL_STATE(2439)] = 10262, + [SMALL_STATE(2440)] = 10270, + [SMALL_STATE(2441)] = 10278, + [SMALL_STATE(2442)] = 10286, + [SMALL_STATE(2443)] = 10294, + [SMALL_STATE(2444)] = 10302, + [SMALL_STATE(2445)] = 10310, + [SMALL_STATE(2446)] = 10318, + [SMALL_STATE(2447)] = 10326, + [SMALL_STATE(2448)] = 10334, + [SMALL_STATE(2449)] = 10342, + [SMALL_STATE(2450)] = 10350, + [SMALL_STATE(2451)] = 10358, + [SMALL_STATE(2452)] = 10366, + [SMALL_STATE(2453)] = 10374, + [SMALL_STATE(2454)] = 10382, + [SMALL_STATE(2455)] = 10390, + [SMALL_STATE(2456)] = 10398, + [SMALL_STATE(2457)] = 10406, + [SMALL_STATE(2458)] = 10414, + [SMALL_STATE(2459)] = 10422, + [SMALL_STATE(2460)] = 10430, + [SMALL_STATE(2461)] = 10438, + [SMALL_STATE(2462)] = 10446, + [SMALL_STATE(2463)] = 10454, + [SMALL_STATE(2464)] = 10462, + [SMALL_STATE(2465)] = 10470, + [SMALL_STATE(2466)] = 10478, + [SMALL_STATE(2467)] = 10486, + [SMALL_STATE(2468)] = 10494, + [SMALL_STATE(2469)] = 10502, + [SMALL_STATE(2470)] = 10510, + [SMALL_STATE(2471)] = 10518, + [SMALL_STATE(2472)] = 10526, + [SMALL_STATE(2473)] = 10534, + [SMALL_STATE(2474)] = 10542, + [SMALL_STATE(2475)] = 10550, + [SMALL_STATE(2476)] = 10558, + [SMALL_STATE(2477)] = 10566, + [SMALL_STATE(2478)] = 10574, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -461662,183 +465967,184 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 3), - [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 3), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 2), - [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 2), - [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 2), - [141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 2), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 3), - [147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 3), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(311), - [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(584), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(24), - [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(648), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(648), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 3), + [133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 3), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_displayed_equation, 2), + [139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_displayed_equation, 2), + [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 2), + [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 2), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_formula, 3), + [149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_formula, 3), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(330), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(589), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(22), [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(649), [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(649), [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(650), @@ -461853,2381 +466159,2403 @@ static const TSParseActionEntry ts_parse_actions[] = { [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(654), [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(655), [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(655), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(59), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(805), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(805), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(803), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(49), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(99), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(99), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1570), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1616), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1618), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2246), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1624), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2221), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1625), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1626), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1629), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2203), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2201), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1639), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1644), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1644), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2170), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2169), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2169), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2168), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2168), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2148), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2147), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2147), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2367), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2371), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2130), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1998), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1669), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1673), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1674), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1675), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1678), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1680), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2070), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2069), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(639), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(668), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(84), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(741), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(741), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(757), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(757), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(763), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(763), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(770), - [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(770), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(774), - [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(774), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(785), - [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(785), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(799), - [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(799), - [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(83), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1000), - [1051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1000), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(999), - [1057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(81), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(80), - [1063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(80), - [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(79), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1693), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1694), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2076), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1696), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2074), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1698), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1699), - [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1700), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2072), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2254), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1702), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1703), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1703), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2071), - [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2065), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2065), - [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2255), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2255), - [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2256), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2257), - [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2257), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2392), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2334), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2034), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2259), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1707), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1595), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1708), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1709), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1586), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1632), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2058), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2055), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(418), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(659), - [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(87), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(773), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(773), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(772), - [1190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(772), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(771), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(771), - [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(768), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(768), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(767), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(767), - [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(766), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(766), - [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(765), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(765), - [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(764), - [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(764), - [1229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(110), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1208), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1208), - [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1189), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(121), - [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(116), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(116), - [1250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(108), - [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1597), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1598), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2291), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1600), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2296), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1602), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1603), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1604), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2295), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2224), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1606), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1607), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1607), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2294), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2292), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2292), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2225), - [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2225), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2226), - [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2227), - [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2227), - [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2326), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2351), - [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2041), - [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2229), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1611), - [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1660), - [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1612), - [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1613), - [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1634), - [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1620), - [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2268), - [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2267), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(348), - [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(661), - [1442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(113), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(831), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(831), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(830), - [1454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(830), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(828), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(828), - [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(827), - [1466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(827), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(826), - [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(826), - [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(825), - [1478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(825), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(824), - [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(824), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(823), - [1490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(823), - [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(74), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(858), - [1499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(858), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(859), - [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(75), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(76), - [1511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(76), - [1514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(64), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1605), - [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1596), - [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1791), - [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1592), - [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1793), - [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1585), - [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1684), - [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1621), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1797), - [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2281), - [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1623), - [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1627), - [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1627), - [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1800), - [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1801), - [1562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1801), - [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2282), - [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2282), - [1571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2283), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2284), - [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2284), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2464), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2325), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2028), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2286), - [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1628), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1587), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1630), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1631), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1590), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1614), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1805), - [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1806), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(595), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(671), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(120), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(680), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(680), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(681), - [1646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(681), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(682), - [1652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(682), - [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(683), - [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(683), - [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(684), - [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(684), - [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(688), - [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(688), - [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(690), - [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(690), - [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(691), - [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(691), - [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(61), - [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1077), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1077), - [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1078), - [1697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(67), - [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), - [1703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1657), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1659), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1885), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1661), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1887), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1662), - [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1664), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1666), - [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1891), - [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2308), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1667), - [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1668), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1668), - [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1894), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1895), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1895), - [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2309), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2309), - [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2310), - [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2311), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2311), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2444), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2312), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1990), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2293), - [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1676), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1589), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1677), - [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1679), - [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1591), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1715), - [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1900), - [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1901), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 2, .production_id = 4), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 2, .production_id = 4), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 1, .production_id = 4), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 1, .production_id = 4), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 2, .production_id = 4), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 2, .production_id = 4), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 1, .production_id = 4), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 1, .production_id = 4), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [1860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, .production_id = 4), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, .production_id = 4), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, .production_id = 4), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, .production_id = 4), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 1, .production_id = 4), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 1, .production_id = 4), - [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 2, .production_id = 4), - [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 2, .production_id = 4), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 2, .production_id = 4), - [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 2, .production_id = 4), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 1, .production_id = 4), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 1, .production_id = 4), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 1, .production_id = 4), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 1, .production_id = 4), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, .production_id = 4), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2, .production_id = 4), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 1, .production_id = 4), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 1, .production_id = 4), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 2, .production_id = 4), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 2, .production_id = 4), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), - [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(311), - [1955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(584), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(192), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(59), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(805), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(805), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(803), - [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(49), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(99), - [1981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(99), - [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(106), - [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1570), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1616), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1618), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2246), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1624), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2221), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1625), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1626), - [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1629), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2203), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2201), - [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1639), - [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1644), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1644), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2170), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2169), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2169), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2168), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2168), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2148), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2147), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2147), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2367), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2371), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2130), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1998), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1669), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1673), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1674), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1675), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1678), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1680), - [2083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2070), - [2086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2069), - [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 2, .production_id = 5), - [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 2, .production_id = 5), - [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 1, .production_id = 5), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 1, .production_id = 5), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(639), - [2104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(668), - [2107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(200), - [2110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(83), - [2113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1000), - [2116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1000), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(999), - [2122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(81), - [2125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(80), - [2128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(80), - [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(79), - [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1693), - [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1694), - [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2076), - [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1696), - [2146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2074), - [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1698), - [2152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1699), - [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1700), - [2158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2072), - [2161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2254), - [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1702), - [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1703), - [2170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1703), - [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2071), - [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2065), - [2179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2065), - [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2255), - [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2255), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2256), - [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2257), - [2194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2257), - [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2392), - [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2334), - [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2034), - [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2259), - [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1707), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1595), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1708), - [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1709), - [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1586), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1632), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2058), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2055), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(595), - [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(671), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(202), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(61), - [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1077), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1077), - [2253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1078), - [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(67), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(68), - [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(68), - [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(85), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1657), - [2271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1659), - [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1885), - [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1661), - [2280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1887), - [2283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1662), - [2286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1664), - [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1666), - [2292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1891), - [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2308), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1667), - [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1668), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1668), - [2307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1894), - [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1895), - [2313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1895), - [2316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2309), - [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2309), - [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2310), - [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2311), - [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2311), - [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2444), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2312), - [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1990), - [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2293), - [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1676), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1589), - [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1677), - [2352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1679), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1591), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1715), - [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1900), - [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1901), - [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(418), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(659), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(203), - [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(110), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1208), - [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1208), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1189), - [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(121), - [2391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(116), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(116), - [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(108), - [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1597), - [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1598), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2291), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1600), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2296), - [2415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1602), - [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1603), - [2421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1604), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2295), - [2427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2224), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1606), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1607), - [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1607), - [2439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2294), - [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2292), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2292), - [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2225), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2225), - [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2226), - [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2227), - [2460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2227), - [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2326), - [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2351), - [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2041), - [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2229), - [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1611), - [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1660), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1612), - [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1613), - [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1634), - [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1620), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2268), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2267), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(348), - [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(661), - [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(205), - [2510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(74), - [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(858), - [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(858), - [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(859), - [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(75), - [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(76), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(76), - [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(64), - [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1605), - [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1596), - [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1791), - [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1592), - [2546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1793), - [2549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1585), - [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1684), - [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1621), - [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1797), - [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2281), - [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1623), - [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1627), - [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1627), - [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1800), - [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1801), - [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1801), - [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2282), - [2585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2282), - [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2283), - [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2284), - [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2284), - [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2464), - [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2325), - [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2028), - [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2286), - [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1628), - [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1587), - [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1630), - [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1631), - [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1590), - [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1614), - [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1805), - [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1806), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1, .production_id = 6), - [2637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1, .production_id = 6), - [2639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), - [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(311), - [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(584), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), - [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(805), - [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(805), - [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(803), - [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1616), - [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1618), - [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2246), - [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1624), - [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2221), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1625), - [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1626), - [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1629), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2203), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2201), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1639), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1644), - [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1644), - [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2170), - [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2169), - [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2169), - [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2168), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2168), - [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2148), - [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2147), - [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2147), - [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2367), - [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2371), - [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2130), - [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1998), - [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1669), - [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1673), - [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1674), - [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1675), - [2745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1678), - [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1680), - [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2070), - [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2069), - [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(348), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(661), - [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(858), - [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(858), - [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(859), - [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1605), - [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1596), - [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1791), - [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1592), - [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1793), - [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1585), - [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1684), - [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1621), - [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1797), - [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2281), - [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1623), - [2805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1627), - [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1627), - [2811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1800), - [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1801), - [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1801), - [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2282), - [2823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2282), - [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2283), - [2829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2284), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2284), - [2835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2464), - [2838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2325), - [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2028), - [2844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2286), - [2847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1628), - [2850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1587), - [2853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1630), - [2856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1631), - [2859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1590), - [2862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1614), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1805), - [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1806), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(418), - [2874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(659), - [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1208), - [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1208), - [2883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1189), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1597), - [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1598), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2291), - [2895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1600), - [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2296), - [2901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1602), - [2904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1603), - [2907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1604), - [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2295), - [2913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2224), - [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1606), - [2919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1607), - [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1607), - [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2294), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2292), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2292), - [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2225), - [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2225), - [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2226), - [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2227), - [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2227), - [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2326), - [2952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2351), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2041), - [2958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2229), - [2961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1611), - [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1660), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1612), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1613), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1634), - [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1620), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2268), - [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2267), - [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(639), - [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(668), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1000), - [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1000), - [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(999), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1693), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1694), - [3006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2076), - [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1696), - [3012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2074), - [3015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1698), - [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1699), - [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1700), - [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2072), - [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2254), - [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1702), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1703), - [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1703), - [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2071), - [3042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2065), - [3045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2065), - [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2255), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2255), - [3054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2256), - [3057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2257), - [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2257), - [3063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2392), - [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2334), - [3069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2034), - [3072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2259), - [3075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1707), - [3078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1595), - [3081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1708), - [3084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1709), - [3087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1586), - [3090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1632), - [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2058), - [3096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2055), - [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(595), - [3102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(671), - [3105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1077), - [3108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1077), - [3111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1078), - [3114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1657), - [3117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1659), - [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1885), - [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1661), - [3126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1887), - [3129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1662), - [3132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1664), - [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1666), - [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1891), - [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2308), - [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1667), - [3147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1668), - [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1668), - [3153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1894), - [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1895), - [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1895), - [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2309), - [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2309), - [3168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2310), - [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2311), - [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2311), - [3177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2444), - [3180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2312), - [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1990), - [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2293), - [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1676), - [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1589), - [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1677), - [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1679), - [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1591), - [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1715), - [3207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1900), - [3210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1901), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1287), - [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1294), - [3317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(220), - [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(231), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), - [3325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(114), - [3328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1392), - [3331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1392), - [3334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1393), - [3337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(112), - [3340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(111), - [3343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(111), - [3346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(109), - [3349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1570), - [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1701), - [3355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1697), - [3358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2073), - [3361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1695), - [3364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2075), - [3367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1691), - [3370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1690), - [3373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1688), - [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2079), - [3379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2155), - [3382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1686), - [3385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1685), - [3388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1685), - [3391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2082), - [3394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2083), - [3397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2083), - [3400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2154), - [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2154), - [3406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2150), - [3409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2149), - [3412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2149), - [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2383), - [3418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2366), - [3421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1934), - [3424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2146), - [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1584), - [3430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1601), - [3433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1683), - [3436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1682), - [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1608), - [3442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1689), - [3445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2088), - [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2089), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1287), - [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1294), - [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(234), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), - [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(227), - [3485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(114), - [3488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1392), - [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1392), - [3494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1393), - [3497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(112), - [3500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(111), - [3503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(111), - [3506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(109), - [3509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1570), - [3512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1701), - [3515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1697), - [3518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2073), - [3521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1695), - [3524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2075), - [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1691), - [3530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1690), - [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1688), - [3536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2079), - [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2155), - [3542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1686), - [3545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1685), - [3548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1685), - [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2082), - [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2083), - [3557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2083), - [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2154), - [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2154), - [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2150), - [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2149), - [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2149), - [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2383), - [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2366), - [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1934), - [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2146), - [3587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1584), - [3590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1601), - [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1683), - [3596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1682), - [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1608), - [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1689), - [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2088), - [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2089), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1290), - [3756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1301), - [3759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(243), - [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(228), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), - [3767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(45), - [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1473), - [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1473), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1474), - [3779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(88), - [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(62), - [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(62), - [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(55), - [3791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1655), - [3794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1654), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2151), - [3800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1653), - [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2153), - [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1652), - [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1651), - [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1650), - [3815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2157), - [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2116), - [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1649), - [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1648), - [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1648), - [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2160), - [3833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2161), - [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2161), - [3839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2115), - [3842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2115), - [3845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2114), - [3848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2084), - [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2084), - [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2358), - [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2384), - [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1896), - [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2080), - [3866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1647), - [3869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1610), - [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1646), - [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1645), - [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1615), - [3881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1672), - [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2166), - [3887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2167), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(244), - [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(44), - [3896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(43), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(43), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1290), - [3925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1301), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(45), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), - [3933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1473), - [3936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1473), - [3939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1474), - [3942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(57), - [3945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(56), - [3948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(56), - [3951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(55), - [3954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1655), - [3957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1654), - [3960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2151), - [3963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1653), - [3966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2153), - [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1652), - [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1651), - [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1650), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2157), - [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2116), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1649), - [3987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1648), - [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1648), - [3993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2160), - [3996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2161), - [3999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2161), - [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2115), - [4005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2115), - [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2114), - [4011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2084), - [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2084), - [4017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2358), - [4020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2384), - [4023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1896), - [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2080), - [4029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1647), - [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1610), - [4035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1646), - [4038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1645), - [4041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1615), - [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1672), - [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2166), - [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2167), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1287), - [4078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1294), - [4081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1392), - [4084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1392), - [4087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1393), - [4090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1701), - [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1697), - [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2073), - [4099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1695), - [4102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2075), - [4105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1691), - [4108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1690), - [4111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1688), - [4114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2079), - [4117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2155), - [4120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1686), - [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1685), - [4126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1685), - [4129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2082), - [4132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2083), - [4135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2083), - [4138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2154), - [4141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2154), - [4144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2150), - [4147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2149), - [4150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2149), - [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2383), - [4156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2366), - [4159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1934), - [4162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2146), - [4165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1584), - [4168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1601), - [4171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1683), - [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1682), - [4177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1608), - [4180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1689), - [4183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2088), - [4186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2089), - [4189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1290), - [4192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1301), - [4195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1473), - [4198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1473), - [4201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1474), - [4204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1655), - [4207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1654), - [4210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2151), - [4213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1653), - [4216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2153), - [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1652), - [4222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1651), - [4225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1650), - [4228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2157), - [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2116), - [4234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1649), - [4237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1648), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1648), - [4243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2160), - [4246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2161), - [4249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2161), - [4252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2115), - [4255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2115), - [4258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2114), - [4261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2084), - [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2084), - [4267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2358), - [4270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2384), - [4273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1896), - [4276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2080), - [4279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1647), - [4282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1610), - [4285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1646), - [4288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1645), - [4291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1615), - [4294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1672), - [4297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2166), - [4300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2167), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 4), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 4), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 3, .production_id = 4), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 3, .production_id = 4), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), - [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), - [4401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(652), - [4404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(652), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), - [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), - [4411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(653), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(653), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 3, .production_id = 4), - [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 3, .production_id = 4), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), - [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), - [4425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(651), - [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(651), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 3, .production_id = 4), - [4433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 3, .production_id = 4), - [4435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 3, .production_id = 4), - [4437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 3, .production_id = 4), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 3, .production_id = 4), - [4441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 3, .production_id = 4), - [4443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 3, .production_id = 4), - [4445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 3, .production_id = 4), - [4447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 1, .production_id = 2), - [4449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 1, .production_id = 2), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), - [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), - [4457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(655), - [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(655), - [4463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 2, .production_id = 14), - [4465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 2, .production_id = 14), - [4467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), - [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), - [4471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(230), - [4474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(59), - [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), - [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), - [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(654), - [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(654), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section, 1), - [4489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section, 1), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), - [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), - [4495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(648), - [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(648), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), - [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), - [4505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(649), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(649), - [4511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), - [4515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(650), - [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(650), - [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(229), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(61), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(222), - [4534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(83), - [4537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(691), - [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(691), - [4543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(690), - [4546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(690), - [4549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(688), - [4552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(688), - [4555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(684), - [4558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(684), - [4561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(683), - [4564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(683), - [4567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(682), - [4570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(682), - [4573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(681), - [4576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(681), - [4579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(680), - [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(680), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 37), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 37), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(799), - [4594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(799), - [4597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(785), - [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(785), - [4603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(774), - [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(774), - [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(770), - [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(770), - [4615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(763), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(763), - [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(760), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(760), - [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(757), - [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(757), - [4633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(741), - [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(741), - [4639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(773), - [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(773), - [4645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(772), - [4648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(772), - [4651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(771), - [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(771), - [4657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(768), - [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(768), - [4663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(767), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(767), - [4669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(766), - [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(766), - [4675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(765), - [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(765), - [4681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(764), - [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(764), - [4687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(238), - [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(110), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 1, .production_id = 1), - [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 1, .production_id = 1), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(831), - [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(831), - [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(830), - [4712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(830), - [4715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(828), - [4718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(828), - [4721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(827), - [4724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(827), - [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(826), - [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(826), - [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(825), - [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(825), - [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(824), - [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(824), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 2, .production_id = 11), - [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 2, .production_id = 11), - [4751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(823), - [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(823), - [4757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(237), - [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(74), - [4763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 1, .production_id = 2), - [4765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 1, .production_id = 2), - [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), - [4769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), - [4771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 1, .production_id = 2), - [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 1, .production_id = 2), - [4775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), - [4777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), - [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), - [4781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), - [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), - [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), - [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), - [4789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), - [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), - [4793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), - [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 58), - [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 58), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1487), - [4810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1497), - [4813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1509), - [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1509), - [4819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1506), - [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1710), - [4825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1711), - [4828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1979), - [4831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1718), - [4834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1981), - [4837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1726), - [4840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1725), - [4843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1724), - [4846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1985), - [4849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2253), - [4852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1723), - [4855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1722), - [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1722), - [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1988), - [4864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1989), - [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1989), - [4870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2252), - [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2252), - [4876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2236), - [4879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2234), - [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2234), - [4885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2423), - [4888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2339), - [4891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1943), - [4894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(2233), - [4897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1721), - [4900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1594), - [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1720), - [4906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1719), - [4909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1583), - [4912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1714), - [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1994), - [4918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 22), SHIFT_REPEAT(1995), - [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 7), - [4923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 7), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 38), - [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 38), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 3, .production_id = 37), - [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 3, .production_id = 37), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minted_environment, 3, .production_id = 43), - [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minted_environment, 3, .production_id = 43), - [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 2, .production_id = 16), - [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 2, .production_id = 16), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 2, .production_id = 16), - [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 2, .production_id = 16), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 2, .production_id = 17), - [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 2, .production_id = 17), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 2, .production_id = 16), - [4967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 2, .production_id = 16), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 2, .production_id = 16), - [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 2, .production_id = 16), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 2, .production_id = 15), - [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 2, .production_id = 15), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 13), - [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 13), - [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_reference, 2, .production_id = 11), - [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_reference, 2, .production_id = 11), - [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 2, .production_id = 15), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 2, .production_id = 15), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_pycode, 3), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_pycode, 3), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 2, .production_id = 8), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 2, .production_id = 8), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_listing, 3, .production_id = 46), - [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_listing, 3, .production_id = 46), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_verbatim, 3, .production_id = 46), - [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_verbatim, 3, .production_id = 46), - [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_comment, 3, .production_id = 46), - [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_comment, 3, .production_id = 46), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text, 3, .production_id = 45), - [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text, 3, .production_id = 45), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, .production_id = 23), - [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 3, .production_id = 23), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 3), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 3), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2, .production_id = 11), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2, .production_id = 11), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_set, 3), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_set, 3), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 2), - [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 2), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_set, 2), - [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_set, 2), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 2), - [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 2), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 3, .production_id = 28), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 3, .production_id = 28), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 3, .production_id = 29), - [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 3, .production_id = 29), - [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 3, .production_id = 30), - [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 3, .production_id = 30), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 3, .production_id = 29), - [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 3, .production_id = 29), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 3, .production_id = 29), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 3, .production_id = 29), - [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 3, .production_id = 29), - [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 3, .production_id = 29), - [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_include, 3, .production_id = 31), - [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_include, 3, .production_id = 31), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3, .production_id = 32), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 3, .production_id = 32), - [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 2), - [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 2), - [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 2), - [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 2), - [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, .production_id = 33), - [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, .production_id = 33), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 10), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 10), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference_range, 3, .production_id = 34), - [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference_range, 3, .production_id = 34), - [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), - [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), - [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), - [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), - [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), - [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_number, 3, .production_id = 35), - [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_number, 3, .production_id = 35), - [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 3, .production_id = 36), - [5125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 3, .production_id = 36), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 2, .production_id = 18), - [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 2, .production_id = 18), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 24), - [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 24), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 37), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 37), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 2, .production_id = 16), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 2, .production_id = 16), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 2, .production_id = 9), - [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 2, .production_id = 9), - [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end, 2, .production_id = 11), - [5151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end, 2, .production_id = 11), - [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), - [5155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), - [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 3, .production_id = 39), - [5159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 3, .production_id = 39), - [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 2, .production_id = 9), - [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 2, .production_id = 9), - [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_environment, 3, .production_id = 40), - [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_environment, 3, .production_id = 40), - [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 8), - [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 8), - [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 3, .production_id = 36), - [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 3, .production_id = 36), - [5177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_listing_environment, 3, .production_id = 42), - [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_listing_environment, 3, .production_id = 42), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 2, .production_id = 16), - [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 2, .production_id = 16), - [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pycode_environment, 3, .production_id = 44), - [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pycode_environment, 3, .production_id = 44), - [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_text, 3, .production_id = 45), - [5193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group_text, 3, .production_id = 45), - [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_minted, 3, .production_id = 46), - [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_minted, 3, .production_id = 46), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 3), - [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 3), - [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 48), - [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 48), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path, 3, .production_id = 48), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path, 3, .production_id = 48), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 6, .production_id = 75), - [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 6, .production_id = 75), - [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 61), - [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 61), - [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 49), - [5225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 49), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 5, .production_id = 74), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 5, .production_id = 74), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 5, .production_id = 73), - [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 5, .production_id = 73), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 72), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 72), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 71), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 71), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 5, .production_id = 70), - [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 5, .production_id = 70), - [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 47), - [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 47), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 5, .production_id = 69), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 5, .production_id = 69), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_environment, 3, .production_id = 41), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_environment, 3, .production_id = 41), - [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 3), - [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 3), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 5, .production_id = 68), - [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 5, .production_id = 68), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 65), - [5271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 65), - [5273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 63), - [5275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 63), - [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_pycode, 2), - [5279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_pycode, 2), - [5281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_minted, 2, .production_id = 12), - [5283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_minted, 2, .production_id = 12), - [5285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_listing, 2, .production_id = 12), - [5287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_listing, 2, .production_id = 12), - [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_verbatim, 2, .production_id = 12), - [5291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_verbatim, 2, .production_id = 12), - [5293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_comment, 2, .production_id = 12), - [5295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_comment, 2, .production_id = 12), - [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 4, .production_id = 59), - [5299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 4, .production_id = 59), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 57), - [5305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 57), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), - [5311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1), - [5313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), - [5317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), - [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 56), - [5321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 56), - [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 4, .production_id = 55), - [5325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 4, .production_id = 55), - [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 2), - [5329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 2), - [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 4, .production_id = 54), - [5333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 4, .production_id = 54), - [5335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 2), - [5337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 2), - [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 4, .production_id = 53), - [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 4, .production_id = 53), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 4, .production_id = 52), - [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 4, .production_id = 52), - [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 4, .production_id = 50), - [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 4, .production_id = 50), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 2, .production_id = 16), - [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 2, .production_id = 16), - [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 2, .production_id = 11), - [5357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 2, .production_id = 11), - [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 11), - [5361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 11), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_command_definition, 2, .production_id = 21), - [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_command_definition, 2, .production_id = 21), - [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 2, .production_id = 20), - [5371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 2, .production_id = 20), - [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 2, .production_id = 11), - [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 2, .production_id = 11), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, .production_id = 19), - [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, .production_id = 19), - [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 45), - [5385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 45), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [5397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 3, .production_id = 24), - [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 3, .production_id = 24), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 2), - [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 2), - [5411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 3), - [5413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 3), - [5415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(234), - [5418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(114), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(217), - [5430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(45), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(224), - [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 26), SHIFT_REPEAT(58), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [5467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(1580), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), - [5472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(1571), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glob_pattern, 1), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 3), - [5591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 3), - [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 1, .production_id = 27), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [5615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 64), SHIFT_REPEAT(2405), - [5618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 64), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [5660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 66), SHIFT_REPEAT(1271), - [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 66), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 2), - [5673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 2), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 62), - [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 62), SHIFT_REPEAT(1220), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 47), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 3, .production_id = 60), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 62), SHIFT_REPEAT(1221), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_argc, 3, .production_id = 67), - [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 45), - [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 48), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_command_name, 3, .production_id = 51), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [5899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_listing, 1, .production_id = 3), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(656), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(656), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(116), + [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(782), + [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(782), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(764), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(111), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(106), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(105), + [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1577), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1617), + [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1618), + [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2260), + [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1628), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2235), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1630), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1631), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1634), + [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2215), + [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2207), + [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1647), + [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1648), + [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1648), + [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2183), + [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2182), + [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2182), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2162), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2162), + [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2161), + [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2160), + [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2160), + [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2388), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2432), + [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2134), + [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2108), + [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1678), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1679), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1680), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1681), + [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1697), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1698), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2081), + [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2080), + [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2070), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(642), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(666), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(79), + [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(672), + [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(672), + [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(745), + [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(745), + [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(759), + [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(759), + [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(762), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(762), + [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(766), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(766), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(792), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(792), + [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(804), + [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(804), + [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(805), + [1021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(805), + [1024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(42), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(971), + [1030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(971), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(969), + [1036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(84), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), + [1042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(85), + [1045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(87), + [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1702), + [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1703), + [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2068), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1705), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2067), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1707), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1708), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1709), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2058), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2268), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1711), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1712), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1712), + [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2054), + [1090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2052), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2052), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2269), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2269), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2270), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2271), + [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2271), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2416), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2352), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2044), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2273), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1716), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1593), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1717), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1718), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1598), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1706), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2028), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2025), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2024), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(420), + [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(660), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(104), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(765), + [1246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(765), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(760), + [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(758), + [1258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(758), + [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(757), + [1264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(757), + [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(756), + [1270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(756), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(755), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(755), + [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(754), + [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(754), + [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(753), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(753), + [1291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(113), + [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1178), + [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1178), + [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1177), + [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(55), + [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), + [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(91), + [1312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(88), + [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1605), + [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1606), + [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2306), + [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1608), + [1327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2283), + [1330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1610), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1611), + [1336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1612), + [1339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2282), + [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2238), + [1345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1614), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1615), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1615), + [1354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2281), + [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2279), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2279), + [1363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2239), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2239), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2240), + [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2241), + [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2241), + [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2354), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2368), + [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2049), + [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2243), + [1390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1619), + [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1625), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1620), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1621), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1613), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1667), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2266), + [1411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2253), + [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2252), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(346), + [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(648), + [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(115), + [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(816), + [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(816), + [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(818), + [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(818), + [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(819), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(819), + [1476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(820), + [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(820), + [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(821), + [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(821), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(683), + [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(683), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(814), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(814), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(813), + [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(813), + [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(60), + [1509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(862), + [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(862), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(863), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(68), + [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(69), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1632), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1629), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1814), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1604), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1815), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1601), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1600), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1599), + [1554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1816), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2295), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1594), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1592), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1592), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1817), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1818), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1818), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2296), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2296), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2297), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2298), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2298), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2452), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2345), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2013), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2300), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1633), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1590), + [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1627), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1603), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1609), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1721), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1820), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1821), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1822), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(549), + [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(665), + [1642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(117), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(693), + [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(693), + [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(694), + [1654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(694), + [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(695), + [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(695), + [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(696), + [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(696), + [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(697), + [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(697), + [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(699), + [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(699), + [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(700), + [1684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(700), + [1687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(703), + [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(703), + [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(62), + [1696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1082), + [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1082), + [1702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1083), + [1705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(102), + [1708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(121), + [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(121), + [1714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(118), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [1719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1666), + [1722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1670), + [1725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1896), + [1728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1671), + [1731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1898), + [1734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1673), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1677), + [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1685), + [1743] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1902), + [1746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2322), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1686), + [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1690), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1690), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1905), + [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1906), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1906), + [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2323), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2323), + [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2324), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2325), + [1779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2325), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2454), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2327), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2003), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2059), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1692), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1616), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1696), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1699), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1623), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1720), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1911), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1912), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1913), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 2, .production_id = 4), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 2, .production_id = 4), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 1, .production_id = 4), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 1, .production_id = 4), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 2, .production_id = 4), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 2, .production_id = 4), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 1, .production_id = 4), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 1, .production_id = 4), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, .production_id = 4), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, .production_id = 4), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 2, .production_id = 4), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 2, .production_id = 4), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 1, .production_id = 4), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 1, .production_id = 4), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 2, .production_id = 4), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 2, .production_id = 4), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 2, .production_id = 4), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 2, .production_id = 4), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 1, .production_id = 4), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 1, .production_id = 4), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 1, .production_id = 4), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 1, .production_id = 4), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 2, .production_id = 4), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 2, .production_id = 4), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 1, .production_id = 4), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 1, .production_id = 4), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 2, .production_id = 4), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 2, .production_id = 4), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 2, .production_id = 5), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 2, .production_id = 5), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(330), + [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(589), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(193), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), + [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(116), + [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(782), + [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(782), + [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(764), + [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(111), + [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(106), + [2010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(106), + [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(105), + [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1577), + [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1617), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1618), + [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2260), + [2028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1628), + [2031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2235), + [2034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1630), + [2037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1631), + [2040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1634), + [2043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2215), + [2046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2207), + [2049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1647), + [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1648), + [2055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1648), + [2058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2183), + [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2182), + [2064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2182), + [2067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2162), + [2070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2162), + [2073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2161), + [2076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2160), + [2079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2160), + [2082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2388), + [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2432), + [2088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2134), + [2091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2108), + [2094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1678), + [2097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1679), + [2100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1680), + [2103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1681), + [2106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1697), + [2109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1698), + [2112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2081), + [2115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2080), + [2118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2070), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 1, .production_id = 5), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 1, .production_id = 5), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(420), + [2134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(660), + [2137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(198), + [2140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(113), + [2143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1178), + [2146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1178), + [2149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1177), + [2152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(55), + [2155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(91), + [2158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(91), + [2161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(88), + [2164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1605), + [2167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1606), + [2170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2306), + [2173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1608), + [2176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2283), + [2179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1610), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1611), + [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1612), + [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2282), + [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2238), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1614), + [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1615), + [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1615), + [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2281), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2279), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2279), + [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2239), + [2215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2239), + [2218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2240), + [2221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2241), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2241), + [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2354), + [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2368), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2049), + [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2243), + [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1619), + [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1625), + [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1620), + [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1621), + [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1613), + [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1667), + [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2266), + [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2253), + [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2252), + [2266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(346), + [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(648), + [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(200), + [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(60), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(862), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(862), + [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(863), + [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(66), + [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(68), + [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(68), + [2296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(69), + [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1632), + [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1629), + [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1814), + [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1604), + [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1815), + [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1601), + [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1600), + [2320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1599), + [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1816), + [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2295), + [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1594), + [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1592), + [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1592), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1817), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1818), + [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1818), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2296), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2296), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2297), + [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2298), + [2359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2298), + [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2452), + [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2345), + [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2013), + [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2300), + [2374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1633), + [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1590), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1627), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1603), + [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1609), + [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1721), + [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1820), + [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1821), + [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1822), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(549), + [2408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(665), + [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(205), + [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(62), + [2417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1082), + [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1082), + [2423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1083), + [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(102), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(121), + [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(121), + [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(118), + [2438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1666), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1670), + [2444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1896), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1671), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1898), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1673), + [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1677), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1685), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1902), + [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2322), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1686), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1690), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1690), + [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1905), + [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1906), + [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1906), + [2486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2323), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2323), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2324), + [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2325), + [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2325), + [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2454), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2327), + [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2003), + [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2059), + [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1692), + [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1616), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1696), + [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1699), + [2525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1623), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1720), + [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1911), + [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1912), + [2537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1913), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(642), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(666), + [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(206), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(42), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(971), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(971), + [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(969), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(84), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(85), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(85), + [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(87), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1702), + [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1703), + [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2068), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1705), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2067), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1707), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1708), + [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1709), + [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2058), + [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2268), + [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1711), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1712), + [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1712), + [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2054), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2052), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2052), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2269), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2269), + [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2270), + [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2271), + [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2271), + [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2416), + [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2352), + [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2044), + [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2273), + [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1716), + [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1593), + [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1717), + [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1718), + [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1598), + [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(1706), + [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2028), + [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2025), + [2672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_part_repeat1, 2), SHIFT_REPEAT(2024), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1, .production_id = 6), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1, .production_id = 6), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), + [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(330), + [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(589), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), + [2689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(782), + [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(782), + [2695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(764), + [2698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1617), + [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1618), + [2704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2260), + [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1628), + [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2235), + [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1630), + [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1631), + [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1634), + [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2215), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2207), + [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1647), + [2731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1648), + [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1648), + [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2183), + [2740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2182), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2182), + [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2162), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2162), + [2752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2161), + [2755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2160), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2160), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2388), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2432), + [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2134), + [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2108), + [2773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1678), + [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1679), + [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1680), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1681), + [2785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1697), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1698), + [2791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2081), + [2794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2080), + [2797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(420), + [2800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(660), + [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1178), + [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1178), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1177), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1605), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1606), + [2818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2306), + [2821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1608), + [2824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2283), + [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1610), + [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1611), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1612), + [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2282), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2238), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1614), + [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1615), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1615), + [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2281), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2279), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2279), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2239), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2239), + [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2240), + [2869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2241), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2241), + [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2354), + [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2368), + [2881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2049), + [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2243), + [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1619), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1625), + [2893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1620), + [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1621), + [2899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1613), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1667), + [2905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2266), + [2908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2253), + [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(346), + [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(648), + [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(862), + [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(862), + [2923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(863), + [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1632), + [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1629), + [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1814), + [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1604), + [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1815), + [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1601), + [2944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1600), + [2947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1599), + [2950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1816), + [2953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2295), + [2956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1594), + [2959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1592), + [2962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1592), + [2965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1817), + [2968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1818), + [2971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1818), + [2974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2296), + [2977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2296), + [2980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2297), + [2983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2298), + [2986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2298), + [2989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2452), + [2992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2345), + [2995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2013), + [2998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2300), + [3001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1633), + [3004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1590), + [3007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1627), + [3010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1603), + [3013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1609), + [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1721), + [3019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1820), + [3022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1821), + [3025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(549), + [3028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(665), + [3031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1082), + [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1082), + [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1083), + [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1666), + [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1670), + [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1896), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1671), + [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1898), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1673), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1677), + [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1685), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1902), + [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2322), + [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1686), + [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1690), + [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1690), + [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1905), + [3082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1906), + [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1906), + [3088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2323), + [3091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2323), + [3094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2324), + [3097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2325), + [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2325), + [3103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2454), + [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2327), + [3109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2003), + [3112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2059), + [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1692), + [3118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1616), + [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1696), + [3124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1699), + [3127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1623), + [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1720), + [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1911), + [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1912), + [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(642), + [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(666), + [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(971), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(971), + [3151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(969), + [3154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1702), + [3157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1703), + [3160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2068), + [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1705), + [3166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2067), + [3169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1707), + [3172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1708), + [3175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1709), + [3178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2058), + [3181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2268), + [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1711), + [3187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1712), + [3190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1712), + [3193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2054), + [3196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2052), + [3199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2052), + [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2269), + [3205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2269), + [3208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2270), + [3211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2271), + [3214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2271), + [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2416), + [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2352), + [3223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2044), + [3226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2273), + [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1716), + [3232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1593), + [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1717), + [3238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1718), + [3241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1598), + [3244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1706), + [3247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2028), + [3250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2025), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [3349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1294), + [3352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1299), + [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(219), + [3358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(230), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), + [3363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(100), + [3366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1396), + [3369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1396), + [3372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1397), + [3375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(99), + [3378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(98), + [3381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(98), + [3384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(97), + [3387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1577), + [3390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1695), + [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1694), + [3396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2086), + [3399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1693), + [3402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2088), + [3405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1591), + [3408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1691), + [3411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1689), + [3414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2092), + [3417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2176), + [3420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1688), + [3423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1687), + [3426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1687), + [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2095), + [3432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2096), + [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2096), + [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2169), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2169), + [3444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2168), + [3447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2166), + [3450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2166), + [3453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2405), + [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2380), + [3459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1947), + [3462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2164), + [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1684), + [3468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1641), + [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1683), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1682), + [3477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1646), + [3480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(1652), + [3483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2101), + [3486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2102), + [3489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_brack_group_repeat1, 2), SHIFT_REPEAT(2008), + [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [3506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1294), + [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1299), + [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(225), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), + [3521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(226), + [3524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(100), + [3527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1396), + [3530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1396), + [3533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1397), + [3536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(99), + [3539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(98), + [3542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(98), + [3545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(97), + [3548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1577), + [3551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1695), + [3554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1694), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2086), + [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1693), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2088), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1591), + [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1691), + [3572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1689), + [3575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2092), + [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2176), + [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1688), + [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1687), + [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1687), + [3590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2095), + [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2096), + [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2096), + [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2169), + [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2169), + [3605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2168), + [3608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2166), + [3611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2166), + [3614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2405), + [3617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2380), + [3620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1947), + [3623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2164), + [3626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1684), + [3629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1641), + [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1683), + [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1682), + [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1646), + [3641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(1652), + [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2101), + [3647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2102), + [3650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mixed_group_repeat1, 2), SHIFT_REPEAT(2008), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1300), + [3806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1306), + [3809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(243), + [3812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(235), + [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(41), + [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1480), + [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1480), + [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1481), + [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(82), + [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(67), + [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(67), + [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(50), + [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1661), + [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1660), + [3847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2165), + [3850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1659), + [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2167), + [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1658), + [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1657), + [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1656), + [3865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2171), + [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2136), + [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1655), + [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1654), + [3877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1654), + [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2174), + [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2175), + [3886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2175), + [3889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2135), + [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2135), + [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2133), + [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2132), + [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2132), + [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2377), + [3907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2398), + [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1894), + [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2131), + [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1653), + [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1650), + [3922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1651), + [3925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1649), + [3928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1602), + [3931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(1676), + [3934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2180), + [3937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2181), + [3940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(2103), + [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(244), + [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(90), + [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(93), + [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_repeat1, 2), SHIFT_REPEAT(93), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1300), + [3998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1306), + [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(41), + [4004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), + [4006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1480), + [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1480), + [4012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1481), + [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(52), + [4018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(51), + [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(51), + [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(50), + [4027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1661), + [4030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1660), + [4033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2165), + [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1659), + [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2167), + [4042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1658), + [4045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1657), + [4048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1656), + [4051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2171), + [4054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2136), + [4057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1655), + [4060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1654), + [4063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1654), + [4066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2174), + [4069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2175), + [4072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2175), + [4075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2135), + [4078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2135), + [4081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2133), + [4084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2132), + [4087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2132), + [4090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2377), + [4093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2398), + [4096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1894), + [4099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2131), + [4102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1653), + [4105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1650), + [4108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1651), + [4111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1649), + [4114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1602), + [4117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(1676), + [4120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2180), + [4123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2181), + [4126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_curly_group_impl_repeat1, 2), SHIFT_REPEAT(2103), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1294), + [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1299), + [4137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1396), + [4140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1396), + [4143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1397), + [4146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1695), + [4149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1694), + [4152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2086), + [4155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1693), + [4158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2088), + [4161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1591), + [4164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1691), + [4167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1689), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2092), + [4173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2176), + [4176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1688), + [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1687), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1687), + [4185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2095), + [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2096), + [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2096), + [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2169), + [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2169), + [4200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2168), + [4203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2166), + [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2166), + [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2405), + [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2380), + [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1947), + [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2164), + [4221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1684), + [4224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1641), + [4227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1683), + [4230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1682), + [4233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1646), + [4236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1652), + [4239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2101), + [4242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2102), + [4245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1300), + [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1306), + [4251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1480), + [4254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1480), + [4257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1481), + [4260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1661), + [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1660), + [4266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2165), + [4269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1659), + [4272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2167), + [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1658), + [4278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1657), + [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1656), + [4284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2171), + [4287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2136), + [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1655), + [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1654), + [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1654), + [4299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2174), + [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2175), + [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2175), + [4308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2135), + [4311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2135), + [4314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2133), + [4317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2132), + [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2132), + [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2377), + [4326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2398), + [4329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1894), + [4332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2131), + [4335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1653), + [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1650), + [4341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1651), + [4344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1649), + [4347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1602), + [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1676), + [4353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2180), + [4356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2181), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [4371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section, 1), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section, 1), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 2, .production_id = 14), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 2, .production_id = 14), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_part, 3, .production_id = 4), + [4457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_part, 3, .production_id = 4), + [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), + [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), + [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(222), + [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(116), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chapter, 3, .production_id = 4), + [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chapter, 3, .production_id = 4), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3, .production_id = 4), + [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3, .production_id = 4), + [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsection, 3, .production_id = 4), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsection, 3, .production_id = 4), + [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subsubsection, 3, .production_id = 4), + [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subsubsection, 3, .production_id = 4), + [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_paragraph, 3, .production_id = 4), + [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_paragraph, 3, .production_id = 4), + [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subparagraph, 3, .production_id = 4), + [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subparagraph, 3, .production_id = 4), + [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), + [4497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(656), + [4500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(656), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), + [4505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), + [4507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(655), + [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(655), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), + [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), + [4517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(654), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(654), + [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), + [4525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), + [4527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(653), + [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(653), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), + [4537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(652), + [4540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(652), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), + [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), + [4547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(651), + [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(651), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), + [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), + [4557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(650), + [4560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(650), + [4563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_command, 1, .production_id = 2), + [4565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_command, 1, .production_id = 2), + [4567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), + [4569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), + [4571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(649), + [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(649), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(229), + [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(62), + [4585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(703), + [4588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(703), + [4591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(700), + [4594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(700), + [4597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(699), + [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(699), + [4603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(697), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(697), + [4609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(696), + [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(696), + [4615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(695), + [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(695), + [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(694), + [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(694), + [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(693), + [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(693), + [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(239), + [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(42), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(805), + [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(805), + [4647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(804), + [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(804), + [4653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(792), + [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(792), + [4659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(766), + [4662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(766), + [4665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(762), + [4668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(762), + [4671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(759), + [4674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(759), + [4677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(745), + [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(745), + [4683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(672), + [4686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(672), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 38), + [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 38), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(765), + [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(765), + [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(760), + [4704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(760), + [4707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(758), + [4710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(758), + [4713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(757), + [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(757), + [4719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(756), + [4722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(756), + [4725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(755), + [4728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(755), + [4731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(754), + [4734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(754), + [4737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(753), + [4740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(753), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(231), + [4748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(113), + [4751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 1, .production_id = 1), + [4753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 1, .production_id = 1), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(816), + [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat1, 2), SHIFT_REPEAT(816), + [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(240), + [4770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(60), + [4773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(818), + [4776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat2, 2), SHIFT_REPEAT(818), + [4779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(819), + [4782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat3, 2), SHIFT_REPEAT(819), + [4785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(820), + [4788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat4, 2), SHIFT_REPEAT(820), + [4791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(821), + [4794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat5, 2), SHIFT_REPEAT(821), + [4797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(683), + [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat6, 2), SHIFT_REPEAT(683), + [4803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(814), + [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat7, 2), SHIFT_REPEAT(814), + [4809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(813), + [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section_repeat8, 2), SHIFT_REPEAT(813), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 2, .production_id = 11), + [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 2, .production_id = 11), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 1, .production_id = 2), + [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 1, .production_id = 2), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), + [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 1, .production_id = 2), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 1, .production_id = 2), + [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 1, .production_id = 2), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), + [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 1, .production_id = 2), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), + [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 1, .production_id = 2), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), + [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 1, .production_id = 2), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), + [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 1, .production_id = 2), + [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), + [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 1, .production_id = 2), + [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 59), + [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 59), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 7), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 7), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 3, .production_id = 39), + [4879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 3, .production_id = 39), + [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), + [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subparagraph_declaration, 2, .production_id = 9), + [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_text, 3, .production_id = 46), + [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group_text, 3, .production_id = 46), + [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 2, .production_id = 8), + [4891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 2, .production_id = 8), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_include, 2, .production_id = 16), + [4897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_include, 2, .production_id = 16), + [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 2, .production_id = 16), + [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 2, .production_id = 16), + [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 2, .production_id = 16), + [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 2, .production_id = 16), + [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 2, .production_id = 16), + [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 2, .production_id = 16), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bibtex_include, 2, .production_id = 16), + [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bibtex_include, 2, .production_id = 16), + [4915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 2, .production_id = 17), + [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 2, .production_id = 17), + [4919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, .production_id = 24), + [4921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 3, .production_id = 24), + [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 3), + [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 3), + [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_latex_include, 2, .production_id = 16), + [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_latex_include, 2, .production_id = 16), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_pycode, 3), + [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_pycode, 3), + [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 2, .production_id = 16), + [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 2, .production_id = 16), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_listing, 3, .production_id = 47), + [4943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_listing, 3, .production_id = 47), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_verbatim, 3, .production_id = 47), + [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_verbatim, 3, .production_id = 47), + [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_comment, 3, .production_id = 47), + [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_comment, 3, .production_id = 47), + [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text, 3, .production_id = 46), + [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text, 3, .production_id = 46), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 13), + [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_generic_command_repeat1, 1, .production_id = 13), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2, .production_id = 11), + [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2, .production_id = 11), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_set, 3), + [4969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_set, 3), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 2), + [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 2), + [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 2, .production_id = 11), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 2, .production_id = 11), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 2), + [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 2), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 3, .production_id = 29), + [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 3, .production_id = 29), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_include, 3, .production_id = 30), + [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_include, 3, .production_id = 30), + [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_biblatex_include, 3, .production_id = 31), + [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_biblatex_include, 3, .production_id = 31), + [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_graphics_include, 3, .production_id = 30), + [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_graphics_include, 3, .production_id = 30), + [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_svg_include, 3, .production_id = 30), + [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_svg_include, 3, .production_id = 30), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_set, 2), + [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_set, 2), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inkscape_include, 3, .production_id = 30), + [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inkscape_include, 3, .production_id = 30), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_include, 3, .production_id = 32), + [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_include, 3, .production_id = 32), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 3, .production_id = 33), + [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 3, .production_id = 33), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 2), + [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 2), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, .production_id = 34), + [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, .production_id = 34), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_number, 3, .production_id = 36), + [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_number, 3, .production_id = 36), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 3, .production_id = 37), + [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 3, .production_id = 37), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 3, .production_id = 37), + [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 3, .production_id = 37), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 25), + [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_definition, 3, .production_id = 25), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group, 2), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group, 2), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 38), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 3, .production_id = 38), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 3, .production_id = 38), + [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 3, .production_id = 38), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 10), + [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_itemdeclaration, 2, .production_id = 10), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_old_command_definition, 2, .production_id = 21), + [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_old_command_definition, 2, .production_id = 21), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), + [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__paragraph_declaration, 2, .production_id = 9), + [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 2, .production_id = 20), + [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 2, .production_id = 20), + [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), + [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsubsection_declaration, 2, .production_id = 9), + [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_end, 2, .production_id = 11), + [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_end, 2, .production_id = 11), + [5083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_environment, 3, .production_id = 40), + [5085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_environment, 3, .production_id = 40), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_environment, 3, .production_id = 41), + [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_environment, 3, .production_id = 41), + [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim_environment, 3, .production_id = 42), + [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim_environment, 3, .production_id = 42), + [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_listing_environment, 3, .production_id = 43), + [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_listing_environment, 3, .production_id = 43), + [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_minted_environment, 3, .production_id = 44), + [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_minted_environment, 3, .production_id = 44), + [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pycode_environment, 3, .production_id = 45), + [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pycode_environment, 3, .production_id = 45), + [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), + [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__subsection_declaration, 2, .production_id = 9), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section_declaration, 2, .production_id = 9), + [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__section_declaration, 2, .production_id = 9), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference_range, 3, .production_id = 35), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference_range, 3, .production_id = 35), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), + [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__chapter_declaration, 2, .production_id = 9), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__part_declaration, 2, .production_id = 9), + [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__part_declaration, 2, .production_id = 9), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_curly_group_minted, 3, .production_id = 47), + [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_curly_group_minted, 3, .production_id = 47), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mixed_group, 3), + [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mixed_group, 3), + [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, .production_id = 8), + [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2, .production_id = 8), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), + [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 6, .production_id = 76), + [5149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 6, .production_id = 76), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 62), + [5153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 4, .production_id = 62), + [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 49), + [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 3, .production_id = 49), + [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_set_definition, 5, .production_id = 75), + [5161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_set_definition, 5, .production_id = 75), + [5163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 5, .production_id = 74), + [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 5, .production_id = 74), + [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 73), + [5169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 73), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 5, .production_id = 72), + [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 5, .production_id = 72), + [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 5, .production_id = 71), + [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 5, .production_id = 71), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 48), + [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 3, .production_id = 48), + [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 5, .production_id = 70), + [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 5, .production_id = 70), + [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 3), + [5193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 3), + [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 5, .production_id = 69), + [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 5, .production_id = 69), + [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 66), + [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 4, .production_id = 66), + [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), + [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 1, .production_id = 3), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 64), + [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path_list, 4, .production_id = 64), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_pycode, 2), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_pycode, 2), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_minted, 2, .production_id = 12), + [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_minted, 2, .production_id = 12), + [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 2, .production_id = 18), + [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 2, .production_id = 18), + [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_listing, 2, .production_id = 12), + [5225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_listing, 2, .production_id = 12), + [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_verbatim, 2, .production_id = 12), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_verbatim, 2, .production_id = 12), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_end_comment, 2, .production_id = 12), + [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__trivia_end_comment, 2, .production_id = 12), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_definition, 4, .production_id = 60), + [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_definition, 4, .production_id = 60), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 58), + [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 58), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_theorem_definition, 4, .production_id = 57), + [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_theorem_definition, 4, .production_id = 57), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_definition, 4, .production_id = 56), + [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_definition, 4, .production_id = 56), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_key_value, 2), + [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_key_value, 2), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_environment_definition, 4, .production_id = 55), + [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_environment_definition, 4, .production_id = 55), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_impl, 2), + [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_impl, 2), + [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_command_definition, 4, .production_id = 54), + [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_command_definition, 4, .production_id = 54), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_command_definition, 4, .production_id = 53), + [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_command_definition, 4, .production_id = 53), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 4, .production_id = 51), + [5273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 4, .production_id = 51), + [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 46), + [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_text_list, 3, .production_id = 46), + [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 50), + [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_glob_pattern, 3, .production_id = 50), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text_mode, 2, .production_id = 22), + [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text_mode, 2, .production_id = 22), + [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tikz_library_import, 2, .production_id = 15), + [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tikz_library_import, 2, .production_id = 15), + [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_color_reference, 2, .production_id = 11), + [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_color_reference, 2, .production_id = 11), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_acronym_reference, 2, .production_id = 11), + [5297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_acronym_reference, 2, .production_id = 11), + [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 11), + [5301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glossary_entry_reference, 2, .production_id = 11), + [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, .production_id = 19), + [5305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, .production_id = 19), + [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_path, 3, .production_id = 49), + [5309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_curly_group_path, 3, .production_id = 49), + [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_include, 2, .production_id = 15), + [5313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_include, 2, .production_id = 15), + [5315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_begin, 3, .production_id = 25), + [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_begin, 3, .production_id = 25), + [5319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 2), + [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 2), + [5323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brack_group, 3), + [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group, 3), + [5327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1495), + [5330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1507), + [5333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1560), + [5336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1560), + [5339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1564), + [5342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1732), + [5345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1731), + [5348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1991), + [5351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1730), + [5354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1993), + [5357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1729), + [5360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1728), + [5363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1727), + [5366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1997), + [5369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2275), + [5372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1726), + [5375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1725), + [5378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1725), + [5381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2000), + [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2001), + [5387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2001), + [5390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2274), + [5393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2274), + [5396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2272), + [5399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2267), + [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2267), + [5405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2439), + [5408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2353), + [5411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1955), + [5414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2251), + [5417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1724), + [5420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1626), + [5423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1723), + [5426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1722), + [5429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1637), + [5432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(1665), + [5435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2006), + [5438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_text_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2007), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(225), + [5478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(100), + [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(232), + [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(41), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [5505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(221), + [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_command_repeat1, 2, .production_id = 27), SHIFT_REPEAT(53), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(1589), + [5534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), + [5536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glob_pattern_repeat1, 2), SHIFT_REPEAT(1580), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glob_pattern, 1), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 65), SHIFT_REPEAT(2422), + [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 65), + [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 63), + [5658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1267), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 67), SHIFT_REPEAT(1287), + [5676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 67), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 48), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 3), + [5708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 3), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 3, .production_id = 61), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_pair, 1, .production_id = 28), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__glob_pattern_fragment, 2), + [5770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__glob_pattern_fragment, 2), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_curly_group_key_value_repeat1, 2, .production_id = 63), SHIFT_REPEAT(1270), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_argc, 3, .production_id = 68), + [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_text_list_repeat1, 2, .production_id = 46), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_curly_group_path_list_repeat1, 2, .production_id = 49), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_curly_group_command_name, 3, .production_id = 52), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 2), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_minted, 3, .production_id = 25), - [6109] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_comment, 2, .production_id = 12), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_verbatim, 2, .production_id = 12), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_listing, 2, .production_id = 12), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_pycode, 2), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 3, .production_id = 47), - [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_pycode, 1), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_minted, 1, .production_id = 3), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_verbatim, 1, .production_id = 3), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_comment, 1, .production_id = 3), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 4, .production_id = 61), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_minted, 3, .production_id = 26), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_pycode, 1), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_minted, 1, .production_id = 3), + [6181] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 3, .production_id = 48), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_listing, 1, .production_id = 3), + [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_comment, 2, .production_id = 12), + [6225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_verbatim, 2, .production_id = 12), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_verbatim, 1, .production_id = 3), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_text_comment, 1, .production_id = 3), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_listing, 2, .production_id = 12), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__trivia_begin_pycode, 2), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brack_group_key_value, 4, .production_id = 62), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), }; #ifdef __cplusplus diff --git a/test/corpus/issues.txt b/test/corpus/issues.txt index 1baeb3590..a14857e45 100644 --- a/test/corpus/issues.txt +++ b/test/corpus/issues.txt @@ -409,3 +409,90 @@ tree-sitter-latex (Issue #29) (text (generic_command (command_name)))))) + +================================================================================ +tree-sitter-latex (Issue #3) | \text +================================================================================ + +Let $C = \{ f \colon M \to \mathbb{R} \mid \text{$f$ is smooth} \}$. + +-------------------------------------------------------------------------------- + +(source_file + (text + (word)) + (inline_formula + (text + (word)) + (text + (word)) + (math_set + (text + (word) + (generic_command + (command_name)) + (word) + (generic_command + (command_name)) + (generic_command + (command_name) + (curly_group + (text + (word)))) + (generic_command + (command_name))) + (text_mode + (curly_group + (inline_formula + (text + (word))) + (text + (word) + (word)))))) + (text + (word))) + +================================================================================ +tree-sitter-latex (Issue #3) | \intertext +================================================================================ + +Let +\begin{align*} + F &= x^2 + y^2 +\intertext{and similarly} + G &= x^2 - y^2. +\end{align*} + +-------------------------------------------------------------------------------- + +(source_file + (text + (word)) + (generic_environment + (begin + (curly_group_text + (text + (word)))) + (text + (word) + (word)) + (text + (word) + (operator) + (word)) + (text_mode + (curly_group + (text + (word) + (word)))) + (text + (word) + (word)) + (text + (word) + (operator) + (word)) + (end + (curly_group_text + (text + (word))))))